diff --git a/backend/README.MD b/backend/README.MD deleted file mode 100644 index ebf0685cab..0000000000 --- a/backend/README.MD +++ /dev/null @@ -1,103 +0,0 @@ -## 后端配置 - -### 后端程序选择 - -#### json-server - -后端默认采用的 [json-server](https://github.com/typicode/json-server),可以使用指令 `npm install json-server -g` 安装至全局环境中。相关安装方法请进其项目页了解。 - -json-server 运行的初始json文件内容如下: -``` -{ - "items": {}, // 物品数据 - "cpus": [], // cpu数据 - "essentia": {}, // 源质数据 - "fluids": {}, // 流体数据 - "task": {} // 任务数据 -} -``` - -使用命令 `json-server oc.json` 开启一个简单的后端服务器 - -#### simple-backend - -[SimpleBackend](./simple-backend/README.MD) 是用 Spring 制作的一个简单的符合OC-AE要求的后端程序,并且带有简单的鉴权验证。 - -详细请到 [SimpleBackend](./simple-backend/README.MD) 页面查看。 - -### 启用鉴权 - -#### NGINX - -使用 NGINX 作为下游服务端, 反向代理请求至上游的 json-server 服务端,在反向代理时先通过跨域请求,再对凭据进行校验。 - -``` -location / { - proxy_http_version 1.1; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection $connection_upgrade; - proxy_set_header If-Modified-Since $http_if_modified_since; - proxy_set_header ocaetoken $http_ocaetoken; - - # 通过跨域请求 - if ($request_method = 'OPTIONS') { - add_header Access-Control-Allow-Origin *; - add_header Access-Control-Allow-Headers *; - add_header Access-Control-Allow-Methods GET,POST,OPTIONS,PUT,DELETE; - add_header 'Access-Control-Max-Age' 1728000; - add_header 'Content-Type' 'text/plain; charset=utf-8'; - add_header 'Content-Length' 0; - return 204; - } - - # 改TOKEN为你想要的密钥 - if ($http_ocaetoken = "TOKEN") { - proxy_pass http://127.0.0.1:60008; - } -} -``` - - -### 自定义后端 - -若不想使用 json-server, 想自己搭建一个后端程序,那么请依据如下规则设计一个RESTFUL风格后端程序。 - -**所有数据传输都建立在 json 格式字符串之上。** - -#### 数据类型 - -##### 数组类型(`[]`) - -假设有个名为 `cpus` 的路径代表对一个 **数组类型** 的资源进行操作,那么需要实现的接口有 - -``` -/cpus GET: 获取整个数组,以json格式返回。 -/cpus POST: 为数组内添加一个对象元素,该对象元素以其中的 `id` 字段作为主键。 -/cpus/ GET: 获取数组内对象的 `id` 字段为指定值的对象,以json格式返回。 -/cpus/ PUT: 更新指定 `id` 的对象 -/cpus/ DELETE: 删除指定 `id` 的对象 -``` - -##### 对象类型(`{}`) - -假设有一个名为 `items` 的路径代表对一个 **对象类型** 的资源进行操作,那么需要实现的接口有 - -``` -/items PUT: 为这个对象更新内容 -/items GET: 获取这个对象信息 -``` - -#### 需要的资源路径 - -**以下资源路径都省略了共同的URL地址部分,例如`https://blog.smileyik.eu.org/oc-ae/items`与`https://blog.smileyik.eu.org/oc-ae/cpus`将被缩写为`/items`与`/cpus`** - -``` -/items: 对象类型,代表AE中的物品 -/cpus: 数组类型,代表AE中的CPU -/essentia: 对象类型,代表AE中的源质 -/fluids: 对象类型,代表AE中的流体 -/task: 对象类型,代表任务 -``` diff --git a/backend/oc.json b/backend/oc.json deleted file mode 100644 index 8b31a0f203..0000000000 --- a/backend/oc.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "items": {}, - "cpus": [], - "craftable": {}, - "essentia": {}, - "fluids": {}, - "task": {} -} diff --git a/backend/simple-backend/.gitignore b/backend/simple-backend/.gitignore deleted file mode 100644 index 6177b23f69..0000000000 --- a/backend/simple-backend/.gitignore +++ /dev/null @@ -1,41 +0,0 @@ -HELP.md -.gradle -build/ -!gradle/wrapper/gradle-wrapper.jar -!**/src/main/**/build/ -!**/src/test/**/build/ - -### STS ### -.apt_generated -.classpath -.factorypath -.project -.settings -.springBeans -.sts4-cache -bin/ -!**/src/main/**/bin/ -!**/src/test/**/bin/ - -### IntelliJ IDEA ### -.idea -*.iws -*.iml -*.ipr -out/ -!**/src/main/**/out/ -!**/src/test/**/out/ - -### NetBeans ### -/nbproject/private/ -/nbbuild/ -/dist/ -/nbdist/ -/.nb-gradle/ - -### VS Code ### -.vscode/ -/users.json -/reent-table.json -/config.json -/user/ \ No newline at end of file diff --git a/backend/simple-backend/README.MD b/backend/simple-backend/README.MD deleted file mode 100644 index b51a4a3a90..0000000000 --- a/backend/simple-backend/README.MD +++ /dev/null @@ -1,107 +0,0 @@ -### simple-backend - -SimpleBackend 是一个带有简单的凭据验证,支持 `If-Modified-Since` 请求头,且为最小化支持 OC-AE 所提出来的后端要求的一个 Spring 实现。 - -#### 构建 - -首先确保已经安装好 JDK17, 在确保安装好 JDK17 后,运行以下指令进行编译: - -``` -./gradlew bootJar -``` - -编译完成后,会在 `./build/libs/` 下新增一个可执行的 jar 包文件。 - -#### 如何使用 - -使用指令 `java -jar xxxx.jar ` 进行运行。 - -配置文件模板位置在 `./src/main/resources/config-template.json`, 其默认的内容如下: - -``` -{ - "port": 60081, - "token": "123456", - "controller": { - "/items": "Object", - "/cpus": "Array", - "/task": "Object", - "/fluids": "Object", - "/essentia": "Object" - } -} -``` - -将其复制一份,并存放在编译出来的 jar 包同一目录下,使用 `java -jar xxxx.jar xxx.json` 运行。 - -##### 配置文件 - -``` -{ - "port": 60081, // 后端端口 - "token": "123456", // 验证凭据 - "controller": { // 控制器 - "/items": "Object", - "/cpus": "Array", - "/task": "Object", - "/fluids": "Object", - "/essentia": "Object" - }, - "enableMultiuser": false, // 是否启用多用户 - "userFile": "users.json", // 用户文件 - "prefixPath": "/user", // 请求路径前缀 - "reentTableFile": "reent-table.json", // 租借表 - "maxReentFreeTime": 604800000 // 最大空闲租借时间,毫秒 -} -``` - -控制器配置为键值对,其中键为**请求路径**,如`/items`, `/task` 和 `/cpus` 等, -值只支持填写两个值,分别为 `Object` 和 `Array`,其中 `Object` 代表设定该请求路径的 -数据类型为**对象类型**,`Array` 则为 **数组类型**。 - -默认的配置文件支持配合运行 OC-AE 程序。 - -##### 多用户模式运行 - -默认配置文件仅为单用户模式运行,多用户运行则需要将 `enableMultiuser` 置为 `true`,此时以下选项开始生效 -``` - "enableMultiuser": false, // 是否启用多用户 - "userFile": "users.json", // 用户文件 - "prefixPath": "/user", // 请求路径前缀 - "reentTableFile": "reent-table.json", // 租借表 - "maxReentFreeTime": 604800000 // 最大空闲租借时间,毫秒 -``` - -* userFile: 存储用户信息的文件 -* prefixPath: 请求地址前缀,不建议直接使用根路径作为前缀。 -* reentTableFile: 租借表,存放用户最后一次有效访问的时间戳 -* maxReentFreeTime: 最大租借空闲时间,毫秒,当某一个用户离最后一次的有效访问时间大于该设定时间则将注销该用户。 - -多用户模式下运行时能够使用 `/apply` 接口申请用户Token,返回格式如下: - -``` -{ - "code": 200, - "message": "success", - "data": "TOKEN" -} -``` - -在使用该接口后,若申请成功会返回用户Token,并且注册相应的网络地址。 - -举个例子,在默认配置下调用此接口的返回信息如下 `"data": "token123456"`, -那么用户需要使用 `http://abc.def/user/token123456` 地址作为后端地址, -`token123456` 作为 Token. - -再举个例子,申请成功后,以下请求能够正确的获得结果 -``` -curl -X GET -H "Content-Type: application/json" -H "ocaetoken: efbedb2f-aad5-41ad-8391-2b98377b3332" -d '[]' -v "http://localhost:8080/user/efbedb2f-aad5-41ad-8391-2b98377b3332/task" -``` - -这下面的其他请求都是返回404 -``` -curl -X GET -H "Content-Type: application/json" -d '[]' -v "http://localhost:8080/user/efbedb2f-aad5-41ad-8391-2b98377b3332/task" -curl -X GET -H "Content-Type: application/json" -H "ocaetoken: lakhflahsfhaoihoiajg" -d '[]' -v "http://localhost:8080/user/efbedb2f-aad5-41ad-8391-2b98377b3332/task" -``` - -此外,需要注意的是,每天每个IP仅能够申领一次用户Token,以达到一定程度的限制作用。 \ No newline at end of file diff --git a/backend/simple-backend/build.gradle b/backend/simple-backend/build.gradle deleted file mode 100644 index ae48e635a4..0000000000 --- a/backend/simple-backend/build.gradle +++ /dev/null @@ -1,31 +0,0 @@ -plugins { - id 'java' - id 'org.springframework.boot' version '3.3.4' - id 'io.spring.dependency-management' version '1.1.6' -} - -group = 'org.eu.smileyik' -version = '0.0.1-SNAPSHOT' - -java { - toolchain { - languageVersion = JavaLanguageVersion.of(17) - } -} - -repositories { - mavenCentral() -} - -dependencies { - implementation 'org.springframework.boot:spring-boot-starter-web' - // https://mvnrepository.com/artifact/com.google.code.gson/gson - implementation 'com.google.code.gson:gson:2.11.0' - implementation 'org.springframework.boot:spring-boot-starter-actuator' - testImplementation 'org.springframework.boot:spring-boot-starter-test' - testRuntimeOnly 'org.junit.platform:junit-platform-launcher' -} - -tasks.named('test') { - useJUnitPlatform() -} diff --git a/backend/simple-backend/gradle/wrapper/gradle-wrapper.jar b/backend/simple-backend/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index a4b76b9530..0000000000 Binary files a/backend/simple-backend/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/backend/simple-backend/gradle/wrapper/gradle-wrapper.properties b/backend/simple-backend/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index df97d72b8b..0000000000 --- a/backend/simple-backend/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,7 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip -networkTimeout=10000 -validateDistributionUrl=true -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/backend/simple-backend/gradlew b/backend/simple-backend/gradlew deleted file mode 100755 index f5feea6d6b..0000000000 --- a/backend/simple-backend/gradlew +++ /dev/null @@ -1,252 +0,0 @@ -#!/bin/sh - -# -# Copyright © 2015-2021 the original authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# SPDX-License-Identifier: Apache-2.0 -# - -############################################################################## -# -# Gradle start up script for POSIX generated by Gradle. -# -# Important for running: -# -# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is -# noncompliant, but you have some other compliant shell such as ksh or -# bash, then to run this script, type that shell name before the whole -# command line, like: -# -# ksh Gradle -# -# Busybox and similar reduced shells will NOT work, because this script -# requires all of these POSIX shell features: -# * functions; -# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», -# «${var#prefix}», «${var%suffix}», and «$( cmd )»; -# * compound commands having a testable exit status, especially «case»; -# * various built-in commands including «command», «set», and «ulimit». -# -# Important for patching: -# -# (2) This script targets any POSIX shell, so it avoids extensions provided -# by Bash, Ksh, etc; in particular arrays are avoided. -# -# The "traditional" practice of packing multiple parameters into a -# space-separated string is a well documented source of bugs and security -# problems, so this is (mostly) avoided, by progressively accumulating -# options in "$@", and eventually passing that to Java. -# -# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, -# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; -# see the in-line comments for details. -# -# There are tweaks for specific operating systems such as AIX, CygWin, -# Darwin, MinGW, and NonStop. -# -# (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt -# within the Gradle project. -# -# You can find Gradle at https://github.com/gradle/gradle/. -# -############################################################################## - -# Attempt to set APP_HOME - -# Resolve links: $0 may be a link -app_path=$0 - -# Need this for daisy-chained symlinks. -while - APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path - [ -h "$app_path" ] -do - ls=$( ls -ld "$app_path" ) - link=${ls#*' -> '} - case $link in #( - /*) app_path=$link ;; #( - *) app_path=$APP_HOME$link ;; - esac -done - -# This is normally unused -# shellcheck disable=SC2034 -APP_BASE_NAME=${0##*/} -# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s -' "$PWD" ) || exit - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD=maximum - -warn () { - echo "$*" -} >&2 - -die () { - echo - echo "$*" - echo - exit 1 -} >&2 - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "$( uname )" in #( - CYGWIN* ) cygwin=true ;; #( - Darwin* ) darwin=true ;; #( - MSYS* | MINGW* ) msys=true ;; #( - NONSTOP* ) nonstop=true ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD=$JAVA_HOME/jre/sh/java - else - JAVACMD=$JAVA_HOME/bin/java - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD=java - if ! command -v java >/dev/null 2>&1 - then - die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -fi - -# Increase the maximum file descriptors if we can. -if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then - case $MAX_FD in #( - max*) - # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC2039,SC3045 - MAX_FD=$( ulimit -H -n ) || - warn "Could not query maximum file descriptor limit" - esac - case $MAX_FD in #( - '' | soft) :;; #( - *) - # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC2039,SC3045 - ulimit -n "$MAX_FD" || - warn "Could not set maximum file descriptor limit to $MAX_FD" - esac -fi - -# Collect all arguments for the java command, stacking in reverse order: -# * args from the command line -# * the main class name -# * -classpath -# * -D...appname settings -# * --module-path (only if needed) -# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. - -# For Cygwin or MSYS, switch paths to Windows format before running java -if "$cygwin" || "$msys" ; then - APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) - CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) - - JAVACMD=$( cygpath --unix "$JAVACMD" ) - - # Now convert the arguments - kludge to limit ourselves to /bin/sh - for arg do - if - case $arg in #( - -*) false ;; # don't mess with options #( - /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath - [ -e "$t" ] ;; #( - *) false ;; - esac - then - arg=$( cygpath --path --ignore --mixed "$arg" ) - fi - # Roll the args list around exactly as many times as the number of - # args, so each arg winds up back in the position where it started, but - # possibly modified. - # - # NB: a `for` loop captures its iteration list before it begins, so - # changing the positional parameters here affects neither the number of - # iterations, nor the values presented in `arg`. - shift # remove old arg - set -- "$@" "$arg" # push replacement arg - done -fi - - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Collect all arguments for the java command: -# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, -# and any embedded shellness will be escaped. -# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be -# treated as '${Hostname}' itself on the command line. - -set -- \ - "-Dorg.gradle.appname=$APP_BASE_NAME" \ - -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ - "$@" - -# Stop when "xargs" is not available. -if ! command -v xargs >/dev/null 2>&1 -then - die "xargs is not available" -fi - -# Use "xargs" to parse quoted args. -# -# With -n1 it outputs one arg per line, with the quotes and backslashes removed. -# -# In Bash we could simply go: -# -# readarray ARGS < <( xargs -n1 <<<"$var" ) && -# set -- "${ARGS[@]}" "$@" -# -# but POSIX shell has neither arrays nor command substitution, so instead we -# post-process each arg (as a line of input to sed) to backslash-escape any -# character that might be a shell metacharacter, then use eval to reverse -# that process (while maintaining the separation between arguments), and wrap -# the whole thing up as a single "set" statement. -# -# This will of course break if any of these variables contains a newline or -# an unmatched quote. -# - -eval "set -- $( - printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | - xargs -n1 | - sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | - tr '\n' ' ' - )" '"$@"' - -exec "$JAVACMD" "$@" diff --git a/backend/simple-backend/gradlew.bat b/backend/simple-backend/gradlew.bat deleted file mode 100644 index 9b42019c79..0000000000 --- a/backend/simple-backend/gradlew.bat +++ /dev/null @@ -1,94 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem -@rem SPDX-License-Identifier: Apache-2.0 -@rem - -@if "%DEBUG%"=="" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%"=="" set DIRNAME=. -@rem This is normally unused -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if %ERRORLEVEL% equ 0 goto execute - -echo. 1>&2 -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 -echo. 1>&2 -echo Please set the JAVA_HOME variable in your environment to match the 1>&2 -echo location of your Java installation. 1>&2 - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. 1>&2 -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 -echo. 1>&2 -echo Please set the JAVA_HOME variable in your environment to match the 1>&2 -echo location of your Java installation. 1>&2 - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if %ERRORLEVEL% equ 0 goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -set EXIT_CODE=%ERRORLEVEL% -if %EXIT_CODE% equ 0 set EXIT_CODE=1 -if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% -exit /b %EXIT_CODE% - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/backend/simple-backend/settings.gradle b/backend/simple-backend/settings.gradle deleted file mode 100644 index e64c3c8ae8..0000000000 --- a/backend/simple-backend/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -rootProject.name = 'simple-backend' diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/Config.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/Config.java deleted file mode 100644 index 5c5722f670..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/Config.java +++ /dev/null @@ -1,93 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend; - -import java.util.HashMap; -import java.util.Map; - -public class Config { - public static Config instance; - - private int port; - private String token; - private Map controller = new HashMap(); - private boolean enableMultiuser = false; - private String userFile = "users.json"; - private String prefixPath = "/users"; - private String reentTableFile = "reent-table.json"; - private long maxReentFreeTime = 604800000; - - public int getPort() { - return port; - } - - public Map getPaths() { - return controller; - } - - public String getToken() { - return token; - } - - public void setPaths(Map controller) { - this.controller = controller; - } - - public void setPort(int port) { - this.port = port; - } - - public void setToken(String token) { - this.token = token; - } - - public boolean isEnableMultiuser() { - return enableMultiuser; - } - - public void setEnableMultiuser(boolean enableMultiuser) { - this.enableMultiuser = enableMultiuser; - } - - public String getUserFile() { - return userFile; - } - - public void setPrefixPath(String prefixPath) { - this.prefixPath = prefixPath; - } - - public void setUserFile(String userFile) { - this.userFile = userFile; - } - - public String getPrefixPath() { - return prefixPath; - } - - public String getReentTableFile() { - return reentTableFile; - } - - public void setReentTableFile(String reentTableFile) { - this.reentTableFile = reentTableFile; - } - - public long getMaxReentFreeTime() { - return maxReentFreeTime; - } - - public void setMaxReentFreeTime(long maxReentFreeTime) { - this.maxReentFreeTime = maxReentFreeTime; - } - - @Override - public String toString() { - return "Config{" + - "port=" + port + - ", token='" + token + '\'' + - ", controller=" + controller + - ", enableMultiuser=" + enableMultiuser + - ", userFile='" + userFile + '\'' + - ", prefixPath='" + prefixPath + '\'' + - '}'; - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/SimpleBackendApplication.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/SimpleBackendApplication.java deleted file mode 100644 index f631b3a775..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/SimpleBackendApplication.java +++ /dev/null @@ -1,40 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend; - -import com.google.gson.Gson; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; - -import java.io.File; -import java.io.IOException; -import java.io.InputStream; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.nio.file.StandardOpenOption; - -@SpringBootApplication -public class SimpleBackendApplication { - - public static void main(String[] args) throws IOException { - Gson gson = new Gson(); - String configFile = "./config.json"; - if (args.length == 0) { - Path path = Paths.get(configFile); - if (!Files.exists(path)) { - try (InputStream resourceAsStream = SimpleBackendApplication.class.getResourceAsStream("/config-template.json")) { - if (resourceAsStream != null) { - Files.write(path, resourceAsStream.readAllBytes(), StandardOpenOption.CREATE_NEW, StandardOpenOption.WRITE); - } - } - } - } else { - configFile = args[0]; - } - Config.instance = gson.fromJson(new String(Files.readAllBytes(new File(configFile).toPath())), Config.class); - - System.setProperty("server.port", Config.instance.getPort() + ""); - System.setProperty("spring.jackson.serialization.indent_output", "true"); - SpringApplication.run(SimpleBackendApplication.class, args); - } - -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerConfig.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerConfig.java deleted file mode 100644 index 744095115d..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerConfig.java +++ /dev/null @@ -1,70 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import org.eu.smileyik.ocae.simplebackend.Config; -import org.eu.smileyik.ocae.simplebackend.controller.BaseController; -import org.eu.smileyik.ocae.simplebackend.controller.SimpleArrayController; -import org.eu.smileyik.ocae.simplebackend.controller.SimpleObjectController; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; - -import java.util.ArrayList; -import java.util.List; -import java.util.Objects; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -@Configuration -public class ControllerConfig { - private ControllerInject inject; - - @Autowired - public void setInject(ControllerInject inject) { - this.inject = inject; - } - - @Bean("baseControllerLock") - public ReentrantReadWriteLock baseControllerLock() { - return new ReentrantReadWriteLock(); - } - - @Bean - public List injectAll(@Qualifier("baseControllerLock") ReentrantReadWriteLock lock) { - lock.writeLock().lock(); - try { - if (Config.instance.isEnableMultiuser()) { - return new ArrayList(); - } - - System.out.println("Start inject controller ..."); - List controllers = new ArrayList<>(); - Config.instance.getPaths().forEach((key, value) -> { - BaseController baseController = null; - String fileName = key.replaceAll("[\\\\/]", "."); - while (fileName.startsWith(".")) fileName = fileName.substring(1); - fileName += ".json"; - - if (Objects.equals("Object", value)) { - baseController = new SimpleObjectController(fileName); - } else if (Objects.equals("Array", value)) { - baseController = new SimpleArrayController(fileName); - } - if (baseController != null) { - try { - baseController.load(); - System.out.println("Start inject " + value + " to path " + key); - inject.inject(key, baseController); - System.out.println("End inject " + value + " to path " + key); - controllers.add(baseController); - } catch (Exception e) { - System.out.println("Failed inject " + value + " to path " + key); - e.printStackTrace(); - } - } - }); - return controllers; - } finally { - lock.writeLock().unlock(); - } - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerInject.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerInject.java deleted file mode 100644 index ce00add776..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerInject.java +++ /dev/null @@ -1,135 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import org.eu.smileyik.ocae.simplebackend.controller.BaseController; -import org.springframework.beans.BeansException; -import org.springframework.context.ApplicationContext; -import org.springframework.context.ApplicationContextAware; -import org.springframework.stereotype.Component; -import org.springframework.web.bind.annotation.*; -import org.springframework.web.servlet.mvc.method.RequestMappingInfo; -import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; - -import java.lang.reflect.Method; - -@Component -public class ControllerInject implements ApplicationContextAware { - private static ApplicationContext applicationContext; - - public void inject(String path, BaseController handler) { - RequestMappingHandlerMapping requestMappingHandlerMapping = (RequestMappingHandlerMapping) applicationContext.getBean("requestMappingHandlerMapping"); - for (Method method : handler.getClass().getDeclaredMethods()) { - String[] methodPath = new String[] { path }; - RequestMethod[] methods; - - if (method.isAnnotationPresent(RequestMapping.class)) { - RequestMapping mapping = method.getAnnotation(RequestMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = mapping.method(); - } else if (method.isAnnotationPresent(GetMapping.class)) { - GetMapping mapping = method.getAnnotation(GetMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.GET }; - } else if (method.isAnnotationPresent(PutMapping.class)) { - PutMapping mapping = method.getAnnotation(PutMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.PUT }; - } else if (method.isAnnotationPresent(PostMapping.class)) { - PostMapping mapping = method.getAnnotation(PostMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.POST }; - } else if (method.isAnnotationPresent(DeleteMapping.class)) { - DeleteMapping mapping = method.getAnnotation(DeleteMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.DELETE }; - } else if (method.isAnnotationPresent(PatchMapping.class)) { - PatchMapping mapping = method.getAnnotation(PatchMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.PATCH }; - } else { - continue; - } - - RequestMappingInfo mappingInfo = RequestMappingInfo - .paths(methodPath) - .methods(methods) - .build(); - requestMappingHandlerMapping.registerMapping(mappingInfo, handler, method); - } - } - - public void uninject(String path, Class clazz) { - RequestMappingHandlerMapping requestMappingHandlerMapping = (RequestMappingHandlerMapping) applicationContext.getBean("requestMappingHandlerMapping"); - - for (Method method : clazz.getDeclaredMethods()) { - String[] methodPath = new String[] { path }; - RequestMethod[] methods; - - if (method.isAnnotationPresent(RequestMapping.class)) { - RequestMapping mapping = method.getAnnotation(RequestMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = mapping.method(); - } else if (method.isAnnotationPresent(GetMapping.class)) { - GetMapping mapping = method.getAnnotation(GetMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.GET }; - } else if (method.isAnnotationPresent(PutMapping.class)) { - PutMapping mapping = method.getAnnotation(PutMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.PUT }; - } else if (method.isAnnotationPresent(PostMapping.class)) { - PostMapping mapping = method.getAnnotation(PostMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.POST }; - } else if (method.isAnnotationPresent(DeleteMapping.class)) { - DeleteMapping mapping = method.getAnnotation(DeleteMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.DELETE }; - } else if (method.isAnnotationPresent(PatchMapping.class)) { - PatchMapping mapping = method.getAnnotation(PatchMapping.class); - if (mapping.value().length > 0) { - methodPath[0] = methodPath[0] + mapping.value()[0]; - } - methods = new RequestMethod[] { RequestMethod.PATCH }; - } else { - continue; - } - - RequestMappingInfo mappingInfo = RequestMappingInfo - .paths(methodPath) - .methods(methods) - .build(); - requestMappingHandlerMapping.unregisterMapping(mappingInfo); - } - } - - @Override - public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { - ControllerInject.applicationContext = applicationContext; - } - - public static ApplicationContext getApplicationContext() { - return applicationContext; - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerSaverConfig.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerSaverConfig.java deleted file mode 100644 index 755de3efea..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ControllerSaverConfig.java +++ /dev/null @@ -1,43 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import org.eu.smileyik.ocae.simplebackend.controller.BaseController; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.context.annotation.Configuration; -import org.springframework.scheduling.annotation.EnableScheduling; -import org.springframework.scheduling.annotation.Scheduled; - -import java.util.List; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -@Configuration -@EnableScheduling -public class ControllerSaverConfig { - - private List list; - private ReentrantReadWriteLock lock; - - @Autowired - public void setList(List list) { - this.list = list; - } - - @Autowired - public void setLock(@Qualifier("baseControllerLock") ReentrantReadWriteLock lock) { - this.lock = lock; - } - - @Scheduled(fixedDelay = 600000) - public void saveTask() { - System.out.println("start save controller data ..."); - lock.readLock().lock(); - try { - for (BaseController controller : list) { - controller.store(); - System.out.println("stored " + controller.getFileName()); - } - } finally { - lock.readLock().unlock(); - } - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/IpCacheConfig.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/IpCacheConfig.java deleted file mode 100644 index d3e102c2e5..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/IpCacheConfig.java +++ /dev/null @@ -1,24 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.scheduling.annotation.EnableScheduling; -import org.springframework.scheduling.annotation.Scheduled; - -import java.util.HashSet; -import java.util.Set; - -@Configuration -@EnableScheduling -public class IpCacheConfig { - - @Bean - public Set ipCache() { - return new HashSet(); - } - - @Scheduled(cron = "0 0 0 * * *") - public void clearCache() { - ipCache().clear(); - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/MultiuserTokenInterceptor.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/MultiuserTokenInterceptor.java deleted file mode 100644 index dd66eba58d..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/MultiuserTokenInterceptor.java +++ /dev/null @@ -1,50 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; -import org.eu.smileyik.ocae.simplebackend.Config; -import org.springframework.stereotype.Component; -import org.springframework.web.servlet.HandlerInterceptor; - -import java.util.Map; -import java.util.Objects; - -@Component -public class MultiuserTokenInterceptor implements HandlerInterceptor { - - private Map reentTable; - - public Map getReentTable() { - if (reentTable == null) { - reentTable = (Map) ControllerInject.getApplicationContext().getBean("reentTable"); - } - return reentTable; - } - - @Override - public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { - if (request.getMethod().equals("OPTIONS")) { - return true; - } - - try { - String path = request.getServletPath(); - if (path.startsWith(Config.instance.getPrefixPath())) { - String s = path.substring(Config.instance.getPrefixPath().length() + 1); - int idx = s.indexOf('/'); - String token = s.substring(0, idx); - String ocaetoken = request.getHeader("ocaetoken"); - if (Objects.equals(token, ocaetoken)) { - getReentTable().put(token, System.currentTimeMillis()); - return HandlerInterceptor.super.preHandle(request, response, handler); - } - response.setStatus(HttpServletResponse.SC_NOT_FOUND); - return false; - } - } catch (Exception e) { - e.printStackTrace(); - response.setStatus(HttpServletResponse.SC_NOT_FOUND); - } - return HandlerInterceptor.super.preHandle(request, response, handler); - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ReentTableConfig.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ReentTableConfig.java deleted file mode 100644 index 62c6a47a6c..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/ReentTableConfig.java +++ /dev/null @@ -1,79 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import com.google.gson.Gson; -import com.google.gson.reflect.TypeToken; -import org.eu.smileyik.ocae.simplebackend.Config; -import org.eu.smileyik.ocae.simplebackend.entity.User; -import org.eu.smileyik.ocae.simplebackend.pojo.UserPojo; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.scheduling.annotation.EnableScheduling; -import org.springframework.scheduling.annotation.Scheduled; - -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.nio.file.Files; -import java.nio.file.StandardOpenOption; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; - -@Configuration -@EnableScheduling -public class ReentTableConfig { - - private UserPojo userPojo; - - @Autowired - public void setUserPojo(UserPojo userPojo) { - this.userPojo = userPojo; - } - - @Bean - public Map reentTable() { - String reentTableFile = Config.instance.getReentTableFile(); - File file = new File(reentTableFile); - if (!file.exists()) { - return new HashMap<>(); - } - Map o = null; - try { - o = new Gson().fromJson(new FileReader(file), new TypeToken>() {}.getType()); - } catch (FileNotFoundException e) { - return new HashMap<>(); - } - return o; - } - - @Scheduled(fixedDelay = 600000) - public void saveTask() throws IOException { - Files.writeString( - new File(Config.instance.getReentTableFile()).toPath(), - new Gson().toJson(reentTable()), - StandardCharsets.UTF_8, - StandardOpenOption.CREATE, StandardOpenOption.WRITE, StandardOpenOption.TRUNCATE_EXISTING - ); - } - - @Scheduled(fixedDelay = 600000) - public void cleanUser() throws FileNotFoundException { - long current = System.currentTimeMillis(); - Set set = new HashSet<>(); - Map table = reentTable(); - table.forEach((key, value) -> { - if (current - value > Config.instance.getMaxReentFreeTime()) { - System.out.println("7 天未活跃,移出用户 " + key); - User user = new User(); - user.setToken(key); - userPojo.removeUser(user); - set.add(key); - } - }); - set.forEach(table::remove); - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/SimpleTokenInterceptor.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/SimpleTokenInterceptor.java deleted file mode 100644 index c19322f590..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/SimpleTokenInterceptor.java +++ /dev/null @@ -1,24 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; -import org.eu.smileyik.ocae.simplebackend.Config; -import org.springframework.web.servlet.HandlerInterceptor; - -import java.util.Objects; - -public class SimpleTokenInterceptor implements HandlerInterceptor { - @Override - public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { - if (request.getMethod().equals("OPTIONS")) { - return HandlerInterceptor.super.preHandle(request, response, handler); - } - - String ocaetoken = request.getHeader("ocaetoken"); - if (Objects.equals(ocaetoken, Config.instance.getToken())) { - return HandlerInterceptor.super.preHandle(request, response, handler); - } - response.setStatus(HttpServletResponse.SC_UNAUTHORIZED); - return false; - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/SimpleWebConfig.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/SimpleWebConfig.java deleted file mode 100644 index 3ae351daf2..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/config/SimpleWebConfig.java +++ /dev/null @@ -1,29 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.config; - -import org.eu.smileyik.ocae.simplebackend.Config; -import org.springframework.context.annotation.Configuration; -import org.springframework.web.servlet.config.annotation.CorsRegistry; -import org.springframework.web.servlet.config.annotation.InterceptorRegistry; -import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; - -@Configuration -public class SimpleWebConfig implements WebMvcConfigurer { - @Override - public void addInterceptors(InterceptorRegistry registry) { - WebMvcConfigurer.super.addInterceptors(registry); - if (!Config.instance.isEnableMultiuser()) { - registry.addInterceptor(new SimpleTokenInterceptor()); - } else { - registry.addInterceptor(new MultiuserTokenInterceptor()); - } - } - - @Override - public void addCorsMappings(CorsRegistry registry) { - WebMvcConfigurer.super.addCorsMappings(registry); - registry.addMapping("/**") - .allowedOrigins("*") - .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH") - .maxAge(3600); - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/ApplyTokenController.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/ApplyTokenController.java deleted file mode 100644 index 423973304b..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/ApplyTokenController.java +++ /dev/null @@ -1,101 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.controller; - -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; -import org.eu.smileyik.ocae.simplebackend.Config; -import org.eu.smileyik.ocae.simplebackend.entity.User; -import org.eu.smileyik.ocae.simplebackend.pojo.UserPojo; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -import java.util.Set; - -@RestController -@RequestMapping -public class ApplyTokenController { - private UserPojo userPojo; - private Set ipCache; - - @GetMapping("/apply") - public Result applyToken(HttpServletRequest req, HttpServletResponse res) { - if (!Config.instance.isEnableMultiuser()) { - res.setStatus(HttpServletResponse.SC_NOT_FOUND); - return null; - } - if (ipCache.contains(req.getRemoteHost())) { - return new Result<>(403, "你今天已经领取一个Token了!", null); - } - User user = userPojo.generateUser(); - if (user == null) { - return new Result<>(500, "申领时出现问题,请稍后再试!", null); - } - ipCache.add(req.getRemoteHost()); - return Result.success(new UserModel( - userPojo.getUserUrl(user), - user.getToken() - )); - } - - public void clearCache() { - ipCache.clear(); - } - - @Autowired - public void setUserPojo(UserPojo userPojo) { - this.userPojo = userPojo; - } - - @Autowired - public void setIpCache(@Qualifier("ipCache") Set ipCache) { - this.ipCache = ipCache; - } - - public static class Result { - private final int code; - private final String message; - private final T data; - - protected Result(int code, String message, T data) { - this.code = code; - this.message = message; - this.data = data; - } - - public static Result success(T data) { - return new Result<>(HttpServletResponse.SC_OK, "success", data); - } - - public int getCode() { - return code; - } - - public String getMessage() { - return message; - } - - public T getData() { - return data; - } - } - - public static class UserModel { - private final String url; - private final String token; - - public UserModel(String url, String token) { - this.url = url; - this.token = token; - } - - public String getToken() { - return token; - } - - public String getUrl() { - return url; - } - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/BaseController.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/BaseController.java deleted file mode 100644 index 5dd9540706..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/BaseController.java +++ /dev/null @@ -1,33 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.controller; - -import java.io.File; - -public abstract class BaseController { - private final String fileName; - - - public BaseController(String fileName) { - this.fileName = fileName; - } - - public void load() { - onLoad(new File(fileName)); - } - - protected abstract void onLoad(File file); - - public void store() { - File file = new File(fileName); - File parentFile = file.getParentFile(); - if (parentFile != null && !parentFile.exists()) { - parentFile.mkdirs(); - } - onStore(file); - } - - protected abstract void onStore(File file); - - public String getFileName() { - return fileName; - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/SimpleArrayController.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/SimpleArrayController.java deleted file mode 100644 index 3b7f21c888..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/SimpleArrayController.java +++ /dev/null @@ -1,153 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.controller; - -import com.google.gson.Gson; -import com.google.gson.GsonBuilder; -import com.google.gson.reflect.TypeToken; -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; -import org.springframework.web.bind.annotation.*; - -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.nio.file.Files; -import java.nio.file.StandardOpenOption; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.Objects; - -public class SimpleArrayController extends BaseController { - private List> array = new ArrayList<>(); - private long lastModified = System.currentTimeMillis(); - - public SimpleArrayController(String fileName) { - super(fileName); - } - - @GetMapping - @ResponseBody - public List> get(HttpServletRequest req, HttpServletResponse resp) { - long timestamp = req.getDateHeader("If-Modified-Since"); - if (lastModified <= timestamp) { - resp.setStatus(HttpServletResponse.SC_NOT_MODIFIED); - return null; - } - - resp.setDateHeader("Last-Modified", lastModified + 1000); - return array; - } - - @PostMapping - @ResponseBody - public List> post(@RequestBody Map request, HttpServletRequest req, HttpServletResponse resp) { - array.add(request); - if (!request.containsKey("id")) { - request.put("id", array.size()); - } - lastModified = System.currentTimeMillis(); - return array; - } - - @GetMapping("/{id}") - @ResponseBody - public Map get(@PathVariable("id") String id, HttpServletRequest req, HttpServletResponse response) { - long timestamp = req.getDateHeader("If-Modified-Since"); - if (lastModified <= timestamp) { - response.setStatus(HttpServletResponse.SC_NOT_MODIFIED); - return null; - } - - Map result = array.stream() - .filter(it -> it.containsKey("id") && Objects.equals(String.valueOf(it.get("id")), id)) - .findFirst().orElseGet(() -> { - try { - return array.get(Integer.parseInt(id)); - } catch (Exception e) { - return null; - } - }); - - if (result == null) { - response.setStatus(HttpServletResponse.SC_NOT_FOUND); - return null; - } else { - response.setDateHeader("Last-Modified", lastModified + 1000); - return result; - } - } - - @PutMapping("/{id}") - @ResponseBody - public Map put(@PathVariable("id") String id, @RequestBody Map request, HttpServletResponse response) { - try { - Map result = array.get(Integer.parseInt(id)); - if (result.containsKey("id") && !Objects.equals(String.valueOf(result.get("id")), id)) { - throw new RuntimeException(); - } - array.set(Integer.parseInt(id), request); - lastModified = System.currentTimeMillis(); - return array.get(Integer.parseInt(id)); - } catch (Exception e) { - for (int i = array.size() - 1; i >= 0; i--) { - Map map = array.get(i); - if (map.containsKey("id") && Objects.equals(String.valueOf(map.get("id")), id)) { - array.set(i, request); - lastModified = System.currentTimeMillis(); - return array.get(i); - } - } - } - - response.setStatus(HttpServletResponse.SC_NOT_FOUND); - return null; - } - - @DeleteMapping("/{id}") - @ResponseBody - public Map delete(@PathVariable("id") String id, HttpServletResponse response) { - try { - Map result = array.get(Integer.parseInt(id)); - if (result.containsKey("id") && !Objects.equals(String.valueOf(result.get("id")), id)) { - throw new RuntimeException(); - } - lastModified = System.currentTimeMillis(); - return array.remove(Integer.parseInt(id)); - } catch (Exception e) { - for (int i = array.size() - 1; i >= 0; i--) { - Map map = array.get(i); - if (map.containsKey("id") && Objects.equals(String.valueOf(map.get("id")), id)) { - lastModified = System.currentTimeMillis(); - return array.remove(i); - } - } - } - - response.setStatus(HttpServletResponse.SC_NOT_FOUND); - return null; - } - - @Override - protected void onLoad(File file) { - try { - array = new Gson().fromJson(new FileReader(file), new TypeToken>>() {}.getType()); - } catch (FileNotFoundException e) { - - } - } - - @Override - protected void onStore(File file) { - try { - Files.writeString( - file.toPath(), - new GsonBuilder().setPrettyPrinting().create().toJson(array), - StandardCharsets.UTF_8, - StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE); - } catch (IOException e) { - e.printStackTrace(); - } - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/SimpleObjectController.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/SimpleObjectController.java deleted file mode 100644 index 06cfe3a987..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/controller/SimpleObjectController.java +++ /dev/null @@ -1,87 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.controller; - -import com.google.gson.Gson; -import com.google.gson.GsonBuilder; -import com.google.gson.reflect.TypeToken; -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; -import org.springframework.web.bind.annotation.*; - -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.nio.file.Files; -import java.nio.file.StandardOpenOption; -import java.util.HashMap; -import java.util.Map; - -public class SimpleObjectController extends BaseController { - private Map object = new HashMap<>(); - private long lastModified = System.currentTimeMillis(); - - public SimpleObjectController(String fileName) { - super(fileName); - } - - @GetMapping - @ResponseBody - public Map get(HttpServletRequest req, HttpServletResponse resp) { - long timestamp = req.getDateHeader("If-Modified-Since"); - if (lastModified < timestamp) { - resp.setStatus(HttpServletResponse.SC_NOT_MODIFIED); - return null; - } - - resp.setDateHeader("Last-Modified", lastModified + 1000); - return object; - } - - @DeleteMapping - @ResponseBody - public Map delete() { - Map result = object; - object = new HashMap<>(); - lastModified = System.currentTimeMillis(); - return result; - } - - @PutMapping - @ResponseBody - public Map put(@RequestBody Map object) { - this.object = new HashMap<>(object); - lastModified = System.currentTimeMillis(); - return this.object; - } - - @PatchMapping - @ResponseBody - public Map patch(@RequestBody Map object) { - this.object.putAll(object); - lastModified = System.currentTimeMillis(); - return this.object; - } - - @Override - protected void onLoad(File file) { - try { - object = new Gson().fromJson(new FileReader(file), new TypeToken>() {}.getType()); - } catch (FileNotFoundException e) { - - } - } - - @Override - protected void onStore(File file) { - try { - Files.writeString( - file.toPath(), - new GsonBuilder().setPrettyPrinting().create().toJson(object), - StandardCharsets.UTF_8, - StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING, StandardOpenOption.WRITE); - } catch (IOException e) { - e.printStackTrace(); - } - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/entity/User.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/entity/User.java deleted file mode 100644 index 3c33780741..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/entity/User.java +++ /dev/null @@ -1,28 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.entity; - -import java.util.Objects; - -public class User { - private String token; - - public String getToken() { - return token; - } - - public void setToken(String token) { - this.token = token; - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - User user = (User) o; - return Objects.equals(token, user.token); - } - - @Override - public int hashCode() { - return Objects.hashCode(token); - } -} diff --git a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/pojo/UserPojo.java b/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/pojo/UserPojo.java deleted file mode 100644 index 948e94b10c..0000000000 --- a/backend/simple-backend/src/main/java/org/eu/smileyik/ocae/simplebackend/pojo/UserPojo.java +++ /dev/null @@ -1,190 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend.pojo; - -import com.google.gson.Gson; -import com.google.gson.GsonBuilder; -import com.google.gson.reflect.TypeToken; -import org.eu.smileyik.ocae.simplebackend.Config; -import org.eu.smileyik.ocae.simplebackend.config.ControllerInject; -import org.eu.smileyik.ocae.simplebackend.controller.BaseController; -import org.eu.smileyik.ocae.simplebackend.controller.SimpleArrayController; -import org.eu.smileyik.ocae.simplebackend.controller.SimpleObjectController; -import org.eu.smileyik.ocae.simplebackend.entity.User; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.stereotype.Component; - -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.nio.file.Files; -import java.nio.file.StandardOpenOption; -import java.util.*; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -@Component -public class UserPojo { - private static final Gson GSON = new GsonBuilder().setPrettyPrinting().create(); - - private ReentrantReadWriteLock lock; - private List controllers; - - private ControllerInject inject; - - @Autowired - public void setControllers(List controllers) { - this.controllers = controllers; - init(); - } - - @Autowired - public void setLock(@Qualifier("baseControllerLock") ReentrantReadWriteLock lock) { - this.lock = lock; - init(); - } - - @Autowired - public void setInject(ControllerInject inject) { - this.inject = inject; - init(); - } - - public String getUserUrl(User user) { - return Config.instance.getPrefixPath() + "/" + user.getToken(); - } - - private void init() { - if (lock == null || inject == null || controllers == null) return; - try { - getUsers().forEach(this::injectUserPath); - } catch (FileNotFoundException e) { - e.printStackTrace(); - } - } - - public synchronized User generateUser() { - User user = new User(); - user.setToken(UUID.randomUUID().toString()); - try { - List users = getUsers(); - long count = users.stream().filter(it -> user.getToken().equals(it.getToken())).count(); - if (count == 0) { - users.add(user); - store(users); - injectUserPath(user); - Map reentTable = (Map) ControllerInject.getApplicationContext().getBean("reentTable"); - reentTable.put(user.getToken(), System.currentTimeMillis()); - return user; - } else { - return null; - } - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - public synchronized void removeUser(User user) { - if (user == null || user.getToken() == null) return; - try { - List users = getUsers(); - users.remove(user); - store(users); - uninjectUserPath(user); - } catch (IOException e) { - throw new RuntimeException(e); - } - - } - - public synchronized void uninjectUserPath(User user) { - lock.writeLock().lock(); - try { - String path = user.getToken(); - new File("./" + Config.instance.getPrefixPath() + "/" + path).deleteOnExit(); - Config.instance.getPaths().forEach((key, value) -> { - String fileName = "./" + Config.instance.getPrefixPath() + "/" + path + "/" + key.replaceAll("[\\\\/]", "."); - fileName += ".json"; - - for (BaseController controller : controllers) { - if (Objects.equals(fileName, controller.getFileName())) { - controllers.remove(controller); - break; - } - } - - String targetPath = Config.instance.getPrefixPath() + "/" + user.getToken() + key; - if (Objects.equals("Object", value)) { - System.out.println("Start uninject " + value + " to path " + targetPath); - inject.uninject(targetPath, SimpleObjectController.class); - } else if (Objects.equals("Array", value)) { - System.out.println("Start uninject " + value + " to path " + targetPath); - inject.uninject(targetPath, SimpleArrayController.class); - } - }); - } catch (Exception e) { - e.printStackTrace(); - } finally { - lock.writeLock().unlock(); - } - } - - public synchronized void injectUserPath(User user) { - lock.writeLock().lock(); - try { - String path = user.getToken(); - Config.instance.getPaths().forEach((key, value) -> { - BaseController baseController = null; - String fileName = "./" + Config.instance.getPrefixPath() + "/" + path + "/" + key.replaceAll("[\\\\/]", "."); - fileName += ".json"; - - if (Objects.equals("Object", value)) { - baseController = new SimpleObjectController(fileName); - } else if (Objects.equals("Array", value)) { - baseController = new SimpleArrayController(fileName); - } - - if (baseController != null) { - String targetPath = Config.instance.getPrefixPath() + "/" + user.getToken() + key; - try { - baseController.load(); - System.out.println("Start inject " + value + " to path " + targetPath); - inject.inject(targetPath, baseController); - System.out.println("End inject " + value + " to path " + targetPath); - controllers.add(baseController); - } catch (Exception e) { - System.out.println("Failed inject " + value + " to path " + targetPath); - e.printStackTrace(); - } - } - }); - } catch (Exception e) { - e.printStackTrace(); - } finally { - lock.writeLock().unlock(); - } - } - - public synchronized void store(List users) throws IOException { - File file = new File(Config.instance.getUserFile()); - File parentFile = file.getParentFile(); - if (parentFile != null && !parentFile.exists()) { - parentFile.mkdirs(); - } - - Files.writeString( - file.toPath(), - GSON.toJson(users), - StandardCharsets.UTF_8, - StandardOpenOption.WRITE, StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING); - } - - public synchronized List getUsers() throws FileNotFoundException { - File file = new File(Config.instance.getUserFile()); - if (!file.exists()) { - return new ArrayList<>(); - } - return GSON.fromJson(new FileReader(file), new TypeToken>() {}.getType()); - } -} diff --git a/backend/simple-backend/src/main/resources/application.properties b/backend/simple-backend/src/main/resources/application.properties deleted file mode 100644 index 799020c061..0000000000 --- a/backend/simple-backend/src/main/resources/application.properties +++ /dev/null @@ -1 +0,0 @@ -spring.application.name=simple-backend diff --git a/backend/simple-backend/src/main/resources/config-template.json b/backend/simple-backend/src/main/resources/config-template.json deleted file mode 100644 index 57b040d5af..0000000000 --- a/backend/simple-backend/src/main/resources/config-template.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "port": 60081, - "token": "123456", - "controller": { - "/items": "Object", - "/cpus": "Array", - "/task": "Object", - "/fluids": "Object", - "/essentia": "Object" - }, - "enableMultiuser": false, - "userFile": "users.json", - "prefixPath": "/user", - "reentTableFile": "reent-table.json", - "maxReentFreeTime": 604800000 -} \ No newline at end of file diff --git a/backend/simple-backend/src/test/java/org/eu/smileyik/ocae/simplebackend/SimpleBackendApplicationTests.java b/backend/simple-backend/src/test/java/org/eu/smileyik/ocae/simplebackend/SimpleBackendApplicationTests.java deleted file mode 100644 index c063bfc79e..0000000000 --- a/backend/simple-backend/src/test/java/org/eu/smileyik/ocae/simplebackend/SimpleBackendApplicationTests.java +++ /dev/null @@ -1,13 +0,0 @@ -package org.eu.smileyik.ocae.simplebackend; - -import org.junit.jupiter.api.Test; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest -class SimpleBackendApplicationTests { - - @Test - void contextLoads() { - } - -} diff --git a/docs/1.png b/docs/1.png deleted file mode 100644 index 2b0e334e96..0000000000 Binary files a/docs/1.png and /dev/null differ diff --git a/docs/2.png b/docs/2.png deleted file mode 100644 index c7c316e82e..0000000000 Binary files a/docs/2.png and /dev/null differ diff --git a/front/.gitignore b/front/.gitignore deleted file mode 100644 index a547bf36d8..0000000000 --- a/front/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/front/README.md b/front/README.md deleted file mode 100644 index 98571fd68d..0000000000 --- a/front/README.md +++ /dev/null @@ -1,57 +0,0 @@ -# OC-AE 控制面板 - -这是一个简单的前端实现,拥有基本的功能。该前端中使用的物品图片与物品数据库都由 [IRR](https://github.com/0999312/Item-Render-Rebirth) 导出。 - -### 运行 - -``` -yarn run dev -``` - -### 编译 - -``` -yarn run build -``` - -### 在线访问控制面板 - -在线访问地址:https://blog.smileyik.eu.org/oc-ae/ - -未绑定后端,在首次访问页面时会询问后端地址以及token。 -所有数据将会保存在你的浏览器本地,不会存入任何云端。 - -### 添加新的功能 - -#### Config.jsx - 配置指令模板 - -Config.jsx 中存放着执行指令的模板,执行的指令应该与 oc 端相同,只有这样 oc 端才能识别指令。 - -配置格式如下。 -``` -tasks: { - "指令描述": { - method: "oc端方法名", - data: "参数" - } -} -``` - -#### MainFrame.jsx - 配置页面 - -在 MainFrame.jsx 的顶层有如下表: -``` -const pages = { - "TestPage": , - "Items": , - "Fluids": , - "Cpus": -} -``` - -修改该表可以添加或删除相应的导航与页面。 - - -#### ItemDatabase.json - 配置物品数据库 - -该文件由 [IRR](https://github.com/0999312/Item-Render-Rebirth) 导出。 \ No newline at end of file diff --git a/front/eslint.config.js b/front/eslint.config.js deleted file mode 100644 index 238d2e4e64..0000000000 --- a/front/eslint.config.js +++ /dev/null @@ -1,38 +0,0 @@ -import js from '@eslint/js' -import globals from 'globals' -import react from 'eslint-plugin-react' -import reactHooks from 'eslint-plugin-react-hooks' -import reactRefresh from 'eslint-plugin-react-refresh' - -export default [ - { ignores: ['dist'] }, - { - files: ['**/*.{js,jsx}'], - languageOptions: { - ecmaVersion: 2020, - globals: globals.browser, - parserOptions: { - ecmaVersion: 'latest', - ecmaFeatures: { jsx: true }, - sourceType: 'module', - }, - }, - settings: { react: { version: '18.3' } }, - plugins: { - react, - 'react-hooks': reactHooks, - 'react-refresh': reactRefresh, - }, - rules: { - ...js.configs.recommended.rules, - ...react.configs.recommended.rules, - ...react.configs['jsx-runtime'].rules, - ...reactHooks.configs.recommended.rules, - 'react/jsx-no-target-blank': 'off', - 'react-refresh/only-export-components': [ - 'warn', - { allowConstantExport: true }, - ], - }, - }, -] diff --git a/front/index.html b/front/index.html deleted file mode 100644 index 432c76de24..0000000000 --- a/front/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - OC-AE 控制面板 - - -
- - - diff --git a/front/package-lock.json b/front/package-lock.json deleted file mode 100644 index 412fe19cf0..0000000000 --- a/front/package-lock.json +++ /dev/null @@ -1,4371 +0,0 @@ -{ - "name": "oc-ae-panel", - "version": "0.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "oc-ae-panel", - "version": "0.0.0", - "dependencies": { - "react": "^18.3.1", - "react-dom": "^18.3.1" - }, - "devDependencies": { - "@eslint/js": "^9.11.1", - "@types/react": "^18.3.10", - "@types/react-dom": "^18.3.0", - "@vitejs/plugin-react": "^4.3.2", - "eslint": "^9.11.1", - "eslint-plugin-react": "^7.37.0", - "eslint-plugin-react-hooks": "^5.1.0-rc.0", - "eslint-plugin-react-refresh": "^0.4.12", - "globals": "^15.9.0", - "vite": "^5.4.8" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.25.7.tgz", - "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.25.7", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.25.8", - "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.25.8.tgz", - "integrity": "sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.25.8", - "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.25.8.tgz", - "integrity": "sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.25.7", - "@babel/generator": "^7.25.7", - "@babel/helper-compilation-targets": "^7.25.7", - "@babel/helper-module-transforms": "^7.25.7", - "@babel/helpers": "^7.25.7", - "@babel/parser": "^7.25.8", - "@babel/template": "^7.25.7", - "@babel/traverse": "^7.25.7", - "@babel/types": "^7.25.8", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.25.7.tgz", - "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.25.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^3.0.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz", - "integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.25.7", - "@babel/helper-validator-option": "^7.25.7", - "browserslist": "^4.24.0", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz", - "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.7", - "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz", - "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.25.7", - "@babel/helper-simple-access": "^7.25.7", - "@babel/helper-validator-identifier": "^7.25.7", - "@babel/traverse": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz", - "integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz", - "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.7", - "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz", - "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz", - "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz", - "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.25.7.tgz", - "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.25.7", - "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.25.7.tgz", - "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.25.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.25.8", - "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.25.8.tgz", - "integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.25.8" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.7.tgz", - "integrity": "sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.7.tgz", - "integrity": "sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/template": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.25.7.tgz", - "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.25.7", - "@babel/parser": "^7.25.7", - "@babel/types": "^7.25.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.25.7", - "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.25.7.tgz", - "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.25.7", - "@babel/generator": "^7.25.7", - "@babel/parser": "^7.25.7", - "@babel/template": "^7.25.7", - "@babel/types": "^7.25.7", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/types": { - "version": "7.25.8", - "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.25.8.tgz", - "integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.25.7", - "@babel/helper-validator-identifier": "^7.25.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.11.1", - "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz", - "integrity": "sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/config-array": { - "version": "0.18.0", - "resolved": "https://registry.npmmirror.com/@eslint/config-array/-/config-array-0.18.0.tgz", - "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/object-schema": "^2.1.4", - "debug": "^4.3.1", - "minimatch": "^3.1.2" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/core": { - "version": "0.6.0", - "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-0.6.0.tgz", - "integrity": "sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", - "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^10.0.1", - "globals": "^14.0.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "14.0.0", - "resolved": "https://registry.npmmirror.com/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "9.12.0", - "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-9.12.0.tgz", - "integrity": "sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/object-schema": { - "version": "2.1.4", - "resolved": "https://registry.npmmirror.com/@eslint/object-schema/-/object-schema-2.1.4.tgz", - "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/plugin-kit": { - "version": "0.2.0", - "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.2.0.tgz", - "integrity": "sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "levn": "^0.4.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@humanfs/core": { - "version": "0.19.0", - "resolved": "https://registry.npmmirror.com/@humanfs/core/-/core-0.19.0.tgz", - "integrity": "sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node": { - "version": "0.16.5", - "resolved": "https://registry.npmmirror.com/@humanfs/node/-/node-0.16.5.tgz", - "integrity": "sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanfs/core": "^0.19.0", - "@humanwhocodes/retry": "^0.3.0" - }, - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/retry": { - "version": "0.3.1", - "resolved": "https://registry.npmmirror.com/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz", - "integrity": "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz", - "integrity": "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz", - "integrity": "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz", - "integrity": "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz", - "integrity": "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz", - "integrity": "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz", - "integrity": "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz", - "integrity": "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz", - "integrity": "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz", - "integrity": "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz", - "integrity": "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz", - "integrity": "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz", - "integrity": "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz", - "integrity": "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz", - "integrity": "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz", - "integrity": "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.13", - "resolved": "https://registry.npmmirror.com/@types/prop-types/-/prop-types-15.7.13.tgz", - "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "18.3.11", - "resolved": "https://registry.npmmirror.com/@types/react/-/react-18.3.11.tgz", - "integrity": "sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.3.0", - "resolved": "https://registry.npmmirror.com/@types/react-dom/-/react-dom-18.3.0.tgz", - "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@vitejs/plugin-react": { - "version": "4.3.2", - "resolved": "https://registry.npmmirror.com/@vitejs/plugin-react/-/plugin-react-4.3.2.tgz", - "integrity": "sha512-hieu+o05v4glEBucTcKMK3dlES0OeJlD9YVOAPraVMOInBCwzumaIFiUjr4bHK7NPgnAHgiskUoceKercrN8vg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.25.2", - "@babel/plugin-transform-react-jsx-self": "^7.24.7", - "@babel/plugin-transform-react-jsx-source": "^7.24.7", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.14.2" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0" - } - }, - "node_modules/acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmmirror.com/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlast": { - "version": "1.2.5", - "resolved": "https://registry.npmmirror.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", - "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmmirror.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmmirror.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.4", - "resolved": "https://registry.npmmirror.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", - "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/browserslist": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.24.0.tgz", - "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001663", - "electron-to-chromium": "^1.5.28", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001667", - "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001667.tgz", - "integrity": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true, - "license": "MIT" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true, - "license": "MIT" - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true, - "license": "MIT" - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "dev": true, - "license": "MIT" - }, - "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmmirror.com/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.5.36", - "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.36.tgz", - "integrity": "sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==", - "dev": true, - "license": "ISC" - }, - "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", - "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/es-iterator-helpers/-/es-iterator-helpers-1.1.0.tgz", - "integrity": "sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.4", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.3", - "safe-array-concat": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" - } - }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint": { - "version": "9.12.0", - "resolved": "https://registry.npmmirror.com/eslint/-/eslint-9.12.0.tgz", - "integrity": "sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.11.0", - "@eslint/config-array": "^0.18.0", - "@eslint/core": "^0.6.0", - "@eslint/eslintrc": "^3.1.0", - "@eslint/js": "9.12.0", - "@eslint/plugin-kit": "^0.2.0", - "@humanfs/node": "^0.16.5", - "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.3.1", - "@types/estree": "^1.0.6", - "@types/json-schema": "^7.0.15", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.1.0", - "eslint-visitor-keys": "^4.1.0", - "espree": "^10.2.0", - "esquery": "^1.5.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^8.0.0", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://eslint.org/donate" - }, - "peerDependencies": { - "jiti": "*" - }, - "peerDependenciesMeta": { - "jiti": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.37.1", - "resolved": "https://registry.npmmirror.com/eslint-plugin-react/-/eslint-plugin-react-7.37.1.tgz", - "integrity": "sha512-xwTnwDqzbDRA8uJ7BMxPs/EXRB3i8ZfnOIp8BsxEQkT0nHPp+WWceqGgo6rKb9ctNi8GJLDT4Go5HAWELa/WMg==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.8", - "array.prototype.findlast": "^1.2.5", - "array.prototype.flatmap": "^1.3.2", - "array.prototype.tosorted": "^1.1.4", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.19", - "estraverse": "^5.3.0", - "hasown": "^2.0.2", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.8", - "object.fromentries": "^2.0.8", - "object.values": "^1.2.0", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.11", - "string.prototype.repeat": "^1.0.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "5.1.0-rc-fb9a90fa48-20240614", - "resolved": "https://registry.npmmirror.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0-rc-fb9a90fa48-20240614.tgz", - "integrity": "sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" - } - }, - "node_modules/eslint-plugin-react-refresh": { - "version": "0.4.12", - "resolved": "https://registry.npmmirror.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.12.tgz", - "integrity": "sha512-9neVjoGv20FwYtCP6CB1dzR1vr57ZDNOXst21wd2xJ/cTlM2xLq0GWVlSNTdMn/4BtP6cHYBMCSp1wFBJ9jBsg==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "eslint": ">=7" - } - }, - "node_modules/eslint-scope": { - "version": "8.1.0", - "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-8.1.0.tgz", - "integrity": "sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.1.0.tgz", - "integrity": "sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/espree": { - "version": "10.2.0", - "resolved": "https://registry.npmmirror.com/espree/-/espree-10.2.0.tgz", - "integrity": "sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^8.12.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.1.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.6.0", - "resolved": "https://registry.npmmirror.com/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true, - "license": "MIT" - }, - "node_modules/file-entry-cache": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "flat-cache": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.4" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true, - "license": "ISC" - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/globals": { - "version": "15.11.0", - "resolved": "https://registry.npmmirror.com/globals/-/globals-15.11.0.tgz", - "integrity": "sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/globalthis/-/globalthis-1.0.4.tgz", - "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.2.1", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmmirror.com/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true, - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/iterator.prototype": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/iterator.prototype/-/iterator.prototype-1.1.3.tgz", - "integrity": "sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmmirror.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "license": "MIT", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", - "dev": true, - "license": "MIT" - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.8", - "resolved": "https://registry.npmmirror.com/object.entries/-/object.entries-1.1.8.tgz", - "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.8", - "resolved": "https://registry.npmmirror.com/object.fromentries/-/object.fromentries-2.0.8.tgz", - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/object.values/-/object.values-1.2.0.tgz", - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmmirror.com/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.0.tgz", - "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", - "dev": true, - "license": "ISC" - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/postcss": { - "version": "8.4.47", - "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.47.tgz", - "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.1.0", - "source-map-js": "^1.2.1" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmmirror.com/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dev": true, - "license": "MIT", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/react": { - "version": "18.3.1", - "resolved": "https://registry.npmmirror.com/react/-/react-18.3.1.tgz", - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.3.1", - "resolved": "https://registry.npmmirror.com/react-dom/-/react-dom-18.3.1.tgz", - "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.2" - }, - "peerDependencies": { - "react": "^18.3.1" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmmirror.com/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/react-refresh": { - "version": "0.14.2", - "resolved": "https://registry.npmmirror.com/react-refresh/-/react-refresh-0.14.2.tgz", - "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.6", - "resolved": "https://registry.npmmirror.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.1", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.3", - "resolved": "https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", - "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmmirror.com/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/rollup": { - "version": "4.24.0", - "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.24.0.tgz", - "integrity": "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/estree": "1.0.6" - }, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.24.0", - "@rollup/rollup-android-arm64": "4.24.0", - "@rollup/rollup-darwin-arm64": "4.24.0", - "@rollup/rollup-darwin-x64": "4.24.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.24.0", - "@rollup/rollup-linux-arm-musleabihf": "4.24.0", - "@rollup/rollup-linux-arm64-gnu": "4.24.0", - "@rollup/rollup-linux-arm64-musl": "4.24.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.24.0", - "@rollup/rollup-linux-riscv64-gnu": "4.24.0", - "@rollup/rollup-linux-s390x-gnu": "4.24.0", - "@rollup/rollup-linux-x64-gnu": "4.24.0", - "@rollup/rollup-linux-x64-musl": "4.24.0", - "@rollup/rollup-win32-arm64-msvc": "4.24.0", - "@rollup/rollup-win32-ia32-msvc": "4.24.0", - "@rollup/rollup-win32-x64-msvc": "4.24.0", - "fsevents": "~2.3.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/scheduler": { - "version": "0.23.2", - "resolved": "https://registry.npmmirror.com/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmmirror.com/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/source-map-js": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.11", - "resolved": "https://registry.npmmirror.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", - "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "regexp.prototype.flags": "^1.5.2", - "set-function-name": "^2.0.2", - "side-channel": "^1.0.6" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.repeat": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", - "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.9", - "resolved": "https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.8", - "resolved": "https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", - "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.8", - "resolved": "https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", - "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true, - "license": "MIT" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.6", - "resolved": "https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.6.tgz", - "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", - "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "escalade": "^3.2.0", - "picocolors": "^1.1.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/vite": { - "version": "5.4.8", - "resolved": "https://registry.npmmirror.com/vite/-/vite-5.4.8.tgz", - "integrity": "sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "esbuild": "^0.21.3", - "postcss": "^8.4.43", - "rollup": "^4.20.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "sass-embedded": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.4", - "resolved": "https://registry.npmmirror.com/which-builtin-type/-/which-builtin-type-1.1.4.tgz", - "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", - "dev": true, - "license": "MIT", - "dependencies": { - "function.prototype.name": "^1.1.6", - "has-tostringtag": "^1.0.2", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.2", - "which-typed-array": "^1.1.15" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/which-collection/-/which-collection-1.0.2.tgz", - "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-map": "^2.0.3", - "is-set": "^2.0.3", - "is-weakmap": "^2.0.2", - "is-weakset": "^2.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true, - "license": "ISC" - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/front/package.json b/front/package.json deleted file mode 100644 index b8ef24bdc9..0000000000 --- a/front/package.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "oc-ae-panel", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vite build", - "lint": "eslint .", - "preview": "vite preview" - }, - "dependencies": { - "react": "^18.3.1", - "react-dom": "^18.3.1" - }, - "devDependencies": { - "@eslint/js": "^9.11.1", - "@types/react": "^18.3.10", - "@types/react-dom": "^18.3.0", - "@vitejs/plugin-react": "^4.3.2", - "eslint": "^9.11.1", - "eslint-plugin-react": "^7.37.0", - "eslint-plugin-react-hooks": "^5.1.0-rc.0", - "eslint-plugin-react-refresh": "^0.4.12", - "globals": "^15.9.0", - "vite": "^5.4.8" - } -} diff --git a/front/public/images/large/AFSU/AFSU/0.png b/front/public/images/large/AFSU/AFSU/0.png deleted file mode 100644 index f3629a0d5a..0000000000 Binary files a/front/public/images/large/AFSU/AFSU/0.png and /dev/null differ diff --git a/front/public/images/large/AFSU/AFSU/1.png b/front/public/images/large/AFSU/AFSU/1.png deleted file mode 100644 index f3629a0d5a..0000000000 Binary files a/front/public/images/large/AFSU/AFSU/1.png and /dev/null differ diff --git a/front/public/images/large/AFSU/ALC/0.png b/front/public/images/large/AFSU/ALC/0.png deleted file mode 100644 index 945c47e7e6..0000000000 Binary files a/front/public/images/large/AFSU/ALC/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/0.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/0.png deleted file mode 100644 index 24a1e602f4..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/1.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/1.png deleted file mode 100644 index 05dddf9e71..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/2.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/2.png deleted file mode 100644 index 9aefab560b..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/3.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/3.png deleted file mode 100644 index c08dc062df..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/4.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/4.png deleted file mode 100644 index a9844005fe..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/4.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/5.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/5.png deleted file mode 100644 index a01ec53ede..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/5.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/6.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/6.png deleted file mode 100644 index a098a2cfed..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrybloodRune/6.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/0.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/0.png deleted file mode 100644 index 65f33d7d43..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/1.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/1.png deleted file mode 100644 index 1234638792..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/2.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/2.png deleted file mode 100644 index d314799acd..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/3.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/3.png deleted file mode 100644 index c7e9686b73..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/0.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/0.png deleted file mode 100644 index e470fc26a5..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/1.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/1.png deleted file mode 100644 index 3157ce2e4d..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/10.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/10.png deleted file mode 100644 index bba0ec5961..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/10.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/11.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/11.png deleted file mode 100644 index 23e1c89e4f..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/11.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/12.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/12.png deleted file mode 100644 index 5e060019de..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/12.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/13.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/13.png deleted file mode 100644 index 3224aa70d9..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/13.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/14.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/14.png deleted file mode 100644 index e470fc26a5..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/14.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/2.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/2.png deleted file mode 100644 index f569165021..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/3.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/3.png deleted file mode 100644 index 7432a7c3bb..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/4.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/4.png deleted file mode 100644 index e470fc26a5..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/4.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/5.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/5.png deleted file mode 100644 index a9b617c851..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/5.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/6.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/6.png deleted file mode 100644 index 5294ac2053..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/6.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/7.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/7.png deleted file mode 100644 index efd7e02bcf..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/7.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/8.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/8.png deleted file mode 100644 index 21eefd1f12..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/8.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/9.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/9.png deleted file mode 100644 index e470fc26a5..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/9.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/0.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/0.png deleted file mode 100644 index 99950526e4..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/1.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/1.png deleted file mode 100644 index 6dacf31a4a..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/2.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/2.png deleted file mode 100644 index 614e65cba8..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/3.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/3.png deleted file mode 100644 index 3d0a44651d..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/0.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/0.png deleted file mode 100644 index c660bbb72f..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/1.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/1.png deleted file mode 100644 index 155a0eb1dc..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/2.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/2.png deleted file mode 100644 index cdad65b186..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/3.png b/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/3.png deleted file mode 100644 index 993dd59c75..0000000000 Binary files a/front/public/images/large/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/Altar/0.png b/front/public/images/large/AWWayofTime/Altar/0.png deleted file mode 100644 index 893e91c05f..0000000000 Binary files a/front/public/images/large/AWWayofTime/Altar/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/activationCrystal/0.png b/front/public/images/large/AWWayofTime/activationCrystal/0.png deleted file mode 100644 index c48b3ecd5a..0000000000 Binary files a/front/public/images/large/AWWayofTime/activationCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/activationCrystal/1.png b/front/public/images/large/AWWayofTime/activationCrystal/1.png deleted file mode 100644 index 4b63cccf88..0000000000 Binary files a/front/public/images/large/AWWayofTime/activationCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/activationCrystal/2.png b/front/public/images/large/AWWayofTime/activationCrystal/2.png deleted file mode 100644 index c48b3ecd5a..0000000000 Binary files a/front/public/images/large/AWWayofTime/activationCrystal/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/aether/0.png b/front/public/images/large/AWWayofTime/aether/0.png deleted file mode 100644 index 1b04c9a508..0000000000 Binary files a/front/public/images/large/AWWayofTime/aether/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/airScribeTool/0.png b/front/public/images/large/AWWayofTime/airScribeTool/0.png deleted file mode 100644 index aadbe55e92..0000000000 Binary files a/front/public/images/large/AWWayofTime/airScribeTool/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/airSigil/0.png b/front/public/images/large/AWWayofTime/airSigil/0.png deleted file mode 100644 index 24a01de39b..0000000000 Binary files a/front/public/images/large/AWWayofTime/airSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/alchemyFlask/0.png b/front/public/images/large/AWWayofTime/alchemyFlask/0.png deleted file mode 100644 index 7a849c2da0..0000000000 Binary files a/front/public/images/large/AWWayofTime/alchemyFlask/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/apprenticeBloodOrb/0.png b/front/public/images/large/AWWayofTime/apprenticeBloodOrb/0.png deleted file mode 100644 index 18c5ad5d7f..0000000000 Binary files a/front/public/images/large/AWWayofTime/apprenticeBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/aquasalus/0.png b/front/public/images/large/AWWayofTime/aquasalus/0.png deleted file mode 100644 index c9adbbbd78..0000000000 Binary files a/front/public/images/large/AWWayofTime/aquasalus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/archmageBloodOrb/0.png b/front/public/images/large/AWWayofTime/archmageBloodOrb/0.png deleted file mode 100644 index e5ad030fe2..0000000000 Binary files a/front/public/images/large/AWWayofTime/archmageBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/armourForge/0.png b/front/public/images/large/AWWayofTime/armourForge/0.png deleted file mode 100644 index 9ccf1b932b..0000000000 Binary files a/front/public/images/large/AWWayofTime/armourForge/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/armourInhibitor/0.png b/front/public/images/large/AWWayofTime/armourInhibitor/0.png deleted file mode 100644 index 3587d2e8c1..0000000000 Binary files a/front/public/images/large/AWWayofTime/armourInhibitor/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/averageLengtheningCatalyst/0.png b/front/public/images/large/AWWayofTime/averageLengtheningCatalyst/0.png deleted file mode 100644 index bc8ceb97c1..0000000000 Binary files a/front/public/images/large/AWWayofTime/averageLengtheningCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/averagePowerCatalyst/0.png b/front/public/images/large/AWWayofTime/averagePowerCatalyst/0.png deleted file mode 100644 index 2fda34bc9f..0000000000 Binary files a/front/public/images/large/AWWayofTime/averagePowerCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blankSlate/0.png b/front/public/images/large/AWWayofTime/blankSlate/0.png deleted file mode 100644 index cccfa6046e..0000000000 Binary files a/front/public/images/large/AWWayofTime/blankSlate/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blankSpell/0.png b/front/public/images/large/AWWayofTime/blankSpell/0.png deleted file mode 100644 index 819ab4e2c8..0000000000 Binary files a/front/public/images/large/AWWayofTime/blankSpell/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockAlchemicCalcinator/0.png b/front/public/images/large/AWWayofTime/blockAlchemicCalcinator/0.png deleted file mode 100644 index ee1449031f..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockAlchemicCalcinator/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockConduit/0.png b/front/public/images/large/AWWayofTime/blockConduit/0.png deleted file mode 100644 index 9e21badcbd..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockConduit/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockCrucible/0.png b/front/public/images/large/AWWayofTime/blockCrucible/0.png deleted file mode 100644 index 06a9f2640e..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockCrucible/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockCrystal/0.png b/front/public/images/large/AWWayofTime/blockCrystal/0.png deleted file mode 100644 index 2c1b43d78e..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockCrystal/1.png b/front/public/images/large/AWWayofTime/blockCrystal/1.png deleted file mode 100644 index ce1623fae9..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockCrystalBelljar/0.png b/front/public/images/large/AWWayofTime/blockCrystalBelljar/0.png deleted file mode 100644 index 001ccd717e..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockCrystalBelljar/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockDemonChest/0.png b/front/public/images/large/AWWayofTime/blockDemonChest/0.png deleted file mode 100644 index df029e7057..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockDemonChest/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockEnchantmentGlyph/0.png b/front/public/images/large/AWWayofTime/blockEnchantmentGlyph/0.png deleted file mode 100644 index 6b9b838d2f..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockEnchantmentGlyph/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockEnchantmentGlyph/1.png b/front/public/images/large/AWWayofTime/blockEnchantmentGlyph/1.png deleted file mode 100644 index e6beea4baf..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockEnchantmentGlyph/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockHomHeart/0.png b/front/public/images/large/AWWayofTime/blockHomHeart/0.png deleted file mode 100644 index 42f0fd2991..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockHomHeart/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockMimic/0.png b/front/public/images/large/AWWayofTime/blockMimic/0.png deleted file mode 100644 index 03e68c7d61..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockMimic/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockPedestal/0.png b/front/public/images/large/AWWayofTime/blockPedestal/0.png deleted file mode 100644 index 5a6af9bf7a..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockPedestal/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockPlinth/0.png b/front/public/images/large/AWWayofTime/blockPlinth/0.png deleted file mode 100644 index a9d2a696dd..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockPlinth/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockReagentConduit/0.png b/front/public/images/large/AWWayofTime/blockReagentConduit/0.png deleted file mode 100644 index c51f300a31..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockReagentConduit/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockSchemSaver/0.png b/front/public/images/large/AWWayofTime/blockSchemSaver/0.png deleted file mode 100644 index 03e68c7d61..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockSchemSaver/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockStabilityGlyph/0.png b/front/public/images/large/AWWayofTime/blockStabilityGlyph/0.png deleted file mode 100644 index d482b638e3..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockStabilityGlyph/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockTeleposer/0.png b/front/public/images/large/AWWayofTime/blockTeleposer/0.png deleted file mode 100644 index a8ef4da5e2..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockTeleposer/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/blockWritingTable/0.png b/front/public/images/large/AWWayofTime/blockWritingTable/0.png deleted file mode 100644 index 3a7444a2e1..0000000000 Binary files a/front/public/images/large/AWWayofTime/blockWritingTable/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodLight/0.png b/front/public/images/large/AWWayofTime/bloodLight/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodLight/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/0.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/0.png deleted file mode 100644 index 227ca653d6..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/1.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/1.png deleted file mode 100644 index 6744000359..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/2.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/2.png deleted file mode 100644 index ebce3762f8..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/3.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/3.png deleted file mode 100644 index 0897ba108d..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/4.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/4.png deleted file mode 100644 index 6b9ce09a45..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/4.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/5.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/5.png deleted file mode 100644 index 13de84a071..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/5.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/6.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/6.png deleted file mode 100644 index cc58cee4bc..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/6.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/7.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/7.png deleted file mode 100644 index 0d1eccf9cd..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/7.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/8.png b/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/8.png deleted file mode 100644 index f3793058f4..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseAlchemyItems/8.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/0.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/0.png deleted file mode 100644 index af1cf415c5..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/1.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/1.png deleted file mode 100644 index db48fb8edd..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/10.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/10.png deleted file mode 100644 index fb78503873..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/10.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/11.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/11.png deleted file mode 100644 index 57cb9347aa..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/11.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/12.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/12.png deleted file mode 100644 index 3d678951b5..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/12.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/13.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/13.png deleted file mode 100644 index e7ed7b7819..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/13.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/14.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/14.png deleted file mode 100644 index 22b4e3fde1..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/14.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/15.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/15.png deleted file mode 100644 index 94aefe3e93..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/15.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/16.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/16.png deleted file mode 100644 index 72b9aebb29..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/16.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/17.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/17.png deleted file mode 100644 index dc03bfc8a1..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/17.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/18.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/18.png deleted file mode 100644 index 85e8460ddb..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/18.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/19.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/19.png deleted file mode 100644 index c8f6e4db0b..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/19.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/2.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/2.png deleted file mode 100644 index bae36c77f1..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/20.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/20.png deleted file mode 100644 index 05cf0848b0..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/20.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/21.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/21.png deleted file mode 100644 index 82e35356e5..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/21.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/22.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/22.png deleted file mode 100644 index 919287706e..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/22.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/23.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/23.png deleted file mode 100644 index 5f23c14fd4..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/23.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/24.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/24.png deleted file mode 100644 index d4e0c61b30..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/24.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/25.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/25.png deleted file mode 100644 index 57f997552e..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/25.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/26.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/26.png deleted file mode 100644 index 82a5205803..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/26.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/27.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/27.png deleted file mode 100644 index 68fc7e052c..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/27.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/28.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/28.png deleted file mode 100644 index 2eafc5ca02..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/28.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/29.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/29.png deleted file mode 100644 index 5713cc3325..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/29.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/3.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/3.png deleted file mode 100644 index 73aa5919b2..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/30.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/30.png deleted file mode 100644 index e3bb210a84..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/30.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/31.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/31.png deleted file mode 100644 index 4e9a15ddbf..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/31.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/32.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/32.png deleted file mode 100644 index e4f172b73d..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/32.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/4.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/4.png deleted file mode 100644 index 378b7e562d..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/4.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/5.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/5.png deleted file mode 100644 index 4bc6ef4f9a..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/5.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/6.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/6.png deleted file mode 100644 index 4cef266208..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/6.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/7.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/7.png deleted file mode 100644 index 7a593c7fe2..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/7.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/8.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/8.png deleted file mode 100644 index df04b109eb..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/8.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/9.png b/front/public/images/large/AWWayofTime/bloodMagicBaseItems/9.png deleted file mode 100644 index a59eec1c4d..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicBaseItems/9.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/0.png b/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/0.png deleted file mode 100644 index e2817ab4ab..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/1.png b/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/1.png deleted file mode 100644 index 579ac0109f..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/2.png b/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/2.png deleted file mode 100644 index 1da17031c2..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/3.png b/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/3.png deleted file mode 100644 index eacec74692..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/4.png b/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/4.png deleted file mode 100644 index acdb5915cc..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodMagicIncenseItem/4.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodSocket/0.png b/front/public/images/large/AWWayofTime/bloodSocket/0.png deleted file mode 100644 index 308a492efb..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodSocket/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bloodStoneBrick/0.png b/front/public/images/large/AWWayofTime/bloodStoneBrick/0.png deleted file mode 100644 index 30c22b8abb..0000000000 Binary files a/front/public/images/large/AWWayofTime/bloodStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundAxe/0.png b/front/public/images/large/AWWayofTime/boundAxe/0.png deleted file mode 100644 index 7f1641e0ee..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundAxe/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundBoots/0.png b/front/public/images/large/AWWayofTime/boundBoots/0.png deleted file mode 100644 index 9aa1821374..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundBoots/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundBootsEarth/0.png b/front/public/images/large/AWWayofTime/boundBootsEarth/0.png deleted file mode 100644 index 91922d3e50..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundBootsEarth/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundBootsFire/0.png b/front/public/images/large/AWWayofTime/boundBootsFire/0.png deleted file mode 100644 index da4f2a44f4..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundBootsFire/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundBootsWater/0.png b/front/public/images/large/AWWayofTime/boundBootsWater/0.png deleted file mode 100644 index f9ba5496e7..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundBootsWater/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundBootsWind/0.png b/front/public/images/large/AWWayofTime/boundBootsWind/0.png deleted file mode 100644 index 0fc2ecea19..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundBootsWind/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundHelmet/0.png b/front/public/images/large/AWWayofTime/boundHelmet/0.png deleted file mode 100644 index 46be97c45a..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundHelmetEarth/0.png b/front/public/images/large/AWWayofTime/boundHelmetEarth/0.png deleted file mode 100644 index 09cc63fa1f..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundHelmetEarth/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundHelmetFire/0.png b/front/public/images/large/AWWayofTime/boundHelmetFire/0.png deleted file mode 100644 index 4eee55e893..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundHelmetFire/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundHelmetWater/0.png b/front/public/images/large/AWWayofTime/boundHelmetWater/0.png deleted file mode 100644 index eb9d534210..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundHelmetWater/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundHelmetWind/0.png b/front/public/images/large/AWWayofTime/boundHelmetWind/0.png deleted file mode 100644 index 81e21b1070..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundHelmetWind/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundLeggings/0.png b/front/public/images/large/AWWayofTime/boundLeggings/0.png deleted file mode 100644 index d55db786bb..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundLeggingsEarth/0.png b/front/public/images/large/AWWayofTime/boundLeggingsEarth/0.png deleted file mode 100644 index 25b1e9770b..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundLeggingsEarth/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundLeggingsFire/0.png b/front/public/images/large/AWWayofTime/boundLeggingsFire/0.png deleted file mode 100644 index ab9dfc1a28..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundLeggingsFire/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundLeggingsWater/0.png b/front/public/images/large/AWWayofTime/boundLeggingsWater/0.png deleted file mode 100644 index 95177d45f1..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundLeggingsWater/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundLeggingsWind/0.png b/front/public/images/large/AWWayofTime/boundLeggingsWind/0.png deleted file mode 100644 index fd980d8fdb..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundLeggingsWind/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundPickaxe/0.png b/front/public/images/large/AWWayofTime/boundPickaxe/0.png deleted file mode 100644 index 9f30d88ad6..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundPlate/0.png b/front/public/images/large/AWWayofTime/boundPlate/0.png deleted file mode 100644 index 3560b4fbfa..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundPlate/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundPlateEarth/0.png b/front/public/images/large/AWWayofTime/boundPlateEarth/0.png deleted file mode 100644 index 4755a51545..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundPlateEarth/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundPlateFire/0.png b/front/public/images/large/AWWayofTime/boundPlateFire/0.png deleted file mode 100644 index a32cdc3846..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundPlateFire/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundPlateWater/0.png b/front/public/images/large/AWWayofTime/boundPlateWater/0.png deleted file mode 100644 index 6a348ffe03..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundPlateWater/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundPlateWind/0.png b/front/public/images/large/AWWayofTime/boundPlateWind/0.png deleted file mode 100644 index ec86712b16..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundPlateWind/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/boundShovel/0.png b/front/public/images/large/AWWayofTime/boundShovel/0.png deleted file mode 100644 index f669f187ab..0000000000 Binary files a/front/public/images/large/AWWayofTime/boundShovel/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/bucketLife/0.png b/front/public/images/large/AWWayofTime/bucketLife/0.png deleted file mode 100644 index cbc2f9e8fe..0000000000 Binary files a/front/public/images/large/AWWayofTime/bucketLife/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/creativeDagger/0.png b/front/public/images/large/AWWayofTime/creativeDagger/0.png deleted file mode 100644 index 6489766b43..0000000000 Binary files a/front/public/images/large/AWWayofTime/creativeDagger/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/creativeFiller/0.png b/front/public/images/large/AWWayofTime/creativeFiller/0.png deleted file mode 100644 index a3b47b5869..0000000000 Binary files a/front/public/images/large/AWWayofTime/creativeFiller/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/crepitous/0.png b/front/public/images/large/AWWayofTime/crepitous/0.png deleted file mode 100644 index 563b40197f..0000000000 Binary files a/front/public/images/large/AWWayofTime/crepitous/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/crystallos/0.png b/front/public/images/large/AWWayofTime/crystallos/0.png deleted file mode 100644 index 6f96d402cd..0000000000 Binary files a/front/public/images/large/AWWayofTime/crystallos/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/customTool/0.png b/front/public/images/large/AWWayofTime/customTool/0.png deleted file mode 100644 index dd880d280e..0000000000 Binary files a/front/public/images/large/AWWayofTime/customTool/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/daggerOfSacrifice/0.png b/front/public/images/large/AWWayofTime/daggerOfSacrifice/0.png deleted file mode 100644 index 95c523745b..0000000000 Binary files a/front/public/images/large/AWWayofTime/daggerOfSacrifice/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/dawnScribeTool/0.png b/front/public/images/large/AWWayofTime/dawnScribeTool/0.png deleted file mode 100644 index 95bae524dc..0000000000 Binary files a/front/public/images/large/AWWayofTime/dawnScribeTool/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/demonBloodShard/0.png b/front/public/images/large/AWWayofTime/demonBloodShard/0.png deleted file mode 100644 index f87d5476c5..0000000000 Binary files a/front/public/images/large/AWWayofTime/demonBloodShard/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/demonPlacer/0.png b/front/public/images/large/AWWayofTime/demonPlacer/0.png deleted file mode 100644 index 25785ed2f3..0000000000 Binary files a/front/public/images/large/AWWayofTime/demonPlacer/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/demonPortalMain/0.png b/front/public/images/large/AWWayofTime/demonPortalMain/0.png deleted file mode 100644 index b89479308a..0000000000 Binary files a/front/public/images/large/AWWayofTime/demonPortalMain/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/demonicSlate/0.png b/front/public/images/large/AWWayofTime/demonicSlate/0.png deleted file mode 100644 index a18a98adb1..0000000000 Binary files a/front/public/images/large/AWWayofTime/demonicSlate/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/demonicTelepositionFocus/0.png b/front/public/images/large/AWWayofTime/demonicTelepositionFocus/0.png deleted file mode 100644 index 335f71465e..0000000000 Binary files a/front/public/images/large/AWWayofTime/demonicTelepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/divinationSigil/0.png b/front/public/images/large/AWWayofTime/divinationSigil/0.png deleted file mode 100644 index 4a31dac830..0000000000 Binary files a/front/public/images/large/AWWayofTime/divinationSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/duskScribeTool/0.png b/front/public/images/large/AWWayofTime/duskScribeTool/0.png deleted file mode 100644 index 2dd0db2c76..0000000000 Binary files a/front/public/images/large/AWWayofTime/duskScribeTool/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/earthScribeTool/0.png b/front/public/images/large/AWWayofTime/earthScribeTool/0.png deleted file mode 100644 index b99d5f27ec..0000000000 Binary files a/front/public/images/large/AWWayofTime/earthScribeTool/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/efficiencyRune/0.png b/front/public/images/large/AWWayofTime/efficiencyRune/0.png deleted file mode 100644 index 3b19f47e02..0000000000 Binary files a/front/public/images/large/AWWayofTime/efficiencyRune/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/emptySocket/0.png b/front/public/images/large/AWWayofTime/emptySocket/0.png deleted file mode 100644 index d50c235463..0000000000 Binary files a/front/public/images/large/AWWayofTime/emptySocket/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/energyBazooka/0.png b/front/public/images/large/AWWayofTime/energyBazooka/0.png deleted file mode 100644 index ebfe2d5e60..0000000000 Binary files a/front/public/images/large/AWWayofTime/energyBazooka/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/energyBazookaSecondTier/0.png b/front/public/images/large/AWWayofTime/energyBazookaSecondTier/0.png deleted file mode 100644 index ebfe2d5e60..0000000000 Binary files a/front/public/images/large/AWWayofTime/energyBazookaSecondTier/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/energyBazookaThirdTier/0.png b/front/public/images/large/AWWayofTime/energyBazookaThirdTier/0.png deleted file mode 100644 index ebfe2d5e60..0000000000 Binary files a/front/public/images/large/AWWayofTime/energyBazookaThirdTier/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/energyBlaster/0.png b/front/public/images/large/AWWayofTime/energyBlaster/0.png deleted file mode 100644 index 1ef6968262..0000000000 Binary files a/front/public/images/large/AWWayofTime/energyBlaster/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/energyBlasterSecondTier/0.png b/front/public/images/large/AWWayofTime/energyBlasterSecondTier/0.png deleted file mode 100644 index 1ef6968262..0000000000 Binary files a/front/public/images/large/AWWayofTime/energyBlasterSecondTier/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/energyBlasterThirdTier/0.png b/front/public/images/large/AWWayofTime/energyBlasterThirdTier/0.png deleted file mode 100644 index 1ef6968262..0000000000 Binary files a/front/public/images/large/AWWayofTime/energyBlasterThirdTier/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/energySword/0.png b/front/public/images/large/AWWayofTime/energySword/0.png deleted file mode 100644 index 066532bda3..0000000000 Binary files a/front/public/images/large/AWWayofTime/energySword/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/enhancedFillingAgent/0.png b/front/public/images/large/AWWayofTime/enhancedFillingAgent/0.png deleted file mode 100644 index b18cb21d51..0000000000 Binary files a/front/public/images/large/AWWayofTime/enhancedFillingAgent/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/enhancedTelepositionFocus/0.png b/front/public/images/large/AWWayofTime/enhancedTelepositionFocus/0.png deleted file mode 100644 index 6dabef48e2..0000000000 Binary files a/front/public/images/large/AWWayofTime/enhancedTelepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/fireScribeTool/0.png b/front/public/images/large/AWWayofTime/fireScribeTool/0.png deleted file mode 100644 index 7f8b12e5d6..0000000000 Binary files a/front/public/images/large/AWWayofTime/fireScribeTool/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/fluidSigil/0.png b/front/public/images/large/AWWayofTime/fluidSigil/0.png deleted file mode 100644 index 3842fe58fe..0000000000 Binary files a/front/public/images/large/AWWayofTime/fluidSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/greaterLengtheningCatalyst/0.png b/front/public/images/large/AWWayofTime/greaterLengtheningCatalyst/0.png deleted file mode 100644 index 1e489714df..0000000000 Binary files a/front/public/images/large/AWWayofTime/greaterLengtheningCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/greaterPowerCatalyst/0.png b/front/public/images/large/AWWayofTime/greaterPowerCatalyst/0.png deleted file mode 100644 index 56b0a9d021..0000000000 Binary files a/front/public/images/large/AWWayofTime/greaterPowerCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/growthSigil/0.png b/front/public/images/large/AWWayofTime/growthSigil/0.png deleted file mode 100644 index f2c97900db..0000000000 Binary files a/front/public/images/large/AWWayofTime/growthSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/imbuedSlate/0.png b/front/public/images/large/AWWayofTime/imbuedSlate/0.png deleted file mode 100644 index a3a3c41616..0000000000 Binary files a/front/public/images/large/AWWayofTime/imbuedSlate/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/imperfectRitualStone/0.png b/front/public/images/large/AWWayofTime/imperfectRitualStone/0.png deleted file mode 100644 index 6853049402..0000000000 Binary files a/front/public/images/large/AWWayofTime/imperfectRitualStone/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/incendium/0.png b/front/public/images/large/AWWayofTime/incendium/0.png deleted file mode 100644 index 79565481ec..0000000000 Binary files a/front/public/images/large/AWWayofTime/incendium/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/inputRoutingFocus/0.png b/front/public/images/large/AWWayofTime/inputRoutingFocus/0.png deleted file mode 100644 index e8fd451ef5..0000000000 Binary files a/front/public/images/large/AWWayofTime/inputRoutingFocus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemAssassinSigil/0.png b/front/public/images/large/AWWayofTime/itemAssassinSigil/0.png deleted file mode 100644 index 3842fe58fe..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemAssassinSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemAttunedCrystal/0.png b/front/public/images/large/AWWayofTime/itemAttunedCrystal/0.png deleted file mode 100644 index 6181c8d9d3..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemAttunedCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemBloodLightSigil/0.png b/front/public/images/large/AWWayofTime/itemBloodLightSigil/0.png deleted file mode 100644 index ea863e0ea9..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemBloodLightSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemBloodPack/0.png b/front/public/images/large/AWWayofTime/itemBloodPack/0.png deleted file mode 100644 index 3aaccc94c4..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemBloodPack/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemCombinationalCatalyst/0.png b/front/public/images/large/AWWayofTime/itemCombinationalCatalyst/0.png deleted file mode 100644 index 8330ba4d63..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemCombinationalCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemComplexSpellCrystal/0.png b/front/public/images/large/AWWayofTime/itemComplexSpellCrystal/0.png deleted file mode 100644 index 73481b41e8..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemComplexSpellCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemCompressionSigil/0.png b/front/public/images/large/AWWayofTime/itemCompressionSigil/0.png deleted file mode 100644 index b06c99c91c..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemCompressionSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemDestinationClearer/0.png b/front/public/images/large/AWWayofTime/itemDestinationClearer/0.png deleted file mode 100644 index a7bbc39457..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemDestinationClearer/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemHarvestSigil/0.png b/front/public/images/large/AWWayofTime/itemHarvestSigil/0.png deleted file mode 100644 index 753f817933..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemHarvestSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemKeyOfDiablo/0.png b/front/public/images/large/AWWayofTime/itemKeyOfDiablo/0.png deleted file mode 100644 index ba5db10f90..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemKeyOfDiablo/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemRitualDiviner/0.png b/front/public/images/large/AWWayofTime/itemRitualDiviner/0.png deleted file mode 100644 index b1729eaba9..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemRitualDiviner/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemRitualDiviner/1.png b/front/public/images/large/AWWayofTime/itemRitualDiviner/1.png deleted file mode 100644 index b1729eaba9..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemRitualDiviner/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemRitualDiviner/2.png b/front/public/images/large/AWWayofTime/itemRitualDiviner/2.png deleted file mode 100644 index b1729eaba9..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemRitualDiviner/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/itemTankSegmenter/0.png b/front/public/images/large/AWWayofTime/itemTankSegmenter/0.png deleted file mode 100644 index 78bca191e3..0000000000 Binary files a/front/public/images/large/AWWayofTime/itemTankSegmenter/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/largeBloodStoneBrick/0.png b/front/public/images/large/AWWayofTime/largeBloodStoneBrick/0.png deleted file mode 100644 index 8672c414c7..0000000000 Binary files a/front/public/images/large/AWWayofTime/largeBloodStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/lavaCrystal/0.png b/front/public/images/large/AWWayofTime/lavaCrystal/0.png deleted file mode 100644 index 1e53bca657..0000000000 Binary files a/front/public/images/large/AWWayofTime/lavaCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/lavaSigil/0.png b/front/public/images/large/AWWayofTime/lavaSigil/0.png deleted file mode 100644 index 9ced6f8471..0000000000 Binary files a/front/public/images/large/AWWayofTime/lavaSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/lifeEssence/0.png b/front/public/images/large/AWWayofTime/lifeEssence/0.png deleted file mode 100644 index 963427eb92..0000000000 Binary files a/front/public/images/large/AWWayofTime/lifeEssence/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/magicales/0.png b/front/public/images/large/AWWayofTime/magicales/0.png deleted file mode 100644 index 4c0e983020..0000000000 Binary files a/front/public/images/large/AWWayofTime/magicales/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/magicianBloodOrb/0.png b/front/public/images/large/AWWayofTime/magicianBloodOrb/0.png deleted file mode 100644 index 2f99c73b8d..0000000000 Binary files a/front/public/images/large/AWWayofTime/magicianBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/masterBloodOrb/0.png b/front/public/images/large/AWWayofTime/masterBloodOrb/0.png deleted file mode 100644 index c644c50b76..0000000000 Binary files a/front/public/images/large/AWWayofTime/masterBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/masterStone/0.png b/front/public/images/large/AWWayofTime/masterStone/0.png deleted file mode 100644 index 1539229a68..0000000000 Binary files a/front/public/images/large/AWWayofTime/masterStone/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/mundaneLengtheningCatalyst/0.png b/front/public/images/large/AWWayofTime/mundaneLengtheningCatalyst/0.png deleted file mode 100644 index f6315cdf3b..0000000000 Binary files a/front/public/images/large/AWWayofTime/mundaneLengtheningCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/mundanePowerCatalyst/0.png b/front/public/images/large/AWWayofTime/mundanePowerCatalyst/0.png deleted file mode 100644 index 861067a63d..0000000000 Binary files a/front/public/images/large/AWWayofTime/mundanePowerCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/outputRoutingFocus/0.png b/front/public/images/large/AWWayofTime/outputRoutingFocus/0.png deleted file mode 100644 index b014245e89..0000000000 Binary files a/front/public/images/large/AWWayofTime/outputRoutingFocus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/outputRoutingFocus/1.png b/front/public/images/large/AWWayofTime/outputRoutingFocus/1.png deleted file mode 100644 index 285dcafc05..0000000000 Binary files a/front/public/images/large/AWWayofTime/outputRoutingFocus/1.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/outputRoutingFocus/2.png b/front/public/images/large/AWWayofTime/outputRoutingFocus/2.png deleted file mode 100644 index ceddd643d6..0000000000 Binary files a/front/public/images/large/AWWayofTime/outputRoutingFocus/2.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/outputRoutingFocus/3.png b/front/public/images/large/AWWayofTime/outputRoutingFocus/3.png deleted file mode 100644 index e7f1a96cbd..0000000000 Binary files a/front/public/images/large/AWWayofTime/outputRoutingFocus/3.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/outputRoutingFocus/4.png b/front/public/images/large/AWWayofTime/outputRoutingFocus/4.png deleted file mode 100644 index 0eb366fa2b..0000000000 Binary files a/front/public/images/large/AWWayofTime/outputRoutingFocus/4.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/reinforcedSlate/0.png b/front/public/images/large/AWWayofTime/reinforcedSlate/0.png deleted file mode 100644 index 184c38cf16..0000000000 Binary files a/front/public/images/large/AWWayofTime/reinforcedSlate/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/reinforcedTelepositionFocus/0.png b/front/public/images/large/AWWayofTime/reinforcedTelepositionFocus/0.png deleted file mode 100644 index 5df0d1e635..0000000000 Binary files a/front/public/images/large/AWWayofTime/reinforcedTelepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/ritualDismantler/0.png b/front/public/images/large/AWWayofTime/ritualDismantler/0.png deleted file mode 100644 index 4f0493c244..0000000000 Binary files a/front/public/images/large/AWWayofTime/ritualDismantler/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/ritualStone/0.png b/front/public/images/large/AWWayofTime/ritualStone/0.png deleted file mode 100644 index 6809393024..0000000000 Binary files a/front/public/images/large/AWWayofTime/ritualStone/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/runeOfSacrifice/0.png b/front/public/images/large/AWWayofTime/runeOfSacrifice/0.png deleted file mode 100644 index e11ef716b1..0000000000 Binary files a/front/public/images/large/AWWayofTime/runeOfSacrifice/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/runeOfSelfSacrifice/0.png b/front/public/images/large/AWWayofTime/runeOfSelfSacrifice/0.png deleted file mode 100644 index 3ad99c13c8..0000000000 Binary files a/front/public/images/large/AWWayofTime/runeOfSelfSacrifice/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sacrificialKnife/0.png b/front/public/images/large/AWWayofTime/sacrificialKnife/0.png deleted file mode 100644 index 6489766b43..0000000000 Binary files a/front/public/images/large/AWWayofTime/sacrificialKnife/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sanctus/0.png b/front/public/images/large/AWWayofTime/sanctus/0.png deleted file mode 100644 index 361ac54490..0000000000 Binary files a/front/public/images/large/AWWayofTime/sanctus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/seerSigil/0.png b/front/public/images/large/AWWayofTime/seerSigil/0.png deleted file mode 100644 index 28868fbbcc..0000000000 Binary files a/front/public/images/large/AWWayofTime/seerSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfElementalAffinity/0.png b/front/public/images/large/AWWayofTime/sigilOfElementalAffinity/0.png deleted file mode 100644 index 7364b06ce0..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfElementalAffinity/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfEnderSeverance/0.png b/front/public/images/large/AWWayofTime/sigilOfEnderSeverance/0.png deleted file mode 100644 index ec342a0d88..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfEnderSeverance/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfHaste/0.png b/front/public/images/large/AWWayofTime/sigilOfHaste/0.png deleted file mode 100644 index 5ef3502645..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfHaste/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfHolding/0.png b/front/public/images/large/AWWayofTime/sigilOfHolding/0.png deleted file mode 100644 index bb554ba884..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfHolding/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfMagnetism/0.png b/front/public/images/large/AWWayofTime/sigilOfMagnetism/0.png deleted file mode 100644 index c76e60e539..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfMagnetism/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfSupression/0.png b/front/public/images/large/AWWayofTime/sigilOfSupression/0.png deleted file mode 100644 index b0580c8728..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfSupression/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfTheBridge/0.png b/front/public/images/large/AWWayofTime/sigilOfTheBridge/0.png deleted file mode 100644 index 6c1914882d..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfTheBridge/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfTheFastMiner/0.png b/front/public/images/large/AWWayofTime/sigilOfTheFastMiner/0.png deleted file mode 100644 index 55fb4fe28e..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfTheFastMiner/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/sigilOfWind/0.png b/front/public/images/large/AWWayofTime/sigilOfWind/0.png deleted file mode 100644 index 43965a49e3..0000000000 Binary files a/front/public/images/large/AWWayofTime/sigilOfWind/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/simpleCatalyst/0.png b/front/public/images/large/AWWayofTime/simpleCatalyst/0.png deleted file mode 100644 index 2a41b61280..0000000000 Binary files a/front/public/images/large/AWWayofTime/simpleCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/spectralBlock/0.png b/front/public/images/large/AWWayofTime/spectralBlock/0.png deleted file mode 100644 index 64fe264fdc..0000000000 Binary files a/front/public/images/large/AWWayofTime/spectralBlock/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/spectralContainer/0.png b/front/public/images/large/AWWayofTime/spectralContainer/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/AWWayofTime/spectralContainer/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/speedRune/0.png b/front/public/images/large/AWWayofTime/speedRune/0.png deleted file mode 100644 index f605f6e052..0000000000 Binary files a/front/public/images/large/AWWayofTime/speedRune/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/standardBindingAgent/0.png b/front/public/images/large/AWWayofTime/standardBindingAgent/0.png deleted file mode 100644 index 58d7654351..0000000000 Binary files a/front/public/images/large/AWWayofTime/standardBindingAgent/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/standardFillingAgent/0.png b/front/public/images/large/AWWayofTime/standardFillingAgent/0.png deleted file mode 100644 index 3771bb363e..0000000000 Binary files a/front/public/images/large/AWWayofTime/standardFillingAgent/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/telepositionFocus/0.png b/front/public/images/large/AWWayofTime/telepositionFocus/0.png deleted file mode 100644 index 0fbc526ee1..0000000000 Binary files a/front/public/images/large/AWWayofTime/telepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/tennebrae/0.png b/front/public/images/large/AWWayofTime/tennebrae/0.png deleted file mode 100644 index 714a3758b6..0000000000 Binary files a/front/public/images/large/AWWayofTime/tennebrae/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/terrae/0.png b/front/public/images/large/AWWayofTime/terrae/0.png deleted file mode 100644 index fd493eef92..0000000000 Binary files a/front/public/images/large/AWWayofTime/terrae/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/transcendentBloodOrb/0.png b/front/public/images/large/AWWayofTime/transcendentBloodOrb/0.png deleted file mode 100644 index 5e0ebb0582..0000000000 Binary files a/front/public/images/large/AWWayofTime/transcendentBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/voidSigil/0.png b/front/public/images/large/AWWayofTime/voidSigil/0.png deleted file mode 100644 index 114ab04fc2..0000000000 Binary files a/front/public/images/large/AWWayofTime/voidSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/waterScribeTool/0.png b/front/public/images/large/AWWayofTime/waterScribeTool/0.png deleted file mode 100644 index 78127939eb..0000000000 Binary files a/front/public/images/large/AWWayofTime/waterScribeTool/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/waterSigil/0.png b/front/public/images/large/AWWayofTime/waterSigil/0.png deleted file mode 100644 index 3842fe58fe..0000000000 Binary files a/front/public/images/large/AWWayofTime/waterSigil/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/weakBindingAgent/0.png b/front/public/images/large/AWWayofTime/weakBindingAgent/0.png deleted file mode 100644 index 081ff680e9..0000000000 Binary files a/front/public/images/large/AWWayofTime/weakBindingAgent/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/weakBloodOrb/0.png b/front/public/images/large/AWWayofTime/weakBloodOrb/0.png deleted file mode 100644 index a3b47b5869..0000000000 Binary files a/front/public/images/large/AWWayofTime/weakBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/weakBloodShard/0.png b/front/public/images/large/AWWayofTime/weakBloodShard/0.png deleted file mode 100644 index 32ba2fbed0..0000000000 Binary files a/front/public/images/large/AWWayofTime/weakBloodShard/0.png and /dev/null differ diff --git a/front/public/images/large/AWWayofTime/weakFillingAgent/0.png b/front/public/images/large/AWWayofTime/weakFillingAgent/0.png deleted file mode 100644 index 9657d68f53..0000000000 Binary files a/front/public/images/large/AWWayofTime/weakFillingAgent/0.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/0.png b/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/0.png deleted file mode 100644 index 508cf3e094..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/1.png b/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/1.png deleted file mode 100644 index ba50a8dd21..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/1.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/2.png b/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/2.png deleted file mode 100644 index 977011a0e3..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/2.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/3.png b/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/3.png deleted file mode 100644 index 6edaaecb0f..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/3.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/4.png b/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/4.png deleted file mode 100644 index 373a206dce..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/BlockAdvSolarPanel/4.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/BlockMolecularTransformer/0.png b/front/public/images/large/AdvancedSolarPanel/BlockMolecularTransformer/0.png deleted file mode 100644 index 4bb0bf6f49..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/BlockMolecularTransformer/0.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/advanced_solar_helmet/1.png b/front/public/images/large/AdvancedSolarPanel/advanced_solar_helmet/1.png deleted file mode 100644 index 3bb9061b31..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/advanced_solar_helmet/1.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/advanced_solar_helmet/27.png b/front/public/images/large/AdvancedSolarPanel/advanced_solar_helmet/27.png deleted file mode 100644 index 3bb9061b31..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/advanced_solar_helmet/27.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/0.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/0.png deleted file mode 100644 index 11b349234b..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/0.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/1.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/1.png deleted file mode 100644 index d07d4ac281..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/1.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/10.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/10.png deleted file mode 100644 index 8d0ef1899b..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/10.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/11.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/11.png deleted file mode 100644 index ff9f24c856..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/11.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/12.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/12.png deleted file mode 100644 index 063a79107d..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/12.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/13.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/13.png deleted file mode 100644 index fe82421ee1..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/13.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/2.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/2.png deleted file mode 100644 index dc36896201..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/2.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/3.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/3.png deleted file mode 100644 index 797980e9fe..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/3.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/4.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/4.png deleted file mode 100644 index 908a2c9892..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/4.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/5.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/5.png deleted file mode 100644 index d7888794ae..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/5.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/6.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/6.png deleted file mode 100644 index 0768f63272..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/6.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/7.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/7.png deleted file mode 100644 index 18bfbbb826..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/7.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/8.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/8.png deleted file mode 100644 index 774e0d64bb..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/8.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/9.png b/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/9.png deleted file mode 100644 index 713506e18e..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/asp_crafting_items/9.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/hybrid_solar_helmet/1.png b/front/public/images/large/AdvancedSolarPanel/hybrid_solar_helmet/1.png deleted file mode 100644 index cbd3aa7e63..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/hybrid_solar_helmet/1.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/hybrid_solar_helmet/27.png b/front/public/images/large/AdvancedSolarPanel/hybrid_solar_helmet/27.png deleted file mode 100644 index cbd3aa7e63..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/hybrid_solar_helmet/27.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/ultimate_solar_helmet/1.png b/front/public/images/large/AdvancedSolarPanel/ultimate_solar_helmet/1.png deleted file mode 100644 index 82f9542bf0..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/ultimate_solar_helmet/1.png and /dev/null differ diff --git a/front/public/images/large/AdvancedSolarPanel/ultimate_solar_helmet/27.png b/front/public/images/large/AdvancedSolarPanel/ultimate_solar_helmet/27.png deleted file mode 100644 index 82f9542bf0..0000000000 Binary files a/front/public/images/large/AdvancedSolarPanel/ultimate_solar_helmet/27.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/chisel/0.png b/front/public/images/large/ArchitectureCraft/chisel/0.png deleted file mode 100644 index bf24e31da8..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/chisel/0.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/cladding/0.png b/front/public/images/large/ArchitectureCraft/cladding/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/cladding/0.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/hammer/0.png b/front/public/images/large/ArchitectureCraft/hammer/0.png deleted file mode 100644 index c0eb11281b..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/hammer/0.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/largePulley/0.png b/front/public/images/large/ArchitectureCraft/largePulley/0.png deleted file mode 100644 index d7a6a7f168..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/largePulley/0.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/sawbench/0.png b/front/public/images/large/ArchitectureCraft/sawbench/0.png deleted file mode 100644 index 223e923b7f..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/sawbench/0.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/sawblade/0.png b/front/public/images/large/ArchitectureCraft/sawblade/0.png deleted file mode 100644 index b923f0d483..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/sawblade/0.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/shape/0.png b/front/public/images/large/ArchitectureCraft/shape/0.png deleted file mode 100644 index c0e95fb708..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/shape/0.png and /dev/null differ diff --git a/front/public/images/large/ArchitectureCraft/shapeSE/0.png b/front/public/images/large/ArchitectureCraft/shapeSE/0.png deleted file mode 100644 index c0e95fb708..0000000000 Binary files a/front/public/images/large/ArchitectureCraft/shapeSE/0.png and /dev/null differ diff --git a/front/public/images/large/Aroma1997Core/wrench/0.png b/front/public/images/large/Aroma1997Core/wrench/0.png deleted file mode 100644 index 144f9cb9e2..0000000000 Binary files a/front/public/images/large/Aroma1997Core/wrench/0.png and /dev/null differ diff --git a/front/public/images/large/Aroma1997Core/wrenched/0.png b/front/public/images/large/Aroma1997Core/wrenched/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Aroma1997Core/wrenched/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/autoHandMirror/0.png b/front/public/images/large/Automagy/autoHandMirror/0.png deleted file mode 100644 index 2513ae8e58..0000000000 Binary files a/front/public/images/large/Automagy/autoHandMirror/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/avaricePearl/0.png b/front/public/images/large/Automagy/avaricePearl/0.png deleted file mode 100644 index 304d805e98..0000000000 Binary files a/front/public/images/large/Automagy/avaricePearl/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/avaricePearl/1.png b/front/public/images/large/Automagy/avaricePearl/1.png deleted file mode 100644 index 4ce599b9a2..0000000000 Binary files a/front/public/images/large/Automagy/avaricePearl/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/baubleEnderDisjunction/0.png b/front/public/images/large/Automagy/baubleEnderDisjunction/0.png deleted file mode 100644 index c31aa63123..0000000000 Binary files a/front/public/images/large/Automagy/baubleEnderDisjunction/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/baubleEnderDisjunction/1.png b/front/public/images/large/Automagy/baubleEnderDisjunction/1.png deleted file mode 100644 index 77e211aaac..0000000000 Binary files a/front/public/images/large/Automagy/baubleEnderDisjunction/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockAmnesiac/0.png b/front/public/images/large/Automagy/blockAmnesiac/0.png deleted file mode 100644 index 6f9629c564..0000000000 Binary files a/front/public/images/large/Automagy/blockAmnesiac/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockBoiler/0.png b/front/public/images/large/Automagy/blockBoiler/0.png deleted file mode 100644 index 5a6e55eca7..0000000000 Binary files a/front/public/images/large/Automagy/blockBoiler/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockBookshelfEnchanted/0.png b/front/public/images/large/Automagy/blockBookshelfEnchanted/0.png deleted file mode 100644 index b3264d5135..0000000000 Binary files a/front/public/images/large/Automagy/blockBookshelfEnchanted/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockBookshelfEnchanted/1.png b/front/public/images/large/Automagy/blockBookshelfEnchanted/1.png deleted file mode 100644 index dd6fbf76d8..0000000000 Binary files a/front/public/images/large/Automagy/blockBookshelfEnchanted/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockCreativeJar/3.png b/front/public/images/large/Automagy/blockCreativeJar/3.png deleted file mode 100644 index 1c0debdb57..0000000000 Binary files a/front/public/images/large/Automagy/blockCreativeJar/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockDimensionLure/0.png b/front/public/images/large/Automagy/blockDimensionLure/0.png deleted file mode 100644 index 748b43ce23..0000000000 Binary files a/front/public/images/large/Automagy/blockDimensionLure/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockEagerChest/0.png b/front/public/images/large/Automagy/blockEagerChest/0.png deleted file mode 100644 index dde04953e0..0000000000 Binary files a/front/public/images/large/Automagy/blockEagerChest/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockEntitySignal/0.png b/front/public/images/large/Automagy/blockEntitySignal/0.png deleted file mode 100644 index 520829bde0..0000000000 Binary files a/front/public/images/large/Automagy/blockEntitySignal/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockEssentiaLocus/0.png b/front/public/images/large/Automagy/blockEssentiaLocus/0.png deleted file mode 100644 index a85deb50ec..0000000000 Binary files a/front/public/images/large/Automagy/blockEssentiaLocus/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockEssentiaLocusAggregator/0.png b/front/public/images/large/Automagy/blockEssentiaLocusAggregator/0.png deleted file mode 100644 index 178870cd03..0000000000 Binary files a/front/public/images/large/Automagy/blockEssentiaLocusAggregator/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockFinicalMaw/0.png b/front/public/images/large/Automagy/blockFinicalMaw/0.png deleted file mode 100644 index 26ac9e2c94..0000000000 Binary files a/front/public/images/large/Automagy/blockFinicalMaw/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockFluidMilk/0.png b/front/public/images/large/Automagy/blockFluidMilk/0.png deleted file mode 100644 index adacfc484f..0000000000 Binary files a/front/public/images/large/Automagy/blockFluidMilk/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockFluidMushroom/0.png b/front/public/images/large/Automagy/blockFluidMushroom/0.png deleted file mode 100644 index ec9bf1b1a2..0000000000 Binary files a/front/public/images/large/Automagy/blockFluidMushroom/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockFluidVishroom/0.png b/front/public/images/large/Automagy/blockFluidVishroom/0.png deleted file mode 100644 index 5220a6cec3..0000000000 Binary files a/front/public/images/large/Automagy/blockFluidVishroom/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockGolemInhibitor/0.png b/front/public/images/large/Automagy/blockGolemInhibitor/0.png deleted file mode 100644 index 749142f987..0000000000 Binary files a/front/public/images/large/Automagy/blockGolemInhibitor/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockGolemTaskmaster/0.png b/front/public/images/large/Automagy/blockGolemTaskmaster/0.png deleted file mode 100644 index bc293c7be9..0000000000 Binary files a/front/public/images/large/Automagy/blockGolemTaskmaster/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockGolemWorkbench/0.png b/front/public/images/large/Automagy/blockGolemWorkbench/0.png deleted file mode 100644 index 6d8890652d..0000000000 Binary files a/front/public/images/large/Automagy/blockGolemWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockGreedyChest/0.png b/front/public/images/large/Automagy/blockGreedyChest/0.png deleted file mode 100644 index 0077cc206d..0000000000 Binary files a/front/public/images/large/Automagy/blockGreedyChest/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockHourglass/0.png b/front/public/images/large/Automagy/blockHourglass/0.png deleted file mode 100644 index e60246976e..0000000000 Binary files a/front/public/images/large/Automagy/blockHourglass/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockHourglassMagic/0.png b/front/public/images/large/Automagy/blockHourglassMagic/0.png deleted file mode 100644 index a6b4e406d4..0000000000 Binary files a/front/public/images/large/Automagy/blockHourglassMagic/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockHungryMaw/0.png b/front/public/images/large/Automagy/blockHungryMaw/0.png deleted file mode 100644 index ab10915a2a..0000000000 Binary files a/front/public/images/large/Automagy/blockHungryMaw/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockInventarium/0.png b/front/public/images/large/Automagy/blockInventarium/0.png deleted file mode 100644 index d21f69a4bf..0000000000 Binary files a/front/public/images/large/Automagy/blockInventarium/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockMetalGlow/0.png b/front/public/images/large/Automagy/blockMetalGlow/0.png deleted file mode 100644 index 16c73c71f4..0000000000 Binary files a/front/public/images/large/Automagy/blockMetalGlow/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockMirrorAlt/0.png b/front/public/images/large/Automagy/blockMirrorAlt/0.png deleted file mode 100644 index 0a68b965b6..0000000000 Binary files a/front/public/images/large/Automagy/blockMirrorAlt/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockMirrorMultiDest/0.png b/front/public/images/large/Automagy/blockMirrorMultiDest/0.png deleted file mode 100644 index d282334b10..0000000000 Binary files a/front/public/images/large/Automagy/blockMirrorMultiDest/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockMobLure/0.png b/front/public/images/large/Automagy/blockMobLure/0.png deleted file mode 100644 index d80789d947..0000000000 Binary files a/front/public/images/large/Automagy/blockMobLure/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRune/0.png b/front/public/images/large/Automagy/blockNetherRune/0.png deleted file mode 100644 index afdf3c3b3e..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRune/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRune/1.png b/front/public/images/large/Automagy/blockNetherRune/1.png deleted file mode 100644 index 2a79f234a8..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRune/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRune/2.png b/front/public/images/large/Automagy/blockNetherRune/2.png deleted file mode 100644 index 7493b09d57..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRune/2.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRune/3.png b/front/public/images/large/Automagy/blockNetherRune/3.png deleted file mode 100644 index a3cb5830a6..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRune/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRune/4.png b/front/public/images/large/Automagy/blockNetherRune/4.png deleted file mode 100644 index 6872162751..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRune/4.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRune/6.png b/front/public/images/large/Automagy/blockNetherRune/6.png deleted file mode 100644 index 2f0bd88258..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRune/6.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRuneMob/0.png b/front/public/images/large/Automagy/blockNetherRuneMob/0.png deleted file mode 100644 index 5ce1fc707a..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRuneMob/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRuneMob/1.png b/front/public/images/large/Automagy/blockNetherRuneMob/1.png deleted file mode 100644 index 1aeb6ad122..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRuneMob/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRuneMob/2.png b/front/public/images/large/Automagy/blockNetherRuneMob/2.png deleted file mode 100644 index f2a8b267fb..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRuneMob/2.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRuneMob/3.png b/front/public/images/large/Automagy/blockNetherRuneMob/3.png deleted file mode 100644 index 11be1672d3..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRuneMob/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRuneMob/4.png b/front/public/images/large/Automagy/blockNetherRuneMob/4.png deleted file mode 100644 index 993c5898ae..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRuneMob/4.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRuneMob/5.png b/front/public/images/large/Automagy/blockNetherRuneMob/5.png deleted file mode 100644 index 398260c0dc..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRuneMob/5.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNetherRuneMob/6.png b/front/public/images/large/Automagy/blockNetherRuneMob/6.png deleted file mode 100644 index 389fe7d607..0000000000 Binary files a/front/public/images/large/Automagy/blockNetherRuneMob/6.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockNethermind/0.png b/front/public/images/large/Automagy/blockNethermind/0.png deleted file mode 100644 index e56ae8a42d..0000000000 Binary files a/front/public/images/large/Automagy/blockNethermind/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockPhenomenon/0.png b/front/public/images/large/Automagy/blockPhenomenon/0.png deleted file mode 100644 index 810759273f..0000000000 Binary files a/front/public/images/large/Automagy/blockPhenomenon/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRedcrystal/0.png b/front/public/images/large/Automagy/blockRedcrystal/0.png deleted file mode 100644 index 853cc01059..0000000000 Binary files a/front/public/images/large/Automagy/blockRedcrystal/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRedcrystalAmp/0.png b/front/public/images/large/Automagy/blockRedcrystalAmp/0.png deleted file mode 100644 index 7ac3d81c3e..0000000000 Binary files a/front/public/images/large/Automagy/blockRedcrystalAmp/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRedcrystalDense/0.png b/front/public/images/large/Automagy/blockRedcrystalDense/0.png deleted file mode 100644 index 9e06049a82..0000000000 Binary files a/front/public/images/large/Automagy/blockRedcrystalDense/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRedcrystalDim/0.png b/front/public/images/large/Automagy/blockRedcrystalDim/0.png deleted file mode 100644 index 39021d9070..0000000000 Binary files a/front/public/images/large/Automagy/blockRedcrystalDim/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRedcrystalMerc/0.png b/front/public/images/large/Automagy/blockRedcrystalMerc/0.png deleted file mode 100644 index 0bb6d236fb..0000000000 Binary files a/front/public/images/large/Automagy/blockRedcrystalMerc/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRedcrystalRes/0.png b/front/public/images/large/Automagy/blockRedcrystalRes/0.png deleted file mode 100644 index 3c7e07569e..0000000000 Binary files a/front/public/images/large/Automagy/blockRedcrystalRes/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRemoteComparator/0.png b/front/public/images/large/Automagy/blockRemoteComparator/0.png deleted file mode 100644 index bd2f2cf182..0000000000 Binary files a/front/public/images/large/Automagy/blockRemoteComparator/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockReqTome/0.png b/front/public/images/large/Automagy/blockReqTome/0.png deleted file mode 100644 index b737695dbc..0000000000 Binary files a/front/public/images/large/Automagy/blockReqTome/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockRunedObsidian/0.png b/front/public/images/large/Automagy/blockRunedObsidian/0.png deleted file mode 100644 index b1a06175eb..0000000000 Binary files a/front/public/images/large/Automagy/blockRunedObsidian/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockScribePointer/0.png b/front/public/images/large/Automagy/blockScribePointer/0.png deleted file mode 100644 index 06a0206567..0000000000 Binary files a/front/public/images/large/Automagy/blockScribePointer/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTally/0.png b/front/public/images/large/Automagy/blockTally/0.png deleted file mode 100644 index 2fbcff1cac..0000000000 Binary files a/front/public/images/large/Automagy/blockTally/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTallyLensDrops/0.png b/front/public/images/large/Automagy/blockTallyLensDrops/0.png deleted file mode 100644 index 68b0cca6e7..0000000000 Binary files a/front/public/images/large/Automagy/blockTallyLensDrops/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTallyLensWorld/0.png b/front/public/images/large/Automagy/blockTallyLensWorld/0.png deleted file mode 100644 index 26cf6f2d4e..0000000000 Binary files a/front/public/images/large/Automagy/blockTallyLensWorld/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTenaciousChest/0.png b/front/public/images/large/Automagy/blockTenaciousChest/0.png deleted file mode 100644 index 0769200e09..0000000000 Binary files a/front/public/images/large/Automagy/blockTenaciousChest/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockThaumostaticPylon/0.png b/front/public/images/large/Automagy/blockThaumostaticPylon/0.png deleted file mode 100644 index 0264de4dea..0000000000 Binary files a/front/public/images/large/Automagy/blockThaumostaticPylon/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockThaumostaticPylon/1.png b/front/public/images/large/Automagy/blockThaumostaticPylon/1.png deleted file mode 100644 index d05feafd5f..0000000000 Binary files a/front/public/images/large/Automagy/blockThaumostaticPylon/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockThaumostaticSpire/0.png b/front/public/images/large/Automagy/blockThaumostaticSpire/0.png deleted file mode 100644 index 878465804e..0000000000 Binary files a/front/public/images/large/Automagy/blockThaumostaticSpire/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockThirstyTank/0.png b/front/public/images/large/Automagy/blockThirstyTank/0.png deleted file mode 100644 index e4ead08e56..0000000000 Binary files a/front/public/images/large/Automagy/blockThirstyTank/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTorchInversion/0.png b/front/public/images/large/Automagy/blockTorchInversion/0.png deleted file mode 100644 index 8673201de8..0000000000 Binary files a/front/public/images/large/Automagy/blockTorchInversion/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTorchInversion_off/0.png b/front/public/images/large/Automagy/blockTorchInversion_off/0.png deleted file mode 100644 index 08861744e1..0000000000 Binary files a/front/public/images/large/Automagy/blockTorchInversion_off/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTranslucent/0.png b/front/public/images/large/Automagy/blockTranslucent/0.png deleted file mode 100644 index 1ef435bc8a..0000000000 Binary files a/front/public/images/large/Automagy/blockTranslucent/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockTranslucent/1.png b/front/public/images/large/Automagy/blockTranslucent/1.png deleted file mode 100644 index 77ec561979..0000000000 Binary files a/front/public/images/large/Automagy/blockTranslucent/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockUnseenScribe/0.png b/front/public/images/large/Automagy/blockUnseenScribe/0.png deleted file mode 100644 index b1d51deab1..0000000000 Binary files a/front/public/images/large/Automagy/blockUnseenScribe/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockVisReader/0.png b/front/public/images/large/Automagy/blockVisReader/0.png deleted file mode 100644 index a7e4ac13f8..0000000000 Binary files a/front/public/images/large/Automagy/blockVisReader/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockXPJar/0.png b/front/public/images/large/Automagy/blockXPJar/0.png deleted file mode 100644 index 39e488e1a9..0000000000 Binary files a/front/public/images/large/Automagy/blockXPJar/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/blockXPStone/0.png b/front/public/images/large/Automagy/blockXPStone/0.png deleted file mode 100644 index 1cf0fe945f..0000000000 Binary files a/front/public/images/large/Automagy/blockXPStone/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/bucketMushroom/0.png b/front/public/images/large/Automagy/bucketMushroom/0.png deleted file mode 100644 index 07cc91e3f0..0000000000 Binary files a/front/public/images/large/Automagy/bucketMushroom/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/bucketVishroom/0.png b/front/public/images/large/Automagy/bucketVishroom/0.png deleted file mode 100644 index c58e5e33a7..0000000000 Binary files a/front/public/images/large/Automagy/bucketVishroom/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/creativeTool/0.png b/front/public/images/large/Automagy/creativeTool/0.png deleted file mode 100644 index 3e1d62a4f3..0000000000 Binary files a/front/public/images/large/Automagy/creativeTool/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalBrain/0.png b/front/public/images/large/Automagy/crystalBrain/0.png deleted file mode 100644 index eaf2688482..0000000000 Binary files a/front/public/images/large/Automagy/crystalBrain/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalBrain/1.png b/front/public/images/large/Automagy/crystalBrain/1.png deleted file mode 100644 index a86c608f7e..0000000000 Binary files a/front/public/images/large/Automagy/crystalBrain/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalBrain/2.png b/front/public/images/large/Automagy/crystalBrain/2.png deleted file mode 100644 index 998e442f1a..0000000000 Binary files a/front/public/images/large/Automagy/crystalBrain/2.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalBrain/3.png b/front/public/images/large/Automagy/crystalBrain/3.png deleted file mode 100644 index dc7842f011..0000000000 Binary files a/front/public/images/large/Automagy/crystalBrain/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalBrain/4.png b/front/public/images/large/Automagy/crystalBrain/4.png deleted file mode 100644 index 54411d8c5c..0000000000 Binary files a/front/public/images/large/Automagy/crystalBrain/4.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalBrain/5.png b/front/public/images/large/Automagy/crystalBrain/5.png deleted file mode 100644 index 935ad04395..0000000000 Binary files a/front/public/images/large/Automagy/crystalBrain/5.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalEntityEye/0.png b/front/public/images/large/Automagy/crystalEntityEye/0.png deleted file mode 100644 index ddb51668ab..0000000000 Binary files a/front/public/images/large/Automagy/crystalEntityEye/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/crystalEye/0.png b/front/public/images/large/Automagy/crystalEye/0.png deleted file mode 100644 index 30e8d0af8e..0000000000 Binary files a/front/public/images/large/Automagy/crystalEye/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/edible/0.png b/front/public/images/large/Automagy/edible/0.png deleted file mode 100644 index efc7a72bce..0000000000 Binary files a/front/public/images/large/Automagy/edible/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/enchantedPaper/0.png b/front/public/images/large/Automagy/enchantedPaper/0.png deleted file mode 100644 index 6c473d832f..0000000000 Binary files a/front/public/images/large/Automagy/enchantedPaper/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/enchantedPaper/1.png b/front/public/images/large/Automagy/enchantedPaper/1.png deleted file mode 100644 index 1bc7773d68..0000000000 Binary files a/front/public/images/large/Automagy/enchantedPaper/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/enchantedPaper/2.png b/front/public/images/large/Automagy/enchantedPaper/2.png deleted file mode 100644 index 469e8a544c..0000000000 Binary files a/front/public/images/large/Automagy/enchantedPaper/2.png and /dev/null differ diff --git a/front/public/images/large/Automagy/enchantedPaper/3.png b/front/public/images/large/Automagy/enchantedPaper/3.png deleted file mode 100644 index d041069cfa..0000000000 Binary files a/front/public/images/large/Automagy/enchantedPaper/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/focusCrafting/0.png b/front/public/images/large/Automagy/focusCrafting/0.png deleted file mode 100644 index 401602dc2a..0000000000 Binary files a/front/public/images/large/Automagy/focusCrafting/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/foodstuff/0.png b/front/public/images/large/Automagy/foodstuff/0.png deleted file mode 100644 index ff6614da2b..0000000000 Binary files a/front/public/images/large/Automagy/foodstuff/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/0.png b/front/public/images/large/Automagy/glyph/0.png deleted file mode 100644 index be0efd9100..0000000000 Binary files a/front/public/images/large/Automagy/glyph/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/1.png b/front/public/images/large/Automagy/glyph/1.png deleted file mode 100644 index ed034a4787..0000000000 Binary files a/front/public/images/large/Automagy/glyph/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/2.png b/front/public/images/large/Automagy/glyph/2.png deleted file mode 100644 index b73e5510c2..0000000000 Binary files a/front/public/images/large/Automagy/glyph/2.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/3.png b/front/public/images/large/Automagy/glyph/3.png deleted file mode 100644 index ac3d6dda2c..0000000000 Binary files a/front/public/images/large/Automagy/glyph/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/4.png b/front/public/images/large/Automagy/glyph/4.png deleted file mode 100644 index e0d2033161..0000000000 Binary files a/front/public/images/large/Automagy/glyph/4.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/5.png b/front/public/images/large/Automagy/glyph/5.png deleted file mode 100644 index ddd8de6fbb..0000000000 Binary files a/front/public/images/large/Automagy/glyph/5.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/6.png b/front/public/images/large/Automagy/glyph/6.png deleted file mode 100644 index d1c8129dc5..0000000000 Binary files a/front/public/images/large/Automagy/glyph/6.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/7.png b/front/public/images/large/Automagy/glyph/7.png deleted file mode 100644 index ea8cf4301e..0000000000 Binary files a/front/public/images/large/Automagy/glyph/7.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/8.png b/front/public/images/large/Automagy/glyph/8.png deleted file mode 100644 index 7a9d0c6e71..0000000000 Binary files a/front/public/images/large/Automagy/glyph/8.png and /dev/null differ diff --git a/front/public/images/large/Automagy/glyph/9.png b/front/public/images/large/Automagy/glyph/9.png deleted file mode 100644 index bbfb82ef9e..0000000000 Binary files a/front/public/images/large/Automagy/glyph/9.png and /dev/null differ diff --git a/front/public/images/large/Automagy/golemLinker/0.png b/front/public/images/large/Automagy/golemLinker/0.png deleted file mode 100644 index 0a4217782a..0000000000 Binary files a/front/public/images/large/Automagy/golemLinker/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/golemWorkbenchUpgrade/0.png b/front/public/images/large/Automagy/golemWorkbenchUpgrade/0.png deleted file mode 100644 index 464f72e627..0000000000 Binary files a/front/public/images/large/Automagy/golemWorkbenchUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/golemWorkbenchUpgrade/1.png b/front/public/images/large/Automagy/golemWorkbenchUpgrade/1.png deleted file mode 100644 index 824d9f38f9..0000000000 Binary files a/front/public/images/large/Automagy/golemWorkbenchUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/golemWorkbenchUpgrade/3.png b/front/public/images/large/Automagy/golemWorkbenchUpgrade/3.png deleted file mode 100644 index 9cd15471f0..0000000000 Binary files a/front/public/images/large/Automagy/golemWorkbenchUpgrade/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/golemWorkbenchUpgrade/5.png b/front/public/images/large/Automagy/golemWorkbenchUpgrade/5.png deleted file mode 100644 index 214a064d39..0000000000 Binary files a/front/public/images/large/Automagy/golemWorkbenchUpgrade/5.png and /dev/null differ diff --git a/front/public/images/large/Automagy/horizontal/0.png b/front/public/images/large/Automagy/horizontal/0.png deleted file mode 100644 index 4a3831dbe2..0000000000 Binary files a/front/public/images/large/Automagy/horizontal/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/ingredient/0.png b/front/public/images/large/Automagy/ingredient/0.png deleted file mode 100644 index 998cc309bc..0000000000 Binary files a/front/public/images/large/Automagy/ingredient/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/netherHeart/0.png b/front/public/images/large/Automagy/netherHeart/0.png deleted file mode 100644 index 6fd7d5454e..0000000000 Binary files a/front/public/images/large/Automagy/netherHeart/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/phialExtra/0.png b/front/public/images/large/Automagy/phialExtra/0.png deleted file mode 100644 index a16f7d844f..0000000000 Binary files a/front/public/images/large/Automagy/phialExtra/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/shardSliver/0.png b/front/public/images/large/Automagy/shardSliver/0.png deleted file mode 100644 index 9ed723bb72..0000000000 Binary files a/front/public/images/large/Automagy/shardSliver/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/shardSliver/1.png b/front/public/images/large/Automagy/shardSliver/1.png deleted file mode 100644 index b8287e7e2e..0000000000 Binary files a/front/public/images/large/Automagy/shardSliver/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/shardSliver/2.png b/front/public/images/large/Automagy/shardSliver/2.png deleted file mode 100644 index 5dcfe0aa29..0000000000 Binary files a/front/public/images/large/Automagy/shardSliver/2.png and /dev/null differ diff --git a/front/public/images/large/Automagy/shardSliver/3.png b/front/public/images/large/Automagy/shardSliver/3.png deleted file mode 100644 index 6c60b2cf52..0000000000 Binary files a/front/public/images/large/Automagy/shardSliver/3.png and /dev/null differ diff --git a/front/public/images/large/Automagy/shardSliver/4.png b/front/public/images/large/Automagy/shardSliver/4.png deleted file mode 100644 index 4f41c7341e..0000000000 Binary files a/front/public/images/large/Automagy/shardSliver/4.png and /dev/null differ diff --git a/front/public/images/large/Automagy/shardSliver/5.png b/front/public/images/large/Automagy/shardSliver/5.png deleted file mode 100644 index 241d50b77d..0000000000 Binary files a/front/public/images/large/Automagy/shardSliver/5.png and /dev/null differ diff --git a/front/public/images/large/Automagy/tallyLens/0.png b/front/public/images/large/Automagy/tallyLens/0.png deleted file mode 100644 index 2400e4e607..0000000000 Binary files a/front/public/images/large/Automagy/tallyLens/0.png and /dev/null differ diff --git a/front/public/images/large/Automagy/tallyLens/1.png b/front/public/images/large/Automagy/tallyLens/1.png deleted file mode 100644 index 23c7a65e60..0000000000 Binary files a/front/public/images/large/Automagy/tallyLens/1.png and /dev/null differ diff --git a/front/public/images/large/Automagy/tallyLens/2.png b/front/public/images/large/Automagy/tallyLens/2.png deleted file mode 100644 index 0a6646142a..0000000000 Binary files a/front/public/images/large/Automagy/tallyLens/2.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Cosmic_Meatballs/0.png b/front/public/images/large/Avaritia/Cosmic_Meatballs/0.png deleted file mode 100644 index d3a84a9d29..0000000000 Binary files a/front/public/images/large/Avaritia/Cosmic_Meatballs/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Crystal_Matrix/0.png b/front/public/images/large/Avaritia/Crystal_Matrix/0.png deleted file mode 100644 index d58ad88f5c..0000000000 Binary files a/front/public/images/large/Avaritia/Crystal_Matrix/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Dire_Crafting/0.png b/front/public/images/large/Avaritia/Dire_Crafting/0.png deleted file mode 100644 index 23b2adc24d..0000000000 Binary files a/front/public/images/large/Avaritia/Dire_Crafting/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Double_Craft/0.png b/front/public/images/large/Avaritia/Double_Craft/0.png deleted file mode 100644 index a330737e9f..0000000000 Binary files a/front/public/images/large/Avaritia/Double_Craft/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Endest_Pearl/0.png b/front/public/images/large/Avaritia/Endest_Pearl/0.png deleted file mode 100644 index 9064a5d654..0000000000 Binary files a/front/public/images/large/Avaritia/Endest_Pearl/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Axe/0.png b/front/public/images/large/Avaritia/Infinity_Axe/0.png deleted file mode 100644 index 06defc42b8..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Axe/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Bow/0.png b/front/public/images/large/Avaritia/Infinity_Bow/0.png deleted file mode 100644 index 635b41f3d0..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Bow/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Chest/0.png b/front/public/images/large/Avaritia/Infinity_Chest/0.png deleted file mode 100644 index 9146800cab..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Chest/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Helm/0.png b/front/public/images/large/Avaritia/Infinity_Helm/0.png deleted file mode 100644 index fdcd3eb63d..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Helm/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Pants/0.png b/front/public/images/large/Avaritia/Infinity_Pants/0.png deleted file mode 100644 index cff5f47bc7..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Pants/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Pickaxe/0.png b/front/public/images/large/Avaritia/Infinity_Pickaxe/0.png deleted file mode 100644 index 9339a9a036..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Shoes/0.png b/front/public/images/large/Avaritia/Infinity_Shoes/0.png deleted file mode 100644 index 989cf0f0f4..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Shoes/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Shovel/0.png b/front/public/images/large/Avaritia/Infinity_Shovel/0.png deleted file mode 100644 index a3c1eab526..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Shovel/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Infinity_Sword/0.png b/front/public/images/large/Avaritia/Infinity_Sword/0.png deleted file mode 100644 index 4c1fac41af..0000000000 Binary files a/front/public/images/large/Avaritia/Infinity_Sword/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Matter_Cluster/0.png b/front/public/images/large/Avaritia/Matter_Cluster/0.png deleted file mode 100644 index ca7968d2ef..0000000000 Binary files a/front/public/images/large/Avaritia/Matter_Cluster/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Neutron_Collector/0.png b/front/public/images/large/Avaritia/Neutron_Collector/0.png deleted file mode 100644 index b19a9fba86..0000000000 Binary files a/front/public/images/large/Avaritia/Neutron_Collector/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Neutronium_Compressor/0.png b/front/public/images/large/Avaritia/Neutronium_Compressor/0.png deleted file mode 100644 index bb72a04790..0000000000 Binary files a/front/public/images/large/Avaritia/Neutronium_Compressor/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/0.png b/front/public/images/large/Avaritia/Resource/0.png deleted file mode 100644 index 1d19e0969b..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/1.png b/front/public/images/large/Avaritia/Resource/1.png deleted file mode 100644 index c5d11c5dfd..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/1.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/2.png b/front/public/images/large/Avaritia/Resource/2.png deleted file mode 100644 index 9d6fd66a69..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/2.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/3.png b/front/public/images/large/Avaritia/Resource/3.png deleted file mode 100644 index 9a52b5150e..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/3.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/4.png b/front/public/images/large/Avaritia/Resource/4.png deleted file mode 100644 index 7a93661920..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/4.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/5.png b/front/public/images/large/Avaritia/Resource/5.png deleted file mode 100644 index e1e06c4fa5..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/5.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/6.png b/front/public/images/large/Avaritia/Resource/6.png deleted file mode 100644 index bbfda62bcf..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/6.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/7.png b/front/public/images/large/Avaritia/Resource/7.png deleted file mode 100644 index d32587d155..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/7.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/8.png b/front/public/images/large/Avaritia/Resource/8.png deleted file mode 100644 index 1cf3c73ec3..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/8.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource/9.png b/front/public/images/large/Avaritia/Resource/9.png deleted file mode 100644 index 60d3aeff0b..0000000000 Binary files a/front/public/images/large/Avaritia/Resource/9.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource_Block/0.png b/front/public/images/large/Avaritia/Resource_Block/0.png deleted file mode 100644 index c220db91bf..0000000000 Binary files a/front/public/images/large/Avaritia/Resource_Block/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Resource_Block/1.png b/front/public/images/large/Avaritia/Resource_Block/1.png deleted file mode 100644 index ecc6842ce5..0000000000 Binary files a/front/public/images/large/Avaritia/Resource_Block/1.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/0.png b/front/public/images/large/Avaritia/Singularity/0.png deleted file mode 100644 index a3e703c4c5..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/1.png b/front/public/images/large/Avaritia/Singularity/1.png deleted file mode 100644 index 263ca3ac8e..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/1.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/10.png b/front/public/images/large/Avaritia/Singularity/10.png deleted file mode 100644 index 25e224971f..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/10.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/11.png b/front/public/images/large/Avaritia/Singularity/11.png deleted file mode 100644 index b2a9a6ee49..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/11.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/2.png b/front/public/images/large/Avaritia/Singularity/2.png deleted file mode 100644 index d5c8a476dd..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/2.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/3.png b/front/public/images/large/Avaritia/Singularity/3.png deleted file mode 100644 index d3a9a888d7..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/3.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/4.png b/front/public/images/large/Avaritia/Singularity/4.png deleted file mode 100644 index 9c94070f7b..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/4.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/5.png b/front/public/images/large/Avaritia/Singularity/5.png deleted file mode 100644 index 434c82257b..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/5.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/6.png b/front/public/images/large/Avaritia/Singularity/6.png deleted file mode 100644 index cb9509e9ee..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/6.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/7.png b/front/public/images/large/Avaritia/Singularity/7.png deleted file mode 100644 index 702828bbbb..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/7.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/8.png b/front/public/images/large/Avaritia/Singularity/8.png deleted file mode 100644 index 14a035e372..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/8.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Singularity/9.png b/front/public/images/large/Avaritia/Singularity/9.png deleted file mode 100644 index 7cef435b42..0000000000 Binary files a/front/public/images/large/Avaritia/Singularity/9.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Skull_Sword/0.png b/front/public/images/large/Avaritia/Skull_Sword/0.png deleted file mode 100644 index fdd9c2e4d8..0000000000 Binary files a/front/public/images/large/Avaritia/Skull_Sword/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Triple_Craft/0.png b/front/public/images/large/Avaritia/Triple_Craft/0.png deleted file mode 100644 index 828dfd3a88..0000000000 Binary files a/front/public/images/large/Avaritia/Triple_Craft/0.png and /dev/null differ diff --git a/front/public/images/large/Avaritia/Ultimate_Stew/0.png b/front/public/images/large/Avaritia/Ultimate_Stew/0.png deleted file mode 100644 index b6345538ce..0000000000 Binary files a/front/public/images/large/Avaritia/Ultimate_Stew/0.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/0.png b/front/public/images/large/Backpack/backpack/0.png deleted file mode 100644 index acbbc9b324..0000000000 Binary files a/front/public/images/large/Backpack/backpack/0.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/1.png b/front/public/images/large/Backpack/backpack/1.png deleted file mode 100644 index 8e524d237a..0000000000 Binary files a/front/public/images/large/Backpack/backpack/1.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/10.png b/front/public/images/large/Backpack/backpack/10.png deleted file mode 100644 index 3d27a83aba..0000000000 Binary files a/front/public/images/large/Backpack/backpack/10.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/100.png b/front/public/images/large/Backpack/backpack/100.png deleted file mode 100644 index ae7fcfce37..0000000000 Binary files a/front/public/images/large/Backpack/backpack/100.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/101.png b/front/public/images/large/Backpack/backpack/101.png deleted file mode 100644 index 9dafe61798..0000000000 Binary files a/front/public/images/large/Backpack/backpack/101.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/102.png b/front/public/images/large/Backpack/backpack/102.png deleted file mode 100644 index ca25600792..0000000000 Binary files a/front/public/images/large/Backpack/backpack/102.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/103.png b/front/public/images/large/Backpack/backpack/103.png deleted file mode 100644 index 4492767891..0000000000 Binary files a/front/public/images/large/Backpack/backpack/103.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/104.png b/front/public/images/large/Backpack/backpack/104.png deleted file mode 100644 index eeb9c0f92f..0000000000 Binary files a/front/public/images/large/Backpack/backpack/104.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/105.png b/front/public/images/large/Backpack/backpack/105.png deleted file mode 100644 index c5f4fc5684..0000000000 Binary files a/front/public/images/large/Backpack/backpack/105.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/106.png b/front/public/images/large/Backpack/backpack/106.png deleted file mode 100644 index 9ffc6d8bd1..0000000000 Binary files a/front/public/images/large/Backpack/backpack/106.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/107.png b/front/public/images/large/Backpack/backpack/107.png deleted file mode 100644 index 87ea7cb212..0000000000 Binary files a/front/public/images/large/Backpack/backpack/107.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/108.png b/front/public/images/large/Backpack/backpack/108.png deleted file mode 100644 index 6c26b5ffa9..0000000000 Binary files a/front/public/images/large/Backpack/backpack/108.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/109.png b/front/public/images/large/Backpack/backpack/109.png deleted file mode 100644 index 9e1ab5ddfb..0000000000 Binary files a/front/public/images/large/Backpack/backpack/109.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/11.png b/front/public/images/large/Backpack/backpack/11.png deleted file mode 100644 index 992cf896b8..0000000000 Binary files a/front/public/images/large/Backpack/backpack/11.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/110.png b/front/public/images/large/Backpack/backpack/110.png deleted file mode 100644 index 73c7150855..0000000000 Binary files a/front/public/images/large/Backpack/backpack/110.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/111.png b/front/public/images/large/Backpack/backpack/111.png deleted file mode 100644 index 4334735252..0000000000 Binary files a/front/public/images/large/Backpack/backpack/111.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/112.png b/front/public/images/large/Backpack/backpack/112.png deleted file mode 100644 index 44e4e5b5d9..0000000000 Binary files a/front/public/images/large/Backpack/backpack/112.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/113.png b/front/public/images/large/Backpack/backpack/113.png deleted file mode 100644 index acce2f7392..0000000000 Binary files a/front/public/images/large/Backpack/backpack/113.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/114.png b/front/public/images/large/Backpack/backpack/114.png deleted file mode 100644 index af0c93fa1e..0000000000 Binary files a/front/public/images/large/Backpack/backpack/114.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/115.png b/front/public/images/large/Backpack/backpack/115.png deleted file mode 100644 index 6584d420c2..0000000000 Binary files a/front/public/images/large/Backpack/backpack/115.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/116.png b/front/public/images/large/Backpack/backpack/116.png deleted file mode 100644 index 0312aa08b8..0000000000 Binary files a/front/public/images/large/Backpack/backpack/116.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/12.png b/front/public/images/large/Backpack/backpack/12.png deleted file mode 100644 index 63a56467aa..0000000000 Binary files a/front/public/images/large/Backpack/backpack/12.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/13.png b/front/public/images/large/Backpack/backpack/13.png deleted file mode 100644 index 8d5290742c..0000000000 Binary files a/front/public/images/large/Backpack/backpack/13.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/14.png b/front/public/images/large/Backpack/backpack/14.png deleted file mode 100644 index 863697b7d4..0000000000 Binary files a/front/public/images/large/Backpack/backpack/14.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/15.png b/front/public/images/large/Backpack/backpack/15.png deleted file mode 100644 index 3ec2234ea0..0000000000 Binary files a/front/public/images/large/Backpack/backpack/15.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/16.png b/front/public/images/large/Backpack/backpack/16.png deleted file mode 100644 index c1fd062f20..0000000000 Binary files a/front/public/images/large/Backpack/backpack/16.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/2.png b/front/public/images/large/Backpack/backpack/2.png deleted file mode 100644 index fbb580569e..0000000000 Binary files a/front/public/images/large/Backpack/backpack/2.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/200.png b/front/public/images/large/Backpack/backpack/200.png deleted file mode 100644 index c6a37a7abf..0000000000 Binary files a/front/public/images/large/Backpack/backpack/200.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/201.png b/front/public/images/large/Backpack/backpack/201.png deleted file mode 100644 index 645c7b4673..0000000000 Binary files a/front/public/images/large/Backpack/backpack/201.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/202.png b/front/public/images/large/Backpack/backpack/202.png deleted file mode 100644 index 0e4fa0763f..0000000000 Binary files a/front/public/images/large/Backpack/backpack/202.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/203.png b/front/public/images/large/Backpack/backpack/203.png deleted file mode 100644 index d2efbec15f..0000000000 Binary files a/front/public/images/large/Backpack/backpack/203.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/204.png b/front/public/images/large/Backpack/backpack/204.png deleted file mode 100644 index cfd4b4e2d4..0000000000 Binary files a/front/public/images/large/Backpack/backpack/204.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/205.png b/front/public/images/large/Backpack/backpack/205.png deleted file mode 100644 index e1098928f2..0000000000 Binary files a/front/public/images/large/Backpack/backpack/205.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/206.png b/front/public/images/large/Backpack/backpack/206.png deleted file mode 100644 index 89f74fe4fa..0000000000 Binary files a/front/public/images/large/Backpack/backpack/206.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/207.png b/front/public/images/large/Backpack/backpack/207.png deleted file mode 100644 index f7575b40ad..0000000000 Binary files a/front/public/images/large/Backpack/backpack/207.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/208.png b/front/public/images/large/Backpack/backpack/208.png deleted file mode 100644 index 20ab2a6194..0000000000 Binary files a/front/public/images/large/Backpack/backpack/208.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/209.png b/front/public/images/large/Backpack/backpack/209.png deleted file mode 100644 index 0f221710b7..0000000000 Binary files a/front/public/images/large/Backpack/backpack/209.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/210.png b/front/public/images/large/Backpack/backpack/210.png deleted file mode 100644 index 5263dcb33c..0000000000 Binary files a/front/public/images/large/Backpack/backpack/210.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/211.png b/front/public/images/large/Backpack/backpack/211.png deleted file mode 100644 index bc7e7227b6..0000000000 Binary files a/front/public/images/large/Backpack/backpack/211.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/212.png b/front/public/images/large/Backpack/backpack/212.png deleted file mode 100644 index 844d44e950..0000000000 Binary files a/front/public/images/large/Backpack/backpack/212.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/213.png b/front/public/images/large/Backpack/backpack/213.png deleted file mode 100644 index afe5d153dc..0000000000 Binary files a/front/public/images/large/Backpack/backpack/213.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/214.png b/front/public/images/large/Backpack/backpack/214.png deleted file mode 100644 index 033fadf61b..0000000000 Binary files a/front/public/images/large/Backpack/backpack/214.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/215.png b/front/public/images/large/Backpack/backpack/215.png deleted file mode 100644 index 8af07959e7..0000000000 Binary files a/front/public/images/large/Backpack/backpack/215.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/216.png b/front/public/images/large/Backpack/backpack/216.png deleted file mode 100644 index 3ca1de267f..0000000000 Binary files a/front/public/images/large/Backpack/backpack/216.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/3.png b/front/public/images/large/Backpack/backpack/3.png deleted file mode 100644 index 531ddcab3d..0000000000 Binary files a/front/public/images/large/Backpack/backpack/3.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/31999.png b/front/public/images/large/Backpack/backpack/31999.png deleted file mode 100644 index 5eab952f0a..0000000000 Binary files a/front/public/images/large/Backpack/backpack/31999.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/4.png b/front/public/images/large/Backpack/backpack/4.png deleted file mode 100644 index 0d383037a9..0000000000 Binary files a/front/public/images/large/Backpack/backpack/4.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/5.png b/front/public/images/large/Backpack/backpack/5.png deleted file mode 100644 index 2131a29f0a..0000000000 Binary files a/front/public/images/large/Backpack/backpack/5.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/6.png b/front/public/images/large/Backpack/backpack/6.png deleted file mode 100644 index a5554092db..0000000000 Binary files a/front/public/images/large/Backpack/backpack/6.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/7.png b/front/public/images/large/Backpack/backpack/7.png deleted file mode 100644 index 25dc261ebd..0000000000 Binary files a/front/public/images/large/Backpack/backpack/7.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/8.png b/front/public/images/large/Backpack/backpack/8.png deleted file mode 100644 index ba74e9c8ec..0000000000 Binary files a/front/public/images/large/Backpack/backpack/8.png and /dev/null differ diff --git a/front/public/images/large/Backpack/backpack/9.png b/front/public/images/large/Backpack/backpack/9.png deleted file mode 100644 index 9bd8c8abda..0000000000 Binary files a/front/public/images/large/Backpack/backpack/9.png and /dev/null differ diff --git a/front/public/images/large/Backpack/boundLeather/0.png b/front/public/images/large/Backpack/boundLeather/0.png deleted file mode 100644 index fba96c1653..0000000000 Binary files a/front/public/images/large/Backpack/boundLeather/0.png and /dev/null differ diff --git a/front/public/images/large/Backpack/tannedLeather/0.png b/front/public/images/large/Backpack/tannedLeather/0.png deleted file mode 100644 index 9e50432500..0000000000 Binary files a/front/public/images/large/Backpack/tannedLeather/0.png and /dev/null differ diff --git a/front/public/images/large/Backpack/workbenchbackpack/17.png b/front/public/images/large/Backpack/workbenchbackpack/17.png deleted file mode 100644 index ab5edcacd0..0000000000 Binary files a/front/public/images/large/Backpack/workbenchbackpack/17.png and /dev/null differ diff --git a/front/public/images/large/Backpack/workbenchbackpack/217.png b/front/public/images/large/Backpack/workbenchbackpack/217.png deleted file mode 100644 index 8a757abd1b..0000000000 Binary files a/front/public/images/large/Backpack/workbenchbackpack/217.png and /dev/null differ diff --git a/front/public/images/large/Baubles/Ring/0.png b/front/public/images/large/Baubles/Ring/0.png deleted file mode 100644 index ba2fdbefb5..0000000000 Binary files a/front/public/images/large/Baubles/Ring/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Armor Stand/0.png b/front/public/images/large/BiblioCraft/Armor Stand/0.png deleted file mode 100644 index 986680579b..0000000000 Binary files a/front/public/images/large/BiblioCraft/Armor Stand/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBell/0.png b/front/public/images/large/BiblioCraft/BiblioBell/0.png deleted file mode 100644 index 0688d61ad9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBell/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/0.png b/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/0.png deleted file mode 100644 index 19f5864ef8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/1.png b/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/1.png deleted file mode 100644 index 2963b711ee..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/2.png b/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/2.png deleted file mode 100644 index a9cc58e901..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/3.png b/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/3.png deleted file mode 100644 index 4f3ef42eb7..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/4.png b/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/4.png deleted file mode 100644 index 4201f7845a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/5.png b/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/5.png deleted file mode 100644 index cf45b2bbef..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/6.png b/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/6.png deleted file mode 100644 index 447f59d31f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioBorderlessPainting/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioCase/0.png b/front/public/images/large/BiblioCraft/BiblioCase/0.png deleted file mode 100644 index e375ca408c..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioCase/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioCase/1.png b/front/public/images/large/BiblioCraft/BiblioCase/1.png deleted file mode 100644 index b776e89484..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioCase/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioCase/2.png b/front/public/images/large/BiblioCraft/BiblioCase/2.png deleted file mode 100644 index 89aa281d56..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioCase/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioCase/3.png b/front/public/images/large/BiblioCraft/BiblioCase/3.png deleted file mode 100644 index 966bec5365..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioCase/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioCase/4.png b/front/public/images/large/BiblioCraft/BiblioCase/4.png deleted file mode 100644 index f1009b3153..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioCase/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioCase/5.png b/front/public/images/large/BiblioCraft/BiblioCase/5.png deleted file mode 100644 index aff6e763bf..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioCase/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioCase/6.png b/front/public/images/large/BiblioCraft/BiblioCase/6.png deleted file mode 100644 index d72dc7ae3f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioCase/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClipboard/0.png b/front/public/images/large/BiblioCraft/BiblioClipboard/0.png deleted file mode 100644 index 6ba90cfc7b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClipboard/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClock/0.png b/front/public/images/large/BiblioCraft/BiblioClock/0.png deleted file mode 100644 index b649404345..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClock/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClock/1.png b/front/public/images/large/BiblioCraft/BiblioClock/1.png deleted file mode 100644 index 3278f6c09e..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClock/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClock/2.png b/front/public/images/large/BiblioCraft/BiblioClock/2.png deleted file mode 100644 index 3cc4be5335..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClock/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClock/3.png b/front/public/images/large/BiblioCraft/BiblioClock/3.png deleted file mode 100644 index 603a4e1263..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClock/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClock/4.png b/front/public/images/large/BiblioCraft/BiblioClock/4.png deleted file mode 100644 index 0b8c217c68..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClock/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClock/5.png b/front/public/images/large/BiblioCraft/BiblioClock/5.png deleted file mode 100644 index 93d2a71f40..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClock/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioClock/6.png b/front/public/images/large/BiblioCraft/BiblioClock/6.png deleted file mode 100644 index 7b0a7b67a9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioClock/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioDesk/0.png b/front/public/images/large/BiblioCraft/BiblioDesk/0.png deleted file mode 100644 index 0faf83ffb1..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioDesk/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioDesk/1.png b/front/public/images/large/BiblioCraft/BiblioDesk/1.png deleted file mode 100644 index d90ae0d14a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioDesk/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioDesk/2.png b/front/public/images/large/BiblioCraft/BiblioDesk/2.png deleted file mode 100644 index 167f5e1a64..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioDesk/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioDesk/3.png b/front/public/images/large/BiblioCraft/BiblioDesk/3.png deleted file mode 100644 index dc384c50dd..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioDesk/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioDesk/4.png b/front/public/images/large/BiblioCraft/BiblioDesk/4.png deleted file mode 100644 index 1aba3ff93f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioDesk/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioDesk/5.png b/front/public/images/large/BiblioCraft/BiblioDesk/5.png deleted file mode 100644 index f41342d975..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioDesk/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioDesk/6.png b/front/public/images/large/BiblioCraft/BiblioDesk/6.png deleted file mode 100644 index 4b0c1215cb..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioDesk/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancyPainting/0.png b/front/public/images/large/BiblioCraft/BiblioFancyPainting/0.png deleted file mode 100644 index 22e0519f11..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancyPainting/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancyPainting/1.png b/front/public/images/large/BiblioCraft/BiblioFancyPainting/1.png deleted file mode 100644 index 19be3cb048..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancyPainting/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancyPainting/2.png b/front/public/images/large/BiblioCraft/BiblioFancyPainting/2.png deleted file mode 100644 index 442e3e2be6..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancyPainting/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancyPainting/3.png b/front/public/images/large/BiblioCraft/BiblioFancyPainting/3.png deleted file mode 100644 index 92a7863b11..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancyPainting/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancyPainting/4.png b/front/public/images/large/BiblioCraft/BiblioFancyPainting/4.png deleted file mode 100644 index c7ae1c3b88..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancyPainting/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancyPainting/5.png b/front/public/images/large/BiblioCraft/BiblioFancyPainting/5.png deleted file mode 100644 index 841e4bd2cf..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancyPainting/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancyPainting/6.png b/front/public/images/large/BiblioCraft/BiblioFancyPainting/6.png deleted file mode 100644 index 3a827f336e..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancyPainting/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancySign/0.png b/front/public/images/large/BiblioCraft/BiblioFancySign/0.png deleted file mode 100644 index b7c2b8c7b5..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancySign/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancySign/1.png b/front/public/images/large/BiblioCraft/BiblioFancySign/1.png deleted file mode 100644 index b6e579da5d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancySign/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancySign/2.png b/front/public/images/large/BiblioCraft/BiblioFancySign/2.png deleted file mode 100644 index 7d91689392..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancySign/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancySign/3.png b/front/public/images/large/BiblioCraft/BiblioFancySign/3.png deleted file mode 100644 index 0a2dc93a80..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancySign/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancySign/4.png b/front/public/images/large/BiblioCraft/BiblioFancySign/4.png deleted file mode 100644 index ec2aa5c127..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancySign/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancySign/5.png b/front/public/images/large/BiblioCraft/BiblioFancySign/5.png deleted file mode 100644 index 489a91fa6b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancySign/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFancySign/6.png b/front/public/images/large/BiblioCraft/BiblioFancySign/6.png deleted file mode 100644 index 096aff7347..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFancySign/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFlatPainting/0.png b/front/public/images/large/BiblioCraft/BiblioFlatPainting/0.png deleted file mode 100644 index a2104fb74f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFlatPainting/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFlatPainting/1.png b/front/public/images/large/BiblioCraft/BiblioFlatPainting/1.png deleted file mode 100644 index 94c88a252d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFlatPainting/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFlatPainting/2.png b/front/public/images/large/BiblioCraft/BiblioFlatPainting/2.png deleted file mode 100644 index d8c014b90e..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFlatPainting/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFlatPainting/3.png b/front/public/images/large/BiblioCraft/BiblioFlatPainting/3.png deleted file mode 100644 index 75b9572369..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFlatPainting/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFlatPainting/4.png b/front/public/images/large/BiblioCraft/BiblioFlatPainting/4.png deleted file mode 100644 index d8dfb31bb8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFlatPainting/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFlatPainting/5.png b/front/public/images/large/BiblioCraft/BiblioFlatPainting/5.png deleted file mode 100644 index 26f2b0eb36..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFlatPainting/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioFlatPainting/6.png b/front/public/images/large/BiblioCraft/BiblioFlatPainting/6.png deleted file mode 100644 index 391c6c596a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioFlatPainting/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/0.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/0.png deleted file mode 100644 index 24d9d365df..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/1.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/1.png deleted file mode 100644 index cffeb9fc20..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/10.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/10.png deleted file mode 100644 index 7740abfcad..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/11.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/11.png deleted file mode 100644 index a1a8e30ab1..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/12.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/12.png deleted file mode 100644 index 43d054cdae..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/13.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/13.png deleted file mode 100644 index 130e390b8f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/14.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/14.png deleted file mode 100644 index ec17f807ef..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/15.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/15.png deleted file mode 100644 index ea60525081..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/2.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/2.png deleted file mode 100644 index a32f3bac1b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/3.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/3.png deleted file mode 100644 index 131a64bc5f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/4.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/4.png deleted file mode 100644 index bc3b358ef4..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/5.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/5.png deleted file mode 100644 index bbd37fd539..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/6.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/6.png deleted file mode 100644 index 7fb0487462..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/7.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/7.png deleted file mode 100644 index 258c80936a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/8.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/8.png deleted file mode 100644 index 300c682100..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLamp/9.png b/front/public/images/large/BiblioCraft/BiblioIronLamp/9.png deleted file mode 100644 index c7ab272852..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLamp/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/0.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/0.png deleted file mode 100644 index d61fabcb3b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/1.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/1.png deleted file mode 100644 index 916c941e4b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/10.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/10.png deleted file mode 100644 index 5e9e18b0b1..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/11.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/11.png deleted file mode 100644 index a47e11add4..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/12.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/12.png deleted file mode 100644 index 04ab99f75a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/13.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/13.png deleted file mode 100644 index bd729c7214..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/14.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/14.png deleted file mode 100644 index 933c9525e1..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/15.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/15.png deleted file mode 100644 index df41f7b4ad..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/2.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/2.png deleted file mode 100644 index 37f60d39e7..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/3.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/3.png deleted file mode 100644 index a703da7064..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/4.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/4.png deleted file mode 100644 index 2fbf27aa43..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/5.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/5.png deleted file mode 100644 index 54d0ce7350..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/6.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/6.png deleted file mode 100644 index fd52e6c9a4..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/7.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/7.png deleted file mode 100644 index a95372cc0a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/8.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/8.png deleted file mode 100644 index f02450ddc3..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioIronLantern/9.png b/front/public/images/large/BiblioCraft/BiblioIronLantern/9.png deleted file mode 100644 index 98e246776f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioIronLantern/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLabel/0.png b/front/public/images/large/BiblioCraft/BiblioLabel/0.png deleted file mode 100644 index 5f363ad8f3..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLabel/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLabel/1.png b/front/public/images/large/BiblioCraft/BiblioLabel/1.png deleted file mode 100644 index 7b55e22ba8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLabel/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLabel/2.png b/front/public/images/large/BiblioCraft/BiblioLabel/2.png deleted file mode 100644 index 4b032572d5..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLabel/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLabel/3.png b/front/public/images/large/BiblioCraft/BiblioLabel/3.png deleted file mode 100644 index e94a9cb201..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLabel/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLabel/4.png b/front/public/images/large/BiblioCraft/BiblioLabel/4.png deleted file mode 100644 index 89aeff8ccf..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLabel/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLabel/5.png b/front/public/images/large/BiblioCraft/BiblioLabel/5.png deleted file mode 100644 index f687d73bb4..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLabel/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLabel/6.png b/front/public/images/large/BiblioCraft/BiblioLabel/6.png deleted file mode 100644 index 913ac2e0e3..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLabel/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/0.png b/front/public/images/large/BiblioCraft/BiblioLamp/0.png deleted file mode 100644 index c3e447a14f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/1.png b/front/public/images/large/BiblioCraft/BiblioLamp/1.png deleted file mode 100644 index ba3934f55a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/10.png b/front/public/images/large/BiblioCraft/BiblioLamp/10.png deleted file mode 100644 index 6206ae0286..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/11.png b/front/public/images/large/BiblioCraft/BiblioLamp/11.png deleted file mode 100644 index 1c92bfa6d5..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/12.png b/front/public/images/large/BiblioCraft/BiblioLamp/12.png deleted file mode 100644 index a14b62a8f9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/13.png b/front/public/images/large/BiblioCraft/BiblioLamp/13.png deleted file mode 100644 index 65c57ccb09..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/14.png b/front/public/images/large/BiblioCraft/BiblioLamp/14.png deleted file mode 100644 index 75c2122a80..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/15.png b/front/public/images/large/BiblioCraft/BiblioLamp/15.png deleted file mode 100644 index 54fc672a0c..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/2.png b/front/public/images/large/BiblioCraft/BiblioLamp/2.png deleted file mode 100644 index f869ad46c8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/3.png b/front/public/images/large/BiblioCraft/BiblioLamp/3.png deleted file mode 100644 index f80f596a90..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/4.png b/front/public/images/large/BiblioCraft/BiblioLamp/4.png deleted file mode 100644 index b8915ef602..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/5.png b/front/public/images/large/BiblioCraft/BiblioLamp/5.png deleted file mode 100644 index f926459ab0..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/6.png b/front/public/images/large/BiblioCraft/BiblioLamp/6.png deleted file mode 100644 index f7a7b85f4f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/7.png b/front/public/images/large/BiblioCraft/BiblioLamp/7.png deleted file mode 100644 index 8172c15e47..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/8.png b/front/public/images/large/BiblioCraft/BiblioLamp/8.png deleted file mode 100644 index 0271331e17..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLamp/9.png b/front/public/images/large/BiblioCraft/BiblioLamp/9.png deleted file mode 100644 index 3a46ebc7ea..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLamp/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/0.png b/front/public/images/large/BiblioCraft/BiblioLantern/0.png deleted file mode 100644 index 0b6f15bdec..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/1.png b/front/public/images/large/BiblioCraft/BiblioLantern/1.png deleted file mode 100644 index 970df6475b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/10.png b/front/public/images/large/BiblioCraft/BiblioLantern/10.png deleted file mode 100644 index 7c17b55ce2..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/11.png b/front/public/images/large/BiblioCraft/BiblioLantern/11.png deleted file mode 100644 index c4e5f12e51..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/12.png b/front/public/images/large/BiblioCraft/BiblioLantern/12.png deleted file mode 100644 index 36ac08f0ba..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/13.png b/front/public/images/large/BiblioCraft/BiblioLantern/13.png deleted file mode 100644 index 6362e870e1..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/14.png b/front/public/images/large/BiblioCraft/BiblioLantern/14.png deleted file mode 100644 index f5f5974253..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/15.png b/front/public/images/large/BiblioCraft/BiblioLantern/15.png deleted file mode 100644 index 3bb600073a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/2.png b/front/public/images/large/BiblioCraft/BiblioLantern/2.png deleted file mode 100644 index cd37b4b4c3..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/3.png b/front/public/images/large/BiblioCraft/BiblioLantern/3.png deleted file mode 100644 index dda364ca9a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/4.png b/front/public/images/large/BiblioCraft/BiblioLantern/4.png deleted file mode 100644 index 05f7036cd5..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/5.png b/front/public/images/large/BiblioCraft/BiblioLantern/5.png deleted file mode 100644 index 71f1bc0d77..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/6.png b/front/public/images/large/BiblioCraft/BiblioLantern/6.png deleted file mode 100644 index 56edf12e9a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/7.png b/front/public/images/large/BiblioCraft/BiblioLantern/7.png deleted file mode 100644 index 53aa39384c..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/8.png b/front/public/images/large/BiblioCraft/BiblioLantern/8.png deleted file mode 100644 index 448125bf52..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioLantern/9.png b/front/public/images/large/BiblioCraft/BiblioLantern/9.png deleted file mode 100644 index ddb7c56c3a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioLantern/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMapFrames/0.png b/front/public/images/large/BiblioCraft/BiblioMapFrames/0.png deleted file mode 100644 index 7915eb10f8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMapFrames/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMapFrames/1.png b/front/public/images/large/BiblioCraft/BiblioMapFrames/1.png deleted file mode 100644 index 5db8d637b4..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMapFrames/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMapFrames/2.png b/front/public/images/large/BiblioCraft/BiblioMapFrames/2.png deleted file mode 100644 index c051da4e24..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMapFrames/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMapFrames/3.png b/front/public/images/large/BiblioCraft/BiblioMapFrames/3.png deleted file mode 100644 index dabbc8ce26..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMapFrames/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMapFrames/4.png b/front/public/images/large/BiblioCraft/BiblioMapFrames/4.png deleted file mode 100644 index 41afd7fad0..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMapFrames/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMapFrames/5.png b/front/public/images/large/BiblioCraft/BiblioMapFrames/5.png deleted file mode 100644 index 3e517e208e..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMapFrames/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMapFrames/6.png b/front/public/images/large/BiblioCraft/BiblioMapFrames/6.png deleted file mode 100644 index a5ea8ac7d6..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMapFrames/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/0.png b/front/public/images/large/BiblioCraft/BiblioMiddlePainting/0.png deleted file mode 100644 index 50c5d9d141..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/1.png b/front/public/images/large/BiblioCraft/BiblioMiddlePainting/1.png deleted file mode 100644 index 91235e799d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/2.png b/front/public/images/large/BiblioCraft/BiblioMiddlePainting/2.png deleted file mode 100644 index 99728f0f0f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/3.png b/front/public/images/large/BiblioCraft/BiblioMiddlePainting/3.png deleted file mode 100644 index 05a421b6b0..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/4.png b/front/public/images/large/BiblioCraft/BiblioMiddlePainting/4.png deleted file mode 100644 index a039378ead..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/5.png b/front/public/images/large/BiblioCraft/BiblioMiddlePainting/5.png deleted file mode 100644 index c3d13d542a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/6.png b/front/public/images/large/BiblioCraft/BiblioMiddlePainting/6.png deleted file mode 100644 index 6b237937e7..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioMiddlePainting/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaintPress/0.png b/front/public/images/large/BiblioCraft/BiblioPaintPress/0.png deleted file mode 100644 index a3f4f65c0b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaintPress/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaneler/0.png b/front/public/images/large/BiblioCraft/BiblioPaneler/0.png deleted file mode 100644 index c1e54e9948..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaneler/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaneler/1.png b/front/public/images/large/BiblioCraft/BiblioPaneler/1.png deleted file mode 100644 index 5c1e101a2f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaneler/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaneler/2.png b/front/public/images/large/BiblioCraft/BiblioPaneler/2.png deleted file mode 100644 index 20addf3f2b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaneler/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaneler/3.png b/front/public/images/large/BiblioCraft/BiblioPaneler/3.png deleted file mode 100644 index 6e49ab9f02..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaneler/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaneler/4.png b/front/public/images/large/BiblioCraft/BiblioPaneler/4.png deleted file mode 100644 index d6b96c19b7..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaneler/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaneler/5.png b/front/public/images/large/BiblioCraft/BiblioPaneler/5.png deleted file mode 100644 index 60f8650132..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaneler/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPaneler/6.png b/front/public/images/large/BiblioCraft/BiblioPaneler/6.png deleted file mode 100644 index f2d2b99e60..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPaneler/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPotionShelf/0.png b/front/public/images/large/BiblioCraft/BiblioPotionShelf/0.png deleted file mode 100644 index 8c5e244ca5..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPotionShelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPotionShelf/1.png b/front/public/images/large/BiblioCraft/BiblioPotionShelf/1.png deleted file mode 100644 index 91fdcea6da..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPotionShelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPotionShelf/2.png b/front/public/images/large/BiblioCraft/BiblioPotionShelf/2.png deleted file mode 100644 index 25bfac379b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPotionShelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPotionShelf/3.png b/front/public/images/large/BiblioCraft/BiblioPotionShelf/3.png deleted file mode 100644 index f1ed5d9515..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPotionShelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPotionShelf/4.png b/front/public/images/large/BiblioCraft/BiblioPotionShelf/4.png deleted file mode 100644 index 91bfef2b68..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPotionShelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPotionShelf/5.png b/front/public/images/large/BiblioCraft/BiblioPotionShelf/5.png deleted file mode 100644 index 9b196c666b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPotionShelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioPotionShelf/6.png b/front/public/images/large/BiblioCraft/BiblioPotionShelf/6.png deleted file mode 100644 index b4a9bff38f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioPotionShelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioRack/0.png b/front/public/images/large/BiblioCraft/BiblioRack/0.png deleted file mode 100644 index 052a9d9c88..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioRack/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioRack/1.png b/front/public/images/large/BiblioCraft/BiblioRack/1.png deleted file mode 100644 index bec4358833..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioRack/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioRack/2.png b/front/public/images/large/BiblioCraft/BiblioRack/2.png deleted file mode 100644 index e3e295a8b8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioRack/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioRack/3.png b/front/public/images/large/BiblioCraft/BiblioRack/3.png deleted file mode 100644 index 2306a18dfc..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioRack/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioRack/4.png b/front/public/images/large/BiblioCraft/BiblioRack/4.png deleted file mode 100644 index e8185d7e5f..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioRack/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioRack/5.png b/front/public/images/large/BiblioCraft/BiblioRack/5.png deleted file mode 100644 index 762217f038..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioRack/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioRack/6.png b/front/public/images/large/BiblioCraft/BiblioRack/6.png deleted file mode 100644 index 70e0bcb819..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioRack/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSeats/0.png b/front/public/images/large/BiblioCraft/BiblioSeats/0.png deleted file mode 100644 index e9deadb9de..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSeats/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSeats/1.png b/front/public/images/large/BiblioCraft/BiblioSeats/1.png deleted file mode 100644 index a91a16171b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSeats/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSeats/2.png b/front/public/images/large/BiblioCraft/BiblioSeats/2.png deleted file mode 100644 index 2847b81008..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSeats/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSeats/3.png b/front/public/images/large/BiblioCraft/BiblioSeats/3.png deleted file mode 100644 index a982d63877..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSeats/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSeats/4.png b/front/public/images/large/BiblioCraft/BiblioSeats/4.png deleted file mode 100644 index f187847ef7..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSeats/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSeats/5.png b/front/public/images/large/BiblioCraft/BiblioSeats/5.png deleted file mode 100644 index 29b82f62de..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSeats/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSeats/6.png b/front/public/images/large/BiblioCraft/BiblioSeats/6.png deleted file mode 100644 index ab450591e4..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSeats/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioShelf/0.png b/front/public/images/large/BiblioCraft/BiblioShelf/0.png deleted file mode 100644 index 76ea2f149a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioShelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioShelf/1.png b/front/public/images/large/BiblioCraft/BiblioShelf/1.png deleted file mode 100644 index 205b874e49..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioShelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioShelf/2.png b/front/public/images/large/BiblioCraft/BiblioShelf/2.png deleted file mode 100644 index a2fac88c96..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioShelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioShelf/3.png b/front/public/images/large/BiblioCraft/BiblioShelf/3.png deleted file mode 100644 index adf67fbbae..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioShelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioShelf/4.png b/front/public/images/large/BiblioCraft/BiblioShelf/4.png deleted file mode 100644 index 12ea70665e..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioShelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioShelf/5.png b/front/public/images/large/BiblioCraft/BiblioShelf/5.png deleted file mode 100644 index 6d33b5240a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioShelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioShelf/6.png b/front/public/images/large/BiblioCraft/BiblioShelf/6.png deleted file mode 100644 index 5a44babc9d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioShelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSimplePainting/0.png b/front/public/images/large/BiblioCraft/BiblioSimplePainting/0.png deleted file mode 100644 index d07e052ca9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSimplePainting/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSimplePainting/1.png b/front/public/images/large/BiblioCraft/BiblioSimplePainting/1.png deleted file mode 100644 index c22ea05b17..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSimplePainting/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSimplePainting/2.png b/front/public/images/large/BiblioCraft/BiblioSimplePainting/2.png deleted file mode 100644 index e69fa1d9f9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSimplePainting/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSimplePainting/3.png b/front/public/images/large/BiblioCraft/BiblioSimplePainting/3.png deleted file mode 100644 index 9be51a0b74..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSimplePainting/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSimplePainting/4.png b/front/public/images/large/BiblioCraft/BiblioSimplePainting/4.png deleted file mode 100644 index 05490ef49a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSimplePainting/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSimplePainting/5.png b/front/public/images/large/BiblioCraft/BiblioSimplePainting/5.png deleted file mode 100644 index 54be7fe1ff..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSimplePainting/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSimplePainting/6.png b/front/public/images/large/BiblioCraft/BiblioSimplePainting/6.png deleted file mode 100644 index 9fbd387b83..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSimplePainting/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioStuffs/0.png b/front/public/images/large/BiblioCraft/BiblioStuffs/0.png deleted file mode 100644 index 5336928fa3..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioStuffs/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioStuffs/2.png b/front/public/images/large/BiblioCraft/BiblioStuffs/2.png deleted file mode 100644 index 76a5b320dd..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioStuffs/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioStuffs/3.png b/front/public/images/large/BiblioCraft/BiblioStuffs/3.png deleted file mode 100644 index b31cdc7161..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioStuffs/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/0.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/0.png deleted file mode 100644 index 5f8446e1a9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/1.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/1.png deleted file mode 100644 index 109c14d3f1..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/10.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/10.png deleted file mode 100644 index 2f2763780b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/11.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/11.png deleted file mode 100644 index 3167fa9bb9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/12.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/12.png deleted file mode 100644 index f25530087d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/13.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/13.png deleted file mode 100644 index 913b0e2bb3..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/14.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/14.png deleted file mode 100644 index 075030b0fc..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/15.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/15.png deleted file mode 100644 index 1906f67c52..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/2.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/2.png deleted file mode 100644 index db8f77a573..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/3.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/3.png deleted file mode 100644 index a3e5388d25..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/4.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/4.png deleted file mode 100644 index c2913a465b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/5.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/5.png deleted file mode 100644 index 198b8424f8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/6.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/6.png deleted file mode 100644 index 16dadeea92..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/7.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/7.png deleted file mode 100644 index 9d9e3aca49..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/8.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/8.png deleted file mode 100644 index e31a27f012..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/9.png b/front/public/images/large/BiblioCraft/BiblioSwordPedestal/9.png deleted file mode 100644 index bad6d6d1b5..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioSwordPedestal/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTable/0.png b/front/public/images/large/BiblioCraft/BiblioTable/0.png deleted file mode 100644 index 0290fea111..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTable/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTable/1.png b/front/public/images/large/BiblioCraft/BiblioTable/1.png deleted file mode 100644 index 1199803ce8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTable/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTable/2.png b/front/public/images/large/BiblioCraft/BiblioTable/2.png deleted file mode 100644 index 2e69390c7a..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTable/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTable/3.png b/front/public/images/large/BiblioCraft/BiblioTable/3.png deleted file mode 100644 index b200ab5e0b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTable/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTable/4.png b/front/public/images/large/BiblioCraft/BiblioTable/4.png deleted file mode 100644 index f01e194b89..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTable/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTable/5.png b/front/public/images/large/BiblioCraft/BiblioTable/5.png deleted file mode 100644 index 6a9663b71c..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTable/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTable/6.png b/front/public/images/large/BiblioCraft/BiblioTable/6.png deleted file mode 100644 index 697f95b2f7..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTable/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/0.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/0.png deleted file mode 100644 index e52ca975d9..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/1.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/1.png deleted file mode 100644 index 75ae911326..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/10.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/10.png deleted file mode 100644 index e2d437db61..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/11.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/11.png deleted file mode 100644 index 46865bfdc1..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/12.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/12.png deleted file mode 100644 index 8c8d4ae206..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/13.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/13.png deleted file mode 100644 index d2327f9c26..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/14.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/14.png deleted file mode 100644 index 9077890938..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/15.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/15.png deleted file mode 100644 index a8ab9a0509..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/2.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/2.png deleted file mode 100644 index c65cb40e7b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/3.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/3.png deleted file mode 100644 index 2b97df5cc6..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/4.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/4.png deleted file mode 100644 index 5440b444c6..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/5.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/5.png deleted file mode 100644 index 58caaf4914..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/6.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/6.png deleted file mode 100644 index e0bfbe8a54..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/7.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/7.png deleted file mode 100644 index 9d5955990c..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/8.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/8.png deleted file mode 100644 index 008fd43e22..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioTypewriter/9.png b/front/public/images/large/BiblioCraft/BiblioTypewriter/9.png deleted file mode 100644 index b5f7f8f976..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioTypewriter/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioWorkbench/0.png b/front/public/images/large/BiblioCraft/BiblioWorkbench/0.png deleted file mode 100644 index fa37eadb0d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioWorkbench/1.png b/front/public/images/large/BiblioCraft/BiblioWorkbench/1.png deleted file mode 100644 index a211a11c77..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioWorkbench/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioWorkbench/2.png b/front/public/images/large/BiblioCraft/BiblioWorkbench/2.png deleted file mode 100644 index 73e810c60d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioWorkbench/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioWorkbench/3.png b/front/public/images/large/BiblioCraft/BiblioWorkbench/3.png deleted file mode 100644 index e77b68418b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioWorkbench/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioWorkbench/4.png b/front/public/images/large/BiblioCraft/BiblioWorkbench/4.png deleted file mode 100644 index cec39f4049..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioWorkbench/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioWorkbench/5.png b/front/public/images/large/BiblioCraft/BiblioWorkbench/5.png deleted file mode 100644 index 2e5f328193..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioWorkbench/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BiblioWorkbench/6.png b/front/public/images/large/BiblioCraft/BiblioWorkbench/6.png deleted file mode 100644 index 5ff33acbb5..0000000000 Binary files a/front/public/images/large/BiblioCraft/BiblioWorkbench/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Bibliotheca/0.png b/front/public/images/large/BiblioCraft/Bibliotheca/0.png deleted file mode 100644 index 4e599c3561..0000000000 Binary files a/front/public/images/large/BiblioCraft/Bibliotheca/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Bibliotheca/1.png b/front/public/images/large/BiblioCraft/Bibliotheca/1.png deleted file mode 100644 index 448f3c8174..0000000000 Binary files a/front/public/images/large/BiblioCraft/Bibliotheca/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Bibliotheca/2.png b/front/public/images/large/BiblioCraft/Bibliotheca/2.png deleted file mode 100644 index d6fd9f6120..0000000000 Binary files a/front/public/images/large/BiblioCraft/Bibliotheca/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Bibliotheca/3.png b/front/public/images/large/BiblioCraft/Bibliotheca/3.png deleted file mode 100644 index f40f2e3b10..0000000000 Binary files a/front/public/images/large/BiblioCraft/Bibliotheca/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Bibliotheca/4.png b/front/public/images/large/BiblioCraft/Bibliotheca/4.png deleted file mode 100644 index 8675c518f0..0000000000 Binary files a/front/public/images/large/BiblioCraft/Bibliotheca/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Bibliotheca/5.png b/front/public/images/large/BiblioCraft/Bibliotheca/5.png deleted file mode 100644 index 794ceba6f9..0000000000 Binary files a/front/public/images/large/BiblioCraft/Bibliotheca/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Bibliotheca/6.png b/front/public/images/large/BiblioCraft/Bibliotheca/6.png deleted file mode 100644 index 9493c27edb..0000000000 Binary files a/front/public/images/large/BiblioCraft/Bibliotheca/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BookcaseFilled/0.png b/front/public/images/large/BiblioCraft/BookcaseFilled/0.png deleted file mode 100644 index 8af5085463..0000000000 Binary files a/front/public/images/large/BiblioCraft/BookcaseFilled/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BookcaseFilled/1.png b/front/public/images/large/BiblioCraft/BookcaseFilled/1.png deleted file mode 100644 index 6f81d30691..0000000000 Binary files a/front/public/images/large/BiblioCraft/BookcaseFilled/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BookcaseFilled/2.png b/front/public/images/large/BiblioCraft/BookcaseFilled/2.png deleted file mode 100644 index ad870b12eb..0000000000 Binary files a/front/public/images/large/BiblioCraft/BookcaseFilled/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BookcaseFilled/3.png b/front/public/images/large/BiblioCraft/BookcaseFilled/3.png deleted file mode 100644 index 9930872d5d..0000000000 Binary files a/front/public/images/large/BiblioCraft/BookcaseFilled/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BookcaseFilled/4.png b/front/public/images/large/BiblioCraft/BookcaseFilled/4.png deleted file mode 100644 index c5686687d8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BookcaseFilled/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BookcaseFilled/5.png b/front/public/images/large/BiblioCraft/BookcaseFilled/5.png deleted file mode 100644 index 44de39ee5b..0000000000 Binary files a/front/public/images/large/BiblioCraft/BookcaseFilled/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/BookcaseFilled/6.png b/front/public/images/large/BiblioCraft/BookcaseFilled/6.png deleted file mode 100644 index 3621eb8af8..0000000000 Binary files a/front/public/images/large/BiblioCraft/BookcaseFilled/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Printing Press/0.png b/front/public/images/large/BiblioCraft/Printing Press/0.png deleted file mode 100644 index de8299591d..0000000000 Binary files a/front/public/images/large/BiblioCraft/Printing Press/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/Typesetting Machine/0.png b/front/public/images/large/BiblioCraft/Typesetting Machine/0.png deleted file mode 100644 index 7a99d72b4d..0000000000 Binary files a/front/public/images/large/BiblioCraft/Typesetting Machine/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.AtlasBook/0.png b/front/public/images/large/BiblioCraft/item.AtlasBook/0.png deleted file mode 100644 index 6938280c98..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.AtlasBook/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.AtlasPlate/0.png b/front/public/images/large/BiblioCraft/item.AtlasPlate/0.png deleted file mode 100644 index 1d61fa8f27..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.AtlasPlate/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioChase/0.png b/front/public/images/large/BiblioCraft/item.BiblioChase/0.png deleted file mode 100644 index 0b9bb4914e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioChase/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioClipboard/0.png b/front/public/images/large/BiblioCraft/item.BiblioClipboard/0.png deleted file mode 100644 index e4e389ad1b..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioClipboard/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioCreativeLock/0.png b/front/public/images/large/BiblioCraft/item.BiblioCreativeLock/0.png deleted file mode 100644 index 92d9336e4e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioCreativeLock/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioDrill/0.png b/front/public/images/large/BiblioCraft/item.BiblioDrill/0.png deleted file mode 100644 index f802fbe3a2..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioDrill/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioGlasses/0.png b/front/public/images/large/BiblioCraft/item.BiblioGlasses/0.png deleted file mode 100644 index ed635c0ec7..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioGlasses/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioGlasses/1.png b/front/public/images/large/BiblioCraft/item.BiblioGlasses/1.png deleted file mode 100644 index 6409f0d447..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioGlasses/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioGlasses/2.png b/front/public/images/large/BiblioCraft/item.BiblioGlasses/2.png deleted file mode 100644 index f6b4e96659..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioGlasses/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioMapTool/0.png b/front/public/images/large/BiblioCraft/item.BiblioMapTool/0.png deleted file mode 100644 index 31c71831eb..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioMapTool/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioRedBook/0.png b/front/public/images/large/BiblioCraft/item.BiblioRedBook/0.png deleted file mode 100644 index 5f7b3a5a1e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioRedBook/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BiblioWayPointCompass/0.png b/front/public/images/large/BiblioCraft/item.BiblioWayPointCompass/0.png deleted file mode 100644 index e4a0a7a775..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BiblioWayPointCompass/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.BigBook/0.png b/front/public/images/large/BiblioCraft/item.BigBook/0.png deleted file mode 100644 index 1320008a85..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.BigBook/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.DeathCompass/0.png b/front/public/images/large/BiblioCraft/item.DeathCompass/0.png deleted file mode 100644 index fd76f1c59d..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.DeathCompass/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.EnchantedPlate/0.png b/front/public/images/large/BiblioCraft/item.EnchantedPlate/0.png deleted file mode 100644 index 1d61fa8f27..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.EnchantedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.FramingBoard/0.png b/front/public/images/large/BiblioCraft/item.FramingBoard/0.png deleted file mode 100644 index cedf23917d..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.FramingBoard/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.FramingSaw/0.png b/front/public/images/large/BiblioCraft/item.FramingSaw/0.png deleted file mode 100644 index 9cf00df4ce..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.FramingSaw/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.FramingSheet/0.png b/front/public/images/large/BiblioCraft/item.FramingSheet/0.png deleted file mode 100644 index e511241847..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.FramingSheet/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.HandDrill/0.png b/front/public/images/large/BiblioCraft/item.HandDrill/0.png deleted file mode 100644 index 47cb04f307..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.HandDrill/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.PaintingCanvas/0.png b/front/public/images/large/BiblioCraft/item.PaintingCanvas/0.png deleted file mode 100644 index fda7839ac4..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.PaintingCanvas/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.PlumbLine/0.png b/front/public/images/large/BiblioCraft/item.PlumbLine/0.png deleted file mode 100644 index 6b23cb8009..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.PlumbLine/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.PrintPlate/0.png b/front/public/images/large/BiblioCraft/item.PrintPlate/0.png deleted file mode 100644 index 1d61fa8f27..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.PrintPlate/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.RecipeBook/0.png b/front/public/images/large/BiblioCraft/item.RecipeBook/0.png deleted file mode 100644 index a61446f1bb..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.RecipeBook/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.SlottedBook/0.png b/front/public/images/large/BiblioCraft/item.SlottedBook/0.png deleted file mode 100644 index 5f7b3a5a1e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.SlottedBook/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.StockroomCatalog/0.png b/front/public/images/large/BiblioCraft/item.StockroomCatalog/0.png deleted file mode 100644 index b7170d5c04..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.StockroomCatalog/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.TesterItem/0.png b/front/public/images/large/BiblioCraft/item.TesterItem/0.png deleted file mode 100644 index 5f7b3a5a1e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.TesterItem/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack/0.png b/front/public/images/large/BiblioCraft/item.seatBack/0.png deleted file mode 100644 index a37aafc365..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack/1.png b/front/public/images/large/BiblioCraft/item.seatBack/1.png deleted file mode 100644 index 5be5737a62..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack/2.png b/front/public/images/large/BiblioCraft/item.seatBack/2.png deleted file mode 100644 index 9876cdcd2b..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack/3.png b/front/public/images/large/BiblioCraft/item.seatBack/3.png deleted file mode 100644 index dd770c3d2d..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack/4.png b/front/public/images/large/BiblioCraft/item.seatBack/4.png deleted file mode 100644 index 4f21d59880..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack/5.png b/front/public/images/large/BiblioCraft/item.seatBack/5.png deleted file mode 100644 index 45be455477..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack/6.png b/front/public/images/large/BiblioCraft/item.seatBack/6.png deleted file mode 100644 index 04724f007a..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack2/0.png b/front/public/images/large/BiblioCraft/item.seatBack2/0.png deleted file mode 100644 index fdc43bdc30..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack2/1.png b/front/public/images/large/BiblioCraft/item.seatBack2/1.png deleted file mode 100644 index 9583e61afa..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack2/2.png b/front/public/images/large/BiblioCraft/item.seatBack2/2.png deleted file mode 100644 index ee82dd8b01..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack2/3.png b/front/public/images/large/BiblioCraft/item.seatBack2/3.png deleted file mode 100644 index e9a44316eb..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack2/4.png b/front/public/images/large/BiblioCraft/item.seatBack2/4.png deleted file mode 100644 index aa05e29a4e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack2/5.png b/front/public/images/large/BiblioCraft/item.seatBack2/5.png deleted file mode 100644 index 3c857dc278..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack2/6.png b/front/public/images/large/BiblioCraft/item.seatBack2/6.png deleted file mode 100644 index 9d7c6e262c..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack3/0.png b/front/public/images/large/BiblioCraft/item.seatBack3/0.png deleted file mode 100644 index 9d6953090d..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack3/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack3/1.png b/front/public/images/large/BiblioCraft/item.seatBack3/1.png deleted file mode 100644 index bb1fc49631..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack3/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack3/2.png b/front/public/images/large/BiblioCraft/item.seatBack3/2.png deleted file mode 100644 index 9b010776bf..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack3/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack3/3.png b/front/public/images/large/BiblioCraft/item.seatBack3/3.png deleted file mode 100644 index ad2461dccd..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack3/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack3/4.png b/front/public/images/large/BiblioCraft/item.seatBack3/4.png deleted file mode 100644 index 5f6cc24326..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack3/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack3/5.png b/front/public/images/large/BiblioCraft/item.seatBack3/5.png deleted file mode 100644 index 2c7777d352..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack3/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack3/6.png b/front/public/images/large/BiblioCraft/item.seatBack3/6.png deleted file mode 100644 index 9110545a7e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack3/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack4/0.png b/front/public/images/large/BiblioCraft/item.seatBack4/0.png deleted file mode 100644 index fbab94ccc3..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack4/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack4/1.png b/front/public/images/large/BiblioCraft/item.seatBack4/1.png deleted file mode 100644 index d5d49f0a6a..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack4/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack4/2.png b/front/public/images/large/BiblioCraft/item.seatBack4/2.png deleted file mode 100644 index 685c902998..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack4/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack4/3.png b/front/public/images/large/BiblioCraft/item.seatBack4/3.png deleted file mode 100644 index 5b24986e4f..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack4/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack4/4.png b/front/public/images/large/BiblioCraft/item.seatBack4/4.png deleted file mode 100644 index 2493529972..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack4/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack4/5.png b/front/public/images/large/BiblioCraft/item.seatBack4/5.png deleted file mode 100644 index b22120f4b5..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack4/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack4/6.png b/front/public/images/large/BiblioCraft/item.seatBack4/6.png deleted file mode 100644 index a55bb2f74e..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack4/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack5/0.png b/front/public/images/large/BiblioCraft/item.seatBack5/0.png deleted file mode 100644 index 72bc11a0da..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack5/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack5/1.png b/front/public/images/large/BiblioCraft/item.seatBack5/1.png deleted file mode 100644 index dc98f5c90c..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack5/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack5/2.png b/front/public/images/large/BiblioCraft/item.seatBack5/2.png deleted file mode 100644 index a747f5b71a..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack5/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack5/3.png b/front/public/images/large/BiblioCraft/item.seatBack5/3.png deleted file mode 100644 index 206cffb68f..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack5/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack5/4.png b/front/public/images/large/BiblioCraft/item.seatBack5/4.png deleted file mode 100644 index efe5d75a2b..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack5/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack5/5.png b/front/public/images/large/BiblioCraft/item.seatBack5/5.png deleted file mode 100644 index 654c3b9abc..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack5/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.seatBack5/6.png b/front/public/images/large/BiblioCraft/item.seatBack5/6.png deleted file mode 100644 index 3ec226e113..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.seatBack5/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.tape/0.png b/front/public/images/large/BiblioCraft/item.tape/0.png deleted file mode 100644 index 9bba6a6cea..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.tape/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/item.tapeMeasure/0.png b/front/public/images/large/BiblioCraft/item.tapeMeasure/0.png deleted file mode 100644 index c9ce553359..0000000000 Binary files a/front/public/images/large/BiblioCraft/item.tapeMeasure/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioCraft/tile.BiblioFramedChest/0.png b/front/public/images/large/BiblioCraft/tile.BiblioFramedChest/0.png deleted file mode 100644 index 429c5b32ce..0000000000 Binary files a/front/public/images/large/BiblioCraft/tile.BiblioFramedChest/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/0.png deleted file mode 100644 index 55ef0feddb..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/1.png deleted file mode 100644 index a27cc918d4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/10.png deleted file mode 100644 index 42b1cf280b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/11.png deleted file mode 100644 index 3cda17ce58..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/12.png deleted file mode 100644 index 0b1fa5ad1d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/13.png deleted file mode 100644 index 4313aca578..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/2.png deleted file mode 100644 index a111e658a1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/3.png deleted file mode 100644 index 0c0638ffed..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/4.png deleted file mode 100644 index 71a7e05029..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/5.png deleted file mode 100644 index 89d5dea34a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/6.png deleted file mode 100644 index b2b4619c5f..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/7.png deleted file mode 100644 index 9444fdf710..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/8.png deleted file mode 100644 index 1789073377..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/9.png deleted file mode 100644 index 3628aadf74..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodBookcase/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/0.png deleted file mode 100644 index efaeed016d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/1.png deleted file mode 100644 index 93c48c1446..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/10.png deleted file mode 100644 index ab91c4ef61..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/11.png deleted file mode 100644 index cc220145b8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/12.png deleted file mode 100644 index 5fbf4cd754..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/13.png deleted file mode 100644 index a4c3450ecb..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/2.png deleted file mode 100644 index d691371aad..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/3.png deleted file mode 100644 index 08814909df..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/4.png deleted file mode 100644 index e584f0d68c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/5.png deleted file mode 100644 index 216ec357a6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/6.png deleted file mode 100644 index 1ba8abf91a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/7.png deleted file mode 100644 index 5b6991e79d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/8.png deleted file mode 100644 index efb414de75..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/9.png deleted file mode 100644 index 1e0c7e72d0..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodClock/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/0.png deleted file mode 100644 index 3d7afee030..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/1.png deleted file mode 100644 index 4e9ee9c9b1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/10.png deleted file mode 100644 index 6429c4239b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/11.png deleted file mode 100644 index 2c2a9f165c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/12.png deleted file mode 100644 index 8a4b6bbb92..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/13.png deleted file mode 100644 index 5bdc40d2f0..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/2.png deleted file mode 100644 index d5847b12f8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/3.png deleted file mode 100644 index 0f83e7bf1e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/4.png deleted file mode 100644 index 9857e732d3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/5.png deleted file mode 100644 index 948f02dd05..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/6.png deleted file mode 100644 index fce519e6d3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/7.png deleted file mode 100644 index da34f3ab5b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/8.png deleted file mode 100644 index 83e23faff8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/9.png deleted file mode 100644 index 508d2140fd..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancySign/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/0.png deleted file mode 100644 index af808b6e9e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/1.png deleted file mode 100644 index f128f6d651..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/10.png deleted file mode 100644 index fb27b43a53..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/11.png deleted file mode 100644 index ed7ac7ced8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/12.png deleted file mode 100644 index 672a3cb419..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/13.png deleted file mode 100644 index 196c292003..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/2.png deleted file mode 100644 index b5f61befe0..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/3.png deleted file mode 100644 index 470b3bd124..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/4.png deleted file mode 100644 index c6cdf4c971..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/5.png deleted file mode 100644 index bfa1a29c7d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/6.png deleted file mode 100644 index d87ea00f75..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/7.png deleted file mode 100644 index d6ebaa2e0f..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/8.png deleted file mode 100644 index bfa1b5f849..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/9.png deleted file mode 100644 index b376de30ff..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodFancyWorkbench/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/0.png deleted file mode 100644 index cc203c74c0..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/1.png deleted file mode 100644 index d0f92e1b55..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/10.png deleted file mode 100644 index 15a4215bde..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/11.png deleted file mode 100644 index cc3939191c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/12.png deleted file mode 100644 index 34029228c1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/13.png deleted file mode 100644 index 4d63f259db..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/2.png deleted file mode 100644 index 630eee13f3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/3.png deleted file mode 100644 index 1656f1b35a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/4.png deleted file mode 100644 index d4422e3d08..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/5.png deleted file mode 100644 index e9c8327aad..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/6.png deleted file mode 100644 index e39e780b5b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/7.png deleted file mode 100644 index eb90d4e7a4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/8.png deleted file mode 100644 index 27bf4d673c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/9.png deleted file mode 100644 index 6534ab0062..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodMapFrame/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/0.png deleted file mode 100644 index 5dcfb7123f..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/1.png deleted file mode 100644 index 7ad58340d5..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/10.png deleted file mode 100644 index 64b9a6ef27..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/11.png deleted file mode 100644 index 117d7bdf85..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/12.png deleted file mode 100644 index 87ffd53829..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/13.png deleted file mode 100644 index 2640b9f4dd..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/2.png deleted file mode 100644 index 32cb9624a2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/3.png deleted file mode 100644 index 5d5cef2f9e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/4.png deleted file mode 100644 index 5f901178a8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/5.png deleted file mode 100644 index 23b7134051..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/6.png deleted file mode 100644 index 03e28a25b7..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/7.png deleted file mode 100644 index 32f5dcd1d9..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/8.png deleted file mode 100644 index 9bff552e43..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/9.png deleted file mode 100644 index c62d8607e7..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT0/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/0.png deleted file mode 100644 index 1f5ac9da52..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/1.png deleted file mode 100644 index 4351c7854b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/10.png deleted file mode 100644 index 19a9d6d496..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/11.png deleted file mode 100644 index c8dbf92b17..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/12.png deleted file mode 100644 index 8796a10f50..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/13.png deleted file mode 100644 index a757d2d60b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/2.png deleted file mode 100644 index 74b6de78d6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/3.png deleted file mode 100644 index e818c55d56..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/4.png deleted file mode 100644 index 6b1a53ffcc..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/5.png deleted file mode 100644 index 238198ff58..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/6.png deleted file mode 100644 index 35e5f1837b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/7.png deleted file mode 100644 index 974f57d8a3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/8.png deleted file mode 100644 index 612fee5543..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/9.png deleted file mode 100644 index 22c90b46a0..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT1/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/0.png deleted file mode 100644 index 07af9038f5..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/1.png deleted file mode 100644 index 68fa708899..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/10.png deleted file mode 100644 index 170f340589..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/11.png deleted file mode 100644 index 86d0a33f2e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/12.png deleted file mode 100644 index 610ded5a6d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/13.png deleted file mode 100644 index ec6b2b50f9..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/2.png deleted file mode 100644 index b94b73e743..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/3.png deleted file mode 100644 index a7b7f2a12a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/4.png deleted file mode 100644 index 90735e6ce4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/5.png deleted file mode 100644 index 19d25d626e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/6.png deleted file mode 100644 index 1851d26b07..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/7.png deleted file mode 100644 index c47bfaf2ea..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/8.png deleted file mode 100644 index b3354d9d9d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/9.png deleted file mode 100644 index 9a43e7c1f9..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT2/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/0.png deleted file mode 100644 index b508452193..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/1.png deleted file mode 100644 index ccf6a99964..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/10.png deleted file mode 100644 index 6d9647f295..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/11.png deleted file mode 100644 index f928b0a43c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/12.png deleted file mode 100644 index 696abca6d4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/13.png deleted file mode 100644 index 1014a203d7..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/2.png deleted file mode 100644 index 9c2db4989a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/3.png deleted file mode 100644 index 99d53f4eaa..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/4.png deleted file mode 100644 index 9d38381f0a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/5.png deleted file mode 100644 index c6a64133a6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/6.png deleted file mode 100644 index 776f5b42c1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/7.png deleted file mode 100644 index f6f6173c78..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/8.png deleted file mode 100644 index a58598ad05..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/9.png deleted file mode 100644 index 4fce405eda..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT3/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/0.png deleted file mode 100644 index a4202ac76e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/1.png deleted file mode 100644 index 3adf08677b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/10.png deleted file mode 100644 index f47ebfda32..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/11.png deleted file mode 100644 index d8807c2192..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/12.png deleted file mode 100644 index f6a8dfcffe..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/13.png deleted file mode 100644 index 9dcbaa137b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/2.png deleted file mode 100644 index 85dba65531..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/3.png deleted file mode 100644 index c959e2bed7..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/4.png deleted file mode 100644 index 23c2b82f1a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/5.png deleted file mode 100644 index 6142148ed2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/6.png deleted file mode 100644 index b7cb6f2218..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/7.png deleted file mode 100644 index 38a961fda3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/8.png deleted file mode 100644 index e72b40ba7e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/9.png deleted file mode 100644 index 745cf9fb56..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodPaintingT4/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/0.png deleted file mode 100644 index 1fea1cba98..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/1.png deleted file mode 100644 index dbba41891a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/10.png deleted file mode 100644 index f64e9908ab..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/11.png deleted file mode 100644 index 333c428700..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/12.png deleted file mode 100644 index d3974d4889..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/13.png deleted file mode 100644 index 0070a593b2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/2.png deleted file mode 100644 index e1aae6caaa..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/3.png deleted file mode 100644 index 3cd60bb817..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/4.png deleted file mode 100644 index 5823ae6343..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/5.png deleted file mode 100644 index 84a0da4fd1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/6.png deleted file mode 100644 index c67c68c271..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/7.png deleted file mode 100644 index 7b01f7e1cb..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/8.png deleted file mode 100644 index eb065e892c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/9.png deleted file mode 100644 index 64cd01d990..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodSeat/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/0.png deleted file mode 100644 index 235b164cdb..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/1.png deleted file mode 100644 index 2b1967bebc..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/10.png deleted file mode 100644 index 576940c70e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/11.png deleted file mode 100644 index 7a14ee119d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/12.png deleted file mode 100644 index c97698c25e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/13.png deleted file mode 100644 index f26018ecf4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/2.png deleted file mode 100644 index dcf7aaf4a2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/3.png deleted file mode 100644 index df30097482..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/4.png deleted file mode 100644 index 01d36bf855..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/5.png deleted file mode 100644 index 0aa58d2bb5..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/6.png deleted file mode 100644 index 0f0700fe5b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/7.png deleted file mode 100644 index 5d9cb45398..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/8.png deleted file mode 100644 index 777ced7621..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/9.png deleted file mode 100644 index d4ecf70740..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodcase/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/0.png deleted file mode 100644 index 97ea69d85d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/1.png deleted file mode 100644 index 92745f526d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/10.png deleted file mode 100644 index 2f50be19d7..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/11.png deleted file mode 100644 index 4c53c03896..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/12.png deleted file mode 100644 index ee630dbb12..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/13.png deleted file mode 100644 index a749e64d92..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/2.png deleted file mode 100644 index 6909109974..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/3.png deleted file mode 100644 index 1359f43d98..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/4.png deleted file mode 100644 index dc03b9cbba..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/5.png deleted file mode 100644 index 200d224f23..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/6.png deleted file mode 100644 index 2fb1e666f3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/7.png deleted file mode 100644 index 4900d260f6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/8.png deleted file mode 100644 index 47ab328143..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/9.png deleted file mode 100644 index b57bec5439..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWooddesk/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/0.png deleted file mode 100644 index a9fbcc676a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/1.png deleted file mode 100644 index 6f752cf971..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/10.png deleted file mode 100644 index 4e623b8301..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/11.png deleted file mode 100644 index 573f6cfe71..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/12.png deleted file mode 100644 index 09561d2db8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/13.png deleted file mode 100644 index 013d81c38d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/2.png deleted file mode 100644 index 70a55412e6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/3.png deleted file mode 100644 index 1ff0fa19f3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/4.png deleted file mode 100644 index 622b2337ca..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/5.png deleted file mode 100644 index 7c7148b8e8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/6.png deleted file mode 100644 index 7af1667d4e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/7.png deleted file mode 100644 index f700cd7621..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/8.png deleted file mode 100644 index d98ca558d5..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/9.png deleted file mode 100644 index 6f5f5c9595..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodlabel/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/0.png deleted file mode 100644 index 7005fee169..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/1.png deleted file mode 100644 index 8badf2cc4c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/10.png deleted file mode 100644 index 4102e2a611..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/11.png deleted file mode 100644 index cd0e590d3d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/12.png deleted file mode 100644 index 724515efce..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/13.png deleted file mode 100644 index 25f33599e5..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/2.png deleted file mode 100644 index b3b64d7b39..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/3.png deleted file mode 100644 index 0cced397d6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/4.png deleted file mode 100644 index 06128c1c07..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/5.png deleted file mode 100644 index 5e730f336c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/6.png deleted file mode 100644 index 57b4191433..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/7.png deleted file mode 100644 index ea97aef7c8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/8.png deleted file mode 100644 index 4c5c37bdaf..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/9.png deleted file mode 100644 index 77281523d9..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodpotshelf/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/0.png deleted file mode 100644 index 7e49476030..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/1.png deleted file mode 100644 index 65b597ccf5..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/10.png deleted file mode 100644 index 45e4b7dfa2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/11.png deleted file mode 100644 index 5cce5cf9b2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/12.png deleted file mode 100644 index 3fd4c516ef..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/13.png deleted file mode 100644 index 06e697eb62..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/2.png deleted file mode 100644 index f3e73bfead..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/3.png deleted file mode 100644 index 6899ea90d3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/4.png deleted file mode 100644 index 6bfd46ef53..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/5.png deleted file mode 100644 index a4ec442cf5..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/6.png deleted file mode 100644 index e1c1ed0213..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/7.png deleted file mode 100644 index f38a6efb17..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/8.png deleted file mode 100644 index b35484c6d4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/9.png deleted file mode 100644 index 6364f0f284..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodrack/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/0.png deleted file mode 100644 index a4804f5a30..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/1.png deleted file mode 100644 index 55b9e31132..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/10.png deleted file mode 100644 index eef743faef..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/11.png deleted file mode 100644 index dc55128d74..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/12.png deleted file mode 100644 index 045690d1c8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/13.png deleted file mode 100644 index 5ca8211816..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/2.png deleted file mode 100644 index 7a5928fb19..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/3.png deleted file mode 100644 index 3f24468906..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/4.png deleted file mode 100644 index 87874c1f5d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/5.png deleted file mode 100644 index 2ad8fd9491..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/6.png deleted file mode 100644 index c566ff5f9a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/7.png deleted file mode 100644 index 33d9b0649e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/8.png deleted file mode 100644 index 966e931580..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/9.png deleted file mode 100644 index 00ac47499e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodshelf/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/0.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/0.png deleted file mode 100644 index 38f4417dcb..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/1.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/1.png deleted file mode 100644 index c67f89e547..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/10.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/10.png deleted file mode 100644 index 88e036943a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/11.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/11.png deleted file mode 100644 index d55e354cdd..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/12.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/12.png deleted file mode 100644 index f7d41f03ec..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/13.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/13.png deleted file mode 100644 index 0fd533d597..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/2.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/2.png deleted file mode 100644 index a510a268ec..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/3.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/3.png deleted file mode 100644 index 35d33fb432..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/4.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/4.png deleted file mode 100644 index 3b529a7527..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/5.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/5.png deleted file mode 100644 index 75a2c43bef..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/6.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/6.png deleted file mode 100644 index 53c5a331c6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/7.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/7.png deleted file mode 100644 index df9309adcc..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/8.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/8.png deleted file mode 100644 index 9e9c8acb6d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/9.png b/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/9.png deleted file mode 100644 index fb66dc14f3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/BiblioWoodtable/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/0.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/0.png deleted file mode 100644 index 4246dd8716..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/1.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/1.png deleted file mode 100644 index f2ba1003ef..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/10.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/10.png deleted file mode 100644 index 60e4b92f59..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/11.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/11.png deleted file mode 100644 index 48410b7825..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/12.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/12.png deleted file mode 100644 index 6723af712c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/13.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/13.png deleted file mode 100644 index aa3b7881ec..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/2.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/2.png deleted file mode 100644 index 5340598a03..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/3.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/3.png deleted file mode 100644 index fa29862e57..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/4.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/4.png deleted file mode 100644 index 2e975d134c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/5.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/5.png deleted file mode 100644 index 4dfe39515a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/6.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/6.png deleted file mode 100644 index aae302510e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/7.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/7.png deleted file mode 100644 index 75737f193b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/8.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/8.png deleted file mode 100644 index 9c417b805e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack1/9.png b/front/public/images/large/BiblioWoodsBoP/seatBack1/9.png deleted file mode 100644 index dcce027b68..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack1/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/0.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/0.png deleted file mode 100644 index 5cac7dcc43..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/1.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/1.png deleted file mode 100644 index 0dfdd0fbdc..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/10.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/10.png deleted file mode 100644 index 067de0a76f..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/11.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/11.png deleted file mode 100644 index 0c22f4e81c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/12.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/12.png deleted file mode 100644 index cd74331ec2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/13.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/13.png deleted file mode 100644 index 65b69920b1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/2.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/2.png deleted file mode 100644 index 19f0157110..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/3.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/3.png deleted file mode 100644 index b2e743c918..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/4.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/4.png deleted file mode 100644 index 1b47bd72b1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/5.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/5.png deleted file mode 100644 index f9891c9f7d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/6.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/6.png deleted file mode 100644 index 4b0e3366d4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/7.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/7.png deleted file mode 100644 index 921744cb51..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/8.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/8.png deleted file mode 100644 index a1a49d72cf..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack2/9.png b/front/public/images/large/BiblioWoodsBoP/seatBack2/9.png deleted file mode 100644 index e30f3ea05f..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack2/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/0.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/0.png deleted file mode 100644 index b1554ede04..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/1.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/1.png deleted file mode 100644 index a6b9668db3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/10.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/10.png deleted file mode 100644 index 82cfbabb35..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/11.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/11.png deleted file mode 100644 index e842e27b4d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/12.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/12.png deleted file mode 100644 index 8f58a2a62f..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/13.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/13.png deleted file mode 100644 index 390f81e356..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/2.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/2.png deleted file mode 100644 index 74c00e615e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/3.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/3.png deleted file mode 100644 index fffe5423ba..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/4.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/4.png deleted file mode 100644 index 0fedb7a0ff..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/5.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/5.png deleted file mode 100644 index 5024da0e8d..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/6.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/6.png deleted file mode 100644 index 54a96edd29..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/7.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/7.png deleted file mode 100644 index 510c795a9a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/8.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/8.png deleted file mode 100644 index 5c903b365e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack3/9.png b/front/public/images/large/BiblioWoodsBoP/seatBack3/9.png deleted file mode 100644 index 69054e10f1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack3/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/0.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/0.png deleted file mode 100644 index ce031bb937..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/1.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/1.png deleted file mode 100644 index 7b38252039..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/10.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/10.png deleted file mode 100644 index 6686a1826b..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/11.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/11.png deleted file mode 100644 index 280959de32..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/12.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/12.png deleted file mode 100644 index b3a416bdf4..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/13.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/13.png deleted file mode 100644 index bb501e97f6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/2.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/2.png deleted file mode 100644 index 768c338c3e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/3.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/3.png deleted file mode 100644 index 26ef47911c..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/4.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/4.png deleted file mode 100644 index 6a5410f7e3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/5.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/5.png deleted file mode 100644 index a475269f67..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/6.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/6.png deleted file mode 100644 index f3f17fd69a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/7.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/7.png deleted file mode 100644 index 55a48312b7..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/8.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/8.png deleted file mode 100644 index f79815ced1..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack4/9.png b/front/public/images/large/BiblioWoodsBoP/seatBack4/9.png deleted file mode 100644 index 471cdc0145..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack4/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/0.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/0.png deleted file mode 100644 index 383c69e147..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/1.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/1.png deleted file mode 100644 index aabb367044..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/10.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/10.png deleted file mode 100644 index 4514e8dd9a..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/11.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/11.png deleted file mode 100644 index 879403409e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/12.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/12.png deleted file mode 100644 index 15baa24e5e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/13.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/13.png deleted file mode 100644 index e31438883f..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/2.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/2.png deleted file mode 100644 index f6e89e32a3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/3.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/3.png deleted file mode 100644 index 00f59c0498..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/4.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/4.png deleted file mode 100644 index 2829ea82b6..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/5.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/5.png deleted file mode 100644 index 4d058b4ad3..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/6.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/6.png deleted file mode 100644 index da9d3ddfc2..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/7.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/7.png deleted file mode 100644 index 14008beb53..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/8.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/8.png deleted file mode 100644 index 3f28a6c2c8..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsBoP/seatBack5/9.png b/front/public/images/large/BiblioWoodsBoP/seatBack5/9.png deleted file mode 100644 index 0ed3d1eb8e..0000000000 Binary files a/front/public/images/large/BiblioWoodsBoP/seatBack5/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/0.png deleted file mode 100644 index 1d01786f1d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/1.png deleted file mode 100644 index eb79e2e026..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/10.png deleted file mode 100644 index b24be2089e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/11.png deleted file mode 100644 index 40f72aa191..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/12.png deleted file mode 100644 index d5c1112d9a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/13.png deleted file mode 100644 index e096dda50a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/14.png deleted file mode 100644 index afd89c0cc7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/15.png deleted file mode 100644 index 5a4c80c7e3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/2.png deleted file mode 100644 index b0c0f9781a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/3.png deleted file mode 100644 index a7176ea07d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/4.png deleted file mode 100644 index a621e9fb6b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/5.png deleted file mode 100644 index c70fe0df1c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/6.png deleted file mode 100644 index 2272756981..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/7.png deleted file mode 100644 index d3700e3106..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/8.png deleted file mode 100644 index 320fc6d118..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/9.png deleted file mode 100644 index 9448caa06c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/0.png deleted file mode 100644 index 1d05d0ee7e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/1.png deleted file mode 100644 index ff6fa692d5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/2.png deleted file mode 100644 index df1f4131fb..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/3.png deleted file mode 100644 index 0197e6e989..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/4.png deleted file mode 100644 index 4e75e125e7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/5.png deleted file mode 100644 index 0177a3bf2a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/6.png deleted file mode 100644 index 7ad828c129..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/7.png deleted file mode 100644 index 83e667cb47..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodClock2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/0.png deleted file mode 100644 index 258e952d87..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/1.png deleted file mode 100644 index 5706e5be44..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/10.png deleted file mode 100644 index 4c49c8d554..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/11.png deleted file mode 100644 index 1baf3ea343..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/12.png deleted file mode 100644 index 9d4bb7410b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/13.png deleted file mode 100644 index 9fa59cef27..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/14.png deleted file mode 100644 index d31dc35313..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/15.png deleted file mode 100644 index 71cfaea65a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/2.png deleted file mode 100644 index 2e87b2846c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/3.png deleted file mode 100644 index 6f5f4f6271..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/4.png deleted file mode 100644 index c5e78b3cbb..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/5.png deleted file mode 100644 index 887f1c6f2e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/6.png deleted file mode 100644 index f3cc67713d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/7.png deleted file mode 100644 index 5bfbf763b7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/8.png deleted file mode 100644 index b914f855b8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/9.png deleted file mode 100644 index a4853403a3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/0.png deleted file mode 100644 index 6994524067..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/1.png deleted file mode 100644 index 6601c1def2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/2.png deleted file mode 100644 index 9f18dd2ced..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/3.png deleted file mode 100644 index 0743a81f3a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/4.png deleted file mode 100644 index f89d18cec3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/5.png deleted file mode 100644 index c99a74b6be..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/6.png deleted file mode 100644 index ae0123dc80..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/7.png deleted file mode 100644 index 7d4bb745d7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancySign2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/0.png deleted file mode 100644 index 27491d7283..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/1.png deleted file mode 100644 index 5cb2a40601..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/10.png deleted file mode 100644 index ce2bca16b7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/11.png deleted file mode 100644 index 31f6296c7c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/12.png deleted file mode 100644 index fc8431c6ce..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/13.png deleted file mode 100644 index c5030e1198..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/14.png deleted file mode 100644 index 848902157f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/15.png deleted file mode 100644 index fe47cd226f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/2.png deleted file mode 100644 index 4f3aa8ae4c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/3.png deleted file mode 100644 index 09a81b8b22..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/4.png deleted file mode 100644 index cfb63a41c1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/5.png deleted file mode 100644 index d7f28a5b3e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/6.png deleted file mode 100644 index 8b465b6266..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/7.png deleted file mode 100644 index cf64acb452..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/8.png deleted file mode 100644 index 5c6e5c834e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/9.png deleted file mode 100644 index 1049ab0898..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/0.png deleted file mode 100644 index cc3e10145a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/1.png deleted file mode 100644 index e4dbea1fba..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/2.png deleted file mode 100644 index 433bb942c7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/3.png deleted file mode 100644 index ee5a3f8a43..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/4.png deleted file mode 100644 index 6aad03e953..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/5.png deleted file mode 100644 index a192b67987..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/6.png deleted file mode 100644 index 9be940de58..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/7.png deleted file mode 100644 index f1ea991527..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/0.png deleted file mode 100644 index bf16643459..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/1.png deleted file mode 100644 index 542632f250..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/10.png deleted file mode 100644 index 41209e6ceb..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/11.png deleted file mode 100644 index 3f24dca41b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/12.png deleted file mode 100644 index eadd6469fe..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/13.png deleted file mode 100644 index 90822034d3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/14.png deleted file mode 100644 index 1322c8db6c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/15.png deleted file mode 100644 index ec2034a77c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/2.png deleted file mode 100644 index c7e6dee311..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/3.png deleted file mode 100644 index 9e28257074..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/4.png deleted file mode 100644 index acca8e1d0a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/5.png deleted file mode 100644 index 73f5d85529..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/6.png deleted file mode 100644 index 341d6197e9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/7.png deleted file mode 100644 index 929e7a8da3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/8.png deleted file mode 100644 index ce812a23e3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/9.png deleted file mode 100644 index c8a8899ce8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/0.png deleted file mode 100644 index 346f2e1f05..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/1.png deleted file mode 100644 index 6d8103ce5e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/2.png deleted file mode 100644 index 88cc69e22b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/3.png deleted file mode 100644 index c340373bbf..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/4.png deleted file mode 100644 index dd7fad41d2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/5.png deleted file mode 100644 index 6207b05b31..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/6.png deleted file mode 100644 index a1508a3c36..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/7.png deleted file mode 100644 index 88000198e3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstBookcase2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/0.png deleted file mode 100644 index 53dbf4e41a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/1.png deleted file mode 100644 index 9ff8d08a11..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/10.png deleted file mode 100644 index 35b956e38c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/11.png deleted file mode 100644 index 58b77ed51e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/12.png deleted file mode 100644 index c57f9ddae9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/13.png deleted file mode 100644 index a8b9940d41..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/14.png deleted file mode 100644 index 87225ebc1a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/15.png deleted file mode 100644 index bebe8416a7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/2.png deleted file mode 100644 index 7640996e09..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/3.png deleted file mode 100644 index 3ed0ee93ee..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/4.png deleted file mode 100644 index 90950f2b49..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/5.png deleted file mode 100644 index 7e72221a82..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/6.png deleted file mode 100644 index a1b08709a1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/7.png deleted file mode 100644 index df4082ce41..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/8.png deleted file mode 100644 index 1eb7948ded..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/9.png deleted file mode 100644 index 2200a0ac6d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase0/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/0.png deleted file mode 100644 index 99ae6088e0..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/1.png deleted file mode 100644 index f31732c0ba..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/2.png deleted file mode 100644 index 2d118af4dc..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/3.png deleted file mode 100644 index c2b0fc14d4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/4.png deleted file mode 100644 index 5c2b457fae..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/5.png deleted file mode 100644 index c889dd15d2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/6.png deleted file mode 100644 index f4abbdce41..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/7.png deleted file mode 100644 index d9fd894262..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstcase1/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/0.png deleted file mode 100644 index e76f2b2318..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/1.png deleted file mode 100644 index 4acbb90dcd..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/10.png deleted file mode 100644 index 881c4848e9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/11.png deleted file mode 100644 index d0f15f526e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/12.png deleted file mode 100644 index 974fca0b60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/13.png deleted file mode 100644 index e99bf45167..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/14.png deleted file mode 100644 index a0524169f5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/15.png deleted file mode 100644 index 05c823338f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/2.png deleted file mode 100644 index 9da51cbf6a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/3.png deleted file mode 100644 index afa838d6ff..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/4.png deleted file mode 100644 index 5b4d85e88e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/5.png deleted file mode 100644 index ce78e332a0..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/6.png deleted file mode 100644 index 29a1f0de70..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/7.png deleted file mode 100644 index 260c04743c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/8.png deleted file mode 100644 index b7884e2c78..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/9.png deleted file mode 100644 index 7082ca3a52..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/0.png deleted file mode 100644 index ebb4ca9a19..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/1.png deleted file mode 100644 index a74c9df90e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/2.png deleted file mode 100644 index ca6ece377b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/3.png deleted file mode 100644 index dd78c65ba9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/4.png deleted file mode 100644 index 39e7516fb4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/5.png deleted file mode 100644 index 56547f6b64..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/6.png deleted file mode 100644 index 3cdccf334a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/7.png deleted file mode 100644 index 475604fa9a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstdesk2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/0.png deleted file mode 100644 index 89b01c0f47..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/1.png deleted file mode 100644 index 9ad1d9fa37..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/10.png deleted file mode 100644 index 089e16094b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/11.png deleted file mode 100644 index 8cae0927d1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/12.png deleted file mode 100644 index 42937af871..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/13.png deleted file mode 100644 index 91833206ef..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/14.png deleted file mode 100644 index 87c2b7ff98..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/15.png deleted file mode 100644 index aab8fd4c45..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/2.png deleted file mode 100644 index 2d201e88c7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/3.png deleted file mode 100644 index 53333ffc01..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/4.png deleted file mode 100644 index 4c5943e565..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/5.png deleted file mode 100644 index 12317a32af..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/6.png deleted file mode 100644 index 06d7b8074d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/7.png deleted file mode 100644 index bdbb09396a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/8.png deleted file mode 100644 index f829b989f2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/9.png deleted file mode 100644 index 7c879b48b3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/0.png deleted file mode 100644 index c78e39471d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/1.png deleted file mode 100644 index 5c0a652a44..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/2.png deleted file mode 100644 index 7c5cce5864..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/3.png deleted file mode 100644 index 258cf11af4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/4.png deleted file mode 100644 index c038c26e4e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/5.png deleted file mode 100644 index a78670af57..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/6.png deleted file mode 100644 index 0f95f3e5f8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/7.png deleted file mode 100644 index fbfe147013..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstlabel2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/0.png deleted file mode 100644 index cf044c999e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/1.png deleted file mode 100644 index 6ee9ce0c41..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/10.png deleted file mode 100644 index 24540088f9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/11.png deleted file mode 100644 index d909a963fe..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/12.png deleted file mode 100644 index 2d8e7ff70a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/13.png deleted file mode 100644 index cf2cf7189b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/14.png deleted file mode 100644 index e76bad4787..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/15.png deleted file mode 100644 index cb1295c778..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/2.png deleted file mode 100644 index 0582aa42d4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/3.png deleted file mode 100644 index a217701bb4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/4.png deleted file mode 100644 index 1fab232aeb..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/5.png deleted file mode 100644 index 6b6453940d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/6.png deleted file mode 100644 index bd4d1a5196..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/7.png deleted file mode 100644 index 81b678faa3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/8.png deleted file mode 100644 index 9bcea347b1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/9.png deleted file mode 100644 index 320760e43e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/0.png deleted file mode 100644 index a14da97a24..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/1.png deleted file mode 100644 index 79a4723ec0..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/2.png deleted file mode 100644 index 0e33db484f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/3.png deleted file mode 100644 index cf46d4a130..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/4.png deleted file mode 100644 index cb4da95cab..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/5.png deleted file mode 100644 index ce0697e24f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/6.png deleted file mode 100644 index 35e72253f2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/7.png deleted file mode 100644 index 6e275dc92a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstpotshelf2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/0.png deleted file mode 100644 index 4a514c0c60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/1.png deleted file mode 100644 index 7c5e7bc6dc..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/10.png deleted file mode 100644 index ef7af176d7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/11.png deleted file mode 100644 index 4b2262f449..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/12.png deleted file mode 100644 index 29c413afb2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/13.png deleted file mode 100644 index fdc8c5e944..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/14.png deleted file mode 100644 index 7203ba915a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/15.png deleted file mode 100644 index f9658d4b8f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/2.png deleted file mode 100644 index b24064a4ca..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/3.png deleted file mode 100644 index c5f417daa1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/4.png deleted file mode 100644 index 9f6f9b542a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/5.png deleted file mode 100644 index 130708b8a9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/6.png deleted file mode 100644 index b6ed50ea6a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/7.png deleted file mode 100644 index 40257b62b8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/8.png deleted file mode 100644 index 340652383f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/9.png deleted file mode 100644 index 32b3be5274..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/0.png deleted file mode 100644 index 85e4c31fbf..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/1.png deleted file mode 100644 index 6ec294f607..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/2.png deleted file mode 100644 index 868a1741e8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/3.png deleted file mode 100644 index 1c49a3bb26..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/4.png deleted file mode 100644 index b9034996f8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/5.png deleted file mode 100644 index 2408143253..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/6.png deleted file mode 100644 index 92365573bf..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/7.png deleted file mode 100644 index f48202162d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstrack2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/0.png deleted file mode 100644 index 4e766af241..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/1.png deleted file mode 100644 index 3ddd97b142..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/10.png deleted file mode 100644 index bd8acd8a51..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/11.png deleted file mode 100644 index 6853e89cdd..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/12.png deleted file mode 100644 index b881a932f3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/13.png deleted file mode 100644 index d57b1f238b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/14.png deleted file mode 100644 index a19aa95f18..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/15.png deleted file mode 100644 index 2149d5cc90..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/2.png deleted file mode 100644 index 2950ccd45a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/3.png deleted file mode 100644 index 437d6146f9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/4.png deleted file mode 100644 index 3084b8ac41..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/5.png deleted file mode 100644 index 0dd214e52a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/6.png deleted file mode 100644 index bd363d3e28..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/7.png deleted file mode 100644 index 07ab325860..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/8.png deleted file mode 100644 index ba00ffab73..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/9.png deleted file mode 100644 index d1f1874cc5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/0.png deleted file mode 100644 index 02ab158602..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/1.png deleted file mode 100644 index f43cecf791..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/2.png deleted file mode 100644 index 39b984ed20..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/3.png deleted file mode 100644 index 8460728629..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/4.png deleted file mode 100644 index 9b14e547e4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/5.png deleted file mode 100644 index 6e67f2fac8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/6.png deleted file mode 100644 index 8d6cc8dff1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/7.png deleted file mode 100644 index 55421c2465..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFstshelf2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/0.png deleted file mode 100644 index 6614fc1855..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/1.png deleted file mode 100644 index e31b6bcb9d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/10.png deleted file mode 100644 index ac62d43c60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/11.png deleted file mode 100644 index 0dbde5b2d3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/12.png deleted file mode 100644 index 458d57b532..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/13.png deleted file mode 100644 index 101fec3a30..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/14.png deleted file mode 100644 index c86515b2ef..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/15.png deleted file mode 100644 index edb9a2ba93..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/2.png deleted file mode 100644 index 312d02c239..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/3.png deleted file mode 100644 index 5b7acf39c3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/4.png deleted file mode 100644 index a43b5fc9ba..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/5.png deleted file mode 100644 index cd3dd89493..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/6.png deleted file mode 100644 index 7fc39b739f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/7.png deleted file mode 100644 index fa137858f8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/8.png deleted file mode 100644 index 841407594b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/9.png deleted file mode 100644 index 11a69b7491..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/0.png deleted file mode 100644 index 40c105a2fe..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/1.png deleted file mode 100644 index 46e3c37639..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/2.png deleted file mode 100644 index 9a0dfb949d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/3.png deleted file mode 100644 index a7e95a2658..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/4.png deleted file mode 100644 index 5c18396946..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/5.png deleted file mode 100644 index 978d3aeee8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/6.png deleted file mode 100644 index e3fbe86493..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/7.png deleted file mode 100644 index 186ad90a95..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodFsttable2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/0.png deleted file mode 100644 index 7d15e1c0b0..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/1.png deleted file mode 100644 index ec4205e35f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/10.png deleted file mode 100644 index 9d5afc7bdd..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/11.png deleted file mode 100644 index d8a871d156..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/12.png deleted file mode 100644 index 14bbefc313..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/13.png deleted file mode 100644 index a1c0fa764f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/14.png deleted file mode 100644 index 96adbec8b4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/15.png deleted file mode 100644 index 85a775918f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/2.png deleted file mode 100644 index e5a22b1e91..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/3.png deleted file mode 100644 index 30e3843b24..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/4.png deleted file mode 100644 index bbeaeb2b82..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/5.png deleted file mode 100644 index e9b16a08f9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/6.png deleted file mode 100644 index dfe1e6576e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/7.png deleted file mode 100644 index 6e67c9226c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/8.png deleted file mode 100644 index ca0001976b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/9.png deleted file mode 100644 index fbff7c21f8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/0.png deleted file mode 100644 index fa1ba550ef..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/1.png deleted file mode 100644 index 198eea0160..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/2.png deleted file mode 100644 index 04e3c3db98..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/3.png deleted file mode 100644 index ec8272c1a5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/4.png deleted file mode 100644 index 1d0635cd99..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/5.png deleted file mode 100644 index a093d53ae1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/6.png deleted file mode 100644 index c8f4621c85..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/7.png deleted file mode 100644 index 079f29a74b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodMapFrame2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/0.png deleted file mode 100644 index a89d4a78df..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/1.png deleted file mode 100644 index f070aae711..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/10.png deleted file mode 100644 index c89faa9809..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/11.png deleted file mode 100644 index d5233fa281..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/12.png deleted file mode 100644 index c3e5d65102..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/13.png deleted file mode 100644 index 06a0eff461..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/14.png deleted file mode 100644 index 6a62d0ae70..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/15.png deleted file mode 100644 index b55c071911..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/2.png deleted file mode 100644 index eefbb5168e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/3.png deleted file mode 100644 index db4c9e16f5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/4.png deleted file mode 100644 index 1d4022dc0c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/5.png deleted file mode 100644 index 8e95d819da..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/6.png deleted file mode 100644 index ea8359d22f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/7.png deleted file mode 100644 index 5f6c5d2c37..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/8.png deleted file mode 100644 index 936e2a7ab1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/9.png deleted file mode 100644 index 14e7525bc7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/0.png deleted file mode 100644 index a89d4a78df..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/1.png deleted file mode 100644 index f070aae711..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/2.png deleted file mode 100644 index eefbb5168e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/3.png deleted file mode 100644 index db4c9e16f5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/4.png deleted file mode 100644 index 1d4022dc0c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/5.png deleted file mode 100644 index 8e95d819da..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/6.png deleted file mode 100644 index ea8359d22f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/7.png deleted file mode 100644 index 5f6c5d2c37..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT0b/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/0.png deleted file mode 100644 index e9e29c9aa7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/1.png deleted file mode 100644 index 3630422258..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/10.png deleted file mode 100644 index a4335261d1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/11.png deleted file mode 100644 index 8ddaca56a3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/12.png deleted file mode 100644 index 12048f0c7c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/13.png deleted file mode 100644 index 42db7d3cad..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/14.png deleted file mode 100644 index 5ec30e2876..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/15.png deleted file mode 100644 index d0f3694277..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/2.png deleted file mode 100644 index ae0e89562b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/3.png deleted file mode 100644 index 762f7a9a8e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/4.png deleted file mode 100644 index f064093621..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/5.png deleted file mode 100644 index 2093ed370d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/6.png deleted file mode 100644 index 92fbc91f7b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/7.png deleted file mode 100644 index e55127fd8d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/8.png deleted file mode 100644 index 4263ef95d2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/9.png deleted file mode 100644 index ec130fea2c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/0.png deleted file mode 100644 index e9e29c9aa7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/1.png deleted file mode 100644 index 3630422258..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/2.png deleted file mode 100644 index ae0e89562b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/3.png deleted file mode 100644 index 762f7a9a8e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/4.png deleted file mode 100644 index f064093621..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/5.png deleted file mode 100644 index 2093ed370d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/6.png deleted file mode 100644 index 92fbc91f7b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/7.png deleted file mode 100644 index e55127fd8d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT1b/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/0.png deleted file mode 100644 index b8c3d55721..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/1.png deleted file mode 100644 index e1ef253e56..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/10.png deleted file mode 100644 index d354c4f282..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/11.png deleted file mode 100644 index 7744dddc52..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/12.png deleted file mode 100644 index 583ad7685e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/13.png deleted file mode 100644 index c5ff948ac4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/14.png deleted file mode 100644 index d5a7248f88..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/15.png deleted file mode 100644 index e1fca8b20a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/2.png deleted file mode 100644 index a2ba6dbb1a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/3.png deleted file mode 100644 index 3489b3f757..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/4.png deleted file mode 100644 index 4373467946..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/5.png deleted file mode 100644 index 5815ac97ee..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/6.png deleted file mode 100644 index 37c150a50a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/7.png deleted file mode 100644 index 0808e1b3e6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/8.png deleted file mode 100644 index 884aab6091..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/9.png deleted file mode 100644 index f6498d7326..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/0.png deleted file mode 100644 index b8c3d55721..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/1.png deleted file mode 100644 index e1ef253e56..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/2.png deleted file mode 100644 index a2ba6dbb1a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/3.png deleted file mode 100644 index 3489b3f757..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/4.png deleted file mode 100644 index 4373467946..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/5.png deleted file mode 100644 index 5815ac97ee..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/6.png deleted file mode 100644 index 37c150a50a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/7.png deleted file mode 100644 index 0808e1b3e6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT2b/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/0.png deleted file mode 100644 index c9d7b21685..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/1.png deleted file mode 100644 index 0d63ea8b60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/10.png deleted file mode 100644 index 79d247d2d0..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/11.png deleted file mode 100644 index 7c8025b306..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/12.png deleted file mode 100644 index 7b4a1a2756..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/13.png deleted file mode 100644 index 4095378426..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/14.png deleted file mode 100644 index aa19fe0f32..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/15.png deleted file mode 100644 index 2a6d5557ac..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/2.png deleted file mode 100644 index c8f13c6866..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/3.png deleted file mode 100644 index 1d043c29e1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/4.png deleted file mode 100644 index 8927afc5df..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/5.png deleted file mode 100644 index d07f2fc3bf..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/6.png deleted file mode 100644 index 56bea44e91..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/7.png deleted file mode 100644 index bdfe701556..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/8.png deleted file mode 100644 index 93f8093d41..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/9.png deleted file mode 100644 index ddf687acb4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/0.png deleted file mode 100644 index c9d7b21685..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/1.png deleted file mode 100644 index 0d63ea8b60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/2.png deleted file mode 100644 index c8f13c6866..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/3.png deleted file mode 100644 index 1d043c29e1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/4.png deleted file mode 100644 index 8927afc5df..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/5.png deleted file mode 100644 index d07f2fc3bf..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/6.png deleted file mode 100644 index 56bea44e91..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/7.png deleted file mode 100644 index bdfe701556..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT3b/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/0.png deleted file mode 100644 index 36b311eb60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/1.png deleted file mode 100644 index d39ff1643b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/10.png deleted file mode 100644 index c4e86aa2e8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/11.png deleted file mode 100644 index 6344a2b52a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/12.png deleted file mode 100644 index 8d3ffec39a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/13.png deleted file mode 100644 index c9515dfe40..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/14.png deleted file mode 100644 index a60d2aba9a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/15.png deleted file mode 100644 index 7e5555dff7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/2.png deleted file mode 100644 index ab27374096..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/3.png deleted file mode 100644 index f67d49f10a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/4.png deleted file mode 100644 index b8c33053f4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/5.png deleted file mode 100644 index 2e0a22497b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/6.png deleted file mode 100644 index 503adbf61e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/7.png deleted file mode 100644 index 7b9b1209f8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/8.png deleted file mode 100644 index 027712e3f4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/9.png deleted file mode 100644 index 0696d9cafd..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/0.png deleted file mode 100644 index 36b311eb60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/1.png deleted file mode 100644 index d39ff1643b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/2.png deleted file mode 100644 index ab27374096..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/3.png deleted file mode 100644 index f67d49f10a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/4.png deleted file mode 100644 index b8c33053f4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/5.png deleted file mode 100644 index 2e0a22497b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/6.png deleted file mode 100644 index 503adbf61e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/7.png deleted file mode 100644 index 7b9b1209f8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodPaintingT4b/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/0.png deleted file mode 100644 index 8632eeb70c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/1.png deleted file mode 100644 index 93cd901e27..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/10.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/10.png deleted file mode 100644 index 7536a3abf6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/11.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/11.png deleted file mode 100644 index 01eae6857c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/12.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/12.png deleted file mode 100644 index 286256809f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/13.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/13.png deleted file mode 100644 index 286fac179e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/14.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/14.png deleted file mode 100644 index 8b2bf80684..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/15.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/15.png deleted file mode 100644 index bf6064c542..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/2.png deleted file mode 100644 index 18c69347f9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/3.png deleted file mode 100644 index 2a91810d3b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/4.png deleted file mode 100644 index 76dded0861..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/5.png deleted file mode 100644 index 6fdd00e30f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/6.png deleted file mode 100644 index 088c988741..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/7.png deleted file mode 100644 index 74f9f9c636..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/8.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/8.png deleted file mode 100644 index 786d3e9d49..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/9.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/9.png deleted file mode 100644 index 3e83b0c542..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/0.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/0.png deleted file mode 100644 index 87303bad30..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/1.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/1.png deleted file mode 100644 index b926dec0a4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/2.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/2.png deleted file mode 100644 index 4df26a8f4e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/3.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/3.png deleted file mode 100644 index 76cee933bd..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/4.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/4.png deleted file mode 100644 index 35be581ffa..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/5.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/5.png deleted file mode 100644 index e3f0102f2e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/6.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/6.png deleted file mode 100644 index 812c366917..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/7.png b/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/7.png deleted file mode 100644 index f56cfb7642..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/BiblioWoodSeat2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/0.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/0.png deleted file mode 100644 index e2362d79a0..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/1.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/1.png deleted file mode 100644 index c3e7202878..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/10.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/10.png deleted file mode 100644 index 1420991735..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/11.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/11.png deleted file mode 100644 index 80a6d3eb13..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/12.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/12.png deleted file mode 100644 index 266995ba8d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/13.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/13.png deleted file mode 100644 index a71f9d0daf..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/14.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/14.png deleted file mode 100644 index d84185faf1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/15.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/15.png deleted file mode 100644 index 4c1097a21b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/16.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/16.png deleted file mode 100644 index 6ee294a6b6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/16.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/17.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/17.png deleted file mode 100644 index d7e079ee82..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/17.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/18.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/18.png deleted file mode 100644 index c554b3181e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/18.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/19.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/19.png deleted file mode 100644 index 0062a5baf5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/19.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/2.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/2.png deleted file mode 100644 index 2c0f5a6291..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/20.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/20.png deleted file mode 100644 index e7f1977744..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/20.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/21.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/21.png deleted file mode 100644 index 24f3be7b8f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/21.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/22.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/22.png deleted file mode 100644 index 3ac90f5283..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/22.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/23.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/23.png deleted file mode 100644 index 38f4d30e70..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/23.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/3.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/3.png deleted file mode 100644 index fcf40281d5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/4.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/4.png deleted file mode 100644 index 3164159638..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/5.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/5.png deleted file mode 100644 index 0e9d4d4f7d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/6.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/6.png deleted file mode 100644 index 5a1e3ca06d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/7.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/7.png deleted file mode 100644 index 9c472eca0b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/8.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/8.png deleted file mode 100644 index ee85140055..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack1/9.png b/front/public/images/large/BiblioWoodsForestry/seatBack1/9.png deleted file mode 100644 index 38bc901c04..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack1/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/0.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/0.png deleted file mode 100644 index 1ef497edc8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/1.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/1.png deleted file mode 100644 index abd4075b4a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/10.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/10.png deleted file mode 100644 index 82c54c92ac..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/11.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/11.png deleted file mode 100644 index 520f31a153..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/12.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/12.png deleted file mode 100644 index 821af0c2ae..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/13.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/13.png deleted file mode 100644 index 4d7e3d082e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/14.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/14.png deleted file mode 100644 index b6bfd0c965..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/15.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/15.png deleted file mode 100644 index 960b031661..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/16.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/16.png deleted file mode 100644 index 7a0b729123..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/16.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/17.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/17.png deleted file mode 100644 index 298a9b9bd5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/17.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/18.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/18.png deleted file mode 100644 index 3d2b39da25..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/18.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/19.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/19.png deleted file mode 100644 index a62726dfda..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/19.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/2.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/2.png deleted file mode 100644 index a86364a739..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/20.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/20.png deleted file mode 100644 index 4533c76a82..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/20.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/21.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/21.png deleted file mode 100644 index d4548e074c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/21.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/22.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/22.png deleted file mode 100644 index 6c2e26f354..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/22.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/23.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/23.png deleted file mode 100644 index d902642db4..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/23.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/3.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/3.png deleted file mode 100644 index 6eaedcb75d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/4.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/4.png deleted file mode 100644 index ca47fd8cbb..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/5.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/5.png deleted file mode 100644 index 881e8b58b9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/6.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/6.png deleted file mode 100644 index ff3f77c2f6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/7.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/7.png deleted file mode 100644 index 4ddda2ec44..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/8.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/8.png deleted file mode 100644 index c5d64a9d27..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack2/9.png b/front/public/images/large/BiblioWoodsForestry/seatBack2/9.png deleted file mode 100644 index 7cdf102635..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack2/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/0.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/0.png deleted file mode 100644 index d901ed9706..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/1.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/1.png deleted file mode 100644 index bfe2d40287..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/10.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/10.png deleted file mode 100644 index 53098e23bb..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/11.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/11.png deleted file mode 100644 index 699579f542..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/12.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/12.png deleted file mode 100644 index 369ee4bb65..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/13.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/13.png deleted file mode 100644 index a1d5b9541f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/14.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/14.png deleted file mode 100644 index 15ef5728ba..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/15.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/15.png deleted file mode 100644 index f175e79c59..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/16.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/16.png deleted file mode 100644 index 1a833cc603..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/16.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/17.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/17.png deleted file mode 100644 index 2843e6f8fc..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/17.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/18.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/18.png deleted file mode 100644 index 982fd63495..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/18.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/19.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/19.png deleted file mode 100644 index dec671239f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/19.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/2.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/2.png deleted file mode 100644 index 99ed255ba5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/20.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/20.png deleted file mode 100644 index 2e6d0359e9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/20.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/21.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/21.png deleted file mode 100644 index f948ca0121..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/21.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/22.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/22.png deleted file mode 100644 index c9840c50b3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/22.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/23.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/23.png deleted file mode 100644 index 73b526782f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/23.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/3.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/3.png deleted file mode 100644 index e26ea67a2b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/4.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/4.png deleted file mode 100644 index 9bd0e67a72..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/5.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/5.png deleted file mode 100644 index 6bf46ed003..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/6.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/6.png deleted file mode 100644 index 627f2beca2..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/7.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/7.png deleted file mode 100644 index dd59964cc3..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/8.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/8.png deleted file mode 100644 index c97da96357..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack3/9.png b/front/public/images/large/BiblioWoodsForestry/seatBack3/9.png deleted file mode 100644 index e9ac5a50da..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack3/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/0.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/0.png deleted file mode 100644 index a0169597b7..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/1.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/1.png deleted file mode 100644 index 94a41162a8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/10.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/10.png deleted file mode 100644 index 5824a0656f..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/11.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/11.png deleted file mode 100644 index 693ab730e9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/12.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/12.png deleted file mode 100644 index 04197e23ca..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/13.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/13.png deleted file mode 100644 index dc21bc48ab..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/14.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/14.png deleted file mode 100644 index 03d34f0222..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/15.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/15.png deleted file mode 100644 index c8375e1c8d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/16.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/16.png deleted file mode 100644 index 8b69a65ef5..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/16.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/17.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/17.png deleted file mode 100644 index 92c6d1bea0..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/17.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/18.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/18.png deleted file mode 100644 index 7ceb8c135e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/18.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/19.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/19.png deleted file mode 100644 index 00f4a880e6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/19.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/2.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/2.png deleted file mode 100644 index b7dba38c8b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/20.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/20.png deleted file mode 100644 index e5ba618185..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/20.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/21.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/21.png deleted file mode 100644 index 9697ff3d4e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/21.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/22.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/22.png deleted file mode 100644 index 0a865c7420..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/22.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/23.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/23.png deleted file mode 100644 index b4d99f3c9c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/23.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/3.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/3.png deleted file mode 100644 index ab1203c6ec..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/4.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/4.png deleted file mode 100644 index b882223443..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/5.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/5.png deleted file mode 100644 index b00d95baa6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/6.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/6.png deleted file mode 100644 index 7142a20f4b..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/7.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/7.png deleted file mode 100644 index 8909284053..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/8.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/8.png deleted file mode 100644 index ebd69bfb23..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack4/9.png b/front/public/images/large/BiblioWoodsForestry/seatBack4/9.png deleted file mode 100644 index a4a6cc3ccc..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack4/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/0.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/0.png deleted file mode 100644 index 6de1b5798e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/1.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/1.png deleted file mode 100644 index 0744724384..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/10.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/10.png deleted file mode 100644 index 9a5ec52f60..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/11.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/11.png deleted file mode 100644 index 1175f6d817..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/12.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/12.png deleted file mode 100644 index 336907a9af..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/13.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/13.png deleted file mode 100644 index dd5baadf9a..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/13.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/14.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/14.png deleted file mode 100644 index 507272bbdf..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/14.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/15.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/15.png deleted file mode 100644 index e675837824..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/15.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/16.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/16.png deleted file mode 100644 index 9ecc0df6c8..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/16.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/17.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/17.png deleted file mode 100644 index cb8ae5116e..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/17.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/18.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/18.png deleted file mode 100644 index 9547989a53..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/18.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/19.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/19.png deleted file mode 100644 index 51a76175cd..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/19.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/2.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/2.png deleted file mode 100644 index 89ebaaae05..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/20.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/20.png deleted file mode 100644 index 47ccb47c44..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/20.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/21.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/21.png deleted file mode 100644 index f3dee80dd9..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/21.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/22.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/22.png deleted file mode 100644 index 87e47846e1..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/22.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/23.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/23.png deleted file mode 100644 index fca73c7b72..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/23.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/3.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/3.png deleted file mode 100644 index f679cbd94d..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/4.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/4.png deleted file mode 100644 index a57508365c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/5.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/5.png deleted file mode 100644 index 0893ff4f51..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/6.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/6.png deleted file mode 100644 index f427d55344..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/7.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/7.png deleted file mode 100644 index 55aad98dae..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/8.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/8.png deleted file mode 100644 index ec97b3dd5c..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsForestry/seatBack5/9.png b/front/public/images/large/BiblioWoodsForestry/seatBack5/9.png deleted file mode 100644 index c5e0fdbac6..0000000000 Binary files a/front/public/images/large/BiblioWoodsForestry/seatBack5/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/0.png deleted file mode 100644 index 2a3da6cef4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/1.png deleted file mode 100644 index 048cb11613..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/10.png deleted file mode 100644 index 682af5bc1a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/11.png deleted file mode 100644 index 9ecdec4f15..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/12.png deleted file mode 100644 index 8fba45b2e8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/2.png deleted file mode 100644 index d426f95d03..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/3.png deleted file mode 100644 index e817bd1f72..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/4.png deleted file mode 100644 index 89c6864709..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/5.png deleted file mode 100644 index f1bd62e546..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/6.png deleted file mode 100644 index 4f7a42d2de..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/7.png deleted file mode 100644 index a491bb03e4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/8.png deleted file mode 100644 index 5bf067aeec..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/9.png deleted file mode 100644 index ff2dbba8e7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodBookcase/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/0.png deleted file mode 100644 index 49e9cce3d9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/1.png deleted file mode 100644 index 48fe3f54c5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/10.png deleted file mode 100644 index de684464b6..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/11.png deleted file mode 100644 index 2b06ae9fe4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/12.png deleted file mode 100644 index b355b90b12..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/2.png deleted file mode 100644 index 76ede7b06e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/3.png deleted file mode 100644 index 386ea96710..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/4.png deleted file mode 100644 index 9fe42d3a8d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/5.png deleted file mode 100644 index becc891c91..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/6.png deleted file mode 100644 index 0a593d7af0..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/7.png deleted file mode 100644 index 2caae563ea..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/8.png deleted file mode 100644 index 73373fb4a5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/9.png deleted file mode 100644 index 325cbd5968..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodClock/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/0.png deleted file mode 100644 index d9dac6ea8a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/1.png deleted file mode 100644 index 935a24e439..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/10.png deleted file mode 100644 index 0dfa10afde..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/11.png deleted file mode 100644 index 89468e3eea..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/12.png deleted file mode 100644 index d30d7908f1..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/2.png deleted file mode 100644 index bb01747e0e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/3.png deleted file mode 100644 index 5645df244d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/4.png deleted file mode 100644 index 7227b421c8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/5.png deleted file mode 100644 index 46095df459..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/6.png deleted file mode 100644 index 8c6b7df1d5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/7.png deleted file mode 100644 index d6302fab8e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/8.png deleted file mode 100644 index de3d9e1149..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/9.png deleted file mode 100644 index 846bc9f1b8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancySign/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/0.png deleted file mode 100644 index ebca101379..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/1.png deleted file mode 100644 index 368f69401d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/10.png deleted file mode 100644 index bfa4456f99..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/11.png deleted file mode 100644 index c489279b7d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/12.png deleted file mode 100644 index 794cd0c76f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/2.png deleted file mode 100644 index ebace135ba..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/3.png deleted file mode 100644 index 77627ab5b9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/4.png deleted file mode 100644 index 07f98eed56..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/5.png deleted file mode 100644 index 2869d374b2..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/6.png deleted file mode 100644 index 5c111e6c37..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/7.png deleted file mode 100644 index 17971655e7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/8.png deleted file mode 100644 index 74ce96f1f7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/9.png deleted file mode 100644 index 86c83afe01..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodFancyWorkbench/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/0.png deleted file mode 100644 index 066af75098..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/1.png deleted file mode 100644 index f682c4455e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/10.png deleted file mode 100644 index be3956c8a9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/11.png deleted file mode 100644 index d11b662ad7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/12.png deleted file mode 100644 index c9f7836a53..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/2.png deleted file mode 100644 index f53cd430e2..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/3.png deleted file mode 100644 index 2f0ce5885c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/4.png deleted file mode 100644 index 97e184119f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/5.png deleted file mode 100644 index 3e68840fde..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/6.png deleted file mode 100644 index cf9753b97f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/7.png deleted file mode 100644 index ed8c362864..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/8.png deleted file mode 100644 index 557f0a8347..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/9.png deleted file mode 100644 index 8524faad43..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodMapFrame/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/0.png deleted file mode 100644 index 9250106809..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/1.png deleted file mode 100644 index 30aeeb5f46..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/10.png deleted file mode 100644 index 95dd1d6d39..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/11.png deleted file mode 100644 index 151ad775f5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/12.png deleted file mode 100644 index 4e7204405b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/2.png deleted file mode 100644 index 2012150fd8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/3.png deleted file mode 100644 index da17052e54..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/4.png deleted file mode 100644 index 3138543dc1..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/5.png deleted file mode 100644 index a9ba7acb5a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/6.png deleted file mode 100644 index 4950e83e1e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/7.png deleted file mode 100644 index 13e72e9954..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/8.png deleted file mode 100644 index 7b046ee2f0..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/9.png deleted file mode 100644 index 518c622f5c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT0/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/0.png deleted file mode 100644 index 7abf5c161c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/1.png deleted file mode 100644 index b0476e6cc7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/10.png deleted file mode 100644 index ce9ed2c7dd..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/11.png deleted file mode 100644 index 2df0110fc7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/12.png deleted file mode 100644 index 098d5cbf6e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/2.png deleted file mode 100644 index f128cbe993..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/3.png deleted file mode 100644 index cdfd2c533e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/4.png deleted file mode 100644 index 0cbaadd626..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/5.png deleted file mode 100644 index b12d0381aa..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/6.png deleted file mode 100644 index dff9634622..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/7.png deleted file mode 100644 index f89909289b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/8.png deleted file mode 100644 index 166b2dd63c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/9.png deleted file mode 100644 index df26331c32..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT1/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/0.png deleted file mode 100644 index 9e1e0acfb3..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/1.png deleted file mode 100644 index 048df1dec3..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/10.png deleted file mode 100644 index 9bf6868f32..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/11.png deleted file mode 100644 index 4aaf75f0cc..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/12.png deleted file mode 100644 index 52842e830b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/2.png deleted file mode 100644 index a275fbf1b1..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/3.png deleted file mode 100644 index 2db0ee3b6c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/4.png deleted file mode 100644 index 5e8bfa9391..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/5.png deleted file mode 100644 index 333c895c95..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/6.png deleted file mode 100644 index c168f5012c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/7.png deleted file mode 100644 index 093402eb47..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/8.png deleted file mode 100644 index e762d37e09..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/9.png deleted file mode 100644 index b8309e4818..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT2/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/0.png deleted file mode 100644 index f8af68cf3f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/1.png deleted file mode 100644 index 4e955785b6..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/10.png deleted file mode 100644 index 5e64bc7ca3..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/11.png deleted file mode 100644 index 2345e0d2f4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/12.png deleted file mode 100644 index 1d76de09e2..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/2.png deleted file mode 100644 index 5ecec8e248..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/3.png deleted file mode 100644 index c3babca052..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/4.png deleted file mode 100644 index 271ce01795..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/5.png deleted file mode 100644 index 3239ca288b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/6.png deleted file mode 100644 index b1df61b11c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/7.png deleted file mode 100644 index e666645ade..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/8.png deleted file mode 100644 index 3e8d40e5cd..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/9.png deleted file mode 100644 index a12ddf594b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT3/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/0.png deleted file mode 100644 index 067d81406b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/1.png deleted file mode 100644 index fa5af4fd2a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/10.png deleted file mode 100644 index b6af20393f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/11.png deleted file mode 100644 index 941e6e7e5e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/12.png deleted file mode 100644 index a8a3d6f961..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/2.png deleted file mode 100644 index c5b5d6b2ef..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/3.png deleted file mode 100644 index 5789109763..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/4.png deleted file mode 100644 index 23bd15f76e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/5.png deleted file mode 100644 index a2c519448c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/6.png deleted file mode 100644 index 02e25ff775..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/7.png deleted file mode 100644 index 51b0484b46..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/8.png deleted file mode 100644 index 2a39dd459f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/9.png deleted file mode 100644 index 19bf121f4a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodPaintingT4/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/0.png deleted file mode 100644 index 1fe458c1e6..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/1.png deleted file mode 100644 index 6ceb984de8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/10.png deleted file mode 100644 index 23996511e7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/11.png deleted file mode 100644 index c19ebe34f3..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/12.png deleted file mode 100644 index 73d02e7269..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/2.png deleted file mode 100644 index 1537f37577..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/3.png deleted file mode 100644 index bf4e11b814..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/4.png deleted file mode 100644 index 7f63fae4d1..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/5.png deleted file mode 100644 index a0b30d91ac..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/6.png deleted file mode 100644 index cd101e5c3d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/7.png deleted file mode 100644 index ec8e842baa..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/8.png deleted file mode 100644 index ffe8d022da..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/9.png deleted file mode 100644 index d5456aeabf..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodSeat/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/0.png deleted file mode 100644 index 9627948d77..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/1.png deleted file mode 100644 index 89b0d8501d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/10.png deleted file mode 100644 index 37a7dba1a1..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/11.png deleted file mode 100644 index 9f88db2883..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/12.png deleted file mode 100644 index a6a892d150..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/2.png deleted file mode 100644 index ba0c47441a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/3.png deleted file mode 100644 index 66e44548e4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/4.png deleted file mode 100644 index eaa6f42d4a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/5.png deleted file mode 100644 index 0700c28436..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/6.png deleted file mode 100644 index 40374cb7f5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/7.png deleted file mode 100644 index ef3d0c3cb9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/8.png deleted file mode 100644 index 910a7b8cb8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/9.png deleted file mode 100644 index dd0faab1b5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodcase0/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/0.png deleted file mode 100644 index f9ba8da289..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/1.png deleted file mode 100644 index b6594ed8e0..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/10.png deleted file mode 100644 index 1573bab29e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/11.png deleted file mode 100644 index 9c72607af0..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/12.png deleted file mode 100644 index c017ebcda4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/2.png deleted file mode 100644 index 1a63c83abe..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/3.png deleted file mode 100644 index 57200241cf..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/4.png deleted file mode 100644 index fcd4f865e3..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/5.png deleted file mode 100644 index b209275c7e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/6.png deleted file mode 100644 index d224146b73..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/7.png deleted file mode 100644 index ad0e83bcf7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/8.png deleted file mode 100644 index 3601596f70..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/9.png deleted file mode 100644 index 8b42844479..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWooddesk/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/0.png deleted file mode 100644 index cab1937761..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/1.png deleted file mode 100644 index 8e6cd638da..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/10.png deleted file mode 100644 index 677746d19d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/11.png deleted file mode 100644 index ae64c961c9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/12.png deleted file mode 100644 index 4b140fa3b7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/2.png deleted file mode 100644 index 486d7d7ede..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/3.png deleted file mode 100644 index df19cd32fb..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/4.png deleted file mode 100644 index 05bbcc1cd6..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/5.png deleted file mode 100644 index 2a93ea8c95..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/6.png deleted file mode 100644 index 1eba547c13..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/7.png deleted file mode 100644 index 63135e392c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/8.png deleted file mode 100644 index ea9e85e382..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/9.png deleted file mode 100644 index f238d98639..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodlabel/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/0.png deleted file mode 100644 index 36c5c2354d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/1.png deleted file mode 100644 index d8c50eef08..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/10.png deleted file mode 100644 index 98ca26a285..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/11.png deleted file mode 100644 index 599c67a121..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/12.png deleted file mode 100644 index bb0ef657f3..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/2.png deleted file mode 100644 index 22722ea802..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/3.png deleted file mode 100644 index 4bfe1564ab..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/4.png deleted file mode 100644 index fd20b6852f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/5.png deleted file mode 100644 index e164269da9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/6.png deleted file mode 100644 index da1f4a7da8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/7.png deleted file mode 100644 index 72e272bd0d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/8.png deleted file mode 100644 index fd106a779b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/9.png deleted file mode 100644 index 07570f2796..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodpotshelf/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/0.png deleted file mode 100644 index 72f3603584..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/1.png deleted file mode 100644 index fb1505701e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/10.png deleted file mode 100644 index 0920c86de8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/11.png deleted file mode 100644 index 5ff63ebfac..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/12.png deleted file mode 100644 index 7bc43c7d41..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/2.png deleted file mode 100644 index 3347ab560c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/3.png deleted file mode 100644 index 17bc95c590..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/4.png deleted file mode 100644 index 9212978017..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/5.png deleted file mode 100644 index f8fc8cffd8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/6.png deleted file mode 100644 index 46a9dcb4ef..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/7.png deleted file mode 100644 index 74ae00578c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/8.png deleted file mode 100644 index d9c1e255d6..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/9.png deleted file mode 100644 index 065fd9e2ac..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodrack/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/0.png deleted file mode 100644 index da19d8c962..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/1.png deleted file mode 100644 index 43e69b9f5e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/10.png deleted file mode 100644 index f048db7f24..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/11.png deleted file mode 100644 index e91bae7e86..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/12.png deleted file mode 100644 index b64789662f..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/2.png deleted file mode 100644 index 31b5d31e78..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/3.png deleted file mode 100644 index ea6e52e465..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/4.png deleted file mode 100644 index 6ed9d7068c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/5.png deleted file mode 100644 index b5c9cc5f8b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/6.png deleted file mode 100644 index d482a78224..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/7.png deleted file mode 100644 index c32d4392c3..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/8.png deleted file mode 100644 index 4b8284be0c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/9.png deleted file mode 100644 index e46e763c17..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodshelf/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/0.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/0.png deleted file mode 100644 index 8055951d89..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/1.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/1.png deleted file mode 100644 index 48dc274878..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/10.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/10.png deleted file mode 100644 index 3545142fb9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/11.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/11.png deleted file mode 100644 index e5d2a892e4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/12.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/12.png deleted file mode 100644 index c30d92eb99..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/2.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/2.png deleted file mode 100644 index ee7a5c2cc5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/3.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/3.png deleted file mode 100644 index 67e5df4c3a..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/4.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/4.png deleted file mode 100644 index 80d584f78d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/5.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/5.png deleted file mode 100644 index 0bff7453c0..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/6.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/6.png deleted file mode 100644 index e741726773..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/7.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/7.png deleted file mode 100644 index b292dbef31..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/8.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/8.png deleted file mode 100644 index fca969b8a7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/9.png b/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/9.png deleted file mode 100644 index b42e1783dc..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/BiblioWoodtable/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/0.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/0.png deleted file mode 100644 index b7bf35a1dd..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/1.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/1.png deleted file mode 100644 index f2e6ad21d5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/10.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/10.png deleted file mode 100644 index 5906722f00..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/11.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/11.png deleted file mode 100644 index b35194ff66..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/12.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/12.png deleted file mode 100644 index 40e9f7cdbf..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/2.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/2.png deleted file mode 100644 index 3737ec8c26..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/3.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/3.png deleted file mode 100644 index 7549c5f108..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/4.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/4.png deleted file mode 100644 index 7c62b2fefb..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/5.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/5.png deleted file mode 100644 index 6a786bd4f7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/6.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/6.png deleted file mode 100644 index 4092da8cdf..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/7.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/7.png deleted file mode 100644 index b4defc7b10..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/8.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/8.png deleted file mode 100644 index 452c67ea45..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack1/9.png b/front/public/images/large/BiblioWoodsNatura/seatBack1/9.png deleted file mode 100644 index 38c97bd2a0..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack1/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/0.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/0.png deleted file mode 100644 index 62d03e003e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/1.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/1.png deleted file mode 100644 index 17535f4ed7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/10.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/10.png deleted file mode 100644 index 5b942ab8e9..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/11.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/11.png deleted file mode 100644 index 904da90a6e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/12.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/12.png deleted file mode 100644 index ef9cb4a0f7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/2.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/2.png deleted file mode 100644 index 188986bfa2..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/3.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/3.png deleted file mode 100644 index 4a73e01bf1..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/4.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/4.png deleted file mode 100644 index b710a7f9ac..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/5.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/5.png deleted file mode 100644 index b7ad89e030..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/6.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/6.png deleted file mode 100644 index 4e61817835..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/7.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/7.png deleted file mode 100644 index 3d0a6f7243..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/8.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/8.png deleted file mode 100644 index dadb018a44..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack2/9.png b/front/public/images/large/BiblioWoodsNatura/seatBack2/9.png deleted file mode 100644 index e4a2ed057c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack2/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/0.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/0.png deleted file mode 100644 index 450a2228e4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/1.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/1.png deleted file mode 100644 index eae118d3d7..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/10.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/10.png deleted file mode 100644 index 6b7e958d17..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/11.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/11.png deleted file mode 100644 index 43e025bf88..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/12.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/12.png deleted file mode 100644 index cc2adbc095..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/2.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/2.png deleted file mode 100644 index 568373d444..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/3.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/3.png deleted file mode 100644 index bde25f878c..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/4.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/4.png deleted file mode 100644 index 2cefbf2785..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/5.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/5.png deleted file mode 100644 index a6a5fa1c8e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/6.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/6.png deleted file mode 100644 index 817fa152c0..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/7.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/7.png deleted file mode 100644 index 08080f15da..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/8.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/8.png deleted file mode 100644 index 120ac88edb..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack3/9.png b/front/public/images/large/BiblioWoodsNatura/seatBack3/9.png deleted file mode 100644 index 3603e8402d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack3/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/0.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/0.png deleted file mode 100644 index 0af7da15ea..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/1.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/1.png deleted file mode 100644 index 7167fcd2d5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/10.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/10.png deleted file mode 100644 index c3898c8e97..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/11.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/11.png deleted file mode 100644 index d6b8243944..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/12.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/12.png deleted file mode 100644 index 579a5033fa..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/2.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/2.png deleted file mode 100644 index 04599114b5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/3.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/3.png deleted file mode 100644 index 9b5f0d5f33..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/4.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/4.png deleted file mode 100644 index 6e39277e0d..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/5.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/5.png deleted file mode 100644 index e5cc569ef6..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/6.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/6.png deleted file mode 100644 index 569913fbb4..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/7.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/7.png deleted file mode 100644 index dc7e052cc5..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/8.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/8.png deleted file mode 100644 index 3634696353..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack4/9.png b/front/public/images/large/BiblioWoodsNatura/seatBack4/9.png deleted file mode 100644 index 5ca9857923..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack4/9.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/0.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/0.png deleted file mode 100644 index b2e392f1ec..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/0.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/1.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/1.png deleted file mode 100644 index ff5a713001..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/1.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/10.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/10.png deleted file mode 100644 index 649f79ef61..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/10.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/11.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/11.png deleted file mode 100644 index 467367ecfe..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/11.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/12.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/12.png deleted file mode 100644 index f401d5bf57..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/12.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/2.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/2.png deleted file mode 100644 index 8a39e884df..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/2.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/3.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/3.png deleted file mode 100644 index 2810672b69..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/3.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/4.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/4.png deleted file mode 100644 index 96d11ba19e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/4.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/5.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/5.png deleted file mode 100644 index 97cbbe679b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/5.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/6.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/6.png deleted file mode 100644 index ee33ae548b..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/6.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/7.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/7.png deleted file mode 100644 index 512f02750e..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/7.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/8.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/8.png deleted file mode 100644 index fe613951d8..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/8.png and /dev/null differ diff --git a/front/public/images/large/BiblioWoodsNatura/seatBack5/9.png b/front/public/images/large/BiblioWoodsNatura/seatBack5/9.png deleted file mode 100644 index 6455491a93..0000000000 Binary files a/front/public/images/large/BiblioWoodsNatura/seatBack5/9.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerBucket/128.png b/front/public/images/large/BinnieCore/containerBucket/128.png deleted file mode 100644 index 06eca32263..0000000000 Binary files a/front/public/images/large/BinnieCore/containerBucket/128.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerBucket/129.png b/front/public/images/large/BinnieCore/containerBucket/129.png deleted file mode 100644 index b77c8f1b37..0000000000 Binary files a/front/public/images/large/BinnieCore/containerBucket/129.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerBucket/130.png b/front/public/images/large/BinnieCore/containerBucket/130.png deleted file mode 100644 index 0200bebfd9..0000000000 Binary files a/front/public/images/large/BinnieCore/containerBucket/130.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerBucket/131.png b/front/public/images/large/BinnieCore/containerBucket/131.png deleted file mode 100644 index 8ee3fb83ae..0000000000 Binary files a/front/public/images/large/BinnieCore/containerBucket/131.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerBucket/64.png b/front/public/images/large/BinnieCore/containerBucket/64.png deleted file mode 100644 index 1a50e673cf..0000000000 Binary files a/front/public/images/large/BinnieCore/containerBucket/64.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerBucket/65.png b/front/public/images/large/BinnieCore/containerBucket/65.png deleted file mode 100644 index b9759ed43d..0000000000 Binary files a/front/public/images/large/BinnieCore/containerBucket/65.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerBucket/66.png b/front/public/images/large/BinnieCore/containerBucket/66.png deleted file mode 100644 index b9759ed43d..0000000000 Binary files a/front/public/images/large/BinnieCore/containerBucket/66.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCan/128.png b/front/public/images/large/BinnieCore/containerCan/128.png deleted file mode 100644 index 3ddf52e8a7..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCan/128.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCan/129.png b/front/public/images/large/BinnieCore/containerCan/129.png deleted file mode 100644 index 2c4b775156..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCan/129.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCan/130.png b/front/public/images/large/BinnieCore/containerCan/130.png deleted file mode 100644 index 0ef719f3bd..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCan/130.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCan/131.png b/front/public/images/large/BinnieCore/containerCan/131.png deleted file mode 100644 index db4a4d4ae6..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCan/131.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCan/64.png b/front/public/images/large/BinnieCore/containerCan/64.png deleted file mode 100644 index dc13a37e50..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCan/64.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCan/65.png b/front/public/images/large/BinnieCore/containerCan/65.png deleted file mode 100644 index b7a32305f2..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCan/65.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCan/66.png b/front/public/images/large/BinnieCore/containerCan/66.png deleted file mode 100644 index b7a32305f2..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCan/66.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCapsule/128.png b/front/public/images/large/BinnieCore/containerCapsule/128.png deleted file mode 100644 index f7fad1f6ad..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCapsule/128.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCapsule/129.png b/front/public/images/large/BinnieCore/containerCapsule/129.png deleted file mode 100644 index a7871e3a0f..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCapsule/129.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCapsule/130.png b/front/public/images/large/BinnieCore/containerCapsule/130.png deleted file mode 100644 index 89a30453b2..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCapsule/130.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCapsule/131.png b/front/public/images/large/BinnieCore/containerCapsule/131.png deleted file mode 100644 index 9d29796ef4..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCapsule/131.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCapsule/64.png b/front/public/images/large/BinnieCore/containerCapsule/64.png deleted file mode 100644 index d27938274a..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCapsule/64.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCapsule/65.png b/front/public/images/large/BinnieCore/containerCapsule/65.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCapsule/65.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCapsule/66.png b/front/public/images/large/BinnieCore/containerCapsule/66.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCapsule/66.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCylinder/768.png b/front/public/images/large/BinnieCore/containerCylinder/768.png deleted file mode 100644 index 126b466b15..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCylinder/768.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCylinder/769.png b/front/public/images/large/BinnieCore/containerCylinder/769.png deleted file mode 100644 index ddc65c8929..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCylinder/769.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCylinder/770.png b/front/public/images/large/BinnieCore/containerCylinder/770.png deleted file mode 100644 index 8a301ab17c..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCylinder/770.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCylinder/771.png b/front/public/images/large/BinnieCore/containerCylinder/771.png deleted file mode 100644 index ee77bed417..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCylinder/771.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerCylinder/772.png b/front/public/images/large/BinnieCore/containerCylinder/772.png deleted file mode 100644 index 19039b0dc4..0000000000 Binary files a/front/public/images/large/BinnieCore/containerCylinder/772.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerGlass/0.png b/front/public/images/large/BinnieCore/containerGlass/0.png deleted file mode 100644 index 3fa13f73bc..0000000000 Binary files a/front/public/images/large/BinnieCore/containerGlass/0.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerRefractory/64.png b/front/public/images/large/BinnieCore/containerRefractory/64.png deleted file mode 100644 index 07f6fdb7d5..0000000000 Binary files a/front/public/images/large/BinnieCore/containerRefractory/64.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerRefractory/65.png b/front/public/images/large/BinnieCore/containerRefractory/65.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/BinnieCore/containerRefractory/65.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/containerRefractory/66.png b/front/public/images/large/BinnieCore/containerRefractory/66.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/BinnieCore/containerRefractory/66.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/fieldKit/0.png b/front/public/images/large/BinnieCore/fieldKit/0.png deleted file mode 100644 index c87945e827..0000000000 Binary files a/front/public/images/large/BinnieCore/fieldKit/0.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/genesis/0.png b/front/public/images/large/BinnieCore/genesis/0.png deleted file mode 100644 index 3f5074b577..0000000000 Binary files a/front/public/images/large/BinnieCore/genesis/0.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/storage/0.png b/front/public/images/large/BinnieCore/storage/0.png deleted file mode 100644 index c6be8d4cbc..0000000000 Binary files a/front/public/images/large/BinnieCore/storage/0.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/storage/1.png b/front/public/images/large/BinnieCore/storage/1.png deleted file mode 100644 index aa9b4ea617..0000000000 Binary files a/front/public/images/large/BinnieCore/storage/1.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/storage/2.png b/front/public/images/large/BinnieCore/storage/2.png deleted file mode 100644 index 1ff717f4e3..0000000000 Binary files a/front/public/images/large/BinnieCore/storage/2.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/storage/3.png b/front/public/images/large/BinnieCore/storage/3.png deleted file mode 100644 index ac6ce9e3eb..0000000000 Binary files a/front/public/images/large/BinnieCore/storage/3.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/storage/4.png b/front/public/images/large/BinnieCore/storage/4.png deleted file mode 100644 index 90cb42d787..0000000000 Binary files a/front/public/images/large/BinnieCore/storage/4.png and /dev/null differ diff --git a/front/public/images/large/BinnieCore/storage/5.png b/front/public/images/large/BinnieCore/storage/5.png deleted file mode 100644 index dcaddfb543..0000000000 Binary files a/front/public/images/large/BinnieCore/storage/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ancientStaff/0.png b/front/public/images/large/BiomesOPlenty/ancientStaff/0.png deleted file mode 100644 index 69e3c01c18..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ancientStaff/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ancientStaff/1.png b/front/public/images/large/BiomesOPlenty/ancientStaff/1.png deleted file mode 100644 index dc60b22ba6..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ancientStaff/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ancientStaff/2.png b/front/public/images/large/BiomesOPlenty/ancientStaff/2.png deleted file mode 100644 index 7d0e0d8873..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ancientStaff/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ancientStaff/3.png b/front/public/images/large/BiomesOPlenty/ancientStaff/3.png deleted file mode 100644 index ba6f1f342a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ancientStaff/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ancientStaff/4.png b/front/public/images/large/BiomesOPlenty/ancientStaff/4.png deleted file mode 100644 index a22c8f0b74..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ancientStaff/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/appleLeaves/0.png b/front/public/images/large/BiomesOPlenty/appleLeaves/0.png deleted file mode 100644 index 7e536a0842..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/appleLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ash/0.png b/front/public/images/large/BiomesOPlenty/ash/0.png deleted file mode 100644 index efe4cd6234..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ash/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ashStone/0.png b/front/public/images/large/BiomesOPlenty/ashStone/0.png deleted file mode 100644 index 920c7d209e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ashStone/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/axeAmethyst/0.png b/front/public/images/large/BiomesOPlenty/axeAmethyst/0.png deleted file mode 100644 index 95efb77fcf..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/axeAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/axeMud/0.png b/front/public/images/large/BiomesOPlenty/axeMud/0.png deleted file mode 100644 index be1459efe2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/axeMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bamboo/0.png b/front/public/images/large/BiomesOPlenty/bamboo/0.png deleted file mode 100644 index 76140f988b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bamboo/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/biomeBlock/0.png b/front/public/images/large/BiomesOPlenty/biomeBlock/0.png deleted file mode 100644 index 53c471aa8c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/biomeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/biomeEssence/0.png b/front/public/images/large/BiomesOPlenty/biomeEssence/0.png deleted file mode 100644 index 600f35c84e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/biomeEssence/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/biomeFinder/0.png b/front/public/images/large/BiomesOPlenty/biomeFinder/0.png deleted file mode 100644 index 42ad976691..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/biomeFinder/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bones/0.png b/front/public/images/large/BiomesOPlenty/bones/0.png deleted file mode 100644 index 8faa7cdfda..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bones/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bones/1.png b/front/public/images/large/BiomesOPlenty/bones/1.png deleted file mode 100644 index c77f9b398d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bones/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bones/2.png b/front/public/images/large/BiomesOPlenty/bones/2.png deleted file mode 100644 index 07a69ee8e2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bones/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bootsAmethyst/0.png b/front/public/images/large/BiomesOPlenty/bootsAmethyst/0.png deleted file mode 100644 index 5df35c2902..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bootsAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bootsMud/0.png b/front/public/images/large/BiomesOPlenty/bootsMud/0.png deleted file mode 100644 index 0b356b7df5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bootsMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bopBucket/0.png b/front/public/images/large/BiomesOPlenty/bopBucket/0.png deleted file mode 100644 index f743a38799..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bopBucket/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bopGrass/0.png b/front/public/images/large/BiomesOPlenty/bopGrass/0.png deleted file mode 100644 index 883b874d0e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bopGrass/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/bopGrass/1.png b/front/public/images/large/BiomesOPlenty/bopGrass/1.png deleted file mode 100644 index 32a36a84a1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/bopGrass/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/cherryStairs/0.png b/front/public/images/large/BiomesOPlenty/cherryStairs/0.png deleted file mode 100644 index 323a4b88f6..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/cherryStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/chestplateAmethyst/0.png b/front/public/images/large/BiomesOPlenty/chestplateAmethyst/0.png deleted file mode 100644 index 85779f50ea..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/chestplateAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/chestplateMud/0.png b/front/public/images/large/BiomesOPlenty/chestplateMud/0.png deleted file mode 100644 index a133afff71..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/chestplateMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/0.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves1/0.png deleted file mode 100644 index d96618e4ff..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/1.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves1/1.png deleted file mode 100644 index 76d03b67c3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/2.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves1/2.png deleted file mode 100644 index e00de5e907..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/3.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves1/3.png deleted file mode 100644 index 41e1740cf7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves1/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/0.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves2/0.png deleted file mode 100644 index 1197c10960..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/1.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves2/1.png deleted file mode 100644 index 917dd4f0c1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/2.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves2/2.png deleted file mode 100644 index a09768617c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/3.png b/front/public/images/large/BiomesOPlenty/colorizedLeaves2/3.png deleted file mode 100644 index e002e72086..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedLeaves2/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/0.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/0.png deleted file mode 100644 index 75937503ce..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/1.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/1.png deleted file mode 100644 index 54cff0f6c3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/2.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/2.png deleted file mode 100644 index a868ac0d06..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/3.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/3.png deleted file mode 100644 index 8d1beb9c6a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/4.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/4.png deleted file mode 100644 index 878e9b12c1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/5.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/5.png deleted file mode 100644 index c221547d4e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/6.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/6.png deleted file mode 100644 index 0e2b8103c7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/colorizedSaplings/7.png b/front/public/images/large/BiomesOPlenty/colorizedSaplings/7.png deleted file mode 100644 index 14d65a5909..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/colorizedSaplings/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/coral1/11.png b/front/public/images/large/BiomesOPlenty/coral1/11.png deleted file mode 100644 index 9539040c53..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/coral1/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/coral1/12.png b/front/public/images/large/BiomesOPlenty/coral1/12.png deleted file mode 100644 index 470f77cfd7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/coral1/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/coral1/13.png b/front/public/images/large/BiomesOPlenty/coral1/13.png deleted file mode 100644 index 0bbd675d2b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/coral1/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/coral1/14.png b/front/public/images/large/BiomesOPlenty/coral1/14.png deleted file mode 100644 index 395c99c9e6..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/coral1/14.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/coral1/15.png b/front/public/images/large/BiomesOPlenty/coral1/15.png deleted file mode 100644 index 132d6f5d9f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/coral1/15.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/coral2/8.png b/front/public/images/large/BiomesOPlenty/coral2/8.png deleted file mode 100644 index b370817210..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/coral2/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/cragRock/0.png b/front/public/images/large/BiomesOPlenty/cragRock/0.png deleted file mode 100644 index 5f010b725d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/cragRock/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/crystal/0.png b/front/public/images/large/BiomesOPlenty/crystal/0.png deleted file mode 100644 index b4e93d186b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/crystal/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/darkStairs/0.png b/front/public/images/large/BiomesOPlenty/darkStairs/0.png deleted file mode 100644 index 43e3d2cf3f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/darkStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/dart/0.png b/front/public/images/large/BiomesOPlenty/dart/0.png deleted file mode 100644 index c5f9672700..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/dart/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/dart/1.png b/front/public/images/large/BiomesOPlenty/dart/1.png deleted file mode 100644 index b7d3fde648..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/dart/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/dartBlower/0.png b/front/public/images/large/BiomesOPlenty/dartBlower/0.png deleted file mode 100644 index 95c00da16a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/dartBlower/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/driedDirt/0.png b/front/public/images/large/BiomesOPlenty/driedDirt/0.png deleted file mode 100644 index 43f63c5f60..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/driedDirt/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/enderporter/0.png b/front/public/images/large/BiomesOPlenty/enderporter/0.png deleted file mode 100644 index 914fd81b05..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/enderporter/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/etherealStairs/0.png b/front/public/images/large/BiomesOPlenty/etherealStairs/0.png deleted file mode 100644 index 6d0a2e5371..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/etherealStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/firStairs/0.png b/front/public/images/large/BiomesOPlenty/firStairs/0.png deleted file mode 100644 index 2ae1b26c3c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/firStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flesh/0.png b/front/public/images/large/BiomesOPlenty/flesh/0.png deleted file mode 100644 index 39e2b3668a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flesh/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flippers/0.png b/front/public/images/large/BiomesOPlenty/flippers/0.png deleted file mode 100644 index b1bcf5e186..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flippers/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowerBand/0.png b/front/public/images/large/BiomesOPlenty/flowerBand/0.png deleted file mode 100644 index 201be144fe..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowerBand/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowerBand/1.png b/front/public/images/large/BiomesOPlenty/flowerBand/1.png deleted file mode 100644 index 3f8eeed4b2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowerBand/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowerBand/2.png b/front/public/images/large/BiomesOPlenty/flowerBand/2.png deleted file mode 100644 index fdb1dfb879..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowerBand/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowerBand/3.png b/front/public/images/large/BiomesOPlenty/flowerBand/3.png deleted file mode 100644 index 288d85153e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowerBand/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowerVine/0.png b/front/public/images/large/BiomesOPlenty/flowerVine/0.png deleted file mode 100644 index 7d8589cb39..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowerVine/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/0.png b/front/public/images/large/BiomesOPlenty/flowers/0.png deleted file mode 100644 index c09d9db0bb..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/1.png b/front/public/images/large/BiomesOPlenty/flowers/1.png deleted file mode 100644 index da76340bf2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/10.png b/front/public/images/large/BiomesOPlenty/flowers/10.png deleted file mode 100644 index 8b38962e69..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/10.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/11.png b/front/public/images/large/BiomesOPlenty/flowers/11.png deleted file mode 100644 index e1392ca9ed..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/12.png b/front/public/images/large/BiomesOPlenty/flowers/12.png deleted file mode 100644 index 2d4fe87e41..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/13.png b/front/public/images/large/BiomesOPlenty/flowers/13.png deleted file mode 100644 index f3a938e350..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/15.png b/front/public/images/large/BiomesOPlenty/flowers/15.png deleted file mode 100644 index 1db233cd3d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/15.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/2.png b/front/public/images/large/BiomesOPlenty/flowers/2.png deleted file mode 100644 index 72c1f4ce9a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/3.png b/front/public/images/large/BiomesOPlenty/flowers/3.png deleted file mode 100644 index 25372bdf7d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/4.png b/front/public/images/large/BiomesOPlenty/flowers/4.png deleted file mode 100644 index 3eef7e90f3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/5.png b/front/public/images/large/BiomesOPlenty/flowers/5.png deleted file mode 100644 index 98955a5332..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/6.png b/front/public/images/large/BiomesOPlenty/flowers/6.png deleted file mode 100644 index aa4158b566..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/7.png b/front/public/images/large/BiomesOPlenty/flowers/7.png deleted file mode 100644 index 496a9decce..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/8.png b/front/public/images/large/BiomesOPlenty/flowers/8.png deleted file mode 100644 index bbb91d7ee4..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers/9.png b/front/public/images/large/BiomesOPlenty/flowers/9.png deleted file mode 100644 index fa14882bbc..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers/9.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/0.png b/front/public/images/large/BiomesOPlenty/flowers2/0.png deleted file mode 100644 index a3c12358fc..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/1.png b/front/public/images/large/BiomesOPlenty/flowers2/1.png deleted file mode 100644 index a46ae72ef1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/2.png b/front/public/images/large/BiomesOPlenty/flowers2/2.png deleted file mode 100644 index 5381937f0d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/3.png b/front/public/images/large/BiomesOPlenty/flowers2/3.png deleted file mode 100644 index 97eeacae12..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/4.png b/front/public/images/large/BiomesOPlenty/flowers2/4.png deleted file mode 100644 index df4ec289c3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/5.png b/front/public/images/large/BiomesOPlenty/flowers2/5.png deleted file mode 100644 index 3f3a74f8d3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/6.png b/front/public/images/large/BiomesOPlenty/flowers2/6.png deleted file mode 100644 index 6f29c4eda7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/7.png b/front/public/images/large/BiomesOPlenty/flowers2/7.png deleted file mode 100644 index 24b4c66a1a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/flowers2/8.png b/front/public/images/large/BiomesOPlenty/flowers2/8.png deleted file mode 100644 index 5a4970669b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/flowers2/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/0.png b/front/public/images/large/BiomesOPlenty/foliage/0.png deleted file mode 100644 index 18c6d6a550..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/1.png b/front/public/images/large/BiomesOPlenty/foliage/1.png deleted file mode 100644 index 827d555c53..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/10.png b/front/public/images/large/BiomesOPlenty/foliage/10.png deleted file mode 100644 index f61b2bf958..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/10.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/11.png b/front/public/images/large/BiomesOPlenty/foliage/11.png deleted file mode 100644 index 7ff4ee769e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/12.png b/front/public/images/large/BiomesOPlenty/foliage/12.png deleted file mode 100644 index 6f87b583a1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/13.png b/front/public/images/large/BiomesOPlenty/foliage/13.png deleted file mode 100644 index cbcf19141f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/14.png b/front/public/images/large/BiomesOPlenty/foliage/14.png deleted file mode 100644 index 5b429c20d4..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/14.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/15.png b/front/public/images/large/BiomesOPlenty/foliage/15.png deleted file mode 100644 index afde9d5122..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/15.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/2.png b/front/public/images/large/BiomesOPlenty/foliage/2.png deleted file mode 100644 index 2bf21ab12c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/3.png b/front/public/images/large/BiomesOPlenty/foliage/3.png deleted file mode 100644 index 7ab68492a1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/4.png b/front/public/images/large/BiomesOPlenty/foliage/4.png deleted file mode 100644 index 2662ecbee5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/5.png b/front/public/images/large/BiomesOPlenty/foliage/5.png deleted file mode 100644 index 62f1c590e9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/7.png b/front/public/images/large/BiomesOPlenty/foliage/7.png deleted file mode 100644 index 1afd87f4d9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/8.png b/front/public/images/large/BiomesOPlenty/foliage/8.png deleted file mode 100644 index 46d03b5ea3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/foliage/9.png b/front/public/images/large/BiomesOPlenty/foliage/9.png deleted file mode 100644 index 384491ddec..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/foliage/9.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/0.png b/front/public/images/large/BiomesOPlenty/food/0.png deleted file mode 100644 index 9eb8f30f4a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/1.png b/front/public/images/large/BiomesOPlenty/food/1.png deleted file mode 100644 index c117f9ab03..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/10.png b/front/public/images/large/BiomesOPlenty/food/10.png deleted file mode 100644 index 94ce0d235b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/10.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/11.png b/front/public/images/large/BiomesOPlenty/food/11.png deleted file mode 100644 index 68047a5d5e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/12.png b/front/public/images/large/BiomesOPlenty/food/12.png deleted file mode 100644 index cefa6a64fc..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/13.png b/front/public/images/large/BiomesOPlenty/food/13.png deleted file mode 100644 index a565f2f583..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/2.png b/front/public/images/large/BiomesOPlenty/food/2.png deleted file mode 100644 index 8f3645f1c3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/3.png b/front/public/images/large/BiomesOPlenty/food/3.png deleted file mode 100644 index 4847ffb90d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/4.png b/front/public/images/large/BiomesOPlenty/food/4.png deleted file mode 100644 index f10659f4f7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/5.png b/front/public/images/large/BiomesOPlenty/food/5.png deleted file mode 100644 index 4bec33635b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/6.png b/front/public/images/large/BiomesOPlenty/food/6.png deleted file mode 100644 index 62afaaa2c9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/8.png b/front/public/images/large/BiomesOPlenty/food/8.png deleted file mode 100644 index c4126be55e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/food/9.png b/front/public/images/large/BiomesOPlenty/food/9.png deleted file mode 100644 index 9a89c52fd9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/food/9.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/fruitBop/0.png b/front/public/images/large/BiomesOPlenty/fruitBop/0.png deleted file mode 100644 index 20ae17c2d8..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/fruitBop/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/fruitBop/1.png b/front/public/images/large/BiomesOPlenty/fruitBop/1.png deleted file mode 100644 index 4e89fdcad3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/fruitBop/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/fruitBop/2.png b/front/public/images/large/BiomesOPlenty/fruitBop/2.png deleted file mode 100644 index 394ef99a68..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/fruitBop/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/fruitBop/3.png b/front/public/images/large/BiomesOPlenty/fruitBop/3.png deleted file mode 100644 index 3f2f43d846..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/fruitBop/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/fruitBop/4.png b/front/public/images/large/BiomesOPlenty/fruitBop/4.png deleted file mode 100644 index d5b3ea5e00..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/fruitBop/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/0.png b/front/public/images/large/BiomesOPlenty/gemOre/0.png deleted file mode 100644 index ede0deb438..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/1.png b/front/public/images/large/BiomesOPlenty/gemOre/1.png deleted file mode 100644 index 5cff40ec3b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/10.png b/front/public/images/large/BiomesOPlenty/gemOre/10.png deleted file mode 100644 index 20976b165d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/10.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/11.png b/front/public/images/large/BiomesOPlenty/gemOre/11.png deleted file mode 100644 index 2b03e4c72b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/12.png b/front/public/images/large/BiomesOPlenty/gemOre/12.png deleted file mode 100644 index 05c6070ab3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/13.png b/front/public/images/large/BiomesOPlenty/gemOre/13.png deleted file mode 100644 index 2739adb907..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/14.png b/front/public/images/large/BiomesOPlenty/gemOre/14.png deleted file mode 100644 index c45f83d41e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/14.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/15.png b/front/public/images/large/BiomesOPlenty/gemOre/15.png deleted file mode 100644 index 1966f56047..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/15.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/2.png b/front/public/images/large/BiomesOPlenty/gemOre/2.png deleted file mode 100644 index cf3097867f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/3.png b/front/public/images/large/BiomesOPlenty/gemOre/3.png deleted file mode 100644 index 09a0c5fb4f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/4.png b/front/public/images/large/BiomesOPlenty/gemOre/4.png deleted file mode 100644 index f483f8adb6..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/5.png b/front/public/images/large/BiomesOPlenty/gemOre/5.png deleted file mode 100644 index 576383f9df..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/6.png b/front/public/images/large/BiomesOPlenty/gemOre/6.png deleted file mode 100644 index f83670f7e7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/7.png b/front/public/images/large/BiomesOPlenty/gemOre/7.png deleted file mode 100644 index 7b7b869e73..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/8.png b/front/public/images/large/BiomesOPlenty/gemOre/8.png deleted file mode 100644 index 900c8b74c3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gemOre/9.png b/front/public/images/large/BiomesOPlenty/gemOre/9.png deleted file mode 100644 index 4380152097..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gemOre/9.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/0.png b/front/public/images/large/BiomesOPlenty/gems/0.png deleted file mode 100644 index 047761d571..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/1.png b/front/public/images/large/BiomesOPlenty/gems/1.png deleted file mode 100644 index 0b4a86d085..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/2.png b/front/public/images/large/BiomesOPlenty/gems/2.png deleted file mode 100644 index 0e9571c4e2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/3.png b/front/public/images/large/BiomesOPlenty/gems/3.png deleted file mode 100644 index 7d424002be..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/4.png b/front/public/images/large/BiomesOPlenty/gems/4.png deleted file mode 100644 index 47c5d19af8..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/5.png b/front/public/images/large/BiomesOPlenty/gems/5.png deleted file mode 100644 index ac50726fc3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/6.png b/front/public/images/large/BiomesOPlenty/gems/6.png deleted file mode 100644 index e1a350389b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/gems/7.png b/front/public/images/large/BiomesOPlenty/gems/7.png deleted file mode 100644 index a1b96d80c5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/gems/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/grave/0.png b/front/public/images/large/BiomesOPlenty/grave/0.png deleted file mode 100644 index 9a3b27b48e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/grave/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hardDirt/0.png b/front/public/images/large/BiomesOPlenty/hardDirt/0.png deleted file mode 100644 index 2b7e2c65b8..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hardDirt/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hardIce/0.png b/front/public/images/large/BiomesOPlenty/hardIce/0.png deleted file mode 100644 index a83d5b5d05..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hardIce/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hardSand/0.png b/front/public/images/large/BiomesOPlenty/hardSand/0.png deleted file mode 100644 index 54157bed78..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hardSand/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hellBarkStairs/0.png b/front/public/images/large/BiomesOPlenty/hellBarkStairs/0.png deleted file mode 100644 index e5fcaab934..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hellBarkStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hell_blood/0.png b/front/public/images/large/BiomesOPlenty/hell_blood/0.png deleted file mode 100644 index 56ebc146cd..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hell_blood/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/helmetAmethyst/0.png b/front/public/images/large/BiomesOPlenty/helmetAmethyst/0.png deleted file mode 100644 index 79b0d6ddd9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/helmetAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/helmetMud/0.png b/front/public/images/large/BiomesOPlenty/helmetMud/0.png deleted file mode 100644 index a9784661c0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/helmetMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hive/0.png b/front/public/images/large/BiomesOPlenty/hive/0.png deleted file mode 100644 index f6a1a56f28..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hive/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hive/1.png b/front/public/images/large/BiomesOPlenty/hive/1.png deleted file mode 100644 index 0e46f8bcfa..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hive/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hive/2.png b/front/public/images/large/BiomesOPlenty/hive/2.png deleted file mode 100644 index 6c01629236..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hive/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hive/3.png b/front/public/images/large/BiomesOPlenty/hive/3.png deleted file mode 100644 index c667f69747..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hive/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hoeAmethyst/0.png b/front/public/images/large/BiomesOPlenty/hoeAmethyst/0.png deleted file mode 100644 index 7dce10e504..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hoeAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/hoeMud/0.png b/front/public/images/large/BiomesOPlenty/hoeMud/0.png deleted file mode 100644 index 1771447427..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/hoeMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/honey/0.png b/front/public/images/large/BiomesOPlenty/honey/0.png deleted file mode 100644 index af2445f004..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/honey/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/honeyBlock/0.png b/front/public/images/large/BiomesOPlenty/honeyBlock/0.png deleted file mode 100644 index d35c5dece5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/honeyBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/ivy/0.png b/front/public/images/large/BiomesOPlenty/ivy/0.png deleted file mode 100644 index 04ef8f05e7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/ivy/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/jacarandaStairs/0.png b/front/public/images/large/BiomesOPlenty/jacarandaStairs/0.png deleted file mode 100644 index 4a03178c6c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/jacarandaStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/jarEmpty/0.png b/front/public/images/large/BiomesOPlenty/jarEmpty/0.png deleted file mode 100644 index 657e95963f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/jarEmpty/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/jarFilled/0.png b/front/public/images/large/BiomesOPlenty/jarFilled/0.png deleted file mode 100644 index d2f67ac163..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/jarFilled/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/jarFilled/1.png b/front/public/images/large/BiomesOPlenty/jarFilled/1.png deleted file mode 100644 index b1ef50ea3b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/jarFilled/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/jarFilled/2.png b/front/public/images/large/BiomesOPlenty/jarFilled/2.png deleted file mode 100644 index e1678d5378..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/jarFilled/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves1/0.png b/front/public/images/large/BiomesOPlenty/leaves1/0.png deleted file mode 100644 index c605f42067..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves1/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves1/1.png b/front/public/images/large/BiomesOPlenty/leaves1/1.png deleted file mode 100644 index ceb1604d88..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves1/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves1/2.png b/front/public/images/large/BiomesOPlenty/leaves1/2.png deleted file mode 100644 index f729e9ff51..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves1/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves1/3.png b/front/public/images/large/BiomesOPlenty/leaves1/3.png deleted file mode 100644 index 62a1743430..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves1/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves2/0.png b/front/public/images/large/BiomesOPlenty/leaves2/0.png deleted file mode 100644 index c29de276d4..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves2/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves2/1.png b/front/public/images/large/BiomesOPlenty/leaves2/1.png deleted file mode 100644 index 8623dfc377..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves2/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves2/2.png b/front/public/images/large/BiomesOPlenty/leaves2/2.png deleted file mode 100644 index 04c3131925..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves2/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves2/3.png b/front/public/images/large/BiomesOPlenty/leaves2/3.png deleted file mode 100644 index 82a35c0571..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves2/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves3/0.png b/front/public/images/large/BiomesOPlenty/leaves3/0.png deleted file mode 100644 index 76fa04bae4..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves3/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves3/1.png b/front/public/images/large/BiomesOPlenty/leaves3/1.png deleted file mode 100644 index 4005a240b0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves3/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves3/2.png b/front/public/images/large/BiomesOPlenty/leaves3/2.png deleted file mode 100644 index 2cdfc9b212..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves3/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves3/3.png b/front/public/images/large/BiomesOPlenty/leaves3/3.png deleted file mode 100644 index 4231f9f6e2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves3/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves4/0.png b/front/public/images/large/BiomesOPlenty/leaves4/0.png deleted file mode 100644 index 06efb22133..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves4/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leaves4/1.png b/front/public/images/large/BiomesOPlenty/leaves4/1.png deleted file mode 100644 index 8d2d294dd5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leaves4/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leggingsAmethyst/0.png b/front/public/images/large/BiomesOPlenty/leggingsAmethyst/0.png deleted file mode 100644 index 428416198d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leggingsAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/leggingsMud/0.png b/front/public/images/large/BiomesOPlenty/leggingsMud/0.png deleted file mode 100644 index b6d4044aea..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/leggingsMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/lilyBop/0.png b/front/public/images/large/BiomesOPlenty/lilyBop/0.png deleted file mode 100644 index eb4232f3fa..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/lilyBop/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/lilyBop/1.png b/front/public/images/large/BiomesOPlenty/lilyBop/1.png deleted file mode 100644 index 27ab695fb4..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/lilyBop/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/lilyBop/2.png b/front/public/images/large/BiomesOPlenty/lilyBop/2.png deleted file mode 100644 index d57943ee68..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/lilyBop/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs1/0.png b/front/public/images/large/BiomesOPlenty/logs1/0.png deleted file mode 100644 index 80b79f301d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs1/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs1/1.png b/front/public/images/large/BiomesOPlenty/logs1/1.png deleted file mode 100644 index c5f29e8616..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs1/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs1/2.png b/front/public/images/large/BiomesOPlenty/logs1/2.png deleted file mode 100644 index ce0d2abc7d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs1/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs1/3.png b/front/public/images/large/BiomesOPlenty/logs1/3.png deleted file mode 100644 index 3017fa691c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs1/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs2/0.png b/front/public/images/large/BiomesOPlenty/logs2/0.png deleted file mode 100644 index d37699f606..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs2/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs2/1.png b/front/public/images/large/BiomesOPlenty/logs2/1.png deleted file mode 100644 index c11d16cbba..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs2/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs2/2.png b/front/public/images/large/BiomesOPlenty/logs2/2.png deleted file mode 100644 index b054f00602..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs2/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs2/3.png b/front/public/images/large/BiomesOPlenty/logs2/3.png deleted file mode 100644 index f0fc3353d0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs2/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs3/0.png b/front/public/images/large/BiomesOPlenty/logs3/0.png deleted file mode 100644 index 1f2ae0259a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs3/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs3/1.png b/front/public/images/large/BiomesOPlenty/logs3/1.png deleted file mode 100644 index 4afcbaf6db..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs3/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs3/2.png b/front/public/images/large/BiomesOPlenty/logs3/2.png deleted file mode 100644 index d7be7ef28c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs3/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs3/3.png b/front/public/images/large/BiomesOPlenty/logs3/3.png deleted file mode 100644 index 1789f8155d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs3/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs4/0.png b/front/public/images/large/BiomesOPlenty/logs4/0.png deleted file mode 100644 index 7cf1a9e384..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs4/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs4/1.png b/front/public/images/large/BiomesOPlenty/logs4/1.png deleted file mode 100644 index a8db725897..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs4/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs4/2.png b/front/public/images/large/BiomesOPlenty/logs4/2.png deleted file mode 100644 index 49d6d569e2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs4/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/logs4/3.png b/front/public/images/large/BiomesOPlenty/logs4/3.png deleted file mode 100644 index 8a6b2498a9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/logs4/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/longGrass/0.png b/front/public/images/large/BiomesOPlenty/longGrass/0.png deleted file mode 100644 index e05fb061b1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/longGrass/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/magicStairs/0.png b/front/public/images/large/BiomesOPlenty/magicStairs/0.png deleted file mode 100644 index 178d55c46d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/magicStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mahoganyStairs/0.png b/front/public/images/large/BiomesOPlenty/mahoganyStairs/0.png deleted file mode 100644 index 2584897c24..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mahoganyStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mangroveStairs/0.png b/front/public/images/large/BiomesOPlenty/mangroveStairs/0.png deleted file mode 100644 index 983ed57664..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mangroveStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/0.png b/front/public/images/large/BiomesOPlenty/misc/0.png deleted file mode 100644 index 3e5fff82b6..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/1.png b/front/public/images/large/BiomesOPlenty/misc/1.png deleted file mode 100644 index 7db26746a8..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/10.png b/front/public/images/large/BiomesOPlenty/misc/10.png deleted file mode 100644 index 04983cdbe5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/10.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/11.png b/front/public/images/large/BiomesOPlenty/misc/11.png deleted file mode 100644 index 52277f771c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/12.png b/front/public/images/large/BiomesOPlenty/misc/12.png deleted file mode 100644 index 2a7ab42d84..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/13.png b/front/public/images/large/BiomesOPlenty/misc/13.png deleted file mode 100644 index 6368593780..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/2.png b/front/public/images/large/BiomesOPlenty/misc/2.png deleted file mode 100644 index d075718a43..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/3.png b/front/public/images/large/BiomesOPlenty/misc/3.png deleted file mode 100644 index 2672b28811..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/4.png b/front/public/images/large/BiomesOPlenty/misc/4.png deleted file mode 100644 index 4c708a9e8a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/5.png b/front/public/images/large/BiomesOPlenty/misc/5.png deleted file mode 100644 index e6ae7d69fa..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/6.png b/front/public/images/large/BiomesOPlenty/misc/6.png deleted file mode 100644 index 6afc04d6c1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/7.png b/front/public/images/large/BiomesOPlenty/misc/7.png deleted file mode 100644 index 0c04c98c40..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/8.png b/front/public/images/large/BiomesOPlenty/misc/8.png deleted file mode 100644 index d8b0da0d67..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/misc/9.png b/front/public/images/large/BiomesOPlenty/misc/9.png deleted file mode 100644 index bc7511feb0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/misc/9.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/moss/0.png b/front/public/images/large/BiomesOPlenty/moss/0.png deleted file mode 100644 index a6dabf81e2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/moss/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mud/0.png b/front/public/images/large/BiomesOPlenty/mud/0.png deleted file mode 100644 index 33473bd5ea..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mud/1.png b/front/public/images/large/BiomesOPlenty/mud/1.png deleted file mode 100644 index 3158728981..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mud/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mudBricks/0.png b/front/public/images/large/BiomesOPlenty/mudBricks/0.png deleted file mode 100644 index 16f4416a8c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mudBricks/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mudBricksStairs/0.png b/front/public/images/large/BiomesOPlenty/mudBricksStairs/0.png deleted file mode 100644 index caebfc7d1b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mudBricksStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mudball/0.png b/front/public/images/large/BiomesOPlenty/mudball/0.png deleted file mode 100644 index f4e7328a52..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mudball/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mushrooms/0.png b/front/public/images/large/BiomesOPlenty/mushrooms/0.png deleted file mode 100644 index 64048cd522..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mushrooms/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mushrooms/1.png b/front/public/images/large/BiomesOPlenty/mushrooms/1.png deleted file mode 100644 index 8692ddc55a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mushrooms/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mushrooms/2.png b/front/public/images/large/BiomesOPlenty/mushrooms/2.png deleted file mode 100644 index 94bb5ea385..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mushrooms/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mushrooms/3.png b/front/public/images/large/BiomesOPlenty/mushrooms/3.png deleted file mode 100644 index 855c15585c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mushrooms/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mushrooms/4.png b/front/public/images/large/BiomesOPlenty/mushrooms/4.png deleted file mode 100644 index 97ef41e9df..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mushrooms/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/mushrooms/5.png b/front/public/images/large/BiomesOPlenty/mushrooms/5.png deleted file mode 100644 index a9c73110f3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/mushrooms/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopDirt/0.png b/front/public/images/large/BiomesOPlenty/newBopDirt/0.png deleted file mode 100644 index 1fa98d06d8..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopDirt/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopDirt/1.png b/front/public/images/large/BiomesOPlenty/newBopDirt/1.png deleted file mode 100644 index 1e7d64b935..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopDirt/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopDirt/2.png b/front/public/images/large/BiomesOPlenty/newBopDirt/2.png deleted file mode 100644 index 703090e063..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopDirt/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopDirt/3.png b/front/public/images/large/BiomesOPlenty/newBopDirt/3.png deleted file mode 100644 index b2d40a5e33..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopDirt/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopDirt/4.png b/front/public/images/large/BiomesOPlenty/newBopDirt/4.png deleted file mode 100644 index 802f83871c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopDirt/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopDirt/5.png b/front/public/images/large/BiomesOPlenty/newBopDirt/5.png deleted file mode 100644 index f36013fa1d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopDirt/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopFarmland/0.png b/front/public/images/large/BiomesOPlenty/newBopFarmland/0.png deleted file mode 100644 index be9888f9b5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopFarmland/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopFarmland/1.png b/front/public/images/large/BiomesOPlenty/newBopFarmland/1.png deleted file mode 100644 index 795669d0cf..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopFarmland/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopFarmland/2.png b/front/public/images/large/BiomesOPlenty/newBopFarmland/2.png deleted file mode 100644 index 57057c5931..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopFarmland/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopFarmland/3.png b/front/public/images/large/BiomesOPlenty/newBopFarmland/3.png deleted file mode 100644 index be9888f9b5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopFarmland/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopFarmland/4.png b/front/public/images/large/BiomesOPlenty/newBopFarmland/4.png deleted file mode 100644 index be9888f9b5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopFarmland/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopFarmland/5.png b/front/public/images/large/BiomesOPlenty/newBopFarmland/5.png deleted file mode 100644 index be9888f9b5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopFarmland/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopGrass/0.png b/front/public/images/large/BiomesOPlenty/newBopGrass/0.png deleted file mode 100644 index dbd94d80fc..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopGrass/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopGrass/1.png b/front/public/images/large/BiomesOPlenty/newBopGrass/1.png deleted file mode 100644 index c5b34892b2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopGrass/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/newBopGrass/2.png b/front/public/images/large/BiomesOPlenty/newBopGrass/2.png deleted file mode 100644 index 070adfa083..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/newBopGrass/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/originGrass/0.png b/front/public/images/large/BiomesOPlenty/originGrass/0.png deleted file mode 100644 index 5036e1c08d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/originGrass/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/overgrownNetherrack/0.png b/front/public/images/large/BiomesOPlenty/overgrownNetherrack/0.png deleted file mode 100644 index 8c009bc62b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/overgrownNetherrack/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/palmStairs/0.png b/front/public/images/large/BiomesOPlenty/palmStairs/0.png deleted file mode 100644 index 31b4c7fc14..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/palmStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/persimmonLeaves/0.png b/front/public/images/large/BiomesOPlenty/persimmonLeaves/0.png deleted file mode 100644 index 69818b00f7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/persimmonLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/petals/0.png b/front/public/images/large/BiomesOPlenty/petals/0.png deleted file mode 100644 index 0de697f326..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/petals/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/petals/1.png b/front/public/images/large/BiomesOPlenty/petals/1.png deleted file mode 100644 index 805d881582..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/petals/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/pickaxeAmethyst/0.png b/front/public/images/large/BiomesOPlenty/pickaxeAmethyst/0.png deleted file mode 100644 index 89868ba41b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/pickaxeAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/pickaxeMud/0.png b/front/public/images/large/BiomesOPlenty/pickaxeMud/0.png deleted file mode 100644 index f248e7c5a9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/pickaxeMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/pineStairs/0.png b/front/public/images/large/BiomesOPlenty/pineStairs/0.png deleted file mode 100644 index 3106ef7b65..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/pineStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/0.png b/front/public/images/large/BiomesOPlenty/planks/0.png deleted file mode 100644 index 4532d12974..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/1.png b/front/public/images/large/BiomesOPlenty/planks/1.png deleted file mode 100644 index 7890a4ac4c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/10.png b/front/public/images/large/BiomesOPlenty/planks/10.png deleted file mode 100644 index 3a34a8287f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/10.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/11.png b/front/public/images/large/BiomesOPlenty/planks/11.png deleted file mode 100644 index fb3033d3f0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/12.png b/front/public/images/large/BiomesOPlenty/planks/12.png deleted file mode 100644 index cb962b9231..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/13.png b/front/public/images/large/BiomesOPlenty/planks/13.png deleted file mode 100644 index e23adffdad..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/14.png b/front/public/images/large/BiomesOPlenty/planks/14.png deleted file mode 100644 index 098ccc05de..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/14.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/2.png b/front/public/images/large/BiomesOPlenty/planks/2.png deleted file mode 100644 index 16a10b28b0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/3.png b/front/public/images/large/BiomesOPlenty/planks/3.png deleted file mode 100644 index 9852b5a9db..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/4.png b/front/public/images/large/BiomesOPlenty/planks/4.png deleted file mode 100644 index 5e8a6542e5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/5.png b/front/public/images/large/BiomesOPlenty/planks/5.png deleted file mode 100644 index b4b3503d6d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/6.png b/front/public/images/large/BiomesOPlenty/planks/6.png deleted file mode 100644 index 459680e2c1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/7.png b/front/public/images/large/BiomesOPlenty/planks/7.png deleted file mode 100644 index 432dcad435..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/8.png b/front/public/images/large/BiomesOPlenty/planks/8.png deleted file mode 100644 index 73908f4c34..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/planks/9.png b/front/public/images/large/BiomesOPlenty/planks/9.png deleted file mode 100644 index 58c3d0ddc9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/planks/9.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/0.png b/front/public/images/large/BiomesOPlenty/plants/0.png deleted file mode 100644 index b153755e71..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/1.png b/front/public/images/large/BiomesOPlenty/plants/1.png deleted file mode 100644 index 62b92999cf..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/12.png b/front/public/images/large/BiomesOPlenty/plants/12.png deleted file mode 100644 index 4f74e3ba92..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/13.png b/front/public/images/large/BiomesOPlenty/plants/13.png deleted file mode 100644 index 183a10556d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/14.png b/front/public/images/large/BiomesOPlenty/plants/14.png deleted file mode 100644 index f59775d518..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/14.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/15.png b/front/public/images/large/BiomesOPlenty/plants/15.png deleted file mode 100644 index b7527b048e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/15.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/2.png b/front/public/images/large/BiomesOPlenty/plants/2.png deleted file mode 100644 index d1fe7ee573..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/3.png b/front/public/images/large/BiomesOPlenty/plants/3.png deleted file mode 100644 index d559d6a36f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/4.png b/front/public/images/large/BiomesOPlenty/plants/4.png deleted file mode 100644 index de619e6365..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/5.png b/front/public/images/large/BiomesOPlenty/plants/5.png deleted file mode 100644 index 235dbf13eb..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/6.png b/front/public/images/large/BiomesOPlenty/plants/6.png deleted file mode 100644 index d189076b12..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/7.png b/front/public/images/large/BiomesOPlenty/plants/7.png deleted file mode 100644 index a07843ba6d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/plants/8.png b/front/public/images/large/BiomesOPlenty/plants/8.png deleted file mode 100644 index b4915dd67d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/plants/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/poison/0.png b/front/public/images/large/BiomesOPlenty/poison/0.png deleted file mode 100644 index aa6f27afe0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/poison/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/record_corruption/0.png b/front/public/images/large/BiomesOPlenty/record_corruption/0.png deleted file mode 100644 index 2daceddfb6..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/record_corruption/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/record_wanderer/0.png b/front/public/images/large/BiomesOPlenty/record_wanderer/0.png deleted file mode 100644 index 385a30b529..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/record_wanderer/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/redwoodStairs/0.png b/front/public/images/large/BiomesOPlenty/redwoodStairs/0.png deleted file mode 100644 index e19a7b663c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/redwoodStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/rocks/0.png b/front/public/images/large/BiomesOPlenty/rocks/0.png deleted file mode 100644 index eab204d5e3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/rocks/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/rocks/1.png b/front/public/images/large/BiomesOPlenty/rocks/1.png deleted file mode 100644 index 02a3d58315..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/rocks/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/rocks/2.png b/front/public/images/large/BiomesOPlenty/rocks/2.png deleted file mode 100644 index 9ad2c2eb6e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/rocks/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/rocks/3.png b/front/public/images/large/BiomesOPlenty/rocks/3.png deleted file mode 100644 index 62b0bdc0e3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/rocks/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/rocks/4.png b/front/public/images/large/BiomesOPlenty/rocks/4.png deleted file mode 100644 index c4ccd48eb3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/rocks/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/rocks/5.png b/front/public/images/large/BiomesOPlenty/rocks/5.png deleted file mode 100644 index 6f66ff0513..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/rocks/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/sacredoakStairs/0.png b/front/public/images/large/BiomesOPlenty/sacredoakStairs/0.png deleted file mode 100644 index d1bd2cf0f2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/sacredoakStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/0.png b/front/public/images/large/BiomesOPlenty/saplings/0.png deleted file mode 100644 index 20a2d0249d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/1.png b/front/public/images/large/BiomesOPlenty/saplings/1.png deleted file mode 100644 index feae235d46..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/10.png b/front/public/images/large/BiomesOPlenty/saplings/10.png deleted file mode 100644 index c3c3de43d3..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/10.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/11.png b/front/public/images/large/BiomesOPlenty/saplings/11.png deleted file mode 100644 index 01b8537683..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/11.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/12.png b/front/public/images/large/BiomesOPlenty/saplings/12.png deleted file mode 100644 index 112f7478da..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/12.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/13.png b/front/public/images/large/BiomesOPlenty/saplings/13.png deleted file mode 100644 index f3cb606085..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/13.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/14.png b/front/public/images/large/BiomesOPlenty/saplings/14.png deleted file mode 100644 index a966fa228a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/14.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/15.png b/front/public/images/large/BiomesOPlenty/saplings/15.png deleted file mode 100644 index 26714de6c1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/15.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/2.png b/front/public/images/large/BiomesOPlenty/saplings/2.png deleted file mode 100644 index 0ebf850ff8..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/3.png b/front/public/images/large/BiomesOPlenty/saplings/3.png deleted file mode 100644 index e4fa53f3d0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/4.png b/front/public/images/large/BiomesOPlenty/saplings/4.png deleted file mode 100644 index ee63b522b9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/5.png b/front/public/images/large/BiomesOPlenty/saplings/5.png deleted file mode 100644 index 0c5947dfde..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/6.png b/front/public/images/large/BiomesOPlenty/saplings/6.png deleted file mode 100644 index 9094877508..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/7.png b/front/public/images/large/BiomesOPlenty/saplings/7.png deleted file mode 100644 index 2d2372e067..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/8.png b/front/public/images/large/BiomesOPlenty/saplings/8.png deleted file mode 100644 index 61d3cde6c0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/8.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/saplings/9.png b/front/public/images/large/BiomesOPlenty/saplings/9.png deleted file mode 100644 index 0af28298bd..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/saplings/9.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/scytheAmethyst/0.png b/front/public/images/large/BiomesOPlenty/scytheAmethyst/0.png deleted file mode 100644 index 24490d025e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/scytheAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/scytheDiamond/0.png b/front/public/images/large/BiomesOPlenty/scytheDiamond/0.png deleted file mode 100644 index b89be2f18e..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/scytheDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/scytheGold/0.png b/front/public/images/large/BiomesOPlenty/scytheGold/0.png deleted file mode 100644 index 5188b5debe..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/scytheGold/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/scytheIron/0.png b/front/public/images/large/BiomesOPlenty/scytheIron/0.png deleted file mode 100644 index e2e9f7b409..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/scytheIron/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/scytheMud/0.png b/front/public/images/large/BiomesOPlenty/scytheMud/0.png deleted file mode 100644 index 3721fc55fe..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/scytheMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/scytheStone/0.png b/front/public/images/large/BiomesOPlenty/scytheStone/0.png deleted file mode 100644 index d40dc8628f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/scytheStone/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/scytheWood/0.png b/front/public/images/large/BiomesOPlenty/scytheWood/0.png deleted file mode 100644 index d7ff8b86eb..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/scytheWood/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/shovelAmethyst/0.png b/front/public/images/large/BiomesOPlenty/shovelAmethyst/0.png deleted file mode 100644 index cfdc5e0753..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/shovelAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/shovelMud/0.png b/front/public/images/large/BiomesOPlenty/shovelMud/0.png deleted file mode 100644 index 665562a15f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/shovelMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/stoneDoubleSlab/0.png b/front/public/images/large/BiomesOPlenty/stoneDoubleSlab/0.png deleted file mode 100644 index 16f4416a8c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/stoneDoubleSlab/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/stoneFormations/0.png b/front/public/images/large/BiomesOPlenty/stoneFormations/0.png deleted file mode 100644 index ceb547fe89..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/stoneFormations/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/stoneFormations/1.png b/front/public/images/large/BiomesOPlenty/stoneFormations/1.png deleted file mode 100644 index 87830436fb..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/stoneFormations/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/stoneSingleSlab/0.png b/front/public/images/large/BiomesOPlenty/stoneSingleSlab/0.png deleted file mode 100644 index d26eb17c10..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/stoneSingleSlab/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/swordAmethyst/0.png b/front/public/images/large/BiomesOPlenty/swordAmethyst/0.png deleted file mode 100644 index 4fa816e4db..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/swordAmethyst/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/swordMud/0.png b/front/public/images/large/BiomesOPlenty/swordMud/0.png deleted file mode 100644 index 8a4c6bd2ac..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/swordMud/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/treeMoss/0.png b/front/public/images/large/BiomesOPlenty/treeMoss/0.png deleted file mode 100644 index c6325628c8..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/treeMoss/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/turnip/0.png b/front/public/images/large/BiomesOPlenty/turnip/0.png deleted file mode 100644 index 1d210984e6..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/turnip/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/turnipSeeds/0.png b/front/public/images/large/BiomesOPlenty/turnipSeeds/0.png deleted file mode 100644 index d7d6d7e446..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/turnipSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/wadingBoots/0.png b/front/public/images/large/BiomesOPlenty/wadingBoots/0.png deleted file mode 100644 index f88211442d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/wadingBoots/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/willow/0.png b/front/public/images/large/BiomesOPlenty/willow/0.png deleted file mode 100644 index 527d23b32b..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/willow/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/willowStairs/0.png b/front/public/images/large/BiomesOPlenty/willowStairs/0.png deleted file mode 100644 index f6f94fbff9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/willowStairs/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/wisteria/0.png b/front/public/images/large/BiomesOPlenty/wisteria/0.png deleted file mode 100644 index f76ab42c4a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/wisteria/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/0.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/0.png deleted file mode 100644 index 4532d12974..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/1.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/1.png deleted file mode 100644 index 7890a4ac4c..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/2.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/2.png deleted file mode 100644 index 16a10b28b0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/3.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/3.png deleted file mode 100644 index 9852b5a9db..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/4.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/4.png deleted file mode 100644 index 5e8a6542e5..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/5.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/5.png deleted file mode 100644 index b4b3503d6d..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/6.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/6.png deleted file mode 100644 index 459680e2c1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/7.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/7.png deleted file mode 100644 index 432dcad435..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab1/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/0.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/0.png deleted file mode 100644 index 73908f4c34..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/1.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/1.png deleted file mode 100644 index 58c3d0ddc9..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/2.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/2.png deleted file mode 100644 index fb3033d3f0..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/3.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/3.png deleted file mode 100644 index cb962b9231..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/4.png b/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/4.png deleted file mode 100644 index e23adffdad..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenDoubleSlab2/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/0.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/0.png deleted file mode 100644 index 12b47c17d1..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/1.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/1.png deleted file mode 100644 index 871b517361..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/2.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/2.png deleted file mode 100644 index 00e6860d19..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/3.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/3.png deleted file mode 100644 index 06da5d21f2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/4.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/4.png deleted file mode 100644 index a20de4452a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/4.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/5.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/5.png deleted file mode 100644 index b477bcd118..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/5.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/6.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/6.png deleted file mode 100644 index e3f74dca7a..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/6.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/7.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/7.png deleted file mode 100644 index 1bd43f175f..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab1/7.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/0.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/0.png deleted file mode 100644 index 9481637749..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/0.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/1.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/1.png deleted file mode 100644 index 21f6abefe7..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/1.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/2.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/2.png deleted file mode 100644 index b1c3db1efe..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/2.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/3.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/3.png deleted file mode 100644 index 66c62180b2..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/3.png and /dev/null differ diff --git a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/4.png b/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/4.png deleted file mode 100644 index b433f01243..0000000000 Binary files a/front/public/images/large/BiomesOPlenty/woodenSingleSlab2/4.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/amorphic_catalyst/0.png b/front/public/images/large/BloodArsenal/amorphic_catalyst/0.png deleted file mode 100644 index 71519f3f07..0000000000 Binary files a/front/public/images/large/BloodArsenal/amorphic_catalyst/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/block_burned_string/0.png b/front/public/images/large/BloodArsenal/block_burned_string/0.png deleted file mode 100644 index 4e9902e7dc..0000000000 Binary files a/front/public/images/large/BloodArsenal/block_burned_string/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_burned_string/0.png b/front/public/images/large/BloodArsenal/blood_burned_string/0.png deleted file mode 100644 index 73de2cea1f..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_burned_string/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_cake/0.png b/front/public/images/large/BloodArsenal/blood_cake/0.png deleted file mode 100644 index e2304f69f8..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_cake/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_cookie/0.png b/front/public/images/large/BloodArsenal/blood_cookie/0.png deleted file mode 100644 index 3c28f2ccbc..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_cookie/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_diamond/0.png b/front/public/images/large/BloodArsenal/blood_diamond/0.png deleted file mode 100644 index 3f19b2e734..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_axe_diamond/0.png b/front/public/images/large/BloodArsenal/blood_infused_axe_diamond/0.png deleted file mode 100644 index f8e5851acf..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_axe_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_axe_iron/0.png b/front/public/images/large/BloodArsenal/blood_infused_axe_iron/0.png deleted file mode 100644 index a270b1e391..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_axe_iron/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_axe_wood/0.png b/front/public/images/large/BloodArsenal/blood_infused_axe_wood/0.png deleted file mode 100644 index b55a22734a..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_axe_wood/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_diamond_active/0.png b/front/public/images/large/BloodArsenal/blood_infused_diamond_active/0.png deleted file mode 100644 index 3458e5eaef..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_diamond_active/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_diamond_block/0.png b/front/public/images/large/BloodArsenal/blood_infused_diamond_block/0.png deleted file mode 100644 index 7f7ffe1897..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_diamond_block/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_diamond_bound/0.png b/front/public/images/large/BloodArsenal/blood_infused_diamond_bound/0.png deleted file mode 100644 index 914bf25089..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_diamond_bound/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_diamond_unactive/0.png b/front/public/images/large/BloodArsenal/blood_infused_diamond_unactive/0.png deleted file mode 100644 index e464da7739..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_diamond_unactive/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_glowstone/0.png b/front/public/images/large/BloodArsenal/blood_infused_glowstone/0.png deleted file mode 100644 index 8bbf41fbe8..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_glowstone/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_glowstone_dust/0.png b/front/public/images/large/BloodArsenal/blood_infused_glowstone_dust/0.png deleted file mode 100644 index a20b317e9d..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_glowstone_dust/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_iron/0.png b/front/public/images/large/BloodArsenal/blood_infused_iron/0.png deleted file mode 100644 index 1e6f6f5273..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_iron/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_iron_block/0.png b/front/public/images/large/BloodArsenal/blood_infused_iron_block/0.png deleted file mode 100644 index 1107d1b7e1..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_iron_block/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_pickaxe_diamond/0.png b/front/public/images/large/BloodArsenal/blood_infused_pickaxe_diamond/0.png deleted file mode 100644 index d3e4c3c0a5..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_pickaxe_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_pickaxe_iron/0.png b/front/public/images/large/BloodArsenal/blood_infused_pickaxe_iron/0.png deleted file mode 100644 index 9dd2d8f295..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_pickaxe_iron/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_pickaxe_wood/0.png b/front/public/images/large/BloodArsenal/blood_infused_pickaxe_wood/0.png deleted file mode 100644 index 7acde47f4b..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_pickaxe_wood/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_planks/0.png b/front/public/images/large/BloodArsenal/blood_infused_planks/0.png deleted file mode 100644 index 67d008829b..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_planks/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_shovel_diamond/0.png b/front/public/images/large/BloodArsenal/blood_infused_shovel_diamond/0.png deleted file mode 100644 index c029884207..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_shovel_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_shovel_iron/0.png b/front/public/images/large/BloodArsenal/blood_infused_shovel_iron/0.png deleted file mode 100644 index 615705ab03..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_shovel_iron/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_shovel_wood/0.png b/front/public/images/large/BloodArsenal/blood_infused_shovel_wood/0.png deleted file mode 100644 index 6d91a05e4d..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_shovel_wood/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_stick/0.png b/front/public/images/large/BloodArsenal/blood_infused_stick/0.png deleted file mode 100644 index 2b7875d954..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_stick/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_sword_diamond/0.png b/front/public/images/large/BloodArsenal/blood_infused_sword_diamond/0.png deleted file mode 100644 index 0c6833fcff..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_sword_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_sword_iron/0.png b/front/public/images/large/BloodArsenal/blood_infused_sword_iron/0.png deleted file mode 100644 index 071089f579..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_sword_iron/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_sword_wood/0.png b/front/public/images/large/BloodArsenal/blood_infused_sword_wood/0.png deleted file mode 100644 index 704907759e..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_sword_wood/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_infused_wood/0.png b/front/public/images/large/BloodArsenal/blood_infused_wood/0.png deleted file mode 100644 index d06d60a1d3..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_infused_wood/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_lamp/0.png b/front/public/images/large/BloodArsenal/blood_lamp/0.png deleted file mode 100644 index 981e0dccc3..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_lamp/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_money/0.png b/front/public/images/large/BloodArsenal/blood_money/0.png deleted file mode 100644 index c3bba34314..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_money/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_money/1.png b/front/public/images/large/BloodArsenal/blood_money/1.png deleted file mode 100644 index 53754f1bd9..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_money/1.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_money/2.png b/front/public/images/large/BloodArsenal/blood_money/2.png deleted file mode 100644 index 9b61f553c0..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_money/2.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_money/3.png b/front/public/images/large/BloodArsenal/blood_money/3.png deleted file mode 100644 index 0518110f84..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_money/3.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_orange/0.png b/front/public/images/large/BloodArsenal/blood_orange/0.png deleted file mode 100644 index 5579dd3feb..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_orange/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stained_glass/0.png b/front/public/images/large/BloodArsenal/blood_stained_glass/0.png deleted file mode 100644 index 548ba47a92..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stained_glass/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stained_ice/0.png b/front/public/images/large/BloodArsenal/blood_stained_ice/0.png deleted file mode 100644 index 30d18ef9c6..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stained_ice/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stained_ice_packed/0.png b/front/public/images/large/BloodArsenal/blood_stained_ice_packed/0.png deleted file mode 100644 index 6045df45fa..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stained_ice_packed/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stone/0.png b/front/public/images/large/BloodArsenal/blood_stone/0.png deleted file mode 100644 index 6900144f70..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stone/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stone/1.png b/front/public/images/large/BloodArsenal/blood_stone/1.png deleted file mode 100644 index 551ea2cdd8..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stone/1.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stone/2.png b/front/public/images/large/BloodArsenal/blood_stone/2.png deleted file mode 100644 index f120918cdb..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stone/2.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stone/3.png b/front/public/images/large/BloodArsenal/blood_stone/3.png deleted file mode 100644 index 54eefafd46..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stone/3.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_stone/4.png b/front/public/images/large/BloodArsenal/blood_stone/4.png deleted file mode 100644 index 5c973f4a72..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_stone/4.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_tnt/0.png b/front/public/images/large/BloodArsenal/blood_tnt/0.png deleted file mode 100644 index afeb5a1751..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_tnt/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/blood_torch/0.png b/front/public/images/large/BloodArsenal/blood_torch/0.png deleted file mode 100644 index 5470a4d48a..0000000000 Binary files a/front/public/images/large/BloodArsenal/blood_torch/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_bow/0.png b/front/public/images/large/BloodArsenal/bound_bow/0.png deleted file mode 100644 index f73798eaf0..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_bow/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_diamond_shard/0.png b/front/public/images/large/BloodArsenal/bound_diamond_shard/0.png deleted file mode 100644 index e1b3c594ad..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_diamond_shard/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_diamond_shard/1.png b/front/public/images/large/BloodArsenal/bound_diamond_shard/1.png deleted file mode 100644 index 67e597f413..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_diamond_shard/1.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_diamond_shard/2.png b/front/public/images/large/BloodArsenal/bound_diamond_shard/2.png deleted file mode 100644 index 498b2a4247..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_diamond_shard/2.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_diamond_shard/3.png b/front/public/images/large/BloodArsenal/bound_diamond_shard/3.png deleted file mode 100644 index e74208b17e..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_diamond_shard/3.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_diamond_shard/4.png b/front/public/images/large/BloodArsenal/bound_diamond_shard/4.png deleted file mode 100644 index 442de845d7..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_diamond_shard/4.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_diamond_shard/5.png b/front/public/images/large/BloodArsenal/bound_diamond_shard/5.png deleted file mode 100644 index 40ea0237e2..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_diamond_shard/5.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_diamond_shard/6.png b/front/public/images/large/BloodArsenal/bound_diamond_shard/6.png deleted file mode 100644 index d8e9d7b094..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_diamond_shard/6.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_igniter/0.png b/front/public/images/large/BloodArsenal/bound_igniter/0.png deleted file mode 100644 index 5227a0b830..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_igniter/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_shears/0.png b/front/public/images/large/BloodArsenal/bound_shears/0.png deleted file mode 100644 index 90d1b9a47d..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_shears/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/bound_sickle/0.png b/front/public/images/large/BloodArsenal/bound_sickle/0.png deleted file mode 100644 index d333130221..0000000000 Binary files a/front/public/images/large/BloodArsenal/bound_sickle/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/compacted_mrs/0.png b/front/public/images/large/BloodArsenal/compacted_mrs/0.png deleted file mode 100644 index 640d8ff8a2..0000000000 Binary files a/front/public/images/large/BloodArsenal/compacted_mrs/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/compacter/0.png b/front/public/images/large/BloodArsenal/compacter/0.png deleted file mode 100644 index 5e8de2d7e8..0000000000 Binary files a/front/public/images/large/BloodArsenal/compacter/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/glass_boots/0.png b/front/public/images/large/BloodArsenal/glass_boots/0.png deleted file mode 100644 index 008a27efc5..0000000000 Binary files a/front/public/images/large/BloodArsenal/glass_boots/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/glass_chestplate/0.png b/front/public/images/large/BloodArsenal/glass_chestplate/0.png deleted file mode 100644 index e99b032274..0000000000 Binary files a/front/public/images/large/BloodArsenal/glass_chestplate/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/glass_dagger_of_sacrifice/0.png b/front/public/images/large/BloodArsenal/glass_dagger_of_sacrifice/0.png deleted file mode 100644 index 72a7592b39..0000000000 Binary files a/front/public/images/large/BloodArsenal/glass_dagger_of_sacrifice/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/glass_helmet/0.png b/front/public/images/large/BloodArsenal/glass_helmet/0.png deleted file mode 100644 index d0d5973fca..0000000000 Binary files a/front/public/images/large/BloodArsenal/glass_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/glass_leggings/0.png b/front/public/images/large/BloodArsenal/glass_leggings/0.png deleted file mode 100644 index ab70fff32e..0000000000 Binary files a/front/public/images/large/BloodArsenal/glass_leggings/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/glass_sacrificial_dagger/0.png b/front/public/images/large/BloodArsenal/glass_sacrificial_dagger/0.png deleted file mode 100644 index 77acf1cc5b..0000000000 Binary files a/front/public/images/large/BloodArsenal/glass_sacrificial_dagger/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/glass_shard/0.png b/front/public/images/large/BloodArsenal/glass_shard/0.png deleted file mode 100644 index 0a4914191e..0000000000 Binary files a/front/public/images/large/BloodArsenal/glass_shard/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/heart/0.png b/front/public/images/large/BloodArsenal/heart/0.png deleted file mode 100644 index 6be18f0ed4..0000000000 Binary files a/front/public/images/large/BloodArsenal/heart/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/item_blood_cake/0.png b/front/public/images/large/BloodArsenal/item_blood_cake/0.png deleted file mode 100644 index 5b267b1b5d..0000000000 Binary files a/front/public/images/large/BloodArsenal/item_blood_cake/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/juice_and_cookies/0.png b/front/public/images/large/BloodArsenal/juice_and_cookies/0.png deleted file mode 100644 index 20405f59d7..0000000000 Binary files a/front/public/images/large/BloodArsenal/juice_and_cookies/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/life_imbued_boots/0.png b/front/public/images/large/BloodArsenal/life_imbued_boots/0.png deleted file mode 100644 index 7025d454c7..0000000000 Binary files a/front/public/images/large/BloodArsenal/life_imbued_boots/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/life_imbued_chestplate/0.png b/front/public/images/large/BloodArsenal/life_imbued_chestplate/0.png deleted file mode 100644 index df4c10491e..0000000000 Binary files a/front/public/images/large/BloodArsenal/life_imbued_chestplate/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/life_imbued_helmet/0.png b/front/public/images/large/BloodArsenal/life_imbued_helmet/0.png deleted file mode 100644 index 687afc4e2f..0000000000 Binary files a/front/public/images/large/BloodArsenal/life_imbued_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/life_imbued_leggings/0.png b/front/public/images/large/BloodArsenal/life_imbued_leggings/0.png deleted file mode 100644 index 57eb6e3730..0000000000 Binary files a/front/public/images/large/BloodArsenal/life_imbued_leggings/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/life_infuser/0.png b/front/public/images/large/BloodArsenal/life_infuser/0.png deleted file mode 100644 index 4c4fe30e8c..0000000000 Binary files a/front/public/images/large/BloodArsenal/life_infuser/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/lp_materializer/0.png b/front/public/images/large/BloodArsenal/lp_materializer/0.png deleted file mode 100644 index 4fcb1efa1a..0000000000 Binary files a/front/public/images/large/BloodArsenal/lp_materializer/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/orange_juice/0.png b/front/public/images/large/BloodArsenal/orange_juice/0.png deleted file mode 100644 index 8f1c8961f1..0000000000 Binary files a/front/public/images/large/BloodArsenal/orange_juice/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/portable_altar/0.png b/front/public/images/large/BloodArsenal/portable_altar/0.png deleted file mode 100644 index 290bbae0e5..0000000000 Binary files a/front/public/images/large/BloodArsenal/portable_altar/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/sigil_of_augmented_holding/0.png b/front/public/images/large/BloodArsenal/sigil_of_augmented_holding/0.png deleted file mode 100644 index 1d3bac0d13..0000000000 Binary files a/front/public/images/large/BloodArsenal/sigil_of_augmented_holding/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/sigil_of_divinity/0.png b/front/public/images/large/BloodArsenal/sigil_of_divinity/0.png deleted file mode 100644 index 640ddf945a..0000000000 Binary files a/front/public/images/large/BloodArsenal/sigil_of_divinity/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/sigil_of_ender/0.png b/front/public/images/large/BloodArsenal/sigil_of_ender/0.png deleted file mode 100644 index 440f0cb0e8..0000000000 Binary files a/front/public/images/large/BloodArsenal/sigil_of_ender/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/sigil_of_lightning/0.png b/front/public/images/large/BloodArsenal/sigil_of_lightning/0.png deleted file mode 100644 index e1d7b0896d..0000000000 Binary files a/front/public/images/large/BloodArsenal/sigil_of_lightning/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/sigil_of_swimming/0.png b/front/public/images/large/BloodArsenal/sigil_of_swimming/0.png deleted file mode 100644 index 728cb7374c..0000000000 Binary files a/front/public/images/large/BloodArsenal/sigil_of_swimming/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/soul_booster/0.png b/front/public/images/large/BloodArsenal/soul_booster/0.png deleted file mode 100644 index 452d3433dc..0000000000 Binary files a/front/public/images/large/BloodArsenal/soul_booster/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/soul_fragment/0.png b/front/public/images/large/BloodArsenal/soul_fragment/0.png deleted file mode 100644 index eef1b05e03..0000000000 Binary files a/front/public/images/large/BloodArsenal/soul_fragment/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/soul_nullifier/0.png b/front/public/images/large/BloodArsenal/soul_nullifier/0.png deleted file mode 100644 index 34a4322b5a..0000000000 Binary files a/front/public/images/large/BloodArsenal/soul_nullifier/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/transparent_orb/0.png b/front/public/images/large/BloodArsenal/transparent_orb/0.png deleted file mode 100644 index 201048a1ec..0000000000 Binary files a/front/public/images/large/BloodArsenal/transparent_orb/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/vampire_boots/0.png b/front/public/images/large/BloodArsenal/vampire_boots/0.png deleted file mode 100644 index 62a7359a16..0000000000 Binary files a/front/public/images/large/BloodArsenal/vampire_boots/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/vampire_cape/0.png b/front/public/images/large/BloodArsenal/vampire_cape/0.png deleted file mode 100644 index a46339c42d..0000000000 Binary files a/front/public/images/large/BloodArsenal/vampire_cape/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/vampire_greaves/0.png b/front/public/images/large/BloodArsenal/vampire_greaves/0.png deleted file mode 100644 index bb6182678d..0000000000 Binary files a/front/public/images/large/BloodArsenal/vampire_greaves/0.png and /dev/null differ diff --git a/front/public/images/large/BloodArsenal/wolf_hide/0.png b/front/public/images/large/BloodArsenal/wolf_hide/0.png deleted file mode 100644 index c387b9b0ad..0000000000 Binary files a/front/public/images/large/BloodArsenal/wolf_hide/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/aesirRing/0.png b/front/public/images/large/Botania/aesirRing/0.png deleted file mode 100644 index 003df810d0..0000000000 Binary files a/front/public/images/large/Botania/aesirRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/alchemyCatalyst/0.png b/front/public/images/large/Botania/alchemyCatalyst/0.png deleted file mode 100644 index 7c208e1fcb..0000000000 Binary files a/front/public/images/large/Botania/alchemyCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/alfheimPortal/0.png b/front/public/images/large/Botania/alfheimPortal/0.png deleted file mode 100644 index c50bb37de5..0000000000 Binary files a/front/public/images/large/Botania/alfheimPortal/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/altGrass/0.png b/front/public/images/large/Botania/altGrass/0.png deleted file mode 100644 index fa587fc046..0000000000 Binary files a/front/public/images/large/Botania/altGrass/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/altGrass/1.png b/front/public/images/large/Botania/altGrass/1.png deleted file mode 100644 index 867757b292..0000000000 Binary files a/front/public/images/large/Botania/altGrass/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/altGrass/2.png b/front/public/images/large/Botania/altGrass/2.png deleted file mode 100644 index cede433b1d..0000000000 Binary files a/front/public/images/large/Botania/altGrass/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/altGrass/3.png b/front/public/images/large/Botania/altGrass/3.png deleted file mode 100644 index a683a09471..0000000000 Binary files a/front/public/images/large/Botania/altGrass/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/altGrass/4.png b/front/public/images/large/Botania/altGrass/4.png deleted file mode 100644 index b04d50806f..0000000000 Binary files a/front/public/images/large/Botania/altGrass/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/altGrass/5.png b/front/public/images/large/Botania/altGrass/5.png deleted file mode 100644 index db77515617..0000000000 Binary files a/front/public/images/large/Botania/altGrass/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/0.png b/front/public/images/large/Botania/altar/0.png deleted file mode 100644 index ee7912e0b5..0000000000 Binary files a/front/public/images/large/Botania/altar/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/1.png b/front/public/images/large/Botania/altar/1.png deleted file mode 100644 index 55ac970e77..0000000000 Binary files a/front/public/images/large/Botania/altar/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/2.png b/front/public/images/large/Botania/altar/2.png deleted file mode 100644 index 5ffae3c996..0000000000 Binary files a/front/public/images/large/Botania/altar/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/3.png b/front/public/images/large/Botania/altar/3.png deleted file mode 100644 index a12e265e0b..0000000000 Binary files a/front/public/images/large/Botania/altar/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/4.png b/front/public/images/large/Botania/altar/4.png deleted file mode 100644 index b86799b520..0000000000 Binary files a/front/public/images/large/Botania/altar/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/5.png b/front/public/images/large/Botania/altar/5.png deleted file mode 100644 index 8b62f862be..0000000000 Binary files a/front/public/images/large/Botania/altar/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/6.png b/front/public/images/large/Botania/altar/6.png deleted file mode 100644 index e2e8e2ec08..0000000000 Binary files a/front/public/images/large/Botania/altar/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/7.png b/front/public/images/large/Botania/altar/7.png deleted file mode 100644 index 09352dbb8b..0000000000 Binary files a/front/public/images/large/Botania/altar/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/altar/8.png b/front/public/images/large/Botania/altar/8.png deleted file mode 100644 index f3ce0117cf..0000000000 Binary files a/front/public/images/large/Botania/altar/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/ancientWill/0.png b/front/public/images/large/Botania/ancientWill/0.png deleted file mode 100644 index 655d8f1805..0000000000 Binary files a/front/public/images/large/Botania/ancientWill/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/ancientWill/1.png b/front/public/images/large/Botania/ancientWill/1.png deleted file mode 100644 index b33074514f..0000000000 Binary files a/front/public/images/large/Botania/ancientWill/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/ancientWill/2.png b/front/public/images/large/Botania/ancientWill/2.png deleted file mode 100644 index b3df0a3ccf..0000000000 Binary files a/front/public/images/large/Botania/ancientWill/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/ancientWill/3.png b/front/public/images/large/Botania/ancientWill/3.png deleted file mode 100644 index 8ec3d36307..0000000000 Binary files a/front/public/images/large/Botania/ancientWill/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/ancientWill/4.png b/front/public/images/large/Botania/ancientWill/4.png deleted file mode 100644 index a2e5539039..0000000000 Binary files a/front/public/images/large/Botania/ancientWill/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/ancientWill/5.png b/front/public/images/large/Botania/ancientWill/5.png deleted file mode 100644 index 7cc5939c09..0000000000 Binary files a/front/public/images/large/Botania/ancientWill/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/auraRing/0.png b/front/public/images/large/Botania/auraRing/0.png deleted file mode 100644 index 1623e2f2cf..0000000000 Binary files a/front/public/images/large/Botania/auraRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/auraRingGreater/0.png b/front/public/images/large/Botania/auraRingGreater/0.png deleted file mode 100644 index aeacdf0ca9..0000000000 Binary files a/front/public/images/large/Botania/auraRingGreater/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/autocraftingHalo/0.png b/front/public/images/large/Botania/autocraftingHalo/0.png deleted file mode 100644 index 83fc922fca..0000000000 Binary files a/front/public/images/large/Botania/autocraftingHalo/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/avatar/0.png b/front/public/images/large/Botania/avatar/0.png deleted file mode 100644 index f1a7213819..0000000000 Binary files a/front/public/images/large/Botania/avatar/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/baubleBox/0.png b/front/public/images/large/Botania/baubleBox/0.png deleted file mode 100644 index a684dba085..0000000000 Binary files a/front/public/images/large/Botania/baubleBox/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/bellows/0.png b/front/public/images/large/Botania/bellows/0.png deleted file mode 100644 index 800f79dc84..0000000000 Binary files a/front/public/images/large/Botania/bellows/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/bifrost/0.png b/front/public/images/large/Botania/bifrost/0.png deleted file mode 100644 index 0a83d1f3fc..0000000000 Binary files a/front/public/images/large/Botania/bifrost/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/bifrostPerm/0.png b/front/public/images/large/Botania/bifrostPerm/0.png deleted file mode 100644 index 0a83d1f3fc..0000000000 Binary files a/front/public/images/large/Botania/bifrostPerm/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/bifrostPermPane/0.png b/front/public/images/large/Botania/bifrostPermPane/0.png deleted file mode 100644 index 038185877a..0000000000 Binary files a/front/public/images/large/Botania/bifrostPermPane/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/0.png b/front/public/images/large/Botania/biomeStoneA/0.png deleted file mode 100644 index 70fc78b8ba..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/1.png b/front/public/images/large/Botania/biomeStoneA/1.png deleted file mode 100644 index 2f53f40a44..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/10.png b/front/public/images/large/Botania/biomeStoneA/10.png deleted file mode 100644 index 4e3374c392..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/11.png b/front/public/images/large/Botania/biomeStoneA/11.png deleted file mode 100644 index 5ab3064dc8..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/12.png b/front/public/images/large/Botania/biomeStoneA/12.png deleted file mode 100644 index 528a98c715..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/13.png b/front/public/images/large/Botania/biomeStoneA/13.png deleted file mode 100644 index e337953f9e..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/14.png b/front/public/images/large/Botania/biomeStoneA/14.png deleted file mode 100644 index 6d53b8b512..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/15.png b/front/public/images/large/Botania/biomeStoneA/15.png deleted file mode 100644 index 6fda969562..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/2.png b/front/public/images/large/Botania/biomeStoneA/2.png deleted file mode 100644 index 64961c5dc2..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/3.png b/front/public/images/large/Botania/biomeStoneA/3.png deleted file mode 100644 index 69bc13e1b5..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/4.png b/front/public/images/large/Botania/biomeStoneA/4.png deleted file mode 100644 index db17e3c90b..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/5.png b/front/public/images/large/Botania/biomeStoneA/5.png deleted file mode 100644 index 7310e39b81..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/6.png b/front/public/images/large/Botania/biomeStoneA/6.png deleted file mode 100644 index 76f6e49612..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/7.png b/front/public/images/large/Botania/biomeStoneA/7.png deleted file mode 100644 index cd72e6ed98..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/8.png b/front/public/images/large/Botania/biomeStoneA/8.png deleted file mode 100644 index 6ce60910b6..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA/9.png b/front/public/images/large/Botania/biomeStoneA/9.png deleted file mode 100644 index 2977d982d9..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Slab/0.png b/front/public/images/large/Botania/biomeStoneA0Slab/0.png deleted file mode 100644 index 9fa2715a2f..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA0SlabFull/0.png deleted file mode 100644 index 70fc78b8ba..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Stairs/0.png b/front/public/images/large/Botania/biomeStoneA0Stairs/0.png deleted file mode 100644 index 6ee90fdf97..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/0.png b/front/public/images/large/Botania/biomeStoneA0Wall/0.png deleted file mode 100644 index 156335d0fe..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/1.png b/front/public/images/large/Botania/biomeStoneA0Wall/1.png deleted file mode 100644 index 116c05793a..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/2.png b/front/public/images/large/Botania/biomeStoneA0Wall/2.png deleted file mode 100644 index 23b22ca7c4..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/3.png b/front/public/images/large/Botania/biomeStoneA0Wall/3.png deleted file mode 100644 index e3aa9958f3..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/4.png b/front/public/images/large/Botania/biomeStoneA0Wall/4.png deleted file mode 100644 index db25ac0e57..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/5.png b/front/public/images/large/Botania/biomeStoneA0Wall/5.png deleted file mode 100644 index c2dc909ebb..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/6.png b/front/public/images/large/Botania/biomeStoneA0Wall/6.png deleted file mode 100644 index 965761f112..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA0Wall/7.png b/front/public/images/large/Botania/biomeStoneA0Wall/7.png deleted file mode 100644 index 582e6e7036..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA0Wall/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA10Slab/0.png b/front/public/images/large/Botania/biomeStoneA10Slab/0.png deleted file mode 100644 index dcc283d844..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA10Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA10SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA10SlabFull/0.png deleted file mode 100644 index 4e3374c392..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA10SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA10Stairs/0.png b/front/public/images/large/Botania/biomeStoneA10Stairs/0.png deleted file mode 100644 index 8d6d01858c..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA10Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA11Slab/0.png b/front/public/images/large/Botania/biomeStoneA11Slab/0.png deleted file mode 100644 index c441c1af09..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA11Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA11SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA11SlabFull/0.png deleted file mode 100644 index 5ab3064dc8..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA11SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA11Stairs/0.png b/front/public/images/large/Botania/biomeStoneA11Stairs/0.png deleted file mode 100644 index efdd07492e..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA11Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA12Slab/0.png b/front/public/images/large/Botania/biomeStoneA12Slab/0.png deleted file mode 100644 index 03fd8d4d46..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA12Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA12SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA12SlabFull/0.png deleted file mode 100644 index 528a98c715..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA12SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA12Stairs/0.png b/front/public/images/large/Botania/biomeStoneA12Stairs/0.png deleted file mode 100644 index 681c80ee71..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA12Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA13Slab/0.png b/front/public/images/large/Botania/biomeStoneA13Slab/0.png deleted file mode 100644 index a36ab6ecc4..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA13Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA13SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA13SlabFull/0.png deleted file mode 100644 index e337953f9e..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA13SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA13Stairs/0.png b/front/public/images/large/Botania/biomeStoneA13Stairs/0.png deleted file mode 100644 index ac3eefe887..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA13Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA14Slab/0.png b/front/public/images/large/Botania/biomeStoneA14Slab/0.png deleted file mode 100644 index 4be4b757ef..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA14Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA14SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA14SlabFull/0.png deleted file mode 100644 index 6d53b8b512..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA14SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA14Stairs/0.png b/front/public/images/large/Botania/biomeStoneA14Stairs/0.png deleted file mode 100644 index 52ecb9e9c7..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA14Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA15Slab/0.png b/front/public/images/large/Botania/biomeStoneA15Slab/0.png deleted file mode 100644 index 744984d016..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA15Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA15SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA15SlabFull/0.png deleted file mode 100644 index 6fda969562..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA15SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA15Stairs/0.png b/front/public/images/large/Botania/biomeStoneA15Stairs/0.png deleted file mode 100644 index 2b24d63f76..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA15Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA1Slab/0.png b/front/public/images/large/Botania/biomeStoneA1Slab/0.png deleted file mode 100644 index 006b5dda0c..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA1SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA1SlabFull/0.png deleted file mode 100644 index 2f53f40a44..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA1Stairs/0.png b/front/public/images/large/Botania/biomeStoneA1Stairs/0.png deleted file mode 100644 index 21c18ba874..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA2Slab/0.png b/front/public/images/large/Botania/biomeStoneA2Slab/0.png deleted file mode 100644 index 5885295c26..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA2Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA2SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA2SlabFull/0.png deleted file mode 100644 index 64961c5dc2..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA2Stairs/0.png b/front/public/images/large/Botania/biomeStoneA2Stairs/0.png deleted file mode 100644 index b2af1193a6..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA2Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA3Slab/0.png b/front/public/images/large/Botania/biomeStoneA3Slab/0.png deleted file mode 100644 index 688684a783..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA3Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA3SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA3SlabFull/0.png deleted file mode 100644 index 69bc13e1b5..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA3Stairs/0.png b/front/public/images/large/Botania/biomeStoneA3Stairs/0.png deleted file mode 100644 index a78781a08c..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA3Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA4Slab/0.png b/front/public/images/large/Botania/biomeStoneA4Slab/0.png deleted file mode 100644 index 5ca7a5d6f9..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA4Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA4SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA4SlabFull/0.png deleted file mode 100644 index db17e3c90b..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA4SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA4Stairs/0.png b/front/public/images/large/Botania/biomeStoneA4Stairs/0.png deleted file mode 100644 index acae5a26df..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA4Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA5Slab/0.png b/front/public/images/large/Botania/biomeStoneA5Slab/0.png deleted file mode 100644 index 1073c09e3b..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA5Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA5SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA5SlabFull/0.png deleted file mode 100644 index 7310e39b81..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA5SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA5Stairs/0.png b/front/public/images/large/Botania/biomeStoneA5Stairs/0.png deleted file mode 100644 index 72687a4fec..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA5Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA6Slab/0.png b/front/public/images/large/Botania/biomeStoneA6Slab/0.png deleted file mode 100644 index bddabbec0f..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA6Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA6SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA6SlabFull/0.png deleted file mode 100644 index 76f6e49612..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA6SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA6Stairs/0.png b/front/public/images/large/Botania/biomeStoneA6Stairs/0.png deleted file mode 100644 index e3e758bd6a..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA6Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA7Slab/0.png b/front/public/images/large/Botania/biomeStoneA7Slab/0.png deleted file mode 100644 index db19260295..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA7Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA7SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA7SlabFull/0.png deleted file mode 100644 index cd72e6ed98..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA7SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA7Stairs/0.png b/front/public/images/large/Botania/biomeStoneA7Stairs/0.png deleted file mode 100644 index bf67757452..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA7Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA8Slab/0.png b/front/public/images/large/Botania/biomeStoneA8Slab/0.png deleted file mode 100644 index 80cba9609f..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA8Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA8SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA8SlabFull/0.png deleted file mode 100644 index 6ce60910b6..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA8SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA8Stairs/0.png b/front/public/images/large/Botania/biomeStoneA8Stairs/0.png deleted file mode 100644 index 8e0223a573..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA8Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA9Slab/0.png b/front/public/images/large/Botania/biomeStoneA9Slab/0.png deleted file mode 100644 index 96fd5b1ceb..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA9Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA9SlabFull/0.png b/front/public/images/large/Botania/biomeStoneA9SlabFull/0.png deleted file mode 100644 index 2977d982d9..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA9SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneA9Stairs/0.png b/front/public/images/large/Botania/biomeStoneA9Stairs/0.png deleted file mode 100644 index 75e016fbf8..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneA9Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/0.png b/front/public/images/large/Botania/biomeStoneB/0.png deleted file mode 100644 index 863d56f3ef..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/1.png b/front/public/images/large/Botania/biomeStoneB/1.png deleted file mode 100644 index c4cc9d5df7..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/10.png b/front/public/images/large/Botania/biomeStoneB/10.png deleted file mode 100644 index 5cabbe449c..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/11.png b/front/public/images/large/Botania/biomeStoneB/11.png deleted file mode 100644 index 6cf8951bff..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/12.png b/front/public/images/large/Botania/biomeStoneB/12.png deleted file mode 100644 index df55510ddd..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/13.png b/front/public/images/large/Botania/biomeStoneB/13.png deleted file mode 100644 index c8de5a92c7..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/14.png b/front/public/images/large/Botania/biomeStoneB/14.png deleted file mode 100644 index cf2e34583d..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/15.png b/front/public/images/large/Botania/biomeStoneB/15.png deleted file mode 100644 index 0f4fe38008..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/2.png b/front/public/images/large/Botania/biomeStoneB/2.png deleted file mode 100644 index 02ee461fb2..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/3.png b/front/public/images/large/Botania/biomeStoneB/3.png deleted file mode 100644 index 69087121cf..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/4.png b/front/public/images/large/Botania/biomeStoneB/4.png deleted file mode 100644 index 9d2ecc4884..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/5.png b/front/public/images/large/Botania/biomeStoneB/5.png deleted file mode 100644 index 13e8fabd91..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/6.png b/front/public/images/large/Botania/biomeStoneB/6.png deleted file mode 100644 index 3a71a72792..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/7.png b/front/public/images/large/Botania/biomeStoneB/7.png deleted file mode 100644 index 5e9e906718..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/8.png b/front/public/images/large/Botania/biomeStoneB/8.png deleted file mode 100644 index 6143405bc2..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB/9.png b/front/public/images/large/Botania/biomeStoneB/9.png deleted file mode 100644 index b6470be128..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB0Slab/0.png b/front/public/images/large/Botania/biomeStoneB0Slab/0.png deleted file mode 100644 index a858e333f8..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB0SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB0SlabFull/0.png deleted file mode 100644 index 863d56f3ef..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB0Stairs/0.png b/front/public/images/large/Botania/biomeStoneB0Stairs/0.png deleted file mode 100644 index 71d8381738..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB1Slab/0.png b/front/public/images/large/Botania/biomeStoneB1Slab/0.png deleted file mode 100644 index 5c12c10a3a..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB1SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB1SlabFull/0.png deleted file mode 100644 index c4cc9d5df7..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB1Stairs/0.png b/front/public/images/large/Botania/biomeStoneB1Stairs/0.png deleted file mode 100644 index 5a20aa063e..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB2Slab/0.png b/front/public/images/large/Botania/biomeStoneB2Slab/0.png deleted file mode 100644 index 81e5b280bc..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB2Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB2SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB2SlabFull/0.png deleted file mode 100644 index 02ee461fb2..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB2Stairs/0.png b/front/public/images/large/Botania/biomeStoneB2Stairs/0.png deleted file mode 100644 index e068d6fea7..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB2Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB3Slab/0.png b/front/public/images/large/Botania/biomeStoneB3Slab/0.png deleted file mode 100644 index 86d5746a65..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB3Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB3SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB3SlabFull/0.png deleted file mode 100644 index 69087121cf..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB3Stairs/0.png b/front/public/images/large/Botania/biomeStoneB3Stairs/0.png deleted file mode 100644 index 0ffb304f5a..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB3Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB4Slab/0.png b/front/public/images/large/Botania/biomeStoneB4Slab/0.png deleted file mode 100644 index 3dd79c5175..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB4Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB4SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB4SlabFull/0.png deleted file mode 100644 index 9d2ecc4884..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB4SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB4Stairs/0.png b/front/public/images/large/Botania/biomeStoneB4Stairs/0.png deleted file mode 100644 index f07d99d898..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB4Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB5Slab/0.png b/front/public/images/large/Botania/biomeStoneB5Slab/0.png deleted file mode 100644 index 2798e1cad7..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB5Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB5SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB5SlabFull/0.png deleted file mode 100644 index 13e8fabd91..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB5SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB5Stairs/0.png b/front/public/images/large/Botania/biomeStoneB5Stairs/0.png deleted file mode 100644 index 1ffcda4985..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB5Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB6Slab/0.png b/front/public/images/large/Botania/biomeStoneB6Slab/0.png deleted file mode 100644 index 44c16e2a4b..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB6Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB6SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB6SlabFull/0.png deleted file mode 100644 index 3a71a72792..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB6SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB6Stairs/0.png b/front/public/images/large/Botania/biomeStoneB6Stairs/0.png deleted file mode 100644 index 1eba9b274b..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB6Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB7Slab/0.png b/front/public/images/large/Botania/biomeStoneB7Slab/0.png deleted file mode 100644 index aa72505dda..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB7Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB7SlabFull/0.png b/front/public/images/large/Botania/biomeStoneB7SlabFull/0.png deleted file mode 100644 index 5e9e906718..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB7SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/biomeStoneB7Stairs/0.png b/front/public/images/large/Botania/biomeStoneB7Stairs/0.png deleted file mode 100644 index 8640517bc3..0000000000 Binary files a/front/public/images/large/Botania/biomeStoneB7Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/blackHoleTalisman/0.png b/front/public/images/large/Botania/blackHoleTalisman/0.png deleted file mode 100644 index fcee0fb200..0000000000 Binary files a/front/public/images/large/Botania/blackHoleTalisman/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/blackLotus/0.png b/front/public/images/large/Botania/blackLotus/0.png deleted file mode 100644 index 9f8e3b63e9..0000000000 Binary files a/front/public/images/large/Botania/blackLotus/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/blackLotus/1.png b/front/public/images/large/Botania/blackLotus/1.png deleted file mode 100644 index 9f8e3b63e9..0000000000 Binary files a/front/public/images/large/Botania/blackLotus/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/blazeBlock/0.png b/front/public/images/large/Botania/blazeBlock/0.png deleted file mode 100644 index 6d4746b14e..0000000000 Binary files a/front/public/images/large/Botania/blazeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/bloodPendant/0.png b/front/public/images/large/Botania/bloodPendant/0.png deleted file mode 100644 index b89a8aab36..0000000000 Binary files a/front/public/images/large/Botania/bloodPendant/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/brewFlask/0.png b/front/public/images/large/Botania/brewFlask/0.png deleted file mode 100644 index 5dcfcffe3c..0000000000 Binary files a/front/public/images/large/Botania/brewFlask/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/brewVial/0.png b/front/public/images/large/Botania/brewVial/0.png deleted file mode 100644 index 9a0ef7be11..0000000000 Binary files a/front/public/images/large/Botania/brewVial/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/brewery/0.png b/front/public/images/large/Botania/brewery/0.png deleted file mode 100644 index f3c0932d9f..0000000000 Binary files a/front/public/images/large/Botania/brewery/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/0.png b/front/public/images/large/Botania/buriedPetals/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/1.png b/front/public/images/large/Botania/buriedPetals/1.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/10.png b/front/public/images/large/Botania/buriedPetals/10.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/11.png b/front/public/images/large/Botania/buriedPetals/11.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/12.png b/front/public/images/large/Botania/buriedPetals/12.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/13.png b/front/public/images/large/Botania/buriedPetals/13.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/14.png b/front/public/images/large/Botania/buriedPetals/14.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/15.png b/front/public/images/large/Botania/buriedPetals/15.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/2.png b/front/public/images/large/Botania/buriedPetals/2.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/3.png b/front/public/images/large/Botania/buriedPetals/3.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/4.png b/front/public/images/large/Botania/buriedPetals/4.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/5.png b/front/public/images/large/Botania/buriedPetals/5.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/6.png b/front/public/images/large/Botania/buriedPetals/6.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/7.png b/front/public/images/large/Botania/buriedPetals/7.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/8.png b/front/public/images/large/Botania/buriedPetals/8.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/buriedPetals/9.png b/front/public/images/large/Botania/buriedPetals/9.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/buriedPetals/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/cacophonium/0.png b/front/public/images/large/Botania/cacophonium/0.png deleted file mode 100644 index 01f0259c73..0000000000 Binary files a/front/public/images/large/Botania/cacophonium/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/cacophoniumBlock/0.png b/front/public/images/large/Botania/cacophoniumBlock/0.png deleted file mode 100644 index 00f22e83ea..0000000000 Binary files a/front/public/images/large/Botania/cacophoniumBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/cellBlock/0.png b/front/public/images/large/Botania/cellBlock/0.png deleted file mode 100644 index 62f302cecf..0000000000 Binary files a/front/public/images/large/Botania/cellBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/clip/0.png b/front/public/images/large/Botania/clip/0.png deleted file mode 100644 index 1bc59811ce..0000000000 Binary files a/front/public/images/large/Botania/clip/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/cobbleRod/0.png b/front/public/images/large/Botania/cobbleRod/0.png deleted file mode 100644 index daaaa5586f..0000000000 Binary files a/front/public/images/large/Botania/cobbleRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/cocoon/0.png b/front/public/images/large/Botania/cocoon/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/cocoon/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/conjurationCatalyst/0.png b/front/public/images/large/Botania/conjurationCatalyst/0.png deleted file mode 100644 index 69ee3bdce1..0000000000 Binary files a/front/public/images/large/Botania/conjurationCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/corporeaCrystalCube/0.png b/front/public/images/large/Botania/corporeaCrystalCube/0.png deleted file mode 100644 index 009445005d..0000000000 Binary files a/front/public/images/large/Botania/corporeaCrystalCube/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/corporeaFunnel/0.png b/front/public/images/large/Botania/corporeaFunnel/0.png deleted file mode 100644 index 4d91ec614f..0000000000 Binary files a/front/public/images/large/Botania/corporeaFunnel/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/corporeaIndex/0.png b/front/public/images/large/Botania/corporeaIndex/0.png deleted file mode 100644 index 4d5f6d8106..0000000000 Binary files a/front/public/images/large/Botania/corporeaIndex/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/corporeaInterceptor/0.png b/front/public/images/large/Botania/corporeaInterceptor/0.png deleted file mode 100644 index 8a6b251bce..0000000000 Binary files a/front/public/images/large/Botania/corporeaInterceptor/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/corporeaRetainer/0.png b/front/public/images/large/Botania/corporeaRetainer/0.png deleted file mode 100644 index 5e2407d08e..0000000000 Binary files a/front/public/images/large/Botania/corporeaRetainer/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/corporeaSpark/0.png b/front/public/images/large/Botania/corporeaSpark/0.png deleted file mode 100644 index d7804ce335..0000000000 Binary files a/front/public/images/large/Botania/corporeaSpark/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/corporeaSpark/1.png b/front/public/images/large/Botania/corporeaSpark/1.png deleted file mode 100644 index f237560b16..0000000000 Binary files a/front/public/images/large/Botania/corporeaSpark/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/0.png b/front/public/images/large/Botania/cosmetic/0.png deleted file mode 100644 index 390409f6d3..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/1.png b/front/public/images/large/Botania/cosmetic/1.png deleted file mode 100644 index 8c5b6a484e..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/10.png b/front/public/images/large/Botania/cosmetic/10.png deleted file mode 100644 index e15fcb2a4d..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/11.png b/front/public/images/large/Botania/cosmetic/11.png deleted file mode 100644 index 69adf51ec7..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/12.png b/front/public/images/large/Botania/cosmetic/12.png deleted file mode 100644 index 299cf07c04..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/13.png b/front/public/images/large/Botania/cosmetic/13.png deleted file mode 100644 index 33bda0afc3..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/14.png b/front/public/images/large/Botania/cosmetic/14.png deleted file mode 100644 index 8b5c574330..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/15.png b/front/public/images/large/Botania/cosmetic/15.png deleted file mode 100644 index 874743ea9c..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/16.png b/front/public/images/large/Botania/cosmetic/16.png deleted file mode 100644 index b37819aacd..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/16.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/17.png b/front/public/images/large/Botania/cosmetic/17.png deleted file mode 100644 index aea0524b12..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/17.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/18.png b/front/public/images/large/Botania/cosmetic/18.png deleted file mode 100644 index 1fcefbff5a..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/18.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/19.png b/front/public/images/large/Botania/cosmetic/19.png deleted file mode 100644 index 1289466797..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/19.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/2.png b/front/public/images/large/Botania/cosmetic/2.png deleted file mode 100644 index 420930e547..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/20.png b/front/public/images/large/Botania/cosmetic/20.png deleted file mode 100644 index f1f566b750..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/20.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/21.png b/front/public/images/large/Botania/cosmetic/21.png deleted file mode 100644 index 45c174468f..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/21.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/22.png b/front/public/images/large/Botania/cosmetic/22.png deleted file mode 100644 index 36a830d2b8..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/22.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/23.png b/front/public/images/large/Botania/cosmetic/23.png deleted file mode 100644 index 085a81dfa3..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/23.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/24.png b/front/public/images/large/Botania/cosmetic/24.png deleted file mode 100644 index 765a8bf643..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/24.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/25.png b/front/public/images/large/Botania/cosmetic/25.png deleted file mode 100644 index a827f05211..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/25.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/26.png b/front/public/images/large/Botania/cosmetic/26.png deleted file mode 100644 index 529e5d9dbd..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/26.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/27.png b/front/public/images/large/Botania/cosmetic/27.png deleted file mode 100644 index b92a9a0b36..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/27.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/28.png b/front/public/images/large/Botania/cosmetic/28.png deleted file mode 100644 index cd039e26eb..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/28.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/29.png b/front/public/images/large/Botania/cosmetic/29.png deleted file mode 100644 index c9a749f8bd..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/29.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/3.png b/front/public/images/large/Botania/cosmetic/3.png deleted file mode 100644 index 3e3ebdb22b..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/30.png b/front/public/images/large/Botania/cosmetic/30.png deleted file mode 100644 index f5872b039e..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/30.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/31.png b/front/public/images/large/Botania/cosmetic/31.png deleted file mode 100644 index daac291488..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/31.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/4.png b/front/public/images/large/Botania/cosmetic/4.png deleted file mode 100644 index c11a446798..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/5.png b/front/public/images/large/Botania/cosmetic/5.png deleted file mode 100644 index 87b3718b87..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/6.png b/front/public/images/large/Botania/cosmetic/6.png deleted file mode 100644 index 6bb1e7545d..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/7.png b/front/public/images/large/Botania/cosmetic/7.png deleted file mode 100644 index 362df6990e..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/8.png b/front/public/images/large/Botania/cosmetic/8.png deleted file mode 100644 index 1b577ee7be..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/cosmetic/9.png b/front/public/images/large/Botania/cosmetic/9.png deleted file mode 100644 index e728058631..0000000000 Binary files a/front/public/images/large/Botania/cosmetic/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/0.png b/front/public/images/large/Botania/craftPattern/0.png deleted file mode 100644 index bf155b1105..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/1.png b/front/public/images/large/Botania/craftPattern/1.png deleted file mode 100644 index b0a79bc177..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/2.png b/front/public/images/large/Botania/craftPattern/2.png deleted file mode 100644 index 4219b3d064..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/3.png b/front/public/images/large/Botania/craftPattern/3.png deleted file mode 100644 index dd82fbc13f..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/4.png b/front/public/images/large/Botania/craftPattern/4.png deleted file mode 100644 index 7dc0600758..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/5.png b/front/public/images/large/Botania/craftPattern/5.png deleted file mode 100644 index 0f10de9298..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/6.png b/front/public/images/large/Botania/craftPattern/6.png deleted file mode 100644 index 6e74430f47..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/7.png b/front/public/images/large/Botania/craftPattern/7.png deleted file mode 100644 index 4d3c212c4d..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftPattern/8.png b/front/public/images/large/Botania/craftPattern/8.png deleted file mode 100644 index 0ac01938f7..0000000000 Binary files a/front/public/images/large/Botania/craftPattern/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/craftingHalo/0.png b/front/public/images/large/Botania/craftingHalo/0.png deleted file mode 100644 index 1cc9e25f22..0000000000 Binary files a/front/public/images/large/Botania/craftingHalo/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/crystalBow/0.png b/front/public/images/large/Botania/crystalBow/0.png deleted file mode 100644 index 1b17baab04..0000000000 Binary files a/front/public/images/large/Botania/crystalBow/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/0.png b/front/public/images/large/Botania/customBrick/0.png deleted file mode 100644 index 95da1b1167..0000000000 Binary files a/front/public/images/large/Botania/customBrick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/1.png b/front/public/images/large/Botania/customBrick/1.png deleted file mode 100644 index ef9d99fe31..0000000000 Binary files a/front/public/images/large/Botania/customBrick/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/10.png b/front/public/images/large/Botania/customBrick/10.png deleted file mode 100644 index 973529e562..0000000000 Binary files a/front/public/images/large/Botania/customBrick/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/11.png b/front/public/images/large/Botania/customBrick/11.png deleted file mode 100644 index 44586a8744..0000000000 Binary files a/front/public/images/large/Botania/customBrick/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/12.png b/front/public/images/large/Botania/customBrick/12.png deleted file mode 100644 index d0731183a5..0000000000 Binary files a/front/public/images/large/Botania/customBrick/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/13.png b/front/public/images/large/Botania/customBrick/13.png deleted file mode 100644 index e6cef5743f..0000000000 Binary files a/front/public/images/large/Botania/customBrick/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/14.png b/front/public/images/large/Botania/customBrick/14.png deleted file mode 100644 index 444aec9c16..0000000000 Binary files a/front/public/images/large/Botania/customBrick/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/15.png b/front/public/images/large/Botania/customBrick/15.png deleted file mode 100644 index 90cb842739..0000000000 Binary files a/front/public/images/large/Botania/customBrick/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/2.png b/front/public/images/large/Botania/customBrick/2.png deleted file mode 100644 index 7396b23c4a..0000000000 Binary files a/front/public/images/large/Botania/customBrick/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/3.png b/front/public/images/large/Botania/customBrick/3.png deleted file mode 100644 index 0cec776f9a..0000000000 Binary files a/front/public/images/large/Botania/customBrick/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/4.png b/front/public/images/large/Botania/customBrick/4.png deleted file mode 100644 index b9843ea4f3..0000000000 Binary files a/front/public/images/large/Botania/customBrick/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/5.png b/front/public/images/large/Botania/customBrick/5.png deleted file mode 100644 index 4d6e6d31ce..0000000000 Binary files a/front/public/images/large/Botania/customBrick/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/6.png b/front/public/images/large/Botania/customBrick/6.png deleted file mode 100644 index b20c388c36..0000000000 Binary files a/front/public/images/large/Botania/customBrick/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/7.png b/front/public/images/large/Botania/customBrick/7.png deleted file mode 100644 index 1ab5569ca5..0000000000 Binary files a/front/public/images/large/Botania/customBrick/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/8.png b/front/public/images/large/Botania/customBrick/8.png deleted file mode 100644 index c76edeeb00..0000000000 Binary files a/front/public/images/large/Botania/customBrick/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick/9.png b/front/public/images/large/Botania/customBrick/9.png deleted file mode 100644 index 54dc1b2803..0000000000 Binary files a/front/public/images/large/Botania/customBrick/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick0Slab/0.png b/front/public/images/large/Botania/customBrick0Slab/0.png deleted file mode 100644 index 55cbfe1da7..0000000000 Binary files a/front/public/images/large/Botania/customBrick0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick0SlabFull/0.png b/front/public/images/large/Botania/customBrick0SlabFull/0.png deleted file mode 100644 index 95da1b1167..0000000000 Binary files a/front/public/images/large/Botania/customBrick0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick0Stairs/0.png b/front/public/images/large/Botania/customBrick0Stairs/0.png deleted file mode 100644 index 771057a13b..0000000000 Binary files a/front/public/images/large/Botania/customBrick0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick1Slab/0.png b/front/public/images/large/Botania/customBrick1Slab/0.png deleted file mode 100644 index 4cffea8022..0000000000 Binary files a/front/public/images/large/Botania/customBrick1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick1SlabFull/0.png b/front/public/images/large/Botania/customBrick1SlabFull/0.png deleted file mode 100644 index ef9d99fe31..0000000000 Binary files a/front/public/images/large/Botania/customBrick1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick1Stairs/0.png b/front/public/images/large/Botania/customBrick1Stairs/0.png deleted file mode 100644 index 68bdfa3f07..0000000000 Binary files a/front/public/images/large/Botania/customBrick1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick2Slab/0.png b/front/public/images/large/Botania/customBrick2Slab/0.png deleted file mode 100644 index bebf1d19dc..0000000000 Binary files a/front/public/images/large/Botania/customBrick2Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick2SlabFull/0.png b/front/public/images/large/Botania/customBrick2SlabFull/0.png deleted file mode 100644 index 7396b23c4a..0000000000 Binary files a/front/public/images/large/Botania/customBrick2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick2Stairs/0.png b/front/public/images/large/Botania/customBrick2Stairs/0.png deleted file mode 100644 index 5a17e919c2..0000000000 Binary files a/front/public/images/large/Botania/customBrick2Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick3Slab/0.png b/front/public/images/large/Botania/customBrick3Slab/0.png deleted file mode 100644 index 6362a5f6b3..0000000000 Binary files a/front/public/images/large/Botania/customBrick3Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick3SlabFull/0.png b/front/public/images/large/Botania/customBrick3SlabFull/0.png deleted file mode 100644 index 0cec776f9a..0000000000 Binary files a/front/public/images/large/Botania/customBrick3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/customBrick3Stairs/0.png b/front/public/images/large/Botania/customBrick3Stairs/0.png deleted file mode 100644 index 7e81cdc229..0000000000 Binary files a/front/public/images/large/Botania/customBrick3Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dice/0.png b/front/public/images/large/Botania/dice/0.png deleted file mode 100644 index 66bd01ec57..0000000000 Binary files a/front/public/images/large/Botania/dice/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dirtPath/0.png b/front/public/images/large/Botania/dirtPath/0.png deleted file mode 100644 index 4184aedc0c..0000000000 Binary files a/front/public/images/large/Botania/dirtPath/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dirtPath0Slab/0.png b/front/public/images/large/Botania/dirtPath0Slab/0.png deleted file mode 100644 index f56f9c10be..0000000000 Binary files a/front/public/images/large/Botania/dirtPath0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dirtPath0SlabFull/0.png b/front/public/images/large/Botania/dirtPath0SlabFull/0.png deleted file mode 100644 index 8e19977ad1..0000000000 Binary files a/front/public/images/large/Botania/dirtPath0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dirtRod/0.png b/front/public/images/large/Botania/dirtRod/0.png deleted file mode 100644 index 776b480dbb..0000000000 Binary files a/front/public/images/large/Botania/dirtRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/distributor/0.png b/front/public/images/large/Botania/distributor/0.png deleted file mode 100644 index 133f40a608..0000000000 Binary files a/front/public/images/large/Botania/distributor/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/divaCharm/0.png b/front/public/images/large/Botania/divaCharm/0.png deleted file mode 100644 index e8b88cd4e1..0000000000 Binary files a/front/public/images/large/Botania/divaCharm/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/diviningRod/0.png b/front/public/images/large/Botania/diviningRod/0.png deleted file mode 100644 index bd4a838787..0000000000 Binary files a/front/public/images/large/Botania/diviningRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/0.png b/front/public/images/large/Botania/doubleFlower1/0.png deleted file mode 100644 index 339322699e..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/1.png b/front/public/images/large/Botania/doubleFlower1/1.png deleted file mode 100644 index a1161a7d2d..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/2.png b/front/public/images/large/Botania/doubleFlower1/2.png deleted file mode 100644 index e38fdf8900..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/3.png b/front/public/images/large/Botania/doubleFlower1/3.png deleted file mode 100644 index da68267014..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/4.png b/front/public/images/large/Botania/doubleFlower1/4.png deleted file mode 100644 index 5ceee977db..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/5.png b/front/public/images/large/Botania/doubleFlower1/5.png deleted file mode 100644 index a757d77135..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/6.png b/front/public/images/large/Botania/doubleFlower1/6.png deleted file mode 100644 index a1864cfb97..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower1/7.png b/front/public/images/large/Botania/doubleFlower1/7.png deleted file mode 100644 index d4e0336a94..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower1/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/0.png b/front/public/images/large/Botania/doubleFlower2/0.png deleted file mode 100644 index dd6ec5f695..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/1.png b/front/public/images/large/Botania/doubleFlower2/1.png deleted file mode 100644 index 2d61fcd3d3..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/2.png b/front/public/images/large/Botania/doubleFlower2/2.png deleted file mode 100644 index 5a9ff4664a..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/3.png b/front/public/images/large/Botania/doubleFlower2/3.png deleted file mode 100644 index f0ca14dbf8..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/4.png b/front/public/images/large/Botania/doubleFlower2/4.png deleted file mode 100644 index afd538446f..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/5.png b/front/public/images/large/Botania/doubleFlower2/5.png deleted file mode 100644 index 50e568fea7..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/6.png b/front/public/images/large/Botania/doubleFlower2/6.png deleted file mode 100644 index ab35f41699..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/doubleFlower2/7.png b/front/public/images/large/Botania/doubleFlower2/7.png deleted file mode 100644 index ddde9095f4..0000000000 Binary files a/front/public/images/large/Botania/doubleFlower2/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood/0.png b/front/public/images/large/Botania/dreamwood/0.png deleted file mode 100644 index 0934f064fb..0000000000 Binary files a/front/public/images/large/Botania/dreamwood/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood/1.png b/front/public/images/large/Botania/dreamwood/1.png deleted file mode 100644 index 505909e613..0000000000 Binary files a/front/public/images/large/Botania/dreamwood/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood/2.png b/front/public/images/large/Botania/dreamwood/2.png deleted file mode 100644 index adeb0981f0..0000000000 Binary files a/front/public/images/large/Botania/dreamwood/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood/3.png b/front/public/images/large/Botania/dreamwood/3.png deleted file mode 100644 index 181686b647..0000000000 Binary files a/front/public/images/large/Botania/dreamwood/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood/4.png b/front/public/images/large/Botania/dreamwood/4.png deleted file mode 100644 index 3b9e12f1c9..0000000000 Binary files a/front/public/images/large/Botania/dreamwood/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood/5.png b/front/public/images/large/Botania/dreamwood/5.png deleted file mode 100644 index caabfb221b..0000000000 Binary files a/front/public/images/large/Botania/dreamwood/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood0Slab/0.png b/front/public/images/large/Botania/dreamwood0Slab/0.png deleted file mode 100644 index 8716065a41..0000000000 Binary files a/front/public/images/large/Botania/dreamwood0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood0SlabFull/0.png b/front/public/images/large/Botania/dreamwood0SlabFull/0.png deleted file mode 100644 index 0934f064fb..0000000000 Binary files a/front/public/images/large/Botania/dreamwood0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood0Stairs/0.png b/front/public/images/large/Botania/dreamwood0Stairs/0.png deleted file mode 100644 index cacbf5af83..0000000000 Binary files a/front/public/images/large/Botania/dreamwood0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood0Wall/0.png b/front/public/images/large/Botania/dreamwood0Wall/0.png deleted file mode 100644 index 3f056600a5..0000000000 Binary files a/front/public/images/large/Botania/dreamwood0Wall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood1Slab/0.png b/front/public/images/large/Botania/dreamwood1Slab/0.png deleted file mode 100644 index 4b20c1677a..0000000000 Binary files a/front/public/images/large/Botania/dreamwood1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood1SlabFull/0.png b/front/public/images/large/Botania/dreamwood1SlabFull/0.png deleted file mode 100644 index 505909e613..0000000000 Binary files a/front/public/images/large/Botania/dreamwood1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dreamwood1Stairs/0.png b/front/public/images/large/Botania/dreamwood1Stairs/0.png deleted file mode 100644 index 3591aff66f..0000000000 Binary files a/front/public/images/large/Botania/dreamwood1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/0.png b/front/public/images/large/Botania/dye/0.png deleted file mode 100644 index 556fae6c09..0000000000 Binary files a/front/public/images/large/Botania/dye/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/1.png b/front/public/images/large/Botania/dye/1.png deleted file mode 100644 index 8fde2398e5..0000000000 Binary files a/front/public/images/large/Botania/dye/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/10.png b/front/public/images/large/Botania/dye/10.png deleted file mode 100644 index 6eb1eb16f2..0000000000 Binary files a/front/public/images/large/Botania/dye/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/11.png b/front/public/images/large/Botania/dye/11.png deleted file mode 100644 index 23edba9772..0000000000 Binary files a/front/public/images/large/Botania/dye/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/12.png b/front/public/images/large/Botania/dye/12.png deleted file mode 100644 index 61ebe72079..0000000000 Binary files a/front/public/images/large/Botania/dye/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/13.png b/front/public/images/large/Botania/dye/13.png deleted file mode 100644 index b195627d2c..0000000000 Binary files a/front/public/images/large/Botania/dye/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/14.png b/front/public/images/large/Botania/dye/14.png deleted file mode 100644 index fadc0b911e..0000000000 Binary files a/front/public/images/large/Botania/dye/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/15.png b/front/public/images/large/Botania/dye/15.png deleted file mode 100644 index 5660cedf10..0000000000 Binary files a/front/public/images/large/Botania/dye/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/2.png b/front/public/images/large/Botania/dye/2.png deleted file mode 100644 index 50daa5b39c..0000000000 Binary files a/front/public/images/large/Botania/dye/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/3.png b/front/public/images/large/Botania/dye/3.png deleted file mode 100644 index fb8ed353b8..0000000000 Binary files a/front/public/images/large/Botania/dye/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/4.png b/front/public/images/large/Botania/dye/4.png deleted file mode 100644 index d1ea299688..0000000000 Binary files a/front/public/images/large/Botania/dye/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/5.png b/front/public/images/large/Botania/dye/5.png deleted file mode 100644 index 4ff78e2b32..0000000000 Binary files a/front/public/images/large/Botania/dye/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/6.png b/front/public/images/large/Botania/dye/6.png deleted file mode 100644 index d0463e3b64..0000000000 Binary files a/front/public/images/large/Botania/dye/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/7.png b/front/public/images/large/Botania/dye/7.png deleted file mode 100644 index 32ac5dd224..0000000000 Binary files a/front/public/images/large/Botania/dye/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/8.png b/front/public/images/large/Botania/dye/8.png deleted file mode 100644 index 8959730920..0000000000 Binary files a/front/public/images/large/Botania/dye/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/dye/9.png b/front/public/images/large/Botania/dye/9.png deleted file mode 100644 index fa416173c8..0000000000 Binary files a/front/public/images/large/Botania/dye/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumAxe/0.png b/front/public/images/large/Botania/elementiumAxe/0.png deleted file mode 100644 index 030cd57453..0000000000 Binary files a/front/public/images/large/Botania/elementiumAxe/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumBoots/0.png b/front/public/images/large/Botania/elementiumBoots/0.png deleted file mode 100644 index 19aa573ffd..0000000000 Binary files a/front/public/images/large/Botania/elementiumBoots/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumChest/0.png b/front/public/images/large/Botania/elementiumChest/0.png deleted file mode 100644 index a274b70f1b..0000000000 Binary files a/front/public/images/large/Botania/elementiumChest/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumHelm/0.png b/front/public/images/large/Botania/elementiumHelm/0.png deleted file mode 100644 index 13c7473947..0000000000 Binary files a/front/public/images/large/Botania/elementiumHelm/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumHelmReveal/0.png b/front/public/images/large/Botania/elementiumHelmReveal/0.png deleted file mode 100644 index 8de44342ac..0000000000 Binary files a/front/public/images/large/Botania/elementiumHelmReveal/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumLegs/0.png b/front/public/images/large/Botania/elementiumLegs/0.png deleted file mode 100644 index 98c0f16194..0000000000 Binary files a/front/public/images/large/Botania/elementiumLegs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumPick/0.png b/front/public/images/large/Botania/elementiumPick/0.png deleted file mode 100644 index cf53fbbf05..0000000000 Binary files a/front/public/images/large/Botania/elementiumPick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumShears/0.png b/front/public/images/large/Botania/elementiumShears/0.png deleted file mode 100644 index a10892080a..0000000000 Binary files a/front/public/images/large/Botania/elementiumShears/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumShovel/0.png b/front/public/images/large/Botania/elementiumShovel/0.png deleted file mode 100644 index 8afa02baf1..0000000000 Binary files a/front/public/images/large/Botania/elementiumShovel/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elementiumSword/0.png b/front/public/images/large/Botania/elementiumSword/0.png deleted file mode 100644 index ac32d67f4a..0000000000 Binary files a/front/public/images/large/Botania/elementiumSword/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elfGlass/0.png b/front/public/images/large/Botania/elfGlass/0.png deleted file mode 100644 index a38d8429f6..0000000000 Binary files a/front/public/images/large/Botania/elfGlass/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/elfGlassPane/0.png b/front/public/images/large/Botania/elfGlassPane/0.png deleted file mode 100644 index ad41e07f3a..0000000000 Binary files a/front/public/images/large/Botania/elfGlassPane/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/enchantedSoil/0.png b/front/public/images/large/Botania/enchantedSoil/0.png deleted file mode 100644 index b6b916f152..0000000000 Binary files a/front/public/images/large/Botania/enchantedSoil/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/enchanter/0.png b/front/public/images/large/Botania/enchanter/0.png deleted file mode 100644 index 319289dc9e..0000000000 Binary files a/front/public/images/large/Botania/enchanter/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick/0.png b/front/public/images/large/Botania/endStoneBrick/0.png deleted file mode 100644 index 6881c90148..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick/1.png b/front/public/images/large/Botania/endStoneBrick/1.png deleted file mode 100644 index aeb4ba5be1..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick/2.png b/front/public/images/large/Botania/endStoneBrick/2.png deleted file mode 100644 index 124b071436..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick/3.png b/front/public/images/large/Botania/endStoneBrick/3.png deleted file mode 100644 index 0d82aaeafa..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick0Slab/0.png b/front/public/images/large/Botania/endStoneBrick0Slab/0.png deleted file mode 100644 index c9c7a8f34c..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick0SlabFull/0.png b/front/public/images/large/Botania/endStoneBrick0SlabFull/0.png deleted file mode 100644 index 6881c90148..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick0Stairs/0.png b/front/public/images/large/Botania/endStoneBrick0Stairs/0.png deleted file mode 100644 index 3d7305e804..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick2Slab/0.png b/front/public/images/large/Botania/endStoneBrick2Slab/0.png deleted file mode 100644 index 5e8e4ea4db..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick2Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick2SlabFull/0.png b/front/public/images/large/Botania/endStoneBrick2SlabFull/0.png deleted file mode 100644 index 124b071436..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/endStoneBrick2Stairs/0.png b/front/public/images/large/Botania/endStoneBrick2Stairs/0.png deleted file mode 100644 index dcc6e64d99..0000000000 Binary files a/front/public/images/large/Botania/endStoneBrick2Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/enderDagger/0.png b/front/public/images/large/Botania/enderDagger/0.png deleted file mode 100644 index 3c09ca7d3b..0000000000 Binary files a/front/public/images/large/Botania/enderDagger/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/enderEyeBlock/0.png b/front/public/images/large/Botania/enderEyeBlock/0.png deleted file mode 100644 index cb364d072f..0000000000 Binary files a/front/public/images/large/Botania/enderEyeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/enderHand/0.png b/front/public/images/large/Botania/enderHand/0.png deleted file mode 100644 index 6e46d20cab..0000000000 Binary files a/front/public/images/large/Botania/enderHand/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/exchangeRod/0.png b/front/public/images/large/Botania/exchangeRod/0.png deleted file mode 100644 index 10bb3db0bc..0000000000 Binary files a/front/public/images/large/Botania/exchangeRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/fakeAir/0.png b/front/public/images/large/Botania/fakeAir/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Botania/fakeAir/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/felPumpkin/0.png b/front/public/images/large/Botania/felPumpkin/0.png deleted file mode 100644 index 84b484c1da..0000000000 Binary files a/front/public/images/large/Botania/felPumpkin/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/fertilizer/0.png b/front/public/images/large/Botania/fertilizer/0.png deleted file mode 100644 index 8998ce64c3..0000000000 Binary files a/front/public/images/large/Botania/fertilizer/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/fireRod/0.png b/front/public/images/large/Botania/fireRod/0.png deleted file mode 100644 index 464d55b66d..0000000000 Binary files a/front/public/images/large/Botania/fireRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/0.png b/front/public/images/large/Botania/flightTiara/0.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/1.png b/front/public/images/large/Botania/flightTiara/1.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/2.png b/front/public/images/large/Botania/flightTiara/2.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/3.png b/front/public/images/large/Botania/flightTiara/3.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/4.png b/front/public/images/large/Botania/flightTiara/4.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/5.png b/front/public/images/large/Botania/flightTiara/5.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/6.png b/front/public/images/large/Botania/flightTiara/6.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/7.png b/front/public/images/large/Botania/flightTiara/7.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/flightTiara/8.png b/front/public/images/large/Botania/flightTiara/8.png deleted file mode 100644 index 6d381675ec..0000000000 Binary files a/front/public/images/large/Botania/flightTiara/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/floatingSpecialFlower/0.png b/front/public/images/large/Botania/floatingSpecialFlower/0.png deleted file mode 100644 index 018d312bfa..0000000000 Binary files a/front/public/images/large/Botania/floatingSpecialFlower/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/0.png b/front/public/images/large/Botania/flower/0.png deleted file mode 100644 index b2bed560d5..0000000000 Binary files a/front/public/images/large/Botania/flower/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/1.png b/front/public/images/large/Botania/flower/1.png deleted file mode 100644 index 88c94a8197..0000000000 Binary files a/front/public/images/large/Botania/flower/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/10.png b/front/public/images/large/Botania/flower/10.png deleted file mode 100644 index 9510ce8337..0000000000 Binary files a/front/public/images/large/Botania/flower/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/11.png b/front/public/images/large/Botania/flower/11.png deleted file mode 100644 index 206d7e035f..0000000000 Binary files a/front/public/images/large/Botania/flower/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/12.png b/front/public/images/large/Botania/flower/12.png deleted file mode 100644 index 314dc201f8..0000000000 Binary files a/front/public/images/large/Botania/flower/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/13.png b/front/public/images/large/Botania/flower/13.png deleted file mode 100644 index 8b6b3ade99..0000000000 Binary files a/front/public/images/large/Botania/flower/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/14.png b/front/public/images/large/Botania/flower/14.png deleted file mode 100644 index 50b69757b2..0000000000 Binary files a/front/public/images/large/Botania/flower/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/15.png b/front/public/images/large/Botania/flower/15.png deleted file mode 100644 index d67d9001cb..0000000000 Binary files a/front/public/images/large/Botania/flower/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/2.png b/front/public/images/large/Botania/flower/2.png deleted file mode 100644 index 6f53d558f0..0000000000 Binary files a/front/public/images/large/Botania/flower/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/3.png b/front/public/images/large/Botania/flower/3.png deleted file mode 100644 index 026fe02d73..0000000000 Binary files a/front/public/images/large/Botania/flower/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/4.png b/front/public/images/large/Botania/flower/4.png deleted file mode 100644 index 2f5ca132df..0000000000 Binary files a/front/public/images/large/Botania/flower/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/5.png b/front/public/images/large/Botania/flower/5.png deleted file mode 100644 index dac063f072..0000000000 Binary files a/front/public/images/large/Botania/flower/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/6.png b/front/public/images/large/Botania/flower/6.png deleted file mode 100644 index b456db2f22..0000000000 Binary files a/front/public/images/large/Botania/flower/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/7.png b/front/public/images/large/Botania/flower/7.png deleted file mode 100644 index b2d4f6cbdd..0000000000 Binary files a/front/public/images/large/Botania/flower/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/8.png b/front/public/images/large/Botania/flower/8.png deleted file mode 100644 index 5534ddde29..0000000000 Binary files a/front/public/images/large/Botania/flower/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/flower/9.png b/front/public/images/large/Botania/flower/9.png deleted file mode 100644 index c1f5065796..0000000000 Binary files a/front/public/images/large/Botania/flower/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/flowerBag/0.png b/front/public/images/large/Botania/flowerBag/0.png deleted file mode 100644 index 8f35abc441..0000000000 Binary files a/front/public/images/large/Botania/flowerBag/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/flugelEye/0.png b/front/public/images/large/Botania/flugelEye/0.png deleted file mode 100644 index 13d64b50b5..0000000000 Binary files a/front/public/images/large/Botania/flugelEye/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/forestDrum/0.png b/front/public/images/large/Botania/forestDrum/0.png deleted file mode 100644 index 6ab0bb5bc3..0000000000 Binary files a/front/public/images/large/Botania/forestDrum/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/forestDrum/1.png b/front/public/images/large/Botania/forestDrum/1.png deleted file mode 100644 index 8936abdb30..0000000000 Binary files a/front/public/images/large/Botania/forestDrum/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/forestDrum/2.png b/front/public/images/large/Botania/forestDrum/2.png deleted file mode 100644 index 451a2769db..0000000000 Binary files a/front/public/images/large/Botania/forestDrum/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/forestEye/0.png b/front/public/images/large/Botania/forestEye/0.png deleted file mode 100644 index 1c0dc899fa..0000000000 Binary files a/front/public/images/large/Botania/forestEye/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/gaiaHead/0.png b/front/public/images/large/Botania/gaiaHead/0.png deleted file mode 100644 index 93222ca2fa..0000000000 Binary files a/front/public/images/large/Botania/gaiaHead/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/gaiaHeadBlock/0.png b/front/public/images/large/Botania/gaiaHeadBlock/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Botania/gaiaHeadBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/ghostRail/0.png b/front/public/images/large/Botania/ghostRail/0.png deleted file mode 100644 index 12212c462e..0000000000 Binary files a/front/public/images/large/Botania/ghostRail/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/glassPick/0.png b/front/public/images/large/Botania/glassPick/0.png deleted file mode 100644 index 40691cc9b7..0000000000 Binary files a/front/public/images/large/Botania/glassPick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/goldenLaurel/0.png b/front/public/images/large/Botania/goldenLaurel/0.png deleted file mode 100644 index b9ef46db8f..0000000000 Binary files a/front/public/images/large/Botania/goldenLaurel/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassHorn/0.png b/front/public/images/large/Botania/grassHorn/0.png deleted file mode 100644 index e9a9fac49c..0000000000 Binary files a/front/public/images/large/Botania/grassHorn/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassHorn/1.png b/front/public/images/large/Botania/grassHorn/1.png deleted file mode 100644 index 52e9017944..0000000000 Binary files a/front/public/images/large/Botania/grassHorn/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassHorn/2.png b/front/public/images/large/Botania/grassHorn/2.png deleted file mode 100644 index b5fd75ad16..0000000000 Binary files a/front/public/images/large/Botania/grassHorn/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/0.png b/front/public/images/large/Botania/grassSeeds/0.png deleted file mode 100644 index 1566e8282a..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/1.png b/front/public/images/large/Botania/grassSeeds/1.png deleted file mode 100644 index 26a7da2fd8..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/2.png b/front/public/images/large/Botania/grassSeeds/2.png deleted file mode 100644 index 53e89bfee8..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/3.png b/front/public/images/large/Botania/grassSeeds/3.png deleted file mode 100644 index 59826f00ba..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/4.png b/front/public/images/large/Botania/grassSeeds/4.png deleted file mode 100644 index 14812c845a..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/5.png b/front/public/images/large/Botania/grassSeeds/5.png deleted file mode 100644 index 4da81e35bd..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/6.png b/front/public/images/large/Botania/grassSeeds/6.png deleted file mode 100644 index 54af236b45..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/7.png b/front/public/images/large/Botania/grassSeeds/7.png deleted file mode 100644 index 503fdbba21..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/grassSeeds/8.png b/front/public/images/large/Botania/grassSeeds/8.png deleted file mode 100644 index b0844ed711..0000000000 Binary files a/front/public/images/large/Botania/grassSeeds/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/gravityRod/0.png b/front/public/images/large/Botania/gravityRod/0.png deleted file mode 100644 index 02f0b942c9..0000000000 Binary files a/front/public/images/large/Botania/gravityRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/holyCloak/0.png b/front/public/images/large/Botania/holyCloak/0.png deleted file mode 100644 index e8146dcf40..0000000000 Binary files a/front/public/images/large/Botania/holyCloak/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/hourglass/0.png b/front/public/images/large/Botania/hourglass/0.png deleted file mode 100644 index d18c51845f..0000000000 Binary files a/front/public/images/large/Botania/hourglass/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/icePendant/0.png b/front/public/images/large/Botania/icePendant/0.png deleted file mode 100644 index b8624bb168..0000000000 Binary files a/front/public/images/large/Botania/icePendant/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/incensePlate/0.png b/front/public/images/large/Botania/incensePlate/0.png deleted file mode 100644 index f5a89951bb..0000000000 Binary files a/front/public/images/large/Botania/incensePlate/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/incenseStick/0.png b/front/public/images/large/Botania/incenseStick/0.png deleted file mode 100644 index 69ec59af33..0000000000 Binary files a/front/public/images/large/Botania/incenseStick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/infiniteFruit/0.png b/front/public/images/large/Botania/infiniteFruit/0.png deleted file mode 100644 index 7e0777a2af..0000000000 Binary files a/front/public/images/large/Botania/infiniteFruit/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/itemFinder/0.png b/front/public/images/large/Botania/itemFinder/0.png deleted file mode 100644 index 172ee66849..0000000000 Binary files a/front/public/images/large/Botania/itemFinder/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/keepIvy/0.png b/front/public/images/large/Botania/keepIvy/0.png deleted file mode 100644 index a0c7066eac..0000000000 Binary files a/front/public/images/large/Botania/keepIvy/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/kingKey/0.png b/front/public/images/large/Botania/kingKey/0.png deleted file mode 100644 index bb063ff74a..0000000000 Binary files a/front/public/images/large/Botania/kingKey/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/knockbackBelt/0.png b/front/public/images/large/Botania/knockbackBelt/0.png deleted file mode 100644 index 042e7047fb..0000000000 Binary files a/front/public/images/large/Botania/knockbackBelt/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/laputaShard/0.png b/front/public/images/large/Botania/laputaShard/0.png deleted file mode 100644 index 2c6cd8478f..0000000000 Binary files a/front/public/images/large/Botania/laputaShard/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/laputaShard/14.png b/front/public/images/large/Botania/laputaShard/14.png deleted file mode 100644 index 2c6cd8478f..0000000000 Binary files a/front/public/images/large/Botania/laputaShard/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/laputaShard/19.png b/front/public/images/large/Botania/laputaShard/19.png deleted file mode 100644 index 2c6cd8478f..0000000000 Binary files a/front/public/images/large/Botania/laputaShard/19.png and /dev/null differ diff --git a/front/public/images/large/Botania/laputaShard/4.png b/front/public/images/large/Botania/laputaShard/4.png deleted file mode 100644 index 2c6cd8478f..0000000000 Binary files a/front/public/images/large/Botania/laputaShard/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/laputaShard/9.png b/front/public/images/large/Botania/laputaShard/9.png deleted file mode 100644 index 2c6cd8478f..0000000000 Binary files a/front/public/images/large/Botania/laputaShard/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/lavaPendant/0.png b/front/public/images/large/Botania/lavaPendant/0.png deleted file mode 100644 index 8c0a13ada2..0000000000 Binary files a/front/public/images/large/Botania/lavaPendant/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/0.png b/front/public/images/large/Botania/lens/0.png deleted file mode 100644 index ef6c92076f..0000000000 Binary files a/front/public/images/large/Botania/lens/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/1.png b/front/public/images/large/Botania/lens/1.png deleted file mode 100644 index c235a32da3..0000000000 Binary files a/front/public/images/large/Botania/lens/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/10.png b/front/public/images/large/Botania/lens/10.png deleted file mode 100644 index b064a48c0d..0000000000 Binary files a/front/public/images/large/Botania/lens/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/11.png b/front/public/images/large/Botania/lens/11.png deleted file mode 100644 index add7ce4fd9..0000000000 Binary files a/front/public/images/large/Botania/lens/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/12.png b/front/public/images/large/Botania/lens/12.png deleted file mode 100644 index 1be399dd8a..0000000000 Binary files a/front/public/images/large/Botania/lens/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/13.png b/front/public/images/large/Botania/lens/13.png deleted file mode 100644 index 2b0cb1c4bf..0000000000 Binary files a/front/public/images/large/Botania/lens/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/14.png b/front/public/images/large/Botania/lens/14.png deleted file mode 100644 index 1951b14e87..0000000000 Binary files a/front/public/images/large/Botania/lens/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/15.png b/front/public/images/large/Botania/lens/15.png deleted file mode 100644 index fd5c4a49f5..0000000000 Binary files a/front/public/images/large/Botania/lens/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/16.png b/front/public/images/large/Botania/lens/16.png deleted file mode 100644 index cf1c1c3677..0000000000 Binary files a/front/public/images/large/Botania/lens/16.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/17.png b/front/public/images/large/Botania/lens/17.png deleted file mode 100644 index 29af29f5de..0000000000 Binary files a/front/public/images/large/Botania/lens/17.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/18.png b/front/public/images/large/Botania/lens/18.png deleted file mode 100644 index 7e4503afea..0000000000 Binary files a/front/public/images/large/Botania/lens/18.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/19.png b/front/public/images/large/Botania/lens/19.png deleted file mode 100644 index 2eb72bc9a4..0000000000 Binary files a/front/public/images/large/Botania/lens/19.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/2.png b/front/public/images/large/Botania/lens/2.png deleted file mode 100644 index c225ff0eef..0000000000 Binary files a/front/public/images/large/Botania/lens/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/20.png b/front/public/images/large/Botania/lens/20.png deleted file mode 100644 index 0a8dd39dae..0000000000 Binary files a/front/public/images/large/Botania/lens/20.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/21.png b/front/public/images/large/Botania/lens/21.png deleted file mode 100644 index 3e2fe3c38a..0000000000 Binary files a/front/public/images/large/Botania/lens/21.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/3.png b/front/public/images/large/Botania/lens/3.png deleted file mode 100644 index ac0ba8a27b..0000000000 Binary files a/front/public/images/large/Botania/lens/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/4.png b/front/public/images/large/Botania/lens/4.png deleted file mode 100644 index 05c7e628a2..0000000000 Binary files a/front/public/images/large/Botania/lens/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/5.png b/front/public/images/large/Botania/lens/5.png deleted file mode 100644 index 901a046db1..0000000000 Binary files a/front/public/images/large/Botania/lens/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/6.png b/front/public/images/large/Botania/lens/6.png deleted file mode 100644 index 514ba2a3c2..0000000000 Binary files a/front/public/images/large/Botania/lens/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/7.png b/front/public/images/large/Botania/lens/7.png deleted file mode 100644 index c309862231..0000000000 Binary files a/front/public/images/large/Botania/lens/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/8.png b/front/public/images/large/Botania/lens/8.png deleted file mode 100644 index 33aee68cc6..0000000000 Binary files a/front/public/images/large/Botania/lens/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/lens/9.png b/front/public/images/large/Botania/lens/9.png deleted file mode 100644 index 4beecc906d..0000000000 Binary files a/front/public/images/large/Botania/lens/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/lexicon/0.png b/front/public/images/large/Botania/lexicon/0.png deleted file mode 100644 index 558d4b7de1..0000000000 Binary files a/front/public/images/large/Botania/lexicon/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/lightLauncher/0.png b/front/public/images/large/Botania/lightLauncher/0.png deleted file mode 100644 index 029a34c60b..0000000000 Binary files a/front/public/images/large/Botania/lightLauncher/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/lightRelay/0.png b/front/public/images/large/Botania/lightRelay/0.png deleted file mode 100644 index 032397b22f..0000000000 Binary files a/front/public/images/large/Botania/lightRelay/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/lightRelay/1.png b/front/public/images/large/Botania/lightRelay/1.png deleted file mode 100644 index 0fc93d99ee..0000000000 Binary files a/front/public/images/large/Botania/lightRelay/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock/0.png b/front/public/images/large/Botania/livingrock/0.png deleted file mode 100644 index 87a5227bba..0000000000 Binary files a/front/public/images/large/Botania/livingrock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock/1.png b/front/public/images/large/Botania/livingrock/1.png deleted file mode 100644 index 65fdd4ab13..0000000000 Binary files a/front/public/images/large/Botania/livingrock/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock/2.png b/front/public/images/large/Botania/livingrock/2.png deleted file mode 100644 index 3c91cdb6f4..0000000000 Binary files a/front/public/images/large/Botania/livingrock/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock/3.png b/front/public/images/large/Botania/livingrock/3.png deleted file mode 100644 index aaade08e8e..0000000000 Binary files a/front/public/images/large/Botania/livingrock/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock/4.png b/front/public/images/large/Botania/livingrock/4.png deleted file mode 100644 index 5b58d45fec..0000000000 Binary files a/front/public/images/large/Botania/livingrock/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock0Slab/0.png b/front/public/images/large/Botania/livingrock0Slab/0.png deleted file mode 100644 index 8d40548a70..0000000000 Binary files a/front/public/images/large/Botania/livingrock0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock0SlabFull/0.png b/front/public/images/large/Botania/livingrock0SlabFull/0.png deleted file mode 100644 index 87a5227bba..0000000000 Binary files a/front/public/images/large/Botania/livingrock0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock0Stairs/0.png b/front/public/images/large/Botania/livingrock0Stairs/0.png deleted file mode 100644 index d79ab45967..0000000000 Binary files a/front/public/images/large/Botania/livingrock0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock0Wall/0.png b/front/public/images/large/Botania/livingrock0Wall/0.png deleted file mode 100644 index b3b82e8a07..0000000000 Binary files a/front/public/images/large/Botania/livingrock0Wall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock1Slab/0.png b/front/public/images/large/Botania/livingrock1Slab/0.png deleted file mode 100644 index afd8446754..0000000000 Binary files a/front/public/images/large/Botania/livingrock1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock1SlabFull/0.png b/front/public/images/large/Botania/livingrock1SlabFull/0.png deleted file mode 100644 index 65fdd4ab13..0000000000 Binary files a/front/public/images/large/Botania/livingrock1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingrock1Stairs/0.png b/front/public/images/large/Botania/livingrock1Stairs/0.png deleted file mode 100644 index 5bfef35239..0000000000 Binary files a/front/public/images/large/Botania/livingrock1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood/0.png b/front/public/images/large/Botania/livingwood/0.png deleted file mode 100644 index 48f7a80208..0000000000 Binary files a/front/public/images/large/Botania/livingwood/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood/1.png b/front/public/images/large/Botania/livingwood/1.png deleted file mode 100644 index b7d9cb89df..0000000000 Binary files a/front/public/images/large/Botania/livingwood/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood/2.png b/front/public/images/large/Botania/livingwood/2.png deleted file mode 100644 index 26841936fd..0000000000 Binary files a/front/public/images/large/Botania/livingwood/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood/3.png b/front/public/images/large/Botania/livingwood/3.png deleted file mode 100644 index afe4e2871f..0000000000 Binary files a/front/public/images/large/Botania/livingwood/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood/4.png b/front/public/images/large/Botania/livingwood/4.png deleted file mode 100644 index 06cfa0c7a0..0000000000 Binary files a/front/public/images/large/Botania/livingwood/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood/5.png b/front/public/images/large/Botania/livingwood/5.png deleted file mode 100644 index ea587e07aa..0000000000 Binary files a/front/public/images/large/Botania/livingwood/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood0Slab/0.png b/front/public/images/large/Botania/livingwood0Slab/0.png deleted file mode 100644 index 5d660c7177..0000000000 Binary files a/front/public/images/large/Botania/livingwood0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood0SlabFull/0.png b/front/public/images/large/Botania/livingwood0SlabFull/0.png deleted file mode 100644 index 48f7a80208..0000000000 Binary files a/front/public/images/large/Botania/livingwood0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood0Stairs/0.png b/front/public/images/large/Botania/livingwood0Stairs/0.png deleted file mode 100644 index edff6d393d..0000000000 Binary files a/front/public/images/large/Botania/livingwood0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood0Wall/0.png b/front/public/images/large/Botania/livingwood0Wall/0.png deleted file mode 100644 index 7aa9f57a57..0000000000 Binary files a/front/public/images/large/Botania/livingwood0Wall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood1Slab/0.png b/front/public/images/large/Botania/livingwood1Slab/0.png deleted file mode 100644 index af200d4fe2..0000000000 Binary files a/front/public/images/large/Botania/livingwood1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood1SlabFull/0.png b/front/public/images/large/Botania/livingwood1SlabFull/0.png deleted file mode 100644 index b7d9cb89df..0000000000 Binary files a/front/public/images/large/Botania/livingwood1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwood1Stairs/0.png b/front/public/images/large/Botania/livingwood1Stairs/0.png deleted file mode 100644 index 59a6d27890..0000000000 Binary files a/front/public/images/large/Botania/livingwood1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/livingwoodBow/0.png b/front/public/images/large/Botania/livingwoodBow/0.png deleted file mode 100644 index 6a28d0ec5b..0000000000 Binary files a/front/public/images/large/Botania/livingwoodBow/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/lokiRing/0.png b/front/public/images/large/Botania/lokiRing/0.png deleted file mode 100644 index 603efa60d2..0000000000 Binary files a/front/public/images/large/Botania/lokiRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/magnetRing/0.png b/front/public/images/large/Botania/magnetRing/0.png deleted file mode 100644 index f02779e306..0000000000 Binary files a/front/public/images/large/Botania/magnetRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/magnetRingGreater/0.png b/front/public/images/large/Botania/magnetRingGreater/0.png deleted file mode 100644 index f0680910d7..0000000000 Binary files a/front/public/images/large/Botania/magnetRingGreater/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/0.png b/front/public/images/large/Botania/manaBeacon/0.png deleted file mode 100644 index 5ad9193f80..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/1.png b/front/public/images/large/Botania/manaBeacon/1.png deleted file mode 100644 index d52c5fb784..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/10.png b/front/public/images/large/Botania/manaBeacon/10.png deleted file mode 100644 index 2020c09cf7..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/11.png b/front/public/images/large/Botania/manaBeacon/11.png deleted file mode 100644 index 29afdec5d9..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/12.png b/front/public/images/large/Botania/manaBeacon/12.png deleted file mode 100644 index 54a108722d..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/13.png b/front/public/images/large/Botania/manaBeacon/13.png deleted file mode 100644 index f1c6feb7a5..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/14.png b/front/public/images/large/Botania/manaBeacon/14.png deleted file mode 100644 index e305bd409d..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/15.png b/front/public/images/large/Botania/manaBeacon/15.png deleted file mode 100644 index 2fb159ddf4..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/2.png b/front/public/images/large/Botania/manaBeacon/2.png deleted file mode 100644 index 95cd8928ce..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/3.png b/front/public/images/large/Botania/manaBeacon/3.png deleted file mode 100644 index 98a8790ec6..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/4.png b/front/public/images/large/Botania/manaBeacon/4.png deleted file mode 100644 index bf7cc85199..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/5.png b/front/public/images/large/Botania/manaBeacon/5.png deleted file mode 100644 index ea9f27e250..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/6.png b/front/public/images/large/Botania/manaBeacon/6.png deleted file mode 100644 index f3365e25ba..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/7.png b/front/public/images/large/Botania/manaBeacon/7.png deleted file mode 100644 index aef54254a5..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/8.png b/front/public/images/large/Botania/manaBeacon/8.png deleted file mode 100644 index fb165759a5..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBeacon/9.png b/front/public/images/large/Botania/manaBeacon/9.png deleted file mode 100644 index e72d399673..0000000000 Binary files a/front/public/images/large/Botania/manaBeacon/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBomb/0.png b/front/public/images/large/Botania/manaBomb/0.png deleted file mode 100644 index f0f46a6e17..0000000000 Binary files a/front/public/images/large/Botania/manaBomb/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaBottle/0.png b/front/public/images/large/Botania/manaBottle/0.png deleted file mode 100644 index e1288a6694..0000000000 Binary files a/front/public/images/large/Botania/manaBottle/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaCookie/0.png b/front/public/images/large/Botania/manaCookie/0.png deleted file mode 100644 index 12b6cde9cd..0000000000 Binary files a/front/public/images/large/Botania/manaCookie/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaDetector/0.png b/front/public/images/large/Botania/manaDetector/0.png deleted file mode 100644 index 7ed90a299f..0000000000 Binary files a/front/public/images/large/Botania/manaDetector/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaFlame/0.png b/front/public/images/large/Botania/manaFlame/0.png deleted file mode 100644 index 8f11b3468d..0000000000 Binary files a/front/public/images/large/Botania/manaFlame/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaGlass/0.png b/front/public/images/large/Botania/manaGlass/0.png deleted file mode 100644 index d0edd296e9..0000000000 Binary files a/front/public/images/large/Botania/manaGlass/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaGlassPane/0.png b/front/public/images/large/Botania/manaGlassPane/0.png deleted file mode 100644 index 36796ea611..0000000000 Binary files a/front/public/images/large/Botania/manaGlassPane/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaGun/0.png b/front/public/images/large/Botania/manaGun/0.png deleted file mode 100644 index 7a0580a167..0000000000 Binary files a/front/public/images/large/Botania/manaGun/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaInkwell/150.png b/front/public/images/large/Botania/manaInkwell/150.png deleted file mode 100644 index 23cad1bca5..0000000000 Binary files a/front/public/images/large/Botania/manaInkwell/150.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaMirror/1000.png b/front/public/images/large/Botania/manaMirror/1000.png deleted file mode 100644 index ea2e22f93c..0000000000 Binary files a/front/public/images/large/Botania/manaMirror/1000.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/0.png b/front/public/images/large/Botania/manaResource/0.png deleted file mode 100644 index 4040ea9bdc..0000000000 Binary files a/front/public/images/large/Botania/manaResource/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/1.png b/front/public/images/large/Botania/manaResource/1.png deleted file mode 100644 index 7a3977d0a0..0000000000 Binary files a/front/public/images/large/Botania/manaResource/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/10.png b/front/public/images/large/Botania/manaResource/10.png deleted file mode 100644 index 3dca5e2d75..0000000000 Binary files a/front/public/images/large/Botania/manaResource/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/11.png b/front/public/images/large/Botania/manaResource/11.png deleted file mode 100644 index 12aa379a55..0000000000 Binary files a/front/public/images/large/Botania/manaResource/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/12.png b/front/public/images/large/Botania/manaResource/12.png deleted file mode 100644 index 68e3799171..0000000000 Binary files a/front/public/images/large/Botania/manaResource/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/13.png b/front/public/images/large/Botania/manaResource/13.png deleted file mode 100644 index a3b3bf76da..0000000000 Binary files a/front/public/images/large/Botania/manaResource/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/14.png b/front/public/images/large/Botania/manaResource/14.png deleted file mode 100644 index a7d016369c..0000000000 Binary files a/front/public/images/large/Botania/manaResource/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/15.png b/front/public/images/large/Botania/manaResource/15.png deleted file mode 100644 index e34c7accb5..0000000000 Binary files a/front/public/images/large/Botania/manaResource/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/16.png b/front/public/images/large/Botania/manaResource/16.png deleted file mode 100644 index bec048f00d..0000000000 Binary files a/front/public/images/large/Botania/manaResource/16.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/17.png b/front/public/images/large/Botania/manaResource/17.png deleted file mode 100644 index 1f4f030020..0000000000 Binary files a/front/public/images/large/Botania/manaResource/17.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/18.png b/front/public/images/large/Botania/manaResource/18.png deleted file mode 100644 index 8d8e820746..0000000000 Binary files a/front/public/images/large/Botania/manaResource/18.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/19.png b/front/public/images/large/Botania/manaResource/19.png deleted file mode 100644 index 5ee8941bd0..0000000000 Binary files a/front/public/images/large/Botania/manaResource/19.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/2.png b/front/public/images/large/Botania/manaResource/2.png deleted file mode 100644 index ffb402eb63..0000000000 Binary files a/front/public/images/large/Botania/manaResource/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/22.png b/front/public/images/large/Botania/manaResource/22.png deleted file mode 100644 index 22303e1aa8..0000000000 Binary files a/front/public/images/large/Botania/manaResource/22.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/23.png b/front/public/images/large/Botania/manaResource/23.png deleted file mode 100644 index 582d777fed..0000000000 Binary files a/front/public/images/large/Botania/manaResource/23.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/3.png b/front/public/images/large/Botania/manaResource/3.png deleted file mode 100644 index 00136a5496..0000000000 Binary files a/front/public/images/large/Botania/manaResource/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/4.png b/front/public/images/large/Botania/manaResource/4.png deleted file mode 100644 index bedbc52d18..0000000000 Binary files a/front/public/images/large/Botania/manaResource/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/5.png b/front/public/images/large/Botania/manaResource/5.png deleted file mode 100644 index 272f8e32ff..0000000000 Binary files a/front/public/images/large/Botania/manaResource/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/6.png b/front/public/images/large/Botania/manaResource/6.png deleted file mode 100644 index 3867d780ff..0000000000 Binary files a/front/public/images/large/Botania/manaResource/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/7.png b/front/public/images/large/Botania/manaResource/7.png deleted file mode 100644 index 2dd178a23d..0000000000 Binary files a/front/public/images/large/Botania/manaResource/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/8.png b/front/public/images/large/Botania/manaResource/8.png deleted file mode 100644 index 8f14235c29..0000000000 Binary files a/front/public/images/large/Botania/manaResource/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaResource/9.png b/front/public/images/large/Botania/manaResource/9.png deleted file mode 100644 index bea3da58a0..0000000000 Binary files a/front/public/images/large/Botania/manaResource/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaRing/1000.png b/front/public/images/large/Botania/manaRing/1000.png deleted file mode 100644 index 985a4b12db..0000000000 Binary files a/front/public/images/large/Botania/manaRing/1000.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaRingGreater/1000.png b/front/public/images/large/Botania/manaRingGreater/1000.png deleted file mode 100644 index c9f9f6a256..0000000000 Binary files a/front/public/images/large/Botania/manaRingGreater/1000.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaTablet/0.png b/front/public/images/large/Botania/manaTablet/0.png deleted file mode 100644 index 42c5879b18..0000000000 Binary files a/front/public/images/large/Botania/manaTablet/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaVoid/0.png b/front/public/images/large/Botania/manaVoid/0.png deleted file mode 100644 index 22b0eb7918..0000000000 Binary files a/front/public/images/large/Botania/manaVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelAxe/0.png b/front/public/images/large/Botania/manasteelAxe/0.png deleted file mode 100644 index 0120b7f118..0000000000 Binary files a/front/public/images/large/Botania/manasteelAxe/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelBoots/0.png b/front/public/images/large/Botania/manasteelBoots/0.png deleted file mode 100644 index 83db51418b..0000000000 Binary files a/front/public/images/large/Botania/manasteelBoots/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelChest/0.png b/front/public/images/large/Botania/manasteelChest/0.png deleted file mode 100644 index 7942eb37f0..0000000000 Binary files a/front/public/images/large/Botania/manasteelChest/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelHelm/0.png b/front/public/images/large/Botania/manasteelHelm/0.png deleted file mode 100644 index 4d9806b99f..0000000000 Binary files a/front/public/images/large/Botania/manasteelHelm/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelHelmReveal/0.png b/front/public/images/large/Botania/manasteelHelmReveal/0.png deleted file mode 100644 index 19927414a1..0000000000 Binary files a/front/public/images/large/Botania/manasteelHelmReveal/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelLegs/0.png b/front/public/images/large/Botania/manasteelLegs/0.png deleted file mode 100644 index 5726ddae59..0000000000 Binary files a/front/public/images/large/Botania/manasteelLegs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelPick/0.png b/front/public/images/large/Botania/manasteelPick/0.png deleted file mode 100644 index 1a0f62e6e7..0000000000 Binary files a/front/public/images/large/Botania/manasteelPick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelShears/0.png b/front/public/images/large/Botania/manasteelShears/0.png deleted file mode 100644 index 3f5c2bc2c9..0000000000 Binary files a/front/public/images/large/Botania/manasteelShears/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelShovel/0.png b/front/public/images/large/Botania/manasteelShovel/0.png deleted file mode 100644 index a33296e155..0000000000 Binary files a/front/public/images/large/Botania/manasteelShovel/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manasteelSword/0.png b/front/public/images/large/Botania/manasteelSword/0.png deleted file mode 100644 index 032370271d..0000000000 Binary files a/front/public/images/large/Botania/manasteelSword/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaweaveBoots/0.png b/front/public/images/large/Botania/manaweaveBoots/0.png deleted file mode 100644 index 3ca05b9cbe..0000000000 Binary files a/front/public/images/large/Botania/manaweaveBoots/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaweaveChest/0.png b/front/public/images/large/Botania/manaweaveChest/0.png deleted file mode 100644 index 87f82fbbc8..0000000000 Binary files a/front/public/images/large/Botania/manaweaveChest/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaweaveHelm/0.png b/front/public/images/large/Botania/manaweaveHelm/0.png deleted file mode 100644 index 1ca4fff327..0000000000 Binary files a/front/public/images/large/Botania/manaweaveHelm/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/manaweaveLegs/0.png b/front/public/images/large/Botania/manaweaveLegs/0.png deleted file mode 100644 index 3a8a8f4ea3..0000000000 Binary files a/front/public/images/large/Botania/manaweaveLegs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/0.png b/front/public/images/large/Botania/miniIsland/0.png deleted file mode 100644 index 8245867334..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/1.png b/front/public/images/large/Botania/miniIsland/1.png deleted file mode 100644 index 55d51d9df7..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/10.png b/front/public/images/large/Botania/miniIsland/10.png deleted file mode 100644 index 8cfe2f8cba..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/11.png b/front/public/images/large/Botania/miniIsland/11.png deleted file mode 100644 index 41a1dbb81b..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/12.png b/front/public/images/large/Botania/miniIsland/12.png deleted file mode 100644 index f76aef1135..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/13.png b/front/public/images/large/Botania/miniIsland/13.png deleted file mode 100644 index 24fcaef92b..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/14.png b/front/public/images/large/Botania/miniIsland/14.png deleted file mode 100644 index d3114ac9bb..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/15.png b/front/public/images/large/Botania/miniIsland/15.png deleted file mode 100644 index 2342302a95..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/2.png b/front/public/images/large/Botania/miniIsland/2.png deleted file mode 100644 index babc8a87cb..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/3.png b/front/public/images/large/Botania/miniIsland/3.png deleted file mode 100644 index 670e0ca063..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/4.png b/front/public/images/large/Botania/miniIsland/4.png deleted file mode 100644 index 5cfe37bae4..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/5.png b/front/public/images/large/Botania/miniIsland/5.png deleted file mode 100644 index d16b6768e8..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/6.png b/front/public/images/large/Botania/miniIsland/6.png deleted file mode 100644 index f0ca7b2bdc..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/7.png b/front/public/images/large/Botania/miniIsland/7.png deleted file mode 100644 index aa5ce80675..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/8.png b/front/public/images/large/Botania/miniIsland/8.png deleted file mode 100644 index 1739d80ff3..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/miniIsland/9.png b/front/public/images/large/Botania/miniIsland/9.png deleted file mode 100644 index 10fa7960ef..0000000000 Binary files a/front/public/images/large/Botania/miniIsland/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/miningRing/0.png b/front/public/images/large/Botania/miningRing/0.png deleted file mode 100644 index 8234cff128..0000000000 Binary files a/front/public/images/large/Botania/miningRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/missileRod/0.png b/front/public/images/large/Botania/missileRod/0.png deleted file mode 100644 index 0c5cca1822..0000000000 Binary files a/front/public/images/large/Botania/missileRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/monocle/0.png b/front/public/images/large/Botania/monocle/0.png deleted file mode 100644 index d5e4b5e4ba..0000000000 Binary files a/front/public/images/large/Botania/monocle/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/0.png b/front/public/images/large/Botania/mushroom/0.png deleted file mode 100644 index 8826cf014e..0000000000 Binary files a/front/public/images/large/Botania/mushroom/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/1.png b/front/public/images/large/Botania/mushroom/1.png deleted file mode 100644 index dcffdbabaf..0000000000 Binary files a/front/public/images/large/Botania/mushroom/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/10.png b/front/public/images/large/Botania/mushroom/10.png deleted file mode 100644 index 3bf717e575..0000000000 Binary files a/front/public/images/large/Botania/mushroom/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/11.png b/front/public/images/large/Botania/mushroom/11.png deleted file mode 100644 index 2529364923..0000000000 Binary files a/front/public/images/large/Botania/mushroom/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/12.png b/front/public/images/large/Botania/mushroom/12.png deleted file mode 100644 index cf77b1477e..0000000000 Binary files a/front/public/images/large/Botania/mushroom/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/13.png b/front/public/images/large/Botania/mushroom/13.png deleted file mode 100644 index 0e1e588636..0000000000 Binary files a/front/public/images/large/Botania/mushroom/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/14.png b/front/public/images/large/Botania/mushroom/14.png deleted file mode 100644 index f7b366b216..0000000000 Binary files a/front/public/images/large/Botania/mushroom/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/15.png b/front/public/images/large/Botania/mushroom/15.png deleted file mode 100644 index 2c574ff2ba..0000000000 Binary files a/front/public/images/large/Botania/mushroom/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/2.png b/front/public/images/large/Botania/mushroom/2.png deleted file mode 100644 index b10b485be6..0000000000 Binary files a/front/public/images/large/Botania/mushroom/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/3.png b/front/public/images/large/Botania/mushroom/3.png deleted file mode 100644 index 0080e0b379..0000000000 Binary files a/front/public/images/large/Botania/mushroom/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/4.png b/front/public/images/large/Botania/mushroom/4.png deleted file mode 100644 index 948f51c016..0000000000 Binary files a/front/public/images/large/Botania/mushroom/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/5.png b/front/public/images/large/Botania/mushroom/5.png deleted file mode 100644 index cc28b50d3b..0000000000 Binary files a/front/public/images/large/Botania/mushroom/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/6.png b/front/public/images/large/Botania/mushroom/6.png deleted file mode 100644 index e94cdd45f7..0000000000 Binary files a/front/public/images/large/Botania/mushroom/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/7.png b/front/public/images/large/Botania/mushroom/7.png deleted file mode 100644 index 0e3184460b..0000000000 Binary files a/front/public/images/large/Botania/mushroom/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/8.png b/front/public/images/large/Botania/mushroom/8.png deleted file mode 100644 index 6f56402c7a..0000000000 Binary files a/front/public/images/large/Botania/mushroom/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/mushroom/9.png b/front/public/images/large/Botania/mushroom/9.png deleted file mode 100644 index 872aacabdc..0000000000 Binary files a/front/public/images/large/Botania/mushroom/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/obedienceStick/0.png b/front/public/images/large/Botania/obedienceStick/0.png deleted file mode 100644 index 2415dacd03..0000000000 Binary files a/front/public/images/large/Botania/obedienceStick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/odinRing/0.png b/front/public/images/large/Botania/odinRing/0.png deleted file mode 100644 index 3ec908118c..0000000000 Binary files a/front/public/images/large/Botania/odinRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/openBucket/0.png b/front/public/images/large/Botania/openBucket/0.png deleted file mode 100644 index 2888fb9d08..0000000000 Binary files a/front/public/images/large/Botania/openBucket/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/openCrate/0.png b/front/public/images/large/Botania/openCrate/0.png deleted file mode 100644 index 5957425f19..0000000000 Binary files a/front/public/images/large/Botania/openCrate/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/openCrate/1.png b/front/public/images/large/Botania/openCrate/1.png deleted file mode 100644 index 9d5ff4c1c8..0000000000 Binary files a/front/public/images/large/Botania/openCrate/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/overgrowthSeed/0.png b/front/public/images/large/Botania/overgrowthSeed/0.png deleted file mode 100644 index 5810391fa0..0000000000 Binary files a/front/public/images/large/Botania/overgrowthSeed/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement/0.png b/front/public/images/large/Botania/pavement/0.png deleted file mode 100644 index fa1daa1f1b..0000000000 Binary files a/front/public/images/large/Botania/pavement/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement/1.png b/front/public/images/large/Botania/pavement/1.png deleted file mode 100644 index 14f876575a..0000000000 Binary files a/front/public/images/large/Botania/pavement/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement/2.png b/front/public/images/large/Botania/pavement/2.png deleted file mode 100644 index 83beee8571..0000000000 Binary files a/front/public/images/large/Botania/pavement/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement/3.png b/front/public/images/large/Botania/pavement/3.png deleted file mode 100644 index 5500916d03..0000000000 Binary files a/front/public/images/large/Botania/pavement/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement/4.png b/front/public/images/large/Botania/pavement/4.png deleted file mode 100644 index 895d20ae43..0000000000 Binary files a/front/public/images/large/Botania/pavement/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement/5.png b/front/public/images/large/Botania/pavement/5.png deleted file mode 100644 index 8a1f9ce50d..0000000000 Binary files a/front/public/images/large/Botania/pavement/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement0Slab/0.png b/front/public/images/large/Botania/pavement0Slab/0.png deleted file mode 100644 index 6ecc64be18..0000000000 Binary files a/front/public/images/large/Botania/pavement0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement0SlabFull/0.png b/front/public/images/large/Botania/pavement0SlabFull/0.png deleted file mode 100644 index fa1daa1f1b..0000000000 Binary files a/front/public/images/large/Botania/pavement0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement0Stairs/0.png b/front/public/images/large/Botania/pavement0Stairs/0.png deleted file mode 100644 index e5a7de84ff..0000000000 Binary files a/front/public/images/large/Botania/pavement0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement1Slab/0.png b/front/public/images/large/Botania/pavement1Slab/0.png deleted file mode 100644 index 7f5bbb2df8..0000000000 Binary files a/front/public/images/large/Botania/pavement1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement1SlabFull/0.png b/front/public/images/large/Botania/pavement1SlabFull/0.png deleted file mode 100644 index 14f876575a..0000000000 Binary files a/front/public/images/large/Botania/pavement1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement1Stairs/0.png b/front/public/images/large/Botania/pavement1Stairs/0.png deleted file mode 100644 index 2b5772ca8d..0000000000 Binary files a/front/public/images/large/Botania/pavement1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement2Slab/0.png b/front/public/images/large/Botania/pavement2Slab/0.png deleted file mode 100644 index baf3f39cb0..0000000000 Binary files a/front/public/images/large/Botania/pavement2Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement2SlabFull/0.png b/front/public/images/large/Botania/pavement2SlabFull/0.png deleted file mode 100644 index 83beee8571..0000000000 Binary files a/front/public/images/large/Botania/pavement2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement2Stairs/0.png b/front/public/images/large/Botania/pavement2Stairs/0.png deleted file mode 100644 index a812f060d6..0000000000 Binary files a/front/public/images/large/Botania/pavement2Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement3Slab/0.png b/front/public/images/large/Botania/pavement3Slab/0.png deleted file mode 100644 index c4cd10121b..0000000000 Binary files a/front/public/images/large/Botania/pavement3Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement3SlabFull/0.png b/front/public/images/large/Botania/pavement3SlabFull/0.png deleted file mode 100644 index 5500916d03..0000000000 Binary files a/front/public/images/large/Botania/pavement3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement3Stairs/0.png b/front/public/images/large/Botania/pavement3Stairs/0.png deleted file mode 100644 index c8d22b5fb5..0000000000 Binary files a/front/public/images/large/Botania/pavement3Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement4Slab/0.png b/front/public/images/large/Botania/pavement4Slab/0.png deleted file mode 100644 index 085f6feb6a..0000000000 Binary files a/front/public/images/large/Botania/pavement4Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement4SlabFull/0.png b/front/public/images/large/Botania/pavement4SlabFull/0.png deleted file mode 100644 index 895d20ae43..0000000000 Binary files a/front/public/images/large/Botania/pavement4SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement4Stairs/0.png b/front/public/images/large/Botania/pavement4Stairs/0.png deleted file mode 100644 index 1cf9ce2b94..0000000000 Binary files a/front/public/images/large/Botania/pavement4Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement5Slab/0.png b/front/public/images/large/Botania/pavement5Slab/0.png deleted file mode 100644 index 35e226b3f0..0000000000 Binary files a/front/public/images/large/Botania/pavement5Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement5SlabFull/0.png b/front/public/images/large/Botania/pavement5SlabFull/0.png deleted file mode 100644 index 8a1f9ce50d..0000000000 Binary files a/front/public/images/large/Botania/pavement5SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pavement5Stairs/0.png b/front/public/images/large/Botania/pavement5Stairs/0.png deleted file mode 100644 index f041973d5b..0000000000 Binary files a/front/public/images/large/Botania/pavement5Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pestleAndMortar/0.png b/front/public/images/large/Botania/pestleAndMortar/0.png deleted file mode 100644 index bd393f2298..0000000000 Binary files a/front/public/images/large/Botania/pestleAndMortar/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/0.png b/front/public/images/large/Botania/petal/0.png deleted file mode 100644 index ff97f6e381..0000000000 Binary files a/front/public/images/large/Botania/petal/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/1.png b/front/public/images/large/Botania/petal/1.png deleted file mode 100644 index e0b759e8dd..0000000000 Binary files a/front/public/images/large/Botania/petal/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/10.png b/front/public/images/large/Botania/petal/10.png deleted file mode 100644 index 7ab1bc7ba6..0000000000 Binary files a/front/public/images/large/Botania/petal/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/11.png b/front/public/images/large/Botania/petal/11.png deleted file mode 100644 index 85a2431d18..0000000000 Binary files a/front/public/images/large/Botania/petal/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/12.png b/front/public/images/large/Botania/petal/12.png deleted file mode 100644 index d0b87be628..0000000000 Binary files a/front/public/images/large/Botania/petal/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/13.png b/front/public/images/large/Botania/petal/13.png deleted file mode 100644 index 390751d6f5..0000000000 Binary files a/front/public/images/large/Botania/petal/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/14.png b/front/public/images/large/Botania/petal/14.png deleted file mode 100644 index 82d62ebb59..0000000000 Binary files a/front/public/images/large/Botania/petal/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/15.png b/front/public/images/large/Botania/petal/15.png deleted file mode 100644 index 92f3816b95..0000000000 Binary files a/front/public/images/large/Botania/petal/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/2.png b/front/public/images/large/Botania/petal/2.png deleted file mode 100644 index 34c5facfea..0000000000 Binary files a/front/public/images/large/Botania/petal/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/3.png b/front/public/images/large/Botania/petal/3.png deleted file mode 100644 index 497a83f572..0000000000 Binary files a/front/public/images/large/Botania/petal/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/4.png b/front/public/images/large/Botania/petal/4.png deleted file mode 100644 index d2cd40dbd9..0000000000 Binary files a/front/public/images/large/Botania/petal/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/5.png b/front/public/images/large/Botania/petal/5.png deleted file mode 100644 index 35a5d8fa4f..0000000000 Binary files a/front/public/images/large/Botania/petal/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/6.png b/front/public/images/large/Botania/petal/6.png deleted file mode 100644 index 4069bc6fb4..0000000000 Binary files a/front/public/images/large/Botania/petal/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/7.png b/front/public/images/large/Botania/petal/7.png deleted file mode 100644 index b6cc859a01..0000000000 Binary files a/front/public/images/large/Botania/petal/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/8.png b/front/public/images/large/Botania/petal/8.png deleted file mode 100644 index 20adee333b..0000000000 Binary files a/front/public/images/large/Botania/petal/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/petal/9.png b/front/public/images/large/Botania/petal/9.png deleted file mode 100644 index c18e3a99ed..0000000000 Binary files a/front/public/images/large/Botania/petal/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/0.png b/front/public/images/large/Botania/petalBlock/0.png deleted file mode 100644 index a247cf6792..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/1.png b/front/public/images/large/Botania/petalBlock/1.png deleted file mode 100644 index e68e3a6dfe..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/10.png b/front/public/images/large/Botania/petalBlock/10.png deleted file mode 100644 index 9280301b0b..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/11.png b/front/public/images/large/Botania/petalBlock/11.png deleted file mode 100644 index 2d1805e81c..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/12.png b/front/public/images/large/Botania/petalBlock/12.png deleted file mode 100644 index 6b27c89983..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/13.png b/front/public/images/large/Botania/petalBlock/13.png deleted file mode 100644 index fcaa18fa70..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/14.png b/front/public/images/large/Botania/petalBlock/14.png deleted file mode 100644 index fc8e1087f7..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/15.png b/front/public/images/large/Botania/petalBlock/15.png deleted file mode 100644 index 6648841649..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/2.png b/front/public/images/large/Botania/petalBlock/2.png deleted file mode 100644 index 826389fb0f..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/3.png b/front/public/images/large/Botania/petalBlock/3.png deleted file mode 100644 index c48c26fd83..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/4.png b/front/public/images/large/Botania/petalBlock/4.png deleted file mode 100644 index 9c42e90128..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/5.png b/front/public/images/large/Botania/petalBlock/5.png deleted file mode 100644 index 02ab5769fc..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/6.png b/front/public/images/large/Botania/petalBlock/6.png deleted file mode 100644 index 999f7514b6..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/7.png b/front/public/images/large/Botania/petalBlock/7.png deleted file mode 100644 index e1463a231b..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/8.png b/front/public/images/large/Botania/petalBlock/8.png deleted file mode 100644 index 1a79177161..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/petalBlock/9.png b/front/public/images/large/Botania/petalBlock/9.png deleted file mode 100644 index 82b207a801..0000000000 Binary files a/front/public/images/large/Botania/petalBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/phantomInk/0.png b/front/public/images/large/Botania/phantomInk/0.png deleted file mode 100644 index 7947a69208..0000000000 Binary files a/front/public/images/large/Botania/phantomInk/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pinkinator/0.png b/front/public/images/large/Botania/pinkinator/0.png deleted file mode 100644 index 6dd6cbbe00..0000000000 Binary files a/front/public/images/large/Botania/pinkinator/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pistonRelay/0.png b/front/public/images/large/Botania/pistonRelay/0.png deleted file mode 100644 index 33a1fb089c..0000000000 Binary files a/front/public/images/large/Botania/pistonRelay/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pixieRing/0.png b/front/public/images/large/Botania/pixieRing/0.png deleted file mode 100644 index 08b6203306..0000000000 Binary files a/front/public/images/large/Botania/pixieRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/platform/0.png b/front/public/images/large/Botania/platform/0.png deleted file mode 100644 index db7284df82..0000000000 Binary files a/front/public/images/large/Botania/platform/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/platform/1.png b/front/public/images/large/Botania/platform/1.png deleted file mode 100644 index 538cb0f277..0000000000 Binary files a/front/public/images/large/Botania/platform/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/platform/2.png b/front/public/images/large/Botania/platform/2.png deleted file mode 100644 index 477e283892..0000000000 Binary files a/front/public/images/large/Botania/platform/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/pool/0.png b/front/public/images/large/Botania/pool/0.png deleted file mode 100644 index 0b9bb326da..0000000000 Binary files a/front/public/images/large/Botania/pool/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pool/1.png b/front/public/images/large/Botania/pool/1.png deleted file mode 100644 index 4e85bc2f28..0000000000 Binary files a/front/public/images/large/Botania/pool/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/pool/2.png b/front/public/images/large/Botania/pool/2.png deleted file mode 100644 index 2faa66ad98..0000000000 Binary files a/front/public/images/large/Botania/pool/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/pool/3.png b/front/public/images/large/Botania/pool/3.png deleted file mode 100644 index eae10aa178..0000000000 Binary files a/front/public/images/large/Botania/pool/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/poolMinecart/0.png b/front/public/images/large/Botania/poolMinecart/0.png deleted file mode 100644 index 51aa5d5a9d..0000000000 Binary files a/front/public/images/large/Botania/poolMinecart/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prism/0.png b/front/public/images/large/Botania/prism/0.png deleted file mode 100644 index 59d7a713d9..0000000000 Binary files a/front/public/images/large/Botania/prism/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine/0.png b/front/public/images/large/Botania/prismarine/0.png deleted file mode 100644 index 63066c98b8..0000000000 Binary files a/front/public/images/large/Botania/prismarine/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine/1.png b/front/public/images/large/Botania/prismarine/1.png deleted file mode 100644 index 0c6149f4b6..0000000000 Binary files a/front/public/images/large/Botania/prismarine/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine/2.png b/front/public/images/large/Botania/prismarine/2.png deleted file mode 100644 index ff10b058e4..0000000000 Binary files a/front/public/images/large/Botania/prismarine/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine0Slab/0.png b/front/public/images/large/Botania/prismarine0Slab/0.png deleted file mode 100644 index fa0bab6812..0000000000 Binary files a/front/public/images/large/Botania/prismarine0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine0SlabFull/0.png b/front/public/images/large/Botania/prismarine0SlabFull/0.png deleted file mode 100644 index 63066c98b8..0000000000 Binary files a/front/public/images/large/Botania/prismarine0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine0Stairs/0.png b/front/public/images/large/Botania/prismarine0Stairs/0.png deleted file mode 100644 index 6629d042a7..0000000000 Binary files a/front/public/images/large/Botania/prismarine0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine0Wall/0.png b/front/public/images/large/Botania/prismarine0Wall/0.png deleted file mode 100644 index 53112fdece..0000000000 Binary files a/front/public/images/large/Botania/prismarine0Wall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine1Slab/0.png b/front/public/images/large/Botania/prismarine1Slab/0.png deleted file mode 100644 index 71e2bd6e86..0000000000 Binary files a/front/public/images/large/Botania/prismarine1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine1SlabFull/0.png b/front/public/images/large/Botania/prismarine1SlabFull/0.png deleted file mode 100644 index 0c6149f4b6..0000000000 Binary files a/front/public/images/large/Botania/prismarine1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine1Stairs/0.png b/front/public/images/large/Botania/prismarine1Stairs/0.png deleted file mode 100644 index 28a704351d..0000000000 Binary files a/front/public/images/large/Botania/prismarine1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine2Slab/0.png b/front/public/images/large/Botania/prismarine2Slab/0.png deleted file mode 100644 index c11432c94b..0000000000 Binary files a/front/public/images/large/Botania/prismarine2Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine2SlabFull/0.png b/front/public/images/large/Botania/prismarine2SlabFull/0.png deleted file mode 100644 index ff10b058e4..0000000000 Binary files a/front/public/images/large/Botania/prismarine2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/prismarine2Stairs/0.png b/front/public/images/large/Botania/prismarine2Stairs/0.png deleted file mode 100644 index 5c9f339522..0000000000 Binary files a/front/public/images/large/Botania/prismarine2Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pump/0.png b/front/public/images/large/Botania/pump/0.png deleted file mode 100644 index 79d69840a7..0000000000 Binary files a/front/public/images/large/Botania/pump/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pylon/0.png b/front/public/images/large/Botania/pylon/0.png deleted file mode 100644 index eb73465e59..0000000000 Binary files a/front/public/images/large/Botania/pylon/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/pylon/1.png b/front/public/images/large/Botania/pylon/1.png deleted file mode 100644 index 2846570c9e..0000000000 Binary files a/front/public/images/large/Botania/pylon/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/pylon/2.png b/front/public/images/large/Botania/pylon/2.png deleted file mode 100644 index 857f389ae5..0000000000 Binary files a/front/public/images/large/Botania/pylon/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartz/0.png b/front/public/images/large/Botania/quartz/0.png deleted file mode 100644 index bc2cf71790..0000000000 Binary files a/front/public/images/large/Botania/quartz/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartz/1.png b/front/public/images/large/Botania/quartz/1.png deleted file mode 100644 index fa011872bd..0000000000 Binary files a/front/public/images/large/Botania/quartz/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartz/2.png b/front/public/images/large/Botania/quartz/2.png deleted file mode 100644 index b15dbc05ba..0000000000 Binary files a/front/public/images/large/Botania/quartz/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartz/3.png b/front/public/images/large/Botania/quartz/3.png deleted file mode 100644 index 3987c0e66b..0000000000 Binary files a/front/public/images/large/Botania/quartz/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartz/4.png b/front/public/images/large/Botania/quartz/4.png deleted file mode 100644 index e4db35f377..0000000000 Binary files a/front/public/images/large/Botania/quartz/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartz/5.png b/front/public/images/large/Botania/quartz/5.png deleted file mode 100644 index 03be6a73c8..0000000000 Binary files a/front/public/images/large/Botania/quartz/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartz/6.png b/front/public/images/large/Botania/quartz/6.png deleted file mode 100644 index 595645d7da..0000000000 Binary files a/front/public/images/large/Botania/quartz/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabBlazeFull/0.png b/front/public/images/large/Botania/quartzSlabBlazeFull/0.png deleted file mode 100644 index 1caa8b59b6..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabBlazeFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabBlazeHalf/0.png b/front/public/images/large/Botania/quartzSlabBlazeHalf/0.png deleted file mode 100644 index 61deaeafc7..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabBlazeHalf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabDarkFull/0.png b/front/public/images/large/Botania/quartzSlabDarkFull/0.png deleted file mode 100644 index 962fe5cf33..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabDarkFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabDarkHalf/0.png b/front/public/images/large/Botania/quartzSlabDarkHalf/0.png deleted file mode 100644 index 201c994f7f..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabDarkHalf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabElfFull/0.png b/front/public/images/large/Botania/quartzSlabElfFull/0.png deleted file mode 100644 index 9df7a06ae9..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabElfFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabElfHalf/0.png b/front/public/images/large/Botania/quartzSlabElfHalf/0.png deleted file mode 100644 index f352c08e23..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabElfHalf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabLavenderFull/0.png b/front/public/images/large/Botania/quartzSlabLavenderFull/0.png deleted file mode 100644 index cdb3083810..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabLavenderFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabLavenderHalf/0.png b/front/public/images/large/Botania/quartzSlabLavenderHalf/0.png deleted file mode 100644 index 91b1e91a38..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabLavenderHalf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabManaFull/0.png b/front/public/images/large/Botania/quartzSlabManaFull/0.png deleted file mode 100644 index f808b95cfc..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabManaFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabManaHalf/0.png b/front/public/images/large/Botania/quartzSlabManaHalf/0.png deleted file mode 100644 index 2efbc2525e..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabManaHalf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabRedFull/0.png b/front/public/images/large/Botania/quartzSlabRedFull/0.png deleted file mode 100644 index c27bd1ab91..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabRedFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabRedHalf/0.png b/front/public/images/large/Botania/quartzSlabRedHalf/0.png deleted file mode 100644 index ca99f355b7..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabRedHalf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabSunnyFull/0.png b/front/public/images/large/Botania/quartzSlabSunnyFull/0.png deleted file mode 100644 index 018338f8f8..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabSunnyFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzSlabSunnyHalf/0.png b/front/public/images/large/Botania/quartzSlabSunnyHalf/0.png deleted file mode 100644 index 58a1cd48fe..0000000000 Binary files a/front/public/images/large/Botania/quartzSlabSunnyHalf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzStairsBlaze/0.png b/front/public/images/large/Botania/quartzStairsBlaze/0.png deleted file mode 100644 index 6d641f1e08..0000000000 Binary files a/front/public/images/large/Botania/quartzStairsBlaze/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzStairsDark/0.png b/front/public/images/large/Botania/quartzStairsDark/0.png deleted file mode 100644 index 8c1df517f0..0000000000 Binary files a/front/public/images/large/Botania/quartzStairsDark/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzStairsElf/0.png b/front/public/images/large/Botania/quartzStairsElf/0.png deleted file mode 100644 index 396b3088b5..0000000000 Binary files a/front/public/images/large/Botania/quartzStairsElf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzStairsLavender/0.png b/front/public/images/large/Botania/quartzStairsLavender/0.png deleted file mode 100644 index fbd39ee655..0000000000 Binary files a/front/public/images/large/Botania/quartzStairsLavender/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzStairsMana/0.png b/front/public/images/large/Botania/quartzStairsMana/0.png deleted file mode 100644 index 0e2d7ffd94..0000000000 Binary files a/front/public/images/large/Botania/quartzStairsMana/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzStairsRed/0.png b/front/public/images/large/Botania/quartzStairsRed/0.png deleted file mode 100644 index d464e55414..0000000000 Binary files a/front/public/images/large/Botania/quartzStairsRed/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzStairsSunny/0.png b/front/public/images/large/Botania/quartzStairsSunny/0.png deleted file mode 100644 index fdc3b73fec..0000000000 Binary files a/front/public/images/large/Botania/quartzStairsSunny/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeBlaze/0.png b/front/public/images/large/Botania/quartzTypeBlaze/0.png deleted file mode 100644 index 1caa8b59b6..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeBlaze/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeBlaze/1.png b/front/public/images/large/Botania/quartzTypeBlaze/1.png deleted file mode 100644 index 5824d5a0f8..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeBlaze/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeBlaze/2.png b/front/public/images/large/Botania/quartzTypeBlaze/2.png deleted file mode 100644 index 25571fe07e..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeBlaze/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeDark/0.png b/front/public/images/large/Botania/quartzTypeDark/0.png deleted file mode 100644 index 962fe5cf33..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeDark/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeDark/1.png b/front/public/images/large/Botania/quartzTypeDark/1.png deleted file mode 100644 index 1e0032eaf2..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeDark/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeDark/2.png b/front/public/images/large/Botania/quartzTypeDark/2.png deleted file mode 100644 index b4fca2a903..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeDark/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeElf/0.png b/front/public/images/large/Botania/quartzTypeElf/0.png deleted file mode 100644 index 9df7a06ae9..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeElf/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeElf/1.png b/front/public/images/large/Botania/quartzTypeElf/1.png deleted file mode 100644 index aab2148698..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeElf/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeElf/2.png b/front/public/images/large/Botania/quartzTypeElf/2.png deleted file mode 100644 index c9a18b48b1..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeElf/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeLavender/0.png b/front/public/images/large/Botania/quartzTypeLavender/0.png deleted file mode 100644 index cdb3083810..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeLavender/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeLavender/1.png b/front/public/images/large/Botania/quartzTypeLavender/1.png deleted file mode 100644 index 331b04a1f0..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeLavender/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeLavender/2.png b/front/public/images/large/Botania/quartzTypeLavender/2.png deleted file mode 100644 index 4d92c7df40..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeLavender/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeMana/0.png b/front/public/images/large/Botania/quartzTypeMana/0.png deleted file mode 100644 index f808b95cfc..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeMana/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeMana/1.png b/front/public/images/large/Botania/quartzTypeMana/1.png deleted file mode 100644 index 8996822f2d..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeMana/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeMana/2.png b/front/public/images/large/Botania/quartzTypeMana/2.png deleted file mode 100644 index f629d5a6c9..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeMana/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeRed/0.png b/front/public/images/large/Botania/quartzTypeRed/0.png deleted file mode 100644 index c27bd1ab91..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeRed/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeRed/1.png b/front/public/images/large/Botania/quartzTypeRed/1.png deleted file mode 100644 index 6cc635a963..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeRed/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeRed/2.png b/front/public/images/large/Botania/quartzTypeRed/2.png deleted file mode 100644 index d26f2cec9b..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeRed/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeSunny/0.png b/front/public/images/large/Botania/quartzTypeSunny/0.png deleted file mode 100644 index 018338f8f8..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeSunny/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeSunny/1.png b/front/public/images/large/Botania/quartzTypeSunny/1.png deleted file mode 100644 index 61cabdcf1d..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeSunny/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/quartzTypeSunny/2.png b/front/public/images/large/Botania/quartzTypeSunny/2.png deleted file mode 100644 index f013dd6f3a..0000000000 Binary files a/front/public/images/large/Botania/quartzTypeSunny/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/rainbowRod/0.png b/front/public/images/large/Botania/rainbowRod/0.png deleted file mode 100644 index 27c613b970..0000000000 Binary files a/front/public/images/large/Botania/rainbowRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/reachRing/0.png b/front/public/images/large/Botania/reachRing/0.png deleted file mode 100644 index 20d225c3e3..0000000000 Binary files a/front/public/images/large/Botania/reachRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/recordGaia1/0.png b/front/public/images/large/Botania/recordGaia1/0.png deleted file mode 100644 index cc361e9316..0000000000 Binary files a/front/public/images/large/Botania/recordGaia1/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/recordGaia2/0.png b/front/public/images/large/Botania/recordGaia2/0.png deleted file mode 100644 index 74e66bda00..0000000000 Binary files a/front/public/images/large/Botania/recordGaia2/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/redStringComparator/0.png b/front/public/images/large/Botania/redStringComparator/0.png deleted file mode 100644 index 51ad6d8403..0000000000 Binary files a/front/public/images/large/Botania/redStringComparator/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/redStringContainer/0.png b/front/public/images/large/Botania/redStringContainer/0.png deleted file mode 100644 index 815fa84914..0000000000 Binary files a/front/public/images/large/Botania/redStringContainer/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/redStringDispenser/0.png b/front/public/images/large/Botania/redStringDispenser/0.png deleted file mode 100644 index b69723628c..0000000000 Binary files a/front/public/images/large/Botania/redStringDispenser/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/redStringFertilizer/0.png b/front/public/images/large/Botania/redStringFertilizer/0.png deleted file mode 100644 index 06ebfe79ca..0000000000 Binary files a/front/public/images/large/Botania/redStringFertilizer/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/redStringInterceptor/0.png b/front/public/images/large/Botania/redStringInterceptor/0.png deleted file mode 100644 index c0dd172462..0000000000 Binary files a/front/public/images/large/Botania/redStringInterceptor/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/redStringRelay/0.png b/front/public/images/large/Botania/redStringRelay/0.png deleted file mode 100644 index de70cd7c5e..0000000000 Binary files a/front/public/images/large/Botania/redStringRelay/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/reedBlock/0.png b/front/public/images/large/Botania/reedBlock/0.png deleted file mode 100644 index abf892887d..0000000000 Binary files a/front/public/images/large/Botania/reedBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/reedBlock0Slab/0.png b/front/public/images/large/Botania/reedBlock0Slab/0.png deleted file mode 100644 index ff57fa846c..0000000000 Binary files a/front/public/images/large/Botania/reedBlock0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/reedBlock0SlabFull/0.png b/front/public/images/large/Botania/reedBlock0SlabFull/0.png deleted file mode 100644 index abf892887d..0000000000 Binary files a/front/public/images/large/Botania/reedBlock0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/reedBlock0Stairs/0.png b/front/public/images/large/Botania/reedBlock0Stairs/0.png deleted file mode 100644 index 6374e75827..0000000000 Binary files a/front/public/images/large/Botania/reedBlock0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/reedBlock0Wall/0.png b/front/public/images/large/Botania/reedBlock0Wall/0.png deleted file mode 100644 index 694e69264e..0000000000 Binary files a/front/public/images/large/Botania/reedBlock0Wall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/regenIvy/0.png b/front/public/images/large/Botania/regenIvy/0.png deleted file mode 100644 index 0eb2ad9287..0000000000 Binary files a/front/public/images/large/Botania/regenIvy/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/rfGenerator/0.png b/front/public/images/large/Botania/rfGenerator/0.png deleted file mode 100644 index 9448976745..0000000000 Binary files a/front/public/images/large/Botania/rfGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/root/0.png b/front/public/images/large/Botania/root/0.png deleted file mode 100644 index e0ac5aecc5..0000000000 Binary files a/front/public/images/large/Botania/root/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/0.png b/front/public/images/large/Botania/rune/0.png deleted file mode 100644 index cb33416f52..0000000000 Binary files a/front/public/images/large/Botania/rune/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/1.png b/front/public/images/large/Botania/rune/1.png deleted file mode 100644 index a6c40c030d..0000000000 Binary files a/front/public/images/large/Botania/rune/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/10.png b/front/public/images/large/Botania/rune/10.png deleted file mode 100644 index 6f51e338f9..0000000000 Binary files a/front/public/images/large/Botania/rune/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/11.png b/front/public/images/large/Botania/rune/11.png deleted file mode 100644 index e82d712755..0000000000 Binary files a/front/public/images/large/Botania/rune/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/12.png b/front/public/images/large/Botania/rune/12.png deleted file mode 100644 index 2697ca3fb7..0000000000 Binary files a/front/public/images/large/Botania/rune/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/13.png b/front/public/images/large/Botania/rune/13.png deleted file mode 100644 index 88e92ce049..0000000000 Binary files a/front/public/images/large/Botania/rune/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/14.png b/front/public/images/large/Botania/rune/14.png deleted file mode 100644 index 17615f83a1..0000000000 Binary files a/front/public/images/large/Botania/rune/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/15.png b/front/public/images/large/Botania/rune/15.png deleted file mode 100644 index af0d0f4a75..0000000000 Binary files a/front/public/images/large/Botania/rune/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/2.png b/front/public/images/large/Botania/rune/2.png deleted file mode 100644 index 25be240c2c..0000000000 Binary files a/front/public/images/large/Botania/rune/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/3.png b/front/public/images/large/Botania/rune/3.png deleted file mode 100644 index c651c35bc6..0000000000 Binary files a/front/public/images/large/Botania/rune/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/4.png b/front/public/images/large/Botania/rune/4.png deleted file mode 100644 index dc60726b4e..0000000000 Binary files a/front/public/images/large/Botania/rune/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/5.png b/front/public/images/large/Botania/rune/5.png deleted file mode 100644 index f6996d0406..0000000000 Binary files a/front/public/images/large/Botania/rune/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/6.png b/front/public/images/large/Botania/rune/6.png deleted file mode 100644 index 8c4c0f3d49..0000000000 Binary files a/front/public/images/large/Botania/rune/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/7.png b/front/public/images/large/Botania/rune/7.png deleted file mode 100644 index 732df1121b..0000000000 Binary files a/front/public/images/large/Botania/rune/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/8.png b/front/public/images/large/Botania/rune/8.png deleted file mode 100644 index a54cac400f..0000000000 Binary files a/front/public/images/large/Botania/rune/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/rune/9.png b/front/public/images/large/Botania/rune/9.png deleted file mode 100644 index 5d82b4e5b2..0000000000 Binary files a/front/public/images/large/Botania/rune/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/runeAltar/0.png b/front/public/images/large/Botania/runeAltar/0.png deleted file mode 100644 index b13d86be11..0000000000 Binary files a/front/public/images/large/Botania/runeAltar/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/seaLamp/0.png b/front/public/images/large/Botania/seaLamp/0.png deleted file mode 100644 index 7a757d4b9a..0000000000 Binary files a/front/public/images/large/Botania/seaLamp/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/sextant/0.png b/front/public/images/large/Botania/sextant/0.png deleted file mode 100644 index 80cc4734ef..0000000000 Binary files a/front/public/images/large/Botania/sextant/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerrock/0.png b/front/public/images/large/Botania/shimmerrock/0.png deleted file mode 100644 index 26d8bdfe2c..0000000000 Binary files a/front/public/images/large/Botania/shimmerrock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerrock0Slab/0.png b/front/public/images/large/Botania/shimmerrock0Slab/0.png deleted file mode 100644 index 19d7647c91..0000000000 Binary files a/front/public/images/large/Botania/shimmerrock0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerrock0SlabFull/0.png b/front/public/images/large/Botania/shimmerrock0SlabFull/0.png deleted file mode 100644 index 26d8bdfe2c..0000000000 Binary files a/front/public/images/large/Botania/shimmerrock0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerrock0Stairs/0.png b/front/public/images/large/Botania/shimmerrock0Stairs/0.png deleted file mode 100644 index 2721c0e451..0000000000 Binary files a/front/public/images/large/Botania/shimmerrock0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerwoodPlanks/0.png b/front/public/images/large/Botania/shimmerwoodPlanks/0.png deleted file mode 100644 index a603d4bf60..0000000000 Binary files a/front/public/images/large/Botania/shimmerwoodPlanks/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerwoodPlanks0Slab/0.png b/front/public/images/large/Botania/shimmerwoodPlanks0Slab/0.png deleted file mode 100644 index f07d7d9993..0000000000 Binary files a/front/public/images/large/Botania/shimmerwoodPlanks0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerwoodPlanks0SlabFull/0.png b/front/public/images/large/Botania/shimmerwoodPlanks0SlabFull/0.png deleted file mode 100644 index a603d4bf60..0000000000 Binary files a/front/public/images/large/Botania/shimmerwoodPlanks0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shimmerwoodPlanks0Stairs/0.png b/front/public/images/large/Botania/shimmerwoodPlanks0Stairs/0.png deleted file mode 100644 index dc408b617d..0000000000 Binary files a/front/public/images/large/Botania/shimmerwoodPlanks0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/0.png b/front/public/images/large/Botania/shinyFlower/0.png deleted file mode 100644 index 2ebf9d86a4..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/1.png b/front/public/images/large/Botania/shinyFlower/1.png deleted file mode 100644 index 5efd034edb..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/10.png b/front/public/images/large/Botania/shinyFlower/10.png deleted file mode 100644 index 5f651ce572..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/11.png b/front/public/images/large/Botania/shinyFlower/11.png deleted file mode 100644 index dc7e8974cc..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/12.png b/front/public/images/large/Botania/shinyFlower/12.png deleted file mode 100644 index 9ba19bb5e6..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/13.png b/front/public/images/large/Botania/shinyFlower/13.png deleted file mode 100644 index a02afe0025..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/14.png b/front/public/images/large/Botania/shinyFlower/14.png deleted file mode 100644 index 5c251f6ac4..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/15.png b/front/public/images/large/Botania/shinyFlower/15.png deleted file mode 100644 index 5f82ba0514..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/2.png b/front/public/images/large/Botania/shinyFlower/2.png deleted file mode 100644 index 919bd5d55c..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/3.png b/front/public/images/large/Botania/shinyFlower/3.png deleted file mode 100644 index d977a9c7ae..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/4.png b/front/public/images/large/Botania/shinyFlower/4.png deleted file mode 100644 index a6468f2b27..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/5.png b/front/public/images/large/Botania/shinyFlower/5.png deleted file mode 100644 index 6c79f25e13..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/6.png b/front/public/images/large/Botania/shinyFlower/6.png deleted file mode 100644 index d6cdcc777e..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/7.png b/front/public/images/large/Botania/shinyFlower/7.png deleted file mode 100644 index 6c07e72dd4..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/8.png b/front/public/images/large/Botania/shinyFlower/8.png deleted file mode 100644 index 2e46b83512..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/shinyFlower/9.png b/front/public/images/large/Botania/shinyFlower/9.png deleted file mode 100644 index 2fd5eaf38e..0000000000 Binary files a/front/public/images/large/Botania/shinyFlower/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/shroomBag/0.png b/front/public/images/large/Botania/shroomBag/0.png deleted file mode 100644 index d06bc12384..0000000000 Binary files a/front/public/images/large/Botania/shroomBag/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/signalFlare/0.png b/front/public/images/large/Botania/signalFlare/0.png deleted file mode 100644 index 2455efa7a5..0000000000 Binary files a/front/public/images/large/Botania/signalFlare/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/skyDirtRod/0.png b/front/public/images/large/Botania/skyDirtRod/0.png deleted file mode 100644 index feb0c7dfdd..0000000000 Binary files a/front/public/images/large/Botania/skyDirtRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/slimeBottle/0.png b/front/public/images/large/Botania/slimeBottle/0.png deleted file mode 100644 index 272b23dc0b..0000000000 Binary files a/front/public/images/large/Botania/slimeBottle/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/slingshot/0.png b/front/public/images/large/Botania/slingshot/0.png deleted file mode 100644 index 53c01f3209..0000000000 Binary files a/front/public/images/large/Botania/slingshot/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/smeltRod/0.png b/front/public/images/large/Botania/smeltRod/0.png deleted file mode 100644 index 3b534e28ef..0000000000 Binary files a/front/public/images/large/Botania/smeltRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/solidVine/0.png b/front/public/images/large/Botania/solidVine/0.png deleted file mode 100644 index 8b073fea60..0000000000 Binary files a/front/public/images/large/Botania/solidVine/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/spark/0.png b/front/public/images/large/Botania/spark/0.png deleted file mode 100644 index cb770c731e..0000000000 Binary files a/front/public/images/large/Botania/spark/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/sparkChanger/0.png b/front/public/images/large/Botania/sparkChanger/0.png deleted file mode 100644 index 0d70e6e7f0..0000000000 Binary files a/front/public/images/large/Botania/sparkChanger/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/sparkUpgrade/0.png b/front/public/images/large/Botania/sparkUpgrade/0.png deleted file mode 100644 index 96cc197958..0000000000 Binary files a/front/public/images/large/Botania/sparkUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/sparkUpgrade/1.png b/front/public/images/large/Botania/sparkUpgrade/1.png deleted file mode 100644 index cf1f531fe4..0000000000 Binary files a/front/public/images/large/Botania/sparkUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/sparkUpgrade/2.png b/front/public/images/large/Botania/sparkUpgrade/2.png deleted file mode 100644 index 33b9e7836c..0000000000 Binary files a/front/public/images/large/Botania/sparkUpgrade/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/sparkUpgrade/3.png b/front/public/images/large/Botania/sparkUpgrade/3.png deleted file mode 100644 index 556a0c99a3..0000000000 Binary files a/front/public/images/large/Botania/sparkUpgrade/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/spawnerClaw/0.png b/front/public/images/large/Botania/spawnerClaw/0.png deleted file mode 100644 index 45f422b412..0000000000 Binary files a/front/public/images/large/Botania/spawnerClaw/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/spawnerMover/0.png b/front/public/images/large/Botania/spawnerMover/0.png deleted file mode 100644 index 9520d5d877..0000000000 Binary files a/front/public/images/large/Botania/spawnerMover/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/specialFlower/0.png b/front/public/images/large/Botania/specialFlower/0.png deleted file mode 100644 index 842bb1ffb3..0000000000 Binary files a/front/public/images/large/Botania/specialFlower/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/speedUpBelt/0.png b/front/public/images/large/Botania/speedUpBelt/0.png deleted file mode 100644 index 9387989790..0000000000 Binary files a/front/public/images/large/Botania/speedUpBelt/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/spellCloth/0.png b/front/public/images/large/Botania/spellCloth/0.png deleted file mode 100644 index 366b467b73..0000000000 Binary files a/front/public/images/large/Botania/spellCloth/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/spreader/0.png b/front/public/images/large/Botania/spreader/0.png deleted file mode 100644 index 288a71319d..0000000000 Binary files a/front/public/images/large/Botania/spreader/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/spreader/1.png b/front/public/images/large/Botania/spreader/1.png deleted file mode 100644 index e7e0d9519a..0000000000 Binary files a/front/public/images/large/Botania/spreader/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/spreader/2.png b/front/public/images/large/Botania/spreader/2.png deleted file mode 100644 index 0f52659383..0000000000 Binary files a/front/public/images/large/Botania/spreader/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/spreader/3.png b/front/public/images/large/Botania/spreader/3.png deleted file mode 100644 index b8c98443a6..0000000000 Binary files a/front/public/images/large/Botania/spreader/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/starSword/0.png b/front/public/images/large/Botania/starSword/0.png deleted file mode 100644 index f16d2e3933..0000000000 Binary files a/front/public/images/large/Botania/starSword/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/starfield/0.png b/front/public/images/large/Botania/starfield/0.png deleted file mode 100644 index b3c7f25a0b..0000000000 Binary files a/front/public/images/large/Botania/starfield/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/0.png b/front/public/images/large/Botania/stone/0.png deleted file mode 100644 index d676c38f77..0000000000 Binary files a/front/public/images/large/Botania/stone/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/1.png b/front/public/images/large/Botania/stone/1.png deleted file mode 100644 index 6de2557135..0000000000 Binary files a/front/public/images/large/Botania/stone/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/10.png b/front/public/images/large/Botania/stone/10.png deleted file mode 100644 index 8bd275e611..0000000000 Binary files a/front/public/images/large/Botania/stone/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/11.png b/front/public/images/large/Botania/stone/11.png deleted file mode 100644 index d54b5773cb..0000000000 Binary files a/front/public/images/large/Botania/stone/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/12.png b/front/public/images/large/Botania/stone/12.png deleted file mode 100644 index 1f6df521a0..0000000000 Binary files a/front/public/images/large/Botania/stone/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/13.png b/front/public/images/large/Botania/stone/13.png deleted file mode 100644 index 82d0fa15ad..0000000000 Binary files a/front/public/images/large/Botania/stone/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/14.png b/front/public/images/large/Botania/stone/14.png deleted file mode 100644 index 8773c6799f..0000000000 Binary files a/front/public/images/large/Botania/stone/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/15.png b/front/public/images/large/Botania/stone/15.png deleted file mode 100644 index c3fe5d010f..0000000000 Binary files a/front/public/images/large/Botania/stone/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/2.png b/front/public/images/large/Botania/stone/2.png deleted file mode 100644 index 1575b34b67..0000000000 Binary files a/front/public/images/large/Botania/stone/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/3.png b/front/public/images/large/Botania/stone/3.png deleted file mode 100644 index 591b26fe11..0000000000 Binary files a/front/public/images/large/Botania/stone/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/4.png b/front/public/images/large/Botania/stone/4.png deleted file mode 100644 index 2a2218903e..0000000000 Binary files a/front/public/images/large/Botania/stone/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/5.png b/front/public/images/large/Botania/stone/5.png deleted file mode 100644 index 2ef7f382a0..0000000000 Binary files a/front/public/images/large/Botania/stone/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/6.png b/front/public/images/large/Botania/stone/6.png deleted file mode 100644 index 6f82f342ee..0000000000 Binary files a/front/public/images/large/Botania/stone/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/7.png b/front/public/images/large/Botania/stone/7.png deleted file mode 100644 index 8a41fe9e81..0000000000 Binary files a/front/public/images/large/Botania/stone/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/8.png b/front/public/images/large/Botania/stone/8.png deleted file mode 100644 index 972158177f..0000000000 Binary files a/front/public/images/large/Botania/stone/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone/9.png b/front/public/images/large/Botania/stone/9.png deleted file mode 100644 index e3416c3af6..0000000000 Binary files a/front/public/images/large/Botania/stone/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone0Slab/0.png b/front/public/images/large/Botania/stone0Slab/0.png deleted file mode 100644 index c9578f01b8..0000000000 Binary files a/front/public/images/large/Botania/stone0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone0SlabFull/0.png b/front/public/images/large/Botania/stone0SlabFull/0.png deleted file mode 100644 index d676c38f77..0000000000 Binary files a/front/public/images/large/Botania/stone0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone0Stairs/0.png b/front/public/images/large/Botania/stone0Stairs/0.png deleted file mode 100644 index 256a0d8540..0000000000 Binary files a/front/public/images/large/Botania/stone0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone0Wall/0.png b/front/public/images/large/Botania/stone0Wall/0.png deleted file mode 100644 index 68029b918a..0000000000 Binary files a/front/public/images/large/Botania/stone0Wall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone0Wall/1.png b/front/public/images/large/Botania/stone0Wall/1.png deleted file mode 100644 index bc6a8f06b6..0000000000 Binary files a/front/public/images/large/Botania/stone0Wall/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone0Wall/2.png b/front/public/images/large/Botania/stone0Wall/2.png deleted file mode 100644 index 5454e2990c..0000000000 Binary files a/front/public/images/large/Botania/stone0Wall/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone0Wall/3.png b/front/public/images/large/Botania/stone0Wall/3.png deleted file mode 100644 index 9fcedb6863..0000000000 Binary files a/front/public/images/large/Botania/stone0Wall/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone10Slab/0.png b/front/public/images/large/Botania/stone10Slab/0.png deleted file mode 100644 index 25d3bf661f..0000000000 Binary files a/front/public/images/large/Botania/stone10Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone10SlabFull/0.png b/front/public/images/large/Botania/stone10SlabFull/0.png deleted file mode 100644 index 8bd275e611..0000000000 Binary files a/front/public/images/large/Botania/stone10SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone10Stairs/0.png b/front/public/images/large/Botania/stone10Stairs/0.png deleted file mode 100644 index 5ae357aa66..0000000000 Binary files a/front/public/images/large/Botania/stone10Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone11Slab/0.png b/front/public/images/large/Botania/stone11Slab/0.png deleted file mode 100644 index aabeff49eb..0000000000 Binary files a/front/public/images/large/Botania/stone11Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone11SlabFull/0.png b/front/public/images/large/Botania/stone11SlabFull/0.png deleted file mode 100644 index d54b5773cb..0000000000 Binary files a/front/public/images/large/Botania/stone11SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone11Stairs/0.png b/front/public/images/large/Botania/stone11Stairs/0.png deleted file mode 100644 index 2bc2aa0c2f..0000000000 Binary files a/front/public/images/large/Botania/stone11Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone1Slab/0.png b/front/public/images/large/Botania/stone1Slab/0.png deleted file mode 100644 index 997bac2127..0000000000 Binary files a/front/public/images/large/Botania/stone1Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone1SlabFull/0.png b/front/public/images/large/Botania/stone1SlabFull/0.png deleted file mode 100644 index 6de2557135..0000000000 Binary files a/front/public/images/large/Botania/stone1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone1Stairs/0.png b/front/public/images/large/Botania/stone1Stairs/0.png deleted file mode 100644 index 1fb1a7d17a..0000000000 Binary files a/front/public/images/large/Botania/stone1Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone2Slab/0.png b/front/public/images/large/Botania/stone2Slab/0.png deleted file mode 100644 index d66566e62c..0000000000 Binary files a/front/public/images/large/Botania/stone2Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone2SlabFull/0.png b/front/public/images/large/Botania/stone2SlabFull/0.png deleted file mode 100644 index 1575b34b67..0000000000 Binary files a/front/public/images/large/Botania/stone2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone2Stairs/0.png b/front/public/images/large/Botania/stone2Stairs/0.png deleted file mode 100644 index 099ff75924..0000000000 Binary files a/front/public/images/large/Botania/stone2Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone3Slab/0.png b/front/public/images/large/Botania/stone3Slab/0.png deleted file mode 100644 index 721aa22f85..0000000000 Binary files a/front/public/images/large/Botania/stone3Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone3SlabFull/0.png b/front/public/images/large/Botania/stone3SlabFull/0.png deleted file mode 100644 index 591b26fe11..0000000000 Binary files a/front/public/images/large/Botania/stone3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone3Stairs/0.png b/front/public/images/large/Botania/stone3Stairs/0.png deleted file mode 100644 index 0f172f13ae..0000000000 Binary files a/front/public/images/large/Botania/stone3Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone8Slab/0.png b/front/public/images/large/Botania/stone8Slab/0.png deleted file mode 100644 index d08241d598..0000000000 Binary files a/front/public/images/large/Botania/stone8Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone8SlabFull/0.png b/front/public/images/large/Botania/stone8SlabFull/0.png deleted file mode 100644 index 972158177f..0000000000 Binary files a/front/public/images/large/Botania/stone8SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone8Stairs/0.png b/front/public/images/large/Botania/stone8Stairs/0.png deleted file mode 100644 index 8d4893f167..0000000000 Binary files a/front/public/images/large/Botania/stone8Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone9Slab/0.png b/front/public/images/large/Botania/stone9Slab/0.png deleted file mode 100644 index 9f38ade7b9..0000000000 Binary files a/front/public/images/large/Botania/stone9Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone9SlabFull/0.png b/front/public/images/large/Botania/stone9SlabFull/0.png deleted file mode 100644 index e3416c3af6..0000000000 Binary files a/front/public/images/large/Botania/stone9SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/stone9Stairs/0.png b/front/public/images/large/Botania/stone9Stairs/0.png deleted file mode 100644 index dc1e0d974c..0000000000 Binary files a/front/public/images/large/Botania/stone9Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/storage/0.png b/front/public/images/large/Botania/storage/0.png deleted file mode 100644 index 5bcd3d4400..0000000000 Binary files a/front/public/images/large/Botania/storage/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/storage/1.png b/front/public/images/large/Botania/storage/1.png deleted file mode 100644 index 2d17d27d0c..0000000000 Binary files a/front/public/images/large/Botania/storage/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/storage/2.png b/front/public/images/large/Botania/storage/2.png deleted file mode 100644 index 7d994faab1..0000000000 Binary files a/front/public/images/large/Botania/storage/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/storage/3.png b/front/public/images/large/Botania/storage/3.png deleted file mode 100644 index dc74b9adf7..0000000000 Binary files a/front/public/images/large/Botania/storage/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/storage/4.png b/front/public/images/large/Botania/storage/4.png deleted file mode 100644 index 79a6b8ef30..0000000000 Binary files a/front/public/images/large/Botania/storage/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/superLavaPendant/0.png b/front/public/images/large/Botania/superLavaPendant/0.png deleted file mode 100644 index c16e2497f5..0000000000 Binary files a/front/public/images/large/Botania/superLavaPendant/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/superTravelBelt/0.png b/front/public/images/large/Botania/superTravelBelt/0.png deleted file mode 100644 index 2b71d1e9eb..0000000000 Binary files a/front/public/images/large/Botania/superTravelBelt/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/swapRing/0.png b/front/public/images/large/Botania/swapRing/0.png deleted file mode 100644 index a805cdcc1f..0000000000 Binary files a/front/public/images/large/Botania/swapRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/temperanceStone/0.png b/front/public/images/large/Botania/temperanceStone/0.png deleted file mode 100644 index 38772b749f..0000000000 Binary files a/front/public/images/large/Botania/temperanceStone/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terraAxe/0.png b/front/public/images/large/Botania/terraAxe/0.png deleted file mode 100644 index 4d95e87f63..0000000000 Binary files a/front/public/images/large/Botania/terraAxe/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terraPick/0.png b/front/public/images/large/Botania/terraPick/0.png deleted file mode 100644 index 156ecc55b9..0000000000 Binary files a/front/public/images/large/Botania/terraPick/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terraPlate/0.png b/front/public/images/large/Botania/terraPlate/0.png deleted file mode 100644 index 76a19993ca..0000000000 Binary files a/front/public/images/large/Botania/terraPlate/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terraSword/0.png b/front/public/images/large/Botania/terraSword/0.png deleted file mode 100644 index dafca765b4..0000000000 Binary files a/front/public/images/large/Botania/terraSword/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terraformRod/0.png b/front/public/images/large/Botania/terraformRod/0.png deleted file mode 100644 index 16e8327bd6..0000000000 Binary files a/front/public/images/large/Botania/terraformRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terrasteelBoots/0.png b/front/public/images/large/Botania/terrasteelBoots/0.png deleted file mode 100644 index fd04690cf5..0000000000 Binary files a/front/public/images/large/Botania/terrasteelBoots/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terrasteelChest/0.png b/front/public/images/large/Botania/terrasteelChest/0.png deleted file mode 100644 index 36f5546e7c..0000000000 Binary files a/front/public/images/large/Botania/terrasteelChest/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terrasteelHelm/0.png b/front/public/images/large/Botania/terrasteelHelm/0.png deleted file mode 100644 index db40c65e78..0000000000 Binary files a/front/public/images/large/Botania/terrasteelHelm/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terrasteelHelmReveal/0.png b/front/public/images/large/Botania/terrasteelHelmReveal/0.png deleted file mode 100644 index 80193d68d9..0000000000 Binary files a/front/public/images/large/Botania/terrasteelHelmReveal/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/terrasteelLegs/0.png b/front/public/images/large/Botania/terrasteelLegs/0.png deleted file mode 100644 index 8050c19de6..0000000000 Binary files a/front/public/images/large/Botania/terrasteelLegs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/teruTeruBozu/0.png b/front/public/images/large/Botania/teruTeruBozu/0.png deleted file mode 100644 index cd2e279818..0000000000 Binary files a/front/public/images/large/Botania/teruTeruBozu/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/thatch/0.png b/front/public/images/large/Botania/thatch/0.png deleted file mode 100644 index 52923e3dc0..0000000000 Binary files a/front/public/images/large/Botania/thatch/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/thatch0Slab/0.png b/front/public/images/large/Botania/thatch0Slab/0.png deleted file mode 100644 index 57db5d3160..0000000000 Binary files a/front/public/images/large/Botania/thatch0Slab/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/thatch0SlabFull/0.png b/front/public/images/large/Botania/thatch0SlabFull/0.png deleted file mode 100644 index 52923e3dc0..0000000000 Binary files a/front/public/images/large/Botania/thatch0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/thatch0Stairs/0.png b/front/public/images/large/Botania/thatch0Stairs/0.png deleted file mode 100644 index 46180fdd0c..0000000000 Binary files a/front/public/images/large/Botania/thatch0Stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/thorRing/0.png b/front/public/images/large/Botania/thorRing/0.png deleted file mode 100644 index ab01bae851..0000000000 Binary files a/front/public/images/large/Botania/thorRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/thornChakram/0.png b/front/public/images/large/Botania/thornChakram/0.png deleted file mode 100644 index 8c5f08fa60..0000000000 Binary files a/front/public/images/large/Botania/thornChakram/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/thornChakram/1.png b/front/public/images/large/Botania/thornChakram/1.png deleted file mode 100644 index 9e010aa981..0000000000 Binary files a/front/public/images/large/Botania/thornChakram/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/thunderSword/0.png b/front/public/images/large/Botania/thunderSword/0.png deleted file mode 100644 index 1055a7b4eb..0000000000 Binary files a/front/public/images/large/Botania/thunderSword/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/tinyPlanet/0.png b/front/public/images/large/Botania/tinyPlanet/0.png deleted file mode 100644 index 8a62814549..0000000000 Binary files a/front/public/images/large/Botania/tinyPlanet/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/tinyPlanetBlock/0.png b/front/public/images/large/Botania/tinyPlanetBlock/0.png deleted file mode 100644 index 8c8d678608..0000000000 Binary files a/front/public/images/large/Botania/tinyPlanetBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/tinyPotato/0.png b/front/public/images/large/Botania/tinyPotato/0.png deleted file mode 100644 index 3d7a12fb40..0000000000 Binary files a/front/public/images/large/Botania/tinyPotato/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/tornadoRod/0.png b/front/public/images/large/Botania/tornadoRod/0.png deleted file mode 100644 index 322dcc841d..0000000000 Binary files a/front/public/images/large/Botania/tornadoRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/travelBelt/0.png b/front/public/images/large/Botania/travelBelt/0.png deleted file mode 100644 index c05a97a0d9..0000000000 Binary files a/front/public/images/large/Botania/travelBelt/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/turntable/0.png b/front/public/images/large/Botania/turntable/0.png deleted file mode 100644 index 96a2831510..0000000000 Binary files a/front/public/images/large/Botania/turntable/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/twigWand/0.png b/front/public/images/large/Botania/twigWand/0.png deleted file mode 100644 index 7f132ab117..0000000000 Binary files a/front/public/images/large/Botania/twigWand/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/unholyCloak/0.png b/front/public/images/large/Botania/unholyCloak/0.png deleted file mode 100644 index ed03d3bb3c..0000000000 Binary files a/front/public/images/large/Botania/unholyCloak/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/0.png b/front/public/images/large/Botania/unstableBlock/0.png deleted file mode 100644 index 4578771b5a..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/1.png b/front/public/images/large/Botania/unstableBlock/1.png deleted file mode 100644 index 33e32efe32..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/10.png b/front/public/images/large/Botania/unstableBlock/10.png deleted file mode 100644 index 01eb412f18..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/11.png b/front/public/images/large/Botania/unstableBlock/11.png deleted file mode 100644 index ad8d81f6e8..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/12.png b/front/public/images/large/Botania/unstableBlock/12.png deleted file mode 100644 index 8098288c76..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/13.png b/front/public/images/large/Botania/unstableBlock/13.png deleted file mode 100644 index 14925c96bd..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/14.png b/front/public/images/large/Botania/unstableBlock/14.png deleted file mode 100644 index bf236d4805..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/15.png b/front/public/images/large/Botania/unstableBlock/15.png deleted file mode 100644 index 432ca1aa53..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/2.png b/front/public/images/large/Botania/unstableBlock/2.png deleted file mode 100644 index 64570236db..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/3.png b/front/public/images/large/Botania/unstableBlock/3.png deleted file mode 100644 index f45e0244dc..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/4.png b/front/public/images/large/Botania/unstableBlock/4.png deleted file mode 100644 index 5914d47c18..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/5.png b/front/public/images/large/Botania/unstableBlock/5.png deleted file mode 100644 index e89337d245..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/6.png b/front/public/images/large/Botania/unstableBlock/6.png deleted file mode 100644 index 5eb5563ebd..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/7.png b/front/public/images/large/Botania/unstableBlock/7.png deleted file mode 100644 index 4e7d8387a5..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/8.png b/front/public/images/large/Botania/unstableBlock/8.png deleted file mode 100644 index bdff33d25b..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Botania/unstableBlock/9.png b/front/public/images/large/Botania/unstableBlock/9.png deleted file mode 100644 index 7a82aade0f..0000000000 Binary files a/front/public/images/large/Botania/unstableBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Botania/vial/0.png b/front/public/images/large/Botania/vial/0.png deleted file mode 100644 index 5bba7d056e..0000000000 Binary files a/front/public/images/large/Botania/vial/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/vial/1.png b/front/public/images/large/Botania/vial/1.png deleted file mode 100644 index 35c1941245..0000000000 Binary files a/front/public/images/large/Botania/vial/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/vineBall/0.png b/front/public/images/large/Botania/vineBall/0.png deleted file mode 100644 index 2c6442fe0e..0000000000 Binary files a/front/public/images/large/Botania/vineBall/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/virus/0.png b/front/public/images/large/Botania/virus/0.png deleted file mode 100644 index 6c5cc0ba5e..0000000000 Binary files a/front/public/images/large/Botania/virus/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/virus/1.png b/front/public/images/large/Botania/virus/1.png deleted file mode 100644 index 6f2f4a6594..0000000000 Binary files a/front/public/images/large/Botania/virus/1.png and /dev/null differ diff --git a/front/public/images/large/Botania/waterBowl/0.png b/front/public/images/large/Botania/waterBowl/0.png deleted file mode 100644 index c196f69e86..0000000000 Binary files a/front/public/images/large/Botania/waterBowl/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/waterRing/0.png b/front/public/images/large/Botania/waterRing/0.png deleted file mode 100644 index c162715337..0000000000 Binary files a/front/public/images/large/Botania/waterRing/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/waterRod/0.png b/front/public/images/large/Botania/waterRod/0.png deleted file mode 100644 index e39151fe50..0000000000 Binary files a/front/public/images/large/Botania/waterRod/0.png and /dev/null differ diff --git a/front/public/images/large/Botania/worldSeed/0.png b/front/public/images/large/Botania/worldSeed/0.png deleted file mode 100644 index 621c75c772..0000000000 Binary files a/front/public/images/large/Botania/worldSeed/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/0.png b/front/public/images/large/Botany/ceramic/0.png deleted file mode 100644 index 846c7850c1..0000000000 Binary files a/front/public/images/large/Botany/ceramic/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/1.png b/front/public/images/large/Botany/ceramic/1.png deleted file mode 100644 index bfea2f05ba..0000000000 Binary files a/front/public/images/large/Botany/ceramic/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/10.png b/front/public/images/large/Botany/ceramic/10.png deleted file mode 100644 index 8accae696f..0000000000 Binary files a/front/public/images/large/Botany/ceramic/10.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/11.png b/front/public/images/large/Botany/ceramic/11.png deleted file mode 100644 index 0af954e2eb..0000000000 Binary files a/front/public/images/large/Botany/ceramic/11.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/12.png b/front/public/images/large/Botany/ceramic/12.png deleted file mode 100644 index 5895cb1a1b..0000000000 Binary files a/front/public/images/large/Botany/ceramic/12.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/13.png b/front/public/images/large/Botany/ceramic/13.png deleted file mode 100644 index e2e63be301..0000000000 Binary files a/front/public/images/large/Botany/ceramic/13.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/14.png b/front/public/images/large/Botany/ceramic/14.png deleted file mode 100644 index e71e641644..0000000000 Binary files a/front/public/images/large/Botany/ceramic/14.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/15.png b/front/public/images/large/Botany/ceramic/15.png deleted file mode 100644 index 41526eb3b6..0000000000 Binary files a/front/public/images/large/Botany/ceramic/15.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/16.png b/front/public/images/large/Botany/ceramic/16.png deleted file mode 100644 index 2117995f08..0000000000 Binary files a/front/public/images/large/Botany/ceramic/16.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/17.png b/front/public/images/large/Botany/ceramic/17.png deleted file mode 100644 index 1b2dd21041..0000000000 Binary files a/front/public/images/large/Botany/ceramic/17.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/18.png b/front/public/images/large/Botany/ceramic/18.png deleted file mode 100644 index 6e04e66a96..0000000000 Binary files a/front/public/images/large/Botany/ceramic/18.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/19.png b/front/public/images/large/Botany/ceramic/19.png deleted file mode 100644 index 76f4af9ba4..0000000000 Binary files a/front/public/images/large/Botany/ceramic/19.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/2.png b/front/public/images/large/Botany/ceramic/2.png deleted file mode 100644 index a503015ae5..0000000000 Binary files a/front/public/images/large/Botany/ceramic/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/20.png b/front/public/images/large/Botany/ceramic/20.png deleted file mode 100644 index c5abeb2d16..0000000000 Binary files a/front/public/images/large/Botany/ceramic/20.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/21.png b/front/public/images/large/Botany/ceramic/21.png deleted file mode 100644 index 516bc48a33..0000000000 Binary files a/front/public/images/large/Botany/ceramic/21.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/22.png b/front/public/images/large/Botany/ceramic/22.png deleted file mode 100644 index 7fb97e3810..0000000000 Binary files a/front/public/images/large/Botany/ceramic/22.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/23.png b/front/public/images/large/Botany/ceramic/23.png deleted file mode 100644 index 13a85c395e..0000000000 Binary files a/front/public/images/large/Botany/ceramic/23.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/24.png b/front/public/images/large/Botany/ceramic/24.png deleted file mode 100644 index 8ae9ee8bbb..0000000000 Binary files a/front/public/images/large/Botany/ceramic/24.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/25.png b/front/public/images/large/Botany/ceramic/25.png deleted file mode 100644 index ed0c1ad377..0000000000 Binary files a/front/public/images/large/Botany/ceramic/25.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/26.png b/front/public/images/large/Botany/ceramic/26.png deleted file mode 100644 index 1d58e87576..0000000000 Binary files a/front/public/images/large/Botany/ceramic/26.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/27.png b/front/public/images/large/Botany/ceramic/27.png deleted file mode 100644 index 84f52fa7f0..0000000000 Binary files a/front/public/images/large/Botany/ceramic/27.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/28.png b/front/public/images/large/Botany/ceramic/28.png deleted file mode 100644 index 0b60ff04a4..0000000000 Binary files a/front/public/images/large/Botany/ceramic/28.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/29.png b/front/public/images/large/Botany/ceramic/29.png deleted file mode 100644 index 570f126014..0000000000 Binary files a/front/public/images/large/Botany/ceramic/29.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/3.png b/front/public/images/large/Botany/ceramic/3.png deleted file mode 100644 index d9ef78bc5b..0000000000 Binary files a/front/public/images/large/Botany/ceramic/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/30.png b/front/public/images/large/Botany/ceramic/30.png deleted file mode 100644 index 07e269d626..0000000000 Binary files a/front/public/images/large/Botany/ceramic/30.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/31.png b/front/public/images/large/Botany/ceramic/31.png deleted file mode 100644 index 917208e5fb..0000000000 Binary files a/front/public/images/large/Botany/ceramic/31.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/32.png b/front/public/images/large/Botany/ceramic/32.png deleted file mode 100644 index bf54eb708c..0000000000 Binary files a/front/public/images/large/Botany/ceramic/32.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/33.png b/front/public/images/large/Botany/ceramic/33.png deleted file mode 100644 index 97cef40f35..0000000000 Binary files a/front/public/images/large/Botany/ceramic/33.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/34.png b/front/public/images/large/Botany/ceramic/34.png deleted file mode 100644 index 0911e410c9..0000000000 Binary files a/front/public/images/large/Botany/ceramic/34.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/35.png b/front/public/images/large/Botany/ceramic/35.png deleted file mode 100644 index 4414711a10..0000000000 Binary files a/front/public/images/large/Botany/ceramic/35.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/36.png b/front/public/images/large/Botany/ceramic/36.png deleted file mode 100644 index afdf7c242f..0000000000 Binary files a/front/public/images/large/Botany/ceramic/36.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/37.png b/front/public/images/large/Botany/ceramic/37.png deleted file mode 100644 index 20f01d520f..0000000000 Binary files a/front/public/images/large/Botany/ceramic/37.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/38.png b/front/public/images/large/Botany/ceramic/38.png deleted file mode 100644 index ec837c18c0..0000000000 Binary files a/front/public/images/large/Botany/ceramic/38.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/39.png b/front/public/images/large/Botany/ceramic/39.png deleted file mode 100644 index a2439d7797..0000000000 Binary files a/front/public/images/large/Botany/ceramic/39.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/4.png b/front/public/images/large/Botany/ceramic/4.png deleted file mode 100644 index a5feb531e8..0000000000 Binary files a/front/public/images/large/Botany/ceramic/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/40.png b/front/public/images/large/Botany/ceramic/40.png deleted file mode 100644 index 1db60e6425..0000000000 Binary files a/front/public/images/large/Botany/ceramic/40.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/41.png b/front/public/images/large/Botany/ceramic/41.png deleted file mode 100644 index ce6e1f2403..0000000000 Binary files a/front/public/images/large/Botany/ceramic/41.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/42.png b/front/public/images/large/Botany/ceramic/42.png deleted file mode 100644 index 256f59dbcb..0000000000 Binary files a/front/public/images/large/Botany/ceramic/42.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/43.png b/front/public/images/large/Botany/ceramic/43.png deleted file mode 100644 index 02ce02f10a..0000000000 Binary files a/front/public/images/large/Botany/ceramic/43.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/44.png b/front/public/images/large/Botany/ceramic/44.png deleted file mode 100644 index 6fd8f47012..0000000000 Binary files a/front/public/images/large/Botany/ceramic/44.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/45.png b/front/public/images/large/Botany/ceramic/45.png deleted file mode 100644 index d9cb276571..0000000000 Binary files a/front/public/images/large/Botany/ceramic/45.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/46.png b/front/public/images/large/Botany/ceramic/46.png deleted file mode 100644 index 97298c8bf9..0000000000 Binary files a/front/public/images/large/Botany/ceramic/46.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/47.png b/front/public/images/large/Botany/ceramic/47.png deleted file mode 100644 index 926f3880f5..0000000000 Binary files a/front/public/images/large/Botany/ceramic/47.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/48.png b/front/public/images/large/Botany/ceramic/48.png deleted file mode 100644 index 0647f54a41..0000000000 Binary files a/front/public/images/large/Botany/ceramic/48.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/49.png b/front/public/images/large/Botany/ceramic/49.png deleted file mode 100644 index 04c38f8966..0000000000 Binary files a/front/public/images/large/Botany/ceramic/49.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/5.png b/front/public/images/large/Botany/ceramic/5.png deleted file mode 100644 index d9b9e84f3a..0000000000 Binary files a/front/public/images/large/Botany/ceramic/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/50.png b/front/public/images/large/Botany/ceramic/50.png deleted file mode 100644 index ac77897147..0000000000 Binary files a/front/public/images/large/Botany/ceramic/50.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/51.png b/front/public/images/large/Botany/ceramic/51.png deleted file mode 100644 index aab8dec5c9..0000000000 Binary files a/front/public/images/large/Botany/ceramic/51.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/52.png b/front/public/images/large/Botany/ceramic/52.png deleted file mode 100644 index 5864afbc77..0000000000 Binary files a/front/public/images/large/Botany/ceramic/52.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/53.png b/front/public/images/large/Botany/ceramic/53.png deleted file mode 100644 index ec5e9b9718..0000000000 Binary files a/front/public/images/large/Botany/ceramic/53.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/54.png b/front/public/images/large/Botany/ceramic/54.png deleted file mode 100644 index 75200c1958..0000000000 Binary files a/front/public/images/large/Botany/ceramic/54.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/55.png b/front/public/images/large/Botany/ceramic/55.png deleted file mode 100644 index f984b0240b..0000000000 Binary files a/front/public/images/large/Botany/ceramic/55.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/56.png b/front/public/images/large/Botany/ceramic/56.png deleted file mode 100644 index 447becc003..0000000000 Binary files a/front/public/images/large/Botany/ceramic/56.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/57.png b/front/public/images/large/Botany/ceramic/57.png deleted file mode 100644 index 1082527180..0000000000 Binary files a/front/public/images/large/Botany/ceramic/57.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/58.png b/front/public/images/large/Botany/ceramic/58.png deleted file mode 100644 index da03338f03..0000000000 Binary files a/front/public/images/large/Botany/ceramic/58.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/59.png b/front/public/images/large/Botany/ceramic/59.png deleted file mode 100644 index 8b4585b113..0000000000 Binary files a/front/public/images/large/Botany/ceramic/59.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/6.png b/front/public/images/large/Botany/ceramic/6.png deleted file mode 100644 index fb47400852..0000000000 Binary files a/front/public/images/large/Botany/ceramic/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/60.png b/front/public/images/large/Botany/ceramic/60.png deleted file mode 100644 index 6306877ce4..0000000000 Binary files a/front/public/images/large/Botany/ceramic/60.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/61.png b/front/public/images/large/Botany/ceramic/61.png deleted file mode 100644 index 678f31778a..0000000000 Binary files a/front/public/images/large/Botany/ceramic/61.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/62.png b/front/public/images/large/Botany/ceramic/62.png deleted file mode 100644 index d844785e0e..0000000000 Binary files a/front/public/images/large/Botany/ceramic/62.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/63.png b/front/public/images/large/Botany/ceramic/63.png deleted file mode 100644 index 97a4419630..0000000000 Binary files a/front/public/images/large/Botany/ceramic/63.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/64.png b/front/public/images/large/Botany/ceramic/64.png deleted file mode 100644 index eda96f638e..0000000000 Binary files a/front/public/images/large/Botany/ceramic/64.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/65.png b/front/public/images/large/Botany/ceramic/65.png deleted file mode 100644 index 4d5b2a3c17..0000000000 Binary files a/front/public/images/large/Botany/ceramic/65.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/66.png b/front/public/images/large/Botany/ceramic/66.png deleted file mode 100644 index 2f692c0185..0000000000 Binary files a/front/public/images/large/Botany/ceramic/66.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/67.png b/front/public/images/large/Botany/ceramic/67.png deleted file mode 100644 index 092dcf4468..0000000000 Binary files a/front/public/images/large/Botany/ceramic/67.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/68.png b/front/public/images/large/Botany/ceramic/68.png deleted file mode 100644 index f10671afcb..0000000000 Binary files a/front/public/images/large/Botany/ceramic/68.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/69.png b/front/public/images/large/Botany/ceramic/69.png deleted file mode 100644 index 2770950fcf..0000000000 Binary files a/front/public/images/large/Botany/ceramic/69.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/7.png b/front/public/images/large/Botany/ceramic/7.png deleted file mode 100644 index ff8e5b980b..0000000000 Binary files a/front/public/images/large/Botany/ceramic/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/70.png b/front/public/images/large/Botany/ceramic/70.png deleted file mode 100644 index 1839f39365..0000000000 Binary files a/front/public/images/large/Botany/ceramic/70.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/71.png b/front/public/images/large/Botany/ceramic/71.png deleted file mode 100644 index f279107ad6..0000000000 Binary files a/front/public/images/large/Botany/ceramic/71.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/72.png b/front/public/images/large/Botany/ceramic/72.png deleted file mode 100644 index 93d498577f..0000000000 Binary files a/front/public/images/large/Botany/ceramic/72.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/73.png b/front/public/images/large/Botany/ceramic/73.png deleted file mode 100644 index 2ef7c5cd90..0000000000 Binary files a/front/public/images/large/Botany/ceramic/73.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/74.png b/front/public/images/large/Botany/ceramic/74.png deleted file mode 100644 index 79cec3d355..0000000000 Binary files a/front/public/images/large/Botany/ceramic/74.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/75.png b/front/public/images/large/Botany/ceramic/75.png deleted file mode 100644 index 116c8c8d56..0000000000 Binary files a/front/public/images/large/Botany/ceramic/75.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/76.png b/front/public/images/large/Botany/ceramic/76.png deleted file mode 100644 index 4787a4d4a8..0000000000 Binary files a/front/public/images/large/Botany/ceramic/76.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/77.png b/front/public/images/large/Botany/ceramic/77.png deleted file mode 100644 index 4232861561..0000000000 Binary files a/front/public/images/large/Botany/ceramic/77.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/78.png b/front/public/images/large/Botany/ceramic/78.png deleted file mode 100644 index 505e48b86f..0000000000 Binary files a/front/public/images/large/Botany/ceramic/78.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/79.png b/front/public/images/large/Botany/ceramic/79.png deleted file mode 100644 index ac36ad9e28..0000000000 Binary files a/front/public/images/large/Botany/ceramic/79.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/8.png b/front/public/images/large/Botany/ceramic/8.png deleted file mode 100644 index 07dfe7cd20..0000000000 Binary files a/front/public/images/large/Botany/ceramic/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramic/9.png b/front/public/images/large/Botany/ceramic/9.png deleted file mode 100644 index b5ffa4fd15..0000000000 Binary files a/front/public/images/large/Botany/ceramic/9.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/0.png b/front/public/images/large/Botany/ceramicBrick/0.png deleted file mode 100644 index a5ba1a90c7..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/10023.png b/front/public/images/large/Botany/ceramicBrick/10023.png deleted file mode 100644 index 4fe1f31183..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/10023.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/1028.png b/front/public/images/large/Botany/ceramicBrick/1028.png deleted file mode 100644 index 8d0da687e7..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/1028.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/10280.png b/front/public/images/large/Botany/ceramicBrick/10280.png deleted file mode 100644 index 92e97183c8..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/10280.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/10537.png b/front/public/images/large/Botany/ceramicBrick/10537.png deleted file mode 100644 index 388144f96d..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/10537.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/10794.png b/front/public/images/large/Botany/ceramicBrick/10794.png deleted file mode 100644 index 1efbbd7227..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/10794.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/11051.png b/front/public/images/large/Botany/ceramicBrick/11051.png deleted file mode 100644 index b92eaaa6f0..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/11051.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/11308.png b/front/public/images/large/Botany/ceramicBrick/11308.png deleted file mode 100644 index 56ade5a494..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/11308.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/11565.png b/front/public/images/large/Botany/ceramicBrick/11565.png deleted file mode 100644 index d241a5171c..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/11565.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/11822.png b/front/public/images/large/Botany/ceramicBrick/11822.png deleted file mode 100644 index a4747277f1..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/11822.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/12079.png b/front/public/images/large/Botany/ceramicBrick/12079.png deleted file mode 100644 index b42570d229..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/12079.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/12336.png b/front/public/images/large/Botany/ceramicBrick/12336.png deleted file mode 100644 index 75c700e738..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/12336.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/12593.png b/front/public/images/large/Botany/ceramicBrick/12593.png deleted file mode 100644 index 420a730da7..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/12593.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/1285.png b/front/public/images/large/Botany/ceramicBrick/1285.png deleted file mode 100644 index cf27a461a8..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/1285.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/12850.png b/front/public/images/large/Botany/ceramicBrick/12850.png deleted file mode 100644 index 265c9091ba..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/12850.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/13107.png b/front/public/images/large/Botany/ceramicBrick/13107.png deleted file mode 100644 index e04e7d6367..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/13107.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/13364.png b/front/public/images/large/Botany/ceramicBrick/13364.png deleted file mode 100644 index 321df05436..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/13364.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/13621.png b/front/public/images/large/Botany/ceramicBrick/13621.png deleted file mode 100644 index b16f46570f..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/13621.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/13878.png b/front/public/images/large/Botany/ceramicBrick/13878.png deleted file mode 100644 index b22734aa4b..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/13878.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/14135.png b/front/public/images/large/Botany/ceramicBrick/14135.png deleted file mode 100644 index d1ee91ba20..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/14135.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/14392.png b/front/public/images/large/Botany/ceramicBrick/14392.png deleted file mode 100644 index 01e78726b3..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/14392.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/14649.png b/front/public/images/large/Botany/ceramicBrick/14649.png deleted file mode 100644 index 42170d1724..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/14649.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/14906.png b/front/public/images/large/Botany/ceramicBrick/14906.png deleted file mode 100644 index b87b31823d..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/14906.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/15163.png b/front/public/images/large/Botany/ceramicBrick/15163.png deleted file mode 100644 index 3838a74485..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/15163.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/1542.png b/front/public/images/large/Botany/ceramicBrick/1542.png deleted file mode 100644 index fbc675f206..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/1542.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/15420.png b/front/public/images/large/Botany/ceramicBrick/15420.png deleted file mode 100644 index 507beebd63..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/15420.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/15677.png b/front/public/images/large/Botany/ceramicBrick/15677.png deleted file mode 100644 index 5b1f575b64..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/15677.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/15934.png b/front/public/images/large/Botany/ceramicBrick/15934.png deleted file mode 100644 index 13441c0e56..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/15934.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/16191.png b/front/public/images/large/Botany/ceramicBrick/16191.png deleted file mode 100644 index 5860e4b5b7..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/16191.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/16387.png b/front/public/images/large/Botany/ceramicBrick/16387.png deleted file mode 100644 index 27c00041b2..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/16387.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/1799.png b/front/public/images/large/Botany/ceramicBrick/1799.png deleted file mode 100644 index 50e868bcbf..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/1799.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/2056.png b/front/public/images/large/Botany/ceramicBrick/2056.png deleted file mode 100644 index 1aa2b37535..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/2056.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/2313.png b/front/public/images/large/Botany/ceramicBrick/2313.png deleted file mode 100644 index 07269571b3..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/2313.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/257.png b/front/public/images/large/Botany/ceramicBrick/257.png deleted file mode 100644 index 421682e77d..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/257.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/2570.png b/front/public/images/large/Botany/ceramicBrick/2570.png deleted file mode 100644 index c45b5b76e2..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/2570.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/2827.png b/front/public/images/large/Botany/ceramicBrick/2827.png deleted file mode 100644 index e2f7c4bc92..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/2827.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/3084.png b/front/public/images/large/Botany/ceramicBrick/3084.png deleted file mode 100644 index b0678b87f7..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/3084.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/3341.png b/front/public/images/large/Botany/ceramicBrick/3341.png deleted file mode 100644 index 0907fa91c0..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/3341.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/3598.png b/front/public/images/large/Botany/ceramicBrick/3598.png deleted file mode 100644 index 57633072fa..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/3598.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/3855.png b/front/public/images/large/Botany/ceramicBrick/3855.png deleted file mode 100644 index 7994968ec1..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/3855.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/4112.png b/front/public/images/large/Botany/ceramicBrick/4112.png deleted file mode 100644 index b64d6ef9ec..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/4112.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/4369.png b/front/public/images/large/Botany/ceramicBrick/4369.png deleted file mode 100644 index 7f2a9ec57e..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/4369.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/4626.png b/front/public/images/large/Botany/ceramicBrick/4626.png deleted file mode 100644 index 7e6b03c062..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/4626.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/4883.png b/front/public/images/large/Botany/ceramicBrick/4883.png deleted file mode 100644 index 4e826d1331..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/4883.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/514.png b/front/public/images/large/Botany/ceramicBrick/514.png deleted file mode 100644 index 79203b2904..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/514.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/5140.png b/front/public/images/large/Botany/ceramicBrick/5140.png deleted file mode 100644 index 15a979a8f5..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/5140.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/5397.png b/front/public/images/large/Botany/ceramicBrick/5397.png deleted file mode 100644 index 7762e3280d..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/5397.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/5654.png b/front/public/images/large/Botany/ceramicBrick/5654.png deleted file mode 100644 index c5d079d5ea..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/5654.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/5911.png b/front/public/images/large/Botany/ceramicBrick/5911.png deleted file mode 100644 index be7ada8428..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/5911.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/6168.png b/front/public/images/large/Botany/ceramicBrick/6168.png deleted file mode 100644 index 70862589c1..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/6168.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/6425.png b/front/public/images/large/Botany/ceramicBrick/6425.png deleted file mode 100644 index f3f18f70e1..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/6425.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/6682.png b/front/public/images/large/Botany/ceramicBrick/6682.png deleted file mode 100644 index 40ac1f02c7..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/6682.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/6939.png b/front/public/images/large/Botany/ceramicBrick/6939.png deleted file mode 100644 index 3a8af7116f..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/6939.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/7196.png b/front/public/images/large/Botany/ceramicBrick/7196.png deleted file mode 100644 index ed609dab0c..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/7196.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/7453.png b/front/public/images/large/Botany/ceramicBrick/7453.png deleted file mode 100644 index 5844be9420..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/7453.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/771.png b/front/public/images/large/Botany/ceramicBrick/771.png deleted file mode 100644 index 8ebd93e3f0..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/771.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/7710.png b/front/public/images/large/Botany/ceramicBrick/7710.png deleted file mode 100644 index f4c960b1da..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/7710.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/7967.png b/front/public/images/large/Botany/ceramicBrick/7967.png deleted file mode 100644 index 673e513745..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/7967.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/8224.png b/front/public/images/large/Botany/ceramicBrick/8224.png deleted file mode 100644 index f4f46d44ae..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/8224.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/8481.png b/front/public/images/large/Botany/ceramicBrick/8481.png deleted file mode 100644 index a45d77539d..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/8481.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/8738.png b/front/public/images/large/Botany/ceramicBrick/8738.png deleted file mode 100644 index 0415fc9a49..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/8738.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/8995.png b/front/public/images/large/Botany/ceramicBrick/8995.png deleted file mode 100644 index 9fec471d3f..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/8995.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/9252.png b/front/public/images/large/Botany/ceramicBrick/9252.png deleted file mode 100644 index 0d23ff8c21..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/9252.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/9509.png b/front/public/images/large/Botany/ceramicBrick/9509.png deleted file mode 100644 index 12160b8aff..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/9509.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicBrick/9766.png b/front/public/images/large/Botany/ceramicBrick/9766.png deleted file mode 100644 index 9f328f460c..0000000000 Binary files a/front/public/images/large/Botany/ceramicBrick/9766.png and /dev/null differ diff --git a/front/public/images/large/Botany/ceramicPattern/16387.png b/front/public/images/large/Botany/ceramicPattern/16387.png deleted file mode 100644 index 1de80a7582..0000000000 Binary files a/front/public/images/large/Botany/ceramicPattern/16387.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/0.png b/front/public/images/large/Botany/clay/0.png deleted file mode 100644 index 7aa7e71975..0000000000 Binary files a/front/public/images/large/Botany/clay/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/1.png b/front/public/images/large/Botany/clay/1.png deleted file mode 100644 index f3c45c741a..0000000000 Binary files a/front/public/images/large/Botany/clay/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/10.png b/front/public/images/large/Botany/clay/10.png deleted file mode 100644 index 9cb36e9027..0000000000 Binary files a/front/public/images/large/Botany/clay/10.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/11.png b/front/public/images/large/Botany/clay/11.png deleted file mode 100644 index b563d36bf2..0000000000 Binary files a/front/public/images/large/Botany/clay/11.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/12.png b/front/public/images/large/Botany/clay/12.png deleted file mode 100644 index d45a0f725e..0000000000 Binary files a/front/public/images/large/Botany/clay/12.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/13.png b/front/public/images/large/Botany/clay/13.png deleted file mode 100644 index 47ffffb0f5..0000000000 Binary files a/front/public/images/large/Botany/clay/13.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/14.png b/front/public/images/large/Botany/clay/14.png deleted file mode 100644 index bf7b36e0db..0000000000 Binary files a/front/public/images/large/Botany/clay/14.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/15.png b/front/public/images/large/Botany/clay/15.png deleted file mode 100644 index 49ea12cd3a..0000000000 Binary files a/front/public/images/large/Botany/clay/15.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/16.png b/front/public/images/large/Botany/clay/16.png deleted file mode 100644 index fd70c36dd2..0000000000 Binary files a/front/public/images/large/Botany/clay/16.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/17.png b/front/public/images/large/Botany/clay/17.png deleted file mode 100644 index 964b364a10..0000000000 Binary files a/front/public/images/large/Botany/clay/17.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/18.png b/front/public/images/large/Botany/clay/18.png deleted file mode 100644 index 5f8505801e..0000000000 Binary files a/front/public/images/large/Botany/clay/18.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/19.png b/front/public/images/large/Botany/clay/19.png deleted file mode 100644 index 08db74032e..0000000000 Binary files a/front/public/images/large/Botany/clay/19.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/2.png b/front/public/images/large/Botany/clay/2.png deleted file mode 100644 index 232331503b..0000000000 Binary files a/front/public/images/large/Botany/clay/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/20.png b/front/public/images/large/Botany/clay/20.png deleted file mode 100644 index 14be8d71c0..0000000000 Binary files a/front/public/images/large/Botany/clay/20.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/21.png b/front/public/images/large/Botany/clay/21.png deleted file mode 100644 index ac8245b4e0..0000000000 Binary files a/front/public/images/large/Botany/clay/21.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/22.png b/front/public/images/large/Botany/clay/22.png deleted file mode 100644 index bad67c9aaa..0000000000 Binary files a/front/public/images/large/Botany/clay/22.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/23.png b/front/public/images/large/Botany/clay/23.png deleted file mode 100644 index 585188d19f..0000000000 Binary files a/front/public/images/large/Botany/clay/23.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/24.png b/front/public/images/large/Botany/clay/24.png deleted file mode 100644 index 3dd40f97d7..0000000000 Binary files a/front/public/images/large/Botany/clay/24.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/25.png b/front/public/images/large/Botany/clay/25.png deleted file mode 100644 index 5716e98c06..0000000000 Binary files a/front/public/images/large/Botany/clay/25.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/26.png b/front/public/images/large/Botany/clay/26.png deleted file mode 100644 index fb01a52e56..0000000000 Binary files a/front/public/images/large/Botany/clay/26.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/27.png b/front/public/images/large/Botany/clay/27.png deleted file mode 100644 index 46009e1fc9..0000000000 Binary files a/front/public/images/large/Botany/clay/27.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/28.png b/front/public/images/large/Botany/clay/28.png deleted file mode 100644 index b21fa2fc05..0000000000 Binary files a/front/public/images/large/Botany/clay/28.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/29.png b/front/public/images/large/Botany/clay/29.png deleted file mode 100644 index c390735dfd..0000000000 Binary files a/front/public/images/large/Botany/clay/29.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/3.png b/front/public/images/large/Botany/clay/3.png deleted file mode 100644 index 2fb889fd3b..0000000000 Binary files a/front/public/images/large/Botany/clay/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/30.png b/front/public/images/large/Botany/clay/30.png deleted file mode 100644 index 8ce42616c3..0000000000 Binary files a/front/public/images/large/Botany/clay/30.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/31.png b/front/public/images/large/Botany/clay/31.png deleted file mode 100644 index ca1bfbc1d6..0000000000 Binary files a/front/public/images/large/Botany/clay/31.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/32.png b/front/public/images/large/Botany/clay/32.png deleted file mode 100644 index f1138c8007..0000000000 Binary files a/front/public/images/large/Botany/clay/32.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/33.png b/front/public/images/large/Botany/clay/33.png deleted file mode 100644 index b59850e9a5..0000000000 Binary files a/front/public/images/large/Botany/clay/33.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/34.png b/front/public/images/large/Botany/clay/34.png deleted file mode 100644 index 67ec536de9..0000000000 Binary files a/front/public/images/large/Botany/clay/34.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/35.png b/front/public/images/large/Botany/clay/35.png deleted file mode 100644 index 2be136b553..0000000000 Binary files a/front/public/images/large/Botany/clay/35.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/36.png b/front/public/images/large/Botany/clay/36.png deleted file mode 100644 index 0c92207fb9..0000000000 Binary files a/front/public/images/large/Botany/clay/36.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/37.png b/front/public/images/large/Botany/clay/37.png deleted file mode 100644 index d604fe3193..0000000000 Binary files a/front/public/images/large/Botany/clay/37.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/38.png b/front/public/images/large/Botany/clay/38.png deleted file mode 100644 index 7e844193bd..0000000000 Binary files a/front/public/images/large/Botany/clay/38.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/39.png b/front/public/images/large/Botany/clay/39.png deleted file mode 100644 index fa372c946e..0000000000 Binary files a/front/public/images/large/Botany/clay/39.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/4.png b/front/public/images/large/Botany/clay/4.png deleted file mode 100644 index 5e4821fc2a..0000000000 Binary files a/front/public/images/large/Botany/clay/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/40.png b/front/public/images/large/Botany/clay/40.png deleted file mode 100644 index 7532a3f6aa..0000000000 Binary files a/front/public/images/large/Botany/clay/40.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/41.png b/front/public/images/large/Botany/clay/41.png deleted file mode 100644 index 771c25b99e..0000000000 Binary files a/front/public/images/large/Botany/clay/41.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/42.png b/front/public/images/large/Botany/clay/42.png deleted file mode 100644 index b3109191b2..0000000000 Binary files a/front/public/images/large/Botany/clay/42.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/43.png b/front/public/images/large/Botany/clay/43.png deleted file mode 100644 index a1f3f5aebe..0000000000 Binary files a/front/public/images/large/Botany/clay/43.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/44.png b/front/public/images/large/Botany/clay/44.png deleted file mode 100644 index 1ca44a24e2..0000000000 Binary files a/front/public/images/large/Botany/clay/44.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/45.png b/front/public/images/large/Botany/clay/45.png deleted file mode 100644 index 46f91b359b..0000000000 Binary files a/front/public/images/large/Botany/clay/45.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/46.png b/front/public/images/large/Botany/clay/46.png deleted file mode 100644 index a2b60432da..0000000000 Binary files a/front/public/images/large/Botany/clay/46.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/47.png b/front/public/images/large/Botany/clay/47.png deleted file mode 100644 index 35061389e9..0000000000 Binary files a/front/public/images/large/Botany/clay/47.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/48.png b/front/public/images/large/Botany/clay/48.png deleted file mode 100644 index 8977e04731..0000000000 Binary files a/front/public/images/large/Botany/clay/48.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/49.png b/front/public/images/large/Botany/clay/49.png deleted file mode 100644 index fe71f23a56..0000000000 Binary files a/front/public/images/large/Botany/clay/49.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/5.png b/front/public/images/large/Botany/clay/5.png deleted file mode 100644 index daaa168a0a..0000000000 Binary files a/front/public/images/large/Botany/clay/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/50.png b/front/public/images/large/Botany/clay/50.png deleted file mode 100644 index 454e7cde7f..0000000000 Binary files a/front/public/images/large/Botany/clay/50.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/51.png b/front/public/images/large/Botany/clay/51.png deleted file mode 100644 index c2f9909d66..0000000000 Binary files a/front/public/images/large/Botany/clay/51.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/52.png b/front/public/images/large/Botany/clay/52.png deleted file mode 100644 index 034d6e559e..0000000000 Binary files a/front/public/images/large/Botany/clay/52.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/53.png b/front/public/images/large/Botany/clay/53.png deleted file mode 100644 index 3156ec2799..0000000000 Binary files a/front/public/images/large/Botany/clay/53.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/54.png b/front/public/images/large/Botany/clay/54.png deleted file mode 100644 index 55ac399ce9..0000000000 Binary files a/front/public/images/large/Botany/clay/54.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/55.png b/front/public/images/large/Botany/clay/55.png deleted file mode 100644 index 76be02d5a4..0000000000 Binary files a/front/public/images/large/Botany/clay/55.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/56.png b/front/public/images/large/Botany/clay/56.png deleted file mode 100644 index 28445b422f..0000000000 Binary files a/front/public/images/large/Botany/clay/56.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/57.png b/front/public/images/large/Botany/clay/57.png deleted file mode 100644 index 062df07116..0000000000 Binary files a/front/public/images/large/Botany/clay/57.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/58.png b/front/public/images/large/Botany/clay/58.png deleted file mode 100644 index 388f295ddc..0000000000 Binary files a/front/public/images/large/Botany/clay/58.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/59.png b/front/public/images/large/Botany/clay/59.png deleted file mode 100644 index b4edc87796..0000000000 Binary files a/front/public/images/large/Botany/clay/59.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/6.png b/front/public/images/large/Botany/clay/6.png deleted file mode 100644 index d4c7677d21..0000000000 Binary files a/front/public/images/large/Botany/clay/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/60.png b/front/public/images/large/Botany/clay/60.png deleted file mode 100644 index c41705a6e0..0000000000 Binary files a/front/public/images/large/Botany/clay/60.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/61.png b/front/public/images/large/Botany/clay/61.png deleted file mode 100644 index 82edb6708b..0000000000 Binary files a/front/public/images/large/Botany/clay/61.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/62.png b/front/public/images/large/Botany/clay/62.png deleted file mode 100644 index 024c9c7a43..0000000000 Binary files a/front/public/images/large/Botany/clay/62.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/63.png b/front/public/images/large/Botany/clay/63.png deleted file mode 100644 index fa5cc74caf..0000000000 Binary files a/front/public/images/large/Botany/clay/63.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/64.png b/front/public/images/large/Botany/clay/64.png deleted file mode 100644 index 0aa56b0f37..0000000000 Binary files a/front/public/images/large/Botany/clay/64.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/65.png b/front/public/images/large/Botany/clay/65.png deleted file mode 100644 index cb9d332f83..0000000000 Binary files a/front/public/images/large/Botany/clay/65.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/66.png b/front/public/images/large/Botany/clay/66.png deleted file mode 100644 index ca09d7eb0a..0000000000 Binary files a/front/public/images/large/Botany/clay/66.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/67.png b/front/public/images/large/Botany/clay/67.png deleted file mode 100644 index d6362e82f2..0000000000 Binary files a/front/public/images/large/Botany/clay/67.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/68.png b/front/public/images/large/Botany/clay/68.png deleted file mode 100644 index 053a03c8fa..0000000000 Binary files a/front/public/images/large/Botany/clay/68.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/69.png b/front/public/images/large/Botany/clay/69.png deleted file mode 100644 index 31f4affb58..0000000000 Binary files a/front/public/images/large/Botany/clay/69.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/7.png b/front/public/images/large/Botany/clay/7.png deleted file mode 100644 index ddc4c6598c..0000000000 Binary files a/front/public/images/large/Botany/clay/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/70.png b/front/public/images/large/Botany/clay/70.png deleted file mode 100644 index a8fb97f05d..0000000000 Binary files a/front/public/images/large/Botany/clay/70.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/71.png b/front/public/images/large/Botany/clay/71.png deleted file mode 100644 index e649e05c49..0000000000 Binary files a/front/public/images/large/Botany/clay/71.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/72.png b/front/public/images/large/Botany/clay/72.png deleted file mode 100644 index 22abd8a0fc..0000000000 Binary files a/front/public/images/large/Botany/clay/72.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/73.png b/front/public/images/large/Botany/clay/73.png deleted file mode 100644 index 55361d4340..0000000000 Binary files a/front/public/images/large/Botany/clay/73.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/74.png b/front/public/images/large/Botany/clay/74.png deleted file mode 100644 index c7930df2b0..0000000000 Binary files a/front/public/images/large/Botany/clay/74.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/75.png b/front/public/images/large/Botany/clay/75.png deleted file mode 100644 index bb1990761c..0000000000 Binary files a/front/public/images/large/Botany/clay/75.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/76.png b/front/public/images/large/Botany/clay/76.png deleted file mode 100644 index a8fdd11b60..0000000000 Binary files a/front/public/images/large/Botany/clay/76.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/77.png b/front/public/images/large/Botany/clay/77.png deleted file mode 100644 index 6ed4600028..0000000000 Binary files a/front/public/images/large/Botany/clay/77.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/78.png b/front/public/images/large/Botany/clay/78.png deleted file mode 100644 index d0b3f12e22..0000000000 Binary files a/front/public/images/large/Botany/clay/78.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/79.png b/front/public/images/large/Botany/clay/79.png deleted file mode 100644 index 4c53cbcee8..0000000000 Binary files a/front/public/images/large/Botany/clay/79.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/8.png b/front/public/images/large/Botany/clay/8.png deleted file mode 100644 index daaedf53d7..0000000000 Binary files a/front/public/images/large/Botany/clay/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/clay/9.png b/front/public/images/large/Botany/clay/9.png deleted file mode 100644 index 4fb31ea11f..0000000000 Binary files a/front/public/images/large/Botany/clay/9.png and /dev/null differ diff --git a/front/public/images/large/Botany/database/0.png b/front/public/images/large/Botany/database/0.png deleted file mode 100644 index 6fc15de677..0000000000 Binary files a/front/public/images/large/Botany/database/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/database/1.png b/front/public/images/large/Botany/database/1.png deleted file mode 100644 index 90f110635f..0000000000 Binary files a/front/public/images/large/Botany/database/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/flower/0.png b/front/public/images/large/Botany/flower/0.png deleted file mode 100644 index 9fb57b7921..0000000000 Binary files a/front/public/images/large/Botany/flower/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/0.png b/front/public/images/large/Botany/flowerbed/0.png deleted file mode 100644 index dc813a0edd..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/1.png b/front/public/images/large/Botany/flowerbed/1.png deleted file mode 100644 index b89249420a..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/2.png b/front/public/images/large/Botany/flowerbed/2.png deleted file mode 100644 index 3f61403cb6..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/3.png b/front/public/images/large/Botany/flowerbed/3.png deleted file mode 100644 index 8112836bab..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/4.png b/front/public/images/large/Botany/flowerbed/4.png deleted file mode 100644 index 1c5cd1d753..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/5.png b/front/public/images/large/Botany/flowerbed/5.png deleted file mode 100644 index 850bc48894..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/6.png b/front/public/images/large/Botany/flowerbed/6.png deleted file mode 100644 index e18c43f802..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/7.png b/front/public/images/large/Botany/flowerbed/7.png deleted file mode 100644 index 49ee894cae..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbed/8.png b/front/public/images/large/Botany/flowerbed/8.png deleted file mode 100644 index e94a07b7bc..0000000000 Binary files a/front/public/images/large/Botany/flowerbed/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/0.png b/front/public/images/large/Botany/flowerbedNoWeed/0.png deleted file mode 100644 index 45146bd348..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/1.png b/front/public/images/large/Botany/flowerbedNoWeed/1.png deleted file mode 100644 index c4d9d9a0e7..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/2.png b/front/public/images/large/Botany/flowerbedNoWeed/2.png deleted file mode 100644 index 7145e63c70..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/3.png b/front/public/images/large/Botany/flowerbedNoWeed/3.png deleted file mode 100644 index 938b5713be..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/4.png b/front/public/images/large/Botany/flowerbedNoWeed/4.png deleted file mode 100644 index 5224f9a04d..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/5.png b/front/public/images/large/Botany/flowerbedNoWeed/5.png deleted file mode 100644 index a76c28b351..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/6.png b/front/public/images/large/Botany/flowerbedNoWeed/6.png deleted file mode 100644 index 3cff2d13e2..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/7.png b/front/public/images/large/Botany/flowerbedNoWeed/7.png deleted file mode 100644 index ae8ea06356..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/flowerbedNoWeed/8.png b/front/public/images/large/Botany/flowerbedNoWeed/8.png deleted file mode 100644 index d529dc5a43..0000000000 Binary files a/front/public/images/large/Botany/flowerbedNoWeed/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/0.png b/front/public/images/large/Botany/insulatedTube/0.png deleted file mode 100644 index d855709b5c..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/1.png b/front/public/images/large/Botany/insulatedTube/1.png deleted file mode 100644 index 5b423d553d..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/128.png b/front/public/images/large/Botany/insulatedTube/128.png deleted file mode 100644 index 01d6cb8761..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/128.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/129.png b/front/public/images/large/Botany/insulatedTube/129.png deleted file mode 100644 index 8e67227db8..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/129.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/130.png b/front/public/images/large/Botany/insulatedTube/130.png deleted file mode 100644 index 45d3ad6d77..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/130.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/131.png b/front/public/images/large/Botany/insulatedTube/131.png deleted file mode 100644 index 9d272f5595..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/131.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/2.png b/front/public/images/large/Botany/insulatedTube/2.png deleted file mode 100644 index 6570e01c0d..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/256.png b/front/public/images/large/Botany/insulatedTube/256.png deleted file mode 100644 index d6e9aba89e..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/256.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/257.png b/front/public/images/large/Botany/insulatedTube/257.png deleted file mode 100644 index 151b5b10d6..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/257.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/258.png b/front/public/images/large/Botany/insulatedTube/258.png deleted file mode 100644 index 0dfccdb24a..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/258.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/259.png b/front/public/images/large/Botany/insulatedTube/259.png deleted file mode 100644 index 5ad1a9ef96..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/259.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/3.png b/front/public/images/large/Botany/insulatedTube/3.png deleted file mode 100644 index a6fdce67db..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/384.png b/front/public/images/large/Botany/insulatedTube/384.png deleted file mode 100644 index 6c0fd587de..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/384.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/385.png b/front/public/images/large/Botany/insulatedTube/385.png deleted file mode 100644 index 1e4d733af6..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/385.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/386.png b/front/public/images/large/Botany/insulatedTube/386.png deleted file mode 100644 index 213b802210..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/386.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/387.png b/front/public/images/large/Botany/insulatedTube/387.png deleted file mode 100644 index 6377cd5709..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/387.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/512.png b/front/public/images/large/Botany/insulatedTube/512.png deleted file mode 100644 index 3b23c796a6..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/512.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/513.png b/front/public/images/large/Botany/insulatedTube/513.png deleted file mode 100644 index c59cedbc11..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/513.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/514.png b/front/public/images/large/Botany/insulatedTube/514.png deleted file mode 100644 index 9458c1ed58..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/514.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/515.png b/front/public/images/large/Botany/insulatedTube/515.png deleted file mode 100644 index 4b1379bd4f..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/515.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/640.png b/front/public/images/large/Botany/insulatedTube/640.png deleted file mode 100644 index cf4f2cfec2..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/640.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/641.png b/front/public/images/large/Botany/insulatedTube/641.png deleted file mode 100644 index fade302d6c..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/641.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/642.png b/front/public/images/large/Botany/insulatedTube/642.png deleted file mode 100644 index 812372c49f..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/642.png and /dev/null differ diff --git a/front/public/images/large/Botany/insulatedTube/643.png b/front/public/images/large/Botany/insulatedTube/643.png deleted file mode 100644 index 7321206044..0000000000 Binary files a/front/public/images/large/Botany/insulatedTube/643.png and /dev/null differ diff --git a/front/public/images/large/Botany/itemFlower/0.png b/front/public/images/large/Botany/itemFlower/0.png deleted file mode 100644 index bbb252b9ef..0000000000 Binary files a/front/public/images/large/Botany/itemFlower/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/0.png b/front/public/images/large/Botany/loam/0.png deleted file mode 100644 index 97bae3f274..0000000000 Binary files a/front/public/images/large/Botany/loam/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/1.png b/front/public/images/large/Botany/loam/1.png deleted file mode 100644 index a78ec2def2..0000000000 Binary files a/front/public/images/large/Botany/loam/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/2.png b/front/public/images/large/Botany/loam/2.png deleted file mode 100644 index e20d768de0..0000000000 Binary files a/front/public/images/large/Botany/loam/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/3.png b/front/public/images/large/Botany/loam/3.png deleted file mode 100644 index 872a68e824..0000000000 Binary files a/front/public/images/large/Botany/loam/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/4.png b/front/public/images/large/Botany/loam/4.png deleted file mode 100644 index bb826d0e33..0000000000 Binary files a/front/public/images/large/Botany/loam/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/5.png b/front/public/images/large/Botany/loam/5.png deleted file mode 100644 index dcbbfcd67a..0000000000 Binary files a/front/public/images/large/Botany/loam/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/6.png b/front/public/images/large/Botany/loam/6.png deleted file mode 100644 index 2901efe0f8..0000000000 Binary files a/front/public/images/large/Botany/loam/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/7.png b/front/public/images/large/Botany/loam/7.png deleted file mode 100644 index b78112b633..0000000000 Binary files a/front/public/images/large/Botany/loam/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/loam/8.png b/front/public/images/large/Botany/loam/8.png deleted file mode 100644 index 6aaedc0777..0000000000 Binary files a/front/public/images/large/Botany/loam/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/0.png b/front/public/images/large/Botany/loamNoWeed/0.png deleted file mode 100644 index d4671b8c99..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/1.png b/front/public/images/large/Botany/loamNoWeed/1.png deleted file mode 100644 index 80863808aa..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/2.png b/front/public/images/large/Botany/loamNoWeed/2.png deleted file mode 100644 index 7dc1c46a42..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/3.png b/front/public/images/large/Botany/loamNoWeed/3.png deleted file mode 100644 index 154b772cd5..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/4.png b/front/public/images/large/Botany/loamNoWeed/4.png deleted file mode 100644 index aef3c03696..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/5.png b/front/public/images/large/Botany/loamNoWeed/5.png deleted file mode 100644 index 61f19c2418..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/6.png b/front/public/images/large/Botany/loamNoWeed/6.png deleted file mode 100644 index 74f2c58f91..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/7.png b/front/public/images/large/Botany/loamNoWeed/7.png deleted file mode 100644 index d4a7dea8cf..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/loamNoWeed/8.png b/front/public/images/large/Botany/loamNoWeed/8.png deleted file mode 100644 index 21b73241d0..0000000000 Binary files a/front/public/images/large/Botany/loamNoWeed/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/0.png b/front/public/images/large/Botany/misc/0.png deleted file mode 100644 index a5200b6658..0000000000 Binary files a/front/public/images/large/Botany/misc/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/1.png b/front/public/images/large/Botany/misc/1.png deleted file mode 100644 index 0416d52f2b..0000000000 Binary files a/front/public/images/large/Botany/misc/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/2.png b/front/public/images/large/Botany/misc/2.png deleted file mode 100644 index 5bdcff9f5c..0000000000 Binary files a/front/public/images/large/Botany/misc/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/3.png b/front/public/images/large/Botany/misc/3.png deleted file mode 100644 index a5b3161584..0000000000 Binary files a/front/public/images/large/Botany/misc/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/4.png b/front/public/images/large/Botany/misc/4.png deleted file mode 100644 index 4b696a51da..0000000000 Binary files a/front/public/images/large/Botany/misc/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/5.png b/front/public/images/large/Botany/misc/5.png deleted file mode 100644 index 420f1368f9..0000000000 Binary files a/front/public/images/large/Botany/misc/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/6.png b/front/public/images/large/Botany/misc/6.png deleted file mode 100644 index 4792e114d3..0000000000 Binary files a/front/public/images/large/Botany/misc/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/misc/7.png b/front/public/images/large/Botany/misc/7.png deleted file mode 100644 index 31e2206c50..0000000000 Binary files a/front/public/images/large/Botany/misc/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/0.png b/front/public/images/large/Botany/pigment/0.png deleted file mode 100644 index 6aaf2e44af..0000000000 Binary files a/front/public/images/large/Botany/pigment/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/1.png b/front/public/images/large/Botany/pigment/1.png deleted file mode 100644 index 462363096b..0000000000 Binary files a/front/public/images/large/Botany/pigment/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/10.png b/front/public/images/large/Botany/pigment/10.png deleted file mode 100644 index 9c8f706a20..0000000000 Binary files a/front/public/images/large/Botany/pigment/10.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/11.png b/front/public/images/large/Botany/pigment/11.png deleted file mode 100644 index fdfb048dbd..0000000000 Binary files a/front/public/images/large/Botany/pigment/11.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/12.png b/front/public/images/large/Botany/pigment/12.png deleted file mode 100644 index ac2af3b3f7..0000000000 Binary files a/front/public/images/large/Botany/pigment/12.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/13.png b/front/public/images/large/Botany/pigment/13.png deleted file mode 100644 index af6ba98498..0000000000 Binary files a/front/public/images/large/Botany/pigment/13.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/14.png b/front/public/images/large/Botany/pigment/14.png deleted file mode 100644 index 169595709f..0000000000 Binary files a/front/public/images/large/Botany/pigment/14.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/15.png b/front/public/images/large/Botany/pigment/15.png deleted file mode 100644 index f9cdf2fcd9..0000000000 Binary files a/front/public/images/large/Botany/pigment/15.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/16.png b/front/public/images/large/Botany/pigment/16.png deleted file mode 100644 index 29cf34bc3c..0000000000 Binary files a/front/public/images/large/Botany/pigment/16.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/17.png b/front/public/images/large/Botany/pigment/17.png deleted file mode 100644 index 053ecf6878..0000000000 Binary files a/front/public/images/large/Botany/pigment/17.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/18.png b/front/public/images/large/Botany/pigment/18.png deleted file mode 100644 index 9815a7dede..0000000000 Binary files a/front/public/images/large/Botany/pigment/18.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/19.png b/front/public/images/large/Botany/pigment/19.png deleted file mode 100644 index 608267c920..0000000000 Binary files a/front/public/images/large/Botany/pigment/19.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/2.png b/front/public/images/large/Botany/pigment/2.png deleted file mode 100644 index d58fe980c4..0000000000 Binary files a/front/public/images/large/Botany/pigment/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/20.png b/front/public/images/large/Botany/pigment/20.png deleted file mode 100644 index 66641d5aa8..0000000000 Binary files a/front/public/images/large/Botany/pigment/20.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/21.png b/front/public/images/large/Botany/pigment/21.png deleted file mode 100644 index 4189ecf583..0000000000 Binary files a/front/public/images/large/Botany/pigment/21.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/22.png b/front/public/images/large/Botany/pigment/22.png deleted file mode 100644 index d7dd542b4b..0000000000 Binary files a/front/public/images/large/Botany/pigment/22.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/23.png b/front/public/images/large/Botany/pigment/23.png deleted file mode 100644 index 58a5432e1b..0000000000 Binary files a/front/public/images/large/Botany/pigment/23.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/24.png b/front/public/images/large/Botany/pigment/24.png deleted file mode 100644 index d04fdb9efd..0000000000 Binary files a/front/public/images/large/Botany/pigment/24.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/25.png b/front/public/images/large/Botany/pigment/25.png deleted file mode 100644 index 708850f873..0000000000 Binary files a/front/public/images/large/Botany/pigment/25.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/26.png b/front/public/images/large/Botany/pigment/26.png deleted file mode 100644 index 2ca7ace049..0000000000 Binary files a/front/public/images/large/Botany/pigment/26.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/27.png b/front/public/images/large/Botany/pigment/27.png deleted file mode 100644 index 3aeae85e0d..0000000000 Binary files a/front/public/images/large/Botany/pigment/27.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/28.png b/front/public/images/large/Botany/pigment/28.png deleted file mode 100644 index 6c37af88a8..0000000000 Binary files a/front/public/images/large/Botany/pigment/28.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/29.png b/front/public/images/large/Botany/pigment/29.png deleted file mode 100644 index 7461dceccc..0000000000 Binary files a/front/public/images/large/Botany/pigment/29.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/3.png b/front/public/images/large/Botany/pigment/3.png deleted file mode 100644 index 5fe123bc8f..0000000000 Binary files a/front/public/images/large/Botany/pigment/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/30.png b/front/public/images/large/Botany/pigment/30.png deleted file mode 100644 index 37e900d24a..0000000000 Binary files a/front/public/images/large/Botany/pigment/30.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/31.png b/front/public/images/large/Botany/pigment/31.png deleted file mode 100644 index fb3219231f..0000000000 Binary files a/front/public/images/large/Botany/pigment/31.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/32.png b/front/public/images/large/Botany/pigment/32.png deleted file mode 100644 index 749aeb5828..0000000000 Binary files a/front/public/images/large/Botany/pigment/32.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/33.png b/front/public/images/large/Botany/pigment/33.png deleted file mode 100644 index b741e3def4..0000000000 Binary files a/front/public/images/large/Botany/pigment/33.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/34.png b/front/public/images/large/Botany/pigment/34.png deleted file mode 100644 index 8a5f9de71e..0000000000 Binary files a/front/public/images/large/Botany/pigment/34.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/35.png b/front/public/images/large/Botany/pigment/35.png deleted file mode 100644 index dd7e72d793..0000000000 Binary files a/front/public/images/large/Botany/pigment/35.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/36.png b/front/public/images/large/Botany/pigment/36.png deleted file mode 100644 index 3494565dee..0000000000 Binary files a/front/public/images/large/Botany/pigment/36.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/37.png b/front/public/images/large/Botany/pigment/37.png deleted file mode 100644 index 6ca79d4312..0000000000 Binary files a/front/public/images/large/Botany/pigment/37.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/38.png b/front/public/images/large/Botany/pigment/38.png deleted file mode 100644 index 8fcd5327c9..0000000000 Binary files a/front/public/images/large/Botany/pigment/38.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/39.png b/front/public/images/large/Botany/pigment/39.png deleted file mode 100644 index b961aa0dd0..0000000000 Binary files a/front/public/images/large/Botany/pigment/39.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/4.png b/front/public/images/large/Botany/pigment/4.png deleted file mode 100644 index bed7862bc2..0000000000 Binary files a/front/public/images/large/Botany/pigment/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/40.png b/front/public/images/large/Botany/pigment/40.png deleted file mode 100644 index 2ed7bd92dd..0000000000 Binary files a/front/public/images/large/Botany/pigment/40.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/41.png b/front/public/images/large/Botany/pigment/41.png deleted file mode 100644 index a362feb70d..0000000000 Binary files a/front/public/images/large/Botany/pigment/41.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/42.png b/front/public/images/large/Botany/pigment/42.png deleted file mode 100644 index 8248583625..0000000000 Binary files a/front/public/images/large/Botany/pigment/42.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/43.png b/front/public/images/large/Botany/pigment/43.png deleted file mode 100644 index ac6fcb8663..0000000000 Binary files a/front/public/images/large/Botany/pigment/43.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/44.png b/front/public/images/large/Botany/pigment/44.png deleted file mode 100644 index 09e1d2220c..0000000000 Binary files a/front/public/images/large/Botany/pigment/44.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/45.png b/front/public/images/large/Botany/pigment/45.png deleted file mode 100644 index 71d49e7e95..0000000000 Binary files a/front/public/images/large/Botany/pigment/45.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/46.png b/front/public/images/large/Botany/pigment/46.png deleted file mode 100644 index 435ae4cd73..0000000000 Binary files a/front/public/images/large/Botany/pigment/46.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/47.png b/front/public/images/large/Botany/pigment/47.png deleted file mode 100644 index bc6c005ab0..0000000000 Binary files a/front/public/images/large/Botany/pigment/47.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/48.png b/front/public/images/large/Botany/pigment/48.png deleted file mode 100644 index b46e8838ae..0000000000 Binary files a/front/public/images/large/Botany/pigment/48.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/49.png b/front/public/images/large/Botany/pigment/49.png deleted file mode 100644 index 47951b19d1..0000000000 Binary files a/front/public/images/large/Botany/pigment/49.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/5.png b/front/public/images/large/Botany/pigment/5.png deleted file mode 100644 index 650b346564..0000000000 Binary files a/front/public/images/large/Botany/pigment/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/50.png b/front/public/images/large/Botany/pigment/50.png deleted file mode 100644 index 7a64cd3eba..0000000000 Binary files a/front/public/images/large/Botany/pigment/50.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/51.png b/front/public/images/large/Botany/pigment/51.png deleted file mode 100644 index 1de7526a11..0000000000 Binary files a/front/public/images/large/Botany/pigment/51.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/52.png b/front/public/images/large/Botany/pigment/52.png deleted file mode 100644 index d12ab8e484..0000000000 Binary files a/front/public/images/large/Botany/pigment/52.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/53.png b/front/public/images/large/Botany/pigment/53.png deleted file mode 100644 index 3bab7fb3b2..0000000000 Binary files a/front/public/images/large/Botany/pigment/53.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/54.png b/front/public/images/large/Botany/pigment/54.png deleted file mode 100644 index 3036870c7e..0000000000 Binary files a/front/public/images/large/Botany/pigment/54.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/55.png b/front/public/images/large/Botany/pigment/55.png deleted file mode 100644 index a41eeb4850..0000000000 Binary files a/front/public/images/large/Botany/pigment/55.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/56.png b/front/public/images/large/Botany/pigment/56.png deleted file mode 100644 index ecb5b5dd04..0000000000 Binary files a/front/public/images/large/Botany/pigment/56.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/57.png b/front/public/images/large/Botany/pigment/57.png deleted file mode 100644 index e0e24c9644..0000000000 Binary files a/front/public/images/large/Botany/pigment/57.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/58.png b/front/public/images/large/Botany/pigment/58.png deleted file mode 100644 index 1ae915e869..0000000000 Binary files a/front/public/images/large/Botany/pigment/58.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/59.png b/front/public/images/large/Botany/pigment/59.png deleted file mode 100644 index 01ebf18496..0000000000 Binary files a/front/public/images/large/Botany/pigment/59.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/6.png b/front/public/images/large/Botany/pigment/6.png deleted file mode 100644 index 78792aae47..0000000000 Binary files a/front/public/images/large/Botany/pigment/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/60.png b/front/public/images/large/Botany/pigment/60.png deleted file mode 100644 index 6a3940f48d..0000000000 Binary files a/front/public/images/large/Botany/pigment/60.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/61.png b/front/public/images/large/Botany/pigment/61.png deleted file mode 100644 index 785ae2f5dc..0000000000 Binary files a/front/public/images/large/Botany/pigment/61.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/62.png b/front/public/images/large/Botany/pigment/62.png deleted file mode 100644 index 9ed7811e11..0000000000 Binary files a/front/public/images/large/Botany/pigment/62.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/63.png b/front/public/images/large/Botany/pigment/63.png deleted file mode 100644 index 33a55f8d8f..0000000000 Binary files a/front/public/images/large/Botany/pigment/63.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/64.png b/front/public/images/large/Botany/pigment/64.png deleted file mode 100644 index 4946e96fb7..0000000000 Binary files a/front/public/images/large/Botany/pigment/64.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/65.png b/front/public/images/large/Botany/pigment/65.png deleted file mode 100644 index ad7e2b8848..0000000000 Binary files a/front/public/images/large/Botany/pigment/65.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/66.png b/front/public/images/large/Botany/pigment/66.png deleted file mode 100644 index 3d3478d5bb..0000000000 Binary files a/front/public/images/large/Botany/pigment/66.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/67.png b/front/public/images/large/Botany/pigment/67.png deleted file mode 100644 index cd0bce000a..0000000000 Binary files a/front/public/images/large/Botany/pigment/67.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/68.png b/front/public/images/large/Botany/pigment/68.png deleted file mode 100644 index f4a39c83e5..0000000000 Binary files a/front/public/images/large/Botany/pigment/68.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/69.png b/front/public/images/large/Botany/pigment/69.png deleted file mode 100644 index 6ad2c96543..0000000000 Binary files a/front/public/images/large/Botany/pigment/69.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/7.png b/front/public/images/large/Botany/pigment/7.png deleted file mode 100644 index 2ffce7e99b..0000000000 Binary files a/front/public/images/large/Botany/pigment/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/70.png b/front/public/images/large/Botany/pigment/70.png deleted file mode 100644 index 78fe4e9a86..0000000000 Binary files a/front/public/images/large/Botany/pigment/70.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/71.png b/front/public/images/large/Botany/pigment/71.png deleted file mode 100644 index 12673d22e8..0000000000 Binary files a/front/public/images/large/Botany/pigment/71.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/72.png b/front/public/images/large/Botany/pigment/72.png deleted file mode 100644 index 129f5eb14a..0000000000 Binary files a/front/public/images/large/Botany/pigment/72.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/73.png b/front/public/images/large/Botany/pigment/73.png deleted file mode 100644 index 9d2102b904..0000000000 Binary files a/front/public/images/large/Botany/pigment/73.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/74.png b/front/public/images/large/Botany/pigment/74.png deleted file mode 100644 index f059b811f8..0000000000 Binary files a/front/public/images/large/Botany/pigment/74.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/75.png b/front/public/images/large/Botany/pigment/75.png deleted file mode 100644 index 8cddb1b8ff..0000000000 Binary files a/front/public/images/large/Botany/pigment/75.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/76.png b/front/public/images/large/Botany/pigment/76.png deleted file mode 100644 index 59395539ff..0000000000 Binary files a/front/public/images/large/Botany/pigment/76.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/77.png b/front/public/images/large/Botany/pigment/77.png deleted file mode 100644 index 24509e7671..0000000000 Binary files a/front/public/images/large/Botany/pigment/77.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/78.png b/front/public/images/large/Botany/pigment/78.png deleted file mode 100644 index badb7817e9..0000000000 Binary files a/front/public/images/large/Botany/pigment/78.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/79.png b/front/public/images/large/Botany/pigment/79.png deleted file mode 100644 index 9590bf0645..0000000000 Binary files a/front/public/images/large/Botany/pigment/79.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/8.png b/front/public/images/large/Botany/pigment/8.png deleted file mode 100644 index 0339682c9a..0000000000 Binary files a/front/public/images/large/Botany/pigment/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/pigment/9.png b/front/public/images/large/Botany/pigment/9.png deleted file mode 100644 index 071ee269a8..0000000000 Binary files a/front/public/images/large/Botany/pigment/9.png and /dev/null differ diff --git a/front/public/images/large/Botany/plant/0.png b/front/public/images/large/Botany/plant/0.png deleted file mode 100644 index 12434e7e76..0000000000 Binary files a/front/public/images/large/Botany/plant/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/plant/1.png b/front/public/images/large/Botany/plant/1.png deleted file mode 100644 index 506a7349ab..0000000000 Binary files a/front/public/images/large/Botany/plant/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/plant/2.png b/front/public/images/large/Botany/plant/2.png deleted file mode 100644 index d154b625c8..0000000000 Binary files a/front/public/images/large/Botany/plant/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/plant/3.png b/front/public/images/large/Botany/plant/3.png deleted file mode 100644 index 25eb8225c0..0000000000 Binary files a/front/public/images/large/Botany/plant/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/plant/4.png b/front/public/images/large/Botany/plant/4.png deleted file mode 100644 index 734cf901e7..0000000000 Binary files a/front/public/images/large/Botany/plant/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/pollen/0.png b/front/public/images/large/Botany/pollen/0.png deleted file mode 100644 index c2ade824e5..0000000000 Binary files a/front/public/images/large/Botany/pollen/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/seed/0.png b/front/public/images/large/Botany/seed/0.png deleted file mode 100644 index d2900b5763..0000000000 Binary files a/front/public/images/large/Botany/seed/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/0.png b/front/public/images/large/Botany/soil/0.png deleted file mode 100644 index 94fd963b17..0000000000 Binary files a/front/public/images/large/Botany/soil/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/1.png b/front/public/images/large/Botany/soil/1.png deleted file mode 100644 index 5b8638a8f3..0000000000 Binary files a/front/public/images/large/Botany/soil/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/2.png b/front/public/images/large/Botany/soil/2.png deleted file mode 100644 index bd7073987e..0000000000 Binary files a/front/public/images/large/Botany/soil/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/3.png b/front/public/images/large/Botany/soil/3.png deleted file mode 100644 index 60f382b831..0000000000 Binary files a/front/public/images/large/Botany/soil/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/4.png b/front/public/images/large/Botany/soil/4.png deleted file mode 100644 index d09161955c..0000000000 Binary files a/front/public/images/large/Botany/soil/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/5.png b/front/public/images/large/Botany/soil/5.png deleted file mode 100644 index 19808aefe7..0000000000 Binary files a/front/public/images/large/Botany/soil/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/6.png b/front/public/images/large/Botany/soil/6.png deleted file mode 100644 index c323567e46..0000000000 Binary files a/front/public/images/large/Botany/soil/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/7.png b/front/public/images/large/Botany/soil/7.png deleted file mode 100644 index ca97959c95..0000000000 Binary files a/front/public/images/large/Botany/soil/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/soil/8.png b/front/public/images/large/Botany/soil/8.png deleted file mode 100644 index 9f21fcad9f..0000000000 Binary files a/front/public/images/large/Botany/soil/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilMeter/0.png b/front/public/images/large/Botany/soilMeter/0.png deleted file mode 100644 index 910f1d548d..0000000000 Binary files a/front/public/images/large/Botany/soilMeter/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/0.png b/front/public/images/large/Botany/soilNoWeed/0.png deleted file mode 100644 index ddf10deac9..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/1.png b/front/public/images/large/Botany/soilNoWeed/1.png deleted file mode 100644 index 48c99c2d04..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/2.png b/front/public/images/large/Botany/soilNoWeed/2.png deleted file mode 100644 index 0db5c0cae7..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/3.png b/front/public/images/large/Botany/soilNoWeed/3.png deleted file mode 100644 index 660c542699..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/4.png b/front/public/images/large/Botany/soilNoWeed/4.png deleted file mode 100644 index 49a9d1d2ec..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/5.png b/front/public/images/large/Botany/soilNoWeed/5.png deleted file mode 100644 index 1175a24a86..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/6.png b/front/public/images/large/Botany/soilNoWeed/6.png deleted file mode 100644 index 64d10b24b3..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/7.png b/front/public/images/large/Botany/soilNoWeed/7.png deleted file mode 100644 index b54c7a39f5..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/soilNoWeed/8.png b/front/public/images/large/Botany/soilNoWeed/8.png deleted file mode 100644 index 4a9d2f7c4c..0000000000 Binary files a/front/public/images/large/Botany/soilNoWeed/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/0.png b/front/public/images/large/Botany/stained/0.png deleted file mode 100644 index b6b187f1c2..0000000000 Binary files a/front/public/images/large/Botany/stained/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/1.png b/front/public/images/large/Botany/stained/1.png deleted file mode 100644 index 0f9d1f1a51..0000000000 Binary files a/front/public/images/large/Botany/stained/1.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/10.png b/front/public/images/large/Botany/stained/10.png deleted file mode 100644 index de28205f3c..0000000000 Binary files a/front/public/images/large/Botany/stained/10.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/11.png b/front/public/images/large/Botany/stained/11.png deleted file mode 100644 index e6f48fba6c..0000000000 Binary files a/front/public/images/large/Botany/stained/11.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/12.png b/front/public/images/large/Botany/stained/12.png deleted file mode 100644 index da4bd1b282..0000000000 Binary files a/front/public/images/large/Botany/stained/12.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/13.png b/front/public/images/large/Botany/stained/13.png deleted file mode 100644 index a54feee1e7..0000000000 Binary files a/front/public/images/large/Botany/stained/13.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/14.png b/front/public/images/large/Botany/stained/14.png deleted file mode 100644 index cd08fb289b..0000000000 Binary files a/front/public/images/large/Botany/stained/14.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/15.png b/front/public/images/large/Botany/stained/15.png deleted file mode 100644 index cbf6e6e386..0000000000 Binary files a/front/public/images/large/Botany/stained/15.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/16.png b/front/public/images/large/Botany/stained/16.png deleted file mode 100644 index 45a1d4dc93..0000000000 Binary files a/front/public/images/large/Botany/stained/16.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/17.png b/front/public/images/large/Botany/stained/17.png deleted file mode 100644 index 9f3061e631..0000000000 Binary files a/front/public/images/large/Botany/stained/17.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/18.png b/front/public/images/large/Botany/stained/18.png deleted file mode 100644 index 054d6fff5a..0000000000 Binary files a/front/public/images/large/Botany/stained/18.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/19.png b/front/public/images/large/Botany/stained/19.png deleted file mode 100644 index 3161183ad2..0000000000 Binary files a/front/public/images/large/Botany/stained/19.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/2.png b/front/public/images/large/Botany/stained/2.png deleted file mode 100644 index c79f739894..0000000000 Binary files a/front/public/images/large/Botany/stained/2.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/20.png b/front/public/images/large/Botany/stained/20.png deleted file mode 100644 index 5190b0b6c0..0000000000 Binary files a/front/public/images/large/Botany/stained/20.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/21.png b/front/public/images/large/Botany/stained/21.png deleted file mode 100644 index cca5b1fb12..0000000000 Binary files a/front/public/images/large/Botany/stained/21.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/22.png b/front/public/images/large/Botany/stained/22.png deleted file mode 100644 index 41059da4a3..0000000000 Binary files a/front/public/images/large/Botany/stained/22.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/23.png b/front/public/images/large/Botany/stained/23.png deleted file mode 100644 index 092b24a475..0000000000 Binary files a/front/public/images/large/Botany/stained/23.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/24.png b/front/public/images/large/Botany/stained/24.png deleted file mode 100644 index e62e16f186..0000000000 Binary files a/front/public/images/large/Botany/stained/24.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/25.png b/front/public/images/large/Botany/stained/25.png deleted file mode 100644 index 55f6c2d430..0000000000 Binary files a/front/public/images/large/Botany/stained/25.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/26.png b/front/public/images/large/Botany/stained/26.png deleted file mode 100644 index 7d646422f2..0000000000 Binary files a/front/public/images/large/Botany/stained/26.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/27.png b/front/public/images/large/Botany/stained/27.png deleted file mode 100644 index 70763906d2..0000000000 Binary files a/front/public/images/large/Botany/stained/27.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/28.png b/front/public/images/large/Botany/stained/28.png deleted file mode 100644 index 99bc85eb89..0000000000 Binary files a/front/public/images/large/Botany/stained/28.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/29.png b/front/public/images/large/Botany/stained/29.png deleted file mode 100644 index 7259efeb7b..0000000000 Binary files a/front/public/images/large/Botany/stained/29.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/3.png b/front/public/images/large/Botany/stained/3.png deleted file mode 100644 index 08960ca941..0000000000 Binary files a/front/public/images/large/Botany/stained/3.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/30.png b/front/public/images/large/Botany/stained/30.png deleted file mode 100644 index 17fb4c882d..0000000000 Binary files a/front/public/images/large/Botany/stained/30.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/31.png b/front/public/images/large/Botany/stained/31.png deleted file mode 100644 index cf4d2aae09..0000000000 Binary files a/front/public/images/large/Botany/stained/31.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/32.png b/front/public/images/large/Botany/stained/32.png deleted file mode 100644 index 67f349cdde..0000000000 Binary files a/front/public/images/large/Botany/stained/32.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/33.png b/front/public/images/large/Botany/stained/33.png deleted file mode 100644 index 9b55779604..0000000000 Binary files a/front/public/images/large/Botany/stained/33.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/34.png b/front/public/images/large/Botany/stained/34.png deleted file mode 100644 index d83819790e..0000000000 Binary files a/front/public/images/large/Botany/stained/34.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/35.png b/front/public/images/large/Botany/stained/35.png deleted file mode 100644 index 463bf49897..0000000000 Binary files a/front/public/images/large/Botany/stained/35.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/36.png b/front/public/images/large/Botany/stained/36.png deleted file mode 100644 index 813cabd179..0000000000 Binary files a/front/public/images/large/Botany/stained/36.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/37.png b/front/public/images/large/Botany/stained/37.png deleted file mode 100644 index 57691f7e5d..0000000000 Binary files a/front/public/images/large/Botany/stained/37.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/38.png b/front/public/images/large/Botany/stained/38.png deleted file mode 100644 index 8b9a25eeef..0000000000 Binary files a/front/public/images/large/Botany/stained/38.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/39.png b/front/public/images/large/Botany/stained/39.png deleted file mode 100644 index c6f1b603cb..0000000000 Binary files a/front/public/images/large/Botany/stained/39.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/4.png b/front/public/images/large/Botany/stained/4.png deleted file mode 100644 index 0bb47f4950..0000000000 Binary files a/front/public/images/large/Botany/stained/4.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/40.png b/front/public/images/large/Botany/stained/40.png deleted file mode 100644 index 92d6d678c3..0000000000 Binary files a/front/public/images/large/Botany/stained/40.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/41.png b/front/public/images/large/Botany/stained/41.png deleted file mode 100644 index 0d8300f8c4..0000000000 Binary files a/front/public/images/large/Botany/stained/41.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/42.png b/front/public/images/large/Botany/stained/42.png deleted file mode 100644 index 83bee12ed1..0000000000 Binary files a/front/public/images/large/Botany/stained/42.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/43.png b/front/public/images/large/Botany/stained/43.png deleted file mode 100644 index 709e88e35f..0000000000 Binary files a/front/public/images/large/Botany/stained/43.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/44.png b/front/public/images/large/Botany/stained/44.png deleted file mode 100644 index e8a501a989..0000000000 Binary files a/front/public/images/large/Botany/stained/44.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/45.png b/front/public/images/large/Botany/stained/45.png deleted file mode 100644 index ed94eda3b1..0000000000 Binary files a/front/public/images/large/Botany/stained/45.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/46.png b/front/public/images/large/Botany/stained/46.png deleted file mode 100644 index 20391d03c9..0000000000 Binary files a/front/public/images/large/Botany/stained/46.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/47.png b/front/public/images/large/Botany/stained/47.png deleted file mode 100644 index a6ee39ff2a..0000000000 Binary files a/front/public/images/large/Botany/stained/47.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/48.png b/front/public/images/large/Botany/stained/48.png deleted file mode 100644 index 2821a98370..0000000000 Binary files a/front/public/images/large/Botany/stained/48.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/49.png b/front/public/images/large/Botany/stained/49.png deleted file mode 100644 index 0d960ab44b..0000000000 Binary files a/front/public/images/large/Botany/stained/49.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/5.png b/front/public/images/large/Botany/stained/5.png deleted file mode 100644 index 75fdd25438..0000000000 Binary files a/front/public/images/large/Botany/stained/5.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/50.png b/front/public/images/large/Botany/stained/50.png deleted file mode 100644 index ad25717435..0000000000 Binary files a/front/public/images/large/Botany/stained/50.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/51.png b/front/public/images/large/Botany/stained/51.png deleted file mode 100644 index e7c766edd0..0000000000 Binary files a/front/public/images/large/Botany/stained/51.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/52.png b/front/public/images/large/Botany/stained/52.png deleted file mode 100644 index 0240f8d5a1..0000000000 Binary files a/front/public/images/large/Botany/stained/52.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/53.png b/front/public/images/large/Botany/stained/53.png deleted file mode 100644 index 55c9197c83..0000000000 Binary files a/front/public/images/large/Botany/stained/53.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/54.png b/front/public/images/large/Botany/stained/54.png deleted file mode 100644 index 089086159d..0000000000 Binary files a/front/public/images/large/Botany/stained/54.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/55.png b/front/public/images/large/Botany/stained/55.png deleted file mode 100644 index 72ac9a1233..0000000000 Binary files a/front/public/images/large/Botany/stained/55.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/56.png b/front/public/images/large/Botany/stained/56.png deleted file mode 100644 index 1e9403a68c..0000000000 Binary files a/front/public/images/large/Botany/stained/56.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/57.png b/front/public/images/large/Botany/stained/57.png deleted file mode 100644 index bb2655d2ab..0000000000 Binary files a/front/public/images/large/Botany/stained/57.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/58.png b/front/public/images/large/Botany/stained/58.png deleted file mode 100644 index db53b87fc6..0000000000 Binary files a/front/public/images/large/Botany/stained/58.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/59.png b/front/public/images/large/Botany/stained/59.png deleted file mode 100644 index 9b5b909da6..0000000000 Binary files a/front/public/images/large/Botany/stained/59.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/6.png b/front/public/images/large/Botany/stained/6.png deleted file mode 100644 index 3fd1dbd8c6..0000000000 Binary files a/front/public/images/large/Botany/stained/6.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/60.png b/front/public/images/large/Botany/stained/60.png deleted file mode 100644 index f06b581810..0000000000 Binary files a/front/public/images/large/Botany/stained/60.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/61.png b/front/public/images/large/Botany/stained/61.png deleted file mode 100644 index 6929fa48d8..0000000000 Binary files a/front/public/images/large/Botany/stained/61.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/62.png b/front/public/images/large/Botany/stained/62.png deleted file mode 100644 index c2c5941d8c..0000000000 Binary files a/front/public/images/large/Botany/stained/62.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/63.png b/front/public/images/large/Botany/stained/63.png deleted file mode 100644 index 174498eb4d..0000000000 Binary files a/front/public/images/large/Botany/stained/63.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/64.png b/front/public/images/large/Botany/stained/64.png deleted file mode 100644 index e2cfa4a40d..0000000000 Binary files a/front/public/images/large/Botany/stained/64.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/65.png b/front/public/images/large/Botany/stained/65.png deleted file mode 100644 index 0977cc039c..0000000000 Binary files a/front/public/images/large/Botany/stained/65.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/66.png b/front/public/images/large/Botany/stained/66.png deleted file mode 100644 index d758cc2c42..0000000000 Binary files a/front/public/images/large/Botany/stained/66.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/67.png b/front/public/images/large/Botany/stained/67.png deleted file mode 100644 index 3743df258c..0000000000 Binary files a/front/public/images/large/Botany/stained/67.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/68.png b/front/public/images/large/Botany/stained/68.png deleted file mode 100644 index 6715e13b77..0000000000 Binary files a/front/public/images/large/Botany/stained/68.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/69.png b/front/public/images/large/Botany/stained/69.png deleted file mode 100644 index 5423c8fc92..0000000000 Binary files a/front/public/images/large/Botany/stained/69.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/7.png b/front/public/images/large/Botany/stained/7.png deleted file mode 100644 index 4bb4da0eca..0000000000 Binary files a/front/public/images/large/Botany/stained/7.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/70.png b/front/public/images/large/Botany/stained/70.png deleted file mode 100644 index 1a24899709..0000000000 Binary files a/front/public/images/large/Botany/stained/70.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/71.png b/front/public/images/large/Botany/stained/71.png deleted file mode 100644 index fe6db9334c..0000000000 Binary files a/front/public/images/large/Botany/stained/71.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/72.png b/front/public/images/large/Botany/stained/72.png deleted file mode 100644 index 920c420cb8..0000000000 Binary files a/front/public/images/large/Botany/stained/72.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/73.png b/front/public/images/large/Botany/stained/73.png deleted file mode 100644 index 6cabd616b5..0000000000 Binary files a/front/public/images/large/Botany/stained/73.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/74.png b/front/public/images/large/Botany/stained/74.png deleted file mode 100644 index 79b3985a2e..0000000000 Binary files a/front/public/images/large/Botany/stained/74.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/75.png b/front/public/images/large/Botany/stained/75.png deleted file mode 100644 index 0b172af38e..0000000000 Binary files a/front/public/images/large/Botany/stained/75.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/76.png b/front/public/images/large/Botany/stained/76.png deleted file mode 100644 index 7cf5e45f29..0000000000 Binary files a/front/public/images/large/Botany/stained/76.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/77.png b/front/public/images/large/Botany/stained/77.png deleted file mode 100644 index 4d32c81b09..0000000000 Binary files a/front/public/images/large/Botany/stained/77.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/78.png b/front/public/images/large/Botany/stained/78.png deleted file mode 100644 index 0d70923ef2..0000000000 Binary files a/front/public/images/large/Botany/stained/78.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/79.png b/front/public/images/large/Botany/stained/79.png deleted file mode 100644 index ca921522ab..0000000000 Binary files a/front/public/images/large/Botany/stained/79.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/8.png b/front/public/images/large/Botany/stained/8.png deleted file mode 100644 index 51abee5e96..0000000000 Binary files a/front/public/images/large/Botany/stained/8.png and /dev/null differ diff --git a/front/public/images/large/Botany/stained/9.png b/front/public/images/large/Botany/stained/9.png deleted file mode 100644 index 94d3eac2ce..0000000000 Binary files a/front/public/images/large/Botany/stained/9.png and /dev/null differ diff --git a/front/public/images/large/Botany/trowelDiamond/0.png b/front/public/images/large/Botany/trowelDiamond/0.png deleted file mode 100644 index 8ead9ec9d6..0000000000 Binary files a/front/public/images/large/Botany/trowelDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/trowelGold/0.png b/front/public/images/large/Botany/trowelGold/0.png deleted file mode 100644 index 28336a3aaf..0000000000 Binary files a/front/public/images/large/Botany/trowelGold/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/trowelIron/0.png b/front/public/images/large/Botany/trowelIron/0.png deleted file mode 100644 index 0ed789d25d..0000000000 Binary files a/front/public/images/large/Botany/trowelIron/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/trowelStone/0.png b/front/public/images/large/Botany/trowelStone/0.png deleted file mode 100644 index 2e9d1d50ca..0000000000 Binary files a/front/public/images/large/Botany/trowelStone/0.png and /dev/null differ diff --git a/front/public/images/large/Botany/trowelWood/0.png b/front/public/images/large/Botany/trowelWood/0.png deleted file mode 100644 index d808b4a316..0000000000 Binary files a/front/public/images/large/Botany/trowelWood/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/architectBlock/0.png b/front/public/images/large/BuildCraft_Builders/architectBlock/0.png deleted file mode 100644 index 8c31696001..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/architectBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/blueprintItem/0.png b/front/public/images/large/BuildCraft_Builders/blueprintItem/0.png deleted file mode 100644 index 03a3a77bf4..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/blueprintItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/builderBlock/0.png b/front/public/images/large/BuildCraft_Builders/builderBlock/0.png deleted file mode 100644 index df8b6d098e..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/builderBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/constructionMarkerBlock/0.png b/front/public/images/large/BuildCraft_Builders/constructionMarkerBlock/0.png deleted file mode 100644 index b232756a9e..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/constructionMarkerBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/fillerBlock/0.png b/front/public/images/large/BuildCraft_Builders/fillerBlock/0.png deleted file mode 100644 index 44b2c276d9..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/fillerBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/frameBlock/0.png b/front/public/images/large/BuildCraft_Builders/frameBlock/0.png deleted file mode 100644 index 476f53846e..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/frameBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/libraryBlock/0.png b/front/public/images/large/BuildCraft_Builders/libraryBlock/0.png deleted file mode 100644 index 20541abb36..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/libraryBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/machineBlock/0.png b/front/public/images/large/BuildCraft_Builders/machineBlock/0.png deleted file mode 100644 index fcb417ba5c..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/machineBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Builders/templateItem/0.png b/front/public/images/large/BuildCraft_Builders/templateItem/0.png deleted file mode 100644 index 52c299fa7c..0000000000 Binary files a/front/public/images/large/BuildCraft_Builders/templateItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Compat/item.buildcraftPipe.pipeitemspropolis/0.png b/front/public/images/large/BuildCraft_Compat/item.buildcraftPipe.pipeitemspropolis/0.png deleted file mode 100644 index a996c92311..0000000000 Binary files a/front/public/images/large/BuildCraft_Compat/item.buildcraftPipe.pipeitemspropolis/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/buildToolBlock/0.png b/front/public/images/large/BuildCraft_Core/buildToolBlock/0.png deleted file mode 100644 index 6f8b50be3a..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/buildToolBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/debugger/0.png b/front/public/images/large/BuildCraft_Core/debugger/0.png deleted file mode 100644 index b7f6912951..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/debugger/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/diamondGearItem/0.png b/front/public/images/large/BuildCraft_Core/diamondGearItem/0.png deleted file mode 100644 index 0adc51bebd..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/diamondGearItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/engineBlock/0.png b/front/public/images/large/BuildCraft_Core/engineBlock/0.png deleted file mode 100644 index 79bd6d64c0..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/engineBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/engineBlock/1.png b/front/public/images/large/BuildCraft_Core/engineBlock/1.png deleted file mode 100644 index de639e8c92..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/engineBlock/1.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/engineBlock/2.png b/front/public/images/large/BuildCraft_Core/engineBlock/2.png deleted file mode 100644 index 139cf350c3..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/engineBlock/2.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/engineBlock/3.png b/front/public/images/large/BuildCraft_Core/engineBlock/3.png deleted file mode 100644 index 78c030a035..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/engineBlock/3.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/eternalSpring/0.png b/front/public/images/large/BuildCraft_Core/eternalSpring/0.png deleted file mode 100644 index c4392f9e5d..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/eternalSpring/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/eternalSpring/1.png b/front/public/images/large/BuildCraft_Core/eternalSpring/1.png deleted file mode 100644 index c4392f9e5d..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/eternalSpring/1.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/goldGearItem/0.png b/front/public/images/large/BuildCraft_Core/goldGearItem/0.png deleted file mode 100644 index 731e2f40dc..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/goldGearItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/ironGearItem/0.png b/front/public/images/large/BuildCraft_Core/ironGearItem/0.png deleted file mode 100644 index 2384f73bec..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/ironGearItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/list/0.png b/front/public/images/large/BuildCraft_Core/list/0.png deleted file mode 100644 index 363111924f..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/list/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/list/1.png b/front/public/images/large/BuildCraft_Core/list/1.png deleted file mode 100644 index 363111924f..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/list/1.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/mapLocation/0.png b/front/public/images/large/BuildCraft_Core/mapLocation/0.png deleted file mode 100644 index 34851e9aab..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/mapLocation/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/markerBlock/0.png b/front/public/images/large/BuildCraft_Core/markerBlock/0.png deleted file mode 100644 index efaf6279a8..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/markerBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/paintbrush/0.png b/front/public/images/large/BuildCraft_Core/paintbrush/0.png deleted file mode 100644 index 817727aebe..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/paintbrush/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/pathMarkerBlock/0.png b/front/public/images/large/BuildCraft_Core/pathMarkerBlock/0.png deleted file mode 100644 index f967a9b662..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/pathMarkerBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/stoneGearItem/0.png b/front/public/images/large/BuildCraft_Core/stoneGearItem/0.png deleted file mode 100644 index 49aeaf55a6..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/stoneGearItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/woodenGearItem/0.png b/front/public/images/large/BuildCraft_Core/woodenGearItem/0.png deleted file mode 100644 index 010ff6843b..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/woodenGearItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Core/wrenchItem/0.png b/front/public/images/large/BuildCraft_Core/wrenchItem/0.png deleted file mode 100644 index 2cb7cd0efb..0000000000 Binary files a/front/public/images/large/BuildCraft_Core/wrenchItem/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Energy/blockFuel/0.png b/front/public/images/large/BuildCraft_Energy/blockFuel/0.png deleted file mode 100644 index ff10775407..0000000000 Binary files a/front/public/images/large/BuildCraft_Energy/blockFuel/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Energy/blockOil/0.png b/front/public/images/large/BuildCraft_Energy/blockOil/0.png deleted file mode 100644 index 8006eeb5f3..0000000000 Binary files a/front/public/images/large/BuildCraft_Energy/blockOil/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Energy/blockRedPlasma/0.png b/front/public/images/large/BuildCraft_Energy/blockRedPlasma/0.png deleted file mode 100644 index 6f9dd08360..0000000000 Binary files a/front/public/images/large/BuildCraft_Energy/blockRedPlasma/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Energy/bucketFuel/0.png b/front/public/images/large/BuildCraft_Energy/bucketFuel/0.png deleted file mode 100644 index 3d92cdbdbc..0000000000 Binary files a/front/public/images/large/BuildCraft_Energy/bucketFuel/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Energy/bucketOil/0.png b/front/public/images/large/BuildCraft_Energy/bucketOil/0.png deleted file mode 100644 index 7d0773d5a5..0000000000 Binary files a/front/public/images/large/BuildCraft_Energy/bucketOil/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/autoWorkbenchBlock/0.png b/front/public/images/large/BuildCraft_Factory/autoWorkbenchBlock/0.png deleted file mode 100644 index 2d41cf84d7..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/autoWorkbenchBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/blockHopper/0.png b/front/public/images/large/BuildCraft_Factory/blockHopper/0.png deleted file mode 100644 index 3aff764f8e..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/blockHopper/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/floodGateBlock/0.png b/front/public/images/large/BuildCraft_Factory/floodGateBlock/0.png deleted file mode 100644 index b7947f75ea..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/floodGateBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/miningWellBlock/0.png b/front/public/images/large/BuildCraft_Factory/miningWellBlock/0.png deleted file mode 100644 index 398c864939..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/miningWellBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/plainPipeBlock/0.png b/front/public/images/large/BuildCraft_Factory/plainPipeBlock/0.png deleted file mode 100644 index 25028d4c60..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/plainPipeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/pumpBlock/0.png b/front/public/images/large/BuildCraft_Factory/pumpBlock/0.png deleted file mode 100644 index 96d4b6365a..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/pumpBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/refineryBlock/0.png b/front/public/images/large/BuildCraft_Factory/refineryBlock/0.png deleted file mode 100644 index 710ac1825d..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/refineryBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Factory/tankBlock/0.png b/front/public/images/large/BuildCraft_Factory/tankBlock/0.png deleted file mode 100644 index 1acf6b8587..0000000000 Binary files a/front/public/images/large/BuildCraft_Factory/tankBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Robotics/redstone_board/0.png b/front/public/images/large/BuildCraft_Robotics/redstone_board/0.png deleted file mode 100644 index 44a984b73c..0000000000 Binary files a/front/public/images/large/BuildCraft_Robotics/redstone_board/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Robotics/requester/0.png b/front/public/images/large/BuildCraft_Robotics/requester/0.png deleted file mode 100644 index 4e26457c88..0000000000 Binary files a/front/public/images/large/BuildCraft_Robotics/requester/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Robotics/robot/0.png b/front/public/images/large/BuildCraft_Robotics/robot/0.png deleted file mode 100644 index a0adb94bd7..0000000000 Binary files a/front/public/images/large/BuildCraft_Robotics/robot/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Robotics/robotStation/0.png b/front/public/images/large/BuildCraft_Robotics/robotStation/0.png deleted file mode 100644 index f30da97630..0000000000 Binary files a/front/public/images/large/BuildCraft_Robotics/robotStation/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Robotics/zonePlan/0.png b/front/public/images/large/BuildCraft_Robotics/zonePlan/0.png deleted file mode 100644 index 48551416ab..0000000000 Binary files a/front/public/images/large/BuildCraft_Robotics/zonePlan/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/laserBlock/0.png b/front/public/images/large/BuildCraft_Silicon/laserBlock/0.png deleted file mode 100644 index c7c9e4573d..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/laserBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/0.png b/front/public/images/large/BuildCraft_Silicon/laserTableBlock/0.png deleted file mode 100644 index 6364dd5301..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/1.png b/front/public/images/large/BuildCraft_Silicon/laserTableBlock/1.png deleted file mode 100644 index f5246169d8..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/1.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/2.png b/front/public/images/large/BuildCraft_Silicon/laserTableBlock/2.png deleted file mode 100644 index acb82607d8..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/2.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/3.png b/front/public/images/large/BuildCraft_Silicon/laserTableBlock/3.png deleted file mode 100644 index f6a4a93c4a..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/3.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/4.png b/front/public/images/large/BuildCraft_Silicon/laserTableBlock/4.png deleted file mode 100644 index 41c86a5736..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/4.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/5.png b/front/public/images/large/BuildCraft_Silicon/laserTableBlock/5.png deleted file mode 100644 index c2d194818a..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/laserTableBlock/5.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/package/0.png b/front/public/images/large/BuildCraft_Silicon/package/0.png deleted file mode 100644 index 558f3b4ce1..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/package/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/packagerBlock/0.png b/front/public/images/large/BuildCraft_Silicon/packagerBlock/0.png deleted file mode 100644 index 7857967fa8..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/packagerBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/0.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/0.png deleted file mode 100644 index 930466ba43..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/1.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/1.png deleted file mode 100644 index b6f1bc6eb2..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/1.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/2.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/2.png deleted file mode 100644 index b1fe6952d6..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/2.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/3.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/3.png deleted file mode 100644 index 20196833ee..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/3.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/4.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/4.png deleted file mode 100644 index c8be298f40..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/4.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/5.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/5.png deleted file mode 100644 index d79cfdfdc5..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/5.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/6.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/6.png deleted file mode 100644 index 930466ba43..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/6.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/7.png b/front/public/images/large/BuildCraft_Silicon/redstoneChipset/7.png deleted file mode 100644 index b4544c74ad..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneChipset/7.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Silicon/redstoneCrystal/0.png b/front/public/images/large/BuildCraft_Silicon/redstoneCrystal/0.png deleted file mode 100644 index ccfc359af8..0000000000 Binary files a/front/public/images/large/BuildCraft_Silicon/redstoneCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/filteredBufferBlock/0.png b/front/public/images/large/BuildCraft_Transport/filteredBufferBlock/0.png deleted file mode 100644 index 97261e7841..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/filteredBufferBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/gateCopier/0.png b/front/public/images/large/BuildCraft_Transport/gateCopier/0.png deleted file mode 100644 index 4a15b918a0..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/gateCopier/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsclay/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsclay/0.png deleted file mode 100644 index 8fad202554..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsclay/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidscobblestone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidscobblestone/0.png deleted file mode 100644 index 963e37a1aa..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidscobblestone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsdiamond/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsdiamond/0.png deleted file mode 100644 index b973d7934e..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsdiamond/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsemerald/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsemerald/0.png deleted file mode 100644 index 46a8091a88..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsemerald/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsgold/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsgold/0.png deleted file mode 100644 index a1d95b3ded..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsgold/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsiron/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsiron/0.png deleted file mode 100644 index afca25b5da..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsiron/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsquartz/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsquartz/0.png deleted file mode 100644 index 9f1cf1af9b..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsquartz/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidssandstone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidssandstone/0.png deleted file mode 100644 index 9312be7918..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidssandstone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsstone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsstone/0.png deleted file mode 100644 index 68fc449054..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsstone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsvoid/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsvoid/0.png deleted file mode 100644 index c24b2195b0..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidsvoid/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidswood/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidswood/0.png deleted file mode 100644 index 449b3f5d8b..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipefluidswood/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsclay/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsclay/0.png deleted file mode 100644 index 3e8bdbbe79..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsclay/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemscobblestone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemscobblestone/0.png deleted file mode 100644 index 4a4524cd08..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemscobblestone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdaizuli/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdaizuli/0.png deleted file mode 100644 index 44cc7d65f4..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdaizuli/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdiamond/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdiamond/0.png deleted file mode 100644 index 5f22135db4..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdiamond/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemerald/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemerald/0.png deleted file mode 100644 index b8bffb643a..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemerald/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemzuli/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemzuli/0.png deleted file mode 100644 index 0d5935a1db..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemzuli/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsgold/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsgold/0.png deleted file mode 100644 index 4f4561eb50..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsgold/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsiron/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsiron/0.png deleted file mode 100644 index 4f06b90508..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsiron/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemslapis/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemslapis/0.png deleted file mode 100644 index 15c372de82..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemslapis/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsobsidian/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsobsidian/0.png deleted file mode 100644 index 5c249c1b7e..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsobsidian/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsquartz/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsquartz/0.png deleted file mode 100644 index 9bb56b22c1..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsquartz/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemssandstone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemssandstone/0.png deleted file mode 100644 index e1a204b8c5..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemssandstone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstone/0.png deleted file mode 100644 index ea25c0b99c..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstripes/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstripes/0.png deleted file mode 100644 index 49dccbb002..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstripes/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsvoid/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsvoid/0.png deleted file mode 100644 index b19544b115..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemsvoid/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemswood/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemswood/0.png deleted file mode 100644 index 4f12ec9f61..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipeitemswood/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowercobblestone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowercobblestone/0.png deleted file mode 100644 index f7ce181744..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowercobblestone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerdiamond/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerdiamond/0.png deleted file mode 100644 index 8cd9e020bc..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerdiamond/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepoweremerald/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepoweremerald/0.png deleted file mode 100644 index db72088f3d..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepoweremerald/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowergold/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowergold/0.png deleted file mode 100644 index daef24d5b8..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowergold/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepoweriron/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepoweriron/0.png deleted file mode 100644 index cfef0f62e8..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepoweriron/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerquartz/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerquartz/0.png deleted file mode 100644 index b97fb24030..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerquartz/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowersandstone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowersandstone/0.png deleted file mode 100644 index 4f6e3b2d65..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowersandstone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerstone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerstone/0.png deleted file mode 100644 index d00a6b62fc..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerstone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerwood/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerwood/0.png deleted file mode 100644 index 6ffd660d1c..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipepowerwood/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipestructurecobblestone/0.png b/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipestructurecobblestone/0.png deleted file mode 100644 index c3114ffbe0..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/item.buildcraftPipe.pipestructurecobblestone/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeBlock/0.png b/front/public/images/large/BuildCraft_Transport/pipeBlock/0.png deleted file mode 100644 index 8cbf758aff..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeFacade/0.png b/front/public/images/large/BuildCraft_Transport/pipeFacade/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeFacade/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeGate/0.png b/front/public/images/large/BuildCraft_Transport/pipeGate/0.png deleted file mode 100644 index 742668eb99..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeGate/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/0.png b/front/public/images/large/BuildCraft_Transport/pipeLens/0.png deleted file mode 100644 index 3005f888c6..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/1.png b/front/public/images/large/BuildCraft_Transport/pipeLens/1.png deleted file mode 100644 index cb3048c4e1..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/1.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/10.png b/front/public/images/large/BuildCraft_Transport/pipeLens/10.png deleted file mode 100644 index aec4c1a418..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/10.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/11.png b/front/public/images/large/BuildCraft_Transport/pipeLens/11.png deleted file mode 100644 index 44b8928ea3..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/11.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/12.png b/front/public/images/large/BuildCraft_Transport/pipeLens/12.png deleted file mode 100644 index 5ccfa5c1d1..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/12.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/13.png b/front/public/images/large/BuildCraft_Transport/pipeLens/13.png deleted file mode 100644 index 5f624df9ff..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/13.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/14.png b/front/public/images/large/BuildCraft_Transport/pipeLens/14.png deleted file mode 100644 index 1d323fef29..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/14.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/15.png b/front/public/images/large/BuildCraft_Transport/pipeLens/15.png deleted file mode 100644 index d4b77f6151..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/15.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/16.png b/front/public/images/large/BuildCraft_Transport/pipeLens/16.png deleted file mode 100644 index 9b814618a8..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/16.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/17.png b/front/public/images/large/BuildCraft_Transport/pipeLens/17.png deleted file mode 100644 index 7d066afc81..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/17.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/18.png b/front/public/images/large/BuildCraft_Transport/pipeLens/18.png deleted file mode 100644 index 4a15d43e1e..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/18.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/19.png b/front/public/images/large/BuildCraft_Transport/pipeLens/19.png deleted file mode 100644 index c94254fac6..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/19.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/2.png b/front/public/images/large/BuildCraft_Transport/pipeLens/2.png deleted file mode 100644 index 921f5fe068..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/2.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/20.png b/front/public/images/large/BuildCraft_Transport/pipeLens/20.png deleted file mode 100644 index cb00df5948..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/20.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/21.png b/front/public/images/large/BuildCraft_Transport/pipeLens/21.png deleted file mode 100644 index e9a2d05b97..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/21.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/22.png b/front/public/images/large/BuildCraft_Transport/pipeLens/22.png deleted file mode 100644 index cd50c3bbe2..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/22.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/23.png b/front/public/images/large/BuildCraft_Transport/pipeLens/23.png deleted file mode 100644 index d6fa277d44..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/23.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/24.png b/front/public/images/large/BuildCraft_Transport/pipeLens/24.png deleted file mode 100644 index 010f7d6701..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/24.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/25.png b/front/public/images/large/BuildCraft_Transport/pipeLens/25.png deleted file mode 100644 index 2adcacd576..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/25.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/26.png b/front/public/images/large/BuildCraft_Transport/pipeLens/26.png deleted file mode 100644 index 9d7a1d2135..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/26.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/27.png b/front/public/images/large/BuildCraft_Transport/pipeLens/27.png deleted file mode 100644 index 09a285a9a8..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/27.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/28.png b/front/public/images/large/BuildCraft_Transport/pipeLens/28.png deleted file mode 100644 index 19947afda9..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/28.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/29.png b/front/public/images/large/BuildCraft_Transport/pipeLens/29.png deleted file mode 100644 index 3ef6a6c510..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/29.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/3.png b/front/public/images/large/BuildCraft_Transport/pipeLens/3.png deleted file mode 100644 index f5846510f7..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/3.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/30.png b/front/public/images/large/BuildCraft_Transport/pipeLens/30.png deleted file mode 100644 index b8ef50521e..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/30.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/31.png b/front/public/images/large/BuildCraft_Transport/pipeLens/31.png deleted file mode 100644 index 36145cbf29..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/31.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/32.png b/front/public/images/large/BuildCraft_Transport/pipeLens/32.png deleted file mode 100644 index 3519c54253..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/32.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/33.png b/front/public/images/large/BuildCraft_Transport/pipeLens/33.png deleted file mode 100644 index 844dff6e4d..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/33.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/4.png b/front/public/images/large/BuildCraft_Transport/pipeLens/4.png deleted file mode 100644 index 1204305bd5..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/4.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/5.png b/front/public/images/large/BuildCraft_Transport/pipeLens/5.png deleted file mode 100644 index 91d2102b3e..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/5.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/6.png b/front/public/images/large/BuildCraft_Transport/pipeLens/6.png deleted file mode 100644 index ab71cd443f..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/6.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/7.png b/front/public/images/large/BuildCraft_Transport/pipeLens/7.png deleted file mode 100644 index 780e72fac6..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/7.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/8.png b/front/public/images/large/BuildCraft_Transport/pipeLens/8.png deleted file mode 100644 index 325094effe..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/8.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeLens/9.png b/front/public/images/large/BuildCraft_Transport/pipeLens/9.png deleted file mode 100644 index 6359ddc4d0..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeLens/9.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipePlug/0.png b/front/public/images/large/BuildCraft_Transport/pipePlug/0.png deleted file mode 100644 index 36adff2d21..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipePlug/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipePowerAdapter/0.png b/front/public/images/large/BuildCraft_Transport/pipePowerAdapter/0.png deleted file mode 100644 index 6b6f92ad52..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipePowerAdapter/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeWaterproof/0.png b/front/public/images/large/BuildCraft_Transport/pipeWaterproof/0.png deleted file mode 100644 index 0ea4eb7755..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeWaterproof/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeWire/0.png b/front/public/images/large/BuildCraft_Transport/pipeWire/0.png deleted file mode 100644 index 1c961db3ba..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeWire/0.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeWire/1.png b/front/public/images/large/BuildCraft_Transport/pipeWire/1.png deleted file mode 100644 index f57ba256bc..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeWire/1.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeWire/2.png b/front/public/images/large/BuildCraft_Transport/pipeWire/2.png deleted file mode 100644 index 68b79bdbd9..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeWire/2.png and /dev/null differ diff --git a/front/public/images/large/BuildCraft_Transport/pipeWire/3.png b/front/public/images/large/BuildCraft_Transport/pipeWire/3.png deleted file mode 100644 index e66eea9992..0000000000 Binary files a/front/public/images/large/BuildCraft_Transport/pipeWire/3.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersBarrier/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersBarrier/0.png deleted file mode 100644 index 325d1533c8..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersBarrier/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersBed/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersBed/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersBed/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersBlock/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersBlock/0.png deleted file mode 100644 index 84bcea2838..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersBlock/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersButton/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersButton/0.png deleted file mode 100644 index 63f8e74afb..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersButton/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersCollapsibleBlock/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersCollapsibleBlock/0.png deleted file mode 100644 index e3eb7f9f8a..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersCollapsibleBlock/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersDaylightSensor/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersDaylightSensor/0.png deleted file mode 100644 index 8369cd7cfa..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersDaylightSensor/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersDoor/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersDoor/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersDoor/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersFlowerPot/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersFlowerPot/0.png deleted file mode 100644 index ff5bbf6dc3..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersFlowerPot/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersGarageDoor/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersGarageDoor/0.png deleted file mode 100644 index 025fc9a46e..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersGarageDoor/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersGate/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersGate/0.png deleted file mode 100644 index 1d4e89fac6..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersGate/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersHatch/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersHatch/0.png deleted file mode 100644 index 258214fad4..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersHatch/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersLadder/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersLadder/0.png deleted file mode 100644 index 18b6272141..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersLadder/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersLever/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersLever/0.png deleted file mode 100644 index 6d7292ddee..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersLever/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersPressurePlate/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersPressurePlate/0.png deleted file mode 100644 index 96851d2aae..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersPressurePlate/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersSafe/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersSafe/0.png deleted file mode 100644 index 0c6e4b95fd..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersSafe/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/0.png deleted file mode 100644 index 899fe303f2..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/1.png b/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/1.png deleted file mode 100644 index 74a4d9fb8c..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/1.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/2.png b/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/2.png deleted file mode 100644 index e24675f9bb..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/2.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/3.png b/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/3.png deleted file mode 100644 index 6ec101b550..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/3.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/4.png b/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/4.png deleted file mode 100644 index a313b62247..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersSlope/4.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersStairs/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersStairs/0.png deleted file mode 100644 index 855f2f5892..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersStairs/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/blockCarpentersTorch/0.png b/front/public/images/large/CarpentersBlocks/blockCarpentersTorch/0.png deleted file mode 100644 index cbe6e95004..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/blockCarpentersTorch/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/itemCarpentersBed/0.png b/front/public/images/large/CarpentersBlocks/itemCarpentersBed/0.png deleted file mode 100644 index 7c0337448b..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/itemCarpentersBed/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/itemCarpentersChisel/0.png b/front/public/images/large/CarpentersBlocks/itemCarpentersChisel/0.png deleted file mode 100644 index de98543962..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/itemCarpentersChisel/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/itemCarpentersDoor/0.png b/front/public/images/large/CarpentersBlocks/itemCarpentersDoor/0.png deleted file mode 100644 index 7cbaef590a..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/itemCarpentersDoor/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/itemCarpentersHammer/0.png b/front/public/images/large/CarpentersBlocks/itemCarpentersHammer/0.png deleted file mode 100644 index d1d4357521..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/itemCarpentersHammer/0.png and /dev/null differ diff --git a/front/public/images/large/CarpentersBlocks/itemCarpentersTile/0.png b/front/public/images/large/CarpentersBlocks/itemCarpentersTile/0.png deleted file mode 100644 index a7054eb8ce..0000000000 Binary files a/front/public/images/large/CarpentersBlocks/itemCarpentersTile/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/adminSpawnEgg/0.png b/front/public/images/large/DraconicEvolution/adminSpawnEgg/0.png deleted file mode 100644 index a9fe5d478a..0000000000 Binary files a/front/public/images/large/DraconicEvolution/adminSpawnEgg/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/awakenedCore/0.png b/front/public/images/large/DraconicEvolution/awakenedCore/0.png deleted file mode 100644 index 812ef54e6b..0000000000 Binary files a/front/public/images/large/DraconicEvolution/awakenedCore/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/cKeyStone/0.png b/front/public/images/large/DraconicEvolution/cKeyStone/0.png deleted file mode 100644 index 83758f68aa..0000000000 Binary files a/front/public/images/large/DraconicEvolution/cKeyStone/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/cKeyStone/1.png b/front/public/images/large/DraconicEvolution/cKeyStone/1.png deleted file mode 100644 index 83758f68aa..0000000000 Binary files a/front/public/images/large/DraconicEvolution/cKeyStone/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/cKeyStone/2.png b/front/public/images/large/DraconicEvolution/cKeyStone/2.png deleted file mode 100644 index 83758f68aa..0000000000 Binary files a/front/public/images/large/DraconicEvolution/cKeyStone/2.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/cKeyStone/3.png b/front/public/images/large/DraconicEvolution/cKeyStone/3.png deleted file mode 100644 index 83758f68aa..0000000000 Binary files a/front/public/images/large/DraconicEvolution/cKeyStone/3.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/chaosCrystal/0.png b/front/public/images/large/DraconicEvolution/chaosCrystal/0.png deleted file mode 100644 index 2bfad8703a..0000000000 Binary files a/front/public/images/large/DraconicEvolution/chaosCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/chaosFragment/0.png b/front/public/images/large/DraconicEvolution/chaosFragment/0.png deleted file mode 100644 index 2dec0624e1..0000000000 Binary files a/front/public/images/large/DraconicEvolution/chaosFragment/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/chaosFragment/1.png b/front/public/images/large/DraconicEvolution/chaosFragment/1.png deleted file mode 100644 index 98b2a59ba7..0000000000 Binary files a/front/public/images/large/DraconicEvolution/chaosFragment/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/chaosFragment/2.png b/front/public/images/large/DraconicEvolution/chaosFragment/2.png deleted file mode 100644 index e0c9491b25..0000000000 Binary files a/front/public/images/large/DraconicEvolution/chaosFragment/2.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/chaosShard/0.png b/front/public/images/large/DraconicEvolution/chaosShard/0.png deleted file mode 100644 index 2bfad8703a..0000000000 Binary files a/front/public/images/large/DraconicEvolution/chaosShard/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/chaosShardAtmos/0.png b/front/public/images/large/DraconicEvolution/chaosShardAtmos/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/DraconicEvolution/chaosShardAtmos/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/chaoticCore/0.png b/front/public/images/large/DraconicEvolution/chaoticCore/0.png deleted file mode 100644 index 3422fc152e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/chaoticCore/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/creativeStructureSpawner/0.png b/front/public/images/large/DraconicEvolution/creativeStructureSpawner/0.png deleted file mode 100644 index a249751dc1..0000000000 Binary files a/front/public/images/large/DraconicEvolution/creativeStructureSpawner/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/creativeStructureSpawner/1.png b/front/public/images/large/DraconicEvolution/creativeStructureSpawner/1.png deleted file mode 100644 index a249751dc1..0000000000 Binary files a/front/public/images/large/DraconicEvolution/creativeStructureSpawner/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/customSpawner/0.png b/front/public/images/large/DraconicEvolution/customSpawner/0.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/DraconicEvolution/customSpawner/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/dezilsMarshmallow/0.png b/front/public/images/large/DraconicEvolution/dezilsMarshmallow/0.png deleted file mode 100644 index 446f57f887..0000000000 Binary files a/front/public/images/large/DraconicEvolution/dezilsMarshmallow/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/dislocatorReceptacle/0.png b/front/public/images/large/DraconicEvolution/dislocatorReceptacle/0.png deleted file mode 100644 index 3f9ac7f866..0000000000 Binary files a/front/public/images/large/DraconicEvolution/dislocatorReceptacle/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/dissEnchanter/0.png b/front/public/images/large/DraconicEvolution/dissEnchanter/0.png deleted file mode 100644 index f35476a3bc..0000000000 Binary files a/front/public/images/large/DraconicEvolution/dissEnchanter/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicAxe/0.png b/front/public/images/large/DraconicEvolution/draconicAxe/0.png deleted file mode 100644 index da007cb037..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicAxe/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicBlock/0.png b/front/public/images/large/DraconicEvolution/draconicBlock/0.png deleted file mode 100644 index b67d76af7b..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicBlock/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicBoots/0.png b/front/public/images/large/DraconicEvolution/draconicBoots/0.png deleted file mode 100644 index 5505eb873e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicBoots/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicBow/0.png b/front/public/images/large/DraconicEvolution/draconicBow/0.png deleted file mode 100644 index e58b9e69d5..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicBow/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicChest/0.png b/front/public/images/large/DraconicEvolution/draconicChest/0.png deleted file mode 100644 index 9e20e1d134..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicChest/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicCore/0.png b/front/public/images/large/DraconicEvolution/draconicCore/0.png deleted file mode 100644 index af1a9d2111..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicCore/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicDistructionStaff/0.png b/front/public/images/large/DraconicEvolution/draconicDistructionStaff/0.png deleted file mode 100644 index 30b01d75ab..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicDistructionStaff/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicHelm/0.png b/front/public/images/large/DraconicEvolution/draconicHelm/0.png deleted file mode 100644 index 228c5e3dd4..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicHelm/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicHoe/0.png b/front/public/images/large/DraconicEvolution/draconicHoe/0.png deleted file mode 100644 index 9471a9c2b6..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicHoe/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicIngot/0.png b/front/public/images/large/DraconicEvolution/draconicIngot/0.png deleted file mode 100644 index d323049205..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicIngot/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicLeggs/0.png b/front/public/images/large/DraconicEvolution/draconicLeggs/0.png deleted file mode 100644 index 17ce57b09c..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicLeggs/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicPickaxe/0.png b/front/public/images/large/DraconicEvolution/draconicPickaxe/0.png deleted file mode 100644 index f34c6238f7..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicShovel/0.png b/front/public/images/large/DraconicEvolution/draconicShovel/0.png deleted file mode 100644 index 0e1fe6124a..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicShovel/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconicSword/0.png b/front/public/images/large/DraconicEvolution/draconicSword/0.png deleted file mode 100644 index abfb6f0e21..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconicSword/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconium/0.png b/front/public/images/large/DraconicEvolution/draconium/0.png deleted file mode 100644 index a4161a7cd0..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconium/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconium/1.png b/front/public/images/large/DraconicEvolution/draconium/1.png deleted file mode 100644 index c4dcf1e54d..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconium/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconium/2.png b/front/public/images/large/DraconicEvolution/draconium/2.png deleted file mode 100644 index f4eb7ed0b1..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconium/2.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumBlend/0.png b/front/public/images/large/DraconicEvolution/draconiumBlend/0.png deleted file mode 100644 index ab37d3fcaf..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumBlend/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumChest/0.png b/front/public/images/large/DraconicEvolution/draconiumChest/0.png deleted file mode 100644 index 4c1ee3945c..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumChest/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumDust/0.png b/front/public/images/large/DraconicEvolution/draconiumDust/0.png deleted file mode 100644 index 3250fbaf78..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumDust/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumEnergyCore/0.png b/front/public/images/large/DraconicEvolution/draconiumEnergyCore/0.png deleted file mode 100644 index 8b65887814..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumEnergyCore/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumEnergyCore/1.png b/front/public/images/large/DraconicEvolution/draconiumEnergyCore/1.png deleted file mode 100644 index f1900d7854..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumEnergyCore/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumFluxCapacitor/0.png b/front/public/images/large/DraconicEvolution/draconiumFluxCapacitor/0.png deleted file mode 100644 index 7bb0111e3e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumFluxCapacitor/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumFluxCapacitor/1.png b/front/public/images/large/DraconicEvolution/draconiumFluxCapacitor/1.png deleted file mode 100644 index 77423a47ae..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumFluxCapacitor/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumIngot/0.png b/front/public/images/large/DraconicEvolution/draconiumIngot/0.png deleted file mode 100644 index 0772a7ba63..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumIngot/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/draconiumOre/0.png b/front/public/images/large/DraconicEvolution/draconiumOre/0.png deleted file mode 100644 index 477f29d268..0000000000 Binary files a/front/public/images/large/DraconicEvolution/draconiumOre/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/dragonHeart/0.png b/front/public/images/large/DraconicEvolution/dragonHeart/0.png deleted file mode 100644 index 7bbd79d0e4..0000000000 Binary files a/front/public/images/large/DraconicEvolution/dragonHeart/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/earth/0.png b/front/public/images/large/DraconicEvolution/earth/0.png deleted file mode 100644 index dd974b8a8e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/earth/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/enderArrow/0.png b/front/public/images/large/DraconicEvolution/enderArrow/0.png deleted file mode 100644 index 8ebac18962..0000000000 Binary files a/front/public/images/large/DraconicEvolution/enderArrow/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyCrystal/0.png b/front/public/images/large/DraconicEvolution/energyCrystal/0.png deleted file mode 100644 index eb98a029cd..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyCrystal/1.png b/front/public/images/large/DraconicEvolution/energyCrystal/1.png deleted file mode 100644 index 764b18838c..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyCrystal/2.png b/front/public/images/large/DraconicEvolution/energyCrystal/2.png deleted file mode 100644 index 188d26ab92..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyCrystal/2.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyCrystal/3.png b/front/public/images/large/DraconicEvolution/energyCrystal/3.png deleted file mode 100644 index d06687e41f..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyCrystal/3.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyCrystal/4.png b/front/public/images/large/DraconicEvolution/energyCrystal/4.png deleted file mode 100644 index eb98a029cd..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyCrystal/4.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyCrystal/5.png b/front/public/images/large/DraconicEvolution/energyCrystal/5.png deleted file mode 100644 index 764b18838c..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyCrystal/5.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyInfuser/0.png b/front/public/images/large/DraconicEvolution/energyInfuser/0.png deleted file mode 100644 index 880067dacf..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyInfuser/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyPylon/0.png b/front/public/images/large/DraconicEvolution/energyPylon/0.png deleted file mode 100644 index 4ce2d4601e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyPylon/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/energyStorageCore/0.png b/front/public/images/large/DraconicEvolution/energyStorageCore/0.png deleted file mode 100644 index 896a84d9a0..0000000000 Binary files a/front/public/images/large/DraconicEvolution/energyStorageCore/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/flowGate/0.png b/front/public/images/large/DraconicEvolution/flowGate/0.png deleted file mode 100644 index ebefeee9f5..0000000000 Binary files a/front/public/images/large/DraconicEvolution/flowGate/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/flowGate/6.png b/front/public/images/large/DraconicEvolution/flowGate/6.png deleted file mode 100644 index 452f241c29..0000000000 Binary files a/front/public/images/large/DraconicEvolution/flowGate/6.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/generator/3.png b/front/public/images/large/DraconicEvolution/generator/3.png deleted file mode 100644 index 831104a84d..0000000000 Binary files a/front/public/images/large/DraconicEvolution/generator/3.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/grinder/3.png b/front/public/images/large/DraconicEvolution/grinder/3.png deleted file mode 100644 index e728d5ef90..0000000000 Binary files a/front/public/images/large/DraconicEvolution/grinder/3.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/infoTablet/0.png b/front/public/images/large/DraconicEvolution/infoTablet/0.png deleted file mode 100644 index c3bf85e186..0000000000 Binary files a/front/public/images/large/DraconicEvolution/infoTablet/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/infusedObsidian/0.png b/front/public/images/large/DraconicEvolution/infusedObsidian/0.png deleted file mode 100644 index 9dc7bae988..0000000000 Binary files a/front/public/images/large/DraconicEvolution/infusedObsidian/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/invisibleMultiblock/0.png b/front/public/images/large/DraconicEvolution/invisibleMultiblock/0.png deleted file mode 100644 index feb21442f8..0000000000 Binary files a/front/public/images/large/DraconicEvolution/invisibleMultiblock/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/key/0.png b/front/public/images/large/DraconicEvolution/key/0.png deleted file mode 100644 index aabe067c86..0000000000 Binary files a/front/public/images/large/DraconicEvolution/key/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/key/1.png b/front/public/images/large/DraconicEvolution/key/1.png deleted file mode 100644 index aabe067c86..0000000000 Binary files a/front/public/images/large/DraconicEvolution/key/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/longRangeDislocator/1.png b/front/public/images/large/DraconicEvolution/longRangeDislocator/1.png deleted file mode 100644 index 5aba39e2fb..0000000000 Binary files a/front/public/images/large/DraconicEvolution/longRangeDislocator/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/magnet/0.png b/front/public/images/large/DraconicEvolution/magnet/0.png deleted file mode 100644 index 484fb1cc7d..0000000000 Binary files a/front/public/images/large/DraconicEvolution/magnet/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/magnet/1.png b/front/public/images/large/DraconicEvolution/magnet/1.png deleted file mode 100644 index 4e7c42df42..0000000000 Binary files a/front/public/images/large/DraconicEvolution/magnet/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/mobSoul/0.png b/front/public/images/large/DraconicEvolution/mobSoul/0.png deleted file mode 100644 index 950503f541..0000000000 Binary files a/front/public/images/large/DraconicEvolution/mobSoul/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/nugget/0.png b/front/public/images/large/DraconicEvolution/nugget/0.png deleted file mode 100644 index 4de0ace8bc..0000000000 Binary files a/front/public/images/large/DraconicEvolution/nugget/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/nugget/1.png b/front/public/images/large/DraconicEvolution/nugget/1.png deleted file mode 100644 index 7ef43c657a..0000000000 Binary files a/front/public/images/large/DraconicEvolution/nugget/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/particleGenerator/0.png b/front/public/images/large/DraconicEvolution/particleGenerator/0.png deleted file mode 100644 index 3fe300da4f..0000000000 Binary files a/front/public/images/large/DraconicEvolution/particleGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/placedItem/0.png b/front/public/images/large/DraconicEvolution/placedItem/0.png deleted file mode 100644 index 03a2b95ae1..0000000000 Binary files a/front/public/images/large/DraconicEvolution/placedItem/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/playerDetector/0.png b/front/public/images/large/DraconicEvolution/playerDetector/0.png deleted file mode 100644 index 8eb7dab3af..0000000000 Binary files a/front/public/images/large/DraconicEvolution/playerDetector/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/playerDetectorAdvanced/0.png b/front/public/images/large/DraconicEvolution/playerDetectorAdvanced/0.png deleted file mode 100644 index 42d0bd017e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/playerDetectorAdvanced/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/portal/0.png b/front/public/images/large/DraconicEvolution/portal/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/DraconicEvolution/portal/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/potentiometer/0.png b/front/public/images/large/DraconicEvolution/potentiometer/0.png deleted file mode 100644 index 3025721453..0000000000 Binary files a/front/public/images/large/DraconicEvolution/potentiometer/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/rainSensor/0.png b/front/public/images/large/DraconicEvolution/rainSensor/0.png deleted file mode 100644 index 8179c71b65..0000000000 Binary files a/front/public/images/large/DraconicEvolution/rainSensor/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorCore/0.png b/front/public/images/large/DraconicEvolution/reactorCore/0.png deleted file mode 100644 index e5f685ea79..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorCore/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorCraftingPart/0.png b/front/public/images/large/DraconicEvolution/reactorCraftingPart/0.png deleted file mode 100644 index c65d1843d8..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorCraftingPart/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorCraftingPart/1.png b/front/public/images/large/DraconicEvolution/reactorCraftingPart/1.png deleted file mode 100644 index b6c7fee7a9..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorCraftingPart/1.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorCraftingPart/2.png b/front/public/images/large/DraconicEvolution/reactorCraftingPart/2.png deleted file mode 100644 index 77a1f04fb8..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorCraftingPart/2.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorCraftingPart/3.png b/front/public/images/large/DraconicEvolution/reactorCraftingPart/3.png deleted file mode 100644 index 44c5dda46b..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorCraftingPart/3.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorCraftingPart/4.png b/front/public/images/large/DraconicEvolution/reactorCraftingPart/4.png deleted file mode 100644 index 26db31489f..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorCraftingPart/4.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorEnergyInjector/0.png b/front/public/images/large/DraconicEvolution/reactorEnergyInjector/0.png deleted file mode 100644 index ec4bce2ba6..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorEnergyInjector/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/reactorStabilizer/0.png b/front/public/images/large/DraconicEvolution/reactorStabilizer/0.png deleted file mode 100644 index 7b86306553..0000000000 Binary files a/front/public/images/large/DraconicEvolution/reactorStabilizer/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/safetyFlame/0.png b/front/public/images/large/DraconicEvolution/safetyFlame/0.png deleted file mode 100644 index 8f11b3468d..0000000000 Binary files a/front/public/images/large/DraconicEvolution/safetyFlame/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/safetyMatch/0.png b/front/public/images/large/DraconicEvolution/safetyMatch/0.png deleted file mode 100644 index 60088b0f8f..0000000000 Binary files a/front/public/images/large/DraconicEvolution/safetyMatch/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/safetyMatch/1000.png b/front/public/images/large/DraconicEvolution/safetyMatch/1000.png deleted file mode 100644 index 6f8c3dbfde..0000000000 Binary files a/front/public/images/large/DraconicEvolution/safetyMatch/1000.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/sunDial/0.png b/front/public/images/large/DraconicEvolution/sunDial/0.png deleted file mode 100644 index 48796e1370..0000000000 Binary files a/front/public/images/large/DraconicEvolution/sunDial/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/sunFocus/0.png b/front/public/images/large/DraconicEvolution/sunFocus/0.png deleted file mode 100644 index 1a87188a12..0000000000 Binary files a/front/public/images/large/DraconicEvolution/sunFocus/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/tclogo/0.png b/front/public/images/large/DraconicEvolution/tclogo/0.png deleted file mode 100644 index 03625dd00b..0000000000 Binary files a/front/public/images/large/DraconicEvolution/tclogo/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/teleporterMKI/0.png b/front/public/images/large/DraconicEvolution/teleporterMKI/0.png deleted file mode 100644 index c9b9c1f004..0000000000 Binary files a/front/public/images/large/DraconicEvolution/teleporterMKI/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/teleporterMKII/0.png b/front/public/images/large/DraconicEvolution/teleporterMKII/0.png deleted file mode 100644 index 00de88fe35..0000000000 Binary files a/front/public/images/large/DraconicEvolution/teleporterMKII/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/teleporterStand/0.png b/front/public/images/large/DraconicEvolution/teleporterStand/0.png deleted file mode 100644 index 0498a44bae..0000000000 Binary files a/front/public/images/large/DraconicEvolution/teleporterStand/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/upgradeModifier/0.png b/front/public/images/large/DraconicEvolution/upgradeModifier/0.png deleted file mode 100644 index bf75d4bef7..0000000000 Binary files a/front/public/images/large/DraconicEvolution/upgradeModifier/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/weatherController/0.png b/front/public/images/large/DraconicEvolution/weatherController/0.png deleted file mode 100644 index e2b6caf8fa..0000000000 Binary files a/front/public/images/large/DraconicEvolution/weatherController/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wrench/0.png b/front/public/images/large/DraconicEvolution/wrench/0.png deleted file mode 100644 index 13e40fd9d1..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wrench/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernBoots/0.png b/front/public/images/large/DraconicEvolution/wyvernBoots/0.png deleted file mode 100644 index 34e0fc834b..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernBoots/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernBow/0.png b/front/public/images/large/DraconicEvolution/wyvernBow/0.png deleted file mode 100644 index 150c93fc0e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernBow/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernChest/0.png b/front/public/images/large/DraconicEvolution/wyvernChest/0.png deleted file mode 100644 index cf3ac7f042..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernChest/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernCore/0.png b/front/public/images/large/DraconicEvolution/wyvernCore/0.png deleted file mode 100644 index 8874a28708..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernCore/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernHelm/0.png b/front/public/images/large/DraconicEvolution/wyvernHelm/0.png deleted file mode 100644 index 71bb686f30..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernHelm/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernLeggs/0.png b/front/public/images/large/DraconicEvolution/wyvernLeggs/0.png deleted file mode 100644 index 8b9ca02750..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernLeggs/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernPickaxe/0.png b/front/public/images/large/DraconicEvolution/wyvernPickaxe/0.png deleted file mode 100644 index 62eddab8e0..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernShovel/0.png b/front/public/images/large/DraconicEvolution/wyvernShovel/0.png deleted file mode 100644 index 4d2036181e..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernShovel/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/wyvernSword/0.png b/front/public/images/large/DraconicEvolution/wyvernSword/0.png deleted file mode 100644 index 5ef35f0890..0000000000 Binary files a/front/public/images/large/DraconicEvolution/wyvernSword/0.png and /dev/null differ diff --git a/front/public/images/large/DraconicEvolution/xRayBlock/0.png b/front/public/images/large/DraconicEvolution/xRayBlock/0.png deleted file mode 100644 index 6b36bd236d..0000000000 Binary files a/front/public/images/large/DraconicEvolution/xRayBlock/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/BaseBaubles/0.png b/front/public/images/large/EMT/BaseBaubles/0.png deleted file mode 100644 index 3409542769..0000000000 Binary files a/front/public/images/large/EMT/BaseBaubles/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/ChainsawStream/1.png b/front/public/images/large/EMT/ChainsawStream/1.png deleted file mode 100644 index 0dc20048f0..0000000000 Binary files a/front/public/images/large/EMT/ChainsawStream/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ChainsawStream/27.png b/front/public/images/large/EMT/ChainsawStream/27.png deleted file mode 100644 index 0dc20048f0..0000000000 Binary files a/front/public/images/large/EMT/ChainsawStream/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/ChargingFocus/0.png b/front/public/images/large/EMT/ChargingFocus/0.png deleted file mode 100644 index ce40db678d..0000000000 Binary files a/front/public/images/large/EMT/ChargingFocus/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/ChristmasFocus/0.png b/front/public/images/large/EMT/ChristmasFocus/0.png deleted file mode 100644 index 6533ff00e4..0000000000 Binary files a/front/public/images/large/EMT/ChristmasFocus/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/Diamond Omnitool/1.png b/front/public/images/large/EMT/Diamond Omnitool/1.png deleted file mode 100644 index 2d1c38ae2d..0000000000 Binary files a/front/public/images/large/EMT/Diamond Omnitool/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/Diamond Omnitool/27.png b/front/public/images/large/EMT/Diamond Omnitool/27.png deleted file mode 100644 index 2d1c38ae2d..0000000000 Binary files a/front/public/images/large/EMT/Diamond Omnitool/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/DiamondChainsaw/1.png b/front/public/images/large/EMT/DiamondChainsaw/1.png deleted file mode 100644 index cb821e654b..0000000000 Binary files a/front/public/images/large/EMT/DiamondChainsaw/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/DiamondChainsaw/27.png b/front/public/images/large/EMT/DiamondChainsaw/27.png deleted file mode 100644 index cb821e654b..0000000000 Binary files a/front/public/images/large/EMT/DiamondChainsaw/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/DrillRockbreaker/1.png b/front/public/images/large/EMT/DrillRockbreaker/1.png deleted file mode 100644 index 02b559995b..0000000000 Binary files a/front/public/images/large/EMT/DrillRockbreaker/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/DrillRockbreaker/27.png b/front/public/images/large/EMT/DrillRockbreaker/27.png deleted file mode 100644 index 02b559995b..0000000000 Binary files a/front/public/images/large/EMT/DrillRockbreaker/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTBaubles/0.png b/front/public/images/large/EMT/EMTBaubles/0.png deleted file mode 100644 index 8595264c15..0000000000 Binary files a/front/public/images/large/EMT/EMTBaubles/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTBaubles/1.png b/front/public/images/large/EMT/EMTBaubles/1.png deleted file mode 100644 index dce02ff539..0000000000 Binary files a/front/public/images/large/EMT/EMTBaubles/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/1.png b/front/public/images/large/EMT/EMTItems/1.png deleted file mode 100644 index e35299915a..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/10.png b/front/public/images/large/EMT/EMTItems/10.png deleted file mode 100644 index d53d6866ef..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/10.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/11.png b/front/public/images/large/EMT/EMTItems/11.png deleted file mode 100644 index 6a0c602fc6..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/11.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/12.png b/front/public/images/large/EMT/EMTItems/12.png deleted file mode 100644 index e3f8409755..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/12.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/13.png b/front/public/images/large/EMT/EMTItems/13.png deleted file mode 100644 index df796ba2bf..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/13.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/14.png b/front/public/images/large/EMT/EMTItems/14.png deleted file mode 100644 index 9a99035c1d..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/14.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/15.png b/front/public/images/large/EMT/EMTItems/15.png deleted file mode 100644 index b171a6f258..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/15.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/16.png b/front/public/images/large/EMT/EMTItems/16.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/16.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/17.png b/front/public/images/large/EMT/EMTItems/17.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/17.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/18.png b/front/public/images/large/EMT/EMTItems/18.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/18.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/19.png b/front/public/images/large/EMT/EMTItems/19.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/19.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/2.png b/front/public/images/large/EMT/EMTItems/2.png deleted file mode 100644 index 83bc09e45b..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/3.png b/front/public/images/large/EMT/EMTItems/3.png deleted file mode 100644 index e4568bd278..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/3.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/4.png b/front/public/images/large/EMT/EMTItems/4.png deleted file mode 100644 index 24c7a7b473..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/4.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/5.png b/front/public/images/large/EMT/EMTItems/5.png deleted file mode 100644 index 89951967fc..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/5.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/6.png b/front/public/images/large/EMT/EMTItems/6.png deleted file mode 100644 index cf7c345fd0..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/6.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/7.png b/front/public/images/large/EMT/EMTItems/7.png deleted file mode 100644 index 8e24cbf5f7..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/7.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/8.png b/front/public/images/large/EMT/EMTItems/8.png deleted file mode 100644 index 97e315696c..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/8.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTItems/9.png b/front/public/images/large/EMT/EMTItems/9.png deleted file mode 100644 index 971a4a540a..0000000000 Binary files a/front/public/images/large/EMT/EMTItems/9.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTMachines/0.png b/front/public/images/large/EMT/EMTMachines/0.png deleted file mode 100644 index 8e941f2a89..0000000000 Binary files a/front/public/images/large/EMT/EMTMachines/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTMachines/1.png b/front/public/images/large/EMT/EMTMachines/1.png deleted file mode 100644 index 88106684eb..0000000000 Binary files a/front/public/images/large/EMT/EMTMachines/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTMachines/2.png b/front/public/images/large/EMT/EMTMachines/2.png deleted file mode 100644 index fb67b93485..0000000000 Binary files a/front/public/images/large/EMT/EMTMachines/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/0.png b/front/public/images/large/EMT/EMTSolars/0.png deleted file mode 100644 index fa9c9cf89e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/1.png b/front/public/images/large/EMT/EMTSolars/1.png deleted file mode 100644 index 608586ee4c..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/10.png b/front/public/images/large/EMT/EMTSolars/10.png deleted file mode 100644 index e1dad00a8b..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/10.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/11.png b/front/public/images/large/EMT/EMTSolars/11.png deleted file mode 100644 index fe745115da..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/11.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/12.png b/front/public/images/large/EMT/EMTSolars/12.png deleted file mode 100644 index b447924104..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/12.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/13.png b/front/public/images/large/EMT/EMTSolars/13.png deleted file mode 100644 index 50febccc70..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/13.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/14.png b/front/public/images/large/EMT/EMTSolars/14.png deleted file mode 100644 index b7acd41440..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/14.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/15.png b/front/public/images/large/EMT/EMTSolars/15.png deleted file mode 100644 index 64f75fbb0b..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/15.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/2.png b/front/public/images/large/EMT/EMTSolars/2.png deleted file mode 100644 index 90eb488625..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/3.png b/front/public/images/large/EMT/EMTSolars/3.png deleted file mode 100644 index 98463e428e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/3.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/4.png b/front/public/images/large/EMT/EMTSolars/4.png deleted file mode 100644 index a0631691bd..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/4.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/5.png b/front/public/images/large/EMT/EMTSolars/5.png deleted file mode 100644 index 6ab34165a6..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/5.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/6.png b/front/public/images/large/EMT/EMTSolars/6.png deleted file mode 100644 index 7159d5bbea..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/6.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/7.png b/front/public/images/large/EMT/EMTSolars/7.png deleted file mode 100644 index d7317fc4dc..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/7.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/8.png b/front/public/images/large/EMT/EMTSolars/8.png deleted file mode 100644 index b71b50408c..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/8.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars/9.png b/front/public/images/large/EMT/EMTSolars/9.png deleted file mode 100644 index 65b45708d4..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars/9.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars2/0.png b/front/public/images/large/EMT/EMTSolars2/0.png deleted file mode 100644 index eb293731ca..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars2/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars2/1.png b/front/public/images/large/EMT/EMTSolars2/1.png deleted file mode 100644 index 8d57f32c23..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars2/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars2/2.png b/front/public/images/large/EMT/EMTSolars2/2.png deleted file mode 100644 index d3664f081a..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars2/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars2/3.png b/front/public/images/large/EMT/EMTSolars2/3.png deleted file mode 100644 index 60b3ae5d70..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars2/3.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars2/4.png b/front/public/images/large/EMT/EMTSolars2/4.png deleted file mode 100644 index e2c1e0a47e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars2/4.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/0.png b/front/public/images/large/EMT/EMTSolars3/0.png deleted file mode 100644 index 90eb488625..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/1.png b/front/public/images/large/EMT/EMTSolars3/1.png deleted file mode 100644 index fe745115da..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/10.png b/front/public/images/large/EMT/EMTSolars3/10.png deleted file mode 100644 index 8d57f32c23..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/10.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/11.png b/front/public/images/large/EMT/EMTSolars3/11.png deleted file mode 100644 index e2c1e0a47e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/11.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/12.png b/front/public/images/large/EMT/EMTSolars3/12.png deleted file mode 100644 index 6ab34165a6..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/12.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/13.png b/front/public/images/large/EMT/EMTSolars3/13.png deleted file mode 100644 index b7acd41440..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/13.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/14.png b/front/public/images/large/EMT/EMTSolars3/14.png deleted file mode 100644 index 90eb488625..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/14.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/15.png b/front/public/images/large/EMT/EMTSolars3/15.png deleted file mode 100644 index fe745115da..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/15.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/2.png b/front/public/images/large/EMT/EMTSolars3/2.png deleted file mode 100644 index b71b50408c..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/3.png b/front/public/images/large/EMT/EMTSolars3/3.png deleted file mode 100644 index 8d57f32c23..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/3.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/4.png b/front/public/images/large/EMT/EMTSolars3/4.png deleted file mode 100644 index e2c1e0a47e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/4.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/5.png b/front/public/images/large/EMT/EMTSolars3/5.png deleted file mode 100644 index 6ab34165a6..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/5.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/6.png b/front/public/images/large/EMT/EMTSolars3/6.png deleted file mode 100644 index b7acd41440..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/6.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/7.png b/front/public/images/large/EMT/EMTSolars3/7.png deleted file mode 100644 index 90eb488625..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/7.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/8.png b/front/public/images/large/EMT/EMTSolars3/8.png deleted file mode 100644 index fe745115da..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/8.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars3/9.png b/front/public/images/large/EMT/EMTSolars3/9.png deleted file mode 100644 index b71b50408c..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars3/9.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/0.png b/front/public/images/large/EMT/EMTSolars4/0.png deleted file mode 100644 index b71b50408c..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/1.png b/front/public/images/large/EMT/EMTSolars4/1.png deleted file mode 100644 index 8d57f32c23..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/10.png b/front/public/images/large/EMT/EMTSolars4/10.png deleted file mode 100644 index 6ab34165a6..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/10.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/11.png b/front/public/images/large/EMT/EMTSolars4/11.png deleted file mode 100644 index b7acd41440..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/11.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/12.png b/front/public/images/large/EMT/EMTSolars4/12.png deleted file mode 100644 index 90eb488625..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/12.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/13.png b/front/public/images/large/EMT/EMTSolars4/13.png deleted file mode 100644 index fe745115da..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/13.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/14.png b/front/public/images/large/EMT/EMTSolars4/14.png deleted file mode 100644 index b71b50408c..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/14.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/15.png b/front/public/images/large/EMT/EMTSolars4/15.png deleted file mode 100644 index 8d57f32c23..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/15.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/2.png b/front/public/images/large/EMT/EMTSolars4/2.png deleted file mode 100644 index e2c1e0a47e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/3.png b/front/public/images/large/EMT/EMTSolars4/3.png deleted file mode 100644 index 6ab34165a6..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/3.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/4.png b/front/public/images/large/EMT/EMTSolars4/4.png deleted file mode 100644 index b7acd41440..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/4.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/5.png b/front/public/images/large/EMT/EMTSolars4/5.png deleted file mode 100644 index 90eb488625..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/5.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/6.png b/front/public/images/large/EMT/EMTSolars4/6.png deleted file mode 100644 index fe745115da..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/6.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/7.png b/front/public/images/large/EMT/EMTSolars4/7.png deleted file mode 100644 index b71b50408c..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/7.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/8.png b/front/public/images/large/EMT/EMTSolars4/8.png deleted file mode 100644 index 8d57f32c23..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/8.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars4/9.png b/front/public/images/large/EMT/EMTSolars4/9.png deleted file mode 100644 index e2c1e0a47e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars4/9.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars5/0.png b/front/public/images/large/EMT/EMTSolars5/0.png deleted file mode 100644 index e2c1e0a47e..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars5/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars5/1.png b/front/public/images/large/EMT/EMTSolars5/1.png deleted file mode 100644 index 6ab34165a6..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars5/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EMTSolars5/2.png b/front/public/images/large/EMT/EMTSolars5/2.png deleted file mode 100644 index b7acd41440..0000000000 Binary files a/front/public/images/large/EMT/EMTSolars5/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricBootsTraveller/1.png b/front/public/images/large/EMT/ElectricBootsTraveller/1.png deleted file mode 100644 index 3232e26bff..0000000000 Binary files a/front/public/images/large/EMT/ElectricBootsTraveller/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricBootsTraveller/27.png b/front/public/images/large/EMT/ElectricBootsTraveller/27.png deleted file mode 100644 index 3232e26bff..0000000000 Binary files a/front/public/images/large/EMT/ElectricBootsTraveller/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricGogglesRevealing/1.png b/front/public/images/large/EMT/ElectricGogglesRevealing/1.png deleted file mode 100644 index c80c0e94d2..0000000000 Binary files a/front/public/images/large/EMT/ElectricGogglesRevealing/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricGogglesRevealing/165.png b/front/public/images/large/EMT/ElectricGogglesRevealing/165.png deleted file mode 100644 index c80c0e94d2..0000000000 Binary files a/front/public/images/large/EMT/ElectricGogglesRevealing/165.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricHoeGrowth/1.png b/front/public/images/large/EMT/ElectricHoeGrowth/1.png deleted file mode 100644 index 19699439cc..0000000000 Binary files a/front/public/images/large/EMT/ElectricHoeGrowth/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricHoeGrowth/1561.png b/front/public/images/large/EMT/ElectricHoeGrowth/1561.png deleted file mode 100644 index 19699439cc..0000000000 Binary files a/front/public/images/large/EMT/ElectricHoeGrowth/1561.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricScribingTools/1.png b/front/public/images/large/EMT/ElectricScribingTools/1.png deleted file mode 100644 index a12f069ca5..0000000000 Binary files a/front/public/images/large/EMT/ElectricScribingTools/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ElectricScribingTools/400.png b/front/public/images/large/EMT/ElectricScribingTools/400.png deleted file mode 100644 index a12f069ca5..0000000000 Binary files a/front/public/images/large/EMT/ElectricScribingTools/400.png and /dev/null differ diff --git a/front/public/images/large/EMT/EnergyBallFocus/0.png b/front/public/images/large/EMT/EnergyBallFocus/0.png deleted file mode 100644 index 6cd2220e9e..0000000000 Binary files a/front/public/images/large/EMT/EnergyBallFocus/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EssentiaGenerators/0.png b/front/public/images/large/EMT/EssentiaGenerators/0.png deleted file mode 100644 index c5faef39a3..0000000000 Binary files a/front/public/images/large/EMT/EssentiaGenerators/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/EssentiaGenerators/1.png b/front/public/images/large/EMT/EssentiaGenerators/1.png deleted file mode 100644 index d174ab5706..0000000000 Binary files a/front/public/images/large/EMT/EssentiaGenerators/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/EssentiaGenerators/2.png b/front/public/images/large/EMT/EssentiaGenerators/2.png deleted file mode 100644 index f407d9b388..0000000000 Binary files a/front/public/images/large/EMT/EssentiaGenerators/2.png and /dev/null differ diff --git a/front/public/images/large/EMT/EssentiaGenerators/3.png b/front/public/images/large/EMT/EssentiaGenerators/3.png deleted file mode 100644 index 89b64ef595..0000000000 Binary files a/front/public/images/large/EMT/EssentiaGenerators/3.png and /dev/null differ diff --git a/front/public/images/large/EMT/EssentiaGenerators/4.png b/front/public/images/large/EMT/EssentiaGenerators/4.png deleted file mode 100644 index 5bb1931e56..0000000000 Binary files a/front/public/images/large/EMT/EssentiaGenerators/4.png and /dev/null differ diff --git a/front/public/images/large/EMT/EssentiaGenerators/5.png b/front/public/images/large/EMT/EssentiaGenerators/5.png deleted file mode 100644 index 5bb1931e56..0000000000 Binary files a/front/public/images/large/EMT/EssentiaGenerators/5.png and /dev/null differ diff --git a/front/public/images/large/EMT/ExplosionFocus/0.png b/front/public/images/large/EMT/ExplosionFocus/0.png deleted file mode 100644 index 1753faf4ee..0000000000 Binary files a/front/public/images/large/EMT/ExplosionFocus/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/FeatherWing/0.png b/front/public/images/large/EMT/FeatherWing/0.png deleted file mode 100644 index fd3a27c05d..0000000000 Binary files a/front/public/images/large/EMT/FeatherWing/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/MaintenanceFocus/0.png b/front/public/images/large/EMT/MaintenanceFocus/0.png deleted file mode 100644 index 07adc9370d..0000000000 Binary files a/front/public/images/large/EMT/MaintenanceFocus/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/Mjolnir/0.png b/front/public/images/large/EMT/Mjolnir/0.png deleted file mode 100644 index f327c9ac39..0000000000 Binary files a/front/public/images/large/EMT/Mjolnir/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/NanoBootsTraveller/1.png b/front/public/images/large/EMT/NanoBootsTraveller/1.png deleted file mode 100644 index bbc651f001..0000000000 Binary files a/front/public/images/large/EMT/NanoBootsTraveller/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/NanoBootsTraveller/27.png b/front/public/images/large/EMT/NanoBootsTraveller/27.png deleted file mode 100644 index bbc651f001..0000000000 Binary files a/front/public/images/large/EMT/NanoBootsTraveller/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/NanosuitGogglesRevealing/1.png b/front/public/images/large/EMT/NanosuitGogglesRevealing/1.png deleted file mode 100644 index 98b0a00b17..0000000000 Binary files a/front/public/images/large/EMT/NanosuitGogglesRevealing/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/NanosuitGogglesRevealing/27.png b/front/public/images/large/EMT/NanosuitGogglesRevealing/27.png deleted file mode 100644 index 98b0a00b17..0000000000 Binary files a/front/public/images/large/EMT/NanosuitGogglesRevealing/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/NanosuitWing/1.png b/front/public/images/large/EMT/NanosuitWing/1.png deleted file mode 100644 index 41d01e0f82..0000000000 Binary files a/front/public/images/large/EMT/NanosuitWing/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/NanosuitWing/27.png b/front/public/images/large/EMT/NanosuitWing/27.png deleted file mode 100644 index 41d01e0f82..0000000000 Binary files a/front/public/images/large/EMT/NanosuitWing/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/Omnitool/1.png b/front/public/images/large/EMT/Omnitool/1.png deleted file mode 100644 index dbd8b013fb..0000000000 Binary files a/front/public/images/large/EMT/Omnitool/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/Omnitool/27.png b/front/public/images/large/EMT/Omnitool/27.png deleted file mode 100644 index dbd8b013fb..0000000000 Binary files a/front/public/images/large/EMT/Omnitool/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/PortableNode/0.png b/front/public/images/large/EMT/PortableNode/0.png deleted file mode 100644 index 047fc58651..0000000000 Binary files a/front/public/images/large/EMT/PortableNode/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/QuantumBootsTraveller/1.png b/front/public/images/large/EMT/QuantumBootsTraveller/1.png deleted file mode 100644 index 9d5f070311..0000000000 Binary files a/front/public/images/large/EMT/QuantumBootsTraveller/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/QuantumBootsTraveller/27.png b/front/public/images/large/EMT/QuantumBootsTraveller/27.png deleted file mode 100644 index 9d5f070311..0000000000 Binary files a/front/public/images/large/EMT/QuantumBootsTraveller/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/QuantumGogglesRevealing/1.png b/front/public/images/large/EMT/QuantumGogglesRevealing/1.png deleted file mode 100644 index 3300ee98e7..0000000000 Binary files a/front/public/images/large/EMT/QuantumGogglesRevealing/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/QuantumGogglesRevealing/27.png b/front/public/images/large/EMT/QuantumGogglesRevealing/27.png deleted file mode 100644 index 3300ee98e7..0000000000 Binary files a/front/public/images/large/EMT/QuantumGogglesRevealing/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/QuantumWing/1.png b/front/public/images/large/EMT/QuantumWing/1.png deleted file mode 100644 index 6c5aadc627..0000000000 Binary files a/front/public/images/large/EMT/QuantumWing/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/QuantumWing/27.png b/front/public/images/large/EMT/QuantumWing/27.png deleted file mode 100644 index 6c5aadc627..0000000000 Binary files a/front/public/images/large/EMT/QuantumWing/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/ShieldBlock/0.png b/front/public/images/large/EMT/ShieldBlock/0.png deleted file mode 100644 index 2a15c556ce..0000000000 Binary files a/front/public/images/large/EMT/ShieldBlock/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/ShieldFocus/0.png b/front/public/images/large/EMT/ShieldFocus/0.png deleted file mode 100644 index 523647ae00..0000000000 Binary files a/front/public/images/large/EMT/ShieldFocus/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/SolarHelmetRevealing/1.png b/front/public/images/large/EMT/SolarHelmetRevealing/1.png deleted file mode 100644 index 83456ece0d..0000000000 Binary files a/front/public/images/large/EMT/SolarHelmetRevealing/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/SolarHelmetRevealing/27.png b/front/public/images/large/EMT/SolarHelmetRevealing/27.png deleted file mode 100644 index 83456ece0d..0000000000 Binary files a/front/public/images/large/EMT/SolarHelmetRevealing/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/SuperchargedMjolnir/1.png b/front/public/images/large/EMT/SuperchargedMjolnir/1.png deleted file mode 100644 index ec558929eb..0000000000 Binary files a/front/public/images/large/EMT/SuperchargedMjolnir/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/SuperchargedMjolnir/27.png b/front/public/images/large/EMT/SuperchargedMjolnir/27.png deleted file mode 100644 index ec558929eb..0000000000 Binary files a/front/public/images/large/EMT/SuperchargedMjolnir/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/TaintedMjolnir/0.png b/front/public/images/large/EMT/TaintedMjolnir/0.png deleted file mode 100644 index 5f17737266..0000000000 Binary files a/front/public/images/large/EMT/TaintedMjolnir/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/ThaumiumChainsaw/1.png b/front/public/images/large/EMT/ThaumiumChainsaw/1.png deleted file mode 100644 index 71add85ff3..0000000000 Binary files a/front/public/images/large/EMT/ThaumiumChainsaw/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ThaumiumChainsaw/27.png b/front/public/images/large/EMT/ThaumiumChainsaw/27.png deleted file mode 100644 index 71add85ff3..0000000000 Binary files a/front/public/images/large/EMT/ThaumiumChainsaw/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/ThaumiumDrill/1.png b/front/public/images/large/EMT/ThaumiumDrill/1.png deleted file mode 100644 index e5966c96b8..0000000000 Binary files a/front/public/images/large/EMT/ThaumiumDrill/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ThaumiumDrill/27.png b/front/public/images/large/EMT/ThaumiumDrill/27.png deleted file mode 100644 index e5966c96b8..0000000000 Binary files a/front/public/images/large/EMT/ThaumiumDrill/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/ThaumiumOmnitool/1.png b/front/public/images/large/EMT/ThaumiumOmnitool/1.png deleted file mode 100644 index a728350859..0000000000 Binary files a/front/public/images/large/EMT/ThaumiumOmnitool/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/ThaumiumOmnitool/27.png b/front/public/images/large/EMT/ThaumiumOmnitool/27.png deleted file mode 100644 index a728350859..0000000000 Binary files a/front/public/images/large/EMT/ThaumiumOmnitool/27.png and /dev/null differ diff --git a/front/public/images/large/EMT/ThaumiumWing/0.png b/front/public/images/large/EMT/ThaumiumWing/0.png deleted file mode 100644 index 1a0f7049cc..0000000000 Binary files a/front/public/images/large/EMT/ThaumiumWing/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/WandChargingFocus/0.png b/front/public/images/large/EMT/WandChargingFocus/0.png deleted file mode 100644 index 68f0bf4b52..0000000000 Binary files a/front/public/images/large/EMT/WandChargingFocus/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/electricCloud/0.png b/front/public/images/large/EMT/electricCloud/0.png deleted file mode 100644 index f5cbab35b3..0000000000 Binary files a/front/public/images/large/EMT/electricCloud/0.png and /dev/null differ diff --git a/front/public/images/large/EMT/itemArmorQuantumChestplate/1.png b/front/public/images/large/EMT/itemArmorQuantumChestplate/1.png deleted file mode 100644 index a481e650ca..0000000000 Binary files a/front/public/images/large/EMT/itemArmorQuantumChestplate/1.png and /dev/null differ diff --git a/front/public/images/large/EMT/itemArmorQuantumChestplate/27.png b/front/public/images/large/EMT/itemArmorQuantumChestplate/27.png deleted file mode 100644 index a481e650ca..0000000000 Binary files a/front/public/images/large/EMT/itemArmorQuantumChestplate/27.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockAlloySmelter/0.png b/front/public/images/large/EnderIO/blockAlloySmelter/0.png deleted file mode 100644 index e5010d34f0..0000000000 Binary files a/front/public/images/large/EnderIO/blockAlloySmelter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockAttractor/0.png b/front/public/images/large/EnderIO/blockAttractor/0.png deleted file mode 100644 index 126f09588a..0000000000 Binary files a/front/public/images/large/EnderIO/blockAttractor/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockBuffer/0.png b/front/public/images/large/EnderIO/blockBuffer/0.png deleted file mode 100644 index 88dc81d34f..0000000000 Binary files a/front/public/images/large/EnderIO/blockBuffer/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockBuffer/1.png b/front/public/images/large/EnderIO/blockBuffer/1.png deleted file mode 100644 index e551e8d3dc..0000000000 Binary files a/front/public/images/large/EnderIO/blockBuffer/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockBuffer/2.png b/front/public/images/large/EnderIO/blockBuffer/2.png deleted file mode 100644 index 94713f31b8..0000000000 Binary files a/front/public/images/large/EnderIO/blockBuffer/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockBuffer/3.png b/front/public/images/large/EnderIO/blockBuffer/3.png deleted file mode 100644 index 8cd5f752a0..0000000000 Binary files a/front/public/images/large/EnderIO/blockBuffer/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCapBank/0.png b/front/public/images/large/EnderIO/blockCapBank/0.png deleted file mode 100644 index 15eccc986b..0000000000 Binary files a/front/public/images/large/EnderIO/blockCapBank/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCapBank/1.png b/front/public/images/large/EnderIO/blockCapBank/1.png deleted file mode 100644 index 1cfa589125..0000000000 Binary files a/front/public/images/large/EnderIO/blockCapBank/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCapBank/2.png b/front/public/images/large/EnderIO/blockCapBank/2.png deleted file mode 100644 index b5edd336c7..0000000000 Binary files a/front/public/images/large/EnderIO/blockCapBank/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCapBank/3.png b/front/public/images/large/EnderIO/blockCapBank/3.png deleted file mode 100644 index 43aad52e59..0000000000 Binary files a/front/public/images/large/EnderIO/blockCapBank/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCapacitorBank/0.png b/front/public/images/large/EnderIO/blockCapacitorBank/0.png deleted file mode 100644 index 8294abb575..0000000000 Binary files a/front/public/images/large/EnderIO/blockCapacitorBank/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCapacitorBank/1.png b/front/public/images/large/EnderIO/blockCapacitorBank/1.png deleted file mode 100644 index e1a4a63b9b..0000000000 Binary files a/front/public/images/large/EnderIO/blockCapacitorBank/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCloud_seed/0.png b/front/public/images/large/EnderIO/blockCloud_seed/0.png deleted file mode 100644 index 81732a5133..0000000000 Binary files a/front/public/images/large/EnderIO/blockCloud_seed/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCloud_seed_concentrated/0.png b/front/public/images/large/EnderIO/blockCloud_seed_concentrated/0.png deleted file mode 100644 index 21c6fe0892..0000000000 Binary files a/front/public/images/large/EnderIO/blockCloud_seed_concentrated/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCombustionGenerator/0.png b/front/public/images/large/EnderIO/blockCombustionGenerator/0.png deleted file mode 100644 index cfa6c0b965..0000000000 Binary files a/front/public/images/large/EnderIO/blockCombustionGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockConduitBundle/0.png b/front/public/images/large/EnderIO/blockConduitBundle/0.png deleted file mode 100644 index 106aab01b1..0000000000 Binary files a/front/public/images/large/EnderIO/blockConduitBundle/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockConduitFacade/0.png b/front/public/images/large/EnderIO/blockConduitFacade/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/EnderIO/blockConduitFacade/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockCrafter/0.png b/front/public/images/large/EnderIO/blockCrafter/0.png deleted file mode 100644 index 2d8ea8751e..0000000000 Binary files a/front/public/images/large/EnderIO/blockCrafter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockDarkIronBars/0.png b/front/public/images/large/EnderIO/blockDarkIronBars/0.png deleted file mode 100644 index b59876315d..0000000000 Binary files a/front/public/images/large/EnderIO/blockDarkIronBars/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockDarkSteelAnvil/0.png b/front/public/images/large/EnderIO/blockDarkSteelAnvil/0.png deleted file mode 100644 index 869dbf9627..0000000000 Binary files a/front/public/images/large/EnderIO/blockDarkSteelAnvil/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockDarkSteelAnvil/1.png b/front/public/images/large/EnderIO/blockDarkSteelAnvil/1.png deleted file mode 100644 index ec4b603326..0000000000 Binary files a/front/public/images/large/EnderIO/blockDarkSteelAnvil/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockDarkSteelAnvil/2.png b/front/public/images/large/EnderIO/blockDarkSteelAnvil/2.png deleted file mode 100644 index 5ec9219909..0000000000 Binary files a/front/public/images/large/EnderIO/blockDarkSteelAnvil/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockDarkSteelLadder/0.png b/front/public/images/large/EnderIO/blockDarkSteelLadder/0.png deleted file mode 100644 index d4afc475dc..0000000000 Binary files a/front/public/images/large/EnderIO/blockDarkSteelLadder/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockDarkSteelPressurePlate/0.png b/front/public/images/large/EnderIO/blockDarkSteelPressurePlate/0.png deleted file mode 100644 index d67a872ffb..0000000000 Binary files a/front/public/images/large/EnderIO/blockDarkSteelPressurePlate/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockDarkSteelPressurePlate/1.png b/front/public/images/large/EnderIO/blockDarkSteelPressurePlate/1.png deleted file mode 100644 index d67a872ffb..0000000000 Binary files a/front/public/images/large/EnderIO/blockDarkSteelPressurePlate/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockElectricLight/0.png b/front/public/images/large/EnderIO/blockElectricLight/0.png deleted file mode 100644 index f1924a5780..0000000000 Binary files a/front/public/images/large/EnderIO/blockElectricLight/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockElectricLight/1.png b/front/public/images/large/EnderIO/blockElectricLight/1.png deleted file mode 100644 index f1924a5780..0000000000 Binary files a/front/public/images/large/EnderIO/blockElectricLight/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockElectricLight/2.png b/front/public/images/large/EnderIO/blockElectricLight/2.png deleted file mode 100644 index f1924a5780..0000000000 Binary files a/front/public/images/large/EnderIO/blockElectricLight/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockElectricLight/3.png b/front/public/images/large/EnderIO/blockElectricLight/3.png deleted file mode 100644 index f1924a5780..0000000000 Binary files a/front/public/images/large/EnderIO/blockElectricLight/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockElectricLight/4.png b/front/public/images/large/EnderIO/blockElectricLight/4.png deleted file mode 100644 index f1924a5780..0000000000 Binary files a/front/public/images/large/EnderIO/blockElectricLight/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockElectricLight/5.png b/front/public/images/large/EnderIO/blockElectricLight/5.png deleted file mode 100644 index f1924a5780..0000000000 Binary files a/front/public/images/large/EnderIO/blockElectricLight/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEnchanter/0.png b/front/public/images/large/EnderIO/blockEnchanter/0.png deleted file mode 100644 index de88d931e3..0000000000 Binary files a/front/public/images/large/EnderIO/blockEnchanter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEndSteelBars/0.png b/front/public/images/large/EnderIO/blockEndSteelBars/0.png deleted file mode 100644 index 49613a37cc..0000000000 Binary files a/front/public/images/large/EnderIO/blockEndSteelBars/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEnderGenerator/0.png b/front/public/images/large/EnderIO/blockEnderGenerator/0.png deleted file mode 100644 index 006688873f..0000000000 Binary files a/front/public/images/large/EnderIO/blockEnderGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEnderIo/0.png b/front/public/images/large/EnderIO/blockEnderIo/0.png deleted file mode 100644 index be39afe209..0000000000 Binary files a/front/public/images/large/EnderIO/blockEnderIo/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEnderRail/0.png b/front/public/images/large/EnderIO/blockEnderRail/0.png deleted file mode 100644 index b070cb57f1..0000000000 Binary files a/front/public/images/large/EnderIO/blockEnderRail/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEnder_distillation/0.png b/front/public/images/large/EnderIO/blockEnder_distillation/0.png deleted file mode 100644 index 2684bb5266..0000000000 Binary files a/front/public/images/large/EnderIO/blockEnder_distillation/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEndermanSkull/0.png b/front/public/images/large/EnderIO/blockEndermanSkull/0.png deleted file mode 100644 index 629f622312..0000000000 Binary files a/front/public/images/large/EnderIO/blockEndermanSkull/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockEndermanSkull/2.png b/front/public/images/large/EnderIO/blockEndermanSkull/2.png deleted file mode 100644 index f1cc19ff74..0000000000 Binary files a/front/public/images/large/EnderIO/blockEndermanSkull/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockExperienceObelisk/0.png b/front/public/images/large/EnderIO/blockExperienceObelisk/0.png deleted file mode 100644 index 2214bbf25e..0000000000 Binary files a/front/public/images/large/EnderIO/blockExperienceObelisk/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFarmStation/0.png b/front/public/images/large/EnderIO/blockFarmStation/0.png deleted file mode 100644 index 55782be4c5..0000000000 Binary files a/front/public/images/large/EnderIO/blockFarmStation/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFire_water/0.png b/front/public/images/large/EnderIO/blockFire_water/0.png deleted file mode 100644 index 67796d8e13..0000000000 Binary files a/front/public/images/large/EnderIO/blockFire_water/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFrankenzombieGenerator/0.png b/front/public/images/large/EnderIO/blockFrankenzombieGenerator/0.png deleted file mode 100644 index 0b4c86340e..0000000000 Binary files a/front/public/images/large/EnderIO/blockFrankenzombieGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFusedQuartz/0.png b/front/public/images/large/EnderIO/blockFusedQuartz/0.png deleted file mode 100644 index 5cfec14f91..0000000000 Binary files a/front/public/images/large/EnderIO/blockFusedQuartz/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFusedQuartz/1.png b/front/public/images/large/EnderIO/blockFusedQuartz/1.png deleted file mode 100644 index f1a31788c2..0000000000 Binary files a/front/public/images/large/EnderIO/blockFusedQuartz/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFusedQuartz/2.png b/front/public/images/large/EnderIO/blockFusedQuartz/2.png deleted file mode 100644 index 5cfec14f91..0000000000 Binary files a/front/public/images/large/EnderIO/blockFusedQuartz/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFusedQuartz/3.png b/front/public/images/large/EnderIO/blockFusedQuartz/3.png deleted file mode 100644 index f1a31788c2..0000000000 Binary files a/front/public/images/large/EnderIO/blockFusedQuartz/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFusedQuartz/4.png b/front/public/images/large/EnderIO/blockFusedQuartz/4.png deleted file mode 100644 index 5cfec14f91..0000000000 Binary files a/front/public/images/large/EnderIO/blockFusedQuartz/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockFusedQuartz/5.png b/front/public/images/large/EnderIO/blockFusedQuartz/5.png deleted file mode 100644 index f1a31788c2..0000000000 Binary files a/front/public/images/large/EnderIO/blockFusedQuartz/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockHootch/0.png b/front/public/images/large/EnderIO/blockHootch/0.png deleted file mode 100644 index 010608a959..0000000000 Binary files a/front/public/images/large/EnderIO/blockHootch/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockHyperCube/0.png b/front/public/images/large/EnderIO/blockHyperCube/0.png deleted file mode 100644 index 4620d3da9f..0000000000 Binary files a/front/public/images/large/EnderIO/blockHyperCube/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/0.png b/front/public/images/large/EnderIO/blockIngotStorage/0.png deleted file mode 100644 index d7e012bb69..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/1.png b/front/public/images/large/EnderIO/blockIngotStorage/1.png deleted file mode 100644 index 63d7da4005..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/2.png b/front/public/images/large/EnderIO/blockIngotStorage/2.png deleted file mode 100644 index 095d6bd63a..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/3.png b/front/public/images/large/EnderIO/blockIngotStorage/3.png deleted file mode 100644 index 180f6c101e..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/4.png b/front/public/images/large/EnderIO/blockIngotStorage/4.png deleted file mode 100644 index d0e253c8e4..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/5.png b/front/public/images/large/EnderIO/blockIngotStorage/5.png deleted file mode 100644 index 4eae876caa..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/6.png b/front/public/images/large/EnderIO/blockIngotStorage/6.png deleted file mode 100644 index 33ace4757d..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/7.png b/front/public/images/large/EnderIO/blockIngotStorage/7.png deleted file mode 100644 index 1262d0ce9c..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/7.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorage/8.png b/front/public/images/large/EnderIO/blockIngotStorage/8.png deleted file mode 100644 index e662efbb9e..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorage/8.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorageEndergy/0.png b/front/public/images/large/EnderIO/blockIngotStorageEndergy/0.png deleted file mode 100644 index 12e67fd91c..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorageEndergy/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorageEndergy/1.png b/front/public/images/large/EnderIO/blockIngotStorageEndergy/1.png deleted file mode 100644 index 48be68406e..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorageEndergy/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorageEndergy/2.png b/front/public/images/large/EnderIO/blockIngotStorageEndergy/2.png deleted file mode 100644 index eb6d9a741c..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorageEndergy/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorageEndergy/3.png b/front/public/images/large/EnderIO/blockIngotStorageEndergy/3.png deleted file mode 100644 index 49e301c3d7..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorageEndergy/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorageEndergy/4.png b/front/public/images/large/EnderIO/blockIngotStorageEndergy/4.png deleted file mode 100644 index 6eefdc51e4..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorageEndergy/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorageEndergy/5.png b/front/public/images/large/EnderIO/blockIngotStorageEndergy/5.png deleted file mode 100644 index e3b3aeaa3c..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorageEndergy/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockIngotStorageEndergy/6.png b/front/public/images/large/EnderIO/blockIngotStorageEndergy/6.png deleted file mode 100644 index 4a8efe6d63..0000000000 Binary files a/front/public/images/large/EnderIO/blockIngotStorageEndergy/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockInhibitorObelisk/0.png b/front/public/images/large/EnderIO/blockInhibitorObelisk/0.png deleted file mode 100644 index 545c110b67..0000000000 Binary files a/front/public/images/large/EnderIO/blockInhibitorObelisk/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockInventoryPanel/0.png b/front/public/images/large/EnderIO/blockInventoryPanel/0.png deleted file mode 100644 index 1eeaf226dc..0000000000 Binary files a/front/public/images/large/EnderIO/blockInventoryPanel/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockKillerJoe/0.png b/front/public/images/large/EnderIO/blockKillerJoe/0.png deleted file mode 100644 index fde76459c0..0000000000 Binary files a/front/public/images/large/EnderIO/blockKillerJoe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockLightNode/0.png b/front/public/images/large/EnderIO/blockLightNode/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/EnderIO/blockLightNode/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockLiquid_sunshine/0.png b/front/public/images/large/EnderIO/blockLiquid_sunshine/0.png deleted file mode 100644 index f28fff0531..0000000000 Binary files a/front/public/images/large/EnderIO/blockLiquid_sunshine/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockNutrient_distillation/0.png b/front/public/images/large/EnderIO/blockNutrient_distillation/0.png deleted file mode 100644 index a0cd965604..0000000000 Binary files a/front/public/images/large/EnderIO/blockNutrient_distillation/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedCarpet/0.png b/front/public/images/large/EnderIO/blockPaintedCarpet/0.png deleted file mode 100644 index 14b567e0d4..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedCarpet/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedDoubleSlab/0.png b/front/public/images/large/EnderIO/blockPaintedDoubleSlab/0.png deleted file mode 100644 index 314fb87077..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedDoubleSlab/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedFence/0.png b/front/public/images/large/EnderIO/blockPaintedFence/0.png deleted file mode 100644 index 8760288514..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedFence/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedFenceGate/0.png b/front/public/images/large/EnderIO/blockPaintedFenceGate/0.png deleted file mode 100644 index 9d0fa7a705..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedFenceGate/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedGlowstone/0.png b/front/public/images/large/EnderIO/blockPaintedGlowstone/0.png deleted file mode 100644 index 28b90510d1..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedGlowstone/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedSlab/0.png b/front/public/images/large/EnderIO/blockPaintedSlab/0.png deleted file mode 100644 index 26e57f4eec..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedSlab/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedStair/0.png b/front/public/images/large/EnderIO/blockPaintedStair/0.png deleted file mode 100644 index 257a585956..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedStair/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPaintedWall/0.png b/front/public/images/large/EnderIO/blockPaintedWall/0.png deleted file mode 100644 index f1265495da..0000000000 Binary files a/front/public/images/large/EnderIO/blockPaintedWall/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPainter/0.png b/front/public/images/large/EnderIO/blockPainter/0.png deleted file mode 100644 index 84f645355d..0000000000 Binary files a/front/public/images/large/EnderIO/blockPainter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPowerMonitor/0.png b/front/public/images/large/EnderIO/blockPowerMonitor/0.png deleted file mode 100644 index 7e1f0fdc28..0000000000 Binary files a/front/public/images/large/EnderIO/blockPowerMonitor/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockPoweredSpawner/0.png b/front/public/images/large/EnderIO/blockPoweredSpawner/0.png deleted file mode 100644 index 282897feb1..0000000000 Binary files a/front/public/images/large/EnderIO/blockPoweredSpawner/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockReinforcedObsidian/0.png b/front/public/images/large/EnderIO/blockReinforcedObsidian/0.png deleted file mode 100644 index 0bfea2fcd6..0000000000 Binary files a/front/public/images/large/EnderIO/blockReinforcedObsidian/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockReservoir/0.png b/front/public/images/large/EnderIO/blockReservoir/0.png deleted file mode 100644 index 69e05e5942..0000000000 Binary files a/front/public/images/large/EnderIO/blockReservoir/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockRocket_fuel/0.png b/front/public/images/large/EnderIO/blockRocket_fuel/0.png deleted file mode 100644 index 2b2d14a6ab..0000000000 Binary files a/front/public/images/large/EnderIO/blockRocket_fuel/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSagMill/0.png b/front/public/images/large/EnderIO/blockSagMill/0.png deleted file mode 100644 index 565b552134..0000000000 Binary files a/front/public/images/large/EnderIO/blockSagMill/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSliceAndSplice/0.png b/front/public/images/large/EnderIO/blockSliceAndSplice/0.png deleted file mode 100644 index 3622e6820d..0000000000 Binary files a/front/public/images/large/EnderIO/blockSliceAndSplice/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSolarPanel/0.png b/front/public/images/large/EnderIO/blockSolarPanel/0.png deleted file mode 100644 index f20b913d51..0000000000 Binary files a/front/public/images/large/EnderIO/blockSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSolarPanel/1.png b/front/public/images/large/EnderIO/blockSolarPanel/1.png deleted file mode 100644 index 80908ec392..0000000000 Binary files a/front/public/images/large/EnderIO/blockSolarPanel/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSolarPanel/2.png b/front/public/images/large/EnderIO/blockSolarPanel/2.png deleted file mode 100644 index d731938390..0000000000 Binary files a/front/public/images/large/EnderIO/blockSolarPanel/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSoulBinder/0.png b/front/public/images/large/EnderIO/blockSoulBinder/0.png deleted file mode 100644 index 88341d4740..0000000000 Binary files a/front/public/images/large/EnderIO/blockSoulBinder/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSoulariumBars/0.png b/front/public/images/large/EnderIO/blockSoulariumBars/0.png deleted file mode 100644 index 9fd0995afc..0000000000 Binary files a/front/public/images/large/EnderIO/blockSoulariumBars/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockSpawnGuard/0.png b/front/public/images/large/EnderIO/blockSpawnGuard/0.png deleted file mode 100644 index c161ab8d49..0000000000 Binary files a/front/public/images/large/EnderIO/blockSpawnGuard/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockStirlingGenerator/0.png b/front/public/images/large/EnderIO/blockStirlingGenerator/0.png deleted file mode 100644 index f548a04b1b..0000000000 Binary files a/front/public/images/large/EnderIO/blockStirlingGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockTank/0.png b/front/public/images/large/EnderIO/blockTank/0.png deleted file mode 100644 index c753782c47..0000000000 Binary files a/front/public/images/large/EnderIO/blockTank/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockTank/1.png b/front/public/images/large/EnderIO/blockTank/1.png deleted file mode 100644 index bbd41ff717..0000000000 Binary files a/front/public/images/large/EnderIO/blockTank/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockTelePad/0.png b/front/public/images/large/EnderIO/blockTelePad/0.png deleted file mode 100644 index a7ed1bf71f..0000000000 Binary files a/front/public/images/large/EnderIO/blockTelePad/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockTransceiver/0.png b/front/public/images/large/EnderIO/blockTransceiver/0.png deleted file mode 100644 index cb1db3ebdb..0000000000 Binary files a/front/public/images/large/EnderIO/blockTransceiver/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockTravelAnchor/0.png b/front/public/images/large/EnderIO/blockTravelAnchor/0.png deleted file mode 100644 index f59d7e5012..0000000000 Binary files a/front/public/images/large/EnderIO/blockTravelAnchor/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockVacuumChest/0.png b/front/public/images/large/EnderIO/blockVacuumChest/0.png deleted file mode 100644 index efb5b52a5b..0000000000 Binary files a/front/public/images/large/EnderIO/blockVacuumChest/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockVapor_of_levity/0.png b/front/public/images/large/EnderIO/blockVapor_of_levity/0.png deleted file mode 100644 index 3b95bc4892..0000000000 Binary files a/front/public/images/large/EnderIO/blockVapor_of_levity/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockVat/0.png b/front/public/images/large/EnderIO/blockVat/0.png deleted file mode 100644 index 8a384e1db2..0000000000 Binary files a/front/public/images/large/EnderIO/blockVat/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockWeatherObelisk/0.png b/front/public/images/large/EnderIO/blockWeatherObelisk/0.png deleted file mode 100644 index 3add8d8e21..0000000000 Binary files a/front/public/images/large/EnderIO/blockWeatherObelisk/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockWirelessCharger/0.png b/front/public/images/large/EnderIO/blockWirelessCharger/0.png deleted file mode 100644 index 106bb3c9dd..0000000000 Binary files a/front/public/images/large/EnderIO/blockWirelessCharger/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/blockZombieGenerator/0.png b/front/public/images/large/EnderIO/blockZombieGenerator/0.png deleted file mode 100644 index 8d746f78cb..0000000000 Binary files a/front/public/images/large/EnderIO/blockZombieGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketCloud_seed/0.png b/front/public/images/large/EnderIO/bucketCloud_seed/0.png deleted file mode 100644 index 4ea2f4dc0a..0000000000 Binary files a/front/public/images/large/EnderIO/bucketCloud_seed/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketCloud_seed_concentrated/0.png b/front/public/images/large/EnderIO/bucketCloud_seed_concentrated/0.png deleted file mode 100644 index 5c39a8a933..0000000000 Binary files a/front/public/images/large/EnderIO/bucketCloud_seed_concentrated/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketEnder_distillation/0.png b/front/public/images/large/EnderIO/bucketEnder_distillation/0.png deleted file mode 100644 index ab33015e94..0000000000 Binary files a/front/public/images/large/EnderIO/bucketEnder_distillation/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketFire_water/0.png b/front/public/images/large/EnderIO/bucketFire_water/0.png deleted file mode 100644 index 9b1411d6c0..0000000000 Binary files a/front/public/images/large/EnderIO/bucketFire_water/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketHootch/0.png b/front/public/images/large/EnderIO/bucketHootch/0.png deleted file mode 100644 index 44b3410586..0000000000 Binary files a/front/public/images/large/EnderIO/bucketHootch/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketLiquid_sunshine/0.png b/front/public/images/large/EnderIO/bucketLiquid_sunshine/0.png deleted file mode 100644 index 3a3f1bf61b..0000000000 Binary files a/front/public/images/large/EnderIO/bucketLiquid_sunshine/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketNutrient_distillation/0.png b/front/public/images/large/EnderIO/bucketNutrient_distillation/0.png deleted file mode 100644 index 16881a0178..0000000000 Binary files a/front/public/images/large/EnderIO/bucketNutrient_distillation/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketRocket_fuel/0.png b/front/public/images/large/EnderIO/bucketRocket_fuel/0.png deleted file mode 100644 index d9319b292d..0000000000 Binary files a/front/public/images/large/EnderIO/bucketRocket_fuel/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/bucketVapor_of_levity/0.png b/front/public/images/large/EnderIO/bucketVapor_of_levity/0.png deleted file mode 100644 index 79aa8c2210..0000000000 Binary files a/front/public/images/large/EnderIO/bucketVapor_of_levity/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_axe/0.png b/front/public/images/large/EnderIO/item.darkSteel_axe/0.png deleted file mode 100644 index 70cd336953..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_axe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_boots/0.png b/front/public/images/large/EnderIO/item.darkSteel_boots/0.png deleted file mode 100644 index e8d663adf1..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_boots/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_chestplate/0.png b/front/public/images/large/EnderIO/item.darkSteel_chestplate/0.png deleted file mode 100644 index 8261e8e485..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_chestplate/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_helmet/0.png b/front/public/images/large/EnderIO/item.darkSteel_helmet/0.png deleted file mode 100644 index 21fb8dc96b..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_leggings/0.png b/front/public/images/large/EnderIO/item.darkSteel_leggings/0.png deleted file mode 100644 index 75b1e8d328..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_leggings/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_pickaxe/0.png b/front/public/images/large/EnderIO/item.darkSteel_pickaxe/0.png deleted file mode 100644 index e1599bb884..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_shears/0.png b/front/public/images/large/EnderIO/item.darkSteel_shears/0.png deleted file mode 100644 index abab5d8138..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_shears/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.darkSteel_sword/0.png b/front/public/images/large/EnderIO/item.darkSteel_sword/0.png deleted file mode 100644 index 07049d2a38..0000000000 Binary files a/front/public/images/large/EnderIO/item.darkSteel_sword/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.endSteel_axe/0.png b/front/public/images/large/EnderIO/item.endSteel_axe/0.png deleted file mode 100644 index 1fdcd66d34..0000000000 Binary files a/front/public/images/large/EnderIO/item.endSteel_axe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.endSteel_boots/0.png b/front/public/images/large/EnderIO/item.endSteel_boots/0.png deleted file mode 100644 index 932784d962..0000000000 Binary files a/front/public/images/large/EnderIO/item.endSteel_boots/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.endSteel_chestplate/0.png b/front/public/images/large/EnderIO/item.endSteel_chestplate/0.png deleted file mode 100644 index 944db1fc4b..0000000000 Binary files a/front/public/images/large/EnderIO/item.endSteel_chestplate/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.endSteel_helmet/0.png b/front/public/images/large/EnderIO/item.endSteel_helmet/0.png deleted file mode 100644 index a2ee23f5b9..0000000000 Binary files a/front/public/images/large/EnderIO/item.endSteel_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.endSteel_leggings/0.png b/front/public/images/large/EnderIO/item.endSteel_leggings/0.png deleted file mode 100644 index 4df4290250..0000000000 Binary files a/front/public/images/large/EnderIO/item.endSteel_leggings/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.endSteel_pickaxe/0.png b/front/public/images/large/EnderIO/item.endSteel_pickaxe/0.png deleted file mode 100644 index 30f630454b..0000000000 Binary files a/front/public/images/large/EnderIO/item.endSteel_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.endSteel_sword/0.png b/front/public/images/large/EnderIO/item.endSteel_sword/0.png deleted file mode 100644 index d0b7087088..0000000000 Binary files a/front/public/images/large/EnderIO/item.endSteel_sword/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.stellar_axe/0.png b/front/public/images/large/EnderIO/item.stellar_axe/0.png deleted file mode 100644 index 289ad740b4..0000000000 Binary files a/front/public/images/large/EnderIO/item.stellar_axe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.stellar_boots/0.png b/front/public/images/large/EnderIO/item.stellar_boots/0.png deleted file mode 100644 index 4902afc595..0000000000 Binary files a/front/public/images/large/EnderIO/item.stellar_boots/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.stellar_chestplate/0.png b/front/public/images/large/EnderIO/item.stellar_chestplate/0.png deleted file mode 100644 index b37dd12784..0000000000 Binary files a/front/public/images/large/EnderIO/item.stellar_chestplate/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.stellar_helmet/0.png b/front/public/images/large/EnderIO/item.stellar_helmet/0.png deleted file mode 100644 index 1298794e0c..0000000000 Binary files a/front/public/images/large/EnderIO/item.stellar_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.stellar_leggings/0.png b/front/public/images/large/EnderIO/item.stellar_leggings/0.png deleted file mode 100644 index b3737e92d4..0000000000 Binary files a/front/public/images/large/EnderIO/item.stellar_leggings/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.stellar_pickaxe/0.png b/front/public/images/large/EnderIO/item.stellar_pickaxe/0.png deleted file mode 100644 index 6fb56ae743..0000000000 Binary files a/front/public/images/large/EnderIO/item.stellar_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/item.stellar_sword/0.png b/front/public/images/large/EnderIO/item.stellar_sword/0.png deleted file mode 100644 index 69ffd99343..0000000000 Binary files a/front/public/images/large/EnderIO/item.stellar_sword/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/0.png b/front/public/images/large/EnderIO/itemAlloy/0.png deleted file mode 100644 index ffbebd6bdc..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/1.png b/front/public/images/large/EnderIO/itemAlloy/1.png deleted file mode 100644 index f72993d8f4..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/2.png b/front/public/images/large/EnderIO/itemAlloy/2.png deleted file mode 100644 index 08382fb0b8..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/3.png b/front/public/images/large/EnderIO/itemAlloy/3.png deleted file mode 100644 index 516a9f5394..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/4.png b/front/public/images/large/EnderIO/itemAlloy/4.png deleted file mode 100644 index 6795457d98..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/5.png b/front/public/images/large/EnderIO/itemAlloy/5.png deleted file mode 100644 index 01821c15d3..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/6.png b/front/public/images/large/EnderIO/itemAlloy/6.png deleted file mode 100644 index ba24622d39..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/7.png b/front/public/images/large/EnderIO/itemAlloy/7.png deleted file mode 100644 index 79569a8a72..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/7.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloy/8.png b/front/public/images/large/EnderIO/itemAlloy/8.png deleted file mode 100644 index 7da6149750..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloy/8.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloyEndergy/0.png b/front/public/images/large/EnderIO/itemAlloyEndergy/0.png deleted file mode 100644 index 9d0f174425..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloyEndergy/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloyEndergy/1.png b/front/public/images/large/EnderIO/itemAlloyEndergy/1.png deleted file mode 100644 index 8c785fbd0a..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloyEndergy/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloyEndergy/2.png b/front/public/images/large/EnderIO/itemAlloyEndergy/2.png deleted file mode 100644 index 394729597c..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloyEndergy/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloyEndergy/3.png b/front/public/images/large/EnderIO/itemAlloyEndergy/3.png deleted file mode 100644 index e18469d4f1..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloyEndergy/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloyEndergy/4.png b/front/public/images/large/EnderIO/itemAlloyEndergy/4.png deleted file mode 100644 index 87f062e0a3..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloyEndergy/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloyEndergy/5.png b/front/public/images/large/EnderIO/itemAlloyEndergy/5.png deleted file mode 100644 index 420d08c4f7..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloyEndergy/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemAlloyEndergy/6.png b/front/public/images/large/EnderIO/itemAlloyEndergy/6.png deleted file mode 100644 index 5c16f20faf..0000000000 Binary files a/front/public/images/large/EnderIO/itemAlloyEndergy/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/0.png b/front/public/images/large/EnderIO/itemBasicCapacitor/0.png deleted file mode 100644 index 087b97cd9c..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/1.png b/front/public/images/large/EnderIO/itemBasicCapacitor/1.png deleted file mode 100644 index fc04d0a4c6..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/2.png b/front/public/images/large/EnderIO/itemBasicCapacitor/2.png deleted file mode 100644 index 53b81b92aa..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/3.png b/front/public/images/large/EnderIO/itemBasicCapacitor/3.png deleted file mode 100644 index 3979fc93c9..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/4.png b/front/public/images/large/EnderIO/itemBasicCapacitor/4.png deleted file mode 100644 index 91afb1cf18..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/5.png b/front/public/images/large/EnderIO/itemBasicCapacitor/5.png deleted file mode 100644 index 6568166cc4..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/6.png b/front/public/images/large/EnderIO/itemBasicCapacitor/6.png deleted file mode 100644 index 4fbf76312e..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/7.png b/front/public/images/large/EnderIO/itemBasicCapacitor/7.png deleted file mode 100644 index 507ff4b42d..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/7.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/8.png b/front/public/images/large/EnderIO/itemBasicCapacitor/8.png deleted file mode 100644 index 24fc8db51d..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/8.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicCapacitor/9.png b/front/public/images/large/EnderIO/itemBasicCapacitor/9.png deleted file mode 100644 index 6a6a6acd50..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicCapacitor/9.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicFilterUpgrade/0.png b/front/public/images/large/EnderIO/itemBasicFilterUpgrade/0.png deleted file mode 100644 index 8848531499..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicFilterUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBasicFilterUpgrade/1.png b/front/public/images/large/EnderIO/itemBasicFilterUpgrade/1.png deleted file mode 100644 index bbc39a7b77..0000000000 Binary files a/front/public/images/large/EnderIO/itemBasicFilterUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBigFilterUpgrade/0.png b/front/public/images/large/EnderIO/itemBigFilterUpgrade/0.png deleted file mode 100644 index 8a1478cfaf..0000000000 Binary files a/front/public/images/large/EnderIO/itemBigFilterUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBigFilterUpgrade/1.png b/front/public/images/large/EnderIO/itemBigFilterUpgrade/1.png deleted file mode 100644 index 2bf0626a2b..0000000000 Binary files a/front/public/images/large/EnderIO/itemBigFilterUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemBrokenSpawner/0.png b/front/public/images/large/EnderIO/itemBrokenSpawner/0.png deleted file mode 100644 index d2161e8260..0000000000 Binary files a/front/public/images/large/EnderIO/itemBrokenSpawner/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemConduitFacade/0.png b/front/public/images/large/EnderIO/itemConduitFacade/0.png deleted file mode 100644 index ae5d6f79a6..0000000000 Binary files a/front/public/images/large/EnderIO/itemConduitFacade/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemConduitFacade/1.png b/front/public/images/large/EnderIO/itemConduitFacade/1.png deleted file mode 100644 index 56773d8372..0000000000 Binary files a/front/public/images/large/EnderIO/itemConduitFacade/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemConduitProbe/0.png b/front/public/images/large/EnderIO/itemConduitProbe/0.png deleted file mode 100644 index 4879baeb06..0000000000 Binary files a/front/public/images/large/EnderIO/itemConduitProbe/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemCoordSelector/0.png b/front/public/images/large/EnderIO/itemCoordSelector/0.png deleted file mode 100644 index b55c4b6e7c..0000000000 Binary files a/front/public/images/large/EnderIO/itemCoordSelector/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemEnderFood/0.png b/front/public/images/large/EnderIO/itemEnderFood/0.png deleted file mode 100644 index 0390e6fbf3..0000000000 Binary files a/front/public/images/large/EnderIO/itemEnderFood/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemEnderface/0.png b/front/public/images/large/EnderIO/itemEnderface/0.png deleted file mode 100644 index abf39a6863..0000000000 Binary files a/front/public/images/large/EnderIO/itemEnderface/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemExistingItemFilter/0.png b/front/public/images/large/EnderIO/itemExistingItemFilter/0.png deleted file mode 100644 index 6865f19a23..0000000000 Binary files a/front/public/images/large/EnderIO/itemExistingItemFilter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemExtractSpeedUpgrade/0.png b/front/public/images/large/EnderIO/itemExtractSpeedUpgrade/0.png deleted file mode 100644 index 1a2a27cf74..0000000000 Binary files a/front/public/images/large/EnderIO/itemExtractSpeedUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemExtractSpeedUpgrade/1.png b/front/public/images/large/EnderIO/itemExtractSpeedUpgrade/1.png deleted file mode 100644 index 2a4f0cf798..0000000000 Binary files a/front/public/images/large/EnderIO/itemExtractSpeedUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFrankenSkull/0.png b/front/public/images/large/EnderIO/itemFrankenSkull/0.png deleted file mode 100644 index 8f8cc1e376..0000000000 Binary files a/front/public/images/large/EnderIO/itemFrankenSkull/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFrankenSkull/1.png b/front/public/images/large/EnderIO/itemFrankenSkull/1.png deleted file mode 100644 index 5252cef833..0000000000 Binary files a/front/public/images/large/EnderIO/itemFrankenSkull/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFrankenSkull/2.png b/front/public/images/large/EnderIO/itemFrankenSkull/2.png deleted file mode 100644 index 5252cef833..0000000000 Binary files a/front/public/images/large/EnderIO/itemFrankenSkull/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFrankenSkull/3.png b/front/public/images/large/EnderIO/itemFrankenSkull/3.png deleted file mode 100644 index c984fd95ed..0000000000 Binary files a/front/public/images/large/EnderIO/itemFrankenSkull/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFrankenSkull/4.png b/front/public/images/large/EnderIO/itemFrankenSkull/4.png deleted file mode 100644 index c984fd95ed..0000000000 Binary files a/front/public/images/large/EnderIO/itemFrankenSkull/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFrankenSkull/5.png b/front/public/images/large/EnderIO/itemFrankenSkull/5.png deleted file mode 100644 index 0af78093b5..0000000000 Binary files a/front/public/images/large/EnderIO/itemFrankenSkull/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFrankenSkull/6.png b/front/public/images/large/EnderIO/itemFrankenSkull/6.png deleted file mode 100644 index 999e1370c5..0000000000 Binary files a/front/public/images/large/EnderIO/itemFrankenSkull/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFunctionUpgrade/0.png b/front/public/images/large/EnderIO/itemFunctionUpgrade/0.png deleted file mode 100644 index d3c7702321..0000000000 Binary files a/front/public/images/large/EnderIO/itemFunctionUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemFusedQuartzFrame/0.png b/front/public/images/large/EnderIO/itemFusedQuartzFrame/0.png deleted file mode 100644 index b901c1f1be..0000000000 Binary files a/front/public/images/large/EnderIO/itemFusedQuartzFrame/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGliderWing/0.png b/front/public/images/large/EnderIO/itemGliderWing/0.png deleted file mode 100644 index 8c25c0db97..0000000000 Binary files a/front/public/images/large/EnderIO/itemGliderWing/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGliderWing/1.png b/front/public/images/large/EnderIO/itemGliderWing/1.png deleted file mode 100644 index 1b52d73b87..0000000000 Binary files a/front/public/images/large/EnderIO/itemGliderWing/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/0.png b/front/public/images/large/EnderIO/itemGrindingBall/0.png deleted file mode 100644 index 64d8387f05..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/1.png b/front/public/images/large/EnderIO/itemGrindingBall/1.png deleted file mode 100644 index b7746d004e..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/2.png b/front/public/images/large/EnderIO/itemGrindingBall/2.png deleted file mode 100644 index 86125d546c..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/3.png b/front/public/images/large/EnderIO/itemGrindingBall/3.png deleted file mode 100644 index 747b9b1d0a..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/4.png b/front/public/images/large/EnderIO/itemGrindingBall/4.png deleted file mode 100644 index c7a32bda07..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/5.png b/front/public/images/large/EnderIO/itemGrindingBall/5.png deleted file mode 100644 index fcc6a99df2..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/6.png b/front/public/images/large/EnderIO/itemGrindingBall/6.png deleted file mode 100644 index f66fbd384d..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/7.png b/front/public/images/large/EnderIO/itemGrindingBall/7.png deleted file mode 100644 index 480b29a5b2..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/7.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBall/8.png b/front/public/images/large/EnderIO/itemGrindingBall/8.png deleted file mode 100644 index 6778eac1d3..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBall/8.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBallEndergy/0.png b/front/public/images/large/EnderIO/itemGrindingBallEndergy/0.png deleted file mode 100644 index a643e9c475..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBallEndergy/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBallEndergy/1.png b/front/public/images/large/EnderIO/itemGrindingBallEndergy/1.png deleted file mode 100644 index bc4669a794..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBallEndergy/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBallEndergy/2.png b/front/public/images/large/EnderIO/itemGrindingBallEndergy/2.png deleted file mode 100644 index 3438f08eab..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBallEndergy/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBallEndergy/3.png b/front/public/images/large/EnderIO/itemGrindingBallEndergy/3.png deleted file mode 100644 index 74cc35b69d..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBallEndergy/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBallEndergy/4.png b/front/public/images/large/EnderIO/itemGrindingBallEndergy/4.png deleted file mode 100644 index 0f0cbb5ee3..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBallEndergy/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBallEndergy/5.png b/front/public/images/large/EnderIO/itemGrindingBallEndergy/5.png deleted file mode 100644 index f0d5233e74..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBallEndergy/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemGrindingBallEndergy/6.png b/front/public/images/large/EnderIO/itemGrindingBallEndergy/6.png deleted file mode 100644 index c652bab4bf..0000000000 Binary files a/front/public/images/large/EnderIO/itemGrindingBallEndergy/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemItemConduit/0.png b/front/public/images/large/EnderIO/itemItemConduit/0.png deleted file mode 100644 index e6f40862c4..0000000000 Binary files a/front/public/images/large/EnderIO/itemItemConduit/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLimitedItemFilter/0.png b/front/public/images/large/EnderIO/itemLimitedItemFilter/0.png deleted file mode 100644 index ae0ecd09c0..0000000000 Binary files a/front/public/images/large/EnderIO/itemLimitedItemFilter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLiquidConduit/0.png b/front/public/images/large/EnderIO/itemLiquidConduit/0.png deleted file mode 100644 index 9545114870..0000000000 Binary files a/front/public/images/large/EnderIO/itemLiquidConduit/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLiquidConduit/1.png b/front/public/images/large/EnderIO/itemLiquidConduit/1.png deleted file mode 100644 index 8c3f101e67..0000000000 Binary files a/front/public/images/large/EnderIO/itemLiquidConduit/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLiquidConduit/2.png b/front/public/images/large/EnderIO/itemLiquidConduit/2.png deleted file mode 100644 index 90bd1b4148..0000000000 Binary files a/front/public/images/large/EnderIO/itemLiquidConduit/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLiquidConduit/3.png b/front/public/images/large/EnderIO/itemLiquidConduit/3.png deleted file mode 100644 index 74eae4af24..0000000000 Binary files a/front/public/images/large/EnderIO/itemLiquidConduit/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLiquidConduit/4.png b/front/public/images/large/EnderIO/itemLiquidConduit/4.png deleted file mode 100644 index 131c898034..0000000000 Binary files a/front/public/images/large/EnderIO/itemLiquidConduit/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLiquidConduit/5.png b/front/public/images/large/EnderIO/itemLiquidConduit/5.png deleted file mode 100644 index 627b910819..0000000000 Binary files a/front/public/images/large/EnderIO/itemLiquidConduit/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemLiquidConduit/6.png b/front/public/images/large/EnderIO/itemLiquidConduit/6.png deleted file mode 100644 index 34761d90f1..0000000000 Binary files a/front/public/images/large/EnderIO/itemLiquidConduit/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMEConduit/0.png b/front/public/images/large/EnderIO/itemMEConduit/0.png deleted file mode 100644 index c0196287b0..0000000000 Binary files a/front/public/images/large/EnderIO/itemMEConduit/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMEConduit/1.png b/front/public/images/large/EnderIO/itemMEConduit/1.png deleted file mode 100644 index 5d47567d3e..0000000000 Binary files a/front/public/images/large/EnderIO/itemMEConduit/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMEConduit/2.png b/front/public/images/large/EnderIO/itemMEConduit/2.png deleted file mode 100644 index e00c89b846..0000000000 Binary files a/front/public/images/large/EnderIO/itemMEConduit/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMachinePart/0.png b/front/public/images/large/EnderIO/itemMachinePart/0.png deleted file mode 100644 index aca3bf2b90..0000000000 Binary files a/front/public/images/large/EnderIO/itemMachinePart/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMachinePart/1.png b/front/public/images/large/EnderIO/itemMachinePart/1.png deleted file mode 100644 index 2384f73bec..0000000000 Binary files a/front/public/images/large/EnderIO/itemMachinePart/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMachinePart/2.png b/front/public/images/large/EnderIO/itemMachinePart/2.png deleted file mode 100644 index 0b928d0cda..0000000000 Binary files a/front/public/images/large/EnderIO/itemMachinePart/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMachinePart/3.png b/front/public/images/large/EnderIO/itemMachinePart/3.png deleted file mode 100644 index 0e1e72639b..0000000000 Binary files a/front/public/images/large/EnderIO/itemMachinePart/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMagnet/0.png b/front/public/images/large/EnderIO/itemMagnet/0.png deleted file mode 100644 index 7dc440549b..0000000000 Binary files a/front/public/images/large/EnderIO/itemMagnet/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMagnet/16.png b/front/public/images/large/EnderIO/itemMagnet/16.png deleted file mode 100644 index 7dc440549b..0000000000 Binary files a/front/public/images/large/EnderIO/itemMagnet/16.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/0.png b/front/public/images/large/EnderIO/itemMaterial/0.png deleted file mode 100644 index cb4eae147a..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/1.png b/front/public/images/large/EnderIO/itemMaterial/1.png deleted file mode 100644 index b3c8ae79be..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/10.png b/front/public/images/large/EnderIO/itemMaterial/10.png deleted file mode 100644 index c6cd79dfce..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/10.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/11.png b/front/public/images/large/EnderIO/itemMaterial/11.png deleted file mode 100644 index 347dd80c78..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/11.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/12.png b/front/public/images/large/EnderIO/itemMaterial/12.png deleted file mode 100644 index d47abdcf00..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/12.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/13.png b/front/public/images/large/EnderIO/itemMaterial/13.png deleted file mode 100644 index fb014a5032..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/13.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/14.png b/front/public/images/large/EnderIO/itemMaterial/14.png deleted file mode 100644 index f8194b9735..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/14.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/15.png b/front/public/images/large/EnderIO/itemMaterial/15.png deleted file mode 100644 index 624403b382..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/15.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/16.png b/front/public/images/large/EnderIO/itemMaterial/16.png deleted file mode 100644 index fa3f612fdb..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/16.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/17.png b/front/public/images/large/EnderIO/itemMaterial/17.png deleted file mode 100644 index 3080b1836a..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/17.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/2.png b/front/public/images/large/EnderIO/itemMaterial/2.png deleted file mode 100644 index 5fe8e24c02..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/3.png b/front/public/images/large/EnderIO/itemMaterial/3.png deleted file mode 100644 index 7377b141f7..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/4.png b/front/public/images/large/EnderIO/itemMaterial/4.png deleted file mode 100644 index 296b740a14..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/5.png b/front/public/images/large/EnderIO/itemMaterial/5.png deleted file mode 100644 index 693f7260d4..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/6.png b/front/public/images/large/EnderIO/itemMaterial/6.png deleted file mode 100644 index 0c42b157ae..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/7.png b/front/public/images/large/EnderIO/itemMaterial/7.png deleted file mode 100644 index f66fbd384d..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/7.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/8.png b/front/public/images/large/EnderIO/itemMaterial/8.png deleted file mode 100644 index 0f11d9d73e..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/8.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemMaterial/9.png b/front/public/images/large/EnderIO/itemMaterial/9.png deleted file mode 100644 index 962d92f4df..0000000000 Binary files a/front/public/images/large/EnderIO/itemMaterial/9.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemModItemFilter/0.png b/front/public/images/large/EnderIO/itemModItemFilter/0.png deleted file mode 100644 index 83ed0e24c0..0000000000 Binary files a/front/public/images/large/EnderIO/itemModItemFilter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemOCConduit/0.png b/front/public/images/large/EnderIO/itemOCConduit/0.png deleted file mode 100644 index 08c7c19b3b..0000000000 Binary files a/front/public/images/large/EnderIO/itemOCConduit/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/0.png b/front/public/images/large/EnderIO/itemPowderIngot/0.png deleted file mode 100644 index 3afb1c364e..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/1.png b/front/public/images/large/EnderIO/itemPowderIngot/1.png deleted file mode 100644 index 74612c255e..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/2.png b/front/public/images/large/EnderIO/itemPowderIngot/2.png deleted file mode 100644 index 61cda13508..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/3.png b/front/public/images/large/EnderIO/itemPowderIngot/3.png deleted file mode 100644 index 16f4e62f98..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/4.png b/front/public/images/large/EnderIO/itemPowderIngot/4.png deleted file mode 100644 index b6616185a9..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/6.png b/front/public/images/large/EnderIO/itemPowderIngot/6.png deleted file mode 100644 index 1232a8435f..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/7.png b/front/public/images/large/EnderIO/itemPowderIngot/7.png deleted file mode 100644 index b924a3c66a..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/7.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowderIngot/8.png b/front/public/images/large/EnderIO/itemPowderIngot/8.png deleted file mode 100644 index 95e896fe93..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowderIngot/8.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduit/0.png b/front/public/images/large/EnderIO/itemPowerConduit/0.png deleted file mode 100644 index 4dfe07aa97..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduit/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduit/1.png b/front/public/images/large/EnderIO/itemPowerConduit/1.png deleted file mode 100644 index 0494b3a838..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduit/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduit/2.png b/front/public/images/large/EnderIO/itemPowerConduit/2.png deleted file mode 100644 index bfd6219341..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduit/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/0.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/0.png deleted file mode 100644 index 8507f75f48..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/1.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/1.png deleted file mode 100644 index 32d3d94f4a..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/10.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/10.png deleted file mode 100644 index 1386819665..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/10.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/11.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/11.png deleted file mode 100644 index b8c99308d5..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/11.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/2.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/2.png deleted file mode 100644 index fc74d8946c..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/3.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/3.png deleted file mode 100644 index 9234b61787..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/3.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/4.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/4.png deleted file mode 100644 index 537d5ca1b3..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/4.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/5.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/5.png deleted file mode 100644 index ec5fe6f1c6..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/5.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/6.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/6.png deleted file mode 100644 index c4e065f9b9..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/6.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/7.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/7.png deleted file mode 100644 index d7115caf2f..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/7.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/8.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/8.png deleted file mode 100644 index 1735e1fd90..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/8.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerConduitEndergy/9.png b/front/public/images/large/EnderIO/itemPowerConduitEndergy/9.png deleted file mode 100644 index 0dc687c06b..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerConduitEndergy/9.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemPowerItemFilter/0.png b/front/public/images/large/EnderIO/itemPowerItemFilter/0.png deleted file mode 100644 index 34b13ab28d..0000000000 Binary files a/front/public/images/large/EnderIO/itemPowerItemFilter/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemRedstoneConduit/0.png b/front/public/images/large/EnderIO/itemRedstoneConduit/0.png deleted file mode 100644 index 338b3d9109..0000000000 Binary files a/front/public/images/large/EnderIO/itemRedstoneConduit/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemRedstoneConduit/1.png b/front/public/images/large/EnderIO/itemRedstoneConduit/1.png deleted file mode 100644 index 305fcfbaa1..0000000000 Binary files a/front/public/images/large/EnderIO/itemRedstoneConduit/1.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemRedstoneConduit/2.png b/front/public/images/large/EnderIO/itemRedstoneConduit/2.png deleted file mode 100644 index bd375e119a..0000000000 Binary files a/front/public/images/large/EnderIO/itemRedstoneConduit/2.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemSoulVessel/0.png b/front/public/images/large/EnderIO/itemSoulVessel/0.png deleted file mode 100644 index ffd22d1cd4..0000000000 Binary files a/front/public/images/large/EnderIO/itemSoulVessel/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemTeleportStaff/0.png b/front/public/images/large/EnderIO/itemTeleportStaff/0.png deleted file mode 100644 index b5ad63a402..0000000000 Binary files a/front/public/images/large/EnderIO/itemTeleportStaff/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemTravelStaff/0.png b/front/public/images/large/EnderIO/itemTravelStaff/0.png deleted file mode 100644 index b5c7ff6bd7..0000000000 Binary files a/front/public/images/large/EnderIO/itemTravelStaff/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemTravelStaff/16.png b/front/public/images/large/EnderIO/itemTravelStaff/16.png deleted file mode 100644 index b5c7ff6bd7..0000000000 Binary files a/front/public/images/large/EnderIO/itemTravelStaff/16.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemXpTransfer/0.png b/front/public/images/large/EnderIO/itemXpTransfer/0.png deleted file mode 100644 index 5289c89ddb..0000000000 Binary files a/front/public/images/large/EnderIO/itemXpTransfer/0.png and /dev/null differ diff --git a/front/public/images/large/EnderIO/itemYetaWrench/0.png b/front/public/images/large/EnderIO/itemYetaWrench/0.png deleted file mode 100644 index 28555a4911..0000000000 Binary files a/front/public/images/large/EnderIO/itemYetaWrench/0.png and /dev/null differ diff --git a/front/public/images/large/EnderStorage/enderChest/0.png b/front/public/images/large/EnderStorage/enderChest/0.png deleted file mode 100644 index 0c2147b3ba..0000000000 Binary files a/front/public/images/large/EnderStorage/enderChest/0.png and /dev/null differ diff --git a/front/public/images/large/EnderStorage/enderChest/4096.png b/front/public/images/large/EnderStorage/enderChest/4096.png deleted file mode 100644 index 0c226b1494..0000000000 Binary files a/front/public/images/large/EnderStorage/enderChest/4096.png and /dev/null differ diff --git a/front/public/images/large/EnderStorage/enderPouch/0.png b/front/public/images/large/EnderStorage/enderPouch/0.png deleted file mode 100644 index 7b3257b3ea..0000000000 Binary files a/front/public/images/large/EnderStorage/enderPouch/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/blockConcussionCharge/0.png b/front/public/images/large/EnderZoo/blockConcussionCharge/0.png deleted file mode 100644 index 1693770305..0000000000 Binary files a/front/public/images/large/EnderZoo/blockConcussionCharge/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/blockConfusingCharge/0.png b/front/public/images/large/EnderZoo/blockConfusingCharge/0.png deleted file mode 100644 index 90f75f71ef..0000000000 Binary files a/front/public/images/large/EnderZoo/blockConfusingCharge/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/blockEnderCharge/0.png b/front/public/images/large/EnderZoo/blockEnderCharge/0.png deleted file mode 100644 index 5a28798acb..0000000000 Binary files a/front/public/images/large/EnderZoo/blockEnderCharge/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/confusingDust/0.png b/front/public/images/large/EnderZoo/confusingDust/0.png deleted file mode 100644 index b179f66662..0000000000 Binary files a/front/public/images/large/EnderZoo/confusingDust/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/enderFragment/0.png b/front/public/images/large/EnderZoo/enderFragment/0.png deleted file mode 100644 index e3c17d0cdc..0000000000 Binary files a/front/public/images/large/EnderZoo/enderFragment/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/enderZooIcon/0.png b/front/public/images/large/EnderZoo/enderZooIcon/0.png deleted file mode 100644 index e757271ad8..0000000000 Binary files a/front/public/images/large/EnderZoo/enderZooIcon/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/guardiansBow/0.png b/front/public/images/large/EnderZoo/guardiansBow/0.png deleted file mode 100644 index 154447fdd6..0000000000 Binary files a/front/public/images/large/EnderZoo/guardiansBow/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/0.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/0.png deleted file mode 100644 index 528ac94b00..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/0.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/1.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/1.png deleted file mode 100644 index 17f46ddd22..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/1.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/2.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/2.png deleted file mode 100644 index f6179b171c..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/2.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/3.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/3.png deleted file mode 100644 index 56e5e1e8a7..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/3.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/4.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/4.png deleted file mode 100644 index 35fa6c9082..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/4.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/5.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/5.png deleted file mode 100644 index 4b4e5eca72..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/5.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/6.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/6.png deleted file mode 100644 index 46910a7db5..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/6.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/7.png b/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/7.png deleted file mode 100644 index e6c2b8b587..0000000000 Binary files a/front/public/images/large/EnderZoo/itemSpawnEggEnderZoo/7.png and /dev/null differ diff --git a/front/public/images/large/EnderZoo/witheringDust/0.png b/front/public/images/large/EnderZoo/witheringDust/0.png deleted file mode 100644 index 7b7480566c..0000000000 Binary files a/front/public/images/large/EnderZoo/witheringDust/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/0.png b/front/public/images/large/ExtraBees/alveary/0.png deleted file mode 100644 index 886441a445..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/1.png b/front/public/images/large/ExtraBees/alveary/1.png deleted file mode 100644 index 47f560232c..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/2.png b/front/public/images/large/ExtraBees/alveary/2.png deleted file mode 100644 index 58053c61a8..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/3.png b/front/public/images/large/ExtraBees/alveary/3.png deleted file mode 100644 index 1323c5d226..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/4.png b/front/public/images/large/ExtraBees/alveary/4.png deleted file mode 100644 index c8b866edf4..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/5.png b/front/public/images/large/ExtraBees/alveary/5.png deleted file mode 100644 index 78b1f9dfc3..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/6.png b/front/public/images/large/ExtraBees/alveary/6.png deleted file mode 100644 index ddd3e76dd5..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/alveary/7.png b/front/public/images/large/ExtraBees/alveary/7.png deleted file mode 100644 index 5e05b5ac49..0000000000 Binary files a/front/public/images/large/ExtraBees/alveary/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/dictionary/0.png b/front/public/images/large/ExtraBees/dictionary/0.png deleted file mode 100644 index da3b88a70e..0000000000 Binary files a/front/public/images/large/ExtraBees/dictionary/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/dictionary/1.png b/front/public/images/large/ExtraBees/dictionary/1.png deleted file mode 100644 index 660e58633f..0000000000 Binary files a/front/public/images/large/ExtraBees/dictionary/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/ectoplasm/0.png b/front/public/images/large/ExtraBees/ectoplasm/0.png deleted file mode 100644 index 9d165e813c..0000000000 Binary files a/front/public/images/large/ExtraBees/ectoplasm/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hive/0.png b/front/public/images/large/ExtraBees/hive/0.png deleted file mode 100644 index 82402bde46..0000000000 Binary files a/front/public/images/large/ExtraBees/hive/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hive/1.png b/front/public/images/large/ExtraBees/hive/1.png deleted file mode 100644 index 2c1144b7a8..0000000000 Binary files a/front/public/images/large/ExtraBees/hive/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hive/2.png b/front/public/images/large/ExtraBees/hive/2.png deleted file mode 100644 index b7652fac6f..0000000000 Binary files a/front/public/images/large/ExtraBees/hive/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hive/3.png b/front/public/images/large/ExtraBees/hive/3.png deleted file mode 100644 index f6f1527705..0000000000 Binary files a/front/public/images/large/ExtraBees/hive/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hiveFrame.cage/0.png b/front/public/images/large/ExtraBees/hiveFrame.cage/0.png deleted file mode 100644 index e3db0052b9..0000000000 Binary files a/front/public/images/large/ExtraBees/hiveFrame.cage/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hiveFrame.clay/0.png b/front/public/images/large/ExtraBees/hiveFrame.clay/0.png deleted file mode 100644 index 840a644788..0000000000 Binary files a/front/public/images/large/ExtraBees/hiveFrame.clay/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hiveFrame.cocoa/0.png b/front/public/images/large/ExtraBees/hiveFrame.cocoa/0.png deleted file mode 100644 index 635d500871..0000000000 Binary files a/front/public/images/large/ExtraBees/hiveFrame.cocoa/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hiveFrame.debug/0.png b/front/public/images/large/ExtraBees/hiveFrame.debug/0.png deleted file mode 100644 index 71b591c40e..0000000000 Binary files a/front/public/images/large/ExtraBees/hiveFrame.debug/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/hiveFrame.soul/0.png b/front/public/images/large/ExtraBees/hiveFrame.soul/0.png deleted file mode 100644 index 217ecec56f..0000000000 Binary files a/front/public/images/large/ExtraBees/hiveFrame.soul/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/10.png b/front/public/images/large/ExtraBees/honeyComb/10.png deleted file mode 100644 index 82cf9e8dad..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/13.png b/front/public/images/large/ExtraBees/honeyComb/13.png deleted file mode 100644 index ca4bf0b64f..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/15.png b/front/public/images/large/ExtraBees/honeyComb/15.png deleted file mode 100644 index 927df19bf3..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/16.png b/front/public/images/large/ExtraBees/honeyComb/16.png deleted file mode 100644 index 2a469ffbe6..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/17.png b/front/public/images/large/ExtraBees/honeyComb/17.png deleted file mode 100644 index d6afcbfefd..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/18.png b/front/public/images/large/ExtraBees/honeyComb/18.png deleted file mode 100644 index 479b462f52..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/19.png b/front/public/images/large/ExtraBees/honeyComb/19.png deleted file mode 100644 index f68b9ec671..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/20.png b/front/public/images/large/ExtraBees/honeyComb/20.png deleted file mode 100644 index aa429d1df3..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/24.png b/front/public/images/large/ExtraBees/honeyComb/24.png deleted file mode 100644 index 620507a179..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/24.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/25.png b/front/public/images/large/ExtraBees/honeyComb/25.png deleted file mode 100644 index a4a9cf59a8..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/25.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/26.png b/front/public/images/large/ExtraBees/honeyComb/26.png deleted file mode 100644 index e3e0cc78ce..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/26.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/27.png b/front/public/images/large/ExtraBees/honeyComb/27.png deleted file mode 100644 index 55a18c1de4..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/27.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/3.png b/front/public/images/large/ExtraBees/honeyComb/3.png deleted file mode 100644 index e34941a3c7..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/30.png b/front/public/images/large/ExtraBees/honeyComb/30.png deleted file mode 100644 index 4fbec6ada9..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/30.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/31.png b/front/public/images/large/ExtraBees/honeyComb/31.png deleted file mode 100644 index 62f5e5c603..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/31.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/32.png b/front/public/images/large/ExtraBees/honeyComb/32.png deleted file mode 100644 index 2d26410de2..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/33.png b/front/public/images/large/ExtraBees/honeyComb/33.png deleted file mode 100644 index 58dfacc13d..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/34.png b/front/public/images/large/ExtraBees/honeyComb/34.png deleted file mode 100644 index 2981a424a5..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/35.png b/front/public/images/large/ExtraBees/honeyComb/35.png deleted file mode 100644 index 6afafefc15..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/35.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/36.png b/front/public/images/large/ExtraBees/honeyComb/36.png deleted file mode 100644 index 2a538251d5..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/36.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/37.png b/front/public/images/large/ExtraBees/honeyComb/37.png deleted file mode 100644 index 58dfacc13d..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/37.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/39.png b/front/public/images/large/ExtraBees/honeyComb/39.png deleted file mode 100644 index 99bce08ca3..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/39.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/4.png b/front/public/images/large/ExtraBees/honeyComb/4.png deleted file mode 100644 index 58f920e5ae..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/40.png b/front/public/images/large/ExtraBees/honeyComb/40.png deleted file mode 100644 index a0dd093b0c..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/40.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/41.png b/front/public/images/large/ExtraBees/honeyComb/41.png deleted file mode 100644 index c44a321ff3..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/41.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/42.png b/front/public/images/large/ExtraBees/honeyComb/42.png deleted file mode 100644 index 2840b50a83..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/42.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/5.png b/front/public/images/large/ExtraBees/honeyComb/5.png deleted file mode 100644 index 99bef4d247..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/59.png b/front/public/images/large/ExtraBees/honeyComb/59.png deleted file mode 100644 index 502f46c8de..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/59.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/6.png b/front/public/images/large/ExtraBees/honeyComb/6.png deleted file mode 100644 index dda7f67f7e..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/61.png b/front/public/images/large/ExtraBees/honeyComb/61.png deleted file mode 100644 index 8d91e857e7..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/61.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/62.png b/front/public/images/large/ExtraBees/honeyComb/62.png deleted file mode 100644 index 8809406e18..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/62.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/64.png b/front/public/images/large/ExtraBees/honeyComb/64.png deleted file mode 100644 index 7f9944f876..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/64.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/65.png b/front/public/images/large/ExtraBees/honeyComb/65.png deleted file mode 100644 index b6225b988f..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/65.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/7.png b/front/public/images/large/ExtraBees/honeyComb/7.png deleted file mode 100644 index 27f01c4d42..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/8.png b/front/public/images/large/ExtraBees/honeyComb/8.png deleted file mode 100644 index 98b3d8490d..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyComb/9.png b/front/public/images/large/ExtraBees/honeyComb/9.png deleted file mode 100644 index d4020f8062..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyComb/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/1.png b/front/public/images/large/ExtraBees/honeyDrop/1.png deleted file mode 100644 index fc7dba6303..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/10.png b/front/public/images/large/ExtraBees/honeyDrop/10.png deleted file mode 100644 index 4ca6e4c9b7..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/11.png b/front/public/images/large/ExtraBees/honeyDrop/11.png deleted file mode 100644 index 8099e1926d..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/12.png b/front/public/images/large/ExtraBees/honeyDrop/12.png deleted file mode 100644 index 768545fb92..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/13.png b/front/public/images/large/ExtraBees/honeyDrop/13.png deleted file mode 100644 index a5bac6c14c..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/14.png b/front/public/images/large/ExtraBees/honeyDrop/14.png deleted file mode 100644 index d5faf6a3b3..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/15.png b/front/public/images/large/ExtraBees/honeyDrop/15.png deleted file mode 100644 index a251b3ee8c..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/16.png b/front/public/images/large/ExtraBees/honeyDrop/16.png deleted file mode 100644 index b375017adf..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/17.png b/front/public/images/large/ExtraBees/honeyDrop/17.png deleted file mode 100644 index c5da1af1f2..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/18.png b/front/public/images/large/ExtraBees/honeyDrop/18.png deleted file mode 100644 index 739b68e0f1..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/19.png b/front/public/images/large/ExtraBees/honeyDrop/19.png deleted file mode 100644 index 737ad17e7a..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/2.png b/front/public/images/large/ExtraBees/honeyDrop/2.png deleted file mode 100644 index 7aa4218353..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/20.png b/front/public/images/large/ExtraBees/honeyDrop/20.png deleted file mode 100644 index bb0c47908d..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/21.png b/front/public/images/large/ExtraBees/honeyDrop/21.png deleted file mode 100644 index f655c12da8..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/21.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/22.png b/front/public/images/large/ExtraBees/honeyDrop/22.png deleted file mode 100644 index 9e48eff824..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/22.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/23.png b/front/public/images/large/ExtraBees/honeyDrop/23.png deleted file mode 100644 index 9841937f5e..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/23.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/3.png b/front/public/images/large/ExtraBees/honeyDrop/3.png deleted file mode 100644 index 87896d0b85..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/4.png b/front/public/images/large/ExtraBees/honeyDrop/4.png deleted file mode 100644 index f46f020ce3..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/5.png b/front/public/images/large/ExtraBees/honeyDrop/5.png deleted file mode 100644 index bf27d37b52..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/6.png b/front/public/images/large/ExtraBees/honeyDrop/6.png deleted file mode 100644 index d64078bd59..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/7.png b/front/public/images/large/ExtraBees/honeyDrop/7.png deleted file mode 100644 index ad583da283..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/8.png b/front/public/images/large/ExtraBees/honeyDrop/8.png deleted file mode 100644 index 03b05a9f83..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/honeyDrop/9.png b/front/public/images/large/ExtraBees/honeyDrop/9.png deleted file mode 100644 index 62d12c7569..0000000000 Binary files a/front/public/images/large/ExtraBees/honeyDrop/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/0.png b/front/public/images/large/ExtraBees/misc/0.png deleted file mode 100644 index d5c8b8e942..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/1.png b/front/public/images/large/ExtraBees/misc/1.png deleted file mode 100644 index 0265329b20..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/10.png b/front/public/images/large/ExtraBees/misc/10.png deleted file mode 100644 index 6f5189390b..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/11.png b/front/public/images/large/ExtraBees/misc/11.png deleted file mode 100644 index c161f76fd1..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/12.png b/front/public/images/large/ExtraBees/misc/12.png deleted file mode 100644 index 935effcde0..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/13.png b/front/public/images/large/ExtraBees/misc/13.png deleted file mode 100644 index 550929e871..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/14.png b/front/public/images/large/ExtraBees/misc/14.png deleted file mode 100644 index 3fa37047a7..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/15.png b/front/public/images/large/ExtraBees/misc/15.png deleted file mode 100644 index 2c8cd83b44..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/16.png b/front/public/images/large/ExtraBees/misc/16.png deleted file mode 100644 index 92ab65944e..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/17.png b/front/public/images/large/ExtraBees/misc/17.png deleted file mode 100644 index bce0802f4a..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/18.png b/front/public/images/large/ExtraBees/misc/18.png deleted file mode 100644 index 7267ad9ecd..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/19.png b/front/public/images/large/ExtraBees/misc/19.png deleted file mode 100644 index e9878c1bd4..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/2.png b/front/public/images/large/ExtraBees/misc/2.png deleted file mode 100644 index d6550cb714..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/20.png b/front/public/images/large/ExtraBees/misc/20.png deleted file mode 100644 index b0e2101799..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/21.png b/front/public/images/large/ExtraBees/misc/21.png deleted file mode 100644 index 1b118cbce8..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/21.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/22.png b/front/public/images/large/ExtraBees/misc/22.png deleted file mode 100644 index d52022848a..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/22.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/23.png b/front/public/images/large/ExtraBees/misc/23.png deleted file mode 100644 index 550ed112d3..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/23.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/24.png b/front/public/images/large/ExtraBees/misc/24.png deleted file mode 100644 index d17328469f..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/24.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/25.png b/front/public/images/large/ExtraBees/misc/25.png deleted file mode 100644 index ff27f31d95..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/25.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/26.png b/front/public/images/large/ExtraBees/misc/26.png deleted file mode 100644 index 1583acd4c0..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/26.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/3.png b/front/public/images/large/ExtraBees/misc/3.png deleted file mode 100644 index b7c3af2aa0..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/4.png b/front/public/images/large/ExtraBees/misc/4.png deleted file mode 100644 index abaa9ae634..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/5.png b/front/public/images/large/ExtraBees/misc/5.png deleted file mode 100644 index 14062c1ea0..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/6.png b/front/public/images/large/ExtraBees/misc/6.png deleted file mode 100644 index 9a9bcafbf1..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/7.png b/front/public/images/large/ExtraBees/misc/7.png deleted file mode 100644 index 1c7617c622..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/8.png b/front/public/images/large/ExtraBees/misc/8.png deleted file mode 100644 index c4b8440ad8..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/misc/9.png b/front/public/images/large/ExtraBees/misc/9.png deleted file mode 100644 index 646cbc477a..0000000000 Binary files a/front/public/images/large/ExtraBees/misc/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/propolis/0.png b/front/public/images/large/ExtraBees/propolis/0.png deleted file mode 100644 index 4a2454ac24..0000000000 Binary files a/front/public/images/large/ExtraBees/propolis/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/propolis/1.png b/front/public/images/large/ExtraBees/propolis/1.png deleted file mode 100644 index d187e13b01..0000000000 Binary files a/front/public/images/large/ExtraBees/propolis/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/propolis/2.png b/front/public/images/large/ExtraBees/propolis/2.png deleted file mode 100644 index f51cbe59f4..0000000000 Binary files a/front/public/images/large/ExtraBees/propolis/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraBees/propolis/3.png b/front/public/images/large/ExtraBees/propolis/3.png deleted file mode 100644 index 89f6b0f00e..0000000000 Binary files a/front/public/images/large/ExtraBees/propolis/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/carpentry/0.png b/front/public/images/large/ExtraTrees/carpentry/0.png deleted file mode 100644 index 7e55326ffd..0000000000 Binary files a/front/public/images/large/ExtraTrees/carpentry/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/carpentry/1.png b/front/public/images/large/ExtraTrees/carpentry/1.png deleted file mode 100644 index 0fcb82be2a..0000000000 Binary files a/front/public/images/large/ExtraTrees/carpentry/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/carpentry/2.png b/front/public/images/large/ExtraTrees/carpentry/2.png deleted file mode 100644 index 6769369bce..0000000000 Binary files a/front/public/images/large/ExtraTrees/carpentry/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/carpentry/3.png b/front/public/images/large/ExtraTrees/carpentry/3.png deleted file mode 100644 index 15e84c7202..0000000000 Binary files a/front/public/images/large/ExtraTrees/carpentry/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/carpentry/4.png b/front/public/images/large/ExtraTrees/carpentry/4.png deleted file mode 100644 index fa84aa74ef..0000000000 Binary files a/front/public/images/large/ExtraTrees/carpentry/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/carpentry/5.png b/front/public/images/large/ExtraTrees/carpentry/5.png deleted file mode 100644 index e73cf05d6a..0000000000 Binary files a/front/public/images/large/ExtraTrees/carpentry/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/carpentry/6.png b/front/public/images/large/ExtraTrees/carpentry/6.png deleted file mode 100644 index 5bfdac2693..0000000000 Binary files a/front/public/images/large/ExtraTrees/carpentry/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/database/0.png b/front/public/images/large/ExtraTrees/database/0.png deleted file mode 100644 index 1e36d4ce11..0000000000 Binary files a/front/public/images/large/ExtraTrees/database/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/database/1.png b/front/public/images/large/ExtraTrees/database/1.png deleted file mode 100644 index 82de17aab3..0000000000 Binary files a/front/public/images/large/ExtraTrees/database/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/databaseMoth/0.png b/front/public/images/large/ExtraTrees/databaseMoth/0.png deleted file mode 100644 index 7d5fa68eef..0000000000 Binary files a/front/public/images/large/ExtraTrees/databaseMoth/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/databaseMoth/1.png b/front/public/images/large/ExtraTrees/databaseMoth/1.png deleted file mode 100644 index d2f8f15873..0000000000 Binary files a/front/public/images/large/ExtraTrees/databaseMoth/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/0.png b/front/public/images/large/ExtraTrees/door/0.png deleted file mode 100644 index 1cba5a9bfc..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/1.png b/front/public/images/large/ExtraTrees/door/1.png deleted file mode 100644 index a7e484ae6d..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/128.png b/front/public/images/large/ExtraTrees/door/128.png deleted file mode 100644 index 46a83037db..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/128.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/129.png b/front/public/images/large/ExtraTrees/door/129.png deleted file mode 100644 index f4ab7348fa..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/129.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/130.png b/front/public/images/large/ExtraTrees/door/130.png deleted file mode 100644 index a31005d06c..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/130.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/131.png b/front/public/images/large/ExtraTrees/door/131.png deleted file mode 100644 index aa360f7f38..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/131.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/132.png b/front/public/images/large/ExtraTrees/door/132.png deleted file mode 100644 index 77eaed3b61..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/132.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/133.png b/front/public/images/large/ExtraTrees/door/133.png deleted file mode 100644 index 401a1b9a0c..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/133.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/134.png b/front/public/images/large/ExtraTrees/door/134.png deleted file mode 100644 index 2ded81f804..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/134.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/135.png b/front/public/images/large/ExtraTrees/door/135.png deleted file mode 100644 index 01748cff56..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/135.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/136.png b/front/public/images/large/ExtraTrees/door/136.png deleted file mode 100644 index 8bf8845578..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/136.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/137.png b/front/public/images/large/ExtraTrees/door/137.png deleted file mode 100644 index 53af11cb3d..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/137.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/138.png b/front/public/images/large/ExtraTrees/door/138.png deleted file mode 100644 index c277dda2ac..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/138.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/139.png b/front/public/images/large/ExtraTrees/door/139.png deleted file mode 100644 index 9397ba0ceb..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/139.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/140.png b/front/public/images/large/ExtraTrees/door/140.png deleted file mode 100644 index c5cadfd854..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/140.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/141.png b/front/public/images/large/ExtraTrees/door/141.png deleted file mode 100644 index 847d30584c..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/141.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/142.png b/front/public/images/large/ExtraTrees/door/142.png deleted file mode 100644 index abbabbf533..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/142.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/143.png b/front/public/images/large/ExtraTrees/door/143.png deleted file mode 100644 index 6190d1fdff..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/143.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/144.png b/front/public/images/large/ExtraTrees/door/144.png deleted file mode 100644 index f54d0c6d95..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/144.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/145.png b/front/public/images/large/ExtraTrees/door/145.png deleted file mode 100644 index 47d80ea74e..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/145.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/146.png b/front/public/images/large/ExtraTrees/door/146.png deleted file mode 100644 index 6f92b3152b..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/146.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/147.png b/front/public/images/large/ExtraTrees/door/147.png deleted file mode 100644 index 1c5f2d5b5b..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/147.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/148.png b/front/public/images/large/ExtraTrees/door/148.png deleted file mode 100644 index 8139e60522..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/148.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/149.png b/front/public/images/large/ExtraTrees/door/149.png deleted file mode 100644 index 6744c5c909..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/149.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/150.png b/front/public/images/large/ExtraTrees/door/150.png deleted file mode 100644 index bc5607f31f..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/150.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/151.png b/front/public/images/large/ExtraTrees/door/151.png deleted file mode 100644 index 9742458870..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/151.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/152.png b/front/public/images/large/ExtraTrees/door/152.png deleted file mode 100644 index af007d6961..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/152.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/153.png b/front/public/images/large/ExtraTrees/door/153.png deleted file mode 100644 index fafc656082..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/153.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/154.png b/front/public/images/large/ExtraTrees/door/154.png deleted file mode 100644 index a1437b0702..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/154.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/155.png b/front/public/images/large/ExtraTrees/door/155.png deleted file mode 100644 index f92eaf1be7..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/155.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/156.png b/front/public/images/large/ExtraTrees/door/156.png deleted file mode 100644 index 6b3896bc4f..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/156.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/2.png b/front/public/images/large/ExtraTrees/door/2.png deleted file mode 100644 index b151ed2fa3..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/3.png b/front/public/images/large/ExtraTrees/door/3.png deleted file mode 100644 index 2505b538d6..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/32.png b/front/public/images/large/ExtraTrees/door/32.png deleted file mode 100644 index 51bf7b370a..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/33.png b/front/public/images/large/ExtraTrees/door/33.png deleted file mode 100644 index 3d62727024..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/34.png b/front/public/images/large/ExtraTrees/door/34.png deleted file mode 100644 index fa9df84802..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/35.png b/front/public/images/large/ExtraTrees/door/35.png deleted file mode 100644 index 49daa02067..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/35.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/36.png b/front/public/images/large/ExtraTrees/door/36.png deleted file mode 100644 index 0d1e520e0d..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/36.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/37.png b/front/public/images/large/ExtraTrees/door/37.png deleted file mode 100644 index 8e45ba7eb9..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/37.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/38.png b/front/public/images/large/ExtraTrees/door/38.png deleted file mode 100644 index bfc0d8a095..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/38.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/39.png b/front/public/images/large/ExtraTrees/door/39.png deleted file mode 100644 index d30e5fe884..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/39.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/4.png b/front/public/images/large/ExtraTrees/door/4.png deleted file mode 100644 index f1022f7852..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/40.png b/front/public/images/large/ExtraTrees/door/40.png deleted file mode 100644 index fa12d565ee..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/40.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/41.png b/front/public/images/large/ExtraTrees/door/41.png deleted file mode 100644 index 2e58b18f0a..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/41.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/42.png b/front/public/images/large/ExtraTrees/door/42.png deleted file mode 100644 index 9b5ad62b03..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/42.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/43.png b/front/public/images/large/ExtraTrees/door/43.png deleted file mode 100644 index 507207ebae..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/43.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/44.png b/front/public/images/large/ExtraTrees/door/44.png deleted file mode 100644 index 7c1b0813b1..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/44.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/45.png b/front/public/images/large/ExtraTrees/door/45.png deleted file mode 100644 index 35af1e8567..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/45.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/46.png b/front/public/images/large/ExtraTrees/door/46.png deleted file mode 100644 index fd0b0afec2..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/46.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/47.png b/front/public/images/large/ExtraTrees/door/47.png deleted file mode 100644 index 1d167cab33..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/47.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/48.png b/front/public/images/large/ExtraTrees/door/48.png deleted file mode 100644 index dacb5785bf..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/48.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/49.png b/front/public/images/large/ExtraTrees/door/49.png deleted file mode 100644 index 5c4850848b..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/49.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/5.png b/front/public/images/large/ExtraTrees/door/5.png deleted file mode 100644 index 2dcc47ce61..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/50.png b/front/public/images/large/ExtraTrees/door/50.png deleted file mode 100644 index 768fcf9ca6..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/50.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/51.png b/front/public/images/large/ExtraTrees/door/51.png deleted file mode 100644 index d535761c8d..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/51.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/52.png b/front/public/images/large/ExtraTrees/door/52.png deleted file mode 100644 index 98856a19b5..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/52.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/53.png b/front/public/images/large/ExtraTrees/door/53.png deleted file mode 100644 index f91d73a1f1..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/53.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/54.png b/front/public/images/large/ExtraTrees/door/54.png deleted file mode 100644 index 8f7792bd97..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/54.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/55.png b/front/public/images/large/ExtraTrees/door/55.png deleted file mode 100644 index b3881dd1a6..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/55.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/56.png b/front/public/images/large/ExtraTrees/door/56.png deleted file mode 100644 index 74e9a37532..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/56.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/57.png b/front/public/images/large/ExtraTrees/door/57.png deleted file mode 100644 index 2abbd43f9f..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/57.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/58.png b/front/public/images/large/ExtraTrees/door/58.png deleted file mode 100644 index 22dcc20a8c..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/58.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/59.png b/front/public/images/large/ExtraTrees/door/59.png deleted file mode 100644 index 5551276c9c..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/59.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/60.png b/front/public/images/large/ExtraTrees/door/60.png deleted file mode 100644 index d07f92c36d..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/60.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/61.png b/front/public/images/large/ExtraTrees/door/61.png deleted file mode 100644 index 65d1caba86..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/61.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/62.png b/front/public/images/large/ExtraTrees/door/62.png deleted file mode 100644 index 7e946baff6..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/62.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/63.png b/front/public/images/large/ExtraTrees/door/63.png deleted file mode 100644 index e68e4792c4..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/63.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/64.png b/front/public/images/large/ExtraTrees/door/64.png deleted file mode 100644 index 46d7152965..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/64.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/65.png b/front/public/images/large/ExtraTrees/door/65.png deleted file mode 100644 index b9324c79e5..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/65.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/door/66.png b/front/public/images/large/ExtraTrees/door/66.png deleted file mode 100644 index 5cf099e762..0000000000 Binary files a/front/public/images/large/ExtraTrees/door/66.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/0.png b/front/public/images/large/ExtraTrees/doubleSlab/0.png deleted file mode 100644 index f7a307d3cf..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/1.png b/front/public/images/large/ExtraTrees/doubleSlab/1.png deleted file mode 100644 index 3ce6d526d6..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/10.png b/front/public/images/large/ExtraTrees/doubleSlab/10.png deleted file mode 100644 index 1a4f20bd84..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/11.png b/front/public/images/large/ExtraTrees/doubleSlab/11.png deleted file mode 100644 index 6aeef7349f..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/12.png b/front/public/images/large/ExtraTrees/doubleSlab/12.png deleted file mode 100644 index 59440c4196..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/13.png b/front/public/images/large/ExtraTrees/doubleSlab/13.png deleted file mode 100644 index 6efdb6e9c8..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/14.png b/front/public/images/large/ExtraTrees/doubleSlab/14.png deleted file mode 100644 index 6cee2d9f6d..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/15.png b/front/public/images/large/ExtraTrees/doubleSlab/15.png deleted file mode 100644 index 8337c0bba9..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/2.png b/front/public/images/large/ExtraTrees/doubleSlab/2.png deleted file mode 100644 index 7f0a4012ce..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/3.png b/front/public/images/large/ExtraTrees/doubleSlab/3.png deleted file mode 100644 index 38fd629e97..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/4.png b/front/public/images/large/ExtraTrees/doubleSlab/4.png deleted file mode 100644 index fbaaa3b009..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/5.png b/front/public/images/large/ExtraTrees/doubleSlab/5.png deleted file mode 100644 index b50ad395db..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/6.png b/front/public/images/large/ExtraTrees/doubleSlab/6.png deleted file mode 100644 index 2438fb3201..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/7.png b/front/public/images/large/ExtraTrees/doubleSlab/7.png deleted file mode 100644 index 08f690fad5..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/8.png b/front/public/images/large/ExtraTrees/doubleSlab/8.png deleted file mode 100644 index 515800ee58..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/doubleSlab/9.png b/front/public/images/large/ExtraTrees/doubleSlab/9.png deleted file mode 100644 index 20a3068d4f..0000000000 Binary files a/front/public/images/large/ExtraTrees/doubleSlab/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/durableHammer/0.png b/front/public/images/large/ExtraTrees/durableHammer/0.png deleted file mode 100644 index 767eafa392..0000000000 Binary files a/front/public/images/large/ExtraTrees/durableHammer/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/1.png b/front/public/images/large/ExtraTrees/fence/1.png deleted file mode 100644 index 894750a1c0..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/2.png b/front/public/images/large/ExtraTrees/fence/2.png deleted file mode 100644 index 8164d499cc..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/3.png b/front/public/images/large/ExtraTrees/fence/3.png deleted file mode 100644 index e9afee1b17..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/32.png b/front/public/images/large/ExtraTrees/fence/32.png deleted file mode 100644 index 756c309833..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/33.png b/front/public/images/large/ExtraTrees/fence/33.png deleted file mode 100644 index 525c4d7a0d..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/34.png b/front/public/images/large/ExtraTrees/fence/34.png deleted file mode 100644 index a153f843b3..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/35.png b/front/public/images/large/ExtraTrees/fence/35.png deleted file mode 100644 index fa278216f2..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/35.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/36.png b/front/public/images/large/ExtraTrees/fence/36.png deleted file mode 100644 index 706e6290e7..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/36.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/37.png b/front/public/images/large/ExtraTrees/fence/37.png deleted file mode 100644 index c4020aea46..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/37.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/38.png b/front/public/images/large/ExtraTrees/fence/38.png deleted file mode 100644 index 020c63d365..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/38.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/39.png b/front/public/images/large/ExtraTrees/fence/39.png deleted file mode 100644 index 46a5b8e2c4..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/39.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/4.png b/front/public/images/large/ExtraTrees/fence/4.png deleted file mode 100644 index 0e3ff340bb..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/40.png b/front/public/images/large/ExtraTrees/fence/40.png deleted file mode 100644 index 58f51aeb6c..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/40.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/41.png b/front/public/images/large/ExtraTrees/fence/41.png deleted file mode 100644 index b9b1c58fab..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/41.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/42.png b/front/public/images/large/ExtraTrees/fence/42.png deleted file mode 100644 index 0d87240e54..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/42.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/43.png b/front/public/images/large/ExtraTrees/fence/43.png deleted file mode 100644 index 9a4cb468da..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/43.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/44.png b/front/public/images/large/ExtraTrees/fence/44.png deleted file mode 100644 index 26837cfad4..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/44.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/45.png b/front/public/images/large/ExtraTrees/fence/45.png deleted file mode 100644 index e66e5ed953..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/45.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/46.png b/front/public/images/large/ExtraTrees/fence/46.png deleted file mode 100644 index 61d37b8a11..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/46.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/47.png b/front/public/images/large/ExtraTrees/fence/47.png deleted file mode 100644 index 68cf5cbbc4..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/47.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/48.png b/front/public/images/large/ExtraTrees/fence/48.png deleted file mode 100644 index 8e9d4ec13a..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/48.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/49.png b/front/public/images/large/ExtraTrees/fence/49.png deleted file mode 100644 index 5fe7219dd7..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/49.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/5.png b/front/public/images/large/ExtraTrees/fence/5.png deleted file mode 100644 index 9d4742edaf..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/50.png b/front/public/images/large/ExtraTrees/fence/50.png deleted file mode 100644 index 8c2a020078..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/50.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/51.png b/front/public/images/large/ExtraTrees/fence/51.png deleted file mode 100644 index 081dc09212..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/51.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/52.png b/front/public/images/large/ExtraTrees/fence/52.png deleted file mode 100644 index 506315d6d2..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/52.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/53.png b/front/public/images/large/ExtraTrees/fence/53.png deleted file mode 100644 index 54fd369fcb..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/53.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/54.png b/front/public/images/large/ExtraTrees/fence/54.png deleted file mode 100644 index 01af9b69e8..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/54.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/55.png b/front/public/images/large/ExtraTrees/fence/55.png deleted file mode 100644 index a2cc771211..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/55.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/56.png b/front/public/images/large/ExtraTrees/fence/56.png deleted file mode 100644 index f4ae9d321a..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/56.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/57.png b/front/public/images/large/ExtraTrees/fence/57.png deleted file mode 100644 index 54e3232fff..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/57.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/58.png b/front/public/images/large/ExtraTrees/fence/58.png deleted file mode 100644 index 681bec2dd3..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/58.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/59.png b/front/public/images/large/ExtraTrees/fence/59.png deleted file mode 100644 index f61417d36b..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/59.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/60.png b/front/public/images/large/ExtraTrees/fence/60.png deleted file mode 100644 index 9245f76543..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/60.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/61.png b/front/public/images/large/ExtraTrees/fence/61.png deleted file mode 100644 index 7412c7745c..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/61.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/62.png b/front/public/images/large/ExtraTrees/fence/62.png deleted file mode 100644 index 173093b1c4..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/62.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/63.png b/front/public/images/large/ExtraTrees/fence/63.png deleted file mode 100644 index 37a8bc3c24..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/63.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/64.png b/front/public/images/large/ExtraTrees/fence/64.png deleted file mode 100644 index 94d4c7715c..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/64.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/65.png b/front/public/images/large/ExtraTrees/fence/65.png deleted file mode 100644 index 07c15e6ef9..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/65.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/fence/66.png b/front/public/images/large/ExtraTrees/fence/66.png deleted file mode 100644 index abceb8eb86..0000000000 Binary files a/front/public/images/large/ExtraTrees/fence/66.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/0.png b/front/public/images/large/ExtraTrees/food/0.png deleted file mode 100644 index c3caf27033..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/1.png b/front/public/images/large/ExtraTrees/food/1.png deleted file mode 100644 index f5e1b983b2..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/10.png b/front/public/images/large/ExtraTrees/food/10.png deleted file mode 100644 index 52da1cc55e..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/11.png b/front/public/images/large/ExtraTrees/food/11.png deleted file mode 100644 index 710600c4ce..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/12.png b/front/public/images/large/ExtraTrees/food/12.png deleted file mode 100644 index 61b530e67d..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/13.png b/front/public/images/large/ExtraTrees/food/13.png deleted file mode 100644 index 57a5a8b393..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/14.png b/front/public/images/large/ExtraTrees/food/14.png deleted file mode 100644 index dc8e84492b..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/15.png b/front/public/images/large/ExtraTrees/food/15.png deleted file mode 100644 index 1f180c3a9c..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/16.png b/front/public/images/large/ExtraTrees/food/16.png deleted file mode 100644 index c1c84deaeb..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/17.png b/front/public/images/large/ExtraTrees/food/17.png deleted file mode 100644 index a286ba0ed8..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/18.png b/front/public/images/large/ExtraTrees/food/18.png deleted file mode 100644 index d14f49d303..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/19.png b/front/public/images/large/ExtraTrees/food/19.png deleted file mode 100644 index d3faf08e1c..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/2.png b/front/public/images/large/ExtraTrees/food/2.png deleted file mode 100644 index 4d7e89cc08..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/20.png b/front/public/images/large/ExtraTrees/food/20.png deleted file mode 100644 index 14a1e15680..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/21.png b/front/public/images/large/ExtraTrees/food/21.png deleted file mode 100644 index 1aff18e74f..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/21.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/22.png b/front/public/images/large/ExtraTrees/food/22.png deleted file mode 100644 index 87c871bba4..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/22.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/23.png b/front/public/images/large/ExtraTrees/food/23.png deleted file mode 100644 index aa31b5a293..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/23.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/24.png b/front/public/images/large/ExtraTrees/food/24.png deleted file mode 100644 index 5c5e637dfc..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/24.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/25.png b/front/public/images/large/ExtraTrees/food/25.png deleted file mode 100644 index c2ed4d9218..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/25.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/26.png b/front/public/images/large/ExtraTrees/food/26.png deleted file mode 100644 index eec0bd088f..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/26.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/27.png b/front/public/images/large/ExtraTrees/food/27.png deleted file mode 100644 index d96dc5e3f1..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/27.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/28.png b/front/public/images/large/ExtraTrees/food/28.png deleted file mode 100644 index 2b9055c6fb..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/28.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/29.png b/front/public/images/large/ExtraTrees/food/29.png deleted file mode 100644 index e81dbf2dc4..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/29.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/3.png b/front/public/images/large/ExtraTrees/food/3.png deleted file mode 100644 index 0221acfd0a..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/30.png b/front/public/images/large/ExtraTrees/food/30.png deleted file mode 100644 index cbb2a64c6c..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/30.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/31.png b/front/public/images/large/ExtraTrees/food/31.png deleted file mode 100644 index a013e74734..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/31.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/32.png b/front/public/images/large/ExtraTrees/food/32.png deleted file mode 100644 index 937353b609..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/33.png b/front/public/images/large/ExtraTrees/food/33.png deleted file mode 100644 index 9c40774488..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/34.png b/front/public/images/large/ExtraTrees/food/34.png deleted file mode 100644 index f6e9257d32..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/35.png b/front/public/images/large/ExtraTrees/food/35.png deleted file mode 100644 index 039c08a3b0..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/35.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/36.png b/front/public/images/large/ExtraTrees/food/36.png deleted file mode 100644 index b0fe750c44..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/36.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/37.png b/front/public/images/large/ExtraTrees/food/37.png deleted file mode 100644 index 1bd5431908..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/37.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/38.png b/front/public/images/large/ExtraTrees/food/38.png deleted file mode 100644 index 9305766cd7..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/38.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/39.png b/front/public/images/large/ExtraTrees/food/39.png deleted file mode 100644 index 9b1f0f51c7..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/39.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/4.png b/front/public/images/large/ExtraTrees/food/4.png deleted file mode 100644 index acb43d4e4c..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/40.png b/front/public/images/large/ExtraTrees/food/40.png deleted file mode 100644 index 76097ba47c..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/40.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/41.png b/front/public/images/large/ExtraTrees/food/41.png deleted file mode 100644 index 49dce18735..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/41.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/42.png b/front/public/images/large/ExtraTrees/food/42.png deleted file mode 100644 index 69e8000b70..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/42.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/43.png b/front/public/images/large/ExtraTrees/food/43.png deleted file mode 100644 index 65b1cf46a6..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/43.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/44.png b/front/public/images/large/ExtraTrees/food/44.png deleted file mode 100644 index 3cf4d4a2f4..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/44.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/45.png b/front/public/images/large/ExtraTrees/food/45.png deleted file mode 100644 index 3a10c47693..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/45.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/46.png b/front/public/images/large/ExtraTrees/food/46.png deleted file mode 100644 index 9726bac493..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/46.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/47.png b/front/public/images/large/ExtraTrees/food/47.png deleted file mode 100644 index dad0e2db30..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/47.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/48.png b/front/public/images/large/ExtraTrees/food/48.png deleted file mode 100644 index a26fb549b8..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/48.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/49.png b/front/public/images/large/ExtraTrees/food/49.png deleted file mode 100644 index ac1c8d2829..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/49.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/5.png b/front/public/images/large/ExtraTrees/food/5.png deleted file mode 100644 index a08b005df7..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/50.png b/front/public/images/large/ExtraTrees/food/50.png deleted file mode 100644 index 0973dc97a4..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/50.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/51.png b/front/public/images/large/ExtraTrees/food/51.png deleted file mode 100644 index e2357e22b5..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/51.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/52.png b/front/public/images/large/ExtraTrees/food/52.png deleted file mode 100644 index 49c35e7e5e..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/52.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/53.png b/front/public/images/large/ExtraTrees/food/53.png deleted file mode 100644 index 6c167be222..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/53.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/54.png b/front/public/images/large/ExtraTrees/food/54.png deleted file mode 100644 index e6c2640bd1..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/54.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/55.png b/front/public/images/large/ExtraTrees/food/55.png deleted file mode 100644 index 3893ac3a6b..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/55.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/56.png b/front/public/images/large/ExtraTrees/food/56.png deleted file mode 100644 index 249bdb08e4..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/56.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/57.png b/front/public/images/large/ExtraTrees/food/57.png deleted file mode 100644 index 1828bb227e..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/57.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/58.png b/front/public/images/large/ExtraTrees/food/58.png deleted file mode 100644 index ebcb703475..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/58.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/59.png b/front/public/images/large/ExtraTrees/food/59.png deleted file mode 100644 index a2a769b55b..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/59.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/6.png b/front/public/images/large/ExtraTrees/food/6.png deleted file mode 100644 index fa1993577f..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/7.png b/front/public/images/large/ExtraTrees/food/7.png deleted file mode 100644 index c81f3fe49a..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/8.png b/front/public/images/large/ExtraTrees/food/8.png deleted file mode 100644 index c5286b3acb..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/food/9.png b/front/public/images/large/ExtraTrees/food/9.png deleted file mode 100644 index 7750437e63..0000000000 Binary files a/front/public/images/large/ExtraTrees/food/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/1.png b/front/public/images/large/ExtraTrees/gate/1.png deleted file mode 100644 index 1723f5ffa6..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/128.png b/front/public/images/large/ExtraTrees/gate/128.png deleted file mode 100644 index a71ac4691d..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/128.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/129.png b/front/public/images/large/ExtraTrees/gate/129.png deleted file mode 100644 index a9035ba78c..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/129.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/130.png b/front/public/images/large/ExtraTrees/gate/130.png deleted file mode 100644 index ee85982872..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/130.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/131.png b/front/public/images/large/ExtraTrees/gate/131.png deleted file mode 100644 index 217a23f328..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/131.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/132.png b/front/public/images/large/ExtraTrees/gate/132.png deleted file mode 100644 index 730b5e4d1f..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/132.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/133.png b/front/public/images/large/ExtraTrees/gate/133.png deleted file mode 100644 index ae9190ad3c..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/133.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/134.png b/front/public/images/large/ExtraTrees/gate/134.png deleted file mode 100644 index 8804d298f0..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/134.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/135.png b/front/public/images/large/ExtraTrees/gate/135.png deleted file mode 100644 index b21ded1a10..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/135.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/136.png b/front/public/images/large/ExtraTrees/gate/136.png deleted file mode 100644 index ef1748f7ed..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/136.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/137.png b/front/public/images/large/ExtraTrees/gate/137.png deleted file mode 100644 index df0df33c87..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/137.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/138.png b/front/public/images/large/ExtraTrees/gate/138.png deleted file mode 100644 index f38783761b..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/138.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/139.png b/front/public/images/large/ExtraTrees/gate/139.png deleted file mode 100644 index addfea1055..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/139.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/140.png b/front/public/images/large/ExtraTrees/gate/140.png deleted file mode 100644 index b38cf5f75f..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/140.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/141.png b/front/public/images/large/ExtraTrees/gate/141.png deleted file mode 100644 index 6b21c0d061..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/141.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/142.png b/front/public/images/large/ExtraTrees/gate/142.png deleted file mode 100644 index 9526e80a42..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/142.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/143.png b/front/public/images/large/ExtraTrees/gate/143.png deleted file mode 100644 index 29f597e523..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/143.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/144.png b/front/public/images/large/ExtraTrees/gate/144.png deleted file mode 100644 index 4168330422..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/144.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/145.png b/front/public/images/large/ExtraTrees/gate/145.png deleted file mode 100644 index 1451706bfe..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/145.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/146.png b/front/public/images/large/ExtraTrees/gate/146.png deleted file mode 100644 index 29e095d177..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/146.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/147.png b/front/public/images/large/ExtraTrees/gate/147.png deleted file mode 100644 index d0df4471f6..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/147.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/148.png b/front/public/images/large/ExtraTrees/gate/148.png deleted file mode 100644 index 812e23a953..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/148.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/149.png b/front/public/images/large/ExtraTrees/gate/149.png deleted file mode 100644 index 7cc2442eca..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/149.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/150.png b/front/public/images/large/ExtraTrees/gate/150.png deleted file mode 100644 index 0e47f65261..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/150.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/151.png b/front/public/images/large/ExtraTrees/gate/151.png deleted file mode 100644 index acbb322b9c..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/151.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/152.png b/front/public/images/large/ExtraTrees/gate/152.png deleted file mode 100644 index e202157c9b..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/152.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/153.png b/front/public/images/large/ExtraTrees/gate/153.png deleted file mode 100644 index 09c497257e..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/153.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/154.png b/front/public/images/large/ExtraTrees/gate/154.png deleted file mode 100644 index f71ddf749a..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/154.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/155.png b/front/public/images/large/ExtraTrees/gate/155.png deleted file mode 100644 index 8d9e6892ea..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/155.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/156.png b/front/public/images/large/ExtraTrees/gate/156.png deleted file mode 100644 index b135d03ae8..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/156.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/2.png b/front/public/images/large/ExtraTrees/gate/2.png deleted file mode 100644 index 85f29e149a..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/3.png b/front/public/images/large/ExtraTrees/gate/3.png deleted file mode 100644 index 2681903448..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/32.png b/front/public/images/large/ExtraTrees/gate/32.png deleted file mode 100644 index f51c3baa2e..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/33.png b/front/public/images/large/ExtraTrees/gate/33.png deleted file mode 100644 index 4d442b012d..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/34.png b/front/public/images/large/ExtraTrees/gate/34.png deleted file mode 100644 index 14f22bf0d1..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/35.png b/front/public/images/large/ExtraTrees/gate/35.png deleted file mode 100644 index d2bd4a42d9..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/35.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/36.png b/front/public/images/large/ExtraTrees/gate/36.png deleted file mode 100644 index 4ab554d70d..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/36.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/37.png b/front/public/images/large/ExtraTrees/gate/37.png deleted file mode 100644 index f944032960..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/37.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/38.png b/front/public/images/large/ExtraTrees/gate/38.png deleted file mode 100644 index 06dc464f43..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/38.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/39.png b/front/public/images/large/ExtraTrees/gate/39.png deleted file mode 100644 index 7fc7a12465..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/39.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/4.png b/front/public/images/large/ExtraTrees/gate/4.png deleted file mode 100644 index d73fb8c2bd..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/40.png b/front/public/images/large/ExtraTrees/gate/40.png deleted file mode 100644 index 180c428499..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/40.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/41.png b/front/public/images/large/ExtraTrees/gate/41.png deleted file mode 100644 index e9b57e9c9f..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/41.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/42.png b/front/public/images/large/ExtraTrees/gate/42.png deleted file mode 100644 index 031bc6751f..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/42.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/43.png b/front/public/images/large/ExtraTrees/gate/43.png deleted file mode 100644 index ae63a47cf9..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/43.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/44.png b/front/public/images/large/ExtraTrees/gate/44.png deleted file mode 100644 index e577e0ef9d..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/44.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/45.png b/front/public/images/large/ExtraTrees/gate/45.png deleted file mode 100644 index 942bd1c4e8..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/45.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/46.png b/front/public/images/large/ExtraTrees/gate/46.png deleted file mode 100644 index 691446fbed..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/46.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/47.png b/front/public/images/large/ExtraTrees/gate/47.png deleted file mode 100644 index 53d6cb52c6..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/47.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/48.png b/front/public/images/large/ExtraTrees/gate/48.png deleted file mode 100644 index 7c05915340..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/48.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/49.png b/front/public/images/large/ExtraTrees/gate/49.png deleted file mode 100644 index 26a002f5d6..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/49.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/5.png b/front/public/images/large/ExtraTrees/gate/5.png deleted file mode 100644 index 672157dc11..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/50.png b/front/public/images/large/ExtraTrees/gate/50.png deleted file mode 100644 index f2fa895756..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/50.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/51.png b/front/public/images/large/ExtraTrees/gate/51.png deleted file mode 100644 index 8d3c5e6088..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/51.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/52.png b/front/public/images/large/ExtraTrees/gate/52.png deleted file mode 100644 index c882056bdd..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/52.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/53.png b/front/public/images/large/ExtraTrees/gate/53.png deleted file mode 100644 index b30bc99f9f..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/53.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/54.png b/front/public/images/large/ExtraTrees/gate/54.png deleted file mode 100644 index ade693b791..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/54.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/55.png b/front/public/images/large/ExtraTrees/gate/55.png deleted file mode 100644 index 435c01c0d0..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/55.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/56.png b/front/public/images/large/ExtraTrees/gate/56.png deleted file mode 100644 index 08f57d9686..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/56.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/57.png b/front/public/images/large/ExtraTrees/gate/57.png deleted file mode 100644 index e47e09a2f7..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/57.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/58.png b/front/public/images/large/ExtraTrees/gate/58.png deleted file mode 100644 index ece662f656..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/58.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/59.png b/front/public/images/large/ExtraTrees/gate/59.png deleted file mode 100644 index f59ce82c2a..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/59.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/60.png b/front/public/images/large/ExtraTrees/gate/60.png deleted file mode 100644 index 6c40483258..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/60.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/61.png b/front/public/images/large/ExtraTrees/gate/61.png deleted file mode 100644 index b43bcdf745..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/61.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/62.png b/front/public/images/large/ExtraTrees/gate/62.png deleted file mode 100644 index f688256cfc..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/62.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/63.png b/front/public/images/large/ExtraTrees/gate/63.png deleted file mode 100644 index 6cd309565e..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/63.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/64.png b/front/public/images/large/ExtraTrees/gate/64.png deleted file mode 100644 index 4529ff832a..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/64.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/65.png b/front/public/images/large/ExtraTrees/gate/65.png deleted file mode 100644 index cd647c7f6f..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/65.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/gate/66.png b/front/public/images/large/ExtraTrees/gate/66.png deleted file mode 100644 index 3d8bd2addc..0000000000 Binary files a/front/public/images/large/ExtraTrees/gate/66.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/hammer/0.png b/front/public/images/large/ExtraTrees/hammer/0.png deleted file mode 100644 index b680ff48d9..0000000000 Binary files a/front/public/images/large/ExtraTrees/hammer/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/0.png b/front/public/images/large/ExtraTrees/log/0.png deleted file mode 100644 index d878a3d662..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/1.png b/front/public/images/large/ExtraTrees/log/1.png deleted file mode 100644 index 5d1c324e3e..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/10.png b/front/public/images/large/ExtraTrees/log/10.png deleted file mode 100644 index 65f1dd8478..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/11.png b/front/public/images/large/ExtraTrees/log/11.png deleted file mode 100644 index 94cdc1c37b..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/12.png b/front/public/images/large/ExtraTrees/log/12.png deleted file mode 100644 index 69e4bd0bee..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/13.png b/front/public/images/large/ExtraTrees/log/13.png deleted file mode 100644 index 949ed4087c..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/14.png b/front/public/images/large/ExtraTrees/log/14.png deleted file mode 100644 index c916de7e3a..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/15.png b/front/public/images/large/ExtraTrees/log/15.png deleted file mode 100644 index de82638f6e..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/16.png b/front/public/images/large/ExtraTrees/log/16.png deleted file mode 100644 index 96bdfb0115..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/17.png b/front/public/images/large/ExtraTrees/log/17.png deleted file mode 100644 index 495d13aa34..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/18.png b/front/public/images/large/ExtraTrees/log/18.png deleted file mode 100644 index e5f7d2f7cd..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/19.png b/front/public/images/large/ExtraTrees/log/19.png deleted file mode 100644 index b5a8e3816d..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/2.png b/front/public/images/large/ExtraTrees/log/2.png deleted file mode 100644 index 20c1fd6fed..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/20.png b/front/public/images/large/ExtraTrees/log/20.png deleted file mode 100644 index fb2a814346..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/21.png b/front/public/images/large/ExtraTrees/log/21.png deleted file mode 100644 index 054c822487..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/21.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/22.png b/front/public/images/large/ExtraTrees/log/22.png deleted file mode 100644 index 728ba6e993..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/22.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/23.png b/front/public/images/large/ExtraTrees/log/23.png deleted file mode 100644 index 0f7b103275..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/23.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/24.png b/front/public/images/large/ExtraTrees/log/24.png deleted file mode 100644 index b71b8de310..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/24.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/25.png b/front/public/images/large/ExtraTrees/log/25.png deleted file mode 100644 index 5d8a120f79..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/25.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/26.png b/front/public/images/large/ExtraTrees/log/26.png deleted file mode 100644 index 4261c16ba3..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/26.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/27.png b/front/public/images/large/ExtraTrees/log/27.png deleted file mode 100644 index 30b1f86da7..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/27.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/28.png b/front/public/images/large/ExtraTrees/log/28.png deleted file mode 100644 index f57abadc43..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/28.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/29.png b/front/public/images/large/ExtraTrees/log/29.png deleted file mode 100644 index d47e9b5d93..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/29.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/3.png b/front/public/images/large/ExtraTrees/log/3.png deleted file mode 100644 index d01eeb18ef..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/30.png b/front/public/images/large/ExtraTrees/log/30.png deleted file mode 100644 index 9f63f6647e..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/30.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/31.png b/front/public/images/large/ExtraTrees/log/31.png deleted file mode 100644 index e885cdf908..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/31.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/32.png b/front/public/images/large/ExtraTrees/log/32.png deleted file mode 100644 index 6befbca645..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/33.png b/front/public/images/large/ExtraTrees/log/33.png deleted file mode 100644 index 82da9f5904..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/34.png b/front/public/images/large/ExtraTrees/log/34.png deleted file mode 100644 index f4c34000d1..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/35.png b/front/public/images/large/ExtraTrees/log/35.png deleted file mode 100644 index f793ff661c..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/35.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/36.png b/front/public/images/large/ExtraTrees/log/36.png deleted file mode 100644 index 0d365df58f..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/36.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/37.png b/front/public/images/large/ExtraTrees/log/37.png deleted file mode 100644 index e5b6db642e..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/37.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/38.png b/front/public/images/large/ExtraTrees/log/38.png deleted file mode 100644 index 53550fa19e..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/38.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/39.png b/front/public/images/large/ExtraTrees/log/39.png deleted file mode 100644 index 1271537115..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/39.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/4.png b/front/public/images/large/ExtraTrees/log/4.png deleted file mode 100644 index f9822012be..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/5.png b/front/public/images/large/ExtraTrees/log/5.png deleted file mode 100644 index b096fdfe10..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/6.png b/front/public/images/large/ExtraTrees/log/6.png deleted file mode 100644 index b726476264..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/7.png b/front/public/images/large/ExtraTrees/log/7.png deleted file mode 100644 index 4e0736ee12..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/8.png b/front/public/images/large/ExtraTrees/log/8.png deleted file mode 100644 index 37b3e7df81..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/log/9.png b/front/public/images/large/ExtraTrees/log/9.png deleted file mode 100644 index e825750002..0000000000 Binary files a/front/public/images/large/ExtraTrees/log/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/machine/0.png b/front/public/images/large/ExtraTrees/machine/0.png deleted file mode 100644 index 4bac06909a..0000000000 Binary files a/front/public/images/large/ExtraTrees/machine/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/machine/1.png b/front/public/images/large/ExtraTrees/machine/1.png deleted file mode 100644 index 9694d87109..0000000000 Binary files a/front/public/images/large/ExtraTrees/machine/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/machine/2.png b/front/public/images/large/ExtraTrees/machine/2.png deleted file mode 100644 index d96fcd51a8..0000000000 Binary files a/front/public/images/large/ExtraTrees/machine/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/machine/3.png b/front/public/images/large/ExtraTrees/machine/3.png deleted file mode 100644 index d96fcd51a8..0000000000 Binary files a/front/public/images/large/ExtraTrees/machine/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/machine/4.png b/front/public/images/large/ExtraTrees/machine/4.png deleted file mode 100644 index 6ad58a0af7..0000000000 Binary files a/front/public/images/large/ExtraTrees/machine/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/misc/1.png b/front/public/images/large/ExtraTrees/misc/1.png deleted file mode 100644 index 8cf4483e14..0000000000 Binary files a/front/public/images/large/ExtraTrees/misc/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/misc/2.png b/front/public/images/large/ExtraTrees/misc/2.png deleted file mode 100644 index 7603b60f2e..0000000000 Binary files a/front/public/images/large/ExtraTrees/misc/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/misc/3.png b/front/public/images/large/ExtraTrees/misc/3.png deleted file mode 100644 index 1c087b7003..0000000000 Binary files a/front/public/images/large/ExtraTrees/misc/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/misc/4.png b/front/public/images/large/ExtraTrees/misc/4.png deleted file mode 100644 index 019fca88a6..0000000000 Binary files a/front/public/images/large/ExtraTrees/misc/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/misc/5.png b/front/public/images/large/ExtraTrees/misc/5.png deleted file mode 100644 index 7a1deac8ad..0000000000 Binary files a/front/public/images/large/ExtraTrees/misc/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/multifence/16387.png b/front/public/images/large/ExtraTrees/multifence/16387.png deleted file mode 100644 index dd01f2e980..0000000000 Binary files a/front/public/images/large/ExtraTrees/multifence/16387.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/panel/0.png b/front/public/images/large/ExtraTrees/panel/0.png deleted file mode 100644 index bd21fa264f..0000000000 Binary files a/front/public/images/large/ExtraTrees/panel/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/panel/1.png b/front/public/images/large/ExtraTrees/panel/1.png deleted file mode 100644 index 0f8e660740..0000000000 Binary files a/front/public/images/large/ExtraTrees/panel/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/panel/2.png b/front/public/images/large/ExtraTrees/panel/2.png deleted file mode 100644 index 27c8e3bd38..0000000000 Binary files a/front/public/images/large/ExtraTrees/panel/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/panel/3.png b/front/public/images/large/ExtraTrees/panel/3.png deleted file mode 100644 index 09e3a7faa7..0000000000 Binary files a/front/public/images/large/ExtraTrees/panel/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/panel/4.png b/front/public/images/large/ExtraTrees/panel/4.png deleted file mode 100644 index 80b5583dda..0000000000 Binary files a/front/public/images/large/ExtraTrees/panel/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/panel/5.png b/front/public/images/large/ExtraTrees/panel/5.png deleted file mode 100644 index e2970b13aa..0000000000 Binary files a/front/public/images/large/ExtraTrees/panel/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/panel/6.png b/front/public/images/large/ExtraTrees/panel/6.png deleted file mode 100644 index 19a6c9b903..0000000000 Binary files a/front/public/images/large/ExtraTrees/panel/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/0.png b/front/public/images/large/ExtraTrees/planks/0.png deleted file mode 100644 index f7a307d3cf..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/1.png b/front/public/images/large/ExtraTrees/planks/1.png deleted file mode 100644 index 3ce6d526d6..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/10.png b/front/public/images/large/ExtraTrees/planks/10.png deleted file mode 100644 index 1a4f20bd84..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/11.png b/front/public/images/large/ExtraTrees/planks/11.png deleted file mode 100644 index 6aeef7349f..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/12.png b/front/public/images/large/ExtraTrees/planks/12.png deleted file mode 100644 index 59440c4196..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/13.png b/front/public/images/large/ExtraTrees/planks/13.png deleted file mode 100644 index 6efdb6e9c8..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/14.png b/front/public/images/large/ExtraTrees/planks/14.png deleted file mode 100644 index 6cee2d9f6d..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/15.png b/front/public/images/large/ExtraTrees/planks/15.png deleted file mode 100644 index 8337c0bba9..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/16.png b/front/public/images/large/ExtraTrees/planks/16.png deleted file mode 100644 index 0b8f9d634b..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/17.png b/front/public/images/large/ExtraTrees/planks/17.png deleted file mode 100644 index c5136c6585..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/18.png b/front/public/images/large/ExtraTrees/planks/18.png deleted file mode 100644 index c36c298942..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/19.png b/front/public/images/large/ExtraTrees/planks/19.png deleted file mode 100644 index 0fe21820a8..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/2.png b/front/public/images/large/ExtraTrees/planks/2.png deleted file mode 100644 index 7f0a4012ce..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/20.png b/front/public/images/large/ExtraTrees/planks/20.png deleted file mode 100644 index 8b95631d79..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/21.png b/front/public/images/large/ExtraTrees/planks/21.png deleted file mode 100644 index 6d9b7d851d..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/21.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/22.png b/front/public/images/large/ExtraTrees/planks/22.png deleted file mode 100644 index f39713cdba..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/22.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/23.png b/front/public/images/large/ExtraTrees/planks/23.png deleted file mode 100644 index f79f130d37..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/23.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/24.png b/front/public/images/large/ExtraTrees/planks/24.png deleted file mode 100644 index a48bc04162..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/24.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/25.png b/front/public/images/large/ExtraTrees/planks/25.png deleted file mode 100644 index 7d12a334bc..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/25.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/26.png b/front/public/images/large/ExtraTrees/planks/26.png deleted file mode 100644 index 68e66b0d3d..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/26.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/27.png b/front/public/images/large/ExtraTrees/planks/27.png deleted file mode 100644 index 9c56eb581d..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/27.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/28.png b/front/public/images/large/ExtraTrees/planks/28.png deleted file mode 100644 index f73cfa6caf..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/28.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/29.png b/front/public/images/large/ExtraTrees/planks/29.png deleted file mode 100644 index dfe3785030..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/29.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/3.png b/front/public/images/large/ExtraTrees/planks/3.png deleted file mode 100644 index 38fd629e97..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/30.png b/front/public/images/large/ExtraTrees/planks/30.png deleted file mode 100644 index d9bea779fe..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/30.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/31.png b/front/public/images/large/ExtraTrees/planks/31.png deleted file mode 100644 index 49d297c78c..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/31.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/32.png b/front/public/images/large/ExtraTrees/planks/32.png deleted file mode 100644 index 2461f77455..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/33.png b/front/public/images/large/ExtraTrees/planks/33.png deleted file mode 100644 index 64bc1f35b7..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/34.png b/front/public/images/large/ExtraTrees/planks/34.png deleted file mode 100644 index ffd4bdd857..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/4.png b/front/public/images/large/ExtraTrees/planks/4.png deleted file mode 100644 index fbaaa3b009..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/5.png b/front/public/images/large/ExtraTrees/planks/5.png deleted file mode 100644 index b50ad395db..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/6.png b/front/public/images/large/ExtraTrees/planks/6.png deleted file mode 100644 index 2438fb3201..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/7.png b/front/public/images/large/ExtraTrees/planks/7.png deleted file mode 100644 index 08f690fad5..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/8.png b/front/public/images/large/ExtraTrees/planks/8.png deleted file mode 100644 index 515800ee58..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/planks/9.png b/front/public/images/large/ExtraTrees/planks/9.png deleted file mode 100644 index 20a3068d4f..0000000000 Binary files a/front/public/images/large/ExtraTrees/planks/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/0.png b/front/public/images/large/ExtraTrees/slab/0.png deleted file mode 100644 index 83a7a18dec..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/1.png b/front/public/images/large/ExtraTrees/slab/1.png deleted file mode 100644 index e1e0f35fd6..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/10.png b/front/public/images/large/ExtraTrees/slab/10.png deleted file mode 100644 index 406f1dc2c3..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/11.png b/front/public/images/large/ExtraTrees/slab/11.png deleted file mode 100644 index 1e46fc52f8..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/12.png b/front/public/images/large/ExtraTrees/slab/12.png deleted file mode 100644 index b549e2a18d..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/13.png b/front/public/images/large/ExtraTrees/slab/13.png deleted file mode 100644 index f825fb5d16..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/14.png b/front/public/images/large/ExtraTrees/slab/14.png deleted file mode 100644 index 2f4586c8f5..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/15.png b/front/public/images/large/ExtraTrees/slab/15.png deleted file mode 100644 index 1f625e211d..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/16.png b/front/public/images/large/ExtraTrees/slab/16.png deleted file mode 100644 index 209a48dbff..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/17.png b/front/public/images/large/ExtraTrees/slab/17.png deleted file mode 100644 index 4caaa8bf6d..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/18.png b/front/public/images/large/ExtraTrees/slab/18.png deleted file mode 100644 index 6a581d6fce..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/19.png b/front/public/images/large/ExtraTrees/slab/19.png deleted file mode 100644 index d446079c14..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/2.png b/front/public/images/large/ExtraTrees/slab/2.png deleted file mode 100644 index 4c67f49125..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/20.png b/front/public/images/large/ExtraTrees/slab/20.png deleted file mode 100644 index 2bed6f71e5..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/21.png b/front/public/images/large/ExtraTrees/slab/21.png deleted file mode 100644 index ac69007380..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/21.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/22.png b/front/public/images/large/ExtraTrees/slab/22.png deleted file mode 100644 index 72a4e4dcc4..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/22.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/23.png b/front/public/images/large/ExtraTrees/slab/23.png deleted file mode 100644 index 2fd914d087..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/23.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/24.png b/front/public/images/large/ExtraTrees/slab/24.png deleted file mode 100644 index 910912b1cb..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/24.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/25.png b/front/public/images/large/ExtraTrees/slab/25.png deleted file mode 100644 index e23c804782..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/25.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/26.png b/front/public/images/large/ExtraTrees/slab/26.png deleted file mode 100644 index 4b01c9792f..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/26.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/27.png b/front/public/images/large/ExtraTrees/slab/27.png deleted file mode 100644 index 5cab2a872f..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/27.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/28.png b/front/public/images/large/ExtraTrees/slab/28.png deleted file mode 100644 index 05026d7eb2..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/28.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/29.png b/front/public/images/large/ExtraTrees/slab/29.png deleted file mode 100644 index 315e44feab..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/29.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/3.png b/front/public/images/large/ExtraTrees/slab/3.png deleted file mode 100644 index 6b06506293..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/30.png b/front/public/images/large/ExtraTrees/slab/30.png deleted file mode 100644 index 7ba1726a86..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/30.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/31.png b/front/public/images/large/ExtraTrees/slab/31.png deleted file mode 100644 index 5499cf7d4e..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/31.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/32.png b/front/public/images/large/ExtraTrees/slab/32.png deleted file mode 100644 index aa10846fdd..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/33.png b/front/public/images/large/ExtraTrees/slab/33.png deleted file mode 100644 index bf69f34c4b..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/34.png b/front/public/images/large/ExtraTrees/slab/34.png deleted file mode 100644 index ff67735d8b..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/4.png b/front/public/images/large/ExtraTrees/slab/4.png deleted file mode 100644 index 94bf30adc3..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/5.png b/front/public/images/large/ExtraTrees/slab/5.png deleted file mode 100644 index b636c45756..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/6.png b/front/public/images/large/ExtraTrees/slab/6.png deleted file mode 100644 index 0adce32f22..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/7.png b/front/public/images/large/ExtraTrees/slab/7.png deleted file mode 100644 index 268ed0a8b0..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/8.png b/front/public/images/large/ExtraTrees/slab/8.png deleted file mode 100644 index 5020164c9f..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/slab/9.png b/front/public/images/large/ExtraTrees/slab/9.png deleted file mode 100644 index 2d3f1a1242..0000000000 Binary files a/front/public/images/large/ExtraTrees/slab/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stainedglass/16387.png b/front/public/images/large/ExtraTrees/stainedglass/16387.png deleted file mode 100644 index 4d32c81b09..0000000000 Binary files a/front/public/images/large/ExtraTrees/stainedglass/16387.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/0.png b/front/public/images/large/ExtraTrees/stairs/0.png deleted file mode 100644 index e0132e7f96..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/1.png b/front/public/images/large/ExtraTrees/stairs/1.png deleted file mode 100644 index a0b3d310df..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/10.png b/front/public/images/large/ExtraTrees/stairs/10.png deleted file mode 100644 index f864806dbe..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/11.png b/front/public/images/large/ExtraTrees/stairs/11.png deleted file mode 100644 index 894d150ada..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/12.png b/front/public/images/large/ExtraTrees/stairs/12.png deleted file mode 100644 index 2dbefa318e..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/13.png b/front/public/images/large/ExtraTrees/stairs/13.png deleted file mode 100644 index eae182f1fb..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/14.png b/front/public/images/large/ExtraTrees/stairs/14.png deleted file mode 100644 index 3cf5e2622f..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/15.png b/front/public/images/large/ExtraTrees/stairs/15.png deleted file mode 100644 index 9943104c94..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/16.png b/front/public/images/large/ExtraTrees/stairs/16.png deleted file mode 100644 index 6f6cee6888..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/16.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/17.png b/front/public/images/large/ExtraTrees/stairs/17.png deleted file mode 100644 index 9631196610..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/17.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/18.png b/front/public/images/large/ExtraTrees/stairs/18.png deleted file mode 100644 index e984257047..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/18.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/19.png b/front/public/images/large/ExtraTrees/stairs/19.png deleted file mode 100644 index 2b8973b452..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/19.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/2.png b/front/public/images/large/ExtraTrees/stairs/2.png deleted file mode 100644 index 84d0d52665..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/20.png b/front/public/images/large/ExtraTrees/stairs/20.png deleted file mode 100644 index b76982cbe9..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/20.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/21.png b/front/public/images/large/ExtraTrees/stairs/21.png deleted file mode 100644 index 707dbd48a5..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/21.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/22.png b/front/public/images/large/ExtraTrees/stairs/22.png deleted file mode 100644 index cb865ee4c6..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/22.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/23.png b/front/public/images/large/ExtraTrees/stairs/23.png deleted file mode 100644 index a2cada88f0..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/23.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/24.png b/front/public/images/large/ExtraTrees/stairs/24.png deleted file mode 100644 index f78a0cfa74..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/24.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/25.png b/front/public/images/large/ExtraTrees/stairs/25.png deleted file mode 100644 index 4a895e1b65..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/25.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/26.png b/front/public/images/large/ExtraTrees/stairs/26.png deleted file mode 100644 index 8dadb221f7..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/26.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/27.png b/front/public/images/large/ExtraTrees/stairs/27.png deleted file mode 100644 index 91f5eaf73a..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/27.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/28.png b/front/public/images/large/ExtraTrees/stairs/28.png deleted file mode 100644 index 868f3f4992..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/28.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/29.png b/front/public/images/large/ExtraTrees/stairs/29.png deleted file mode 100644 index 94ba9a1a01..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/29.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/3.png b/front/public/images/large/ExtraTrees/stairs/3.png deleted file mode 100644 index 0c973622a0..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/30.png b/front/public/images/large/ExtraTrees/stairs/30.png deleted file mode 100644 index 625dea9b79..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/30.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/31.png b/front/public/images/large/ExtraTrees/stairs/31.png deleted file mode 100644 index c7505fd1dc..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/31.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/32.png b/front/public/images/large/ExtraTrees/stairs/32.png deleted file mode 100644 index 5f146c88e7..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/32.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/33.png b/front/public/images/large/ExtraTrees/stairs/33.png deleted file mode 100644 index e91f3b0991..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/33.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/34.png b/front/public/images/large/ExtraTrees/stairs/34.png deleted file mode 100644 index 744efdf79c..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/34.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/4.png b/front/public/images/large/ExtraTrees/stairs/4.png deleted file mode 100644 index f6bc289287..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/5.png b/front/public/images/large/ExtraTrees/stairs/5.png deleted file mode 100644 index 084b42727f..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/6.png b/front/public/images/large/ExtraTrees/stairs/6.png deleted file mode 100644 index 66b1c221a7..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/7.png b/front/public/images/large/ExtraTrees/stairs/7.png deleted file mode 100644 index 63931a81cf..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/8.png b/front/public/images/large/ExtraTrees/stairs/8.png deleted file mode 100644 index 74a7038f39..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraTrees/stairs/9.png b/front/public/images/large/ExtraTrees/stairs/9.png deleted file mode 100644 index 2dee1117b3..0000000000 Binary files a/front/public/images/large/ExtraTrees/stairs/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/angelBlock/0.png b/front/public/images/large/ExtraUtilities/angelBlock/0.png deleted file mode 100644 index 34ade4624b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/angelBlock/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/angelRing/0.png b/front/public/images/large/ExtraUtilities/angelRing/0.png deleted file mode 100644 index eed54ab4bd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/angelRing/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/angelRing/1.png b/front/public/images/large/ExtraUtilities/angelRing/1.png deleted file mode 100644 index eed54ab4bd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/angelRing/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/angelRing/2.png b/front/public/images/large/ExtraUtilities/angelRing/2.png deleted file mode 100644 index eed54ab4bd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/angelRing/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/angelRing/3.png b/front/public/images/large/ExtraUtilities/angelRing/3.png deleted file mode 100644 index eed54ab4bd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/angelRing/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/angelRing/4.png b/front/public/images/large/ExtraUtilities/angelRing/4.png deleted file mode 100644 index eed54ab4bd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/angelRing/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/bedrockiumIngot/0.png b/front/public/images/large/ExtraUtilities/bedrockiumIngot/0.png deleted file mode 100644 index 6bd57252ed..0000000000 Binary files a/front/public/images/large/ExtraUtilities/bedrockiumIngot/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/block_bedrockium/0.png b/front/public/images/large/ExtraUtilities/block_bedrockium/0.png deleted file mode 100644 index 8b6042f21c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/block_bedrockium/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/budoff/0.png b/front/public/images/large/ExtraUtilities/budoff/0.png deleted file mode 100644 index 2d0859ab5c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/budoff/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/budoff/3.png b/front/public/images/large/ExtraUtilities/budoff/3.png deleted file mode 100644 index 591b3ab573..0000000000 Binary files a/front/public/images/large/ExtraUtilities/budoff/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/builderswand/0.png b/front/public/images/large/ExtraUtilities/builderswand/0.png deleted file mode 100644 index 8a031be625..0000000000 Binary files a/front/public/images/large/ExtraUtilities/builderswand/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/chandelier/0.png b/front/public/images/large/ExtraUtilities/chandelier/0.png deleted file mode 100644 index eb23e5d1d1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/chandelier/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/chestFull/0.png b/front/public/images/large/ExtraUtilities/chestFull/0.png deleted file mode 100644 index 784beeadeb..0000000000 Binary files a/front/public/images/large/ExtraUtilities/chestFull/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/chestMini/0.png b/front/public/images/large/ExtraUtilities/chestMini/0.png deleted file mode 100644 index 712dfe48e9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/chestMini/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/0.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/0.png deleted file mode 100644 index b2fe8ecec4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/1.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/1.png deleted file mode 100644 index eb8b6759d4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/10.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/10.png deleted file mode 100644 index e76f5592e1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/11.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/11.png deleted file mode 100644 index 2ad93d6950..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/12.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/12.png deleted file mode 100644 index c6ec0ac13a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/13.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/13.png deleted file mode 100644 index 93547a7c51..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/14.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/14.png deleted file mode 100644 index 782d896a55..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/15.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/15.png deleted file mode 100644 index 6efac6f700..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/2.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/2.png deleted file mode 100644 index 8cbfcd4820..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/3.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/3.png deleted file mode 100644 index f6835594ba..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/4.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/4.png deleted file mode 100644 index 7b85ad93a8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/5.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/5.png deleted file mode 100644 index 3237e4864a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/6.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/6.png deleted file mode 100644 index 24fea40561..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/7.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/7.png deleted file mode 100644 index aa0a9da3f0..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/8.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/8.png deleted file mode 100644 index 5740fe4624..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cobblestone_compressed/9.png b/front/public/images/large/ExtraUtilities/cobblestone_compressed/9.png deleted file mode 100644 index 0957cfe8cd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cobblestone_compressed/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/0.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/0.png deleted file mode 100644 index 44d2a8a2ca..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/1.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/1.png deleted file mode 100644 index 4825d16ae3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/10.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/10.png deleted file mode 100644 index 3814e58b0c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/11.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/11.png deleted file mode 100644 index eee3eea20d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/12.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/12.png deleted file mode 100644 index 21cb3d8486..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/13.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/13.png deleted file mode 100644 index bf083f097f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/14.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/14.png deleted file mode 100644 index be8ac42e0a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/15.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/15.png deleted file mode 100644 index d43ecebdf5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/2.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/2.png deleted file mode 100644 index c01a7cae64..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/3.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/3.png deleted file mode 100644 index e371101fc9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/4.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/4.png deleted file mode 100644 index 66eaf75a14..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/5.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/5.png deleted file mode 100644 index 54d88d8a43..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/6.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/6.png deleted file mode 100644 index 4e87cf0c8f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/7.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/7.png deleted file mode 100644 index efa0645c95..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/8.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/8.png deleted file mode 100644 index 80e4527c43..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorStoneBrick/9.png b/front/public/images/large/ExtraUtilities/colorStoneBrick/9.png deleted file mode 100644 index 02789efc2b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorStoneBrick/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/0.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/0.png deleted file mode 100644 index ff44d92127..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/1.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/1.png deleted file mode 100644 index 74d6c0d7ba..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/10.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/10.png deleted file mode 100644 index 20e29230ee..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/11.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/11.png deleted file mode 100644 index 406389f6e2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/12.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/12.png deleted file mode 100644 index dac2e15ebe..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/13.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/13.png deleted file mode 100644 index 9e861caada..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/14.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/14.png deleted file mode 100644 index 1093b92829..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/15.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/15.png deleted file mode 100644 index 58b000c6da..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/2.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/2.png deleted file mode 100644 index 1b4c186f79..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/3.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/3.png deleted file mode 100644 index c4bb4e86a5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/4.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/4.png deleted file mode 100644 index 39f055552d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/5.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/5.png deleted file mode 100644 index fda9be18f3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/6.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/6.png deleted file mode 100644 index 4e8ca8de87..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/7.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/7.png deleted file mode 100644 index c7d1572781..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/8.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/8.png deleted file mode 100644 index eabb93c31d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/colorWoodPlanks/9.png b/front/public/images/large/ExtraUtilities/colorWoodPlanks/9.png deleted file mode 100644 index 7be1d8acf4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/colorWoodPlanks/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/0.png b/front/public/images/large/ExtraUtilities/color_blockCoal/0.png deleted file mode 100644 index 3094be3fea..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/1.png b/front/public/images/large/ExtraUtilities/color_blockCoal/1.png deleted file mode 100644 index f6087129e1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/10.png b/front/public/images/large/ExtraUtilities/color_blockCoal/10.png deleted file mode 100644 index 03a2ad56b5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/11.png b/front/public/images/large/ExtraUtilities/color_blockCoal/11.png deleted file mode 100644 index 65bc95cf42..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/12.png b/front/public/images/large/ExtraUtilities/color_blockCoal/12.png deleted file mode 100644 index 0e4fd300c1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/13.png b/front/public/images/large/ExtraUtilities/color_blockCoal/13.png deleted file mode 100644 index 6a19e5f7ef..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/14.png b/front/public/images/large/ExtraUtilities/color_blockCoal/14.png deleted file mode 100644 index 35ea736658..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/15.png b/front/public/images/large/ExtraUtilities/color_blockCoal/15.png deleted file mode 100644 index 2753760b13..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/2.png b/front/public/images/large/ExtraUtilities/color_blockCoal/2.png deleted file mode 100644 index 2a4a4dd7cc..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/3.png b/front/public/images/large/ExtraUtilities/color_blockCoal/3.png deleted file mode 100644 index b7256631cd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/4.png b/front/public/images/large/ExtraUtilities/color_blockCoal/4.png deleted file mode 100644 index 1be9faaa07..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/5.png b/front/public/images/large/ExtraUtilities/color_blockCoal/5.png deleted file mode 100644 index ede8246ed3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/6.png b/front/public/images/large/ExtraUtilities/color_blockCoal/6.png deleted file mode 100644 index 060eb98284..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/7.png b/front/public/images/large/ExtraUtilities/color_blockCoal/7.png deleted file mode 100644 index 1abab3006f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/8.png b/front/public/images/large/ExtraUtilities/color_blockCoal/8.png deleted file mode 100644 index db1ab3d297..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockCoal/9.png b/front/public/images/large/ExtraUtilities/color_blockCoal/9.png deleted file mode 100644 index 04d36202b4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockCoal/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/0.png b/front/public/images/large/ExtraUtilities/color_blockLapis/0.png deleted file mode 100644 index 3e4e258cfe..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/1.png b/front/public/images/large/ExtraUtilities/color_blockLapis/1.png deleted file mode 100644 index b7b0943782..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/10.png b/front/public/images/large/ExtraUtilities/color_blockLapis/10.png deleted file mode 100644 index fe0ea5dab2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/11.png b/front/public/images/large/ExtraUtilities/color_blockLapis/11.png deleted file mode 100644 index 736c0c8658..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/12.png b/front/public/images/large/ExtraUtilities/color_blockLapis/12.png deleted file mode 100644 index 5dd96c4265..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/13.png b/front/public/images/large/ExtraUtilities/color_blockLapis/13.png deleted file mode 100644 index 517201217b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/14.png b/front/public/images/large/ExtraUtilities/color_blockLapis/14.png deleted file mode 100644 index 8621518c73..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/15.png b/front/public/images/large/ExtraUtilities/color_blockLapis/15.png deleted file mode 100644 index 821f2d48b7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/2.png b/front/public/images/large/ExtraUtilities/color_blockLapis/2.png deleted file mode 100644 index 92a79ca516..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/3.png b/front/public/images/large/ExtraUtilities/color_blockLapis/3.png deleted file mode 100644 index 2f8465b121..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/4.png b/front/public/images/large/ExtraUtilities/color_blockLapis/4.png deleted file mode 100644 index 6d8b14e445..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/5.png b/front/public/images/large/ExtraUtilities/color_blockLapis/5.png deleted file mode 100644 index fad61be510..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/6.png b/front/public/images/large/ExtraUtilities/color_blockLapis/6.png deleted file mode 100644 index 4479e4e773..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/7.png b/front/public/images/large/ExtraUtilities/color_blockLapis/7.png deleted file mode 100644 index d4744b496a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/8.png b/front/public/images/large/ExtraUtilities/color_blockLapis/8.png deleted file mode 100644 index 0af37c96c0..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockLapis/9.png b/front/public/images/large/ExtraUtilities/color_blockLapis/9.png deleted file mode 100644 index 4c4ab558a6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockLapis/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/0.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/0.png deleted file mode 100644 index 38bbe26851..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/1.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/1.png deleted file mode 100644 index a8b4fbfbe6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/10.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/10.png deleted file mode 100644 index 99bde74473..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/11.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/11.png deleted file mode 100644 index 12d8287856..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/12.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/12.png deleted file mode 100644 index 1664392a4c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/13.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/13.png deleted file mode 100644 index ca220b427a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/14.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/14.png deleted file mode 100644 index da3050c239..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/15.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/15.png deleted file mode 100644 index 8dec6a175c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/2.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/2.png deleted file mode 100644 index d4943ab1ca..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/3.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/3.png deleted file mode 100644 index 304f948da8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/4.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/4.png deleted file mode 100644 index 9c2305c00a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/5.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/5.png deleted file mode 100644 index a16fe7ddc9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/6.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/6.png deleted file mode 100644 index 016c3daf45..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/7.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/7.png deleted file mode 100644 index 458fe743e5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/8.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/8.png deleted file mode 100644 index 1fc985b24c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_blockRedstone/9.png b/front/public/images/large/ExtraUtilities/color_blockRedstone/9.png deleted file mode 100644 index 40ef155276..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_blockRedstone/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/0.png b/front/public/images/large/ExtraUtilities/color_brick/0.png deleted file mode 100644 index 151863a991..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/1.png b/front/public/images/large/ExtraUtilities/color_brick/1.png deleted file mode 100644 index d07f6d670c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/10.png b/front/public/images/large/ExtraUtilities/color_brick/10.png deleted file mode 100644 index bf482e1072..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/11.png b/front/public/images/large/ExtraUtilities/color_brick/11.png deleted file mode 100644 index e78ec70d75..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/12.png b/front/public/images/large/ExtraUtilities/color_brick/12.png deleted file mode 100644 index 74f54e83e4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/13.png b/front/public/images/large/ExtraUtilities/color_brick/13.png deleted file mode 100644 index fffcbb4bba..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/14.png b/front/public/images/large/ExtraUtilities/color_brick/14.png deleted file mode 100644 index 6013989670..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/15.png b/front/public/images/large/ExtraUtilities/color_brick/15.png deleted file mode 100644 index db8a3a1b29..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/2.png b/front/public/images/large/ExtraUtilities/color_brick/2.png deleted file mode 100644 index 0b7771f316..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/3.png b/front/public/images/large/ExtraUtilities/color_brick/3.png deleted file mode 100644 index 5cb62f842b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/4.png b/front/public/images/large/ExtraUtilities/color_brick/4.png deleted file mode 100644 index e4585810b1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/5.png b/front/public/images/large/ExtraUtilities/color_brick/5.png deleted file mode 100644 index 9138b6c0f9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/6.png b/front/public/images/large/ExtraUtilities/color_brick/6.png deleted file mode 100644 index b8ec40c461..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/7.png b/front/public/images/large/ExtraUtilities/color_brick/7.png deleted file mode 100644 index 441285ef3c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/8.png b/front/public/images/large/ExtraUtilities/color_brick/8.png deleted file mode 100644 index 8e62cb9c93..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_brick/9.png b/front/public/images/large/ExtraUtilities/color_brick/9.png deleted file mode 100644 index ec64c2a2a2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_brick/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/0.png b/front/public/images/large/ExtraUtilities/color_hellsand/0.png deleted file mode 100644 index d824d6d958..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/1.png b/front/public/images/large/ExtraUtilities/color_hellsand/1.png deleted file mode 100644 index 323d6a8758..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/10.png b/front/public/images/large/ExtraUtilities/color_hellsand/10.png deleted file mode 100644 index 0ab261014b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/11.png b/front/public/images/large/ExtraUtilities/color_hellsand/11.png deleted file mode 100644 index 11aa937cb0..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/12.png b/front/public/images/large/ExtraUtilities/color_hellsand/12.png deleted file mode 100644 index e870046b1b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/13.png b/front/public/images/large/ExtraUtilities/color_hellsand/13.png deleted file mode 100644 index df310eb986..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/14.png b/front/public/images/large/ExtraUtilities/color_hellsand/14.png deleted file mode 100644 index 0cbf5a613e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/15.png b/front/public/images/large/ExtraUtilities/color_hellsand/15.png deleted file mode 100644 index b888a3504b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/2.png b/front/public/images/large/ExtraUtilities/color_hellsand/2.png deleted file mode 100644 index dbd9de0b83..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/3.png b/front/public/images/large/ExtraUtilities/color_hellsand/3.png deleted file mode 100644 index 6d81d9edf0..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/4.png b/front/public/images/large/ExtraUtilities/color_hellsand/4.png deleted file mode 100644 index 288c9d8ccd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/5.png b/front/public/images/large/ExtraUtilities/color_hellsand/5.png deleted file mode 100644 index c9738ddb42..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/6.png b/front/public/images/large/ExtraUtilities/color_hellsand/6.png deleted file mode 100644 index f19a0dcf36..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/7.png b/front/public/images/large/ExtraUtilities/color_hellsand/7.png deleted file mode 100644 index 04bae09af1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/8.png b/front/public/images/large/ExtraUtilities/color_hellsand/8.png deleted file mode 100644 index ec7ba22932..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_hellsand/9.png b/front/public/images/large/ExtraUtilities/color_hellsand/9.png deleted file mode 100644 index e42268ea7d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_hellsand/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/0.png b/front/public/images/large/ExtraUtilities/color_lightgem/0.png deleted file mode 100644 index ad1cf2a693..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/1.png b/front/public/images/large/ExtraUtilities/color_lightgem/1.png deleted file mode 100644 index 86f6c3e4df..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/10.png b/front/public/images/large/ExtraUtilities/color_lightgem/10.png deleted file mode 100644 index 9f2ed39495..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/11.png b/front/public/images/large/ExtraUtilities/color_lightgem/11.png deleted file mode 100644 index 97a5ca0050..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/12.png b/front/public/images/large/ExtraUtilities/color_lightgem/12.png deleted file mode 100644 index eca443fb1c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/13.png b/front/public/images/large/ExtraUtilities/color_lightgem/13.png deleted file mode 100644 index ca76765e28..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/14.png b/front/public/images/large/ExtraUtilities/color_lightgem/14.png deleted file mode 100644 index 02f805807f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/15.png b/front/public/images/large/ExtraUtilities/color_lightgem/15.png deleted file mode 100644 index 643c86700f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/2.png b/front/public/images/large/ExtraUtilities/color_lightgem/2.png deleted file mode 100644 index 86dd0318ab..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/3.png b/front/public/images/large/ExtraUtilities/color_lightgem/3.png deleted file mode 100644 index 5b82192d53..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/4.png b/front/public/images/large/ExtraUtilities/color_lightgem/4.png deleted file mode 100644 index c114f04bda..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/5.png b/front/public/images/large/ExtraUtilities/color_lightgem/5.png deleted file mode 100644 index 51cbd03366..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/6.png b/front/public/images/large/ExtraUtilities/color_lightgem/6.png deleted file mode 100644 index bbc446a852..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/7.png b/front/public/images/large/ExtraUtilities/color_lightgem/7.png deleted file mode 100644 index a45cedd617..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/8.png b/front/public/images/large/ExtraUtilities/color_lightgem/8.png deleted file mode 100644 index 12397cec61..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_lightgem/9.png b/front/public/images/large/ExtraUtilities/color_lightgem/9.png deleted file mode 100644 index ef93b80db3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_lightgem/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/0.png b/front/public/images/large/ExtraUtilities/color_obsidian/0.png deleted file mode 100644 index 8d33e60747..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/1.png b/front/public/images/large/ExtraUtilities/color_obsidian/1.png deleted file mode 100644 index f7a9a319b9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/10.png b/front/public/images/large/ExtraUtilities/color_obsidian/10.png deleted file mode 100644 index a69942e463..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/11.png b/front/public/images/large/ExtraUtilities/color_obsidian/11.png deleted file mode 100644 index f47e8c1f4d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/12.png b/front/public/images/large/ExtraUtilities/color_obsidian/12.png deleted file mode 100644 index b61edc00d7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/13.png b/front/public/images/large/ExtraUtilities/color_obsidian/13.png deleted file mode 100644 index 0b193751e9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/14.png b/front/public/images/large/ExtraUtilities/color_obsidian/14.png deleted file mode 100644 index 457ab5fbfd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/15.png b/front/public/images/large/ExtraUtilities/color_obsidian/15.png deleted file mode 100644 index df95313450..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/2.png b/front/public/images/large/ExtraUtilities/color_obsidian/2.png deleted file mode 100644 index 1c13baa17d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/3.png b/front/public/images/large/ExtraUtilities/color_obsidian/3.png deleted file mode 100644 index e32d791954..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/4.png b/front/public/images/large/ExtraUtilities/color_obsidian/4.png deleted file mode 100644 index d8753aabfd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/5.png b/front/public/images/large/ExtraUtilities/color_obsidian/5.png deleted file mode 100644 index 7c79f57bad..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/6.png b/front/public/images/large/ExtraUtilities/color_obsidian/6.png deleted file mode 100644 index 12fceff8cf..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/7.png b/front/public/images/large/ExtraUtilities/color_obsidian/7.png deleted file mode 100644 index 6fa1e8890a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/8.png b/front/public/images/large/ExtraUtilities/color_obsidian/8.png deleted file mode 100644 index f9f626f831..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_obsidian/9.png b/front/public/images/large/ExtraUtilities/color_obsidian/9.png deleted file mode 100644 index 0c5341687e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_obsidian/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/0.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/0.png deleted file mode 100644 index ce3e48da3a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/1.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/1.png deleted file mode 100644 index f1562fa605..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/10.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/10.png deleted file mode 100644 index 814dbc2eff..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/11.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/11.png deleted file mode 100644 index 801636ba79..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/12.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/12.png deleted file mode 100644 index 60f3cb9f12..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/13.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/13.png deleted file mode 100644 index 0c9f0603e0..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/14.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/14.png deleted file mode 100644 index b9886da96e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/15.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/15.png deleted file mode 100644 index 1bbae851b2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/2.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/2.png deleted file mode 100644 index ad084cba80..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/3.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/3.png deleted file mode 100644 index 48a27921d9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/4.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/4.png deleted file mode 100644 index 64be8d80c0..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/5.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/5.png deleted file mode 100644 index 6d9cbc9f3c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/6.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/6.png deleted file mode 100644 index 302fbe3eea..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/7.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/7.png deleted file mode 100644 index 18f1b957c1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/8.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/8.png deleted file mode 100644 index f61834ee12..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_quartzBlock/9.png b/front/public/images/large/ExtraUtilities/color_quartzBlock/9.png deleted file mode 100644 index 8e3c1d1730..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_quartzBlock/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/0.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/0.png deleted file mode 100644 index c4cec0cfe4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/1.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/1.png deleted file mode 100644 index 1a1644559a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/10.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/10.png deleted file mode 100644 index 200d247a50..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/11.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/11.png deleted file mode 100644 index f2501eec4c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/12.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/12.png deleted file mode 100644 index 621521da1a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/13.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/13.png deleted file mode 100644 index dff8152543..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/14.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/14.png deleted file mode 100644 index 2e97838238..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/15.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/15.png deleted file mode 100644 index f2507271d5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/2.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/2.png deleted file mode 100644 index e8efb4c1db..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/3.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/3.png deleted file mode 100644 index c38115ec2e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/4.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/4.png deleted file mode 100644 index 1893cc305b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/5.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/5.png deleted file mode 100644 index 3b7192c31e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/6.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/6.png deleted file mode 100644 index 5fb031f506..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/7.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/7.png deleted file mode 100644 index 9b1d3d72e8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/8.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/8.png deleted file mode 100644 index ec89e34d8a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_redstoneLight/9.png b/front/public/images/large/ExtraUtilities/color_redstoneLight/9.png deleted file mode 100644 index e563c16c7a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_redstoneLight/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/0.png b/front/public/images/large/ExtraUtilities/color_stone/0.png deleted file mode 100644 index d8ddbaa1cd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/1.png b/front/public/images/large/ExtraUtilities/color_stone/1.png deleted file mode 100644 index 128d0fe356..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/10.png b/front/public/images/large/ExtraUtilities/color_stone/10.png deleted file mode 100644 index 08d785bcb7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/11.png b/front/public/images/large/ExtraUtilities/color_stone/11.png deleted file mode 100644 index c684bfd650..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/12.png b/front/public/images/large/ExtraUtilities/color_stone/12.png deleted file mode 100644 index 4af284f69a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/13.png b/front/public/images/large/ExtraUtilities/color_stone/13.png deleted file mode 100644 index 8e7a1bc455..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/14.png b/front/public/images/large/ExtraUtilities/color_stone/14.png deleted file mode 100644 index f5015870f6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/15.png b/front/public/images/large/ExtraUtilities/color_stone/15.png deleted file mode 100644 index 22726348a3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/2.png b/front/public/images/large/ExtraUtilities/color_stone/2.png deleted file mode 100644 index 9c03ff49a2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/3.png b/front/public/images/large/ExtraUtilities/color_stone/3.png deleted file mode 100644 index 52a7bb9b87..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/4.png b/front/public/images/large/ExtraUtilities/color_stone/4.png deleted file mode 100644 index 8b086634af..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/5.png b/front/public/images/large/ExtraUtilities/color_stone/5.png deleted file mode 100644 index 3abb749e0f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/6.png b/front/public/images/large/ExtraUtilities/color_stone/6.png deleted file mode 100644 index f23cccddf1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/7.png b/front/public/images/large/ExtraUtilities/color_stone/7.png deleted file mode 100644 index bc9a6dcac6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/8.png b/front/public/images/large/ExtraUtilities/color_stone/8.png deleted file mode 100644 index 6fd36abe04..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stone/9.png b/front/public/images/large/ExtraUtilities/color_stone/9.png deleted file mode 100644 index e4fb69fb24..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stone/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/0.png b/front/public/images/large/ExtraUtilities/color_stonebrick/0.png deleted file mode 100644 index f0ab323992..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/1.png b/front/public/images/large/ExtraUtilities/color_stonebrick/1.png deleted file mode 100644 index 1f09660105..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/10.png b/front/public/images/large/ExtraUtilities/color_stonebrick/10.png deleted file mode 100644 index df0f05520e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/11.png b/front/public/images/large/ExtraUtilities/color_stonebrick/11.png deleted file mode 100644 index 8baa77a933..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/12.png b/front/public/images/large/ExtraUtilities/color_stonebrick/12.png deleted file mode 100644 index d19120c501..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/13.png b/front/public/images/large/ExtraUtilities/color_stonebrick/13.png deleted file mode 100644 index 55e3108069..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/14.png b/front/public/images/large/ExtraUtilities/color_stonebrick/14.png deleted file mode 100644 index 702f6ada00..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/15.png b/front/public/images/large/ExtraUtilities/color_stonebrick/15.png deleted file mode 100644 index 2c3046275b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/2.png b/front/public/images/large/ExtraUtilities/color_stonebrick/2.png deleted file mode 100644 index daa35b29eb..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/3.png b/front/public/images/large/ExtraUtilities/color_stonebrick/3.png deleted file mode 100644 index 18f22ca79b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/4.png b/front/public/images/large/ExtraUtilities/color_stonebrick/4.png deleted file mode 100644 index e67eb66c29..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/5.png b/front/public/images/large/ExtraUtilities/color_stonebrick/5.png deleted file mode 100644 index c37a3895c1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/6.png b/front/public/images/large/ExtraUtilities/color_stonebrick/6.png deleted file mode 100644 index 838d86f7b1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/7.png b/front/public/images/large/ExtraUtilities/color_stonebrick/7.png deleted file mode 100644 index 313210b9f6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/8.png b/front/public/images/large/ExtraUtilities/color_stonebrick/8.png deleted file mode 100644 index 564bb02944..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/color_stonebrick/9.png b/front/public/images/large/ExtraUtilities/color_stonebrick/9.png deleted file mode 100644 index df0173e504..0000000000 Binary files a/front/public/images/large/ExtraUtilities/color_stonebrick/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/conveyor/0.png b/front/public/images/large/ExtraUtilities/conveyor/0.png deleted file mode 100644 index 0cab2a8149..0000000000 Binary files a/front/public/images/large/ExtraUtilities/conveyor/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/creativebuilderswand/0.png b/front/public/images/large/ExtraUtilities/creativebuilderswand/0.png deleted file mode 100644 index 02ae50c312..0000000000 Binary files a/front/public/images/large/ExtraUtilities/creativebuilderswand/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/cursedearthside/0.png b/front/public/images/large/ExtraUtilities/cursedearthside/0.png deleted file mode 100644 index 55629dd55e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/cursedearthside/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/curtains/0.png b/front/public/images/large/ExtraUtilities/curtains/0.png deleted file mode 100644 index 18e0134fc1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/curtains/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/dark_portal/0.png b/front/public/images/large/ExtraUtilities/dark_portal/0.png deleted file mode 100644 index d118b4432b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/dark_portal/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/dark_portal/2.png b/front/public/images/large/ExtraUtilities/dark_portal/2.png deleted file mode 100644 index 47b6904c49..0000000000 Binary files a/front/public/images/large/ExtraUtilities/dark_portal/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/datablock/0.png b/front/public/images/large/ExtraUtilities/datablock/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/datablock/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/0.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/0.png deleted file mode 100644 index 971a6bc66d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/1.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/1.png deleted file mode 100644 index 179df710fb..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/10.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/10.png deleted file mode 100644 index 6d3040e659..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/11.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/11.png deleted file mode 100644 index 26ee597c50..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/12.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/12.png deleted file mode 100644 index dbc0f57756..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/13.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/13.png deleted file mode 100644 index e68b3a004a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/14.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/14.png deleted file mode 100644 index b4650a6a72..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/2.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/2.png deleted file mode 100644 index f59a20880f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/3.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/3.png deleted file mode 100644 index 29df9b0c4c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/4.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/4.png deleted file mode 100644 index 03738c7b07..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/5.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/5.png deleted file mode 100644 index d646a19c0f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/6.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/6.png deleted file mode 100644 index 9bbedef19d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/7.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/7.png deleted file mode 100644 index e6ff861c8d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/8.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/8.png deleted file mode 100644 index 759e966cdb..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock1/9.png b/front/public/images/large/ExtraUtilities/decorativeBlock1/9.png deleted file mode 100644 index 52984dd2a8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock1/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/0.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/0.png deleted file mode 100644 index 83ddf61655..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/1.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/1.png deleted file mode 100644 index b5c2f994d7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/10.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/10.png deleted file mode 100644 index d91210e3e3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/11.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/11.png deleted file mode 100644 index 523465988b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/2.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/2.png deleted file mode 100644 index 2c3919b15c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/3.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/3.png deleted file mode 100644 index e97da0f8bb..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/4.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/4.png deleted file mode 100644 index b519483910..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/5.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/5.png deleted file mode 100644 index 6a151f7549..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/6.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/6.png deleted file mode 100644 index 7864de590e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/7.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/7.png deleted file mode 100644 index f6a4b5a353..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/8.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/8.png deleted file mode 100644 index acbb236ac4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/decorativeBlock2/9.png b/front/public/images/large/ExtraUtilities/decorativeBlock2/9.png deleted file mode 100644 index 757aeabe3e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/decorativeBlock2/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/defoliageAxe/0.png b/front/public/images/large/ExtraUtilities/defoliageAxe/0.png deleted file mode 100644 index 6baba1fd77..0000000000 Binary files a/front/public/images/large/ExtraUtilities/defoliageAxe/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/destructionpickaxe/0.png b/front/public/images/large/ExtraUtilities/destructionpickaxe/0.png deleted file mode 100644 index ab4ef8fa46..0000000000 Binary files a/front/public/images/large/ExtraUtilities/destructionpickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/divisionSigil/0.png b/front/public/images/large/ExtraUtilities/divisionSigil/0.png deleted file mode 100644 index 42771e60f2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/divisionSigil/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/drum/0.png b/front/public/images/large/ExtraUtilities/drum/0.png deleted file mode 100644 index 0c8948cf00..0000000000 Binary files a/front/public/images/large/ExtraUtilities/drum/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/drum/1.png b/front/public/images/large/ExtraUtilities/drum/1.png deleted file mode 100644 index e44a52404d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/drum/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/endConstructor/0.png b/front/public/images/large/ExtraUtilities/endConstructor/0.png deleted file mode 100644 index a0033354fc..0000000000 Binary files a/front/public/images/large/ExtraUtilities/endConstructor/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/endConstructor/2.png b/front/public/images/large/ExtraUtilities/endConstructor/2.png deleted file mode 100644 index eff91225b7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/endConstructor/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/endMarker/0.png b/front/public/images/large/ExtraUtilities/endMarker/0.png deleted file mode 100644 index 1a3da9bf31..0000000000 Binary files a/front/public/images/large/ExtraUtilities/endMarker/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderCollector/0.png b/front/public/images/large/ExtraUtilities/enderCollector/0.png deleted file mode 100644 index c12d0cc8a9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderCollector/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarry/0.png b/front/public/images/large/ExtraUtilities/enderQuarry/0.png deleted file mode 100644 index 58f6c3891e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarry/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/0.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/0.png deleted file mode 100644 index c30cf52101..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/1.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/1.png deleted file mode 100644 index 9550b5e72f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/2.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/2.png deleted file mode 100644 index 5f48635b8f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/3.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/3.png deleted file mode 100644 index 561d4315b8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/4.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/4.png deleted file mode 100644 index d9f073809e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/5.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/5.png deleted file mode 100644 index e6776097ca..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/6.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/6.png deleted file mode 100644 index 4891bb9a1c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/7.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/7.png deleted file mode 100644 index 1cf2d83af5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/8.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/8.png deleted file mode 100644 index d0f5a61175..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/9.png b/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/9.png deleted file mode 100644 index 59e2ea69d1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderQuarryUpgrade/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/enderThermicPump/0.png b/front/public/images/large/ExtraUtilities/enderThermicPump/0.png deleted file mode 100644 index 585b8192c4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/enderThermicPump/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/erosionShovel/0.png b/front/public/images/large/ExtraUtilities/erosionShovel/0.png deleted file mode 100644 index da9b5608a3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/erosionShovel/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/etherealglass/0.png b/front/public/images/large/ExtraUtilities/etherealglass/0.png deleted file mode 100644 index b4a9b0e2e6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/etherealglass/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/etherealglass/1.png b/front/public/images/large/ExtraUtilities/etherealglass/1.png deleted file mode 100644 index dd524f4185..0000000000 Binary files a/front/public/images/large/ExtraUtilities/etherealglass/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/etherealglass/2.png b/front/public/images/large/ExtraUtilities/etherealglass/2.png deleted file mode 100644 index 66667ae87f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/etherealglass/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/etherealglass/3.png b/front/public/images/large/ExtraUtilities/etherealglass/3.png deleted file mode 100644 index b17568b437..0000000000 Binary files a/front/public/images/large/ExtraUtilities/etherealglass/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/etherealglass/4.png b/front/public/images/large/ExtraUtilities/etherealglass/4.png deleted file mode 100644 index 3a0264db5c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/etherealglass/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/etherealglass/5.png b/front/public/images/large/ExtraUtilities/etherealglass/5.png deleted file mode 100644 index 46b7eefeee..0000000000 Binary files a/front/public/images/large/ExtraUtilities/etherealglass/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/ethericsword/0.png b/front/public/images/large/ExtraUtilities/ethericsword/0.png deleted file mode 100644 index 114e15781f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/ethericsword/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/extractor_base/0.png b/front/public/images/large/ExtraUtilities/extractor_base/0.png deleted file mode 100644 index a648169692..0000000000 Binary files a/front/public/images/large/ExtraUtilities/extractor_base/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/extractor_base/12.png b/front/public/images/large/ExtraUtilities/extractor_base/12.png deleted file mode 100644 index 60229484bc..0000000000 Binary files a/front/public/images/large/ExtraUtilities/extractor_base/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/extractor_base/13.png b/front/public/images/large/ExtraUtilities/extractor_base/13.png deleted file mode 100644 index ef6e315bd1..0000000000 Binary files a/front/public/images/large/ExtraUtilities/extractor_base/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/extractor_base/6.png b/front/public/images/large/ExtraUtilities/extractor_base/6.png deleted file mode 100644 index c72287eb12..0000000000 Binary files a/front/public/images/large/ExtraUtilities/extractor_base/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/extractor_base_remote/0.png b/front/public/images/large/ExtraUtilities/extractor_base_remote/0.png deleted file mode 100644 index efb91fe5a5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/extractor_base_remote/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/extractor_base_remote/6.png b/front/public/images/large/ExtraUtilities/extractor_base_remote/6.png deleted file mode 100644 index 81a9c41668..0000000000 Binary files a/front/public/images/large/ExtraUtilities/extractor_base_remote/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/filing/0.png b/front/public/images/large/ExtraUtilities/filing/0.png deleted file mode 100644 index 5afb62fc84..0000000000 Binary files a/front/public/images/large/ExtraUtilities/filing/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/filing/1.png b/front/public/images/large/ExtraUtilities/filing/1.png deleted file mode 100644 index 5da2ef4950..0000000000 Binary files a/front/public/images/large/ExtraUtilities/filing/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/0.png b/front/public/images/large/ExtraUtilities/generator.64/0.png deleted file mode 100644 index d9d6a4de56..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/1.png b/front/public/images/large/ExtraUtilities/generator.64/1.png deleted file mode 100644 index e4ca9a87f9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/10.png b/front/public/images/large/ExtraUtilities/generator.64/10.png deleted file mode 100644 index 74851c784e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/11.png b/front/public/images/large/ExtraUtilities/generator.64/11.png deleted file mode 100644 index 0ff512cb6b..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/2.png b/front/public/images/large/ExtraUtilities/generator.64/2.png deleted file mode 100644 index 3e5f731618..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/3.png b/front/public/images/large/ExtraUtilities/generator.64/3.png deleted file mode 100644 index e6af82eb79..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/4.png b/front/public/images/large/ExtraUtilities/generator.64/4.png deleted file mode 100644 index 9d92322259..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/5.png b/front/public/images/large/ExtraUtilities/generator.64/5.png deleted file mode 100644 index 3fdc20e3d8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/6.png b/front/public/images/large/ExtraUtilities/generator.64/6.png deleted file mode 100644 index 9bf541b833..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/7.png b/front/public/images/large/ExtraUtilities/generator.64/7.png deleted file mode 100644 index 5084071936..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/8.png b/front/public/images/large/ExtraUtilities/generator.64/8.png deleted file mode 100644 index 417464a159..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.64/9.png b/front/public/images/large/ExtraUtilities/generator.64/9.png deleted file mode 100644 index 9cc7d19322..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.64/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/0.png b/front/public/images/large/ExtraUtilities/generator.8/0.png deleted file mode 100644 index f289f7222c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/1.png b/front/public/images/large/ExtraUtilities/generator.8/1.png deleted file mode 100644 index b1362789bd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/10.png b/front/public/images/large/ExtraUtilities/generator.8/10.png deleted file mode 100644 index 43c4156815..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/11.png b/front/public/images/large/ExtraUtilities/generator.8/11.png deleted file mode 100644 index 93bfa3edc3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/2.png b/front/public/images/large/ExtraUtilities/generator.8/2.png deleted file mode 100644 index d21ca96bb5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/3.png b/front/public/images/large/ExtraUtilities/generator.8/3.png deleted file mode 100644 index 8aaf606703..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/4.png b/front/public/images/large/ExtraUtilities/generator.8/4.png deleted file mode 100644 index d46db60589..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/5.png b/front/public/images/large/ExtraUtilities/generator.8/5.png deleted file mode 100644 index 26540f32d4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/6.png b/front/public/images/large/ExtraUtilities/generator.8/6.png deleted file mode 100644 index 9667487560..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/7.png b/front/public/images/large/ExtraUtilities/generator.8/7.png deleted file mode 100644 index 7a77031bd6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/8.png b/front/public/images/large/ExtraUtilities/generator.8/8.png deleted file mode 100644 index 8f9f9c1b32..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator.8/9.png b/front/public/images/large/ExtraUtilities/generator.8/9.png deleted file mode 100644 index a1d6b4c607..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator.8/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/0.png b/front/public/images/large/ExtraUtilities/generator/0.png deleted file mode 100644 index 221e72cafa..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/1.png b/front/public/images/large/ExtraUtilities/generator/1.png deleted file mode 100644 index 0ea5f72195..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/10.png b/front/public/images/large/ExtraUtilities/generator/10.png deleted file mode 100644 index 6092ffc995..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/11.png b/front/public/images/large/ExtraUtilities/generator/11.png deleted file mode 100644 index 96d0dcaf25..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/2.png b/front/public/images/large/ExtraUtilities/generator/2.png deleted file mode 100644 index a9b6d828c9..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/3.png b/front/public/images/large/ExtraUtilities/generator/3.png deleted file mode 100644 index 62a87e4bea..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/4.png b/front/public/images/large/ExtraUtilities/generator/4.png deleted file mode 100644 index 2fee0679ee..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/5.png b/front/public/images/large/ExtraUtilities/generator/5.png deleted file mode 100644 index 94554cd6bd..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/6.png b/front/public/images/large/ExtraUtilities/generator/6.png deleted file mode 100644 index f419b69abc..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/7.png b/front/public/images/large/ExtraUtilities/generator/7.png deleted file mode 100644 index 541926fd7c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/8.png b/front/public/images/large/ExtraUtilities/generator/8.png deleted file mode 100644 index 1d297f5c48..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/generator/9.png b/front/public/images/large/ExtraUtilities/generator/9.png deleted file mode 100644 index bbc77c4eed..0000000000 Binary files a/front/public/images/large/ExtraUtilities/generator/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/glove/0.png b/front/public/images/large/ExtraUtilities/glove/0.png deleted file mode 100644 index acb9cae1b8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/glove/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/golden_lasso/0.png b/front/public/images/large/ExtraUtilities/golden_lasso/0.png deleted file mode 100644 index ff793c2585..0000000000 Binary files a/front/public/images/large/ExtraUtilities/golden_lasso/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/0.png b/front/public/images/large/ExtraUtilities/greenscreen/0.png deleted file mode 100644 index 7e4f59b478..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/1.png b/front/public/images/large/ExtraUtilities/greenscreen/1.png deleted file mode 100644 index 3c4b0b567e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/10.png b/front/public/images/large/ExtraUtilities/greenscreen/10.png deleted file mode 100644 index ef1c68cf25..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/11.png b/front/public/images/large/ExtraUtilities/greenscreen/11.png deleted file mode 100644 index a7548caead..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/12.png b/front/public/images/large/ExtraUtilities/greenscreen/12.png deleted file mode 100644 index a0b74c2adf..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/13.png b/front/public/images/large/ExtraUtilities/greenscreen/13.png deleted file mode 100644 index 4bce5a472f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/14.png b/front/public/images/large/ExtraUtilities/greenscreen/14.png deleted file mode 100644 index dc45d21432..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/15.png b/front/public/images/large/ExtraUtilities/greenscreen/15.png deleted file mode 100644 index e14ae8729e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/15.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/2.png b/front/public/images/large/ExtraUtilities/greenscreen/2.png deleted file mode 100644 index 3084e4ceaa..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/3.png b/front/public/images/large/ExtraUtilities/greenscreen/3.png deleted file mode 100644 index b02b60ba6f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/4.png b/front/public/images/large/ExtraUtilities/greenscreen/4.png deleted file mode 100644 index 163dda8de7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/5.png b/front/public/images/large/ExtraUtilities/greenscreen/5.png deleted file mode 100644 index 0802ba30e2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/6.png b/front/public/images/large/ExtraUtilities/greenscreen/6.png deleted file mode 100644 index 6478bfd8ca..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/7.png b/front/public/images/large/ExtraUtilities/greenscreen/7.png deleted file mode 100644 index 25eb6b6d4a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/8.png b/front/public/images/large/ExtraUtilities/greenscreen/8.png deleted file mode 100644 index 880ac37940..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/greenscreen/9.png b/front/public/images/large/ExtraUtilities/greenscreen/9.png deleted file mode 100644 index 74d7626cc7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/greenscreen/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/heatingElement/0.png b/front/public/images/large/ExtraUtilities/heatingElement/0.png deleted file mode 100644 index 08570edee4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/heatingElement/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/lawSword/0.png b/front/public/images/large/ExtraUtilities/lawSword/0.png deleted file mode 100644 index d1965451f5..0000000000 Binary files a/front/public/images/large/ExtraUtilities/lawSword/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/magnumTorch/0.png b/front/public/images/large/ExtraUtilities/magnumTorch/0.png deleted file mode 100644 index 546d7541ab..0000000000 Binary files a/front/public/images/large/ExtraUtilities/magnumTorch/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/mini-soul/0.png b/front/public/images/large/ExtraUtilities/mini-soul/0.png deleted file mode 100644 index 5f16032640..0000000000 Binary files a/front/public/images/large/ExtraUtilities/mini-soul/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/mini-soul/3.png b/front/public/images/large/ExtraUtilities/mini-soul/3.png deleted file mode 100644 index 5f16032640..0000000000 Binary files a/front/public/images/large/ExtraUtilities/mini-soul/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/0.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/0.png deleted file mode 100644 index 40ec0823d2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/1.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/1.png deleted file mode 100644 index 2646c23ebb..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/10.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/10.png deleted file mode 100644 index 3dfa590e9c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/2.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/2.png deleted file mode 100644 index 8f7855454d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/3.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/3.png deleted file mode 100644 index 60ffc27e7c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/3.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/4.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/4.png deleted file mode 100644 index dbf93ff142..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/4.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/5.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/5.png deleted file mode 100644 index ba61cb1d91..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/5.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/6.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/6.png deleted file mode 100644 index 45ec9d338a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/6.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/7.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/7.png deleted file mode 100644 index b1282e0661..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/7.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/8.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/8.png deleted file mode 100644 index b9b11d0144..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/nodeUpgrade/9.png b/front/public/images/large/ExtraUtilities/nodeUpgrade/9.png deleted file mode 100644 index ca07817d43..0000000000 Binary files a/front/public/images/large/ExtraUtilities/nodeUpgrade/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/paintbrush/0.png b/front/public/images/large/ExtraUtilities/paintbrush/0.png deleted file mode 100644 index a4a27239c4..0000000000 Binary files a/front/public/images/large/ExtraUtilities/paintbrush/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes.1/0.png b/front/public/images/large/ExtraUtilities/pipes.1/0.png deleted file mode 100644 index b2d861e2cf..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes.1/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/0.png b/front/public/images/large/ExtraUtilities/pipes/0.png deleted file mode 100644 index 68a7d5bb03..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/10.png b/front/public/images/large/ExtraUtilities/pipes/10.png deleted file mode 100644 index 820632a50c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/10.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/11.png b/front/public/images/large/ExtraUtilities/pipes/11.png deleted file mode 100644 index 552c5518f7..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/11.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/12.png b/front/public/images/large/ExtraUtilities/pipes/12.png deleted file mode 100644 index 91d2416645..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/12.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/13.png b/front/public/images/large/ExtraUtilities/pipes/13.png deleted file mode 100644 index 5eeb2f0b11..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/13.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/14.png b/front/public/images/large/ExtraUtilities/pipes/14.png deleted file mode 100644 index 360e718c8e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/14.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/8.png b/front/public/images/large/ExtraUtilities/pipes/8.png deleted file mode 100644 index cc1fc5e6d8..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/8.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pipes/9.png b/front/public/images/large/ExtraUtilities/pipes/9.png deleted file mode 100644 index 0383ffaa5a..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pipes/9.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/pureLove/0.png b/front/public/images/large/ExtraUtilities/pureLove/0.png deleted file mode 100644 index 808afc1054..0000000000 Binary files a/front/public/images/large/ExtraUtilities/pureLove/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/scanner/0.png b/front/public/images/large/ExtraUtilities/scanner/0.png deleted file mode 100644 index a0e8623927..0000000000 Binary files a/front/public/images/large/ExtraUtilities/scanner/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/shears/0.png b/front/public/images/large/ExtraUtilities/shears/0.png deleted file mode 100644 index ee092e9367..0000000000 Binary files a/front/public/images/large/ExtraUtilities/shears/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/sonar_goggles/0.png b/front/public/images/large/ExtraUtilities/sonar_goggles/0.png deleted file mode 100644 index a4f5db7b3f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/sonar_goggles/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/sound_muffler/0.png b/front/public/images/large/ExtraUtilities/sound_muffler/0.png deleted file mode 100644 index 3c7ec2471f..0000000000 Binary files a/front/public/images/large/ExtraUtilities/sound_muffler/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/sound_muffler/1.png b/front/public/images/large/ExtraUtilities/sound_muffler/1.png deleted file mode 100644 index c8933c0b55..0000000000 Binary files a/front/public/images/large/ExtraUtilities/sound_muffler/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/spike_base/0.png b/front/public/images/large/ExtraUtilities/spike_base/0.png deleted file mode 100644 index f4ad28955d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/spike_base/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/spike_base_diamond/0.png b/front/public/images/large/ExtraUtilities/spike_base_diamond/0.png deleted file mode 100644 index f0ec8ca1b6..0000000000 Binary files a/front/public/images/large/ExtraUtilities/spike_base_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/spike_base_gold/0.png b/front/public/images/large/ExtraUtilities/spike_base_gold/0.png deleted file mode 100644 index f8985905d2..0000000000 Binary files a/front/public/images/large/ExtraUtilities/spike_base_gold/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/spike_base_wood/0.png b/front/public/images/large/ExtraUtilities/spike_base_wood/0.png deleted file mode 100644 index 55537599c0..0000000000 Binary files a/front/public/images/large/ExtraUtilities/spike_base_wood/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/temporalHoe/0.png b/front/public/images/large/ExtraUtilities/temporalHoe/0.png deleted file mode 100644 index 5914f6e64c..0000000000 Binary files a/front/public/images/large/ExtraUtilities/temporalHoe/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/timer/0.png b/front/public/images/large/ExtraUtilities/timer/0.png deleted file mode 100644 index 1f292c1232..0000000000 Binary files a/front/public/images/large/ExtraUtilities/timer/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/trading_post/0.png b/front/public/images/large/ExtraUtilities/trading_post/0.png deleted file mode 100644 index 2212e3390d..0000000000 Binary files a/front/public/images/large/ExtraUtilities/trading_post/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/trashcan/0.png b/front/public/images/large/ExtraUtilities/trashcan/0.png deleted file mode 100644 index 2e1610233e..0000000000 Binary files a/front/public/images/large/ExtraUtilities/trashcan/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/trashcan/1.png b/front/public/images/large/ExtraUtilities/trashcan/1.png deleted file mode 100644 index 1d5135f143..0000000000 Binary files a/front/public/images/large/ExtraUtilities/trashcan/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/trashcan/2.png b/front/public/images/large/ExtraUtilities/trashcan/2.png deleted file mode 100644 index 4d90401ddf..0000000000 Binary files a/front/public/images/large/ExtraUtilities/trashcan/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/unstableingot/0.png b/front/public/images/large/ExtraUtilities/unstableingot/0.png deleted file mode 100644 index 377960f367..0000000000 Binary files a/front/public/images/large/ExtraUtilities/unstableingot/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/unstableingot/1.png b/front/public/images/large/ExtraUtilities/unstableingot/1.png deleted file mode 100644 index a69e979aaa..0000000000 Binary files a/front/public/images/large/ExtraUtilities/unstableingot/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/unstableingot/2.png b/front/public/images/large/ExtraUtilities/unstableingot/2.png deleted file mode 100644 index 377960f367..0000000000 Binary files a/front/public/images/large/ExtraUtilities/unstableingot/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/watering_can/0.png b/front/public/images/large/ExtraUtilities/watering_can/0.png deleted file mode 100644 index 30c477e972..0000000000 Binary files a/front/public/images/large/ExtraUtilities/watering_can/0.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/watering_can/1.png b/front/public/images/large/ExtraUtilities/watering_can/1.png deleted file mode 100644 index 30c477e972..0000000000 Binary files a/front/public/images/large/ExtraUtilities/watering_can/1.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/watering_can/2.png b/front/public/images/large/ExtraUtilities/watering_can/2.png deleted file mode 100644 index dd0762cd71..0000000000 Binary files a/front/public/images/large/ExtraUtilities/watering_can/2.png and /dev/null differ diff --git a/front/public/images/large/ExtraUtilities/watering_can/3.png b/front/public/images/large/ExtraUtilities/watering_can/3.png deleted file mode 100644 index ffa191d8d3..0000000000 Binary files a/front/public/images/large/ExtraUtilities/watering_can/3.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/carbonDissolver/0.png b/front/public/images/large/FloodLights/carbonDissolver/0.png deleted file mode 100644 index 998694a164..0000000000 Binary files a/front/public/images/large/FloodLights/carbonDissolver/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/carbonFloodlight/0.png b/front/public/images/large/FloodLights/carbonFloodlight/0.png deleted file mode 100644 index bbad686b33..0000000000 Binary files a/front/public/images/large/FloodLights/carbonFloodlight/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/carbonLantern/0.png b/front/public/images/large/FloodLights/carbonLantern/0.png deleted file mode 100644 index f5d681dec5..0000000000 Binary files a/front/public/images/large/FloodLights/carbonLantern/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/electricFloodlight/0.png b/front/public/images/large/FloodLights/electricFloodlight/0.png deleted file mode 100644 index e4b20ab31b..0000000000 Binary files a/front/public/images/large/FloodLights/electricFloodlight/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/electricIncandescentLightBulb/0.png b/front/public/images/large/FloodLights/electricIncandescentLightBulb/0.png deleted file mode 100644 index eb05ab3797..0000000000 Binary files a/front/public/images/large/FloodLights/electricIncandescentLightBulb/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/glowingFilament/0.png b/front/public/images/large/FloodLights/glowingFilament/0.png deleted file mode 100644 index 82bfbdd24f..0000000000 Binary files a/front/public/images/large/FloodLights/glowingFilament/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/growLight/0.png b/front/public/images/large/FloodLights/growLight/0.png deleted file mode 100644 index ec17c87a2a..0000000000 Binary files a/front/public/images/large/FloodLights/growLight/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/lightDebugTool/0.png b/front/public/images/large/FloodLights/lightDebugTool/0.png deleted file mode 100644 index 440d1b8f42..0000000000 Binary files a/front/public/images/large/FloodLights/lightDebugTool/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/mantle/0.png b/front/public/images/large/FloodLights/mantle/0.png deleted file mode 100644 index 8c057a3016..0000000000 Binary files a/front/public/images/large/FloodLights/mantle/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/rawFilament/0.png b/front/public/images/large/FloodLights/rawFilament/0.png deleted file mode 100644 index 9ad5742110..0000000000 Binary files a/front/public/images/large/FloodLights/rawFilament/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/smallElectricFloodlightMetaBlock/0.png b/front/public/images/large/FloodLights/smallElectricFloodlightMetaBlock/0.png deleted file mode 100644 index 2f91f1fe0a..0000000000 Binary files a/front/public/images/large/FloodLights/smallElectricFloodlightMetaBlock/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/smallElectricFloodlightMetaBlock/1.png b/front/public/images/large/FloodLights/smallElectricFloodlightMetaBlock/1.png deleted file mode 100644 index 77fe7f1375..0000000000 Binary files a/front/public/images/large/FloodLights/smallElectricFloodlightMetaBlock/1.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/tilePhantomLight/0.png b/front/public/images/large/FloodLights/tilePhantomLight/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/FloodLights/tilePhantomLight/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/tileUVLight/0.png b/front/public/images/large/FloodLights/tileUVLight/0.png deleted file mode 100644 index 77ebdcd263..0000000000 Binary files a/front/public/images/large/FloodLights/tileUVLight/0.png and /dev/null differ diff --git a/front/public/images/large/FloodLights/uvFloodlight/0.png b/front/public/images/large/FloodLights/uvFloodlight/0.png deleted file mode 100644 index 71bd3087bc..0000000000 Binary files a/front/public/images/large/FloodLights/uvFloodlight/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/ArcaneCake/0.png b/front/public/images/large/ForbiddenMagic/ArcaneCake/0.png deleted file mode 100644 index ffb63293b2..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/ArcaneCake/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/ArcaneCakeItem/0.png b/front/public/images/large/ForbiddenMagic/ArcaneCakeItem/0.png deleted file mode 100644 index 6be70b633e..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/ArcaneCakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/BlinkFocus/0.png b/front/public/images/large/ForbiddenMagic/BlinkFocus/0.png deleted file mode 100644 index bf0d67f3ff..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/BlinkFocus/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/BloodRapier/0.png b/front/public/images/large/ForbiddenMagic/BloodRapier/0.png deleted file mode 100644 index c8be3baa84..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/BloodRapier/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/Bloodwell/0.png b/front/public/images/large/ForbiddenMagic/Bloodwell/0.png deleted file mode 100644 index 9d7ffc7082..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/Bloodwell/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/Boundwell/0.png b/front/public/images/large/ForbiddenMagic/Boundwell/0.png deleted file mode 100644 index cd254204bb..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/Boundwell/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/Crystalwell/0.png b/front/public/images/large/ForbiddenMagic/Crystalwell/0.png deleted file mode 100644 index 8c8ebc1c44..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/Crystalwell/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/DiabolistFork/0.png b/front/public/images/large/ForbiddenMagic/DiabolistFork/0.png deleted file mode 100644 index 250b8a246c..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/DiabolistFork/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/EldritchOrb/0.png b/front/public/images/large/ForbiddenMagic/EldritchOrb/0.png deleted file mode 100644 index de94e59aae..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/EldritchOrb/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/FMResource/0.png b/front/public/images/large/ForbiddenMagic/FMResource/0.png deleted file mode 100644 index 2237913b3c..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/FMResource/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/FMResource/1.png b/front/public/images/large/ForbiddenMagic/FMResource/1.png deleted file mode 100644 index 7793144f71..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/FMResource/1.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/FMResource/2.png b/front/public/images/large/ForbiddenMagic/FMResource/2.png deleted file mode 100644 index 5fb1d6fcf0..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/FMResource/2.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/FMResource/3.png b/front/public/images/large/ForbiddenMagic/FMResource/3.png deleted file mode 100644 index fa47c7646f..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/FMResource/3.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/FMResource/4.png b/front/public/images/large/ForbiddenMagic/FMResource/4.png deleted file mode 100644 index 2adb13362f..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/FMResource/4.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/GluttonyShard/0.png b/front/public/images/large/ForbiddenMagic/GluttonyShard/0.png deleted file mode 100644 index 96e29f6575..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/GluttonyShard/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/InkFlower/0.png b/front/public/images/large/ForbiddenMagic/InkFlower/0.png deleted file mode 100644 index 1e06be7ec7..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/InkFlower/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/MobCrystal/0.png b/front/public/images/large/ForbiddenMagic/MobCrystal/0.png deleted file mode 100644 index 2dd2cd5bab..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/MobCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/MorphAxe/0.png b/front/public/images/large/ForbiddenMagic/MorphAxe/0.png deleted file mode 100644 index f51867a02f..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/MorphAxe/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/MorphPickaxe/0.png b/front/public/images/large/ForbiddenMagic/MorphPickaxe/0.png deleted file mode 100644 index f97dd9050d..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/MorphPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/MorphShovel/0.png b/front/public/images/large/ForbiddenMagic/MorphShovel/0.png deleted file mode 100644 index 6cd66a60b6..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/MorphShovel/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/MorphSword/0.png b/front/public/images/large/ForbiddenMagic/MorphSword/0.png deleted file mode 100644 index 8805e3cd38..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/MorphSword/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/NetherShard/0.png b/front/public/images/large/ForbiddenMagic/NetherShard/0.png deleted file mode 100644 index 5979fcfc4c..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/NetherShard/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/NetherShard/1.png b/front/public/images/large/ForbiddenMagic/NetherShard/1.png deleted file mode 100644 index d0c0ae41a5..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/NetherShard/1.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/NetherShard/2.png b/front/public/images/large/ForbiddenMagic/NetherShard/2.png deleted file mode 100644 index 13bb0b1a04..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/NetherShard/2.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/NetherShard/3.png b/front/public/images/large/ForbiddenMagic/NetherShard/3.png deleted file mode 100644 index 4f813a64dd..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/NetherShard/3.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/NetherShard/4.png b/front/public/images/large/ForbiddenMagic/NetherShard/4.png deleted file mode 100644 index 74054c3289..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/NetherShard/4.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/NetherShard/5.png b/front/public/images/large/ForbiddenMagic/NetherShard/5.png deleted file mode 100644 index 579be5a541..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/NetherShard/5.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/NetherShard/6.png b/front/public/images/large/ForbiddenMagic/NetherShard/6.png deleted file mode 100644 index 50a8e5868a..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/NetherShard/6.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/Primewell/0.png b/front/public/images/large/ForbiddenMagic/Primewell/0.png deleted file mode 100644 index 0e38929b1b..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/Primewell/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/RidingCrop/0.png b/front/public/images/large/ForbiddenMagic/RidingCrop/0.png deleted file mode 100644 index 9160e4f2f5..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/RidingCrop/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/RingNutrition/0.png b/front/public/images/large/ForbiddenMagic/RingNutrition/0.png deleted file mode 100644 index fe2218d57f..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/RingNutrition/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/SkullAxe/0.png b/front/public/images/large/ForbiddenMagic/SkullAxe/0.png deleted file mode 100644 index 3eb15ae0c7..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/SkullAxe/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/StarBlock/0.png b/front/public/images/large/ForbiddenMagic/StarBlock/0.png deleted file mode 100644 index e0040971c7..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/StarBlock/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/SubCollar/0.png b/front/public/images/large/ForbiddenMagic/SubCollar/0.png deleted file mode 100644 index 8a34b36bce..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/SubCollar/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintBlock/0.png b/front/public/images/large/ForbiddenMagic/TaintBlock/0.png deleted file mode 100644 index c9b459cb35..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintBlock/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintBlock/1.png b/front/public/images/large/ForbiddenMagic/TaintBlock/1.png deleted file mode 100644 index f9f9683105..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintBlock/1.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintCoal/0.png b/front/public/images/large/ForbiddenMagic/TaintCoal/0.png deleted file mode 100644 index 176a7a7ab6..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintCoal/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintFruit/0.png b/front/public/images/large/ForbiddenMagic/TaintFruit/0.png deleted file mode 100644 index d249a17754..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintFruit/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintLeaves/0.png b/front/public/images/large/ForbiddenMagic/TaintLeaves/0.png deleted file mode 100644 index 0a59d4e5c1..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintLog/0.png b/front/public/images/large/ForbiddenMagic/TaintLog/0.png deleted file mode 100644 index 16c7be86cb..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintLog/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintPickaxe/0.png b/front/public/images/large/ForbiddenMagic/TaintPickaxe/0.png deleted file mode 100644 index a5a4e3029a..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintPlank/0.png b/front/public/images/large/ForbiddenMagic/TaintPlank/0.png deleted file mode 100644 index d311dc16f7..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintPlank/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintSapling/0.png b/front/public/images/large/ForbiddenMagic/TaintSapling/0.png deleted file mode 100644 index 28a1e4078c..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintSapling/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/TaintShovel/0.png b/front/public/images/large/ForbiddenMagic/TaintShovel/0.png deleted file mode 100644 index 321dbc3fab..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/TaintShovel/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/UmbralBush/0.png b/front/public/images/large/ForbiddenMagic/UmbralBush/0.png deleted file mode 100644 index fa518975c1..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/UmbralBush/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCaps/0.png b/front/public/images/large/ForbiddenMagic/WandCaps/0.png deleted file mode 100644 index b542b667ea..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCaps/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCaps/1.png b/front/public/images/large/ForbiddenMagic/WandCaps/1.png deleted file mode 100644 index 3c6a51f208..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCaps/1.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCaps/2.png b/front/public/images/large/ForbiddenMagic/WandCaps/2.png deleted file mode 100644 index 108dbe9da9..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCaps/2.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCaps/3.png b/front/public/images/large/ForbiddenMagic/WandCaps/3.png deleted file mode 100644 index 29dc2240d3..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCaps/3.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCaps/4.png b/front/public/images/large/ForbiddenMagic/WandCaps/4.png deleted file mode 100644 index d718f3cec4..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCaps/4.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCaps/5.png b/front/public/images/large/ForbiddenMagic/WandCaps/5.png deleted file mode 100644 index 8127359e05..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCaps/5.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCaps/6.png b/front/public/images/large/ForbiddenMagic/WandCaps/6.png deleted file mode 100644 index ebc069f291..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCaps/6.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/0.png b/front/public/images/large/ForbiddenMagic/WandCores/0.png deleted file mode 100644 index 679f9c7664..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/0.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/1.png b/front/public/images/large/ForbiddenMagic/WandCores/1.png deleted file mode 100644 index c6615b0aed..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/1.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/10.png b/front/public/images/large/ForbiddenMagic/WandCores/10.png deleted file mode 100644 index 89ec5a9a4b..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/10.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/11.png b/front/public/images/large/ForbiddenMagic/WandCores/11.png deleted file mode 100644 index 9d06aea871..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/11.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/12.png b/front/public/images/large/ForbiddenMagic/WandCores/12.png deleted file mode 100644 index f27a1f8a3d..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/12.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/13.png b/front/public/images/large/ForbiddenMagic/WandCores/13.png deleted file mode 100644 index fec28c8004..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/13.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/2.png b/front/public/images/large/ForbiddenMagic/WandCores/2.png deleted file mode 100644 index 549ff48c17..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/2.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/3.png b/front/public/images/large/ForbiddenMagic/WandCores/3.png deleted file mode 100644 index 547491fcbd..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/3.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/4.png b/front/public/images/large/ForbiddenMagic/WandCores/4.png deleted file mode 100644 index 91e8e8f0f5..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/4.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/5.png b/front/public/images/large/ForbiddenMagic/WandCores/5.png deleted file mode 100644 index 44fb0e0e45..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/5.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/6.png b/front/public/images/large/ForbiddenMagic/WandCores/6.png deleted file mode 100644 index 7aa8d4581c..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/6.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/7.png b/front/public/images/large/ForbiddenMagic/WandCores/7.png deleted file mode 100644 index f07f69a581..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/7.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/8.png b/front/public/images/large/ForbiddenMagic/WandCores/8.png deleted file mode 100644 index ccc9d3a841..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/8.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WandCores/9.png b/front/public/images/large/ForbiddenMagic/WandCores/9.png deleted file mode 100644 index b06c50954b..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WandCores/9.png and /dev/null differ diff --git a/front/public/images/large/ForbiddenMagic/WrathCage/0.png b/front/public/images/large/ForbiddenMagic/WrathCage/0.png deleted file mode 100644 index 83a31d9ceb..0000000000 Binary files a/front/public/images/large/ForbiddenMagic/WrathCage/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/adventurerBag/0.png b/front/public/images/large/Forestry/adventurerBag/0.png deleted file mode 100644 index fe336a385a..0000000000 Binary files a/front/public/images/large/Forestry/adventurerBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/adventurerBagT2/0.png b/front/public/images/large/Forestry/adventurerBagT2/0.png deleted file mode 100644 index 67bec61030..0000000000 Binary files a/front/public/images/large/Forestry/adventurerBagT2/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/alveary/0.png b/front/public/images/large/Forestry/alveary/0.png deleted file mode 100644 index 3c452b8045..0000000000 Binary files a/front/public/images/large/Forestry/alveary/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/alveary/2.png b/front/public/images/large/Forestry/alveary/2.png deleted file mode 100644 index 7888afa2bd..0000000000 Binary files a/front/public/images/large/Forestry/alveary/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/alveary/3.png b/front/public/images/large/Forestry/alveary/3.png deleted file mode 100644 index 128a0198f0..0000000000 Binary files a/front/public/images/large/Forestry/alveary/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/alveary/4.png b/front/public/images/large/Forestry/alveary/4.png deleted file mode 100644 index f6a75e8313..0000000000 Binary files a/front/public/images/large/Forestry/alveary/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/alveary/5.png b/front/public/images/large/Forestry/alveary/5.png deleted file mode 100644 index 408acd49d4..0000000000 Binary files a/front/public/images/large/Forestry/alveary/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/alveary/6.png b/front/public/images/large/Forestry/alveary/6.png deleted file mode 100644 index 6afc4472ab..0000000000 Binary files a/front/public/images/large/Forestry/alveary/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/alveary/7.png b/front/public/images/large/Forestry/alveary/7.png deleted file mode 100644 index c5e8da773e..0000000000 Binary files a/front/public/images/large/Forestry/alveary/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ambrosia/0.png b/front/public/images/large/Forestry/ambrosia/0.png deleted file mode 100644 index 025c6541c1..0000000000 Binary files a/front/public/images/large/Forestry/ambrosia/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apatite/0.png b/front/public/images/large/Forestry/apatite/0.png deleted file mode 100644 index 877e25834e..0000000000 Binary files a/front/public/images/large/Forestry/apatite/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apiaristBag/0.png b/front/public/images/large/Forestry/apiaristBag/0.png deleted file mode 100644 index ef286a1da6..0000000000 Binary files a/front/public/images/large/Forestry/apiaristBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apiaristBoots/0.png b/front/public/images/large/Forestry/apiaristBoots/0.png deleted file mode 100644 index 323c8686e2..0000000000 Binary files a/front/public/images/large/Forestry/apiaristBoots/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apiaristChest/0.png b/front/public/images/large/Forestry/apiaristChest/0.png deleted file mode 100644 index 901a8cd786..0000000000 Binary files a/front/public/images/large/Forestry/apiaristChest/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apiaristHelmet/0.png b/front/public/images/large/Forestry/apiaristHelmet/0.png deleted file mode 100644 index 54672f64cd..0000000000 Binary files a/front/public/images/large/Forestry/apiaristHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apiaristLegs/0.png b/front/public/images/large/Forestry/apiaristLegs/0.png deleted file mode 100644 index 752ed337bc..0000000000 Binary files a/front/public/images/large/Forestry/apiaristLegs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apiculture/0.png b/front/public/images/large/Forestry/apiculture/0.png deleted file mode 100644 index c9baaf3b73..0000000000 Binary files a/front/public/images/large/Forestry/apiculture/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apiculture/2.png b/front/public/images/large/Forestry/apiculture/2.png deleted file mode 100644 index 71acc4554c..0000000000 Binary files a/front/public/images/large/Forestry/apiculture/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/apicultureChest/0.png b/front/public/images/large/Forestry/apicultureChest/0.png deleted file mode 100644 index 9ad63e5d0d..0000000000 Binary files a/front/public/images/large/Forestry/apicultureChest/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/arboriculture/0.png b/front/public/images/large/Forestry/arboriculture/0.png deleted file mode 100644 index 10e0223a43..0000000000 Binary files a/front/public/images/large/Forestry/arboriculture/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ash/0.png b/front/public/images/large/Forestry/ash/0.png deleted file mode 100644 index 02d172a4f9..0000000000 Binary files a/front/public/images/large/Forestry/ash/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/0.png b/front/public/images/large/Forestry/beeCombs/0.png deleted file mode 100644 index f3d4c049ef..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/15.png b/front/public/images/large/Forestry/beeCombs/15.png deleted file mode 100644 index 562dbecce1..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/16.png b/front/public/images/large/Forestry/beeCombs/16.png deleted file mode 100644 index fa96a091b8..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/2.png b/front/public/images/large/Forestry/beeCombs/2.png deleted file mode 100644 index 81746f6d1b..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/3.png b/front/public/images/large/Forestry/beeCombs/3.png deleted file mode 100644 index 116f9f0bc5..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/4.png b/front/public/images/large/Forestry/beeCombs/4.png deleted file mode 100644 index c678b06973..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/5.png b/front/public/images/large/Forestry/beeCombs/5.png deleted file mode 100644 index f931e5fbb9..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/6.png b/front/public/images/large/Forestry/beeCombs/6.png deleted file mode 100644 index 47f86fd0c7..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeCombs/7.png b/front/public/images/large/Forestry/beeCombs/7.png deleted file mode 100644 index 64f4ffc7d9..0000000000 Binary files a/front/public/images/large/Forestry/beeCombs/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeDroneGE/0.png b/front/public/images/large/Forestry/beeDroneGE/0.png deleted file mode 100644 index 6ecafc6518..0000000000 Binary files a/front/public/images/large/Forestry/beeDroneGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeLarvaeGE/0.png b/front/public/images/large/Forestry/beeLarvaeGE/0.png deleted file mode 100644 index 553ba8bde3..0000000000 Binary files a/front/public/images/large/Forestry/beeLarvaeGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beePrincessGE/0.png b/front/public/images/large/Forestry/beePrincessGE/0.png deleted file mode 100644 index a6fbbe71bf..0000000000 Binary files a/front/public/images/large/Forestry/beePrincessGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeQueenGE/0.png b/front/public/images/large/Forestry/beeQueenGE/0.png deleted file mode 100644 index d2fd4ffe05..0000000000 Binary files a/front/public/images/large/Forestry/beeQueenGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beealyzer/0.png b/front/public/images/large/Forestry/beealyzer/0.png deleted file mode 100644 index 032eef31ae..0000000000 Binary files a/front/public/images/large/Forestry/beealyzer/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beehives/1.png b/front/public/images/large/Forestry/beehives/1.png deleted file mode 100644 index 6b7081eeff..0000000000 Binary files a/front/public/images/large/Forestry/beehives/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beehives/2.png b/front/public/images/large/Forestry/beehives/2.png deleted file mode 100644 index 59ce910a75..0000000000 Binary files a/front/public/images/large/Forestry/beehives/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beehives/3.png b/front/public/images/large/Forestry/beehives/3.png deleted file mode 100644 index 3b9a34c158..0000000000 Binary files a/front/public/images/large/Forestry/beehives/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beehives/4.png b/front/public/images/large/Forestry/beehives/4.png deleted file mode 100644 index 40ac7e86fe..0000000000 Binary files a/front/public/images/large/Forestry/beehives/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beehives/6.png b/front/public/images/large/Forestry/beehives/6.png deleted file mode 100644 index 91cc64babd..0000000000 Binary files a/front/public/images/large/Forestry/beehives/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beehives/7.png b/front/public/images/large/Forestry/beehives/7.png deleted file mode 100644 index 3ab48ccd28..0000000000 Binary files a/front/public/images/large/Forestry/beehives/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beeswax/0.png b/front/public/images/large/Forestry/beeswax/0.png deleted file mode 100644 index b0d5f183be..0000000000 Binary files a/front/public/images/large/Forestry/beeswax/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beverage/0.png b/front/public/images/large/Forestry/beverage/0.png deleted file mode 100644 index 5570eb03e4..0000000000 Binary files a/front/public/images/large/Forestry/beverage/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beverage/1.png b/front/public/images/large/Forestry/beverage/1.png deleted file mode 100644 index a6ae180bba..0000000000 Binary files a/front/public/images/large/Forestry/beverage/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/beverage/2.png b/front/public/images/large/Forestry/beverage/2.png deleted file mode 100644 index 636c1afd2d..0000000000 Binary files a/front/public/images/large/Forestry/beverage/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bituminousPeat/0.png b/front/public/images/large/Forestry/bituminousPeat/0.png deleted file mode 100644 index 8c8fc3030d..0000000000 Binary files a/front/public/images/large/Forestry/bituminousPeat/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/brokenBronzePickaxe/0.png b/front/public/images/large/Forestry/brokenBronzePickaxe/0.png deleted file mode 100644 index 391199bcab..0000000000 Binary files a/front/public/images/large/Forestry/brokenBronzePickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/brokenBronzeShovel/0.png b/front/public/images/large/Forestry/brokenBronzeShovel/0.png deleted file mode 100644 index 16f10926d5..0000000000 Binary files a/front/public/images/large/Forestry/brokenBronzeShovel/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bronzePickaxe/0.png b/front/public/images/large/Forestry/bronzePickaxe/0.png deleted file mode 100644 index 6ccd390c2c..0000000000 Binary files a/front/public/images/large/Forestry/bronzePickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bronzeShovel/0.png b/front/public/images/large/Forestry/bronzeShovel/0.png deleted file mode 100644 index 2e98af8286..0000000000 Binary files a/front/public/images/large/Forestry/bronzeShovel/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketBiomass/0.png b/front/public/images/large/Forestry/bucketBiomass/0.png deleted file mode 100644 index bbb989f5c9..0000000000 Binary files a/front/public/images/large/Forestry/bucketBiomass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketEthanol/0.png b/front/public/images/large/Forestry/bucketEthanol/0.png deleted file mode 100644 index 759ca44931..0000000000 Binary files a/front/public/images/large/Forestry/bucketEthanol/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketGlass/0.png b/front/public/images/large/Forestry/bucketGlass/0.png deleted file mode 100644 index 956234ec1d..0000000000 Binary files a/front/public/images/large/Forestry/bucketGlass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketHoney/0.png b/front/public/images/large/Forestry/bucketHoney/0.png deleted file mode 100644 index 53af729278..0000000000 Binary files a/front/public/images/large/Forestry/bucketHoney/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketIce/0.png b/front/public/images/large/Forestry/bucketIce/0.png deleted file mode 100644 index 54a6b00045..0000000000 Binary files a/front/public/images/large/Forestry/bucketIce/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketJuice/0.png b/front/public/images/large/Forestry/bucketJuice/0.png deleted file mode 100644 index e0fdf7ee0d..0000000000 Binary files a/front/public/images/large/Forestry/bucketJuice/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketMead/0.png b/front/public/images/large/Forestry/bucketMead/0.png deleted file mode 100644 index b2191c41d0..0000000000 Binary files a/front/public/images/large/Forestry/bucketMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketSeedOil/0.png b/front/public/images/large/Forestry/bucketSeedOil/0.png deleted file mode 100644 index dca499bc2f..0000000000 Binary files a/front/public/images/large/Forestry/bucketSeedOil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/bucketShortMead/0.png b/front/public/images/large/Forestry/bucketShortMead/0.png deleted file mode 100644 index 77c93164fb..0000000000 Binary files a/front/public/images/large/Forestry/bucketShortMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/builderBag/0.png b/front/public/images/large/Forestry/builderBag/0.png deleted file mode 100644 index 9e591eb618..0000000000 Binary files a/front/public/images/large/Forestry/builderBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/builderBagT2/0.png b/front/public/images/large/Forestry/builderBagT2/0.png deleted file mode 100644 index f31e4ae4bd..0000000000 Binary files a/front/public/images/large/Forestry/builderBagT2/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/butterflyGE/0.png b/front/public/images/large/Forestry/butterflyGE/0.png deleted file mode 100644 index c3f1e7a0ae..0000000000 Binary files a/front/public/images/large/Forestry/butterflyGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canBiomass/0.png b/front/public/images/large/Forestry/canBiomass/0.png deleted file mode 100644 index 66ce49411f..0000000000 Binary files a/front/public/images/large/Forestry/canBiomass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canEmpty/0.png b/front/public/images/large/Forestry/canEmpty/0.png deleted file mode 100644 index abbabbb781..0000000000 Binary files a/front/public/images/large/Forestry/canEmpty/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canEthanol/0.png b/front/public/images/large/Forestry/canEthanol/0.png deleted file mode 100644 index e006f3bb9f..0000000000 Binary files a/front/public/images/large/Forestry/canEthanol/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canFuel/0.png b/front/public/images/large/Forestry/canFuel/0.png deleted file mode 100644 index 3389deab63..0000000000 Binary files a/front/public/images/large/Forestry/canFuel/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canHoney/0.png b/front/public/images/large/Forestry/canHoney/0.png deleted file mode 100644 index adce0de704..0000000000 Binary files a/front/public/images/large/Forestry/canHoney/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canIce/0.png b/front/public/images/large/Forestry/canIce/0.png deleted file mode 100644 index b357427a47..0000000000 Binary files a/front/public/images/large/Forestry/canIce/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canJuice/0.png b/front/public/images/large/Forestry/canJuice/0.png deleted file mode 100644 index ec1973a78c..0000000000 Binary files a/front/public/images/large/Forestry/canJuice/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canLava/0.png b/front/public/images/large/Forestry/canLava/0.png deleted file mode 100644 index 9cb7b23af1..0000000000 Binary files a/front/public/images/large/Forestry/canLava/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canMead/0.png b/front/public/images/large/Forestry/canMead/0.png deleted file mode 100644 index 4a3ddf9536..0000000000 Binary files a/front/public/images/large/Forestry/canMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canOil/0.png b/front/public/images/large/Forestry/canOil/0.png deleted file mode 100644 index c427151a63..0000000000 Binary files a/front/public/images/large/Forestry/canOil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canSeedOil/0.png b/front/public/images/large/Forestry/canSeedOil/0.png deleted file mode 100644 index cc5e4d71b9..0000000000 Binary files a/front/public/images/large/Forestry/canSeedOil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canShortMead/0.png b/front/public/images/large/Forestry/canShortMead/0.png deleted file mode 100644 index 6787fc3f11..0000000000 Binary files a/front/public/images/large/Forestry/canShortMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/canWater/0.png b/front/public/images/large/Forestry/canWater/0.png deleted file mode 100644 index dd93fcbcb4..0000000000 Binary files a/front/public/images/large/Forestry/canWater/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/candle/0.png b/front/public/images/large/Forestry/candle/0.png deleted file mode 100644 index 7c3dd0b9db..0000000000 Binary files a/front/public/images/large/Forestry/candle/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cart.beehouse/0.png b/front/public/images/large/Forestry/cart.beehouse/0.png deleted file mode 100644 index dd19bfffa2..0000000000 Binary files a/front/public/images/large/Forestry/cart.beehouse/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cart.beehouse/1.png b/front/public/images/large/Forestry/cart.beehouse/1.png deleted file mode 100644 index c72669eb0a..0000000000 Binary files a/front/public/images/large/Forestry/cart.beehouse/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/carton/0.png b/front/public/images/large/Forestry/carton/0.png deleted file mode 100644 index d627211c81..0000000000 Binary files a/front/public/images/large/Forestry/carton/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/catalogue/0.png b/front/public/images/large/Forestry/catalogue/0.png deleted file mode 100644 index 800864b91b..0000000000 Binary files a/front/public/images/large/Forestry/catalogue/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/caterpillarGE/0.png b/front/public/images/large/Forestry/caterpillarGE/0.png deleted file mode 100644 index 10176319f5..0000000000 Binary files a/front/public/images/large/Forestry/caterpillarGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/chipsets/0.png b/front/public/images/large/Forestry/chipsets/0.png deleted file mode 100644 index ada361e53f..0000000000 Binary files a/front/public/images/large/Forestry/chipsets/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/chipsets/1.png b/front/public/images/large/Forestry/chipsets/1.png deleted file mode 100644 index 2388edc17c..0000000000 Binary files a/front/public/images/large/Forestry/chipsets/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/chipsets/2.png b/front/public/images/large/Forestry/chipsets/2.png deleted file mode 100644 index c02deda0c8..0000000000 Binary files a/front/public/images/large/Forestry/chipsets/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/chipsets/3.png b/front/public/images/large/Forestry/chipsets/3.png deleted file mode 100644 index 2a5e3e119e..0000000000 Binary files a/front/public/images/large/Forestry/chipsets/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/core/0.png b/front/public/images/large/Forestry/core/0.png deleted file mode 100644 index 3e8c725e5d..0000000000 Binary files a/front/public/images/large/Forestry/core/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/core/1.png b/front/public/images/large/Forestry/core/1.png deleted file mode 100644 index a292ac516e..0000000000 Binary files a/front/public/images/large/Forestry/core/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/craftingMaterial/0.png b/front/public/images/large/Forestry/craftingMaterial/0.png deleted file mode 100644 index c9135bd4fa..0000000000 Binary files a/front/public/images/large/Forestry/craftingMaterial/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/craftingMaterial/1.png b/front/public/images/large/Forestry/craftingMaterial/1.png deleted file mode 100644 index 0bb82dcf6b..0000000000 Binary files a/front/public/images/large/Forestry/craftingMaterial/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/craftingMaterial/2.png b/front/public/images/large/Forestry/craftingMaterial/2.png deleted file mode 100644 index 3731156893..0000000000 Binary files a/front/public/images/large/Forestry/craftingMaterial/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/craftingMaterial/3.png b/front/public/images/large/Forestry/craftingMaterial/3.png deleted file mode 100644 index c4ab18b6f3..0000000000 Binary files a/front/public/images/large/Forestry/craftingMaterial/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/craftingMaterial/4.png b/front/public/images/large/Forestry/craftingMaterial/4.png deleted file mode 100644 index 4d9e4d0169..0000000000 Binary files a/front/public/images/large/Forestry/craftingMaterial/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/craftingMaterial/5.png b/front/public/images/large/Forestry/craftingMaterial/5.png deleted file mode 100644 index 8d749f3bef..0000000000 Binary files a/front/public/images/large/Forestry/craftingMaterial/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/craftingMaterial/6.png b/front/public/images/large/Forestry/craftingMaterial/6.png deleted file mode 100644 index 0ac5ebe086..0000000000 Binary files a/front/public/images/large/Forestry/craftingMaterial/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/crate/0.png b/front/public/images/large/Forestry/crate/0.png deleted file mode 100644 index ba5ecbd313..0000000000 Binary files a/front/public/images/large/Forestry/crate/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedAcaciaSapling/0.png b/front/public/images/large/Forestry/cratedAcaciaSapling/0.png deleted file mode 100644 index bea97fe400..0000000000 Binary files a/front/public/images/large/Forestry/cratedAcaciaSapling/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedAcaciaWood/0.png b/front/public/images/large/Forestry/cratedAcaciaWood/0.png deleted file mode 100644 index d08143d421..0000000000 Binary files a/front/public/images/large/Forestry/cratedAcaciaWood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedApatite/0.png b/front/public/images/large/Forestry/cratedApatite/0.png deleted file mode 100644 index 6bba8ab2c9..0000000000 Binary files a/front/public/images/large/Forestry/cratedApatite/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedApples/0.png b/front/public/images/large/Forestry/cratedApples/0.png deleted file mode 100644 index 301af653d5..0000000000 Binary files a/front/public/images/large/Forestry/cratedApples/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedAsh/0.png b/front/public/images/large/Forestry/cratedAsh/0.png deleted file mode 100644 index d6d3f92cb8..0000000000 Binary files a/front/public/images/large/Forestry/cratedAsh/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedBeeswax/0.png b/front/public/images/large/Forestry/cratedBeeswax/0.png deleted file mode 100644 index c0f3624a07..0000000000 Binary files a/front/public/images/large/Forestry/cratedBeeswax/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedBirchSapling/0.png b/front/public/images/large/Forestry/cratedBirchSapling/0.png deleted file mode 100644 index ccffd01c9c..0000000000 Binary files a/front/public/images/large/Forestry/cratedBirchSapling/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedBirchWood/0.png b/front/public/images/large/Forestry/cratedBirchWood/0.png deleted file mode 100644 index a0a5c6e248..0000000000 Binary files a/front/public/images/large/Forestry/cratedBirchWood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedBogearth/0.png b/front/public/images/large/Forestry/cratedBogearth/0.png deleted file mode 100644 index efa0dd4021..0000000000 Binary files a/front/public/images/large/Forestry/cratedBogearth/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedBrass/0.png b/front/public/images/large/Forestry/cratedBrass/0.png deleted file mode 100644 index b233f81a60..0000000000 Binary files a/front/public/images/large/Forestry/cratedBrass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedBrick/0.png b/front/public/images/large/Forestry/cratedBrick/0.png deleted file mode 100644 index fd6f56e820..0000000000 Binary files a/front/public/images/large/Forestry/cratedBrick/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedBronze/0.png b/front/public/images/large/Forestry/cratedBronze/0.png deleted file mode 100644 index 401371a0b6..0000000000 Binary files a/front/public/images/large/Forestry/cratedBronze/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCacti/0.png b/front/public/images/large/Forestry/cratedCacti/0.png deleted file mode 100644 index f8004ae5c5..0000000000 Binary files a/front/public/images/large/Forestry/cratedCacti/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCarrots/0.png b/front/public/images/large/Forestry/cratedCarrots/0.png deleted file mode 100644 index 83425c4fb5..0000000000 Binary files a/front/public/images/large/Forestry/cratedCarrots/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCharcoal/0.png b/front/public/images/large/Forestry/cratedCharcoal/0.png deleted file mode 100644 index 5c3a834a41..0000000000 Binary files a/front/public/images/large/Forestry/cratedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCherry/0.png b/front/public/images/large/Forestry/cratedCherry/0.png deleted file mode 100644 index eb3d62fac9..0000000000 Binary files a/front/public/images/large/Forestry/cratedCherry/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedChestnut/0.png b/front/public/images/large/Forestry/cratedChestnut/0.png deleted file mode 100644 index 8b52d0b6e5..0000000000 Binary files a/front/public/images/large/Forestry/cratedChestnut/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedClay/0.png b/front/public/images/large/Forestry/cratedClay/0.png deleted file mode 100644 index 0d52146645..0000000000 Binary files a/front/public/images/large/Forestry/cratedClay/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCoal/0.png b/front/public/images/large/Forestry/cratedCoal/0.png deleted file mode 100644 index 5283c84eb3..0000000000 Binary files a/front/public/images/large/Forestry/cratedCoal/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCobblestone/0.png b/front/public/images/large/Forestry/cratedCobblestone/0.png deleted file mode 100644 index f07fd6fd70..0000000000 Binary files a/front/public/images/large/Forestry/cratedCobblestone/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCocoaComb/0.png b/front/public/images/large/Forestry/cratedCocoaComb/0.png deleted file mode 100644 index 3b7ef81c35..0000000000 Binary files a/front/public/images/large/Forestry/cratedCocoaComb/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCookies/0.png b/front/public/images/large/Forestry/cratedCookies/0.png deleted file mode 100644 index 156bbb6a44..0000000000 Binary files a/front/public/images/large/Forestry/cratedCookies/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCopper/0.png b/front/public/images/large/Forestry/cratedCopper/0.png deleted file mode 100644 index ae7a0178f8..0000000000 Binary files a/front/public/images/large/Forestry/cratedCopper/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedCrystallinePollen/0.png b/front/public/images/large/Forestry/cratedCrystallinePollen/0.png deleted file mode 100644 index 493779fd42..0000000000 Binary files a/front/public/images/large/Forestry/cratedCrystallinePollen/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedDarkOakSapling/0.png b/front/public/images/large/Forestry/cratedDarkOakSapling/0.png deleted file mode 100644 index fc2f603125..0000000000 Binary files a/front/public/images/large/Forestry/cratedDarkOakSapling/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedDarkOakWood/0.png b/front/public/images/large/Forestry/cratedDarkOakWood/0.png deleted file mode 100644 index 855db3aa00..0000000000 Binary files a/front/public/images/large/Forestry/cratedDarkOakWood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedDates/0.png b/front/public/images/large/Forestry/cratedDates/0.png deleted file mode 100644 index 6d3f37e70a..0000000000 Binary files a/front/public/images/large/Forestry/cratedDates/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedDirt/0.png b/front/public/images/large/Forestry/cratedDirt/0.png deleted file mode 100644 index a9fa040a2f..0000000000 Binary files a/front/public/images/large/Forestry/cratedDirt/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedDrippingCombs/0.png b/front/public/images/large/Forestry/cratedDrippingCombs/0.png deleted file mode 100644 index a91a99d502..0000000000 Binary files a/front/public/images/large/Forestry/cratedDrippingCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedFertilizer/0.png b/front/public/images/large/Forestry/cratedFertilizer/0.png deleted file mode 100644 index a52ec3dd07..0000000000 Binary files a/front/public/images/large/Forestry/cratedFertilizer/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedFrozenCombs/0.png b/front/public/images/large/Forestry/cratedFrozenCombs/0.png deleted file mode 100644 index dfe4503cec..0000000000 Binary files a/front/public/images/large/Forestry/cratedFrozenCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedGlowstone/0.png b/front/public/images/large/Forestry/cratedGlowstone/0.png deleted file mode 100644 index 7ad2c5bc0b..0000000000 Binary files a/front/public/images/large/Forestry/cratedGlowstone/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedGravel/0.png b/front/public/images/large/Forestry/cratedGravel/0.png deleted file mode 100644 index e528eb4423..0000000000 Binary files a/front/public/images/large/Forestry/cratedGravel/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedHoneycombs/0.png b/front/public/images/large/Forestry/cratedHoneycombs/0.png deleted file mode 100644 index 3b2b4112c3..0000000000 Binary files a/front/public/images/large/Forestry/cratedHoneycombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedHoneydew/0.png b/front/public/images/large/Forestry/cratedHoneydew/0.png deleted file mode 100644 index 047af31596..0000000000 Binary files a/front/public/images/large/Forestry/cratedHoneydew/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedHumus/0.png b/front/public/images/large/Forestry/cratedHumus/0.png deleted file mode 100644 index 25974a6003..0000000000 Binary files a/front/public/images/large/Forestry/cratedHumus/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedJungleSapling/0.png b/front/public/images/large/Forestry/cratedJungleSapling/0.png deleted file mode 100644 index a03f5ec8cc..0000000000 Binary files a/front/public/images/large/Forestry/cratedJungleSapling/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedJungleWood/0.png b/front/public/images/large/Forestry/cratedJungleWood/0.png deleted file mode 100644 index c9acf7d065..0000000000 Binary files a/front/public/images/large/Forestry/cratedJungleWood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedLapis/0.png b/front/public/images/large/Forestry/cratedLapis/0.png deleted file mode 100644 index 8706b17b30..0000000000 Binary files a/front/public/images/large/Forestry/cratedLapis/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedLemon/0.png b/front/public/images/large/Forestry/cratedLemon/0.png deleted file mode 100644 index 7ee1686308..0000000000 Binary files a/front/public/images/large/Forestry/cratedLemon/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedMellowCombs/0.png b/front/public/images/large/Forestry/cratedMellowCombs/0.png deleted file mode 100644 index ff92e81705..0000000000 Binary files a/front/public/images/large/Forestry/cratedMellowCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedMossyCombs/0.png b/front/public/images/large/Forestry/cratedMossyCombs/0.png deleted file mode 100644 index 830989cdbd..0000000000 Binary files a/front/public/images/large/Forestry/cratedMossyCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedMulch/0.png b/front/public/images/large/Forestry/cratedMulch/0.png deleted file mode 100644 index 32d02f6b5b..0000000000 Binary files a/front/public/images/large/Forestry/cratedMulch/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedMycelium/0.png b/front/public/images/large/Forestry/cratedMycelium/0.png deleted file mode 100644 index 77d5309d9d..0000000000 Binary files a/front/public/images/large/Forestry/cratedMycelium/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedMysteriousCombs/0.png b/front/public/images/large/Forestry/cratedMysteriousCombs/0.png deleted file mode 100644 index b9f4b2b33e..0000000000 Binary files a/front/public/images/large/Forestry/cratedMysteriousCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBarley/0.png b/front/public/images/large/Forestry/cratedNaturaBarley/0.png deleted file mode 100644 index 204a040e06..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBarley/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerryBlack/0.png b/front/public/images/large/Forestry/cratedNaturaBerryBlack/0.png deleted file mode 100644 index e29744be9c..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerryBlack/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerryBlight/0.png b/front/public/images/large/Forestry/cratedNaturaBerryBlight/0.png deleted file mode 100644 index 98de018034..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerryBlight/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerryBlue/0.png b/front/public/images/large/Forestry/cratedNaturaBerryBlue/0.png deleted file mode 100644 index 8991c4c20f..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerryBlue/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerryDusk/0.png b/front/public/images/large/Forestry/cratedNaturaBerryDusk/0.png deleted file mode 100644 index 0a61906919..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerryDusk/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerryMalo/0.png b/front/public/images/large/Forestry/cratedNaturaBerryMalo/0.png deleted file mode 100644 index 6b030bddd4..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerryMalo/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerryRasp/0.png b/front/public/images/large/Forestry/cratedNaturaBerryRasp/0.png deleted file mode 100644 index f910da0da3..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerryRasp/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerrySky/0.png b/front/public/images/large/Forestry/cratedNaturaBerrySky/0.png deleted file mode 100644 index 9649676db8..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerrySky/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBerrySting/0.png b/front/public/images/large/Forestry/cratedNaturaBerrySting/0.png deleted file mode 100644 index af5a7d20de..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBerrySting/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBlockHeatsand/0.png b/front/public/images/large/Forestry/cratedNaturaBlockHeatsand/0.png deleted file mode 100644 index 5695cc2561..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBlockHeatsand/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBlockTainted/0.png b/front/public/images/large/Forestry/cratedNaturaBlockTainted/0.png deleted file mode 100644 index c2baf05bce..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBlockTainted/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaBlueGlowshroom/0.png b/front/public/images/large/Forestry/cratedNaturaBlueGlowshroom/0.png deleted file mode 100644 index 876593c552..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaBlueGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaGreenGlowshroom/0.png b/front/public/images/large/Forestry/cratedNaturaGreenGlowshroom/0.png deleted file mode 100644 index 9ef451f613..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaGreenGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogBloodwood/0.png b/front/public/images/large/Forestry/cratedNaturaLogBloodwood/0.png deleted file mode 100644 index 98fe7456bf..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogBloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogDarkwood/0.png b/front/public/images/large/Forestry/cratedNaturaLogDarkwood/0.png deleted file mode 100644 index 749430add0..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogDarkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogEucalyptus/0.png b/front/public/images/large/Forestry/cratedNaturaLogEucalyptus/0.png deleted file mode 100644 index a2a2302460..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogEucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogFusewood/0.png b/front/public/images/large/Forestry/cratedNaturaLogFusewood/0.png deleted file mode 100644 index 749430add0..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogFusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogGhostwood/0.png b/front/public/images/large/Forestry/cratedNaturaLogGhostwood/0.png deleted file mode 100644 index a2a2302460..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogGhostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogHopseed/0.png b/front/public/images/large/Forestry/cratedNaturaLogHopseed/0.png deleted file mode 100644 index a2a2302460..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogHopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogSakura/0.png b/front/public/images/large/Forestry/cratedNaturaLogSakura/0.png deleted file mode 100644 index a2a2302460..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogSakura/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaLogWillow/0.png b/front/public/images/large/Forestry/cratedNaturaLogWillow/0.png deleted file mode 100644 index 8ac8f191e1..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaLogWillow/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaPotashApple/0.png b/front/public/images/large/Forestry/cratedNaturaPotashApple/0.png deleted file mode 100644 index 2c07d19fdf..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaPotashApple/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaPurpleGlowshroom/0.png b/front/public/images/large/Forestry/cratedNaturaPurpleGlowshroom/0.png deleted file mode 100644 index 5a0306b5f6..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaPurpleGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingBlood/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingBlood/0.png deleted file mode 100644 index 74732560dc..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingBlood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingDarkwood/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingDarkwood/0.png deleted file mode 100644 index b058d027b7..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingDarkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingEucalyptus/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingEucalyptus/0.png deleted file mode 100644 index 9bef7feb56..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingEucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingFusewood/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingFusewood/0.png deleted file mode 100644 index 2fe344e31a..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingFusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingGhostwood/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingGhostwood/0.png deleted file mode 100644 index 53ae7cc0f6..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingGhostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingHopseed/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingHopseed/0.png deleted file mode 100644 index ca285b220d..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingHopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingMaple/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingMaple/0.png deleted file mode 100644 index c4bcfa0561..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingMaple/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingPurpleheart/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingPurpleheart/0.png deleted file mode 100644 index 88c674d5f8..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingPurpleheart/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingRedwood/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingRedwood/0.png deleted file mode 100644 index 63c1378fa7..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingRedwood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingSakura/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingSakura/0.png deleted file mode 100644 index d6025ac900..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingSakura/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingSilverbell/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingSilverbell/0.png deleted file mode 100644 index b4b6013a08..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingSilverbell/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingTiger/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingTiger/0.png deleted file mode 100644 index 6dae9d3d7d..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingTiger/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNaturaSaplingWillow/0.png b/front/public/images/large/Forestry/cratedNaturaSaplingWillow/0.png deleted file mode 100644 index afed34cb11..0000000000 Binary files a/front/public/images/large/Forestry/cratedNaturaSaplingWillow/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNetherbrick/0.png b/front/public/images/large/Forestry/cratedNetherbrick/0.png deleted file mode 100644 index fd76469a69..0000000000 Binary files a/front/public/images/large/Forestry/cratedNetherbrick/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNetherrack/0.png b/front/public/images/large/Forestry/cratedNetherrack/0.png deleted file mode 100644 index ce71b4bb6a..0000000000 Binary files a/front/public/images/large/Forestry/cratedNetherrack/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedNetherwart/0.png b/front/public/images/large/Forestry/cratedNetherwart/0.png deleted file mode 100644 index 9f76198d55..0000000000 Binary files a/front/public/images/large/Forestry/cratedNetherwart/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedObsidian/0.png b/front/public/images/large/Forestry/cratedObsidian/0.png deleted file mode 100644 index e71ad58a03..0000000000 Binary files a/front/public/images/large/Forestry/cratedObsidian/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPapaya/0.png b/front/public/images/large/Forestry/cratedPapaya/0.png deleted file mode 100644 index 4d77c9bd5b..0000000000 Binary files a/front/public/images/large/Forestry/cratedPapaya/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedParchedCombs/0.png b/front/public/images/large/Forestry/cratedParchedCombs/0.png deleted file mode 100644 index c7fe25847f..0000000000 Binary files a/front/public/images/large/Forestry/cratedParchedCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPeat/0.png b/front/public/images/large/Forestry/cratedPeat/0.png deleted file mode 100644 index ec269504da..0000000000 Binary files a/front/public/images/large/Forestry/cratedPeat/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPhosphor/0.png b/front/public/images/large/Forestry/cratedPhosphor/0.png deleted file mode 100644 index a3a37a51de..0000000000 Binary files a/front/public/images/large/Forestry/cratedPhosphor/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPlum/0.png b/front/public/images/large/Forestry/cratedPlum/0.png deleted file mode 100644 index 33a8a9aaba..0000000000 Binary files a/front/public/images/large/Forestry/cratedPlum/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPodzol/0.png b/front/public/images/large/Forestry/cratedPodzol/0.png deleted file mode 100644 index 59c89561a9..0000000000 Binary files a/front/public/images/large/Forestry/cratedPodzol/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPollen/0.png b/front/public/images/large/Forestry/cratedPollen/0.png deleted file mode 100644 index e4beb8c466..0000000000 Binary files a/front/public/images/large/Forestry/cratedPollen/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPotatoes/0.png b/front/public/images/large/Forestry/cratedPotatoes/0.png deleted file mode 100644 index 45b264f10c..0000000000 Binary files a/front/public/images/large/Forestry/cratedPotatoes/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPowderyCombs/0.png b/front/public/images/large/Forestry/cratedPowderyCombs/0.png deleted file mode 100644 index d20751ee82..0000000000 Binary files a/front/public/images/large/Forestry/cratedPowderyCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedPropolis/0.png b/front/public/images/large/Forestry/cratedPropolis/0.png deleted file mode 100644 index e3331f87c2..0000000000 Binary files a/front/public/images/large/Forestry/cratedPropolis/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedRedSand/0.png b/front/public/images/large/Forestry/cratedRedSand/0.png deleted file mode 100644 index fc54e0a684..0000000000 Binary files a/front/public/images/large/Forestry/cratedRedSand/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedRedstone/0.png b/front/public/images/large/Forestry/cratedRedstone/0.png deleted file mode 100644 index ff8c78647f..0000000000 Binary files a/front/public/images/large/Forestry/cratedRedstone/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedReeds/0.png b/front/public/images/large/Forestry/cratedReeds/0.png deleted file mode 100644 index 11f2380b84..0000000000 Binary files a/front/public/images/large/Forestry/cratedReeds/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedRefractoryWax/0.png b/front/public/images/large/Forestry/cratedRefractoryWax/0.png deleted file mode 100644 index ec2f7270e4..0000000000 Binary files a/front/public/images/large/Forestry/cratedRefractoryWax/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedResin/0.png b/front/public/images/large/Forestry/cratedResin/0.png deleted file mode 100644 index 45fa2f6d62..0000000000 Binary files a/front/public/images/large/Forestry/cratedResin/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedRoyalJelly/0.png b/front/public/images/large/Forestry/cratedRoyalJelly/0.png deleted file mode 100644 index 1aa196d217..0000000000 Binary files a/front/public/images/large/Forestry/cratedRoyalJelly/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedRubber/0.png b/front/public/images/large/Forestry/cratedRubber/0.png deleted file mode 100644 index d8404409ee..0000000000 Binary files a/front/public/images/large/Forestry/cratedRubber/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSand/0.png b/front/public/images/large/Forestry/cratedSand/0.png deleted file mode 100644 index 6216b9022b..0000000000 Binary files a/front/public/images/large/Forestry/cratedSand/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSandstone/0.png b/front/public/images/large/Forestry/cratedSandstone/0.png deleted file mode 100644 index 502b85f2c9..0000000000 Binary files a/front/public/images/large/Forestry/cratedSandstone/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSaplings/0.png b/front/public/images/large/Forestry/cratedSaplings/0.png deleted file mode 100644 index 24589e6881..0000000000 Binary files a/front/public/images/large/Forestry/cratedSaplings/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedScrap/0.png b/front/public/images/large/Forestry/cratedScrap/0.png deleted file mode 100644 index 244725831c..0000000000 Binary files a/front/public/images/large/Forestry/cratedScrap/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSeeds/0.png b/front/public/images/large/Forestry/cratedSeeds/0.png deleted file mode 100644 index c707d880e0..0000000000 Binary files a/front/public/images/large/Forestry/cratedSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSilkyCombs/0.png b/front/public/images/large/Forestry/cratedSilkyCombs/0.png deleted file mode 100644 index 056bf6d211..0000000000 Binary files a/front/public/images/large/Forestry/cratedSilkyCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSilver/0.png b/front/public/images/large/Forestry/cratedSilver/0.png deleted file mode 100644 index 783b92bde7..0000000000 Binary files a/front/public/images/large/Forestry/cratedSilver/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSimmeringCombs/0.png b/front/public/images/large/Forestry/cratedSimmeringCombs/0.png deleted file mode 100644 index b603c95beb..0000000000 Binary files a/front/public/images/large/Forestry/cratedSimmeringCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSoulsand/0.png b/front/public/images/large/Forestry/cratedSoulsand/0.png deleted file mode 100644 index 5cf95f9bbc..0000000000 Binary files a/front/public/images/large/Forestry/cratedSoulsand/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSpruceSapling/0.png b/front/public/images/large/Forestry/cratedSpruceSapling/0.png deleted file mode 100644 index 462504b2cd..0000000000 Binary files a/front/public/images/large/Forestry/cratedSpruceSapling/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedSpruceWood/0.png b/front/public/images/large/Forestry/cratedSpruceWood/0.png deleted file mode 100644 index 4243b1aed0..0000000000 Binary files a/front/public/images/large/Forestry/cratedSpruceWood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedStone/0.png b/front/public/images/large/Forestry/cratedStone/0.png deleted file mode 100644 index 42cef93331..0000000000 Binary files a/front/public/images/large/Forestry/cratedStone/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedStringyCombs/0.png b/front/public/images/large/Forestry/cratedStringyCombs/0.png deleted file mode 100644 index dc9660bf51..0000000000 Binary files a/front/public/images/large/Forestry/cratedStringyCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedTin/0.png b/front/public/images/large/Forestry/cratedTin/0.png deleted file mode 100644 index 88012f2885..0000000000 Binary files a/front/public/images/large/Forestry/cratedTin/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedWalnut/0.png b/front/public/images/large/Forestry/cratedWalnut/0.png deleted file mode 100644 index 388cfde244..0000000000 Binary files a/front/public/images/large/Forestry/cratedWalnut/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedWheat/0.png b/front/public/images/large/Forestry/cratedWheat/0.png deleted file mode 100644 index dea2842656..0000000000 Binary files a/front/public/images/large/Forestry/cratedWheat/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedWheatenCombs/0.png b/front/public/images/large/Forestry/cratedWheatenCombs/0.png deleted file mode 100644 index 90e4f78230..0000000000 Binary files a/front/public/images/large/Forestry/cratedWheatenCombs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/cratedWood/0.png b/front/public/images/large/Forestry/cratedWood/0.png deleted file mode 100644 index 48fbb36788..0000000000 Binary files a/front/public/images/large/Forestry/cratedWood/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/decayingWheat/0.png b/front/public/images/large/Forestry/decayingWheat/0.png deleted file mode 100644 index 691b142b59..0000000000 Binary files a/front/public/images/large/Forestry/decayingWheat/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/diggerBag/0.png b/front/public/images/large/Forestry/diggerBag/0.png deleted file mode 100644 index ba567ab6d4..0000000000 Binary files a/front/public/images/large/Forestry/diggerBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/diggerBagT2/0.png b/front/public/images/large/Forestry/diggerBagT2/0.png deleted file mode 100644 index 1c5bbce654..0000000000 Binary files a/front/public/images/large/Forestry/diggerBagT2/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/engine/0.png b/front/public/images/large/Forestry/engine/0.png deleted file mode 100644 index be59559e37..0000000000 Binary files a/front/public/images/large/Forestry/engine/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/engine/1.png b/front/public/images/large/Forestry/engine/1.png deleted file mode 100644 index 4aa29e3e83..0000000000 Binary files a/front/public/images/large/Forestry/engine/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/engine/2.png b/front/public/images/large/Forestry/engine/2.png deleted file mode 100644 index eabb62e647..0000000000 Binary files a/front/public/images/large/Forestry/engine/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/engine/3.png b/front/public/images/large/Forestry/engine/3.png deleted file mode 100644 index 3e1350ef70..0000000000 Binary files a/front/public/images/large/Forestry/engine/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/engine/4.png b/front/public/images/large/Forestry/engine/4.png deleted file mode 100644 index f5e482cc18..0000000000 Binary files a/front/public/images/large/Forestry/engine/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/0.png b/front/public/images/large/Forestry/factory/0.png deleted file mode 100644 index c012f41d70..0000000000 Binary files a/front/public/images/large/Forestry/factory/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/1.png b/front/public/images/large/Forestry/factory/1.png deleted file mode 100644 index 5d230b241e..0000000000 Binary files a/front/public/images/large/Forestry/factory/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/2.png b/front/public/images/large/Forestry/factory/2.png deleted file mode 100644 index 7e83f777a1..0000000000 Binary files a/front/public/images/large/Forestry/factory/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/3.png b/front/public/images/large/Forestry/factory/3.png deleted file mode 100644 index 29202bbfb9..0000000000 Binary files a/front/public/images/large/Forestry/factory/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/4.png b/front/public/images/large/Forestry/factory/4.png deleted file mode 100644 index 34023f37a4..0000000000 Binary files a/front/public/images/large/Forestry/factory/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/5.png b/front/public/images/large/Forestry/factory/5.png deleted file mode 100644 index 0e4e3891cb..0000000000 Binary files a/front/public/images/large/Forestry/factory/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/6.png b/front/public/images/large/Forestry/factory/6.png deleted file mode 100644 index 46384a34fe..0000000000 Binary files a/front/public/images/large/Forestry/factory/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory/7.png b/front/public/images/large/Forestry/factory/7.png deleted file mode 100644 index 0db82cadca..0000000000 Binary files a/front/public/images/large/Forestry/factory/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory2/0.png b/front/public/images/large/Forestry/factory2/0.png deleted file mode 100644 index 5949441794..0000000000 Binary files a/front/public/images/large/Forestry/factory2/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory2/1.png b/front/public/images/large/Forestry/factory2/1.png deleted file mode 100644 index 834b84f460..0000000000 Binary files a/front/public/images/large/Forestry/factory2/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/factory2/2.png b/front/public/images/large/Forestry/factory2/2.png deleted file mode 100644 index 71d6ab987c..0000000000 Binary files a/front/public/images/large/Forestry/factory2/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/0.png b/front/public/images/large/Forestry/fences/0.png deleted file mode 100644 index a05f90f4ff..0000000000 Binary files a/front/public/images/large/Forestry/fences/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/1.png b/front/public/images/large/Forestry/fences/1.png deleted file mode 100644 index a4805286e9..0000000000 Binary files a/front/public/images/large/Forestry/fences/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/10.png b/front/public/images/large/Forestry/fences/10.png deleted file mode 100644 index 2411f358ea..0000000000 Binary files a/front/public/images/large/Forestry/fences/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/11.png b/front/public/images/large/Forestry/fences/11.png deleted file mode 100644 index 02568c4f7a..0000000000 Binary files a/front/public/images/large/Forestry/fences/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/12.png b/front/public/images/large/Forestry/fences/12.png deleted file mode 100644 index 1f5fe6de46..0000000000 Binary files a/front/public/images/large/Forestry/fences/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/13.png b/front/public/images/large/Forestry/fences/13.png deleted file mode 100644 index 7d26743c44..0000000000 Binary files a/front/public/images/large/Forestry/fences/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/14.png b/front/public/images/large/Forestry/fences/14.png deleted file mode 100644 index 1258d6dd01..0000000000 Binary files a/front/public/images/large/Forestry/fences/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/15.png b/front/public/images/large/Forestry/fences/15.png deleted file mode 100644 index 6582eaf6bf..0000000000 Binary files a/front/public/images/large/Forestry/fences/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/16.png b/front/public/images/large/Forestry/fences/16.png deleted file mode 100644 index 714ec6c5ea..0000000000 Binary files a/front/public/images/large/Forestry/fences/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/17.png b/front/public/images/large/Forestry/fences/17.png deleted file mode 100644 index b1660e7618..0000000000 Binary files a/front/public/images/large/Forestry/fences/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/18.png b/front/public/images/large/Forestry/fences/18.png deleted file mode 100644 index dc536925dc..0000000000 Binary files a/front/public/images/large/Forestry/fences/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/19.png b/front/public/images/large/Forestry/fences/19.png deleted file mode 100644 index 48f729f8eb..0000000000 Binary files a/front/public/images/large/Forestry/fences/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/2.png b/front/public/images/large/Forestry/fences/2.png deleted file mode 100644 index 90bfa35d4c..0000000000 Binary files a/front/public/images/large/Forestry/fences/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/20.png b/front/public/images/large/Forestry/fences/20.png deleted file mode 100644 index 6e28db7954..0000000000 Binary files a/front/public/images/large/Forestry/fences/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/21.png b/front/public/images/large/Forestry/fences/21.png deleted file mode 100644 index a530e4114d..0000000000 Binary files a/front/public/images/large/Forestry/fences/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/22.png b/front/public/images/large/Forestry/fences/22.png deleted file mode 100644 index d1e025317d..0000000000 Binary files a/front/public/images/large/Forestry/fences/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/23.png b/front/public/images/large/Forestry/fences/23.png deleted file mode 100644 index ad05b4f16c..0000000000 Binary files a/front/public/images/large/Forestry/fences/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/24.png b/front/public/images/large/Forestry/fences/24.png deleted file mode 100644 index 8944cc9592..0000000000 Binary files a/front/public/images/large/Forestry/fences/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/25.png b/front/public/images/large/Forestry/fences/25.png deleted file mode 100644 index dd47718a27..0000000000 Binary files a/front/public/images/large/Forestry/fences/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/26.png b/front/public/images/large/Forestry/fences/26.png deleted file mode 100644 index a143a488cc..0000000000 Binary files a/front/public/images/large/Forestry/fences/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/27.png b/front/public/images/large/Forestry/fences/27.png deleted file mode 100644 index ba4d5451dc..0000000000 Binary files a/front/public/images/large/Forestry/fences/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/28.png b/front/public/images/large/Forestry/fences/28.png deleted file mode 100644 index b4e7d31bf8..0000000000 Binary files a/front/public/images/large/Forestry/fences/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/3.png b/front/public/images/large/Forestry/fences/3.png deleted file mode 100644 index d9760f2b0a..0000000000 Binary files a/front/public/images/large/Forestry/fences/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/4.png b/front/public/images/large/Forestry/fences/4.png deleted file mode 100644 index 5c30884d33..0000000000 Binary files a/front/public/images/large/Forestry/fences/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/5.png b/front/public/images/large/Forestry/fences/5.png deleted file mode 100644 index aa38f8e4d9..0000000000 Binary files a/front/public/images/large/Forestry/fences/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/6.png b/front/public/images/large/Forestry/fences/6.png deleted file mode 100644 index 44ed1bfa48..0000000000 Binary files a/front/public/images/large/Forestry/fences/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/7.png b/front/public/images/large/Forestry/fences/7.png deleted file mode 100644 index 42cf570ae5..0000000000 Binary files a/front/public/images/large/Forestry/fences/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/8.png b/front/public/images/large/Forestry/fences/8.png deleted file mode 100644 index ca7ea01b17..0000000000 Binary files a/front/public/images/large/Forestry/fences/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fences/9.png b/front/public/images/large/Forestry/fences/9.png deleted file mode 100644 index 303a3f1823..0000000000 Binary files a/front/public/images/large/Forestry/fences/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/0.png b/front/public/images/large/Forestry/fencesFireproof/0.png deleted file mode 100644 index a05f90f4ff..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/1.png b/front/public/images/large/Forestry/fencesFireproof/1.png deleted file mode 100644 index a4805286e9..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/10.png b/front/public/images/large/Forestry/fencesFireproof/10.png deleted file mode 100644 index 2411f358ea..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/11.png b/front/public/images/large/Forestry/fencesFireproof/11.png deleted file mode 100644 index 02568c4f7a..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/12.png b/front/public/images/large/Forestry/fencesFireproof/12.png deleted file mode 100644 index 1f5fe6de46..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/13.png b/front/public/images/large/Forestry/fencesFireproof/13.png deleted file mode 100644 index 7d26743c44..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/14.png b/front/public/images/large/Forestry/fencesFireproof/14.png deleted file mode 100644 index 1258d6dd01..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/15.png b/front/public/images/large/Forestry/fencesFireproof/15.png deleted file mode 100644 index 6582eaf6bf..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/16.png b/front/public/images/large/Forestry/fencesFireproof/16.png deleted file mode 100644 index 714ec6c5ea..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/17.png b/front/public/images/large/Forestry/fencesFireproof/17.png deleted file mode 100644 index b1660e7618..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/18.png b/front/public/images/large/Forestry/fencesFireproof/18.png deleted file mode 100644 index dc536925dc..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/19.png b/front/public/images/large/Forestry/fencesFireproof/19.png deleted file mode 100644 index 48f729f8eb..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/2.png b/front/public/images/large/Forestry/fencesFireproof/2.png deleted file mode 100644 index 90bfa35d4c..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/20.png b/front/public/images/large/Forestry/fencesFireproof/20.png deleted file mode 100644 index 6e28db7954..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/21.png b/front/public/images/large/Forestry/fencesFireproof/21.png deleted file mode 100644 index a530e4114d..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/22.png b/front/public/images/large/Forestry/fencesFireproof/22.png deleted file mode 100644 index d1e025317d..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/23.png b/front/public/images/large/Forestry/fencesFireproof/23.png deleted file mode 100644 index ad05b4f16c..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/24.png b/front/public/images/large/Forestry/fencesFireproof/24.png deleted file mode 100644 index 8944cc9592..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/25.png b/front/public/images/large/Forestry/fencesFireproof/25.png deleted file mode 100644 index dd47718a27..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/26.png b/front/public/images/large/Forestry/fencesFireproof/26.png deleted file mode 100644 index a143a488cc..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/27.png b/front/public/images/large/Forestry/fencesFireproof/27.png deleted file mode 100644 index ba4d5451dc..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/28.png b/front/public/images/large/Forestry/fencesFireproof/28.png deleted file mode 100644 index b4e7d31bf8..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/3.png b/front/public/images/large/Forestry/fencesFireproof/3.png deleted file mode 100644 index d9760f2b0a..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/4.png b/front/public/images/large/Forestry/fencesFireproof/4.png deleted file mode 100644 index 5c30884d33..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/5.png b/front/public/images/large/Forestry/fencesFireproof/5.png deleted file mode 100644 index aa38f8e4d9..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/6.png b/front/public/images/large/Forestry/fencesFireproof/6.png deleted file mode 100644 index 44ed1bfa48..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/7.png b/front/public/images/large/Forestry/fencesFireproof/7.png deleted file mode 100644 index 42cf570ae5..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/8.png b/front/public/images/large/Forestry/fencesFireproof/8.png deleted file mode 100644 index ca7ea01b17..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fencesFireproof/9.png b/front/public/images/large/Forestry/fencesFireproof/9.png deleted file mode 100644 index 303a3f1823..0000000000 Binary files a/front/public/images/large/Forestry/fencesFireproof/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fertilizerBio/0.png b/front/public/images/large/Forestry/fertilizerBio/0.png deleted file mode 100644 index 8a992c0731..0000000000 Binary files a/front/public/images/large/Forestry/fertilizerBio/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fertilizerCompound/0.png b/front/public/images/large/Forestry/fertilizerCompound/0.png deleted file mode 100644 index eb63ab0ab8..0000000000 Binary files a/front/public/images/large/Forestry/fertilizerCompound/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ffarm/0.png b/front/public/images/large/Forestry/ffarm/0.png deleted file mode 100644 index 3b70f31859..0000000000 Binary files a/front/public/images/large/Forestry/ffarm/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ffarm/2.png b/front/public/images/large/Forestry/ffarm/2.png deleted file mode 100644 index d55c78a568..0000000000 Binary files a/front/public/images/large/Forestry/ffarm/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ffarm/3.png b/front/public/images/large/Forestry/ffarm/3.png deleted file mode 100644 index b7e97afaa3..0000000000 Binary files a/front/public/images/large/Forestry/ffarm/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ffarm/4.png b/front/public/images/large/Forestry/ffarm/4.png deleted file mode 100644 index b352a92d94..0000000000 Binary files a/front/public/images/large/Forestry/ffarm/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ffarm/5.png b/front/public/images/large/Forestry/ffarm/5.png deleted file mode 100644 index fa473642a3..0000000000 Binary files a/front/public/images/large/Forestry/ffarm/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.bioethanol/0.png b/front/public/images/large/Forestry/fluid.bioethanol/0.png deleted file mode 100644 index 37b5435423..0000000000 Binary files a/front/public/images/large/Forestry/fluid.bioethanol/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.biomass/0.png b/front/public/images/large/Forestry/fluid.biomass/0.png deleted file mode 100644 index 808682ec97..0000000000 Binary files a/front/public/images/large/Forestry/fluid.biomass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.glass/0.png b/front/public/images/large/Forestry/fluid.glass/0.png deleted file mode 100644 index b953b2a8ea..0000000000 Binary files a/front/public/images/large/Forestry/fluid.glass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.honey/0.png b/front/public/images/large/Forestry/fluid.honey/0.png deleted file mode 100644 index fcdfe6d172..0000000000 Binary files a/front/public/images/large/Forestry/fluid.honey/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.ice/0.png b/front/public/images/large/Forestry/fluid.ice/0.png deleted file mode 100644 index 4c6ea5c5b2..0000000000 Binary files a/front/public/images/large/Forestry/fluid.ice/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.juice/0.png b/front/public/images/large/Forestry/fluid.juice/0.png deleted file mode 100644 index 14d7831939..0000000000 Binary files a/front/public/images/large/Forestry/fluid.juice/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.mead/0.png b/front/public/images/large/Forestry/fluid.mead/0.png deleted file mode 100644 index 4ddc91db22..0000000000 Binary files a/front/public/images/large/Forestry/fluid.mead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.seedoil/0.png b/front/public/images/large/Forestry/fluid.seedoil/0.png deleted file mode 100644 index ae3a76f10b..0000000000 Binary files a/front/public/images/large/Forestry/fluid.seedoil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fluid.short.mead/0.png b/front/public/images/large/Forestry/fluid.short.mead/0.png deleted file mode 100644 index 75dc6bcdac..0000000000 Binary files a/front/public/images/large/Forestry/fluid.short.mead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/flutterlyzer/0.png b/front/public/images/large/Forestry/flutterlyzer/0.png deleted file mode 100644 index b4c222ec4e..0000000000 Binary files a/front/public/images/large/Forestry/flutterlyzer/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/foresterBag/0.png b/front/public/images/large/Forestry/foresterBag/0.png deleted file mode 100644 index d4a9c425a2..0000000000 Binary files a/front/public/images/large/Forestry/foresterBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/foresterBagT2/0.png b/front/public/images/large/Forestry/foresterBagT2/0.png deleted file mode 100644 index 83c440e573..0000000000 Binary files a/front/public/images/large/Forestry/foresterBagT2/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/frameImpregnated/0.png b/front/public/images/large/Forestry/frameImpregnated/0.png deleted file mode 100644 index 2255ed72bc..0000000000 Binary files a/front/public/images/large/Forestry/frameImpregnated/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/frameProven/0.png b/front/public/images/large/Forestry/frameProven/0.png deleted file mode 100644 index abc27b6a15..0000000000 Binary files a/front/public/images/large/Forestry/frameProven/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/frameUntreated/0.png b/front/public/images/large/Forestry/frameUntreated/0.png deleted file mode 100644 index c4696e6fe4..0000000000 Binary files a/front/public/images/large/Forestry/frameUntreated/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fruits/0.png b/front/public/images/large/Forestry/fruits/0.png deleted file mode 100644 index b49318fda2..0000000000 Binary files a/front/public/images/large/Forestry/fruits/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fruits/1.png b/front/public/images/large/Forestry/fruits/1.png deleted file mode 100644 index c56b7b80e5..0000000000 Binary files a/front/public/images/large/Forestry/fruits/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fruits/2.png b/front/public/images/large/Forestry/fruits/2.png deleted file mode 100644 index 9e6227753a..0000000000 Binary files a/front/public/images/large/Forestry/fruits/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fruits/3.png b/front/public/images/large/Forestry/fruits/3.png deleted file mode 100644 index 654547c918..0000000000 Binary files a/front/public/images/large/Forestry/fruits/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fruits/4.png b/front/public/images/large/Forestry/fruits/4.png deleted file mode 100644 index 2aa0595353..0000000000 Binary files a/front/public/images/large/Forestry/fruits/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fruits/5.png b/front/public/images/large/Forestry/fruits/5.png deleted file mode 100644 index 00bf918db6..0000000000 Binary files a/front/public/images/large/Forestry/fruits/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/fruits/6.png b/front/public/images/large/Forestry/fruits/6.png deleted file mode 100644 index 40e4309fd1..0000000000 Binary files a/front/public/images/large/Forestry/fruits/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/gearBronze/0.png b/front/public/images/large/Forestry/gearBronze/0.png deleted file mode 100644 index d4a1b45243..0000000000 Binary files a/front/public/images/large/Forestry/gearBronze/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/gearCopper/0.png b/front/public/images/large/Forestry/gearCopper/0.png deleted file mode 100644 index 5165b138d5..0000000000 Binary files a/front/public/images/large/Forestry/gearCopper/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/gearTin/0.png b/front/public/images/large/Forestry/gearTin/0.png deleted file mode 100644 index fb8e007a29..0000000000 Binary files a/front/public/images/large/Forestry/gearTin/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/grafter/0.png b/front/public/images/large/Forestry/grafter/0.png deleted file mode 100644 index 91de35c41e..0000000000 Binary files a/front/public/images/large/Forestry/grafter/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/grafterProven/0.png b/front/public/images/large/Forestry/grafterProven/0.png deleted file mode 100644 index 625838e7cf..0000000000 Binary files a/front/public/images/large/Forestry/grafterProven/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/habitatLocator/0.png b/front/public/images/large/Forestry/habitatLocator/0.png deleted file mode 100644 index f452f24f34..0000000000 Binary files a/front/public/images/large/Forestry/habitatLocator/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/hardenedMachine/0.png b/front/public/images/large/Forestry/hardenedMachine/0.png deleted file mode 100644 index 3206406aa9..0000000000 Binary files a/front/public/images/large/Forestry/hardenedMachine/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/honeyDrop/0.png b/front/public/images/large/Forestry/honeyDrop/0.png deleted file mode 100644 index 146eec3d98..0000000000 Binary files a/front/public/images/large/Forestry/honeyDrop/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/honeyPot/0.png b/front/public/images/large/Forestry/honeyPot/0.png deleted file mode 100644 index 104f4b3c73..0000000000 Binary files a/front/public/images/large/Forestry/honeyPot/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/honeydew/0.png b/front/public/images/large/Forestry/honeydew/0.png deleted file mode 100644 index 59bd3174d3..0000000000 Binary files a/front/public/images/large/Forestry/honeydew/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/honeyedSlice/0.png b/front/public/images/large/Forestry/honeyedSlice/0.png deleted file mode 100644 index e93231aba1..0000000000 Binary files a/front/public/images/large/Forestry/honeyedSlice/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/hunterBag/0.png b/front/public/images/large/Forestry/hunterBag/0.png deleted file mode 100644 index 55a2c1c9f8..0000000000 Binary files a/front/public/images/large/Forestry/hunterBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/hunterBagT2/0.png b/front/public/images/large/Forestry/hunterBagT2/0.png deleted file mode 100644 index ec0a0a6d8c..0000000000 Binary files a/front/public/images/large/Forestry/hunterBagT2/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/impregnatedCasing/0.png b/front/public/images/large/Forestry/impregnatedCasing/0.png deleted file mode 100644 index 63996ded60..0000000000 Binary files a/front/public/images/large/Forestry/impregnatedCasing/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/imprinter/0.png b/front/public/images/large/Forestry/imprinter/0.png deleted file mode 100644 index b5f66eae6e..0000000000 Binary files a/front/public/images/large/Forestry/imprinter/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/infuser/0.png b/front/public/images/large/Forestry/infuser/0.png deleted file mode 100644 index 5e7698d257..0000000000 Binary files a/front/public/images/large/Forestry/infuser/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ingotBronze/0.png b/front/public/images/large/Forestry/ingotBronze/0.png deleted file mode 100644 index 048ff7ad5d..0000000000 Binary files a/front/public/images/large/Forestry/ingotBronze/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ingotCopper/0.png b/front/public/images/large/Forestry/ingotCopper/0.png deleted file mode 100644 index da5e535af0..0000000000 Binary files a/front/public/images/large/Forestry/ingotCopper/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/ingotTin/0.png b/front/public/images/large/Forestry/ingotTin/0.png deleted file mode 100644 index 6ff281ab93..0000000000 Binary files a/front/public/images/large/Forestry/ingotTin/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/iodineCapsule/0.png b/front/public/images/large/Forestry/iodineCapsule/0.png deleted file mode 100644 index 206c7a8168..0000000000 Binary files a/front/public/images/large/Forestry/iodineCapsule/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/kitPickaxe/0.png b/front/public/images/large/Forestry/kitPickaxe/0.png deleted file mode 100644 index 8aa7c3f4db..0000000000 Binary files a/front/public/images/large/Forestry/kitPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/kitShovel/0.png b/front/public/images/large/Forestry/kitShovel/0.png deleted file mode 100644 index 9c76f1bbaf..0000000000 Binary files a/front/public/images/large/Forestry/kitShovel/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/leaves/0.png b/front/public/images/large/Forestry/leaves/0.png deleted file mode 100644 index 4083d592e5..0000000000 Binary files a/front/public/images/large/Forestry/leaves/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/lepidopteristBag/0.png b/front/public/images/large/Forestry/lepidopteristBag/0.png deleted file mode 100644 index fa999f67d8..0000000000 Binary files a/front/public/images/large/Forestry/lepidopteristBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/lepidopterology/0.png b/front/public/images/large/Forestry/lepidopterology/0.png deleted file mode 100644 index b45f23d5e4..0000000000 Binary files a/front/public/images/large/Forestry/lepidopterology/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/0.png b/front/public/images/large/Forestry/letters/0.png deleted file mode 100644 index 82d6494f4c..0000000000 Binary files a/front/public/images/large/Forestry/letters/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/1.png b/front/public/images/large/Forestry/letters/1.png deleted file mode 100644 index b3bce6d32e..0000000000 Binary files a/front/public/images/large/Forestry/letters/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/16.png b/front/public/images/large/Forestry/letters/16.png deleted file mode 100644 index 8043be31ae..0000000000 Binary files a/front/public/images/large/Forestry/letters/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/17.png b/front/public/images/large/Forestry/letters/17.png deleted file mode 100644 index 9847247bc7..0000000000 Binary files a/front/public/images/large/Forestry/letters/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/18.png b/front/public/images/large/Forestry/letters/18.png deleted file mode 100644 index 8d9bf57166..0000000000 Binary files a/front/public/images/large/Forestry/letters/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/19.png b/front/public/images/large/Forestry/letters/19.png deleted file mode 100644 index 89c88f28e5..0000000000 Binary files a/front/public/images/large/Forestry/letters/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/2.png b/front/public/images/large/Forestry/letters/2.png deleted file mode 100644 index 529678ac50..0000000000 Binary files a/front/public/images/large/Forestry/letters/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/3.png b/front/public/images/large/Forestry/letters/3.png deleted file mode 100644 index 24229d389d..0000000000 Binary files a/front/public/images/large/Forestry/letters/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/32.png b/front/public/images/large/Forestry/letters/32.png deleted file mode 100644 index 64e3ae34e1..0000000000 Binary files a/front/public/images/large/Forestry/letters/32.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/33.png b/front/public/images/large/Forestry/letters/33.png deleted file mode 100644 index f7a21b5255..0000000000 Binary files a/front/public/images/large/Forestry/letters/33.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/34.png b/front/public/images/large/Forestry/letters/34.png deleted file mode 100644 index 1ac622935d..0000000000 Binary files a/front/public/images/large/Forestry/letters/34.png and /dev/null differ diff --git a/front/public/images/large/Forestry/letters/35.png b/front/public/images/large/Forestry/letters/35.png deleted file mode 100644 index c4c20a925d..0000000000 Binary files a/front/public/images/large/Forestry/letters/35.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/0.png b/front/public/images/large/Forestry/logsFireproof/0.png deleted file mode 100644 index 3ee3714715..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/1.png b/front/public/images/large/Forestry/logsFireproof/1.png deleted file mode 100644 index c2b46d7f22..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/10.png b/front/public/images/large/Forestry/logsFireproof/10.png deleted file mode 100644 index 39dcfe42ac..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/11.png b/front/public/images/large/Forestry/logsFireproof/11.png deleted file mode 100644 index 1c1f7a0627..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/12.png b/front/public/images/large/Forestry/logsFireproof/12.png deleted file mode 100644 index 4571d24845..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/13.png b/front/public/images/large/Forestry/logsFireproof/13.png deleted file mode 100644 index 18cf569ef8..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/14.png b/front/public/images/large/Forestry/logsFireproof/14.png deleted file mode 100644 index 4b76222245..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/15.png b/front/public/images/large/Forestry/logsFireproof/15.png deleted file mode 100644 index f0560170d1..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/16.png b/front/public/images/large/Forestry/logsFireproof/16.png deleted file mode 100644 index 88d0a3aee4..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/17.png b/front/public/images/large/Forestry/logsFireproof/17.png deleted file mode 100644 index f9f6520ee6..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/18.png b/front/public/images/large/Forestry/logsFireproof/18.png deleted file mode 100644 index 04981b3cee..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/19.png b/front/public/images/large/Forestry/logsFireproof/19.png deleted file mode 100644 index 96dc0204c4..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/2.png b/front/public/images/large/Forestry/logsFireproof/2.png deleted file mode 100644 index b57197f9f1..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/20.png b/front/public/images/large/Forestry/logsFireproof/20.png deleted file mode 100644 index d9508b20d1..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/21.png b/front/public/images/large/Forestry/logsFireproof/21.png deleted file mode 100644 index fdcf9b5413..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/22.png b/front/public/images/large/Forestry/logsFireproof/22.png deleted file mode 100644 index 4bdc802d0a..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/23.png b/front/public/images/large/Forestry/logsFireproof/23.png deleted file mode 100644 index 75cae03c7d..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/24.png b/front/public/images/large/Forestry/logsFireproof/24.png deleted file mode 100644 index 9082700acd..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/25.png b/front/public/images/large/Forestry/logsFireproof/25.png deleted file mode 100644 index f597d464c8..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/26.png b/front/public/images/large/Forestry/logsFireproof/26.png deleted file mode 100644 index 439f21c60b..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/27.png b/front/public/images/large/Forestry/logsFireproof/27.png deleted file mode 100644 index 0be4e3e640..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/28.png b/front/public/images/large/Forestry/logsFireproof/28.png deleted file mode 100644 index 4169e483c3..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/3.png b/front/public/images/large/Forestry/logsFireproof/3.png deleted file mode 100644 index 8c23205f12..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/4.png b/front/public/images/large/Forestry/logsFireproof/4.png deleted file mode 100644 index 79c0bd645b..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/5.png b/front/public/images/large/Forestry/logsFireproof/5.png deleted file mode 100644 index 9f782f3207..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/6.png b/front/public/images/large/Forestry/logsFireproof/6.png deleted file mode 100644 index 5dc027ce2c..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/7.png b/front/public/images/large/Forestry/logsFireproof/7.png deleted file mode 100644 index c0fb4e7027..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/8.png b/front/public/images/large/Forestry/logsFireproof/8.png deleted file mode 100644 index 00e1ee0033..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/logsFireproof/9.png b/front/public/images/large/Forestry/logsFireproof/9.png deleted file mode 100644 index 1fd268d350..0000000000 Binary files a/front/public/images/large/Forestry/logsFireproof/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/mail/0.png b/front/public/images/large/Forestry/mail/0.png deleted file mode 100644 index 50faea1c40..0000000000 Binary files a/front/public/images/large/Forestry/mail/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/mail/1.png b/front/public/images/large/Forestry/mail/1.png deleted file mode 100644 index be18742f38..0000000000 Binary files a/front/public/images/large/Forestry/mail/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/mail/2.png b/front/public/images/large/Forestry/mail/2.png deleted file mode 100644 index 5efb6bfde5..0000000000 Binary files a/front/public/images/large/Forestry/mail/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/minerBag/0.png b/front/public/images/large/Forestry/minerBag/0.png deleted file mode 100644 index 0d43631d01..0000000000 Binary files a/front/public/images/large/Forestry/minerBag/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/minerBagT2/0.png b/front/public/images/large/Forestry/minerBagT2/0.png deleted file mode 100644 index 988fb5f5da..0000000000 Binary files a/front/public/images/large/Forestry/minerBagT2/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/mouldyWheat/0.png b/front/public/images/large/Forestry/mouldyWheat/0.png deleted file mode 100644 index 458122a058..0000000000 Binary files a/front/public/images/large/Forestry/mouldyWheat/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/mulch/0.png b/front/public/images/large/Forestry/mulch/0.png deleted file mode 100644 index 7091c5780c..0000000000 Binary files a/front/public/images/large/Forestry/mulch/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/mushroom/0.png b/front/public/images/large/Forestry/mushroom/0.png deleted file mode 100644 index 23b8c5c545..0000000000 Binary files a/front/public/images/large/Forestry/mushroom/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/mushroom/1.png b/front/public/images/large/Forestry/mushroom/1.png deleted file mode 100644 index 2f30004477..0000000000 Binary files a/front/public/images/large/Forestry/mushroom/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/naturalistHelmet/0.png b/front/public/images/large/Forestry/naturalistHelmet/0.png deleted file mode 100644 index e65beff2aa..0000000000 Binary files a/front/public/images/large/Forestry/naturalistHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/oakStick/0.png b/front/public/images/large/Forestry/oakStick/0.png deleted file mode 100644 index 56730bfeab..0000000000 Binary files a/front/public/images/large/Forestry/oakStick/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/peat/0.png b/front/public/images/large/Forestry/peat/0.png deleted file mode 100644 index 210007415e..0000000000 Binary files a/front/public/images/large/Forestry/peat/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/phosphor/0.png b/front/public/images/large/Forestry/phosphor/0.png deleted file mode 100644 index 425707c117..0000000000 Binary files a/front/public/images/large/Forestry/phosphor/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/pipette/0.png b/front/public/images/large/Forestry/pipette/0.png deleted file mode 100644 index 9b20e9bb3a..0000000000 Binary files a/front/public/images/large/Forestry/pipette/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/0.png b/front/public/images/large/Forestry/planks/0.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/planks/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/1.png b/front/public/images/large/Forestry/planks/1.png deleted file mode 100644 index f3fd2cb1ac..0000000000 Binary files a/front/public/images/large/Forestry/planks/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/10.png b/front/public/images/large/Forestry/planks/10.png deleted file mode 100644 index 784b7e0bc9..0000000000 Binary files a/front/public/images/large/Forestry/planks/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/11.png b/front/public/images/large/Forestry/planks/11.png deleted file mode 100644 index 41b279eff7..0000000000 Binary files a/front/public/images/large/Forestry/planks/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/12.png b/front/public/images/large/Forestry/planks/12.png deleted file mode 100644 index 3c14b32c6d..0000000000 Binary files a/front/public/images/large/Forestry/planks/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/13.png b/front/public/images/large/Forestry/planks/13.png deleted file mode 100644 index c50edba34c..0000000000 Binary files a/front/public/images/large/Forestry/planks/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/14.png b/front/public/images/large/Forestry/planks/14.png deleted file mode 100644 index 880c5808bc..0000000000 Binary files a/front/public/images/large/Forestry/planks/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/15.png b/front/public/images/large/Forestry/planks/15.png deleted file mode 100644 index de1441834c..0000000000 Binary files a/front/public/images/large/Forestry/planks/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/16.png b/front/public/images/large/Forestry/planks/16.png deleted file mode 100644 index c4d328fd32..0000000000 Binary files a/front/public/images/large/Forestry/planks/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/17.png b/front/public/images/large/Forestry/planks/17.png deleted file mode 100644 index e01ef410ad..0000000000 Binary files a/front/public/images/large/Forestry/planks/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/18.png b/front/public/images/large/Forestry/planks/18.png deleted file mode 100644 index 576215b002..0000000000 Binary files a/front/public/images/large/Forestry/planks/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/19.png b/front/public/images/large/Forestry/planks/19.png deleted file mode 100644 index d4e81f6cb6..0000000000 Binary files a/front/public/images/large/Forestry/planks/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/2.png b/front/public/images/large/Forestry/planks/2.png deleted file mode 100644 index c081a3d583..0000000000 Binary files a/front/public/images/large/Forestry/planks/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/20.png b/front/public/images/large/Forestry/planks/20.png deleted file mode 100644 index 0b5d38771e..0000000000 Binary files a/front/public/images/large/Forestry/planks/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/21.png b/front/public/images/large/Forestry/planks/21.png deleted file mode 100644 index 776692a613..0000000000 Binary files a/front/public/images/large/Forestry/planks/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/22.png b/front/public/images/large/Forestry/planks/22.png deleted file mode 100644 index c32dde7fbb..0000000000 Binary files a/front/public/images/large/Forestry/planks/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/23.png b/front/public/images/large/Forestry/planks/23.png deleted file mode 100644 index 85772f2a4f..0000000000 Binary files a/front/public/images/large/Forestry/planks/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/24.png b/front/public/images/large/Forestry/planks/24.png deleted file mode 100644 index ee9b5fe08d..0000000000 Binary files a/front/public/images/large/Forestry/planks/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/25.png b/front/public/images/large/Forestry/planks/25.png deleted file mode 100644 index 01fabc9603..0000000000 Binary files a/front/public/images/large/Forestry/planks/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/26.png b/front/public/images/large/Forestry/planks/26.png deleted file mode 100644 index 7a0f55bfbf..0000000000 Binary files a/front/public/images/large/Forestry/planks/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/27.png b/front/public/images/large/Forestry/planks/27.png deleted file mode 100644 index 7eeaf015b3..0000000000 Binary files a/front/public/images/large/Forestry/planks/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/28.png b/front/public/images/large/Forestry/planks/28.png deleted file mode 100644 index 0c568334f6..0000000000 Binary files a/front/public/images/large/Forestry/planks/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/3.png b/front/public/images/large/Forestry/planks/3.png deleted file mode 100644 index caf1792511..0000000000 Binary files a/front/public/images/large/Forestry/planks/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/4.png b/front/public/images/large/Forestry/planks/4.png deleted file mode 100644 index 06d359c200..0000000000 Binary files a/front/public/images/large/Forestry/planks/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/5.png b/front/public/images/large/Forestry/planks/5.png deleted file mode 100644 index c7222bf64f..0000000000 Binary files a/front/public/images/large/Forestry/planks/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/6.png b/front/public/images/large/Forestry/planks/6.png deleted file mode 100644 index 24347b5a14..0000000000 Binary files a/front/public/images/large/Forestry/planks/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/7.png b/front/public/images/large/Forestry/planks/7.png deleted file mode 100644 index cd2db0fb5c..0000000000 Binary files a/front/public/images/large/Forestry/planks/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/8.png b/front/public/images/large/Forestry/planks/8.png deleted file mode 100644 index 95be96bf48..0000000000 Binary files a/front/public/images/large/Forestry/planks/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planks/9.png b/front/public/images/large/Forestry/planks/9.png deleted file mode 100644 index 235caacc4c..0000000000 Binary files a/front/public/images/large/Forestry/planks/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/0.png b/front/public/images/large/Forestry/planksFireproof/0.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/1.png b/front/public/images/large/Forestry/planksFireproof/1.png deleted file mode 100644 index f3fd2cb1ac..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/10.png b/front/public/images/large/Forestry/planksFireproof/10.png deleted file mode 100644 index 784b7e0bc9..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/11.png b/front/public/images/large/Forestry/planksFireproof/11.png deleted file mode 100644 index 41b279eff7..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/12.png b/front/public/images/large/Forestry/planksFireproof/12.png deleted file mode 100644 index 3c14b32c6d..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/13.png b/front/public/images/large/Forestry/planksFireproof/13.png deleted file mode 100644 index c50edba34c..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/14.png b/front/public/images/large/Forestry/planksFireproof/14.png deleted file mode 100644 index 880c5808bc..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/15.png b/front/public/images/large/Forestry/planksFireproof/15.png deleted file mode 100644 index de1441834c..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/16.png b/front/public/images/large/Forestry/planksFireproof/16.png deleted file mode 100644 index c4d328fd32..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/17.png b/front/public/images/large/Forestry/planksFireproof/17.png deleted file mode 100644 index e01ef410ad..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/18.png b/front/public/images/large/Forestry/planksFireproof/18.png deleted file mode 100644 index 576215b002..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/19.png b/front/public/images/large/Forestry/planksFireproof/19.png deleted file mode 100644 index d4e81f6cb6..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/2.png b/front/public/images/large/Forestry/planksFireproof/2.png deleted file mode 100644 index c081a3d583..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/20.png b/front/public/images/large/Forestry/planksFireproof/20.png deleted file mode 100644 index 0b5d38771e..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/21.png b/front/public/images/large/Forestry/planksFireproof/21.png deleted file mode 100644 index 776692a613..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/22.png b/front/public/images/large/Forestry/planksFireproof/22.png deleted file mode 100644 index c32dde7fbb..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/23.png b/front/public/images/large/Forestry/planksFireproof/23.png deleted file mode 100644 index 85772f2a4f..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/24.png b/front/public/images/large/Forestry/planksFireproof/24.png deleted file mode 100644 index ee9b5fe08d..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/25.png b/front/public/images/large/Forestry/planksFireproof/25.png deleted file mode 100644 index 01fabc9603..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/26.png b/front/public/images/large/Forestry/planksFireproof/26.png deleted file mode 100644 index 7a0f55bfbf..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/27.png b/front/public/images/large/Forestry/planksFireproof/27.png deleted file mode 100644 index 7eeaf015b3..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/28.png b/front/public/images/large/Forestry/planksFireproof/28.png deleted file mode 100644 index 0c568334f6..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/3.png b/front/public/images/large/Forestry/planksFireproof/3.png deleted file mode 100644 index caf1792511..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/4.png b/front/public/images/large/Forestry/planksFireproof/4.png deleted file mode 100644 index 06d359c200..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/5.png b/front/public/images/large/Forestry/planksFireproof/5.png deleted file mode 100644 index c7222bf64f..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/6.png b/front/public/images/large/Forestry/planksFireproof/6.png deleted file mode 100644 index 24347b5a14..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/7.png b/front/public/images/large/Forestry/planksFireproof/7.png deleted file mode 100644 index cd2db0fb5c..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/8.png b/front/public/images/large/Forestry/planksFireproof/8.png deleted file mode 100644 index 95be96bf48..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/planksFireproof/9.png b/front/public/images/large/Forestry/planksFireproof/9.png deleted file mode 100644 index 235caacc4c..0000000000 Binary files a/front/public/images/large/Forestry/planksFireproof/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/pods/0.png b/front/public/images/large/Forestry/pods/0.png deleted file mode 100644 index f5dee68369..0000000000 Binary files a/front/public/images/large/Forestry/pods/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/pollen/0.png b/front/public/images/large/Forestry/pollen/0.png deleted file mode 100644 index aff541506d..0000000000 Binary files a/front/public/images/large/Forestry/pollen/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/pollen/1.png b/front/public/images/large/Forestry/pollen/1.png deleted file mode 100644 index 05abceeb5f..0000000000 Binary files a/front/public/images/large/Forestry/pollen/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/pollenFertile/0.png b/front/public/images/large/Forestry/pollenFertile/0.png deleted file mode 100644 index 49047b7b00..0000000000 Binary files a/front/public/images/large/Forestry/pollenFertile/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/propolis/0.png b/front/public/images/large/Forestry/propolis/0.png deleted file mode 100644 index e19e5ff4bb..0000000000 Binary files a/front/public/images/large/Forestry/propolis/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/propolis/1.png b/front/public/images/large/Forestry/propolis/1.png deleted file mode 100644 index 11c1b4e4be..0000000000 Binary files a/front/public/images/large/Forestry/propolis/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/propolis/3.png b/front/public/images/large/Forestry/propolis/3.png deleted file mode 100644 index 3d2b3d09c4..0000000000 Binary files a/front/public/images/large/Forestry/propolis/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryBiomass/0.png b/front/public/images/large/Forestry/refractoryBiomass/0.png deleted file mode 100644 index c0dda00d4d..0000000000 Binary files a/front/public/images/large/Forestry/refractoryBiomass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryEmpty/0.png b/front/public/images/large/Forestry/refractoryEmpty/0.png deleted file mode 100644 index 1b66dec63d..0000000000 Binary files a/front/public/images/large/Forestry/refractoryEmpty/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryEthanol/0.png b/front/public/images/large/Forestry/refractoryEthanol/0.png deleted file mode 100644 index 48911b0e5c..0000000000 Binary files a/front/public/images/large/Forestry/refractoryEthanol/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryFuel/0.png b/front/public/images/large/Forestry/refractoryFuel/0.png deleted file mode 100644 index 72c446c906..0000000000 Binary files a/front/public/images/large/Forestry/refractoryFuel/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryHoney/0.png b/front/public/images/large/Forestry/refractoryHoney/0.png deleted file mode 100644 index 9350efa183..0000000000 Binary files a/front/public/images/large/Forestry/refractoryHoney/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryIce/0.png b/front/public/images/large/Forestry/refractoryIce/0.png deleted file mode 100644 index 4c2dd0ee32..0000000000 Binary files a/front/public/images/large/Forestry/refractoryIce/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryJuice/0.png b/front/public/images/large/Forestry/refractoryJuice/0.png deleted file mode 100644 index 508c255cc5..0000000000 Binary files a/front/public/images/large/Forestry/refractoryJuice/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryLava/0.png b/front/public/images/large/Forestry/refractoryLava/0.png deleted file mode 100644 index 40477f7840..0000000000 Binary files a/front/public/images/large/Forestry/refractoryLava/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryMead/0.png b/front/public/images/large/Forestry/refractoryMead/0.png deleted file mode 100644 index bbf0693416..0000000000 Binary files a/front/public/images/large/Forestry/refractoryMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryOil/0.png b/front/public/images/large/Forestry/refractoryOil/0.png deleted file mode 100644 index efbe7473ee..0000000000 Binary files a/front/public/images/large/Forestry/refractoryOil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractorySeedOil/0.png b/front/public/images/large/Forestry/refractorySeedOil/0.png deleted file mode 100644 index 35b3d9d2b9..0000000000 Binary files a/front/public/images/large/Forestry/refractorySeedOil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryShortMead/0.png b/front/public/images/large/Forestry/refractoryShortMead/0.png deleted file mode 100644 index 6c4de17fd2..0000000000 Binary files a/front/public/images/large/Forestry/refractoryShortMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryWater/0.png b/front/public/images/large/Forestry/refractoryWater/0.png deleted file mode 100644 index 2a51e4ba81..0000000000 Binary files a/front/public/images/large/Forestry/refractoryWater/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/refractoryWax/0.png b/front/public/images/large/Forestry/refractoryWax/0.png deleted file mode 100644 index 0bdc3f46fd..0000000000 Binary files a/front/public/images/large/Forestry/refractoryWax/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/researchNote/0.png b/front/public/images/large/Forestry/researchNote/0.png deleted file mode 100644 index eddecf2ef5..0000000000 Binary files a/front/public/images/large/Forestry/researchNote/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/resourceStorage/0.png b/front/public/images/large/Forestry/resourceStorage/0.png deleted file mode 100644 index b82529ff4b..0000000000 Binary files a/front/public/images/large/Forestry/resourceStorage/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/resourceStorage/1.png b/front/public/images/large/Forestry/resourceStorage/1.png deleted file mode 100644 index 7c366b277f..0000000000 Binary files a/front/public/images/large/Forestry/resourceStorage/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/resourceStorage/2.png b/front/public/images/large/Forestry/resourceStorage/2.png deleted file mode 100644 index 8b42581b2d..0000000000 Binary files a/front/public/images/large/Forestry/resourceStorage/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/resourceStorage/3.png b/front/public/images/large/Forestry/resourceStorage/3.png deleted file mode 100644 index 0ed77aa928..0000000000 Binary files a/front/public/images/large/Forestry/resourceStorage/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/resources/0.png b/front/public/images/large/Forestry/resources/0.png deleted file mode 100644 index 049d975709..0000000000 Binary files a/front/public/images/large/Forestry/resources/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/resources/1.png b/front/public/images/large/Forestry/resources/1.png deleted file mode 100644 index 58c059284e..0000000000 Binary files a/front/public/images/large/Forestry/resources/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/resources/2.png b/front/public/images/large/Forestry/resources/2.png deleted file mode 100644 index a3dfe38116..0000000000 Binary files a/front/public/images/large/Forestry/resources/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/royalJelly/0.png b/front/public/images/large/Forestry/royalJelly/0.png deleted file mode 100644 index df502431b4..0000000000 Binary files a/front/public/images/large/Forestry/royalJelly/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/sapling/0.png b/front/public/images/large/Forestry/sapling/0.png deleted file mode 100644 index 95af165dab..0000000000 Binary files a/front/public/images/large/Forestry/sapling/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/saplingGE/0.png b/front/public/images/large/Forestry/saplingGE/0.png deleted file mode 100644 index 5c1ca82036..0000000000 Binary files a/front/public/images/large/Forestry/saplingGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/scoop/0.png b/front/public/images/large/Forestry/scoop/0.png deleted file mode 100644 index bb16330911..0000000000 Binary files a/front/public/images/large/Forestry/scoop/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/serumGE/0.png b/front/public/images/large/Forestry/serumGE/0.png deleted file mode 100644 index 62abf7d8bb..0000000000 Binary files a/front/public/images/large/Forestry/serumGE/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/0.png b/front/public/images/large/Forestry/slabs/0.png deleted file mode 100644 index 87214c55a4..0000000000 Binary files a/front/public/images/large/Forestry/slabs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/1.png b/front/public/images/large/Forestry/slabs/1.png deleted file mode 100644 index 603d5d5d04..0000000000 Binary files a/front/public/images/large/Forestry/slabs/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/10.png b/front/public/images/large/Forestry/slabs/10.png deleted file mode 100644 index b5d59b88ed..0000000000 Binary files a/front/public/images/large/Forestry/slabs/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/11.png b/front/public/images/large/Forestry/slabs/11.png deleted file mode 100644 index 782b4e04d7..0000000000 Binary files a/front/public/images/large/Forestry/slabs/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/12.png b/front/public/images/large/Forestry/slabs/12.png deleted file mode 100644 index 38c4ba1077..0000000000 Binary files a/front/public/images/large/Forestry/slabs/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/13.png b/front/public/images/large/Forestry/slabs/13.png deleted file mode 100644 index dd71d862bd..0000000000 Binary files a/front/public/images/large/Forestry/slabs/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/14.png b/front/public/images/large/Forestry/slabs/14.png deleted file mode 100644 index c1f3837e60..0000000000 Binary files a/front/public/images/large/Forestry/slabs/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/15.png b/front/public/images/large/Forestry/slabs/15.png deleted file mode 100644 index 007a204348..0000000000 Binary files a/front/public/images/large/Forestry/slabs/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/16.png b/front/public/images/large/Forestry/slabs/16.png deleted file mode 100644 index 225c1a8c12..0000000000 Binary files a/front/public/images/large/Forestry/slabs/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/17.png b/front/public/images/large/Forestry/slabs/17.png deleted file mode 100644 index 3d04c22ff8..0000000000 Binary files a/front/public/images/large/Forestry/slabs/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/18.png b/front/public/images/large/Forestry/slabs/18.png deleted file mode 100644 index 610d1c0fdc..0000000000 Binary files a/front/public/images/large/Forestry/slabs/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/19.png b/front/public/images/large/Forestry/slabs/19.png deleted file mode 100644 index cd72cfab83..0000000000 Binary files a/front/public/images/large/Forestry/slabs/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/2.png b/front/public/images/large/Forestry/slabs/2.png deleted file mode 100644 index d9dcf0a3aa..0000000000 Binary files a/front/public/images/large/Forestry/slabs/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/20.png b/front/public/images/large/Forestry/slabs/20.png deleted file mode 100644 index faad67075a..0000000000 Binary files a/front/public/images/large/Forestry/slabs/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/21.png b/front/public/images/large/Forestry/slabs/21.png deleted file mode 100644 index 01a19f8ce5..0000000000 Binary files a/front/public/images/large/Forestry/slabs/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/22.png b/front/public/images/large/Forestry/slabs/22.png deleted file mode 100644 index a3561ea56b..0000000000 Binary files a/front/public/images/large/Forestry/slabs/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/23.png b/front/public/images/large/Forestry/slabs/23.png deleted file mode 100644 index e66bb13eaa..0000000000 Binary files a/front/public/images/large/Forestry/slabs/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/24.png b/front/public/images/large/Forestry/slabs/24.png deleted file mode 100644 index d100a43dc2..0000000000 Binary files a/front/public/images/large/Forestry/slabs/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/25.png b/front/public/images/large/Forestry/slabs/25.png deleted file mode 100644 index 0d59bd9a49..0000000000 Binary files a/front/public/images/large/Forestry/slabs/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/26.png b/front/public/images/large/Forestry/slabs/26.png deleted file mode 100644 index 5d0a414e54..0000000000 Binary files a/front/public/images/large/Forestry/slabs/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/27.png b/front/public/images/large/Forestry/slabs/27.png deleted file mode 100644 index 972ce98078..0000000000 Binary files a/front/public/images/large/Forestry/slabs/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/28.png b/front/public/images/large/Forestry/slabs/28.png deleted file mode 100644 index 6d4f3bb0ea..0000000000 Binary files a/front/public/images/large/Forestry/slabs/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/3.png b/front/public/images/large/Forestry/slabs/3.png deleted file mode 100644 index 3b73692a52..0000000000 Binary files a/front/public/images/large/Forestry/slabs/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/4.png b/front/public/images/large/Forestry/slabs/4.png deleted file mode 100644 index 582e0f30be..0000000000 Binary files a/front/public/images/large/Forestry/slabs/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/5.png b/front/public/images/large/Forestry/slabs/5.png deleted file mode 100644 index 5c288e3d46..0000000000 Binary files a/front/public/images/large/Forestry/slabs/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/6.png b/front/public/images/large/Forestry/slabs/6.png deleted file mode 100644 index 367705207a..0000000000 Binary files a/front/public/images/large/Forestry/slabs/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/7.png b/front/public/images/large/Forestry/slabs/7.png deleted file mode 100644 index f68ab9c782..0000000000 Binary files a/front/public/images/large/Forestry/slabs/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/8.png b/front/public/images/large/Forestry/slabs/8.png deleted file mode 100644 index 33f95c08e8..0000000000 Binary files a/front/public/images/large/Forestry/slabs/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabs/9.png b/front/public/images/large/Forestry/slabs/9.png deleted file mode 100644 index f626b0b159..0000000000 Binary files a/front/public/images/large/Forestry/slabs/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/0.png b/front/public/images/large/Forestry/slabsDouble/0.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/1.png b/front/public/images/large/Forestry/slabsDouble/1.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/10.png b/front/public/images/large/Forestry/slabsDouble/10.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/11.png b/front/public/images/large/Forestry/slabsDouble/11.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/12.png b/front/public/images/large/Forestry/slabsDouble/12.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/13.png b/front/public/images/large/Forestry/slabsDouble/13.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/14.png b/front/public/images/large/Forestry/slabsDouble/14.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/15.png b/front/public/images/large/Forestry/slabsDouble/15.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/2.png b/front/public/images/large/Forestry/slabsDouble/2.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/3.png b/front/public/images/large/Forestry/slabsDouble/3.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/4.png b/front/public/images/large/Forestry/slabsDouble/4.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/5.png b/front/public/images/large/Forestry/slabsDouble/5.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/6.png b/front/public/images/large/Forestry/slabsDouble/6.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/7.png b/front/public/images/large/Forestry/slabsDouble/7.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/8.png b/front/public/images/large/Forestry/slabsDouble/8.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDouble/9.png b/front/public/images/large/Forestry/slabsDouble/9.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDouble/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/0.png b/front/public/images/large/Forestry/slabsDoubleFireproof/0.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/1.png b/front/public/images/large/Forestry/slabsDoubleFireproof/1.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/10.png b/front/public/images/large/Forestry/slabsDoubleFireproof/10.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/11.png b/front/public/images/large/Forestry/slabsDoubleFireproof/11.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/12.png b/front/public/images/large/Forestry/slabsDoubleFireproof/12.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/13.png b/front/public/images/large/Forestry/slabsDoubleFireproof/13.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/14.png b/front/public/images/large/Forestry/slabsDoubleFireproof/14.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/15.png b/front/public/images/large/Forestry/slabsDoubleFireproof/15.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/2.png b/front/public/images/large/Forestry/slabsDoubleFireproof/2.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/3.png b/front/public/images/large/Forestry/slabsDoubleFireproof/3.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/4.png b/front/public/images/large/Forestry/slabsDoubleFireproof/4.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/5.png b/front/public/images/large/Forestry/slabsDoubleFireproof/5.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/6.png b/front/public/images/large/Forestry/slabsDoubleFireproof/6.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/7.png b/front/public/images/large/Forestry/slabsDoubleFireproof/7.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/8.png b/front/public/images/large/Forestry/slabsDoubleFireproof/8.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsDoubleFireproof/9.png b/front/public/images/large/Forestry/slabsDoubleFireproof/9.png deleted file mode 100644 index 30c2fb4310..0000000000 Binary files a/front/public/images/large/Forestry/slabsDoubleFireproof/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/0.png b/front/public/images/large/Forestry/slabsFireproof/0.png deleted file mode 100644 index 87214c55a4..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/1.png b/front/public/images/large/Forestry/slabsFireproof/1.png deleted file mode 100644 index 603d5d5d04..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/10.png b/front/public/images/large/Forestry/slabsFireproof/10.png deleted file mode 100644 index b5d59b88ed..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/11.png b/front/public/images/large/Forestry/slabsFireproof/11.png deleted file mode 100644 index 782b4e04d7..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/12.png b/front/public/images/large/Forestry/slabsFireproof/12.png deleted file mode 100644 index 38c4ba1077..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/13.png b/front/public/images/large/Forestry/slabsFireproof/13.png deleted file mode 100644 index dd71d862bd..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/14.png b/front/public/images/large/Forestry/slabsFireproof/14.png deleted file mode 100644 index c1f3837e60..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/15.png b/front/public/images/large/Forestry/slabsFireproof/15.png deleted file mode 100644 index 007a204348..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/16.png b/front/public/images/large/Forestry/slabsFireproof/16.png deleted file mode 100644 index 225c1a8c12..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/17.png b/front/public/images/large/Forestry/slabsFireproof/17.png deleted file mode 100644 index 3d04c22ff8..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/18.png b/front/public/images/large/Forestry/slabsFireproof/18.png deleted file mode 100644 index 610d1c0fdc..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/19.png b/front/public/images/large/Forestry/slabsFireproof/19.png deleted file mode 100644 index cd72cfab83..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/2.png b/front/public/images/large/Forestry/slabsFireproof/2.png deleted file mode 100644 index d9dcf0a3aa..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/20.png b/front/public/images/large/Forestry/slabsFireproof/20.png deleted file mode 100644 index faad67075a..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/21.png b/front/public/images/large/Forestry/slabsFireproof/21.png deleted file mode 100644 index 01a19f8ce5..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/22.png b/front/public/images/large/Forestry/slabsFireproof/22.png deleted file mode 100644 index a3561ea56b..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/23.png b/front/public/images/large/Forestry/slabsFireproof/23.png deleted file mode 100644 index e66bb13eaa..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/24.png b/front/public/images/large/Forestry/slabsFireproof/24.png deleted file mode 100644 index d100a43dc2..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/25.png b/front/public/images/large/Forestry/slabsFireproof/25.png deleted file mode 100644 index 0d59bd9a49..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/26.png b/front/public/images/large/Forestry/slabsFireproof/26.png deleted file mode 100644 index 5d0a414e54..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/27.png b/front/public/images/large/Forestry/slabsFireproof/27.png deleted file mode 100644 index 972ce98078..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/28.png b/front/public/images/large/Forestry/slabsFireproof/28.png deleted file mode 100644 index 6d4f3bb0ea..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/3.png b/front/public/images/large/Forestry/slabsFireproof/3.png deleted file mode 100644 index 3b73692a52..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/4.png b/front/public/images/large/Forestry/slabsFireproof/4.png deleted file mode 100644 index 582e0f30be..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/5.png b/front/public/images/large/Forestry/slabsFireproof/5.png deleted file mode 100644 index 5c288e3d46..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/6.png b/front/public/images/large/Forestry/slabsFireproof/6.png deleted file mode 100644 index 367705207a..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/7.png b/front/public/images/large/Forestry/slabsFireproof/7.png deleted file mode 100644 index f68ab9c782..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/8.png b/front/public/images/large/Forestry/slabsFireproof/8.png deleted file mode 100644 index 33f95c08e8..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/slabsFireproof/9.png b/front/public/images/large/Forestry/slabsFireproof/9.png deleted file mode 100644 index f626b0b159..0000000000 Binary files a/front/public/images/large/Forestry/slabsFireproof/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/soil/0.png b/front/public/images/large/Forestry/soil/0.png deleted file mode 100644 index bda67401e2..0000000000 Binary files a/front/public/images/large/Forestry/soil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/soil/1.png b/front/public/images/large/Forestry/soil/1.png deleted file mode 100644 index 2431912d00..0000000000 Binary files a/front/public/images/large/Forestry/soil/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/solderingIron/0.png b/front/public/images/large/Forestry/solderingIron/0.png deleted file mode 100644 index ac4e26f2d2..0000000000 Binary files a/front/public/images/large/Forestry/solderingIron/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/0.png b/front/public/images/large/Forestry/stairs/0.png deleted file mode 100644 index 801e1f66d5..0000000000 Binary files a/front/public/images/large/Forestry/stairs/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/1.png b/front/public/images/large/Forestry/stairs/1.png deleted file mode 100644 index 6166897c76..0000000000 Binary files a/front/public/images/large/Forestry/stairs/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/10.png b/front/public/images/large/Forestry/stairs/10.png deleted file mode 100644 index 16a481f63a..0000000000 Binary files a/front/public/images/large/Forestry/stairs/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/11.png b/front/public/images/large/Forestry/stairs/11.png deleted file mode 100644 index f9ac152a64..0000000000 Binary files a/front/public/images/large/Forestry/stairs/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/12.png b/front/public/images/large/Forestry/stairs/12.png deleted file mode 100644 index 25f7ccc2b9..0000000000 Binary files a/front/public/images/large/Forestry/stairs/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/13.png b/front/public/images/large/Forestry/stairs/13.png deleted file mode 100644 index 46b7c7a138..0000000000 Binary files a/front/public/images/large/Forestry/stairs/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/14.png b/front/public/images/large/Forestry/stairs/14.png deleted file mode 100644 index 8b7b438e38..0000000000 Binary files a/front/public/images/large/Forestry/stairs/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/15.png b/front/public/images/large/Forestry/stairs/15.png deleted file mode 100644 index ea60fdd9e9..0000000000 Binary files a/front/public/images/large/Forestry/stairs/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/16.png b/front/public/images/large/Forestry/stairs/16.png deleted file mode 100644 index 15f3f7304c..0000000000 Binary files a/front/public/images/large/Forestry/stairs/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/17.png b/front/public/images/large/Forestry/stairs/17.png deleted file mode 100644 index 95f0bbb041..0000000000 Binary files a/front/public/images/large/Forestry/stairs/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/18.png b/front/public/images/large/Forestry/stairs/18.png deleted file mode 100644 index 421420edbc..0000000000 Binary files a/front/public/images/large/Forestry/stairs/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/19.png b/front/public/images/large/Forestry/stairs/19.png deleted file mode 100644 index 1192a62886..0000000000 Binary files a/front/public/images/large/Forestry/stairs/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/2.png b/front/public/images/large/Forestry/stairs/2.png deleted file mode 100644 index 0af8380939..0000000000 Binary files a/front/public/images/large/Forestry/stairs/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/20.png b/front/public/images/large/Forestry/stairs/20.png deleted file mode 100644 index 8023a2d36b..0000000000 Binary files a/front/public/images/large/Forestry/stairs/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/21.png b/front/public/images/large/Forestry/stairs/21.png deleted file mode 100644 index fb99931f40..0000000000 Binary files a/front/public/images/large/Forestry/stairs/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/22.png b/front/public/images/large/Forestry/stairs/22.png deleted file mode 100644 index abe70261c4..0000000000 Binary files a/front/public/images/large/Forestry/stairs/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/23.png b/front/public/images/large/Forestry/stairs/23.png deleted file mode 100644 index 2407a49d74..0000000000 Binary files a/front/public/images/large/Forestry/stairs/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/24.png b/front/public/images/large/Forestry/stairs/24.png deleted file mode 100644 index af9ac70cc3..0000000000 Binary files a/front/public/images/large/Forestry/stairs/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/25.png b/front/public/images/large/Forestry/stairs/25.png deleted file mode 100644 index e198728fae..0000000000 Binary files a/front/public/images/large/Forestry/stairs/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/26.png b/front/public/images/large/Forestry/stairs/26.png deleted file mode 100644 index b9f84add81..0000000000 Binary files a/front/public/images/large/Forestry/stairs/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/27.png b/front/public/images/large/Forestry/stairs/27.png deleted file mode 100644 index 45ebaf3244..0000000000 Binary files a/front/public/images/large/Forestry/stairs/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/28.png b/front/public/images/large/Forestry/stairs/28.png deleted file mode 100644 index f2ceb2e4a3..0000000000 Binary files a/front/public/images/large/Forestry/stairs/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/3.png b/front/public/images/large/Forestry/stairs/3.png deleted file mode 100644 index 705e6f581c..0000000000 Binary files a/front/public/images/large/Forestry/stairs/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/4.png b/front/public/images/large/Forestry/stairs/4.png deleted file mode 100644 index bcb27e4ae2..0000000000 Binary files a/front/public/images/large/Forestry/stairs/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/5.png b/front/public/images/large/Forestry/stairs/5.png deleted file mode 100644 index 04f29640c6..0000000000 Binary files a/front/public/images/large/Forestry/stairs/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/6.png b/front/public/images/large/Forestry/stairs/6.png deleted file mode 100644 index 4a7e97dd6f..0000000000 Binary files a/front/public/images/large/Forestry/stairs/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/7.png b/front/public/images/large/Forestry/stairs/7.png deleted file mode 100644 index 8796877842..0000000000 Binary files a/front/public/images/large/Forestry/stairs/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/8.png b/front/public/images/large/Forestry/stairs/8.png deleted file mode 100644 index b15376ab34..0000000000 Binary files a/front/public/images/large/Forestry/stairs/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairs/9.png b/front/public/images/large/Forestry/stairs/9.png deleted file mode 100644 index fc92dad290..0000000000 Binary files a/front/public/images/large/Forestry/stairs/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/0.png b/front/public/images/large/Forestry/stairsFireproof/0.png deleted file mode 100644 index 801e1f66d5..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/1.png b/front/public/images/large/Forestry/stairsFireproof/1.png deleted file mode 100644 index 6166897c76..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/10.png b/front/public/images/large/Forestry/stairsFireproof/10.png deleted file mode 100644 index 16a481f63a..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/11.png b/front/public/images/large/Forestry/stairsFireproof/11.png deleted file mode 100644 index f9ac152a64..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/12.png b/front/public/images/large/Forestry/stairsFireproof/12.png deleted file mode 100644 index 25f7ccc2b9..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/13.png b/front/public/images/large/Forestry/stairsFireproof/13.png deleted file mode 100644 index 46b7c7a138..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/14.png b/front/public/images/large/Forestry/stairsFireproof/14.png deleted file mode 100644 index 8b7b438e38..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/14.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/15.png b/front/public/images/large/Forestry/stairsFireproof/15.png deleted file mode 100644 index ea60fdd9e9..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/15.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/16.png b/front/public/images/large/Forestry/stairsFireproof/16.png deleted file mode 100644 index 15f3f7304c..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/16.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/17.png b/front/public/images/large/Forestry/stairsFireproof/17.png deleted file mode 100644 index 95f0bbb041..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/17.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/18.png b/front/public/images/large/Forestry/stairsFireproof/18.png deleted file mode 100644 index 421420edbc..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/18.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/19.png b/front/public/images/large/Forestry/stairsFireproof/19.png deleted file mode 100644 index 1192a62886..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/19.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/2.png b/front/public/images/large/Forestry/stairsFireproof/2.png deleted file mode 100644 index 0af8380939..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/20.png b/front/public/images/large/Forestry/stairsFireproof/20.png deleted file mode 100644 index 8023a2d36b..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/20.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/21.png b/front/public/images/large/Forestry/stairsFireproof/21.png deleted file mode 100644 index fb99931f40..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/21.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/22.png b/front/public/images/large/Forestry/stairsFireproof/22.png deleted file mode 100644 index abe70261c4..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/22.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/23.png b/front/public/images/large/Forestry/stairsFireproof/23.png deleted file mode 100644 index 2407a49d74..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/23.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/24.png b/front/public/images/large/Forestry/stairsFireproof/24.png deleted file mode 100644 index af9ac70cc3..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/24.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/25.png b/front/public/images/large/Forestry/stairsFireproof/25.png deleted file mode 100644 index e198728fae..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/25.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/26.png b/front/public/images/large/Forestry/stairsFireproof/26.png deleted file mode 100644 index b9f84add81..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/26.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/27.png b/front/public/images/large/Forestry/stairsFireproof/27.png deleted file mode 100644 index 45ebaf3244..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/27.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/28.png b/front/public/images/large/Forestry/stairsFireproof/28.png deleted file mode 100644 index f2ceb2e4a3..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/28.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/3.png b/front/public/images/large/Forestry/stairsFireproof/3.png deleted file mode 100644 index 705e6f581c..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/4.png b/front/public/images/large/Forestry/stairsFireproof/4.png deleted file mode 100644 index bcb27e4ae2..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/5.png b/front/public/images/large/Forestry/stairsFireproof/5.png deleted file mode 100644 index 04f29640c6..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/6.png b/front/public/images/large/Forestry/stairsFireproof/6.png deleted file mode 100644 index 4a7e97dd6f..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/7.png b/front/public/images/large/Forestry/stairsFireproof/7.png deleted file mode 100644 index 8796877842..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/8.png b/front/public/images/large/Forestry/stairsFireproof/8.png deleted file mode 100644 index b15376ab34..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stairsFireproof/9.png b/front/public/images/large/Forestry/stairsFireproof/9.png deleted file mode 100644 index fc92dad290..0000000000 Binary files a/front/public/images/large/Forestry/stairsFireproof/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stamps/0.png b/front/public/images/large/Forestry/stamps/0.png deleted file mode 100644 index b20a79a30c..0000000000 Binary files a/front/public/images/large/Forestry/stamps/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stamps/1.png b/front/public/images/large/Forestry/stamps/1.png deleted file mode 100644 index a253360afb..0000000000 Binary files a/front/public/images/large/Forestry/stamps/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stamps/2.png b/front/public/images/large/Forestry/stamps/2.png deleted file mode 100644 index 849792023d..0000000000 Binary files a/front/public/images/large/Forestry/stamps/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stamps/3.png b/front/public/images/large/Forestry/stamps/3.png deleted file mode 100644 index 18d1084f7c..0000000000 Binary files a/front/public/images/large/Forestry/stamps/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stamps/4.png b/front/public/images/large/Forestry/stamps/4.png deleted file mode 100644 index 3fb885e93a..0000000000 Binary files a/front/public/images/large/Forestry/stamps/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stamps/5.png b/front/public/images/large/Forestry/stamps/5.png deleted file mode 100644 index ac8d9e377e..0000000000 Binary files a/front/public/images/large/Forestry/stamps/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stamps/6.png b/front/public/images/large/Forestry/stamps/6.png deleted file mode 100644 index fcc6437ec9..0000000000 Binary files a/front/public/images/large/Forestry/stamps/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/stump/0.png b/front/public/images/large/Forestry/stump/0.png deleted file mode 100644 index 7c3dd0b9db..0000000000 Binary files a/front/public/images/large/Forestry/stump/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/sturdyMachine/0.png b/front/public/images/large/Forestry/sturdyMachine/0.png deleted file mode 100644 index 1455970910..0000000000 Binary files a/front/public/images/large/Forestry/sturdyMachine/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/0.png b/front/public/images/large/Forestry/thermionicTubes/0.png deleted file mode 100644 index 5ecf62c6d8..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/1.png b/front/public/images/large/Forestry/thermionicTubes/1.png deleted file mode 100644 index 20a35ecd51..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/1.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/10.png b/front/public/images/large/Forestry/thermionicTubes/10.png deleted file mode 100644 index 3ecfbc14a6..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/10.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/11.png b/front/public/images/large/Forestry/thermionicTubes/11.png deleted file mode 100644 index ff369e3328..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/11.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/12.png b/front/public/images/large/Forestry/thermionicTubes/12.png deleted file mode 100644 index 052f69f8db..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/12.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/13.png b/front/public/images/large/Forestry/thermionicTubes/13.png deleted file mode 100644 index 0316eeb0f4..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/13.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/2.png b/front/public/images/large/Forestry/thermionicTubes/2.png deleted file mode 100644 index bd033bbc73..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/2.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/3.png b/front/public/images/large/Forestry/thermionicTubes/3.png deleted file mode 100644 index 51d65fc13a..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/3.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/4.png b/front/public/images/large/Forestry/thermionicTubes/4.png deleted file mode 100644 index c0b555563d..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/4.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/5.png b/front/public/images/large/Forestry/thermionicTubes/5.png deleted file mode 100644 index eeb19a0984..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/5.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/6.png b/front/public/images/large/Forestry/thermionicTubes/6.png deleted file mode 100644 index d5a8c34687..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/6.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/7.png b/front/public/images/large/Forestry/thermionicTubes/7.png deleted file mode 100644 index 95c5a8f436..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/7.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/8.png b/front/public/images/large/Forestry/thermionicTubes/8.png deleted file mode 100644 index 573c849c1d..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/8.png and /dev/null differ diff --git a/front/public/images/large/Forestry/thermionicTubes/9.png b/front/public/images/large/Forestry/thermionicTubes/9.png deleted file mode 100644 index 9ecc2bbd94..0000000000 Binary files a/front/public/images/large/Forestry/thermionicTubes/9.png and /dev/null differ diff --git a/front/public/images/large/Forestry/treealyzer/0.png b/front/public/images/large/Forestry/treealyzer/0.png deleted file mode 100644 index 60697be448..0000000000 Binary files a/front/public/images/large/Forestry/treealyzer/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsule/0.png b/front/public/images/large/Forestry/waxCapsule/0.png deleted file mode 100644 index 11879028cc..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsule/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleBiomass/0.png b/front/public/images/large/Forestry/waxCapsuleBiomass/0.png deleted file mode 100644 index f038857732..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleBiomass/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleEthanol/0.png b/front/public/images/large/Forestry/waxCapsuleEthanol/0.png deleted file mode 100644 index 9b0bee3bee..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleEthanol/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleFuel/0.png b/front/public/images/large/Forestry/waxCapsuleFuel/0.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleFuel/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleHoney/0.png b/front/public/images/large/Forestry/waxCapsuleHoney/0.png deleted file mode 100644 index 8eca248035..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleHoney/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleIce/0.png b/front/public/images/large/Forestry/waxCapsuleIce/0.png deleted file mode 100644 index e48d41234f..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleIce/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleJuice/0.png b/front/public/images/large/Forestry/waxCapsuleJuice/0.png deleted file mode 100644 index 887435f0f9..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleJuice/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleMead/0.png b/front/public/images/large/Forestry/waxCapsuleMead/0.png deleted file mode 100644 index 173da661ed..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleOil/0.png b/front/public/images/large/Forestry/waxCapsuleOil/0.png deleted file mode 100644 index f331b6fd21..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleOil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleSeedOil/0.png b/front/public/images/large/Forestry/waxCapsuleSeedOil/0.png deleted file mode 100644 index 28414cf922..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleSeedOil/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleShortMead/0.png b/front/public/images/large/Forestry/waxCapsuleShortMead/0.png deleted file mode 100644 index 5d13a4ab2e..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleShortMead/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCapsuleWater/0.png b/front/public/images/large/Forestry/waxCapsuleWater/0.png deleted file mode 100644 index f3e67531d4..0000000000 Binary files a/front/public/images/large/Forestry/waxCapsuleWater/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/waxCast/0.png b/front/public/images/large/Forestry/waxCast/0.png deleted file mode 100644 index 0b397eb61b..0000000000 Binary files a/front/public/images/large/Forestry/waxCast/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/woodPulp/0.png b/front/public/images/large/Forestry/woodPulp/0.png deleted file mode 100644 index ecd7868c74..0000000000 Binary files a/front/public/images/large/Forestry/woodPulp/0.png and /dev/null differ diff --git a/front/public/images/large/Forestry/wrench/0.png b/front/public/images/large/Forestry/wrench/0.png deleted file mode 100644 index 2dee30a627..0000000000 Binary files a/front/public/images/large/Forestry/wrench/0.png and /dev/null differ diff --git a/front/public/images/large/ForgeMicroblock/sawDiamond/0.png b/front/public/images/large/ForgeMicroblock/sawDiamond/0.png deleted file mode 100644 index ddb9db47de..0000000000 Binary files a/front/public/images/large/ForgeMicroblock/sawDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/ForgeMicroblock/sawIron/0.png b/front/public/images/large/ForgeMicroblock/sawIron/0.png deleted file mode 100644 index cef1108e2b..0000000000 Binary files a/front/public/images/large/ForgeMicroblock/sawIron/0.png and /dev/null differ diff --git a/front/public/images/large/ForgeMicroblock/sawStone/0.png b/front/public/images/large/ForgeMicroblock/sawStone/0.png deleted file mode 100644 index a7e2e1532e..0000000000 Binary files a/front/public/images/large/ForgeMicroblock/sawStone/0.png and /dev/null differ diff --git a/front/public/images/large/ForgeMicroblock/stoneRod/0.png b/front/public/images/large/ForgeMicroblock/stoneRod/0.png deleted file mode 100644 index b1810adf84..0000000000 Binary files a/front/public/images/large/ForgeMicroblock/stoneRod/0.png and /dev/null differ diff --git a/front/public/images/large/ForgeRelocation/relocation.blockmovingrow/0.png b/front/public/images/large/ForgeRelocation/relocation.blockmovingrow/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/ForgeRelocation/relocation.blockmovingrow/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/0.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/0.png deleted file mode 100644 index 32f9fcfd5e..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/1.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/1.png deleted file mode 100644 index 2a0d9e55f7..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/10.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/10.png deleted file mode 100644 index 56a00fe749..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/10.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/11.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/11.png deleted file mode 100644 index 3cc84f9878..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/11.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/12.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/12.png deleted file mode 100644 index e53322d1bf..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/13.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/13.png deleted file mode 100644 index c56dd0fe7f..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/13.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/14.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/14.png deleted file mode 100644 index ec9823fd9f..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/14.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/15.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/15.png deleted file mode 100644 index 554ef67120..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/15.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/16.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/16.png deleted file mode 100644 index a42a4d0112..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/16.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/17.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/17.png deleted file mode 100644 index 651356be6b..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/17.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/18.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/18.png deleted file mode 100644 index 7dae3c07f5..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/18.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/19.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/19.png deleted file mode 100644 index b225a4b8b5..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/19.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/2.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/2.png deleted file mode 100644 index 39962605a5..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/20.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/20.png deleted file mode 100644 index 5a1c4dc231..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/20.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/21.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/21.png deleted file mode 100644 index 6090826f30..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/21.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/22.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/22.png deleted file mode 100644 index 004cff71d7..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/22.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/23.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/23.png deleted file mode 100644 index 2895933c07..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/23.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/24.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/24.png deleted file mode 100644 index 036fc70df7..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/24.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/25.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/25.png deleted file mode 100644 index 0a47185771..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/25.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/26.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/26.png deleted file mode 100644 index 104d0d7368..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/26.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/27.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/27.png deleted file mode 100644 index e01c5dc0e9..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/27.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/28.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/28.png deleted file mode 100644 index 0254b4a393..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/28.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/29.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/29.png deleted file mode 100644 index e5ea19d29f..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/29.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/3.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/3.png deleted file mode 100644 index 531b7bfd6f..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/30.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/30.png deleted file mode 100644 index 53bf56138b..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/30.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/4.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/4.png deleted file mode 100644 index 78884053d0..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/5.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/5.png deleted file mode 100644 index 41ed48663d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/6.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/6.png deleted file mode 100644 index aaa7cbe3f2..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/7.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/7.png deleted file mode 100644 index 7e528e613f..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/8.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/8.png deleted file mode 100644 index 29e6f1207a..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.baseItem/9.png b/front/public/images/large/GalacticraftAmunRa/item.baseItem/9.png deleted file mode 100644 index 4c350dfc8a..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.baseItem/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-ender/0.png b/front/public/images/large/GalacticraftAmunRa/item.battery-ender/0.png deleted file mode 100644 index 31946fed70..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-ender/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-ender/100.png b/front/public/images/large/GalacticraftAmunRa/item.battery-ender/100.png deleted file mode 100644 index 31946fed70..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-ender/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-lithium/0.png b/front/public/images/large/GalacticraftAmunRa/item.battery-lithium/0.png deleted file mode 100644 index f2f96e7d8d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-lithium/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-lithium/100.png b/front/public/images/large/GalacticraftAmunRa/item.battery-lithium/100.png deleted file mode 100644 index f2f96e7d8d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-lithium/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-nuclear/0.png b/front/public/images/large/GalacticraftAmunRa/item.battery-nuclear/0.png deleted file mode 100644 index c97e938de4..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-nuclear/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-nuclear/100.png b/front/public/images/large/GalacticraftAmunRa/item.battery-nuclear/100.png deleted file mode 100644 index c97e938de4..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-nuclear/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-quantum/0.png b/front/public/images/large/GalacticraftAmunRa/item.battery-quantum/0.png deleted file mode 100644 index af44b2e030..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-quantum/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.battery-quantum/100.png b/front/public/images/large/GalacticraftAmunRa/item.battery-quantum/100.png deleted file mode 100644 index af44b2e030..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.battery-quantum/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.cryogun/0.png b/front/public/images/large/GalacticraftAmunRa/item.cryogun/0.png deleted file mode 100644 index 261263da65..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.cryogun/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.cryogun/100.png b/front/public/images/large/GalacticraftAmunRa/item.cryogun/100.png deleted file mode 100644 index 261263da65..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.cryogun/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/0.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/0.png deleted file mode 100644 index f5dbd8a895..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/1.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/1.png deleted file mode 100644 index 60ef011af3..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/12.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/12.png deleted file mode 100644 index 6d922e7207..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/15.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/15.png deleted file mode 100644 index ad5c00b6df..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/15.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/2.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/2.png deleted file mode 100644 index 4242dd3096..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/3.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/3.png deleted file mode 100644 index 97ff3e8449..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/4.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/4.png deleted file mode 100644 index 51e4e97603..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/5.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/5.png deleted file mode 100644 index 6beedb3927..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/6.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/6.png deleted file mode 100644 index 0cf669333c..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/8.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/8.png deleted file mode 100644 index 01e0975db0..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/9.png b/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/9.png deleted file mode 100644 index 9d5626f907..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.itemShuttle/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.nanotool/0.png b/front/public/images/large/GalacticraftAmunRa/item.nanotool/0.png deleted file mode 100644 index 4fe4478ae1..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.nanotool/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.nanotool/100.png b/front/public/images/large/GalacticraftAmunRa/item.nanotool/100.png deleted file mode 100644 index 28eb16a2a7..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.nanotool/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.raygun/0.png b/front/public/images/large/GalacticraftAmunRa/item.raygun/0.png deleted file mode 100644 index 0149cd59fd..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.raygun/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.raygun/100.png b/front/public/images/large/GalacticraftAmunRa/item.raygun/100.png deleted file mode 100644 index 0149cd59fd..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.raygun/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.schematic/0.png b/front/public/images/large/GalacticraftAmunRa/item.schematic/0.png deleted file mode 100644 index 275aa09cc6..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.schematic/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/0.png b/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/0.png deleted file mode 100644 index 03f2617bfd..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/1.png b/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/1.png deleted file mode 100644 index faacd62e4b..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/2.png b/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/2.png deleted file mode 100644 index 1fd8f9f1c3..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/3.png b/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/3.png deleted file mode 100644 index 614762c5cf..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/item.thermalSuit/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.aluChest/0.png b/front/public/images/large/GalacticraftAmunRa/tile.aluChest/0.png deleted file mode 100644 index ef75350f88..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.aluChest/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.alucrate.stairs/0.png b/front/public/images/large/GalacticraftAmunRa/tile.alucrate.stairs/0.png deleted file mode 100644 index a821cffd49..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.alucrate.stairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/0.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/0.png deleted file mode 100644 index 56dac84514..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/1.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/1.png deleted file mode 100644 index 03ce86dcfb..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/2.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/2.png deleted file mode 100644 index 26685ddf75..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/3.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/3.png deleted file mode 100644 index 5c4a11400a..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/4.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/4.png deleted file mode 100644 index dc2ee41fc6..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/5.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/5.png deleted file mode 100644 index 550c31a122..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/6.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/6.png deleted file mode 100644 index e559e6821d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/7.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/7.png deleted file mode 100644 index 669c895b84..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/8.png b/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/8.png deleted file mode 100644 index 57ad8ff4f0..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.asteroidMultiOre1/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basalt.stairs/0.png b/front/public/images/large/GalacticraftAmunRa/tile.basalt.stairs/0.png deleted file mode 100644 index 3862d363c2..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basalt.stairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/0.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/0.png deleted file mode 100644 index f35b658a45..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/1.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/1.png deleted file mode 100644 index 89d2a5066d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/10.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/10.png deleted file mode 100644 index f3dd12233e..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/10.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/2.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/2.png deleted file mode 100644 index 5bc8c5669d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/3.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/3.png deleted file mode 100644 index fab601fa60..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/4.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/4.png deleted file mode 100644 index e9efc59364..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/5.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/5.png deleted file mode 100644 index 7479c25d74..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/6.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/6.png deleted file mode 100644 index d01425e8ad..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/7.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/7.png deleted file mode 100644 index 0369d82bcd..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/8.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/8.png deleted file mode 100644 index 02fe1d1fd1..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/9.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/9.png deleted file mode 100644 index 5c78a75b1b..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltMultiOre/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basaltbrick.stairs/0.png b/front/public/images/large/GalacticraftAmunRa/tile.basaltbrick.stairs/0.png deleted file mode 100644 index ed505d0083..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basaltbrick.stairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockCrystal/0.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockCrystal/0.png deleted file mode 100644 index aab71bf1a8..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockGround/0.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockGround/0.png deleted file mode 100644 index 9c34559e14..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockGround/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockGround/1.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockGround/1.png deleted file mode 100644 index 8a1208e5d6..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockGround/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/0.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/0.png deleted file mode 100644 index 5ab5db088e..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/1.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/1.png deleted file mode 100644 index 1365bbbd31..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/10.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/10.png deleted file mode 100644 index 85a3524a39..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/10.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/11.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/11.png deleted file mode 100644 index 4b3464138b..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/11.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/12.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/12.png deleted file mode 100644 index e879d7a9ff..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/13.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/13.png deleted file mode 100644 index e6128c31b3..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/13.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/14.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/14.png deleted file mode 100644 index a98da05513..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/14.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/2.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/2.png deleted file mode 100644 index e78ea0af9c..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/3.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/3.png deleted file mode 100644 index ea090752bc..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/4.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/4.png deleted file mode 100644 index 30049ef191..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/5.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/5.png deleted file mode 100644 index b8f44aa5bc..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/6.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/6.png deleted file mode 100644 index ec9bacda08..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/7.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/7.png deleted file mode 100644 index 27f49f1217..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/8.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/8.png deleted file mode 100644 index a3ea54a4ed..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/9.png b/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/9.png deleted file mode 100644 index ab09641d8a..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseBlockRock/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/0.png b/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/0.png deleted file mode 100644 index 5712f4fce9..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/1.png b/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/1.png deleted file mode 100644 index b5dd55cbf1..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/2.png b/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/2.png deleted file mode 100644 index f6e0b68736..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseFalling/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/0.png b/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/0.png deleted file mode 100644 index 1894818da8..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/1.png b/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/1.png deleted file mode 100644 index 2215202686..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/2.png b/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/2.png deleted file mode 100644 index d60814c68a..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.baseGrass/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.basePlant/0.png b/front/public/images/large/GalacticraftAmunRa/tile.basePlant/0.png deleted file mode 100644 index 31dfe23e46..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.basePlant/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.blockFake/0.png b/front/public/images/large/GalacticraftAmunRa/tile.blockFake/0.png deleted file mode 100644 index 2e673ac816..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.blockFake/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.bossSpawner/0.png b/front/public/images/large/GalacticraftAmunRa/tile.bossSpawner/0.png deleted file mode 100644 index 03e68c7d61..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.bossSpawner/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/0.png b/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/0.png deleted file mode 100644 index 7d9e1d492b..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/1.png b/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/1.png deleted file mode 100644 index bdbad1bd67..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/2.png b/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/2.png deleted file mode 100644 index d1b09f4b57..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/3.png b/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/3.png deleted file mode 100644 index a34f7cee28..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/4.png b/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/4.png deleted file mode 100644 index 78e2f9b302..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/5.png b/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/5.png deleted file mode 100644 index 35cfabca49..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.hardClayMultiOre/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.log1/0.png b/front/public/images/large/GalacticraftAmunRa/tile.log1/0.png deleted file mode 100644 index fe67b76226..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.log1/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines1/0.png b/front/public/images/large/GalacticraftAmunRa/tile.machines1/0.png deleted file mode 100644 index 336f8a221e..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines1/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines1/1.png b/front/public/images/large/GalacticraftAmunRa/tile.machines1/1.png deleted file mode 100644 index b50eb681ef..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines1/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines1/2.png b/front/public/images/large/GalacticraftAmunRa/tile.machines1/2.png deleted file mode 100644 index 97c027ef98..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines1/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines1/3.png b/front/public/images/large/GalacticraftAmunRa/tile.machines1/3.png deleted file mode 100644 index 549a656a6d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines1/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines2/0.png b/front/public/images/large/GalacticraftAmunRa/tile.machines2/0.png deleted file mode 100644 index 56a2bd9b0d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines2/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines2/1.png b/front/public/images/large/GalacticraftAmunRa/tile.machines2/1.png deleted file mode 100644 index c95f2f4ae5..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines2/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines3/0.png b/front/public/images/large/GalacticraftAmunRa/tile.machines3/0.png deleted file mode 100644 index abeaaac78e..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines3/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines3/1.png b/front/public/images/large/GalacticraftAmunRa/tile.machines3/1.png deleted file mode 100644 index 80732843eb..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines3/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines4/0.png b/front/public/images/large/GalacticraftAmunRa/tile.machines4/0.png deleted file mode 100644 index 3b5cb82f75..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines4/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.machines4/1.png b/front/public/images/large/GalacticraftAmunRa/tile.machines4/1.png deleted file mode 100644 index 0ef63f4f68..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.machines4/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.methanePlanks.stairs/0.png b/front/public/images/large/GalacticraftAmunRa/tile.methanePlanks.stairs/0.png deleted file mode 100644 index 6c3d698aba..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.methanePlanks.stairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.msBoosters1/0.png b/front/public/images/large/GalacticraftAmunRa/tile.msBoosters1/0.png deleted file mode 100644 index a199b9aa90..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.msBoosters1/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.msBoosters1/1.png b/front/public/images/large/GalacticraftAmunRa/tile.msBoosters1/1.png deleted file mode 100644 index 1d63069273..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.msBoosters1/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.null/0.png b/front/public/images/large/GalacticraftAmunRa/tile.null/0.png deleted file mode 100644 index 5ac0f66bc6..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.null/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/0.png b/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/0.png deleted file mode 100644 index 90cd559e68..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/1.png b/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/1.png deleted file mode 100644 index 8f10f27ed5..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/2.png b/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/2.png deleted file mode 100644 index 50b0825d25..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/3.png b/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/3.png deleted file mode 100644 index 10f9881478..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/9.png b/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/9.png deleted file mode 100644 index ad8b63e16d..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.obsidianMultiOre/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.obsidianbrick.stairs/0.png b/front/public/images/large/GalacticraftAmunRa/tile.obsidianbrick.stairs/0.png deleted file mode 100644 index 2d37c67a35..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.obsidianbrick.stairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.oldConcreteOre/0.png b/front/public/images/large/GalacticraftAmunRa/tile.oldConcreteOre/0.png deleted file mode 100644 index 9fe907d174..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.oldConcreteOre/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.oldConcreteOre/1.png b/front/public/images/large/GalacticraftAmunRa/tile.oldConcreteOre/1.png deleted file mode 100644 index bd5b904bdb..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.oldConcreteOre/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.podPlanks.stairs/0.png b/front/public/images/large/GalacticraftAmunRa/tile.podPlanks.stairs/0.png deleted file mode 100644 index 4d6b74c954..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.podPlanks.stairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/0.png b/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/0.png deleted file mode 100644 index 1365bbbd31..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/1.png b/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/1.png deleted file mode 100644 index 27f49f1217..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/2.png b/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/2.png deleted file mode 100644 index a3ea54a4ed..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/3.png b/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/3.png deleted file mode 100644 index ab09641d8a..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/4.png b/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/4.png deleted file mode 100644 index ec9bacda08..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockDoubleslab/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/0.png b/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/0.png deleted file mode 100644 index c11d1eb743..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/1.png b/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/1.png deleted file mode 100644 index 4616f5e9aa..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/2.png b/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/2.png deleted file mode 100644 index 80fe38e757..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/3.png b/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/3.png deleted file mode 100644 index acc78ba32a..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/4.png b/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/4.png deleted file mode 100644 index ce75fa66ed..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.rockSlab/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.saplings/0.png b/front/public/images/large/GalacticraftAmunRa/tile.saplings/0.png deleted file mode 100644 index 5e8dfa7ec0..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.saplings/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.saplings/1.png b/front/public/images/large/GalacticraftAmunRa/tile.saplings/1.png deleted file mode 100644 index 8ae6f4b246..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.saplings/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.smoothbasalt.stairs/0.png b/front/public/images/large/GalacticraftAmunRa/tile.smoothbasalt.stairs/0.png deleted file mode 100644 index 9939337cfe..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.smoothbasalt.stairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.steelChest/0.png b/front/public/images/large/GalacticraftAmunRa/tile.steelChest/0.png deleted file mode 100644 index aacdb99619..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.steelChest/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.wood1/0.png b/front/public/images/large/GalacticraftAmunRa/tile.wood1/0.png deleted file mode 100644 index dda27e1e78..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.wood1/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.wood1/1.png b/front/public/images/large/GalacticraftAmunRa/tile.wood1/1.png deleted file mode 100644 index b684df309f..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.wood1/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.wood1/2.png b/front/public/images/large/GalacticraftAmunRa/tile.wood1/2.png deleted file mode 100644 index 1b06d8a790..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.wood1/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.wood1/3.png b/front/public/images/large/GalacticraftAmunRa/tile.wood1/3.png deleted file mode 100644 index 1f7ff304f2..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.wood1/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.woodDoubleslab/0.png b/front/public/images/large/GalacticraftAmunRa/tile.woodDoubleslab/0.png deleted file mode 100644 index 1f7ff304f2..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.woodDoubleslab/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.woodDoubleslab/1.png b/front/public/images/large/GalacticraftAmunRa/tile.woodDoubleslab/1.png deleted file mode 100644 index 1b06d8a790..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.woodDoubleslab/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.woodSlab/0.png b/front/public/images/large/GalacticraftAmunRa/tile.woodSlab/0.png deleted file mode 100644 index 608fdec477..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.woodSlab/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftAmunRa/tile.woodSlab/1.png b/front/public/images/large/GalacticraftAmunRa/tile.woodSlab/1.png deleted file mode 100644 index bcc4737d7f..0000000000 Binary files a/front/public/images/large/GalacticraftAmunRa/tile.woodSlab/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.airFan/0.png b/front/public/images/large/GalacticraftCore/item.airFan/0.png deleted file mode 100644 index 164ebd6adf..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.airFan/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.airVent/0.png b/front/public/images/large/GalacticraftCore/item.airVent/0.png deleted file mode 100644 index 69bb0d44cf..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.airVent/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/0.png b/front/public/images/large/GalacticraftCore/item.basicItem/0.png deleted file mode 100644 index c1ed75b227..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/1.png b/front/public/images/large/GalacticraftCore/item.basicItem/1.png deleted file mode 100644 index 0b9050bb80..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/10.png b/front/public/images/large/GalacticraftCore/item.basicItem/10.png deleted file mode 100644 index ee5c3e1657..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/10.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/11.png b/front/public/images/large/GalacticraftCore/item.basicItem/11.png deleted file mode 100644 index 6cb5effb6e..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/11.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/12.png b/front/public/images/large/GalacticraftCore/item.basicItem/12.png deleted file mode 100644 index 6abc3254ed..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/13.png b/front/public/images/large/GalacticraftCore/item.basicItem/13.png deleted file mode 100644 index 8590f23168..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/13.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/14.png b/front/public/images/large/GalacticraftCore/item.basicItem/14.png deleted file mode 100644 index 9093558afc..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/14.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/15.png b/front/public/images/large/GalacticraftCore/item.basicItem/15.png deleted file mode 100644 index 896ae8836f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/15.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/16.png b/front/public/images/large/GalacticraftCore/item.basicItem/16.png deleted file mode 100644 index e7dc37bc7c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/16.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/17.png b/front/public/images/large/GalacticraftCore/item.basicItem/17.png deleted file mode 100644 index 91a65b1354..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/17.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/18.png b/front/public/images/large/GalacticraftCore/item.basicItem/18.png deleted file mode 100644 index e2f333e8f9..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/18.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/19.png b/front/public/images/large/GalacticraftCore/item.basicItem/19.png deleted file mode 100644 index 822c4bda6d..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/19.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/2.png b/front/public/images/large/GalacticraftCore/item.basicItem/2.png deleted file mode 100644 index 28a2d8f96d..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/20.png b/front/public/images/large/GalacticraftCore/item.basicItem/20.png deleted file mode 100644 index b863ea6393..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/20.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/3.png b/front/public/images/large/GalacticraftCore/item.basicItem/3.png deleted file mode 100644 index 3e513810aa..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/4.png b/front/public/images/large/GalacticraftCore/item.basicItem/4.png deleted file mode 100644 index 752e2a5a56..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/5.png b/front/public/images/large/GalacticraftCore/item.basicItem/5.png deleted file mode 100644 index 69d0b98b06..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/6.png b/front/public/images/large/GalacticraftCore/item.basicItem/6.png deleted file mode 100644 index c2b2420d6d..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/7.png b/front/public/images/large/GalacticraftCore/item.basicItem/7.png deleted file mode 100644 index 5ab733dfd0..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/8.png b/front/public/images/large/GalacticraftCore/item.basicItem/8.png deleted file mode 100644 index a1ddf8a295..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.basicItem/9.png b/front/public/images/large/GalacticraftCore/item.basicItem/9.png deleted file mode 100644 index 50579480e4..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.basicItem/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.battery/0.png b/front/public/images/large/GalacticraftCore/item.battery/0.png deleted file mode 100644 index 8fdb823b20..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.battery/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.battery/100.png b/front/public/images/large/GalacticraftCore/item.battery/100.png deleted file mode 100644 index 8fdb823b20..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.battery/100.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.bucketFuel/0.png b/front/public/images/large/GalacticraftCore/item.bucketFuel/0.png deleted file mode 100644 index b78593f083..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.bucketFuel/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.bucketOil/0.png b/front/public/images/large/GalacticraftCore/item.bucketOil/0.png deleted file mode 100644 index d26defe54f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.bucketOil/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.buggy/0.png b/front/public/images/large/GalacticraftCore/item.buggy/0.png deleted file mode 100644 index 361aa287e0..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.buggy/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.buggy/1.png b/front/public/images/large/GalacticraftCore/item.buggy/1.png deleted file mode 100644 index 04295a5110..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.buggy/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.buggy/2.png b/front/public/images/large/GalacticraftCore/item.buggy/2.png deleted file mode 100644 index 44a37a1f7e..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.buggy/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.buggy/3.png b/front/public/images/large/GalacticraftCore/item.buggy/3.png deleted file mode 100644 index 6e176726a4..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.buggy/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.buggymat/0.png b/front/public/images/large/GalacticraftCore/item.buggymat/0.png deleted file mode 100644 index b82a5386a8..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.buggymat/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.buggymat/1.png b/front/public/images/large/GalacticraftCore/item.buggymat/1.png deleted file mode 100644 index aad371f118..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.buggymat/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.buggymat/2.png b/front/public/images/large/GalacticraftCore/item.buggymat/2.png deleted file mode 100644 index 5e05352c8f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.buggymat/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.canister/0.png b/front/public/images/large/GalacticraftCore/item.canister/0.png deleted file mode 100644 index 7f628b68d8..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.canister/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.canister/1.png b/front/public/images/large/GalacticraftCore/item.canister/1.png deleted file mode 100644 index 22f5bebe02..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.canister/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.canvas/0.png b/front/public/images/large/GalacticraftCore/item.canvas/0.png deleted file mode 100644 index 2234a9347a..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.canvas/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.cheeseCurd/0.png b/front/public/images/large/GalacticraftCore/item.cheeseCurd/0.png deleted file mode 100644 index ef97f206e1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.cheeseCurd/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.engine/0.png b/front/public/images/large/GalacticraftCore/item.engine/0.png deleted file mode 100644 index 62ee255ba9..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.engine/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.engine/1.png b/front/public/images/large/GalacticraftCore/item.engine/1.png deleted file mode 100644 index 9c4b977256..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.engine/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.flag/0.png b/front/public/images/large/GalacticraftCore/item.flag/0.png deleted file mode 100644 index a5ae5e355c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.flag/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.fuelCanisterPartial/1.png b/front/public/images/large/GalacticraftCore/item.fuelCanisterPartial/1.png deleted file mode 100644 index 0847145da5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.fuelCanisterPartial/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.heavyPlating/0.png b/front/public/images/large/GalacticraftCore/item.heavyPlating/0.png deleted file mode 100644 index 30fab20299..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.heavyPlating/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.infiniteBattery/0.png b/front/public/images/large/GalacticraftCore/item.infiniteBattery/0.png deleted file mode 100644 index 2dc23b1e94..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.infiniteBattery/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.infiniteOxygen/0.png b/front/public/images/large/GalacticraftCore/item.infiniteOxygen/0.png deleted file mode 100644 index 7991ff35b7..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.infiniteOxygen/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.key/0.png b/front/public/images/large/GalacticraftCore/item.key/0.png deleted file mode 100644 index efca1476d1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.key/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.meteoricIronIngot/0.png b/front/public/images/large/GalacticraftCore/item.meteoricIronIngot/0.png deleted file mode 100644 index 1e02bb2f9b..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.meteoricIronIngot/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.meteoricIronIngot/1.png b/front/public/images/large/GalacticraftCore/item.meteoricIronIngot/1.png deleted file mode 100644 index ca8201c4b7..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.meteoricIronIngot/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.meteoricIronRaw/0.png b/front/public/images/large/GalacticraftCore/item.meteoricIronRaw/0.png deleted file mode 100644 index ef76c7f344..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.meteoricIronRaw/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.noseCone/0.png b/front/public/images/large/GalacticraftCore/item.noseCone/0.png deleted file mode 100644 index 3b65d9e87c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.noseCone/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.null/0.png b/front/public/images/large/GalacticraftCore/item.null/0.png deleted file mode 100644 index 72c58aa9f6..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.null/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.null/1.png b/front/public/images/large/GalacticraftCore/item.null/1.png deleted file mode 100644 index c2afd38f21..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.null/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oilCanisterPartial/1.png b/front/public/images/large/GalacticraftCore/item.oilCanisterPartial/1.png deleted file mode 100644 index 1b58450e98..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oilCanisterPartial/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oilCanisterPartial/1001.png b/front/public/images/large/GalacticraftCore/item.oilCanisterPartial/1001.png deleted file mode 100644 index 00eeafab76..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oilCanisterPartial/1001.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oilExtractor/0.png b/front/public/images/large/GalacticraftCore/item.oilExtractor/0.png deleted file mode 100644 index cb59e8ddf2..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oilExtractor/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenConcentrator/0.png b/front/public/images/large/GalacticraftCore/item.oxygenConcentrator/0.png deleted file mode 100644 index 943d865f81..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenConcentrator/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenGear/0.png b/front/public/images/large/GalacticraftCore/item.oxygenGear/0.png deleted file mode 100644 index 6f32522a88..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenGear/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenMask/0.png b/front/public/images/large/GalacticraftCore/item.oxygenMask/0.png deleted file mode 100644 index c24eb5f004..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenMask/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankHeavyFull/0.png b/front/public/images/large/GalacticraftCore/item.oxygenTankHeavyFull/0.png deleted file mode 100644 index f9c68166f9..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankHeavyFull/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankHeavyFull/4000.png b/front/public/images/large/GalacticraftCore/item.oxygenTankHeavyFull/4000.png deleted file mode 100644 index f9c68166f9..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankHeavyFull/4000.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankLightFull/0.png b/front/public/images/large/GalacticraftCore/item.oxygenTankLightFull/0.png deleted file mode 100644 index 5d143d8b8c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankLightFull/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankLightFull/1000.png b/front/public/images/large/GalacticraftCore/item.oxygenTankLightFull/1000.png deleted file mode 100644 index 5d143d8b8c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankLightFull/1000.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankMedFull/0.png b/front/public/images/large/GalacticraftCore/item.oxygenTankMedFull/0.png deleted file mode 100644 index 5669b9b198..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankMedFull/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankMedFull/2000.png b/front/public/images/large/GalacticraftCore/item.oxygenTankMedFull/2000.png deleted file mode 100644 index 5669b9b198..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankMedFull/2000.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankSuperHeavyFull/0.png b/front/public/images/large/GalacticraftCore/item.oxygenTankSuperHeavyFull/0.png deleted file mode 100644 index 9363b0fc09..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankSuperHeavyFull/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankSuperHeavyFull/8000.png b/front/public/images/large/GalacticraftCore/item.oxygenTankSuperHeavyFull/8000.png deleted file mode 100644 index 9363b0fc09..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankSuperHeavyFull/8000.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankUltraHeavyFull/0.png b/front/public/images/large/GalacticraftCore/item.oxygenTankUltraHeavyFull/0.png deleted file mode 100644 index 4ecd0be082..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankUltraHeavyFull/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.oxygenTankUltraHeavyFull/16000.png b/front/public/images/large/GalacticraftCore/item.oxygenTankUltraHeavyFull/16000.png deleted file mode 100644 index 4ecd0be082..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.oxygenTankUltraHeavyFull/16000.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/0.png b/front/public/images/large/GalacticraftCore/item.parachute/0.png deleted file mode 100644 index bc5bd19cc5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/1.png b/front/public/images/large/GalacticraftCore/item.parachute/1.png deleted file mode 100644 index 1a7b5cbdee..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/10.png b/front/public/images/large/GalacticraftCore/item.parachute/10.png deleted file mode 100644 index 362a237f67..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/10.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/11.png b/front/public/images/large/GalacticraftCore/item.parachute/11.png deleted file mode 100644 index 16a98a57f4..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/11.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/12.png b/front/public/images/large/GalacticraftCore/item.parachute/12.png deleted file mode 100644 index b9574e4232..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/13.png b/front/public/images/large/GalacticraftCore/item.parachute/13.png deleted file mode 100644 index bb895e6ef7..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/13.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/14.png b/front/public/images/large/GalacticraftCore/item.parachute/14.png deleted file mode 100644 index c52eb40c3f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/14.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/15.png b/front/public/images/large/GalacticraftCore/item.parachute/15.png deleted file mode 100644 index 4e8fc8de40..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/15.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/2.png b/front/public/images/large/GalacticraftCore/item.parachute/2.png deleted file mode 100644 index 470d027fb8..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/3.png b/front/public/images/large/GalacticraftCore/item.parachute/3.png deleted file mode 100644 index 0526984a36..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/4.png b/front/public/images/large/GalacticraftCore/item.parachute/4.png deleted file mode 100644 index 4c6e91a9b6..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/5.png b/front/public/images/large/GalacticraftCore/item.parachute/5.png deleted file mode 100644 index 9a84e069e0..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/6.png b/front/public/images/large/GalacticraftCore/item.parachute/6.png deleted file mode 100644 index 42579658b2..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/7.png b/front/public/images/large/GalacticraftCore/item.parachute/7.png deleted file mode 100644 index 83d4683c9a..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/8.png b/front/public/images/large/GalacticraftCore/item.parachute/8.png deleted file mode 100644 index 09b6c7a581..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.parachute/9.png b/front/public/images/large/GalacticraftCore/item.parachute/9.png deleted file mode 100644 index 7190f8dfd5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.parachute/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.rocketFins/0.png b/front/public/images/large/GalacticraftCore/item.rocketFins/0.png deleted file mode 100644 index d7af0f3dae..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.rocketFins/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.schematic/0.png b/front/public/images/large/GalacticraftCore/item.schematic/0.png deleted file mode 100644 index fab5347ab7..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.schematic/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.schematic/1.png b/front/public/images/large/GalacticraftCore/item.schematic/1.png deleted file mode 100644 index 1087b6a2bc..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.schematic/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.sensorGlasses/0.png b/front/public/images/large/GalacticraftCore/item.sensorGlasses/0.png deleted file mode 100644 index b89963ead6..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.sensorGlasses/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.sensorLens/0.png b/front/public/images/large/GalacticraftCore/item.sensorLens/0.png deleted file mode 100644 index e86960c568..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.sensorLens/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.spaceship/0.png b/front/public/images/large/GalacticraftCore/item.spaceship/0.png deleted file mode 100644 index 1c9e1059bf..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.spaceship/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.spaceship/1.png b/front/public/images/large/GalacticraftCore/item.spaceship/1.png deleted file mode 100644 index e2a5015ae3..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.spaceship/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.spaceship/2.png b/front/public/images/large/GalacticraftCore/item.spaceship/2.png deleted file mode 100644 index a8f00fcead..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.spaceship/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.spaceship/3.png b/front/public/images/large/GalacticraftCore/item.spaceship/3.png deleted file mode 100644 index a3e8675837..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.spaceship/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.spaceship/4.png b/front/public/images/large/GalacticraftCore/item.spaceship/4.png deleted file mode 100644 index 0f5ee81f40..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.spaceship/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.standardWrench/0.png b/front/public/images/large/GalacticraftCore/item.standardWrench/0.png deleted file mode 100644 index a736f99651..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.standardWrench/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steelPole/0.png b/front/public/images/large/GalacticraftCore/item.steelPole/0.png deleted file mode 100644 index be13ca7b15..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steelPole/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_axe/0.png b/front/public/images/large/GalacticraftCore/item.steel_axe/0.png deleted file mode 100644 index 87c8af8fb5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_axe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_boots/0.png b/front/public/images/large/GalacticraftCore/item.steel_boots/0.png deleted file mode 100644 index d1a9660bc0..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_boots/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_chestplate/0.png b/front/public/images/large/GalacticraftCore/item.steel_chestplate/0.png deleted file mode 100644 index 6e1f0a0cb1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_chestplate/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_helmet/0.png b/front/public/images/large/GalacticraftCore/item.steel_helmet/0.png deleted file mode 100644 index ee53b5cece..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_hoe/0.png b/front/public/images/large/GalacticraftCore/item.steel_hoe/0.png deleted file mode 100644 index 0bd2aa06fa..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_hoe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_leggings/0.png b/front/public/images/large/GalacticraftCore/item.steel_leggings/0.png deleted file mode 100644 index f0df936a26..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_leggings/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_pickaxe/0.png b/front/public/images/large/GalacticraftCore/item.steel_pickaxe/0.png deleted file mode 100644 index df585cc4a1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_shovel/0.png b/front/public/images/large/GalacticraftCore/item.steel_shovel/0.png deleted file mode 100644 index d12513427b..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_shovel/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/item.steel_sword/0.png b/front/public/images/large/GalacticraftCore/item.steel_sword/0.png deleted file mode 100644 index 97388b4dc5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/item.steel_sword/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCDouble/0.png b/front/public/images/large/GalacticraftCore/slabGCDouble/0.png deleted file mode 100644 index e879d7a9ff..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCDouble/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCDouble/1.png b/front/public/images/large/GalacticraftCore/slabGCDouble/1.png deleted file mode 100644 index 9bfa09f9d2..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCDouble/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCDouble/2.png b/front/public/images/large/GalacticraftCore/slabGCDouble/2.png deleted file mode 100644 index 4596b4a7b4..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCDouble/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCDouble/3.png b/front/public/images/large/GalacticraftCore/slabGCDouble/3.png deleted file mode 100644 index 923ccbe525..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCDouble/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCDouble/4.png b/front/public/images/large/GalacticraftCore/slabGCDouble/4.png deleted file mode 100644 index 94bf18f307..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCDouble/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCDouble/5.png b/front/public/images/large/GalacticraftCore/slabGCDouble/5.png deleted file mode 100644 index 477eda115a..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCDouble/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCHalf/0.png b/front/public/images/large/GalacticraftCore/slabGCHalf/0.png deleted file mode 100644 index 76986d1d88..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCHalf/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCHalf/1.png b/front/public/images/large/GalacticraftCore/slabGCHalf/1.png deleted file mode 100644 index 5bb3e4d464..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCHalf/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCHalf/2.png b/front/public/images/large/GalacticraftCore/slabGCHalf/2.png deleted file mode 100644 index 870e469e3d..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCHalf/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCHalf/3.png b/front/public/images/large/GalacticraftCore/slabGCHalf/3.png deleted file mode 100644 index eaf45a2a26..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCHalf/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCHalf/4.png b/front/public/images/large/GalacticraftCore/slabGCHalf/4.png deleted file mode 100644 index 2efcc230aa..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCHalf/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/slabGCHalf/5.png b/front/public/images/large/GalacticraftCore/slabGCHalf/5.png deleted file mode 100644 index a85e6111b5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/slabGCHalf/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.airLockFrame/0.png b/front/public/images/large/GalacticraftCore/tile.airLockFrame/0.png deleted file mode 100644 index 8851ae1798..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.airLockFrame/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.airLockFrame/1.png b/front/public/images/large/GalacticraftCore/tile.airLockFrame/1.png deleted file mode 100644 index 25b328b69b..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.airLockFrame/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.airLockSeal/0.png b/front/public/images/large/GalacticraftCore/tile.airLockSeal/0.png deleted file mode 100644 index e879d7a9ff..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.airLockSeal/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.aluminumWire/0.png b/front/public/images/large/GalacticraftCore/tile.aluminumWire/0.png deleted file mode 100644 index 7b890f2497..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.aluminumWire/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.aluminumWire/1.png b/front/public/images/large/GalacticraftCore/tile.aluminumWire/1.png deleted file mode 100644 index e8c4451eda..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.aluminumWire/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.arclamp/0.png b/front/public/images/large/GalacticraftCore/tile.arclamp/0.png deleted file mode 100644 index 1f0db3d46c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.arclamp/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.breatheableAir/0.png b/front/public/images/large/GalacticraftCore/tile.breatheableAir/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.breatheableAir/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.brightAir/0.png b/front/public/images/large/GalacticraftCore/tile.brightAir/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.brightAir/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.brightBreathableAir/0.png b/front/public/images/large/GalacticraftCore/tile.brightBreathableAir/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.brightBreathableAir/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.cargo/0.png b/front/public/images/large/GalacticraftCore/tile.cargo/0.png deleted file mode 100644 index a1da9baa93..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.cargo/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.cargo/4.png b/front/public/images/large/GalacticraftCore/tile.cargo/4.png deleted file mode 100644 index f870253a5f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.cargo/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.cheeseBlock/0.png b/front/public/images/large/GalacticraftCore/tile.cheeseBlock/0.png deleted file mode 100644 index 9b4c218d2d..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.cheeseBlock/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.dish/0.png b/front/public/images/large/GalacticraftCore/tile.dish/0.png deleted file mode 100644 index 5c2f309bdc..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.dish/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.distributor/0.png b/front/public/images/large/GalacticraftCore/tile.distributor/0.png deleted file mode 100644 index b80f28be6f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.distributor/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.dummyblock/0.png b/front/public/images/large/GalacticraftCore/tile.dummyblock/0.png deleted file mode 100644 index b73495ed52..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.dummyblock/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.enclosed/1.png b/front/public/images/large/GalacticraftCore/tile.enclosed/1.png deleted file mode 100644 index 4239c664b2..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.enclosed/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.enclosed/14.png b/front/public/images/large/GalacticraftCore/tile.enclosed/14.png deleted file mode 100644 index 99a351ba80..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.enclosed/14.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.enclosed/15.png b/front/public/images/large/GalacticraftCore/tile.enclosed/15.png deleted file mode 100644 index 7a4926f666..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.enclosed/15.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.fallenMeteor/0.png b/front/public/images/large/GalacticraftCore/tile.fallenMeteor/0.png deleted file mode 100644 index cd56a43a0a..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.fallenMeteor/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.fuelLoader/0.png b/front/public/images/large/GalacticraftCore/tile.fuelLoader/0.png deleted file mode 100644 index 9ed96ad127..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.fuelLoader/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/10.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/10.png deleted file mode 100644 index 0e688e08c5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/10.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/11.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/11.png deleted file mode 100644 index 42c3539263..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/11.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/12.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/12.png deleted file mode 100644 index 8f81f4b9a5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/3.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/3.png deleted file mode 100644 index 9bfa09f9d2..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/4.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/4.png deleted file mode 100644 index e879d7a9ff..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/5.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/5.png deleted file mode 100644 index 8a2fd9684d..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/6.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/6.png deleted file mode 100644 index bb8eea5332..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/7.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/7.png deleted file mode 100644 index 2ece9992cf..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/8.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/8.png deleted file mode 100644 index 0588c75386..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/9.png b/front/public/images/large/GalacticraftCore/tile.gcBlockCore/9.png deleted file mode 100644 index 42ebd5bcde..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.gcBlockCore/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.glowstoneTorch/0.png b/front/public/images/large/GalacticraftCore/tile.glowstoneTorch/0.png deleted file mode 100644 index 64ff883923..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.glowstoneTorch/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.landingPad/0.png b/front/public/images/large/GalacticraftCore/tile.landingPad/0.png deleted file mode 100644 index 40cab0b9a5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.landingPad/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.landingPad/1.png b/front/public/images/large/GalacticraftCore/tile.landingPad/1.png deleted file mode 100644 index 12997f62f7..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.landingPad/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.landingPadFull/0.png b/front/public/images/large/GalacticraftCore/tile.landingPadFull/0.png deleted file mode 100644 index c3421ccb27..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.landingPadFull/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machine/0.png b/front/public/images/large/GalacticraftCore/tile.machine/0.png deleted file mode 100644 index c468da43c9..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machine/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machine/12.png b/front/public/images/large/GalacticraftCore/tile.machine/12.png deleted file mode 100644 index 068a8fc5eb..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machine/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machine2/0.png b/front/public/images/large/GalacticraftCore/tile.machine2/0.png deleted file mode 100644 index 1281b267ed..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machine2/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machine2/4.png b/front/public/images/large/GalacticraftCore/tile.machine2/4.png deleted file mode 100644 index 581e357ca2..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machine2/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machine2/8.png b/front/public/images/large/GalacticraftCore/tile.machine2/8.png deleted file mode 100644 index a90c9da780..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machine2/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machineTiered/0.png b/front/public/images/large/GalacticraftCore/tile.machineTiered/0.png deleted file mode 100644 index f49662e2f5..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machineTiered/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machineTiered/12.png b/front/public/images/large/GalacticraftCore/tile.machineTiered/12.png deleted file mode 100644 index 7911be4cbb..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machineTiered/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machineTiered/4.png b/front/public/images/large/GalacticraftCore/tile.machineTiered/4.png deleted file mode 100644 index e37c614e50..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machineTiered/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.machineTiered/8.png b/front/public/images/large/GalacticraftCore/tile.machineTiered/8.png deleted file mode 100644 index 6b8643738b..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.machineTiered/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBlock/0.png b/front/public/images/large/GalacticraftCore/tile.moonBlock/0.png deleted file mode 100644 index 19399edbc7..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBlock/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBlock/1.png b/front/public/images/large/GalacticraftCore/tile.moonBlock/1.png deleted file mode 100644 index e7925cbaad..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBlock/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBlock/14.png b/front/public/images/large/GalacticraftCore/tile.moonBlock/14.png deleted file mode 100644 index 923ccbe525..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBlock/14.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBlock/2.png b/front/public/images/large/GalacticraftCore/tile.moonBlock/2.png deleted file mode 100644 index f76a3234c6..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBlock/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBlock/3.png b/front/public/images/large/GalacticraftCore/tile.moonBlock/3.png deleted file mode 100644 index e41f8595a4..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBlock/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBlock/4.png b/front/public/images/large/GalacticraftCore/tile.moonBlock/4.png deleted file mode 100644 index 4596b4a7b4..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBlock/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBlock/5.png b/front/public/images/large/GalacticraftCore/tile.moonBlock/5.png deleted file mode 100644 index f60cc7c622..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBlock/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonBricksStairs/0.png b/front/public/images/large/GalacticraftCore/tile.moonBricksStairs/0.png deleted file mode 100644 index 908abdfa92..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonBricksStairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.moonStoneStairs/0.png b/front/public/images/large/GalacticraftCore/tile.moonStoneStairs/0.png deleted file mode 100644 index 7a436d5ddd..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.moonStoneStairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.oxygenCollector/0.png b/front/public/images/large/GalacticraftCore/tile.oxygenCollector/0.png deleted file mode 100644 index 1245d604b3..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.oxygenCollector/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.oxygenCompressor/0.png b/front/public/images/large/GalacticraftCore/tile.oxygenCompressor/0.png deleted file mode 100644 index 4f5c7a8b3c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.oxygenCompressor/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.oxygenCompressor/4.png b/front/public/images/large/GalacticraftCore/tile.oxygenCompressor/4.png deleted file mode 100644 index 706cf4376c..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.oxygenCompressor/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.oxygenDetector/0.png b/front/public/images/large/GalacticraftCore/tile.oxygenDetector/0.png deleted file mode 100644 index c39d74ca52..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.oxygenDetector/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.oxygenPipe/0.png b/front/public/images/large/GalacticraftCore/tile.oxygenPipe/0.png deleted file mode 100644 index d13906f570..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.oxygenPipe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.parachest/0.png b/front/public/images/large/GalacticraftCore/tile.parachest/0.png deleted file mode 100644 index 5983be9b70..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.parachest/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.refinery/0.png b/front/public/images/large/GalacticraftCore/tile.refinery/0.png deleted file mode 100644 index abd3f5daac..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.refinery/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.rocketWorkbench/0.png b/front/public/images/large/GalacticraftCore/tile.rocketWorkbench/0.png deleted file mode 100644 index 7d153ff381..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.rocketWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.sealer/0.png b/front/public/images/large/GalacticraftCore/tile.sealer/0.png deleted file mode 100644 index 75eac66602..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.sealer/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.solar/0.png b/front/public/images/large/GalacticraftCore/tile.solar/0.png deleted file mode 100644 index 41e1e842f9..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.solar/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.solar/4.png b/front/public/images/large/GalacticraftCore/tile.solar/4.png deleted file mode 100644 index 012bb1e83f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.solar/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.spaceStationBase/0.png b/front/public/images/large/GalacticraftCore/tile.spaceStationBase/0.png deleted file mode 100644 index 53d30eaf3f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.spaceStationBase/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.spinThruster/0.png b/front/public/images/large/GalacticraftCore/tile.spinThruster/0.png deleted file mode 100644 index 9c606f9f3b..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.spinThruster/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.telemetry/0.png b/front/public/images/large/GalacticraftCore/tile.telemetry/0.png deleted file mode 100644 index 48a12beda1..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.telemetry/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.tinStairs1/0.png b/front/public/images/large/GalacticraftCore/tile.tinStairs1/0.png deleted file mode 100644 index c7cc14d530..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.tinStairs1/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.tinStairs2/0.png b/front/public/images/large/GalacticraftCore/tile.tinStairs2/0.png deleted file mode 100644 index b7dff07ca4..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.tinStairs2/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.treasureChest/0.png b/front/public/images/large/GalacticraftCore/tile.treasureChest/0.png deleted file mode 100644 index af472ac245..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.treasureChest/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.unlitTorch/0.png b/front/public/images/large/GalacticraftCore/tile.unlitTorch/0.png deleted file mode 100644 index 7be0191761..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.unlitTorch/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.unlitTorchLit/0.png b/front/public/images/large/GalacticraftCore/tile.unlitTorchLit/0.png deleted file mode 100644 index eba2b10626..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.unlitTorchLit/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.unlitTorchLit_Stone/0.png b/front/public/images/large/GalacticraftCore/tile.unlitTorchLit_Stone/0.png deleted file mode 100644 index b7229a491e..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.unlitTorchLit_Stone/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.unlitTorch_Stone/0.png b/front/public/images/large/GalacticraftCore/tile.unlitTorch_Stone/0.png deleted file mode 100644 index da3c24d2d8..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.unlitTorch_Stone/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.viewScreen/0.png b/front/public/images/large/GalacticraftCore/tile.viewScreen/0.png deleted file mode 100644 index ed43630231..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.viewScreen/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.wallGC/0.png b/front/public/images/large/GalacticraftCore/tile.wallGC/0.png deleted file mode 100644 index 7c3e7d9d5d..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.wallGC/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.wallGC/1.png b/front/public/images/large/GalacticraftCore/tile.wallGC/1.png deleted file mode 100644 index 7bd2ffae22..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.wallGC/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.wallGC/2.png b/front/public/images/large/GalacticraftCore/tile.wallGC/2.png deleted file mode 100644 index 01096efb72..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.wallGC/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.wallGC/3.png b/front/public/images/large/GalacticraftCore/tile.wallGC/3.png deleted file mode 100644 index 5fb326c79f..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.wallGC/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.wallGC/4.png b/front/public/images/large/GalacticraftCore/tile.wallGC/4.png deleted file mode 100644 index 2e7001cf2a..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.wallGC/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftCore/tile.wallGC/5.png b/front/public/images/large/GalacticraftCore/tile.wallGC/5.png deleted file mode 100644 index 5e8d8e95d6..0000000000 Binary files a/front/public/images/large/GalacticraftCore/tile.wallGC/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.atmosphericValve/0.png b/front/public/images/large/GalacticraftMars/item.atmosphericValve/0.png deleted file mode 100644 index b91e394668..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.atmosphericValve/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.bucketSludge/0.png b/front/public/images/large/GalacticraftMars/item.bucketSludge/0.png deleted file mode 100644 index 0b57868baf..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.bucketSludge/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.canisterPartialLN2/1.png b/front/public/images/large/GalacticraftMars/item.canisterPartialLN2/1.png deleted file mode 100644 index c97ff222d8..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.canisterPartialLN2/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.canisterPartialLOX/1.png b/front/public/images/large/GalacticraftMars/item.canisterPartialLOX/1.png deleted file mode 100644 index 42b81061df..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.canisterPartialLOX/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.carbonFragments/0.png b/front/public/images/large/GalacticraftMars/item.carbonFragments/0.png deleted file mode 100644 index cb0e49d72b..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.carbonFragments/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshAxe/0.png b/front/public/images/large/GalacticraftMars/item.deshAxe/0.png deleted file mode 100644 index 47d5f4d087..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshAxe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshBoots/0.png b/front/public/images/large/GalacticraftMars/item.deshBoots/0.png deleted file mode 100644 index d61275ebcd..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshBoots/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshChestplate/0.png b/front/public/images/large/GalacticraftMars/item.deshChestplate/0.png deleted file mode 100644 index 45b00c0e12..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshHelmet/0.png b/front/public/images/large/GalacticraftMars/item.deshHelmet/0.png deleted file mode 100644 index 0ca026c807..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshHoe/0.png b/front/public/images/large/GalacticraftMars/item.deshHoe/0.png deleted file mode 100644 index 0ddfec8a9a..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshHoe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshLeggings/0.png b/front/public/images/large/GalacticraftMars/item.deshLeggings/0.png deleted file mode 100644 index 7a1a370b29..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshPick/0.png b/front/public/images/large/GalacticraftMars/item.deshPick/0.png deleted file mode 100644 index 384b752b90..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshPick/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshPickSlime/0.png b/front/public/images/large/GalacticraftMars/item.deshPickSlime/0.png deleted file mode 100644 index d2eb7ffe83..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshPickSlime/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshSpade/0.png b/front/public/images/large/GalacticraftMars/item.deshSpade/0.png deleted file mode 100644 index ec0dcc3d05..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshSpade/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.deshSword/0.png b/front/public/images/large/GalacticraftMars/item.deshSword/0.png deleted file mode 100644 index 9ecce8fb79..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.deshSword/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.grapple/0.png b/front/public/images/large/GalacticraftMars/item.grapple/0.png deleted file mode 100644 index 2b29acfda5..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.grapple/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.heavyNoseCone/0.png b/front/public/images/large/GalacticraftMars/item.heavyNoseCone/0.png deleted file mode 100644 index b316a4eb78..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.heavyNoseCone/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemAstroMiner/0.png b/front/public/images/large/GalacticraftMars/item.itemAstroMiner/0.png deleted file mode 100644 index 8d6b48c88b..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemAstroMiner/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/0.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/0.png deleted file mode 100644 index 3b11ba1b8f..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/1.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/1.png deleted file mode 100644 index bb46e86151..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/2.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/2.png deleted file mode 100644 index 0b4b526ac2..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/3.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/3.png deleted file mode 100644 index 32822f9c7c..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/4.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/4.png deleted file mode 100644 index c693e12658..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/5.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/5.png deleted file mode 100644 index 7fa72de498..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/6.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/6.png deleted file mode 100644 index e2ef4d09df..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/7.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/7.png deleted file mode 100644 index f83b21b71d..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/8.png b/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/8.png deleted file mode 100644 index 146939715e..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemBasicAsteroids/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/0.png b/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/0.png deleted file mode 100644 index 8fcfb05c1a..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/1.png b/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/1.png deleted file mode 100644 index bcdbdfce21..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/2.png b/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/2.png deleted file mode 100644 index e3a3ae6bf8..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/3.png b/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/3.png deleted file mode 100644 index a1985a82d4..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/4.png b/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/4.png deleted file mode 100644 index 3314d71fbc..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.itemTier3Rocket/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.key/0.png b/front/public/images/large/GalacticraftMars/item.key/0.png deleted file mode 100644 index 0d8196faa6..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.key/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.methaneCanisterPartial/1.png b/front/public/images/large/GalacticraftMars/item.methaneCanisterPartial/1.png deleted file mode 100644 index f10c7e7f94..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.methaneCanisterPartial/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.null/0.png b/front/public/images/large/GalacticraftMars/item.null/0.png deleted file mode 100644 index a9c0fc0151..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.null/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.null/1.png b/front/public/images/large/GalacticraftMars/item.null/1.png deleted file mode 100644 index 89263ef722..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.null/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.null/2.png b/front/public/images/large/GalacticraftMars/item.null/2.png deleted file mode 100644 index 26261b53e1..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.null/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.null/3.png b/front/public/images/large/GalacticraftMars/item.null/3.png deleted file mode 100644 index 0ea0ba56c0..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.null/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.null/4.png b/front/public/images/large/GalacticraftMars/item.null/4.png deleted file mode 100644 index 4a6eb888be..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.null/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.null/5.png b/front/public/images/large/GalacticraftMars/item.null/5.png deleted file mode 100644 index 40fb07c57f..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.null/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.null/6.png b/front/public/images/large/GalacticraftMars/item.null/6.png deleted file mode 100644 index 5fae5263f9..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.null/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.orionDrive/0.png b/front/public/images/large/GalacticraftMars/item.orionDrive/0.png deleted file mode 100644 index ae10b672de..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.orionDrive/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.schematic/0.png b/front/public/images/large/GalacticraftMars/item.schematic/0.png deleted file mode 100644 index 6c285d8893..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.schematic/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.schematic/1.png b/front/public/images/large/GalacticraftMars/item.schematic/1.png deleted file mode 100644 index 961c0d4424..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.schematic/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.schematic/2.png b/front/public/images/large/GalacticraftMars/item.schematic/2.png deleted file mode 100644 index b47039b1fd..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.schematic/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/0.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/0.png deleted file mode 100644 index d3bc9f60d6..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/1.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/1.png deleted file mode 100644 index 120c83b60f..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/11.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/11.png deleted file mode 100644 index cb179fa325..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/11.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/12.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/12.png deleted file mode 100644 index 6a20228065..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/12.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/13.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/13.png deleted file mode 100644 index 7ddb8cebce..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/13.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/14.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/14.png deleted file mode 100644 index 60a044fdfb..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/14.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/2.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/2.png deleted file mode 100644 index 87a9283c88..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/3.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/3.png deleted file mode 100644 index ffdbc7399b..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/4.png b/front/public/images/large/GalacticraftMars/item.spaceshipTier2/4.png deleted file mode 100644 index 254cf7a1c4..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.spaceshipTier2/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.thermalPadding/0.png b/front/public/images/large/GalacticraftMars/item.thermalPadding/0.png deleted file mode 100644 index a94106b5be..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.thermalPadding/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.thermalPadding/1.png b/front/public/images/large/GalacticraftMars/item.thermalPadding/1.png deleted file mode 100644 index ca5631b157..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.thermalPadding/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.thermalPadding/2.png b/front/public/images/large/GalacticraftMars/item.thermalPadding/2.png deleted file mode 100644 index a478ea9361..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.thermalPadding/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.thermalPadding/3.png b/front/public/images/large/GalacticraftMars/item.thermalPadding/3.png deleted file mode 100644 index 14ab288734..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.thermalPadding/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_axe/0.png b/front/public/images/large/GalacticraftMars/item.titanium_axe/0.png deleted file mode 100644 index b6e2ef0ab8..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_axe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_boots/0.png b/front/public/images/large/GalacticraftMars/item.titanium_boots/0.png deleted file mode 100644 index 739155cef7..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_boots/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_chestplate/0.png b/front/public/images/large/GalacticraftMars/item.titanium_chestplate/0.png deleted file mode 100644 index f748fa2f4d..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_chestplate/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_helmet/0.png b/front/public/images/large/GalacticraftMars/item.titanium_helmet/0.png deleted file mode 100644 index 89f85e42db..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_hoe/0.png b/front/public/images/large/GalacticraftMars/item.titanium_hoe/0.png deleted file mode 100644 index 7669df3e7a..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_hoe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_leggings/0.png b/front/public/images/large/GalacticraftMars/item.titanium_leggings/0.png deleted file mode 100644 index 69005d8949..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_leggings/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_pickaxe/0.png b/front/public/images/large/GalacticraftMars/item.titanium_pickaxe/0.png deleted file mode 100644 index 7a7b6d20df..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_shovel/0.png b/front/public/images/large/GalacticraftMars/item.titanium_shovel/0.png deleted file mode 100644 index 33d9eb0d04..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_shovel/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/item.titanium_sword/0.png b/front/public/images/large/GalacticraftMars/item.titanium_sword/0.png deleted file mode 100644 index c1309442bb..0000000000 Binary files a/front/public/images/large/GalacticraftMars/item.titanium_sword/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/0.png b/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/0.png deleted file mode 100644 index c90370ad5f..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/1.png b/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/1.png deleted file mode 100644 index 71e3411dbf..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/2.png b/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/2.png deleted file mode 100644 index 605aebe1ff..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/3.png b/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/3.png deleted file mode 100644 index acb4a74991..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/4.png b/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/4.png deleted file mode 100644 index 7393855825..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/5.png b/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/5.png deleted file mode 100644 index de69e3e767..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.asteroidsBlock/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.beamReceiver/0.png b/front/public/images/large/GalacticraftMars/tile.beamReceiver/0.png deleted file mode 100644 index 35ef310f1e..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.beamReceiver/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.beamReflector/0.png b/front/public/images/large/GalacticraftMars/tile.beamReflector/0.png deleted file mode 100644 index 4697ee5001..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.beamReflector/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.cavernVines/0.png b/front/public/images/large/GalacticraftMars/tile.cavernVines/0.png deleted file mode 100644 index 70094dad7e..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.cavernVines/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.creeperEgg/0.png b/front/public/images/large/GalacticraftMars/tile.creeperEgg/0.png deleted file mode 100644 index aab3c93aea..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.creeperEgg/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.denseIce/0.png b/front/public/images/large/GalacticraftMars/tile.denseIce/0.png deleted file mode 100644 index 53be89d525..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.denseIce/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.hydrogenPipe/0.png b/front/public/images/large/GalacticraftMars/tile.hydrogenPipe/0.png deleted file mode 100644 index 86c265d3cb..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.hydrogenPipe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/0.png b/front/public/images/large/GalacticraftMars/tile.mars/0.png deleted file mode 100644 index eb178b7106..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/1.png b/front/public/images/large/GalacticraftMars/tile.mars/1.png deleted file mode 100644 index 71857f2e35..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/2.png b/front/public/images/large/GalacticraftMars/tile.mars/2.png deleted file mode 100644 index dcae676dfd..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/3.png b/front/public/images/large/GalacticraftMars/tile.mars/3.png deleted file mode 100644 index 3f7666c32a..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/3.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/4.png b/front/public/images/large/GalacticraftMars/tile.mars/4.png deleted file mode 100644 index 94bf18f307..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/5.png b/front/public/images/large/GalacticraftMars/tile.mars/5.png deleted file mode 100644 index 8a0cfa6a96..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/5.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/6.png b/front/public/images/large/GalacticraftMars/tile.mars/6.png deleted file mode 100644 index 3f638f6227..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/6.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/7.png b/front/public/images/large/GalacticraftMars/tile.mars/7.png deleted file mode 100644 index 477eda115a..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/7.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/8.png b/front/public/images/large/GalacticraftMars/tile.mars/8.png deleted file mode 100644 index c95b42eba5..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.mars/9.png b/front/public/images/large/GalacticraftMars/tile.mars/9.png deleted file mode 100644 index 0397e0934b..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.mars/9.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsCobblestoneStairs/0.png b/front/public/images/large/GalacticraftMars/tile.marsCobblestoneStairs/0.png deleted file mode 100644 index ba1d65aec0..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsCobblestoneStairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsDungeonBricksStairs/0.png b/front/public/images/large/GalacticraftMars/tile.marsDungeonBricksStairs/0.png deleted file mode 100644 index 43ffc23195..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsDungeonBricksStairs/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsMachine/0.png b/front/public/images/large/GalacticraftMars/tile.marsMachine/0.png deleted file mode 100644 index 97fb7bb5e0..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsMachine/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsMachine/4.png b/front/public/images/large/GalacticraftMars/tile.marsMachine/4.png deleted file mode 100644 index 753fce4ba2..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsMachine/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsMachine/8.png b/front/public/images/large/GalacticraftMars/tile.marsMachine/8.png deleted file mode 100644 index e23ae8020f..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsMachine/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsMachineT2/0.png b/front/public/images/large/GalacticraftMars/tile.marsMachineT2/0.png deleted file mode 100644 index 1b9e8d4ed8..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsMachineT2/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsMachineT2/4.png b/front/public/images/large/GalacticraftMars/tile.marsMachineT2/4.png deleted file mode 100644 index ebe0c63c13..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsMachineT2/4.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.marsMachineT2/8.png b/front/public/images/large/GalacticraftMars/tile.marsMachineT2/8.png deleted file mode 100644 index 3d33f969e2..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.marsMachineT2/8.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.minerBase/0.png b/front/public/images/large/GalacticraftMars/tile.minerBase/0.png deleted file mode 100644 index deaf483598..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.minerBase/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.minerBaseFull/0.png b/front/public/images/large/GalacticraftMars/tile.minerBaseFull/0.png deleted file mode 100644 index 4c6a142a60..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.minerBaseFull/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.slimelingEgg/0.png b/front/public/images/large/GalacticraftMars/tile.slimelingEgg/0.png deleted file mode 100644 index 26590bf96c..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.slimelingEgg/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.slimelingEgg/1.png b/front/public/images/large/GalacticraftMars/tile.slimelingEgg/1.png deleted file mode 100644 index 2c0a0552b8..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.slimelingEgg/1.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.slimelingEgg/2.png b/front/public/images/large/GalacticraftMars/tile.slimelingEgg/2.png deleted file mode 100644 index 58e28f18e0..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.slimelingEgg/2.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.sludge/0.png b/front/public/images/large/GalacticraftMars/tile.sludge/0.png deleted file mode 100644 index 797e49bcef..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.sludge/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.telepadFake/0.png b/front/public/images/large/GalacticraftMars/tile.telepadFake/0.png deleted file mode 100644 index 067f2a80c6..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.telepadFake/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.telepadShort/0.png b/front/public/images/large/GalacticraftMars/tile.telepadShort/0.png deleted file mode 100644 index b436170b6f..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.telepadShort/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.treasureT2/0.png b/front/public/images/large/GalacticraftMars/tile.treasureT2/0.png deleted file mode 100644 index 6ee9a74df9..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.treasureT2/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.treasureT3/0.png b/front/public/images/large/GalacticraftMars/tile.treasureT3/0.png deleted file mode 100644 index 3bdff217ab..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.treasureT3/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.walkway/0.png b/front/public/images/large/GalacticraftMars/tile.walkway/0.png deleted file mode 100644 index 52d965ad78..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.walkway/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.walkwayOxygenPipe/0.png b/front/public/images/large/GalacticraftMars/tile.walkwayOxygenPipe/0.png deleted file mode 100644 index d31284bce4..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.walkwayOxygenPipe/0.png and /dev/null differ diff --git a/front/public/images/large/GalacticraftMars/tile.walkwayWire/0.png b/front/public/images/large/GalacticraftMars/tile.walkwayWire/0.png deleted file mode 100644 index baf19506cb..0000000000 Binary files a/front/public/images/large/GalacticraftMars/tile.walkwayWire/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/acentauribbgrunt/0.png b/front/public/images/large/GalaxySpace/acentauribbgrunt/0.png deleted file mode 100644 index 8c9a3f1bb3..0000000000 Binary files a/front/public/images/large/GalaxySpace/acentauribbgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/acentauribbsubgrunt/0.png b/front/public/images/large/GalaxySpace/acentauribbsubgrunt/0.png deleted file mode 100644 index 1b123620fe..0000000000 Binary files a/front/public/images/large/GalaxySpace/acentauribbsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/assemblymachine/0.png b/front/public/images/large/GalaxySpace/assemblymachine/0.png deleted file mode 100644 index 030c2257ea..0000000000 Binary files a/front/public/images/large/GalaxySpace/assemblymachine/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCcrystal/0.png b/front/public/images/large/GalaxySpace/barnardaCcrystal/0.png deleted file mode 100644 index a1e7af18e1..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCcrystal/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCdandelion3/0.png b/front/public/images/large/GalaxySpace/barnardaCdandelion3/0.png deleted file mode 100644 index e0fa02a1cc..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCdandelion3/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCdandelions/0.png b/front/public/images/large/GalaxySpace/barnardaCdandelions/0.png deleted file mode 100644 index ace023a95d..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCdandelions/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCdandelions/1.png b/front/public/images/large/GalaxySpace/barnardaCdandelions/1.png deleted file mode 100644 index 0a56480cb8..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCdandelions/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCdirt/0.png b/front/public/images/large/GalaxySpace/barnardaCdirt/0.png deleted file mode 100644 index 9e5a2fa104..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCdirt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCgrass/0.png b/front/public/images/large/GalaxySpace/barnardaCgrass/0.png deleted file mode 100644 index c01a2933a6..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCgrass/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCleaves/0.png b/front/public/images/large/GalaxySpace/barnardaCleaves/0.png deleted file mode 100644 index 9b746178e7..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCleaves/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaClog/0.png b/front/public/images/large/GalaxySpace/barnardaClog/0.png deleted file mode 100644 index 057d8f95f3..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaClog/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCplanks/0.png b/front/public/images/large/GalaxySpace/barnardaCplanks/0.png deleted file mode 100644 index cfa29a3bc0..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCplanks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCreed/0.png b/front/public/images/large/GalaxySpace/barnardaCreed/0.png deleted file mode 100644 index e064d260d7..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCreed/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaCsapling/0.png b/front/public/images/large/GalaxySpace/barnardaCsapling/0.png deleted file mode 100644 index c791e93c0b..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaCsapling/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaEgrunt/0.png b/front/public/images/large/GalaxySpace/barnardaEgrunt/0.png deleted file mode 100644 index 95320777d4..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaEgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaEoregold/0.png b/front/public/images/large/GalaxySpace/barnardaEoregold/0.png deleted file mode 100644 index 2b2daf62d2..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaEoregold/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaEoreiron/0.png b/front/public/images/large/GalaxySpace/barnardaEoreiron/0.png deleted file mode 100644 index 0c617de61b..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaEoreiron/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaEsubgrunt/0.png b/front/public/images/large/GalaxySpace/barnardaEsubgrunt/0.png deleted file mode 100644 index c8e770ee1f..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaEsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaFgrunt/0.png b/front/public/images/large/GalaxySpace/barnardaFgrunt/0.png deleted file mode 100644 index 309d07bdc6..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaFgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/barnardaFsubgrunt/0.png b/front/public/images/large/GalaxySpace/barnardaFsubgrunt/0.png deleted file mode 100644 index 923083d996..0000000000 Binary files a/front/public/images/large/GalaxySpace/barnardaFsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/biofuel/0.png b/front/public/images/large/GalaxySpace/biofuel/0.png deleted file mode 100644 index ab00e1c84f..0000000000 Binary files a/front/public/images/large/GalaxySpace/biofuel/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/callistoblocks/0.png b/front/public/images/large/GalaxySpace/callistoblocks/0.png deleted file mode 100644 index 0fc1ec4483..0000000000 Binary files a/front/public/images/large/GalaxySpace/callistoblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/callistoblocks/1.png b/front/public/images/large/GalaxySpace/callistoblocks/1.png deleted file mode 100644 index d8b951a622..0000000000 Binary files a/front/public/images/large/GalaxySpace/callistoblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresTChestT4/0.png b/front/public/images/large/GalaxySpace/ceresTChestT4/0.png deleted file mode 100644 index 313346fe1b..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresTChestT4/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresblocks/0.png b/front/public/images/large/GalaxySpace/ceresblocks/0.png deleted file mode 100644 index 0dc93738a5..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresblocks/1.png b/front/public/images/large/GalaxySpace/ceresblocks/1.png deleted file mode 100644 index 06d3abf7c9..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresblocks/2.png b/front/public/images/large/GalaxySpace/ceresblocks/2.png deleted file mode 100644 index fa28ed0265..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresblocks/3.png b/front/public/images/large/GalaxySpace/ceresblocks/3.png deleted file mode 100644 index 7f6a659cbb..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresblocks/4.png b/front/public/images/large/GalaxySpace/ceresblocks/4.png deleted file mode 100644 index 5c75b42730..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresblocks/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresblocks/5.png b/front/public/images/large/GalaxySpace/ceresblocks/5.png deleted file mode 100644 index 4832405020..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresblocks/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresglowstone/0.png b/front/public/images/large/GalaxySpace/ceresglowstone/0.png deleted file mode 100644 index 2c2f3ed4c6..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresglowstone/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ceresweb/0.png b/front/public/images/large/GalaxySpace/ceresweb/0.png deleted file mode 100644 index a9a6bd10b8..0000000000 Binary files a/front/public/images/large/GalaxySpace/ceresweb/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/convertersurface/0.png b/front/public/images/large/GalaxySpace/convertersurface/0.png deleted file mode 100644 index bd713b67a1..0000000000 Binary files a/front/public/images/large/GalaxySpace/convertersurface/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/deimosblocks/0.png b/front/public/images/large/GalaxySpace/deimosblocks/0.png deleted file mode 100644 index 5429096764..0000000000 Binary files a/front/public/images/large/GalaxySpace/deimosblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/deimosblocks/1.png b/front/public/images/large/GalaxySpace/deimosblocks/1.png deleted file mode 100644 index 3cf5814a08..0000000000 Binary files a/front/public/images/large/GalaxySpace/deimosblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/deimosblocks/2.png b/front/public/images/large/GalaxySpace/deimosblocks/2.png deleted file mode 100644 index b22e482547..0000000000 Binary files a/front/public/images/large/GalaxySpace/deimosblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/deimosblocks/3.png b/front/public/images/large/GalaxySpace/deimosblocks/3.png deleted file mode 100644 index 7b426f1421..0000000000 Binary files a/front/public/images/large/GalaxySpace/deimosblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/0.png b/front/public/images/large/GalaxySpace/dysonswarmparts/0.png deleted file mode 100644 index 40d41be5d9..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/1.png b/front/public/images/large/GalaxySpace/dysonswarmparts/1.png deleted file mode 100644 index 061012d2bb..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/2.png b/front/public/images/large/GalaxySpace/dysonswarmparts/2.png deleted file mode 100644 index dfe929e541..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/3.png b/front/public/images/large/GalaxySpace/dysonswarmparts/3.png deleted file mode 100644 index 193d930ded..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/4.png b/front/public/images/large/GalaxySpace/dysonswarmparts/4.png deleted file mode 100644 index e51df7f544..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/5.png b/front/public/images/large/GalaxySpace/dysonswarmparts/5.png deleted file mode 100644 index 7a546a5a65..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/6.png b/front/public/images/large/GalaxySpace/dysonswarmparts/6.png deleted file mode 100644 index 83051137f6..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/7.png b/front/public/images/large/GalaxySpace/dysonswarmparts/7.png deleted file mode 100644 index 5ba7bae204..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/7.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/8.png b/front/public/images/large/GalaxySpace/dysonswarmparts/8.png deleted file mode 100644 index e9b849729f..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/8.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/dysonswarmparts/9.png b/front/public/images/large/GalaxySpace/dysonswarmparts/9.png deleted file mode 100644 index 48349c6154..0000000000 Binary files a/front/public/images/large/GalaxySpace/dysonswarmparts/9.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/enceladusTChestT6/0.png b/front/public/images/large/GalaxySpace/enceladusTChestT6/0.png deleted file mode 100644 index dcc3630396..0000000000 Binary files a/front/public/images/large/GalaxySpace/enceladusTChestT6/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/enceladusblocks/0.png b/front/public/images/large/GalaxySpace/enceladusblocks/0.png deleted file mode 100644 index a5481b98dd..0000000000 Binary files a/front/public/images/large/GalaxySpace/enceladusblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/enceladusblocks/1.png b/front/public/images/large/GalaxySpace/enceladusblocks/1.png deleted file mode 100644 index d3c3f86cc0..0000000000 Binary files a/front/public/images/large/GalaxySpace/enceladusblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/enceladusblocks/2.png b/front/public/images/large/GalaxySpace/enceladusblocks/2.png deleted file mode 100644 index df8577c54d..0000000000 Binary files a/front/public/images/large/GalaxySpace/enceladusblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/enceladusblocks/3.png b/front/public/images/large/GalaxySpace/enceladusblocks/3.png deleted file mode 100644 index 1fe996621f..0000000000 Binary files a/front/public/images/large/GalaxySpace/enceladusblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/enceladuscrystal/0.png b/front/public/images/large/GalaxySpace/enceladuscrystal/0.png deleted file mode 100644 index a1e7af18e1..0000000000 Binary files a/front/public/images/large/GalaxySpace/enceladuscrystal/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/enceladusglowstone/0.png b/front/public/images/large/GalaxySpace/enceladusglowstone/0.png deleted file mode 100644 index fb5af96694..0000000000 Binary files a/front/public/images/large/GalaxySpace/enceladusglowstone/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/europageyser/0.png b/front/public/images/large/GalaxySpace/europageyser/0.png deleted file mode 100644 index 85f66de99a..0000000000 Binary files a/front/public/images/large/GalaxySpace/europageyser/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/europagrunt/0.png b/front/public/images/large/GalaxySpace/europagrunt/0.png deleted file mode 100644 index 04ffdcabb5..0000000000 Binary files a/front/public/images/large/GalaxySpace/europagrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/europagrunt/1.png b/front/public/images/large/GalaxySpace/europagrunt/1.png deleted file mode 100644 index 3d158d2e44..0000000000 Binary files a/front/public/images/large/GalaxySpace/europagrunt/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/europaunderwatergeyser/0.png b/front/public/images/large/GalaxySpace/europaunderwatergeyser/0.png deleted file mode 100644 index 83be52c514..0000000000 Binary files a/front/public/images/large/GalaxySpace/europaunderwatergeyser/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/fuelgenerator/0.png b/front/public/images/large/GalaxySpace/fuelgenerator/0.png deleted file mode 100644 index cbabee2650..0000000000 Binary files a/front/public/images/large/GalaxySpace/fuelgenerator/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglass/0.png b/front/public/images/large/GalaxySpace/futureglass/0.png deleted file mode 100644 index 8a745ae791..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglass/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/0.png b/front/public/images/large/GalaxySpace/futureglasses/0.png deleted file mode 100644 index 800e9c1fba..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/1.png b/front/public/images/large/GalaxySpace/futureglasses/1.png deleted file mode 100644 index ca73854c77..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/10.png b/front/public/images/large/GalaxySpace/futureglasses/10.png deleted file mode 100644 index c0b1cd703c..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/10.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/11.png b/front/public/images/large/GalaxySpace/futureglasses/11.png deleted file mode 100644 index 5cd842739c..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/11.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/12.png b/front/public/images/large/GalaxySpace/futureglasses/12.png deleted file mode 100644 index 436188891a..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/12.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/13.png b/front/public/images/large/GalaxySpace/futureglasses/13.png deleted file mode 100644 index 688959ae7f..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/13.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/14.png b/front/public/images/large/GalaxySpace/futureglasses/14.png deleted file mode 100644 index 1be8c4881b..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/14.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/15.png b/front/public/images/large/GalaxySpace/futureglasses/15.png deleted file mode 100644 index c42f674d65..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/15.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/2.png b/front/public/images/large/GalaxySpace/futureglasses/2.png deleted file mode 100644 index c93a3df02e..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/3.png b/front/public/images/large/GalaxySpace/futureglasses/3.png deleted file mode 100644 index 2a011c2306..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/4.png b/front/public/images/large/GalaxySpace/futureglasses/4.png deleted file mode 100644 index e2fcf329a0..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/5.png b/front/public/images/large/GalaxySpace/futureglasses/5.png deleted file mode 100644 index e28a27062e..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/6.png b/front/public/images/large/GalaxySpace/futureglasses/6.png deleted file mode 100644 index 8238ad1054..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/7.png b/front/public/images/large/GalaxySpace/futureglasses/7.png deleted file mode 100644 index 94fdb73d31..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/7.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/8.png b/front/public/images/large/GalaxySpace/futureglasses/8.png deleted file mode 100644 index 25dee56435..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/8.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/futureglasses/9.png b/front/public/images/large/GalaxySpace/futureglasses/9.png deleted file mode 100644 index d51d9befe9..0000000000 Binary files a/front/public/images/large/GalaxySpace/futureglasses/9.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ganymedeblocks/0.png b/front/public/images/large/GalaxySpace/ganymedeblocks/0.png deleted file mode 100644 index b11c97bb24..0000000000 Binary files a/front/public/images/large/GalaxySpace/ganymedeblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ganymedeblocks/1.png b/front/public/images/large/GalaxySpace/ganymedeblocks/1.png deleted file mode 100644 index 40d6f75b90..0000000000 Binary files a/front/public/images/large/GalaxySpace/ganymedeblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ganymedeblocks/2.png b/front/public/images/large/GalaxySpace/ganymedeblocks/2.png deleted file mode 100644 index 4246bfc62e..0000000000 Binary files a/front/public/images/large/GalaxySpace/ganymedeblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ganymedeblocks/3.png b/front/public/images/large/GalaxySpace/ganymedeblocks/3.png deleted file mode 100644 index 41cf5cc040..0000000000 Binary files a/front/public/images/large/GalaxySpace/ganymedeblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/geothermalgenerator/0.png b/front/public/images/large/GalaxySpace/geothermalgenerator/0.png deleted file mode 100644 index 4100c36ba9..0000000000 Binary files a/front/public/images/large/GalaxySpace/geothermalgenerator/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/haumeablocks/0.png b/front/public/images/large/GalaxySpace/haumeablocks/0.png deleted file mode 100644 index 6acbbc1524..0000000000 Binary files a/front/public/images/large/GalaxySpace/haumeablocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioTChestT5/0.png b/front/public/images/large/GalaxySpace/ioTChestT5/0.png deleted file mode 100644 index 598a7ab42c..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioTChestT5/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/0.png b/front/public/images/large/GalaxySpace/ioblocks/0.png deleted file mode 100644 index dfcb566770..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/1.png b/front/public/images/large/GalaxySpace/ioblocks/1.png deleted file mode 100644 index 2cbc906079..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/2.png b/front/public/images/large/GalaxySpace/ioblocks/2.png deleted file mode 100644 index a95d62b51e..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/3.png b/front/public/images/large/GalaxySpace/ioblocks/3.png deleted file mode 100644 index 4b7ecce047..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/4.png b/front/public/images/large/GalaxySpace/ioblocks/4.png deleted file mode 100644 index c44d752c40..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/5.png b/front/public/images/large/GalaxySpace/ioblocks/5.png deleted file mode 100644 index ccfd18c932..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/6.png b/front/public/images/large/GalaxySpace/ioblocks/6.png deleted file mode 100644 index 6ef32a9953..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/7.png b/front/public/images/large/GalaxySpace/ioblocks/7.png deleted file mode 100644 index 6b7848de16..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/7.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioblocks/8.png b/front/public/images/large/GalaxySpace/ioblocks/8.png deleted file mode 100644 index 9f4227c231..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioblocks/8.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/iodualstone/0.png b/front/public/images/large/GalaxySpace/iodualstone/0.png deleted file mode 100644 index 681b4e4cc3..0000000000 Binary files a/front/public/images/large/GalaxySpace/iodualstone/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioglowstone/0.png b/front/public/images/large/GalaxySpace/ioglowstone/0.png deleted file mode 100644 index db4a03abaa..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioglowstone/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/ioweb/0.png b/front/public/images/large/GalaxySpace/ioweb/0.png deleted file mode 100644 index c2d5cd100f..0000000000 Binary files a/front/public/images/large/GalaxySpace/ioweb/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.BarnardaCStrawberry/0.png b/front/public/images/large/GalaxySpace/item.BarnardaCStrawberry/0.png deleted file mode 100644 index abe5c94711..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.BarnardaCStrawberry/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedCoal/0.png b/front/public/images/large/GalaxySpace/item.CompressedCoal/0.png deleted file mode 100644 index 937ffbe524..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedDualAluminium/0.png b/front/public/images/large/GalaxySpace/item.CompressedDualAluminium/0.png deleted file mode 100644 index ce755d3c2d..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedDualAluminium/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedDualBronze/0.png b/front/public/images/large/GalaxySpace/item.CompressedDualBronze/0.png deleted file mode 100644 index 88bd0ab823..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedDualBronze/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/0.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/0.png deleted file mode 100644 index e0a5384565..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/1.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/1.png deleted file mode 100644 index def34eb330..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/2.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/2.png deleted file mode 100644 index 6a59413963..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/3.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/3.png deleted file mode 100644 index cd2f34861c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/4.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/4.png deleted file mode 100644 index 58a2e70c19..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/5.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/5.png deleted file mode 100644 index 122c6a69d7..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/6.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/6.png deleted file mode 100644 index d8e876ef9e..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/7.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/7.png deleted file mode 100644 index 24535d5c9a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/7.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/8.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/8.png deleted file mode 100644 index b9f15d8570..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/8.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedPlates/9.png b/front/public/images/large/GalaxySpace/item.CompressedPlates/9.png deleted file mode 100644 index a463b3c0a8..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedPlates/9.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.CompressedSDHD120/0.png b/front/public/images/large/GalaxySpace/item.CompressedSDHD120/0.png deleted file mode 100644 index 93d5c3c65b..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.CompressedSDHD120/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/0.png b/front/public/images/large/GalaxySpace/item.DysonSwarmParts/0.png deleted file mode 100644 index 6aa1f5c16c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/1.png b/front/public/images/large/GalaxySpace/item.DysonSwarmParts/1.png deleted file mode 100644 index 0bcae3c358..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/2.png b/front/public/images/large/GalaxySpace/item.DysonSwarmParts/2.png deleted file mode 100644 index d1aefc7163..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/3.png b/front/public/images/large/GalaxySpace/item.DysonSwarmParts/3.png deleted file mode 100644 index b8227237f2..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/4.png b/front/public/images/large/GalaxySpace/item.DysonSwarmParts/4.png deleted file mode 100644 index 8ea96a0f76..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/5.png b/front/public/images/large/GalaxySpace/item.DysonSwarmParts/5.png deleted file mode 100644 index 4be2833bf0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.DysonSwarmParts/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/0.png b/front/public/images/large/GalaxySpace/item.GlowstoneDusts/0.png deleted file mode 100644 index 983e94dc14..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/1.png b/front/public/images/large/GalaxySpace/item.GlowstoneDusts/1.png deleted file mode 100644 index 9ea5bff045..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/2.png b/front/public/images/large/GalaxySpace/item.GlowstoneDusts/2.png deleted file mode 100644 index b19a39884c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/3.png b/front/public/images/large/GalaxySpace/item.GlowstoneDusts/3.png deleted file mode 100644 index 4ee8cb95f0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/4.png b/front/public/images/large/GalaxySpace/item.GlowstoneDusts/4.png deleted file mode 100644 index 935b594642..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.GlowstoneDusts/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate4/0.png b/front/public/images/large/GalaxySpace/item.HeavyDutyPlate4/0.png deleted file mode 100644 index 3a8774cd37..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate4/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate5/0.png b/front/public/images/large/GalaxySpace/item.HeavyDutyPlate5/0.png deleted file mode 100644 index ea8cd3528b..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate5/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate6/0.png b/front/public/images/large/GalaxySpace/item.HeavyDutyPlate6/0.png deleted file mode 100644 index 583e84bf41..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate6/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate7/0.png b/front/public/images/large/GalaxySpace/item.HeavyDutyPlate7/0.png deleted file mode 100644 index cbf6ade9f0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate7/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate8/0.png b/front/public/images/large/GalaxySpace/item.HeavyDutyPlate8/0.png deleted file mode 100644 index 2067f45602..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.HeavyDutyPlate8/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Icon/0.png b/front/public/images/large/GalaxySpace/item.Icon/0.png deleted file mode 100644 index 4d8f864705..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Icon/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/0.png b/front/public/images/large/GalaxySpace/item.Ingots/0.png deleted file mode 100644 index 9a43b77666..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/1.png b/front/public/images/large/GalaxySpace/item.Ingots/1.png deleted file mode 100644 index 2afd158d84..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/2.png b/front/public/images/large/GalaxySpace/item.Ingots/2.png deleted file mode 100644 index 65afda9ce6..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/3.png b/front/public/images/large/GalaxySpace/item.Ingots/3.png deleted file mode 100644 index e2998ac773..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/4.png b/front/public/images/large/GalaxySpace/item.Ingots/4.png deleted file mode 100644 index d58c5e8de3..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/5.png b/front/public/images/large/GalaxySpace/item.Ingots/5.png deleted file mode 100644 index fe29b0ce1c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/6.png b/front/public/images/large/GalaxySpace/item.Ingots/6.png deleted file mode 100644 index 9d0aad4d68..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/7.png b/front/public/images/large/GalaxySpace/item.Ingots/7.png deleted file mode 100644 index 45432b9030..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/7.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/8.png b/front/public/images/large/GalaxySpace/item.Ingots/8.png deleted file mode 100644 index 812df6aedf..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/8.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Ingots/9.png b/front/public/images/large/GalaxySpace/item.Ingots/9.png deleted file mode 100644 index 4520801719..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Ingots/9.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ItemBioFuelCanister/1.png b/front/public/images/large/GalaxySpace/item.ItemBioFuelCanister/1.png deleted file mode 100644 index c8464918d8..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ItemBioFuelCanister/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.JetPack/0.png b/front/public/images/large/GalaxySpace/item.JetPack/0.png deleted file mode 100644 index 0d66954110..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.JetPack/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.JetPack/100.png b/front/public/images/large/GalaxySpace/item.JetPack/100.png deleted file mode 100644 index 0d66954110..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.JetPack/100.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.LeadBattery/0.png b/front/public/images/large/GalaxySpace/item.LeadBattery/0.png deleted file mode 100644 index 8954de2935..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.LeadBattery/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.LeadBattery/100.png b/front/public/images/large/GalaxySpace/item.LeadBattery/100.png deleted file mode 100644 index 8954de2935..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.LeadBattery/100.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.MethaneBucket/0.png b/front/public/images/large/GalaxySpace/item.MethaneBucket/0.png deleted file mode 100644 index f85582c01c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.MethaneBucket/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ModuleLander/0.png b/front/public/images/large/GalaxySpace/item.ModuleLander/0.png deleted file mode 100644 index 4ff44d835b..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ModuleLander/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ModuleLander2/0.png b/front/public/images/large/GalaxySpace/item.ModuleLander2/0.png deleted file mode 100644 index d32f5b308b..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ModuleLander2/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ModuleLander3/0.png b/front/public/images/large/GalaxySpace/item.ModuleLander3/0.png deleted file mode 100644 index ed21d180fa..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ModuleLander3/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ModuleSmallCanister/0.png b/front/public/images/large/GalaxySpace/item.ModuleSmallCanister/0.png deleted file mode 100644 index 2463c18b54..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ModuleSmallCanister/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ModuleSmallFuelCanister/0.png b/front/public/images/large/GalaxySpace/item.ModuleSmallFuelCanister/0.png deleted file mode 100644 index 719f52404b..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ModuleSmallFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.QuantBow/0.png b/front/public/images/large/GalaxySpace/item.QuantBow/0.png deleted file mode 100644 index d86a1902c9..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.QuantBow/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RobotArm/0.png b/front/public/images/large/GalaxySpace/item.RobotArm/0.png deleted file mode 100644 index 28f715dc82..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RobotArm/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/1.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/1.png deleted file mode 100644 index 346505c796..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/100.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/100.png deleted file mode 100644 index f983829f55..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/100.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/101.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/101.png deleted file mode 100644 index 069d0d6de0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/101.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/102.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/102.png deleted file mode 100644 index 9e8bd515e6..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/102.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/2.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/2.png deleted file mode 100644 index 12f498e99a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/3.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/3.png deleted file mode 100644 index efaaf6cc72..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/4.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/4.png deleted file mode 100644 index 7749fd06cd..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/5.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/5.png deleted file mode 100644 index 3937c3062d..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/6.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/6.png deleted file mode 100644 index 7003052216..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/7.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/7.png deleted file mode 100644 index 5a5d7f164a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/7.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketControlComputer/8.png b/front/public/images/large/GalaxySpace/item.RocketControlComputer/8.png deleted file mode 100644 index 36aadb67ab..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketControlComputer/8.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketParts/0.png b/front/public/images/large/GalaxySpace/item.RocketParts/0.png deleted file mode 100644 index 10020bce53..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketParts/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketParts/1.png b/front/public/images/large/GalaxySpace/item.RocketParts/1.png deleted file mode 100644 index f50aac4123..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketParts/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketParts/2.png b/front/public/images/large/GalaxySpace/item.RocketParts/2.png deleted file mode 100644 index 52122b54e5..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketParts/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.RocketParts/3.png b/front/public/images/large/GalaxySpace/item.RocketParts/3.png deleted file mode 100644 index 13412c67c0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.RocketParts/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.SchematicTier4/0.png b/front/public/images/large/GalaxySpace/item.SchematicTier4/0.png deleted file mode 100644 index 0040074d49..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.SchematicTier4/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.SchematicTier5/0.png b/front/public/images/large/GalaxySpace/item.SchematicTier5/0.png deleted file mode 100644 index e5327c4748..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.SchematicTier5/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.SchematicTier6/0.png b/front/public/images/large/GalaxySpace/item.SchematicTier6/0.png deleted file mode 100644 index a6ff55310a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.SchematicTier6/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.SchematicTier7/0.png b/front/public/images/large/GalaxySpace/item.SchematicTier7/0.png deleted file mode 100644 index 62ba9ed285..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.SchematicTier7/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.SchematicTier8/0.png b/front/public/images/large/GalaxySpace/item.SchematicTier8/0.png deleted file mode 100644 index d3385eda92..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.SchematicTier8/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.SolarFlares/0.png b/front/public/images/large/GalaxySpace/item.SolarFlares/0.png deleted file mode 100644 index 6657cc077a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.SolarFlares/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.SolarFlares/1.png b/front/public/images/large/GalaxySpace/item.SolarFlares/1.png deleted file mode 100644 index da53bcf1b0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.SolarFlares/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Sulfur/0.png b/front/public/images/large/GalaxySpace/item.Sulfur/0.png deleted file mode 100644 index 66460cc555..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Sulfur/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ThermalClothT2/0.png b/front/public/images/large/GalaxySpace/item.ThermalClothT2/0.png deleted file mode 100644 index e325e11f8d..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ThermalClothT2/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/0.png b/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/0.png deleted file mode 100644 index 9ec5b39f67..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/1.png b/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/1.png deleted file mode 100644 index dd90d11a92..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/2.png b/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/2.png deleted file mode 100644 index e964d3bc79..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/3.png b/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/3.png deleted file mode 100644 index ba27df9758..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.ThermalPaddingT2/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier4Key/0.png b/front/public/images/large/GalaxySpace/item.Tier4Key/0.png deleted file mode 100644 index 4dc303d8f5..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier4Key/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier4Rocket/0.png b/front/public/images/large/GalaxySpace/item.Tier4Rocket/0.png deleted file mode 100644 index 51575b5834..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier4Rocket/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier4Rocket/1.png b/front/public/images/large/GalaxySpace/item.Tier4Rocket/1.png deleted file mode 100644 index a1b23b1ad4..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier4Rocket/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier4Rocket/2.png b/front/public/images/large/GalaxySpace/item.Tier4Rocket/2.png deleted file mode 100644 index f22533899a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier4Rocket/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier4Rocket/3.png b/front/public/images/large/GalaxySpace/item.Tier4Rocket/3.png deleted file mode 100644 index 33ad4627e8..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier4Rocket/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier4Rocket/4.png b/front/public/images/large/GalaxySpace/item.Tier4Rocket/4.png deleted file mode 100644 index be646f6cb7..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier4Rocket/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier5Key/0.png b/front/public/images/large/GalaxySpace/item.Tier5Key/0.png deleted file mode 100644 index 50684cd7b0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier5Key/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier5Rocket/0.png b/front/public/images/large/GalaxySpace/item.Tier5Rocket/0.png deleted file mode 100644 index 78f37db462..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier5Rocket/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier5Rocket/1.png b/front/public/images/large/GalaxySpace/item.Tier5Rocket/1.png deleted file mode 100644 index 3b037b6ad8..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier5Rocket/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier5Rocket/2.png b/front/public/images/large/GalaxySpace/item.Tier5Rocket/2.png deleted file mode 100644 index d7f508a602..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier5Rocket/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier5Rocket/3.png b/front/public/images/large/GalaxySpace/item.Tier5Rocket/3.png deleted file mode 100644 index 288eb05657..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier5Rocket/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier5Rocket/4.png b/front/public/images/large/GalaxySpace/item.Tier5Rocket/4.png deleted file mode 100644 index 81ef33486c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier5Rocket/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier6Key/0.png b/front/public/images/large/GalaxySpace/item.Tier6Key/0.png deleted file mode 100644 index c0a38ff792..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier6Key/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier6Rocket/0.png b/front/public/images/large/GalaxySpace/item.Tier6Rocket/0.png deleted file mode 100644 index b22b56d35d..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier6Rocket/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier6Rocket/1.png b/front/public/images/large/GalaxySpace/item.Tier6Rocket/1.png deleted file mode 100644 index 204304c6a0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier6Rocket/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier6Rocket/2.png b/front/public/images/large/GalaxySpace/item.Tier6Rocket/2.png deleted file mode 100644 index 94efebf85d..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier6Rocket/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier6Rocket/3.png b/front/public/images/large/GalaxySpace/item.Tier6Rocket/3.png deleted file mode 100644 index 6501444883..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier6Rocket/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier6Rocket/4.png b/front/public/images/large/GalaxySpace/item.Tier6Rocket/4.png deleted file mode 100644 index f575ac0d3f..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier6Rocket/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier7Key/0.png b/front/public/images/large/GalaxySpace/item.Tier7Key/0.png deleted file mode 100644 index 5da20f4fb7..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier7Key/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier7Rocket/0.png b/front/public/images/large/GalaxySpace/item.Tier7Rocket/0.png deleted file mode 100644 index acfe251ed0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier7Rocket/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier7Rocket/1.png b/front/public/images/large/GalaxySpace/item.Tier7Rocket/1.png deleted file mode 100644 index 098bef3438..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier7Rocket/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier7Rocket/2.png b/front/public/images/large/GalaxySpace/item.Tier7Rocket/2.png deleted file mode 100644 index 8ec7d1cef7..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier7Rocket/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier7Rocket/3.png b/front/public/images/large/GalaxySpace/item.Tier7Rocket/3.png deleted file mode 100644 index 921ebd99da..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier7Rocket/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier7Rocket/4.png b/front/public/images/large/GalaxySpace/item.Tier7Rocket/4.png deleted file mode 100644 index ad3b692a6e..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier7Rocket/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier8Key/0.png b/front/public/images/large/GalaxySpace/item.Tier8Key/0.png deleted file mode 100644 index f6808174b2..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier8Key/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier8Rocket/0.png b/front/public/images/large/GalaxySpace/item.Tier8Rocket/0.png deleted file mode 100644 index 8ed4475f3c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier8Rocket/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier8Rocket/1.png b/front/public/images/large/GalaxySpace/item.Tier8Rocket/1.png deleted file mode 100644 index 056511db3a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier8Rocket/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier8Rocket/2.png b/front/public/images/large/GalaxySpace/item.Tier8Rocket/2.png deleted file mode 100644 index 3cc24a1a17..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier8Rocket/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier8Rocket/3.png b/front/public/images/large/GalaxySpace/item.Tier8Rocket/3.png deleted file mode 100644 index e3a008403a..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier8Rocket/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.Tier8Rocket/4.png b/front/public/images/large/GalaxySpace/item.Tier8Rocket/4.png deleted file mode 100644 index e10de2f383..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.Tier8Rocket/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.UnknowCrystal/0.png b/front/public/images/large/GalaxySpace/item.UnknowCrystal/0.png deleted file mode 100644 index b64209224c..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.UnknowCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.UnknowWaterBucket/0.png b/front/public/images/large/GalaxySpace/item.UnknowWaterBucket/0.png deleted file mode 100644 index cbc4669bfe..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.UnknowWaterBucket/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.cobaltum_boots/0.png b/front/public/images/large/GalaxySpace/item.cobaltum_boots/0.png deleted file mode 100644 index 72480052d4..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.cobaltum_boots/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.cobaltum_helmet/0.png b/front/public/images/large/GalaxySpace/item.cobaltum_helmet/0.png deleted file mode 100644 index c479e06d00..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.cobaltum_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.cobaltum_leg/0.png b/front/public/images/large/GalaxySpace/item.cobaltum_leg/0.png deleted file mode 100644 index 4d6338af48..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.cobaltum_leg/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.cobaltum_plate/0.png b/front/public/images/large/GalaxySpace/item.cobaltum_plate/0.png deleted file mode 100644 index 72a5e1dcbb..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.cobaltum_plate/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.lead_boots/0.png b/front/public/images/large/GalaxySpace/item.lead_boots/0.png deleted file mode 100644 index 12a31d0707..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.lead_boots/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.lead_helmet/0.png b/front/public/images/large/GalaxySpace/item.lead_helmet/0.png deleted file mode 100644 index 462ce05fe7..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.lead_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.lead_leg/0.png b/front/public/images/large/GalaxySpace/item.lead_leg/0.png deleted file mode 100644 index a39ad88eff..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.lead_leg/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.lead_plate/0.png b/front/public/images/large/GalaxySpace/item.lead_plate/0.png deleted file mode 100644 index fd9a0a32a1..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.lead_plate/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.plasmaaxe/0.png b/front/public/images/large/GalaxySpace/item.plasmaaxe/0.png deleted file mode 100644 index 2c22cd9018..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.plasmaaxe/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.plasmahoe/0.png b/front/public/images/large/GalaxySpace/item.plasmahoe/0.png deleted file mode 100644 index fca67157dc..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.plasmahoe/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.plasmapickaxe/0.png b/front/public/images/large/GalaxySpace/item.plasmapickaxe/0.png deleted file mode 100644 index e18ffd67ba..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.plasmapickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.plasmashovel/0.png b/front/public/images/large/GalaxySpace/item.plasmashovel/0.png deleted file mode 100644 index f476b65b8e..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.plasmashovel/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.plasmasword/0.png b/front/public/images/large/GalaxySpace/item.plasmasword/0.png deleted file mode 100644 index 5182cc21a5..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.plasmasword/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.spacesuit_boots/0.png b/front/public/images/large/GalaxySpace/item.spacesuit_boots/0.png deleted file mode 100644 index 33bdebd2b0..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.spacesuit_boots/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.spacesuit_gravityboots/0.png b/front/public/images/large/GalaxySpace/item.spacesuit_gravityboots/0.png deleted file mode 100644 index 6b55289ecb..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.spacesuit_gravityboots/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.spacesuit_helmet/0.png b/front/public/images/large/GalaxySpace/item.spacesuit_helmet/0.png deleted file mode 100644 index 3ab3dbb8f4..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.spacesuit_helmet/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.spacesuit_helmetglasses/0.png b/front/public/images/large/GalaxySpace/item.spacesuit_helmetglasses/0.png deleted file mode 100644 index 44f53c432d..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.spacesuit_helmetglasses/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.spacesuit_jetplate/0.png b/front/public/images/large/GalaxySpace/item.spacesuit_jetplate/0.png deleted file mode 100644 index 5a1791473b..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.spacesuit_jetplate/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.spacesuit_leg/0.png b/front/public/images/large/GalaxySpace/item.spacesuit_leg/0.png deleted file mode 100644 index a46896618b..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.spacesuit_leg/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/item.spacesuit_plate/0.png b/front/public/images/large/GalaxySpace/item.spacesuit_plate/0.png deleted file mode 100644 index a2dab68f56..0000000000 Binary files a/front/public/images/large/GalaxySpace/item.spacesuit_plate/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/leadore/0.png b/front/public/images/large/GalaxySpace/leadore/0.png deleted file mode 100644 index 69ef8ff22f..0000000000 Binary files a/front/public/images/large/GalaxySpace/leadore/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/liquidmethane/0.png b/front/public/images/large/GalaxySpace/liquidmethane/0.png deleted file mode 100644 index ab00e1c84f..0000000000 Binary files a/front/public/images/large/GalaxySpace/liquidmethane/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/machineframes/0.png b/front/public/images/large/GalaxySpace/machineframes/0.png deleted file mode 100644 index 9e7862028d..0000000000 Binary files a/front/public/images/large/GalaxySpace/machineframes/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/makemakegrunt/0.png b/front/public/images/large/GalaxySpace/makemakegrunt/0.png deleted file mode 100644 index b0b52d4bd9..0000000000 Binary files a/front/public/images/large/GalaxySpace/makemakegrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/makemakegrunt/1.png b/front/public/images/large/GalaxySpace/makemakegrunt/1.png deleted file mode 100644 index 8dcfe2b7d9..0000000000 Binary files a/front/public/images/large/GalaxySpace/makemakegrunt/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mercuryblocks/0.png b/front/public/images/large/GalaxySpace/mercuryblocks/0.png deleted file mode 100644 index 635c069622..0000000000 Binary files a/front/public/images/large/GalaxySpace/mercuryblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mercuryblocks/1.png b/front/public/images/large/GalaxySpace/mercuryblocks/1.png deleted file mode 100644 index ac11f469c1..0000000000 Binary files a/front/public/images/large/GalaxySpace/mercuryblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mercuryblocks/2.png b/front/public/images/large/GalaxySpace/mercuryblocks/2.png deleted file mode 100644 index cb82ba24d3..0000000000 Binary files a/front/public/images/large/GalaxySpace/mercuryblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mercuryblocks/3.png b/front/public/images/large/GalaxySpace/mercuryblocks/3.png deleted file mode 100644 index 5a3e36ba67..0000000000 Binary files a/front/public/images/large/GalaxySpace/mercuryblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mercuryblocks/4.png b/front/public/images/large/GalaxySpace/mercuryblocks/4.png deleted file mode 100644 index 471ff9c58f..0000000000 Binary files a/front/public/images/large/GalaxySpace/mercuryblocks/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mercuryblocks/5.png b/front/public/images/large/GalaxySpace/mercuryblocks/5.png deleted file mode 100644 index 7cd5e9742b..0000000000 Binary files a/front/public/images/large/GalaxySpace/mercuryblocks/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/0.png b/front/public/images/large/GalaxySpace/metalsblock/0.png deleted file mode 100644 index de65210d50..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/1.png b/front/public/images/large/GalaxySpace/metalsblock/1.png deleted file mode 100644 index 4e596f5ea4..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/2.png b/front/public/images/large/GalaxySpace/metalsblock/2.png deleted file mode 100644 index bccaa61e7a..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/3.png b/front/public/images/large/GalaxySpace/metalsblock/3.png deleted file mode 100644 index cd3858b8f0..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/4.png b/front/public/images/large/GalaxySpace/metalsblock/4.png deleted file mode 100644 index 27eed31b72..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/5.png b/front/public/images/large/GalaxySpace/metalsblock/5.png deleted file mode 100644 index 2550185a5c..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/6.png b/front/public/images/large/GalaxySpace/metalsblock/6.png deleted file mode 100644 index 4748765147..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/7.png b/front/public/images/large/GalaxySpace/metalsblock/7.png deleted file mode 100644 index 45dfe52c54..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/7.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/8.png b/front/public/images/large/GalaxySpace/metalsblock/8.png deleted file mode 100644 index 31662ab92b..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/8.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/metalsblock/9.png b/front/public/images/large/GalaxySpace/metalsblock/9.png deleted file mode 100644 index 397c99d4d0..0000000000 Binary files a/front/public/images/large/GalaxySpace/metalsblock/9.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mirandablocks/0.png b/front/public/images/large/GalaxySpace/mirandablocks/0.png deleted file mode 100644 index 0ee8b69de7..0000000000 Binary files a/front/public/images/large/GalaxySpace/mirandablocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mirandablocks/1.png b/front/public/images/large/GalaxySpace/mirandablocks/1.png deleted file mode 100644 index 0323cad3f8..0000000000 Binary files a/front/public/images/large/GalaxySpace/mirandablocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mirandablocks/2.png b/front/public/images/large/GalaxySpace/mirandablocks/2.png deleted file mode 100644 index e44eda01e3..0000000000 Binary files a/front/public/images/large/GalaxySpace/mirandablocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/mirandablocks/3.png b/front/public/images/large/GalaxySpace/mirandablocks/3.png deleted file mode 100644 index 0bec8b0083..0000000000 Binary files a/front/public/images/large/GalaxySpace/mirandablocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/oberonblocks/0.png b/front/public/images/large/GalaxySpace/oberonblocks/0.png deleted file mode 100644 index 96b16fb405..0000000000 Binary files a/front/public/images/large/GalaxySpace/oberonblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/oberonblocks/1.png b/front/public/images/large/GalaxySpace/oberonblocks/1.png deleted file mode 100644 index 99bad61ab5..0000000000 Binary files a/front/public/images/large/GalaxySpace/oberonblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/oberonblocks/2.png b/front/public/images/large/GalaxySpace/oberonblocks/2.png deleted file mode 100644 index e1c10eb251..0000000000 Binary files a/front/public/images/large/GalaxySpace/oberonblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/oberonblocks/3.png b/front/public/images/large/GalaxySpace/oberonblocks/3.png deleted file mode 100644 index cbecba6651..0000000000 Binary files a/front/public/images/large/GalaxySpace/oberonblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/oxstoragemoduleT2/0.png b/front/public/images/large/GalaxySpace/oxstoragemoduleT2/0.png deleted file mode 100644 index d421b8c190..0000000000 Binary files a/front/public/images/large/GalaxySpace/oxstoragemoduleT2/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/phobosblocks/0.png b/front/public/images/large/GalaxySpace/phobosblocks/0.png deleted file mode 100644 index f205fe8577..0000000000 Binary files a/front/public/images/large/GalaxySpace/phobosblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/phobosblocks/1.png b/front/public/images/large/GalaxySpace/phobosblocks/1.png deleted file mode 100644 index c4c8545552..0000000000 Binary files a/front/public/images/large/GalaxySpace/phobosblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/phobosblocks/2.png b/front/public/images/large/GalaxySpace/phobosblocks/2.png deleted file mode 100644 index cdd8d7ddea..0000000000 Binary files a/front/public/images/large/GalaxySpace/phobosblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/phobosblocks/3.png b/front/public/images/large/GalaxySpace/phobosblocks/3.png deleted file mode 100644 index a02f5bc521..0000000000 Binary files a/front/public/images/large/GalaxySpace/phobosblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/phobosblocks/4.png b/front/public/images/large/GalaxySpace/phobosblocks/4.png deleted file mode 100644 index 1c329248ea..0000000000 Binary files a/front/public/images/large/GalaxySpace/phobosblocks/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoTChestT8/0.png b/front/public/images/large/GalaxySpace/plutoTChestT8/0.png deleted file mode 100644 index 7ed6c37be7..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoTChestT8/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoblocks/0.png b/front/public/images/large/GalaxySpace/plutoblocks/0.png deleted file mode 100644 index c183047145..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoblocks/1.png b/front/public/images/large/GalaxySpace/plutoblocks/1.png deleted file mode 100644 index b47984affd..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoblocks/2.png b/front/public/images/large/GalaxySpace/plutoblocks/2.png deleted file mode 100644 index 15dd4eb392..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoblocks/3.png b/front/public/images/large/GalaxySpace/plutoblocks/3.png deleted file mode 100644 index 521e0c2a74..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoblocks/4.png b/front/public/images/large/GalaxySpace/plutoblocks/4.png deleted file mode 100644 index 7394e8e08a..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoblocks/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoblocks/5.png b/front/public/images/large/GalaxySpace/plutoblocks/5.png deleted file mode 100644 index 0382ee8327..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoblocks/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoblocks/6.png b/front/public/images/large/GalaxySpace/plutoblocks/6.png deleted file mode 100644 index e669ba95a2..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoblocks/6.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/plutoglowstone/0.png b/front/public/images/large/GalaxySpace/plutoglowstone/0.png deleted file mode 100644 index e8c1b08b55..0000000000 Binary files a/front/public/images/large/GalaxySpace/plutoglowstone/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusTChestT7/0.png b/front/public/images/large/GalaxySpace/proteusTChestT7/0.png deleted file mode 100644 index b7c7b35bfe..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusTChestT7/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusblocks/0.png b/front/public/images/large/GalaxySpace/proteusblocks/0.png deleted file mode 100644 index 6f6504ba5b..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusblocks/1.png b/front/public/images/large/GalaxySpace/proteusblocks/1.png deleted file mode 100644 index 8bb1a3e5e5..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusblocks/2.png b/front/public/images/large/GalaxySpace/proteusblocks/2.png deleted file mode 100644 index e7992242f2..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusblocks/3.png b/front/public/images/large/GalaxySpace/proteusblocks/3.png deleted file mode 100644 index 782fc12285..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusblocks/4.png b/front/public/images/large/GalaxySpace/proteusblocks/4.png deleted file mode 100644 index 98c879319a..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusblocks/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusblocks/5.png b/front/public/images/large/GalaxySpace/proteusblocks/5.png deleted file mode 100644 index d050d64522..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusblocks/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/proteusglowstone/0.png b/front/public/images/large/GalaxySpace/proteusglowstone/0.png deleted file mode 100644 index 3dc18b0478..0000000000 Binary files a/front/public/images/large/GalaxySpace/proteusglowstone/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/solarPanel/0.png b/front/public/images/large/GalaxySpace/solarPanel/0.png deleted file mode 100644 index a0d3e5b681..0000000000 Binary files a/front/public/images/large/GalaxySpace/solarPanel/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/solarwindpanel/0.png b/front/public/images/large/GalaxySpace/solarwindpanel/0.png deleted file mode 100644 index 416875495d..0000000000 Binary files a/front/public/images/large/GalaxySpace/solarwindpanel/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/storagemoduleT3/0.png b/front/public/images/large/GalaxySpace/storagemoduleT3/0.png deleted file mode 100644 index 5d508b8017..0000000000 Binary files a/front/public/images/large/GalaxySpace/storagemoduleT3/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tcetieblocks/0.png b/front/public/images/large/GalaxySpace/tcetieblocks/0.png deleted file mode 100644 index c30c19963e..0000000000 Binary files a/front/public/images/large/GalaxySpace/tcetieblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tcetieblocks/1.png b/front/public/images/large/GalaxySpace/tcetieblocks/1.png deleted file mode 100644 index 7e7dce8a70..0000000000 Binary files a/front/public/images/large/GalaxySpace/tcetieblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tcetieblocks/2.png b/front/public/images/large/GalaxySpace/tcetieblocks/2.png deleted file mode 100644 index 515de1ca14..0000000000 Binary files a/front/public/images/large/GalaxySpace/tcetieblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tcetiedandelions/0.png b/front/public/images/large/GalaxySpace/tcetiedandelions/0.png deleted file mode 100644 index 0f21b789dd..0000000000 Binary files a/front/public/images/large/GalaxySpace/tcetiedandelions/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tcetiedandelions/3.png b/front/public/images/large/GalaxySpace/tcetiedandelions/3.png deleted file mode 100644 index edd66f59f2..0000000000 Binary files a/front/public/images/large/GalaxySpace/tcetiedandelions/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tcetiedandelions/4.png b/front/public/images/large/GalaxySpace/tcetiedandelions/4.png deleted file mode 100644 index 4d137f24b2..0000000000 Binary files a/front/public/images/large/GalaxySpace/tcetiedandelions/4.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tcetiedandelions/5.png b/front/public/images/large/GalaxySpace/tcetiedandelions/5.png deleted file mode 100644 index 69decfa7fb..0000000000 Binary files a/front/public/images/large/GalaxySpace/tcetiedandelions/5.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/titanblocks/0.png b/front/public/images/large/GalaxySpace/titanblocks/0.png deleted file mode 100644 index 38e0a98235..0000000000 Binary files a/front/public/images/large/GalaxySpace/titanblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/titanblocks/1.png b/front/public/images/large/GalaxySpace/titanblocks/1.png deleted file mode 100644 index 42d14ba31f..0000000000 Binary files a/front/public/images/large/GalaxySpace/titanblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/titanblocks/2.png b/front/public/images/large/GalaxySpace/titanblocks/2.png deleted file mode 100644 index f1a79f53b0..0000000000 Binary files a/front/public/images/large/GalaxySpace/titanblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tritonblocks/0.png b/front/public/images/large/GalaxySpace/tritonblocks/0.png deleted file mode 100644 index 1b431e3770..0000000000 Binary files a/front/public/images/large/GalaxySpace/tritonblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tritonblocks/1.png b/front/public/images/large/GalaxySpace/tritonblocks/1.png deleted file mode 100644 index 065659a875..0000000000 Binary files a/front/public/images/large/GalaxySpace/tritonblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tritonblocks/2.png b/front/public/images/large/GalaxySpace/tritonblocks/2.png deleted file mode 100644 index d12021f3bd..0000000000 Binary files a/front/public/images/large/GalaxySpace/tritonblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/tritonblocks/3.png b/front/public/images/large/GalaxySpace/tritonblocks/3.png deleted file mode 100644 index 9fd5e5bf22..0000000000 Binary files a/front/public/images/large/GalaxySpace/tritonblocks/3.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/unknowwater/0.png b/front/public/images/large/GalaxySpace/unknowwater/0.png deleted file mode 100644 index 506ee38af6..0000000000 Binary files a/front/public/images/large/GalaxySpace/unknowwater/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/vegabgrunt/0.png b/front/public/images/large/GalaxySpace/vegabgrunt/0.png deleted file mode 100644 index a655212789..0000000000 Binary files a/front/public/images/large/GalaxySpace/vegabgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/vegabsubgrunt/0.png b/front/public/images/large/GalaxySpace/vegabsubgrunt/0.png deleted file mode 100644 index 9a799c6273..0000000000 Binary files a/front/public/images/large/GalaxySpace/vegabsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/venusblocks/0.png b/front/public/images/large/GalaxySpace/venusblocks/0.png deleted file mode 100644 index 49977fbc94..0000000000 Binary files a/front/public/images/large/GalaxySpace/venusblocks/0.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/venusblocks/1.png b/front/public/images/large/GalaxySpace/venusblocks/1.png deleted file mode 100644 index 51354ab49f..0000000000 Binary files a/front/public/images/large/GalaxySpace/venusblocks/1.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/venusblocks/2.png b/front/public/images/large/GalaxySpace/venusblocks/2.png deleted file mode 100644 index 4f11f6d64e..0000000000 Binary files a/front/public/images/large/GalaxySpace/venusblocks/2.png and /dev/null differ diff --git a/front/public/images/large/GalaxySpace/venusblocks/3.png b/front/public/images/large/GalaxySpace/venusblocks/3.png deleted file mode 100644 index 3c77476cd9..0000000000 Binary files a/front/public/images/large/GalaxySpace/venusblocks/3.png and /dev/null differ diff --git a/front/public/images/large/Genetics/advMachine/0.png b/front/public/images/large/Genetics/advMachine/0.png deleted file mode 100644 index a0289b12bf..0000000000 Binary files a/front/public/images/large/Genetics/advMachine/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/analyst/0.png b/front/public/images/large/Genetics/analyst/0.png deleted file mode 100644 index 81cbc07462..0000000000 Binary files a/front/public/images/large/Genetics/analyst/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/database/0.png b/front/public/images/large/Genetics/database/0.png deleted file mode 100644 index f8d28172e8..0000000000 Binary files a/front/public/images/large/Genetics/database/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/database/1.png b/front/public/images/large/Genetics/database/1.png deleted file mode 100644 index 8bd80fb17d..0000000000 Binary files a/front/public/images/large/Genetics/database/1.png and /dev/null differ diff --git a/front/public/images/large/Genetics/labMachine/0.png b/front/public/images/large/Genetics/labMachine/0.png deleted file mode 100644 index f1177a107c..0000000000 Binary files a/front/public/images/large/Genetics/labMachine/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/labMachine/1.png b/front/public/images/large/Genetics/labMachine/1.png deleted file mode 100644 index 8430e85082..0000000000 Binary files a/front/public/images/large/Genetics/labMachine/1.png and /dev/null differ diff --git a/front/public/images/large/Genetics/labMachine/2.png b/front/public/images/large/Genetics/labMachine/2.png deleted file mode 100644 index 6e173598ed..0000000000 Binary files a/front/public/images/large/Genetics/labMachine/2.png and /dev/null differ diff --git a/front/public/images/large/Genetics/labMachine/3.png b/front/public/images/large/Genetics/labMachine/3.png deleted file mode 100644 index 8da23248d3..0000000000 Binary files a/front/public/images/large/Genetics/labMachine/3.png and /dev/null differ diff --git a/front/public/images/large/Genetics/labMachine/4.png b/front/public/images/large/Genetics/labMachine/4.png deleted file mode 100644 index b86b824fd5..0000000000 Binary files a/front/public/images/large/Genetics/labMachine/4.png and /dev/null differ diff --git a/front/public/images/large/Genetics/machine/0.png b/front/public/images/large/Genetics/machine/0.png deleted file mode 100644 index 284d65c247..0000000000 Binary files a/front/public/images/large/Genetics/machine/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/machine/1.png b/front/public/images/large/Genetics/machine/1.png deleted file mode 100644 index 3de6ec3d60..0000000000 Binary files a/front/public/images/large/Genetics/machine/1.png and /dev/null differ diff --git a/front/public/images/large/Genetics/machine/2.png b/front/public/images/large/Genetics/machine/2.png deleted file mode 100644 index c84c53fc33..0000000000 Binary files a/front/public/images/large/Genetics/machine/2.png and /dev/null differ diff --git a/front/public/images/large/Genetics/machine/3.png b/front/public/images/large/Genetics/machine/3.png deleted file mode 100644 index e4aac8041d..0000000000 Binary files a/front/public/images/large/Genetics/machine/3.png and /dev/null differ diff --git a/front/public/images/large/Genetics/masterRegistry/0.png b/front/public/images/large/Genetics/masterRegistry/0.png deleted file mode 100644 index a814168979..0000000000 Binary files a/front/public/images/large/Genetics/masterRegistry/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/0.png b/front/public/images/large/Genetics/misc/0.png deleted file mode 100644 index 63b6fb2eb4..0000000000 Binary files a/front/public/images/large/Genetics/misc/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/1.png b/front/public/images/large/Genetics/misc/1.png deleted file mode 100644 index 7bb57e50da..0000000000 Binary files a/front/public/images/large/Genetics/misc/1.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/10.png b/front/public/images/large/Genetics/misc/10.png deleted file mode 100644 index 4c01c276bc..0000000000 Binary files a/front/public/images/large/Genetics/misc/10.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/11.png b/front/public/images/large/Genetics/misc/11.png deleted file mode 100644 index 0eabc79a50..0000000000 Binary files a/front/public/images/large/Genetics/misc/11.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/2.png b/front/public/images/large/Genetics/misc/2.png deleted file mode 100644 index 3c3d02f3a0..0000000000 Binary files a/front/public/images/large/Genetics/misc/2.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/3.png b/front/public/images/large/Genetics/misc/3.png deleted file mode 100644 index bbdd6a4c49..0000000000 Binary files a/front/public/images/large/Genetics/misc/3.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/4.png b/front/public/images/large/Genetics/misc/4.png deleted file mode 100644 index 4b45a81a72..0000000000 Binary files a/front/public/images/large/Genetics/misc/4.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/5.png b/front/public/images/large/Genetics/misc/5.png deleted file mode 100644 index 1c968681b7..0000000000 Binary files a/front/public/images/large/Genetics/misc/5.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/6.png b/front/public/images/large/Genetics/misc/6.png deleted file mode 100644 index fffe2f922b..0000000000 Binary files a/front/public/images/large/Genetics/misc/6.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/7.png b/front/public/images/large/Genetics/misc/7.png deleted file mode 100644 index cea67dd0ba..0000000000 Binary files a/front/public/images/large/Genetics/misc/7.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/8.png b/front/public/images/large/Genetics/misc/8.png deleted file mode 100644 index d428e8a5f5..0000000000 Binary files a/front/public/images/large/Genetics/misc/8.png and /dev/null differ diff --git a/front/public/images/large/Genetics/misc/9.png b/front/public/images/large/Genetics/misc/9.png deleted file mode 100644 index 4a7fac0d6a..0000000000 Binary files a/front/public/images/large/Genetics/misc/9.png and /dev/null differ diff --git a/front/public/images/large/Genetics/registry/0.png b/front/public/images/large/Genetics/registry/0.png deleted file mode 100644 index fdafa5c6ec..0000000000 Binary files a/front/public/images/large/Genetics/registry/0.png and /dev/null differ diff --git a/front/public/images/large/Genetics/sequence/5.png b/front/public/images/large/Genetics/sequence/5.png deleted file mode 100644 index 93595d4b60..0000000000 Binary files a/front/public/images/large/Genetics/sequence/5.png and /dev/null differ diff --git a/front/public/images/large/Genetics/serumArray/0.png b/front/public/images/large/Genetics/serumArray/0.png deleted file mode 100644 index 7c225ef7bf..0000000000 Binary files a/front/public/images/large/Genetics/serumArray/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/FRF_Casings/0.png b/front/public/images/large/GoodGenerator/FRF_Casings/0.png deleted file mode 100644 index cee2a6eacd..0000000000 Binary files a/front/public/images/large/GoodGenerator/FRF_Casings/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/FRF_Coil_1/0.png b/front/public/images/large/GoodGenerator/FRF_Coil_1/0.png deleted file mode 100644 index 4ac0cc7c16..0000000000 Binary files a/front/public/images/large/GoodGenerator/FRF_Coil_1/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/FRF_Coil_2/0.png b/front/public/images/large/GoodGenerator/FRF_Coil_2/0.png deleted file mode 100644 index c8ca331c0a..0000000000 Binary files a/front/public/images/large/GoodGenerator/FRF_Coil_2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/FRF_Coil_3/0.png b/front/public/images/large/GoodGenerator/FRF_Coil_3/0.png deleted file mode 100644 index dc0b7ecd97..0000000000 Binary files a/front/public/images/large/GoodGenerator/FRF_Coil_3/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/FRF_Coil_4/0.png b/front/public/images/large/GoodGenerator/FRF_Coil_4/0.png deleted file mode 100644 index b44a94f86a..0000000000 Binary files a/front/public/images/large/GoodGenerator/FRF_Coil_4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/MAR_Casing/0.png b/front/public/images/large/GoodGenerator/MAR_Casing/0.png deleted file mode 100644 index 0bb11daede..0000000000 Binary files a/front/public/images/large/GoodGenerator/MAR_Casing/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/_null_/0.png b/front/public/images/large/GoodGenerator/_null_/0.png deleted file mode 100644 index a45def74d7..0000000000 Binary files a/front/public/images/large/GoodGenerator/_null_/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/advancedFuelRod/0.png b/front/public/images/large/GoodGenerator/advancedFuelRod/0.png deleted file mode 100644 index 9d9ee5f9c7..0000000000 Binary files a/front/public/images/large/GoodGenerator/advancedFuelRod/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/advancedRadiationProtectionPlate/0.png b/front/public/images/large/GoodGenerator/advancedRadiationProtectionPlate/0.png deleted file mode 100644 index 45720ea3c9..0000000000 Binary files a/front/public/images/large/GoodGenerator/advancedRadiationProtectionPlate/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/aluminumNitride/0.png b/front/public/images/large/GoodGenerator/aluminumNitride/0.png deleted file mode 100644 index e9ed09fa23..0000000000 Binary files a/front/public/images/large/GoodGenerator/aluminumNitride/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/0.png b/front/public/images/large/GoodGenerator/circuitWrap/0.png deleted file mode 100644 index e3be79d24c..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/1.png b/front/public/images/large/GoodGenerator/circuitWrap/1.png deleted file mode 100644 index 877f587566..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/10.png b/front/public/images/large/GoodGenerator/circuitWrap/10.png deleted file mode 100644 index ff230f777d..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/10.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/11.png b/front/public/images/large/GoodGenerator/circuitWrap/11.png deleted file mode 100644 index 001ee7717c..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/11.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/12.png b/front/public/images/large/GoodGenerator/circuitWrap/12.png deleted file mode 100644 index b1aeb420a7..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/12.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/13.png b/front/public/images/large/GoodGenerator/circuitWrap/13.png deleted file mode 100644 index 138679a7d3..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/13.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/14.png b/front/public/images/large/GoodGenerator/circuitWrap/14.png deleted file mode 100644 index ca87f32e1c..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/14.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/2.png b/front/public/images/large/GoodGenerator/circuitWrap/2.png deleted file mode 100644 index 3fbb62c3fc..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/3.png b/front/public/images/large/GoodGenerator/circuitWrap/3.png deleted file mode 100644 index 564368b296..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/4.png b/front/public/images/large/GoodGenerator/circuitWrap/4.png deleted file mode 100644 index 23854e9e23..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/4.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/5.png b/front/public/images/large/GoodGenerator/circuitWrap/5.png deleted file mode 100644 index c25ccfeedb..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/5.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/6.png b/front/public/images/large/GoodGenerator/circuitWrap/6.png deleted file mode 100644 index 090d9e1504..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/6.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/7.png b/front/public/images/large/GoodGenerator/circuitWrap/7.png deleted file mode 100644 index 77c06bc515..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/7.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/8.png b/front/public/images/large/GoodGenerator/circuitWrap/8.png deleted file mode 100644 index 300204855e..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/8.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/circuitWrap/9.png b/front/public/images/large/GoodGenerator/circuitWrap/9.png deleted file mode 100644 index dd1239f22c..0000000000 Binary files a/front/public/images/large/GoodGenerator/circuitWrap/9.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/coalTar/0.png b/front/public/images/large/GoodGenerator/coalTar/0.png deleted file mode 100644 index fa8163cb3a..0000000000 Binary files a/front/public/images/large/GoodGenerator/coalTar/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/combustionPromotor/0.png b/front/public/images/large/GoodGenerator/combustionPromotor/0.png deleted file mode 100644 index 5789c0473a..0000000000 Binary files a/front/public/images/large/GoodGenerator/combustionPromotor/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/compactFusionCoil/0.png b/front/public/images/large/GoodGenerator/compactFusionCoil/0.png deleted file mode 100644 index ae44ba4600..0000000000 Binary files a/front/public/images/large/GoodGenerator/compactFusionCoil/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/compactFusionCoil/1.png b/front/public/images/large/GoodGenerator/compactFusionCoil/1.png deleted file mode 100644 index 0c36938ca5..0000000000 Binary files a/front/public/images/large/GoodGenerator/compactFusionCoil/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/compactFusionCoil/2.png b/front/public/images/large/GoodGenerator/compactFusionCoil/2.png deleted file mode 100644 index 92312130cc..0000000000 Binary files a/front/public/images/large/GoodGenerator/compactFusionCoil/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/compactFusionCoil/3.png b/front/public/images/large/GoodGenerator/compactFusionCoil/3.png deleted file mode 100644 index 040a99dc15..0000000000 Binary files a/front/public/images/large/GoodGenerator/compactFusionCoil/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/compactFusionCoil/4.png b/front/public/images/large/GoodGenerator/compactFusionCoil/4.png deleted file mode 100644 index 027d9eedb2..0000000000 Binary files a/front/public/images/large/GoodGenerator/compactFusionCoil/4.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/0.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/0.png deleted file mode 100644 index 2d1c5ed20b..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/1.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/1.png deleted file mode 100644 index fcac0a4d87..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/10.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/10.png deleted file mode 100644 index 9de3676b3f..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/10.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/11.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/11.png deleted file mode 100644 index eda6c4b9a7..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/11.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/12.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/12.png deleted file mode 100644 index be92a27052..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/12.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/13.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/13.png deleted file mode 100644 index 0c4d98a4bd..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/13.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/2.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/2.png deleted file mode 100644 index 55f2b0a1b5..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/3.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/3.png deleted file mode 100644 index 9be7a2361c..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/4.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/4.png deleted file mode 100644 index 8be14526c1..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/4.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/5.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/5.png deleted file mode 100644 index ad7ba8756f..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/5.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/6.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/6.png deleted file mode 100644 index 4b70d46c5c..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/6.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/7.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/7.png deleted file mode 100644 index 1fccf77ad1..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/7.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/8.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/8.png deleted file mode 100644 index f0fac93af8..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/8.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/9.png b/front/public/images/large/GoodGenerator/componentAssemblylineCasing/9.png deleted file mode 100644 index c8f3b960ea..0000000000 Binary files a/front/public/images/large/GoodGenerator/componentAssemblylineCasing/9.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/enrichedNaquadahMass/0.png b/front/public/images/large/GoodGenerator/enrichedNaquadahMass/0.png deleted file mode 100644 index 10f238efa2..0000000000 Binary files a/front/public/images/large/GoodGenerator/enrichedNaquadahMass/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaCell/0.png b/front/public/images/large/GoodGenerator/essentiaCell/0.png deleted file mode 100644 index 5a353dc202..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaCell/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaCell/1.png b/front/public/images/large/GoodGenerator/essentiaCell/1.png deleted file mode 100644 index 0af5c11d74..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaCell/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaCell/2.png b/front/public/images/large/GoodGenerator/essentiaCell/2.png deleted file mode 100644 index 9e664bd4f7..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaCell/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaCell/3.png b/front/public/images/large/GoodGenerator/essentiaCell/3.png deleted file mode 100644 index a746df5f56..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaCell/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaFilterCasing/0.png b/front/public/images/large/GoodGenerator/essentiaFilterCasing/0.png deleted file mode 100644 index 39fdb20440..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaFilterCasing/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaHatch/0.png b/front/public/images/large/GoodGenerator/essentiaHatch/0.png deleted file mode 100644 index aa0b1d148f..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaHatch/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaOutputHatch/0.png b/front/public/images/large/GoodGenerator/essentiaOutputHatch/0.png deleted file mode 100644 index b70bafeb45..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaOutputHatch/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/essentiaOutputHatch_ME/0.png b/front/public/images/large/GoodGenerator/essentiaOutputHatch_ME/0.png deleted file mode 100644 index 85ceee8d81..0000000000 Binary files a/front/public/images/large/GoodGenerator/essentiaOutputHatch_ME/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fieldRestrictingGlass/0.png b/front/public/images/large/GoodGenerator/fieldRestrictingGlass/0.png deleted file mode 100644 index f36949ce50..0000000000 Binary files a/front/public/images/large/GoodGenerator/fieldRestrictingGlass/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/0.png b/front/public/images/large/GoodGenerator/fluidCore/0.png deleted file mode 100644 index a95b984565..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/1.png b/front/public/images/large/GoodGenerator/fluidCore/1.png deleted file mode 100644 index cd2a06c0dd..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/2.png b/front/public/images/large/GoodGenerator/fluidCore/2.png deleted file mode 100644 index 558973b367..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/3.png b/front/public/images/large/GoodGenerator/fluidCore/3.png deleted file mode 100644 index 30f7bb1d41..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/4.png b/front/public/images/large/GoodGenerator/fluidCore/4.png deleted file mode 100644 index 28da272e34..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/4.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/5.png b/front/public/images/large/GoodGenerator/fluidCore/5.png deleted file mode 100644 index 7c155769a8..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/5.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/6.png b/front/public/images/large/GoodGenerator/fluidCore/6.png deleted file mode 100644 index cdc98ec500..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/6.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/7.png b/front/public/images/large/GoodGenerator/fluidCore/7.png deleted file mode 100644 index a333a45f2a..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/7.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/8.png b/front/public/images/large/GoodGenerator/fluidCore/8.png deleted file mode 100644 index 4664fe6f52..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/8.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/fluidCore/9.png b/front/public/images/large/GoodGenerator/fluidCore/9.png deleted file mode 100644 index 2fb2c4f569..0000000000 Binary files a/front/public/images/large/GoodGenerator/fluidCore/9.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/heavilyCrackedHeavyNaquadahFuel/0.png b/front/public/images/large/GoodGenerator/heavilyCrackedHeavyNaquadahFuel/0.png deleted file mode 100644 index e53bc65daf..0000000000 Binary files a/front/public/images/large/GoodGenerator/heavilyCrackedHeavyNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/heavilyCrackedLightNaquadahFuel/0.png b/front/public/images/large/GoodGenerator/heavilyCrackedLightNaquadahFuel/0.png deleted file mode 100644 index fc7213b2b9..0000000000 Binary files a/front/public/images/large/GoodGenerator/heavilyCrackedLightNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/heavilyCrackedNaquadahAsphalt/0.png b/front/public/images/large/GoodGenerator/heavilyCrackedNaquadahAsphalt/0.png deleted file mode 100644 index 77e25b66de..0000000000 Binary files a/front/public/images/large/GoodGenerator/heavilyCrackedNaquadahAsphalt/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/heavilyCrackedNaquadahGas/0.png b/front/public/images/large/GoodGenerator/heavilyCrackedNaquadahGas/0.png deleted file mode 100644 index db7f9c596b..0000000000 Binary files a/front/public/images/large/GoodGenerator/heavilyCrackedNaquadahGas/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/highDensityPlutonium/0.png b/front/public/images/large/GoodGenerator/highDensityPlutonium/0.png deleted file mode 100644 index b97390e0f0..0000000000 Binary files a/front/public/images/large/GoodGenerator/highDensityPlutonium/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/highDensityPlutoniumNugget/0.png b/front/public/images/large/GoodGenerator/highDensityPlutoniumNugget/0.png deleted file mode 100644 index 2d46104d11..0000000000 Binary files a/front/public/images/large/GoodGenerator/highDensityPlutoniumNugget/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/highDensityThorium/0.png b/front/public/images/large/GoodGenerator/highDensityThorium/0.png deleted file mode 100644 index 658479337d..0000000000 Binary files a/front/public/images/large/GoodGenerator/highDensityThorium/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/highDensityThoriumNugget/0.png b/front/public/images/large/GoodGenerator/highDensityThoriumNugget/0.png deleted file mode 100644 index 119e63b1de..0000000000 Binary files a/front/public/images/large/GoodGenerator/highDensityThoriumNugget/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/highDensityUranium/0.png b/front/public/images/large/GoodGenerator/highDensityUranium/0.png deleted file mode 100644 index bcdd8cfe90..0000000000 Binary files a/front/public/images/large/GoodGenerator/highDensityUranium/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/highDensityUraniumNugget/0.png b/front/public/images/large/GoodGenerator/highDensityUraniumNugget/0.png deleted file mode 100644 index a28a279f5f..0000000000 Binary files a/front/public/images/large/GoodGenerator/highDensityUraniumNugget/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/highEnergyMixture/0.png b/front/public/images/large/GoodGenerator/highEnergyMixture/0.png deleted file mode 100644 index 62ec3a8d77..0000000000 Binary files a/front/public/images/large/GoodGenerator/highEnergyMixture/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/huiCircuit/0.png b/front/public/images/large/GoodGenerator/huiCircuit/0.png deleted file mode 100644 index f6f96bb899..0000000000 Binary files a/front/public/images/large/GoodGenerator/huiCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/huiCircuit/1.png b/front/public/images/large/GoodGenerator/huiCircuit/1.png deleted file mode 100644 index 720e12d8a5..0000000000 Binary files a/front/public/images/large/GoodGenerator/huiCircuit/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/huiCircuit/2.png b/front/public/images/large/GoodGenerator/huiCircuit/2.png deleted file mode 100644 index 1163a19050..0000000000 Binary files a/front/public/images/large/GoodGenerator/huiCircuit/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/huiCircuit/3.png b/front/public/images/large/GoodGenerator/huiCircuit/3.png deleted file mode 100644 index 7a399b1b1f..0000000000 Binary files a/front/public/images/large/GoodGenerator/huiCircuit/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/huiCircuit/4.png b/front/public/images/large/GoodGenerator/huiCircuit/4.png deleted file mode 100644 index 506eb524dc..0000000000 Binary files a/front/public/images/large/GoodGenerator/huiCircuit/4.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/inverter/0.png b/front/public/images/large/GoodGenerator/inverter/0.png deleted file mode 100644 index 9019c932eb..0000000000 Binary files a/front/public/images/large/GoodGenerator/inverter/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/lightlyCrackedHeavyNaquadahFuel/0.png b/front/public/images/large/GoodGenerator/lightlyCrackedHeavyNaquadahFuel/0.png deleted file mode 100644 index e53bc65daf..0000000000 Binary files a/front/public/images/large/GoodGenerator/lightlyCrackedHeavyNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/lightlyCrackedLightNaquadahFuel/0.png b/front/public/images/large/GoodGenerator/lightlyCrackedLightNaquadahFuel/0.png deleted file mode 100644 index fc7213b2b9..0000000000 Binary files a/front/public/images/large/GoodGenerator/lightlyCrackedLightNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/lightlyCrackedNaquadahAsphalt/0.png b/front/public/images/large/GoodGenerator/lightlyCrackedNaquadahAsphalt/0.png deleted file mode 100644 index 77e25b66de..0000000000 Binary files a/front/public/images/large/GoodGenerator/lightlyCrackedNaquadahAsphalt/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/lightlyCrackedNaquadahGas/0.png b/front/public/images/large/GoodGenerator/lightlyCrackedNaquadahGas/0.png deleted file mode 100644 index db7f9c596b..0000000000 Binary files a/front/public/images/large/GoodGenerator/lightlyCrackedNaquadahGas/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/magicCasing/0.png b/front/public/images/large/GoodGenerator/magicCasing/0.png deleted file mode 100644 index c678e55abd..0000000000 Binary files a/front/public/images/large/GoodGenerator/magicCasing/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/microHeater/0.png b/front/public/images/large/GoodGenerator/microHeater/0.png deleted file mode 100644 index aaad74262a..0000000000 Binary files a/front/public/images/large/GoodGenerator/microHeater/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/moderatelyCrackedHeavyNaquadahFuel/0.png b/front/public/images/large/GoodGenerator/moderatelyCrackedHeavyNaquadahFuel/0.png deleted file mode 100644 index e53bc65daf..0000000000 Binary files a/front/public/images/large/GoodGenerator/moderatelyCrackedHeavyNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/moderatelyCrackedLightNaquadahFuel/0.png b/front/public/images/large/GoodGenerator/moderatelyCrackedLightNaquadahFuel/0.png deleted file mode 100644 index fc7213b2b9..0000000000 Binary files a/front/public/images/large/GoodGenerator/moderatelyCrackedLightNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/moderatelyCrackedNaquadahAsphalt/0.png b/front/public/images/large/GoodGenerator/moderatelyCrackedNaquadahAsphalt/0.png deleted file mode 100644 index 77e25b66de..0000000000 Binary files a/front/public/images/large/GoodGenerator/moderatelyCrackedNaquadahAsphalt/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/moderatelyCrackedNaquadahGas/0.png b/front/public/images/large/GoodGenerator/moderatelyCrackedNaquadahGas/0.png deleted file mode 100644 index db7f9c596b..0000000000 Binary files a/front/public/images/large/GoodGenerator/moderatelyCrackedNaquadahGas/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/naquadahMass/0.png b/front/public/images/large/GoodGenerator/naquadahMass/0.png deleted file mode 100644 index 0e65dfefb0..0000000000 Binary files a/front/public/images/large/GoodGenerator/naquadahMass/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/naquadriaMass/0.png b/front/public/images/large/GoodGenerator/naquadriaMass/0.png deleted file mode 100644 index 1a53186095..0000000000 Binary files a/front/public/images/large/GoodGenerator/naquadriaMass/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/neutronSource/0.png b/front/public/images/large/GoodGenerator/neutronSource/0.png deleted file mode 100644 index b754742160..0000000000 Binary files a/front/public/images/large/GoodGenerator/neutronSource/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/plasticCase/0.png b/front/public/images/large/GoodGenerator/plasticCase/0.png deleted file mode 100644 index 435db752cb..0000000000 Binary files a/front/public/images/large/GoodGenerator/plasticCase/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/preciseUnitCasing/0.png b/front/public/images/large/GoodGenerator/preciseUnitCasing/0.png deleted file mode 100644 index c65b5a98f1..0000000000 Binary files a/front/public/images/large/GoodGenerator/preciseUnitCasing/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/preciseUnitCasing/1.png b/front/public/images/large/GoodGenerator/preciseUnitCasing/1.png deleted file mode 100644 index 46116ee8c9..0000000000 Binary files a/front/public/images/large/GoodGenerator/preciseUnitCasing/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/preciseUnitCasing/2.png b/front/public/images/large/GoodGenerator/preciseUnitCasing/2.png deleted file mode 100644 index 85a9dda72f..0000000000 Binary files a/front/public/images/large/GoodGenerator/preciseUnitCasing/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/pressureResistantWalls/0.png b/front/public/images/large/GoodGenerator/pressureResistantWalls/0.png deleted file mode 100644 index e5e7e892db..0000000000 Binary files a/front/public/images/large/GoodGenerator/pressureResistantWalls/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/quartzCrystalResonator/0.png b/front/public/images/large/GoodGenerator/quartzCrystalResonator/0.png deleted file mode 100644 index 2a53a8555d..0000000000 Binary files a/front/public/images/large/GoodGenerator/quartzCrystalResonator/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/quartzWafer/0.png b/front/public/images/large/GoodGenerator/quartzWafer/0.png deleted file mode 100644 index 6c3883d60b..0000000000 Binary files a/front/public/images/large/GoodGenerator/quartzWafer/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/radiationProtectionPlate/0.png b/front/public/images/large/GoodGenerator/radiationProtectionPlate/0.png deleted file mode 100644 index 1d4c3e99cc..0000000000 Binary files a/front/public/images/large/GoodGenerator/radiationProtectionPlate/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/radiationProtectionSteelFrame/0.png b/front/public/images/large/GoodGenerator/radiationProtectionSteelFrame/0.png deleted file mode 100644 index f839483597..0000000000 Binary files a/front/public/images/large/GoodGenerator/radiationProtectionSteelFrame/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/radioactiveWaste/0.png b/front/public/images/large/GoodGenerator/radioactiveWaste/0.png deleted file mode 100644 index 4d545ac8fc..0000000000 Binary files a/front/public/images/large/GoodGenerator/radioactiveWaste/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rawAtomicSeparationCatalyst/0.png b/front/public/images/large/GoodGenerator/rawAtomicSeparationCatalyst/0.png deleted file mode 100644 index 628ea52114..0000000000 Binary files a/front/public/images/large/GoodGenerator/rawAtomicSeparationCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rawCylinder/0.png b/front/public/images/large/GoodGenerator/rawCylinder/0.png deleted file mode 100644 index 66610e724f..0000000000 Binary files a/front/public/images/large/GoodGenerator/rawCylinder/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedPlutonium/0.png b/front/public/images/large/GoodGenerator/rodCompressedPlutonium/0.png deleted file mode 100644 index 12b8db714f..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedPlutonium/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedPlutonium2/0.png b/front/public/images/large/GoodGenerator/rodCompressedPlutonium2/0.png deleted file mode 100644 index 8d90e1bff6..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedPlutonium2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedPlutonium4/0.png b/front/public/images/large/GoodGenerator/rodCompressedPlutonium4/0.png deleted file mode 100644 index 762cc3fd75..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedPlutonium4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted/0.png b/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted/0.png deleted file mode 100644 index d76836e95c..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted2/0.png b/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted2/0.png deleted file mode 100644 index f822743b6b..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted4/0.png b/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted4/0.png deleted file mode 100644 index e8e5c46384..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedPlutoniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedUranium/0.png b/front/public/images/large/GoodGenerator/rodCompressedUranium/0.png deleted file mode 100644 index c65b97cbfc..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedUranium/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedUranium2/0.png b/front/public/images/large/GoodGenerator/rodCompressedUranium2/0.png deleted file mode 100644 index d28aec40f6..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedUranium2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedUranium4/0.png b/front/public/images/large/GoodGenerator/rodCompressedUranium4/0.png deleted file mode 100644 index d4c0569472..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedUranium4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted/0.png b/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted/0.png deleted file mode 100644 index 62d2f0feb6..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted2/0.png b/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted2/0.png deleted file mode 100644 index 2f744c441f..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted4/0.png b/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted4/0.png deleted file mode 100644 index d72cba70c5..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodCompressedUraniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidPlutonium/0.png b/front/public/images/large/GoodGenerator/rodLiquidPlutonium/0.png deleted file mode 100644 index 65c71750a2..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidPlutonium/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidPlutonium2/0.png b/front/public/images/large/GoodGenerator/rodLiquidPlutonium2/0.png deleted file mode 100644 index 11a31fd8e8..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidPlutonium2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidPlutonium4/0.png b/front/public/images/large/GoodGenerator/rodLiquidPlutonium4/0.png deleted file mode 100644 index d1f73f0593..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidPlutonium4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted/0.png b/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted/0.png deleted file mode 100644 index e386504eea..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted2/0.png b/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted2/0.png deleted file mode 100644 index 839f5a0b05..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted4/0.png b/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted4/0.png deleted file mode 100644 index a441331381..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidPlutoniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidUranium/0.png b/front/public/images/large/GoodGenerator/rodLiquidUranium/0.png deleted file mode 100644 index 0a877d3778..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidUranium/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidUranium2/0.png b/front/public/images/large/GoodGenerator/rodLiquidUranium2/0.png deleted file mode 100644 index 2fc5f07e20..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidUranium2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidUranium4/0.png b/front/public/images/large/GoodGenerator/rodLiquidUranium4/0.png deleted file mode 100644 index c63dce06ce..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidUranium4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted/0.png b/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted/0.png deleted file mode 100644 index a0a1d93a43..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted2/0.png b/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted2/0.png deleted file mode 100644 index a104f9dc1f..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted4/0.png b/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted4/0.png deleted file mode 100644 index 163e373b97..0000000000 Binary files a/front/public/images/large/GoodGenerator/rodLiquidUraniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/saltyRoot/0.png b/front/public/images/large/GoodGenerator/saltyRoot/0.png deleted file mode 100644 index d3eda29b67..0000000000 Binary files a/front/public/images/large/GoodGenerator/saltyRoot/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/specialCeramics/0.png b/front/public/images/large/GoodGenerator/specialCeramics/0.png deleted file mode 100644 index 1156191838..0000000000 Binary files a/front/public/images/large/GoodGenerator/specialCeramics/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/specialCeramicsPlate/0.png b/front/public/images/large/GoodGenerator/specialCeramicsPlate/0.png deleted file mode 100644 index 5f3bab1ec7..0000000000 Binary files a/front/public/images/large/GoodGenerator/specialCeramicsPlate/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/speedingPipe/0.png b/front/public/images/large/GoodGenerator/speedingPipe/0.png deleted file mode 100644 index 9b3cc6f8f8..0000000000 Binary files a/front/public/images/large/GoodGenerator/speedingPipe/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/supercriticalFluidTurbineCasing/0.png b/front/public/images/large/GoodGenerator/supercriticalFluidTurbineCasing/0.png deleted file mode 100644 index b508fe2c91..0000000000 Binary files a/front/public/images/large/GoodGenerator/supercriticalFluidTurbineCasing/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/supercriticalSteam/0.png b/front/public/images/large/GoodGenerator/supercriticalSteam/0.png deleted file mode 100644 index c4d1ac1a62..0000000000 Binary files a/front/public/images/large/GoodGenerator/supercriticalSteam/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/titaniumPlatedCylinder/0.png b/front/public/images/large/GoodGenerator/titaniumPlatedCylinder/0.png deleted file mode 100644 index 13c39bcdd7..0000000000 Binary files a/front/public/images/large/GoodGenerator/titaniumPlatedCylinder/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/0.png b/front/public/images/large/GoodGenerator/upgradeEssentia/0.png deleted file mode 100644 index 143b9097ef..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/1.png b/front/public/images/large/GoodGenerator/upgradeEssentia/1.png deleted file mode 100644 index 45f647b91e..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/2.png b/front/public/images/large/GoodGenerator/upgradeEssentia/2.png deleted file mode 100644 index 8a7d3c48cd..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/3.png b/front/public/images/large/GoodGenerator/upgradeEssentia/3.png deleted file mode 100644 index 2428677ef2..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/4.png b/front/public/images/large/GoodGenerator/upgradeEssentia/4.png deleted file mode 100644 index 4acca76c77..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/4.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/5.png b/front/public/images/large/GoodGenerator/upgradeEssentia/5.png deleted file mode 100644 index 9603a54d63..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/5.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/6.png b/front/public/images/large/GoodGenerator/upgradeEssentia/6.png deleted file mode 100644 index 510768ea23..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/6.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/7.png b/front/public/images/large/GoodGenerator/upgradeEssentia/7.png deleted file mode 100644 index bcaf701d1a..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/7.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/8.png b/front/public/images/large/GoodGenerator/upgradeEssentia/8.png deleted file mode 100644 index 3bea2263b6..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/8.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/upgradeEssentia/9.png b/front/public/images/large/GoodGenerator/upgradeEssentia/9.png deleted file mode 100644 index 424a4e7319..0000000000 Binary files a/front/public/images/large/GoodGenerator/upgradeEssentia/9.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/wrappedPlutoniumIngot/0.png b/front/public/images/large/GoodGenerator/wrappedPlutoniumIngot/0.png deleted file mode 100644 index 350bb5e8e3..0000000000 Binary files a/front/public/images/large/GoodGenerator/wrappedPlutoniumIngot/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/wrappedThoriumIngot/0.png b/front/public/images/large/GoodGenerator/wrappedThoriumIngot/0.png deleted file mode 100644 index a89510cf5f..0000000000 Binary files a/front/public/images/large/GoodGenerator/wrappedThoriumIngot/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/wrappedUraniumIngot/0.png b/front/public/images/large/GoodGenerator/wrappedUraniumIngot/0.png deleted file mode 100644 index 7a48bdee72..0000000000 Binary files a/front/public/images/large/GoodGenerator/wrappedUraniumIngot/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCasing/0.png b/front/public/images/large/GoodGenerator/yottaFluidTankCasing/0.png deleted file mode 100644 index d2a406c101..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCasing/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/0.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/0.png deleted file mode 100644 index 9de0911b41..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/0.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/1.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/1.png deleted file mode 100644 index 16771f0f19..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/1.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/2.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/2.png deleted file mode 100644 index c7142037d5..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/2.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/3.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/3.png deleted file mode 100644 index b4bde3e7d3..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/3.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/4.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/4.png deleted file mode 100644 index bee1f2afea..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/4.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/5.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/5.png deleted file mode 100644 index 73f38ba45e..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/5.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/6.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/6.png deleted file mode 100644 index 832b8747b5..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/6.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/7.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/7.png deleted file mode 100644 index 3e7e15e392..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/7.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/8.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/8.png deleted file mode 100644 index 34d1162301..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/8.png and /dev/null differ diff --git a/front/public/images/large/GoodGenerator/yottaFluidTankCells/9.png b/front/public/images/large/GoodGenerator/yottaFluidTankCells/9.png deleted file mode 100644 index 8ef25b9f23..0000000000 Binary files a/front/public/images/large/GoodGenerator/yottaFluidTankCells/9.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/BlockRelocatorPortal/0.png b/front/public/images/large/GraviSuite/BlockRelocatorPortal/0.png deleted file mode 100644 index 29dbfc2cc3..0000000000 Binary files a/front/public/images/large/GraviSuite/BlockRelocatorPortal/0.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advChainsaw/1.png b/front/public/images/large/GraviSuite/advChainsaw/1.png deleted file mode 100644 index c615447c2a..0000000000 Binary files a/front/public/images/large/GraviSuite/advChainsaw/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advChainsaw/27.png b/front/public/images/large/GraviSuite/advChainsaw/27.png deleted file mode 100644 index c615447c2a..0000000000 Binary files a/front/public/images/large/GraviSuite/advChainsaw/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advDDrill/1.png b/front/public/images/large/GraviSuite/advDDrill/1.png deleted file mode 100644 index 53dfe7a02e..0000000000 Binary files a/front/public/images/large/GraviSuite/advDDrill/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advDDrill/27.png b/front/public/images/large/GraviSuite/advDDrill/27.png deleted file mode 100644 index 53dfe7a02e..0000000000 Binary files a/front/public/images/large/GraviSuite/advDDrill/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advJetpack/1.png b/front/public/images/large/GraviSuite/advJetpack/1.png deleted file mode 100644 index ec38e7a5a2..0000000000 Binary files a/front/public/images/large/GraviSuite/advJetpack/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advJetpack/27.png b/front/public/images/large/GraviSuite/advJetpack/27.png deleted file mode 100644 index ec38e7a5a2..0000000000 Binary files a/front/public/images/large/GraviSuite/advJetpack/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advLappack/1.png b/front/public/images/large/GraviSuite/advLappack/1.png deleted file mode 100644 index 2061b2a400..0000000000 Binary files a/front/public/images/large/GraviSuite/advLappack/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advLappack/27.png b/front/public/images/large/GraviSuite/advLappack/27.png deleted file mode 100644 index 2061b2a400..0000000000 Binary files a/front/public/images/large/GraviSuite/advLappack/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advNanoChestPlate/1.png b/front/public/images/large/GraviSuite/advNanoChestPlate/1.png deleted file mode 100644 index fdbfde7b35..0000000000 Binary files a/front/public/images/large/GraviSuite/advNanoChestPlate/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/advNanoChestPlate/27.png b/front/public/images/large/GraviSuite/advNanoChestPlate/27.png deleted file mode 100644 index fdbfde7b35..0000000000 Binary files a/front/public/images/large/GraviSuite/advNanoChestPlate/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/graviChestPlate/1.png b/front/public/images/large/GraviSuite/graviChestPlate/1.png deleted file mode 100644 index 387292a44e..0000000000 Binary files a/front/public/images/large/GraviSuite/graviChestPlate/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/graviChestPlate/27.png b/front/public/images/large/GraviSuite/graviChestPlate/27.png deleted file mode 100644 index 387292a44e..0000000000 Binary files a/front/public/images/large/GraviSuite/graviChestPlate/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/graviTool/1.png b/front/public/images/large/GraviSuite/graviTool/1.png deleted file mode 100644 index 7f0f8ed62f..0000000000 Binary files a/front/public/images/large/GraviSuite/graviTool/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/graviTool/27.png b/front/public/images/large/GraviSuite/graviTool/27.png deleted file mode 100644 index 7f0f8ed62f..0000000000 Binary files a/front/public/images/large/GraviSuite/graviTool/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/0.png b/front/public/images/large/GraviSuite/itemSimpleItem/0.png deleted file mode 100644 index 9c240ca32c..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/0.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/1.png b/front/public/images/large/GraviSuite/itemSimpleItem/1.png deleted file mode 100644 index 97529a6362..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/2.png b/front/public/images/large/GraviSuite/itemSimpleItem/2.png deleted file mode 100644 index 360a63d2d5..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/2.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/3.png b/front/public/images/large/GraviSuite/itemSimpleItem/3.png deleted file mode 100644 index d715d863c7..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/3.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/4.png b/front/public/images/large/GraviSuite/itemSimpleItem/4.png deleted file mode 100644 index 599f8adf4f..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/4.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/5.png b/front/public/images/large/GraviSuite/itemSimpleItem/5.png deleted file mode 100644 index 05f89294ab..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/5.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/6.png b/front/public/images/large/GraviSuite/itemSimpleItem/6.png deleted file mode 100644 index 2f4655adcd..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/6.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/itemSimpleItem/7.png b/front/public/images/large/GraviSuite/itemSimpleItem/7.png deleted file mode 100644 index ebafda9809..0000000000 Binary files a/front/public/images/large/GraviSuite/itemSimpleItem/7.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/relocator/1.png b/front/public/images/large/GraviSuite/relocator/1.png deleted file mode 100644 index 881599d33b..0000000000 Binary files a/front/public/images/large/GraviSuite/relocator/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/relocator/27.png b/front/public/images/large/GraviSuite/relocator/27.png deleted file mode 100644 index 881599d33b..0000000000 Binary files a/front/public/images/large/GraviSuite/relocator/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/ultimateLappack/1.png b/front/public/images/large/GraviSuite/ultimateLappack/1.png deleted file mode 100644 index 5f295091f6..0000000000 Binary files a/front/public/images/large/GraviSuite/ultimateLappack/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/ultimateLappack/27.png b/front/public/images/large/GraviSuite/ultimateLappack/27.png deleted file mode 100644 index 5f295091f6..0000000000 Binary files a/front/public/images/large/GraviSuite/ultimateLappack/27.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/vajra/1.png b/front/public/images/large/GraviSuite/vajra/1.png deleted file mode 100644 index b9aaf1ad12..0000000000 Binary files a/front/public/images/large/GraviSuite/vajra/1.png and /dev/null differ diff --git a/front/public/images/large/GraviSuite/vajra/27.png b/front/public/images/large/GraviSuite/vajra/27.png deleted file mode 100644 index b9aaf1ad12..0000000000 Binary files a/front/public/images/large/GraviSuite/vajra/27.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/accumulation_table/0.png b/front/public/images/large/HardcoreEnderExpansion/accumulation_table/0.png deleted file mode 100644 index 9902cd269e..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/accumulation_table/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/adventurers_diary/0.png b/front/public/images/large/HardcoreEnderExpansion/adventurers_diary/0.png deleted file mode 100644 index 5671c3ec20..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/adventurers_diary/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/altar_nexus/0.png b/front/public/images/large/HardcoreEnderExpansion/altar_nexus/0.png deleted file mode 100644 index 8c55c363d8..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/altar_nexus/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/arcane_shard/0.png b/front/public/images/large/HardcoreEnderExpansion/arcane_shard/0.png deleted file mode 100644 index 5884c7db27..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/arcane_shard/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/auricion/0.png b/front/public/images/large/HardcoreEnderExpansion/auricion/0.png deleted file mode 100644 index 35bf4b4b17..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/auricion/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/biome_compass/0.png b/front/public/images/large/HardcoreEnderExpansion/biome_compass/0.png deleted file mode 100644 index 4c8871cd20..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/biome_compass/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/biome_core/0.png b/front/public/images/large/HardcoreEnderExpansion/biome_core/0.png deleted file mode 100644 index c4392f9e5d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/biome_core/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/blank_gem/0.png b/front/public/images/large/HardcoreEnderExpansion/blank_gem/0.png deleted file mode 100644 index 84d1a33f39..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/blank_gem/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/1.png b/front/public/images/large/HardcoreEnderExpansion/block_special_effects/1.png deleted file mode 100644 index a968cbb38d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/2.png b/front/public/images/large/HardcoreEnderExpansion/block_special_effects/2.png deleted file mode 100644 index 2355584179..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/3.png b/front/public/images/large/HardcoreEnderExpansion/block_special_effects/3.png deleted file mode 100644 index 59b13ca1db..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/4.png b/front/public/images/large/HardcoreEnderExpansion/block_special_effects/4.png deleted file mode 100644 index 5252cdb4ea..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/5.png b/front/public/images/large/HardcoreEnderExpansion/block_special_effects/5.png deleted file mode 100644 index f0cab770f8..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/block_special_effects/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/bucket_ender_goo/0.png b/front/public/images/large/HardcoreEnderExpansion/bucket_ender_goo/0.png deleted file mode 100644 index 4019f8297b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/bucket_ender_goo/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/0.png b/front/public/images/large/HardcoreEnderExpansion/charm/0.png deleted file mode 100644 index 589c114ad7..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/1.png b/front/public/images/large/HardcoreEnderExpansion/charm/1.png deleted file mode 100644 index 589c114ad7..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/10.png b/front/public/images/large/HardcoreEnderExpansion/charm/10.png deleted file mode 100644 index 08e48a1ac5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/10.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/11.png b/front/public/images/large/HardcoreEnderExpansion/charm/11.png deleted file mode 100644 index 08e48a1ac5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/11.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/12.png b/front/public/images/large/HardcoreEnderExpansion/charm/12.png deleted file mode 100644 index 9ca176fe61..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/12.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/13.png b/front/public/images/large/HardcoreEnderExpansion/charm/13.png deleted file mode 100644 index 9ca176fe61..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/13.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/14.png b/front/public/images/large/HardcoreEnderExpansion/charm/14.png deleted file mode 100644 index 9ca176fe61..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/14.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/17.png b/front/public/images/large/HardcoreEnderExpansion/charm/17.png deleted file mode 100644 index c9f87a502b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/17.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/18.png b/front/public/images/large/HardcoreEnderExpansion/charm/18.png deleted file mode 100644 index 7b0f8a5617..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/18.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/19.png b/front/public/images/large/HardcoreEnderExpansion/charm/19.png deleted file mode 100644 index a6bc7982c4..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/19.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/2.png b/front/public/images/large/HardcoreEnderExpansion/charm/2.png deleted file mode 100644 index 589c114ad7..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/20.png b/front/public/images/large/HardcoreEnderExpansion/charm/20.png deleted file mode 100644 index a6bc7982c4..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/20.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/21.png b/front/public/images/large/HardcoreEnderExpansion/charm/21.png deleted file mode 100644 index a6bc7982c4..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/21.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/22.png b/front/public/images/large/HardcoreEnderExpansion/charm/22.png deleted file mode 100644 index 37d26a27c2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/22.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/23.png b/front/public/images/large/HardcoreEnderExpansion/charm/23.png deleted file mode 100644 index 37d26a27c2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/23.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/24.png b/front/public/images/large/HardcoreEnderExpansion/charm/24.png deleted file mode 100644 index 37d26a27c2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/24.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/25.png b/front/public/images/large/HardcoreEnderExpansion/charm/25.png deleted file mode 100644 index c158384fc1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/25.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/26.png b/front/public/images/large/HardcoreEnderExpansion/charm/26.png deleted file mode 100644 index c158384fc1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/26.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/27.png b/front/public/images/large/HardcoreEnderExpansion/charm/27.png deleted file mode 100644 index c158384fc1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/27.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/28.png b/front/public/images/large/HardcoreEnderExpansion/charm/28.png deleted file mode 100644 index 30d9ba2d67..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/28.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/3.png b/front/public/images/large/HardcoreEnderExpansion/charm/3.png deleted file mode 100644 index 66147ff295..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/30.png b/front/public/images/large/HardcoreEnderExpansion/charm/30.png deleted file mode 100644 index 30d9ba2d67..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/30.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/31.png b/front/public/images/large/HardcoreEnderExpansion/charm/31.png deleted file mode 100644 index 3d2f9e3505..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/31.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/32.png b/front/public/images/large/HardcoreEnderExpansion/charm/32.png deleted file mode 100644 index 3d2f9e3505..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/32.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/33.png b/front/public/images/large/HardcoreEnderExpansion/charm/33.png deleted file mode 100644 index 3d2f9e3505..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/33.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/34.png b/front/public/images/large/HardcoreEnderExpansion/charm/34.png deleted file mode 100644 index 3d2f9e3505..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/34.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/35.png b/front/public/images/large/HardcoreEnderExpansion/charm/35.png deleted file mode 100644 index 3d2f9e3505..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/35.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/36.png b/front/public/images/large/HardcoreEnderExpansion/charm/36.png deleted file mode 100644 index 3d2f9e3505..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/36.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/37.png b/front/public/images/large/HardcoreEnderExpansion/charm/37.png deleted file mode 100644 index 9a5e420f13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/37.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/38.png b/front/public/images/large/HardcoreEnderExpansion/charm/38.png deleted file mode 100644 index 9a5e420f13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/38.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/39.png b/front/public/images/large/HardcoreEnderExpansion/charm/39.png deleted file mode 100644 index 9a5e420f13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/39.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/4.png b/front/public/images/large/HardcoreEnderExpansion/charm/4.png deleted file mode 100644 index 66147ff295..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/40.png b/front/public/images/large/HardcoreEnderExpansion/charm/40.png deleted file mode 100644 index 9a5e420f13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/40.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/41.png b/front/public/images/large/HardcoreEnderExpansion/charm/41.png deleted file mode 100644 index 9a5e420f13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/41.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/42.png b/front/public/images/large/HardcoreEnderExpansion/charm/42.png deleted file mode 100644 index 9a5e420f13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/42.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/43.png b/front/public/images/large/HardcoreEnderExpansion/charm/43.png deleted file mode 100644 index 9a5e420f13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/43.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/45.png b/front/public/images/large/HardcoreEnderExpansion/charm/45.png deleted file mode 100644 index 6e64e85164..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/45.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/46.png b/front/public/images/large/HardcoreEnderExpansion/charm/46.png deleted file mode 100644 index 6e64e85164..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/46.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/49.png b/front/public/images/large/HardcoreEnderExpansion/charm/49.png deleted file mode 100644 index 3e7576f7db..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/49.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/5.png b/front/public/images/large/HardcoreEnderExpansion/charm/5.png deleted file mode 100644 index 66147ff295..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/50.png b/front/public/images/large/HardcoreEnderExpansion/charm/50.png deleted file mode 100644 index 3e7576f7db..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/50.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/51.png b/front/public/images/large/HardcoreEnderExpansion/charm/51.png deleted file mode 100644 index cb5180e4fe..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/51.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/52.png b/front/public/images/large/HardcoreEnderExpansion/charm/52.png deleted file mode 100644 index cb5180e4fe..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/52.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/53.png b/front/public/images/large/HardcoreEnderExpansion/charm/53.png deleted file mode 100644 index cb5180e4fe..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/53.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/54.png b/front/public/images/large/HardcoreEnderExpansion/charm/54.png deleted file mode 100644 index 682a9887f9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/54.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/55.png b/front/public/images/large/HardcoreEnderExpansion/charm/55.png deleted file mode 100644 index 682a9887f9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/55.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/56.png b/front/public/images/large/HardcoreEnderExpansion/charm/56.png deleted file mode 100644 index 682a9887f9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/56.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/57.png b/front/public/images/large/HardcoreEnderExpansion/charm/57.png deleted file mode 100644 index 682a9887f9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/57.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/58.png b/front/public/images/large/HardcoreEnderExpansion/charm/58.png deleted file mode 100644 index 682a9887f9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/58.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/59.png b/front/public/images/large/HardcoreEnderExpansion/charm/59.png deleted file mode 100644 index 682a9887f9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/59.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/6.png b/front/public/images/large/HardcoreEnderExpansion/charm/6.png deleted file mode 100644 index f6233e2e7d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/6.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/60.png b/front/public/images/large/HardcoreEnderExpansion/charm/60.png deleted file mode 100644 index 133ab97308..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/60.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/61.png b/front/public/images/large/HardcoreEnderExpansion/charm/61.png deleted file mode 100644 index 133ab97308..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/61.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/62.png b/front/public/images/large/HardcoreEnderExpansion/charm/62.png deleted file mode 100644 index 133ab97308..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/62.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/63.png b/front/public/images/large/HardcoreEnderExpansion/charm/63.png deleted file mode 100644 index 133ab97308..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/63.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/64.png b/front/public/images/large/HardcoreEnderExpansion/charm/64.png deleted file mode 100644 index 133ab97308..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/64.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/65.png b/front/public/images/large/HardcoreEnderExpansion/charm/65.png deleted file mode 100644 index 6e64e85164..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/65.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/66.png b/front/public/images/large/HardcoreEnderExpansion/charm/66.png deleted file mode 100644 index c9f87a502b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/66.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/67.png b/front/public/images/large/HardcoreEnderExpansion/charm/67.png deleted file mode 100644 index c9f87a502b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/67.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/68.png b/front/public/images/large/HardcoreEnderExpansion/charm/68.png deleted file mode 100644 index c9f87a502b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/68.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/69.png b/front/public/images/large/HardcoreEnderExpansion/charm/69.png deleted file mode 100644 index c9f87a502b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/69.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/7.png b/front/public/images/large/HardcoreEnderExpansion/charm/7.png deleted file mode 100644 index f6233e2e7d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/7.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/70.png b/front/public/images/large/HardcoreEnderExpansion/charm/70.png deleted file mode 100644 index c9f87a502b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/70.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/71.png b/front/public/images/large/HardcoreEnderExpansion/charm/71.png deleted file mode 100644 index b249aa8037..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/71.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/72.png b/front/public/images/large/HardcoreEnderExpansion/charm/72.png deleted file mode 100644 index b249aa8037..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/72.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/73.png b/front/public/images/large/HardcoreEnderExpansion/charm/73.png deleted file mode 100644 index b249aa8037..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/73.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/74.png b/front/public/images/large/HardcoreEnderExpansion/charm/74.png deleted file mode 100644 index 020430d679..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/74.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/75.png b/front/public/images/large/HardcoreEnderExpansion/charm/75.png deleted file mode 100644 index 020430d679..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/75.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/76.png b/front/public/images/large/HardcoreEnderExpansion/charm/76.png deleted file mode 100644 index 020430d679..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/76.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/77.png b/front/public/images/large/HardcoreEnderExpansion/charm/77.png deleted file mode 100644 index d19e03d7d9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/77.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/78.png b/front/public/images/large/HardcoreEnderExpansion/charm/78.png deleted file mode 100644 index d19e03d7d9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/78.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/79.png b/front/public/images/large/HardcoreEnderExpansion/charm/79.png deleted file mode 100644 index d19e03d7d9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/79.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/8.png b/front/public/images/large/HardcoreEnderExpansion/charm/8.png deleted file mode 100644 index f6233e2e7d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/8.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm/9.png b/front/public/images/large/HardcoreEnderExpansion/charm/9.png deleted file mode 100644 index 08e48a1ac5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm/9.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/charm_pouch/0.png b/front/public/images/large/HardcoreEnderExpansion/charm_pouch/0.png deleted file mode 100644 index 8c3679e66b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/charm_pouch/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/cinder/0.png b/front/public/images/large/HardcoreEnderExpansion/cinder/0.png deleted file mode 100644 index 80c4a4acb7..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/cinder/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/corrupted_energy_high/0.png b/front/public/images/large/HardcoreEnderExpansion/corrupted_energy_high/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/corrupted_energy_high/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/corrupted_energy_low/0.png b/front/public/images/large/HardcoreEnderExpansion/corrupted_energy_low/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/corrupted_energy_low/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/10.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/10.png deleted file mode 100644 index 97f592784a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/10.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/11.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/11.png deleted file mode 100644 index 1b9c188a86..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/11.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/12.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/12.png deleted file mode 100644 index 29074abfd7..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/12.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/13.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/13.png deleted file mode 100644 index af141561e8..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/13.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/2.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/2.png deleted file mode 100644 index 0c79b3f09c..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/3.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/3.png deleted file mode 100644 index 4609d248b5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/4.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/4.png deleted file mode 100644 index cebecb4bc1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/5.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/5.png deleted file mode 100644 index f0c6d6a5a0..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/6.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/6.png deleted file mode 100644 index 479174fdb2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/6.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/7.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/7.png deleted file mode 100644 index 9f3ffa282f..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/7.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/8.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/8.png deleted file mode 100644 index 06fb767901..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/8.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/9.png b/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/9.png deleted file mode 100644 index cd15f216ea..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/crossed_decoration/9.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/0.png b/front/public/images/large/HardcoreEnderExpansion/curse/0.png deleted file mode 100644 index 3aa2490f83..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/1.png b/front/public/images/large/HardcoreEnderExpansion/curse/1.png deleted file mode 100644 index 87f7f961e2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/10.png b/front/public/images/large/HardcoreEnderExpansion/curse/10.png deleted file mode 100644 index 85d9e37d13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/10.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/2.png b/front/public/images/large/HardcoreEnderExpansion/curse/2.png deleted file mode 100644 index 9ffbaf37b8..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/256.png b/front/public/images/large/HardcoreEnderExpansion/curse/256.png deleted file mode 100644 index 3aa2490f83..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/256.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/257.png b/front/public/images/large/HardcoreEnderExpansion/curse/257.png deleted file mode 100644 index 87f7f961e2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/257.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/258.png b/front/public/images/large/HardcoreEnderExpansion/curse/258.png deleted file mode 100644 index 9ffbaf37b8..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/258.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/259.png b/front/public/images/large/HardcoreEnderExpansion/curse/259.png deleted file mode 100644 index b373da0b01..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/259.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/260.png b/front/public/images/large/HardcoreEnderExpansion/curse/260.png deleted file mode 100644 index 09e23dec63..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/260.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/261.png b/front/public/images/large/HardcoreEnderExpansion/curse/261.png deleted file mode 100644 index 2eedae93bf..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/261.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/262.png b/front/public/images/large/HardcoreEnderExpansion/curse/262.png deleted file mode 100644 index d4105e1239..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/262.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/263.png b/front/public/images/large/HardcoreEnderExpansion/curse/263.png deleted file mode 100644 index cee15a4d28..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/263.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/264.png b/front/public/images/large/HardcoreEnderExpansion/curse/264.png deleted file mode 100644 index 45ebac360a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/264.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/265.png b/front/public/images/large/HardcoreEnderExpansion/curse/265.png deleted file mode 100644 index 98111d9fac..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/265.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/266.png b/front/public/images/large/HardcoreEnderExpansion/curse/266.png deleted file mode 100644 index 85d9e37d13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/266.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/3.png b/front/public/images/large/HardcoreEnderExpansion/curse/3.png deleted file mode 100644 index b373da0b01..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/4.png b/front/public/images/large/HardcoreEnderExpansion/curse/4.png deleted file mode 100644 index 09e23dec63..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/5.png b/front/public/images/large/HardcoreEnderExpansion/curse/5.png deleted file mode 100644 index 2eedae93bf..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/6.png b/front/public/images/large/HardcoreEnderExpansion/curse/6.png deleted file mode 100644 index d4105e1239..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/6.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/7.png b/front/public/images/large/HardcoreEnderExpansion/curse/7.png deleted file mode 100644 index cee15a4d28..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/7.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/8.png b/front/public/images/large/HardcoreEnderExpansion/curse/8.png deleted file mode 100644 index 45ebac360a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/8.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse/9.png b/front/public/images/large/HardcoreEnderExpansion/curse/9.png deleted file mode 100644 index 98111d9fac..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse/9.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/curse_amulet/0.png b/front/public/images/large/HardcoreEnderExpansion/curse_amulet/0.png deleted file mode 100644 index 872756725a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/curse_amulet/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/custom_spawner/0.png b/front/public/images/large/HardcoreEnderExpansion/custom_spawner/0.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/custom_spawner/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/death_flower/0.png b/front/public/images/large/HardcoreEnderExpansion/death_flower/0.png deleted file mode 100644 index dd1768f300..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/death_flower/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/death_flower/15.png b/front/public/images/large/HardcoreEnderExpansion/death_flower/15.png deleted file mode 100644 index cda90ace66..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/death_flower/15.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/death_flower_pot/0.png b/front/public/images/large/HardcoreEnderExpansion/death_flower_pot/0.png deleted file mode 100644 index 221470a897..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/death_flower_pot/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/decomposition_table/0.png b/front/public/images/large/HardcoreEnderExpansion/decomposition_table/0.png deleted file mode 100644 index 511b981acc..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/decomposition_table/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dry_splinter/0.png b/front/public/images/large/HardcoreEnderExpansion/dry_splinter/0.png deleted file mode 100644 index 2b637d9eab..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dry_splinter/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/0.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/0.png deleted file mode 100644 index 9dd7a9e316..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/1.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/1.png deleted file mode 100644 index 733948bdab..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/12.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/12.png deleted file mode 100644 index b2ddf6e2bc..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/12.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/13.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/13.png deleted file mode 100644 index 74bb81dbfd..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/13.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/14.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/14.png deleted file mode 100644 index 7f297fa200..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/14.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/15.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/15.png deleted file mode 100644 index 733948bdab..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/15.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/2.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/2.png deleted file mode 100644 index bf4dc0e4f9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/3.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/3.png deleted file mode 100644 index fcfb5b6cff..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/4.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/4.png deleted file mode 100644 index 61a50f9c94..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/5.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/5.png deleted file mode 100644 index ffaf79e2d6..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/6.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/6.png deleted file mode 100644 index ef821a3ee0..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/6.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/7.png b/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/7.png deleted file mode 100644 index ef0c21e911..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/dungeon_puzzle/7.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/end_powder/0.png b/front/public/images/large/HardcoreEnderExpansion/end_powder/0.png deleted file mode 100644 index 41287ffe7c..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/end_powder/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/end_powder_ore/0.png b/front/public/images/large/HardcoreEnderExpansion/end_powder_ore/0.png deleted file mode 100644 index 11ee379624..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/end_powder_ore/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/0.png b/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/0.png deleted file mode 100644 index a166affc98..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/1.png b/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/1.png deleted file mode 100644 index 8c6a55ebaa..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/2.png b/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/2.png deleted file mode 100644 index 3aef6666a7..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/end_stone_terrain/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ender_goo/0.png b/front/public/images/large/HardcoreEnderExpansion/ender_goo/0.png deleted file mode 100644 index ac3a7c0d4b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ender_goo/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/enderman_head/0.png b/front/public/images/large/HardcoreEnderExpansion/enderman_head/0.png deleted file mode 100644 index a3c7e3e13d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/enderman_head/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/enderman_head_block/0.png b/front/public/images/large/HardcoreEnderExpansion/enderman_head_block/0.png deleted file mode 100644 index c630726f7c..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/enderman_head_block/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/endium_block/0.png b/front/public/images/large/HardcoreEnderExpansion/endium_block/0.png deleted file mode 100644 index bce6fedc60..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/endium_block/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/endium_ingot/0.png b/front/public/images/large/HardcoreEnderExpansion/endium_ingot/0.png deleted file mode 100644 index 49025c7a07..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/endium_ingot/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/endium_ore/0.png b/front/public/images/large/HardcoreEnderExpansion/endium_ore/0.png deleted file mode 100644 index 73105ab738..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/endium_ore/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/endoplasm/0.png b/front/public/images/large/HardcoreEnderExpansion/endoplasm/0.png deleted file mode 100644 index 2dfe42f277..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/endoplasm/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/energy_cluster/0.png b/front/public/images/large/HardcoreEnderExpansion/energy_cluster/0.png deleted file mode 100644 index faae1b68bc..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/energy_cluster/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/energy_extraction_table/0.png b/front/public/images/large/HardcoreEnderExpansion/energy_extraction_table/0.png deleted file mode 100644 index 34a5688d48..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/energy_extraction_table/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/energy_wand/0.png b/front/public/images/large/HardcoreEnderExpansion/energy_wand/0.png deleted file mode 100644 index 0899812ba8..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/energy_wand/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/energy_wand_core/0.png b/front/public/images/large/HardcoreEnderExpansion/energy_wand_core/0.png deleted file mode 100644 index b592818b68..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/energy_wand_core/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/enhanced_brewing_stand/0.png b/front/public/images/large/HardcoreEnderExpansion/enhanced_brewing_stand/0.png deleted file mode 100644 index ece4d5c302..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/enhanced_brewing_stand/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/enhanced_brewing_stand_block/0.png b/front/public/images/large/HardcoreEnderExpansion/enhanced_brewing_stand_block/0.png deleted file mode 100644 index 49c405ec43..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/enhanced_brewing_stand_block/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/enhanced_ender_pearl/0.png b/front/public/images/large/HardcoreEnderExpansion/enhanced_ender_pearl/0.png deleted file mode 100644 index d748779a88..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/enhanced_ender_pearl/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/enhanced_tnt/0.png b/front/public/images/large/HardcoreEnderExpansion/enhanced_tnt/0.png deleted file mode 100644 index d3690b0417..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/enhanced_tnt/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/essence/0.png b/front/public/images/large/HardcoreEnderExpansion/essence/0.png deleted file mode 100644 index 0ea3f9b0a1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/essence/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/essence/1.png b/front/public/images/large/HardcoreEnderExpansion/essence/1.png deleted file mode 100644 index d2b0d8a8ae..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/essence/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/essence/2.png b/front/public/images/large/HardcoreEnderExpansion/essence/2.png deleted file mode 100644 index 7cfb725878..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/essence/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/essence_altar/0.png b/front/public/images/large/HardcoreEnderExpansion/essence_altar/0.png deleted file mode 100644 index cba07b470e..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/essence_altar/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/essence_altar/1.png b/front/public/images/large/HardcoreEnderExpansion/essence_altar/1.png deleted file mode 100644 index 4f13ca76cc..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/essence_altar/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/essence_altar/2.png b/front/public/images/large/HardcoreEnderExpansion/essence_altar/2.png deleted file mode 100644 index d694cb3aed..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/essence_altar/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/essence_altar/3.png b/front/public/images/large/HardcoreEnderExpansion/essence_altar/3.png deleted file mode 100644 index f5df6f32ff..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/essence_altar/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/exp_bottle_consistent/0.png b/front/public/images/large/HardcoreEnderExpansion/exp_bottle_consistent/0.png deleted file mode 100644 index fde648470b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/exp_bottle_consistent/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/experience_table/0.png b/front/public/images/large/HardcoreEnderExpansion/experience_table/0.png deleted file mode 100644 index 90f8816a36..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/experience_table/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/fire_shard/0.png b/front/public/images/large/HardcoreEnderExpansion/fire_shard/0.png deleted file mode 100644 index 5f8ef61a94..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/fire_shard/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ghost_amulet/0.png b/front/public/images/large/HardcoreEnderExpansion/ghost_amulet/0.png deleted file mode 100644 index 47187196f6..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ghost_amulet/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ghost_amulet/1.png b/front/public/images/large/HardcoreEnderExpansion/ghost_amulet/1.png deleted file mode 100644 index 10277f585a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ghost_amulet/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/igneous_rock/0.png b/front/public/images/large/HardcoreEnderExpansion/igneous_rock/0.png deleted file mode 100644 index bdd1ad7bbe..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/igneous_rock/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/igneous_rock_ore/0.png b/front/public/images/large/HardcoreEnderExpansion/igneous_rock_ore/0.png deleted file mode 100644 index f5932e9367..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/igneous_rock_ore/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/infestation_remedy/0.png b/front/public/images/large/HardcoreEnderExpansion/infestation_remedy/0.png deleted file mode 100644 index b840742185..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/infestation_remedy/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/instability_orb/0.png b/front/public/images/large/HardcoreEnderExpansion/instability_orb/0.png deleted file mode 100644 index 12b687035b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/instability_orb/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/instability_orb_ore/0.png b/front/public/images/large/HardcoreEnderExpansion/instability_orb_ore/0.png deleted file mode 100644 index 23d721265a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/instability_orb_ore/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/item_special_effects/0.png b/front/public/images/large/HardcoreEnderExpansion/item_special_effects/0.png deleted file mode 100644 index e728b6798a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/item_special_effects/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/knowledge_note/0.png b/front/public/images/large/HardcoreEnderExpansion/knowledge_note/0.png deleted file mode 100644 index 646b52d095..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/knowledge_note/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/laboratory_floor/0.png b/front/public/images/large/HardcoreEnderExpansion/laboratory_floor/0.png deleted file mode 100644 index d934ef0187..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/laboratory_floor/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/laboratory_glass/0.png b/front/public/images/large/HardcoreEnderExpansion/laboratory_glass/0.png deleted file mode 100644 index 8615577e63..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/laboratory_glass/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/laboratory_obsidian/0.png b/front/public/images/large/HardcoreEnderExpansion/laboratory_obsidian/0.png deleted file mode 100644 index 029131a107..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/laboratory_obsidian/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/laboratory_stairs/0.png b/front/public/images/large/HardcoreEnderExpansion/laboratory_stairs/0.png deleted file mode 100644 index be08f50993..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/laboratory_stairs/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/laser_beam/0.png b/front/public/images/large/HardcoreEnderExpansion/laser_beam/0.png deleted file mode 100644 index bd46ed9995..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/laser_beam/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/living_matter/0.png b/front/public/images/large/HardcoreEnderExpansion/living_matter/0.png deleted file mode 100644 index 3f036368fd..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/living_matter/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/0.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/0.png deleted file mode 100644 index fe7b8733fe..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/1.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/1.png deleted file mode 100644 index 88006a25f5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/2.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/2.png deleted file mode 100644 index ccf57f8143..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/3.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/3.png deleted file mode 100644 index ab4fe7bd89..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/4.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/4.png deleted file mode 100644 index a1c1626653..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/5.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/5.png deleted file mode 100644 index 917a1906cd..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/6.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/6.png deleted file mode 100644 index e389f596ef..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/6.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/7.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/7.png deleted file mode 100644 index 56d1548bcd..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/7.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/8.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/8.png deleted file mode 100644 index df322a58a4..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/8.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/music_disk/9.png b/front/public/images/large/HardcoreEnderExpansion/music_disk/9.png deleted file mode 100644 index 7da4978db2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/music_disk/9.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_end/0.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_end/0.png deleted file mode 100644 index 9ba78eb39e..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_end/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_fragment/0.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_fragment/0.png deleted file mode 100644 index dde6df2941..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_fragment/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_rod/0.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_rod/0.png deleted file mode 100644 index 6ccc019307..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_rod/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_special/0.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_special/0.png deleted file mode 100644 index 85e42b40a5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_special/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_special/1.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_special/1.png deleted file mode 100644 index 05311463d1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_special/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_special/2.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_special/2.png deleted file mode 100644 index 05d5151354..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_special/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/0.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/0.png deleted file mode 100644 index 85e42b40a5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/1.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/1.png deleted file mode 100644 index 05311463d1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/2.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/2.png deleted file mode 100644 index 05d5151354..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_special_glow/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/obsidian_stairs/0.png b/front/public/images/large/HardcoreEnderExpansion/obsidian_stairs/0.png deleted file mode 100644 index cf622b08fb..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/obsidian_stairs/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/0.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/0.png deleted file mode 100644 index 829587b4cd..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/1.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/1.png deleted file mode 100644 index 8d141b2789..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/10.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/10.png deleted file mode 100644 index ae5c1b55fa..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/10.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/11.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/11.png deleted file mode 100644 index c8b6e2a278..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/11.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/12.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/12.png deleted file mode 100644 index b8a2adbbc2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/12.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/13.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/13.png deleted file mode 100644 index ee601b082b..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/13.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/14.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/14.png deleted file mode 100644 index a9fdc3300f..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/14.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/15.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/15.png deleted file mode 100644 index a5bb19ce13..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/15.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/2.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/2.png deleted file mode 100644 index 3ce4bbddb9..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/3.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/3.png deleted file mode 100644 index 859b1315d2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/4.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/4.png deleted file mode 100644 index a132b64ff6..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/5.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/5.png deleted file mode 100644 index 3475edbd76..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/6.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/6.png deleted file mode 100644 index 9d9855ee25..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/6.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/7.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/7.png deleted file mode 100644 index 6463cc8f6d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/7.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/8.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/8.png deleted file mode 100644 index 521665b011..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/8.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/persegrit/9.png b/front/public/images/large/HardcoreEnderExpansion/persegrit/9.png deleted file mode 100644 index 3534099b26..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/persegrit/9.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/potion_of_instability/0.png b/front/public/images/large/HardcoreEnderExpansion/potion_of_instability/0.png deleted file mode 100644 index 6d343e101e..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/potion_of_instability/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/potion_of_instability/1.png b/front/public/images/large/HardcoreEnderExpansion/potion_of_instability/1.png deleted file mode 100644 index c3accc2cfc..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/potion_of_instability/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/potion_of_purity/0.png b/front/public/images/large/HardcoreEnderExpansion/potion_of_purity/0.png deleted file mode 100644 index 35375ee919..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/potion_of_purity/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/potion_of_purity/1.png b/front/public/images/large/HardcoreEnderExpansion/potion_of_purity/1.png deleted file mode 100644 index a27b28dc4e..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/potion_of_purity/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/0.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/0.png deleted file mode 100644 index 8d9d6a8644..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/1.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/1.png deleted file mode 100644 index c9037fbdda..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/2.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/2.png deleted file mode 100644 index e253590d69..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/3.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/3.png deleted file mode 100644 index aaf593146f..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/4.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/4.png deleted file mode 100644 index 2d6a2c56c1..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/5.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/5.png deleted file mode 100644 index 33d3220914..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_fence/0.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_fence/0.png deleted file mode 100644 index 472ded2f2c..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_fence/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_glow/0.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_glow/0.png deleted file mode 100644 index 7e766fc9d5..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_glow/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_slab/0.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_slab/0.png deleted file mode 100644 index 5f24d4271a..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_slab/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_smooth/0.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_smooth/0.png deleted file mode 100644 index 95e5221135..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_smooth/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_stairs/0.png b/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_stairs/0.png deleted file mode 100644 index 83e5a143fe..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/ravaged_brick_stairs/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/rune/0.png b/front/public/images/large/HardcoreEnderExpansion/rune/0.png deleted file mode 100644 index 7f2b2d984c..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/rune/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/rune/1.png b/front/public/images/large/HardcoreEnderExpansion/rune/1.png deleted file mode 100644 index 469afbf362..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/rune/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/rune/2.png b/front/public/images/large/HardcoreEnderExpansion/rune/2.png deleted file mode 100644 index 620157f1b6..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/rune/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/rune/3.png b/front/public/images/large/HardcoreEnderExpansion/rune/3.png deleted file mode 100644 index eb9a36f1b6..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/rune/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/rune/4.png b/front/public/images/large/HardcoreEnderExpansion/rune/4.png deleted file mode 100644 index 3d30613926..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/rune/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/rune/5.png b/front/public/images/large/HardcoreEnderExpansion/rune/5.png deleted file mode 100644 index 995ff72124..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/rune/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/schorching_pickaxe/0.png b/front/public/images/large/HardcoreEnderExpansion/schorching_pickaxe/0.png deleted file mode 100644 index b8c6cd3819..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/schorching_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/silverfish_blood/0.png b/front/public/images/large/HardcoreEnderExpansion/silverfish_blood/0.png deleted file mode 100644 index fb6e31d371..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/silverfish_blood/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spatial_dash_gem/0.png b/front/public/images/large/HardcoreEnderExpansion/spatial_dash_gem/0.png deleted file mode 100644 index 84bb12c484..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spatial_dash_gem/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/0.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/0.png deleted file mode 100644 index b084829147..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/1.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/1.png deleted file mode 100644 index 3c9be14431..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/10.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/10.png deleted file mode 100644 index aa73ca7f87..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/10.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/11.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/11.png deleted file mode 100644 index 23d5464c85..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/11.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/12.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/12.png deleted file mode 100644 index 6d54753de4..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/12.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/13.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/13.png deleted file mode 100644 index 0b2cb610dc..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/13.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/14.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/14.png deleted file mode 100644 index 2c8bc0c0b2..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/14.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/2.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/2.png deleted file mode 100644 index 3127796097..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/2.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/3.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/3.png deleted file mode 100644 index 23655c8178..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/3.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/4.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/4.png deleted file mode 100644 index f721cd0d43..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/4.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/5.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/5.png deleted file mode 100644 index 9cca54b301..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/5.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/6.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/6.png deleted file mode 100644 index f2a78b52ef..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/6.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/7.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/7.png deleted file mode 100644 index d87f632cb7..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/7.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/8.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/8.png deleted file mode 100644 index f6bec8aa77..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/8.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/9.png b/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/9.png deleted file mode 100644 index 983e41dbac..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spawn_eggs/9.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spectral_tear/0.png b/front/public/images/large/HardcoreEnderExpansion/spectral_tear/0.png deleted file mode 100644 index c7484535fb..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spectral_tear/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/sphalerite/0.png b/front/public/images/large/HardcoreEnderExpansion/sphalerite/0.png deleted file mode 100644 index 3415fdb87d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/sphalerite/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/sphalerite/1.png b/front/public/images/large/HardcoreEnderExpansion/sphalerite/1.png deleted file mode 100644 index 02ee40af8e..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/sphalerite/1.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spooky_leaves/0.png b/front/public/images/large/HardcoreEnderExpansion/spooky_leaves/0.png deleted file mode 100644 index 83ad9ffdd6..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spooky_leaves/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/spooky_log/0.png b/front/public/images/large/HardcoreEnderExpansion/spooky_log/0.png deleted file mode 100644 index 9fca2e146d..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/spooky_log/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/stardust/0.png b/front/public/images/large/HardcoreEnderExpansion/stardust/0.png deleted file mode 100644 index 991cbbd280..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/stardust/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/stardust_ore/0.png b/front/public/images/large/HardcoreEnderExpansion/stardust_ore/0.png deleted file mode 100644 index 8f1c2dd2f0..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/stardust_ore/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/temple_caller/0.png b/front/public/images/large/HardcoreEnderExpansion/temple_caller/0.png deleted file mode 100644 index bfdbb1dd03..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/temple_caller/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/temple_caller/50.png b/front/public/images/large/HardcoreEnderExpansion/temple_caller/50.png deleted file mode 100644 index bfdbb1dd03..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/temple_caller/50.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/temple_end_portal/0.png b/front/public/images/large/HardcoreEnderExpansion/temple_end_portal/0.png deleted file mode 100644 index 84ca7e67bd..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/temple_end_portal/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/transference_gem/0.png b/front/public/images/large/HardcoreEnderExpansion/transference_gem/0.png deleted file mode 100644 index 36da37a570..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/transference_gem/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/transport_beacon/0.png b/front/public/images/large/HardcoreEnderExpansion/transport_beacon/0.png deleted file mode 100644 index 38cb2a5a83..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/transport_beacon/0.png and /dev/null differ diff --git a/front/public/images/large/HardcoreEnderExpansion/void_chest/0.png b/front/public/images/large/HardcoreEnderExpansion/void_chest/0.png deleted file mode 100644 index 703cbf6f86..0000000000 Binary files a/front/public/images/large/HardcoreEnderExpansion/void_chest/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockAlloy/0.png b/front/public/images/large/IC2/blockAlloy/0.png deleted file mode 100644 index f946731887..0000000000 Binary files a/front/public/images/large/IC2/blockAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockAlloyGlass/0.png b/front/public/images/large/IC2/blockAlloyGlass/0.png deleted file mode 100644 index 9e9f49a046..0000000000 Binary files a/front/public/images/large/IC2/blockAlloyGlass/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockBarrel/0.png b/front/public/images/large/IC2/blockBarrel/0.png deleted file mode 100644 index 60dff3a187..0000000000 Binary files a/front/public/images/large/IC2/blockBarrel/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockBasalt/0.png b/front/public/images/large/IC2/blockBasalt/0.png deleted file mode 100644 index 3e54f64ffb..0000000000 Binary files a/front/public/images/large/IC2/blockBasalt/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockCable/0.png b/front/public/images/large/IC2/blockCable/0.png deleted file mode 100644 index d99030a695..0000000000 Binary files a/front/public/images/large/IC2/blockCable/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockChargepad/0.png b/front/public/images/large/IC2/blockChargepad/0.png deleted file mode 100644 index b31455b6a6..0000000000 Binary files a/front/public/images/large/IC2/blockChargepad/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockChargepad/1.png b/front/public/images/large/IC2/blockChargepad/1.png deleted file mode 100644 index 9d5c7a67f8..0000000000 Binary files a/front/public/images/large/IC2/blockChargepad/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockChargepad/2.png b/front/public/images/large/IC2/blockChargepad/2.png deleted file mode 100644 index 48855a3bb1..0000000000 Binary files a/front/public/images/large/IC2/blockChargepad/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockChargepad/3.png b/front/public/images/large/IC2/blockChargepad/3.png deleted file mode 100644 index 06b69cf182..0000000000 Binary files a/front/public/images/large/IC2/blockChargepad/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockCrop/0.png b/front/public/images/large/IC2/blockCrop/0.png deleted file mode 100644 index 7e9f97014f..0000000000 Binary files a/front/public/images/large/IC2/blockCrop/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockDoorAlloy/0.png b/front/public/images/large/IC2/blockDoorAlloy/0.png deleted file mode 100644 index dae5c0cf77..0000000000 Binary files a/front/public/images/large/IC2/blockDoorAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockDynamite/0.png b/front/public/images/large/IC2/blockDynamite/0.png deleted file mode 100644 index e2e52619c1..0000000000 Binary files a/front/public/images/large/IC2/blockDynamite/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockDynamiteRemote/0.png b/front/public/images/large/IC2/blockDynamiteRemote/0.png deleted file mode 100644 index 93965ecec8..0000000000 Binary files a/front/public/images/large/IC2/blockDynamiteRemote/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/0.png b/front/public/images/large/IC2/blockElectric/0.png deleted file mode 100644 index 32d49079b7..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/1.png b/front/public/images/large/IC2/blockElectric/1.png deleted file mode 100644 index f6835a512c..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/2.png b/front/public/images/large/IC2/blockElectric/2.png deleted file mode 100644 index 497f6b6ece..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/3.png b/front/public/images/large/IC2/blockElectric/3.png deleted file mode 100644 index 403cb7685b..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/4.png b/front/public/images/large/IC2/blockElectric/4.png deleted file mode 100644 index a302ad8818..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/5.png b/front/public/images/large/IC2/blockElectric/5.png deleted file mode 100644 index cc18e3ecb1..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/6.png b/front/public/images/large/IC2/blockElectric/6.png deleted file mode 100644 index 17f291ce94..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockElectric/7.png b/front/public/images/large/IC2/blockElectric/7.png deleted file mode 100644 index d219e160d7..0000000000 Binary files a/front/public/images/large/IC2/blockElectric/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockFenceIron/0.png b/front/public/images/large/IC2/blockFenceIron/0.png deleted file mode 100644 index 16c398d075..0000000000 Binary files a/front/public/images/large/IC2/blockFenceIron/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockFoam/0.png b/front/public/images/large/IC2/blockFoam/0.png deleted file mode 100644 index b1f85db78d..0000000000 Binary files a/front/public/images/large/IC2/blockFoam/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/0.png b/front/public/images/large/IC2/blockGenerator/0.png deleted file mode 100644 index f27baf3b11..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/1.png b/front/public/images/large/IC2/blockGenerator/1.png deleted file mode 100644 index ebbf5eaa6b..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/2.png b/front/public/images/large/IC2/blockGenerator/2.png deleted file mode 100644 index 8d3931777b..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/3.png b/front/public/images/large/IC2/blockGenerator/3.png deleted file mode 100644 index c5dc41a5e2..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/4.png b/front/public/images/large/IC2/blockGenerator/4.png deleted file mode 100644 index df610f6710..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/5.png b/front/public/images/large/IC2/blockGenerator/5.png deleted file mode 100644 index f0479d7afe..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/6.png b/front/public/images/large/IC2/blockGenerator/6.png deleted file mode 100644 index 23ba7da672..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/7.png b/front/public/images/large/IC2/blockGenerator/7.png deleted file mode 100644 index 669062bacc..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/8.png b/front/public/images/large/IC2/blockGenerator/8.png deleted file mode 100644 index 0d96c13cf9..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockGenerator/9.png b/front/public/images/large/IC2/blockGenerator/9.png deleted file mode 100644 index 7a69c49919..0000000000 Binary files a/front/public/images/large/IC2/blockGenerator/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockHarz/0.png b/front/public/images/large/IC2/blockHarz/0.png deleted file mode 100644 index fd931f76e7..0000000000 Binary files a/front/public/images/large/IC2/blockHarz/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockHeatGenerator/0.png b/front/public/images/large/IC2/blockHeatGenerator/0.png deleted file mode 100644 index fc2924e67e..0000000000 Binary files a/front/public/images/large/IC2/blockHeatGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockHeatGenerator/1.png b/front/public/images/large/IC2/blockHeatGenerator/1.png deleted file mode 100644 index 0f79c5c649..0000000000 Binary files a/front/public/images/large/IC2/blockHeatGenerator/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockHeatGenerator/2.png b/front/public/images/large/IC2/blockHeatGenerator/2.png deleted file mode 100644 index d0e47ffc64..0000000000 Binary files a/front/public/images/large/IC2/blockHeatGenerator/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockHeatGenerator/3.png b/front/public/images/large/IC2/blockHeatGenerator/3.png deleted file mode 100644 index ecbf704a07..0000000000 Binary files a/front/public/images/large/IC2/blockHeatGenerator/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockITNT/0.png b/front/public/images/large/IC2/blockITNT/0.png deleted file mode 100644 index 8edba6bca5..0000000000 Binary files a/front/public/images/large/IC2/blockITNT/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockIronScaffold/0.png b/front/public/images/large/IC2/blockIronScaffold/0.png deleted file mode 100644 index 68dbc2f7a3..0000000000 Binary files a/front/public/images/large/IC2/blockIronScaffold/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockKineticGenerator/0.png b/front/public/images/large/IC2/blockKineticGenerator/0.png deleted file mode 100644 index 7a69c49919..0000000000 Binary files a/front/public/images/large/IC2/blockKineticGenerator/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockKineticGenerator/1.png b/front/public/images/large/IC2/blockKineticGenerator/1.png deleted file mode 100644 index 964c247ea4..0000000000 Binary files a/front/public/images/large/IC2/blockKineticGenerator/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockKineticGenerator/2.png b/front/public/images/large/IC2/blockKineticGenerator/2.png deleted file mode 100644 index da8960a2f6..0000000000 Binary files a/front/public/images/large/IC2/blockKineticGenerator/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockKineticGenerator/3.png b/front/public/images/large/IC2/blockKineticGenerator/3.png deleted file mode 100644 index c874b52ca1..0000000000 Binary files a/front/public/images/large/IC2/blockKineticGenerator/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockKineticGenerator/4.png b/front/public/images/large/IC2/blockKineticGenerator/4.png deleted file mode 100644 index df610f6710..0000000000 Binary files a/front/public/images/large/IC2/blockKineticGenerator/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockKineticGenerator/5.png b/front/public/images/large/IC2/blockKineticGenerator/5.png deleted file mode 100644 index 48c29d8f52..0000000000 Binary files a/front/public/images/large/IC2/blockKineticGenerator/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockLuminator/0.png b/front/public/images/large/IC2/blockLuminator/0.png deleted file mode 100644 index a1e6ef3207..0000000000 Binary files a/front/public/images/large/IC2/blockLuminator/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockLuminatorDark/0.png b/front/public/images/large/IC2/blockLuminatorDark/0.png deleted file mode 100644 index 93175874b4..0000000000 Binary files a/front/public/images/large/IC2/blockLuminatorDark/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/0.png b/front/public/images/large/IC2/blockMachine/0.png deleted file mode 100644 index 45ec734fff..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/1.png b/front/public/images/large/IC2/blockMachine/1.png deleted file mode 100644 index aab651b7a9..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/10.png b/front/public/images/large/IC2/blockMachine/10.png deleted file mode 100644 index 46123d2605..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/11.png b/front/public/images/large/IC2/blockMachine/11.png deleted file mode 100644 index 6267dde6ed..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/11.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/12.png b/front/public/images/large/IC2/blockMachine/12.png deleted file mode 100644 index 7061c696bd..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/12.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/13.png b/front/public/images/large/IC2/blockMachine/13.png deleted file mode 100644 index 08c413d2b0..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/13.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/14.png b/front/public/images/large/IC2/blockMachine/14.png deleted file mode 100644 index 470bb59a82..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/14.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/15.png b/front/public/images/large/IC2/blockMachine/15.png deleted file mode 100644 index 2d74abd8c3..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/15.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/2.png b/front/public/images/large/IC2/blockMachine/2.png deleted file mode 100644 index 1c57f0cafb..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/3.png b/front/public/images/large/IC2/blockMachine/3.png deleted file mode 100644 index 8e0c083db2..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/4.png b/front/public/images/large/IC2/blockMachine/4.png deleted file mode 100644 index 07aa595d6a..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/5.png b/front/public/images/large/IC2/blockMachine/5.png deleted file mode 100644 index 10321ab40b..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/6.png b/front/public/images/large/IC2/blockMachine/6.png deleted file mode 100644 index 7f59cfc69d..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/7.png b/front/public/images/large/IC2/blockMachine/7.png deleted file mode 100644 index 4ff91fe0af..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/8.png b/front/public/images/large/IC2/blockMachine/8.png deleted file mode 100644 index 3dd5af3350..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine/9.png b/front/public/images/large/IC2/blockMachine/9.png deleted file mode 100644 index 9e8518c9e0..0000000000 Binary files a/front/public/images/large/IC2/blockMachine/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/0.png b/front/public/images/large/IC2/blockMachine2/0.png deleted file mode 100644 index ca4fe583c1..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/1.png b/front/public/images/large/IC2/blockMachine2/1.png deleted file mode 100644 index b39b519278..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/10.png b/front/public/images/large/IC2/blockMachine2/10.png deleted file mode 100644 index 0144be9a0a..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/11.png b/front/public/images/large/IC2/blockMachine2/11.png deleted file mode 100644 index 2d989b44bb..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/11.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/12.png b/front/public/images/large/IC2/blockMachine2/12.png deleted file mode 100644 index cbd7cecfbf..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/12.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/13.png b/front/public/images/large/IC2/blockMachine2/13.png deleted file mode 100644 index c6a921c2ba..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/13.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/14.png b/front/public/images/large/IC2/blockMachine2/14.png deleted file mode 100644 index 90a3b380e5..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/14.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/15.png b/front/public/images/large/IC2/blockMachine2/15.png deleted file mode 100644 index 76a998d1e0..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/15.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/2.png b/front/public/images/large/IC2/blockMachine2/2.png deleted file mode 100644 index 1d306eca36..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/3.png b/front/public/images/large/IC2/blockMachine2/3.png deleted file mode 100644 index 989daf0586..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/4.png b/front/public/images/large/IC2/blockMachine2/4.png deleted file mode 100644 index fb4b4ad791..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/5.png b/front/public/images/large/IC2/blockMachine2/5.png deleted file mode 100644 index 1d41a863cc..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/6.png b/front/public/images/large/IC2/blockMachine2/6.png deleted file mode 100644 index 079e6c61bd..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/7.png b/front/public/images/large/IC2/blockMachine2/7.png deleted file mode 100644 index cc711fae05..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/8.png b/front/public/images/large/IC2/blockMachine2/8.png deleted file mode 100644 index e1a411d20e..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine2/9.png b/front/public/images/large/IC2/blockMachine2/9.png deleted file mode 100644 index 6b180d01f5..0000000000 Binary files a/front/public/images/large/IC2/blockMachine2/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/0.png b/front/public/images/large/IC2/blockMachine3/0.png deleted file mode 100644 index 095b426384..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/1.png b/front/public/images/large/IC2/blockMachine3/1.png deleted file mode 100644 index 47f47ce939..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/2.png b/front/public/images/large/IC2/blockMachine3/2.png deleted file mode 100644 index 2ad41c8e70..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/3.png b/front/public/images/large/IC2/blockMachine3/3.png deleted file mode 100644 index 9269f20a56..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/4.png b/front/public/images/large/IC2/blockMachine3/4.png deleted file mode 100644 index a8b4b6e0ef..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/5.png b/front/public/images/large/IC2/blockMachine3/5.png deleted file mode 100644 index 278a87e7f3..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/6.png b/front/public/images/large/IC2/blockMachine3/6.png deleted file mode 100644 index bc5a96233c..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/7.png b/front/public/images/large/IC2/blockMachine3/7.png deleted file mode 100644 index 0ee356af7e..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMachine3/8.png b/front/public/images/large/IC2/blockMachine3/8.png deleted file mode 100644 index 1e3778c709..0000000000 Binary files a/front/public/images/large/IC2/blockMachine3/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMetal/0.png b/front/public/images/large/IC2/blockMetal/0.png deleted file mode 100644 index a4d80104a3..0000000000 Binary files a/front/public/images/large/IC2/blockMetal/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMetal/1.png b/front/public/images/large/IC2/blockMetal/1.png deleted file mode 100644 index b5c646dd9b..0000000000 Binary files a/front/public/images/large/IC2/blockMetal/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMetal/2.png b/front/public/images/large/IC2/blockMetal/2.png deleted file mode 100644 index 613d25c974..0000000000 Binary files a/front/public/images/large/IC2/blockMetal/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMetal/3.png b/front/public/images/large/IC2/blockMetal/3.png deleted file mode 100644 index 693be9b84e..0000000000 Binary files a/front/public/images/large/IC2/blockMetal/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMetal/4.png b/front/public/images/large/IC2/blockMetal/4.png deleted file mode 100644 index 318fb75175..0000000000 Binary files a/front/public/images/large/IC2/blockMetal/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMetal/5.png b/front/public/images/large/IC2/blockMetal/5.png deleted file mode 100644 index 8c91d48bba..0000000000 Binary files a/front/public/images/large/IC2/blockMetal/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMiningPipe/0.png b/front/public/images/large/IC2/blockMiningPipe/0.png deleted file mode 100644 index 015480e188..0000000000 Binary files a/front/public/images/large/IC2/blockMiningPipe/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockMiningTip/0.png b/front/public/images/large/IC2/blockMiningTip/0.png deleted file mode 100644 index 232fe7404b..0000000000 Binary files a/front/public/images/large/IC2/blockMiningTip/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockNuke/0.png b/front/public/images/large/IC2/blockNuke/0.png deleted file mode 100644 index 06f3b45df0..0000000000 Binary files a/front/public/images/large/IC2/blockNuke/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockOreCopper/0.png b/front/public/images/large/IC2/blockOreCopper/0.png deleted file mode 100644 index 8825a98453..0000000000 Binary files a/front/public/images/large/IC2/blockOreCopper/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockOreLead/0.png b/front/public/images/large/IC2/blockOreLead/0.png deleted file mode 100644 index 101fa0f5d7..0000000000 Binary files a/front/public/images/large/IC2/blockOreLead/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockOreTin/0.png b/front/public/images/large/IC2/blockOreTin/0.png deleted file mode 100644 index f8b57e3aff..0000000000 Binary files a/front/public/images/large/IC2/blockOreTin/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockOreUran/0.png b/front/public/images/large/IC2/blockOreUran/0.png deleted file mode 100644 index c0d7f2c0d7..0000000000 Binary files a/front/public/images/large/IC2/blockOreUran/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockPersonal/0.png b/front/public/images/large/IC2/blockPersonal/0.png deleted file mode 100644 index 87b82db080..0000000000 Binary files a/front/public/images/large/IC2/blockPersonal/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockPersonal/1.png b/front/public/images/large/IC2/blockPersonal/1.png deleted file mode 100644 index 59da5f4ffd..0000000000 Binary files a/front/public/images/large/IC2/blockPersonal/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockPersonal/2.png b/front/public/images/large/IC2/blockPersonal/2.png deleted file mode 100644 index 601eccd9b4..0000000000 Binary files a/front/public/images/large/IC2/blockPersonal/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockReactorAccessHatch/0.png b/front/public/images/large/IC2/blockReactorAccessHatch/0.png deleted file mode 100644 index fffdea49c7..0000000000 Binary files a/front/public/images/large/IC2/blockReactorAccessHatch/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockReactorChamber/0.png b/front/public/images/large/IC2/blockReactorChamber/0.png deleted file mode 100644 index ad98e3e714..0000000000 Binary files a/front/public/images/large/IC2/blockReactorChamber/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockReactorFluidPort/0.png b/front/public/images/large/IC2/blockReactorFluidPort/0.png deleted file mode 100644 index 92edaaa2b4..0000000000 Binary files a/front/public/images/large/IC2/blockReactorFluidPort/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockReactorRedstonePort/0.png b/front/public/images/large/IC2/blockReactorRedstonePort/0.png deleted file mode 100644 index aac3138278..0000000000 Binary files a/front/public/images/large/IC2/blockReactorRedstonePort/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockReinforcedFoam/0.png b/front/public/images/large/IC2/blockReinforcedFoam/0.png deleted file mode 100644 index b33e037337..0000000000 Binary files a/front/public/images/large/IC2/blockReinforcedFoam/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockRubLeaves/0.png b/front/public/images/large/IC2/blockRubLeaves/0.png deleted file mode 100644 index 5504e64e6c..0000000000 Binary files a/front/public/images/large/IC2/blockRubLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockRubSapling/0.png b/front/public/images/large/IC2/blockRubSapling/0.png deleted file mode 100644 index 88e7d37655..0000000000 Binary files a/front/public/images/large/IC2/blockRubSapling/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockRubWood/0.png b/front/public/images/large/IC2/blockRubWood/0.png deleted file mode 100644 index ead91f9d99..0000000000 Binary files a/front/public/images/large/IC2/blockRubWood/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockRubber/0.png b/front/public/images/large/IC2/blockRubber/0.png deleted file mode 100644 index ac8cd3837d..0000000000 Binary files a/front/public/images/large/IC2/blockRubber/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockScaffold/0.png b/front/public/images/large/IC2/blockScaffold/0.png deleted file mode 100644 index 9f82db161d..0000000000 Binary files a/front/public/images/large/IC2/blockScaffold/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/0.png b/front/public/images/large/IC2/blockWall/0.png deleted file mode 100644 index 156f5a18bb..0000000000 Binary files a/front/public/images/large/IC2/blockWall/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/1.png b/front/public/images/large/IC2/blockWall/1.png deleted file mode 100644 index 20b54e2c5e..0000000000 Binary files a/front/public/images/large/IC2/blockWall/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/10.png b/front/public/images/large/IC2/blockWall/10.png deleted file mode 100644 index a88eaf0197..0000000000 Binary files a/front/public/images/large/IC2/blockWall/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/11.png b/front/public/images/large/IC2/blockWall/11.png deleted file mode 100644 index 375a58f7ec..0000000000 Binary files a/front/public/images/large/IC2/blockWall/11.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/12.png b/front/public/images/large/IC2/blockWall/12.png deleted file mode 100644 index e77a419cb8..0000000000 Binary files a/front/public/images/large/IC2/blockWall/12.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/13.png b/front/public/images/large/IC2/blockWall/13.png deleted file mode 100644 index 36752286be..0000000000 Binary files a/front/public/images/large/IC2/blockWall/13.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/14.png b/front/public/images/large/IC2/blockWall/14.png deleted file mode 100644 index 5c328f204f..0000000000 Binary files a/front/public/images/large/IC2/blockWall/14.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/15.png b/front/public/images/large/IC2/blockWall/15.png deleted file mode 100644 index 63b0817dc2..0000000000 Binary files a/front/public/images/large/IC2/blockWall/15.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/2.png b/front/public/images/large/IC2/blockWall/2.png deleted file mode 100644 index ac3a1b17b0..0000000000 Binary files a/front/public/images/large/IC2/blockWall/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/3.png b/front/public/images/large/IC2/blockWall/3.png deleted file mode 100644 index 1a1d1386ba..0000000000 Binary files a/front/public/images/large/IC2/blockWall/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/4.png b/front/public/images/large/IC2/blockWall/4.png deleted file mode 100644 index 4ca160570e..0000000000 Binary files a/front/public/images/large/IC2/blockWall/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/5.png b/front/public/images/large/IC2/blockWall/5.png deleted file mode 100644 index 03b21a6101..0000000000 Binary files a/front/public/images/large/IC2/blockWall/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/6.png b/front/public/images/large/IC2/blockWall/6.png deleted file mode 100644 index be0a665fa1..0000000000 Binary files a/front/public/images/large/IC2/blockWall/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/7.png b/front/public/images/large/IC2/blockWall/7.png deleted file mode 100644 index ceb87cb830..0000000000 Binary files a/front/public/images/large/IC2/blockWall/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/8.png b/front/public/images/large/IC2/blockWall/8.png deleted file mode 100644 index feb25c0f7e..0000000000 Binary files a/front/public/images/large/IC2/blockWall/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockWall/9.png b/front/public/images/large/IC2/blockWall/9.png deleted file mode 100644 index 0d29e5c1a5..0000000000 Binary files a/front/public/images/large/IC2/blockWall/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/blockreactorvessel/0.png b/front/public/images/large/IC2/blockreactorvessel/0.png deleted file mode 100644 index 8c393ec723..0000000000 Binary files a/front/public/images/large/IC2/blockreactorvessel/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidBiogas/0.png b/front/public/images/large/IC2/fluidBiogas/0.png deleted file mode 100644 index 58c96bde53..0000000000 Binary files a/front/public/images/large/IC2/fluidBiogas/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidBiomass/0.png b/front/public/images/large/IC2/fluidBiomass/0.png deleted file mode 100644 index 716c78c336..0000000000 Binary files a/front/public/images/large/IC2/fluidBiomass/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidConstructionFoam/0.png b/front/public/images/large/IC2/fluidConstructionFoam/0.png deleted file mode 100644 index 70abc03a59..0000000000 Binary files a/front/public/images/large/IC2/fluidConstructionFoam/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidCoolant/0.png b/front/public/images/large/IC2/fluidCoolant/0.png deleted file mode 100644 index 341e5bd78d..0000000000 Binary files a/front/public/images/large/IC2/fluidCoolant/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidDistilledWater/0.png b/front/public/images/large/IC2/fluidDistilledWater/0.png deleted file mode 100644 index 3d2db84f27..0000000000 Binary files a/front/public/images/large/IC2/fluidDistilledWater/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidHotCoolant/0.png b/front/public/images/large/IC2/fluidHotCoolant/0.png deleted file mode 100644 index 1b73d378d1..0000000000 Binary files a/front/public/images/large/IC2/fluidHotCoolant/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidHotWater/0.png b/front/public/images/large/IC2/fluidHotWater/0.png deleted file mode 100644 index a6d1504f77..0000000000 Binary files a/front/public/images/large/IC2/fluidHotWater/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidPahoehoeLava/0.png b/front/public/images/large/IC2/fluidPahoehoeLava/0.png deleted file mode 100644 index 1c6ecba876..0000000000 Binary files a/front/public/images/large/IC2/fluidPahoehoeLava/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidSteam/0.png b/front/public/images/large/IC2/fluidSteam/0.png deleted file mode 100644 index 4d512fa7c8..0000000000 Binary files a/front/public/images/large/IC2/fluidSteam/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidSuperheatedSteam/0.png b/front/public/images/large/IC2/fluidSuperheatedSteam/0.png deleted file mode 100644 index 73d7066c87..0000000000 Binary files a/front/public/images/large/IC2/fluidSuperheatedSteam/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/fluidUuMatter/0.png b/front/public/images/large/IC2/fluidUuMatter/0.png deleted file mode 100644 index a8c2981b36..0000000000 Binary files a/front/public/images/large/IC2/fluidUuMatter/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemAdvBat/1.png b/front/public/images/large/IC2/itemAdvBat/1.png deleted file mode 100644 index 421f1ae0c8..0000000000 Binary files a/front/public/images/large/IC2/itemAdvBat/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemAdvBat/26.png b/front/public/images/large/IC2/itemAdvBat/26.png deleted file mode 100644 index 4d764228cf..0000000000 Binary files a/front/public/images/large/IC2/itemAdvBat/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemAdvIronBlockCuttingBlade/0.png b/front/public/images/large/IC2/itemAdvIronBlockCuttingBlade/0.png deleted file mode 100644 index dc445f0e07..0000000000 Binary files a/front/public/images/large/IC2/itemAdvIronBlockCuttingBlade/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorAdvBatpack/1.png b/front/public/images/large/IC2/itemArmorAdvBatpack/1.png deleted file mode 100644 index 707fc50687..0000000000 Binary files a/front/public/images/large/IC2/itemArmorAdvBatpack/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorAdvBatpack/27.png b/front/public/images/large/IC2/itemArmorAdvBatpack/27.png deleted file mode 100644 index 707fc50687..0000000000 Binary files a/front/public/images/large/IC2/itemArmorAdvBatpack/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorAlloyChestplate/0.png b/front/public/images/large/IC2/itemArmorAlloyChestplate/0.png deleted file mode 100644 index c187b00376..0000000000 Binary files a/front/public/images/large/IC2/itemArmorAlloyChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorBatpack/1.png b/front/public/images/large/IC2/itemArmorBatpack/1.png deleted file mode 100644 index 39c458cfcf..0000000000 Binary files a/front/public/images/large/IC2/itemArmorBatpack/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorBatpack/27.png b/front/public/images/large/IC2/itemArmorBatpack/27.png deleted file mode 100644 index 39c458cfcf..0000000000 Binary files a/front/public/images/large/IC2/itemArmorBatpack/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorBronzeBoots/0.png b/front/public/images/large/IC2/itemArmorBronzeBoots/0.png deleted file mode 100644 index 414f80688c..0000000000 Binary files a/front/public/images/large/IC2/itemArmorBronzeBoots/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorBronzeChestplate/0.png b/front/public/images/large/IC2/itemArmorBronzeChestplate/0.png deleted file mode 100644 index bd383c6d6a..0000000000 Binary files a/front/public/images/large/IC2/itemArmorBronzeChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorBronzeHelmet/0.png b/front/public/images/large/IC2/itemArmorBronzeHelmet/0.png deleted file mode 100644 index 1341081a36..0000000000 Binary files a/front/public/images/large/IC2/itemArmorBronzeHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorBronzeLegs/0.png b/front/public/images/large/IC2/itemArmorBronzeLegs/0.png deleted file mode 100644 index f7671ff7bf..0000000000 Binary files a/front/public/images/large/IC2/itemArmorBronzeLegs/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorCFPack/1.png b/front/public/images/large/IC2/itemArmorCFPack/1.png deleted file mode 100644 index 241c423e32..0000000000 Binary files a/front/public/images/large/IC2/itemArmorCFPack/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorCFPack/27.png b/front/public/images/large/IC2/itemArmorCFPack/27.png deleted file mode 100644 index 241c423e32..0000000000 Binary files a/front/public/images/large/IC2/itemArmorCFPack/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorEnergypack/1.png b/front/public/images/large/IC2/itemArmorEnergypack/1.png deleted file mode 100644 index e86d266fd5..0000000000 Binary files a/front/public/images/large/IC2/itemArmorEnergypack/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorEnergypack/27.png b/front/public/images/large/IC2/itemArmorEnergypack/27.png deleted file mode 100644 index e86d266fd5..0000000000 Binary files a/front/public/images/large/IC2/itemArmorEnergypack/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorHazmatChestplate/0.png b/front/public/images/large/IC2/itemArmorHazmatChestplate/0.png deleted file mode 100644 index 52b62610d5..0000000000 Binary files a/front/public/images/large/IC2/itemArmorHazmatChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorHazmatHelmet/0.png b/front/public/images/large/IC2/itemArmorHazmatHelmet/0.png deleted file mode 100644 index 358b5e7b96..0000000000 Binary files a/front/public/images/large/IC2/itemArmorHazmatHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorHazmatLeggings/0.png b/front/public/images/large/IC2/itemArmorHazmatLeggings/0.png deleted file mode 100644 index 2b6796f124..0000000000 Binary files a/front/public/images/large/IC2/itemArmorHazmatLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorJetpack/1.png b/front/public/images/large/IC2/itemArmorJetpack/1.png deleted file mode 100644 index fd8840e6e4..0000000000 Binary files a/front/public/images/large/IC2/itemArmorJetpack/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorJetpack/27.png b/front/public/images/large/IC2/itemArmorJetpack/27.png deleted file mode 100644 index fd8840e6e4..0000000000 Binary files a/front/public/images/large/IC2/itemArmorJetpack/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorJetpackElectric/1.png b/front/public/images/large/IC2/itemArmorJetpackElectric/1.png deleted file mode 100644 index b3ca963d7a..0000000000 Binary files a/front/public/images/large/IC2/itemArmorJetpackElectric/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorJetpackElectric/27.png b/front/public/images/large/IC2/itemArmorJetpackElectric/27.png deleted file mode 100644 index b3ca963d7a..0000000000 Binary files a/front/public/images/large/IC2/itemArmorJetpackElectric/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoBoots/1.png b/front/public/images/large/IC2/itemArmorNanoBoots/1.png deleted file mode 100644 index 3f5081e8e3..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoBoots/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoBoots/27.png b/front/public/images/large/IC2/itemArmorNanoBoots/27.png deleted file mode 100644 index 3f5081e8e3..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoBoots/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoChestplate/1.png b/front/public/images/large/IC2/itemArmorNanoChestplate/1.png deleted file mode 100644 index b1aebb7365..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoChestplate/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoChestplate/27.png b/front/public/images/large/IC2/itemArmorNanoChestplate/27.png deleted file mode 100644 index b1aebb7365..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoChestplate/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoHelmet/1.png b/front/public/images/large/IC2/itemArmorNanoHelmet/1.png deleted file mode 100644 index 431f9c34b1..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoHelmet/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoHelmet/27.png b/front/public/images/large/IC2/itemArmorNanoHelmet/27.png deleted file mode 100644 index 431f9c34b1..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoHelmet/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoLegs/1.png b/front/public/images/large/IC2/itemArmorNanoLegs/1.png deleted file mode 100644 index 13ac45aeee..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoLegs/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorNanoLegs/27.png b/front/public/images/large/IC2/itemArmorNanoLegs/27.png deleted file mode 100644 index 13ac45aeee..0000000000 Binary files a/front/public/images/large/IC2/itemArmorNanoLegs/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumBoots/1.png b/front/public/images/large/IC2/itemArmorQuantumBoots/1.png deleted file mode 100644 index e3ae6240b3..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumBoots/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumBoots/27.png b/front/public/images/large/IC2/itemArmorQuantumBoots/27.png deleted file mode 100644 index e3ae6240b3..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumBoots/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumChestplate/1.png b/front/public/images/large/IC2/itemArmorQuantumChestplate/1.png deleted file mode 100644 index 722582cb1d..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumChestplate/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumChestplate/27.png b/front/public/images/large/IC2/itemArmorQuantumChestplate/27.png deleted file mode 100644 index 722582cb1d..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumChestplate/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumHelmet/1.png b/front/public/images/large/IC2/itemArmorQuantumHelmet/1.png deleted file mode 100644 index 34aabdfcde..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumHelmet/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumHelmet/27.png b/front/public/images/large/IC2/itemArmorQuantumHelmet/27.png deleted file mode 100644 index 34aabdfcde..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumHelmet/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumLegs/1.png b/front/public/images/large/IC2/itemArmorQuantumLegs/1.png deleted file mode 100644 index e8e1e06a18..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumLegs/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorQuantumLegs/27.png b/front/public/images/large/IC2/itemArmorQuantumLegs/27.png deleted file mode 100644 index e8e1e06a18..0000000000 Binary files a/front/public/images/large/IC2/itemArmorQuantumLegs/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemArmorRubBoots/0.png b/front/public/images/large/IC2/itemArmorRubBoots/0.png deleted file mode 100644 index 33c49e20d9..0000000000 Binary files a/front/public/images/large/IC2/itemArmorRubBoots/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBarrel/0.png b/front/public/images/large/IC2/itemBarrel/0.png deleted file mode 100644 index 3395136fe1..0000000000 Binary files a/front/public/images/large/IC2/itemBarrel/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeAdv/1.png b/front/public/images/large/IC2/itemBatChargeAdv/1.png deleted file mode 100644 index 4239927075..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeAdv/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeAdv/26.png b/front/public/images/large/IC2/itemBatChargeAdv/26.png deleted file mode 100644 index bedabcfabf..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeAdv/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeCrystal/1.png b/front/public/images/large/IC2/itemBatChargeCrystal/1.png deleted file mode 100644 index ed79e68553..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeCrystal/26.png b/front/public/images/large/IC2/itemBatChargeCrystal/26.png deleted file mode 100644 index 01b4f59ff7..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeCrystal/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeLamaCrystal/1.png b/front/public/images/large/IC2/itemBatChargeLamaCrystal/1.png deleted file mode 100644 index a472979816..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeLamaCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeLamaCrystal/26.png b/front/public/images/large/IC2/itemBatChargeLamaCrystal/26.png deleted file mode 100644 index dedd0bf020..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeLamaCrystal/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeRE/1.png b/front/public/images/large/IC2/itemBatChargeRE/1.png deleted file mode 100644 index 92029a6070..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeRE/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatChargeRE/26.png b/front/public/images/large/IC2/itemBatChargeRE/26.png deleted file mode 100644 index ba4a6547f2..0000000000 Binary files a/front/public/images/large/IC2/itemBatChargeRE/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatCrystal/1.png b/front/public/images/large/IC2/itemBatCrystal/1.png deleted file mode 100644 index efe733c388..0000000000 Binary files a/front/public/images/large/IC2/itemBatCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatCrystal/26.png b/front/public/images/large/IC2/itemBatCrystal/26.png deleted file mode 100644 index 0bd01751f7..0000000000 Binary files a/front/public/images/large/IC2/itemBatCrystal/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatLamaCrystal/1.png b/front/public/images/large/IC2/itemBatLamaCrystal/1.png deleted file mode 100644 index d6532e056c..0000000000 Binary files a/front/public/images/large/IC2/itemBatLamaCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatLamaCrystal/26.png b/front/public/images/large/IC2/itemBatLamaCrystal/26.png deleted file mode 100644 index d275e6dd1c..0000000000 Binary files a/front/public/images/large/IC2/itemBatLamaCrystal/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatRE/1.png b/front/public/images/large/IC2/itemBatRE/1.png deleted file mode 100644 index 71eb0ed7d6..0000000000 Binary files a/front/public/images/large/IC2/itemBatRE/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatREDischarged/0.png b/front/public/images/large/IC2/itemBatREDischarged/0.png deleted file mode 100644 index 3f90ddc938..0000000000 Binary files a/front/public/images/large/IC2/itemBatREDischarged/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBatSU/0.png b/front/public/images/large/IC2/itemBatSU/0.png deleted file mode 100644 index f0471bdfcd..0000000000 Binary files a/front/public/images/large/IC2/itemBatSU/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBiochaff/0.png b/front/public/images/large/IC2/itemBiochaff/0.png deleted file mode 100644 index 1916ff93d3..0000000000 Binary files a/front/public/images/large/IC2/itemBiochaff/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBoat/0.png b/front/public/images/large/IC2/itemBoat/0.png deleted file mode 100644 index 2b4ef98c46..0000000000 Binary files a/front/public/images/large/IC2/itemBoat/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBoat/1.png b/front/public/images/large/IC2/itemBoat/1.png deleted file mode 100644 index 6f0bbc6b35..0000000000 Binary files a/front/public/images/large/IC2/itemBoat/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBoat/2.png b/front/public/images/large/IC2/itemBoat/2.png deleted file mode 100644 index c74dbb4f6c..0000000000 Binary files a/front/public/images/large/IC2/itemBoat/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemBoat/3.png b/front/public/images/large/IC2/itemBoat/3.png deleted file mode 100644 index aff50ddb2f..0000000000 Binary files a/front/public/images/large/IC2/itemBoat/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/0.png b/front/public/images/large/IC2/itemCable/0.png deleted file mode 100644 index dd2b35dd0b..0000000000 Binary files a/front/public/images/large/IC2/itemCable/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/1.png b/front/public/images/large/IC2/itemCable/1.png deleted file mode 100644 index bd3f0fe0d0..0000000000 Binary files a/front/public/images/large/IC2/itemCable/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/10.png b/front/public/images/large/IC2/itemCable/10.png deleted file mode 100644 index 6ac18f3893..0000000000 Binary files a/front/public/images/large/IC2/itemCable/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/11.png b/front/public/images/large/IC2/itemCable/11.png deleted file mode 100644 index dc0be1e822..0000000000 Binary files a/front/public/images/large/IC2/itemCable/11.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/12.png b/front/public/images/large/IC2/itemCable/12.png deleted file mode 100644 index 6b8dabeb94..0000000000 Binary files a/front/public/images/large/IC2/itemCable/12.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/13.png b/front/public/images/large/IC2/itemCable/13.png deleted file mode 100644 index 628ef2df6f..0000000000 Binary files a/front/public/images/large/IC2/itemCable/13.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/2.png b/front/public/images/large/IC2/itemCable/2.png deleted file mode 100644 index f24c7d1782..0000000000 Binary files a/front/public/images/large/IC2/itemCable/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/3.png b/front/public/images/large/IC2/itemCable/3.png deleted file mode 100644 index 1e9948ced5..0000000000 Binary files a/front/public/images/large/IC2/itemCable/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/5.png b/front/public/images/large/IC2/itemCable/5.png deleted file mode 100644 index 84a83d1747..0000000000 Binary files a/front/public/images/large/IC2/itemCable/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/6.png b/front/public/images/large/IC2/itemCable/6.png deleted file mode 100644 index ba01a1dc93..0000000000 Binary files a/front/public/images/large/IC2/itemCable/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCable/9.png b/front/public/images/large/IC2/itemCable/9.png deleted file mode 100644 index d4e17221c2..0000000000 Binary files a/front/public/images/large/IC2/itemCable/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCasing/0.png b/front/public/images/large/IC2/itemCasing/0.png deleted file mode 100644 index 00301fecbb..0000000000 Binary files a/front/public/images/large/IC2/itemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCasing/1.png b/front/public/images/large/IC2/itemCasing/1.png deleted file mode 100644 index 06cfcc8d86..0000000000 Binary files a/front/public/images/large/IC2/itemCasing/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCasing/2.png b/front/public/images/large/IC2/itemCasing/2.png deleted file mode 100644 index a28802e4c7..0000000000 Binary files a/front/public/images/large/IC2/itemCasing/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCasing/3.png b/front/public/images/large/IC2/itemCasing/3.png deleted file mode 100644 index 6c109a7792..0000000000 Binary files a/front/public/images/large/IC2/itemCasing/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCasing/4.png b/front/public/images/large/IC2/itemCasing/4.png deleted file mode 100644 index adc6311b33..0000000000 Binary files a/front/public/images/large/IC2/itemCasing/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCasing/5.png b/front/public/images/large/IC2/itemCasing/5.png deleted file mode 100644 index 7d393820b1..0000000000 Binary files a/front/public/images/large/IC2/itemCasing/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCasing/6.png b/front/public/images/large/IC2/itemCasing/6.png deleted file mode 100644 index 2b27ad0165..0000000000 Binary files a/front/public/images/large/IC2/itemCasing/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/0.png b/front/public/images/large/IC2/itemCellEmpty/0.png deleted file mode 100644 index 201c997f31..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/1.png b/front/public/images/large/IC2/itemCellEmpty/1.png deleted file mode 100644 index b67fe620ac..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/10.png b/front/public/images/large/IC2/itemCellEmpty/10.png deleted file mode 100644 index 964b554fd1..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/11.png b/front/public/images/large/IC2/itemCellEmpty/11.png deleted file mode 100644 index 644a836a3c..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/11.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/12.png b/front/public/images/large/IC2/itemCellEmpty/12.png deleted file mode 100644 index 928f05f86a..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/12.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/13.png b/front/public/images/large/IC2/itemCellEmpty/13.png deleted file mode 100644 index 6b2492d257..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/13.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/14.png b/front/public/images/large/IC2/itemCellEmpty/14.png deleted file mode 100644 index 6e9101e6b8..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/14.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/15.png b/front/public/images/large/IC2/itemCellEmpty/15.png deleted file mode 100644 index eb20455a53..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/15.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/16.png b/front/public/images/large/IC2/itemCellEmpty/16.png deleted file mode 100644 index 7f93456a99..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/16.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/17.png b/front/public/images/large/IC2/itemCellEmpty/17.png deleted file mode 100644 index 881ab7ec97..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/17.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/18.png b/front/public/images/large/IC2/itemCellEmpty/18.png deleted file mode 100644 index 33f4d3c720..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/18.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/19.png b/front/public/images/large/IC2/itemCellEmpty/19.png deleted file mode 100644 index d66a384253..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/19.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/2.png b/front/public/images/large/IC2/itemCellEmpty/2.png deleted file mode 100644 index fc28f97b34..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/20.png b/front/public/images/large/IC2/itemCellEmpty/20.png deleted file mode 100644 index db80909924..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/20.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/3.png b/front/public/images/large/IC2/itemCellEmpty/3.png deleted file mode 100644 index ed74eb1aa3..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/4.png b/front/public/images/large/IC2/itemCellEmpty/4.png deleted file mode 100644 index 067e5dff16..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/5.png b/front/public/images/large/IC2/itemCellEmpty/5.png deleted file mode 100644 index 68843948bc..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/6.png b/front/public/images/large/IC2/itemCellEmpty/6.png deleted file mode 100644 index ced80f0c99..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/7.png b/front/public/images/large/IC2/itemCellEmpty/7.png deleted file mode 100644 index ed60307621..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/8.png b/front/public/images/large/IC2/itemCellEmpty/8.png deleted file mode 100644 index 9e0274825a..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellEmpty/9.png b/front/public/images/large/IC2/itemCellEmpty/9.png deleted file mode 100644 index 9429e404b6..0000000000 Binary files a/front/public/images/large/IC2/itemCellEmpty/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCellHydrant/1.png b/front/public/images/large/IC2/itemCellHydrant/1.png deleted file mode 100644 index 15ea9f1c13..0000000000 Binary files a/front/public/images/large/IC2/itemCellHydrant/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCofeeBeans/0.png b/front/public/images/large/IC2/itemCofeeBeans/0.png deleted file mode 100644 index 31103f6fe2..0000000000 Binary files a/front/public/images/large/IC2/itemCofeeBeans/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCofeePowder/0.png b/front/public/images/large/IC2/itemCofeePowder/0.png deleted file mode 100644 index c8893c635c..0000000000 Binary files a/front/public/images/large/IC2/itemCofeePowder/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCoin/0.png b/front/public/images/large/IC2/itemCoin/0.png deleted file mode 100644 index 0ecb5569fc..0000000000 Binary files a/front/public/images/large/IC2/itemCoin/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemContainmentbox/0.png b/front/public/images/large/IC2/itemContainmentbox/0.png deleted file mode 100644 index d3db2b0a3f..0000000000 Binary files a/front/public/images/large/IC2/itemContainmentbox/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCropSeed/0.png b/front/public/images/large/IC2/itemCropSeed/0.png deleted file mode 100644 index ac2fd30f8a..0000000000 Binary files a/front/public/images/large/IC2/itemCropSeed/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCropnalyzer/1.png b/front/public/images/large/IC2/itemCropnalyzer/1.png deleted file mode 100644 index c21cad2a92..0000000000 Binary files a/front/public/images/large/IC2/itemCropnalyzer/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCropnalyzer/26.png b/front/public/images/large/IC2/itemCropnalyzer/26.png deleted file mode 100644 index c21cad2a92..0000000000 Binary files a/front/public/images/large/IC2/itemCropnalyzer/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCrushedOre/0.png b/front/public/images/large/IC2/itemCrushedOre/0.png deleted file mode 100644 index 02558e44dc..0000000000 Binary files a/front/public/images/large/IC2/itemCrushedOre/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCrushedOre/1.png b/front/public/images/large/IC2/itemCrushedOre/1.png deleted file mode 100644 index c284d1670f..0000000000 Binary files a/front/public/images/large/IC2/itemCrushedOre/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCrushedOre/2.png b/front/public/images/large/IC2/itemCrushedOre/2.png deleted file mode 100644 index acef3b070f..0000000000 Binary files a/front/public/images/large/IC2/itemCrushedOre/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCrushedOre/3.png b/front/public/images/large/IC2/itemCrushedOre/3.png deleted file mode 100644 index ee974903cb..0000000000 Binary files a/front/public/images/large/IC2/itemCrushedOre/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCrushedOre/4.png b/front/public/images/large/IC2/itemCrushedOre/4.png deleted file mode 100644 index 74aa793924..0000000000 Binary files a/front/public/images/large/IC2/itemCrushedOre/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCrushedOre/5.png b/front/public/images/large/IC2/itemCrushedOre/5.png deleted file mode 100644 index 22dfa42da8..0000000000 Binary files a/front/public/images/large/IC2/itemCrushedOre/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemCrushedOre/6.png b/front/public/images/large/IC2/itemCrushedOre/6.png deleted file mode 100644 index 2184fd63fc..0000000000 Binary files a/front/public/images/large/IC2/itemCrushedOre/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDebug/0.png b/front/public/images/large/IC2/itemDebug/0.png deleted file mode 100644 index 3443849652..0000000000 Binary files a/front/public/images/large/IC2/itemDebug/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/0.png b/front/public/images/large/IC2/itemDensePlates/0.png deleted file mode 100644 index a7c56a54a0..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/1.png b/front/public/images/large/IC2/itemDensePlates/1.png deleted file mode 100644 index 7475d3d6e8..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/2.png b/front/public/images/large/IC2/itemDensePlates/2.png deleted file mode 100644 index 2c8b044087..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/3.png b/front/public/images/large/IC2/itemDensePlates/3.png deleted file mode 100644 index 32464ec71d..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/4.png b/front/public/images/large/IC2/itemDensePlates/4.png deleted file mode 100644 index 64e6ea0e4c..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/5.png b/front/public/images/large/IC2/itemDensePlates/5.png deleted file mode 100644 index 47a5d85e4f..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/6.png b/front/public/images/large/IC2/itemDensePlates/6.png deleted file mode 100644 index feeeb2aaea..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/7.png b/front/public/images/large/IC2/itemDensePlates/7.png deleted file mode 100644 index 9e1b9ff819..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDensePlates/8.png b/front/public/images/large/IC2/itemDensePlates/8.png deleted file mode 100644 index d858147cc2..0000000000 Binary files a/front/public/images/large/IC2/itemDensePlates/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDiamondBlockCuttingBlade/0.png b/front/public/images/large/IC2/itemDiamondBlockCuttingBlade/0.png deleted file mode 100644 index 466db6eaed..0000000000 Binary files a/front/public/images/large/IC2/itemDiamondBlockCuttingBlade/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDoorAlloy/0.png b/front/public/images/large/IC2/itemDoorAlloy/0.png deleted file mode 100644 index 6fadf09a7f..0000000000 Binary files a/front/public/images/large/IC2/itemDoorAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/0.png b/front/public/images/large/IC2/itemDust/0.png deleted file mode 100644 index 29fce53029..0000000000 Binary files a/front/public/images/large/IC2/itemDust/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/1.png b/front/public/images/large/IC2/itemDust/1.png deleted file mode 100644 index ac4b02f440..0000000000 Binary files a/front/public/images/large/IC2/itemDust/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/10.png b/front/public/images/large/IC2/itemDust/10.png deleted file mode 100644 index 0e2ac4fca6..0000000000 Binary files a/front/public/images/large/IC2/itemDust/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/11.png b/front/public/images/large/IC2/itemDust/11.png deleted file mode 100644 index e59a8c570d..0000000000 Binary files a/front/public/images/large/IC2/itemDust/11.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/12.png b/front/public/images/large/IC2/itemDust/12.png deleted file mode 100644 index 4021c89fe9..0000000000 Binary files a/front/public/images/large/IC2/itemDust/12.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/13.png b/front/public/images/large/IC2/itemDust/13.png deleted file mode 100644 index 18559d6931..0000000000 Binary files a/front/public/images/large/IC2/itemDust/13.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/14.png b/front/public/images/large/IC2/itemDust/14.png deleted file mode 100644 index ab05b0a43b..0000000000 Binary files a/front/public/images/large/IC2/itemDust/14.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/2.png b/front/public/images/large/IC2/itemDust/2.png deleted file mode 100644 index 2604381b8b..0000000000 Binary files a/front/public/images/large/IC2/itemDust/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/3.png b/front/public/images/large/IC2/itemDust/3.png deleted file mode 100644 index b69f1f91b8..0000000000 Binary files a/front/public/images/large/IC2/itemDust/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/4.png b/front/public/images/large/IC2/itemDust/4.png deleted file mode 100644 index b85e64a363..0000000000 Binary files a/front/public/images/large/IC2/itemDust/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/5.png b/front/public/images/large/IC2/itemDust/5.png deleted file mode 100644 index 5ecfb0037e..0000000000 Binary files a/front/public/images/large/IC2/itemDust/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/6.png b/front/public/images/large/IC2/itemDust/6.png deleted file mode 100644 index b27ffa71d7..0000000000 Binary files a/front/public/images/large/IC2/itemDust/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/7.png b/front/public/images/large/IC2/itemDust/7.png deleted file mode 100644 index 664811a07f..0000000000 Binary files a/front/public/images/large/IC2/itemDust/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/8.png b/front/public/images/large/IC2/itemDust/8.png deleted file mode 100644 index 519d4ff057..0000000000 Binary files a/front/public/images/large/IC2/itemDust/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust/9.png b/front/public/images/large/IC2/itemDust/9.png deleted file mode 100644 index 80453ef99d..0000000000 Binary files a/front/public/images/large/IC2/itemDust/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust2/0.png b/front/public/images/large/IC2/itemDust2/0.png deleted file mode 100644 index d29cde4a99..0000000000 Binary files a/front/public/images/large/IC2/itemDust2/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust2/1.png b/front/public/images/large/IC2/itemDust2/1.png deleted file mode 100644 index c449c01053..0000000000 Binary files a/front/public/images/large/IC2/itemDust2/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust2/2.png b/front/public/images/large/IC2/itemDust2/2.png deleted file mode 100644 index d0add1a137..0000000000 Binary files a/front/public/images/large/IC2/itemDust2/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDust2/3.png b/front/public/images/large/IC2/itemDust2/3.png deleted file mode 100644 index 1671b57c40..0000000000 Binary files a/front/public/images/large/IC2/itemDust2/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/0.png b/front/public/images/large/IC2/itemDustSmall/0.png deleted file mode 100644 index a1a8f9c4a8..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/1.png b/front/public/images/large/IC2/itemDustSmall/1.png deleted file mode 100644 index e4f59688cc..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/10.png b/front/public/images/large/IC2/itemDustSmall/10.png deleted file mode 100644 index e348aa4741..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/2.png b/front/public/images/large/IC2/itemDustSmall/2.png deleted file mode 100644 index 095f19ee12..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/3.png b/front/public/images/large/IC2/itemDustSmall/3.png deleted file mode 100644 index fba97b89d7..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/4.png b/front/public/images/large/IC2/itemDustSmall/4.png deleted file mode 100644 index 958d8b96bf..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/5.png b/front/public/images/large/IC2/itemDustSmall/5.png deleted file mode 100644 index befbd0bd3e..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/6.png b/front/public/images/large/IC2/itemDustSmall/6.png deleted file mode 100644 index d97bb7784f..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/7.png b/front/public/images/large/IC2/itemDustSmall/7.png deleted file mode 100644 index b3f38aae32..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/8.png b/front/public/images/large/IC2/itemDustSmall/8.png deleted file mode 100644 index dae08a949e..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDustSmall/9.png b/front/public/images/large/IC2/itemDustSmall/9.png deleted file mode 100644 index 161de40199..0000000000 Binary files a/front/public/images/large/IC2/itemDustSmall/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDynamite/0.png b/front/public/images/large/IC2/itemDynamite/0.png deleted file mode 100644 index 00b0e17dfd..0000000000 Binary files a/front/public/images/large/IC2/itemDynamite/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemDynamiteSticky/0.png b/front/public/images/large/IC2/itemDynamiteSticky/0.png deleted file mode 100644 index a949c503f0..0000000000 Binary files a/front/public/images/large/IC2/itemDynamiteSticky/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemFertilizer/0.png b/front/public/images/large/IC2/itemFertilizer/0.png deleted file mode 100644 index 3c309828b1..0000000000 Binary files a/front/public/images/large/IC2/itemFertilizer/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemFluidCell/0.png b/front/public/images/large/IC2/itemFluidCell/0.png deleted file mode 100644 index 2cce1b1df7..0000000000 Binary files a/front/public/images/large/IC2/itemFluidCell/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemFoamSprayer/0.png b/front/public/images/large/IC2/itemFoamSprayer/0.png deleted file mode 100644 index 4714167bb7..0000000000 Binary files a/front/public/images/large/IC2/itemFoamSprayer/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemFreq/0.png b/front/public/images/large/IC2/itemFreq/0.png deleted file mode 100644 index 03517a4111..0000000000 Binary files a/front/public/images/large/IC2/itemFreq/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemFuelPlantBall/0.png b/front/public/images/large/IC2/itemFuelPlantBall/0.png deleted file mode 100644 index 76cd70dece..0000000000 Binary files a/front/public/images/large/IC2/itemFuelPlantBall/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemFuelRod/0.png b/front/public/images/large/IC2/itemFuelRod/0.png deleted file mode 100644 index 022d8a1306..0000000000 Binary files a/front/public/images/large/IC2/itemFuelRod/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemGrinPowder/0.png b/front/public/images/large/IC2/itemGrinPowder/0.png deleted file mode 100644 index 66fd8fc95e..0000000000 Binary files a/front/public/images/large/IC2/itemGrinPowder/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemHarz/0.png b/front/public/images/large/IC2/itemHarz/0.png deleted file mode 100644 index 8e38b06bad..0000000000 Binary files a/front/public/images/large/IC2/itemHarz/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemHops/0.png b/front/public/images/large/IC2/itemHops/0.png deleted file mode 100644 index 9cdd4c03a0..0000000000 Binary files a/front/public/images/large/IC2/itemHops/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIngot/0.png b/front/public/images/large/IC2/itemIngot/0.png deleted file mode 100644 index 25314be080..0000000000 Binary files a/front/public/images/large/IC2/itemIngot/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIngot/1.png b/front/public/images/large/IC2/itemIngot/1.png deleted file mode 100644 index 0dd72ea93d..0000000000 Binary files a/front/public/images/large/IC2/itemIngot/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIngot/2.png b/front/public/images/large/IC2/itemIngot/2.png deleted file mode 100644 index e6600ce23e..0000000000 Binary files a/front/public/images/large/IC2/itemIngot/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIngot/3.png b/front/public/images/large/IC2/itemIngot/3.png deleted file mode 100644 index 8b25039206..0000000000 Binary files a/front/public/images/large/IC2/itemIngot/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIngot/4.png b/front/public/images/large/IC2/itemIngot/4.png deleted file mode 100644 index c4cff7ffff..0000000000 Binary files a/front/public/images/large/IC2/itemIngot/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIngot/5.png b/front/public/images/large/IC2/itemIngot/5.png deleted file mode 100644 index 08de0686c2..0000000000 Binary files a/front/public/images/large/IC2/itemIngot/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIngot/6.png b/front/public/images/large/IC2/itemIngot/6.png deleted file mode 100644 index efafca9505..0000000000 Binary files a/front/public/images/large/IC2/itemIngot/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemIronBlockCuttingBlade/0.png b/front/public/images/large/IC2/itemIronBlockCuttingBlade/0.png deleted file mode 100644 index 43648a3abe..0000000000 Binary files a/front/public/images/large/IC2/itemIronBlockCuttingBlade/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemLathingTool/0.png b/front/public/images/large/IC2/itemLathingTool/0.png deleted file mode 100644 index e6efa7bf08..0000000000 Binary files a/front/public/images/large/IC2/itemLathingTool/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemMOX/0.png b/front/public/images/large/IC2/itemMOX/0.png deleted file mode 100644 index 617c93f0d1..0000000000 Binary files a/front/public/images/large/IC2/itemMOX/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemMugBooze/0.png b/front/public/images/large/IC2/itemMugBooze/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/IC2/itemMugBooze/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemMugCoffee/0.png b/front/public/images/large/IC2/itemMugCoffee/0.png deleted file mode 100644 index 644458178f..0000000000 Binary files a/front/public/images/large/IC2/itemMugCoffee/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemMugCoffee/1.png b/front/public/images/large/IC2/itemMugCoffee/1.png deleted file mode 100644 index 13a7f79f7b..0000000000 Binary files a/front/public/images/large/IC2/itemMugCoffee/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemMugCoffee/2.png b/front/public/images/large/IC2/itemMugCoffee/2.png deleted file mode 100644 index a4a21f9c10..0000000000 Binary files a/front/public/images/large/IC2/itemMugCoffee/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemMugEmpty/0.png b/front/public/images/large/IC2/itemMugEmpty/0.png deleted file mode 100644 index 393da90313..0000000000 Binary files a/front/public/images/large/IC2/itemMugEmpty/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemNanoSaber/1.png b/front/public/images/large/IC2/itemNanoSaber/1.png deleted file mode 100644 index 588e76cb69..0000000000 Binary files a/front/public/images/large/IC2/itemNanoSaber/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemNanoSaber/26.png b/front/public/images/large/IC2/itemNanoSaber/26.png deleted file mode 100644 index 588e76cb69..0000000000 Binary files a/front/public/images/large/IC2/itemNanoSaber/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemNightvisionGoggles/1.png b/front/public/images/large/IC2/itemNightvisionGoggles/1.png deleted file mode 100644 index e779cde72d..0000000000 Binary files a/front/public/images/large/IC2/itemNightvisionGoggles/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemNightvisionGoggles/27.png b/front/public/images/large/IC2/itemNightvisionGoggles/27.png deleted file mode 100644 index e779cde72d..0000000000 Binary files a/front/public/images/large/IC2/itemNightvisionGoggles/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemOreIridium/0.png b/front/public/images/large/IC2/itemOreIridium/0.png deleted file mode 100644 index 06a64ad53b..0000000000 Binary files a/front/public/images/large/IC2/itemOreIridium/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartAlloy/0.png b/front/public/images/large/IC2/itemPartAlloy/0.png deleted file mode 100644 index 0d3deeefbf..0000000000 Binary files a/front/public/images/large/IC2/itemPartAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCFPowder/0.png b/front/public/images/large/IC2/itemPartCFPowder/0.png deleted file mode 100644 index 2846f5658d..0000000000 Binary files a/front/public/images/large/IC2/itemPartCFPowder/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCarbonFibre/0.png b/front/public/images/large/IC2/itemPartCarbonFibre/0.png deleted file mode 100644 index 933894d0da..0000000000 Binary files a/front/public/images/large/IC2/itemPartCarbonFibre/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCarbonMesh/0.png b/front/public/images/large/IC2/itemPartCarbonMesh/0.png deleted file mode 100644 index 33e08b64f1..0000000000 Binary files a/front/public/images/large/IC2/itemPartCarbonMesh/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCarbonPlate/0.png b/front/public/images/large/IC2/itemPartCarbonPlate/0.png deleted file mode 100644 index 116d1c7edb..0000000000 Binary files a/front/public/images/large/IC2/itemPartCarbonPlate/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCircuit/0.png b/front/public/images/large/IC2/itemPartCircuit/0.png deleted file mode 100644 index bec612080d..0000000000 Binary files a/front/public/images/large/IC2/itemPartCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCircuitAdv/0.png b/front/public/images/large/IC2/itemPartCircuitAdv/0.png deleted file mode 100644 index cdfe88404e..0000000000 Binary files a/front/public/images/large/IC2/itemPartCircuitAdv/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCoalBall/0.png b/front/public/images/large/IC2/itemPartCoalBall/0.png deleted file mode 100644 index aa647df5f6..0000000000 Binary files a/front/public/images/large/IC2/itemPartCoalBall/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCoalBlock/0.png b/front/public/images/large/IC2/itemPartCoalBlock/0.png deleted file mode 100644 index 259ad99ed6..0000000000 Binary files a/front/public/images/large/IC2/itemPartCoalBlock/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartCoalChunk/0.png b/front/public/images/large/IC2/itemPartCoalChunk/0.png deleted file mode 100644 index 663e879824..0000000000 Binary files a/front/public/images/large/IC2/itemPartCoalChunk/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartIndustrialDiamond/0.png b/front/public/images/large/IC2/itemPartIndustrialDiamond/0.png deleted file mode 100644 index 236fb743db..0000000000 Binary files a/front/public/images/large/IC2/itemPartIndustrialDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPartIridium/0.png b/front/public/images/large/IC2/itemPartIridium/0.png deleted file mode 100644 index a4b696f49a..0000000000 Binary files a/front/public/images/large/IC2/itemPartIridium/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/0.png b/front/public/images/large/IC2/itemPlates/0.png deleted file mode 100644 index 5a70a83056..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/1.png b/front/public/images/large/IC2/itemPlates/1.png deleted file mode 100644 index c56273f606..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/2.png b/front/public/images/large/IC2/itemPlates/2.png deleted file mode 100644 index 11e41b8f34..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/3.png b/front/public/images/large/IC2/itemPlates/3.png deleted file mode 100644 index d9cef9aa9d..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/4.png b/front/public/images/large/IC2/itemPlates/4.png deleted file mode 100644 index ebcd5910c2..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/5.png b/front/public/images/large/IC2/itemPlates/5.png deleted file mode 100644 index e2a9b6dd80..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/6.png b/front/public/images/large/IC2/itemPlates/6.png deleted file mode 100644 index abbad75836..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/7.png b/front/public/images/large/IC2/itemPlates/7.png deleted file mode 100644 index 9c095f119d..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlates/8.png b/front/public/images/large/IC2/itemPlates/8.png deleted file mode 100644 index e349f03872..0000000000 Binary files a/front/public/images/large/IC2/itemPlates/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlutonium/0.png b/front/public/images/large/IC2/itemPlutonium/0.png deleted file mode 100644 index 82a13f7c38..0000000000 Binary files a/front/public/images/large/IC2/itemPlutonium/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPlutoniumSmall/0.png b/front/public/images/large/IC2/itemPlutoniumSmall/0.png deleted file mode 100644 index 0a1fb8bf55..0000000000 Binary files a/front/public/images/large/IC2/itemPlutoniumSmall/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPurifiedCrushedOre/0.png b/front/public/images/large/IC2/itemPurifiedCrushedOre/0.png deleted file mode 100644 index b9a4566164..0000000000 Binary files a/front/public/images/large/IC2/itemPurifiedCrushedOre/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPurifiedCrushedOre/1.png b/front/public/images/large/IC2/itemPurifiedCrushedOre/1.png deleted file mode 100644 index ee62f00a44..0000000000 Binary files a/front/public/images/large/IC2/itemPurifiedCrushedOre/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPurifiedCrushedOre/2.png b/front/public/images/large/IC2/itemPurifiedCrushedOre/2.png deleted file mode 100644 index c89a806c77..0000000000 Binary files a/front/public/images/large/IC2/itemPurifiedCrushedOre/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPurifiedCrushedOre/3.png b/front/public/images/large/IC2/itemPurifiedCrushedOre/3.png deleted file mode 100644 index 1ca2a3710d..0000000000 Binary files a/front/public/images/large/IC2/itemPurifiedCrushedOre/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPurifiedCrushedOre/4.png b/front/public/images/large/IC2/itemPurifiedCrushedOre/4.png deleted file mode 100644 index c9e879cd28..0000000000 Binary files a/front/public/images/large/IC2/itemPurifiedCrushedOre/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPurifiedCrushedOre/5.png b/front/public/images/large/IC2/itemPurifiedCrushedOre/5.png deleted file mode 100644 index f8568c4ab6..0000000000 Binary files a/front/public/images/large/IC2/itemPurifiedCrushedOre/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemPurifiedCrushedOre/6.png b/front/public/images/large/IC2/itemPurifiedCrushedOre/6.png deleted file mode 100644 index 5c48f0ad82..0000000000 Binary files a/front/public/images/large/IC2/itemPurifiedCrushedOre/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRTGPellet/0.png b/front/public/images/large/IC2/itemRTGPellet/0.png deleted file mode 100644 index 0b275eb51e..0000000000 Binary files a/front/public/images/large/IC2/itemRTGPellet/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/0.png b/front/public/images/large/IC2/itemRecipePart/0.png deleted file mode 100644 index 9d1e263ef2..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/1.png b/front/public/images/large/IC2/itemRecipePart/1.png deleted file mode 100644 index d125b00cb3..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/10.png b/front/public/images/large/IC2/itemRecipePart/10.png deleted file mode 100644 index 3930b38e99..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/10.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/11.png b/front/public/images/large/IC2/itemRecipePart/11.png deleted file mode 100644 index f20ed68774..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/11.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/12.png b/front/public/images/large/IC2/itemRecipePart/12.png deleted file mode 100644 index ee3ce4f9a3..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/12.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/2.png b/front/public/images/large/IC2/itemRecipePart/2.png deleted file mode 100644 index 313817c7bf..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/3.png b/front/public/images/large/IC2/itemRecipePart/3.png deleted file mode 100644 index faff25fdaf..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/4.png b/front/public/images/large/IC2/itemRecipePart/4.png deleted file mode 100644 index b32a26e702..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/5.png b/front/public/images/large/IC2/itemRecipePart/5.png deleted file mode 100644 index 413afa8c27..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/6.png b/front/public/images/large/IC2/itemRecipePart/6.png deleted file mode 100644 index 9b809f021d..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/7.png b/front/public/images/large/IC2/itemRecipePart/7.png deleted file mode 100644 index 365f7bd675..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/7.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/8.png b/front/public/images/large/IC2/itemRecipePart/8.png deleted file mode 100644 index e00ec9bbc1..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/8.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRecipePart/9.png b/front/public/images/large/IC2/itemRecipePart/9.png deleted file mode 100644 index 0f6b57a781..0000000000 Binary files a/front/public/images/large/IC2/itemRecipePart/9.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRemote/0.png b/front/public/images/large/IC2/itemRemote/0.png deleted file mode 100644 index 976dfbc4d3..0000000000 Binary files a/front/public/images/large/IC2/itemRemote/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemRubber/0.png b/front/public/images/large/IC2/itemRubber/0.png deleted file mode 100644 index 697199299c..0000000000 Binary files a/front/public/images/large/IC2/itemRubber/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemScanner/1.png b/front/public/images/large/IC2/itemScanner/1.png deleted file mode 100644 index b6eeacfd9e..0000000000 Binary files a/front/public/images/large/IC2/itemScanner/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemScanner/26.png b/front/public/images/large/IC2/itemScanner/26.png deleted file mode 100644 index b6eeacfd9e..0000000000 Binary files a/front/public/images/large/IC2/itemScanner/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemScannerAdv/1.png b/front/public/images/large/IC2/itemScannerAdv/1.png deleted file mode 100644 index b6eeacfd9e..0000000000 Binary files a/front/public/images/large/IC2/itemScannerAdv/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemScannerAdv/26.png b/front/public/images/large/IC2/itemScannerAdv/26.png deleted file mode 100644 index b6eeacfd9e..0000000000 Binary files a/front/public/images/large/IC2/itemScannerAdv/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemScrap/0.png b/front/public/images/large/IC2/itemScrap/0.png deleted file mode 100644 index 9a8e6611ff..0000000000 Binary files a/front/public/images/large/IC2/itemScrap/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemScrapbox/0.png b/front/public/images/large/IC2/itemScrapbox/0.png deleted file mode 100644 index 94f6487fb8..0000000000 Binary files a/front/public/images/large/IC2/itemScrapbox/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemShardIridium/0.png b/front/public/images/large/IC2/itemShardIridium/0.png deleted file mode 100644 index c2fdd98e31..0000000000 Binary files a/front/public/images/large/IC2/itemShardIridium/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemSlag/0.png b/front/public/images/large/IC2/itemSlag/0.png deleted file mode 100644 index 94bbba6fa2..0000000000 Binary files a/front/public/images/large/IC2/itemSlag/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemSolarHelmet/0.png b/front/public/images/large/IC2/itemSolarHelmet/0.png deleted file mode 100644 index f2069d6c35..0000000000 Binary files a/front/public/images/large/IC2/itemSolarHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemStaticBoots/0.png b/front/public/images/large/IC2/itemStaticBoots/0.png deleted file mode 100644 index 33c49e20d9..0000000000 Binary files a/front/public/images/large/IC2/itemStaticBoots/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemSteamTurbine/1.png b/front/public/images/large/IC2/itemSteamTurbine/1.png deleted file mode 100644 index 9b6cf6ed56..0000000000 Binary files a/front/public/images/large/IC2/itemSteamTurbine/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemSteamTurbineBlade/0.png b/front/public/images/large/IC2/itemSteamTurbineBlade/0.png deleted file mode 100644 index f627665865..0000000000 Binary files a/front/public/images/large/IC2/itemSteamTurbineBlade/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTFBP/0.png b/front/public/images/large/IC2/itemTFBP/0.png deleted file mode 100644 index de89ef05c9..0000000000 Binary files a/front/public/images/large/IC2/itemTFBP/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTFBPChilling/0.png b/front/public/images/large/IC2/itemTFBPChilling/0.png deleted file mode 100644 index 5d0ad98793..0000000000 Binary files a/front/public/images/large/IC2/itemTFBPChilling/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTFBPCultivation/0.png b/front/public/images/large/IC2/itemTFBPCultivation/0.png deleted file mode 100644 index f11fb9f8ab..0000000000 Binary files a/front/public/images/large/IC2/itemTFBPCultivation/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTFBPDesertification/0.png b/front/public/images/large/IC2/itemTFBPDesertification/0.png deleted file mode 100644 index 6c3c212db7..0000000000 Binary files a/front/public/images/large/IC2/itemTFBPDesertification/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTFBPFlatification/0.png b/front/public/images/large/IC2/itemTFBPFlatification/0.png deleted file mode 100644 index 483d701759..0000000000 Binary files a/front/public/images/large/IC2/itemTFBPFlatification/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTFBPIrrigation/0.png b/front/public/images/large/IC2/itemTFBPIrrigation/0.png deleted file mode 100644 index 92dedf3925..0000000000 Binary files a/front/public/images/large/IC2/itemTFBPIrrigation/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTFBPMushroom/0.png b/front/public/images/large/IC2/itemTFBPMushroom/0.png deleted file mode 100644 index 45dc0a8483..0000000000 Binary files a/front/public/images/large/IC2/itemTFBPMushroom/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTerraWart/0.png b/front/public/images/large/IC2/itemTerraWart/0.png deleted file mode 100644 index 09a7b998ef..0000000000 Binary files a/front/public/images/large/IC2/itemTerraWart/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTinCan/0.png b/front/public/images/large/IC2/itemTinCan/0.png deleted file mode 100644 index aaa3525c25..0000000000 Binary files a/front/public/images/large/IC2/itemTinCan/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTinCanFilled/0.png b/front/public/images/large/IC2/itemTinCanFilled/0.png deleted file mode 100644 index 884cbd89fe..0000000000 Binary files a/front/public/images/large/IC2/itemTinCanFilled/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolBronzeAxe/0.png b/front/public/images/large/IC2/itemToolBronzeAxe/0.png deleted file mode 100644 index de9e8f672a..0000000000 Binary files a/front/public/images/large/IC2/itemToolBronzeAxe/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolBronzeHoe/0.png b/front/public/images/large/IC2/itemToolBronzeHoe/0.png deleted file mode 100644 index c9854466f4..0000000000 Binary files a/front/public/images/large/IC2/itemToolBronzeHoe/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolBronzePickaxe/0.png b/front/public/images/large/IC2/itemToolBronzePickaxe/0.png deleted file mode 100644 index 554c3f34d3..0000000000 Binary files a/front/public/images/large/IC2/itemToolBronzePickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolBronzeSpade/0.png b/front/public/images/large/IC2/itemToolBronzeSpade/0.png deleted file mode 100644 index 92ca81ee3c..0000000000 Binary files a/front/public/images/large/IC2/itemToolBronzeSpade/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolBronzeSword/0.png b/front/public/images/large/IC2/itemToolBronzeSword/0.png deleted file mode 100644 index 3d238a9882..0000000000 Binary files a/front/public/images/large/IC2/itemToolBronzeSword/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolChainsaw/1.png b/front/public/images/large/IC2/itemToolChainsaw/1.png deleted file mode 100644 index c4706ab511..0000000000 Binary files a/front/public/images/large/IC2/itemToolChainsaw/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolChainsaw/26.png b/front/public/images/large/IC2/itemToolChainsaw/26.png deleted file mode 100644 index c4706ab511..0000000000 Binary files a/front/public/images/large/IC2/itemToolChainsaw/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolCutter/0.png b/front/public/images/large/IC2/itemToolCutter/0.png deleted file mode 100644 index 0c7cebb68e..0000000000 Binary files a/front/public/images/large/IC2/itemToolCutter/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolDDrill/1.png b/front/public/images/large/IC2/itemToolDDrill/1.png deleted file mode 100644 index 619cf20171..0000000000 Binary files a/front/public/images/large/IC2/itemToolDDrill/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolDDrill/26.png b/front/public/images/large/IC2/itemToolDDrill/26.png deleted file mode 100644 index 619cf20171..0000000000 Binary files a/front/public/images/large/IC2/itemToolDDrill/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolDrill/1.png b/front/public/images/large/IC2/itemToolDrill/1.png deleted file mode 100644 index 3ad2d36f71..0000000000 Binary files a/front/public/images/large/IC2/itemToolDrill/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolDrill/26.png b/front/public/images/large/IC2/itemToolDrill/26.png deleted file mode 100644 index 3ad2d36f71..0000000000 Binary files a/front/public/images/large/IC2/itemToolDrill/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolForgeHammer/0.png b/front/public/images/large/IC2/itemToolForgeHammer/0.png deleted file mode 100644 index b271b8d066..0000000000 Binary files a/front/public/images/large/IC2/itemToolForgeHammer/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolHoe/1.png b/front/public/images/large/IC2/itemToolHoe/1.png deleted file mode 100644 index cccfcaa923..0000000000 Binary files a/front/public/images/large/IC2/itemToolHoe/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolHoe/26.png b/front/public/images/large/IC2/itemToolHoe/26.png deleted file mode 100644 index cccfcaa923..0000000000 Binary files a/front/public/images/large/IC2/itemToolHoe/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolIridiumDrill/1.png b/front/public/images/large/IC2/itemToolIridiumDrill/1.png deleted file mode 100644 index 21c3e98f38..0000000000 Binary files a/front/public/images/large/IC2/itemToolIridiumDrill/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolIridiumDrill/26.png b/front/public/images/large/IC2/itemToolIridiumDrill/26.png deleted file mode 100644 index 21c3e98f38..0000000000 Binary files a/front/public/images/large/IC2/itemToolIridiumDrill/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolMEter/0.png b/front/public/images/large/IC2/itemToolMEter/0.png deleted file mode 100644 index 2b2e6507c5..0000000000 Binary files a/front/public/images/large/IC2/itemToolMEter/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolMiningLaser/1.png b/front/public/images/large/IC2/itemToolMiningLaser/1.png deleted file mode 100644 index c3c3972457..0000000000 Binary files a/front/public/images/large/IC2/itemToolMiningLaser/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolMiningLaser/26.png b/front/public/images/large/IC2/itemToolMiningLaser/26.png deleted file mode 100644 index c3c3972457..0000000000 Binary files a/front/public/images/large/IC2/itemToolMiningLaser/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainter/0.png b/front/public/images/large/IC2/itemToolPainter/0.png deleted file mode 100644 index a861a66a22..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainter/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterBlack/0.png b/front/public/images/large/IC2/itemToolPainterBlack/0.png deleted file mode 100644 index 2a0235a80b..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterBlack/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterBlue/0.png b/front/public/images/large/IC2/itemToolPainterBlue/0.png deleted file mode 100644 index 1d60f1cd33..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterBlue/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterBrown/0.png b/front/public/images/large/IC2/itemToolPainterBrown/0.png deleted file mode 100644 index 2914b1e833..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterBrown/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterCloud/0.png b/front/public/images/large/IC2/itemToolPainterCloud/0.png deleted file mode 100644 index 276a2b8514..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterCloud/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterCyan/0.png b/front/public/images/large/IC2/itemToolPainterCyan/0.png deleted file mode 100644 index 16fa44aae8..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterCyan/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterDarkGrey/0.png b/front/public/images/large/IC2/itemToolPainterDarkGrey/0.png deleted file mode 100644 index 4c3b30b867..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterDarkGrey/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterGreen/0.png b/front/public/images/large/IC2/itemToolPainterGreen/0.png deleted file mode 100644 index 50b3d6903f..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterGreen/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterLightGrey/0.png b/front/public/images/large/IC2/itemToolPainterLightGrey/0.png deleted file mode 100644 index c489d042dc..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterLightGrey/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterLime/0.png b/front/public/images/large/IC2/itemToolPainterLime/0.png deleted file mode 100644 index b41e28207d..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterLime/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterMagenta/0.png b/front/public/images/large/IC2/itemToolPainterMagenta/0.png deleted file mode 100644 index c5d4eab376..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterMagenta/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterOrange/0.png b/front/public/images/large/IC2/itemToolPainterOrange/0.png deleted file mode 100644 index 721db2bc05..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterOrange/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterPink/0.png b/front/public/images/large/IC2/itemToolPainterPink/0.png deleted file mode 100644 index 3ff773432f..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterPink/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterPurple/0.png b/front/public/images/large/IC2/itemToolPainterPurple/0.png deleted file mode 100644 index 095fe1df97..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterPurple/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterRed/0.png b/front/public/images/large/IC2/itemToolPainterRed/0.png deleted file mode 100644 index f96d03fea1..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterRed/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterWhite/0.png b/front/public/images/large/IC2/itemToolPainterWhite/0.png deleted file mode 100644 index 5f4951d69d..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterWhite/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolPainterYellow/0.png b/front/public/images/large/IC2/itemToolPainterYellow/0.png deleted file mode 100644 index 4e7b303da0..0000000000 Binary files a/front/public/images/large/IC2/itemToolPainterYellow/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolWrench/0.png b/front/public/images/large/IC2/itemToolWrench/0.png deleted file mode 100644 index a3a43c4600..0000000000 Binary files a/front/public/images/large/IC2/itemToolWrench/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolWrenchElectric/1.png b/front/public/images/large/IC2/itemToolWrenchElectric/1.png deleted file mode 100644 index e32a661b63..0000000000 Binary files a/front/public/images/large/IC2/itemToolWrenchElectric/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolWrenchElectric/27.png b/front/public/images/large/IC2/itemToolWrenchElectric/27.png deleted file mode 100644 index e32a661b63..0000000000 Binary files a/front/public/images/large/IC2/itemToolWrenchElectric/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemToolbox/0.png b/front/public/images/large/IC2/itemToolbox/0.png deleted file mode 100644 index 4aa8c697c4..0000000000 Binary files a/front/public/images/large/IC2/itemToolbox/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTreetap/0.png b/front/public/images/large/IC2/itemTreetap/0.png deleted file mode 100644 index 9251e8679b..0000000000 Binary files a/front/public/images/large/IC2/itemTreetap/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTreetapElectric/1.png b/front/public/images/large/IC2/itemTreetapElectric/1.png deleted file mode 100644 index f3f336e19c..0000000000 Binary files a/front/public/images/large/IC2/itemTreetapElectric/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTreetapElectric/26.png b/front/public/images/large/IC2/itemTreetapElectric/26.png deleted file mode 100644 index f3f336e19c..0000000000 Binary files a/front/public/images/large/IC2/itemTreetapElectric/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTritiumCell/0.png b/front/public/images/large/IC2/itemTritiumCell/0.png deleted file mode 100644 index 3c620dbde7..0000000000 Binary files a/front/public/images/large/IC2/itemTritiumCell/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTurningBlanks/349525.png b/front/public/images/large/IC2/itemTurningBlanks/349525.png deleted file mode 100644 index aa5feb6251..0000000000 Binary files a/front/public/images/large/IC2/itemTurningBlanks/349525.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemTurningBlanksWood/209715.png b/front/public/images/large/IC2/itemTurningBlanksWood/209715.png deleted file mode 100644 index 1fb861f3ad..0000000000 Binary files a/front/public/images/large/IC2/itemTurningBlanksWood/209715.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemUran/0.png b/front/public/images/large/IC2/itemUran/0.png deleted file mode 100644 index ab0a31ea8d..0000000000 Binary files a/front/public/images/large/IC2/itemUran/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemUran235/0.png b/front/public/images/large/IC2/itemUran235/0.png deleted file mode 100644 index a432c3b855..0000000000 Binary files a/front/public/images/large/IC2/itemUran235/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemUran235small/0.png b/front/public/images/large/IC2/itemUran235small/0.png deleted file mode 100644 index 913fc15f36..0000000000 Binary files a/front/public/images/large/IC2/itemUran235small/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemUran238/0.png b/front/public/images/large/IC2/itemUran238/0.png deleted file mode 100644 index d3a78e55ec..0000000000 Binary files a/front/public/images/large/IC2/itemUran238/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemWeed/0.png b/front/public/images/large/IC2/itemWeed/0.png deleted file mode 100644 index f1984efe4a..0000000000 Binary files a/front/public/images/large/IC2/itemWeed/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemWeedEx/0.png b/front/public/images/large/IC2/itemWeedEx/0.png deleted file mode 100644 index da3d3a9491..0000000000 Binary files a/front/public/images/large/IC2/itemWeedEx/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemWeedingTrowel/0.png b/front/public/images/large/IC2/itemWeedingTrowel/0.png deleted file mode 100644 index 0df935e506..0000000000 Binary files a/front/public/images/large/IC2/itemWeedingTrowel/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemcrystalmemory/0.png b/front/public/images/large/IC2/itemcrystalmemory/0.png deleted file mode 100644 index 04cb96b261..0000000000 Binary files a/front/public/images/large/IC2/itemcrystalmemory/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemironrotor/1.png b/front/public/images/large/IC2/itemironrotor/1.png deleted file mode 100644 index fb15f73003..0000000000 Binary files a/front/public/images/large/IC2/itemironrotor/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemsteelrotor/1.png b/front/public/images/large/IC2/itemsteelrotor/1.png deleted file mode 100644 index 54e9800c78..0000000000 Binary files a/front/public/images/large/IC2/itemsteelrotor/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemupgradekit/0.png b/front/public/images/large/IC2/itemupgradekit/0.png deleted file mode 100644 index 838854f01c..0000000000 Binary files a/front/public/images/large/IC2/itemupgradekit/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemwcarbonrotor/1.png b/front/public/images/large/IC2/itemwcarbonrotor/1.png deleted file mode 100644 index 4a37319c86..0000000000 Binary files a/front/public/images/large/IC2/itemwcarbonrotor/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/itemwoodrotor/1.png b/front/public/images/large/IC2/itemwoodrotor/1.png deleted file mode 100644 index 2e450bbdee..0000000000 Binary files a/front/public/images/large/IC2/itemwoodrotor/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/obscurator/1.png b/front/public/images/large/IC2/obscurator/1.png deleted file mode 100644 index 67b1a95d7b..0000000000 Binary files a/front/public/images/large/IC2/obscurator/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/obscurator/27.png b/front/public/images/large/IC2/obscurator/27.png deleted file mode 100644 index 67b1a95d7b..0000000000 Binary files a/front/public/images/large/IC2/obscurator/27.png and /dev/null differ diff --git a/front/public/images/large/IC2/plasmaLauncher/1.png b/front/public/images/large/IC2/plasmaLauncher/1.png deleted file mode 100644 index 79e9724b73..0000000000 Binary files a/front/public/images/large/IC2/plasmaLauncher/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/plasmaLauncher/26.png b/front/public/images/large/IC2/plasmaLauncher/26.png deleted file mode 100644 index 79e9724b73..0000000000 Binary files a/front/public/images/large/IC2/plasmaLauncher/26.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorCondensator/1.png b/front/public/images/large/IC2/reactorCondensator/1.png deleted file mode 100644 index 214acf93b1..0000000000 Binary files a/front/public/images/large/IC2/reactorCondensator/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorCondensatorLap/1.png b/front/public/images/large/IC2/reactorCondensatorLap/1.png deleted file mode 100644 index 73ba2ca932..0000000000 Binary files a/front/public/images/large/IC2/reactorCondensatorLap/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorCoolantSimple/1.png b/front/public/images/large/IC2/reactorCoolantSimple/1.png deleted file mode 100644 index 15ea9f1c13..0000000000 Binary files a/front/public/images/large/IC2/reactorCoolantSimple/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorCoolantSix/1.png b/front/public/images/large/IC2/reactorCoolantSix/1.png deleted file mode 100644 index bd2a5e3bdf..0000000000 Binary files a/front/public/images/large/IC2/reactorCoolantSix/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorCoolantTriple/1.png b/front/public/images/large/IC2/reactorCoolantTriple/1.png deleted file mode 100644 index c8b9ee1a1e..0000000000 Binary files a/front/public/images/large/IC2/reactorCoolantTriple/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorHeatSwitch/1.png b/front/public/images/large/IC2/reactorHeatSwitch/1.png deleted file mode 100644 index 1ed65bd87e..0000000000 Binary files a/front/public/images/large/IC2/reactorHeatSwitch/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorHeatSwitchCore/1.png b/front/public/images/large/IC2/reactorHeatSwitchCore/1.png deleted file mode 100644 index a748283f69..0000000000 Binary files a/front/public/images/large/IC2/reactorHeatSwitchCore/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorHeatSwitchDiamond/1.png b/front/public/images/large/IC2/reactorHeatSwitchDiamond/1.png deleted file mode 100644 index 9bd72cbce4..0000000000 Binary files a/front/public/images/large/IC2/reactorHeatSwitchDiamond/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorHeatSwitchSpread/1.png b/front/public/images/large/IC2/reactorHeatSwitchSpread/1.png deleted file mode 100644 index e9b54c2006..0000000000 Binary files a/front/public/images/large/IC2/reactorHeatSwitchSpread/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorLithiumCell/1.png b/front/public/images/large/IC2/reactorLithiumCell/1.png deleted file mode 100644 index 8d57e61fa5..0000000000 Binary files a/front/public/images/large/IC2/reactorLithiumCell/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorMOXDual/1.png b/front/public/images/large/IC2/reactorMOXDual/1.png deleted file mode 100644 index 43adcc0f17..0000000000 Binary files a/front/public/images/large/IC2/reactorMOXDual/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorMOXDualdepleted/0.png b/front/public/images/large/IC2/reactorMOXDualdepleted/0.png deleted file mode 100644 index 385d49ae3c..0000000000 Binary files a/front/public/images/large/IC2/reactorMOXDualdepleted/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorMOXQuad/1.png b/front/public/images/large/IC2/reactorMOXQuad/1.png deleted file mode 100644 index 8e1d8f084b..0000000000 Binary files a/front/public/images/large/IC2/reactorMOXQuad/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorMOXQuaddepleted/0.png b/front/public/images/large/IC2/reactorMOXQuaddepleted/0.png deleted file mode 100644 index f3eadc613b..0000000000 Binary files a/front/public/images/large/IC2/reactorMOXQuaddepleted/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorMOXSimple/1.png b/front/public/images/large/IC2/reactorMOXSimple/1.png deleted file mode 100644 index d66ccd0518..0000000000 Binary files a/front/public/images/large/IC2/reactorMOXSimple/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorMOXSimpledepleted/0.png b/front/public/images/large/IC2/reactorMOXSimpledepleted/0.png deleted file mode 100644 index 9680f4d3e0..0000000000 Binary files a/front/public/images/large/IC2/reactorMOXSimpledepleted/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorPlating/0.png b/front/public/images/large/IC2/reactorPlating/0.png deleted file mode 100644 index 735408a80d..0000000000 Binary files a/front/public/images/large/IC2/reactorPlating/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorPlatingExplosive/0.png b/front/public/images/large/IC2/reactorPlatingExplosive/0.png deleted file mode 100644 index ffe9b071f5..0000000000 Binary files a/front/public/images/large/IC2/reactorPlatingExplosive/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorPlatingHeat/0.png b/front/public/images/large/IC2/reactorPlatingHeat/0.png deleted file mode 100644 index 300e1997d4..0000000000 Binary files a/front/public/images/large/IC2/reactorPlatingHeat/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorReflector/1.png b/front/public/images/large/IC2/reactorReflector/1.png deleted file mode 100644 index 620905f90b..0000000000 Binary files a/front/public/images/large/IC2/reactorReflector/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorReflectorThick/1.png b/front/public/images/large/IC2/reactorReflectorThick/1.png deleted file mode 100644 index 480cdac55c..0000000000 Binary files a/front/public/images/large/IC2/reactorReflectorThick/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorUraniumDual/1.png b/front/public/images/large/IC2/reactorUraniumDual/1.png deleted file mode 100644 index 7bbe872786..0000000000 Binary files a/front/public/images/large/IC2/reactorUraniumDual/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorUraniumDualdepleted/0.png b/front/public/images/large/IC2/reactorUraniumDualdepleted/0.png deleted file mode 100644 index b9663c8b1d..0000000000 Binary files a/front/public/images/large/IC2/reactorUraniumDualdepleted/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorUraniumQuad/1.png b/front/public/images/large/IC2/reactorUraniumQuad/1.png deleted file mode 100644 index 07d67ec053..0000000000 Binary files a/front/public/images/large/IC2/reactorUraniumQuad/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorUraniumQuaddepleted/0.png b/front/public/images/large/IC2/reactorUraniumQuaddepleted/0.png deleted file mode 100644 index 194fe3ce79..0000000000 Binary files a/front/public/images/large/IC2/reactorUraniumQuaddepleted/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorUraniumSimple/1.png b/front/public/images/large/IC2/reactorUraniumSimple/1.png deleted file mode 100644 index e5afb9d4df..0000000000 Binary files a/front/public/images/large/IC2/reactorUraniumSimple/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorUraniumSimpledepleted/0.png b/front/public/images/large/IC2/reactorUraniumSimpledepleted/0.png deleted file mode 100644 index c5f79d2e22..0000000000 Binary files a/front/public/images/large/IC2/reactorUraniumSimpledepleted/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorVent/1.png b/front/public/images/large/IC2/reactorVent/1.png deleted file mode 100644 index 1b2fd92f9b..0000000000 Binary files a/front/public/images/large/IC2/reactorVent/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorVentCore/1.png b/front/public/images/large/IC2/reactorVentCore/1.png deleted file mode 100644 index e9800ae220..0000000000 Binary files a/front/public/images/large/IC2/reactorVentCore/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorVentDiamond/1.png b/front/public/images/large/IC2/reactorVentDiamond/1.png deleted file mode 100644 index a6646c6306..0000000000 Binary files a/front/public/images/large/IC2/reactorVentDiamond/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorVentGold/1.png b/front/public/images/large/IC2/reactorVentGold/1.png deleted file mode 100644 index b15cb73402..0000000000 Binary files a/front/public/images/large/IC2/reactorVentGold/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/reactorVentSpread/0.png b/front/public/images/large/IC2/reactorVentSpread/0.png deleted file mode 100644 index ee5a5ab925..0000000000 Binary files a/front/public/images/large/IC2/reactorVentSpread/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/upgradeModule/0.png b/front/public/images/large/IC2/upgradeModule/0.png deleted file mode 100644 index f99dc441bd..0000000000 Binary files a/front/public/images/large/IC2/upgradeModule/0.png and /dev/null differ diff --git a/front/public/images/large/IC2/upgradeModule/1.png b/front/public/images/large/IC2/upgradeModule/1.png deleted file mode 100644 index 2643a2107d..0000000000 Binary files a/front/public/images/large/IC2/upgradeModule/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/upgradeModule/2.png b/front/public/images/large/IC2/upgradeModule/2.png deleted file mode 100644 index 52ecc8ce3d..0000000000 Binary files a/front/public/images/large/IC2/upgradeModule/2.png and /dev/null differ diff --git a/front/public/images/large/IC2/upgradeModule/3.png b/front/public/images/large/IC2/upgradeModule/3.png deleted file mode 100644 index 52e769d083..0000000000 Binary files a/front/public/images/large/IC2/upgradeModule/3.png and /dev/null differ diff --git a/front/public/images/large/IC2/upgradeModule/4.png b/front/public/images/large/IC2/upgradeModule/4.png deleted file mode 100644 index f85d403e6e..0000000000 Binary files a/front/public/images/large/IC2/upgradeModule/4.png and /dev/null differ diff --git a/front/public/images/large/IC2/upgradeModule/5.png b/front/public/images/large/IC2/upgradeModule/5.png deleted file mode 100644 index fc8633f5ec..0000000000 Binary files a/front/public/images/large/IC2/upgradeModule/5.png and /dev/null differ diff --git a/front/public/images/large/IC2/upgradeModule/6.png b/front/public/images/large/IC2/upgradeModule/6.png deleted file mode 100644 index 51d5e5ad65..0000000000 Binary files a/front/public/images/large/IC2/upgradeModule/6.png and /dev/null differ diff --git a/front/public/images/large/IC2/windmeter/1.png b/front/public/images/large/IC2/windmeter/1.png deleted file mode 100644 index 9191eeb4db..0000000000 Binary files a/front/public/images/large/IC2/windmeter/1.png and /dev/null differ diff --git a/front/public/images/large/IC2/windmeter/26.png b/front/public/images/large/IC2/windmeter/26.png deleted file mode 100644 index 9191eeb4db..0000000000 Binary files a/front/public/images/large/IC2/windmeter/26.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/CardAppeng/0.png b/front/public/images/large/IC2NuclearControl/CardAppeng/0.png deleted file mode 100644 index 8ac599b7b1..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/CardAppeng/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/Item55ReactorCard/0.png b/front/public/images/large/IC2NuclearControl/Item55ReactorCard/0.png deleted file mode 100644 index f304b93853..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/Item55ReactorCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemEnergyArrayLocationCard/0.png b/front/public/images/large/IC2NuclearControl/ItemEnergyArrayLocationCard/0.png deleted file mode 100644 index 9c88aaa837..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemEnergyArrayLocationCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemEnergySensorKit/0.png b/front/public/images/large/IC2NuclearControl/ItemEnergySensorKit/0.png deleted file mode 100644 index dfb14bf045..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemEnergySensorKit/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemEnergySensorLocationCard/0.png b/front/public/images/large/IC2NuclearControl/ItemEnergySensorLocationCard/0.png deleted file mode 100644 index 77d77e69f5..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemEnergySensorLocationCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemInventoryScannerCard/0.png b/front/public/images/large/IC2NuclearControl/ItemInventoryScannerCard/0.png deleted file mode 100644 index 12de754cb1..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemInventoryScannerCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemLiquidArrayLocationCard/0.png b/front/public/images/large/IC2NuclearControl/ItemLiquidArrayLocationCard/0.png deleted file mode 100644 index 5104402712..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemLiquidArrayLocationCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/0.png b/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/0.png deleted file mode 100644 index 5ec7f7a10c..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/1.png b/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/1.png deleted file mode 100644 index 473e6434ff..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/1.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/2.png b/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/2.png deleted file mode 100644 index 76ba1bcfd8..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorKit/2.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/0.png b/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/0.png deleted file mode 100644 index efb0e455f6..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/1.png b/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/1.png deleted file mode 100644 index cdaaf5e03e..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/1.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/2.png b/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/2.png deleted file mode 100644 index f0174493ec..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemMultipleSensorLocationCard/2.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemPanelMemoryCard/0.png b/front/public/images/large/IC2NuclearControl/ItemPanelMemoryCard/0.png deleted file mode 100644 index f4e7a521d2..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemPanelMemoryCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemRemoteSensorKit/0.png b/front/public/images/large/IC2NuclearControl/ItemRemoteSensorKit/0.png deleted file mode 100644 index c1bc2d05a8..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemRemoteSensorKit/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemSensorLocationCard/0.png b/front/public/images/large/IC2NuclearControl/ItemSensorLocationCard/0.png deleted file mode 100644 index f304b93853..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemSensorLocationCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemTextCard/0.png b/front/public/images/large/IC2NuclearControl/ItemTextCard/0.png deleted file mode 100644 index 33d8757bf0..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemTextCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemTimeCard/0.png b/front/public/images/large/IC2NuclearControl/ItemTimeCard/0.png deleted file mode 100644 index dd586fa4cc..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemTimeCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemToolDigitalThermometer/1.png b/front/public/images/large/IC2NuclearControl/ItemToolDigitalThermometer/1.png deleted file mode 100644 index 20cd206202..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemToolDigitalThermometer/1.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemToolDigitalThermometer/101.png b/front/public/images/large/IC2NuclearControl/ItemToolDigitalThermometer/101.png deleted file mode 100644 index 20cd206202..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemToolDigitalThermometer/101.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemToolThermometer/0.png b/front/public/images/large/IC2NuclearControl/ItemToolThermometer/0.png deleted file mode 100644 index 9641373320..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemToolThermometer/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemUpgrade/0.png b/front/public/images/large/IC2NuclearControl/ItemUpgrade/0.png deleted file mode 100644 index fccd84ae6b..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemUpgrade/1.png b/front/public/images/large/IC2NuclearControl/ItemUpgrade/1.png deleted file mode 100644 index 8c76b13a84..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemUpgrade/2.png b/front/public/images/large/IC2NuclearControl/ItemUpgrade/2.png deleted file mode 100644 index 4686651d13..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemUpgrade/2.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemVanillaMachineCard/0.png b/front/public/images/large/IC2NuclearControl/ItemVanillaMachineCard/0.png deleted file mode 100644 index 12de754cb1..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemVanillaMachineCard/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/ItemVanilliaKit/0.png b/front/public/images/large/IC2NuclearControl/ItemVanilliaKit/0.png deleted file mode 100644 index 0db4c7bbb0..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/ItemVanilliaKit/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/KitAppeng/0.png b/front/public/images/large/IC2NuclearControl/KitAppeng/0.png deleted file mode 100644 index 78f4853436..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/KitAppeng/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/0.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/0.png deleted file mode 100644 index 56a0d87927..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/1.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/1.png deleted file mode 100644 index 2b375e7c97..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/1.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/2.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/2.png deleted file mode 100644 index 1bda93b9f6..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/2.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/3.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/3.png deleted file mode 100644 index 3569a8de3a..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlLight/3.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/0.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/0.png deleted file mode 100644 index 70baaee3ae..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/1.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/1.png deleted file mode 100644 index 2970156476..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/1.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/10.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/10.png deleted file mode 100644 index 99eca36cd3..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/10.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/2.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/2.png deleted file mode 100644 index 33ca1d8c70..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/2.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/3.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/3.png deleted file mode 100644 index ddae3ed928..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/3.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/4.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/4.png deleted file mode 100644 index 7edc9d1b24..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/4.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/5.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/5.png deleted file mode 100644 index d771405620..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/5.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/6.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/6.png deleted file mode 100644 index cfb5b94c2b..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/6.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/7.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/7.png deleted file mode 100644 index 585990f48c..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/7.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/8.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/8.png deleted file mode 100644 index 6120ff4591..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/8.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/9.png b/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/9.png deleted file mode 100644 index 5849943e58..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/blockNuclearControlMain/9.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/networkLink/0.png b/front/public/images/large/IC2NuclearControl/networkLink/0.png deleted file mode 100644 index e0d540969a..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/networkLink/0.png and /dev/null differ diff --git a/front/public/images/large/IC2NuclearControl/remoteMonitor/0.png b/front/public/images/large/IC2NuclearControl/remoteMonitor/0.png deleted file mode 100644 index e7a3586899..0000000000 Binary files a/front/public/images/large/IC2NuclearControl/remoteMonitor/0.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketFired/0.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketFired/0.png deleted file mode 100644 index e4a8526f68..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketFired/0.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketLava/0.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketLava/0.png deleted file mode 100644 index dd1326aefd..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketLava/0.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketMilk/0.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketMilk/0.png deleted file mode 100644 index 5ad83274dc..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketMilk/0.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketUnfired/0.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketUnfired/0.png deleted file mode 100644 index 65c8b5cba5..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketUnfired/0.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketWater/0.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketWater/0.png deleted file mode 100644 index acebfa60d8..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketWater/0.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/0.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/0.png deleted file mode 100644 index 833b3b4655..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/0.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/1.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/1.png deleted file mode 100644 index ee8f3135aa..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/1.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/10.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/10.png deleted file mode 100644 index 2629f7f315..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/10.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/11.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/11.png deleted file mode 100644 index c2bd304861..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/11.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/12.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/12.png deleted file mode 100644 index 0c1eee7f9e..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/12.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/13.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/13.png deleted file mode 100644 index 3b75aefe25..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/13.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/14.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/14.png deleted file mode 100644 index 0c1eee7f9e..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/14.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/15.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/15.png deleted file mode 100644 index 210c2b0b7d..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/15.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/16.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/16.png deleted file mode 100644 index eb2161c289..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/16.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/17.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/17.png deleted file mode 100644 index ada97e0dfa..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/17.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/18.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/18.png deleted file mode 100644 index d4dbd19652..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/18.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/19.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/19.png deleted file mode 100644 index 7bc262b1f8..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/19.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/2.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/2.png deleted file mode 100644 index 2d8204d4f0..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/2.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/20.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/20.png deleted file mode 100644 index 9fcf07596f..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/20.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/21.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/21.png deleted file mode 100644 index eefa1e567d..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/21.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/22.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/22.png deleted file mode 100644 index 8101b9b937..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/22.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/23.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/23.png deleted file mode 100644 index eea44e978c..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/23.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/24.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/24.png deleted file mode 100644 index b3f319b30d..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/24.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/25.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/25.png deleted file mode 100644 index 469c60ad39..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/25.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/26.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/26.png deleted file mode 100644 index f9d90b3db5..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/26.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/27.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/27.png deleted file mode 100644 index ae08dbf624..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/27.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/28.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/28.png deleted file mode 100644 index 53740aa470..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/28.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/29.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/29.png deleted file mode 100644 index d1766d7fc9..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/29.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/3.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/3.png deleted file mode 100644 index bb8ee8e134..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/3.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/30.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/30.png deleted file mode 100644 index 9f92e52acf..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/30.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/31.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/31.png deleted file mode 100644 index 8208ccb27c..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/31.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/4.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/4.png deleted file mode 100644 index e2ed72795b..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/4.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/5.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/5.png deleted file mode 100644 index 47f87c7ad4..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/5.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/6.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/6.png deleted file mode 100644 index c2a5576092..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/6.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/7.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/7.png deleted file mode 100644 index e509b6a98d..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/7.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/8.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/8.png deleted file mode 100644 index 8101b9b937..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/8.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/9.png b/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/9.png deleted file mode 100644 index d2a191ef71..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/clayBucketsTinkers/9.png and /dev/null differ diff --git a/front/public/images/large/IguanaTweaksTConstruct/rubberChicken/0.png b/front/public/images/large/IguanaTweaksTConstruct/rubberChicken/0.png deleted file mode 100644 index bc130cc9d6..0000000000 Binary files a/front/public/images/large/IguanaTweaksTConstruct/rubberChicken/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/0.png b/front/public/images/large/IronChest/BlockIronChest/0.png deleted file mode 100644 index b2ff84b36b..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/1.png b/front/public/images/large/IronChest/BlockIronChest/1.png deleted file mode 100644 index c89bb85a2e..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/1.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/2.png b/front/public/images/large/IronChest/BlockIronChest/2.png deleted file mode 100644 index 0cd55de0cb..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/2.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/3.png b/front/public/images/large/IronChest/BlockIronChest/3.png deleted file mode 100644 index e916dfe015..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/3.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/4.png b/front/public/images/large/IronChest/BlockIronChest/4.png deleted file mode 100644 index 2e7c6badfb..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/4.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/5.png b/front/public/images/large/IronChest/BlockIronChest/5.png deleted file mode 100644 index b3dd7651e6..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/5.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/6.png b/front/public/images/large/IronChest/BlockIronChest/6.png deleted file mode 100644 index 54c8fcebc5..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/6.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/7.png b/front/public/images/large/IronChest/BlockIronChest/7.png deleted file mode 100644 index b40f098b3a..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/7.png and /dev/null differ diff --git a/front/public/images/large/IronChest/BlockIronChest/9.png b/front/public/images/large/IronChest/BlockIronChest/9.png deleted file mode 100644 index 5f19994426..0000000000 Binary files a/front/public/images/large/IronChest/BlockIronChest/9.png and /dev/null differ diff --git a/front/public/images/large/IronChest/copperIronUpgrade/0.png b/front/public/images/large/IronChest/copperIronUpgrade/0.png deleted file mode 100644 index cf994e32d3..0000000000 Binary files a/front/public/images/large/IronChest/copperIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/copperSteelUpgrade/0.png b/front/public/images/large/IronChest/copperSteelUpgrade/0.png deleted file mode 100644 index 6f21500e64..0000000000 Binary files a/front/public/images/large/IronChest/copperSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/crystalDarkSteelUpgrade/0.png b/front/public/images/large/IronChest/crystalDarkSteelUpgrade/0.png deleted file mode 100644 index 9c6274e890..0000000000 Binary files a/front/public/images/large/IronChest/crystalDarkSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/diamondCrystalUpgrade/0.png b/front/public/images/large/IronChest/diamondCrystalUpgrade/0.png deleted file mode 100644 index 8253a3eb55..0000000000 Binary files a/front/public/images/large/IronChest/diamondCrystalUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/diamondDarkSteelUpgrade/0.png b/front/public/images/large/IronChest/diamondDarkSteelUpgrade/0.png deleted file mode 100644 index 849c04c093..0000000000 Binary files a/front/public/images/large/IronChest/diamondDarkSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/diamondObsidianUpgrade/0.png b/front/public/images/large/IronChest/diamondObsidianUpgrade/0.png deleted file mode 100644 index b033591e45..0000000000 Binary files a/front/public/images/large/IronChest/diamondObsidianUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/goldDiamondUpgrade/0.png b/front/public/images/large/IronChest/goldDiamondUpgrade/0.png deleted file mode 100644 index 5c94c485f9..0000000000 Binary files a/front/public/images/large/IronChest/goldDiamondUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/ironGoldUpgrade/0.png b/front/public/images/large/IronChest/ironGoldUpgrade/0.png deleted file mode 100644 index daa38da759..0000000000 Binary files a/front/public/images/large/IronChest/ironGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/ironSteelUpgrade/0.png b/front/public/images/large/IronChest/ironSteelUpgrade/0.png deleted file mode 100644 index 121ae3f44b..0000000000 Binary files a/front/public/images/large/IronChest/ironSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/obsidianDarkSteelUpgrade/0.png b/front/public/images/large/IronChest/obsidianDarkSteelUpgrade/0.png deleted file mode 100644 index 5a776e0c93..0000000000 Binary files a/front/public/images/large/IronChest/obsidianDarkSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/steelGoldUpgrade/0.png b/front/public/images/large/IronChest/steelGoldUpgrade/0.png deleted file mode 100644 index 0ed0741442..0000000000 Binary files a/front/public/images/large/IronChest/steelGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/woodCopperUpgrade/0.png b/front/public/images/large/IronChest/woodCopperUpgrade/0.png deleted file mode 100644 index 5c99ab35a9..0000000000 Binary files a/front/public/images/large/IronChest/woodCopperUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/IronChest/woodIronUpgrade/0.png b/front/public/images/large/IronChest/woodIronUpgrade/0.png deleted file mode 100644 index 018386d83f..0000000000 Binary files a/front/public/images/large/IronChest/woodIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/barrel/0.png b/front/public/images/large/JABBA/barrel/0.png deleted file mode 100644 index 53be263710..0000000000 Binary files a/front/public/images/large/JABBA/barrel/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/0.png b/front/public/images/large/JABBA/hammer/0.png deleted file mode 100644 index 74abab57c7..0000000000 Binary files a/front/public/images/large/JABBA/hammer/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/1.png b/front/public/images/large/JABBA/hammer/1.png deleted file mode 100644 index 4a6b291333..0000000000 Binary files a/front/public/images/large/JABBA/hammer/1.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/2.png b/front/public/images/large/JABBA/hammer/2.png deleted file mode 100644 index 834e94a789..0000000000 Binary files a/front/public/images/large/JABBA/hammer/2.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/3.png b/front/public/images/large/JABBA/hammer/3.png deleted file mode 100644 index 0725b778e3..0000000000 Binary files a/front/public/images/large/JABBA/hammer/3.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/4.png b/front/public/images/large/JABBA/hammer/4.png deleted file mode 100644 index 0f058237d4..0000000000 Binary files a/front/public/images/large/JABBA/hammer/4.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/5.png b/front/public/images/large/JABBA/hammer/5.png deleted file mode 100644 index 1480f67993..0000000000 Binary files a/front/public/images/large/JABBA/hammer/5.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/6.png b/front/public/images/large/JABBA/hammer/6.png deleted file mode 100644 index c0293c9b84..0000000000 Binary files a/front/public/images/large/JABBA/hammer/6.png and /dev/null differ diff --git a/front/public/images/large/JABBA/hammer/7.png b/front/public/images/large/JABBA/hammer/7.png deleted file mode 100644 index 1b258de325..0000000000 Binary files a/front/public/images/large/JABBA/hammer/7.png and /dev/null differ diff --git a/front/public/images/large/JABBA/mover/0.png b/front/public/images/large/JABBA/mover/0.png deleted file mode 100644 index 15b92af9e1..0000000000 Binary files a/front/public/images/large/JABBA/mover/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/moverDiamond/0.png b/front/public/images/large/JABBA/moverDiamond/0.png deleted file mode 100644 index b83f0a7fdb..0000000000 Binary files a/front/public/images/large/JABBA/moverDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/moverFolded/0.png b/front/public/images/large/JABBA/moverFolded/0.png deleted file mode 100644 index de049708db..0000000000 Binary files a/front/public/images/large/JABBA/moverFolded/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/tuningFork/0.png b/front/public/images/large/JABBA/tuningFork/0.png deleted file mode 100644 index c20baf424a..0000000000 Binary files a/front/public/images/large/JABBA/tuningFork/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/0.png b/front/public/images/large/JABBA/upgradeCore/0.png deleted file mode 100644 index 96184a0935..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/1.png b/front/public/images/large/JABBA/upgradeCore/1.png deleted file mode 100644 index 601c50f5f4..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/1.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/10.png b/front/public/images/large/JABBA/upgradeCore/10.png deleted file mode 100644 index 2158df4202..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/10.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/11.png b/front/public/images/large/JABBA/upgradeCore/11.png deleted file mode 100644 index f0099c9b88..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/11.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/12.png b/front/public/images/large/JABBA/upgradeCore/12.png deleted file mode 100644 index 1541095c15..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/12.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/13.png b/front/public/images/large/JABBA/upgradeCore/13.png deleted file mode 100644 index 1263495b51..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/13.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/2.png b/front/public/images/large/JABBA/upgradeCore/2.png deleted file mode 100644 index 738417e973..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/2.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/3.png b/front/public/images/large/JABBA/upgradeCore/3.png deleted file mode 100644 index a1c10cee67..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/3.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/4.png b/front/public/images/large/JABBA/upgradeCore/4.png deleted file mode 100644 index 064e360fdf..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/4.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/5.png b/front/public/images/large/JABBA/upgradeCore/5.png deleted file mode 100644 index 519a39d22c..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/5.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/6.png b/front/public/images/large/JABBA/upgradeCore/6.png deleted file mode 100644 index 5ca067d50b..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/6.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/7.png b/front/public/images/large/JABBA/upgradeCore/7.png deleted file mode 100644 index 1d3555a1d9..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/7.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/8.png b/front/public/images/large/JABBA/upgradeCore/8.png deleted file mode 100644 index 8b1ca86271..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/8.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeCore/9.png b/front/public/images/large/JABBA/upgradeCore/9.png deleted file mode 100644 index c6ff31fd94..0000000000 Binary files a/front/public/images/large/JABBA/upgradeCore/9.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeSide/0.png b/front/public/images/large/JABBA/upgradeSide/0.png deleted file mode 100644 index 03f3fb28e7..0000000000 Binary files a/front/public/images/large/JABBA/upgradeSide/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeSide/1.png b/front/public/images/large/JABBA/upgradeSide/1.png deleted file mode 100644 index e1bbde556c..0000000000 Binary files a/front/public/images/large/JABBA/upgradeSide/1.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeSide/2.png b/front/public/images/large/JABBA/upgradeSide/2.png deleted file mode 100644 index 0e8006ad62..0000000000 Binary files a/front/public/images/large/JABBA/upgradeSide/2.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/0.png b/front/public/images/large/JABBA/upgradeStructural/0.png deleted file mode 100644 index f2b7c94e46..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/0.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/1.png b/front/public/images/large/JABBA/upgradeStructural/1.png deleted file mode 100644 index fc2bc2ae6f..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/1.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/10.png b/front/public/images/large/JABBA/upgradeStructural/10.png deleted file mode 100644 index 26dc191aaa..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/10.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/11.png b/front/public/images/large/JABBA/upgradeStructural/11.png deleted file mode 100644 index 010b98720d..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/11.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/12.png b/front/public/images/large/JABBA/upgradeStructural/12.png deleted file mode 100644 index ad131ff288..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/12.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/13.png b/front/public/images/large/JABBA/upgradeStructural/13.png deleted file mode 100644 index a11df5106d..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/13.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/2.png b/front/public/images/large/JABBA/upgradeStructural/2.png deleted file mode 100644 index 9a6d3e3af3..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/2.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/3.png b/front/public/images/large/JABBA/upgradeStructural/3.png deleted file mode 100644 index 408fd3a332..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/3.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/4.png b/front/public/images/large/JABBA/upgradeStructural/4.png deleted file mode 100644 index a1e6f7f8e4..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/4.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/5.png b/front/public/images/large/JABBA/upgradeStructural/5.png deleted file mode 100644 index a3bccaf9ef..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/5.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/6.png b/front/public/images/large/JABBA/upgradeStructural/6.png deleted file mode 100644 index 53b0731de3..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/6.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/7.png b/front/public/images/large/JABBA/upgradeStructural/7.png deleted file mode 100644 index a751f7bfdf..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/7.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/8.png b/front/public/images/large/JABBA/upgradeStructural/8.png deleted file mode 100644 index e7e987de74..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/8.png and /dev/null differ diff --git a/front/public/images/large/JABBA/upgradeStructural/9.png b/front/public/images/large/JABBA/upgradeStructural/9.png deleted file mode 100644 index d1e35ea3b3..0000000000 Binary files a/front/public/images/large/JABBA/upgradeStructural/9.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.ItemPipeSignCreator/0.png b/front/public/images/large/LogisticsPipes/item.ItemPipeSignCreator/0.png deleted file mode 100644 index 44da2655ac..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.ItemPipeSignCreator/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeBlockRequestTable/0.png b/front/public/images/large/LogisticsPipes/item.PipeBlockRequestTable/0.png deleted file mode 100644 index 5da69d9e7c..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeBlockRequestTable/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeFluidBasic/0.png b/front/public/images/large/LogisticsPipes/item.PipeFluidBasic/0.png deleted file mode 100644 index e7bb12b10b..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeFluidBasic/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeFluidExtractor/0.png b/front/public/images/large/LogisticsPipes/item.PipeFluidExtractor/0.png deleted file mode 100644 index e668f62ff8..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeFluidExtractor/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeFluidInsertion/0.png b/front/public/images/large/LogisticsPipes/item.PipeFluidInsertion/0.png deleted file mode 100644 index fe56a65dc1..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeFluidInsertion/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeFluidProvider/0.png b/front/public/images/large/LogisticsPipes/item.PipeFluidProvider/0.png deleted file mode 100644 index 0de58672a1..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeFluidProvider/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeFluidRequestLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeFluidRequestLogistics/0.png deleted file mode 100644 index 2912de1bf4..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeFluidRequestLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeFluidSatellite/0.png b/front/public/images/large/LogisticsPipes/item.PipeFluidSatellite/0.png deleted file mode 100644 index f98d7c2989..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeFluidSatellite/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeFluidSupplierMk2/0.png b/front/public/images/large/LogisticsPipes/item.PipeFluidSupplierMk2/0.png deleted file mode 100644 index 892aff905b..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeFluidSupplierMk2/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsApiaristAnalyser/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsApiaristAnalyser/0.png deleted file mode 100644 index 1b6237efac..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsApiaristAnalyser/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsApiaristSink/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsApiaristSink/0.png deleted file mode 100644 index b141570216..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsApiaristSink/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsBasicLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsBasicLogistics/0.png deleted file mode 100644 index f444b9e83c..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsBasicLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsBasicTransport/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsBasicTransport/0.png deleted file mode 100644 index f444b9e83c..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsBasicTransport/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogistics/0.png deleted file mode 100644 index 14fbc031cc..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogisticsMk2/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogisticsMk2/0.png deleted file mode 100644 index d755b14483..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogisticsMk2/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogisticsMk3/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogisticsMk3/0.png deleted file mode 100644 index 29bea767d3..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsCraftingLogisticsMk3/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsFirewall/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsFirewall/0.png deleted file mode 100644 index 2b997d61a6..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsFirewall/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsFluidSupplier/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsFluidSupplier/0.png deleted file mode 100644 index b3bf47da67..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsFluidSupplier/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsInvSysConnector/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsInvSysConnector/0.png deleted file mode 100644 index da2ae48a32..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsInvSysConnector/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsProviderLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsProviderLogistics/0.png deleted file mode 100644 index 32a5b9ee52..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsProviderLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsProviderLogisticsMk2/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsProviderLogisticsMk2/0.png deleted file mode 100644 index adb4d593c4..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsProviderLogisticsMk2/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsRemoteOrdererLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsRemoteOrdererLogistics/0.png deleted file mode 100644 index 45ecccb80c..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsRemoteOrdererLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsRequestLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsRequestLogistics/0.png deleted file mode 100644 index 3077d3d6ed..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsRequestLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsRequestLogisticsMk2/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsRequestLogisticsMk2/0.png deleted file mode 100644 index 4a5daca10f..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsRequestLogisticsMk2/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsSatelliteLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsSatelliteLogistics/0.png deleted file mode 100644 index 4e19b0d8ff..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsSatelliteLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsSupplierLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsSupplierLogistics/0.png deleted file mode 100644 index 7244bb8e32..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsSupplierLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsSystemDestinationLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsSystemDestinationLogistics/0.png deleted file mode 100644 index 90253fa5bd..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsSystemDestinationLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeItemsSystemEntranceLogistics/0.png b/front/public/images/large/LogisticsPipes/item.PipeItemsSystemEntranceLogistics/0.png deleted file mode 100644 index 6a9083fe3d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeItemsSystemEntranceLogistics/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk1/0.png b/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk1/0.png deleted file mode 100644 index fe59e5ba17..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk1/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk2/0.png b/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk2/0.png deleted file mode 100644 index 16b7211a32..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk2/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk3/0.png b/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk3/0.png deleted file mode 100644 index 70d519af6d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk3/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk4/0.png b/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk4/0.png deleted file mode 100644 index 8aafc252c9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk4/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk5/0.png b/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk5/0.png deleted file mode 100644 index 14882f27c8..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.PipeLogisticsChassiMk5/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.brokenItem/0.png b/front/public/images/large/LogisticsPipes/item.brokenItem/0.png deleted file mode 100644 index a263e6eb93..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.brokenItem/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemDisk/0.png b/front/public/images/large/LogisticsPipes/item.itemDisk/0.png deleted file mode 100644 index f3ab5721be..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemDisk/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/0.png b/front/public/images/large/LogisticsPipes/item.itemModule/0.png deleted file mode 100644 index ea9e539701..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/1.png b/front/public/images/large/LogisticsPipes/item.itemModule/1.png deleted file mode 100644 index 3c9bdd847d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/1.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/10.png b/front/public/images/large/LogisticsPipes/item.itemModule/10.png deleted file mode 100644 index a52df2118e..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/10.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/103.png b/front/public/images/large/LogisticsPipes/item.itemModule/103.png deleted file mode 100644 index db3ed4707f..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/103.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/107.png b/front/public/images/large/LogisticsPipes/item.itemModule/107.png deleted file mode 100644 index 9641c42828..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/107.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/11.png b/front/public/images/large/LogisticsPipes/item.itemModule/11.png deleted file mode 100644 index 2b253756e5..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/11.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/12.png b/front/public/images/large/LogisticsPipes/item.itemModule/12.png deleted file mode 100644 index ad5695fe61..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/12.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/13.png b/front/public/images/large/LogisticsPipes/item.itemModule/13.png deleted file mode 100644 index ba9e565fe9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/13.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/131.png b/front/public/images/large/LogisticsPipes/item.itemModule/131.png deleted file mode 100644 index e262eb1efe..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/131.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/14.png b/front/public/images/large/LogisticsPipes/item.itemModule/14.png deleted file mode 100644 index 6731224579..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/14.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/15.png b/front/public/images/large/LogisticsPipes/item.itemModule/15.png deleted file mode 100644 index 9e95539f64..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/15.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/16.png b/front/public/images/large/LogisticsPipes/item.itemModule/16.png deleted file mode 100644 index 53679a96fa..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/16.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/17.png b/front/public/images/large/LogisticsPipes/item.itemModule/17.png deleted file mode 100644 index 9b46fdd28e..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/17.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/2.png b/front/public/images/large/LogisticsPipes/item.itemModule/2.png deleted file mode 100644 index 53dfc45edc..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/2.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/203.png b/front/public/images/large/LogisticsPipes/item.itemModule/203.png deleted file mode 100644 index 111cf4bac3..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/203.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/207.png b/front/public/images/large/LogisticsPipes/item.itemModule/207.png deleted file mode 100644 index 8547465620..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/207.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/3.png b/front/public/images/large/LogisticsPipes/item.itemModule/3.png deleted file mode 100644 index 068c5b4b6c..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/3.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/30.png b/front/public/images/large/LogisticsPipes/item.itemModule/30.png deleted file mode 100644 index 72dddc3012..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/30.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/300.png b/front/public/images/large/LogisticsPipes/item.itemModule/300.png deleted file mode 100644 index 105d57e74b..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/300.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/301.png b/front/public/images/large/LogisticsPipes/item.itemModule/301.png deleted file mode 100644 index c1f9397ea4..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/301.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/31.png b/front/public/images/large/LogisticsPipes/item.itemModule/31.png deleted file mode 100644 index 58ce1c0dfb..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/31.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/4.png b/front/public/images/large/LogisticsPipes/item.itemModule/4.png deleted file mode 100644 index c6d5a09f08..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/4.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/5.png b/front/public/images/large/LogisticsPipes/item.itemModule/5.png deleted file mode 100644 index c5feeb990e..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/5.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/500.png b/front/public/images/large/LogisticsPipes/item.itemModule/500.png deleted file mode 100644 index 6f2fa8f446..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/500.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/501.png b/front/public/images/large/LogisticsPipes/item.itemModule/501.png deleted file mode 100644 index cd9f64a95e..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/501.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/502.png b/front/public/images/large/LogisticsPipes/item.itemModule/502.png deleted file mode 100644 index ceca4352af..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/502.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/6.png b/front/public/images/large/LogisticsPipes/item.itemModule/6.png deleted file mode 100644 index 57477808b3..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/6.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/600.png b/front/public/images/large/LogisticsPipes/item.itemModule/600.png deleted file mode 100644 index bf6605f548..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/600.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/601.png b/front/public/images/large/LogisticsPipes/item.itemModule/601.png deleted file mode 100644 index 39a25f8c55..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/601.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/602.png b/front/public/images/large/LogisticsPipes/item.itemModule/602.png deleted file mode 100644 index fab80930e0..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/602.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/7.png b/front/public/images/large/LogisticsPipes/item.itemModule/7.png deleted file mode 100644 index 8cdb4a2660..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/7.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/8.png b/front/public/images/large/LogisticsPipes/item.itemModule/8.png deleted file mode 100644 index 0c0df29beb..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/8.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemModule/9.png b/front/public/images/large/LogisticsPipes/item.itemModule/9.png deleted file mode 100644 index 4cfd109293..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemModule/9.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/0.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/0.png deleted file mode 100644 index 091aa0dfec..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/1.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/1.png deleted file mode 100644 index ea32a48579..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/10.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/10.png deleted file mode 100644 index 63c7a92e0d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/10.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/11.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/11.png deleted file mode 100644 index 3573024bc1..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/11.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/12.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/12.png deleted file mode 100644 index 364bde0fe9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/12.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/13.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/13.png deleted file mode 100644 index 0892f2c3ed..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/13.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/14.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/14.png deleted file mode 100644 index 6c609695f1..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/14.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/15.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/15.png deleted file mode 100644 index d3c6a60438..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/15.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/2.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/2.png deleted file mode 100644 index 942130d069..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/2.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/20.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/20.png deleted file mode 100644 index 4b8242b540..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/20.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/21.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/21.png deleted file mode 100644 index eacf8f251f..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/21.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/22.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/22.png deleted file mode 100644 index 1d5bda02e5..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/22.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/23.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/23.png deleted file mode 100644 index a451fea3e5..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/23.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/24.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/24.png deleted file mode 100644 index aa2a8909ca..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/24.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/25.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/25.png deleted file mode 100644 index 60f007d333..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/25.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/26.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/26.png deleted file mode 100644 index ef8a91a46a..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/26.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/3.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/3.png deleted file mode 100644 index 4974951bb7..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/3.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/30.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/30.png deleted file mode 100644 index 6b784f94ab..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/30.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/32.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/32.png deleted file mode 100644 index 40d28e4401..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/32.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/33.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/33.png deleted file mode 100644 index 1d57121f2c..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/33.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/34.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/34.png deleted file mode 100644 index 32f92520f3..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/34.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/35.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/35.png deleted file mode 100644 index 2c85854830..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/35.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/36.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/36.png deleted file mode 100644 index 370af8ecaf..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/36.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/4.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/4.png deleted file mode 100644 index 9219251df5..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/4.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/40.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/40.png deleted file mode 100644 index feba568266..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/40.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/41.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/41.png deleted file mode 100644 index 8b608a50c3..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/41.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/42.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/42.png deleted file mode 100644 index 40c7ca062b..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/42.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/44.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/44.png deleted file mode 100644 index 67142a74e9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/44.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/5.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/5.png deleted file mode 100644 index 335c467e5a..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/5.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.itemUpgrade/6.png b/front/public/images/large/LogisticsPipes/item.itemUpgrade/6.png deleted file mode 100644 index 96a1a9f126..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.itemUpgrade/6.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsHUDGlasses/0.png b/front/public/images/large/LogisticsPipes/item.logisticsHUDGlasses/0.png deleted file mode 100644 index d35f38d032..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsHUDGlasses/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsItemCard/0.png b/front/public/images/large/LogisticsPipes/item.logisticsItemCard/0.png deleted file mode 100644 index 0446ae4410..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsItemCard/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/0.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/0.png deleted file mode 100644 index 26519d8f00..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/1.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/1.png deleted file mode 100644 index 91dbcfd807..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/1.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/2.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/2.png deleted file mode 100644 index 24fcdfb8fb..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/2.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/3.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/3.png deleted file mode 100644 index 24d8323459..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/3.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/4.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/4.png deleted file mode 100644 index 543507a07f..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/4.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/5.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/5.png deleted file mode 100644 index d93f24ab44..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/5.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/6.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/6.png deleted file mode 100644 index 4cc78463c8..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/6.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/7.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/7.png deleted file mode 100644 index 75b4bae1fe..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/7.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.logisticsParts/8.png b/front/public/images/large/LogisticsPipes/item.logisticsParts/8.png deleted file mode 100644 index 9603fb786d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.logisticsParts/8.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/0.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/0.png deleted file mode 100644 index bbe7b80274..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/1.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/1.png deleted file mode 100644 index 9e6d2a8ae9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/1.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/10.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/10.png deleted file mode 100644 index eb981d6023..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/10.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/11.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/11.png deleted file mode 100644 index a3ac082a28..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/11.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/12.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/12.png deleted file mode 100644 index a67d585376..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/12.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/13.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/13.png deleted file mode 100644 index f922c24d41..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/13.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/14.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/14.png deleted file mode 100644 index 81c22aeb7f..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/14.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/15.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/15.png deleted file mode 100644 index e6f86faf80..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/15.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/2.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/2.png deleted file mode 100644 index eb981d6023..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/2.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/3.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/3.png deleted file mode 100644 index a3ac082a28..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/3.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/4.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/4.png deleted file mode 100644 index a67d585376..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/4.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/5.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/5.png deleted file mode 100644 index f922c24d41..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/5.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/6.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/6.png deleted file mode 100644 index 81c22aeb7f..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/6.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/7.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/7.png deleted file mode 100644 index e6f86faf80..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/7.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/8.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/8.png deleted file mode 100644 index bbe7b80274..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/8.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeComponents/9.png b/front/public/images/large/LogisticsPipes/item.pipeComponents/9.png deleted file mode 100644 index 9e6d2a8ae9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeComponents/9.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.pipeController/0.png b/front/public/images/large/LogisticsPipes/item.pipeController/0.png deleted file mode 100644 index 7571f2658d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.pipeController/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/0.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/0.png deleted file mode 100644 index 26bb942e8d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/1.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/1.png deleted file mode 100644 index 0b4ab629de..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/1.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/10.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/10.png deleted file mode 100644 index 033694b3c0..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/10.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/11.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/11.png deleted file mode 100644 index 3f1f2b8990..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/11.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/12.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/12.png deleted file mode 100644 index 508ffeb1b3..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/12.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/13.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/13.png deleted file mode 100644 index bb768fff6d..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/13.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/14.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/14.png deleted file mode 100644 index 0783ee51e9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/14.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/15.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/15.png deleted file mode 100644 index dafa9855c8..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/15.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/16.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/16.png deleted file mode 100644 index bcbd545d62..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/16.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/2.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/2.png deleted file mode 100644 index b9ad03dcae..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/2.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/3.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/3.png deleted file mode 100644 index 5d03406617..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/3.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/4.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/4.png deleted file mode 100644 index 3903185884..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/4.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/5.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/5.png deleted file mode 100644 index 937757fdcc..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/5.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/6.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/6.png deleted file mode 100644 index f52d5b7218..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/6.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/7.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/7.png deleted file mode 100644 index a596f77b35..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/7.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/8.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/8.png deleted file mode 100644 index 8810fc4125..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/8.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/9.png b/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/9.png deleted file mode 100644 index c60e2cf3a0..0000000000 Binary files a/front/public/images/large/LogisticsPipes/item.remoteOrdererItem/9.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsPipeBlock/0.png b/front/public/images/large/LogisticsPipes/logisticsPipeBlock/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsPipeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/0.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/0.png deleted file mode 100644 index bb8292bdc7..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/0.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/1.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/1.png deleted file mode 100644 index f60809022b..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/1.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/11.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/11.png deleted file mode 100644 index 40cb8279de..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/11.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/12.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/12.png deleted file mode 100644 index fd46720095..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/12.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/2.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/2.png deleted file mode 100644 index 2f70b46f8c..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/2.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/3.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/3.png deleted file mode 100644 index 3fafc327de..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/3.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/4.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/4.png deleted file mode 100644 index dc125b4cf9..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/4.png and /dev/null differ diff --git a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/5.png b/front/public/images/large/LogisticsPipes/logisticsSolidBlock/5.png deleted file mode 100644 index ca69b57b95..0000000000 Binary files a/front/public/images/large/LogisticsPipes/logisticsSolidBlock/5.png and /dev/null differ diff --git a/front/public/images/large/MCFrames/mcframes.frame/0.png b/front/public/images/large/MCFrames/mcframes.frame/0.png deleted file mode 100644 index e5cb97a767..0000000000 Binary files a/front/public/images/large/MCFrames/mcframes.frame/0.png and /dev/null differ diff --git a/front/public/images/large/MCFrames/mcframes.motor/0.png b/front/public/images/large/MCFrames/mcframes.motor/0.png deleted file mode 100644 index dd9e8ac969..0000000000 Binary files a/front/public/images/large/MCFrames/mcframes.motor/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/apimancersDrainer/0.png b/front/public/images/large/MagicBees/apimancersDrainer/0.png deleted file mode 100644 index b28f9cabb7..0000000000 Binary files a/front/public/images/large/MagicBees/apimancersDrainer/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/backpack.thaumaturgeT1/0.png b/front/public/images/large/MagicBees/backpack.thaumaturgeT1/0.png deleted file mode 100644 index a70b86c2d3..0000000000 Binary files a/front/public/images/large/MagicBees/backpack.thaumaturgeT1/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/backpack.thaumaturgeT2/0.png b/front/public/images/large/MagicBees/backpack.thaumaturgeT2/0.png deleted file mode 100644 index 2f85971af9..0000000000 Binary files a/front/public/images/large/MagicBees/backpack.thaumaturgeT2/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/beeNugget/0.png b/front/public/images/large/MagicBees/beeNugget/0.png deleted file mode 100644 index 8cbe20377a..0000000000 Binary files a/front/public/images/large/MagicBees/beeNugget/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/beeNugget/1.png b/front/public/images/large/MagicBees/beeNugget/1.png deleted file mode 100644 index c37931292e..0000000000 Binary files a/front/public/images/large/MagicBees/beeNugget/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/beeNugget/2.png b/front/public/images/large/MagicBees/beeNugget/2.png deleted file mode 100644 index 801a247f5d..0000000000 Binary files a/front/public/images/large/MagicBees/beeNugget/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/beeNugget/3.png b/front/public/images/large/MagicBees/beeNugget/3.png deleted file mode 100644 index b6de0b9462..0000000000 Binary files a/front/public/images/large/MagicBees/beeNugget/3.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/beeNugget/4.png b/front/public/images/large/MagicBees/beeNugget/4.png deleted file mode 100644 index 72f3cafc85..0000000000 Binary files a/front/public/images/large/MagicBees/beeNugget/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/beeRing/0.png b/front/public/images/large/MagicBees/beeRing/0.png deleted file mode 100644 index ce554792fe..0000000000 Binary files a/front/public/images/large/MagicBees/beeRing/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/0.png b/front/public/images/large/MagicBees/capsule.magic/0.png deleted file mode 100644 index e482e77591..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/1.png b/front/public/images/large/MagicBees/capsule.magic/1.png deleted file mode 100644 index ea11e45dee..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/10.png b/front/public/images/large/MagicBees/capsule.magic/10.png deleted file mode 100644 index d5134e5507..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/10.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/11.png b/front/public/images/large/MagicBees/capsule.magic/11.png deleted file mode 100644 index 369a684b43..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/11.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/12.png b/front/public/images/large/MagicBees/capsule.magic/12.png deleted file mode 100644 index 1559a6879e..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/12.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/13.png b/front/public/images/large/MagicBees/capsule.magic/13.png deleted file mode 100644 index cd14e57d45..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/13.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/14.png b/front/public/images/large/MagicBees/capsule.magic/14.png deleted file mode 100644 index 7777d3db39..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/14.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/15.png b/front/public/images/large/MagicBees/capsule.magic/15.png deleted file mode 100644 index 0960b6cf42..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/15.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/2.png b/front/public/images/large/MagicBees/capsule.magic/2.png deleted file mode 100644 index b0bd556517..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/3.png b/front/public/images/large/MagicBees/capsule.magic/3.png deleted file mode 100644 index bf7ae0e691..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/3.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/4.png b/front/public/images/large/MagicBees/capsule.magic/4.png deleted file mode 100644 index d3badb29f2..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/5.png b/front/public/images/large/MagicBees/capsule.magic/5.png deleted file mode 100644 index 94ec85ad46..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/5.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/6.png b/front/public/images/large/MagicBees/capsule.magic/6.png deleted file mode 100644 index 780f0652ac..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/6.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/7.png b/front/public/images/large/MagicBees/capsule.magic/7.png deleted file mode 100644 index bbcca617d1..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/7.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/8.png b/front/public/images/large/MagicBees/capsule.magic/8.png deleted file mode 100644 index c9861fb7e7..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/8.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.magic/9.png b/front/public/images/large/MagicBees/capsule.magic/9.png deleted file mode 100644 index bd95df35ea..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.magic/9.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/0.png b/front/public/images/large/MagicBees/capsule.void/0.png deleted file mode 100644 index 8c107b1029..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/1.png b/front/public/images/large/MagicBees/capsule.void/1.png deleted file mode 100644 index 2abdc1c0aa..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/10.png b/front/public/images/large/MagicBees/capsule.void/10.png deleted file mode 100644 index ad7bcfe6cb..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/10.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/11.png b/front/public/images/large/MagicBees/capsule.void/11.png deleted file mode 100644 index c7c936f4ab..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/11.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/12.png b/front/public/images/large/MagicBees/capsule.void/12.png deleted file mode 100644 index 235691ec7c..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/12.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/13.png b/front/public/images/large/MagicBees/capsule.void/13.png deleted file mode 100644 index d8f9ad37ba..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/13.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/14.png b/front/public/images/large/MagicBees/capsule.void/14.png deleted file mode 100644 index e99bcc5508..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/14.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/15.png b/front/public/images/large/MagicBees/capsule.void/15.png deleted file mode 100644 index 0ea227542c..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/15.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/2.png b/front/public/images/large/MagicBees/capsule.void/2.png deleted file mode 100644 index 207b6f0a5c..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/3.png b/front/public/images/large/MagicBees/capsule.void/3.png deleted file mode 100644 index 8a37210bd4..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/3.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/4.png b/front/public/images/large/MagicBees/capsule.void/4.png deleted file mode 100644 index 7e79f2b1e6..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/5.png b/front/public/images/large/MagicBees/capsule.void/5.png deleted file mode 100644 index 3604eb36a9..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/5.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/6.png b/front/public/images/large/MagicBees/capsule.void/6.png deleted file mode 100644 index 1359cd0a80..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/6.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/7.png b/front/public/images/large/MagicBees/capsule.void/7.png deleted file mode 100644 index 33d6a62cbb..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/7.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/8.png b/front/public/images/large/MagicBees/capsule.void/8.png deleted file mode 100644 index 65c124e431..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/8.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/capsule.void/9.png b/front/public/images/large/MagicBees/capsule.void/9.png deleted file mode 100644 index b4dd0d49e9..0000000000 Binary files a/front/public/images/large/MagicBees/capsule.void/9.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/comb/0.png b/front/public/images/large/MagicBees/comb/0.png deleted file mode 100644 index ea85944735..0000000000 Binary files a/front/public/images/large/MagicBees/comb/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/comb/1.png b/front/public/images/large/MagicBees/comb/1.png deleted file mode 100644 index 298fec9c63..0000000000 Binary files a/front/public/images/large/MagicBees/comb/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/comb/2.png b/front/public/images/large/MagicBees/comb/2.png deleted file mode 100644 index 2f1ca71f81..0000000000 Binary files a/front/public/images/large/MagicBees/comb/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/comb/3.png b/front/public/images/large/MagicBees/comb/3.png deleted file mode 100644 index 4797bbb755..0000000000 Binary files a/front/public/images/large/MagicBees/comb/3.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/comb/4.png b/front/public/images/large/MagicBees/comb/4.png deleted file mode 100644 index 7863005159..0000000000 Binary files a/front/public/images/large/MagicBees/comb/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/comb/5.png b/front/public/images/large/MagicBees/comb/5.png deleted file mode 100644 index f196b71419..0000000000 Binary files a/front/public/images/large/MagicBees/comb/5.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/comb/6.png b/front/public/images/large/MagicBees/comb/6.png deleted file mode 100644 index cc330f4492..0000000000 Binary files a/front/public/images/large/MagicBees/comb/6.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/drop/0.png b/front/public/images/large/MagicBees/drop/0.png deleted file mode 100644 index 681a287e15..0000000000 Binary files a/front/public/images/large/MagicBees/drop/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/drop/1.png b/front/public/images/large/MagicBees/drop/1.png deleted file mode 100644 index 4199844d80..0000000000 Binary files a/front/public/images/large/MagicBees/drop/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/drop/2.png b/front/public/images/large/MagicBees/drop/2.png deleted file mode 100644 index 9849eec861..0000000000 Binary files a/front/public/images/large/MagicBees/drop/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/drop/3.png b/front/public/images/large/MagicBees/drop/3.png deleted file mode 100644 index ec1d9f3499..0000000000 Binary files a/front/public/images/large/MagicBees/drop/3.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/drop/4.png b/front/public/images/large/MagicBees/drop/4.png deleted file mode 100644 index dca007c015..0000000000 Binary files a/front/public/images/large/MagicBees/drop/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/drop/5.png b/front/public/images/large/MagicBees/drop/5.png deleted file mode 100644 index 42616fbfa0..0000000000 Binary files a/front/public/images/large/MagicBees/drop/5.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/effectJar/0.png b/front/public/images/large/MagicBees/effectJar/0.png deleted file mode 100644 index 07514c2df8..0000000000 Binary files a/front/public/images/large/MagicBees/effectJar/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/frameGentle/0.png b/front/public/images/large/MagicBees/frameGentle/0.png deleted file mode 100644 index 5ce2814b21..0000000000 Binary files a/front/public/images/large/MagicBees/frameGentle/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/frameMagic/0.png b/front/public/images/large/MagicBees/frameMagic/0.png deleted file mode 100644 index e526d13214..0000000000 Binary files a/front/public/images/large/MagicBees/frameMagic/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/frameMetabolic/0.png b/front/public/images/large/MagicBees/frameMetabolic/0.png deleted file mode 100644 index eb0d0e7dfa..0000000000 Binary files a/front/public/images/large/MagicBees/frameMetabolic/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/frameNecrotic/0.png b/front/public/images/large/MagicBees/frameNecrotic/0.png deleted file mode 100644 index 5fec8e1146..0000000000 Binary files a/front/public/images/large/MagicBees/frameNecrotic/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/frameOblivion/0.png b/front/public/images/large/MagicBees/frameOblivion/0.png deleted file mode 100644 index a97fc213e5..0000000000 Binary files a/front/public/images/large/MagicBees/frameOblivion/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/frameResilient/0.png b/front/public/images/large/MagicBees/frameResilient/0.png deleted file mode 100644 index b8ebe029da..0000000000 Binary files a/front/public/images/large/MagicBees/frameResilient/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/frameTemporal/0.png b/front/public/images/large/MagicBees/frameTemporal/0.png deleted file mode 100644 index 40035a8004..0000000000 Binary files a/front/public/images/large/MagicBees/frameTemporal/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/hive/0.png b/front/public/images/large/MagicBees/hive/0.png deleted file mode 100644 index e4b0a02cd1..0000000000 Binary files a/front/public/images/large/MagicBees/hive/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/hive/1.png b/front/public/images/large/MagicBees/hive/1.png deleted file mode 100644 index 4182007728..0000000000 Binary files a/front/public/images/large/MagicBees/hive/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/hive/2.png b/front/public/images/large/MagicBees/hive/2.png deleted file mode 100644 index 1ce9294e2d..0000000000 Binary files a/front/public/images/large/MagicBees/hive/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.bloodFrame/0.png b/front/public/images/large/MagicBees/item.bloodFrame/0.png deleted file mode 100644 index 9bd11b97b8..0000000000 Binary files a/front/public/images/large/MagicBees/item.bloodFrame/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.bloodSoakedFrame/0.png b/front/public/images/large/MagicBees/item.bloodSoakedFrame/0.png deleted file mode 100644 index be0f02fb95..0000000000 Binary files a/front/public/images/large/MagicBees/item.bloodSoakedFrame/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.frenziedFrame/0.png b/front/public/images/large/MagicBees/item.frenziedFrame/0.png deleted file mode 100644 index 16a83f938a..0000000000 Binary files a/front/public/images/large/MagicBees/item.frenziedFrame/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.manasteelGrafter/0.png b/front/public/images/large/MagicBees/item.manasteelGrafter/0.png deleted file mode 100644 index c3c3e69eb4..0000000000 Binary files a/front/public/images/large/MagicBees/item.manasteelGrafter/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.manasteelScoop/0.png b/front/public/images/large/MagicBees/item.manasteelScoop/0.png deleted file mode 100644 index d1fdc06718..0000000000 Binary files a/front/public/images/large/MagicBees/item.manasteelScoop/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.thaumiumGrafter/0.png b/front/public/images/large/MagicBees/item.thaumiumGrafter/0.png deleted file mode 100644 index a98e65f41f..0000000000 Binary files a/front/public/images/large/MagicBees/item.thaumiumGrafter/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.thaumiumScoop/0.png b/front/public/images/large/MagicBees/item.thaumiumScoop/0.png deleted file mode 100644 index ecc2eb19ce..0000000000 Binary files a/front/public/images/large/MagicBees/item.thaumiumScoop/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.voidGrafter/0.png b/front/public/images/large/MagicBees/item.voidGrafter/0.png deleted file mode 100644 index c167aaaec2..0000000000 Binary files a/front/public/images/large/MagicBees/item.voidGrafter/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/item.voidScoop/0.png b/front/public/images/large/MagicBees/item.voidScoop/0.png deleted file mode 100644 index aa2c140dc4..0000000000 Binary files a/front/public/images/large/MagicBees/item.voidScoop/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/jellyBabies/0.png b/front/public/images/large/MagicBees/jellyBabies/0.png deleted file mode 100644 index e0ed8dc8c4..0000000000 Binary files a/front/public/images/large/MagicBees/jellyBabies/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magicApiary/0.png b/front/public/images/large/MagicBees/magicApiary/0.png deleted file mode 100644 index 802a96e4f0..0000000000 Binary files a/front/public/images/large/MagicBees/magicApiary/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magicbees.enchantedEarth/0.png b/front/public/images/large/MagicBees/magicbees.enchantedEarth/0.png deleted file mode 100644 index 5764f4e476..0000000000 Binary files a/front/public/images/large/MagicBees/magicbees.enchantedEarth/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/0.png b/front/public/images/large/MagicBees/magnet/0.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/10.png b/front/public/images/large/MagicBees/magnet/10.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/10.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/12.png b/front/public/images/large/MagicBees/magnet/12.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/12.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/14.png b/front/public/images/large/MagicBees/magnet/14.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/14.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/16.png b/front/public/images/large/MagicBees/magnet/16.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/16.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/2.png b/front/public/images/large/MagicBees/magnet/2.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/4.png b/front/public/images/large/MagicBees/magnet/4.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/6.png b/front/public/images/large/MagicBees/magnet/6.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/6.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/magnet/8.png b/front/public/images/large/MagicBees/magnet/8.png deleted file mode 100644 index 04e315fadb..0000000000 Binary files a/front/public/images/large/MagicBees/magnet/8.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/manaAuraProvider/0.png b/front/public/images/large/MagicBees/manaAuraProvider/0.png deleted file mode 100644 index 61ce6f4b9e..0000000000 Binary files a/front/public/images/large/MagicBees/manaAuraProvider/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/0.png b/front/public/images/large/MagicBees/miscResources/0.png deleted file mode 100644 index a3bec29dfb..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/1.png b/front/public/images/large/MagicBees/miscResources/1.png deleted file mode 100644 index 7dad1eee28..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/10.png b/front/public/images/large/MagicBees/miscResources/10.png deleted file mode 100644 index 558a01124c..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/10.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/11.png b/front/public/images/large/MagicBees/miscResources/11.png deleted file mode 100644 index ea3baccca7..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/11.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/12.png b/front/public/images/large/MagicBees/miscResources/12.png deleted file mode 100644 index 4942631ecf..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/12.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/17.png b/front/public/images/large/MagicBees/miscResources/17.png deleted file mode 100644 index 21f735802a..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/17.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/18.png b/front/public/images/large/MagicBees/miscResources/18.png deleted file mode 100644 index 30d26dbe05..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/18.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/19.png b/front/public/images/large/MagicBees/miscResources/19.png deleted file mode 100644 index eeb459afad..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/19.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/2.png b/front/public/images/large/MagicBees/miscResources/2.png deleted file mode 100644 index 47a2be6df4..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/20.png b/front/public/images/large/MagicBees/miscResources/20.png deleted file mode 100644 index 98fedeebe8..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/20.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/21.png b/front/public/images/large/MagicBees/miscResources/21.png deleted file mode 100644 index 98e9404a63..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/21.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/22.png b/front/public/images/large/MagicBees/miscResources/22.png deleted file mode 100644 index b6b308c93b..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/22.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/23.png b/front/public/images/large/MagicBees/miscResources/23.png deleted file mode 100644 index db447fdb12..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/23.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/3.png b/front/public/images/large/MagicBees/miscResources/3.png deleted file mode 100644 index 80934ae6ed..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/3.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/4.png b/front/public/images/large/MagicBees/miscResources/4.png deleted file mode 100644 index 71f4686845..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/5.png b/front/public/images/large/MagicBees/miscResources/5.png deleted file mode 100644 index 6d12fbc1b9..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/5.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/6.png b/front/public/images/large/MagicBees/miscResources/6.png deleted file mode 100644 index ec6ffc8850..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/6.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/7.png b/front/public/images/large/MagicBees/miscResources/7.png deleted file mode 100644 index 561827746d..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/7.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/8.png b/front/public/images/large/MagicBees/miscResources/8.png deleted file mode 100644 index 7596abc8f0..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/8.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/miscResources/9.png b/front/public/images/large/MagicBees/miscResources/9.png deleted file mode 100644 index 9ac9f69eb0..0000000000 Binary files a/front/public/images/large/MagicBees/miscResources/9.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/moonDial/0.png b/front/public/images/large/MagicBees/moonDial/0.png deleted file mode 100644 index 826c89ca40..0000000000 Binary files a/front/public/images/large/MagicBees/moonDial/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/pollen/0.png b/front/public/images/large/MagicBees/pollen/0.png deleted file mode 100644 index 34551cf0bb..0000000000 Binary files a/front/public/images/large/MagicBees/pollen/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/pollen/1.png b/front/public/images/large/MagicBees/pollen/1.png deleted file mode 100644 index 951dc53d83..0000000000 Binary files a/front/public/images/large/MagicBees/pollen/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/propolis/0.png b/front/public/images/large/MagicBees/propolis/0.png deleted file mode 100644 index bfa3b9c6b6..0000000000 Binary files a/front/public/images/large/MagicBees/propolis/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/propolis/1.png b/front/public/images/large/MagicBees/propolis/1.png deleted file mode 100644 index 1871925398..0000000000 Binary files a/front/public/images/large/MagicBees/propolis/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/propolis/2.png b/front/public/images/large/MagicBees/propolis/2.png deleted file mode 100644 index d91bffe000..0000000000 Binary files a/front/public/images/large/MagicBees/propolis/2.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/propolis/3.png b/front/public/images/large/MagicBees/propolis/3.png deleted file mode 100644 index 96a8cbf42b..0000000000 Binary files a/front/public/images/large/MagicBees/propolis/3.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/propolis/4.png b/front/public/images/large/MagicBees/propolis/4.png deleted file mode 100644 index ca78b9fdde..0000000000 Binary files a/front/public/images/large/MagicBees/propolis/4.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/propolis/5.png b/front/public/images/large/MagicBees/propolis/5.png deleted file mode 100644 index 09a73f9aef..0000000000 Binary files a/front/public/images/large/MagicBees/propolis/5.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/propolis/6.png b/front/public/images/large/MagicBees/propolis/6.png deleted file mode 100644 index 5e67d15270..0000000000 Binary files a/front/public/images/large/MagicBees/propolis/6.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/visAuraProvider/0.png b/front/public/images/large/MagicBees/visAuraProvider/0.png deleted file mode 100644 index 2635d8bbd0..0000000000 Binary files a/front/public/images/large/MagicBees/visAuraProvider/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/wax/0.png b/front/public/images/large/MagicBees/wax/0.png deleted file mode 100644 index 1d95ff31d7..0000000000 Binary files a/front/public/images/large/MagicBees/wax/0.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/wax/1.png b/front/public/images/large/MagicBees/wax/1.png deleted file mode 100644 index cbd4142cda..0000000000 Binary files a/front/public/images/large/MagicBees/wax/1.png and /dev/null differ diff --git a/front/public/images/large/MagicBees/wax/2.png b/front/public/images/large/MagicBees/wax/2.png deleted file mode 100644 index b5209cab0b..0000000000 Binary files a/front/public/images/large/MagicBees/wax/2.png and /dev/null differ diff --git a/front/public/images/large/Mantle/mantleBook/0.png b/front/public/images/large/Mantle/mantleBook/0.png deleted file mode 100644 index 0eb02f16ad..0000000000 Binary files a/front/public/images/large/Mantle/mantleBook/0.png and /dev/null differ diff --git a/front/public/images/large/Mantle/mantleBook/1.png b/front/public/images/large/Mantle/mantleBook/1.png deleted file mode 100644 index 0eb02f16ad..0000000000 Binary files a/front/public/images/large/Mantle/mantleBook/1.png and /dev/null differ diff --git a/front/public/images/large/Mantle/mantleBook/2.png b/front/public/images/large/Mantle/mantleBook/2.png deleted file mode 100644 index 0eb02f16ad..0000000000 Binary files a/front/public/images/large/Mantle/mantleBook/2.png and /dev/null differ diff --git a/front/public/images/large/Mantle/mantleBook/3.png b/front/public/images/large/Mantle/mantleBook/3.png deleted file mode 100644 index 0eb02f16ad..0000000000 Binary files a/front/public/images/large/Mantle/mantleBook/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/BerryBush/12.png b/front/public/images/large/Natura/BerryBush/12.png deleted file mode 100644 index 01c79d272c..0000000000 Binary files a/front/public/images/large/Natura/BerryBush/12.png and /dev/null differ diff --git a/front/public/images/large/Natura/BerryBush/13.png b/front/public/images/large/Natura/BerryBush/13.png deleted file mode 100644 index dfed420d49..0000000000 Binary files a/front/public/images/large/Natura/BerryBush/13.png and /dev/null differ diff --git a/front/public/images/large/Natura/BerryBush/14.png b/front/public/images/large/Natura/BerryBush/14.png deleted file mode 100644 index b11cfeeb72..0000000000 Binary files a/front/public/images/large/Natura/BerryBush/14.png and /dev/null differ diff --git a/front/public/images/large/Natura/BerryBush/15.png b/front/public/images/large/Natura/BerryBush/15.png deleted file mode 100644 index 473b11315a..0000000000 Binary files a/front/public/images/large/Natura/BerryBush/15.png and /dev/null differ diff --git a/front/public/images/large/Natura/Blazerail/0.png b/front/public/images/large/Natura/Blazerail/0.png deleted file mode 100644 index 8eb76f380c..0000000000 Binary files a/front/public/images/large/Natura/Blazerail/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Bluebells/0.png b/front/public/images/large/Natura/Bluebells/0.png deleted file mode 100644 index 4ad03a28d3..0000000000 Binary files a/front/public/images/large/Natura/Bluebells/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/BrailActivator/0.png b/front/public/images/large/Natura/BrailActivator/0.png deleted file mode 100644 index 89f8773cb9..0000000000 Binary files a/front/public/images/large/Natura/BrailActivator/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/BrailDetector/0.png b/front/public/images/large/Natura/BrailDetector/0.png deleted file mode 100644 index f4e72d141e..0000000000 Binary files a/front/public/images/large/Natura/BrailDetector/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/BrailPowered/0.png b/front/public/images/large/Natura/BrailPowered/0.png deleted file mode 100644 index 80e2fb1e31..0000000000 Binary files a/front/public/images/large/Natura/BrailPowered/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Cloud/0.png b/front/public/images/large/Natura/Cloud/0.png deleted file mode 100644 index d1a4083472..0000000000 Binary files a/front/public/images/large/Natura/Cloud/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Cloud/1.png b/front/public/images/large/Natura/Cloud/1.png deleted file mode 100644 index 1e955a5550..0000000000 Binary files a/front/public/images/large/Natura/Cloud/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Cloud/2.png b/front/public/images/large/Natura/Cloud/2.png deleted file mode 100644 index 48152384ac..0000000000 Binary files a/front/public/images/large/Natura/Cloud/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Cloud/3.png b/front/public/images/large/Natura/Cloud/3.png deleted file mode 100644 index 3909f7118f..0000000000 Binary files a/front/public/images/large/Natura/Cloud/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Dark Leaves/0.png b/front/public/images/large/Natura/Dark Leaves/0.png deleted file mode 100644 index e5670a1ba9..0000000000 Binary files a/front/public/images/large/Natura/Dark Leaves/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Dark Leaves/1.png b/front/public/images/large/Natura/Dark Leaves/1.png deleted file mode 100644 index fae65f904b..0000000000 Binary files a/front/public/images/large/Natura/Dark Leaves/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Dark Leaves/2.png b/front/public/images/large/Natura/Dark Leaves/2.png deleted file mode 100644 index 9afdcf1ba4..0000000000 Binary files a/front/public/images/large/Natura/Dark Leaves/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Dark Leaves/3.png b/front/public/images/large/Natura/Dark Leaves/3.png deleted file mode 100644 index 7aecbdb3c9..0000000000 Binary files a/front/public/images/large/Natura/Dark Leaves/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Dark Tree/0.png b/front/public/images/large/Natura/Dark Tree/0.png deleted file mode 100644 index bd732e2178..0000000000 Binary files a/front/public/images/large/Natura/Dark Tree/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Dark Tree/1.png b/front/public/images/large/Natura/Dark Tree/1.png deleted file mode 100644 index e3a463696b..0000000000 Binary files a/front/public/images/large/Natura/Dark Tree/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Glowshroom/0.png b/front/public/images/large/Natura/Glowshroom/0.png deleted file mode 100644 index 672a8cadb6..0000000000 Binary files a/front/public/images/large/Natura/Glowshroom/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Glowshroom/1.png b/front/public/images/large/Natura/Glowshroom/1.png deleted file mode 100644 index 197d27d899..0000000000 Binary files a/front/public/images/large/Natura/Glowshroom/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Glowshroom/2.png b/front/public/images/large/Natura/Glowshroom/2.png deleted file mode 100644 index 9da45e763d..0000000000 Binary files a/front/public/images/large/Natura/Glowshroom/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/GrassBlock/0.png b/front/public/images/large/Natura/GrassBlock/0.png deleted file mode 100644 index dafd98b81a..0000000000 Binary files a/front/public/images/large/Natura/GrassBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/GrassBlock/1.png b/front/public/images/large/Natura/GrassBlock/1.png deleted file mode 100644 index 4286224f0f..0000000000 Binary files a/front/public/images/large/Natura/GrassBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/GrassBlock/2.png b/front/public/images/large/Natura/GrassBlock/2.png deleted file mode 100644 index c11a3b5cab..0000000000 Binary files a/front/public/images/large/Natura/GrassBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/GrassSlab/0.png b/front/public/images/large/Natura/GrassSlab/0.png deleted file mode 100644 index 9dfaed82ed..0000000000 Binary files a/front/public/images/large/Natura/GrassSlab/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/GrassSlab/1.png b/front/public/images/large/Natura/GrassSlab/1.png deleted file mode 100644 index 08dbd2b049..0000000000 Binary files a/front/public/images/large/Natura/GrassSlab/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/GrassSlab/2.png b/front/public/images/large/Natura/GrassSlab/2.png deleted file mode 100644 index db43b40014..0000000000 Binary files a/front/public/images/large/Natura/GrassSlab/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/N Crops/0.png b/front/public/images/large/Natura/N Crops/0.png deleted file mode 100644 index aaa9eb00de..0000000000 Binary files a/front/public/images/large/Natura/N Crops/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/0.png b/front/public/images/large/Natura/Natura.bookshelf/0.png deleted file mode 100644 index 594e63c6ca..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/1.png b/front/public/images/large/Natura/Natura.bookshelf/1.png deleted file mode 100644 index 0009f0fb96..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/10.png b/front/public/images/large/Natura/Natura.bookshelf/10.png deleted file mode 100644 index 25a07e4d87..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/10.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/11.png b/front/public/images/large/Natura/Natura.bookshelf/11.png deleted file mode 100644 index 65de5218e2..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/11.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/12.png b/front/public/images/large/Natura/Natura.bookshelf/12.png deleted file mode 100644 index 00d9b3d02e..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/12.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/2.png b/front/public/images/large/Natura/Natura.bookshelf/2.png deleted file mode 100644 index ef9cf1b6bf..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/3.png b/front/public/images/large/Natura/Natura.bookshelf/3.png deleted file mode 100644 index a1b6c09a2d..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/4.png b/front/public/images/large/Natura/Natura.bookshelf/4.png deleted file mode 100644 index ca86d66fe9..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/5.png b/front/public/images/large/Natura/Natura.bookshelf/5.png deleted file mode 100644 index f13df4d1de..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/6.png b/front/public/images/large/Natura/Natura.bookshelf/6.png deleted file mode 100644 index ec8070ffa2..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/7.png b/front/public/images/large/Natura/Natura.bookshelf/7.png deleted file mode 100644 index 3c03c20588..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/8.png b/front/public/images/large/Natura/Natura.bookshelf/8.png deleted file mode 100644 index a63fb262cb..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/8.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.bookshelf/9.png b/front/public/images/large/Natura/Natura.bookshelf/9.png deleted file mode 100644 index 92637c7939..0000000000 Binary files a/front/public/images/large/Natura/Natura.bookshelf/9.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/0.png b/front/public/images/large/Natura/Natura.fence/0.png deleted file mode 100644 index 188c9bbb97..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/1.png b/front/public/images/large/Natura/Natura.fence/1.png deleted file mode 100644 index a7642da7ff..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/10.png b/front/public/images/large/Natura/Natura.fence/10.png deleted file mode 100644 index c0ba5cb62a..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/10.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/11.png b/front/public/images/large/Natura/Natura.fence/11.png deleted file mode 100644 index 1f0a3a4275..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/11.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/12.png b/front/public/images/large/Natura/Natura.fence/12.png deleted file mode 100644 index 3f9e9fa699..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/12.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/2.png b/front/public/images/large/Natura/Natura.fence/2.png deleted file mode 100644 index ffde1b6339..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/3.png b/front/public/images/large/Natura/Natura.fence/3.png deleted file mode 100644 index 4e48298a8f..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/4.png b/front/public/images/large/Natura/Natura.fence/4.png deleted file mode 100644 index dd08c6a850..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/5.png b/front/public/images/large/Natura/Natura.fence/5.png deleted file mode 100644 index 630921bbe3..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/6.png b/front/public/images/large/Natura/Natura.fence/6.png deleted file mode 100644 index 65625d5637..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/7.png b/front/public/images/large/Natura/Natura.fence/7.png deleted file mode 100644 index eb3d60d955..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/8.png b/front/public/images/large/Natura/Natura.fence/8.png deleted file mode 100644 index add24999d5..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/8.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.fence/9.png b/front/public/images/large/Natura/Natura.fence/9.png deleted file mode 100644 index f40643f5cd..0000000000 Binary files a/front/public/images/large/Natura/Natura.fence/9.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.netherfood/0.png b/front/public/images/large/Natura/Natura.netherfood/0.png deleted file mode 100644 index 2f82fdac17..0000000000 Binary files a/front/public/images/large/Natura/Natura.netherfood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/0.png b/front/public/images/large/Natura/Natura.workbench/0.png deleted file mode 100644 index 8ecb0ad415..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/1.png b/front/public/images/large/Natura/Natura.workbench/1.png deleted file mode 100644 index 2b6f761b9b..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/10.png b/front/public/images/large/Natura/Natura.workbench/10.png deleted file mode 100644 index 8ded90521d..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/10.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/11.png b/front/public/images/large/Natura/Natura.workbench/11.png deleted file mode 100644 index ce565a43d4..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/11.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/12.png b/front/public/images/large/Natura/Natura.workbench/12.png deleted file mode 100644 index 3fd404e56c..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/12.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/2.png b/front/public/images/large/Natura/Natura.workbench/2.png deleted file mode 100644 index dcd44d31f9..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/3.png b/front/public/images/large/Natura/Natura.workbench/3.png deleted file mode 100644 index 2170210ac5..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/4.png b/front/public/images/large/Natura/Natura.workbench/4.png deleted file mode 100644 index 98b81fab38..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/5.png b/front/public/images/large/Natura/Natura.workbench/5.png deleted file mode 100644 index 671e53f827..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/6.png b/front/public/images/large/Natura/Natura.workbench/6.png deleted file mode 100644 index 3b1478532b..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/7.png b/front/public/images/large/Natura/Natura.workbench/7.png deleted file mode 100644 index efe11eae88..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/8.png b/front/public/images/large/Natura/Natura.workbench/8.png deleted file mode 100644 index d878d27172..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/8.png and /dev/null differ diff --git a/front/public/images/large/Natura/Natura.workbench/9.png b/front/public/images/large/Natura/Natura.workbench/9.png deleted file mode 100644 index 03e27db1a7..0000000000 Binary files a/front/public/images/large/Natura/Natura.workbench/9.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherBerryBush/12.png b/front/public/images/large/Natura/NetherBerryBush/12.png deleted file mode 100644 index b4b881aa92..0000000000 Binary files a/front/public/images/large/Natura/NetherBerryBush/12.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherBerryBush/13.png b/front/public/images/large/Natura/NetherBerryBush/13.png deleted file mode 100644 index 9cd8eb96f3..0000000000 Binary files a/front/public/images/large/Natura/NetherBerryBush/13.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherBerryBush/14.png b/front/public/images/large/Natura/NetherBerryBush/14.png deleted file mode 100644 index b470ff5478..0000000000 Binary files a/front/public/images/large/Natura/NetherBerryBush/14.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherBerryBush/15.png b/front/public/images/large/Natura/NetherBerryBush/15.png deleted file mode 100644 index ef60014569..0000000000 Binary files a/front/public/images/large/Natura/NetherBerryBush/15.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherButton/0.png b/front/public/images/large/Natura/NetherButton/0.png deleted file mode 100644 index 43eabc264a..0000000000 Binary files a/front/public/images/large/Natura/NetherButton/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherFurnace/0.png b/front/public/images/large/Natura/NetherFurnace/0.png deleted file mode 100644 index 695df4646d..0000000000 Binary files a/front/public/images/large/Natura/NetherFurnace/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherGlass/0.png b/front/public/images/large/Natura/NetherGlass/0.png deleted file mode 100644 index 857008c2ad..0000000000 Binary files a/front/public/images/large/Natura/NetherGlass/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherGlass/1.png b/front/public/images/large/Natura/NetherGlass/1.png deleted file mode 100644 index 0e34a755ca..0000000000 Binary files a/front/public/images/large/Natura/NetherGlass/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherHopper/0.png b/front/public/images/large/Natura/NetherHopper/0.png deleted file mode 100644 index 30972420f5..0000000000 Binary files a/front/public/images/large/Natura/NetherHopper/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherLever/0.png b/front/public/images/large/Natura/NetherLever/0.png deleted file mode 100644 index 44fa439e7c..0000000000 Binary files a/front/public/images/large/Natura/NetherLever/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/NetherPressurePlate/0.png b/front/public/images/large/Natura/NetherPressurePlate/0.png deleted file mode 100644 index 605ab8d842..0000000000 Binary files a/front/public/images/large/Natura/NetherPressurePlate/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Obelisk/0.png b/front/public/images/large/Natura/Obelisk/0.png deleted file mode 100644 index 4cea058b3a..0000000000 Binary files a/front/public/images/large/Natura/Obelisk/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Leaves/0.png b/front/public/images/large/Natura/Rare Leaves/0.png deleted file mode 100644 index 9171897958..0000000000 Binary files a/front/public/images/large/Natura/Rare Leaves/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Leaves/1.png b/front/public/images/large/Natura/Rare Leaves/1.png deleted file mode 100644 index 57ac6c22e0..0000000000 Binary files a/front/public/images/large/Natura/Rare Leaves/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Leaves/2.png b/front/public/images/large/Natura/Rare Leaves/2.png deleted file mode 100644 index dd72a30251..0000000000 Binary files a/front/public/images/large/Natura/Rare Leaves/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Leaves/3.png b/front/public/images/large/Natura/Rare Leaves/3.png deleted file mode 100644 index 52ac7aec4c..0000000000 Binary files a/front/public/images/large/Natura/Rare Leaves/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Sapling/0.png b/front/public/images/large/Natura/Rare Sapling/0.png deleted file mode 100644 index fc82ed6ff1..0000000000 Binary files a/front/public/images/large/Natura/Rare Sapling/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Sapling/1.png b/front/public/images/large/Natura/Rare Sapling/1.png deleted file mode 100644 index e178b0911b..0000000000 Binary files a/front/public/images/large/Natura/Rare Sapling/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Sapling/2.png b/front/public/images/large/Natura/Rare Sapling/2.png deleted file mode 100644 index f84bf5338c..0000000000 Binary files a/front/public/images/large/Natura/Rare Sapling/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Sapling/3.png b/front/public/images/large/Natura/Rare Sapling/3.png deleted file mode 100644 index 9df36bdded..0000000000 Binary files a/front/public/images/large/Natura/Rare Sapling/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Sapling/4.png b/front/public/images/large/Natura/Rare Sapling/4.png deleted file mode 100644 index 44948d978e..0000000000 Binary files a/front/public/images/large/Natura/Rare Sapling/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Tree/0.png b/front/public/images/large/Natura/Rare Tree/0.png deleted file mode 100644 index 28bd3351e9..0000000000 Binary files a/front/public/images/large/Natura/Rare Tree/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Tree/1.png b/front/public/images/large/Natura/Rare Tree/1.png deleted file mode 100644 index 46018c6b79..0000000000 Binary files a/front/public/images/large/Natura/Rare Tree/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Tree/2.png b/front/public/images/large/Natura/Rare Tree/2.png deleted file mode 100644 index 92fd18697f..0000000000 Binary files a/front/public/images/large/Natura/Rare Tree/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/Rare Tree/3.png b/front/public/images/large/Natura/Rare Tree/3.png deleted file mode 100644 index 714511ec91..0000000000 Binary files a/front/public/images/large/Natura/Rare Tree/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/Saguaro/0.png b/front/public/images/large/Natura/Saguaro/0.png deleted file mode 100644 index 39e06ee941..0000000000 Binary files a/front/public/images/large/Natura/Saguaro/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/Thornvines/0.png b/front/public/images/large/Natura/Thornvines/0.png deleted file mode 100644 index c81ee20686..0000000000 Binary files a/front/public/images/large/Natura/Thornvines/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/barley.seed/0.png b/front/public/images/large/Natura/barley.seed/0.png deleted file mode 100644 index f7d6f93e61..0000000000 Binary files a/front/public/images/large/Natura/barley.seed/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/barley.seed/1.png b/front/public/images/large/Natura/barley.seed/1.png deleted file mode 100644 index 6ceb8d3752..0000000000 Binary files a/front/public/images/large/Natura/barley.seed/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyBag/0.png b/front/public/images/large/Natura/barleyBag/0.png deleted file mode 100644 index bee336f035..0000000000 Binary files a/front/public/images/large/Natura/barleyBag/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/0.png b/front/public/images/large/Natura/barleyFood/0.png deleted file mode 100644 index ca48e7933a..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/1.png b/front/public/images/large/Natura/barleyFood/1.png deleted file mode 100644 index 7d0cc2a8ed..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/2.png b/front/public/images/large/Natura/barleyFood/2.png deleted file mode 100644 index 8e6f930be8..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/3.png b/front/public/images/large/Natura/barleyFood/3.png deleted file mode 100644 index b9f9aca2ad..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/4.png b/front/public/images/large/Natura/barleyFood/4.png deleted file mode 100644 index 6d2f6aef40..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/5.png b/front/public/images/large/Natura/barleyFood/5.png deleted file mode 100644 index 0600d6c016..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/6.png b/front/public/images/large/Natura/barleyFood/6.png deleted file mode 100644 index 21d26a7012..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/7.png b/front/public/images/large/Natura/barleyFood/7.png deleted file mode 100644 index e3414847b0..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/barleyFood/8.png b/front/public/images/large/Natura/barleyFood/8.png deleted file mode 100644 index 52e989944f..0000000000 Binary files a/front/public/images/large/Natura/barleyFood/8.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry.nether/0.png b/front/public/images/large/Natura/berry.nether/0.png deleted file mode 100644 index 39947d5c91..0000000000 Binary files a/front/public/images/large/Natura/berry.nether/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry.nether/1.png b/front/public/images/large/Natura/berry.nether/1.png deleted file mode 100644 index 74a4e43be2..0000000000 Binary files a/front/public/images/large/Natura/berry.nether/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry.nether/2.png b/front/public/images/large/Natura/berry.nether/2.png deleted file mode 100644 index 9ce1e4293a..0000000000 Binary files a/front/public/images/large/Natura/berry.nether/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry.nether/3.png b/front/public/images/large/Natura/berry.nether/3.png deleted file mode 100644 index e79827a458..0000000000 Binary files a/front/public/images/large/Natura/berry.nether/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry/0.png b/front/public/images/large/Natura/berry/0.png deleted file mode 100644 index 466a889244..0000000000 Binary files a/front/public/images/large/Natura/berry/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry/1.png b/front/public/images/large/Natura/berry/1.png deleted file mode 100644 index a28066fd2a..0000000000 Binary files a/front/public/images/large/Natura/berry/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry/2.png b/front/public/images/large/Natura/berry/2.png deleted file mode 100644 index 2b494e01b6..0000000000 Binary files a/front/public/images/large/Natura/berry/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/berry/3.png b/front/public/images/large/Natura/berry/3.png deleted file mode 100644 index 8b048c4518..0000000000 Binary files a/front/public/images/large/Natura/berry/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/berryMedley/0.png b/front/public/images/large/Natura/berryMedley/0.png deleted file mode 100644 index f74faa19f4..0000000000 Binary files a/front/public/images/large/Natura/berryMedley/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/bloodwood/0.png b/front/public/images/large/Natura/bloodwood/0.png deleted file mode 100644 index 7eea964653..0000000000 Binary files a/front/public/images/large/Natura/bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/bloodwood/15.png b/front/public/images/large/Natura/bloodwood/15.png deleted file mode 100644 index dcb435f46f..0000000000 Binary files a/front/public/images/large/Natura/bloodwood/15.png and /dev/null differ diff --git a/front/public/images/large/Natura/blueGlowshroom/0.png b/front/public/images/large/Natura/blueGlowshroom/0.png deleted file mode 100644 index e609ad0bb8..0000000000 Binary files a/front/public/images/large/Natura/blueGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/boneBag/0.png b/front/public/images/large/Natura/boneBag/0.png deleted file mode 100644 index 1823543615..0000000000 Binary files a/front/public/images/large/Natura/boneBag/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.amaranth/0.png b/front/public/images/large/Natura/button.amaranth/0.png deleted file mode 100644 index 4524762d72..0000000000 Binary files a/front/public/images/large/Natura/button.amaranth/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.bloodwood/0.png b/front/public/images/large/Natura/button.bloodwood/0.png deleted file mode 100644 index fb07e86b54..0000000000 Binary files a/front/public/images/large/Natura/button.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.darkwood/0.png b/front/public/images/large/Natura/button.darkwood/0.png deleted file mode 100644 index e980858783..0000000000 Binary files a/front/public/images/large/Natura/button.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.eucalyptus/0.png b/front/public/images/large/Natura/button.eucalyptus/0.png deleted file mode 100644 index c535bb3468..0000000000 Binary files a/front/public/images/large/Natura/button.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.fusewood/0.png b/front/public/images/large/Natura/button.fusewood/0.png deleted file mode 100644 index b57158766f..0000000000 Binary files a/front/public/images/large/Natura/button.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.ghostwood/0.png b/front/public/images/large/Natura/button.ghostwood/0.png deleted file mode 100644 index eef0fa9455..0000000000 Binary files a/front/public/images/large/Natura/button.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.hopseed/0.png b/front/public/images/large/Natura/button.hopseed/0.png deleted file mode 100644 index c6e22bebd0..0000000000 Binary files a/front/public/images/large/Natura/button.hopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.maple/0.png b/front/public/images/large/Natura/button.maple/0.png deleted file mode 100644 index 75051f6bf8..0000000000 Binary files a/front/public/images/large/Natura/button.maple/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.redwood/0.png b/front/public/images/large/Natura/button.redwood/0.png deleted file mode 100644 index c4caea5fb5..0000000000 Binary files a/front/public/images/large/Natura/button.redwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.sakura/0.png b/front/public/images/large/Natura/button.sakura/0.png deleted file mode 100644 index f68895291b..0000000000 Binary files a/front/public/images/large/Natura/button.sakura/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.silverbell/0.png b/front/public/images/large/Natura/button.silverbell/0.png deleted file mode 100644 index ebad2e3db3..0000000000 Binary files a/front/public/images/large/Natura/button.silverbell/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.tiger/0.png b/front/public/images/large/Natura/button.tiger/0.png deleted file mode 100644 index 2306c4bf27..0000000000 Binary files a/front/public/images/large/Natura/button.tiger/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/button.willow/0.png b/front/public/images/large/Natura/button.willow/0.png deleted file mode 100644 index 3d938c81b8..0000000000 Binary files a/front/public/images/large/Natura/button.willow/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/carrotBag/0.png b/front/public/images/large/Natura/carrotBag/0.png deleted file mode 100644 index e63a478e43..0000000000 Binary files a/front/public/images/large/Natura/carrotBag/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/cottonBag/0.png b/front/public/images/large/Natura/cottonBag/0.png deleted file mode 100644 index 5bf8bd3986..0000000000 Binary files a/front/public/images/large/Natura/cottonBag/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/door.bloodwood/0.png b/front/public/images/large/Natura/door.bloodwood/0.png deleted file mode 100644 index 4a769b6481..0000000000 Binary files a/front/public/images/large/Natura/door.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/door.eucalyptus/0.png b/front/public/images/large/Natura/door.eucalyptus/0.png deleted file mode 100644 index 6d56f1cde3..0000000000 Binary files a/front/public/images/large/Natura/door.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/door.ghostwood/0.png b/front/public/images/large/Natura/door.ghostwood/0.png deleted file mode 100644 index f0f3eafbd4..0000000000 Binary files a/front/public/images/large/Natura/door.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/door.hopseed/0.png b/front/public/images/large/Natura/door.hopseed/0.png deleted file mode 100644 index 910c0916e4..0000000000 Binary files a/front/public/images/large/Natura/door.hopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/door.redwood/0.png b/front/public/images/large/Natura/door.redwood/0.png deleted file mode 100644 index 2e13a3c877..0000000000 Binary files a/front/public/images/large/Natura/door.redwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/door.redwoodbark/0.png b/front/public/images/large/Natura/door.redwoodbark/0.png deleted file mode 100644 index 2c956753c4..0000000000 Binary files a/front/public/images/large/Natura/door.redwoodbark/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/door.sakura/0.png b/front/public/images/large/Natura/door.sakura/0.png deleted file mode 100644 index 40c3b0b745..0000000000 Binary files a/front/public/images/large/Natura/door.sakura/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.amaranth/0.png b/front/public/images/large/Natura/fenceGate.amaranth/0.png deleted file mode 100644 index c518a55bd2..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.amaranth/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.bloodwood/0.png b/front/public/images/large/Natura/fenceGate.bloodwood/0.png deleted file mode 100644 index 215301bd2c..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.darkwood/0.png b/front/public/images/large/Natura/fenceGate.darkwood/0.png deleted file mode 100644 index a8ff386d4f..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.eucalyptus/0.png b/front/public/images/large/Natura/fenceGate.eucalyptus/0.png deleted file mode 100644 index 6710766ee3..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.fusewood/0.png b/front/public/images/large/Natura/fenceGate.fusewood/0.png deleted file mode 100644 index a2a15493b8..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.ghostwood/0.png b/front/public/images/large/Natura/fenceGate.ghostwood/0.png deleted file mode 100644 index 428ca7ac8b..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.hopseed/0.png b/front/public/images/large/Natura/fenceGate.hopseed/0.png deleted file mode 100644 index 404f146253..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.hopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.maple/0.png b/front/public/images/large/Natura/fenceGate.maple/0.png deleted file mode 100644 index aebbf62838..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.maple/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.redwood/0.png b/front/public/images/large/Natura/fenceGate.redwood/0.png deleted file mode 100644 index 9fbab448a9..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.redwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.sakura/0.png b/front/public/images/large/Natura/fenceGate.sakura/0.png deleted file mode 100644 index d52233df7e..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.sakura/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.silverbell/0.png b/front/public/images/large/Natura/fenceGate.silverbell/0.png deleted file mode 100644 index ec22671a8f..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.silverbell/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.tiger/0.png b/front/public/images/large/Natura/fenceGate.tiger/0.png deleted file mode 100644 index d42a2e0212..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.tiger/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/fenceGate.willow/0.png b/front/public/images/large/Natura/fenceGate.willow/0.png deleted file mode 100644 index a7f21c4451..0000000000 Binary files a/front/public/images/large/Natura/fenceGate.willow/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/floraleaves/0.png b/front/public/images/large/Natura/floraleaves/0.png deleted file mode 100644 index dd14ebcc6b..0000000000 Binary files a/front/public/images/large/Natura/floraleaves/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/floraleaves/1.png b/front/public/images/large/Natura/floraleaves/1.png deleted file mode 100644 index 9a93b97fb2..0000000000 Binary files a/front/public/images/large/Natura/floraleaves/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/floraleaves/2.png b/front/public/images/large/Natura/floraleaves/2.png deleted file mode 100644 index fe4888c46a..0000000000 Binary files a/front/public/images/large/Natura/floraleaves/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/floraleavesnocolor/0.png b/front/public/images/large/Natura/floraleavesnocolor/0.png deleted file mode 100644 index c9e553be87..0000000000 Binary files a/front/public/images/large/Natura/floraleavesnocolor/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/floraleavesnocolor/1.png b/front/public/images/large/Natura/floraleavesnocolor/1.png deleted file mode 100644 index 0195206ea6..0000000000 Binary files a/front/public/images/large/Natura/floraleavesnocolor/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/floraleavesnocolor/2.png b/front/public/images/large/Natura/floraleavesnocolor/2.png deleted file mode 100644 index de273c106f..0000000000 Binary files a/front/public/images/large/Natura/floraleavesnocolor/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/floraleavesnocolor/3.png b/front/public/images/large/Natura/floraleavesnocolor/3.png deleted file mode 100644 index 34ea843c77..0000000000 Binary files a/front/public/images/large/Natura/floraleavesnocolor/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/0.png b/front/public/images/large/Natura/florasapling/0.png deleted file mode 100644 index 2a4348f824..0000000000 Binary files a/front/public/images/large/Natura/florasapling/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/1.png b/front/public/images/large/Natura/florasapling/1.png deleted file mode 100644 index d08d99559b..0000000000 Binary files a/front/public/images/large/Natura/florasapling/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/2.png b/front/public/images/large/Natura/florasapling/2.png deleted file mode 100644 index 0458fd1b03..0000000000 Binary files a/front/public/images/large/Natura/florasapling/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/3.png b/front/public/images/large/Natura/florasapling/3.png deleted file mode 100644 index 72d2b90b8e..0000000000 Binary files a/front/public/images/large/Natura/florasapling/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/4.png b/front/public/images/large/Natura/florasapling/4.png deleted file mode 100644 index 07c98c6010..0000000000 Binary files a/front/public/images/large/Natura/florasapling/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/5.png b/front/public/images/large/Natura/florasapling/5.png deleted file mode 100644 index a26492fee2..0000000000 Binary files a/front/public/images/large/Natura/florasapling/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/6.png b/front/public/images/large/Natura/florasapling/6.png deleted file mode 100644 index 07ffad285a..0000000000 Binary files a/front/public/images/large/Natura/florasapling/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/florasapling/7.png b/front/public/images/large/Natura/florasapling/7.png deleted file mode 100644 index b5e1e8df50..0000000000 Binary files a/front/public/images/large/Natura/florasapling/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/greenGlowshroom/0.png b/front/public/images/large/Natura/greenGlowshroom/0.png deleted file mode 100644 index b7df58bada..0000000000 Binary files a/front/public/images/large/Natura/greenGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/heatsand/0.png b/front/public/images/large/Natura/heatsand/0.png deleted file mode 100644 index d6d1661ea2..0000000000 Binary files a/front/public/images/large/Natura/heatsand/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/impmeat/0.png b/front/public/images/large/Natura/impmeat/0.png deleted file mode 100644 index 2b6349bc7f..0000000000 Binary files a/front/public/images/large/Natura/impmeat/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/impmeat/1.png b/front/public/images/large/Natura/impmeat/1.png deleted file mode 100644 index c335ac1759..0000000000 Binary files a/front/public/images/large/Natura/impmeat/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.armor.impboots/0.png b/front/public/images/large/Natura/natura.armor.impboots/0.png deleted file mode 100644 index 10e320ee1f..0000000000 Binary files a/front/public/images/large/Natura/natura.armor.impboots/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.armor.imphelmet/0.png b/front/public/images/large/Natura/natura.armor.imphelmet/0.png deleted file mode 100644 index 0f15ab6a36..0000000000 Binary files a/front/public/images/large/Natura/natura.armor.imphelmet/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.armor.impjerkin/0.png b/front/public/images/large/Natura/natura.armor.impjerkin/0.png deleted file mode 100644 index 1d4a56bc81..0000000000 Binary files a/front/public/images/large/Natura/natura.armor.impjerkin/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.armor.impleggings/0.png b/front/public/images/large/Natura/natura.armor.impleggings/0.png deleted file mode 100644 index 725ce63ffb..0000000000 Binary files a/front/public/images/large/Natura/natura.armor.impleggings/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.axe.bloodwood/0.png b/front/public/images/large/Natura/natura.axe.bloodwood/0.png deleted file mode 100644 index 93d74a60fa..0000000000 Binary files a/front/public/images/large/Natura/natura.axe.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.axe.darkwood/0.png b/front/public/images/large/Natura/natura.axe.darkwood/0.png deleted file mode 100644 index be51b636a9..0000000000 Binary files a/front/public/images/large/Natura/natura.axe.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.axe.fusewood/0.png b/front/public/images/large/Natura/natura.axe.fusewood/0.png deleted file mode 100644 index 037fd5f093..0000000000 Binary files a/front/public/images/large/Natura/natura.axe.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.axe.ghostwood/0.png b/front/public/images/large/Natura/natura.axe.ghostwood/0.png deleted file mode 100644 index f5e8d4064d..0000000000 Binary files a/front/public/images/large/Natura/natura.axe.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.axe.netherquartz/0.png b/front/public/images/large/Natura/natura.axe.netherquartz/0.png deleted file mode 100644 index 09cf826d1c..0000000000 Binary files a/front/public/images/large/Natura/natura.axe.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.bow.bloodwood/0.png b/front/public/images/large/Natura/natura.bow.bloodwood/0.png deleted file mode 100644 index 8bf1f60d54..0000000000 Binary files a/front/public/images/large/Natura/natura.bow.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.bow.darkwood/0.png b/front/public/images/large/Natura/natura.bow.darkwood/0.png deleted file mode 100644 index 46b61d007e..0000000000 Binary files a/front/public/images/large/Natura/natura.bow.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.bow.fusewood/0.png b/front/public/images/large/Natura/natura.bow.fusewood/0.png deleted file mode 100644 index fedc6908cb..0000000000 Binary files a/front/public/images/large/Natura/natura.bow.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.bow.ghostwood/0.png b/front/public/images/large/Natura/natura.bow.ghostwood/0.png deleted file mode 100644 index 2630430a50..0000000000 Binary files a/front/public/images/large/Natura/natura.bow.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.emptybowl/0.png b/front/public/images/large/Natura/natura.emptybowl/0.png deleted file mode 100644 index 3f384218c8..0000000000 Binary files a/front/public/images/large/Natura/natura.emptybowl/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.flintandblaze/0.png b/front/public/images/large/Natura/natura.flintandblaze/0.png deleted file mode 100644 index 1995796344..0000000000 Binary files a/front/public/images/large/Natura/natura.flintandblaze/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.kama.bloodwood/0.png b/front/public/images/large/Natura/natura.kama.bloodwood/0.png deleted file mode 100644 index 735ec9be1d..0000000000 Binary files a/front/public/images/large/Natura/natura.kama.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.kama.darkwood/0.png b/front/public/images/large/Natura/natura.kama.darkwood/0.png deleted file mode 100644 index 6928b833ed..0000000000 Binary files a/front/public/images/large/Natura/natura.kama.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.kama.fusewood/0.png b/front/public/images/large/Natura/natura.kama.fusewood/0.png deleted file mode 100644 index c1b81d131f..0000000000 Binary files a/front/public/images/large/Natura/natura.kama.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.kama.ghostwood/0.png b/front/public/images/large/Natura/natura.kama.ghostwood/0.png deleted file mode 100644 index 7f753bcaec..0000000000 Binary files a/front/public/images/large/Natura/natura.kama.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.kama.netherquartz/0.png b/front/public/images/large/Natura/natura.kama.netherquartz/0.png deleted file mode 100644 index e24cdda36a..0000000000 Binary files a/front/public/images/large/Natura/natura.kama.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.pickaxe.bloodwood/0.png b/front/public/images/large/Natura/natura.pickaxe.bloodwood/0.png deleted file mode 100644 index 5f973b031c..0000000000 Binary files a/front/public/images/large/Natura/natura.pickaxe.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.pickaxe.darkwood/0.png b/front/public/images/large/Natura/natura.pickaxe.darkwood/0.png deleted file mode 100644 index 92b7b8a7c2..0000000000 Binary files a/front/public/images/large/Natura/natura.pickaxe.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.pickaxe.fusewood/0.png b/front/public/images/large/Natura/natura.pickaxe.fusewood/0.png deleted file mode 100644 index 0c0334cf9c..0000000000 Binary files a/front/public/images/large/Natura/natura.pickaxe.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.pickaxe.ghostwood/0.png b/front/public/images/large/Natura/natura.pickaxe.ghostwood/0.png deleted file mode 100644 index 745556f016..0000000000 Binary files a/front/public/images/large/Natura/natura.pickaxe.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.pickaxe.netherquartz/0.png b/front/public/images/large/Natura/natura.pickaxe.netherquartz/0.png deleted file mode 100644 index 35eb5e3bd0..0000000000 Binary files a/front/public/images/large/Natura/natura.pickaxe.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.shovel.bloodwood/0.png b/front/public/images/large/Natura/natura.shovel.bloodwood/0.png deleted file mode 100644 index 712898d24a..0000000000 Binary files a/front/public/images/large/Natura/natura.shovel.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.shovel.darkwood/0.png b/front/public/images/large/Natura/natura.shovel.darkwood/0.png deleted file mode 100644 index fb6b616ff6..0000000000 Binary files a/front/public/images/large/Natura/natura.shovel.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.shovel.fusewood/0.png b/front/public/images/large/Natura/natura.shovel.fusewood/0.png deleted file mode 100644 index 7f589da92e..0000000000 Binary files a/front/public/images/large/Natura/natura.shovel.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.shovel.ghostwood/0.png b/front/public/images/large/Natura/natura.shovel.ghostwood/0.png deleted file mode 100644 index 10d17bc686..0000000000 Binary files a/front/public/images/large/Natura/natura.shovel.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.shovel.netherquartz/0.png b/front/public/images/large/Natura/natura.shovel.netherquartz/0.png deleted file mode 100644 index 3c8a65002d..0000000000 Binary files a/front/public/images/large/Natura/natura.shovel.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.spawnegg/0.png b/front/public/images/large/Natura/natura.spawnegg/0.png deleted file mode 100644 index fc67a5b6eb..0000000000 Binary files a/front/public/images/large/Natura/natura.spawnegg/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.spawnegg/1.png b/front/public/images/large/Natura/natura.spawnegg/1.png deleted file mode 100644 index 897b71145c..0000000000 Binary files a/front/public/images/large/Natura/natura.spawnegg/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.spawnegg/2.png b/front/public/images/large/Natura/natura.spawnegg/2.png deleted file mode 100644 index 662bc1ec32..0000000000 Binary files a/front/public/images/large/Natura/natura.spawnegg/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.spawnegg/3.png b/front/public/images/large/Natura/natura.spawnegg/3.png deleted file mode 100644 index 897b71145c..0000000000 Binary files a/front/public/images/large/Natura/natura.spawnegg/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stewbowl/14.png b/front/public/images/large/Natura/natura.stewbowl/14.png deleted file mode 100644 index f28995240b..0000000000 Binary files a/front/public/images/large/Natura/natura.stewbowl/14.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/0.png b/front/public/images/large/Natura/natura.stick/0.png deleted file mode 100644 index f60da4fcc6..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/1.png b/front/public/images/large/Natura/natura.stick/1.png deleted file mode 100644 index 76a21faca5..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/10.png b/front/public/images/large/Natura/natura.stick/10.png deleted file mode 100644 index 8a8b3b93c3..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/10.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/11.png b/front/public/images/large/Natura/natura.stick/11.png deleted file mode 100644 index 8713021952..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/11.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/12.png b/front/public/images/large/Natura/natura.stick/12.png deleted file mode 100644 index a7b3ab0d46..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/12.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/2.png b/front/public/images/large/Natura/natura.stick/2.png deleted file mode 100644 index 631bd956e8..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/3.png b/front/public/images/large/Natura/natura.stick/3.png deleted file mode 100644 index a67e9e6db4..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/4.png b/front/public/images/large/Natura/natura.stick/4.png deleted file mode 100644 index 881062d136..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/5.png b/front/public/images/large/Natura/natura.stick/5.png deleted file mode 100644 index 59a27ce2c2..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/6.png b/front/public/images/large/Natura/natura.stick/6.png deleted file mode 100644 index b1b31f2a36..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/7.png b/front/public/images/large/Natura/natura.stick/7.png deleted file mode 100644 index c6519e1e70..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/8.png b/front/public/images/large/Natura/natura.stick/8.png deleted file mode 100644 index 55f5fcb75f..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/8.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.stick/9.png b/front/public/images/large/Natura/natura.stick/9.png deleted file mode 100644 index e1f4706ddc..0000000000 Binary files a/front/public/images/large/Natura/natura.stick/9.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.sword.bloodwood/0.png b/front/public/images/large/Natura/natura.sword.bloodwood/0.png deleted file mode 100644 index 9e72dec518..0000000000 Binary files a/front/public/images/large/Natura/natura.sword.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.sword.darkwood/0.png b/front/public/images/large/Natura/natura.sword.darkwood/0.png deleted file mode 100644 index 07faa5cceb..0000000000 Binary files a/front/public/images/large/Natura/natura.sword.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.sword.fusewood/0.png b/front/public/images/large/Natura/natura.sword.fusewood/0.png deleted file mode 100644 index 55104fc5ae..0000000000 Binary files a/front/public/images/large/Natura/natura.sword.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.sword.ghostwood/0.png b/front/public/images/large/Natura/natura.sword.ghostwood/0.png deleted file mode 100644 index 945ca26260..0000000000 Binary files a/front/public/images/large/Natura/natura.sword.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/natura.sword.netherquartz/0.png b/front/public/images/large/Natura/natura.sword.netherquartz/0.png deleted file mode 100644 index 5d41bb0f2b..0000000000 Binary files a/front/public/images/large/Natura/natura.sword.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/0.png b/front/public/images/large/Natura/plankSlab1/0.png deleted file mode 100644 index 89f99b3e9a..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/1.png b/front/public/images/large/Natura/plankSlab1/1.png deleted file mode 100644 index 6bd4f91fc7..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/2.png b/front/public/images/large/Natura/plankSlab1/2.png deleted file mode 100644 index c7f94c3dac..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/3.png b/front/public/images/large/Natura/plankSlab1/3.png deleted file mode 100644 index 7f807a4f71..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/4.png b/front/public/images/large/Natura/plankSlab1/4.png deleted file mode 100644 index a4e1a8e3eb..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/5.png b/front/public/images/large/Natura/plankSlab1/5.png deleted file mode 100644 index b663ab2d3a..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/6.png b/front/public/images/large/Natura/plankSlab1/6.png deleted file mode 100644 index 0e810a8b74..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab1/7.png b/front/public/images/large/Natura/plankSlab1/7.png deleted file mode 100644 index f6f42a2d86..0000000000 Binary files a/front/public/images/large/Natura/plankSlab1/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab2/0.png b/front/public/images/large/Natura/plankSlab2/0.png deleted file mode 100644 index e386cedee7..0000000000 Binary files a/front/public/images/large/Natura/plankSlab2/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab2/1.png b/front/public/images/large/Natura/plankSlab2/1.png deleted file mode 100644 index 3ce94e372d..0000000000 Binary files a/front/public/images/large/Natura/plankSlab2/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab2/2.png b/front/public/images/large/Natura/plankSlab2/2.png deleted file mode 100644 index 3737bc0f8c..0000000000 Binary files a/front/public/images/large/Natura/plankSlab2/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab2/3.png b/front/public/images/large/Natura/plankSlab2/3.png deleted file mode 100644 index e8e2bb8b87..0000000000 Binary files a/front/public/images/large/Natura/plankSlab2/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/plankSlab2/4.png b/front/public/images/large/Natura/plankSlab2/4.png deleted file mode 100644 index b1919e170e..0000000000 Binary files a/front/public/images/large/Natura/plankSlab2/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/0.png b/front/public/images/large/Natura/planks/0.png deleted file mode 100644 index 2f0f496950..0000000000 Binary files a/front/public/images/large/Natura/planks/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/1.png b/front/public/images/large/Natura/planks/1.png deleted file mode 100644 index 465a6e7fa3..0000000000 Binary files a/front/public/images/large/Natura/planks/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/10.png b/front/public/images/large/Natura/planks/10.png deleted file mode 100644 index 42f72f392a..0000000000 Binary files a/front/public/images/large/Natura/planks/10.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/11.png b/front/public/images/large/Natura/planks/11.png deleted file mode 100644 index e3e477702a..0000000000 Binary files a/front/public/images/large/Natura/planks/11.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/12.png b/front/public/images/large/Natura/planks/12.png deleted file mode 100644 index 64d06c503f..0000000000 Binary files a/front/public/images/large/Natura/planks/12.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/2.png b/front/public/images/large/Natura/planks/2.png deleted file mode 100644 index b158649985..0000000000 Binary files a/front/public/images/large/Natura/planks/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/3.png b/front/public/images/large/Natura/planks/3.png deleted file mode 100644 index 6550f50e01..0000000000 Binary files a/front/public/images/large/Natura/planks/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/4.png b/front/public/images/large/Natura/planks/4.png deleted file mode 100644 index 95a8155365..0000000000 Binary files a/front/public/images/large/Natura/planks/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/5.png b/front/public/images/large/Natura/planks/5.png deleted file mode 100644 index 09c460a0a2..0000000000 Binary files a/front/public/images/large/Natura/planks/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/6.png b/front/public/images/large/Natura/planks/6.png deleted file mode 100644 index 1540f4d53a..0000000000 Binary files a/front/public/images/large/Natura/planks/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/7.png b/front/public/images/large/Natura/planks/7.png deleted file mode 100644 index e800622c15..0000000000 Binary files a/front/public/images/large/Natura/planks/7.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/8.png b/front/public/images/large/Natura/planks/8.png deleted file mode 100644 index c8190b8698..0000000000 Binary files a/front/public/images/large/Natura/planks/8.png and /dev/null differ diff --git a/front/public/images/large/Natura/planks/9.png b/front/public/images/large/Natura/planks/9.png deleted file mode 100644 index 0c0b24562c..0000000000 Binary files a/front/public/images/large/Natura/planks/9.png and /dev/null differ diff --git a/front/public/images/large/Natura/potatoBag/0.png b/front/public/images/large/Natura/potatoBag/0.png deleted file mode 100644 index 93d4f6e5fc..0000000000 Binary files a/front/public/images/large/Natura/potatoBag/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.amaranth/0.png b/front/public/images/large/Natura/pressureplate.amaranth/0.png deleted file mode 100644 index d7a4ab08a7..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.amaranth/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.bloodwood/0.png b/front/public/images/large/Natura/pressureplate.bloodwood/0.png deleted file mode 100644 index 166b424d09..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.darkwood/0.png b/front/public/images/large/Natura/pressureplate.darkwood/0.png deleted file mode 100644 index 105beadecf..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.eucalyptus/0.png b/front/public/images/large/Natura/pressureplate.eucalyptus/0.png deleted file mode 100644 index f1fabc7542..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.fusewood/0.png b/front/public/images/large/Natura/pressureplate.fusewood/0.png deleted file mode 100644 index b3fd815b60..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.ghostwood/0.png b/front/public/images/large/Natura/pressureplate.ghostwood/0.png deleted file mode 100644 index cb303c74f2..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.hopseed/0.png b/front/public/images/large/Natura/pressureplate.hopseed/0.png deleted file mode 100644 index 2efd48cff2..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.hopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.maple/0.png b/front/public/images/large/Natura/pressureplate.maple/0.png deleted file mode 100644 index 780d628fcc..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.maple/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.redwood/0.png b/front/public/images/large/Natura/pressureplate.redwood/0.png deleted file mode 100644 index 65c4ebd324..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.redwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.sakura/0.png b/front/public/images/large/Natura/pressureplate.sakura/0.png deleted file mode 100644 index 2128face24..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.sakura/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.silverbell/0.png b/front/public/images/large/Natura/pressureplate.silverbell/0.png deleted file mode 100644 index 72b37fc33c..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.silverbell/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.tiger/0.png b/front/public/images/large/Natura/pressureplate.tiger/0.png deleted file mode 100644 index 24247512aa..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.tiger/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/pressureplate.willow/0.png b/front/public/images/large/Natura/pressureplate.willow/0.png deleted file mode 100644 index e2d1bdc5cd..0000000000 Binary files a/front/public/images/large/Natura/pressureplate.willow/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/purpleGlowshroom/0.png b/front/public/images/large/Natura/purpleGlowshroom/0.png deleted file mode 100644 index 12349b4511..0000000000 Binary files a/front/public/images/large/Natura/purpleGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwood/0.png b/front/public/images/large/Natura/redwood/0.png deleted file mode 100644 index 3564210c3c..0000000000 Binary files a/front/public/images/large/Natura/redwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwood/1.png b/front/public/images/large/Natura/redwood/1.png deleted file mode 100644 index 651bacf580..0000000000 Binary files a/front/public/images/large/Natura/redwood/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwood/2.png b/front/public/images/large/Natura/redwood/2.png deleted file mode 100644 index d9d8c5a4e0..0000000000 Binary files a/front/public/images/large/Natura/redwood/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwoodDoorItem/0.png b/front/public/images/large/Natura/redwoodDoorItem/0.png deleted file mode 100644 index e471c49a9d..0000000000 Binary files a/front/public/images/large/Natura/redwoodDoorItem/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwoodDoorItem/1.png b/front/public/images/large/Natura/redwoodDoorItem/1.png deleted file mode 100644 index 7e012b54c5..0000000000 Binary files a/front/public/images/large/Natura/redwoodDoorItem/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwoodDoorItem/2.png b/front/public/images/large/Natura/redwoodDoorItem/2.png deleted file mode 100644 index c760136c16..0000000000 Binary files a/front/public/images/large/Natura/redwoodDoorItem/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwoodDoorItem/3.png b/front/public/images/large/Natura/redwoodDoorItem/3.png deleted file mode 100644 index 117e3fc8b1..0000000000 Binary files a/front/public/images/large/Natura/redwoodDoorItem/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwoodDoorItem/4.png b/front/public/images/large/Natura/redwoodDoorItem/4.png deleted file mode 100644 index e909d81653..0000000000 Binary files a/front/public/images/large/Natura/redwoodDoorItem/4.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwoodDoorItem/5.png b/front/public/images/large/Natura/redwoodDoorItem/5.png deleted file mode 100644 index 98915622e6..0000000000 Binary files a/front/public/images/large/Natura/redwoodDoorItem/5.png and /dev/null differ diff --git a/front/public/images/large/Natura/redwoodDoorItem/6.png b/front/public/images/large/Natura/redwoodDoorItem/6.png deleted file mode 100644 index adb7009e2d..0000000000 Binary files a/front/public/images/large/Natura/redwoodDoorItem/6.png and /dev/null differ diff --git a/front/public/images/large/Natura/saguaro.fruit/0.png b/front/public/images/large/Natura/saguaro.fruit/0.png deleted file mode 100644 index 3950d08719..0000000000 Binary files a/front/public/images/large/Natura/saguaro.fruit/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/soil.tainted/0.png b/front/public/images/large/Natura/soil.tainted/0.png deleted file mode 100644 index 457b11c0f4..0000000000 Binary files a/front/public/images/large/Natura/soil.tainted/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/soil.tainted/1.png b/front/public/images/large/Natura/soil.tainted/1.png deleted file mode 100644 index f75c24a56b..0000000000 Binary files a/front/public/images/large/Natura/soil.tainted/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/soil.tainted/2.png b/front/public/images/large/Natura/soil.tainted/2.png deleted file mode 100644 index 032f5ee9be..0000000000 Binary files a/front/public/images/large/Natura/soil.tainted/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.amaranth/0.png b/front/public/images/large/Natura/stair.amaranth/0.png deleted file mode 100644 index ddeabd92a3..0000000000 Binary files a/front/public/images/large/Natura/stair.amaranth/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.bloodwood/0.png b/front/public/images/large/Natura/stair.bloodwood/0.png deleted file mode 100644 index c7fdf9c3c3..0000000000 Binary files a/front/public/images/large/Natura/stair.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.darkwood/0.png b/front/public/images/large/Natura/stair.darkwood/0.png deleted file mode 100644 index f9d8320dbd..0000000000 Binary files a/front/public/images/large/Natura/stair.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.eucalyptus/0.png b/front/public/images/large/Natura/stair.eucalyptus/0.png deleted file mode 100644 index 06a76a569c..0000000000 Binary files a/front/public/images/large/Natura/stair.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.fusewood/0.png b/front/public/images/large/Natura/stair.fusewood/0.png deleted file mode 100644 index ce69d7099e..0000000000 Binary files a/front/public/images/large/Natura/stair.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.ghostwood/0.png b/front/public/images/large/Natura/stair.ghostwood/0.png deleted file mode 100644 index 4abb0fd05c..0000000000 Binary files a/front/public/images/large/Natura/stair.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.hopseed/0.png b/front/public/images/large/Natura/stair.hopseed/0.png deleted file mode 100644 index 9ff27e5ad4..0000000000 Binary files a/front/public/images/large/Natura/stair.hopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.maple/0.png b/front/public/images/large/Natura/stair.maple/0.png deleted file mode 100644 index 66da0c19b1..0000000000 Binary files a/front/public/images/large/Natura/stair.maple/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.redwood/0.png b/front/public/images/large/Natura/stair.redwood/0.png deleted file mode 100644 index a23dbadb3c..0000000000 Binary files a/front/public/images/large/Natura/stair.redwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.sakura/0.png b/front/public/images/large/Natura/stair.sakura/0.png deleted file mode 100644 index e953735ab8..0000000000 Binary files a/front/public/images/large/Natura/stair.sakura/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.silverbell/0.png b/front/public/images/large/Natura/stair.silverbell/0.png deleted file mode 100644 index b62e909ea7..0000000000 Binary files a/front/public/images/large/Natura/stair.silverbell/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.tiger/0.png b/front/public/images/large/Natura/stair.tiger/0.png deleted file mode 100644 index 06c3a77c9b..0000000000 Binary files a/front/public/images/large/Natura/stair.tiger/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/stair.willow/0.png b/front/public/images/large/Natura/stair.willow/0.png deleted file mode 100644 index 7ceaed480a..0000000000 Binary files a/front/public/images/large/Natura/stair.willow/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.amaranth/0.png b/front/public/images/large/Natura/trapdoor.amaranth/0.png deleted file mode 100644 index 1e9e3be22b..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.amaranth/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.bloodwood/0.png b/front/public/images/large/Natura/trapdoor.bloodwood/0.png deleted file mode 100644 index 5378bf13a2..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.darkwood/0.png b/front/public/images/large/Natura/trapdoor.darkwood/0.png deleted file mode 100644 index fcc668ce89..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.darkwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.eucalyptus/0.png b/front/public/images/large/Natura/trapdoor.eucalyptus/0.png deleted file mode 100644 index 9200c7a5ca..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.fusewood/0.png b/front/public/images/large/Natura/trapdoor.fusewood/0.png deleted file mode 100644 index 460440cf08..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.fusewood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.ghostwood/0.png b/front/public/images/large/Natura/trapdoor.ghostwood/0.png deleted file mode 100644 index 09191002a8..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.hopseed/0.png b/front/public/images/large/Natura/trapdoor.hopseed/0.png deleted file mode 100644 index 40aa9922ea..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.hopseed/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.maple/0.png b/front/public/images/large/Natura/trapdoor.maple/0.png deleted file mode 100644 index 9613199e69..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.maple/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.redwood/0.png b/front/public/images/large/Natura/trapdoor.redwood/0.png deleted file mode 100644 index 06c1f3fd46..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.redwood/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.sakura/0.png b/front/public/images/large/Natura/trapdoor.sakura/0.png deleted file mode 100644 index 92de1f7785..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.sakura/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.silverbell/0.png b/front/public/images/large/Natura/trapdoor.silverbell/0.png deleted file mode 100644 index 878bade501..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.silverbell/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.tiger/0.png b/front/public/images/large/Natura/trapdoor.tiger/0.png deleted file mode 100644 index 3cc4bf5062..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.tiger/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/trapdoor.willow/0.png b/front/public/images/large/Natura/trapdoor.willow/0.png deleted file mode 100644 index b0f07cb21d..0000000000 Binary files a/front/public/images/large/Natura/trapdoor.willow/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/tree/0.png b/front/public/images/large/Natura/tree/0.png deleted file mode 100644 index 1dc888a6c8..0000000000 Binary files a/front/public/images/large/Natura/tree/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/tree/1.png b/front/public/images/large/Natura/tree/1.png deleted file mode 100644 index fe55be63ef..0000000000 Binary files a/front/public/images/large/Natura/tree/1.png and /dev/null differ diff --git a/front/public/images/large/Natura/tree/2.png b/front/public/images/large/Natura/tree/2.png deleted file mode 100644 index 8b8bf1d5fd..0000000000 Binary files a/front/public/images/large/Natura/tree/2.png and /dev/null differ diff --git a/front/public/images/large/Natura/tree/3.png b/front/public/images/large/Natura/tree/3.png deleted file mode 100644 index f94dca1c97..0000000000 Binary files a/front/public/images/large/Natura/tree/3.png and /dev/null differ diff --git a/front/public/images/large/Natura/wartBag/0.png b/front/public/images/large/Natura/wartBag/0.png deleted file mode 100644 index 6ed30f28dd..0000000000 Binary files a/front/public/images/large/Natura/wartBag/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/waterdrop/0.png b/front/public/images/large/Natura/waterdrop/0.png deleted file mode 100644 index 5a341caf51..0000000000 Binary files a/front/public/images/large/Natura/waterdrop/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/wheatBag/0.png b/front/public/images/large/Natura/wheatBag/0.png deleted file mode 100644 index 8caadfa4b0..0000000000 Binary files a/front/public/images/large/Natura/wheatBag/0.png and /dev/null differ diff --git a/front/public/images/large/Natura/willow/0.png b/front/public/images/large/Natura/willow/0.png deleted file mode 100644 index 570be40707..0000000000 Binary files a/front/public/images/large/Natura/willow/0.png and /dev/null differ diff --git a/front/public/images/large/NodalMechanics/item.nodalmechanics.matrix/0.png b/front/public/images/large/NodalMechanics/item.nodalmechanics.matrix/0.png deleted file mode 100644 index df6a2392cf..0000000000 Binary files a/front/public/images/large/NodalMechanics/item.nodalmechanics.matrix/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/autoanvil/0.png b/front/public/images/large/OpenBlocks/autoanvil/0.png deleted file mode 100644 index bd74e6b26e..0000000000 Binary files a/front/public/images/large/OpenBlocks/autoanvil/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/autoenchantmenttable/0.png b/front/public/images/large/OpenBlocks/autoenchantmenttable/0.png deleted file mode 100644 index d2304b9e44..0000000000 Binary files a/front/public/images/large/OpenBlocks/autoenchantmenttable/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/beartrap/0.png b/front/public/images/large/OpenBlocks/beartrap/0.png deleted file mode 100644 index 3884879ec8..0000000000 Binary files a/front/public/images/large/OpenBlocks/beartrap/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/bigbutton/0.png b/front/public/images/large/OpenBlocks/bigbutton/0.png deleted file mode 100644 index ce5057b7db..0000000000 Binary files a/front/public/images/large/OpenBlocks/bigbutton/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/blockPlacer/0.png b/front/public/images/large/OpenBlocks/blockPlacer/0.png deleted file mode 100644 index 88cb0968af..0000000000 Binary files a/front/public/images/large/OpenBlocks/blockPlacer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/blockbreaker/0.png b/front/public/images/large/OpenBlocks/blockbreaker/0.png deleted file mode 100644 index 8f5427672a..0000000000 Binary files a/front/public/images/large/OpenBlocks/blockbreaker/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/builder_guide/0.png b/front/public/images/large/OpenBlocks/builder_guide/0.png deleted file mode 100644 index 57b7733311..0000000000 Binary files a/front/public/images/large/OpenBlocks/builder_guide/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/cannon/0.png b/front/public/images/large/OpenBlocks/cannon/0.png deleted file mode 100644 index 393e7eb5bb..0000000000 Binary files a/front/public/images/large/OpenBlocks/cannon/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/canvas/0.png b/front/public/images/large/OpenBlocks/canvas/0.png deleted file mode 100644 index c3b47ed2ee..0000000000 Binary files a/front/public/images/large/OpenBlocks/canvas/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/canvasglass/0.png b/front/public/images/large/OpenBlocks/canvasglass/0.png deleted file mode 100644 index 08ce7f6acd..0000000000 Binary files a/front/public/images/large/OpenBlocks/canvasglass/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/cartographer/0.png b/front/public/images/large/OpenBlocks/cartographer/0.png deleted file mode 100644 index d7d0736f1b..0000000000 Binary files a/front/public/images/large/OpenBlocks/cartographer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/craneBackpack/0.png b/front/public/images/large/OpenBlocks/craneBackpack/0.png deleted file mode 100644 index dce76d9b1b..0000000000 Binary files a/front/public/images/large/OpenBlocks/craneBackpack/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/craneControl/0.png b/front/public/images/large/OpenBlocks/craneControl/0.png deleted file mode 100644 index 0538929666..0000000000 Binary files a/front/public/images/large/OpenBlocks/craneControl/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/crayonGlasses/0.png b/front/public/images/large/OpenBlocks/crayonGlasses/0.png deleted file mode 100644 index 93645ec8d4..0000000000 Binary files a/front/public/images/large/OpenBlocks/crayonGlasses/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/cursor/0.png b/front/public/images/large/OpenBlocks/cursor/0.png deleted file mode 100644 index 5cfe93b03b..0000000000 Binary files a/front/public/images/large/OpenBlocks/cursor/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/devnull/0.png b/front/public/images/large/OpenBlocks/devnull/0.png deleted file mode 100644 index bf71eec7c7..0000000000 Binary files a/front/public/images/large/OpenBlocks/devnull/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/donationStation/0.png b/front/public/images/large/OpenBlocks/donationStation/0.png deleted file mode 100644 index aa22b3453d..0000000000 Binary files a/front/public/images/large/OpenBlocks/donationStation/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/drawingtable/0.png b/front/public/images/large/OpenBlocks/drawingtable/0.png deleted file mode 100644 index 776df838f4..0000000000 Binary files a/front/public/images/large/OpenBlocks/drawingtable/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/0.png b/front/public/images/large/OpenBlocks/elevator/0.png deleted file mode 100644 index 814343679b..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/1.png b/front/public/images/large/OpenBlocks/elevator/1.png deleted file mode 100644 index ba91abfb81..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/1.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/10.png b/front/public/images/large/OpenBlocks/elevator/10.png deleted file mode 100644 index 0f2f9c29bf..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/10.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/11.png b/front/public/images/large/OpenBlocks/elevator/11.png deleted file mode 100644 index f0f22711a1..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/11.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/12.png b/front/public/images/large/OpenBlocks/elevator/12.png deleted file mode 100644 index f307b5a649..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/12.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/13.png b/front/public/images/large/OpenBlocks/elevator/13.png deleted file mode 100644 index 3eebaea4f4..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/13.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/14.png b/front/public/images/large/OpenBlocks/elevator/14.png deleted file mode 100644 index c2e4ac45e9..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/14.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/15.png b/front/public/images/large/OpenBlocks/elevator/15.png deleted file mode 100644 index d50fd95a25..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/15.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/2.png b/front/public/images/large/OpenBlocks/elevator/2.png deleted file mode 100644 index e30a55a036..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/2.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/3.png b/front/public/images/large/OpenBlocks/elevator/3.png deleted file mode 100644 index c52a016d51..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/3.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/4.png b/front/public/images/large/OpenBlocks/elevator/4.png deleted file mode 100644 index 56df5c1314..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/4.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/5.png b/front/public/images/large/OpenBlocks/elevator/5.png deleted file mode 100644 index d14c9a5436..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/5.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/6.png b/front/public/images/large/OpenBlocks/elevator/6.png deleted file mode 100644 index 5da76e95c9..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/6.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/7.png b/front/public/images/large/OpenBlocks/elevator/7.png deleted file mode 100644 index 10f6b87723..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/7.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/8.png b/front/public/images/large/OpenBlocks/elevator/8.png deleted file mode 100644 index b8157b5071..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/8.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator/9.png b/front/public/images/large/OpenBlocks/elevator/9.png deleted file mode 100644 index 3b335ad97d..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator/9.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/0.png b/front/public/images/large/OpenBlocks/elevator_rotating/0.png deleted file mode 100644 index 10740fe20b..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/1.png b/front/public/images/large/OpenBlocks/elevator_rotating/1.png deleted file mode 100644 index 1d166d6ce7..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/1.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/10.png b/front/public/images/large/OpenBlocks/elevator_rotating/10.png deleted file mode 100644 index c79dd1be88..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/10.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/11.png b/front/public/images/large/OpenBlocks/elevator_rotating/11.png deleted file mode 100644 index d4e7aa7ae7..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/11.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/12.png b/front/public/images/large/OpenBlocks/elevator_rotating/12.png deleted file mode 100644 index ae2475c0b3..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/12.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/13.png b/front/public/images/large/OpenBlocks/elevator_rotating/13.png deleted file mode 100644 index 1bac9a2890..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/13.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/14.png b/front/public/images/large/OpenBlocks/elevator_rotating/14.png deleted file mode 100644 index b23abbd2f7..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/14.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/15.png b/front/public/images/large/OpenBlocks/elevator_rotating/15.png deleted file mode 100644 index d4cc9c670b..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/15.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/2.png b/front/public/images/large/OpenBlocks/elevator_rotating/2.png deleted file mode 100644 index b188a90a14..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/2.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/3.png b/front/public/images/large/OpenBlocks/elevator_rotating/3.png deleted file mode 100644 index 6ddb129874..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/3.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/4.png b/front/public/images/large/OpenBlocks/elevator_rotating/4.png deleted file mode 100644 index 292c57cb7a..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/4.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/5.png b/front/public/images/large/OpenBlocks/elevator_rotating/5.png deleted file mode 100644 index c8c26634fd..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/5.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/6.png b/front/public/images/large/OpenBlocks/elevator_rotating/6.png deleted file mode 100644 index f5cf504d6d..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/6.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/7.png b/front/public/images/large/OpenBlocks/elevator_rotating/7.png deleted file mode 100644 index da20646423..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/7.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/8.png b/front/public/images/large/OpenBlocks/elevator_rotating/8.png deleted file mode 100644 index fdb2816e38..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/8.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/elevator_rotating/9.png b/front/public/images/large/OpenBlocks/elevator_rotating/9.png deleted file mode 100644 index 0627c6a9ab..0000000000 Binary files a/front/public/images/large/OpenBlocks/elevator_rotating/9.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/emptyMap/0.png b/front/public/images/large/OpenBlocks/emptyMap/0.png deleted file mode 100644 index 70ddf5b0fd..0000000000 Binary files a/front/public/images/large/OpenBlocks/emptyMap/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/epicEraser/0.png b/front/public/images/large/OpenBlocks/epicEraser/0.png deleted file mode 100644 index 706ac52420..0000000000 Binary files a/front/public/images/large/OpenBlocks/epicEraser/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/fan/0.png b/front/public/images/large/OpenBlocks/fan/0.png deleted file mode 100644 index f0205dffdb..0000000000 Binary files a/front/public/images/large/OpenBlocks/fan/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/filledbucket/0.png b/front/public/images/large/OpenBlocks/filledbucket/0.png deleted file mode 100644 index a198e083ca..0000000000 Binary files a/front/public/images/large/OpenBlocks/filledbucket/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/flag/0.png b/front/public/images/large/OpenBlocks/flag/0.png deleted file mode 100644 index 9b57989474..0000000000 Binary files a/front/public/images/large/OpenBlocks/flag/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/0.png b/front/public/images/large/OpenBlocks/generic/0.png deleted file mode 100644 index a1f0a27502..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/1.png b/front/public/images/large/OpenBlocks/generic/1.png deleted file mode 100644 index 6f99dfaa0e..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/1.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/10.png b/front/public/images/large/OpenBlocks/generic/10.png deleted file mode 100644 index ff1f18500e..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/10.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/11.png b/front/public/images/large/OpenBlocks/generic/11.png deleted file mode 100644 index e5d63e8785..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/11.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/2.png b/front/public/images/large/OpenBlocks/generic/2.png deleted file mode 100644 index 3eb6b36fbe..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/2.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/3.png b/front/public/images/large/OpenBlocks/generic/3.png deleted file mode 100644 index 2877cd333d..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/3.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/5.png b/front/public/images/large/OpenBlocks/generic/5.png deleted file mode 100644 index 9772a131e7..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/5.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/6.png b/front/public/images/large/OpenBlocks/generic/6.png deleted file mode 100644 index 82592e5d45..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/6.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/7.png b/front/public/images/large/OpenBlocks/generic/7.png deleted file mode 100644 index 83a7bbb834..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/7.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/generic/9.png b/front/public/images/large/OpenBlocks/generic/9.png deleted file mode 100644 index bee39246fa..0000000000 Binary files a/front/public/images/large/OpenBlocks/generic/9.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/genericUnstackable/0.png b/front/public/images/large/OpenBlocks/genericUnstackable/0.png deleted file mode 100644 index ddf61ae283..0000000000 Binary files a/front/public/images/large/OpenBlocks/genericUnstackable/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/goldenEye/0.png b/front/public/images/large/OpenBlocks/goldenEye/0.png deleted file mode 100644 index cfc142f3a5..0000000000 Binary files a/front/public/images/large/OpenBlocks/goldenEye/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/goldenEye/100.png b/front/public/images/large/OpenBlocks/goldenEye/100.png deleted file mode 100644 index cfc142f3a5..0000000000 Binary files a/front/public/images/large/OpenBlocks/goldenEye/100.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/goldenegg/0.png b/front/public/images/large/OpenBlocks/goldenegg/0.png deleted file mode 100644 index 99aefdf005..0000000000 Binary files a/front/public/images/large/OpenBlocks/goldenegg/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/grave/0.png b/front/public/images/large/OpenBlocks/grave/0.png deleted file mode 100644 index 2fde30e5c3..0000000000 Binary files a/front/public/images/large/OpenBlocks/grave/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/guide/0.png b/front/public/images/large/OpenBlocks/guide/0.png deleted file mode 100644 index 8b7828ff08..0000000000 Binary files a/front/public/images/large/OpenBlocks/guide/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/hangglider/0.png b/front/public/images/large/OpenBlocks/hangglider/0.png deleted file mode 100644 index 8b4da6d680..0000000000 Binary files a/front/public/images/large/OpenBlocks/hangglider/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/imaginary/0.png b/front/public/images/large/OpenBlocks/imaginary/0.png deleted file mode 100644 index e0c12367ff..0000000000 Binary files a/front/public/images/large/OpenBlocks/imaginary/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/imaginary/1.png b/front/public/images/large/OpenBlocks/imaginary/1.png deleted file mode 100644 index 87df9b8128..0000000000 Binary files a/front/public/images/large/OpenBlocks/imaginary/1.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/infoBook/0.png b/front/public/images/large/OpenBlocks/infoBook/0.png deleted file mode 100644 index d59dc7a25a..0000000000 Binary files a/front/public/images/large/OpenBlocks/infoBook/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/itemDropper/0.png b/front/public/images/large/OpenBlocks/itemDropper/0.png deleted file mode 100644 index c67deb33fb..0000000000 Binary files a/front/public/images/large/OpenBlocks/itemDropper/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/ladder/0.png b/front/public/images/large/OpenBlocks/ladder/0.png deleted file mode 100644 index a629bf34b9..0000000000 Binary files a/front/public/images/large/OpenBlocks/ladder/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/luggage/0.png b/front/public/images/large/OpenBlocks/luggage/0.png deleted file mode 100644 index 68ff7781f5..0000000000 Binary files a/front/public/images/large/OpenBlocks/luggage/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/paintBrush/0.png b/front/public/images/large/OpenBlocks/paintBrush/0.png deleted file mode 100644 index cab99ca2a9..0000000000 Binary files a/front/public/images/large/OpenBlocks/paintBrush/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/paintcan/0.png b/front/public/images/large/OpenBlocks/paintcan/0.png deleted file mode 100644 index 53a7765b27..0000000000 Binary files a/front/public/images/large/OpenBlocks/paintcan/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/paintmixer/0.png b/front/public/images/large/OpenBlocks/paintmixer/0.png deleted file mode 100644 index a7d5942c6f..0000000000 Binary files a/front/public/images/large/OpenBlocks/paintmixer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/path/0.png b/front/public/images/large/OpenBlocks/path/0.png deleted file mode 100644 index 901ed10e6d..0000000000 Binary files a/front/public/images/large/OpenBlocks/path/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/pedometer/0.png b/front/public/images/large/OpenBlocks/pedometer/0.png deleted file mode 100644 index 36a8924649..0000000000 Binary files a/front/public/images/large/OpenBlocks/pedometer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/pencilGlasses/0.png b/front/public/images/large/OpenBlocks/pencilGlasses/0.png deleted file mode 100644 index 113ed166e0..0000000000 Binary files a/front/public/images/large/OpenBlocks/pencilGlasses/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/projector/0.png b/front/public/images/large/OpenBlocks/projector/0.png deleted file mode 100644 index 915f250706..0000000000 Binary files a/front/public/images/large/OpenBlocks/projector/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/ropeladder/0.png b/front/public/images/large/OpenBlocks/ropeladder/0.png deleted file mode 100644 index 24b8a45a6a..0000000000 Binary files a/front/public/images/large/OpenBlocks/ropeladder/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/scaffolding/0.png b/front/public/images/large/OpenBlocks/scaffolding/0.png deleted file mode 100644 index 0272f85c35..0000000000 Binary files a/front/public/images/large/OpenBlocks/scaffolding/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/seriousGlasses/0.png b/front/public/images/large/OpenBlocks/seriousGlasses/0.png deleted file mode 100644 index e8073559b9..0000000000 Binary files a/front/public/images/large/OpenBlocks/seriousGlasses/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/sky/0.png b/front/public/images/large/OpenBlocks/sky/0.png deleted file mode 100644 index e711fc4b87..0000000000 Binary files a/front/public/images/large/OpenBlocks/sky/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/sky/1.png b/front/public/images/large/OpenBlocks/sky/1.png deleted file mode 100644 index e711fc4b87..0000000000 Binary files a/front/public/images/large/OpenBlocks/sky/1.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/sleepingBag/0.png b/front/public/images/large/OpenBlocks/sleepingBag/0.png deleted file mode 100644 index 148be33d71..0000000000 Binary files a/front/public/images/large/OpenBlocks/sleepingBag/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/slimalyzer/0.png b/front/public/images/large/OpenBlocks/slimalyzer/0.png deleted file mode 100644 index 330befd3f8..0000000000 Binary files a/front/public/images/large/OpenBlocks/slimalyzer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/sonicglasses/0.png b/front/public/images/large/OpenBlocks/sonicglasses/0.png deleted file mode 100644 index ff7b2be619..0000000000 Binary files a/front/public/images/large/OpenBlocks/sonicglasses/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/sponge/0.png b/front/public/images/large/OpenBlocks/sponge/0.png deleted file mode 100644 index 54c53b45ef..0000000000 Binary files a/front/public/images/large/OpenBlocks/sponge/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/spongeonastick/0.png b/front/public/images/large/OpenBlocks/spongeonastick/0.png deleted file mode 100644 index acd7c6c7b1..0000000000 Binary files a/front/public/images/large/OpenBlocks/spongeonastick/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/sprinkler/0.png b/front/public/images/large/OpenBlocks/sprinkler/0.png deleted file mode 100644 index 765f4c5299..0000000000 Binary files a/front/public/images/large/OpenBlocks/sprinkler/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/squeegee/0.png b/front/public/images/large/OpenBlocks/squeegee/0.png deleted file mode 100644 index 26484d2961..0000000000 Binary files a/front/public/images/large/OpenBlocks/squeegee/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/0.png b/front/public/images/large/OpenBlocks/stencil/0.png deleted file mode 100644 index d20a6c9d01..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/1.png b/front/public/images/large/OpenBlocks/stencil/1.png deleted file mode 100644 index 630c5ebd74..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/1.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/10.png b/front/public/images/large/OpenBlocks/stencil/10.png deleted file mode 100644 index c3ab3087af..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/10.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/11.png b/front/public/images/large/OpenBlocks/stencil/11.png deleted file mode 100644 index 51ec31c87a..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/11.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/12.png b/front/public/images/large/OpenBlocks/stencil/12.png deleted file mode 100644 index f85165b18b..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/12.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/13.png b/front/public/images/large/OpenBlocks/stencil/13.png deleted file mode 100644 index a90ee46573..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/13.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/14.png b/front/public/images/large/OpenBlocks/stencil/14.png deleted file mode 100644 index b5e67ff762..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/14.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/2.png b/front/public/images/large/OpenBlocks/stencil/2.png deleted file mode 100644 index fc9906b049..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/2.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/3.png b/front/public/images/large/OpenBlocks/stencil/3.png deleted file mode 100644 index c103f86f09..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/3.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/4.png b/front/public/images/large/OpenBlocks/stencil/4.png deleted file mode 100644 index 8e68a9bde5..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/4.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/5.png b/front/public/images/large/OpenBlocks/stencil/5.png deleted file mode 100644 index ae315ca3b2..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/5.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/6.png b/front/public/images/large/OpenBlocks/stencil/6.png deleted file mode 100644 index ca6d66487c..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/6.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/7.png b/front/public/images/large/OpenBlocks/stencil/7.png deleted file mode 100644 index c242530664..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/7.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/8.png b/front/public/images/large/OpenBlocks/stencil/8.png deleted file mode 100644 index e77fc9dc4e..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/8.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/stencil/9.png b/front/public/images/large/OpenBlocks/stencil/9.png deleted file mode 100644 index 95f401c86f..0000000000 Binary files a/front/public/images/large/OpenBlocks/stencil/9.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/target/0.png b/front/public/images/large/OpenBlocks/target/0.png deleted file mode 100644 index 216e302ba8..0000000000 Binary files a/front/public/images/large/OpenBlocks/target/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/tastyClay/0.png b/front/public/images/large/OpenBlocks/tastyClay/0.png deleted file mode 100644 index 87dcbd6473..0000000000 Binary files a/front/public/images/large/OpenBlocks/tastyClay/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/technicolorGlasses/0.png b/front/public/images/large/OpenBlocks/technicolorGlasses/0.png deleted file mode 100644 index c19bed456b..0000000000 Binary files a/front/public/images/large/OpenBlocks/technicolorGlasses/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/trophy/0.png b/front/public/images/large/OpenBlocks/trophy/0.png deleted file mode 100644 index eb033d8558..0000000000 Binary files a/front/public/images/large/OpenBlocks/trophy/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/vacuumhopper/0.png b/front/public/images/large/OpenBlocks/vacuumhopper/0.png deleted file mode 100644 index 4461b305d9..0000000000 Binary files a/front/public/images/large/OpenBlocks/vacuumhopper/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/village_highlighter/0.png b/front/public/images/large/OpenBlocks/village_highlighter/0.png deleted file mode 100644 index c98f97300f..0000000000 Binary files a/front/public/images/large/OpenBlocks/village_highlighter/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/wrench/0.png b/front/public/images/large/OpenBlocks/wrench/0.png deleted file mode 100644 index cd2eeb3f86..0000000000 Binary files a/front/public/images/large/OpenBlocks/wrench/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/xpbottler/0.png b/front/public/images/large/OpenBlocks/xpbottler/0.png deleted file mode 100644 index c01e474648..0000000000 Binary files a/front/public/images/large/OpenBlocks/xpbottler/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/xpdrain/0.png b/front/public/images/large/OpenBlocks/xpdrain/0.png deleted file mode 100644 index ac45ed19f1..0000000000 Binary files a/front/public/images/large/OpenBlocks/xpdrain/0.png and /dev/null differ diff --git a/front/public/images/large/OpenBlocks/xpshower/0.png b/front/public/images/large/OpenBlocks/xpshower/0.png deleted file mode 100644 index 103deeb3c0..0000000000 Binary files a/front/public/images/large/OpenBlocks/xpshower/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/accessPoint/0.png b/front/public/images/large/OpenComputers/accessPoint/0.png deleted file mode 100644 index ae6c2422c4..0000000000 Binary files a/front/public/images/large/OpenComputers/accessPoint/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/adapter/0.png b/front/public/images/large/OpenComputers/adapter/0.png deleted file mode 100644 index 7cea5de2bf..0000000000 Binary files a/front/public/images/large/OpenComputers/adapter/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/assembler/0.png b/front/public/images/large/OpenComputers/assembler/0.png deleted file mode 100644 index b8eae1834d..0000000000 Binary files a/front/public/images/large/OpenComputers/assembler/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/cable/0.png b/front/public/images/large/OpenComputers/cable/0.png deleted file mode 100644 index f2ade7dcc0..0000000000 Binary files a/front/public/images/large/OpenComputers/cable/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/capacitor/0.png b/front/public/images/large/OpenComputers/capacitor/0.png deleted file mode 100644 index f8b0eb0bab..0000000000 Binary files a/front/public/images/large/OpenComputers/capacitor/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/carpetedCapacitor/0.png b/front/public/images/large/OpenComputers/carpetedCapacitor/0.png deleted file mode 100644 index 4cdeaf8a35..0000000000 Binary files a/front/public/images/large/OpenComputers/carpetedCapacitor/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/case1/0.png b/front/public/images/large/OpenComputers/case1/0.png deleted file mode 100644 index a184d6e6e7..0000000000 Binary files a/front/public/images/large/OpenComputers/case1/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/case2/0.png b/front/public/images/large/OpenComputers/case2/0.png deleted file mode 100644 index 378c450863..0000000000 Binary files a/front/public/images/large/OpenComputers/case2/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/case3/0.png b/front/public/images/large/OpenComputers/case3/0.png deleted file mode 100644 index 9913b4fad2..0000000000 Binary files a/front/public/images/large/OpenComputers/case3/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/caseCreative/0.png b/front/public/images/large/OpenComputers/caseCreative/0.png deleted file mode 100644 index 5ee9dedd31..0000000000 Binary files a/front/public/images/large/OpenComputers/caseCreative/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/chameliumBlock/0.png b/front/public/images/large/OpenComputers/chameliumBlock/0.png deleted file mode 100644 index f5584d2dce..0000000000 Binary files a/front/public/images/large/OpenComputers/chameliumBlock/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/charger/0.png b/front/public/images/large/OpenComputers/charger/0.png deleted file mode 100644 index af3b370034..0000000000 Binary files a/front/public/images/large/OpenComputers/charger/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/disassembler/0.png b/front/public/images/large/OpenComputers/disassembler/0.png deleted file mode 100644 index 09d008b2ab..0000000000 Binary files a/front/public/images/large/OpenComputers/disassembler/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/diskDrive/0.png b/front/public/images/large/OpenComputers/diskDrive/0.png deleted file mode 100644 index 534de304a9..0000000000 Binary files a/front/public/images/large/OpenComputers/diskDrive/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/eeprom/0.png b/front/public/images/large/OpenComputers/eeprom/0.png deleted file mode 100644 index ffa4d87b91..0000000000 Binary files a/front/public/images/large/OpenComputers/eeprom/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/endstone/0.png b/front/public/images/large/OpenComputers/endstone/0.png deleted file mode 100644 index 0fffd23526..0000000000 Binary files a/front/public/images/large/OpenComputers/endstone/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/geolyzer/0.png b/front/public/images/large/OpenComputers/geolyzer/0.png deleted file mode 100644 index e8731564a9..0000000000 Binary files a/front/public/images/large/OpenComputers/geolyzer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/hologram1/0.png b/front/public/images/large/OpenComputers/hologram1/0.png deleted file mode 100644 index 73e6bdb58c..0000000000 Binary files a/front/public/images/large/OpenComputers/hologram1/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/hologram2/0.png b/front/public/images/large/OpenComputers/hologram2/0.png deleted file mode 100644 index 7ee84d2a41..0000000000 Binary files a/front/public/images/large/OpenComputers/hologram2/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/hoverBoots/0.png b/front/public/images/large/OpenComputers/hoverBoots/0.png deleted file mode 100644 index 1738b23b7a..0000000000 Binary files a/front/public/images/large/OpenComputers/hoverBoots/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item.ae/0.png b/front/public/images/large/OpenComputers/item.ae/0.png deleted file mode 100644 index 2bf9c03b58..0000000000 Binary files a/front/public/images/large/OpenComputers/item.ae/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item.ae/1.png b/front/public/images/large/OpenComputers/item.ae/1.png deleted file mode 100644 index 2bf9c03b58..0000000000 Binary files a/front/public/images/large/OpenComputers/item.ae/1.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item.ae/2.png b/front/public/images/large/OpenComputers/item.ae/2.png deleted file mode 100644 index 2bf9c03b58..0000000000 Binary files a/front/public/images/large/OpenComputers/item.ae/2.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item.forestry/0.png b/front/public/images/large/OpenComputers/item.forestry/0.png deleted file mode 100644 index af9d1a31ce..0000000000 Binary files a/front/public/images/large/OpenComputers/item.forestry/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/0.png b/front/public/images/large/OpenComputers/item/0.png deleted file mode 100644 index 398efae9c3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/1.png b/front/public/images/large/OpenComputers/item/1.png deleted file mode 100644 index 2bfb4dfce3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/1.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/10.png b/front/public/images/large/OpenComputers/item/10.png deleted file mode 100644 index 1123088b6f..0000000000 Binary files a/front/public/images/large/OpenComputers/item/10.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/100.png b/front/public/images/large/OpenComputers/item/100.png deleted file mode 100644 index 2e04f33095..0000000000 Binary files a/front/public/images/large/OpenComputers/item/100.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/101.png b/front/public/images/large/OpenComputers/item/101.png deleted file mode 100644 index a221c45846..0000000000 Binary files a/front/public/images/large/OpenComputers/item/101.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/102.png b/front/public/images/large/OpenComputers/item/102.png deleted file mode 100644 index 3bc6dd7831..0000000000 Binary files a/front/public/images/large/OpenComputers/item/102.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/103.png b/front/public/images/large/OpenComputers/item/103.png deleted file mode 100644 index 3b815a5ecc..0000000000 Binary files a/front/public/images/large/OpenComputers/item/103.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/104.png b/front/public/images/large/OpenComputers/item/104.png deleted file mode 100644 index c39d33ea99..0000000000 Binary files a/front/public/images/large/OpenComputers/item/104.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/105.png b/front/public/images/large/OpenComputers/item/105.png deleted file mode 100644 index 7374de6db6..0000000000 Binary files a/front/public/images/large/OpenComputers/item/105.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/106.png b/front/public/images/large/OpenComputers/item/106.png deleted file mode 100644 index bdf8777c35..0000000000 Binary files a/front/public/images/large/OpenComputers/item/106.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/107.png b/front/public/images/large/OpenComputers/item/107.png deleted file mode 100644 index 771ec7f846..0000000000 Binary files a/front/public/images/large/OpenComputers/item/107.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/108.png b/front/public/images/large/OpenComputers/item/108.png deleted file mode 100644 index 0802e76b29..0000000000 Binary files a/front/public/images/large/OpenComputers/item/108.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/109.png b/front/public/images/large/OpenComputers/item/109.png deleted file mode 100644 index 32b240adcb..0000000000 Binary files a/front/public/images/large/OpenComputers/item/109.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/11.png b/front/public/images/large/OpenComputers/item/11.png deleted file mode 100644 index acd586227b..0000000000 Binary files a/front/public/images/large/OpenComputers/item/11.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/110.png b/front/public/images/large/OpenComputers/item/110.png deleted file mode 100644 index 965b3b91dd..0000000000 Binary files a/front/public/images/large/OpenComputers/item/110.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/112.png b/front/public/images/large/OpenComputers/item/112.png deleted file mode 100644 index de37790768..0000000000 Binary files a/front/public/images/large/OpenComputers/item/112.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/113.png b/front/public/images/large/OpenComputers/item/113.png deleted file mode 100644 index ea7ad50df3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/113.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/114.png b/front/public/images/large/OpenComputers/item/114.png deleted file mode 100644 index 7d1e1bb52d..0000000000 Binary files a/front/public/images/large/OpenComputers/item/114.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/115.png b/front/public/images/large/OpenComputers/item/115.png deleted file mode 100644 index 0695490b97..0000000000 Binary files a/front/public/images/large/OpenComputers/item/115.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/116.png b/front/public/images/large/OpenComputers/item/116.png deleted file mode 100644 index 8373c5a501..0000000000 Binary files a/front/public/images/large/OpenComputers/item/116.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/117.png b/front/public/images/large/OpenComputers/item/117.png deleted file mode 100644 index 333f7da3f9..0000000000 Binary files a/front/public/images/large/OpenComputers/item/117.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/12.png b/front/public/images/large/OpenComputers/item/12.png deleted file mode 100644 index 20725fae61..0000000000 Binary files a/front/public/images/large/OpenComputers/item/12.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/13.png b/front/public/images/large/OpenComputers/item/13.png deleted file mode 100644 index 6d6a59c48e..0000000000 Binary files a/front/public/images/large/OpenComputers/item/13.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/14.png b/front/public/images/large/OpenComputers/item/14.png deleted file mode 100644 index 1e7838f32e..0000000000 Binary files a/front/public/images/large/OpenComputers/item/14.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/15.png b/front/public/images/large/OpenComputers/item/15.png deleted file mode 100644 index ac09c48d93..0000000000 Binary files a/front/public/images/large/OpenComputers/item/15.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/18.png b/front/public/images/large/OpenComputers/item/18.png deleted file mode 100644 index caf7f8530c..0000000000 Binary files a/front/public/images/large/OpenComputers/item/18.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/19.png b/front/public/images/large/OpenComputers/item/19.png deleted file mode 100644 index cd78f79451..0000000000 Binary files a/front/public/images/large/OpenComputers/item/19.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/2.png b/front/public/images/large/OpenComputers/item/2.png deleted file mode 100644 index c85511d901..0000000000 Binary files a/front/public/images/large/OpenComputers/item/2.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/24.png b/front/public/images/large/OpenComputers/item/24.png deleted file mode 100644 index 09b6e3cbf2..0000000000 Binary files a/front/public/images/large/OpenComputers/item/24.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/25.png b/front/public/images/large/OpenComputers/item/25.png deleted file mode 100644 index e5e49e3e2c..0000000000 Binary files a/front/public/images/large/OpenComputers/item/25.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/26.png b/front/public/images/large/OpenComputers/item/26.png deleted file mode 100644 index 1fbb65ffdf..0000000000 Binary files a/front/public/images/large/OpenComputers/item/26.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/27.png b/front/public/images/large/OpenComputers/item/27.png deleted file mode 100644 index d8adc4a8e0..0000000000 Binary files a/front/public/images/large/OpenComputers/item/27.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/28.png b/front/public/images/large/OpenComputers/item/28.png deleted file mode 100644 index 5fa1fe7806..0000000000 Binary files a/front/public/images/large/OpenComputers/item/28.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/29.png b/front/public/images/large/OpenComputers/item/29.png deleted file mode 100644 index 1186c99107..0000000000 Binary files a/front/public/images/large/OpenComputers/item/29.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/3.png b/front/public/images/large/OpenComputers/item/3.png deleted file mode 100644 index 93074d0d7d..0000000000 Binary files a/front/public/images/large/OpenComputers/item/3.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/33.png b/front/public/images/large/OpenComputers/item/33.png deleted file mode 100644 index 7ff5fda248..0000000000 Binary files a/front/public/images/large/OpenComputers/item/33.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/34.png b/front/public/images/large/OpenComputers/item/34.png deleted file mode 100644 index d5623eebf6..0000000000 Binary files a/front/public/images/large/OpenComputers/item/34.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/35.png b/front/public/images/large/OpenComputers/item/35.png deleted file mode 100644 index 2aea1055fd..0000000000 Binary files a/front/public/images/large/OpenComputers/item/35.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/36.png b/front/public/images/large/OpenComputers/item/36.png deleted file mode 100644 index bdae132a09..0000000000 Binary files a/front/public/images/large/OpenComputers/item/36.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/38.png b/front/public/images/large/OpenComputers/item/38.png deleted file mode 100644 index 14a6f9e181..0000000000 Binary files a/front/public/images/large/OpenComputers/item/38.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/39.png b/front/public/images/large/OpenComputers/item/39.png deleted file mode 100644 index 2686e2a565..0000000000 Binary files a/front/public/images/large/OpenComputers/item/39.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/4.png b/front/public/images/large/OpenComputers/item/4.png deleted file mode 100644 index ab03b5b69c..0000000000 Binary files a/front/public/images/large/OpenComputers/item/4.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/40.png b/front/public/images/large/OpenComputers/item/40.png deleted file mode 100644 index 0963281679..0000000000 Binary files a/front/public/images/large/OpenComputers/item/40.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/41.png b/front/public/images/large/OpenComputers/item/41.png deleted file mode 100644 index cf39834dfc..0000000000 Binary files a/front/public/images/large/OpenComputers/item/41.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/42.png b/front/public/images/large/OpenComputers/item/42.png deleted file mode 100644 index 939bc78d10..0000000000 Binary files a/front/public/images/large/OpenComputers/item/42.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/43.png b/front/public/images/large/OpenComputers/item/43.png deleted file mode 100644 index 00ac65d631..0000000000 Binary files a/front/public/images/large/OpenComputers/item/43.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/44.png b/front/public/images/large/OpenComputers/item/44.png deleted file mode 100644 index a0b927be05..0000000000 Binary files a/front/public/images/large/OpenComputers/item/44.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/45.png b/front/public/images/large/OpenComputers/item/45.png deleted file mode 100644 index bc0057c306..0000000000 Binary files a/front/public/images/large/OpenComputers/item/45.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/46.png b/front/public/images/large/OpenComputers/item/46.png deleted file mode 100644 index 318a11fa91..0000000000 Binary files a/front/public/images/large/OpenComputers/item/46.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/48.png b/front/public/images/large/OpenComputers/item/48.png deleted file mode 100644 index 269b4982a7..0000000000 Binary files a/front/public/images/large/OpenComputers/item/48.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/49.png b/front/public/images/large/OpenComputers/item/49.png deleted file mode 100644 index 05c26a98d3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/49.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/5.png b/front/public/images/large/OpenComputers/item/5.png deleted file mode 100644 index 86ae54d32f..0000000000 Binary files a/front/public/images/large/OpenComputers/item/5.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/50.png b/front/public/images/large/OpenComputers/item/50.png deleted file mode 100644 index 3060f31ada..0000000000 Binary files a/front/public/images/large/OpenComputers/item/50.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/51.png b/front/public/images/large/OpenComputers/item/51.png deleted file mode 100644 index ffdcd72ed2..0000000000 Binary files a/front/public/images/large/OpenComputers/item/51.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/52.png b/front/public/images/large/OpenComputers/item/52.png deleted file mode 100644 index 0ef0892f9c..0000000000 Binary files a/front/public/images/large/OpenComputers/item/52.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/53.png b/front/public/images/large/OpenComputers/item/53.png deleted file mode 100644 index 8fb7424871..0000000000 Binary files a/front/public/images/large/OpenComputers/item/53.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/54.png b/front/public/images/large/OpenComputers/item/54.png deleted file mode 100644 index c3ae7921d3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/54.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/55.png b/front/public/images/large/OpenComputers/item/55.png deleted file mode 100644 index aa6d090362..0000000000 Binary files a/front/public/images/large/OpenComputers/item/55.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/56.png b/front/public/images/large/OpenComputers/item/56.png deleted file mode 100644 index ce1d085827..0000000000 Binary files a/front/public/images/large/OpenComputers/item/56.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/57.png b/front/public/images/large/OpenComputers/item/57.png deleted file mode 100644 index 10103d2ff2..0000000000 Binary files a/front/public/images/large/OpenComputers/item/57.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/58.png b/front/public/images/large/OpenComputers/item/58.png deleted file mode 100644 index 2b8b824fb3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/58.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/59.png b/front/public/images/large/OpenComputers/item/59.png deleted file mode 100644 index 12e285edcf..0000000000 Binary files a/front/public/images/large/OpenComputers/item/59.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/6.png b/front/public/images/large/OpenComputers/item/6.png deleted file mode 100644 index 32d83ce4a8..0000000000 Binary files a/front/public/images/large/OpenComputers/item/6.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/61.png b/front/public/images/large/OpenComputers/item/61.png deleted file mode 100644 index 84e74b0fd6..0000000000 Binary files a/front/public/images/large/OpenComputers/item/61.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/62.png b/front/public/images/large/OpenComputers/item/62.png deleted file mode 100644 index d0c10d3558..0000000000 Binary files a/front/public/images/large/OpenComputers/item/62.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/63.png b/front/public/images/large/OpenComputers/item/63.png deleted file mode 100644 index b5435d0182..0000000000 Binary files a/front/public/images/large/OpenComputers/item/63.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/64.png b/front/public/images/large/OpenComputers/item/64.png deleted file mode 100644 index c5558f1bf4..0000000000 Binary files a/front/public/images/large/OpenComputers/item/64.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/65.png b/front/public/images/large/OpenComputers/item/65.png deleted file mode 100644 index 4701b56f21..0000000000 Binary files a/front/public/images/large/OpenComputers/item/65.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/66.png b/front/public/images/large/OpenComputers/item/66.png deleted file mode 100644 index 075dca4d59..0000000000 Binary files a/front/public/images/large/OpenComputers/item/66.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/67.png b/front/public/images/large/OpenComputers/item/67.png deleted file mode 100644 index 053d98b0fc..0000000000 Binary files a/front/public/images/large/OpenComputers/item/67.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/68.png b/front/public/images/large/OpenComputers/item/68.png deleted file mode 100644 index 33dacb6c13..0000000000 Binary files a/front/public/images/large/OpenComputers/item/68.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/69.png b/front/public/images/large/OpenComputers/item/69.png deleted file mode 100644 index 9c38c8f1fa..0000000000 Binary files a/front/public/images/large/OpenComputers/item/69.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/7.png b/front/public/images/large/OpenComputers/item/7.png deleted file mode 100644 index b3a0b41a3d..0000000000 Binary files a/front/public/images/large/OpenComputers/item/7.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/70.png b/front/public/images/large/OpenComputers/item/70.png deleted file mode 100644 index 9011d7839b..0000000000 Binary files a/front/public/images/large/OpenComputers/item/70.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/71.png b/front/public/images/large/OpenComputers/item/71.png deleted file mode 100644 index 673d5a744e..0000000000 Binary files a/front/public/images/large/OpenComputers/item/71.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/72.png b/front/public/images/large/OpenComputers/item/72.png deleted file mode 100644 index e8f5d0366f..0000000000 Binary files a/front/public/images/large/OpenComputers/item/72.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/73.png b/front/public/images/large/OpenComputers/item/73.png deleted file mode 100644 index a3ae47296d..0000000000 Binary files a/front/public/images/large/OpenComputers/item/73.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/74.png b/front/public/images/large/OpenComputers/item/74.png deleted file mode 100644 index 549b1378cf..0000000000 Binary files a/front/public/images/large/OpenComputers/item/74.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/75.png b/front/public/images/large/OpenComputers/item/75.png deleted file mode 100644 index 30dfe71fdc..0000000000 Binary files a/front/public/images/large/OpenComputers/item/75.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/76.png b/front/public/images/large/OpenComputers/item/76.png deleted file mode 100644 index 4358cef1e1..0000000000 Binary files a/front/public/images/large/OpenComputers/item/76.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/77.png b/front/public/images/large/OpenComputers/item/77.png deleted file mode 100644 index f2fcae7ec9..0000000000 Binary files a/front/public/images/large/OpenComputers/item/77.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/78.png b/front/public/images/large/OpenComputers/item/78.png deleted file mode 100644 index ab728c1018..0000000000 Binary files a/front/public/images/large/OpenComputers/item/78.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/79.png b/front/public/images/large/OpenComputers/item/79.png deleted file mode 100644 index f8aed5155f..0000000000 Binary files a/front/public/images/large/OpenComputers/item/79.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/8.png b/front/public/images/large/OpenComputers/item/8.png deleted file mode 100644 index 3b3f88022b..0000000000 Binary files a/front/public/images/large/OpenComputers/item/8.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/80.png b/front/public/images/large/OpenComputers/item/80.png deleted file mode 100644 index 24e01df9cf..0000000000 Binary files a/front/public/images/large/OpenComputers/item/80.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/81.png b/front/public/images/large/OpenComputers/item/81.png deleted file mode 100644 index fc703399fb..0000000000 Binary files a/front/public/images/large/OpenComputers/item/81.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/82.png b/front/public/images/large/OpenComputers/item/82.png deleted file mode 100644 index f646d13b43..0000000000 Binary files a/front/public/images/large/OpenComputers/item/82.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/83.png b/front/public/images/large/OpenComputers/item/83.png deleted file mode 100644 index 23cc91baee..0000000000 Binary files a/front/public/images/large/OpenComputers/item/83.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/84.png b/front/public/images/large/OpenComputers/item/84.png deleted file mode 100644 index 2f6ba83f83..0000000000 Binary files a/front/public/images/large/OpenComputers/item/84.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/85.png b/front/public/images/large/OpenComputers/item/85.png deleted file mode 100644 index 8329d07066..0000000000 Binary files a/front/public/images/large/OpenComputers/item/85.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/86.png b/front/public/images/large/OpenComputers/item/86.png deleted file mode 100644 index a9c689c4db..0000000000 Binary files a/front/public/images/large/OpenComputers/item/86.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/87.png b/front/public/images/large/OpenComputers/item/87.png deleted file mode 100644 index f3d369fbb3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/87.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/89.png b/front/public/images/large/OpenComputers/item/89.png deleted file mode 100644 index 4daa2a547c..0000000000 Binary files a/front/public/images/large/OpenComputers/item/89.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/9.png b/front/public/images/large/OpenComputers/item/9.png deleted file mode 100644 index 0c446e4721..0000000000 Binary files a/front/public/images/large/OpenComputers/item/9.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/90.png b/front/public/images/large/OpenComputers/item/90.png deleted file mode 100644 index e342714465..0000000000 Binary files a/front/public/images/large/OpenComputers/item/90.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/91.png b/front/public/images/large/OpenComputers/item/91.png deleted file mode 100644 index b17b2c681d..0000000000 Binary files a/front/public/images/large/OpenComputers/item/91.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/92.png b/front/public/images/large/OpenComputers/item/92.png deleted file mode 100644 index 286b7480c0..0000000000 Binary files a/front/public/images/large/OpenComputers/item/92.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/93.png b/front/public/images/large/OpenComputers/item/93.png deleted file mode 100644 index 9177196171..0000000000 Binary files a/front/public/images/large/OpenComputers/item/93.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/94.png b/front/public/images/large/OpenComputers/item/94.png deleted file mode 100644 index 1c1e23337d..0000000000 Binary files a/front/public/images/large/OpenComputers/item/94.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/95.png b/front/public/images/large/OpenComputers/item/95.png deleted file mode 100644 index 01444ad7ab..0000000000 Binary files a/front/public/images/large/OpenComputers/item/95.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/96.png b/front/public/images/large/OpenComputers/item/96.png deleted file mode 100644 index 86b9270f46..0000000000 Binary files a/front/public/images/large/OpenComputers/item/96.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/97.png b/front/public/images/large/OpenComputers/item/97.png deleted file mode 100644 index 9e5faf7102..0000000000 Binary files a/front/public/images/large/OpenComputers/item/97.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/98.png b/front/public/images/large/OpenComputers/item/98.png deleted file mode 100644 index 03ecc868a3..0000000000 Binary files a/front/public/images/large/OpenComputers/item/98.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/item/99.png b/front/public/images/large/OpenComputers/item/99.png deleted file mode 100644 index 04c93ca7ed..0000000000 Binary files a/front/public/images/large/OpenComputers/item/99.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/keyboard/0.png b/front/public/images/large/OpenComputers/keyboard/0.png deleted file mode 100644 index afb983e755..0000000000 Binary files a/front/public/images/large/OpenComputers/keyboard/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/microcontroller/0.png b/front/public/images/large/OpenComputers/microcontroller/0.png deleted file mode 100644 index 7136b4dbe8..0000000000 Binary files a/front/public/images/large/OpenComputers/microcontroller/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/motionSensor/0.png b/front/public/images/large/OpenComputers/motionSensor/0.png deleted file mode 100644 index 65578db87c..0000000000 Binary files a/front/public/images/large/OpenComputers/motionSensor/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/netSplitter/0.png b/front/public/images/large/OpenComputers/netSplitter/0.png deleted file mode 100644 index 73c79501ef..0000000000 Binary files a/front/public/images/large/OpenComputers/netSplitter/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/powerConverter/0.png b/front/public/images/large/OpenComputers/powerConverter/0.png deleted file mode 100644 index 30ca9d747d..0000000000 Binary files a/front/public/images/large/OpenComputers/powerConverter/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/powerDistributor/0.png b/front/public/images/large/OpenComputers/powerDistributor/0.png deleted file mode 100644 index ab708ba103..0000000000 Binary files a/front/public/images/large/OpenComputers/powerDistributor/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/print/0.png b/front/public/images/large/OpenComputers/print/0.png deleted file mode 100644 index 00beaebda0..0000000000 Binary files a/front/public/images/large/OpenComputers/print/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/printer/0.png b/front/public/images/large/OpenComputers/printer/0.png deleted file mode 100644 index 29921e7810..0000000000 Binary files a/front/public/images/large/OpenComputers/printer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/rack/0.png b/front/public/images/large/OpenComputers/rack/0.png deleted file mode 100644 index 0366cadbfb..0000000000 Binary files a/front/public/images/large/OpenComputers/rack/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/raid/0.png b/front/public/images/large/OpenComputers/raid/0.png deleted file mode 100644 index 9a19f89878..0000000000 Binary files a/front/public/images/large/OpenComputers/raid/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/redstone/0.png b/front/public/images/large/OpenComputers/redstone/0.png deleted file mode 100644 index 996f4fcafc..0000000000 Binary files a/front/public/images/large/OpenComputers/redstone/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/relay/0.png b/front/public/images/large/OpenComputers/relay/0.png deleted file mode 100644 index a37d0dcd46..0000000000 Binary files a/front/public/images/large/OpenComputers/relay/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/robot/0.png b/front/public/images/large/OpenComputers/robot/0.png deleted file mode 100644 index fad5530394..0000000000 Binary files a/front/public/images/large/OpenComputers/robot/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/robotAfterimage/0.png b/front/public/images/large/OpenComputers/robotAfterimage/0.png deleted file mode 100644 index 64d1cd5952..0000000000 Binary files a/front/public/images/large/OpenComputers/robotAfterimage/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/screen1/0.png b/front/public/images/large/OpenComputers/screen1/0.png deleted file mode 100644 index 1a95a3fd54..0000000000 Binary files a/front/public/images/large/OpenComputers/screen1/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/screen2/0.png b/front/public/images/large/OpenComputers/screen2/0.png deleted file mode 100644 index 0b4d6889f3..0000000000 Binary files a/front/public/images/large/OpenComputers/screen2/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/screen3/0.png b/front/public/images/large/OpenComputers/screen3/0.png deleted file mode 100644 index c8d8952af7..0000000000 Binary files a/front/public/images/large/OpenComputers/screen3/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/switch/0.png b/front/public/images/large/OpenComputers/switch/0.png deleted file mode 100644 index a37d0dcd46..0000000000 Binary files a/front/public/images/large/OpenComputers/switch/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/transposer/0.png b/front/public/images/large/OpenComputers/transposer/0.png deleted file mode 100644 index d54e605c28..0000000000 Binary files a/front/public/images/large/OpenComputers/transposer/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/waypoint/0.png b/front/public/images/large/OpenComputers/waypoint/0.png deleted file mode 100644 index 16d1c40d92..0000000000 Binary files a/front/public/images/large/OpenComputers/waypoint/0.png and /dev/null differ diff --git a/front/public/images/large/OpenComputers/wrench/0.png b/front/public/images/large/OpenComputers/wrench/0.png deleted file mode 100644 index e09af23fc7..0000000000 Binary files a/front/public/images/large/OpenComputers/wrench/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.datacard/0.png b/front/public/images/large/ProjRed_Core/projectred.core.datacard/0.png deleted file mode 100644 index 5014e3facd..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.datacard/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.drawplate/0.png b/front/public/images/large/ProjRed_Core/projectred.core.drawplate/0.png deleted file mode 100644 index 875bd32c51..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.drawplate/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/0.png b/front/public/images/large/ProjRed_Core/projectred.core.part/0.png deleted file mode 100644 index 00f8798519..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/1.png b/front/public/images/large/ProjRed_Core/projectred.core.part/1.png deleted file mode 100644 index 29a9422f91..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/10.png b/front/public/images/large/ProjRed_Core/projectred.core.part/10.png deleted file mode 100644 index 9a2e8a3c9a..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/11.png b/front/public/images/large/ProjRed_Core/projectred.core.part/11.png deleted file mode 100644 index 194087d72e..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/12.png b/front/public/images/large/ProjRed_Core/projectred.core.part/12.png deleted file mode 100644 index 7fcbacfcdc..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/13.png b/front/public/images/large/ProjRed_Core/projectred.core.part/13.png deleted file mode 100644 index 85ff800fc2..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/14.png b/front/public/images/large/ProjRed_Core/projectred.core.part/14.png deleted file mode 100644 index 059fa25922..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/15.png b/front/public/images/large/ProjRed_Core/projectred.core.part/15.png deleted file mode 100644 index d3cc46024c..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/16.png b/front/public/images/large/ProjRed_Core/projectred.core.part/16.png deleted file mode 100644 index 8bab28aa82..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/16.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/17.png b/front/public/images/large/ProjRed_Core/projectred.core.part/17.png deleted file mode 100644 index 040e45488a..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/17.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/18.png b/front/public/images/large/ProjRed_Core/projectred.core.part/18.png deleted file mode 100644 index d0e192af46..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/18.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/19.png b/front/public/images/large/ProjRed_Core/projectred.core.part/19.png deleted file mode 100644 index c64f2aae3a..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/19.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/2.png b/front/public/images/large/ProjRed_Core/projectred.core.part/2.png deleted file mode 100644 index 44bcdb1fe1..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/20.png b/front/public/images/large/ProjRed_Core/projectred.core.part/20.png deleted file mode 100644 index b76585b4cd..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/20.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/21.png b/front/public/images/large/ProjRed_Core/projectred.core.part/21.png deleted file mode 100644 index 7af2e406f7..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/21.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/22.png b/front/public/images/large/ProjRed_Core/projectred.core.part/22.png deleted file mode 100644 index 65d12126ae..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/22.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/23.png b/front/public/images/large/ProjRed_Core/projectred.core.part/23.png deleted file mode 100644 index 08b5d3a571..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/23.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/24.png b/front/public/images/large/ProjRed_Core/projectred.core.part/24.png deleted file mode 100644 index 125952a534..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/24.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/25.png b/front/public/images/large/ProjRed_Core/projectred.core.part/25.png deleted file mode 100644 index 7dab675287..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/25.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/26.png b/front/public/images/large/ProjRed_Core/projectred.core.part/26.png deleted file mode 100644 index 9f9b61a31b..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/26.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/27.png b/front/public/images/large/ProjRed_Core/projectred.core.part/27.png deleted file mode 100644 index 1ee4f9abeb..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/27.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/28.png b/front/public/images/large/ProjRed_Core/projectred.core.part/28.png deleted file mode 100644 index 7ec270408d..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/28.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/29.png b/front/public/images/large/ProjRed_Core/projectred.core.part/29.png deleted file mode 100644 index 5f9cd794b1..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/29.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/3.png b/front/public/images/large/ProjRed_Core/projectred.core.part/3.png deleted file mode 100644 index c6871edf2f..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/30.png b/front/public/images/large/ProjRed_Core/projectred.core.part/30.png deleted file mode 100644 index 3534f19c7c..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/30.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/31.png b/front/public/images/large/ProjRed_Core/projectred.core.part/31.png deleted file mode 100644 index ad811e42f6..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/31.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/32.png b/front/public/images/large/ProjRed_Core/projectred.core.part/32.png deleted file mode 100644 index 35c810a28f..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/32.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/33.png b/front/public/images/large/ProjRed_Core/projectred.core.part/33.png deleted file mode 100644 index 530fb0e60a..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/33.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/34.png b/front/public/images/large/ProjRed_Core/projectred.core.part/34.png deleted file mode 100644 index 2c43aae826..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/34.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/35.png b/front/public/images/large/ProjRed_Core/projectred.core.part/35.png deleted file mode 100644 index 5040f9c65a..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/35.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/36.png b/front/public/images/large/ProjRed_Core/projectred.core.part/36.png deleted file mode 100644 index ca74287803..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/36.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/37.png b/front/public/images/large/ProjRed_Core/projectred.core.part/37.png deleted file mode 100644 index 976e0ad5ae..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/37.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/38.png b/front/public/images/large/ProjRed_Core/projectred.core.part/38.png deleted file mode 100644 index c423cbf002..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/38.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/39.png b/front/public/images/large/ProjRed_Core/projectred.core.part/39.png deleted file mode 100644 index 2f2ab29b15..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/39.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/4.png b/front/public/images/large/ProjRed_Core/projectred.core.part/4.png deleted file mode 100644 index b503ca179f..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/40.png b/front/public/images/large/ProjRed_Core/projectred.core.part/40.png deleted file mode 100644 index 64575603c2..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/40.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/41.png b/front/public/images/large/ProjRed_Core/projectred.core.part/41.png deleted file mode 100644 index 5dc7ee3b79..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/41.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/42.png b/front/public/images/large/ProjRed_Core/projectred.core.part/42.png deleted file mode 100644 index 720f1fb2e9..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/42.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/43.png b/front/public/images/large/ProjRed_Core/projectred.core.part/43.png deleted file mode 100644 index 93c488fd6f..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/43.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/44.png b/front/public/images/large/ProjRed_Core/projectred.core.part/44.png deleted file mode 100644 index 821ec6d64e..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/44.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/45.png b/front/public/images/large/ProjRed_Core/projectred.core.part/45.png deleted file mode 100644 index 548a6ba974..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/45.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/46.png b/front/public/images/large/ProjRed_Core/projectred.core.part/46.png deleted file mode 100644 index 413bfc070b..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/46.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/47.png b/front/public/images/large/ProjRed_Core/projectred.core.part/47.png deleted file mode 100644 index f6011b43cd..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/47.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/48.png b/front/public/images/large/ProjRed_Core/projectred.core.part/48.png deleted file mode 100644 index de3b7f13c4..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/48.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/49.png b/front/public/images/large/ProjRed_Core/projectred.core.part/49.png deleted file mode 100644 index e9e72cc37d..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/49.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/5.png b/front/public/images/large/ProjRed_Core/projectred.core.part/5.png deleted file mode 100644 index 724188920c..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/50.png b/front/public/images/large/ProjRed_Core/projectred.core.part/50.png deleted file mode 100644 index bbc7e523af..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/50.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/51.png b/front/public/images/large/ProjRed_Core/projectred.core.part/51.png deleted file mode 100644 index 26184ab5cd..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/51.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/52.png b/front/public/images/large/ProjRed_Core/projectred.core.part/52.png deleted file mode 100644 index f98311c9f3..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/52.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/53.png b/front/public/images/large/ProjRed_Core/projectred.core.part/53.png deleted file mode 100644 index 895a995457..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/53.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/54.png b/front/public/images/large/ProjRed_Core/projectred.core.part/54.png deleted file mode 100644 index 11385e29ae..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/54.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/55.png b/front/public/images/large/ProjRed_Core/projectred.core.part/55.png deleted file mode 100644 index 92cacc2ffb..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/55.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/56.png b/front/public/images/large/ProjRed_Core/projectred.core.part/56.png deleted file mode 100644 index 31f23f6fae..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/56.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/57.png b/front/public/images/large/ProjRed_Core/projectred.core.part/57.png deleted file mode 100644 index e6add25987..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/57.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/58.png b/front/public/images/large/ProjRed_Core/projectred.core.part/58.png deleted file mode 100644 index 804d7a30e7..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/58.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/59.png b/front/public/images/large/ProjRed_Core/projectred.core.part/59.png deleted file mode 100644 index ed8d8108ba..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/59.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/6.png b/front/public/images/large/ProjRed_Core/projectred.core.part/6.png deleted file mode 100644 index fbc09fcc20..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/7.png b/front/public/images/large/ProjRed_Core/projectred.core.part/7.png deleted file mode 100644 index 5a54a4f5ec..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/8.png b/front/public/images/large/ProjRed_Core/projectred.core.part/8.png deleted file mode 100644 index 5181d8ba0e..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.part/9.png b/front/public/images/large/ProjRed_Core/projectred.core.part/9.png deleted file mode 100644 index 78b24aa7f8..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.part/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.screwdriver/0.png b/front/public/images/large/ProjRed_Core/projectred.core.screwdriver/0.png deleted file mode 100644 index 215c2f6fbf..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.screwdriver/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Core/projectred.core.wiredebugger/0.png b/front/public/images/large/ProjRed_Core/projectred.core.wiredebugger/0.png deleted file mode 100644 index 75191f9c2d..0000000000 Binary files a/front/public/images/large/ProjRed_Core/projectred.core.wiredebugger/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.airousLight/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.airousLight/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.airousLight/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/0.png deleted file mode 100644 index c55a0d35a5..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/1.png deleted file mode 100644 index bc2977c023..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/10.png deleted file mode 100644 index 1175116ac5..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/11.png deleted file mode 100644 index 14cd443a93..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/12.png deleted file mode 100644 index ff6aaea98c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/13.png deleted file mode 100644 index f6b7a3eae7..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/14.png deleted file mode 100644 index ae3f5a2aca..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/15.png deleted file mode 100644 index 3db5d1e9b9..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/2.png deleted file mode 100644 index dfa53269ed..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/3.png deleted file mode 100644 index 5f8a9694d0..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/4.png deleted file mode 100644 index f8f8528c05..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/5.png deleted file mode 100644 index 14f3a2b83b..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/6.png deleted file mode 100644 index 30bfbf7a35..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/7.png deleted file mode 100644 index 73c23d373d..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/8.png deleted file mode 100644 index 82f843b70e..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/9.png deleted file mode 100644 index d7fe3ae53b..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp.inv/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/0.png deleted file mode 100644 index b3f10dea5d..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/1.png deleted file mode 100644 index 7990c09742..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/10.png deleted file mode 100644 index 6e7c1d3002..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/11.png deleted file mode 100644 index e2a693060c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/12.png deleted file mode 100644 index 0e685357e1..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/13.png deleted file mode 100644 index 7f36cf7924..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/14.png deleted file mode 100644 index 5f6783c143..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/15.png deleted file mode 100644 index 629c7302d4..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/2.png deleted file mode 100644 index d2e1aa92bb..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/3.png deleted file mode 100644 index 6563917705..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/4.png deleted file mode 100644 index fd96d58937..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/5.png deleted file mode 100644 index c2d6b44252..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/6.png deleted file mode 100644 index cafcebfa30..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/7.png deleted file mode 100644 index 232123d7bc..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/8.png deleted file mode 100644 index 616024b844..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/9.png deleted file mode 100644 index 7c3b360f85..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/0.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/1.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/10.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/11.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/12.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/13.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/14.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/15.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/2.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/3.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/4.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/5.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/6.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/7.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/8.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/9.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/0.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/1.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/10.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/11.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/12.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/13.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/14.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/15.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/2.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/3.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/4.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/5.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/6.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/7.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/8.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/9.png deleted file mode 100644 index 50c565c4fd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.cagelamp2/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/0.png deleted file mode 100644 index 09018b7738..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/1.png deleted file mode 100644 index 061d6681b9..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/10.png deleted file mode 100644 index cb4fe97c63..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/11.png deleted file mode 100644 index a7b38393f0..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/12.png deleted file mode 100644 index 1c2e6f3208..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/13.png deleted file mode 100644 index 8bb6ad7500..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/14.png deleted file mode 100644 index c47ca25486..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/15.png deleted file mode 100644 index dd3598ce85..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/2.png deleted file mode 100644 index 5fcc4c4408..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/3.png deleted file mode 100644 index cf865b41d7..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/4.png deleted file mode 100644 index eb117f5ced..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/5.png deleted file mode 100644 index 42ef758f4b..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/6.png deleted file mode 100644 index 3d8bad1246..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/7.png deleted file mode 100644 index 55fd95ef3e..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/8.png deleted file mode 100644 index 3b09927288..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/9.png deleted file mode 100644 index b0d46ba577..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture.inv/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/0.png deleted file mode 100644 index 94a17e5bf9..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/1.png deleted file mode 100644 index faaaad2be3..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/10.png deleted file mode 100644 index e87efaffa6..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/11.png deleted file mode 100644 index 44139a45fa..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/12.png deleted file mode 100644 index 52bb08b53a..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/13.png deleted file mode 100644 index be5ea88b14..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/14.png deleted file mode 100644 index a25b6088a2..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/15.png deleted file mode 100644 index 8e67e45fd9..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/2.png deleted file mode 100644 index a55ddd9fb7..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/3.png deleted file mode 100644 index 577d5631ea..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/4.png deleted file mode 100644 index 1f255a3113..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/5.png deleted file mode 100644 index ef03f81ca3..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/6.png deleted file mode 100644 index 41f5b6f5a7..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/7.png deleted file mode 100644 index 45ba0d1af4..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/8.png deleted file mode 100644 index 60867ba566..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/9.png deleted file mode 100644 index 770de47e30..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.fixture/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/0.png deleted file mode 100644 index c85f7c5093..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/1.png deleted file mode 100644 index 307e2bb6f9..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/10.png deleted file mode 100644 index 6a9dc1e09c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/11.png deleted file mode 100644 index 2d6115624c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/12.png deleted file mode 100644 index 82f9786e5f..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/13.png deleted file mode 100644 index 79593118d2..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/14.png deleted file mode 100644 index fbc222edeb..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/15.png deleted file mode 100644 index 3f6658e3be..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/2.png deleted file mode 100644 index c21a70e818..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/3.png deleted file mode 100644 index 4acd6ba0c6..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/4.png deleted file mode 100644 index 6aa7cb36b3..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/5.png deleted file mode 100644 index eca7bf76a2..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/6.png deleted file mode 100644 index afe19519be..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/7.png deleted file mode 100644 index 6d3703e4a1..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/8.png deleted file mode 100644 index 80da0f9e02..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/9.png deleted file mode 100644 index efe4ff6649..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.flightbutton/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/0.png deleted file mode 100644 index f01b0ef446..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/1.png deleted file mode 100644 index 8f79e9ddad..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/10.png deleted file mode 100644 index eaea219630..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/11.png deleted file mode 100644 index bd8f5e2516..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/12.png deleted file mode 100644 index b7a5f31861..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/13.png deleted file mode 100644 index 3522705ba6..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/14.png deleted file mode 100644 index 6a7c8d5142..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/15.png deleted file mode 100644 index a4d7657e82..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/16.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/16.png deleted file mode 100644 index e2b68bdda2..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/16.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/17.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/17.png deleted file mode 100644 index e5133d7bf5..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/17.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/18.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/18.png deleted file mode 100644 index 9b9c951265..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/18.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/19.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/19.png deleted file mode 100644 index d7bc11e52e..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/19.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/2.png deleted file mode 100644 index 220c73e193..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/20.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/20.png deleted file mode 100644 index 32ebe6eea1..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/20.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/21.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/21.png deleted file mode 100644 index e295728ded..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/21.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/22.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/22.png deleted file mode 100644 index c2a33c5503..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/22.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/23.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/23.png deleted file mode 100644 index 5edeac456c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/23.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/24.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/24.png deleted file mode 100644 index 0aa8636963..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/24.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/25.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/25.png deleted file mode 100644 index bf936598cd..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/25.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/26.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/26.png deleted file mode 100644 index 7ba1df3ee8..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/26.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/27.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/27.png deleted file mode 100644 index e610381d4c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/27.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/28.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/28.png deleted file mode 100644 index 367ab5b98b..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/28.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/29.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/29.png deleted file mode 100644 index aab98c7e9c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/29.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/3.png deleted file mode 100644 index 535aa576b1..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/30.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/30.png deleted file mode 100644 index 83814e8df3..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/30.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/31.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/31.png deleted file mode 100644 index 2ee26bd5f6..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/31.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/4.png deleted file mode 100644 index 61a8f8ff70..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/5.png deleted file mode 100644 index c9d52554ed..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/6.png deleted file mode 100644 index 6dace7e454..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/7.png deleted file mode 100644 index 61c77d8104..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/8.png deleted file mode 100644 index 15356ed78b..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/9.png deleted file mode 100644 index 3e081fd573..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lamp/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/0.png deleted file mode 100644 index a33d4b12ba..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/1.png deleted file mode 100644 index a4c407124c..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/10.png deleted file mode 100644 index 4ac26f83ac..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/11.png deleted file mode 100644 index 10f346bb79..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/12.png deleted file mode 100644 index 91c3a13351..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/13.png deleted file mode 100644 index a7d13dadc2..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/14.png deleted file mode 100644 index 326d5de6a5..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/15.png deleted file mode 100644 index 665b40e3c9..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/2.png deleted file mode 100644 index 18e32b68e3..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/3.png deleted file mode 100644 index cc0e95bad6..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/4.png deleted file mode 100644 index b2f00e2899..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/5.png deleted file mode 100644 index 13051e79a0..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/6.png deleted file mode 100644 index af2a72eb68..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/7.png deleted file mode 100644 index e3b9c1bb80..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/8.png deleted file mode 100644 index ff6213f868..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/9.png deleted file mode 100644 index f352d81bff..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern.inv/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/0.png deleted file mode 100644 index af767eda54..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/1.png deleted file mode 100644 index 8462f8cb9e..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/10.png deleted file mode 100644 index e08c06dbb8..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/11.png deleted file mode 100644 index 04ed6f1571..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/12.png deleted file mode 100644 index 45ab01e5a5..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/13.png deleted file mode 100644 index 9ab0d4e4c7..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/14.png deleted file mode 100644 index d2471728d0..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/15.png deleted file mode 100644 index 10d302d3ab..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/2.png deleted file mode 100644 index ea308a7127..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/3.png deleted file mode 100644 index f60a6d703d..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/4.png deleted file mode 100644 index aebd2e7509..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/5.png deleted file mode 100644 index f3739c8fa0..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/6.png deleted file mode 100644 index f9c7544119..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/7.png deleted file mode 100644 index 60378b6a58..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/8.png deleted file mode 100644 index aa4e6f88ff..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/9.png deleted file mode 100644 index 11f19620db..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lantern/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/0.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/0.png deleted file mode 100644 index 99fa80aede..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/1.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/1.png deleted file mode 100644 index 296bcd9704..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/10.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/10.png deleted file mode 100644 index 08c8de94c5..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/11.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/11.png deleted file mode 100644 index 88e01eb449..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/12.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/12.png deleted file mode 100644 index 6f531cff99..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/13.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/13.png deleted file mode 100644 index f79a7c3fd7..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/14.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/14.png deleted file mode 100644 index d2dd45f5a6..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/15.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/15.png deleted file mode 100644 index 2d171372ce..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/2.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/2.png deleted file mode 100644 index 9b6acd6171..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/3.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/3.png deleted file mode 100644 index a7a062f892..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/4.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/4.png deleted file mode 100644 index 44afe31e7e..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/5.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/5.png deleted file mode 100644 index b75087e831..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/6.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/6.png deleted file mode 100644 index 7b057ba746..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/7.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/7.png deleted file mode 100644 index 48c5334c9d..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/8.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/8.png deleted file mode 100644 index 8855c22278..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/9.png b/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/9.png deleted file mode 100644 index 3f4a609594..0000000000 Binary files a/front/public/images/large/ProjRed_Illumination/projectred.illumination.lightbutton/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/0.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/0.png deleted file mode 100644 index 055af793c1..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/1.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/1.png deleted file mode 100644 index 9d71889906..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/10.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/10.png deleted file mode 100644 index ef6a5b2eef..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/11.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/11.png deleted file mode 100644 index 0d9faabcb0..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/12.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/12.png deleted file mode 100644 index 25c2f646eb..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/13.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/13.png deleted file mode 100644 index 1f448cef0b..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/14.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/14.png deleted file mode 100644 index f07e5c53f5..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/15.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/15.png deleted file mode 100644 index 2cdaa0bbd1..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/16.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/16.png deleted file mode 100644 index b835e4c267..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/16.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/17.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/17.png deleted file mode 100644 index cabb2716b4..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/17.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/2.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/2.png deleted file mode 100644 index c75b2ff6f4..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/3.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/3.png deleted file mode 100644 index c49089eecd..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/34.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/34.png deleted file mode 100644 index 6f35f11f70..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/34.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/4.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/4.png deleted file mode 100644 index 90366556b1..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/5.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/5.png deleted file mode 100644 index f2c6c8501a..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/6.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/6.png deleted file mode 100644 index 778070d3b2..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/7.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/7.png deleted file mode 100644 index fe0161de87..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/8.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/8.png deleted file mode 100644 index b3f30a7513..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/9.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/9.png deleted file mode 100644 index 76c989463d..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.framewire/9.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/0.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/0.png deleted file mode 100644 index 9b1e108fff..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/0.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/1.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/1.png deleted file mode 100644 index a22e3fed4c..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/1.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/10.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/10.png deleted file mode 100644 index 4a6db0db5f..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/10.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/11.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/11.png deleted file mode 100644 index c7c2b31fdc..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/11.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/12.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/12.png deleted file mode 100644 index ffeb4b413c..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/12.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/13.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/13.png deleted file mode 100644 index 005f28584e..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/13.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/14.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/14.png deleted file mode 100644 index fc7743d414..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/14.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/15.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/15.png deleted file mode 100644 index 1aa0fb7087..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/15.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/16.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/16.png deleted file mode 100644 index c887e60e31..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/16.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/17.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/17.png deleted file mode 100644 index ada386b005..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/17.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/18.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/18.png deleted file mode 100644 index 7394e6165f..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/18.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/19.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/19.png deleted file mode 100644 index d739e89f13..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/19.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/2.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/2.png deleted file mode 100644 index 1033fa9822..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/2.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/20.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/20.png deleted file mode 100644 index db14983db6..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/20.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/21.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/21.png deleted file mode 100644 index 0675092947..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/21.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/22.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/22.png deleted file mode 100644 index dd03feeccf..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/22.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/23.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/23.png deleted file mode 100644 index b1fadd67a9..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/23.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/24.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/24.png deleted file mode 100644 index 651b47121a..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/24.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/25.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/25.png deleted file mode 100644 index 3beec452da..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/25.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/26.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/26.png deleted file mode 100644 index 24fd2a1fe8..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/26.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/27.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/27.png deleted file mode 100644 index a65d745a1f..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/27.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/28.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/28.png deleted file mode 100644 index 697084bdd2..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/28.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/29.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/29.png deleted file mode 100644 index 697e65b098..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/29.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/3.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/3.png deleted file mode 100644 index 7d5620e3df..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/3.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/30.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/30.png deleted file mode 100644 index 324c320237..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/30.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/31.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/31.png deleted file mode 100644 index ea5dc2b9e4..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/31.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/32.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/32.png deleted file mode 100644 index bed1251192..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/32.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/33.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/33.png deleted file mode 100644 index d024dfc3c7..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/33.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/34.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/34.png deleted file mode 100644 index 69995f1cd3..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/34.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/4.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/4.png deleted file mode 100644 index 19c21e3ef3..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/4.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/5.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/5.png deleted file mode 100644 index 37e7609d32..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/5.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/6.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/6.png deleted file mode 100644 index e5d38f1e66..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/6.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/7.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/7.png deleted file mode 100644 index c9500090d2..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/7.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/8.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/8.png deleted file mode 100644 index 995644ff92..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/8.png and /dev/null differ diff --git a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/9.png b/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/9.png deleted file mode 100644 index c17586e827..0000000000 Binary files a/front/public/images/large/ProjRed_Transmission/projectred.transmission.wire/9.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/controlPanel/0.png b/front/public/images/large/ProjectBlue/controlPanel/0.png deleted file mode 100644 index 3768ab230f..0000000000 Binary files a/front/public/images/large/ProjectBlue/controlPanel/0.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/emptySprayCan/0.png b/front/public/images/large/ProjectBlue/emptySprayCan/0.png deleted file mode 100644 index 9664130c36..0000000000 Binary files a/front/public/images/large/ProjectBlue/emptySprayCan/0.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/0.png b/front/public/images/large/ProjectBlue/miniatureButton/0.png deleted file mode 100644 index e09376de35..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/0.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/1.png b/front/public/images/large/ProjectBlue/miniatureButton/1.png deleted file mode 100644 index 075f827ff9..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/1.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/10.png b/front/public/images/large/ProjectBlue/miniatureButton/10.png deleted file mode 100644 index 427bd8ae01..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/10.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/11.png b/front/public/images/large/ProjectBlue/miniatureButton/11.png deleted file mode 100644 index a34d055141..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/11.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/12.png b/front/public/images/large/ProjectBlue/miniatureButton/12.png deleted file mode 100644 index 66a3d77ebd..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/12.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/13.png b/front/public/images/large/ProjectBlue/miniatureButton/13.png deleted file mode 100644 index a013208dda..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/13.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/14.png b/front/public/images/large/ProjectBlue/miniatureButton/14.png deleted file mode 100644 index 6f31d4ddbf..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/14.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/15.png b/front/public/images/large/ProjectBlue/miniatureButton/15.png deleted file mode 100644 index cf891fa4dc..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/15.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/16.png b/front/public/images/large/ProjectBlue/miniatureButton/16.png deleted file mode 100644 index c891c0d4ca..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/16.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/17.png b/front/public/images/large/ProjectBlue/miniatureButton/17.png deleted file mode 100644 index 56fec82240..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/17.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/2.png b/front/public/images/large/ProjectBlue/miniatureButton/2.png deleted file mode 100644 index 942892d163..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/2.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/3.png b/front/public/images/large/ProjectBlue/miniatureButton/3.png deleted file mode 100644 index 12d42b9135..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/3.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/4.png b/front/public/images/large/ProjectBlue/miniatureButton/4.png deleted file mode 100644 index e11621410a..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/4.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/5.png b/front/public/images/large/ProjectBlue/miniatureButton/5.png deleted file mode 100644 index 5303264958..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/5.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/6.png b/front/public/images/large/ProjectBlue/miniatureButton/6.png deleted file mode 100644 index a725601fcb..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/6.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/7.png b/front/public/images/large/ProjectBlue/miniatureButton/7.png deleted file mode 100644 index 0a2c6257a8..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/7.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/8.png b/front/public/images/large/ProjectBlue/miniatureButton/8.png deleted file mode 100644 index 5a0602055e..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/8.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureButton/9.png b/front/public/images/large/ProjectBlue/miniatureButton/9.png deleted file mode 100644 index f08c251ba2..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureButton/9.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureCover/0.png b/front/public/images/large/ProjectBlue/miniatureCover/0.png deleted file mode 100644 index a1ee52a54b..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureCover/0.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/0.png b/front/public/images/large/ProjectBlue/miniatureLamp/0.png deleted file mode 100644 index db7e7b6b8d..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/0.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/1.png b/front/public/images/large/ProjectBlue/miniatureLamp/1.png deleted file mode 100644 index b6e1e9c44d..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/1.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/10.png b/front/public/images/large/ProjectBlue/miniatureLamp/10.png deleted file mode 100644 index e3cfafe5b7..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/10.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/11.png b/front/public/images/large/ProjectBlue/miniatureLamp/11.png deleted file mode 100644 index 1c2825279a..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/11.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/12.png b/front/public/images/large/ProjectBlue/miniatureLamp/12.png deleted file mode 100644 index dd2fe4af71..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/12.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/13.png b/front/public/images/large/ProjectBlue/miniatureLamp/13.png deleted file mode 100644 index 71d928a634..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/13.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/14.png b/front/public/images/large/ProjectBlue/miniatureLamp/14.png deleted file mode 100644 index 8d5b49c24d..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/14.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/15.png b/front/public/images/large/ProjectBlue/miniatureLamp/15.png deleted file mode 100644 index 1c1a5229a2..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/15.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/2.png b/front/public/images/large/ProjectBlue/miniatureLamp/2.png deleted file mode 100644 index 0fd6280065..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/2.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/3.png b/front/public/images/large/ProjectBlue/miniatureLamp/3.png deleted file mode 100644 index f5c79adda3..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/3.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/4.png b/front/public/images/large/ProjectBlue/miniatureLamp/4.png deleted file mode 100644 index 23aa445f1f..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/4.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/5.png b/front/public/images/large/ProjectBlue/miniatureLamp/5.png deleted file mode 100644 index b266b4faf0..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/5.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/6.png b/front/public/images/large/ProjectBlue/miniatureLamp/6.png deleted file mode 100644 index e58e551b84..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/6.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/7.png b/front/public/images/large/ProjectBlue/miniatureLamp/7.png deleted file mode 100644 index 5f816697d6..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/7.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/8.png b/front/public/images/large/ProjectBlue/miniatureLamp/8.png deleted file mode 100644 index 2c91170c2e..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/8.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLamp/9.png b/front/public/images/large/ProjectBlue/miniatureLamp/9.png deleted file mode 100644 index 67689a4b80..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLamp/9.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/0.png b/front/public/images/large/ProjectBlue/miniatureLever/0.png deleted file mode 100644 index 92737f66bc..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/0.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/1.png b/front/public/images/large/ProjectBlue/miniatureLever/1.png deleted file mode 100644 index ad53a8e006..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/1.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/10.png b/front/public/images/large/ProjectBlue/miniatureLever/10.png deleted file mode 100644 index d5a0709c0c..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/10.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/11.png b/front/public/images/large/ProjectBlue/miniatureLever/11.png deleted file mode 100644 index a4e536801a..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/11.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/12.png b/front/public/images/large/ProjectBlue/miniatureLever/12.png deleted file mode 100644 index fb13180388..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/12.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/13.png b/front/public/images/large/ProjectBlue/miniatureLever/13.png deleted file mode 100644 index d2b38cc4ce..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/13.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/14.png b/front/public/images/large/ProjectBlue/miniatureLever/14.png deleted file mode 100644 index 4b296fcb02..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/14.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/15.png b/front/public/images/large/ProjectBlue/miniatureLever/15.png deleted file mode 100644 index 74a0e3b983..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/15.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/16.png b/front/public/images/large/ProjectBlue/miniatureLever/16.png deleted file mode 100644 index 5e3bce923f..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/16.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/2.png b/front/public/images/large/ProjectBlue/miniatureLever/2.png deleted file mode 100644 index c6a6fefd3b..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/2.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/3.png b/front/public/images/large/ProjectBlue/miniatureLever/3.png deleted file mode 100644 index 63ef92a872..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/3.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/4.png b/front/public/images/large/ProjectBlue/miniatureLever/4.png deleted file mode 100644 index 90cefa3a3e..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/4.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/5.png b/front/public/images/large/ProjectBlue/miniatureLever/5.png deleted file mode 100644 index f314ed5884..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/5.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/6.png b/front/public/images/large/ProjectBlue/miniatureLever/6.png deleted file mode 100644 index ea63ad6b7a..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/6.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/7.png b/front/public/images/large/ProjectBlue/miniatureLever/7.png deleted file mode 100644 index b4117418c8..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/7.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/8.png b/front/public/images/large/ProjectBlue/miniatureLever/8.png deleted file mode 100644 index e575c2cfb3..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/8.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/miniatureLever/9.png b/front/public/images/large/ProjectBlue/miniatureLever/9.png deleted file mode 100644 index a2d9dee772..0000000000 Binary files a/front/public/images/large/ProjectBlue/miniatureLever/9.png and /dev/null differ diff --git a/front/public/images/large/ProjectBlue/sprayCan/0.png b/front/public/images/large/ProjectBlue/sprayCan/0.png deleted file mode 100644 index ca252bada1..0000000000 Binary files a/front/public/images/large/ProjectBlue/sprayCan/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/intelligentWorkbench/0.png b/front/public/images/large/RIO/intelligentWorkbench/0.png deleted file mode 100644 index 3371241fdf..0000000000 Binary files a/front/public/images/large/RIO/intelligentWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.blank_plate/0.png b/front/public/images/large/RIO/item.blank_plate/0.png deleted file mode 100644 index 9956b44d79..0000000000 Binary files a/front/public/images/large/RIO/item.blank_plate/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.location/0.png b/front/public/images/large/RIO/item.chip.location/0.png deleted file mode 100644 index fc0d725a17..0000000000 Binary files a/front/public/images/large/RIO/item.chip.location/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.transfer/0.png b/front/public/images/large/RIO/item.chip.transfer/0.png deleted file mode 100644 index e789f2c50c..0000000000 Binary files a/front/public/images/large/RIO/item.chip.transfer/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.transfer/1.png b/front/public/images/large/RIO/item.chip.transfer/1.png deleted file mode 100644 index 84bcaa582b..0000000000 Binary files a/front/public/images/large/RIO/item.chip.transfer/1.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.transfer/10.png b/front/public/images/large/RIO/item.chip.transfer/10.png deleted file mode 100644 index 8064091158..0000000000 Binary files a/front/public/images/large/RIO/item.chip.transfer/10.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.transfer/12.png b/front/public/images/large/RIO/item.chip.transfer/12.png deleted file mode 100644 index d5ce66807c..0000000000 Binary files a/front/public/images/large/RIO/item.chip.transfer/12.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.transfer/2.png b/front/public/images/large/RIO/item.chip.transfer/2.png deleted file mode 100644 index 99f513bb61..0000000000 Binary files a/front/public/images/large/RIO/item.chip.transfer/2.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.transfer/20.png b/front/public/images/large/RIO/item.chip.transfer/20.png deleted file mode 100644 index 3f1337c3c4..0000000000 Binary files a/front/public/images/large/RIO/item.chip.transfer/20.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.transfer/21.png b/front/public/images/large/RIO/item.chip.transfer/21.png deleted file mode 100644 index 14e31b4c84..0000000000 Binary files a/front/public/images/large/RIO/item.chip.transfer/21.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.upgrade/0.png b/front/public/images/large/RIO/item.chip.upgrade/0.png deleted file mode 100644 index 62bc2a4402..0000000000 Binary files a/front/public/images/large/RIO/item.chip.upgrade/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.upgrade/1.png b/front/public/images/large/RIO/item.chip.upgrade/1.png deleted file mode 100644 index 420dbe3ed7..0000000000 Binary files a/front/public/images/large/RIO/item.chip.upgrade/1.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.chip.upgrade/2.png b/front/public/images/large/RIO/item.chip.upgrade/2.png deleted file mode 100644 index 0e860937e5..0000000000 Binary files a/front/public/images/large/RIO/item.chip.upgrade/2.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.io_tool/0.png b/front/public/images/large/RIO/item.io_tool/0.png deleted file mode 100644 index ddf477f74d..0000000000 Binary files a/front/public/images/large/RIO/item.io_tool/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.linker/0.png b/front/public/images/large/RIO/item.linker/0.png deleted file mode 100644 index 8e2d55a2e9..0000000000 Binary files a/front/public/images/large/RIO/item.linker/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.pda/0.png b/front/public/images/large/RIO/item.pda/0.png deleted file mode 100644 index a7b0dc6300..0000000000 Binary files a/front/public/images/large/RIO/item.pda/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.remoteAccessor/0.png b/front/public/images/large/RIO/item.remoteAccessor/0.png deleted file mode 100644 index fb072de89d..0000000000 Binary files a/front/public/images/large/RIO/item.remoteAccessor/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/item.wireless_transmitter/0.png b/front/public/images/large/RIO/item.wireless_transmitter/0.png deleted file mode 100644 index 0c0b3f9ef9..0000000000 Binary files a/front/public/images/large/RIO/item.wireless_transmitter/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/skylight/0.png b/front/public/images/large/RIO/skylight/0.png deleted file mode 100644 index dfc5162d58..0000000000 Binary files a/front/public/images/large/RIO/skylight/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/tile.machine/0.png b/front/public/images/large/RIO/tile.machine/0.png deleted file mode 100644 index 1c5a97dcb4..0000000000 Binary files a/front/public/images/large/RIO/tile.machine/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/tile.machine/1.png b/front/public/images/large/RIO/tile.machine/1.png deleted file mode 100644 index 237539e17e..0000000000 Binary files a/front/public/images/large/RIO/tile.machine/1.png and /dev/null differ diff --git a/front/public/images/large/RIO/tile.remote_interface/0.png b/front/public/images/large/RIO/tile.remote_interface/0.png deleted file mode 100644 index a14782260b..0000000000 Binary files a/front/public/images/large/RIO/tile.remote_interface/0.png and /dev/null differ diff --git a/front/public/images/large/RIO/tile.remote_inventory/0.png b/front/public/images/large/RIO/tile.remote_inventory/0.png deleted file mode 100644 index ad977bf648..0000000000 Binary files a/front/public/images/large/RIO/tile.remote_inventory/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/anvil/0.png b/front/public/images/large/Railcraft/anvil/0.png deleted file mode 100644 index 39afc0d706..0000000000 Binary files a/front/public/images/large/Railcraft/anvil/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/anvil/1.png b/front/public/images/large/Railcraft/anvil/1.png deleted file mode 100644 index f85a532968..0000000000 Binary files a/front/public/images/large/Railcraft/anvil/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/anvil/2.png b/front/public/images/large/Railcraft/anvil/2.png deleted file mode 100644 index 60fc586ae7..0000000000 Binary files a/front/public/images/large/Railcraft/anvil/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/armor.goggles/0.png b/front/public/images/large/Railcraft/armor.goggles/0.png deleted file mode 100644 index 4254e3d913..0000000000 Binary files a/front/public/images/large/Railcraft/armor.goggles/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/armor.overalls/0.png b/front/public/images/large/Railcraft/armor.overalls/0.png deleted file mode 100644 index 851835e92c..0000000000 Binary files a/front/public/images/large/Railcraft/armor.overalls/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/armor.steel.boots/0.png b/front/public/images/large/Railcraft/armor.steel.boots/0.png deleted file mode 100644 index 7ecce7ed45..0000000000 Binary files a/front/public/images/large/Railcraft/armor.steel.boots/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/armor.steel.helmet/0.png b/front/public/images/large/Railcraft/armor.steel.helmet/0.png deleted file mode 100644 index 4717636db4..0000000000 Binary files a/front/public/images/large/Railcraft/armor.steel.helmet/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/armor.steel.legs/0.png b/front/public/images/large/Railcraft/armor.steel.legs/0.png deleted file mode 100644 index 9ada75fc66..0000000000 Binary files a/front/public/images/large/Railcraft/armor.steel.legs/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/armor.steel.plate/0.png b/front/public/images/large/Railcraft/armor.steel.plate/0.png deleted file mode 100644 index 3aa7b605cf..0000000000 Binary files a/front/public/images/large/Railcraft/armor.steel.plate/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/backpack.apothecary.t1/0.png b/front/public/images/large/Railcraft/backpack.apothecary.t1/0.png deleted file mode 100644 index 6394b03d4e..0000000000 Binary files a/front/public/images/large/Railcraft/backpack.apothecary.t1/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/backpack.apothecary.t2/0.png b/front/public/images/large/Railcraft/backpack.apothecary.t2/0.png deleted file mode 100644 index e85bd04971..0000000000 Binary files a/front/public/images/large/Railcraft/backpack.apothecary.t2/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/backpack.iceman.t1/0.png b/front/public/images/large/Railcraft/backpack.iceman.t1/0.png deleted file mode 100644 index d8cca712e7..0000000000 Binary files a/front/public/images/large/Railcraft/backpack.iceman.t1/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/backpack.iceman.t2/0.png b/front/public/images/large/Railcraft/backpack.iceman.t2/0.png deleted file mode 100644 index 8d8520a493..0000000000 Binary files a/front/public/images/large/Railcraft/backpack.iceman.t2/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/backpack.trackman.t1/0.png b/front/public/images/large/Railcraft/backpack.trackman.t1/0.png deleted file mode 100644 index 77e895e16c..0000000000 Binary files a/front/public/images/large/Railcraft/backpack.trackman.t1/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/backpack.trackman.t2/0.png b/front/public/images/large/Railcraft/backpack.trackman.t2/0.png deleted file mode 100644 index 352b3f067e..0000000000 Binary files a/front/public/images/large/Railcraft/backpack.trackman.t2/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/borehead.diamond/0.png b/front/public/images/large/Railcraft/borehead.diamond/0.png deleted file mode 100644 index 58d29d193c..0000000000 Binary files a/front/public/images/large/Railcraft/borehead.diamond/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/borehead.iron/0.png b/front/public/images/large/Railcraft/borehead.iron/0.png deleted file mode 100644 index 0bcf65aee5..0000000000 Binary files a/front/public/images/large/Railcraft/borehead.iron/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/borehead.steel/0.png b/front/public/images/large/Railcraft/borehead.steel/0.png deleted file mode 100644 index 34b166c2ca..0000000000 Binary files a/front/public/images/large/Railcraft/borehead.steel/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.abyssal/0.png b/front/public/images/large/Railcraft/brick.abyssal/0.png deleted file mode 100644 index 64f6355efc..0000000000 Binary files a/front/public/images/large/Railcraft/brick.abyssal/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.abyssal/1.png b/front/public/images/large/Railcraft/brick.abyssal/1.png deleted file mode 100644 index a301ec645e..0000000000 Binary files a/front/public/images/large/Railcraft/brick.abyssal/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.abyssal/2.png b/front/public/images/large/Railcraft/brick.abyssal/2.png deleted file mode 100644 index dadcd8e883..0000000000 Binary files a/front/public/images/large/Railcraft/brick.abyssal/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.abyssal/3.png b/front/public/images/large/Railcraft/brick.abyssal/3.png deleted file mode 100644 index c8bedb6f7a..0000000000 Binary files a/front/public/images/large/Railcraft/brick.abyssal/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.abyssal/4.png b/front/public/images/large/Railcraft/brick.abyssal/4.png deleted file mode 100644 index 96716f717b..0000000000 Binary files a/front/public/images/large/Railcraft/brick.abyssal/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.abyssal/5.png b/front/public/images/large/Railcraft/brick.abyssal/5.png deleted file mode 100644 index a971764041..0000000000 Binary files a/front/public/images/large/Railcraft/brick.abyssal/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bleachedbone/0.png b/front/public/images/large/Railcraft/brick.bleachedbone/0.png deleted file mode 100644 index 6c43ff1934..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bleachedbone/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bleachedbone/1.png b/front/public/images/large/Railcraft/brick.bleachedbone/1.png deleted file mode 100644 index 1b6f67d253..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bleachedbone/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bleachedbone/2.png b/front/public/images/large/Railcraft/brick.bleachedbone/2.png deleted file mode 100644 index efe7d39ff8..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bleachedbone/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bleachedbone/3.png b/front/public/images/large/Railcraft/brick.bleachedbone/3.png deleted file mode 100644 index 28a8beee92..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bleachedbone/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bleachedbone/4.png b/front/public/images/large/Railcraft/brick.bleachedbone/4.png deleted file mode 100644 index c99df9ed2a..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bleachedbone/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bleachedbone/5.png b/front/public/images/large/Railcraft/brick.bleachedbone/5.png deleted file mode 100644 index afe7a3069a..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bleachedbone/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bloodstained/0.png b/front/public/images/large/Railcraft/brick.bloodstained/0.png deleted file mode 100644 index c7858d97df..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bloodstained/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bloodstained/1.png b/front/public/images/large/Railcraft/brick.bloodstained/1.png deleted file mode 100644 index 9a3d72ec49..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bloodstained/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bloodstained/2.png b/front/public/images/large/Railcraft/brick.bloodstained/2.png deleted file mode 100644 index 28ff8ccdc5..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bloodstained/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bloodstained/3.png b/front/public/images/large/Railcraft/brick.bloodstained/3.png deleted file mode 100644 index a6829f6e00..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bloodstained/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bloodstained/4.png b/front/public/images/large/Railcraft/brick.bloodstained/4.png deleted file mode 100644 index eb3f0c0177..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bloodstained/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.bloodstained/5.png b/front/public/images/large/Railcraft/brick.bloodstained/5.png deleted file mode 100644 index 68a20f81ff..0000000000 Binary files a/front/public/images/large/Railcraft/brick.bloodstained/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.frostbound/0.png b/front/public/images/large/Railcraft/brick.frostbound/0.png deleted file mode 100644 index 2153fdc8af..0000000000 Binary files a/front/public/images/large/Railcraft/brick.frostbound/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.frostbound/1.png b/front/public/images/large/Railcraft/brick.frostbound/1.png deleted file mode 100644 index aa4baf9c7d..0000000000 Binary files a/front/public/images/large/Railcraft/brick.frostbound/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.frostbound/2.png b/front/public/images/large/Railcraft/brick.frostbound/2.png deleted file mode 100644 index 080cf55a49..0000000000 Binary files a/front/public/images/large/Railcraft/brick.frostbound/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.frostbound/3.png b/front/public/images/large/Railcraft/brick.frostbound/3.png deleted file mode 100644 index fbe49f31ae..0000000000 Binary files a/front/public/images/large/Railcraft/brick.frostbound/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.frostbound/4.png b/front/public/images/large/Railcraft/brick.frostbound/4.png deleted file mode 100644 index eac2284e2a..0000000000 Binary files a/front/public/images/large/Railcraft/brick.frostbound/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.frostbound/5.png b/front/public/images/large/Railcraft/brick.frostbound/5.png deleted file mode 100644 index 9ace55461c..0000000000 Binary files a/front/public/images/large/Railcraft/brick.frostbound/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.infernal/0.png b/front/public/images/large/Railcraft/brick.infernal/0.png deleted file mode 100644 index 981b93a9bc..0000000000 Binary files a/front/public/images/large/Railcraft/brick.infernal/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.infernal/1.png b/front/public/images/large/Railcraft/brick.infernal/1.png deleted file mode 100644 index c91e6ba858..0000000000 Binary files a/front/public/images/large/Railcraft/brick.infernal/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.infernal/2.png b/front/public/images/large/Railcraft/brick.infernal/2.png deleted file mode 100644 index 1128469852..0000000000 Binary files a/front/public/images/large/Railcraft/brick.infernal/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.infernal/3.png b/front/public/images/large/Railcraft/brick.infernal/3.png deleted file mode 100644 index 5a42b2a23e..0000000000 Binary files a/front/public/images/large/Railcraft/brick.infernal/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.infernal/4.png b/front/public/images/large/Railcraft/brick.infernal/4.png deleted file mode 100644 index f1998ef5a2..0000000000 Binary files a/front/public/images/large/Railcraft/brick.infernal/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.infernal/5.png b/front/public/images/large/Railcraft/brick.infernal/5.png deleted file mode 100644 index 788a2e125d..0000000000 Binary files a/front/public/images/large/Railcraft/brick.infernal/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.nether/1.png b/front/public/images/large/Railcraft/brick.nether/1.png deleted file mode 100644 index 998abed710..0000000000 Binary files a/front/public/images/large/Railcraft/brick.nether/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.nether/2.png b/front/public/images/large/Railcraft/brick.nether/2.png deleted file mode 100644 index a6c6039547..0000000000 Binary files a/front/public/images/large/Railcraft/brick.nether/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.nether/3.png b/front/public/images/large/Railcraft/brick.nether/3.png deleted file mode 100644 index 1c8aa0f249..0000000000 Binary files a/front/public/images/large/Railcraft/brick.nether/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.nether/4.png b/front/public/images/large/Railcraft/brick.nether/4.png deleted file mode 100644 index daffd32095..0000000000 Binary files a/front/public/images/large/Railcraft/brick.nether/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.nether/5.png b/front/public/images/large/Railcraft/brick.nether/5.png deleted file mode 100644 index 987b173a70..0000000000 Binary files a/front/public/images/large/Railcraft/brick.nether/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.quarried/0.png b/front/public/images/large/Railcraft/brick.quarried/0.png deleted file mode 100644 index 41db294b9b..0000000000 Binary files a/front/public/images/large/Railcraft/brick.quarried/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.quarried/1.png b/front/public/images/large/Railcraft/brick.quarried/1.png deleted file mode 100644 index e34dfcadb6..0000000000 Binary files a/front/public/images/large/Railcraft/brick.quarried/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.quarried/2.png b/front/public/images/large/Railcraft/brick.quarried/2.png deleted file mode 100644 index 1cb3017f3f..0000000000 Binary files a/front/public/images/large/Railcraft/brick.quarried/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.quarried/3.png b/front/public/images/large/Railcraft/brick.quarried/3.png deleted file mode 100644 index 43813129b6..0000000000 Binary files a/front/public/images/large/Railcraft/brick.quarried/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.quarried/4.png b/front/public/images/large/Railcraft/brick.quarried/4.png deleted file mode 100644 index 3aa83e13da..0000000000 Binary files a/front/public/images/large/Railcraft/brick.quarried/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.quarried/5.png b/front/public/images/large/Railcraft/brick.quarried/5.png deleted file mode 100644 index 0bf6edb724..0000000000 Binary files a/front/public/images/large/Railcraft/brick.quarried/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.sandy/0.png b/front/public/images/large/Railcraft/brick.sandy/0.png deleted file mode 100644 index 9512717c49..0000000000 Binary files a/front/public/images/large/Railcraft/brick.sandy/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.sandy/1.png b/front/public/images/large/Railcraft/brick.sandy/1.png deleted file mode 100644 index 8879ebcd61..0000000000 Binary files a/front/public/images/large/Railcraft/brick.sandy/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.sandy/2.png b/front/public/images/large/Railcraft/brick.sandy/2.png deleted file mode 100644 index 8d49098d18..0000000000 Binary files a/front/public/images/large/Railcraft/brick.sandy/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.sandy/3.png b/front/public/images/large/Railcraft/brick.sandy/3.png deleted file mode 100644 index 4b0d49ceca..0000000000 Binary files a/front/public/images/large/Railcraft/brick.sandy/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.sandy/4.png b/front/public/images/large/Railcraft/brick.sandy/4.png deleted file mode 100644 index 3642d9af3f..0000000000 Binary files a/front/public/images/large/Railcraft/brick.sandy/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/brick.sandy/5.png b/front/public/images/large/Railcraft/brick.sandy/5.png deleted file mode 100644 index c6b60b6293..0000000000 Binary files a/front/public/images/large/Railcraft/brick.sandy/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.anchor.admin/0.png b/front/public/images/large/Railcraft/cart.anchor.admin/0.png deleted file mode 100644 index fa0bc6e6a4..0000000000 Binary files a/front/public/images/large/Railcraft/cart.anchor.admin/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.anchor.personal/0.png b/front/public/images/large/Railcraft/cart.anchor.personal/0.png deleted file mode 100644 index 69df3401f8..0000000000 Binary files a/front/public/images/large/Railcraft/cart.anchor.personal/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.anchor/0.png b/front/public/images/large/Railcraft/cart.anchor/0.png deleted file mode 100644 index 37b5ee9859..0000000000 Binary files a/front/public/images/large/Railcraft/cart.anchor/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.bore/0.png b/front/public/images/large/Railcraft/cart.bore/0.png deleted file mode 100644 index 13b09d835a..0000000000 Binary files a/front/public/images/large/Railcraft/cart.bore/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.cargo/0.png b/front/public/images/large/Railcraft/cart.cargo/0.png deleted file mode 100644 index 5a9e0b8932..0000000000 Binary files a/front/public/images/large/Railcraft/cart.cargo/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.energy.batbox/0.png b/front/public/images/large/Railcraft/cart.energy.batbox/0.png deleted file mode 100644 index 61cbd53cde..0000000000 Binary files a/front/public/images/large/Railcraft/cart.energy.batbox/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.energy.cesu/0.png b/front/public/images/large/Railcraft/cart.energy.cesu/0.png deleted file mode 100644 index 830f116886..0000000000 Binary files a/front/public/images/large/Railcraft/cart.energy.cesu/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.energy.mfe/0.png b/front/public/images/large/Railcraft/cart.energy.mfe/0.png deleted file mode 100644 index b576f76a39..0000000000 Binary files a/front/public/images/large/Railcraft/cart.energy.mfe/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.gift/0.png b/front/public/images/large/Railcraft/cart.gift/0.png deleted file mode 100644 index 831b85112e..0000000000 Binary files a/front/public/images/large/Railcraft/cart.gift/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.loco.creative/0.png b/front/public/images/large/Railcraft/cart.loco.creative/0.png deleted file mode 100644 index eca0ac9d19..0000000000 Binary files a/front/public/images/large/Railcraft/cart.loco.creative/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.loco.electric/0.png b/front/public/images/large/Railcraft/cart.loco.electric/0.png deleted file mode 100644 index 8aaa8eb4e5..0000000000 Binary files a/front/public/images/large/Railcraft/cart.loco.electric/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.loco.steam.solid/0.png b/front/public/images/large/Railcraft/cart.loco.steam.solid/0.png deleted file mode 100644 index 6ff114dfa0..0000000000 Binary files a/front/public/images/large/Railcraft/cart.loco.steam.solid/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.pumpkin/0.png b/front/public/images/large/Railcraft/cart.pumpkin/0.png deleted file mode 100644 index 0a1c9aa8f8..0000000000 Binary files a/front/public/images/large/Railcraft/cart.pumpkin/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.redstone.flux/0.png b/front/public/images/large/Railcraft/cart.redstone.flux/0.png deleted file mode 100644 index 2adb04de89..0000000000 Binary files a/front/public/images/large/Railcraft/cart.redstone.flux/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.tank/0.png b/front/public/images/large/Railcraft/cart.tank/0.png deleted file mode 100644 index 921946fcbc..0000000000 Binary files a/front/public/images/large/Railcraft/cart.tank/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.tnt.wood/0.png b/front/public/images/large/Railcraft/cart.tnt.wood/0.png deleted file mode 100644 index 8bd5c8da4a..0000000000 Binary files a/front/public/images/large/Railcraft/cart.tnt.wood/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.track.layer/0.png b/front/public/images/large/Railcraft/cart.track.layer/0.png deleted file mode 100644 index a762131429..0000000000 Binary files a/front/public/images/large/Railcraft/cart.track.layer/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.track.relayer/0.png b/front/public/images/large/Railcraft/cart.track.relayer/0.png deleted file mode 100644 index 806b62cc26..0000000000 Binary files a/front/public/images/large/Railcraft/cart.track.relayer/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.track.remover/0.png b/front/public/images/large/Railcraft/cart.track.remover/0.png deleted file mode 100644 index 7d9f4fcfab..0000000000 Binary files a/front/public/images/large/Railcraft/cart.track.remover/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.undercutter/0.png b/front/public/images/large/Railcraft/cart.undercutter/0.png deleted file mode 100644 index 9578a64666..0000000000 Binary files a/front/public/images/large/Railcraft/cart.undercutter/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cart.work/0.png b/front/public/images/large/Railcraft/cart.work/0.png deleted file mode 100644 index 7047297938..0000000000 Binary files a/front/public/images/large/Railcraft/cart.work/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/0.png b/front/public/images/large/Railcraft/cube/0.png deleted file mode 100644 index 68b1c5575e..0000000000 Binary files a/front/public/images/large/Railcraft/cube/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/1.png b/front/public/images/large/Railcraft/cube/1.png deleted file mode 100644 index 5b03abdd79..0000000000 Binary files a/front/public/images/large/Railcraft/cube/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/10.png b/front/public/images/large/Railcraft/cube/10.png deleted file mode 100644 index c037ab0e34..0000000000 Binary files a/front/public/images/large/Railcraft/cube/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/11.png b/front/public/images/large/Railcraft/cube/11.png deleted file mode 100644 index 4477ae7731..0000000000 Binary files a/front/public/images/large/Railcraft/cube/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/2.png b/front/public/images/large/Railcraft/cube/2.png deleted file mode 100644 index e526b213dd..0000000000 Binary files a/front/public/images/large/Railcraft/cube/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/4.png b/front/public/images/large/Railcraft/cube/4.png deleted file mode 100644 index 49e48be89e..0000000000 Binary files a/front/public/images/large/Railcraft/cube/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/6.png b/front/public/images/large/Railcraft/cube/6.png deleted file mode 100644 index 44e0c555c2..0000000000 Binary files a/front/public/images/large/Railcraft/cube/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/7.png b/front/public/images/large/Railcraft/cube/7.png deleted file mode 100644 index 70b8d672c9..0000000000 Binary files a/front/public/images/large/Railcraft/cube/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/8.png b/front/public/images/large/Railcraft/cube/8.png deleted file mode 100644 index 80e6dcd290..0000000000 Binary files a/front/public/images/large/Railcraft/cube/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/cube/9.png b/front/public/images/large/Railcraft/cube/9.png deleted file mode 100644 index 3b65cb924a..0000000000 Binary files a/front/public/images/large/Railcraft/cube/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/0.png b/front/public/images/large/Railcraft/detector/0.png deleted file mode 100644 index 4ada3eb80b..0000000000 Binary files a/front/public/images/large/Railcraft/detector/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/1.png b/front/public/images/large/Railcraft/detector/1.png deleted file mode 100644 index 1c60f63c38..0000000000 Binary files a/front/public/images/large/Railcraft/detector/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/10.png b/front/public/images/large/Railcraft/detector/10.png deleted file mode 100644 index 23de30fb4e..0000000000 Binary files a/front/public/images/large/Railcraft/detector/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/11.png b/front/public/images/large/Railcraft/detector/11.png deleted file mode 100644 index 51d200f059..0000000000 Binary files a/front/public/images/large/Railcraft/detector/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/12.png b/front/public/images/large/Railcraft/detector/12.png deleted file mode 100644 index 61e33067f9..0000000000 Binary files a/front/public/images/large/Railcraft/detector/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/13.png b/front/public/images/large/Railcraft/detector/13.png deleted file mode 100644 index 312b470d17..0000000000 Binary files a/front/public/images/large/Railcraft/detector/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/14.png b/front/public/images/large/Railcraft/detector/14.png deleted file mode 100644 index c77f65303b..0000000000 Binary files a/front/public/images/large/Railcraft/detector/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/15.png b/front/public/images/large/Railcraft/detector/15.png deleted file mode 100644 index d0e3618e89..0000000000 Binary files a/front/public/images/large/Railcraft/detector/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/16.png b/front/public/images/large/Railcraft/detector/16.png deleted file mode 100644 index f70adf9e75..0000000000 Binary files a/front/public/images/large/Railcraft/detector/16.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/2.png b/front/public/images/large/Railcraft/detector/2.png deleted file mode 100644 index 52110074c2..0000000000 Binary files a/front/public/images/large/Railcraft/detector/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/3.png b/front/public/images/large/Railcraft/detector/3.png deleted file mode 100644 index cf01819104..0000000000 Binary files a/front/public/images/large/Railcraft/detector/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/4.png b/front/public/images/large/Railcraft/detector/4.png deleted file mode 100644 index 3d27188e52..0000000000 Binary files a/front/public/images/large/Railcraft/detector/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/5.png b/front/public/images/large/Railcraft/detector/5.png deleted file mode 100644 index 1c3ff022d3..0000000000 Binary files a/front/public/images/large/Railcraft/detector/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/6.png b/front/public/images/large/Railcraft/detector/6.png deleted file mode 100644 index d9cc3a28d9..0000000000 Binary files a/front/public/images/large/Railcraft/detector/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/7.png b/front/public/images/large/Railcraft/detector/7.png deleted file mode 100644 index 311a816090..0000000000 Binary files a/front/public/images/large/Railcraft/detector/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/8.png b/front/public/images/large/Railcraft/detector/8.png deleted file mode 100644 index 34c58ed329..0000000000 Binary files a/front/public/images/large/Railcraft/detector/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/detector/9.png b/front/public/images/large/Railcraft/detector/9.png deleted file mode 100644 index 60d30aac52..0000000000 Binary files a/front/public/images/large/Railcraft/detector/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/dust/0.png b/front/public/images/large/Railcraft/dust/0.png deleted file mode 100644 index 678b165746..0000000000 Binary files a/front/public/images/large/Railcraft/dust/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/dust/1.png b/front/public/images/large/Railcraft/dust/1.png deleted file mode 100644 index 5872546cd3..0000000000 Binary files a/front/public/images/large/Railcraft/dust/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/dust/2.png b/front/public/images/large/Railcraft/dust/2.png deleted file mode 100644 index 7b4e80c70e..0000000000 Binary files a/front/public/images/large/Railcraft/dust/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/dust/3.png b/front/public/images/large/Railcraft/dust/3.png deleted file mode 100644 index 2c5fc88415..0000000000 Binary files a/front/public/images/large/Railcraft/dust/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/firestone.cracked/0.png b/front/public/images/large/Railcraft/firestone.cracked/0.png deleted file mode 100644 index 76daa526d8..0000000000 Binary files a/front/public/images/large/Railcraft/firestone.cracked/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/firestone.cracked/5000.png b/front/public/images/large/Railcraft/firestone.cracked/5000.png deleted file mode 100644 index 76daa526d8..0000000000 Binary files a/front/public/images/large/Railcraft/firestone.cracked/5000.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/firestone.cut/0.png b/front/public/images/large/Railcraft/firestone.cut/0.png deleted file mode 100644 index a731e62481..0000000000 Binary files a/front/public/images/large/Railcraft/firestone.cut/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/firestone.raw/0.png b/front/public/images/large/Railcraft/firestone.raw/0.png deleted file mode 100644 index 52671c03dc..0000000000 Binary files a/front/public/images/large/Railcraft/firestone.raw/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/firestone.recharge/0.png b/front/public/images/large/Railcraft/firestone.recharge/0.png deleted file mode 100644 index 810759273f..0000000000 Binary files a/front/public/images/large/Railcraft/firestone.recharge/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/firestone.refined/0.png b/front/public/images/large/Railcraft/firestone.refined/0.png deleted file mode 100644 index 325dc2e968..0000000000 Binary files a/front/public/images/large/Railcraft/firestone.refined/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/firestone.refined/5000.png b/front/public/images/large/Railcraft/firestone.refined/5000.png deleted file mode 100644 index 325dc2e968..0000000000 Binary files a/front/public/images/large/Railcraft/firestone.refined/5000.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.creosote.bottle/0.png b/front/public/images/large/Railcraft/fluid.creosote.bottle/0.png deleted file mode 100644 index a6c8e5804a..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.creosote.bottle/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.creosote.bucket/0.png b/front/public/images/large/Railcraft/fluid.creosote.bucket/0.png deleted file mode 100644 index dcf35bbe11..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.creosote.bucket/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.creosote.can/0.png b/front/public/images/large/Railcraft/fluid.creosote.can/0.png deleted file mode 100644 index 22c4ce8280..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.creosote.can/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.creosote.cell/0.png b/front/public/images/large/Railcraft/fluid.creosote.cell/0.png deleted file mode 100644 index 1367b214a1..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.creosote.cell/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.creosote.refactory/0.png b/front/public/images/large/Railcraft/fluid.creosote.refactory/0.png deleted file mode 100644 index 01da1adbf2..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.creosote.refactory/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.creosote.wax/0.png b/front/public/images/large/Railcraft/fluid.creosote.wax/0.png deleted file mode 100644 index 8db7f87f8e..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.creosote.wax/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.creosote/0.png b/front/public/images/large/Railcraft/fluid.creosote/0.png deleted file mode 100644 index a911cd0ddf..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.creosote/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.steam.bottle/0.png b/front/public/images/large/Railcraft/fluid.steam.bottle/0.png deleted file mode 100644 index bc42b52b8c..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.steam.bottle/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fluid.steam/0.png b/front/public/images/large/Railcraft/fluid.steam/0.png deleted file mode 100644 index 4be6051a04..0000000000 Binary files a/front/public/images/large/Railcraft/fluid.steam/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/frame/0.png b/front/public/images/large/Railcraft/frame/0.png deleted file mode 100644 index bde34e2970..0000000000 Binary files a/front/public/images/large/Railcraft/frame/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/fuel.coke/0.png b/front/public/images/large/Railcraft/fuel.coke/0.png deleted file mode 100644 index b65bf18dd0..0000000000 Binary files a/front/public/images/large/Railcraft/fuel.coke/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/0.png b/front/public/images/large/Railcraft/glass/0.png deleted file mode 100644 index 11bcab8d11..0000000000 Binary files a/front/public/images/large/Railcraft/glass/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/1.png b/front/public/images/large/Railcraft/glass/1.png deleted file mode 100644 index 5cbb2f0f00..0000000000 Binary files a/front/public/images/large/Railcraft/glass/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/10.png b/front/public/images/large/Railcraft/glass/10.png deleted file mode 100644 index 82801a1386..0000000000 Binary files a/front/public/images/large/Railcraft/glass/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/11.png b/front/public/images/large/Railcraft/glass/11.png deleted file mode 100644 index 532a47500b..0000000000 Binary files a/front/public/images/large/Railcraft/glass/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/12.png b/front/public/images/large/Railcraft/glass/12.png deleted file mode 100644 index 0e0c05b109..0000000000 Binary files a/front/public/images/large/Railcraft/glass/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/13.png b/front/public/images/large/Railcraft/glass/13.png deleted file mode 100644 index d69dc6f849..0000000000 Binary files a/front/public/images/large/Railcraft/glass/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/14.png b/front/public/images/large/Railcraft/glass/14.png deleted file mode 100644 index 53cc6cd89c..0000000000 Binary files a/front/public/images/large/Railcraft/glass/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/15.png b/front/public/images/large/Railcraft/glass/15.png deleted file mode 100644 index 99713931ba..0000000000 Binary files a/front/public/images/large/Railcraft/glass/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/2.png b/front/public/images/large/Railcraft/glass/2.png deleted file mode 100644 index ca015f01ce..0000000000 Binary files a/front/public/images/large/Railcraft/glass/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/3.png b/front/public/images/large/Railcraft/glass/3.png deleted file mode 100644 index b4d55f4c26..0000000000 Binary files a/front/public/images/large/Railcraft/glass/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/4.png b/front/public/images/large/Railcraft/glass/4.png deleted file mode 100644 index cb73afc41b..0000000000 Binary files a/front/public/images/large/Railcraft/glass/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/5.png b/front/public/images/large/Railcraft/glass/5.png deleted file mode 100644 index 8ddf05ce32..0000000000 Binary files a/front/public/images/large/Railcraft/glass/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/6.png b/front/public/images/large/Railcraft/glass/6.png deleted file mode 100644 index 763780fa14..0000000000 Binary files a/front/public/images/large/Railcraft/glass/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/7.png b/front/public/images/large/Railcraft/glass/7.png deleted file mode 100644 index 5aa1a6b632..0000000000 Binary files a/front/public/images/large/Railcraft/glass/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/8.png b/front/public/images/large/Railcraft/glass/8.png deleted file mode 100644 index 22c5f8b3fd..0000000000 Binary files a/front/public/images/large/Railcraft/glass/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/glass/9.png b/front/public/images/large/Railcraft/glass/9.png deleted file mode 100644 index 610bf70318..0000000000 Binary files a/front/public/images/large/Railcraft/glass/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ingot/0.png b/front/public/images/large/Railcraft/ingot/0.png deleted file mode 100644 index 49e1f995fa..0000000000 Binary files a/front/public/images/large/Railcraft/ingot/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ingot/1.png b/front/public/images/large/Railcraft/ingot/1.png deleted file mode 100644 index 370994a0c3..0000000000 Binary files a/front/public/images/large/Railcraft/ingot/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ingot/2.png b/front/public/images/large/Railcraft/ingot/2.png deleted file mode 100644 index 02aea3456d..0000000000 Binary files a/front/public/images/large/Railcraft/ingot/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ingot/3.png b/front/public/images/large/Railcraft/ingot/3.png deleted file mode 100644 index 14e22e5ff8..0000000000 Binary files a/front/public/images/large/Railcraft/ingot/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.metal/0.png b/front/public/images/large/Railcraft/lantern.metal/0.png deleted file mode 100644 index ffa860bd46..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.metal/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.metal/1.png b/front/public/images/large/Railcraft/lantern.metal/1.png deleted file mode 100644 index e93d89ef2d..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.metal/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.metal/2.png b/front/public/images/large/Railcraft/lantern.metal/2.png deleted file mode 100644 index 8c720a6c5b..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.metal/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.metal/3.png b/front/public/images/large/Railcraft/lantern.metal/3.png deleted file mode 100644 index 2f4beec4cb..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.metal/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.metal/4.png b/front/public/images/large/Railcraft/lantern.metal/4.png deleted file mode 100644 index 3d976969ce..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.metal/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.metal/5.png b/front/public/images/large/Railcraft/lantern.metal/5.png deleted file mode 100644 index ae26a5baa9..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.metal/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/0.png b/front/public/images/large/Railcraft/lantern.stone/0.png deleted file mode 100644 index b1ab226c89..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/1.png b/front/public/images/large/Railcraft/lantern.stone/1.png deleted file mode 100644 index bf09fcad28..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/2.png b/front/public/images/large/Railcraft/lantern.stone/2.png deleted file mode 100644 index 0f2eab94f6..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/3.png b/front/public/images/large/Railcraft/lantern.stone/3.png deleted file mode 100644 index 1689966876..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/4.png b/front/public/images/large/Railcraft/lantern.stone/4.png deleted file mode 100644 index 38248b5211..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/5.png b/front/public/images/large/Railcraft/lantern.stone/5.png deleted file mode 100644 index 7d1719e684..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/6.png b/front/public/images/large/Railcraft/lantern.stone/6.png deleted file mode 100644 index 2ffdd06ccc..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/7.png b/front/public/images/large/Railcraft/lantern.stone/7.png deleted file mode 100644 index 8cf8d26a2e..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/8.png b/front/public/images/large/Railcraft/lantern.stone/8.png deleted file mode 100644 index 6487420bb1..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/lantern.stone/9.png b/front/public/images/large/Railcraft/lantern.stone/9.png deleted file mode 100644 index fb8c6bfcd8..0000000000 Binary files a/front/public/images/large/Railcraft/lantern.stone/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/0.png b/front/public/images/large/Railcraft/machine.alpha/0.png deleted file mode 100644 index 42b48f4221..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/1.png b/front/public/images/large/Railcraft/machine.alpha/1.png deleted file mode 100644 index b75f3a68c8..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/10.png b/front/public/images/large/Railcraft/machine.alpha/10.png deleted file mode 100644 index ad2b0bc931..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/11.png b/front/public/images/large/Railcraft/machine.alpha/11.png deleted file mode 100644 index f21f08cf9b..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/12.png b/front/public/images/large/Railcraft/machine.alpha/12.png deleted file mode 100644 index d6a8f6ffd3..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/13.png b/front/public/images/large/Railcraft/machine.alpha/13.png deleted file mode 100644 index 0547b1e6d7..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/14.png b/front/public/images/large/Railcraft/machine.alpha/14.png deleted file mode 100644 index 0e65c41af0..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/2.png b/front/public/images/large/Railcraft/machine.alpha/2.png deleted file mode 100644 index fa6d5a9be9..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/3.png b/front/public/images/large/Railcraft/machine.alpha/3.png deleted file mode 100644 index 2088d6778b..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/4.png b/front/public/images/large/Railcraft/machine.alpha/4.png deleted file mode 100644 index 047250bf07..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/5.png b/front/public/images/large/Railcraft/machine.alpha/5.png deleted file mode 100644 index 3ab4d82deb..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/6.png b/front/public/images/large/Railcraft/machine.alpha/6.png deleted file mode 100644 index 0e4196cdf2..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/7.png b/front/public/images/large/Railcraft/machine.alpha/7.png deleted file mode 100644 index 5fce63b9cb..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/8.png b/front/public/images/large/Railcraft/machine.alpha/8.png deleted file mode 100644 index 69bf0abc8f..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.alpha/9.png b/front/public/images/large/Railcraft/machine.alpha/9.png deleted file mode 100644 index 347eaefdbb..0000000000 Binary files a/front/public/images/large/Railcraft/machine.alpha/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/0.png b/front/public/images/large/Railcraft/machine.beta/0.png deleted file mode 100644 index 5440d3c500..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/1.png b/front/public/images/large/Railcraft/machine.beta/1.png deleted file mode 100644 index d344046bc0..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/10.png b/front/public/images/large/Railcraft/machine.beta/10.png deleted file mode 100644 index 519c25b124..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/11.png b/front/public/images/large/Railcraft/machine.beta/11.png deleted file mode 100644 index 1a5a0dc38a..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/12.png b/front/public/images/large/Railcraft/machine.beta/12.png deleted file mode 100644 index f2c6aef159..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/13.png b/front/public/images/large/Railcraft/machine.beta/13.png deleted file mode 100644 index 735cba34c4..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/14.png b/front/public/images/large/Railcraft/machine.beta/14.png deleted file mode 100644 index aba0b46d2a..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/15.png b/front/public/images/large/Railcraft/machine.beta/15.png deleted file mode 100644 index 79cb70c049..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/2.png b/front/public/images/large/Railcraft/machine.beta/2.png deleted file mode 100644 index 77b324f798..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/3.png b/front/public/images/large/Railcraft/machine.beta/3.png deleted file mode 100644 index d9e9e0b05c..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/4.png b/front/public/images/large/Railcraft/machine.beta/4.png deleted file mode 100644 index d44b8d6e2c..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/5.png b/front/public/images/large/Railcraft/machine.beta/5.png deleted file mode 100644 index 7df8f1b7fb..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/6.png b/front/public/images/large/Railcraft/machine.beta/6.png deleted file mode 100644 index 29383eeb20..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/7.png b/front/public/images/large/Railcraft/machine.beta/7.png deleted file mode 100644 index de9e252cf5..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/8.png b/front/public/images/large/Railcraft/machine.beta/8.png deleted file mode 100644 index 985249dc1d..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.beta/9.png b/front/public/images/large/Railcraft/machine.beta/9.png deleted file mode 100644 index 3db109fc0e..0000000000 Binary files a/front/public/images/large/Railcraft/machine.beta/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.delta/0.png b/front/public/images/large/Railcraft/machine.delta/0.png deleted file mode 100644 index 84cdb8d80e..0000000000 Binary files a/front/public/images/large/Railcraft/machine.delta/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.epsilon/0.png b/front/public/images/large/Railcraft/machine.epsilon/0.png deleted file mode 100644 index c30092e3b8..0000000000 Binary files a/front/public/images/large/Railcraft/machine.epsilon/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.epsilon/1.png b/front/public/images/large/Railcraft/machine.epsilon/1.png deleted file mode 100644 index 606e6f529c..0000000000 Binary files a/front/public/images/large/Railcraft/machine.epsilon/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.epsilon/2.png b/front/public/images/large/Railcraft/machine.epsilon/2.png deleted file mode 100644 index e2a7706c22..0000000000 Binary files a/front/public/images/large/Railcraft/machine.epsilon/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.epsilon/3.png b/front/public/images/large/Railcraft/machine.epsilon/3.png deleted file mode 100644 index 84e1a90383..0000000000 Binary files a/front/public/images/large/Railcraft/machine.epsilon/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.epsilon/4.png b/front/public/images/large/Railcraft/machine.epsilon/4.png deleted file mode 100644 index 3c1ce969ee..0000000000 Binary files a/front/public/images/large/Railcraft/machine.epsilon/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/0.png b/front/public/images/large/Railcraft/machine.eta/0.png deleted file mode 100644 index 2bce5c7959..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/1.png b/front/public/images/large/Railcraft/machine.eta/1.png deleted file mode 100644 index 19b8cf9358..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/2.png b/front/public/images/large/Railcraft/machine.eta/2.png deleted file mode 100644 index fdb00ddba9..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/3.png b/front/public/images/large/Railcraft/machine.eta/3.png deleted file mode 100644 index 1290a0a5f7..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/4.png b/front/public/images/large/Railcraft/machine.eta/4.png deleted file mode 100644 index f8914d0709..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/5.png b/front/public/images/large/Railcraft/machine.eta/5.png deleted file mode 100644 index 5497bc84cc..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/6.png b/front/public/images/large/Railcraft/machine.eta/6.png deleted file mode 100644 index 15a4840a98..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/7.png b/front/public/images/large/Railcraft/machine.eta/7.png deleted file mode 100644 index 5fe3eb782e..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.eta/8.png b/front/public/images/large/Railcraft/machine.eta/8.png deleted file mode 100644 index ce294bdbb1..0000000000 Binary files a/front/public/images/large/Railcraft/machine.eta/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/0.png b/front/public/images/large/Railcraft/machine.gamma/0.png deleted file mode 100644 index 5485c80e92..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/1.png b/front/public/images/large/Railcraft/machine.gamma/1.png deleted file mode 100644 index 559de0f291..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/10.png b/front/public/images/large/Railcraft/machine.gamma/10.png deleted file mode 100644 index 8419c320c9..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/11.png b/front/public/images/large/Railcraft/machine.gamma/11.png deleted file mode 100644 index d37dd8f077..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/2.png b/front/public/images/large/Railcraft/machine.gamma/2.png deleted file mode 100644 index 6184c5345d..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/3.png b/front/public/images/large/Railcraft/machine.gamma/3.png deleted file mode 100644 index 0df6bf33a0..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/4.png b/front/public/images/large/Railcraft/machine.gamma/4.png deleted file mode 100644 index a82edf27d7..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/5.png b/front/public/images/large/Railcraft/machine.gamma/5.png deleted file mode 100644 index 7c40892ba4..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/6.png b/front/public/images/large/Railcraft/machine.gamma/6.png deleted file mode 100644 index 1ad3de0001..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/7.png b/front/public/images/large/Railcraft/machine.gamma/7.png deleted file mode 100644 index 8967f4e34c..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/8.png b/front/public/images/large/Railcraft/machine.gamma/8.png deleted file mode 100644 index c5c5fb7a4b..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.gamma/9.png b/front/public/images/large/Railcraft/machine.gamma/9.png deleted file mode 100644 index e13d1c0340..0000000000 Binary files a/front/public/images/large/Railcraft/machine.gamma/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/0.png b/front/public/images/large/Railcraft/machine.zeta/0.png deleted file mode 100644 index 8f5b92fff5..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/1.png b/front/public/images/large/Railcraft/machine.zeta/1.png deleted file mode 100644 index 5c5f7ca771..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/10.png b/front/public/images/large/Railcraft/machine.zeta/10.png deleted file mode 100644 index b42979ac07..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/11.png b/front/public/images/large/Railcraft/machine.zeta/11.png deleted file mode 100644 index 00495e3ee8..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/12.png b/front/public/images/large/Railcraft/machine.zeta/12.png deleted file mode 100644 index c914f0721a..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/13.png b/front/public/images/large/Railcraft/machine.zeta/13.png deleted file mode 100644 index 3ddd9597ad..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/14.png b/front/public/images/large/Railcraft/machine.zeta/14.png deleted file mode 100644 index df6c592e9c..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/2.png b/front/public/images/large/Railcraft/machine.zeta/2.png deleted file mode 100644 index 0c261b4ce1..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/3.png b/front/public/images/large/Railcraft/machine.zeta/3.png deleted file mode 100644 index 51fe77a50d..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/4.png b/front/public/images/large/Railcraft/machine.zeta/4.png deleted file mode 100644 index 79ec6687fa..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/5.png b/front/public/images/large/Railcraft/machine.zeta/5.png deleted file mode 100644 index 672f88a6a7..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/6.png b/front/public/images/large/Railcraft/machine.zeta/6.png deleted file mode 100644 index a711f54aa8..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/7.png b/front/public/images/large/Railcraft/machine.zeta/7.png deleted file mode 100644 index 4e5cfcc699..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/8.png b/front/public/images/large/Railcraft/machine.zeta/8.png deleted file mode 100644 index b7a060caf1..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/machine.zeta/9.png b/front/public/images/large/Railcraft/machine.zeta/9.png deleted file mode 100644 index bd683fae04..0000000000 Binary files a/front/public/images/large/Railcraft/machine.zeta/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/nugget/0.png b/front/public/images/large/Railcraft/nugget/0.png deleted file mode 100644 index 8b27d23e1f..0000000000 Binary files a/front/public/images/large/Railcraft/nugget/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/nugget/1.png b/front/public/images/large/Railcraft/nugget/1.png deleted file mode 100644 index 6aa450f0ee..0000000000 Binary files a/front/public/images/large/Railcraft/nugget/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/nugget/2.png b/front/public/images/large/Railcraft/nugget/2.png deleted file mode 100644 index e83295317b..0000000000 Binary files a/front/public/images/large/Railcraft/nugget/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/nugget/3.png b/front/public/images/large/Railcraft/nugget/3.png deleted file mode 100644 index 8cfe01cbf7..0000000000 Binary files a/front/public/images/large/Railcraft/nugget/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/nugget/4.png b/front/public/images/large/Railcraft/nugget/4.png deleted file mode 100644 index ff04ddb8c9..0000000000 Binary files a/front/public/images/large/Railcraft/nugget/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ore/2.png b/front/public/images/large/Railcraft/ore/2.png deleted file mode 100644 index 3959e99048..0000000000 Binary files a/front/public/images/large/Railcraft/ore/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ore/3.png b/front/public/images/large/Railcraft/ore/3.png deleted file mode 100644 index 7580b32757..0000000000 Binary files a/front/public/images/large/Railcraft/ore/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ore/4.png b/front/public/images/large/Railcraft/ore/4.png deleted file mode 100644 index 04cc30a522..0000000000 Binary files a/front/public/images/large/Railcraft/ore/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/ore/5.png b/front/public/images/large/Railcraft/ore/5.png deleted file mode 100644 index 0f87caca09..0000000000 Binary files a/front/public/images/large/Railcraft/ore/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.bleached.clay/0.png b/front/public/images/large/Railcraft/part.bleached.clay/0.png deleted file mode 100644 index f3465cc3ee..0000000000 Binary files a/front/public/images/large/Railcraft/part.bleached.clay/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.circuit/0.png b/front/public/images/large/Railcraft/part.circuit/0.png deleted file mode 100644 index 17ba0e833e..0000000000 Binary files a/front/public/images/large/Railcraft/part.circuit/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.circuit/1.png b/front/public/images/large/Railcraft/part.circuit/1.png deleted file mode 100644 index c778228d3d..0000000000 Binary files a/front/public/images/large/Railcraft/part.circuit/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.circuit/2.png b/front/public/images/large/Railcraft/part.circuit/2.png deleted file mode 100644 index bc5ce08aad..0000000000 Binary files a/front/public/images/large/Railcraft/part.circuit/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.gear/0.png b/front/public/images/large/Railcraft/part.gear/0.png deleted file mode 100644 index c8805121ed..0000000000 Binary files a/front/public/images/large/Railcraft/part.gear/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.gear/1.png b/front/public/images/large/Railcraft/part.gear/1.png deleted file mode 100644 index 906de0bec0..0000000000 Binary files a/front/public/images/large/Railcraft/part.gear/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.gear/2.png b/front/public/images/large/Railcraft/part.gear/2.png deleted file mode 100644 index 7c47fb32b7..0000000000 Binary files a/front/public/images/large/Railcraft/part.gear/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.gear/3.png b/front/public/images/large/Railcraft/part.gear/3.png deleted file mode 100644 index c892aa1f0e..0000000000 Binary files a/front/public/images/large/Railcraft/part.gear/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.plate/0.png b/front/public/images/large/Railcraft/part.plate/0.png deleted file mode 100644 index 2668fe63e0..0000000000 Binary files a/front/public/images/large/Railcraft/part.plate/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.plate/1.png b/front/public/images/large/Railcraft/part.plate/1.png deleted file mode 100644 index e80b79d402..0000000000 Binary files a/front/public/images/large/Railcraft/part.plate/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.plate/2.png b/front/public/images/large/Railcraft/part.plate/2.png deleted file mode 100644 index d7d3031c64..0000000000 Binary files a/front/public/images/large/Railcraft/part.plate/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.plate/3.png b/front/public/images/large/Railcraft/part.plate/3.png deleted file mode 100644 index a8e077bd1d..0000000000 Binary files a/front/public/images/large/Railcraft/part.plate/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.plate/4.png b/front/public/images/large/Railcraft/part.plate/4.png deleted file mode 100644 index bafacad585..0000000000 Binary files a/front/public/images/large/Railcraft/part.plate/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.rail/0.png b/front/public/images/large/Railcraft/part.rail/0.png deleted file mode 100644 index 2467f1b9ea..0000000000 Binary files a/front/public/images/large/Railcraft/part.rail/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.rail/1.png b/front/public/images/large/Railcraft/part.rail/1.png deleted file mode 100644 index b2595f8394..0000000000 Binary files a/front/public/images/large/Railcraft/part.rail/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.rail/2.png b/front/public/images/large/Railcraft/part.rail/2.png deleted file mode 100644 index baac1bd1d7..0000000000 Binary files a/front/public/images/large/Railcraft/part.rail/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.rail/3.png b/front/public/images/large/Railcraft/part.rail/3.png deleted file mode 100644 index 56f9f2bb86..0000000000 Binary files a/front/public/images/large/Railcraft/part.rail/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.rail/4.png b/front/public/images/large/Railcraft/part.rail/4.png deleted file mode 100644 index cf23274b4b..0000000000 Binary files a/front/public/images/large/Railcraft/part.rail/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.rail/5.png b/front/public/images/large/Railcraft/part.rail/5.png deleted file mode 100644 index 04f35480fd..0000000000 Binary files a/front/public/images/large/Railcraft/part.rail/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.railbed/0.png b/front/public/images/large/Railcraft/part.railbed/0.png deleted file mode 100644 index b1007b82b4..0000000000 Binary files a/front/public/images/large/Railcraft/part.railbed/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.railbed/1.png b/front/public/images/large/Railcraft/part.railbed/1.png deleted file mode 100644 index 9acb686acf..0000000000 Binary files a/front/public/images/large/Railcraft/part.railbed/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.rebar/0.png b/front/public/images/large/Railcraft/part.rebar/0.png deleted file mode 100644 index 6e3b013b99..0000000000 Binary files a/front/public/images/large/Railcraft/part.rebar/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.signal.lamp/0.png b/front/public/images/large/Railcraft/part.signal.lamp/0.png deleted file mode 100644 index a5e23a9510..0000000000 Binary files a/front/public/images/large/Railcraft/part.signal.lamp/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.tie/0.png b/front/public/images/large/Railcraft/part.tie/0.png deleted file mode 100644 index 220e39f7e7..0000000000 Binary files a/front/public/images/large/Railcraft/part.tie/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.tie/1.png b/front/public/images/large/Railcraft/part.tie/1.png deleted file mode 100644 index e46e6b0451..0000000000 Binary files a/front/public/images/large/Railcraft/part.tie/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.turbine.blade/0.png b/front/public/images/large/Railcraft/part.turbine.blade/0.png deleted file mode 100644 index 8330ae61c2..0000000000 Binary files a/front/public/images/large/Railcraft/part.turbine.blade/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.turbine.disk/0.png b/front/public/images/large/Railcraft/part.turbine.disk/0.png deleted file mode 100644 index d0a7d95600..0000000000 Binary files a/front/public/images/large/Railcraft/part.turbine.disk/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/part.turbine.rotor/0.png b/front/public/images/large/Railcraft/part.turbine.rotor/0.png deleted file mode 100644 index 510a365331..0000000000 Binary files a/front/public/images/large/Railcraft/part.turbine.rotor/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/0.png b/front/public/images/large/Railcraft/post.metal.platform/0.png deleted file mode 100644 index cf31c62569..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/1.png b/front/public/images/large/Railcraft/post.metal.platform/1.png deleted file mode 100644 index 4687403a2d..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/10.png b/front/public/images/large/Railcraft/post.metal.platform/10.png deleted file mode 100644 index ad5b2bdb28..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/11.png b/front/public/images/large/Railcraft/post.metal.platform/11.png deleted file mode 100644 index 04bac714e3..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/12.png b/front/public/images/large/Railcraft/post.metal.platform/12.png deleted file mode 100644 index 5d8b421508..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/13.png b/front/public/images/large/Railcraft/post.metal.platform/13.png deleted file mode 100644 index da7bd44ea3..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/14.png b/front/public/images/large/Railcraft/post.metal.platform/14.png deleted file mode 100644 index e00e873b04..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/15.png b/front/public/images/large/Railcraft/post.metal.platform/15.png deleted file mode 100644 index f48d6d3afc..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/2.png b/front/public/images/large/Railcraft/post.metal.platform/2.png deleted file mode 100644 index b1de1e3914..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/3.png b/front/public/images/large/Railcraft/post.metal.platform/3.png deleted file mode 100644 index 0832644a34..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/4.png b/front/public/images/large/Railcraft/post.metal.platform/4.png deleted file mode 100644 index 385cc09808..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/5.png b/front/public/images/large/Railcraft/post.metal.platform/5.png deleted file mode 100644 index 2d87322ddb..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/6.png b/front/public/images/large/Railcraft/post.metal.platform/6.png deleted file mode 100644 index ceb258a3ad..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/7.png b/front/public/images/large/Railcraft/post.metal.platform/7.png deleted file mode 100644 index d6340244ce..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/8.png b/front/public/images/large/Railcraft/post.metal.platform/8.png deleted file mode 100644 index a0a5bb1238..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal.platform/9.png b/front/public/images/large/Railcraft/post.metal.platform/9.png deleted file mode 100644 index d16f4e7bc0..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal.platform/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/0.png b/front/public/images/large/Railcraft/post.metal/0.png deleted file mode 100644 index b9eb726a28..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/1.png b/front/public/images/large/Railcraft/post.metal/1.png deleted file mode 100644 index cc3bde92ee..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/10.png b/front/public/images/large/Railcraft/post.metal/10.png deleted file mode 100644 index febed598b4..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/11.png b/front/public/images/large/Railcraft/post.metal/11.png deleted file mode 100644 index 710e04da30..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/12.png b/front/public/images/large/Railcraft/post.metal/12.png deleted file mode 100644 index b530e37e2c..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/13.png b/front/public/images/large/Railcraft/post.metal/13.png deleted file mode 100644 index 5753b899c6..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/14.png b/front/public/images/large/Railcraft/post.metal/14.png deleted file mode 100644 index 8d511e6029..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/15.png b/front/public/images/large/Railcraft/post.metal/15.png deleted file mode 100644 index 3ffa5255c5..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/2.png b/front/public/images/large/Railcraft/post.metal/2.png deleted file mode 100644 index 84d9a6cd5f..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/3.png b/front/public/images/large/Railcraft/post.metal/3.png deleted file mode 100644 index 0ccc9a636a..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/4.png b/front/public/images/large/Railcraft/post.metal/4.png deleted file mode 100644 index 071d402cd9..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/5.png b/front/public/images/large/Railcraft/post.metal/5.png deleted file mode 100644 index 03f2c49400..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/6.png b/front/public/images/large/Railcraft/post.metal/6.png deleted file mode 100644 index fe0b738f26..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/7.png b/front/public/images/large/Railcraft/post.metal/7.png deleted file mode 100644 index 367fa754e1..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/8.png b/front/public/images/large/Railcraft/post.metal/8.png deleted file mode 100644 index d02216715f..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post.metal/9.png b/front/public/images/large/Railcraft/post.metal/9.png deleted file mode 100644 index 765632c928..0000000000 Binary files a/front/public/images/large/Railcraft/post.metal/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post/0.png b/front/public/images/large/Railcraft/post/0.png deleted file mode 100644 index 7dd7d45d78..0000000000 Binary files a/front/public/images/large/Railcraft/post/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post/1.png b/front/public/images/large/Railcraft/post/1.png deleted file mode 100644 index 1e68eb3d8e..0000000000 Binary files a/front/public/images/large/Railcraft/post/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post/2.png b/front/public/images/large/Railcraft/post/2.png deleted file mode 100644 index 8b7aa0a436..0000000000 Binary files a/front/public/images/large/Railcraft/post/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post/4.png b/front/public/images/large/Railcraft/post/4.png deleted file mode 100644 index 7f6ff5c8df..0000000000 Binary files a/front/public/images/large/Railcraft/post/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post/5.png b/front/public/images/large/Railcraft/post/5.png deleted file mode 100644 index a31b3e8e88..0000000000 Binary files a/front/public/images/large/Railcraft/post/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/post/6.png b/front/public/images/large/Railcraft/post/6.png deleted file mode 100644 index 0f69457c96..0000000000 Binary files a/front/public/images/large/Railcraft/post/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/routing.table/0.png b/front/public/images/large/Railcraft/routing.table/0.png deleted file mode 100644 index 51ea109ddc..0000000000 Binary files a/front/public/images/large/Railcraft/routing.table/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/routing.ticket.gold/0.png b/front/public/images/large/Railcraft/routing.ticket.gold/0.png deleted file mode 100644 index 164f2f8ae0..0000000000 Binary files a/front/public/images/large/Railcraft/routing.ticket.gold/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/routing.ticket/0.png b/front/public/images/large/Railcraft/routing.ticket/0.png deleted file mode 100644 index 4a8bffdc63..0000000000 Binary files a/front/public/images/large/Railcraft/routing.ticket/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/0.png b/front/public/images/large/Railcraft/signal/0.png deleted file mode 100644 index 2dbefd3d5b..0000000000 Binary files a/front/public/images/large/Railcraft/signal/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/1.png b/front/public/images/large/Railcraft/signal/1.png deleted file mode 100644 index 52a7ac094b..0000000000 Binary files a/front/public/images/large/Railcraft/signal/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/10.png b/front/public/images/large/Railcraft/signal/10.png deleted file mode 100644 index b89fd70092..0000000000 Binary files a/front/public/images/large/Railcraft/signal/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/11.png b/front/public/images/large/Railcraft/signal/11.png deleted file mode 100644 index 7169b744d6..0000000000 Binary files a/front/public/images/large/Railcraft/signal/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/12.png b/front/public/images/large/Railcraft/signal/12.png deleted file mode 100644 index a1f1328158..0000000000 Binary files a/front/public/images/large/Railcraft/signal/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/13.png b/front/public/images/large/Railcraft/signal/13.png deleted file mode 100644 index 953823762e..0000000000 Binary files a/front/public/images/large/Railcraft/signal/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/2.png b/front/public/images/large/Railcraft/signal/2.png deleted file mode 100644 index 9a5ad52b09..0000000000 Binary files a/front/public/images/large/Railcraft/signal/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/3.png b/front/public/images/large/Railcraft/signal/3.png deleted file mode 100644 index 9fec19f5b9..0000000000 Binary files a/front/public/images/large/Railcraft/signal/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/4.png b/front/public/images/large/Railcraft/signal/4.png deleted file mode 100644 index 332e8c258d..0000000000 Binary files a/front/public/images/large/Railcraft/signal/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/5.png b/front/public/images/large/Railcraft/signal/5.png deleted file mode 100644 index 950b3cefa8..0000000000 Binary files a/front/public/images/large/Railcraft/signal/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/6.png b/front/public/images/large/Railcraft/signal/6.png deleted file mode 100644 index c2d594bd31..0000000000 Binary files a/front/public/images/large/Railcraft/signal/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/7.png b/front/public/images/large/Railcraft/signal/7.png deleted file mode 100644 index 564fa97019..0000000000 Binary files a/front/public/images/large/Railcraft/signal/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/8.png b/front/public/images/large/Railcraft/signal/8.png deleted file mode 100644 index 2bb72aedd0..0000000000 Binary files a/front/public/images/large/Railcraft/signal/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/signal/9.png b/front/public/images/large/Railcraft/signal/9.png deleted file mode 100644 index 2475bf7a59..0000000000 Binary files a/front/public/images/large/Railcraft/signal/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/0.png b/front/public/images/large/Railcraft/slab/0.png deleted file mode 100644 index 5d5b1002f6..0000000000 Binary files a/front/public/images/large/Railcraft/slab/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/1.png b/front/public/images/large/Railcraft/slab/1.png deleted file mode 100644 index 75d828aa6e..0000000000 Binary files a/front/public/images/large/Railcraft/slab/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/10.png b/front/public/images/large/Railcraft/slab/10.png deleted file mode 100644 index 9bc6fe0fdc..0000000000 Binary files a/front/public/images/large/Railcraft/slab/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/11.png b/front/public/images/large/Railcraft/slab/11.png deleted file mode 100644 index cd30682d8e..0000000000 Binary files a/front/public/images/large/Railcraft/slab/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/12.png b/front/public/images/large/Railcraft/slab/12.png deleted file mode 100644 index 345fd84eb4..0000000000 Binary files a/front/public/images/large/Railcraft/slab/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/13.png b/front/public/images/large/Railcraft/slab/13.png deleted file mode 100644 index 5b5994440c..0000000000 Binary files a/front/public/images/large/Railcraft/slab/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/14.png b/front/public/images/large/Railcraft/slab/14.png deleted file mode 100644 index 7e1cf969e9..0000000000 Binary files a/front/public/images/large/Railcraft/slab/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/15.png b/front/public/images/large/Railcraft/slab/15.png deleted file mode 100644 index ca4b269f35..0000000000 Binary files a/front/public/images/large/Railcraft/slab/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/16.png b/front/public/images/large/Railcraft/slab/16.png deleted file mode 100644 index d7bc989cc6..0000000000 Binary files a/front/public/images/large/Railcraft/slab/16.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/17.png b/front/public/images/large/Railcraft/slab/17.png deleted file mode 100644 index 0ae9277969..0000000000 Binary files a/front/public/images/large/Railcraft/slab/17.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/18.png b/front/public/images/large/Railcraft/slab/18.png deleted file mode 100644 index c2715979da..0000000000 Binary files a/front/public/images/large/Railcraft/slab/18.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/19.png b/front/public/images/large/Railcraft/slab/19.png deleted file mode 100644 index 1789d5e229..0000000000 Binary files a/front/public/images/large/Railcraft/slab/19.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/2.png b/front/public/images/large/Railcraft/slab/2.png deleted file mode 100644 index e5d43137ab..0000000000 Binary files a/front/public/images/large/Railcraft/slab/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/20.png b/front/public/images/large/Railcraft/slab/20.png deleted file mode 100644 index 9114a04e4f..0000000000 Binary files a/front/public/images/large/Railcraft/slab/20.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/21.png b/front/public/images/large/Railcraft/slab/21.png deleted file mode 100644 index 9f107a3cbb..0000000000 Binary files a/front/public/images/large/Railcraft/slab/21.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/22.png b/front/public/images/large/Railcraft/slab/22.png deleted file mode 100644 index ad7d6b2c4f..0000000000 Binary files a/front/public/images/large/Railcraft/slab/22.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/23.png b/front/public/images/large/Railcraft/slab/23.png deleted file mode 100644 index 808f6c3dbc..0000000000 Binary files a/front/public/images/large/Railcraft/slab/23.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/24.png b/front/public/images/large/Railcraft/slab/24.png deleted file mode 100644 index 7f4a723fcc..0000000000 Binary files a/front/public/images/large/Railcraft/slab/24.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/25.png b/front/public/images/large/Railcraft/slab/25.png deleted file mode 100644 index d7af204ca6..0000000000 Binary files a/front/public/images/large/Railcraft/slab/25.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/26.png b/front/public/images/large/Railcraft/slab/26.png deleted file mode 100644 index a749f47f5c..0000000000 Binary files a/front/public/images/large/Railcraft/slab/26.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/27.png b/front/public/images/large/Railcraft/slab/27.png deleted file mode 100644 index 64222c2324..0000000000 Binary files a/front/public/images/large/Railcraft/slab/27.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/28.png b/front/public/images/large/Railcraft/slab/28.png deleted file mode 100644 index c5a1b7308e..0000000000 Binary files a/front/public/images/large/Railcraft/slab/28.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/29.png b/front/public/images/large/Railcraft/slab/29.png deleted file mode 100644 index 5f2ad1a966..0000000000 Binary files a/front/public/images/large/Railcraft/slab/29.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/3.png b/front/public/images/large/Railcraft/slab/3.png deleted file mode 100644 index 66dda2c9da..0000000000 Binary files a/front/public/images/large/Railcraft/slab/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/30.png b/front/public/images/large/Railcraft/slab/30.png deleted file mode 100644 index bb4cd34bb5..0000000000 Binary files a/front/public/images/large/Railcraft/slab/30.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/31.png b/front/public/images/large/Railcraft/slab/31.png deleted file mode 100644 index 5c086777ec..0000000000 Binary files a/front/public/images/large/Railcraft/slab/31.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/32.png b/front/public/images/large/Railcraft/slab/32.png deleted file mode 100644 index ccceb81458..0000000000 Binary files a/front/public/images/large/Railcraft/slab/32.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/33.png b/front/public/images/large/Railcraft/slab/33.png deleted file mode 100644 index d432bba915..0000000000 Binary files a/front/public/images/large/Railcraft/slab/33.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/34.png b/front/public/images/large/Railcraft/slab/34.png deleted file mode 100644 index 4551330727..0000000000 Binary files a/front/public/images/large/Railcraft/slab/34.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/35.png b/front/public/images/large/Railcraft/slab/35.png deleted file mode 100644 index c5bcfa0242..0000000000 Binary files a/front/public/images/large/Railcraft/slab/35.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/36.png b/front/public/images/large/Railcraft/slab/36.png deleted file mode 100644 index 5d5ffa4cbd..0000000000 Binary files a/front/public/images/large/Railcraft/slab/36.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/37.png b/front/public/images/large/Railcraft/slab/37.png deleted file mode 100644 index fd0db4a1bb..0000000000 Binary files a/front/public/images/large/Railcraft/slab/37.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/38.png b/front/public/images/large/Railcraft/slab/38.png deleted file mode 100644 index 937e7315a4..0000000000 Binary files a/front/public/images/large/Railcraft/slab/38.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/39.png b/front/public/images/large/Railcraft/slab/39.png deleted file mode 100644 index 6961362607..0000000000 Binary files a/front/public/images/large/Railcraft/slab/39.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/4.png b/front/public/images/large/Railcraft/slab/4.png deleted file mode 100644 index 2d96f66a9f..0000000000 Binary files a/front/public/images/large/Railcraft/slab/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/40.png b/front/public/images/large/Railcraft/slab/40.png deleted file mode 100644 index 92a4a7f1d6..0000000000 Binary files a/front/public/images/large/Railcraft/slab/40.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/41.png b/front/public/images/large/Railcraft/slab/41.png deleted file mode 100644 index 1a3b32d273..0000000000 Binary files a/front/public/images/large/Railcraft/slab/41.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/42.png b/front/public/images/large/Railcraft/slab/42.png deleted file mode 100644 index bd6cf15515..0000000000 Binary files a/front/public/images/large/Railcraft/slab/42.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/43.png b/front/public/images/large/Railcraft/slab/43.png deleted file mode 100644 index b2c5d8ee0c..0000000000 Binary files a/front/public/images/large/Railcraft/slab/43.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/5.png b/front/public/images/large/Railcraft/slab/5.png deleted file mode 100644 index 03e03c7c9e..0000000000 Binary files a/front/public/images/large/Railcraft/slab/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/6.png b/front/public/images/large/Railcraft/slab/6.png deleted file mode 100644 index 9080c42c12..0000000000 Binary files a/front/public/images/large/Railcraft/slab/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/7.png b/front/public/images/large/Railcraft/slab/7.png deleted file mode 100644 index 483a3a7ac9..0000000000 Binary files a/front/public/images/large/Railcraft/slab/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/8.png b/front/public/images/large/Railcraft/slab/8.png deleted file mode 100644 index d3431f6393..0000000000 Binary files a/front/public/images/large/Railcraft/slab/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/slab/9.png b/front/public/images/large/Railcraft/slab/9.png deleted file mode 100644 index 9ae5102a3f..0000000000 Binary files a/front/public/images/large/Railcraft/slab/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/0.png b/front/public/images/large/Railcraft/stair/0.png deleted file mode 100644 index 33e8321861..0000000000 Binary files a/front/public/images/large/Railcraft/stair/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/1.png b/front/public/images/large/Railcraft/stair/1.png deleted file mode 100644 index f4d58e2b64..0000000000 Binary files a/front/public/images/large/Railcraft/stair/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/10.png b/front/public/images/large/Railcraft/stair/10.png deleted file mode 100644 index a63abc2fb8..0000000000 Binary files a/front/public/images/large/Railcraft/stair/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/11.png b/front/public/images/large/Railcraft/stair/11.png deleted file mode 100644 index 5d38faf305..0000000000 Binary files a/front/public/images/large/Railcraft/stair/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/12.png b/front/public/images/large/Railcraft/stair/12.png deleted file mode 100644 index c7dda59ff0..0000000000 Binary files a/front/public/images/large/Railcraft/stair/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/13.png b/front/public/images/large/Railcraft/stair/13.png deleted file mode 100644 index 8cb52548b3..0000000000 Binary files a/front/public/images/large/Railcraft/stair/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/14.png b/front/public/images/large/Railcraft/stair/14.png deleted file mode 100644 index ab349963e4..0000000000 Binary files a/front/public/images/large/Railcraft/stair/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/15.png b/front/public/images/large/Railcraft/stair/15.png deleted file mode 100644 index 146e69d6a9..0000000000 Binary files a/front/public/images/large/Railcraft/stair/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/16.png b/front/public/images/large/Railcraft/stair/16.png deleted file mode 100644 index 65abf8c8b2..0000000000 Binary files a/front/public/images/large/Railcraft/stair/16.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/17.png b/front/public/images/large/Railcraft/stair/17.png deleted file mode 100644 index efc4881de1..0000000000 Binary files a/front/public/images/large/Railcraft/stair/17.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/18.png b/front/public/images/large/Railcraft/stair/18.png deleted file mode 100644 index 0a413e0639..0000000000 Binary files a/front/public/images/large/Railcraft/stair/18.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/19.png b/front/public/images/large/Railcraft/stair/19.png deleted file mode 100644 index 1c4bfeb80b..0000000000 Binary files a/front/public/images/large/Railcraft/stair/19.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/2.png b/front/public/images/large/Railcraft/stair/2.png deleted file mode 100644 index 1b937956f7..0000000000 Binary files a/front/public/images/large/Railcraft/stair/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/20.png b/front/public/images/large/Railcraft/stair/20.png deleted file mode 100644 index e73548b7eb..0000000000 Binary files a/front/public/images/large/Railcraft/stair/20.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/21.png b/front/public/images/large/Railcraft/stair/21.png deleted file mode 100644 index 1188c4c8b1..0000000000 Binary files a/front/public/images/large/Railcraft/stair/21.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/22.png b/front/public/images/large/Railcraft/stair/22.png deleted file mode 100644 index 9ed45d163c..0000000000 Binary files a/front/public/images/large/Railcraft/stair/22.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/23.png b/front/public/images/large/Railcraft/stair/23.png deleted file mode 100644 index 9aa23fb31b..0000000000 Binary files a/front/public/images/large/Railcraft/stair/23.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/24.png b/front/public/images/large/Railcraft/stair/24.png deleted file mode 100644 index e04918004d..0000000000 Binary files a/front/public/images/large/Railcraft/stair/24.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/25.png b/front/public/images/large/Railcraft/stair/25.png deleted file mode 100644 index db621c6b55..0000000000 Binary files a/front/public/images/large/Railcraft/stair/25.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/26.png b/front/public/images/large/Railcraft/stair/26.png deleted file mode 100644 index be3bd0d1c0..0000000000 Binary files a/front/public/images/large/Railcraft/stair/26.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/27.png b/front/public/images/large/Railcraft/stair/27.png deleted file mode 100644 index 0c0bff6e3f..0000000000 Binary files a/front/public/images/large/Railcraft/stair/27.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/28.png b/front/public/images/large/Railcraft/stair/28.png deleted file mode 100644 index 0310e52238..0000000000 Binary files a/front/public/images/large/Railcraft/stair/28.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/29.png b/front/public/images/large/Railcraft/stair/29.png deleted file mode 100644 index 6b5ffa9aee..0000000000 Binary files a/front/public/images/large/Railcraft/stair/29.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/3.png b/front/public/images/large/Railcraft/stair/3.png deleted file mode 100644 index 04f9490017..0000000000 Binary files a/front/public/images/large/Railcraft/stair/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/30.png b/front/public/images/large/Railcraft/stair/30.png deleted file mode 100644 index afaf85afd0..0000000000 Binary files a/front/public/images/large/Railcraft/stair/30.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/31.png b/front/public/images/large/Railcraft/stair/31.png deleted file mode 100644 index b0da546ce0..0000000000 Binary files a/front/public/images/large/Railcraft/stair/31.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/32.png b/front/public/images/large/Railcraft/stair/32.png deleted file mode 100644 index 5d866de6e8..0000000000 Binary files a/front/public/images/large/Railcraft/stair/32.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/33.png b/front/public/images/large/Railcraft/stair/33.png deleted file mode 100644 index 2a92278b75..0000000000 Binary files a/front/public/images/large/Railcraft/stair/33.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/34.png b/front/public/images/large/Railcraft/stair/34.png deleted file mode 100644 index 6e9b183802..0000000000 Binary files a/front/public/images/large/Railcraft/stair/34.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/35.png b/front/public/images/large/Railcraft/stair/35.png deleted file mode 100644 index 32c5dab8ae..0000000000 Binary files a/front/public/images/large/Railcraft/stair/35.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/36.png b/front/public/images/large/Railcraft/stair/36.png deleted file mode 100644 index d3a1f40b1a..0000000000 Binary files a/front/public/images/large/Railcraft/stair/36.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/37.png b/front/public/images/large/Railcraft/stair/37.png deleted file mode 100644 index 42185488a8..0000000000 Binary files a/front/public/images/large/Railcraft/stair/37.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/38.png b/front/public/images/large/Railcraft/stair/38.png deleted file mode 100644 index a7e89fe9a0..0000000000 Binary files a/front/public/images/large/Railcraft/stair/38.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/39.png b/front/public/images/large/Railcraft/stair/39.png deleted file mode 100644 index cf622b08fb..0000000000 Binary files a/front/public/images/large/Railcraft/stair/39.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/4.png b/front/public/images/large/Railcraft/stair/4.png deleted file mode 100644 index 61793ff0aa..0000000000 Binary files a/front/public/images/large/Railcraft/stair/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/40.png b/front/public/images/large/Railcraft/stair/40.png deleted file mode 100644 index 8426a21c73..0000000000 Binary files a/front/public/images/large/Railcraft/stair/40.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/41.png b/front/public/images/large/Railcraft/stair/41.png deleted file mode 100644 index ddf26f2983..0000000000 Binary files a/front/public/images/large/Railcraft/stair/41.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/42.png b/front/public/images/large/Railcraft/stair/42.png deleted file mode 100644 index 41ed65210c..0000000000 Binary files a/front/public/images/large/Railcraft/stair/42.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/43.png b/front/public/images/large/Railcraft/stair/43.png deleted file mode 100644 index 56768a41db..0000000000 Binary files a/front/public/images/large/Railcraft/stair/43.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/5.png b/front/public/images/large/Railcraft/stair/5.png deleted file mode 100644 index 84472ba378..0000000000 Binary files a/front/public/images/large/Railcraft/stair/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/6.png b/front/public/images/large/Railcraft/stair/6.png deleted file mode 100644 index c9188fc634..0000000000 Binary files a/front/public/images/large/Railcraft/stair/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/7.png b/front/public/images/large/Railcraft/stair/7.png deleted file mode 100644 index 782457d564..0000000000 Binary files a/front/public/images/large/Railcraft/stair/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/8.png b/front/public/images/large/Railcraft/stair/8.png deleted file mode 100644 index b0e099899a..0000000000 Binary files a/front/public/images/large/Railcraft/stair/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/stair/9.png b/front/public/images/large/Railcraft/stair/9.png deleted file mode 100644 index 29850527f0..0000000000 Binary files a/front/public/images/large/Railcraft/stair/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.crowbar.magic/0.png b/front/public/images/large/Railcraft/tool.crowbar.magic/0.png deleted file mode 100644 index 09490ba18d..0000000000 Binary files a/front/public/images/large/Railcraft/tool.crowbar.magic/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.crowbar.reinforced/0.png b/front/public/images/large/Railcraft/tool.crowbar.reinforced/0.png deleted file mode 100644 index a4546f2f62..0000000000 Binary files a/front/public/images/large/Railcraft/tool.crowbar.reinforced/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.crowbar.void/0.png b/front/public/images/large/Railcraft/tool.crowbar.void/0.png deleted file mode 100644 index eb039e4251..0000000000 Binary files a/front/public/images/large/Railcraft/tool.crowbar.void/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.crowbar/0.png b/front/public/images/large/Railcraft/tool.crowbar/0.png deleted file mode 100644 index 80f2735778..0000000000 Binary files a/front/public/images/large/Railcraft/tool.crowbar/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.electric.meter/0.png b/front/public/images/large/Railcraft/tool.electric.meter/0.png deleted file mode 100644 index 22877f7662..0000000000 Binary files a/front/public/images/large/Railcraft/tool.electric.meter/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.magnifying.glass/0.png b/front/public/images/large/Railcraft/tool.magnifying.glass/0.png deleted file mode 100644 index 88f9308eda..0000000000 Binary files a/front/public/images/large/Railcraft/tool.magnifying.glass/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.notepad/0.png b/front/public/images/large/Railcraft/tool.notepad/0.png deleted file mode 100644 index f7a5aa0ee6..0000000000 Binary files a/front/public/images/large/Railcraft/tool.notepad/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.signal.label/0.png b/front/public/images/large/Railcraft/tool.signal.label/0.png deleted file mode 100644 index f589d3ae09..0000000000 Binary files a/front/public/images/large/Railcraft/tool.signal.label/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.signal.tuner/0.png b/front/public/images/large/Railcraft/tool.signal.tuner/0.png deleted file mode 100644 index 760c6d367f..0000000000 Binary files a/front/public/images/large/Railcraft/tool.signal.tuner/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.steel.axe/0.png b/front/public/images/large/Railcraft/tool.steel.axe/0.png deleted file mode 100644 index b46d4df2b8..0000000000 Binary files a/front/public/images/large/Railcraft/tool.steel.axe/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.steel.hoe/0.png b/front/public/images/large/Railcraft/tool.steel.hoe/0.png deleted file mode 100644 index cdeb1ff7be..0000000000 Binary files a/front/public/images/large/Railcraft/tool.steel.hoe/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.steel.pickaxe/0.png b/front/public/images/large/Railcraft/tool.steel.pickaxe/0.png deleted file mode 100644 index 92e6cee85d..0000000000 Binary files a/front/public/images/large/Railcraft/tool.steel.pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.steel.shears/0.png b/front/public/images/large/Railcraft/tool.steel.shears/0.png deleted file mode 100644 index 5f0af8ed2a..0000000000 Binary files a/front/public/images/large/Railcraft/tool.steel.shears/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.steel.shovel/0.png b/front/public/images/large/Railcraft/tool.steel.shovel/0.png deleted file mode 100644 index 6dcfd6d939..0000000000 Binary files a/front/public/images/large/Railcraft/tool.steel.shovel/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.steel.sword/0.png b/front/public/images/large/Railcraft/tool.steel.sword/0.png deleted file mode 100644 index 3c1296dbcc..0000000000 Binary files a/front/public/images/large/Railcraft/tool.steel.sword/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.surveyor/0.png b/front/public/images/large/Railcraft/tool.surveyor/0.png deleted file mode 100644 index 75834d7ce4..0000000000 Binary files a/front/public/images/large/Railcraft/tool.surveyor/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/tool.whistle.tuner/0.png b/front/public/images/large/Railcraft/tool.whistle.tuner/0.png deleted file mode 100644 index 618b2b9748..0000000000 Binary files a/front/public/images/large/Railcraft/tool.whistle.tuner/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track.elevator/0.png b/front/public/images/large/Railcraft/track.elevator/0.png deleted file mode 100644 index 20712f9012..0000000000 Binary files a/front/public/images/large/Railcraft/track.elevator/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/0.png b/front/public/images/large/Railcraft/track/0.png deleted file mode 100644 index 6b07206de1..0000000000 Binary files a/front/public/images/large/Railcraft/track/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/10488.png b/front/public/images/large/Railcraft/track/10488.png deleted file mode 100644 index 6fe2fcc2ce..0000000000 Binary files a/front/public/images/large/Railcraft/track/10488.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/16093.png b/front/public/images/large/Railcraft/track/16093.png deleted file mode 100644 index 0bb1f6b3b2..0000000000 Binary files a/front/public/images/large/Railcraft/track/16093.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/19746.png b/front/public/images/large/Railcraft/track/19746.png deleted file mode 100644 index fa34b69f3b..0000000000 Binary files a/front/public/images/large/Railcraft/track/19746.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/19986.png b/front/public/images/large/Railcraft/track/19986.png deleted file mode 100644 index aa99f155e2..0000000000 Binary files a/front/public/images/large/Railcraft/track/19986.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/20176.png b/front/public/images/large/Railcraft/track/20176.png deleted file mode 100644 index 81ce7c0293..0000000000 Binary files a/front/public/images/large/Railcraft/track/20176.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/2144.png b/front/public/images/large/Railcraft/track/2144.png deleted file mode 100644 index 7b2338c647..0000000000 Binary files a/front/public/images/large/Railcraft/track/2144.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/2264.png b/front/public/images/large/Railcraft/track/2264.png deleted file mode 100644 index abac7fb369..0000000000 Binary files a/front/public/images/large/Railcraft/track/2264.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/23575.png b/front/public/images/large/Railcraft/track/23575.png deleted file mode 100644 index f0794c5229..0000000000 Binary files a/front/public/images/large/Railcraft/track/23575.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/26865.png b/front/public/images/large/Railcraft/track/26865.png deleted file mode 100644 index 457ada3980..0000000000 Binary files a/front/public/images/large/Railcraft/track/26865.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/30516.png b/front/public/images/large/Railcraft/track/30516.png deleted file mode 100644 index b7f60d4e14..0000000000 Binary files a/front/public/images/large/Railcraft/track/30516.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/30946.png b/front/public/images/large/Railcraft/track/30946.png deleted file mode 100644 index 46314ef441..0000000000 Binary files a/front/public/images/large/Railcraft/track/30946.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/32363.png b/front/public/images/large/Railcraft/track/32363.png deleted file mode 100644 index 389c931115..0000000000 Binary files a/front/public/images/large/Railcraft/track/32363.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/4767.png b/front/public/images/large/Railcraft/track/4767.png deleted file mode 100644 index 0eacb75bbb..0000000000 Binary files a/front/public/images/large/Railcraft/track/4767.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/736.png b/front/public/images/large/Railcraft/track/736.png deleted file mode 100644 index aa2317d127..0000000000 Binary files a/front/public/images/large/Railcraft/track/736.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/764.png b/front/public/images/large/Railcraft/track/764.png deleted file mode 100644 index a2fd56794f..0000000000 Binary files a/front/public/images/large/Railcraft/track/764.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/7916.png b/front/public/images/large/Railcraft/track/7916.png deleted file mode 100644 index c8e8fb2065..0000000000 Binary files a/front/public/images/large/Railcraft/track/7916.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/8103.png b/front/public/images/large/Railcraft/track/8103.png deleted file mode 100644 index b39ec58a3f..0000000000 Binary files a/front/public/images/large/Railcraft/track/8103.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/track/816.png b/front/public/images/large/Railcraft/track/816.png deleted file mode 100644 index 7d8882d110..0000000000 Binary files a/front/public/images/large/Railcraft/track/816.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/upgrade.lapotron/0.png b/front/public/images/large/Railcraft/upgrade.lapotron/0.png deleted file mode 100644 index a5ebf082b4..0000000000 Binary files a/front/public/images/large/Railcraft/upgrade.lapotron/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/0.png b/front/public/images/large/Railcraft/wall.alpha/0.png deleted file mode 100644 index 423e18deec..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/1.png b/front/public/images/large/Railcraft/wall.alpha/1.png deleted file mode 100644 index 7ea0bd1cfe..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/10.png b/front/public/images/large/Railcraft/wall.alpha/10.png deleted file mode 100644 index 83697b2d24..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/10.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/11.png b/front/public/images/large/Railcraft/wall.alpha/11.png deleted file mode 100644 index 98f50226ff..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/11.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/12.png b/front/public/images/large/Railcraft/wall.alpha/12.png deleted file mode 100644 index cde9cd8b95..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/12.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/13.png b/front/public/images/large/Railcraft/wall.alpha/13.png deleted file mode 100644 index 085a2d0f99..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/13.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/14.png b/front/public/images/large/Railcraft/wall.alpha/14.png deleted file mode 100644 index f8b2ff1e4a..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/14.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/15.png b/front/public/images/large/Railcraft/wall.alpha/15.png deleted file mode 100644 index a902e9c667..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/15.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/2.png b/front/public/images/large/Railcraft/wall.alpha/2.png deleted file mode 100644 index 8701064102..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/3.png b/front/public/images/large/Railcraft/wall.alpha/3.png deleted file mode 100644 index 68140c43ff..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/4.png b/front/public/images/large/Railcraft/wall.alpha/4.png deleted file mode 100644 index e61dc19159..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/5.png b/front/public/images/large/Railcraft/wall.alpha/5.png deleted file mode 100644 index 3ecf0c4efe..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/6.png b/front/public/images/large/Railcraft/wall.alpha/6.png deleted file mode 100644 index a15e0654b6..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/7.png b/front/public/images/large/Railcraft/wall.alpha/7.png deleted file mode 100644 index dcd72ddb2a..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/8.png b/front/public/images/large/Railcraft/wall.alpha/8.png deleted file mode 100644 index 0e449c427f..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.alpha/9.png b/front/public/images/large/Railcraft/wall.alpha/9.png deleted file mode 100644 index bc5b17c7d7..0000000000 Binary files a/front/public/images/large/Railcraft/wall.alpha/9.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/0.png b/front/public/images/large/Railcraft/wall.beta/0.png deleted file mode 100644 index b28298d276..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/0.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/1.png b/front/public/images/large/Railcraft/wall.beta/1.png deleted file mode 100644 index a7cf9908ab..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/1.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/2.png b/front/public/images/large/Railcraft/wall.beta/2.png deleted file mode 100644 index f240256eb8..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/2.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/3.png b/front/public/images/large/Railcraft/wall.beta/3.png deleted file mode 100644 index a3165409d1..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/3.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/4.png b/front/public/images/large/Railcraft/wall.beta/4.png deleted file mode 100644 index 326aa8ab1c..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/4.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/5.png b/front/public/images/large/Railcraft/wall.beta/5.png deleted file mode 100644 index 48022db6c1..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/5.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/6.png b/front/public/images/large/Railcraft/wall.beta/6.png deleted file mode 100644 index 98f742b645..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/6.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/7.png b/front/public/images/large/Railcraft/wall.beta/7.png deleted file mode 100644 index 026b47053a..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/7.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/wall.beta/8.png b/front/public/images/large/Railcraft/wall.beta/8.png deleted file mode 100644 index 0b901f3dff..0000000000 Binary files a/front/public/images/large/Railcraft/wall.beta/8.png and /dev/null differ diff --git a/front/public/images/large/Railcraft/worldlogic/0.png b/front/public/images/large/Railcraft/worldlogic/0.png deleted file mode 100644 index c4392f9e5d..0000000000 Binary files a/front/public/images/large/Railcraft/worldlogic/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/advancedFluidDisplay/0.png b/front/public/images/large/RandomThings/advancedFluidDisplay/0.png deleted file mode 100644 index a4dab8eb80..0000000000 Binary files a/front/public/images/large/RandomThings/advancedFluidDisplay/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/advancedItemCollector/0.png b/front/public/images/large/RandomThings/advancedItemCollector/0.png deleted file mode 100644 index 44f6ccae30..0000000000 Binary files a/front/public/images/large/RandomThings/advancedItemCollector/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/bloodMoonSensor/0.png b/front/public/images/large/RandomThings/bloodMoonSensor/0.png deleted file mode 100644 index c1ab72f443..0000000000 Binary files a/front/public/images/large/RandomThings/bloodMoonSensor/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/bloodStone/0.png b/front/public/images/large/RandomThings/bloodStone/0.png deleted file mode 100644 index f728c73e8b..0000000000 Binary files a/front/public/images/large/RandomThings/bloodStone/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/creativePlayerInterface/0.png b/front/public/images/large/RandomThings/creativePlayerInterface/0.png deleted file mode 100644 index 0cc2e47da4..0000000000 Binary files a/front/public/images/large/RandomThings/creativePlayerInterface/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/dropFilter/0.png b/front/public/images/large/RandomThings/dropFilter/0.png deleted file mode 100644 index 425a4635ee..0000000000 Binary files a/front/public/images/large/RandomThings/dropFilter/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/dropFilter/1.png b/front/public/images/large/RandomThings/dropFilter/1.png deleted file mode 100644 index a201bf0c5a..0000000000 Binary files a/front/public/images/large/RandomThings/dropFilter/1.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/dyeingMachine/0.png b/front/public/images/large/RandomThings/dyeingMachine/0.png deleted file mode 100644 index 5e43db0b25..0000000000 Binary files a/front/public/images/large/RandomThings/dyeingMachine/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/enderEnergyDistributor/0.png b/front/public/images/large/RandomThings/enderEnergyDistributor/0.png deleted file mode 100644 index b2733ae62a..0000000000 Binary files a/front/public/images/large/RandomThings/enderEnergyDistributor/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/energyDistributor/0.png b/front/public/images/large/RandomThings/energyDistributor/0.png deleted file mode 100644 index 0039437337..0000000000 Binary files a/front/public/images/large/RandomThings/energyDistributor/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/fertilizedDirt/0.png b/front/public/images/large/RandomThings/fertilizedDirt/0.png deleted file mode 100644 index 0021640812..0000000000 Binary files a/front/public/images/large/RandomThings/fertilizedDirt/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/fertilizedDirt_tilled/0.png b/front/public/images/large/RandomThings/fertilizedDirt_tilled/0.png deleted file mode 100644 index bfef2b62ba..0000000000 Binary files a/front/public/images/large/RandomThings/fertilizedDirt_tilled/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/filter/0.png b/front/public/images/large/RandomThings/filter/0.png deleted file mode 100644 index fd20a69d6a..0000000000 Binary files a/front/public/images/large/RandomThings/filter/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/filter/1.png b/front/public/images/large/RandomThings/filter/1.png deleted file mode 100644 index c78fac4c3a..0000000000 Binary files a/front/public/images/large/RandomThings/filter/1.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/filter/2.png b/front/public/images/large/RandomThings/filter/2.png deleted file mode 100644 index 5b8eff3b3d..0000000000 Binary files a/front/public/images/large/RandomThings/filter/2.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/filter/3.png b/front/public/images/large/RandomThings/filter/3.png deleted file mode 100644 index 34eed1c8a2..0000000000 Binary files a/front/public/images/large/RandomThings/filter/3.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/fluidDisplay/0.png b/front/public/images/large/RandomThings/fluidDisplay/0.png deleted file mode 100644 index 51b0939117..0000000000 Binary files a/front/public/images/large/RandomThings/fluidDisplay/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/imbue/0.png b/front/public/images/large/RandomThings/imbue/0.png deleted file mode 100644 index 81e2ebeeb5..0000000000 Binary files a/front/public/images/large/RandomThings/imbue/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/imbue/1.png b/front/public/images/large/RandomThings/imbue/1.png deleted file mode 100644 index 4c000625ae..0000000000 Binary files a/front/public/images/large/RandomThings/imbue/1.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/imbue/2.png b/front/public/images/large/RandomThings/imbue/2.png deleted file mode 100644 index cd7a9d3c75..0000000000 Binary files a/front/public/images/large/RandomThings/imbue/2.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/imbue/3.png b/front/public/images/large/RandomThings/imbue/3.png deleted file mode 100644 index 6703101834..0000000000 Binary files a/front/public/images/large/RandomThings/imbue/3.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/imbue/4.png b/front/public/images/large/RandomThings/imbue/4.png deleted file mode 100644 index 3eb84bf6ec..0000000000 Binary files a/front/public/images/large/RandomThings/imbue/4.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/imbue/5.png b/front/public/images/large/RandomThings/imbue/5.png deleted file mode 100644 index 9e89ce3352..0000000000 Binary files a/front/public/images/large/RandomThings/imbue/5.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/imbuingStation/0.png b/front/public/images/large/RandomThings/imbuingStation/0.png deleted file mode 100644 index 33a13383f9..0000000000 Binary files a/front/public/images/large/RandomThings/imbuingStation/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/0.png b/front/public/images/large/RandomThings/ingredient/0.png deleted file mode 100644 index 790bc4a7cf..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/1.png b/front/public/images/large/RandomThings/ingredient/1.png deleted file mode 100644 index 42979ff748..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/1.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/2.png b/front/public/images/large/RandomThings/ingredient/2.png deleted file mode 100644 index 7283fb6776..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/2.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/3.png b/front/public/images/large/RandomThings/ingredient/3.png deleted file mode 100644 index e50a5052bb..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/3.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/4.png b/front/public/images/large/RandomThings/ingredient/4.png deleted file mode 100644 index 0c5afd728b..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/4.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/5.png b/front/public/images/large/RandomThings/ingredient/5.png deleted file mode 100644 index f27258e49c..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/5.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/6.png b/front/public/images/large/RandomThings/ingredient/6.png deleted file mode 100644 index 259e71d0b1..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/6.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/ingredient/7.png b/front/public/images/large/RandomThings/ingredient/7.png deleted file mode 100644 index 7741dfd672..0000000000 Binary files a/front/public/images/large/RandomThings/ingredient/7.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/itemCollector/0.png b/front/public/images/large/RandomThings/itemCollector/0.png deleted file mode 100644 index a3cffb4e28..0000000000 Binary files a/front/public/images/large/RandomThings/itemCollector/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/lapisLamp/0.png b/front/public/images/large/RandomThings/lapisLamp/0.png deleted file mode 100644 index 88a142f7ad..0000000000 Binary files a/front/public/images/large/RandomThings/lapisLamp/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/moonSensor/0.png b/front/public/images/large/RandomThings/moonSensor/0.png deleted file mode 100644 index b8047eb194..0000000000 Binary files a/front/public/images/large/RandomThings/moonSensor/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/notificationInterface/0.png b/front/public/images/large/RandomThings/notificationInterface/0.png deleted file mode 100644 index efaaba2818..0000000000 Binary files a/front/public/images/large/RandomThings/notificationInterface/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/onlineDetector/0.png b/front/public/images/large/RandomThings/onlineDetector/0.png deleted file mode 100644 index 978c8bf829..0000000000 Binary files a/front/public/images/large/RandomThings/onlineDetector/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/opSpectreKey/0.png b/front/public/images/large/RandomThings/opSpectreKey/0.png deleted file mode 100644 index 73f0209aed..0000000000 Binary files a/front/public/images/large/RandomThings/opSpectreKey/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/playerinterface/0.png b/front/public/images/large/RandomThings/playerinterface/0.png deleted file mode 100644 index 1188145e9f..0000000000 Binary files a/front/public/images/large/RandomThings/playerinterface/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/0.png b/front/public/images/large/RandomThings/spectreBlock/0.png deleted file mode 100644 index 7588f40d01..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/1.png b/front/public/images/large/RandomThings/spectreBlock/1.png deleted file mode 100644 index d963747b08..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/1.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/10.png b/front/public/images/large/RandomThings/spectreBlock/10.png deleted file mode 100644 index 3ab40a2c92..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/10.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/11.png b/front/public/images/large/RandomThings/spectreBlock/11.png deleted file mode 100644 index 2530f0904e..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/11.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/12.png b/front/public/images/large/RandomThings/spectreBlock/12.png deleted file mode 100644 index 092f337fb8..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/12.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/13.png b/front/public/images/large/RandomThings/spectreBlock/13.png deleted file mode 100644 index 83b7a99229..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/13.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/14.png b/front/public/images/large/RandomThings/spectreBlock/14.png deleted file mode 100644 index b26427522b..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/14.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/15.png b/front/public/images/large/RandomThings/spectreBlock/15.png deleted file mode 100644 index f4eb67b05b..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/15.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/2.png b/front/public/images/large/RandomThings/spectreBlock/2.png deleted file mode 100644 index 3baa1c1f23..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/2.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/3.png b/front/public/images/large/RandomThings/spectreBlock/3.png deleted file mode 100644 index 70df6dd2d1..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/3.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/4.png b/front/public/images/large/RandomThings/spectreBlock/4.png deleted file mode 100644 index 1399b8a559..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/4.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/5.png b/front/public/images/large/RandomThings/spectreBlock/5.png deleted file mode 100644 index dc84ea25bb..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/5.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/6.png b/front/public/images/large/RandomThings/spectreBlock/6.png deleted file mode 100644 index 557be44520..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/6.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/7.png b/front/public/images/large/RandomThings/spectreBlock/7.png deleted file mode 100644 index 75a1589686..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/7.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/8.png b/front/public/images/large/RandomThings/spectreBlock/8.png deleted file mode 100644 index 672840e102..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/8.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBlock/9.png b/front/public/images/large/RandomThings/spectreBlock/9.png deleted file mode 100644 index 02c20cd943..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBlock/9.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreBoots/0.png b/front/public/images/large/RandomThings/spectreBoots/0.png deleted file mode 100644 index 2b1c8aa7f0..0000000000 Binary files a/front/public/images/large/RandomThings/spectreBoots/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreChestplate/0.png b/front/public/images/large/RandomThings/spectreChestplate/0.png deleted file mode 100644 index 86022cd17b..0000000000 Binary files a/front/public/images/large/RandomThings/spectreChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreGlass/0.png b/front/public/images/large/RandomThings/spectreGlass/0.png deleted file mode 100644 index 61ec108121..0000000000 Binary files a/front/public/images/large/RandomThings/spectreGlass/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreHelmet/0.png b/front/public/images/large/RandomThings/spectreHelmet/0.png deleted file mode 100644 index 7f813f300c..0000000000 Binary files a/front/public/images/large/RandomThings/spectreHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreKey/0.png b/front/public/images/large/RandomThings/spectreKey/0.png deleted file mode 100644 index 43e0bfb17e..0000000000 Binary files a/front/public/images/large/RandomThings/spectreKey/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreLeggings/0.png b/front/public/images/large/RandomThings/spectreLeggings/0.png deleted file mode 100644 index 6c104f5d65..0000000000 Binary files a/front/public/images/large/RandomThings/spectreLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/spectreSword/0.png b/front/public/images/large/RandomThings/spectreSword/0.png deleted file mode 100644 index 7cf0bbd1c6..0000000000 Binary files a/front/public/images/large/RandomThings/spectreSword/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/voidStone/0.png b/front/public/images/large/RandomThings/voidStone/0.png deleted file mode 100644 index 94bd3ec9a9..0000000000 Binary files a/front/public/images/large/RandomThings/voidStone/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/whitestone/0.png b/front/public/images/large/RandomThings/whitestone/0.png deleted file mode 100644 index 042737d40d..0000000000 Binary files a/front/public/images/large/RandomThings/whitestone/0.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/whitestone/1.png b/front/public/images/large/RandomThings/whitestone/1.png deleted file mode 100644 index 9ed35c6ea5..0000000000 Binary files a/front/public/images/large/RandomThings/whitestone/1.png and /dev/null differ diff --git a/front/public/images/large/RandomThings/wirelessLever/0.png b/front/public/images/large/RandomThings/wirelessLever/0.png deleted file mode 100644 index f7557ab922..0000000000 Binary files a/front/public/images/large/RandomThings/wirelessLever/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/ic2Capacitor/0.png b/front/public/images/large/SGCraft/ic2Capacitor/0.png deleted file mode 100644 index 56c3fcfbca..0000000000 Binary files a/front/public/images/large/SGCraft/ic2Capacitor/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/ic2PowerUnit/0.png b/front/public/images/large/SGCraft/ic2PowerUnit/0.png deleted file mode 100644 index c588039f1a..0000000000 Binary files a/front/public/images/large/SGCraft/ic2PowerUnit/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/naquadah/0.png b/front/public/images/large/SGCraft/naquadah/0.png deleted file mode 100644 index a6b3efb9f8..0000000000 Binary files a/front/public/images/large/SGCraft/naquadah/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/naquadahBlock/0.png b/front/public/images/large/SGCraft/naquadahBlock/0.png deleted file mode 100644 index c955d0a352..0000000000 Binary files a/front/public/images/large/SGCraft/naquadahBlock/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/naquadahIngot/0.png b/front/public/images/large/SGCraft/naquadahIngot/0.png deleted file mode 100644 index e03f3f061e..0000000000 Binary files a/front/public/images/large/SGCraft/naquadahIngot/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/naquadahOre/0.png b/front/public/images/large/SGCraft/naquadahOre/0.png deleted file mode 100644 index a45fe32ada..0000000000 Binary files a/front/public/images/large/SGCraft/naquadahOre/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/ocInterface/0.png b/front/public/images/large/SGCraft/ocInterface/0.png deleted file mode 100644 index 1b31bde60b..0000000000 Binary files a/front/public/images/large/SGCraft/ocInterface/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/rfPowerUnit/0.png b/front/public/images/large/SGCraft/rfPowerUnit/0.png deleted file mode 100644 index 95c46f2537..0000000000 Binary files a/front/public/images/large/SGCraft/rfPowerUnit/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/sgChevronUpgrade/0.png b/front/public/images/large/SGCraft/sgChevronUpgrade/0.png deleted file mode 100644 index 9bc7e9579a..0000000000 Binary files a/front/public/images/large/SGCraft/sgChevronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/sgControllerCrystal/0.png b/front/public/images/large/SGCraft/sgControllerCrystal/0.png deleted file mode 100644 index b8ef5671f4..0000000000 Binary files a/front/public/images/large/SGCraft/sgControllerCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/sgCoreCrystal/0.png b/front/public/images/large/SGCraft/sgCoreCrystal/0.png deleted file mode 100644 index 715625170d..0000000000 Binary files a/front/public/images/large/SGCraft/sgCoreCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/sgIrisBlade/0.png b/front/public/images/large/SGCraft/sgIrisBlade/0.png deleted file mode 100644 index 0c660bf7ce..0000000000 Binary files a/front/public/images/large/SGCraft/sgIrisBlade/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/sgIrisUpgrade/0.png b/front/public/images/large/SGCraft/sgIrisUpgrade/0.png deleted file mode 100644 index 5ab637a320..0000000000 Binary files a/front/public/images/large/SGCraft/sgIrisUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/stargateBase/0.png b/front/public/images/large/SGCraft/stargateBase/0.png deleted file mode 100644 index 481745e357..0000000000 Binary files a/front/public/images/large/SGCraft/stargateBase/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/stargateController/0.png b/front/public/images/large/SGCraft/stargateController/0.png deleted file mode 100644 index fde238b1ac..0000000000 Binary files a/front/public/images/large/SGCraft/stargateController/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/stargateRing/0.png b/front/public/images/large/SGCraft/stargateRing/0.png deleted file mode 100644 index 435be3c68f..0000000000 Binary files a/front/public/images/large/SGCraft/stargateRing/0.png and /dev/null differ diff --git a/front/public/images/large/SGCraft/stargateRing/1.png b/front/public/images/large/SGCraft/stargateRing/1.png deleted file mode 100644 index da514454cf..0000000000 Binary files a/front/public/images/large/SGCraft/stargateRing/1.png and /dev/null differ diff --git a/front/public/images/large/SpiceOfLife/bookfoodjournal/0.png b/front/public/images/large/SpiceOfLife/bookfoodjournal/0.png deleted file mode 100644 index 1fe6e294ed..0000000000 Binary files a/front/public/images/large/SpiceOfLife/bookfoodjournal/0.png and /dev/null differ diff --git a/front/public/images/large/SpiceOfLife/lunchbag/0.png b/front/public/images/large/SpiceOfLife/lunchbag/0.png deleted file mode 100644 index 8721a9206c..0000000000 Binary files a/front/public/images/large/SpiceOfLife/lunchbag/0.png and /dev/null differ diff --git a/front/public/images/large/SpiceOfLife/lunchbox/0.png b/front/public/images/large/SpiceOfLife/lunchbox/0.png deleted file mode 100644 index 2f071c3738..0000000000 Binary files a/front/public/images/large/SpiceOfLife/lunchbox/0.png and /dev/null differ diff --git a/front/public/images/large/StevesAddons/cable_ae/0.png b/front/public/images/large/StevesAddons/cable_ae/0.png deleted file mode 100644 index afd6a8cc49..0000000000 Binary files a/front/public/images/large/StevesAddons/cable_ae/0.png and /dev/null differ diff --git a/front/public/images/large/StevesAddons/cable_rf/0.png b/front/public/images/large/StevesAddons/cable_rf/0.png deleted file mode 100644 index d2fcac3a5e..0000000000 Binary files a/front/public/images/large/StevesAddons/cable_rf/0.png and /dev/null differ diff --git a/front/public/images/large/StevesAddons/duplicator/0.png b/front/public/images/large/StevesAddons/duplicator/0.png deleted file mode 100644 index e498e99090..0000000000 Binary files a/front/public/images/large/StevesAddons/duplicator/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockActivator/0.png b/front/public/images/large/StevesCarts/BlockActivator/0.png deleted file mode 100644 index 3226180c4e..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockActivator/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockAdvDetector/0.png b/front/public/images/large/StevesCarts/BlockAdvDetector/0.png deleted file mode 100644 index 6aebead998..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockAdvDetector/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockCargoManager/0.png b/front/public/images/large/StevesCarts/BlockCargoManager/0.png deleted file mode 100644 index d0628bc2dd..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockCargoManager/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockCartAssembler/0.png b/front/public/images/large/StevesCarts/BlockCartAssembler/0.png deleted file mode 100644 index dfb014f6b8..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockCartAssembler/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockDetector/0.png b/front/public/images/large/StevesCarts/BlockDetector/0.png deleted file mode 100644 index ad62e94e87..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockDetector/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockDetector/1.png b/front/public/images/large/StevesCarts/BlockDetector/1.png deleted file mode 100644 index 0c8562a412..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockDetector/1.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockDetector/2.png b/front/public/images/large/StevesCarts/BlockDetector/2.png deleted file mode 100644 index 316c55f86b..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockDetector/2.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockDetector/3.png b/front/public/images/large/StevesCarts/BlockDetector/3.png deleted file mode 100644 index b4038394f3..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockDetector/3.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockDetector/4.png b/front/public/images/large/StevesCarts/BlockDetector/4.png deleted file mode 100644 index acd0ec4e18..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockDetector/4.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockDistributor/0.png b/front/public/images/large/StevesCarts/BlockDistributor/0.png deleted file mode 100644 index 26a3ce2da7..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockDistributor/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockJunction/0.png b/front/public/images/large/StevesCarts/BlockJunction/0.png deleted file mode 100644 index 75ca1ac0d8..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockJunction/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockLiquidManager/0.png b/front/public/images/large/StevesCarts/BlockLiquidManager/0.png deleted file mode 100644 index 9d30d183c9..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockLiquidManager/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockMetalStorage/0.png b/front/public/images/large/StevesCarts/BlockMetalStorage/0.png deleted file mode 100644 index 081d3b911b..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockMetalStorage/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockMetalStorage/1.png b/front/public/images/large/StevesCarts/BlockMetalStorage/1.png deleted file mode 100644 index da603b80dc..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockMetalStorage/1.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/BlockMetalStorage/2.png b/front/public/images/large/StevesCarts/BlockMetalStorage/2.png deleted file mode 100644 index 643eb84563..0000000000 Binary files a/front/public/images/large/StevesCarts/BlockMetalStorage/2.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/0.png b/front/public/images/large/StevesCarts/CartModule/0.png deleted file mode 100644 index 863dcd94d8..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/1.png b/front/public/images/large/StevesCarts/CartModule/1.png deleted file mode 100644 index b4e8659b5c..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/1.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/10.png b/front/public/images/large/StevesCarts/CartModule/10.png deleted file mode 100644 index f3db82e102..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/10.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/101.png b/front/public/images/large/StevesCarts/CartModule/101.png deleted file mode 100644 index 63be482795..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/101.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/11.png b/front/public/images/large/StevesCarts/CartModule/11.png deleted file mode 100644 index 99e1f71900..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/11.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/12.png b/front/public/images/large/StevesCarts/CartModule/12.png deleted file mode 100644 index 93e32fc25c..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/12.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/13.png b/front/public/images/large/StevesCarts/CartModule/13.png deleted file mode 100644 index 192af6f151..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/13.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/14.png b/front/public/images/large/StevesCarts/CartModule/14.png deleted file mode 100644 index 43b3ff2466..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/14.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/15.png b/front/public/images/large/StevesCarts/CartModule/15.png deleted file mode 100644 index 619de52f9b..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/15.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/16.png b/front/public/images/large/StevesCarts/CartModule/16.png deleted file mode 100644 index 778a6b3bd0..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/16.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/18.png b/front/public/images/large/StevesCarts/CartModule/18.png deleted file mode 100644 index bd6be5ed31..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/18.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/19.png b/front/public/images/large/StevesCarts/CartModule/19.png deleted file mode 100644 index 9e60204c6c..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/19.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/2.png b/front/public/images/large/StevesCarts/CartModule/2.png deleted file mode 100644 index b708c2f59f..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/2.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/20.png b/front/public/images/large/StevesCarts/CartModule/20.png deleted file mode 100644 index fa8666a622..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/20.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/21.png b/front/public/images/large/StevesCarts/CartModule/21.png deleted file mode 100644 index 76794ceed8..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/21.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/22.png b/front/public/images/large/StevesCarts/CartModule/22.png deleted file mode 100644 index 2bdcab51bd..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/22.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/23.png b/front/public/images/large/StevesCarts/CartModule/23.png deleted file mode 100644 index 8e1d9865be..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/23.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/24.png b/front/public/images/large/StevesCarts/CartModule/24.png deleted file mode 100644 index c1f4224948..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/24.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/25.png b/front/public/images/large/StevesCarts/CartModule/25.png deleted file mode 100644 index 736e8b5d5b..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/25.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/26.png b/front/public/images/large/StevesCarts/CartModule/26.png deleted file mode 100644 index f44e982cc4..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/26.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/27.png b/front/public/images/large/StevesCarts/CartModule/27.png deleted file mode 100644 index f6497a6ef7..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/27.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/28.png b/front/public/images/large/StevesCarts/CartModule/28.png deleted file mode 100644 index 0d12acbedf..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/28.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/29.png b/front/public/images/large/StevesCarts/CartModule/29.png deleted file mode 100644 index a0a5564480..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/29.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/3.png b/front/public/images/large/StevesCarts/CartModule/3.png deleted file mode 100644 index fe7a5a818d..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/3.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/30.png b/front/public/images/large/StevesCarts/CartModule/30.png deleted file mode 100644 index 935aefbaad..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/30.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/31.png b/front/public/images/large/StevesCarts/CartModule/31.png deleted file mode 100644 index 6804ab0f92..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/31.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/32.png b/front/public/images/large/StevesCarts/CartModule/32.png deleted file mode 100644 index 2274d6d465..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/32.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/33.png b/front/public/images/large/StevesCarts/CartModule/33.png deleted file mode 100644 index 79c94db9e6..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/33.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/34.png b/front/public/images/large/StevesCarts/CartModule/34.png deleted file mode 100644 index 42cd52cd1b..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/34.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/36.png b/front/public/images/large/StevesCarts/CartModule/36.png deleted file mode 100644 index e499f0e1f5..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/36.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/37.png b/front/public/images/large/StevesCarts/CartModule/37.png deleted file mode 100644 index f67ab68f3b..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/37.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/38.png b/front/public/images/large/StevesCarts/CartModule/38.png deleted file mode 100644 index 398c4feda5..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/38.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/39.png b/front/public/images/large/StevesCarts/CartModule/39.png deleted file mode 100644 index 0f9cc832f1..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/39.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/4.png b/front/public/images/large/StevesCarts/CartModule/4.png deleted file mode 100644 index 8ac4551407..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/4.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/40.png b/front/public/images/large/StevesCarts/CartModule/40.png deleted file mode 100644 index ede895c4f2..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/40.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/41.png b/front/public/images/large/StevesCarts/CartModule/41.png deleted file mode 100644 index b28c5efc95..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/41.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/42.png b/front/public/images/large/StevesCarts/CartModule/42.png deleted file mode 100644 index 324963d913..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/42.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/43.png b/front/public/images/large/StevesCarts/CartModule/43.png deleted file mode 100644 index 0e92d20469..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/43.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/44.png b/front/public/images/large/StevesCarts/CartModule/44.png deleted file mode 100644 index f64d12f121..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/44.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/45.png b/front/public/images/large/StevesCarts/CartModule/45.png deleted file mode 100644 index 6cb56f9443..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/45.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/49.png b/front/public/images/large/StevesCarts/CartModule/49.png deleted file mode 100644 index f5bf520473..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/49.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/5.png b/front/public/images/large/StevesCarts/CartModule/5.png deleted file mode 100644 index f45b654cb9..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/5.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/51.png b/front/public/images/large/StevesCarts/CartModule/51.png deleted file mode 100644 index 10cba081dc..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/51.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/53.png b/front/public/images/large/StevesCarts/CartModule/53.png deleted file mode 100644 index 020ab9c09f..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/53.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/56.png b/front/public/images/large/StevesCarts/CartModule/56.png deleted file mode 100644 index 4af5dabff9..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/56.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/57.png b/front/public/images/large/StevesCarts/CartModule/57.png deleted file mode 100644 index 4829b722df..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/57.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/58.png b/front/public/images/large/StevesCarts/CartModule/58.png deleted file mode 100644 index 9df2c44a9e..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/58.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/59.png b/front/public/images/large/StevesCarts/CartModule/59.png deleted file mode 100644 index 9bb618a868..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/59.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/6.png b/front/public/images/large/StevesCarts/CartModule/6.png deleted file mode 100644 index 4490fead46..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/6.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/61.png b/front/public/images/large/StevesCarts/CartModule/61.png deleted file mode 100644 index 055d654982..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/61.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/62.png b/front/public/images/large/StevesCarts/CartModule/62.png deleted file mode 100644 index 3241a18026..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/62.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/63.png b/front/public/images/large/StevesCarts/CartModule/63.png deleted file mode 100644 index c3a4864b1f..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/63.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/64.png b/front/public/images/large/StevesCarts/CartModule/64.png deleted file mode 100644 index 2203474357..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/64.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/65.png b/front/public/images/large/StevesCarts/CartModule/65.png deleted file mode 100644 index ccbd4777c1..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/65.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/66.png b/front/public/images/large/StevesCarts/CartModule/66.png deleted file mode 100644 index fc1c87bc04..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/66.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/67.png b/front/public/images/large/StevesCarts/CartModule/67.png deleted file mode 100644 index 6927c34125..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/67.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/68.png b/front/public/images/large/StevesCarts/CartModule/68.png deleted file mode 100644 index 5dacd3ef99..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/68.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/69.png b/front/public/images/large/StevesCarts/CartModule/69.png deleted file mode 100644 index 3fb19ba848..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/69.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/7.png b/front/public/images/large/StevesCarts/CartModule/7.png deleted file mode 100644 index 81162a01ed..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/7.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/70.png b/front/public/images/large/StevesCarts/CartModule/70.png deleted file mode 100644 index 8818f18709..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/70.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/71.png b/front/public/images/large/StevesCarts/CartModule/71.png deleted file mode 100644 index d0daf795f7..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/71.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/72.png b/front/public/images/large/StevesCarts/CartModule/72.png deleted file mode 100644 index 86192ac7b6..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/72.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/73.png b/front/public/images/large/StevesCarts/CartModule/73.png deleted file mode 100644 index d65aca22d8..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/73.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/75.png b/front/public/images/large/StevesCarts/CartModule/75.png deleted file mode 100644 index 49b29202e3..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/75.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/76.png b/front/public/images/large/StevesCarts/CartModule/76.png deleted file mode 100644 index 148dfbe4ef..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/76.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/77.png b/front/public/images/large/StevesCarts/CartModule/77.png deleted file mode 100644 index be0b2185e3..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/77.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/78.png b/front/public/images/large/StevesCarts/CartModule/78.png deleted file mode 100644 index 53c5579e1a..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/78.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/79.png b/front/public/images/large/StevesCarts/CartModule/79.png deleted file mode 100644 index 731d8d9a19..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/79.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/8.png b/front/public/images/large/StevesCarts/CartModule/8.png deleted file mode 100644 index fd1b25403b..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/8.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/80.png b/front/public/images/large/StevesCarts/CartModule/80.png deleted file mode 100644 index d27a1db072..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/80.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/81.png b/front/public/images/large/StevesCarts/CartModule/81.png deleted file mode 100644 index 867ec03344..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/81.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/82.png b/front/public/images/large/StevesCarts/CartModule/82.png deleted file mode 100644 index ea1d6eed27..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/82.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/83.png b/front/public/images/large/StevesCarts/CartModule/83.png deleted file mode 100644 index bbb665274e..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/83.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/84.png b/front/public/images/large/StevesCarts/CartModule/84.png deleted file mode 100644 index 40e1201b1d..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/84.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/85.png b/front/public/images/large/StevesCarts/CartModule/85.png deleted file mode 100644 index 06232696de..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/85.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/86.png b/front/public/images/large/StevesCarts/CartModule/86.png deleted file mode 100644 index a9394fa35d..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/86.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/87.png b/front/public/images/large/StevesCarts/CartModule/87.png deleted file mode 100644 index 745d22936c..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/87.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/88.png b/front/public/images/large/StevesCarts/CartModule/88.png deleted file mode 100644 index 3a0b5fe101..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/88.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/89.png b/front/public/images/large/StevesCarts/CartModule/89.png deleted file mode 100644 index 917eb03ca6..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/89.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/9.png b/front/public/images/large/StevesCarts/CartModule/9.png deleted file mode 100644 index 9243f73462..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/9.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/91.png b/front/public/images/large/StevesCarts/CartModule/91.png deleted file mode 100644 index 0ceae187ef..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/91.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/92.png b/front/public/images/large/StevesCarts/CartModule/92.png deleted file mode 100644 index 4a23ce4df6..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/92.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/93.png b/front/public/images/large/StevesCarts/CartModule/93.png deleted file mode 100644 index 0372952ae2..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/93.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/94.png b/front/public/images/large/StevesCarts/CartModule/94.png deleted file mode 100644 index 6052cb8ef4..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/94.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/95.png b/front/public/images/large/StevesCarts/CartModule/95.png deleted file mode 100644 index 0c892031a6..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/95.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/96.png b/front/public/images/large/StevesCarts/CartModule/96.png deleted file mode 100644 index ee606b2ab0..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/96.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/97.png b/front/public/images/large/StevesCarts/CartModule/97.png deleted file mode 100644 index c44474ac92..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/97.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/CartModule/99.png b/front/public/images/large/StevesCarts/CartModule/99.png deleted file mode 100644 index a0b86da10d..0000000000 Binary files a/front/public/images/large/StevesCarts/CartModule/99.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModularCart/0.png b/front/public/images/large/StevesCarts/ModularCart/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/StevesCarts/ModularCart/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/0.png b/front/public/images/large/StevesCarts/ModuleComponents/0.png deleted file mode 100644 index c044aaee51..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/1.png b/front/public/images/large/StevesCarts/ModuleComponents/1.png deleted file mode 100644 index 8b611bd268..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/1.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/10.png b/front/public/images/large/StevesCarts/ModuleComponents/10.png deleted file mode 100644 index d86b9312c3..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/10.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/11.png b/front/public/images/large/StevesCarts/ModuleComponents/11.png deleted file mode 100644 index 11ca0bed4f..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/11.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/12.png b/front/public/images/large/StevesCarts/ModuleComponents/12.png deleted file mode 100644 index af6aca97b8..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/12.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/13.png b/front/public/images/large/StevesCarts/ModuleComponents/13.png deleted file mode 100644 index 59147ed720..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/13.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/14.png b/front/public/images/large/StevesCarts/ModuleComponents/14.png deleted file mode 100644 index 08aa71e088..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/14.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/15.png b/front/public/images/large/StevesCarts/ModuleComponents/15.png deleted file mode 100644 index 93898d39c6..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/15.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/16.png b/front/public/images/large/StevesCarts/ModuleComponents/16.png deleted file mode 100644 index 971c5ec1b5..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/16.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/17.png b/front/public/images/large/StevesCarts/ModuleComponents/17.png deleted file mode 100644 index 54680fd6bc..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/17.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/18.png b/front/public/images/large/StevesCarts/ModuleComponents/18.png deleted file mode 100644 index de2cf8af9a..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/18.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/19.png b/front/public/images/large/StevesCarts/ModuleComponents/19.png deleted file mode 100644 index 965c74b386..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/19.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/2.png b/front/public/images/large/StevesCarts/ModuleComponents/2.png deleted file mode 100644 index 2fdee3021d..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/2.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/20.png b/front/public/images/large/StevesCarts/ModuleComponents/20.png deleted file mode 100644 index ce41046d6f..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/20.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/21.png b/front/public/images/large/StevesCarts/ModuleComponents/21.png deleted file mode 100644 index 6670ab812a..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/21.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/22.png b/front/public/images/large/StevesCarts/ModuleComponents/22.png deleted file mode 100644 index eb20521472..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/22.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/23.png b/front/public/images/large/StevesCarts/ModuleComponents/23.png deleted file mode 100644 index 101801a835..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/23.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/24.png b/front/public/images/large/StevesCarts/ModuleComponents/24.png deleted file mode 100644 index 2c22f82ae8..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/24.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/25.png b/front/public/images/large/StevesCarts/ModuleComponents/25.png deleted file mode 100644 index 05528b9ce3..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/25.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/26.png b/front/public/images/large/StevesCarts/ModuleComponents/26.png deleted file mode 100644 index ed8c557c3c..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/26.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/27.png b/front/public/images/large/StevesCarts/ModuleComponents/27.png deleted file mode 100644 index 39bca61f88..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/27.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/28.png b/front/public/images/large/StevesCarts/ModuleComponents/28.png deleted file mode 100644 index 0edfba5d5a..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/28.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/29.png b/front/public/images/large/StevesCarts/ModuleComponents/29.png deleted file mode 100644 index f3daad720d..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/29.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/3.png b/front/public/images/large/StevesCarts/ModuleComponents/3.png deleted file mode 100644 index 5dfd5b9a9a..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/3.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/30.png b/front/public/images/large/StevesCarts/ModuleComponents/30.png deleted file mode 100644 index 1d4d189fba..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/30.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/31.png b/front/public/images/large/StevesCarts/ModuleComponents/31.png deleted file mode 100644 index b0b133537b..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/31.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/32.png b/front/public/images/large/StevesCarts/ModuleComponents/32.png deleted file mode 100644 index 0579231fb2..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/32.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/33.png b/front/public/images/large/StevesCarts/ModuleComponents/33.png deleted file mode 100644 index dd1cc89719..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/33.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/34.png b/front/public/images/large/StevesCarts/ModuleComponents/34.png deleted file mode 100644 index e6d12016a6..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/34.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/35.png b/front/public/images/large/StevesCarts/ModuleComponents/35.png deleted file mode 100644 index c8aa806265..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/35.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/36.png b/front/public/images/large/StevesCarts/ModuleComponents/36.png deleted file mode 100644 index 15d9d29145..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/36.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/37.png b/front/public/images/large/StevesCarts/ModuleComponents/37.png deleted file mode 100644 index 216ad71a41..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/37.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/38.png b/front/public/images/large/StevesCarts/ModuleComponents/38.png deleted file mode 100644 index de1c12ba62..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/38.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/39.png b/front/public/images/large/StevesCarts/ModuleComponents/39.png deleted file mode 100644 index b36cab567b..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/39.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/4.png b/front/public/images/large/StevesCarts/ModuleComponents/4.png deleted file mode 100644 index 9c59eab7e9..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/4.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/40.png b/front/public/images/large/StevesCarts/ModuleComponents/40.png deleted file mode 100644 index 63d88efade..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/40.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/41.png b/front/public/images/large/StevesCarts/ModuleComponents/41.png deleted file mode 100644 index 72b5ad0840..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/41.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/42.png b/front/public/images/large/StevesCarts/ModuleComponents/42.png deleted file mode 100644 index 939e79ccfb..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/42.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/43.png b/front/public/images/large/StevesCarts/ModuleComponents/43.png deleted file mode 100644 index 21acb9406f..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/43.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/44.png b/front/public/images/large/StevesCarts/ModuleComponents/44.png deleted file mode 100644 index cdcb9911b1..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/44.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/45.png b/front/public/images/large/StevesCarts/ModuleComponents/45.png deleted file mode 100644 index a08224229c..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/45.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/46.png b/front/public/images/large/StevesCarts/ModuleComponents/46.png deleted file mode 100644 index 9a4572f7e1..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/46.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/47.png b/front/public/images/large/StevesCarts/ModuleComponents/47.png deleted file mode 100644 index d84ba89a7f..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/47.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/48.png b/front/public/images/large/StevesCarts/ModuleComponents/48.png deleted file mode 100644 index c42d1437ed..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/48.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/49.png b/front/public/images/large/StevesCarts/ModuleComponents/49.png deleted file mode 100644 index fcb4089b23..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/49.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/5.png b/front/public/images/large/StevesCarts/ModuleComponents/5.png deleted file mode 100644 index 6ef284add8..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/5.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/58.png b/front/public/images/large/StevesCarts/ModuleComponents/58.png deleted file mode 100644 index e3b9f74e37..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/58.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/59.png b/front/public/images/large/StevesCarts/ModuleComponents/59.png deleted file mode 100644 index 852bf24453..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/59.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/6.png b/front/public/images/large/StevesCarts/ModuleComponents/6.png deleted file mode 100644 index b5a8e4c3cd..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/6.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/60.png b/front/public/images/large/StevesCarts/ModuleComponents/60.png deleted file mode 100644 index 0aa088a211..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/60.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/61.png b/front/public/images/large/StevesCarts/ModuleComponents/61.png deleted file mode 100644 index 07665c6b2f..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/61.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/62.png b/front/public/images/large/StevesCarts/ModuleComponents/62.png deleted file mode 100644 index d6bf2cf7aa..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/62.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/63.png b/front/public/images/large/StevesCarts/ModuleComponents/63.png deleted file mode 100644 index f10c1b6feb..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/63.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/64.png b/front/public/images/large/StevesCarts/ModuleComponents/64.png deleted file mode 100644 index 045ba50829..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/64.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/65.png b/front/public/images/large/StevesCarts/ModuleComponents/65.png deleted file mode 100644 index 6e2981dbc2..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/65.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/80.png b/front/public/images/large/StevesCarts/ModuleComponents/80.png deleted file mode 100644 index 9d9e79ad2a..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/80.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/81.png b/front/public/images/large/StevesCarts/ModuleComponents/81.png deleted file mode 100644 index 29e0eb0066..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/81.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/82.png b/front/public/images/large/StevesCarts/ModuleComponents/82.png deleted file mode 100644 index 597cea5dd2..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/82.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/83.png b/front/public/images/large/StevesCarts/ModuleComponents/83.png deleted file mode 100644 index df317d5659..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/83.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/84.png b/front/public/images/large/StevesCarts/ModuleComponents/84.png deleted file mode 100644 index 1db31d0177..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/84.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/ModuleComponents/9.png b/front/public/images/large/StevesCarts/ModuleComponents/9.png deleted file mode 100644 index aa7bcedb9b..0000000000 Binary files a/front/public/images/large/StevesCarts/ModuleComponents/9.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/0.png b/front/public/images/large/StevesCarts/upgrade/0.png deleted file mode 100644 index 549916d67c..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/0.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/1.png b/front/public/images/large/StevesCarts/upgrade/1.png deleted file mode 100644 index ac76de7cdc..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/1.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/10.png b/front/public/images/large/StevesCarts/upgrade/10.png deleted file mode 100644 index 5296b1d234..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/10.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/11.png b/front/public/images/large/StevesCarts/upgrade/11.png deleted file mode 100644 index ad25b972e9..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/11.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/12.png b/front/public/images/large/StevesCarts/upgrade/12.png deleted file mode 100644 index a8c0614fdd..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/12.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/13.png b/front/public/images/large/StevesCarts/upgrade/13.png deleted file mode 100644 index 75a1e3c877..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/13.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/14.png b/front/public/images/large/StevesCarts/upgrade/14.png deleted file mode 100644 index 608f04e568..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/14.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/15.png b/front/public/images/large/StevesCarts/upgrade/15.png deleted file mode 100644 index d2d94e95b3..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/15.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/16.png b/front/public/images/large/StevesCarts/upgrade/16.png deleted file mode 100644 index 9d54a396eb..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/16.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/17.png b/front/public/images/large/StevesCarts/upgrade/17.png deleted file mode 100644 index c223083052..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/17.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/18.png b/front/public/images/large/StevesCarts/upgrade/18.png deleted file mode 100644 index bb0a22f1b8..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/18.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/19.png b/front/public/images/large/StevesCarts/upgrade/19.png deleted file mode 100644 index 87c5c493f9..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/19.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/2.png b/front/public/images/large/StevesCarts/upgrade/2.png deleted file mode 100644 index 319ffbd715..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/2.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/3.png b/front/public/images/large/StevesCarts/upgrade/3.png deleted file mode 100644 index e186185f2d..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/3.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/4.png b/front/public/images/large/StevesCarts/upgrade/4.png deleted file mode 100644 index e6a655ef7f..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/4.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/5.png b/front/public/images/large/StevesCarts/upgrade/5.png deleted file mode 100644 index 4741d0624e..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/5.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/6.png b/front/public/images/large/StevesCarts/upgrade/6.png deleted file mode 100644 index 123344e3ed..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/6.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/7.png b/front/public/images/large/StevesCarts/upgrade/7.png deleted file mode 100644 index 7ac3d2a0a6..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/7.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/8.png b/front/public/images/large/StevesCarts/upgrade/8.png deleted file mode 100644 index 1abc8f1431..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/8.png and /dev/null differ diff --git a/front/public/images/large/StevesCarts/upgrade/9.png b/front/public/images/large/StevesCarts/upgrade/9.png deleted file mode 100644 index e6733d1e68..0000000000 Binary files a/front/public/images/large/StevesCarts/upgrade/9.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableBUDName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableBUDName/0.png deleted file mode 100644 index 15c9cbba10..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableBUDName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableBreakerName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableBreakerName/0.png deleted file mode 100644 index 8a88afbc22..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableBreakerName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/0.png deleted file mode 100644 index 840495f801..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/1.png b/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/1.png deleted file mode 100644 index 645c1c7793..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/1.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/2.png b/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/2.png deleted file mode 100644 index 5cd5160137..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableCamouflageName/2.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableClusterName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableClusterName/0.png deleted file mode 100644 index 28785e8ba3..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableClusterName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableClusterName/8.png b/front/public/images/large/StevesFactoryManager/BlockCableClusterName/8.png deleted file mode 100644 index 47e442aed7..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableClusterName/8.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableCreativeName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableCreativeName/0.png deleted file mode 100644 index fc417f0702..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableCreativeName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableInputName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableInputName/0.png deleted file mode 100644 index 678552fb5e..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableInputName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableIntakeName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableIntakeName/0.png deleted file mode 100644 index 0e1feb8399..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableIntakeName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableIntakeName/8.png b/front/public/images/large/StevesFactoryManager/BlockCableIntakeName/8.png deleted file mode 100644 index 57b68a22f5..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableIntakeName/8.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableName/0.png deleted file mode 100644 index 6426ecce3a..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableOutputName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableOutputName/0.png deleted file mode 100644 index 8ce6d92215..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableOutputName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableRelayName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableRelayName/0.png deleted file mode 100644 index 415d5831b3..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableRelayName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableRelayName/8.png b/front/public/images/large/StevesFactoryManager/BlockCableRelayName/8.png deleted file mode 100644 index ff6b2d251c..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableRelayName/8.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockCableSignName/0.png b/front/public/images/large/StevesFactoryManager/BlockCableSignName/0.png deleted file mode 100644 index 885d6601c9..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockCableSignName/0.png and /dev/null differ diff --git a/front/public/images/large/StevesFactoryManager/BlockMachineManagerName/0.png b/front/public/images/large/StevesFactoryManager/BlockMachineManagerName/0.png deleted file mode 100644 index fe1b15787f..0000000000 Binary files a/front/public/images/large/StevesFactoryManager/BlockMachineManagerName/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/controller/0.png b/front/public/images/large/StorageDrawers/controller/0.png deleted file mode 100644 index 32593b7121..0000000000 Binary files a/front/public/images/large/StorageDrawers/controller/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/controllerSlave/0.png b/front/public/images/large/StorageDrawers/controllerSlave/0.png deleted file mode 100644 index bd221b6b83..0000000000 Binary files a/front/public/images/large/StorageDrawers/controllerSlave/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/framingTable/0.png b/front/public/images/large/StorageDrawers/framingTable/0.png deleted file mode 100644 index 4d1805995d..0000000000 Binary files a/front/public/images/large/StorageDrawers/framingTable/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullCustom1/0.png b/front/public/images/large/StorageDrawers/fullCustom1/0.png deleted file mode 100644 index 8e495de5f6..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullCustom1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullCustom2/0.png b/front/public/images/large/StorageDrawers/fullCustom2/0.png deleted file mode 100644 index 016c4005e9..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullCustom2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullCustom4/0.png b/front/public/images/large/StorageDrawers/fullCustom4/0.png deleted file mode 100644 index be2083d16d..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullCustom4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers1/0.png b/front/public/images/large/StorageDrawers/fullDrawers1/0.png deleted file mode 100644 index edd45a4a7f..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers1/1.png b/front/public/images/large/StorageDrawers/fullDrawers1/1.png deleted file mode 100644 index 578d4ddc61..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers1/2.png b/front/public/images/large/StorageDrawers/fullDrawers1/2.png deleted file mode 100644 index 6877aee4ea..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers1/3.png b/front/public/images/large/StorageDrawers/fullDrawers1/3.png deleted file mode 100644 index 0ce99c59e8..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers1/4.png b/front/public/images/large/StorageDrawers/fullDrawers1/4.png deleted file mode 100644 index 8c313b1e27..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers1/5.png b/front/public/images/large/StorageDrawers/fullDrawers1/5.png deleted file mode 100644 index c326096197..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers2/0.png b/front/public/images/large/StorageDrawers/fullDrawers2/0.png deleted file mode 100644 index b3d7c05f50..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers2/1.png b/front/public/images/large/StorageDrawers/fullDrawers2/1.png deleted file mode 100644 index 9acff77360..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers2/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers2/2.png b/front/public/images/large/StorageDrawers/fullDrawers2/2.png deleted file mode 100644 index 46ae407a19..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers2/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers2/3.png b/front/public/images/large/StorageDrawers/fullDrawers2/3.png deleted file mode 100644 index 046e1e0ef1..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers2/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers2/4.png b/front/public/images/large/StorageDrawers/fullDrawers2/4.png deleted file mode 100644 index 998efd1ade..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers2/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers2/5.png b/front/public/images/large/StorageDrawers/fullDrawers2/5.png deleted file mode 100644 index b149dece9b..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers2/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers4/0.png b/front/public/images/large/StorageDrawers/fullDrawers4/0.png deleted file mode 100644 index 4ffce846b7..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers4/1.png b/front/public/images/large/StorageDrawers/fullDrawers4/1.png deleted file mode 100644 index f04c87b6a1..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers4/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers4/2.png b/front/public/images/large/StorageDrawers/fullDrawers4/2.png deleted file mode 100644 index 0a86e3e338..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers4/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers4/3.png b/front/public/images/large/StorageDrawers/fullDrawers4/3.png deleted file mode 100644 index ea883da985..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers4/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers4/4.png b/front/public/images/large/StorageDrawers/fullDrawers4/4.png deleted file mode 100644 index a5c304a8a2..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers4/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/fullDrawers4/5.png b/front/public/images/large/StorageDrawers/fullDrawers4/5.png deleted file mode 100644 index 92b4a5e332..0000000000 Binary files a/front/public/images/large/StorageDrawers/fullDrawers4/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfCustom2/0.png b/front/public/images/large/StorageDrawers/halfCustom2/0.png deleted file mode 100644 index 7c98e1fed1..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfCustom2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfCustom4/0.png b/front/public/images/large/StorageDrawers/halfCustom4/0.png deleted file mode 100644 index 1d547e8e73..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfCustom4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers2/0.png b/front/public/images/large/StorageDrawers/halfDrawers2/0.png deleted file mode 100644 index c617407f03..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers2/1.png b/front/public/images/large/StorageDrawers/halfDrawers2/1.png deleted file mode 100644 index 222f30152f..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers2/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers2/2.png b/front/public/images/large/StorageDrawers/halfDrawers2/2.png deleted file mode 100644 index d9dcce0218..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers2/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers2/3.png b/front/public/images/large/StorageDrawers/halfDrawers2/3.png deleted file mode 100644 index 9072f2844d..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers2/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers2/4.png b/front/public/images/large/StorageDrawers/halfDrawers2/4.png deleted file mode 100644 index a6b7b22cd4..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers2/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers2/5.png b/front/public/images/large/StorageDrawers/halfDrawers2/5.png deleted file mode 100644 index a056ce8650..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers2/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers4/0.png b/front/public/images/large/StorageDrawers/halfDrawers4/0.png deleted file mode 100644 index 7d1fb8333a..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers4/1.png b/front/public/images/large/StorageDrawers/halfDrawers4/1.png deleted file mode 100644 index d541490e6b..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers4/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers4/2.png b/front/public/images/large/StorageDrawers/halfDrawers4/2.png deleted file mode 100644 index 59786a80ee..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers4/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers4/3.png b/front/public/images/large/StorageDrawers/halfDrawers4/3.png deleted file mode 100644 index 9db18319b1..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers4/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers4/4.png b/front/public/images/large/StorageDrawers/halfDrawers4/4.png deleted file mode 100644 index 3bca960429..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers4/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/halfDrawers4/5.png b/front/public/images/large/StorageDrawers/halfDrawers4/5.png deleted file mode 100644 index 216fc58a9a..0000000000 Binary files a/front/public/images/large/StorageDrawers/halfDrawers4/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/personalKey/0.png b/front/public/images/large/StorageDrawers/personalKey/0.png deleted file mode 100644 index 1e6ff72828..0000000000 Binary files a/front/public/images/large/StorageDrawers/personalKey/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/shroudKey/0.png b/front/public/images/large/StorageDrawers/shroudKey/0.png deleted file mode 100644 index cf4d8c0e78..0000000000 Binary files a/front/public/images/large/StorageDrawers/shroudKey/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/tape/0.png b/front/public/images/large/StorageDrawers/tape/0.png deleted file mode 100644 index 1ae6fe0382..0000000000 Binary files a/front/public/images/large/StorageDrawers/tape/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/trim/0.png b/front/public/images/large/StorageDrawers/trim/0.png deleted file mode 100644 index 114baddd2c..0000000000 Binary files a/front/public/images/large/StorageDrawers/trim/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/trim/1.png b/front/public/images/large/StorageDrawers/trim/1.png deleted file mode 100644 index 0aa6c9d53a..0000000000 Binary files a/front/public/images/large/StorageDrawers/trim/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/trim/2.png b/front/public/images/large/StorageDrawers/trim/2.png deleted file mode 100644 index 4ebeb290d1..0000000000 Binary files a/front/public/images/large/StorageDrawers/trim/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/trim/3.png b/front/public/images/large/StorageDrawers/trim/3.png deleted file mode 100644 index 7971d8fe44..0000000000 Binary files a/front/public/images/large/StorageDrawers/trim/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/trim/4.png b/front/public/images/large/StorageDrawers/trim/4.png deleted file mode 100644 index ec6f371a06..0000000000 Binary files a/front/public/images/large/StorageDrawers/trim/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/trim/5.png b/front/public/images/large/StorageDrawers/trim/5.png deleted file mode 100644 index d805c280d8..0000000000 Binary files a/front/public/images/large/StorageDrawers/trim/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/trimCustom/0.png b/front/public/images/large/StorageDrawers/trimCustom/0.png deleted file mode 100644 index 682340c4ce..0000000000 Binary files a/front/public/images/large/StorageDrawers/trimCustom/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgrade/2.png b/front/public/images/large/StorageDrawers/upgrade/2.png deleted file mode 100644 index 89f7751203..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgrade/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgrade/3.png b/front/public/images/large/StorageDrawers/upgrade/3.png deleted file mode 100644 index 8edf643999..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgrade/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgrade/4.png b/front/public/images/large/StorageDrawers/upgrade/4.png deleted file mode 100644 index 104c75c608..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgrade/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgrade/5.png b/front/public/images/large/StorageDrawers/upgrade/5.png deleted file mode 100644 index ecaa6f270b..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgrade/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgrade/6.png b/front/public/images/large/StorageDrawers/upgrade/6.png deleted file mode 100644 index 1e314e9267..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgrade/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgrade/7.png b/front/public/images/large/StorageDrawers/upgrade/7.png deleted file mode 100644 index 0cb402f078..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgrade/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgrade/8.png b/front/public/images/large/StorageDrawers/upgrade/8.png deleted file mode 100644 index cd631a26c3..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgrade/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeCreative/0.png b/front/public/images/large/StorageDrawers/upgradeCreative/0.png deleted file mode 100644 index 01be462e73..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeCreative/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeCreative/1.png b/front/public/images/large/StorageDrawers/upgradeCreative/1.png deleted file mode 100644 index 459d55db97..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeCreative/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeDowngrade/0.png b/front/public/images/large/StorageDrawers/upgradeDowngrade/0.png deleted file mode 100644 index 7fa46e1161..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeDowngrade/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeLock/0.png b/front/public/images/large/StorageDrawers/upgradeLock/0.png deleted file mode 100644 index 7f84b20381..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeLock/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeRedstone/0.png b/front/public/images/large/StorageDrawers/upgradeRedstone/0.png deleted file mode 100644 index 95d3a50b71..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeRedstone/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeRedstone/1.png b/front/public/images/large/StorageDrawers/upgradeRedstone/1.png deleted file mode 100644 index c1460597b5..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeRedstone/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeRedstone/2.png b/front/public/images/large/StorageDrawers/upgradeRedstone/2.png deleted file mode 100644 index 44a68cc193..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeRedstone/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeStatus/1.png b/front/public/images/large/StorageDrawers/upgradeStatus/1.png deleted file mode 100644 index abcebf3134..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeStatus/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeStatus/2.png b/front/public/images/large/StorageDrawers/upgradeStatus/2.png deleted file mode 100644 index 36bd309336..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeStatus/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeTemplate/0.png b/front/public/images/large/StorageDrawers/upgradeTemplate/0.png deleted file mode 100644 index 99b9606fd4..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeTemplate/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawers/upgradeVoid/0.png b/front/public/images/large/StorageDrawers/upgradeVoid/0.png deleted file mode 100644 index 7c7d654741..0000000000 Binary files a/front/public/images/large/StorageDrawers/upgradeVoid/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/0.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/0.png deleted file mode 100644 index edd45a4a7f..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/1.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/1.png deleted file mode 100644 index caf57cab99..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/11.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/11.png deleted file mode 100644 index 441787aec8..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/12.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/12.png deleted file mode 100644 index 8083c4d690..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/13.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/13.png deleted file mode 100644 index 8f3d0a84d5..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/14.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/14.png deleted file mode 100644 index 481c310973..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/2.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/2.png deleted file mode 100644 index 5f7300b3af..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/3.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/3.png deleted file mode 100644 index 0c316986c4..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/4.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/4.png deleted file mode 100644 index 18959c323e..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/5.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/5.png deleted file mode 100644 index 0624255dfe..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/6.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/6.png deleted file mode 100644 index dce74beb43..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/7.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/7.png deleted file mode 100644 index f060f4948e..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/8.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/8.png deleted file mode 100644 index 6d1d565871..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers1/9.png b/front/public/images/large/StorageDrawersBop/fullDrawers1/9.png deleted file mode 100644 index 3ef86621ec..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/0.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/0.png deleted file mode 100644 index b3d7c05f50..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/1.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/1.png deleted file mode 100644 index 31720264e2..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/11.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/11.png deleted file mode 100644 index 9b7c3ac6cc..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/12.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/12.png deleted file mode 100644 index 94073b9379..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/13.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/13.png deleted file mode 100644 index ac8dc118d0..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/14.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/14.png deleted file mode 100644 index fff099a7d6..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/2.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/2.png deleted file mode 100644 index 2f7d74a8e2..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/3.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/3.png deleted file mode 100644 index e3167a0823..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/4.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/4.png deleted file mode 100644 index ce59ebf358..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/5.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/5.png deleted file mode 100644 index 7ed6a431a8..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/6.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/6.png deleted file mode 100644 index aff1ba21e9..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/7.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/7.png deleted file mode 100644 index f054873b4a..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/8.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/8.png deleted file mode 100644 index bb6a4cfcda..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers2/9.png b/front/public/images/large/StorageDrawersBop/fullDrawers2/9.png deleted file mode 100644 index 941d7c9d11..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers2/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/0.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/0.png deleted file mode 100644 index 4ffce846b7..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/1.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/1.png deleted file mode 100644 index 455ecb7beb..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/11.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/11.png deleted file mode 100644 index fe20bbc018..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/12.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/12.png deleted file mode 100644 index 43abeafd59..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/13.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/13.png deleted file mode 100644 index 5af63738ac..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/14.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/14.png deleted file mode 100644 index be2712cab3..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/2.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/2.png deleted file mode 100644 index e531708e4a..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/3.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/3.png deleted file mode 100644 index 7c087f5475..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/4.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/4.png deleted file mode 100644 index 6556a9243e..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/5.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/5.png deleted file mode 100644 index bd2a9447be..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/6.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/6.png deleted file mode 100644 index e93ffd6806..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/7.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/7.png deleted file mode 100644 index e64aad477f..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/8.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/8.png deleted file mode 100644 index bb1c12318e..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/fullDrawers4/9.png b/front/public/images/large/StorageDrawersBop/fullDrawers4/9.png deleted file mode 100644 index 4e2a9db23c..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/fullDrawers4/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/0.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/0.png deleted file mode 100644 index c617407f03..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/1.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/1.png deleted file mode 100644 index 8718c95ff9..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/11.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/11.png deleted file mode 100644 index 5fd8f447b3..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/12.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/12.png deleted file mode 100644 index ed8ee99de5..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/13.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/13.png deleted file mode 100644 index 0844fbfc52..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/14.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/14.png deleted file mode 100644 index 0b1aca2141..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/2.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/2.png deleted file mode 100644 index 85d8d1badc..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/3.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/3.png deleted file mode 100644 index 2fe78dd9cd..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/4.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/4.png deleted file mode 100644 index 635187a2b3..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/5.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/5.png deleted file mode 100644 index e18d59c30a..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/6.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/6.png deleted file mode 100644 index 9157ac3400..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/7.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/7.png deleted file mode 100644 index 9ca559b733..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/8.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/8.png deleted file mode 100644 index 0f69fe67e5..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers2/9.png b/front/public/images/large/StorageDrawersBop/halfDrawers2/9.png deleted file mode 100644 index d716c187cd..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers2/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/0.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/0.png deleted file mode 100644 index 7d1fb8333a..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/1.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/1.png deleted file mode 100644 index 3bb742d3e2..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/11.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/11.png deleted file mode 100644 index 7044474f02..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/12.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/12.png deleted file mode 100644 index 3c6f895ae6..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/13.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/13.png deleted file mode 100644 index d2d52a35ea..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/14.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/14.png deleted file mode 100644 index 7b01612abf..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/2.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/2.png deleted file mode 100644 index 673889efeb..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/3.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/3.png deleted file mode 100644 index 7c5c521f9d..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/4.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/4.png deleted file mode 100644 index 73f6012b7a..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/5.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/5.png deleted file mode 100644 index 387719ba39..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/6.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/6.png deleted file mode 100644 index a00c0f9c31..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/7.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/7.png deleted file mode 100644 index 979c1658df..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/8.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/8.png deleted file mode 100644 index 36e1e30209..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/halfDrawers4/9.png b/front/public/images/large/StorageDrawersBop/halfDrawers4/9.png deleted file mode 100644 index cf4134bfb4..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/halfDrawers4/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/0.png b/front/public/images/large/StorageDrawersBop/trim/0.png deleted file mode 100644 index 114baddd2c..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/1.png b/front/public/images/large/StorageDrawersBop/trim/1.png deleted file mode 100644 index a9e73298fb..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/11.png b/front/public/images/large/StorageDrawersBop/trim/11.png deleted file mode 100644 index fe7d1b96a8..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/12.png b/front/public/images/large/StorageDrawersBop/trim/12.png deleted file mode 100644 index 7debe46c35..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/13.png b/front/public/images/large/StorageDrawersBop/trim/13.png deleted file mode 100644 index 330414b54d..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/14.png b/front/public/images/large/StorageDrawersBop/trim/14.png deleted file mode 100644 index ad9d8e5b29..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/2.png b/front/public/images/large/StorageDrawersBop/trim/2.png deleted file mode 100644 index 927d1dbe7b..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/3.png b/front/public/images/large/StorageDrawersBop/trim/3.png deleted file mode 100644 index bdc2d13cff..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/4.png b/front/public/images/large/StorageDrawersBop/trim/4.png deleted file mode 100644 index e57f382622..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/5.png b/front/public/images/large/StorageDrawersBop/trim/5.png deleted file mode 100644 index c65392d107..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/6.png b/front/public/images/large/StorageDrawersBop/trim/6.png deleted file mode 100644 index 65c401e06f..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/7.png b/front/public/images/large/StorageDrawersBop/trim/7.png deleted file mode 100644 index 452765668b..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/8.png b/front/public/images/large/StorageDrawersBop/trim/8.png deleted file mode 100644 index f6a202820b..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersBop/trim/9.png b/front/public/images/large/StorageDrawersBop/trim/9.png deleted file mode 100644 index 053fc6364d..0000000000 Binary files a/front/public/images/large/StorageDrawersBop/trim/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/0.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/0.png deleted file mode 100644 index 8972bc3885..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/1.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/1.png deleted file mode 100644 index 1a8b2e0e51..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/10.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/10.png deleted file mode 100644 index cad0af0933..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/11.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/11.png deleted file mode 100644 index 46ce4d664b..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/12.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/12.png deleted file mode 100644 index 806b70ddd1..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/13.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/13.png deleted file mode 100644 index b35b7e47a6..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/14.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/14.png deleted file mode 100644 index 0fb2d6d727..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/15.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/15.png deleted file mode 100644 index 4fd16ef6f1..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/15.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/2.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/2.png deleted file mode 100644 index 92733b10ed..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/3.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/3.png deleted file mode 100644 index 33dffa4a6d..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/4.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/4.png deleted file mode 100644 index f0273dbc8d..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/5.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/5.png deleted file mode 100644 index 6b526f13aa..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/6.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/6.png deleted file mode 100644 index 406b0f30a8..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/7.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/7.png deleted file mode 100644 index eab4fb8c79..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/8.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/8.png deleted file mode 100644 index 04cb171959..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/9.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1A/9.png deleted file mode 100644 index 91b584d71a..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1A/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/0.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/0.png deleted file mode 100644 index f0493996eb..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/1.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/1.png deleted file mode 100644 index efa3e6c34c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/10.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/10.png deleted file mode 100644 index df9038d803..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/11.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/11.png deleted file mode 100644 index b2be87af3b..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/12.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/12.png deleted file mode 100644 index 2ae5d889a9..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/2.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/2.png deleted file mode 100644 index a79107c298..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/3.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/3.png deleted file mode 100644 index 0747a65c07..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/4.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/4.png deleted file mode 100644 index 4881209079..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/5.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/5.png deleted file mode 100644 index 36e435a684..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/6.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/6.png deleted file mode 100644 index d50830b559..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/7.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/7.png deleted file mode 100644 index 1a6cf5bc72..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/8.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/8.png deleted file mode 100644 index 4e66f12409..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/9.png b/front/public/images/large/StorageDrawersForestry/fullDrawers1B/9.png deleted file mode 100644 index 735a24cfb9..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers1B/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/0.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/0.png deleted file mode 100644 index 04e31892de..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/1.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/1.png deleted file mode 100644 index c4ffd5e215..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/10.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/10.png deleted file mode 100644 index 838a17e401..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/11.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/11.png deleted file mode 100644 index 2180a29cc0..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/12.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/12.png deleted file mode 100644 index 1a8adc563d..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/13.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/13.png deleted file mode 100644 index 89a56359a9..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/14.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/14.png deleted file mode 100644 index f9700e7b77..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/15.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/15.png deleted file mode 100644 index df5e8ed22e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/15.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/2.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/2.png deleted file mode 100644 index 5c88a66d8e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/3.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/3.png deleted file mode 100644 index f7e642b56a..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/4.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/4.png deleted file mode 100644 index 3c7d8d5ef3..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/5.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/5.png deleted file mode 100644 index 1c83d60baf..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/6.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/6.png deleted file mode 100644 index 9f6469e170..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/7.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/7.png deleted file mode 100644 index b9d3557c9c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/8.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/8.png deleted file mode 100644 index 1a50c67442..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/9.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2A/9.png deleted file mode 100644 index cafa6eebe8..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2A/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/0.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/0.png deleted file mode 100644 index d26cd50d31..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/1.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/1.png deleted file mode 100644 index 8e4142ab09..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/10.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/10.png deleted file mode 100644 index 47b750de0a..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/11.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/11.png deleted file mode 100644 index 79de4eaf5e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/12.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/12.png deleted file mode 100644 index e6973d1952..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/2.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/2.png deleted file mode 100644 index 90070701fe..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/3.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/3.png deleted file mode 100644 index f10bee4db4..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/4.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/4.png deleted file mode 100644 index 9c278fc4fc..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/5.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/5.png deleted file mode 100644 index 5244ff5bf6..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/6.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/6.png deleted file mode 100644 index be00e24862..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/7.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/7.png deleted file mode 100644 index 250d3a5a11..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/8.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/8.png deleted file mode 100644 index e0eeefc423..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/9.png b/front/public/images/large/StorageDrawersForestry/fullDrawers2B/9.png deleted file mode 100644 index 3406cd05f5..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers2B/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/0.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/0.png deleted file mode 100644 index dcb27e3895..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/1.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/1.png deleted file mode 100644 index 564a17f41c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/10.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/10.png deleted file mode 100644 index 7b1373e603..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/11.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/11.png deleted file mode 100644 index 195e8b0d19..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/12.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/12.png deleted file mode 100644 index 574b77f6e8..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/13.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/13.png deleted file mode 100644 index 0d8f93fa99..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/14.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/14.png deleted file mode 100644 index e8000c0b7c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/15.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/15.png deleted file mode 100644 index 7a6f01b7b2..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/15.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/2.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/2.png deleted file mode 100644 index 12efa1b059..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/3.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/3.png deleted file mode 100644 index 8b82a60d8a..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/4.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/4.png deleted file mode 100644 index 4f514b4a0b..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/5.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/5.png deleted file mode 100644 index 65600c242e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/6.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/6.png deleted file mode 100644 index bb096f5e01..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/7.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/7.png deleted file mode 100644 index 057fece073..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/8.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/8.png deleted file mode 100644 index ad079221a2..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/9.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4A/9.png deleted file mode 100644 index 5408941734..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4A/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/0.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/0.png deleted file mode 100644 index e7d2f3fc03..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/1.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/1.png deleted file mode 100644 index 87ebb773d7..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/10.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/10.png deleted file mode 100644 index 66c1e0328e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/11.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/11.png deleted file mode 100644 index f26e920098..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/12.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/12.png deleted file mode 100644 index b7685e67a3..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/2.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/2.png deleted file mode 100644 index b38fdcf75d..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/3.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/3.png deleted file mode 100644 index 4886dc83e4..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/4.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/4.png deleted file mode 100644 index e937b59527..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/5.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/5.png deleted file mode 100644 index 20b8cd5074..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/6.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/6.png deleted file mode 100644 index 2818590614..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/7.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/7.png deleted file mode 100644 index 52a07a9a93..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/8.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/8.png deleted file mode 100644 index f17d36b412..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/9.png b/front/public/images/large/StorageDrawersForestry/fullDrawers4B/9.png deleted file mode 100644 index ff30e4d0d0..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/fullDrawers4B/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/0.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/0.png deleted file mode 100644 index 0fd6e8a009..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/1.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/1.png deleted file mode 100644 index b842e3b24b..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/10.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/10.png deleted file mode 100644 index dafe2e232f..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/11.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/11.png deleted file mode 100644 index 8f21f5f807..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/12.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/12.png deleted file mode 100644 index 3af2560503..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/13.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/13.png deleted file mode 100644 index dc6168e07f..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/14.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/14.png deleted file mode 100644 index 6e83d4285e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/15.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/15.png deleted file mode 100644 index 9962e7c35f..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/15.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/2.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/2.png deleted file mode 100644 index 3ef0056cef..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/3.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/3.png deleted file mode 100644 index cd986100fc..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/4.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/4.png deleted file mode 100644 index a13e14c878..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/5.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/5.png deleted file mode 100644 index 5fc3686562..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/6.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/6.png deleted file mode 100644 index 9ad6969898..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/7.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/7.png deleted file mode 100644 index 3d37191034..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/8.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/8.png deleted file mode 100644 index 3f8a2f4983..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/9.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2A/9.png deleted file mode 100644 index 017b3a3374..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2A/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/0.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/0.png deleted file mode 100644 index 9e6825b846..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/1.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/1.png deleted file mode 100644 index 91dbba6096..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/10.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/10.png deleted file mode 100644 index 569b0e2feb..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/11.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/11.png deleted file mode 100644 index ab100b2c63..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/12.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/12.png deleted file mode 100644 index 936369e3db..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/2.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/2.png deleted file mode 100644 index 3e2958e01f..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/3.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/3.png deleted file mode 100644 index d5473a1db4..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/4.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/4.png deleted file mode 100644 index cb18df0f79..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/5.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/5.png deleted file mode 100644 index 8abf8ad068..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/6.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/6.png deleted file mode 100644 index 9092d23ca5..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/7.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/7.png deleted file mode 100644 index 3b026514ad..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/8.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/8.png deleted file mode 100644 index 0ca016b8d7..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/9.png b/front/public/images/large/StorageDrawersForestry/halfDrawers2B/9.png deleted file mode 100644 index cd88c91631..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers2B/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/0.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/0.png deleted file mode 100644 index d859a730cb..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/1.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/1.png deleted file mode 100644 index fabab1329c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/10.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/10.png deleted file mode 100644 index 1664582674..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/11.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/11.png deleted file mode 100644 index 27591a366c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/12.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/12.png deleted file mode 100644 index fef582b269..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/13.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/13.png deleted file mode 100644 index 4a6a203446..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/14.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/14.png deleted file mode 100644 index 9d48786c80..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/15.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/15.png deleted file mode 100644 index 7b19879aa5..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/15.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/2.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/2.png deleted file mode 100644 index f00877c194..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/3.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/3.png deleted file mode 100644 index fb32e61a88..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/4.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/4.png deleted file mode 100644 index 6cf8f8477b..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/5.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/5.png deleted file mode 100644 index fb0e8e4c77..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/6.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/6.png deleted file mode 100644 index b9ce7dd2ce..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/7.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/7.png deleted file mode 100644 index c4eb8157f5..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/8.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/8.png deleted file mode 100644 index 834f913dd9..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/9.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4A/9.png deleted file mode 100644 index dc436f14bd..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4A/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/0.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/0.png deleted file mode 100644 index 91afb1a701..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/1.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/1.png deleted file mode 100644 index b24aa7c2cd..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/10.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/10.png deleted file mode 100644 index aa67083f8e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/11.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/11.png deleted file mode 100644 index 719634c29d..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/12.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/12.png deleted file mode 100644 index 34d490b173..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/2.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/2.png deleted file mode 100644 index 742101810e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/3.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/3.png deleted file mode 100644 index 969e5c3c9a..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/4.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/4.png deleted file mode 100644 index 4a3066de6c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/5.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/5.png deleted file mode 100644 index 9444008ad9..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/6.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/6.png deleted file mode 100644 index 1eef1158fe..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/7.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/7.png deleted file mode 100644 index 999493818a..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/8.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/8.png deleted file mode 100644 index 8055e108d1..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/9.png b/front/public/images/large/StorageDrawersForestry/halfDrawers4B/9.png deleted file mode 100644 index 19bc1df205..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/halfDrawers4B/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/0.png b/front/public/images/large/StorageDrawersForestry/trimA/0.png deleted file mode 100644 index f257034c03..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/1.png b/front/public/images/large/StorageDrawersForestry/trimA/1.png deleted file mode 100644 index 571214d478..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/10.png b/front/public/images/large/StorageDrawersForestry/trimA/10.png deleted file mode 100644 index 95c590237e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/11.png b/front/public/images/large/StorageDrawersForestry/trimA/11.png deleted file mode 100644 index d11010cf45..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/12.png b/front/public/images/large/StorageDrawersForestry/trimA/12.png deleted file mode 100644 index 5a1e35fce8..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/13.png b/front/public/images/large/StorageDrawersForestry/trimA/13.png deleted file mode 100644 index 2b4a441432..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/13.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/14.png b/front/public/images/large/StorageDrawersForestry/trimA/14.png deleted file mode 100644 index 70d32c6b83..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/14.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/15.png b/front/public/images/large/StorageDrawersForestry/trimA/15.png deleted file mode 100644 index 14b8b5112d..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/15.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/2.png b/front/public/images/large/StorageDrawersForestry/trimA/2.png deleted file mode 100644 index e4d72220f0..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/3.png b/front/public/images/large/StorageDrawersForestry/trimA/3.png deleted file mode 100644 index ce6e042443..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/4.png b/front/public/images/large/StorageDrawersForestry/trimA/4.png deleted file mode 100644 index c2aa327ede..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/5.png b/front/public/images/large/StorageDrawersForestry/trimA/5.png deleted file mode 100644 index 2e6c53557f..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/6.png b/front/public/images/large/StorageDrawersForestry/trimA/6.png deleted file mode 100644 index 80c003f11c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/7.png b/front/public/images/large/StorageDrawersForestry/trimA/7.png deleted file mode 100644 index 9ad434ecb5..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/8.png b/front/public/images/large/StorageDrawersForestry/trimA/8.png deleted file mode 100644 index 2d41d65872..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimA/9.png b/front/public/images/large/StorageDrawersForestry/trimA/9.png deleted file mode 100644 index d32b4fbcf2..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimA/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/0.png b/front/public/images/large/StorageDrawersForestry/trimB/0.png deleted file mode 100644 index 0c3114848a..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/1.png b/front/public/images/large/StorageDrawersForestry/trimB/1.png deleted file mode 100644 index a13a48099e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/10.png b/front/public/images/large/StorageDrawersForestry/trimB/10.png deleted file mode 100644 index cae455efa4..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/11.png b/front/public/images/large/StorageDrawersForestry/trimB/11.png deleted file mode 100644 index 00214d62a2..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/12.png b/front/public/images/large/StorageDrawersForestry/trimB/12.png deleted file mode 100644 index 45c426bdc2..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/2.png b/front/public/images/large/StorageDrawersForestry/trimB/2.png deleted file mode 100644 index 37447aaf36..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/3.png b/front/public/images/large/StorageDrawersForestry/trimB/3.png deleted file mode 100644 index b1cf56743c..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/4.png b/front/public/images/large/StorageDrawersForestry/trimB/4.png deleted file mode 100644 index b74d21b069..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/5.png b/front/public/images/large/StorageDrawersForestry/trimB/5.png deleted file mode 100644 index 815932f221..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/6.png b/front/public/images/large/StorageDrawersForestry/trimB/6.png deleted file mode 100644 index dd6d024b99..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/7.png b/front/public/images/large/StorageDrawersForestry/trimB/7.png deleted file mode 100644 index f7a944010e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/8.png b/front/public/images/large/StorageDrawersForestry/trimB/8.png deleted file mode 100644 index 5967612d9d..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersForestry/trimB/9.png b/front/public/images/large/StorageDrawersForestry/trimB/9.png deleted file mode 100644 index 6f9b349e6e..0000000000 Binary files a/front/public/images/large/StorageDrawersForestry/trimB/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/0.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/0.png deleted file mode 100644 index a55d991bdd..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/1.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/1.png deleted file mode 100644 index f901c1ab85..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/2.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/2.png deleted file mode 100644 index ea269a43ae..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/3.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/3.png deleted file mode 100644 index 263f86159b..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/4.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/4.png deleted file mode 100644 index da2551085c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/5.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/5.png deleted file mode 100644 index 9a7da65738..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/6.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/6.png deleted file mode 100644 index 03d554e050..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/7.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/7.png deleted file mode 100644 index 171e342422..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/8.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/8.png deleted file mode 100644 index 0a0cc84698..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_0/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/0.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/0.png deleted file mode 100644 index ae0bcec928..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/1.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/1.png deleted file mode 100644 index 95ce4fdf30..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/10.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/10.png deleted file mode 100644 index cc706ee86e..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/11.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/11.png deleted file mode 100644 index 52c3775195..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/2.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/2.png deleted file mode 100644 index 6d722113a6..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/3.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/3.png deleted file mode 100644 index e1703344de..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/4.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/4.png deleted file mode 100644 index 394a3a1d0d..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/5.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/5.png deleted file mode 100644 index 8d2102e2c1..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/6.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/6.png deleted file mode 100644 index 584179db6f..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/7.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/7.png deleted file mode 100644 index b34426d607..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/8.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/8.png deleted file mode 100644 index a2f3f31fd3..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/9.png b/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/9.png deleted file mode 100644 index 82ff33343b..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers1_1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/0.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/0.png deleted file mode 100644 index b9e7aff8d1..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/1.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/1.png deleted file mode 100644 index cf9ceb7778..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/2.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/2.png deleted file mode 100644 index 399e50a81c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/3.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/3.png deleted file mode 100644 index 4a4eb9149c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/4.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/4.png deleted file mode 100644 index a7295ab742..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/5.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/5.png deleted file mode 100644 index 1ff97fe8de..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/6.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/6.png deleted file mode 100644 index 43182d3d0a..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/7.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/7.png deleted file mode 100644 index 22229c9d24..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/8.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/8.png deleted file mode 100644 index de3e7f6b24..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_0/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/0.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/0.png deleted file mode 100644 index 13ad7a1940..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/1.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/1.png deleted file mode 100644 index 3e6136d921..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/10.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/10.png deleted file mode 100644 index dbd7c680e2..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/11.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/11.png deleted file mode 100644 index 876e46ef08..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/2.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/2.png deleted file mode 100644 index 5973708cb5..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/3.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/3.png deleted file mode 100644 index 6cedd24c1d..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/4.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/4.png deleted file mode 100644 index 074ef21e70..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/5.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/5.png deleted file mode 100644 index b5c18d7fdc..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/6.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/6.png deleted file mode 100644 index b059ee7aca..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/7.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/7.png deleted file mode 100644 index bd5093458f..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/8.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/8.png deleted file mode 100644 index adbab3ab7e..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/9.png b/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/9.png deleted file mode 100644 index ffd61198d7..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers2_1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/0.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/0.png deleted file mode 100644 index e21a1815dc..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/1.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/1.png deleted file mode 100644 index 69743462a8..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/2.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/2.png deleted file mode 100644 index 0cd0513b57..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/3.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/3.png deleted file mode 100644 index 8cefcccd63..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/4.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/4.png deleted file mode 100644 index ce6ae634d6..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/5.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/5.png deleted file mode 100644 index 693344c445..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/6.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/6.png deleted file mode 100644 index 3ab88a6eaf..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/7.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/7.png deleted file mode 100644 index dd015c0798..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/8.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/8.png deleted file mode 100644 index 2526c36e6a..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_0/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/0.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/0.png deleted file mode 100644 index 4c375bb39d..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/1.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/1.png deleted file mode 100644 index d6f57d0477..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/10.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/10.png deleted file mode 100644 index 7ee53ea0a4..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/11.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/11.png deleted file mode 100644 index a602203808..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/2.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/2.png deleted file mode 100644 index 9e98d60cd6..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/3.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/3.png deleted file mode 100644 index 27f74dbab4..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/4.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/4.png deleted file mode 100644 index 9f762b9a19..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/5.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/5.png deleted file mode 100644 index d5c7708c3c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/6.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/6.png deleted file mode 100644 index 235e7bf614..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/7.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/7.png deleted file mode 100644 index 0471647f8a..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/8.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/8.png deleted file mode 100644 index a578ae6861..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/9.png b/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/9.png deleted file mode 100644 index 7455dc3498..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/fullDrawers4_1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/0.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/0.png deleted file mode 100644 index b7fb32b3d7..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/1.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/1.png deleted file mode 100644 index a6d9950ae7..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/2.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/2.png deleted file mode 100644 index dceff2575c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/3.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/3.png deleted file mode 100644 index 5cf71865ae..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/4.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/4.png deleted file mode 100644 index 032abd753c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/5.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/5.png deleted file mode 100644 index d82f443c78..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/6.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/6.png deleted file mode 100644 index 6213c8bff6..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/7.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/7.png deleted file mode 100644 index 1e5fbb1615..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/8.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/8.png deleted file mode 100644 index f78c6a7629..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_0/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/0.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/0.png deleted file mode 100644 index e21535489c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/1.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/1.png deleted file mode 100644 index 4e6b4358f0..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/10.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/10.png deleted file mode 100644 index 03d9c44d2f..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/11.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/11.png deleted file mode 100644 index bd27f1c9ee..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/2.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/2.png deleted file mode 100644 index 8b3f3d8ceb..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/3.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/3.png deleted file mode 100644 index 6134dbf36d..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/4.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/4.png deleted file mode 100644 index 27246375a0..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/5.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/5.png deleted file mode 100644 index a2e297f022..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/6.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/6.png deleted file mode 100644 index 00e838a95b..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/7.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/7.png deleted file mode 100644 index 0410e1df0b..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/8.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/8.png deleted file mode 100644 index 350198cd31..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/9.png b/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/9.png deleted file mode 100644 index 15f0b3b5b8..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers2_1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/0.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/0.png deleted file mode 100644 index a94cc43b50..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/1.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/1.png deleted file mode 100644 index 9c930f40f3..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/2.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/2.png deleted file mode 100644 index 3c26c713a1..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/3.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/3.png deleted file mode 100644 index 6d029750c6..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/4.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/4.png deleted file mode 100644 index 3a6d467ddd..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/5.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/5.png deleted file mode 100644 index 5d20f692f9..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/6.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/6.png deleted file mode 100644 index 9a18c9d1ba..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/7.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/7.png deleted file mode 100644 index aee5ee01cd..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/8.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/8.png deleted file mode 100644 index 9248df7fae..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_0/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/0.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/0.png deleted file mode 100644 index 8f1811ebf5..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/1.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/1.png deleted file mode 100644 index 9b5b65b9ff..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/10.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/10.png deleted file mode 100644 index c21a855f24..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/11.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/11.png deleted file mode 100644 index b987abc233..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/2.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/2.png deleted file mode 100644 index ed31cfba8c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/3.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/3.png deleted file mode 100644 index 893481108c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/4.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/4.png deleted file mode 100644 index e25c948e77..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/5.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/5.png deleted file mode 100644 index d4b7a0ec20..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/6.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/6.png deleted file mode 100644 index 81ec706e0f..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/7.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/7.png deleted file mode 100644 index 244e821414..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/8.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/8.png deleted file mode 100644 index d3228cc511..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/9.png b/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/9.png deleted file mode 100644 index 0e5a26913c..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/halfDrawers4_1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/0.png b/front/public/images/large/StorageDrawersMisc/trim_0/0.png deleted file mode 100644 index 09cd86e3db..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/1.png b/front/public/images/large/StorageDrawersMisc/trim_0/1.png deleted file mode 100644 index 5d21d857db..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/2.png b/front/public/images/large/StorageDrawersMisc/trim_0/2.png deleted file mode 100644 index 9d231478e4..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/3.png b/front/public/images/large/StorageDrawersMisc/trim_0/3.png deleted file mode 100644 index f8deb97c94..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/4.png b/front/public/images/large/StorageDrawersMisc/trim_0/4.png deleted file mode 100644 index b2038ea5de..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/5.png b/front/public/images/large/StorageDrawersMisc/trim_0/5.png deleted file mode 100644 index 5567914367..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/6.png b/front/public/images/large/StorageDrawersMisc/trim_0/6.png deleted file mode 100644 index f033aba331..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/7.png b/front/public/images/large/StorageDrawersMisc/trim_0/7.png deleted file mode 100644 index e01f06b840..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_0/8.png b/front/public/images/large/StorageDrawersMisc/trim_0/8.png deleted file mode 100644 index 29aec994c1..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_0/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/0.png b/front/public/images/large/StorageDrawersMisc/trim_1/0.png deleted file mode 100644 index 761f4054ce..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/1.png b/front/public/images/large/StorageDrawersMisc/trim_1/1.png deleted file mode 100644 index 17b156741b..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/10.png b/front/public/images/large/StorageDrawersMisc/trim_1/10.png deleted file mode 100644 index 90fd49bfb9..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/11.png b/front/public/images/large/StorageDrawersMisc/trim_1/11.png deleted file mode 100644 index 7455972c87..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/2.png b/front/public/images/large/StorageDrawersMisc/trim_1/2.png deleted file mode 100644 index b7f9af6c4f..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/3.png b/front/public/images/large/StorageDrawersMisc/trim_1/3.png deleted file mode 100644 index 61c3beee32..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/4.png b/front/public/images/large/StorageDrawersMisc/trim_1/4.png deleted file mode 100644 index 7cfced36b7..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/5.png b/front/public/images/large/StorageDrawersMisc/trim_1/5.png deleted file mode 100644 index acfb5c38b0..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/6.png b/front/public/images/large/StorageDrawersMisc/trim_1/6.png deleted file mode 100644 index 1a2b2a3a0e..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/7.png b/front/public/images/large/StorageDrawersMisc/trim_1/7.png deleted file mode 100644 index 3d5cc5a558..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/8.png b/front/public/images/large/StorageDrawersMisc/trim_1/8.png deleted file mode 100644 index 4f16f308a1..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersMisc/trim_1/9.png b/front/public/images/large/StorageDrawersMisc/trim_1/9.png deleted file mode 100644 index ab37bf8309..0000000000 Binary files a/front/public/images/large/StorageDrawersMisc/trim_1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/0.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/0.png deleted file mode 100644 index 079f3df9e7..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/1.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/1.png deleted file mode 100644 index dc80406b80..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/10.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/10.png deleted file mode 100644 index 81efba0da4..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/11.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/11.png deleted file mode 100644 index 8e87877609..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/12.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/12.png deleted file mode 100644 index c5dd763df3..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/2.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/2.png deleted file mode 100644 index 6bb3907e49..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/3.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/3.png deleted file mode 100644 index 5bf1f560d6..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/4.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/4.png deleted file mode 100644 index 6e7c8d9b01..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/5.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/5.png deleted file mode 100644 index d37cb754ea..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/6.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/6.png deleted file mode 100644 index ce6f3d41e3..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/7.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/7.png deleted file mode 100644 index c22dc699d9..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/8.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/8.png deleted file mode 100644 index ddcdcbfb25..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers1/9.png b/front/public/images/large/StorageDrawersNatura/fullDrawers1/9.png deleted file mode 100644 index 8aa9dc1ed4..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers1/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/0.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/0.png deleted file mode 100644 index d05b690105..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/1.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/1.png deleted file mode 100644 index 0f8df3d0e1..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/10.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/10.png deleted file mode 100644 index b0b8e19550..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/11.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/11.png deleted file mode 100644 index a4ab47c0fa..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/12.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/12.png deleted file mode 100644 index e99da1a650..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/2.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/2.png deleted file mode 100644 index 4b0e64e5a2..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/3.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/3.png deleted file mode 100644 index 5da6afbbe3..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/4.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/4.png deleted file mode 100644 index 8a4eba7921..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/5.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/5.png deleted file mode 100644 index ac73b12b13..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/6.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/6.png deleted file mode 100644 index f9ca655973..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/7.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/7.png deleted file mode 100644 index a8dd6063d2..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/8.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/8.png deleted file mode 100644 index 3a97bf78ca..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers2/9.png b/front/public/images/large/StorageDrawersNatura/fullDrawers2/9.png deleted file mode 100644 index 0f3805db92..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers2/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/0.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/0.png deleted file mode 100644 index abaff21a43..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/1.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/1.png deleted file mode 100644 index 3762b37225..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/10.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/10.png deleted file mode 100644 index c756a2614b..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/11.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/11.png deleted file mode 100644 index a6ba897c35..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/12.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/12.png deleted file mode 100644 index ca4999e18e..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/2.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/2.png deleted file mode 100644 index 0fc89002a2..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/3.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/3.png deleted file mode 100644 index 3bc5e0ca35..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/4.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/4.png deleted file mode 100644 index 7e577de10b..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/5.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/5.png deleted file mode 100644 index 8f6beda560..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/6.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/6.png deleted file mode 100644 index 32cdda95cd..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/7.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/7.png deleted file mode 100644 index 2156b3f7e0..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/8.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/8.png deleted file mode 100644 index f43c2c22f3..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/fullDrawers4/9.png b/front/public/images/large/StorageDrawersNatura/fullDrawers4/9.png deleted file mode 100644 index 673877c5d5..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/fullDrawers4/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/0.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/0.png deleted file mode 100644 index 55452253f5..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/1.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/1.png deleted file mode 100644 index 54b6a395f3..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/10.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/10.png deleted file mode 100644 index 5ff72e39ee..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/11.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/11.png deleted file mode 100644 index 8acf5d5838..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/12.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/12.png deleted file mode 100644 index d39ebb7606..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/2.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/2.png deleted file mode 100644 index 923232bcfb..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/3.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/3.png deleted file mode 100644 index 6e843c0802..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/4.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/4.png deleted file mode 100644 index 6d194fe6e3..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/5.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/5.png deleted file mode 100644 index 20a7e306f1..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/6.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/6.png deleted file mode 100644 index 1af6d1de70..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/7.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/7.png deleted file mode 100644 index 680c29d907..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/8.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/8.png deleted file mode 100644 index 0be990fa99..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers2/9.png b/front/public/images/large/StorageDrawersNatura/halfDrawers2/9.png deleted file mode 100644 index 525a9edda7..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers2/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/0.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/0.png deleted file mode 100644 index 0322bfd662..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/1.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/1.png deleted file mode 100644 index f56f2e6863..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/10.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/10.png deleted file mode 100644 index ae4ef758b2..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/11.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/11.png deleted file mode 100644 index 5b8bfac362..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/12.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/12.png deleted file mode 100644 index 8ee80403d6..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/2.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/2.png deleted file mode 100644 index 02492a9b51..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/3.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/3.png deleted file mode 100644 index 2ad31a66d3..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/4.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/4.png deleted file mode 100644 index afda6ea1df..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/5.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/5.png deleted file mode 100644 index 37c6c0bb25..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/6.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/6.png deleted file mode 100644 index a9fb89638b..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/7.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/7.png deleted file mode 100644 index 00405ebaeb..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/8.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/8.png deleted file mode 100644 index ee7c95ae55..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/halfDrawers4/9.png b/front/public/images/large/StorageDrawersNatura/halfDrawers4/9.png deleted file mode 100644 index 9b0a0be591..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/halfDrawers4/9.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/0.png b/front/public/images/large/StorageDrawersNatura/trim/0.png deleted file mode 100644 index d902ee2d11..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/0.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/1.png b/front/public/images/large/StorageDrawersNatura/trim/1.png deleted file mode 100644 index b4d4ed02bb..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/1.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/10.png b/front/public/images/large/StorageDrawersNatura/trim/10.png deleted file mode 100644 index 86e7ba8403..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/10.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/11.png b/front/public/images/large/StorageDrawersNatura/trim/11.png deleted file mode 100644 index 1604dd0210..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/11.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/12.png b/front/public/images/large/StorageDrawersNatura/trim/12.png deleted file mode 100644 index 63c8a7ed64..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/12.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/2.png b/front/public/images/large/StorageDrawersNatura/trim/2.png deleted file mode 100644 index 3614e434c0..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/2.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/3.png b/front/public/images/large/StorageDrawersNatura/trim/3.png deleted file mode 100644 index 96245363db..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/3.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/4.png b/front/public/images/large/StorageDrawersNatura/trim/4.png deleted file mode 100644 index a879ddec0a..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/4.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/5.png b/front/public/images/large/StorageDrawersNatura/trim/5.png deleted file mode 100644 index 04e96754cb..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/5.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/6.png b/front/public/images/large/StorageDrawersNatura/trim/6.png deleted file mode 100644 index 1bf38f71a9..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/6.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/7.png b/front/public/images/large/StorageDrawersNatura/trim/7.png deleted file mode 100644 index b94e289117..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/7.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/8.png b/front/public/images/large/StorageDrawersNatura/trim/8.png deleted file mode 100644 index 9ecbd4c9fb..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/8.png and /dev/null differ diff --git a/front/public/images/large/StorageDrawersNatura/trim/9.png b/front/public/images/large/StorageDrawersNatura/trim/9.png deleted file mode 100644 index 243e909c06..0000000000 Binary files a/front/public/images/large/StorageDrawersNatura/trim/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Armor.DryingRack/0.png b/front/public/images/large/TConstruct/Armor.DryingRack/0.png deleted file mode 100644 index 84913048e7..0000000000 Binary files a/front/public/images/large/TConstruct/Armor.DryingRack/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ArrowAmmo/0.png b/front/public/images/large/TConstruct/ArrowAmmo/0.png deleted file mode 100644 index 5286db25f4..0000000000 Binary files a/front/public/images/large/TConstruct/ArrowAmmo/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BattleSignBlock/0.png b/front/public/images/large/TConstruct/BattleSignBlock/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/TConstruct/BattleSignBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltAmmo/0.png b/front/public/images/large/TConstruct/BoltAmmo/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltAmmo/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/0.png b/front/public/images/large/TConstruct/BoltPart/0.png deleted file mode 100644 index a285cd7058..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1.png b/front/public/images/large/TConstruct/BoltPart/1.png deleted file mode 100644 index 81b9d986dd..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/10.png b/front/public/images/large/TConstruct/BoltPart/10.png deleted file mode 100644 index 0a3388bf02..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/11.png b/front/public/images/large/TConstruct/BoltPart/11.png deleted file mode 100644 index 36f9bfebd8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/12.png b/front/public/images/large/TConstruct/BoltPart/12.png deleted file mode 100644 index 8e8b507085..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/13.png b/front/public/images/large/TConstruct/BoltPart/13.png deleted file mode 100644 index 15e1becd83..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/14.png b/front/public/images/large/TConstruct/BoltPart/14.png deleted file mode 100644 index 338ca3cca8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/15.png b/front/public/images/large/TConstruct/BoltPart/15.png deleted file mode 100644 index 846abdf100..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1500.png b/front/public/images/large/TConstruct/BoltPart/1500.png deleted file mode 100644 index d3e836d3ce..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1500.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1501.png b/front/public/images/large/TConstruct/BoltPart/1501.png deleted file mode 100644 index 00e3018ac8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1501.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1502.png b/front/public/images/large/TConstruct/BoltPart/1502.png deleted file mode 100644 index 40b098b57c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1502.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1503.png b/front/public/images/large/TConstruct/BoltPart/1503.png deleted file mode 100644 index 68c6f0f5f1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1503.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1504.png b/front/public/images/large/TConstruct/BoltPart/1504.png deleted file mode 100644 index 7af0215cd3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1504.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1505.png b/front/public/images/large/TConstruct/BoltPart/1505.png deleted file mode 100644 index 8ce4bbb1d7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1505.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1506.png b/front/public/images/large/TConstruct/BoltPart/1506.png deleted file mode 100644 index a59be03aba..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1506.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1507.png b/front/public/images/large/TConstruct/BoltPart/1507.png deleted file mode 100644 index 73c51859b1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1507.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1508.png b/front/public/images/large/TConstruct/BoltPart/1508.png deleted file mode 100644 index 2751dab030..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1508.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1509.png b/front/public/images/large/TConstruct/BoltPart/1509.png deleted file mode 100644 index 201280f288..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1509.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1510.png b/front/public/images/large/TConstruct/BoltPart/1510.png deleted file mode 100644 index a838990a97..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1510.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1511.png b/front/public/images/large/TConstruct/BoltPart/1511.png deleted file mode 100644 index 2751dab030..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1511.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1512.png b/front/public/images/large/TConstruct/BoltPart/1512.png deleted file mode 100644 index 71081e6c7e..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1512.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1513.png b/front/public/images/large/TConstruct/BoltPart/1513.png deleted file mode 100644 index 4cb5a2e857..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1513.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1514.png b/front/public/images/large/TConstruct/BoltPart/1514.png deleted file mode 100644 index 40a3279ef7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1514.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1515.png b/front/public/images/large/TConstruct/BoltPart/1515.png deleted file mode 100644 index 08ecc5f9df..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1515.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1516.png b/front/public/images/large/TConstruct/BoltPart/1516.png deleted file mode 100644 index ecc9db51db..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1516.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1517.png b/front/public/images/large/TConstruct/BoltPart/1517.png deleted file mode 100644 index a3dcf8139c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1517.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1518.png b/front/public/images/large/TConstruct/BoltPart/1518.png deleted file mode 100644 index f8daafe387..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1518.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1519.png b/front/public/images/large/TConstruct/BoltPart/1519.png deleted file mode 100644 index bb9fa85329..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1519.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1520.png b/front/public/images/large/TConstruct/BoltPart/1520.png deleted file mode 100644 index 9d4dbc70e9..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1520.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1521.png b/front/public/images/large/TConstruct/BoltPart/1521.png deleted file mode 100644 index c785786b4c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1521.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1522.png b/front/public/images/large/TConstruct/BoltPart/1522.png deleted file mode 100644 index 28fdcffba7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1522.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1523.png b/front/public/images/large/TConstruct/BoltPart/1523.png deleted file mode 100644 index 34f5c5fb9c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1523.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1524.png b/front/public/images/large/TConstruct/BoltPart/1524.png deleted file mode 100644 index db48ce78b3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1524.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1525.png b/front/public/images/large/TConstruct/BoltPart/1525.png deleted file mode 100644 index 7b4e407806..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1525.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1526.png b/front/public/images/large/TConstruct/BoltPart/1526.png deleted file mode 100644 index 8adfa8fe8c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1526.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1527.png b/front/public/images/large/TConstruct/BoltPart/1527.png deleted file mode 100644 index c8f18f0953..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1527.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1528.png b/front/public/images/large/TConstruct/BoltPart/1528.png deleted file mode 100644 index fe493a5c1a..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1528.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1529.png b/front/public/images/large/TConstruct/BoltPart/1529.png deleted file mode 100644 index 22ed1cdb41..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1529.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1530.png b/front/public/images/large/TConstruct/BoltPart/1530.png deleted file mode 100644 index 844ce6fda4..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1530.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1531.png b/front/public/images/large/TConstruct/BoltPart/1531.png deleted file mode 100644 index e9c57dca3f..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1531.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1532.png b/front/public/images/large/TConstruct/BoltPart/1532.png deleted file mode 100644 index fce132f274..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1532.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1533.png b/front/public/images/large/TConstruct/BoltPart/1533.png deleted file mode 100644 index 122e225964..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1533.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1534.png b/front/public/images/large/TConstruct/BoltPart/1534.png deleted file mode 100644 index 380d1f580b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1534.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1535.png b/front/public/images/large/TConstruct/BoltPart/1535.png deleted file mode 100644 index e3e92935da..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1535.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1536.png b/front/public/images/large/TConstruct/BoltPart/1536.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1536.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1537.png b/front/public/images/large/TConstruct/BoltPart/1537.png deleted file mode 100644 index db6f37a23e..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1537.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1538.png b/front/public/images/large/TConstruct/BoltPart/1538.png deleted file mode 100644 index dba849a109..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1538.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1539.png b/front/public/images/large/TConstruct/BoltPart/1539.png deleted file mode 100644 index b17e5669b2..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1539.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1540.png b/front/public/images/large/TConstruct/BoltPart/1540.png deleted file mode 100644 index 83521c2f53..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1540.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1541.png b/front/public/images/large/TConstruct/BoltPart/1541.png deleted file mode 100644 index 28318938a9..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1541.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1542.png b/front/public/images/large/TConstruct/BoltPart/1542.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1542.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1543.png b/front/public/images/large/TConstruct/BoltPart/1543.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1543.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1544.png b/front/public/images/large/TConstruct/BoltPart/1544.png deleted file mode 100644 index 843546b9fa..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1544.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1545.png b/front/public/images/large/TConstruct/BoltPart/1545.png deleted file mode 100644 index 2e79279717..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1545.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1546.png b/front/public/images/large/TConstruct/BoltPart/1546.png deleted file mode 100644 index 23d008272c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1546.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1547.png b/front/public/images/large/TConstruct/BoltPart/1547.png deleted file mode 100644 index 2d621c409e..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1547.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1548.png b/front/public/images/large/TConstruct/BoltPart/1548.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1548.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1549.png b/front/public/images/large/TConstruct/BoltPart/1549.png deleted file mode 100644 index 4720224063..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1549.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1550.png b/front/public/images/large/TConstruct/BoltPart/1550.png deleted file mode 100644 index 331a5c015e..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1550.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1551.png b/front/public/images/large/TConstruct/BoltPart/1551.png deleted file mode 100644 index 595be704a7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1551.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1553.png b/front/public/images/large/TConstruct/BoltPart/1553.png deleted file mode 100644 index d1ef0f16ee..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1553.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1554.png b/front/public/images/large/TConstruct/BoltPart/1554.png deleted file mode 100644 index 3b2bc8b90e..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1554.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1555.png b/front/public/images/large/TConstruct/BoltPart/1555.png deleted file mode 100644 index 193f20b9b7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1555.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1556.png b/front/public/images/large/TConstruct/BoltPart/1556.png deleted file mode 100644 index 40a3279ef7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1556.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1557.png b/front/public/images/large/TConstruct/BoltPart/1557.png deleted file mode 100644 index 40a3279ef7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1557.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1562.png b/front/public/images/large/TConstruct/BoltPart/1562.png deleted file mode 100644 index bbb1f37da8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1562.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1563.png b/front/public/images/large/TConstruct/BoltPart/1563.png deleted file mode 100644 index 193f20b9b7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1563.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1564.png b/front/public/images/large/TConstruct/BoltPart/1564.png deleted file mode 100644 index 761247405a..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1564.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1565.png b/front/public/images/large/TConstruct/BoltPart/1565.png deleted file mode 100644 index bd118c0fee..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1565.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1566.png b/front/public/images/large/TConstruct/BoltPart/1566.png deleted file mode 100644 index 0315f3d24f..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1566.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1567.png b/front/public/images/large/TConstruct/BoltPart/1567.png deleted file mode 100644 index 19f3f00ffa..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1567.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1568.png b/front/public/images/large/TConstruct/BoltPart/1568.png deleted file mode 100644 index 41fa928a1c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1568.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1570.png b/front/public/images/large/TConstruct/BoltPart/1570.png deleted file mode 100644 index 8a3a6da469..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1570.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1571.png b/front/public/images/large/TConstruct/BoltPart/1571.png deleted file mode 100644 index b1c3050ed5..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1571.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1572.png b/front/public/images/large/TConstruct/BoltPart/1572.png deleted file mode 100644 index 10e2ec7640..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1572.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1573.png b/front/public/images/large/TConstruct/BoltPart/1573.png deleted file mode 100644 index 212655c602..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1573.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1574.png b/front/public/images/large/TConstruct/BoltPart/1574.png deleted file mode 100644 index c785786b4c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1574.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1575.png b/front/public/images/large/TConstruct/BoltPart/1575.png deleted file mode 100644 index 2d621c409e..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1575.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1576.png b/front/public/images/large/TConstruct/BoltPart/1576.png deleted file mode 100644 index c785786b4c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1576.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1577.png b/front/public/images/large/TConstruct/BoltPart/1577.png deleted file mode 100644 index 8b582cabfe..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1577.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1578.png b/front/public/images/large/TConstruct/BoltPart/1578.png deleted file mode 100644 index 0f6346f2f5..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1578.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1579.png b/front/public/images/large/TConstruct/BoltPart/1579.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1579.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1582.png b/front/public/images/large/TConstruct/BoltPart/1582.png deleted file mode 100644 index c402ac6ae7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1582.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1583.png b/front/public/images/large/TConstruct/BoltPart/1583.png deleted file mode 100644 index db0ee6a8ab..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1583.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1584.png b/front/public/images/large/TConstruct/BoltPart/1584.png deleted file mode 100644 index d0a15643b3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1584.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1585.png b/front/public/images/large/TConstruct/BoltPart/1585.png deleted file mode 100644 index 63f79b8bb9..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1585.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1586.png b/front/public/images/large/TConstruct/BoltPart/1586.png deleted file mode 100644 index 8b56ad2f37..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1586.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1587.png b/front/public/images/large/TConstruct/BoltPart/1587.png deleted file mode 100644 index fc787f8372..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1587.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1588.png b/front/public/images/large/TConstruct/BoltPart/1588.png deleted file mode 100644 index 193f20b9b7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1588.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1589.png b/front/public/images/large/TConstruct/BoltPart/1589.png deleted file mode 100644 index 4cf3eaf2ce..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1589.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1590.png b/front/public/images/large/TConstruct/BoltPart/1590.png deleted file mode 100644 index 0315f3d24f..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1590.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1591.png b/front/public/images/large/TConstruct/BoltPart/1591.png deleted file mode 100644 index 3c21253359..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1591.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1592.png b/front/public/images/large/TConstruct/BoltPart/1592.png deleted file mode 100644 index 323915f1b1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1592.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1593.png b/front/public/images/large/TConstruct/BoltPart/1593.png deleted file mode 100644 index e1892360ab..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1593.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1594.png b/front/public/images/large/TConstruct/BoltPart/1594.png deleted file mode 100644 index a0b7966b72..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1594.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1595.png b/front/public/images/large/TConstruct/BoltPart/1595.png deleted file mode 100644 index 8d16987a2d..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1595.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1596.png b/front/public/images/large/TConstruct/BoltPart/1596.png deleted file mode 100644 index d6c124906d..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1596.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1597.png b/front/public/images/large/TConstruct/BoltPart/1597.png deleted file mode 100644 index 2d50db5d4b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1597.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1598.png b/front/public/images/large/TConstruct/BoltPart/1598.png deleted file mode 100644 index e98e96b4b9..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1598.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1599.png b/front/public/images/large/TConstruct/BoltPart/1599.png deleted file mode 100644 index 72ce94bdb4..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1599.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/16.png b/front/public/images/large/TConstruct/BoltPart/16.png deleted file mode 100644 index 8d0068cd72..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1600.png b/front/public/images/large/TConstruct/BoltPart/1600.png deleted file mode 100644 index b24ed28770..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1600.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1601.png b/front/public/images/large/TConstruct/BoltPart/1601.png deleted file mode 100644 index a891c66a3f..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1601.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1602.png b/front/public/images/large/TConstruct/BoltPart/1602.png deleted file mode 100644 index bdf4734eaa..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1602.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1603.png b/front/public/images/large/TConstruct/BoltPart/1603.png deleted file mode 100644 index beeb02e996..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1603.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1604.png b/front/public/images/large/TConstruct/BoltPart/1604.png deleted file mode 100644 index ed3b845c73..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1604.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1605.png b/front/public/images/large/TConstruct/BoltPart/1605.png deleted file mode 100644 index f533d44380..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1605.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1606.png b/front/public/images/large/TConstruct/BoltPart/1606.png deleted file mode 100644 index a3824e16e3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1606.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1607.png b/front/public/images/large/TConstruct/BoltPart/1607.png deleted file mode 100644 index cd488afa17..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1607.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1608.png b/front/public/images/large/TConstruct/BoltPart/1608.png deleted file mode 100644 index 82a189ec98..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1608.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1609.png b/front/public/images/large/TConstruct/BoltPart/1609.png deleted file mode 100644 index c785786b4c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1609.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1610.png b/front/public/images/large/TConstruct/BoltPart/1610.png deleted file mode 100644 index a838990a97..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1610.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1611.png b/front/public/images/large/TConstruct/BoltPart/1611.png deleted file mode 100644 index bfa8c115d9..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1611.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1612.png b/front/public/images/large/TConstruct/BoltPart/1612.png deleted file mode 100644 index c3bd6de645..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1612.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1613.png b/front/public/images/large/TConstruct/BoltPart/1613.png deleted file mode 100644 index 4951279286..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1613.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1614.png b/front/public/images/large/TConstruct/BoltPart/1614.png deleted file mode 100644 index a3824e16e3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1614.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1615.png b/front/public/images/large/TConstruct/BoltPart/1615.png deleted file mode 100644 index dba849a109..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1615.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1616.png b/front/public/images/large/TConstruct/BoltPart/1616.png deleted file mode 100644 index 19b6f76c5c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1616.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1617.png b/front/public/images/large/TConstruct/BoltPart/1617.png deleted file mode 100644 index f533d44380..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1617.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1618.png b/front/public/images/large/TConstruct/BoltPart/1618.png deleted file mode 100644 index d76f67bda5..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1618.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1619.png b/front/public/images/large/TConstruct/BoltPart/1619.png deleted file mode 100644 index 5c4d08851c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1619.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1620.png b/front/public/images/large/TConstruct/BoltPart/1620.png deleted file mode 100644 index 0315f3d24f..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1620.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1621.png b/front/public/images/large/TConstruct/BoltPart/1621.png deleted file mode 100644 index 90c1a48630..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1621.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1622.png b/front/public/images/large/TConstruct/BoltPart/1622.png deleted file mode 100644 index 93e307f997..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1622.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1623.png b/front/public/images/large/TConstruct/BoltPart/1623.png deleted file mode 100644 index 5ba7662113..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1623.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1624.png b/front/public/images/large/TConstruct/BoltPart/1624.png deleted file mode 100644 index 7515e32668..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1624.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1625.png b/front/public/images/large/TConstruct/BoltPart/1625.png deleted file mode 100644 index b8c18fe088..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1625.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1626.png b/front/public/images/large/TConstruct/BoltPart/1626.png deleted file mode 100644 index 087e440bc1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1626.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1627.png b/front/public/images/large/TConstruct/BoltPart/1627.png deleted file mode 100644 index 123ec59065..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1627.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1628.png b/front/public/images/large/TConstruct/BoltPart/1628.png deleted file mode 100644 index be10ea2605..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1628.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1629.png b/front/public/images/large/TConstruct/BoltPart/1629.png deleted file mode 100644 index 29cb87a9d0..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1629.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1630.png b/front/public/images/large/TConstruct/BoltPart/1630.png deleted file mode 100644 index 54a0519ab7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1630.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1631.png b/front/public/images/large/TConstruct/BoltPart/1631.png deleted file mode 100644 index a838990a97..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1631.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1632.png b/front/public/images/large/TConstruct/BoltPart/1632.png deleted file mode 100644 index 8f0160cf74..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1632.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1633.png b/front/public/images/large/TConstruct/BoltPart/1633.png deleted file mode 100644 index 147343a331..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1633.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1634.png b/front/public/images/large/TConstruct/BoltPart/1634.png deleted file mode 100644 index 6769b335a0..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1634.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1635.png b/front/public/images/large/TConstruct/BoltPart/1635.png deleted file mode 100644 index 2130171db8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1635.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1636.png b/front/public/images/large/TConstruct/BoltPart/1636.png deleted file mode 100644 index 683d67e7ff..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1636.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1637.png b/front/public/images/large/TConstruct/BoltPart/1637.png deleted file mode 100644 index 3843ac6497..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1637.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1638.png b/front/public/images/large/TConstruct/BoltPart/1638.png deleted file mode 100644 index 76d346d3fd..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1638.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1639.png b/front/public/images/large/TConstruct/BoltPart/1639.png deleted file mode 100644 index b1c3050ed5..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1639.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1640.png b/front/public/images/large/TConstruct/BoltPart/1640.png deleted file mode 100644 index 2b3812e699..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1640.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1641.png b/front/public/images/large/TConstruct/BoltPart/1641.png deleted file mode 100644 index c3951c18cb..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1641.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1642.png b/front/public/images/large/TConstruct/BoltPart/1642.png deleted file mode 100644 index 14c45d5d8d..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1642.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1643.png b/front/public/images/large/TConstruct/BoltPart/1643.png deleted file mode 100644 index ab58d2ebdb..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1643.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1644.png b/front/public/images/large/TConstruct/BoltPart/1644.png deleted file mode 100644 index 17bc4739e8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1644.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1645.png b/front/public/images/large/TConstruct/BoltPart/1645.png deleted file mode 100644 index 8f0160cf74..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1645.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1646.png b/front/public/images/large/TConstruct/BoltPart/1646.png deleted file mode 100644 index a3824e16e3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1646.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1647.png b/front/public/images/large/TConstruct/BoltPart/1647.png deleted file mode 100644 index 40a3279ef7..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1647.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1648.png b/front/public/images/large/TConstruct/BoltPart/1648.png deleted file mode 100644 index a838990a97..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1648.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1649.png b/front/public/images/large/TConstruct/BoltPart/1649.png deleted file mode 100644 index 7eeed475d5..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1649.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1650.png b/front/public/images/large/TConstruct/BoltPart/1650.png deleted file mode 100644 index b3d6f54b23..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1650.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1651.png b/front/public/images/large/TConstruct/BoltPart/1651.png deleted file mode 100644 index 75152d4b1f..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1651.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1652.png b/front/public/images/large/TConstruct/BoltPart/1652.png deleted file mode 100644 index 1600b3dfbc..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1652.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1653.png b/front/public/images/large/TConstruct/BoltPart/1653.png deleted file mode 100644 index a316469884..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1653.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1654.png b/front/public/images/large/TConstruct/BoltPart/1654.png deleted file mode 100644 index 8bcefca25a..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1654.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1655.png b/front/public/images/large/TConstruct/BoltPart/1655.png deleted file mode 100644 index a9fa48801b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1655.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1656.png b/front/public/images/large/TConstruct/BoltPart/1656.png deleted file mode 100644 index e4a72ad923..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1656.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1657.png b/front/public/images/large/TConstruct/BoltPart/1657.png deleted file mode 100644 index c785786b4c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1657.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1658.png b/front/public/images/large/TConstruct/BoltPart/1658.png deleted file mode 100644 index 3d38ea64f4..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1658.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1659.png b/front/public/images/large/TConstruct/BoltPart/1659.png deleted file mode 100644 index 79053ad4d8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1659.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1660.png b/front/public/images/large/TConstruct/BoltPart/1660.png deleted file mode 100644 index a5783e595b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1660.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1661.png b/front/public/images/large/TConstruct/BoltPart/1661.png deleted file mode 100644 index 64e32b1fc8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1661.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1662.png b/front/public/images/large/TConstruct/BoltPart/1662.png deleted file mode 100644 index 2cef521237..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1662.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1663.png b/front/public/images/large/TConstruct/BoltPart/1663.png deleted file mode 100644 index 2f3ff9c031..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1663.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1664.png b/front/public/images/large/TConstruct/BoltPart/1664.png deleted file mode 100644 index 253bd4d43f..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1664.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1665.png b/front/public/images/large/TConstruct/BoltPart/1665.png deleted file mode 100644 index 5446768ea0..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1665.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1666.png b/front/public/images/large/TConstruct/BoltPart/1666.png deleted file mode 100644 index a811ea102d..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1666.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1667.png b/front/public/images/large/TConstruct/BoltPart/1667.png deleted file mode 100644 index 79e801814b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1667.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1668.png b/front/public/images/large/TConstruct/BoltPart/1668.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1668.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1670.png b/front/public/images/large/TConstruct/BoltPart/1670.png deleted file mode 100644 index c69a0e2b72..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1670.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1672.png b/front/public/images/large/TConstruct/BoltPart/1672.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1672.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1673.png b/front/public/images/large/TConstruct/BoltPart/1673.png deleted file mode 100644 index 2b146bef98..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1673.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1674.png b/front/public/images/large/TConstruct/BoltPart/1674.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1674.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1675.png b/front/public/images/large/TConstruct/BoltPart/1675.png deleted file mode 100644 index a3824e16e3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1675.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1676.png b/front/public/images/large/TConstruct/BoltPart/1676.png deleted file mode 100644 index 6c7bb3b66d..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1676.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1677.png b/front/public/images/large/TConstruct/BoltPart/1677.png deleted file mode 100644 index 3f2c9dc717..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1677.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1678.png b/front/public/images/large/TConstruct/BoltPart/1678.png deleted file mode 100644 index fef7e61acf..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1678.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1679.png b/front/public/images/large/TConstruct/BoltPart/1679.png deleted file mode 100644 index c220983186..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1679.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1680.png b/front/public/images/large/TConstruct/BoltPart/1680.png deleted file mode 100644 index 79fb58fd9c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1680.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1681.png b/front/public/images/large/TConstruct/BoltPart/1681.png deleted file mode 100644 index 8234d862a8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1681.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1682.png b/front/public/images/large/TConstruct/BoltPart/1682.png deleted file mode 100644 index e411c3da91..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1682.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1683.png b/front/public/images/large/TConstruct/BoltPart/1683.png deleted file mode 100644 index 355901a645..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1683.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1684.png b/front/public/images/large/TConstruct/BoltPart/1684.png deleted file mode 100644 index 3492489870..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1684.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1685.png b/front/public/images/large/TConstruct/BoltPart/1685.png deleted file mode 100644 index 210cbbc936..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1685.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1686.png b/front/public/images/large/TConstruct/BoltPart/1686.png deleted file mode 100644 index c785786b4c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1686.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1687.png b/front/public/images/large/TConstruct/BoltPart/1687.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1687.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1688.png b/front/public/images/large/TConstruct/BoltPart/1688.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1688.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1689.png b/front/public/images/large/TConstruct/BoltPart/1689.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1689.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1690.png b/front/public/images/large/TConstruct/BoltPart/1690.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1690.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1691.png b/front/public/images/large/TConstruct/BoltPart/1691.png deleted file mode 100644 index 5ed64a03d4..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1691.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1692.png b/front/public/images/large/TConstruct/BoltPart/1692.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1692.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1693.png b/front/public/images/large/TConstruct/BoltPart/1693.png deleted file mode 100644 index 6dd3bd8d93..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1693.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1694.png b/front/public/images/large/TConstruct/BoltPart/1694.png deleted file mode 100644 index 72caaa4004..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1694.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1695.png b/front/public/images/large/TConstruct/BoltPart/1695.png deleted file mode 100644 index 5f3f02f0e1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1695.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1696.png b/front/public/images/large/TConstruct/BoltPart/1696.png deleted file mode 100644 index c59a0a2a5c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1696.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1697.png b/front/public/images/large/TConstruct/BoltPart/1697.png deleted file mode 100644 index 4d9d824d19..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1697.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1698.png b/front/public/images/large/TConstruct/BoltPart/1698.png deleted file mode 100644 index c785786b4c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1698.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1699.png b/front/public/images/large/TConstruct/BoltPart/1699.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1699.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/17.png b/front/public/images/large/TConstruct/BoltPart/17.png deleted file mode 100644 index cb5aa9f1b3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1700.png b/front/public/images/large/TConstruct/BoltPart/1700.png deleted file mode 100644 index 9d58846ead..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1700.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1701.png b/front/public/images/large/TConstruct/BoltPart/1701.png deleted file mode 100644 index 35754c6db4..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1701.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1702.png b/front/public/images/large/TConstruct/BoltPart/1702.png deleted file mode 100644 index f6a1740984..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1702.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1703.png b/front/public/images/large/TConstruct/BoltPart/1703.png deleted file mode 100644 index 03a200de90..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1703.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1704.png b/front/public/images/large/TConstruct/BoltPart/1704.png deleted file mode 100644 index 0d49d576e6..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1704.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1705.png b/front/public/images/large/TConstruct/BoltPart/1705.png deleted file mode 100644 index bd118c0fee..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1705.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1706.png b/front/public/images/large/TConstruct/BoltPart/1706.png deleted file mode 100644 index a838990a97..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1706.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1707.png b/front/public/images/large/TConstruct/BoltPart/1707.png deleted file mode 100644 index d638691c4d..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1707.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1708.png b/front/public/images/large/TConstruct/BoltPart/1708.png deleted file mode 100644 index 7af0215cd3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1708.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1709.png b/front/public/images/large/TConstruct/BoltPart/1709.png deleted file mode 100644 index 77bd0c3a6a..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1709.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1710.png b/front/public/images/large/TConstruct/BoltPart/1710.png deleted file mode 100644 index 41c65a8627..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1710.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1711.png b/front/public/images/large/TConstruct/BoltPart/1711.png deleted file mode 100644 index 78ffcd1aea..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1711.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1712.png b/front/public/images/large/TConstruct/BoltPart/1712.png deleted file mode 100644 index b1bed7c37e..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1712.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1713.png b/front/public/images/large/TConstruct/BoltPart/1713.png deleted file mode 100644 index efc3ae6f45..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1713.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1714.png b/front/public/images/large/TConstruct/BoltPart/1714.png deleted file mode 100644 index 24000d620b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1714.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1715.png b/front/public/images/large/TConstruct/BoltPart/1715.png deleted file mode 100644 index 6b00fb5acf..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1715.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1716.png b/front/public/images/large/TConstruct/BoltPart/1716.png deleted file mode 100644 index 7472bf5c97..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1716.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1717.png b/front/public/images/large/TConstruct/BoltPart/1717.png deleted file mode 100644 index 7e93b97462..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1717.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1718.png b/front/public/images/large/TConstruct/BoltPart/1718.png deleted file mode 100644 index 926d0a38f0..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1718.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1719.png b/front/public/images/large/TConstruct/BoltPart/1719.png deleted file mode 100644 index fa8b657002..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1719.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1720.png b/front/public/images/large/TConstruct/BoltPart/1720.png deleted file mode 100644 index fa8b657002..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1720.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1721.png b/front/public/images/large/TConstruct/BoltPart/1721.png deleted file mode 100644 index 8d0068cd72..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1721.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1722.png b/front/public/images/large/TConstruct/BoltPart/1722.png deleted file mode 100644 index 7fa9170170..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1722.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1723.png b/front/public/images/large/TConstruct/BoltPart/1723.png deleted file mode 100644 index 7bf1fb604a..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1723.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1724.png b/front/public/images/large/TConstruct/BoltPart/1724.png deleted file mode 100644 index 4c7a3e07d2..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1724.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1725.png b/front/public/images/large/TConstruct/BoltPart/1725.png deleted file mode 100644 index 52bd17f2e5..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1725.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1726.png b/front/public/images/large/TConstruct/BoltPart/1726.png deleted file mode 100644 index 1c3ec7fe12..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1726.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1727.png b/front/public/images/large/TConstruct/BoltPart/1727.png deleted file mode 100644 index dfad965388..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1727.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1728.png b/front/public/images/large/TConstruct/BoltPart/1728.png deleted file mode 100644 index d417246c61..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1728.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1729.png b/front/public/images/large/TConstruct/BoltPart/1729.png deleted file mode 100644 index b0612e7afd..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1729.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1730.png b/front/public/images/large/TConstruct/BoltPart/1730.png deleted file mode 100644 index e91c5d773b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1730.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1731.png b/front/public/images/large/TConstruct/BoltPart/1731.png deleted file mode 100644 index 29e1f60b20..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1731.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1732.png b/front/public/images/large/TConstruct/BoltPart/1732.png deleted file mode 100644 index 2a1c99b59c..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1732.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1733.png b/front/public/images/large/TConstruct/BoltPart/1733.png deleted file mode 100644 index fe4da93934..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1733.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1734.png b/front/public/images/large/TConstruct/BoltPart/1734.png deleted file mode 100644 index dc232b7589..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1734.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1735.png b/front/public/images/large/TConstruct/BoltPart/1735.png deleted file mode 100644 index 3d7c744985..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1735.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1740.png b/front/public/images/large/TConstruct/BoltPart/1740.png deleted file mode 100644 index 99fceece98..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1740.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1741.png b/front/public/images/large/TConstruct/BoltPart/1741.png deleted file mode 100644 index 3243c1fab1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1741.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1742.png b/front/public/images/large/TConstruct/BoltPart/1742.png deleted file mode 100644 index 33bcf84da1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1742.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1743.png b/front/public/images/large/TConstruct/BoltPart/1743.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1743.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1744.png b/front/public/images/large/TConstruct/BoltPart/1744.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1744.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1745.png b/front/public/images/large/TConstruct/BoltPart/1745.png deleted file mode 100644 index d5902df3a8..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1745.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/1746.png b/front/public/images/large/TConstruct/BoltPart/1746.png deleted file mode 100644 index 035eef126b..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/1746.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/18.png b/front/public/images/large/TConstruct/BoltPart/18.png deleted file mode 100644 index e1469c96da..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/2.png b/front/public/images/large/TConstruct/BoltPart/2.png deleted file mode 100644 index b34ecd3a31..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/3.png b/front/public/images/large/TConstruct/BoltPart/3.png deleted file mode 100644 index 3a1f47b5b3..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/314.png b/front/public/images/large/TConstruct/BoltPart/314.png deleted file mode 100644 index 0e090d2ab1..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/4.png b/front/public/images/large/TConstruct/BoltPart/4.png deleted file mode 100644 index acfe539597..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/5.png b/front/public/images/large/TConstruct/BoltPart/5.png deleted file mode 100644 index 8bcbfc4492..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/6.png b/front/public/images/large/TConstruct/BoltPart/6.png deleted file mode 100644 index bf615e15ae..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/7.png b/front/public/images/large/TConstruct/BoltPart/7.png deleted file mode 100644 index 544b105ddd..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/8.png b/front/public/images/large/TConstruct/BoltPart/8.png deleted file mode 100644 index 1e5bdfbfef..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BoltPart/9.png b/front/public/images/large/TConstruct/BoltPart/9.png deleted file mode 100644 index edb0c4e298..0000000000 Binary files a/front/public/images/large/TConstruct/BoltPart/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Boneana/0.png b/front/public/images/large/TConstruct/Boneana/0.png deleted file mode 100644 index 0bf4272247..0000000000 Binary files a/front/public/images/large/TConstruct/Boneana/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/0.png b/front/public/images/large/TConstruct/BowLimbPart/0.png deleted file mode 100644 index f230134738..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/1.png b/front/public/images/large/TConstruct/BowLimbPart/1.png deleted file mode 100644 index 6079cb5c56..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/10.png b/front/public/images/large/TConstruct/BowLimbPart/10.png deleted file mode 100644 index 381fc72236..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/11.png b/front/public/images/large/TConstruct/BowLimbPart/11.png deleted file mode 100644 index f12e180b56..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/12.png b/front/public/images/large/TConstruct/BowLimbPart/12.png deleted file mode 100644 index 58963a2498..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/13.png b/front/public/images/large/TConstruct/BowLimbPart/13.png deleted file mode 100644 index dc41d10f59..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/14.png b/front/public/images/large/TConstruct/BowLimbPart/14.png deleted file mode 100644 index e12f7e8d61..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/15.png b/front/public/images/large/TConstruct/BowLimbPart/15.png deleted file mode 100644 index 5c63475051..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/16.png b/front/public/images/large/TConstruct/BowLimbPart/16.png deleted file mode 100644 index e973d62cf0..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/17.png b/front/public/images/large/TConstruct/BowLimbPart/17.png deleted file mode 100644 index a34b8bde55..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/18.png b/front/public/images/large/TConstruct/BowLimbPart/18.png deleted file mode 100644 index bc48d3b7b9..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/2.png b/front/public/images/large/TConstruct/BowLimbPart/2.png deleted file mode 100644 index 1c7d3af6f1..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/3.png b/front/public/images/large/TConstruct/BowLimbPart/3.png deleted file mode 100644 index 13a3ed3576..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/314.png b/front/public/images/large/TConstruct/BowLimbPart/314.png deleted file mode 100644 index 00cd6b4cc1..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/4.png b/front/public/images/large/TConstruct/BowLimbPart/4.png deleted file mode 100644 index af94558f1c..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/5.png b/front/public/images/large/TConstruct/BowLimbPart/5.png deleted file mode 100644 index f4413c1b29..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/6.png b/front/public/images/large/TConstruct/BowLimbPart/6.png deleted file mode 100644 index 9c762a7c0e..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/7.png b/front/public/images/large/TConstruct/BowLimbPart/7.png deleted file mode 100644 index e15d40ceeb..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/8.png b/front/public/images/large/TConstruct/BowLimbPart/8.png deleted file mode 100644 index f61f18e8b1..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/BowLimbPart/9.png b/front/public/images/large/TConstruct/BowLimbPart/9.png deleted file mode 100644 index 33215ace9f..0000000000 Binary files a/front/public/images/large/TConstruct/BowLimbPart/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Cast/0.png b/front/public/images/large/TConstruct/Cast/0.png deleted file mode 100644 index 6c7b8cf5f4..0000000000 Binary files a/front/public/images/large/TConstruct/Cast/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Cast/1.png b/front/public/images/large/TConstruct/Cast/1.png deleted file mode 100644 index 4596bc8b44..0000000000 Binary files a/front/public/images/large/TConstruct/Cast/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Cast/2.png b/front/public/images/large/TConstruct/Cast/2.png deleted file mode 100644 index 3875e2e356..0000000000 Binary files a/front/public/images/large/TConstruct/Cast/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Cast/3.png b/front/public/images/large/TConstruct/Cast/3.png deleted file mode 100644 index 6fb04e186a..0000000000 Binary files a/front/public/images/large/TConstruct/Cast/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CastingChannel/0.png b/front/public/images/large/TConstruct/CastingChannel/0.png deleted file mode 100644 index 2d07527afe..0000000000 Binary files a/front/public/images/large/TConstruct/CastingChannel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CastingChannel/1.png b/front/public/images/large/TConstruct/CastingChannel/1.png deleted file mode 100644 index 657f58e2c4..0000000000 Binary files a/front/public/images/large/TConstruct/CastingChannel/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Clay Cast/3.png b/front/public/images/large/TConstruct/Clay Cast/3.png deleted file mode 100644 index 6ded9a9109..0000000000 Binary files a/front/public/images/large/TConstruct/Clay Cast/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftedSoil/0.png b/front/public/images/large/TConstruct/CraftedSoil/0.png deleted file mode 100644 index 0d0a98f505..0000000000 Binary files a/front/public/images/large/TConstruct/CraftedSoil/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftedSoil/1.png b/front/public/images/large/TConstruct/CraftedSoil/1.png deleted file mode 100644 index c4165c3dc2..0000000000 Binary files a/front/public/images/large/TConstruct/CraftedSoil/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftedSoil/2.png b/front/public/images/large/TConstruct/CraftedSoil/2.png deleted file mode 100644 index f6cefe7cfd..0000000000 Binary files a/front/public/images/large/TConstruct/CraftedSoil/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftedSoil/3.png b/front/public/images/large/TConstruct/CraftedSoil/3.png deleted file mode 100644 index 829c4876d2..0000000000 Binary files a/front/public/images/large/TConstruct/CraftedSoil/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftedSoil/4.png b/front/public/images/large/TConstruct/CraftedSoil/4.png deleted file mode 100644 index 2efb88ad23..0000000000 Binary files a/front/public/images/large/TConstruct/CraftedSoil/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftedSoil/5.png b/front/public/images/large/TConstruct/CraftedSoil/5.png deleted file mode 100644 index f0c6a7a3d3..0000000000 Binary files a/front/public/images/large/TConstruct/CraftedSoil/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftedSoil/6.png b/front/public/images/large/TConstruct/CraftedSoil/6.png deleted file mode 100644 index 44b277c94f..0000000000 Binary files a/front/public/images/large/TConstruct/CraftedSoil/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftingSlab/0.png b/front/public/images/large/TConstruct/CraftingSlab/0.png deleted file mode 100644 index 9b07551dc7..0000000000 Binary files a/front/public/images/large/TConstruct/CraftingSlab/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftingSlab/1.png b/front/public/images/large/TConstruct/CraftingSlab/1.png deleted file mode 100644 index cd80d4a29d..0000000000 Binary files a/front/public/images/large/TConstruct/CraftingSlab/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftingSlab/2.png b/front/public/images/large/TConstruct/CraftingSlab/2.png deleted file mode 100644 index c67be11df6..0000000000 Binary files a/front/public/images/large/TConstruct/CraftingSlab/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftingSlab/3.png b/front/public/images/large/TConstruct/CraftingSlab/3.png deleted file mode 100644 index 49733b45f8..0000000000 Binary files a/front/public/images/large/TConstruct/CraftingSlab/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftingSlab/4.png b/front/public/images/large/TConstruct/CraftingSlab/4.png deleted file mode 100644 index 90cbcf8e00..0000000000 Binary files a/front/public/images/large/TConstruct/CraftingSlab/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftingSlab/5.png b/front/public/images/large/TConstruct/CraftingSlab/5.png deleted file mode 100644 index 03087b5a1e..0000000000 Binary files a/front/public/images/large/TConstruct/CraftingSlab/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CraftingStation/0.png b/front/public/images/large/TConstruct/CraftingStation/0.png deleted file mode 100644 index 76b0744b1f..0000000000 Binary files a/front/public/images/large/TConstruct/CraftingStation/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Crossbow/0.png b/front/public/images/large/TConstruct/Crossbow/0.png deleted file mode 100644 index 1ae2274171..0000000000 Binary files a/front/public/images/large/TConstruct/Crossbow/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/0.png b/front/public/images/large/TConstruct/CrossbowBodyPart/0.png deleted file mode 100644 index fd1c118f81..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/1.png b/front/public/images/large/TConstruct/CrossbowBodyPart/1.png deleted file mode 100644 index 0e8142e2c1..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/10.png b/front/public/images/large/TConstruct/CrossbowBodyPart/10.png deleted file mode 100644 index 7724570827..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/11.png b/front/public/images/large/TConstruct/CrossbowBodyPart/11.png deleted file mode 100644 index 8ac9edeacb..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/12.png b/front/public/images/large/TConstruct/CrossbowBodyPart/12.png deleted file mode 100644 index ffe87f04e2..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/13.png b/front/public/images/large/TConstruct/CrossbowBodyPart/13.png deleted file mode 100644 index ad3b497647..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/14.png b/front/public/images/large/TConstruct/CrossbowBodyPart/14.png deleted file mode 100644 index 15479f13d8..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/15.png b/front/public/images/large/TConstruct/CrossbowBodyPart/15.png deleted file mode 100644 index 96bdaa2a20..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/16.png b/front/public/images/large/TConstruct/CrossbowBodyPart/16.png deleted file mode 100644 index 763e65edbc..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/17.png b/front/public/images/large/TConstruct/CrossbowBodyPart/17.png deleted file mode 100644 index e07b2bbf82..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/18.png b/front/public/images/large/TConstruct/CrossbowBodyPart/18.png deleted file mode 100644 index 5cda6fa321..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/2.png b/front/public/images/large/TConstruct/CrossbowBodyPart/2.png deleted file mode 100644 index bf6dfaf9c0..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/3.png b/front/public/images/large/TConstruct/CrossbowBodyPart/3.png deleted file mode 100644 index aec355173b..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/314.png b/front/public/images/large/TConstruct/CrossbowBodyPart/314.png deleted file mode 100644 index 8bc2f59a25..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/4.png b/front/public/images/large/TConstruct/CrossbowBodyPart/4.png deleted file mode 100644 index 0ec3abdbfa..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/5.png b/front/public/images/large/TConstruct/CrossbowBodyPart/5.png deleted file mode 100644 index bba406278d..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/6.png b/front/public/images/large/TConstruct/CrossbowBodyPart/6.png deleted file mode 100644 index 8108cfbe02..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/7.png b/front/public/images/large/TConstruct/CrossbowBodyPart/7.png deleted file mode 100644 index bdfcace0bd..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/8.png b/front/public/images/large/TConstruct/CrossbowBodyPart/8.png deleted file mode 100644 index 3e1f2e7ea2..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowBodyPart/9.png b/front/public/images/large/TConstruct/CrossbowBodyPart/9.png deleted file mode 100644 index d3bfecf759..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowBodyPart/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/0.png b/front/public/images/large/TConstruct/CrossbowLimbPart/0.png deleted file mode 100644 index 7a96e9d28c..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/1.png b/front/public/images/large/TConstruct/CrossbowLimbPart/1.png deleted file mode 100644 index 6d1564bd3c..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/10.png b/front/public/images/large/TConstruct/CrossbowLimbPart/10.png deleted file mode 100644 index e5cd1ad28d..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/11.png b/front/public/images/large/TConstruct/CrossbowLimbPart/11.png deleted file mode 100644 index 07a2efba4d..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/12.png b/front/public/images/large/TConstruct/CrossbowLimbPart/12.png deleted file mode 100644 index ad9bb90c34..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/13.png b/front/public/images/large/TConstruct/CrossbowLimbPart/13.png deleted file mode 100644 index e882fa4eb8..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/14.png b/front/public/images/large/TConstruct/CrossbowLimbPart/14.png deleted file mode 100644 index 97eed71e7a..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/15.png b/front/public/images/large/TConstruct/CrossbowLimbPart/15.png deleted file mode 100644 index bfe6a2679e..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/16.png b/front/public/images/large/TConstruct/CrossbowLimbPart/16.png deleted file mode 100644 index bc023943cf..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/17.png b/front/public/images/large/TConstruct/CrossbowLimbPart/17.png deleted file mode 100644 index 3ae58fd886..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/18.png b/front/public/images/large/TConstruct/CrossbowLimbPart/18.png deleted file mode 100644 index 20a6da4747..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/2.png b/front/public/images/large/TConstruct/CrossbowLimbPart/2.png deleted file mode 100644 index cdf5e063f9..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/3.png b/front/public/images/large/TConstruct/CrossbowLimbPart/3.png deleted file mode 100644 index 03b8cfb29c..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/314.png b/front/public/images/large/TConstruct/CrossbowLimbPart/314.png deleted file mode 100644 index 38247d5e15..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/4.png b/front/public/images/large/TConstruct/CrossbowLimbPart/4.png deleted file mode 100644 index da61a4cb62..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/5.png b/front/public/images/large/TConstruct/CrossbowLimbPart/5.png deleted file mode 100644 index e48373b7ad..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/6.png b/front/public/images/large/TConstruct/CrossbowLimbPart/6.png deleted file mode 100644 index 9b8542d194..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/7.png b/front/public/images/large/TConstruct/CrossbowLimbPart/7.png deleted file mode 100644 index 948ff38b91..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/8.png b/front/public/images/large/TConstruct/CrossbowLimbPart/8.png deleted file mode 100644 index 8de7cd3e95..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/CrossbowLimbPart/9.png b/front/public/images/large/TConstruct/CrossbowLimbPart/9.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TConstruct/CrossbowLimbPart/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/FurnaceSlab/0.png b/front/public/images/large/TConstruct/FurnaceSlab/0.png deleted file mode 100644 index d83ac2f86b..0000000000 Binary files a/front/public/images/large/TConstruct/FurnaceSlab/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/0.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/0.png deleted file mode 100644 index b3bb9510e6..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/1.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/1.png deleted file mode 100644 index 97f6dbcfe9..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/10.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/10.png deleted file mode 100644 index c973b87659..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/11.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/11.png deleted file mode 100644 index 6ab1a2de91..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/12.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/12.png deleted file mode 100644 index 4dc636c67b..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/13.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/13.png deleted file mode 100644 index 5f15408058..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/14.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/14.png deleted file mode 100644 index 900494aa8f..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/15.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/15.png deleted file mode 100644 index 7a078e9afe..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/2.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/2.png deleted file mode 100644 index 6afaefe53e..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/3.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/3.png deleted file mode 100644 index 3768549571..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/4.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/4.png deleted file mode 100644 index 1fa1fa988b..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/5.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/5.png deleted file mode 100644 index c6a796011b..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/6.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/6.png deleted file mode 100644 index 0feaccff32..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/7.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/7.png deleted file mode 100644 index 844f5538ed..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/8.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/8.png deleted file mode 100644 index 4e07994ec3..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock.StainedClear/9.png b/front/public/images/large/TConstruct/GlassBlock.StainedClear/9.png deleted file mode 100644 index a35cf6686a..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock.StainedClear/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassBlock/0.png b/front/public/images/large/TConstruct/GlassBlock/0.png deleted file mode 100644 index 8bf2d51be0..0000000000 Binary files a/front/public/images/large/TConstruct/GlassBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPane/0.png b/front/public/images/large/TConstruct/GlassPane/0.png deleted file mode 100644 index 4ddaae2b25..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPane/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/0.png b/front/public/images/large/TConstruct/GlassPaneClearStained/0.png deleted file mode 100644 index 45ff9e9e0f..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/1.png b/front/public/images/large/TConstruct/GlassPaneClearStained/1.png deleted file mode 100644 index 22143d5076..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/10.png b/front/public/images/large/TConstruct/GlassPaneClearStained/10.png deleted file mode 100644 index 5518a57631..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/11.png b/front/public/images/large/TConstruct/GlassPaneClearStained/11.png deleted file mode 100644 index 37f11f1ea0..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/12.png b/front/public/images/large/TConstruct/GlassPaneClearStained/12.png deleted file mode 100644 index 622da024e0..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/13.png b/front/public/images/large/TConstruct/GlassPaneClearStained/13.png deleted file mode 100644 index ce46006808..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/14.png b/front/public/images/large/TConstruct/GlassPaneClearStained/14.png deleted file mode 100644 index 69642ad789..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/15.png b/front/public/images/large/TConstruct/GlassPaneClearStained/15.png deleted file mode 100644 index 13252519a5..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/2.png b/front/public/images/large/TConstruct/GlassPaneClearStained/2.png deleted file mode 100644 index d3ad18aeb5..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/3.png b/front/public/images/large/TConstruct/GlassPaneClearStained/3.png deleted file mode 100644 index 603d8c5554..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/4.png b/front/public/images/large/TConstruct/GlassPaneClearStained/4.png deleted file mode 100644 index 64600cfe6d..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/5.png b/front/public/images/large/TConstruct/GlassPaneClearStained/5.png deleted file mode 100644 index 883e09df69..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/6.png b/front/public/images/large/TConstruct/GlassPaneClearStained/6.png deleted file mode 100644 index dfd4407ee2..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/7.png b/front/public/images/large/TConstruct/GlassPaneClearStained/7.png deleted file mode 100644 index 44470fc614..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/8.png b/front/public/images/large/TConstruct/GlassPaneClearStained/8.png deleted file mode 100644 index e0c6c5e60c..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlassPaneClearStained/9.png b/front/public/images/large/TConstruct/GlassPaneClearStained/9.png deleted file mode 100644 index 08b984e8d0..0000000000 Binary files a/front/public/images/large/TConstruct/GlassPaneClearStained/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GlueBlock/0.png b/front/public/images/large/TConstruct/GlueBlock/0.png deleted file mode 100644 index 37a86e0eca..0000000000 Binary files a/front/public/images/large/TConstruct/GlueBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GravelOre/0.png b/front/public/images/large/TConstruct/GravelOre/0.png deleted file mode 100644 index 6f41fdba85..0000000000 Binary files a/front/public/images/large/TConstruct/GravelOre/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GravelOre/1.png b/front/public/images/large/TConstruct/GravelOre/1.png deleted file mode 100644 index 93759b03b5..0000000000 Binary files a/front/public/images/large/TConstruct/GravelOre/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GravelOre/2.png b/front/public/images/large/TConstruct/GravelOre/2.png deleted file mode 100644 index c728baf7bd..0000000000 Binary files a/front/public/images/large/TConstruct/GravelOre/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GravelOre/3.png b/front/public/images/large/TConstruct/GravelOre/3.png deleted file mode 100644 index 09012db736..0000000000 Binary files a/front/public/images/large/TConstruct/GravelOre/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GravelOre/4.png b/front/public/images/large/TConstruct/GravelOre/4.png deleted file mode 100644 index 890be1fa4c..0000000000 Binary files a/front/public/images/large/TConstruct/GravelOre/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/GravelOre/5.png b/front/public/images/large/TConstruct/GravelOre/5.png deleted file mode 100644 index 1c29c399ea..0000000000 Binary files a/front/public/images/large/TConstruct/GravelOre/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/HeldItemBlock/0.png b/front/public/images/large/TConstruct/HeldItemBlock/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/TConstruct/HeldItemBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Javelin/0.png b/front/public/images/large/TConstruct/Javelin/0.png deleted file mode 100644 index db82643dbc..0000000000 Binary files a/front/public/images/large/TConstruct/Javelin/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/LavaTank/0.png b/front/public/images/large/TConstruct/LavaTank/0.png deleted file mode 100644 index f1f4f1ca9c..0000000000 Binary files a/front/public/images/large/TConstruct/LavaTank/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/LavaTank/1.png b/front/public/images/large/TConstruct/LavaTank/1.png deleted file mode 100644 index 253a5f26a4..0000000000 Binary files a/front/public/images/large/TConstruct/LavaTank/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/LavaTank/2.png b/front/public/images/large/TConstruct/LavaTank/2.png deleted file mode 100644 index c9e7fac7e1..0000000000 Binary files a/front/public/images/large/TConstruct/LavaTank/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/LavaTankNether/0.png b/front/public/images/large/TConstruct/LavaTankNether/0.png deleted file mode 100644 index eab304e409..0000000000 Binary files a/front/public/images/large/TConstruct/LavaTankNether/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/LavaTankNether/1.png b/front/public/images/large/TConstruct/LavaTankNether/1.png deleted file mode 100644 index 14b1414e28..0000000000 Binary files a/front/public/images/large/TConstruct/LavaTankNether/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/LavaTankNether/2.png b/front/public/images/large/TConstruct/LavaTankNether/2.png deleted file mode 100644 index 5abcfc92f6..0000000000 Binary files a/front/public/images/large/TConstruct/LavaTankNether/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/LongBow/0.png b/front/public/images/large/TConstruct/LongBow/0.png deleted file mode 100644 index c3f5d703cd..0000000000 Binary files a/front/public/images/large/TConstruct/LongBow/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MeatBlock/0.png b/front/public/images/large/TConstruct/MeatBlock/0.png deleted file mode 100644 index 8b5b76f609..0000000000 Binary files a/front/public/images/large/TConstruct/MeatBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/0.png b/front/public/images/large/TConstruct/MetalBlock/0.png deleted file mode 100644 index 96d87e239a..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/1.png b/front/public/images/large/TConstruct/MetalBlock/1.png deleted file mode 100644 index f02d66d5dc..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/10.png b/front/public/images/large/TConstruct/MetalBlock/10.png deleted file mode 100644 index 8b0399e806..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/2.png b/front/public/images/large/TConstruct/MetalBlock/2.png deleted file mode 100644 index 15c2b7fcd4..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/3.png b/front/public/images/large/TConstruct/MetalBlock/3.png deleted file mode 100644 index 9d44962768..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/4.png b/front/public/images/large/TConstruct/MetalBlock/4.png deleted file mode 100644 index 81a59de858..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/5.png b/front/public/images/large/TConstruct/MetalBlock/5.png deleted file mode 100644 index 37a1a9f5b8..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/6.png b/front/public/images/large/TConstruct/MetalBlock/6.png deleted file mode 100644 index b2934c38f9..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/7.png b/front/public/images/large/TConstruct/MetalBlock/7.png deleted file mode 100644 index 4dd16ad495..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/8.png b/front/public/images/large/TConstruct/MetalBlock/8.png deleted file mode 100644 index c23c750bfb..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/MetalBlock/9.png b/front/public/images/large/TConstruct/MetalBlock/9.png deleted file mode 100644 index e5dd214568..0000000000 Binary files a/front/public/images/large/TConstruct/MetalBlock/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Pattern/0.png b/front/public/images/large/TConstruct/Pattern/0.png deleted file mode 100644 index 7331838fca..0000000000 Binary files a/front/public/images/large/TConstruct/Pattern/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Pattern/1.png b/front/public/images/large/TConstruct/Pattern/1.png deleted file mode 100644 index 830ede3da2..0000000000 Binary files a/front/public/images/large/TConstruct/Pattern/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Pattern/2.png b/front/public/images/large/TConstruct/Pattern/2.png deleted file mode 100644 index ae543f8e49..0000000000 Binary files a/front/public/images/large/TConstruct/Pattern/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Pattern/3.png b/front/public/images/large/TConstruct/Pattern/3.png deleted file mode 100644 index 920ebb8c7a..0000000000 Binary files a/front/public/images/large/TConstruct/Pattern/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Redstone.Landmine/0.png b/front/public/images/large/TConstruct/Redstone.Landmine/0.png deleted file mode 100644 index a01a7d153f..0000000000 Binary files a/front/public/images/large/TConstruct/Redstone.Landmine/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Redstone.Landmine/1.png b/front/public/images/large/TConstruct/Redstone.Landmine/1.png deleted file mode 100644 index a01a7d153f..0000000000 Binary files a/front/public/images/large/TConstruct/Redstone.Landmine/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Redstone.Landmine/2.png b/front/public/images/large/TConstruct/Redstone.Landmine/2.png deleted file mode 100644 index a01a7d153f..0000000000 Binary files a/front/public/images/large/TConstruct/Redstone.Landmine/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Redstone.Landmine/3.png b/front/public/images/large/TConstruct/Redstone.Landmine/3.png deleted file mode 100644 index a01a7d153f..0000000000 Binary files a/front/public/images/large/TConstruct/Redstone.Landmine/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBlock/0.png b/front/public/images/large/TConstruct/SearedBlock/0.png deleted file mode 100644 index 99b1f2444e..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBlock/1.png b/front/public/images/large/TConstruct/SearedBlock/1.png deleted file mode 100644 index 7083e931d4..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBlock/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBlock/2.png b/front/public/images/large/TConstruct/SearedBlock/2.png deleted file mode 100644 index 997b0d98a2..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBlock/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBlockNether/0.png b/front/public/images/large/TConstruct/SearedBlockNether/0.png deleted file mode 100644 index b34180f046..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBlockNether/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBlockNether/1.png b/front/public/images/large/TConstruct/SearedBlockNether/1.png deleted file mode 100644 index 7260304461..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBlockNether/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBlockNether/2.png b/front/public/images/large/TConstruct/SearedBlockNether/2.png deleted file mode 100644 index 0ebf4dbe6e..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBlockNether/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBrick/1.png b/front/public/images/large/TConstruct/SearedBrick/1.png deleted file mode 100644 index 2cabe9c532..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBrick/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBrick/2.png b/front/public/images/large/TConstruct/SearedBrick/2.png deleted file mode 100644 index 1ab5042291..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBrick/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBrick/3.png b/front/public/images/large/TConstruct/SearedBrick/3.png deleted file mode 100644 index f789871779..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBrick/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBrick/4.png b/front/public/images/large/TConstruct/SearedBrick/4.png deleted file mode 100644 index a6aaacd1b1..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBrick/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedBrick/5.png b/front/public/images/large/TConstruct/SearedBrick/5.png deleted file mode 100644 index a4c56604bb..0000000000 Binary files a/front/public/images/large/TConstruct/SearedBrick/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/0.png b/front/public/images/large/TConstruct/SearedSlab/0.png deleted file mode 100644 index c7b4a96b73..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/1.png b/front/public/images/large/TConstruct/SearedSlab/1.png deleted file mode 100644 index 55dae30784..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/2.png b/front/public/images/large/TConstruct/SearedSlab/2.png deleted file mode 100644 index cdfd6be29c..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/3.png b/front/public/images/large/TConstruct/SearedSlab/3.png deleted file mode 100644 index b68ff65b43..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/4.png b/front/public/images/large/TConstruct/SearedSlab/4.png deleted file mode 100644 index 7d75521ab7..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/5.png b/front/public/images/large/TConstruct/SearedSlab/5.png deleted file mode 100644 index f8fd10b3ca..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/6.png b/front/public/images/large/TConstruct/SearedSlab/6.png deleted file mode 100644 index a5776a1e87..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SearedSlab/7.png b/front/public/images/large/TConstruct/SearedSlab/7.png deleted file mode 100644 index 0d0a7a89d3..0000000000 Binary files a/front/public/images/large/TConstruct/SearedSlab/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShortBow/0.png b/front/public/images/large/TConstruct/ShortBow/0.png deleted file mode 100644 index fb864bbfc4..0000000000 Binary files a/front/public/images/large/TConstruct/ShortBow/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Shuriken/0.png b/front/public/images/large/TConstruct/Shuriken/0.png deleted file mode 100644 index 65ebe16440..0000000000 Binary files a/front/public/images/large/TConstruct/Shuriken/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/0.png b/front/public/images/large/TConstruct/ShurikenPart/0.png deleted file mode 100644 index d85a617f58..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/1.png b/front/public/images/large/TConstruct/ShurikenPart/1.png deleted file mode 100644 index e5b5b04631..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/10.png b/front/public/images/large/TConstruct/ShurikenPart/10.png deleted file mode 100644 index 3abd0d98db..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/11.png b/front/public/images/large/TConstruct/ShurikenPart/11.png deleted file mode 100644 index 5e82a27889..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/12.png b/front/public/images/large/TConstruct/ShurikenPart/12.png deleted file mode 100644 index 46b44e41a5..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/13.png b/front/public/images/large/TConstruct/ShurikenPart/13.png deleted file mode 100644 index c11d190f6a..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/14.png b/front/public/images/large/TConstruct/ShurikenPart/14.png deleted file mode 100644 index 6e2497a67c..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/15.png b/front/public/images/large/TConstruct/ShurikenPart/15.png deleted file mode 100644 index 1a681c1e66..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/16.png b/front/public/images/large/TConstruct/ShurikenPart/16.png deleted file mode 100644 index 1f9ad4e542..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/17.png b/front/public/images/large/TConstruct/ShurikenPart/17.png deleted file mode 100644 index 809755987e..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/18.png b/front/public/images/large/TConstruct/ShurikenPart/18.png deleted file mode 100644 index a198e5d59f..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/2.png b/front/public/images/large/TConstruct/ShurikenPart/2.png deleted file mode 100644 index 92d6e8a6f2..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/3.png b/front/public/images/large/TConstruct/ShurikenPart/3.png deleted file mode 100644 index 6e3f3cfb8c..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/314.png b/front/public/images/large/TConstruct/ShurikenPart/314.png deleted file mode 100644 index 1376bce2fa..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/4.png b/front/public/images/large/TConstruct/ShurikenPart/4.png deleted file mode 100644 index 20f7c0d8f6..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/5.png b/front/public/images/large/TConstruct/ShurikenPart/5.png deleted file mode 100644 index 8cbfe2a5ef..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/6.png b/front/public/images/large/TConstruct/ShurikenPart/6.png deleted file mode 100644 index b30f84bad5..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/7.png b/front/public/images/large/TConstruct/ShurikenPart/7.png deleted file mode 100644 index 94fc04194f..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/8.png b/front/public/images/large/TConstruct/ShurikenPart/8.png deleted file mode 100644 index aee8a7cead..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ShurikenPart/9.png b/front/public/images/large/TConstruct/ShurikenPart/9.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TConstruct/ShurikenPart/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/0.png b/front/public/images/large/TConstruct/Smeltery/0.png deleted file mode 100644 index 6d9a899e66..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/1.png b/front/public/images/large/TConstruct/Smeltery/1.png deleted file mode 100644 index 8340f215cf..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/10.png b/front/public/images/large/TConstruct/Smeltery/10.png deleted file mode 100644 index c97779a315..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/11.png b/front/public/images/large/TConstruct/Smeltery/11.png deleted file mode 100644 index eac5b83f11..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/2.png b/front/public/images/large/TConstruct/Smeltery/2.png deleted file mode 100644 index e6fe4c5f27..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/4.png b/front/public/images/large/TConstruct/Smeltery/4.png deleted file mode 100644 index 7838bedae8..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/5.png b/front/public/images/large/TConstruct/Smeltery/5.png deleted file mode 100644 index 3efb71719a..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/6.png b/front/public/images/large/TConstruct/Smeltery/6.png deleted file mode 100644 index 95fdea527b..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/7.png b/front/public/images/large/TConstruct/Smeltery/7.png deleted file mode 100644 index e2d6afb2b8..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/8.png b/front/public/images/large/TConstruct/Smeltery/8.png deleted file mode 100644 index 0e19f3605a..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/Smeltery/9.png b/front/public/images/large/TConstruct/Smeltery/9.png deleted file mode 100644 index bad7afa675..0000000000 Binary files a/front/public/images/large/TConstruct/Smeltery/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/0.png b/front/public/images/large/TConstruct/SmelteryNether/0.png deleted file mode 100644 index 24e0d33ae4..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/1.png b/front/public/images/large/TConstruct/SmelteryNether/1.png deleted file mode 100644 index 787e1c8603..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/10.png b/front/public/images/large/TConstruct/SmelteryNether/10.png deleted file mode 100644 index 4f5e9bc094..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/11.png b/front/public/images/large/TConstruct/SmelteryNether/11.png deleted file mode 100644 index 4ce6667a8c..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/2.png b/front/public/images/large/TConstruct/SmelteryNether/2.png deleted file mode 100644 index 4656f51ff6..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/4.png b/front/public/images/large/TConstruct/SmelteryNether/4.png deleted file mode 100644 index cabbf0df7c..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/5.png b/front/public/images/large/TConstruct/SmelteryNether/5.png deleted file mode 100644 index f1284a85e9..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/6.png b/front/public/images/large/TConstruct/SmelteryNether/6.png deleted file mode 100644 index 8e529bc373..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/7.png b/front/public/images/large/TConstruct/SmelteryNether/7.png deleted file mode 100644 index a9ebe0b83b..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/8.png b/front/public/images/large/TConstruct/SmelteryNether/8.png deleted file mode 100644 index 0211d35e7a..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SmelteryNether/9.png b/front/public/images/large/TConstruct/SmelteryNether/9.png deleted file mode 100644 index 20bde16c28..0000000000 Binary files a/front/public/images/large/TConstruct/SmelteryNether/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedBlock/0.png b/front/public/images/large/TConstruct/SpeedBlock/0.png deleted file mode 100644 index 39f030bd68..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedBlock/1.png b/front/public/images/large/TConstruct/SpeedBlock/1.png deleted file mode 100644 index cea9ff51f0..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedBlock/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedBlock/2.png b/front/public/images/large/TConstruct/SpeedBlock/2.png deleted file mode 100644 index c3a711f239..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedBlock/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedBlock/3.png b/front/public/images/large/TConstruct/SpeedBlock/3.png deleted file mode 100644 index d5579f6ebf..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedBlock/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedBlock/4.png b/front/public/images/large/TConstruct/SpeedBlock/4.png deleted file mode 100644 index 04a0ed14ea..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedBlock/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedBlock/5.png b/front/public/images/large/TConstruct/SpeedBlock/5.png deleted file mode 100644 index 63b7265584..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedBlock/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedBlock/6.png b/front/public/images/large/TConstruct/SpeedBlock/6.png deleted file mode 100644 index eec138adb4..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedBlock/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedSlab/0.png b/front/public/images/large/TConstruct/SpeedSlab/0.png deleted file mode 100644 index ffe26e71e6..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedSlab/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedSlab/1.png b/front/public/images/large/TConstruct/SpeedSlab/1.png deleted file mode 100644 index 84ac3b7be4..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedSlab/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedSlab/2.png b/front/public/images/large/TConstruct/SpeedSlab/2.png deleted file mode 100644 index cc676abd7b..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedSlab/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedSlab/3.png b/front/public/images/large/TConstruct/SpeedSlab/3.png deleted file mode 100644 index fab65c0f5c..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedSlab/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedSlab/4.png b/front/public/images/large/TConstruct/SpeedSlab/4.png deleted file mode 100644 index a3b29fe4ad..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedSlab/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedSlab/5.png b/front/public/images/large/TConstruct/SpeedSlab/5.png deleted file mode 100644 index e085819f9e..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedSlab/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/SpeedSlab/6.png b/front/public/images/large/TConstruct/SpeedSlab/6.png deleted file mode 100644 index 13f53beba1..0000000000 Binary files a/front/public/images/large/TConstruct/SpeedSlab/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ThrowingKnife/0.png b/front/public/images/large/TConstruct/ThrowingKnife/0.png deleted file mode 100644 index 0bbbd0ebde..0000000000 Binary files a/front/public/images/large/TConstruct/ThrowingKnife/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/0.png b/front/public/images/large/TConstruct/ToolForgeBlock/0.png deleted file mode 100644 index 6f327724df..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/1.png b/front/public/images/large/TConstruct/ToolForgeBlock/1.png deleted file mode 100644 index 8ea13f7a2f..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/10.png b/front/public/images/large/TConstruct/ToolForgeBlock/10.png deleted file mode 100644 index 3c1abcfc45..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/11.png b/front/public/images/large/TConstruct/ToolForgeBlock/11.png deleted file mode 100644 index 660dceee98..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/12.png b/front/public/images/large/TConstruct/ToolForgeBlock/12.png deleted file mode 100644 index 66b0dabb27..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/13.png b/front/public/images/large/TConstruct/ToolForgeBlock/13.png deleted file mode 100644 index 179d3d24d9..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/2.png b/front/public/images/large/TConstruct/ToolForgeBlock/2.png deleted file mode 100644 index aef69c0ab3..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/3.png b/front/public/images/large/TConstruct/ToolForgeBlock/3.png deleted file mode 100644 index eefa706a7c..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/4.png b/front/public/images/large/TConstruct/ToolForgeBlock/4.png deleted file mode 100644 index 5ef790c8da..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/5.png b/front/public/images/large/TConstruct/ToolForgeBlock/5.png deleted file mode 100644 index 87fb81754f..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/6.png b/front/public/images/large/TConstruct/ToolForgeBlock/6.png deleted file mode 100644 index e01590f543..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/7.png b/front/public/images/large/TConstruct/ToolForgeBlock/7.png deleted file mode 100644 index f92564945a..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/8.png b/front/public/images/large/TConstruct/ToolForgeBlock/8.png deleted file mode 100644 index ebc4c109b8..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolForgeBlock/9.png b/front/public/images/large/TConstruct/ToolForgeBlock/9.png deleted file mode 100644 index e2f9e0481e..0000000000 Binary files a/front/public/images/large/TConstruct/ToolForgeBlock/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/0.png b/front/public/images/large/TConstruct/ToolStationBlock/0.png deleted file mode 100644 index 957178c03c..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/1.png b/front/public/images/large/TConstruct/ToolStationBlock/1.png deleted file mode 100644 index e104aefdad..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/10.png b/front/public/images/large/TConstruct/ToolStationBlock/10.png deleted file mode 100644 index 52d3c5e30b..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/11.png b/front/public/images/large/TConstruct/ToolStationBlock/11.png deleted file mode 100644 index 0a4a5aed43..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/12.png b/front/public/images/large/TConstruct/ToolStationBlock/12.png deleted file mode 100644 index 4c653eb2ad..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/13.png b/front/public/images/large/TConstruct/ToolStationBlock/13.png deleted file mode 100644 index 759df6a338..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/2.png b/front/public/images/large/TConstruct/ToolStationBlock/2.png deleted file mode 100644 index 739e5bfa3b..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/3.png b/front/public/images/large/TConstruct/ToolStationBlock/3.png deleted file mode 100644 index 7e75a554e2..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/4.png b/front/public/images/large/TConstruct/ToolStationBlock/4.png deleted file mode 100644 index 244e89135b..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ToolStationBlock/5.png b/front/public/images/large/TConstruct/ToolStationBlock/5.png deleted file mode 100644 index 398c662167..0000000000 Binary files a/front/public/images/large/TConstruct/ToolStationBlock/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/0.png b/front/public/images/large/TConstruct/WoolSlab1/0.png deleted file mode 100644 index be0148879a..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/1.png b/front/public/images/large/TConstruct/WoolSlab1/1.png deleted file mode 100644 index 8fd681d73b..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/2.png b/front/public/images/large/TConstruct/WoolSlab1/2.png deleted file mode 100644 index 2b89c3e076..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/3.png b/front/public/images/large/TConstruct/WoolSlab1/3.png deleted file mode 100644 index 66e9ad90c1..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/4.png b/front/public/images/large/TConstruct/WoolSlab1/4.png deleted file mode 100644 index f00d474559..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/5.png b/front/public/images/large/TConstruct/WoolSlab1/5.png deleted file mode 100644 index 3c1604ac7c..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/6.png b/front/public/images/large/TConstruct/WoolSlab1/6.png deleted file mode 100644 index 2fd58ef6d3..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab1/7.png b/front/public/images/large/TConstruct/WoolSlab1/7.png deleted file mode 100644 index 49cd81b29a..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab1/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/0.png b/front/public/images/large/TConstruct/WoolSlab2/0.png deleted file mode 100644 index 419094cefd..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/1.png b/front/public/images/large/TConstruct/WoolSlab2/1.png deleted file mode 100644 index d1113d67f5..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/2.png b/front/public/images/large/TConstruct/WoolSlab2/2.png deleted file mode 100644 index 1d84a1bd60..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/3.png b/front/public/images/large/TConstruct/WoolSlab2/3.png deleted file mode 100644 index 394fe624da..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/4.png b/front/public/images/large/TConstruct/WoolSlab2/4.png deleted file mode 100644 index 01ff6e49e0..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/5.png b/front/public/images/large/TConstruct/WoolSlab2/5.png deleted file mode 100644 index 1e57232316..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/6.png b/front/public/images/large/TConstruct/WoolSlab2/6.png deleted file mode 100644 index 744476eb3d..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/WoolSlab2/7.png b/front/public/images/large/TConstruct/WoolSlab2/7.png deleted file mode 100644 index ef0e5f813f..0000000000 Binary files a/front/public/images/large/TConstruct/WoolSlab2/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/0.png b/front/public/images/large/TConstruct/arrowhead/0.png deleted file mode 100644 index 7053a8f5b9..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/1.png b/front/public/images/large/TConstruct/arrowhead/1.png deleted file mode 100644 index 5491f61a21..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/10.png b/front/public/images/large/TConstruct/arrowhead/10.png deleted file mode 100644 index 9141421702..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/11.png b/front/public/images/large/TConstruct/arrowhead/11.png deleted file mode 100644 index 85e8c13038..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/12.png b/front/public/images/large/TConstruct/arrowhead/12.png deleted file mode 100644 index 6495de3ce2..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/13.png b/front/public/images/large/TConstruct/arrowhead/13.png deleted file mode 100644 index 4a93c4ffc2..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/14.png b/front/public/images/large/TConstruct/arrowhead/14.png deleted file mode 100644 index a76d21c9b5..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/15.png b/front/public/images/large/TConstruct/arrowhead/15.png deleted file mode 100644 index 57727ce511..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/16.png b/front/public/images/large/TConstruct/arrowhead/16.png deleted file mode 100644 index 091ed9eb6f..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/17.png b/front/public/images/large/TConstruct/arrowhead/17.png deleted file mode 100644 index a345e3a7ad..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/18.png b/front/public/images/large/TConstruct/arrowhead/18.png deleted file mode 100644 index a36ae18721..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/2.png b/front/public/images/large/TConstruct/arrowhead/2.png deleted file mode 100644 index 3cf22ae7e4..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/3.png b/front/public/images/large/TConstruct/arrowhead/3.png deleted file mode 100644 index b40186d2f3..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/314.png b/front/public/images/large/TConstruct/arrowhead/314.png deleted file mode 100644 index 4509a0a3c4..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/4.png b/front/public/images/large/TConstruct/arrowhead/4.png deleted file mode 100644 index 688c878060..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/5.png b/front/public/images/large/TConstruct/arrowhead/5.png deleted file mode 100644 index bd2f77b84b..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/6.png b/front/public/images/large/TConstruct/arrowhead/6.png deleted file mode 100644 index bc4098d37e..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/7.png b/front/public/images/large/TConstruct/arrowhead/7.png deleted file mode 100644 index 0f386905a6..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/8.png b/front/public/images/large/TConstruct/arrowhead/8.png deleted file mode 100644 index 5dd726af31..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/arrowhead/9.png b/front/public/images/large/TConstruct/arrowhead/9.png deleted file mode 100644 index c432c29029..0000000000 Binary files a/front/public/images/large/TConstruct/arrowhead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/battleaxe/0.png b/front/public/images/large/TConstruct/battleaxe/0.png deleted file mode 100644 index ac83fab1ba..0000000000 Binary files a/front/public/images/large/TConstruct/battleaxe/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/battlesign/0.png b/front/public/images/large/TConstruct/battlesign/0.png deleted file mode 100644 index 376d66c92c..0000000000 Binary files a/front/public/images/large/TConstruct/battlesign/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/0.png b/front/public/images/large/TConstruct/binding/0.png deleted file mode 100644 index c74475fdf7..0000000000 Binary files a/front/public/images/large/TConstruct/binding/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/1.png b/front/public/images/large/TConstruct/binding/1.png deleted file mode 100644 index 1a4eb99cfb..0000000000 Binary files a/front/public/images/large/TConstruct/binding/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/10.png b/front/public/images/large/TConstruct/binding/10.png deleted file mode 100644 index 8a8ec97983..0000000000 Binary files a/front/public/images/large/TConstruct/binding/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/11.png b/front/public/images/large/TConstruct/binding/11.png deleted file mode 100644 index 8eb55ea7de..0000000000 Binary files a/front/public/images/large/TConstruct/binding/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/12.png b/front/public/images/large/TConstruct/binding/12.png deleted file mode 100644 index 1e8f905266..0000000000 Binary files a/front/public/images/large/TConstruct/binding/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/13.png b/front/public/images/large/TConstruct/binding/13.png deleted file mode 100644 index a6ff321c5c..0000000000 Binary files a/front/public/images/large/TConstruct/binding/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/14.png b/front/public/images/large/TConstruct/binding/14.png deleted file mode 100644 index 7b9a3395eb..0000000000 Binary files a/front/public/images/large/TConstruct/binding/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/15.png b/front/public/images/large/TConstruct/binding/15.png deleted file mode 100644 index 39d63a2fce..0000000000 Binary files a/front/public/images/large/TConstruct/binding/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/16.png b/front/public/images/large/TConstruct/binding/16.png deleted file mode 100644 index 2c461faa08..0000000000 Binary files a/front/public/images/large/TConstruct/binding/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/17.png b/front/public/images/large/TConstruct/binding/17.png deleted file mode 100644 index b8cd6349a2..0000000000 Binary files a/front/public/images/large/TConstruct/binding/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/18.png b/front/public/images/large/TConstruct/binding/18.png deleted file mode 100644 index 5d18b25977..0000000000 Binary files a/front/public/images/large/TConstruct/binding/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/2.png b/front/public/images/large/TConstruct/binding/2.png deleted file mode 100644 index f7e79f9f3b..0000000000 Binary files a/front/public/images/large/TConstruct/binding/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/3.png b/front/public/images/large/TConstruct/binding/3.png deleted file mode 100644 index 5b543bbdac..0000000000 Binary files a/front/public/images/large/TConstruct/binding/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/314.png b/front/public/images/large/TConstruct/binding/314.png deleted file mode 100644 index d0550dc898..0000000000 Binary files a/front/public/images/large/TConstruct/binding/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/4.png b/front/public/images/large/TConstruct/binding/4.png deleted file mode 100644 index 6fd9bfb00b..0000000000 Binary files a/front/public/images/large/TConstruct/binding/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/5.png b/front/public/images/large/TConstruct/binding/5.png deleted file mode 100644 index 6bdfd3bafe..0000000000 Binary files a/front/public/images/large/TConstruct/binding/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/6.png b/front/public/images/large/TConstruct/binding/6.png deleted file mode 100644 index 4552acb4ce..0000000000 Binary files a/front/public/images/large/TConstruct/binding/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/7.png b/front/public/images/large/TConstruct/binding/7.png deleted file mode 100644 index 15849f49ce..0000000000 Binary files a/front/public/images/large/TConstruct/binding/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/8.png b/front/public/images/large/TConstruct/binding/8.png deleted file mode 100644 index 1b3466c3b1..0000000000 Binary files a/front/public/images/large/TConstruct/binding/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/binding/9.png b/front/public/images/large/TConstruct/binding/9.png deleted file mode 100644 index b513f6c488..0000000000 Binary files a/front/public/images/large/TConstruct/binding/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/blankPattern/0.png b/front/public/images/large/TConstruct/blankPattern/0.png deleted file mode 100644 index 34c2dae121..0000000000 Binary files a/front/public/images/large/TConstruct/blankPattern/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/blankPattern/1.png b/front/public/images/large/TConstruct/blankPattern/1.png deleted file mode 100644 index 5fc99fa355..0000000000 Binary files a/front/public/images/large/TConstruct/blankPattern/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/blankPattern/2.png b/front/public/images/large/TConstruct/blankPattern/2.png deleted file mode 100644 index 5fc99fa355..0000000000 Binary files a/front/public/images/large/TConstruct/blankPattern/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/blankPattern/3.png b/front/public/images/large/TConstruct/blankPattern/3.png deleted file mode 100644 index cdd8a82cab..0000000000 Binary files a/front/public/images/large/TConstruct/blankPattern/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/blood.channel/0.png b/front/public/images/large/TConstruct/blood.channel/0.png deleted file mode 100644 index bad60e2146..0000000000 Binary files a/front/public/images/large/TConstruct/blood.channel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/bootsWood/0.png b/front/public/images/large/TConstruct/bootsWood/0.png deleted file mode 100644 index f8e25831e9..0000000000 Binary files a/front/public/images/large/TConstruct/bootsWood/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/bowstring/0.png b/front/public/images/large/TConstruct/bowstring/0.png deleted file mode 100644 index 6f1f5377b0..0000000000 Binary files a/front/public/images/large/TConstruct/bowstring/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/bowstring/2.png b/front/public/images/large/TConstruct/bowstring/2.png deleted file mode 100644 index 38843dda17..0000000000 Binary files a/front/public/images/large/TConstruct/bowstring/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/0.png b/front/public/images/large/TConstruct/broadAxeHead/0.png deleted file mode 100644 index a9884bd06c..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/1.png b/front/public/images/large/TConstruct/broadAxeHead/1.png deleted file mode 100644 index cbd9e1f8d8..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/10.png b/front/public/images/large/TConstruct/broadAxeHead/10.png deleted file mode 100644 index 81b4c75a78..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/11.png b/front/public/images/large/TConstruct/broadAxeHead/11.png deleted file mode 100644 index d3876b2604..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/12.png b/front/public/images/large/TConstruct/broadAxeHead/12.png deleted file mode 100644 index 00083b8d81..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/13.png b/front/public/images/large/TConstruct/broadAxeHead/13.png deleted file mode 100644 index a0a138839e..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/14.png b/front/public/images/large/TConstruct/broadAxeHead/14.png deleted file mode 100644 index 0994fabb9b..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/15.png b/front/public/images/large/TConstruct/broadAxeHead/15.png deleted file mode 100644 index 106fb156e5..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/16.png b/front/public/images/large/TConstruct/broadAxeHead/16.png deleted file mode 100644 index b6f2fed9ef..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/17.png b/front/public/images/large/TConstruct/broadAxeHead/17.png deleted file mode 100644 index cb4952052f..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/18.png b/front/public/images/large/TConstruct/broadAxeHead/18.png deleted file mode 100644 index 1d20873ca7..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/2.png b/front/public/images/large/TConstruct/broadAxeHead/2.png deleted file mode 100644 index a87851769e..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/3.png b/front/public/images/large/TConstruct/broadAxeHead/3.png deleted file mode 100644 index 33935e565f..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/314.png b/front/public/images/large/TConstruct/broadAxeHead/314.png deleted file mode 100644 index 4544198d53..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/4.png b/front/public/images/large/TConstruct/broadAxeHead/4.png deleted file mode 100644 index ef2aa8899e..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/5.png b/front/public/images/large/TConstruct/broadAxeHead/5.png deleted file mode 100644 index 6d97e6a31a..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/6.png b/front/public/images/large/TConstruct/broadAxeHead/6.png deleted file mode 100644 index 0c8fc9d7c9..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/7.png b/front/public/images/large/TConstruct/broadAxeHead/7.png deleted file mode 100644 index f6fd605b92..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/8.png b/front/public/images/large/TConstruct/broadAxeHead/8.png deleted file mode 100644 index 758aa7f444..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadAxeHead/9.png b/front/public/images/large/TConstruct/broadAxeHead/9.png deleted file mode 100644 index 12b21fcd03..0000000000 Binary files a/front/public/images/large/TConstruct/broadAxeHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/broadsword/0.png b/front/public/images/large/TConstruct/broadsword/0.png deleted file mode 100644 index 5024cb3dea..0000000000 Binary files a/front/public/images/large/TConstruct/broadsword/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/0.png b/front/public/images/large/TConstruct/buckets/0.png deleted file mode 100644 index 25a6e9cf09..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/1.png b/front/public/images/large/TConstruct/buckets/1.png deleted file mode 100644 index 1d45fd56c2..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/10.png b/front/public/images/large/TConstruct/buckets/10.png deleted file mode 100644 index bb1a19b8d3..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/11.png b/front/public/images/large/TConstruct/buckets/11.png deleted file mode 100644 index c8c48e84aa..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/12.png b/front/public/images/large/TConstruct/buckets/12.png deleted file mode 100644 index a7b8ff8fb2..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/13.png b/front/public/images/large/TConstruct/buckets/13.png deleted file mode 100644 index 9b18fc8d39..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/14.png b/front/public/images/large/TConstruct/buckets/14.png deleted file mode 100644 index a7b8ff8fb2..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/15.png b/front/public/images/large/TConstruct/buckets/15.png deleted file mode 100644 index bc51d16fb0..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/16.png b/front/public/images/large/TConstruct/buckets/16.png deleted file mode 100644 index a26e745c19..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/17.png b/front/public/images/large/TConstruct/buckets/17.png deleted file mode 100644 index b6fc237dec..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/18.png b/front/public/images/large/TConstruct/buckets/18.png deleted file mode 100644 index 36cc1acd65..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/19.png b/front/public/images/large/TConstruct/buckets/19.png deleted file mode 100644 index 42dcdd5602..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/19.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/2.png b/front/public/images/large/TConstruct/buckets/2.png deleted file mode 100644 index 6125525cab..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/20.png b/front/public/images/large/TConstruct/buckets/20.png deleted file mode 100644 index 5f185a3497..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/20.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/21.png b/front/public/images/large/TConstruct/buckets/21.png deleted file mode 100644 index 371e63b116..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/21.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/22.png b/front/public/images/large/TConstruct/buckets/22.png deleted file mode 100644 index 1402575f4d..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/22.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/23.png b/front/public/images/large/TConstruct/buckets/23.png deleted file mode 100644 index b1db66989c..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/23.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/24.png b/front/public/images/large/TConstruct/buckets/24.png deleted file mode 100644 index 42dcdd5602..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/24.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/25.png b/front/public/images/large/TConstruct/buckets/25.png deleted file mode 100644 index bb321703da..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/25.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/26.png b/front/public/images/large/TConstruct/buckets/26.png deleted file mode 100644 index 5b2cd3432f..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/26.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/27.png b/front/public/images/large/TConstruct/buckets/27.png deleted file mode 100644 index 68c3253bc2..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/27.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/28.png b/front/public/images/large/TConstruct/buckets/28.png deleted file mode 100644 index bb06085422..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/28.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/29.png b/front/public/images/large/TConstruct/buckets/29.png deleted file mode 100644 index a8410688a2..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/29.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/3.png b/front/public/images/large/TConstruct/buckets/3.png deleted file mode 100644 index 5a2091c736..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/30.png b/front/public/images/large/TConstruct/buckets/30.png deleted file mode 100644 index f50b66eb5b..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/30.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/31.png b/front/public/images/large/TConstruct/buckets/31.png deleted file mode 100644 index e09ac93fb5..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/31.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/4.png b/front/public/images/large/TConstruct/buckets/4.png deleted file mode 100644 index b180918c75..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/5.png b/front/public/images/large/TConstruct/buckets/5.png deleted file mode 100644 index eb5c7f29a4..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/6.png b/front/public/images/large/TConstruct/buckets/6.png deleted file mode 100644 index 49be5e18f2..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/7.png b/front/public/images/large/TConstruct/buckets/7.png deleted file mode 100644 index 113c614bf3..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/8.png b/front/public/images/large/TConstruct/buckets/8.png deleted file mode 100644 index 1402575f4d..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/buckets/9.png b/front/public/images/large/TConstruct/buckets/9.png deleted file mode 100644 index e1b97b3cd4..0000000000 Binary files a/front/public/images/large/TConstruct/buckets/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chestplateWood/0.png b/front/public/images/large/TConstruct/chestplateWood/0.png deleted file mode 100644 index f894aad629..0000000000 Binary files a/front/public/images/large/TConstruct/chestplateWood/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chisel/0.png b/front/public/images/large/TConstruct/chisel/0.png deleted file mode 100644 index ceb17e98eb..0000000000 Binary files a/front/public/images/large/TConstruct/chisel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/0.png b/front/public/images/large/TConstruct/chiselHead/0.png deleted file mode 100644 index 596fa7a2db..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/1.png b/front/public/images/large/TConstruct/chiselHead/1.png deleted file mode 100644 index b0ca05c59b..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/10.png b/front/public/images/large/TConstruct/chiselHead/10.png deleted file mode 100644 index 579985b38f..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/11.png b/front/public/images/large/TConstruct/chiselHead/11.png deleted file mode 100644 index 33e6670737..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/12.png b/front/public/images/large/TConstruct/chiselHead/12.png deleted file mode 100644 index 906da18828..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/13.png b/front/public/images/large/TConstruct/chiselHead/13.png deleted file mode 100644 index 824f53a341..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/14.png b/front/public/images/large/TConstruct/chiselHead/14.png deleted file mode 100644 index 87147c0e30..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/15.png b/front/public/images/large/TConstruct/chiselHead/15.png deleted file mode 100644 index c976354277..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/16.png b/front/public/images/large/TConstruct/chiselHead/16.png deleted file mode 100644 index c9b47d051e..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/17.png b/front/public/images/large/TConstruct/chiselHead/17.png deleted file mode 100644 index 9c7af91a99..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/18.png b/front/public/images/large/TConstruct/chiselHead/18.png deleted file mode 100644 index fc07698f7c..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/2.png b/front/public/images/large/TConstruct/chiselHead/2.png deleted file mode 100644 index 7757fa7825..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/3.png b/front/public/images/large/TConstruct/chiselHead/3.png deleted file mode 100644 index b6a4d5180d..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/314.png b/front/public/images/large/TConstruct/chiselHead/314.png deleted file mode 100644 index 6b133f393d..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/4.png b/front/public/images/large/TConstruct/chiselHead/4.png deleted file mode 100644 index 872359e532..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/5.png b/front/public/images/large/TConstruct/chiselHead/5.png deleted file mode 100644 index cfa24382b7..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/6.png b/front/public/images/large/TConstruct/chiselHead/6.png deleted file mode 100644 index 7d6fe32ad1..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/7.png b/front/public/images/large/TConstruct/chiselHead/7.png deleted file mode 100644 index bf7454c824..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/8.png b/front/public/images/large/TConstruct/chiselHead/8.png deleted file mode 100644 index 5b38d0393e..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/chiselHead/9.png b/front/public/images/large/TConstruct/chiselHead/9.png deleted file mode 100644 index c3d584161b..0000000000 Binary files a/front/public/images/large/TConstruct/chiselHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/0.png b/front/public/images/large/TConstruct/clayPattern/0.png deleted file mode 100644 index 0e916eb8fe..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/1.png b/front/public/images/large/TConstruct/clayPattern/1.png deleted file mode 100644 index 2d998833f7..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/10.png b/front/public/images/large/TConstruct/clayPattern/10.png deleted file mode 100644 index 9fee568ae9..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/11.png b/front/public/images/large/TConstruct/clayPattern/11.png deleted file mode 100644 index 88225b3466..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/12.png b/front/public/images/large/TConstruct/clayPattern/12.png deleted file mode 100644 index b4113325da..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/13.png b/front/public/images/large/TConstruct/clayPattern/13.png deleted file mode 100644 index aa2ff361fd..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/2.png b/front/public/images/large/TConstruct/clayPattern/2.png deleted file mode 100644 index 61c02bb55c..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/22.png b/front/public/images/large/TConstruct/clayPattern/22.png deleted file mode 100644 index edf4c14fbd..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/22.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/25.png b/front/public/images/large/TConstruct/clayPattern/25.png deleted file mode 100644 index b14e9f3860..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/25.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/26.png b/front/public/images/large/TConstruct/clayPattern/26.png deleted file mode 100644 index 78edb7ba2f..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/26.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/27.png b/front/public/images/large/TConstruct/clayPattern/27.png deleted file mode 100644 index 5f73a1272b..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/27.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/3.png b/front/public/images/large/TConstruct/clayPattern/3.png deleted file mode 100644 index 7725428946..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/4.png b/front/public/images/large/TConstruct/clayPattern/4.png deleted file mode 100644 index e5c8cffbed..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/5.png b/front/public/images/large/TConstruct/clayPattern/5.png deleted file mode 100644 index 999dce4a26..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/6.png b/front/public/images/large/TConstruct/clayPattern/6.png deleted file mode 100644 index fc1fbdcfea..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/7.png b/front/public/images/large/TConstruct/clayPattern/7.png deleted file mode 100644 index a09ca2e229..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/8.png b/front/public/images/large/TConstruct/clayPattern/8.png deleted file mode 100644 index 4869d03e2c..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/clayPattern/9.png b/front/public/images/large/TConstruct/clayPattern/9.png deleted file mode 100644 index b94adb10d3..0000000000 Binary files a/front/public/images/large/TConstruct/clayPattern/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/cleaver/0.png b/front/public/images/large/TConstruct/cleaver/0.png deleted file mode 100644 index 48d706319f..0000000000 Binary files a/front/public/images/large/TConstruct/cleaver/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/creativeModifier/0.png b/front/public/images/large/TConstruct/creativeModifier/0.png deleted file mode 100644 index 711c7ee7c7..0000000000 Binary files a/front/public/images/large/TConstruct/creativeModifier/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/0.png b/front/public/images/large/TConstruct/crossbar/0.png deleted file mode 100644 index 5fcfb7fb1b..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/1.png b/front/public/images/large/TConstruct/crossbar/1.png deleted file mode 100644 index cf26381c57..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/10.png b/front/public/images/large/TConstruct/crossbar/10.png deleted file mode 100644 index 12f2df8a58..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/11.png b/front/public/images/large/TConstruct/crossbar/11.png deleted file mode 100644 index 4f2bc42ca4..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/12.png b/front/public/images/large/TConstruct/crossbar/12.png deleted file mode 100644 index 4485ab3647..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/13.png b/front/public/images/large/TConstruct/crossbar/13.png deleted file mode 100644 index 11f07a0905..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/14.png b/front/public/images/large/TConstruct/crossbar/14.png deleted file mode 100644 index 54b66eed9c..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/15.png b/front/public/images/large/TConstruct/crossbar/15.png deleted file mode 100644 index 5a937aa8f3..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/16.png b/front/public/images/large/TConstruct/crossbar/16.png deleted file mode 100644 index 801cb04e9b..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/17.png b/front/public/images/large/TConstruct/crossbar/17.png deleted file mode 100644 index ad5d2eb82b..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/18.png b/front/public/images/large/TConstruct/crossbar/18.png deleted file mode 100644 index 04c1693eae..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/2.png b/front/public/images/large/TConstruct/crossbar/2.png deleted file mode 100644 index 3ac357bdcb..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/3.png b/front/public/images/large/TConstruct/crossbar/3.png deleted file mode 100644 index 24a6a3b0d8..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/314.png b/front/public/images/large/TConstruct/crossbar/314.png deleted file mode 100644 index e6d846d5d9..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/4.png b/front/public/images/large/TConstruct/crossbar/4.png deleted file mode 100644 index 35fb76942c..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/5.png b/front/public/images/large/TConstruct/crossbar/5.png deleted file mode 100644 index d3d59f71ce..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/6.png b/front/public/images/large/TConstruct/crossbar/6.png deleted file mode 100644 index 6701d4697c..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/7.png b/front/public/images/large/TConstruct/crossbar/7.png deleted file mode 100644 index 638b468a89..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/8.png b/front/public/images/large/TConstruct/crossbar/8.png deleted file mode 100644 index 8945bf003f..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/crossbar/9.png b/front/public/images/large/TConstruct/crossbar/9.png deleted file mode 100644 index 2bf68de918..0000000000 Binary files a/front/public/images/large/TConstruct/crossbar/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/cutlass/0.png b/front/public/images/large/TConstruct/cutlass/0.png deleted file mode 100644 index 3ce5fde109..0000000000 Binary files a/front/public/images/large/TConstruct/cutlass/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/dagger/0.png b/front/public/images/large/TConstruct/dagger/0.png deleted file mode 100644 index 2e58af30a2..0000000000 Binary files a/front/public/images/large/TConstruct/dagger/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/0.png b/front/public/images/large/TConstruct/decoration.multibrick/0.png deleted file mode 100644 index ce5d1a234b..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/1.png b/front/public/images/large/TConstruct/decoration.multibrick/1.png deleted file mode 100644 index 02b33d8681..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/10.png b/front/public/images/large/TConstruct/decoration.multibrick/10.png deleted file mode 100644 index 95ca21b7e3..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/11.png b/front/public/images/large/TConstruct/decoration.multibrick/11.png deleted file mode 100644 index 00121c3459..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/12.png b/front/public/images/large/TConstruct/decoration.multibrick/12.png deleted file mode 100644 index b7046b7093..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/13.png b/front/public/images/large/TConstruct/decoration.multibrick/13.png deleted file mode 100644 index 44b2aa1e2d..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/2.png b/front/public/images/large/TConstruct/decoration.multibrick/2.png deleted file mode 100644 index c394efd16b..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/3.png b/front/public/images/large/TConstruct/decoration.multibrick/3.png deleted file mode 100644 index eaf5f4fe28..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/4.png b/front/public/images/large/TConstruct/decoration.multibrick/4.png deleted file mode 100644 index e358624858..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/5.png b/front/public/images/large/TConstruct/decoration.multibrick/5.png deleted file mode 100644 index 81b912ae8a..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/6.png b/front/public/images/large/TConstruct/decoration.multibrick/6.png deleted file mode 100644 index 7d7bb71329..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/7.png b/front/public/images/large/TConstruct/decoration.multibrick/7.png deleted file mode 100644 index 50d1d2eb48..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/8.png b/front/public/images/large/TConstruct/decoration.multibrick/8.png deleted file mode 100644 index c71c2607c3..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrick/9.png b/front/public/images/large/TConstruct/decoration.multibrick/9.png deleted file mode 100644 index 74c5d6129b..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrick/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/0.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/0.png deleted file mode 100644 index 869c43e8ad..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/1.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/1.png deleted file mode 100644 index b4ee446f67..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/10.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/10.png deleted file mode 100644 index e4bf9b1d0d..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/11.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/11.png deleted file mode 100644 index 1bb1205897..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/12.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/12.png deleted file mode 100644 index 5c4f9955a5..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/13.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/13.png deleted file mode 100644 index 66ca01538a..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/14.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/14.png deleted file mode 100644 index aae88d6a7f..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/15.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/15.png deleted file mode 100644 index 9b8345ae93..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/2.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/2.png deleted file mode 100644 index 5b65e99972..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/3.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/3.png deleted file mode 100644 index 61597e3ecb..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/4.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/4.png deleted file mode 100644 index d1613b7c19..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/5.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/5.png deleted file mode 100644 index 2a7076ba96..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/6.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/6.png deleted file mode 100644 index b6113b8d99..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/7.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/7.png deleted file mode 100644 index c9c0386253..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/8.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/8.png deleted file mode 100644 index fa05492a4e..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickfancy/9.png b/front/public/images/large/TConstruct/decoration.multibrickfancy/9.png deleted file mode 100644 index 491487921b..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickfancy/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/0.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/0.png deleted file mode 100644 index cde39af6ae..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/1.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/1.png deleted file mode 100644 index 0ea30787fa..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/2.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/2.png deleted file mode 100644 index c054c46323..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/3.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/3.png deleted file mode 100644 index 72c752f73a..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/4.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/4.png deleted file mode 100644 index b5107aea21..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/5.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/5.png deleted file mode 100644 index 7fd5396104..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/6.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/6.png deleted file mode 100644 index 77a0ebffd0..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.multibrickmetal/7.png b/front/public/images/large/TConstruct/decoration.multibrickmetal/7.png deleted file mode 100644 index eb81a3cfc0..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.multibrickmetal/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.stoneladder/0.png b/front/public/images/large/TConstruct/decoration.stoneladder/0.png deleted file mode 100644 index 70291353d6..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.stoneladder/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/decoration.stonetorch/0.png b/front/public/images/large/TConstruct/decoration.stonetorch/0.png deleted file mode 100644 index b7229a491e..0000000000 Binary files a/front/public/images/large/TConstruct/decoration.stonetorch/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/diamondApple/0.png b/front/public/images/large/TConstruct/diamondApple/0.png deleted file mode 100644 index 47b15834a6..0000000000 Binary files a/front/public/images/large/TConstruct/diamondApple/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavator/0.png b/front/public/images/large/TConstruct/excavator/0.png deleted file mode 100644 index 6fb41b57c3..0000000000 Binary files a/front/public/images/large/TConstruct/excavator/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/0.png b/front/public/images/large/TConstruct/excavatorHead/0.png deleted file mode 100644 index 885b670786..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/1.png b/front/public/images/large/TConstruct/excavatorHead/1.png deleted file mode 100644 index bfa92f0fa6..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/10.png b/front/public/images/large/TConstruct/excavatorHead/10.png deleted file mode 100644 index 5b2b589628..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/11.png b/front/public/images/large/TConstruct/excavatorHead/11.png deleted file mode 100644 index d017cddd7e..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/12.png b/front/public/images/large/TConstruct/excavatorHead/12.png deleted file mode 100644 index c448168e72..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/13.png b/front/public/images/large/TConstruct/excavatorHead/13.png deleted file mode 100644 index 9839df8a45..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/14.png b/front/public/images/large/TConstruct/excavatorHead/14.png deleted file mode 100644 index 2a911670a6..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/15.png b/front/public/images/large/TConstruct/excavatorHead/15.png deleted file mode 100644 index 8f90cc9556..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/16.png b/front/public/images/large/TConstruct/excavatorHead/16.png deleted file mode 100644 index 4a87694584..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/17.png b/front/public/images/large/TConstruct/excavatorHead/17.png deleted file mode 100644 index f3524a3d7e..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/18.png b/front/public/images/large/TConstruct/excavatorHead/18.png deleted file mode 100644 index a3d46882d3..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/2.png b/front/public/images/large/TConstruct/excavatorHead/2.png deleted file mode 100644 index b22d0b3911..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/3.png b/front/public/images/large/TConstruct/excavatorHead/3.png deleted file mode 100644 index a640ceff6c..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/314.png b/front/public/images/large/TConstruct/excavatorHead/314.png deleted file mode 100644 index facd5d8286..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/4.png b/front/public/images/large/TConstruct/excavatorHead/4.png deleted file mode 100644 index 4e6015c9af..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/5.png b/front/public/images/large/TConstruct/excavatorHead/5.png deleted file mode 100644 index deff821dca..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/6.png b/front/public/images/large/TConstruct/excavatorHead/6.png deleted file mode 100644 index 36bad88a3d..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/7.png b/front/public/images/large/TConstruct/excavatorHead/7.png deleted file mode 100644 index 0edbc41804..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/8.png b/front/public/images/large/TConstruct/excavatorHead/8.png deleted file mode 100644 index a66d130e37..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/excavatorHead/9.png b/front/public/images/large/TConstruct/excavatorHead/9.png deleted file mode 100644 index c9f6c64c67..0000000000 Binary files a/front/public/images/large/TConstruct/excavatorHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/explosive.slime/0.png b/front/public/images/large/TConstruct/explosive.slime/0.png deleted file mode 100644 index f10576c01c..0000000000 Binary files a/front/public/images/large/TConstruct/explosive.slime/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/explosive.slime/2.png b/front/public/images/large/TConstruct/explosive.slime/2.png deleted file mode 100644 index 4981145c64..0000000000 Binary files a/front/public/images/large/TConstruct/explosive.slime/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fletching/0.png b/front/public/images/large/TConstruct/fletching/0.png deleted file mode 100644 index ceca4e35b4..0000000000 Binary files a/front/public/images/large/TConstruct/fletching/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fletching/1.png b/front/public/images/large/TConstruct/fletching/1.png deleted file mode 100644 index b033c51705..0000000000 Binary files a/front/public/images/large/TConstruct/fletching/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fletching/2.png b/front/public/images/large/TConstruct/fletching/2.png deleted file mode 100644 index e50cf39ee5..0000000000 Binary files a/front/public/images/large/TConstruct/fletching/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fletching/3.png b/front/public/images/large/TConstruct/fletching/3.png deleted file mode 100644 index 24662b225d..0000000000 Binary files a/front/public/images/large/TConstruct/fletching/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fletching/4.png b/front/public/images/large/TConstruct/fletching/4.png deleted file mode 100644 index 6bfbe0d1ff..0000000000 Binary files a/front/public/images/large/TConstruct/fletching/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.ender/0.png b/front/public/images/large/TConstruct/fluid.ender/0.png deleted file mode 100644 index 69e2b9a710..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.ender/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.alubrass/0.png b/front/public/images/large/TConstruct/fluid.molten.alubrass/0.png deleted file mode 100644 index a0c65bb455..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.alubrass/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.aluminum/0.png b/front/public/images/large/TConstruct/fluid.molten.aluminum/0.png deleted file mode 100644 index 7d5f93c175..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.aluminum/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.alumite/0.png b/front/public/images/large/TConstruct/fluid.molten.alumite/0.png deleted file mode 100644 index 307c73fc9e..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.alumite/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.ardite/0.png b/front/public/images/large/TConstruct/fluid.molten.ardite/0.png deleted file mode 100644 index a38155d2cc..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.ardite/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.bronze/0.png b/front/public/images/large/TConstruct/fluid.molten.bronze/0.png deleted file mode 100644 index 6b81d35cd4..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.bronze/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.cobalt/0.png b/front/public/images/large/TConstruct/fluid.molten.cobalt/0.png deleted file mode 100644 index 1a9e2af191..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.cobalt/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.copper/0.png b/front/public/images/large/TConstruct/fluid.molten.copper/0.png deleted file mode 100644 index 6d08d8d86a..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.copper/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.electrum/0.png b/front/public/images/large/TConstruct/fluid.molten.electrum/0.png deleted file mode 100644 index 9d391a6230..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.electrum/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.enderium/0.png b/front/public/images/large/TConstruct/fluid.molten.enderium/0.png deleted file mode 100644 index b3ba09c357..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.enderium/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.glass/0.png b/front/public/images/large/TConstruct/fluid.molten.glass/0.png deleted file mode 100644 index 3b8f8af5e5..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.glass/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.gold/0.png b/front/public/images/large/TConstruct/fluid.molten.gold/0.png deleted file mode 100644 index 939272ccd7..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.gold/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.invar/0.png b/front/public/images/large/TConstruct/fluid.molten.invar/0.png deleted file mode 100644 index 8d2f68dd08..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.invar/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.iron/0.png b/front/public/images/large/TConstruct/fluid.molten.iron/0.png deleted file mode 100644 index b4fe218e00..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.iron/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.lead/0.png b/front/public/images/large/TConstruct/fluid.molten.lead/0.png deleted file mode 100644 index 54b2053d2b..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.lead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.lumium/0.png b/front/public/images/large/TConstruct/fluid.molten.lumium/0.png deleted file mode 100644 index f9b110b2a2..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.lumium/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.manyullyn/0.png b/front/public/images/large/TConstruct/fluid.molten.manyullyn/0.png deleted file mode 100644 index a401ff686e..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.manyullyn/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.mithril/0.png b/front/public/images/large/TConstruct/fluid.molten.mithril/0.png deleted file mode 100644 index ac09cc56d1..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.mithril/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.nickel/0.png b/front/public/images/large/TConstruct/fluid.molten.nickel/0.png deleted file mode 100644 index b01c43f742..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.nickel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.obsidian/0.png b/front/public/images/large/TConstruct/fluid.molten.obsidian/0.png deleted file mode 100644 index 88881e34c4..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.obsidian/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.pigiron/0.png b/front/public/images/large/TConstruct/fluid.molten.pigiron/0.png deleted file mode 100644 index e1f3324571..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.pigiron/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.shiny/0.png b/front/public/images/large/TConstruct/fluid.molten.shiny/0.png deleted file mode 100644 index 40fdaba759..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.shiny/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.signalum/0.png b/front/public/images/large/TConstruct/fluid.molten.signalum/0.png deleted file mode 100644 index 939e51da39..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.signalum/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.silver/0.png b/front/public/images/large/TConstruct/fluid.molten.silver/0.png deleted file mode 100644 index 9cb9bcd486..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.silver/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.steel/0.png b/front/public/images/large/TConstruct/fluid.molten.steel/0.png deleted file mode 100644 index b142327fca..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.steel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/fluid.molten.tin/0.png b/front/public/images/large/TConstruct/fluid.molten.tin/0.png deleted file mode 100644 index 28615169bc..0000000000 Binary files a/front/public/images/large/TConstruct/fluid.molten.tin/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypan/0.png b/front/public/images/large/TConstruct/frypan/0.png deleted file mode 100644 index a0fe3c5669..0000000000 Binary files a/front/public/images/large/TConstruct/frypan/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/0.png b/front/public/images/large/TConstruct/frypanHead/0.png deleted file mode 100644 index 41e2df015f..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/1.png b/front/public/images/large/TConstruct/frypanHead/1.png deleted file mode 100644 index 5cf12593c7..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/10.png b/front/public/images/large/TConstruct/frypanHead/10.png deleted file mode 100644 index 5735de4c6e..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/11.png b/front/public/images/large/TConstruct/frypanHead/11.png deleted file mode 100644 index 89b73fb79d..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/12.png b/front/public/images/large/TConstruct/frypanHead/12.png deleted file mode 100644 index 390ecab774..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/13.png b/front/public/images/large/TConstruct/frypanHead/13.png deleted file mode 100644 index 0ad1ba5549..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/14.png b/front/public/images/large/TConstruct/frypanHead/14.png deleted file mode 100644 index 6cee3bd0c6..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/15.png b/front/public/images/large/TConstruct/frypanHead/15.png deleted file mode 100644 index 6152ebb78c..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/16.png b/front/public/images/large/TConstruct/frypanHead/16.png deleted file mode 100644 index 4b817356d0..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/17.png b/front/public/images/large/TConstruct/frypanHead/17.png deleted file mode 100644 index 6f9544ebff..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/18.png b/front/public/images/large/TConstruct/frypanHead/18.png deleted file mode 100644 index 6bf15e490d..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/2.png b/front/public/images/large/TConstruct/frypanHead/2.png deleted file mode 100644 index a864dcb666..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/3.png b/front/public/images/large/TConstruct/frypanHead/3.png deleted file mode 100644 index 579741b7f8..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/314.png b/front/public/images/large/TConstruct/frypanHead/314.png deleted file mode 100644 index 85ab42f3d8..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/4.png b/front/public/images/large/TConstruct/frypanHead/4.png deleted file mode 100644 index 4226c3440d..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/5.png b/front/public/images/large/TConstruct/frypanHead/5.png deleted file mode 100644 index af9877d14b..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/6.png b/front/public/images/large/TConstruct/frypanHead/6.png deleted file mode 100644 index d066987d85..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/7.png b/front/public/images/large/TConstruct/frypanHead/7.png deleted file mode 100644 index 0b2d371cb4..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/8.png b/front/public/images/large/TConstruct/frypanHead/8.png deleted file mode 100644 index 6e40105a59..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/frypanHead/9.png b/front/public/images/large/TConstruct/frypanHead/9.png deleted file mode 100644 index 8f647e2153..0000000000 Binary files a/front/public/images/large/TConstruct/frypanHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/gearCast/0.png b/front/public/images/large/TConstruct/gearCast/0.png deleted file mode 100644 index 846c8317fb..0000000000 Binary files a/front/public/images/large/TConstruct/gearCast/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/goldHead/0.png b/front/public/images/large/TConstruct/goldHead/0.png deleted file mode 100644 index 711c7ee7c7..0000000000 Binary files a/front/public/images/large/TConstruct/goldHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammer/0.png b/front/public/images/large/TConstruct/hammer/0.png deleted file mode 100644 index 497c27cea1..0000000000 Binary files a/front/public/images/large/TConstruct/hammer/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/0.png b/front/public/images/large/TConstruct/hammerHead/0.png deleted file mode 100644 index dba44b46f6..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/1.png b/front/public/images/large/TConstruct/hammerHead/1.png deleted file mode 100644 index e3660e6286..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/10.png b/front/public/images/large/TConstruct/hammerHead/10.png deleted file mode 100644 index c0d476fbb7..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/11.png b/front/public/images/large/TConstruct/hammerHead/11.png deleted file mode 100644 index 9a78dae1df..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/12.png b/front/public/images/large/TConstruct/hammerHead/12.png deleted file mode 100644 index 4f7dbec34f..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/13.png b/front/public/images/large/TConstruct/hammerHead/13.png deleted file mode 100644 index 5647d10f2d..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/14.png b/front/public/images/large/TConstruct/hammerHead/14.png deleted file mode 100644 index 088f08e6c3..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/15.png b/front/public/images/large/TConstruct/hammerHead/15.png deleted file mode 100644 index e363056d50..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/16.png b/front/public/images/large/TConstruct/hammerHead/16.png deleted file mode 100644 index 7a7d0b27ca..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/17.png b/front/public/images/large/TConstruct/hammerHead/17.png deleted file mode 100644 index e34c9b1fcf..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/18.png b/front/public/images/large/TConstruct/hammerHead/18.png deleted file mode 100644 index 0535bd0ab2..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/2.png b/front/public/images/large/TConstruct/hammerHead/2.png deleted file mode 100644 index 1d234221e3..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/3.png b/front/public/images/large/TConstruct/hammerHead/3.png deleted file mode 100644 index 08d84e216d..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/314.png b/front/public/images/large/TConstruct/hammerHead/314.png deleted file mode 100644 index bb3e3ca611..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/4.png b/front/public/images/large/TConstruct/hammerHead/4.png deleted file mode 100644 index 76ce3b3638..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/5.png b/front/public/images/large/TConstruct/hammerHead/5.png deleted file mode 100644 index 45a467c813..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/6.png b/front/public/images/large/TConstruct/hammerHead/6.png deleted file mode 100644 index d43202ecaf..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/7.png b/front/public/images/large/TConstruct/hammerHead/7.png deleted file mode 100644 index 3a53f789f6..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/8.png b/front/public/images/large/TConstruct/hammerHead/8.png deleted file mode 100644 index 250147fa3c..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hammerHead/9.png b/front/public/images/large/TConstruct/hammerHead/9.png deleted file mode 100644 index 960c0b3aa1..0000000000 Binary files a/front/public/images/large/TConstruct/hammerHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/0.png b/front/public/images/large/TConstruct/handGuard/0.png deleted file mode 100644 index f80a7d0a24..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/1.png b/front/public/images/large/TConstruct/handGuard/1.png deleted file mode 100644 index 736c2e1f29..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/10.png b/front/public/images/large/TConstruct/handGuard/10.png deleted file mode 100644 index 81bafb888f..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/11.png b/front/public/images/large/TConstruct/handGuard/11.png deleted file mode 100644 index d1a2e93117..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/12.png b/front/public/images/large/TConstruct/handGuard/12.png deleted file mode 100644 index ac974395d7..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/13.png b/front/public/images/large/TConstruct/handGuard/13.png deleted file mode 100644 index 3890902905..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/14.png b/front/public/images/large/TConstruct/handGuard/14.png deleted file mode 100644 index e0132fbe98..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/15.png b/front/public/images/large/TConstruct/handGuard/15.png deleted file mode 100644 index c8298e1eaf..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/16.png b/front/public/images/large/TConstruct/handGuard/16.png deleted file mode 100644 index 981dce1bd6..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/17.png b/front/public/images/large/TConstruct/handGuard/17.png deleted file mode 100644 index 45ee40154c..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/18.png b/front/public/images/large/TConstruct/handGuard/18.png deleted file mode 100644 index e8c371f202..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/2.png b/front/public/images/large/TConstruct/handGuard/2.png deleted file mode 100644 index 5f27f17b0b..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/3.png b/front/public/images/large/TConstruct/handGuard/3.png deleted file mode 100644 index c2bfce9212..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/314.png b/front/public/images/large/TConstruct/handGuard/314.png deleted file mode 100644 index 19c1abf1a2..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/4.png b/front/public/images/large/TConstruct/handGuard/4.png deleted file mode 100644 index cb828bf0e2..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/5.png b/front/public/images/large/TConstruct/handGuard/5.png deleted file mode 100644 index b83c1466ba..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/6.png b/front/public/images/large/TConstruct/handGuard/6.png deleted file mode 100644 index 96807bd048..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/7.png b/front/public/images/large/TConstruct/handGuard/7.png deleted file mode 100644 index bb97bf60bb..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/8.png b/front/public/images/large/TConstruct/handGuard/8.png deleted file mode 100644 index 2eebd02d4c..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/handGuard/9.png b/front/public/images/large/TConstruct/handGuard/9.png deleted file mode 100644 index d5fb2b2b73..0000000000 Binary files a/front/public/images/large/TConstruct/handGuard/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchet/0.png b/front/public/images/large/TConstruct/hatchet/0.png deleted file mode 100644 index c50363a065..0000000000 Binary files a/front/public/images/large/TConstruct/hatchet/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/0.png b/front/public/images/large/TConstruct/hatchetHead/0.png deleted file mode 100644 index 91beab5d68..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/1.png b/front/public/images/large/TConstruct/hatchetHead/1.png deleted file mode 100644 index 8e0a9f3d4b..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/10.png b/front/public/images/large/TConstruct/hatchetHead/10.png deleted file mode 100644 index 6258b8d735..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/11.png b/front/public/images/large/TConstruct/hatchetHead/11.png deleted file mode 100644 index 9c8a408ffd..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/12.png b/front/public/images/large/TConstruct/hatchetHead/12.png deleted file mode 100644 index 0806beb2af..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/13.png b/front/public/images/large/TConstruct/hatchetHead/13.png deleted file mode 100644 index 77eef1afee..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/14.png b/front/public/images/large/TConstruct/hatchetHead/14.png deleted file mode 100644 index b25c5814ab..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/15.png b/front/public/images/large/TConstruct/hatchetHead/15.png deleted file mode 100644 index 07a0838fa0..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/16.png b/front/public/images/large/TConstruct/hatchetHead/16.png deleted file mode 100644 index 9e7e9792b1..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/17.png b/front/public/images/large/TConstruct/hatchetHead/17.png deleted file mode 100644 index b8fc84fae3..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/18.png b/front/public/images/large/TConstruct/hatchetHead/18.png deleted file mode 100644 index 37170909ad..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/2.png b/front/public/images/large/TConstruct/hatchetHead/2.png deleted file mode 100644 index d1c268b872..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/3.png b/front/public/images/large/TConstruct/hatchetHead/3.png deleted file mode 100644 index 85ef6bab3f..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/314.png b/front/public/images/large/TConstruct/hatchetHead/314.png deleted file mode 100644 index e1fcf50d3a..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/4.png b/front/public/images/large/TConstruct/hatchetHead/4.png deleted file mode 100644 index 7815dbd4ab..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/5.png b/front/public/images/large/TConstruct/hatchetHead/5.png deleted file mode 100644 index e777091b02..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/6.png b/front/public/images/large/TConstruct/hatchetHead/6.png deleted file mode 100644 index 78831bfe9a..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/7.png b/front/public/images/large/TConstruct/hatchetHead/7.png deleted file mode 100644 index c862f98e8f..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/8.png b/front/public/images/large/TConstruct/hatchetHead/8.png deleted file mode 100644 index 0dfaa7861e..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/hatchetHead/9.png b/front/public/images/large/TConstruct/hatchetHead/9.png deleted file mode 100644 index ef39af0989..0000000000 Binary files a/front/public/images/large/TConstruct/hatchetHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heartCanister/0.png b/front/public/images/large/TConstruct/heartCanister/0.png deleted file mode 100644 index c9c570075a..0000000000 Binary files a/front/public/images/large/TConstruct/heartCanister/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heartCanister/1.png b/front/public/images/large/TConstruct/heartCanister/1.png deleted file mode 100644 index 3c9a43a130..0000000000 Binary files a/front/public/images/large/TConstruct/heartCanister/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heartCanister/2.png b/front/public/images/large/TConstruct/heartCanister/2.png deleted file mode 100644 index 470842cc25..0000000000 Binary files a/front/public/images/large/TConstruct/heartCanister/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heartCanister/3.png b/front/public/images/large/TConstruct/heartCanister/3.png deleted file mode 100644 index f628d5df5a..0000000000 Binary files a/front/public/images/large/TConstruct/heartCanister/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heartCanister/4.png b/front/public/images/large/TConstruct/heartCanister/4.png deleted file mode 100644 index d63f2420ec..0000000000 Binary files a/front/public/images/large/TConstruct/heartCanister/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heartCanister/5.png b/front/public/images/large/TConstruct/heartCanister/5.png deleted file mode 100644 index 4c93114f1a..0000000000 Binary files a/front/public/images/large/TConstruct/heartCanister/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heartCanister/6.png b/front/public/images/large/TConstruct/heartCanister/6.png deleted file mode 100644 index fa707b9e17..0000000000 Binary files a/front/public/images/large/TConstruct/heartCanister/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/0.png b/front/public/images/large/TConstruct/heavyPlate/0.png deleted file mode 100644 index 89d4f9eb41..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/1.png b/front/public/images/large/TConstruct/heavyPlate/1.png deleted file mode 100644 index cdc8a071df..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/10.png b/front/public/images/large/TConstruct/heavyPlate/10.png deleted file mode 100644 index 9e43130406..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/11.png b/front/public/images/large/TConstruct/heavyPlate/11.png deleted file mode 100644 index 6a4448077b..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/12.png b/front/public/images/large/TConstruct/heavyPlate/12.png deleted file mode 100644 index b262266576..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/13.png b/front/public/images/large/TConstruct/heavyPlate/13.png deleted file mode 100644 index 9ca04a84fa..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/14.png b/front/public/images/large/TConstruct/heavyPlate/14.png deleted file mode 100644 index 3b92bd54d9..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/15.png b/front/public/images/large/TConstruct/heavyPlate/15.png deleted file mode 100644 index 5d8245363a..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/16.png b/front/public/images/large/TConstruct/heavyPlate/16.png deleted file mode 100644 index 61f4df0a20..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/17.png b/front/public/images/large/TConstruct/heavyPlate/17.png deleted file mode 100644 index f5faa13dd8..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/18.png b/front/public/images/large/TConstruct/heavyPlate/18.png deleted file mode 100644 index 4a24b8a0bd..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/2.png b/front/public/images/large/TConstruct/heavyPlate/2.png deleted file mode 100644 index 9e9045e703..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/3.png b/front/public/images/large/TConstruct/heavyPlate/3.png deleted file mode 100644 index 4845abc0db..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/314.png b/front/public/images/large/TConstruct/heavyPlate/314.png deleted file mode 100644 index 24a4ab4005..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/4.png b/front/public/images/large/TConstruct/heavyPlate/4.png deleted file mode 100644 index dd8d5bc996..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/5.png b/front/public/images/large/TConstruct/heavyPlate/5.png deleted file mode 100644 index e5a6ee101a..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/6.png b/front/public/images/large/TConstruct/heavyPlate/6.png deleted file mode 100644 index 4262da7863..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/7.png b/front/public/images/large/TConstruct/heavyPlate/7.png deleted file mode 100644 index f17f05a0e0..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/8.png b/front/public/images/large/TConstruct/heavyPlate/8.png deleted file mode 100644 index cc9af0226b..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/heavyPlate/9.png b/front/public/images/large/TConstruct/heavyPlate/9.png deleted file mode 100644 index 04d2021a61..0000000000 Binary files a/front/public/images/large/TConstruct/heavyPlate/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/helmetWood/0.png b/front/public/images/large/TConstruct/helmetWood/0.png deleted file mode 100644 index 2574d63e7a..0000000000 Binary files a/front/public/images/large/TConstruct/helmetWood/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/0.png b/front/public/images/large/TConstruct/jerky/0.png deleted file mode 100644 index a891788f32..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/1.png b/front/public/images/large/TConstruct/jerky/1.png deleted file mode 100644 index 341af42e6c..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/2.png b/front/public/images/large/TConstruct/jerky/2.png deleted file mode 100644 index e37de52d57..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/3.png b/front/public/images/large/TConstruct/jerky/3.png deleted file mode 100644 index e5da41f68d..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/4.png b/front/public/images/large/TConstruct/jerky/4.png deleted file mode 100644 index 5ebb5e068c..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/5.png b/front/public/images/large/TConstruct/jerky/5.png deleted file mode 100644 index 09669cbfde..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/6.png b/front/public/images/large/TConstruct/jerky/6.png deleted file mode 100644 index a4cb757b62..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/jerky/7.png b/front/public/images/large/TConstruct/jerky/7.png deleted file mode 100644 index 125cd5bd67..0000000000 Binary files a/front/public/images/large/TConstruct/jerky/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knapsack/0.png b/front/public/images/large/TConstruct/knapsack/0.png deleted file mode 100644 index 4d07c593b5..0000000000 Binary files a/front/public/images/large/TConstruct/knapsack/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/0.png b/front/public/images/large/TConstruct/knifeBlade/0.png deleted file mode 100644 index b882c861fa..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/1.png b/front/public/images/large/TConstruct/knifeBlade/1.png deleted file mode 100644 index 7e96f3a4e4..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/10.png b/front/public/images/large/TConstruct/knifeBlade/10.png deleted file mode 100644 index af989b11c2..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/11.png b/front/public/images/large/TConstruct/knifeBlade/11.png deleted file mode 100644 index ceb8185f24..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/12.png b/front/public/images/large/TConstruct/knifeBlade/12.png deleted file mode 100644 index cae5ed47d4..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/13.png b/front/public/images/large/TConstruct/knifeBlade/13.png deleted file mode 100644 index 827581bd0b..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/14.png b/front/public/images/large/TConstruct/knifeBlade/14.png deleted file mode 100644 index cd4e000e39..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/15.png b/front/public/images/large/TConstruct/knifeBlade/15.png deleted file mode 100644 index da3c3fbe0a..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/16.png b/front/public/images/large/TConstruct/knifeBlade/16.png deleted file mode 100644 index 392243cb0c..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/17.png b/front/public/images/large/TConstruct/knifeBlade/17.png deleted file mode 100644 index 721c3e2918..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/18.png b/front/public/images/large/TConstruct/knifeBlade/18.png deleted file mode 100644 index 031d3ff70f..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/2.png b/front/public/images/large/TConstruct/knifeBlade/2.png deleted file mode 100644 index c448dee0fb..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/3.png b/front/public/images/large/TConstruct/knifeBlade/3.png deleted file mode 100644 index 8353ca11da..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/314.png b/front/public/images/large/TConstruct/knifeBlade/314.png deleted file mode 100644 index a8f75dfbea..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/4.png b/front/public/images/large/TConstruct/knifeBlade/4.png deleted file mode 100644 index 247904a37a..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/5.png b/front/public/images/large/TConstruct/knifeBlade/5.png deleted file mode 100644 index bf59c4e843..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/6.png b/front/public/images/large/TConstruct/knifeBlade/6.png deleted file mode 100644 index 418ad0e468..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/7.png b/front/public/images/large/TConstruct/knifeBlade/7.png deleted file mode 100644 index 89baf883d9..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/8.png b/front/public/images/large/TConstruct/knifeBlade/8.png deleted file mode 100644 index 002bb6df32..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/knifeBlade/9.png b/front/public/images/large/TConstruct/knifeBlade/9.png deleted file mode 100644 index f6f6ea8d26..0000000000 Binary files a/front/public/images/large/TConstruct/knifeBlade/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/0.png b/front/public/images/large/TConstruct/largeSwordBlade/0.png deleted file mode 100644 index 434795fe6b..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/1.png b/front/public/images/large/TConstruct/largeSwordBlade/1.png deleted file mode 100644 index 920e11944a..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/10.png b/front/public/images/large/TConstruct/largeSwordBlade/10.png deleted file mode 100644 index f003e7c624..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/11.png b/front/public/images/large/TConstruct/largeSwordBlade/11.png deleted file mode 100644 index 8f5cfcedb6..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/12.png b/front/public/images/large/TConstruct/largeSwordBlade/12.png deleted file mode 100644 index 627505a55b..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/13.png b/front/public/images/large/TConstruct/largeSwordBlade/13.png deleted file mode 100644 index cdea3a96af..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/14.png b/front/public/images/large/TConstruct/largeSwordBlade/14.png deleted file mode 100644 index f882e9e0ff..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/15.png b/front/public/images/large/TConstruct/largeSwordBlade/15.png deleted file mode 100644 index 8418d6b3eb..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/16.png b/front/public/images/large/TConstruct/largeSwordBlade/16.png deleted file mode 100644 index a9745187ca..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/17.png b/front/public/images/large/TConstruct/largeSwordBlade/17.png deleted file mode 100644 index 5664d937d4..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/18.png b/front/public/images/large/TConstruct/largeSwordBlade/18.png deleted file mode 100644 index 191e025b8a..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/2.png b/front/public/images/large/TConstruct/largeSwordBlade/2.png deleted file mode 100644 index fe7517f1ad..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/3.png b/front/public/images/large/TConstruct/largeSwordBlade/3.png deleted file mode 100644 index d86d1dbb1f..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/314.png b/front/public/images/large/TConstruct/largeSwordBlade/314.png deleted file mode 100644 index 1f684a7574..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/4.png b/front/public/images/large/TConstruct/largeSwordBlade/4.png deleted file mode 100644 index c9d35b0265..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/5.png b/front/public/images/large/TConstruct/largeSwordBlade/5.png deleted file mode 100644 index da77835f33..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/6.png b/front/public/images/large/TConstruct/largeSwordBlade/6.png deleted file mode 100644 index 677828cdac..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/7.png b/front/public/images/large/TConstruct/largeSwordBlade/7.png deleted file mode 100644 index 584299cc0a..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/8.png b/front/public/images/large/TConstruct/largeSwordBlade/8.png deleted file mode 100644 index 1b0c8e1808..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/largeSwordBlade/9.png b/front/public/images/large/TConstruct/largeSwordBlade/9.png deleted file mode 100644 index ed5849cb89..0000000000 Binary files a/front/public/images/large/TConstruct/largeSwordBlade/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/leggingsWood/0.png b/front/public/images/large/TConstruct/leggingsWood/0.png deleted file mode 100644 index 7e1a1bf304..0000000000 Binary files a/front/public/images/large/TConstruct/leggingsWood/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/liquid.blood/0.png b/front/public/images/large/TConstruct/liquid.blood/0.png deleted file mode 100644 index ba2f530a07..0000000000 Binary files a/front/public/images/large/TConstruct/liquid.blood/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/liquid.glue/0.png b/front/public/images/large/TConstruct/liquid.glue/0.png deleted file mode 100644 index d31cfe885c..0000000000 Binary files a/front/public/images/large/TConstruct/liquid.glue/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/liquid.slime/0.png b/front/public/images/large/TConstruct/liquid.slime/0.png deleted file mode 100644 index e6f613f1da..0000000000 Binary files a/front/public/images/large/TConstruct/liquid.slime/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/longsword/0.png b/front/public/images/large/TConstruct/longsword/0.png deleted file mode 100644 index 163cbe6d2f..0000000000 Binary files a/front/public/images/large/TConstruct/longsword/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/lumberaxe/0.png b/front/public/images/large/TConstruct/lumberaxe/0.png deleted file mode 100644 index f0be491950..0000000000 Binary files a/front/public/images/large/TConstruct/lumberaxe/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/manualBook/0.png b/front/public/images/large/TConstruct/manualBook/0.png deleted file mode 100644 index 3d5f020bc2..0000000000 Binary files a/front/public/images/large/TConstruct/manualBook/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/manualBook/1.png b/front/public/images/large/TConstruct/manualBook/1.png deleted file mode 100644 index 4fc7de732c..0000000000 Binary files a/front/public/images/large/TConstruct/manualBook/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/manualBook/2.png b/front/public/images/large/TConstruct/manualBook/2.png deleted file mode 100644 index 56189d29d6..0000000000 Binary files a/front/public/images/large/TConstruct/manualBook/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/manualBook/3.png b/front/public/images/large/TConstruct/manualBook/3.png deleted file mode 100644 index 0eb02f16ad..0000000000 Binary files a/front/public/images/large/TConstruct/manualBook/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/manualBook/4.png b/front/public/images/large/TConstruct/manualBook/4.png deleted file mode 100644 index 74c854b4ac..0000000000 Binary files a/front/public/images/large/TConstruct/manualBook/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/0.png b/front/public/images/large/TConstruct/materials/0.png deleted file mode 100644 index be9833b1ab..0000000000 Binary files a/front/public/images/large/TConstruct/materials/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/1.png b/front/public/images/large/TConstruct/materials/1.png deleted file mode 100644 index 21950f7a56..0000000000 Binary files a/front/public/images/large/TConstruct/materials/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/10.png b/front/public/images/large/TConstruct/materials/10.png deleted file mode 100644 index 639df478a2..0000000000 Binary files a/front/public/images/large/TConstruct/materials/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/11.png b/front/public/images/large/TConstruct/materials/11.png deleted file mode 100644 index 8bcd25af13..0000000000 Binary files a/front/public/images/large/TConstruct/materials/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/12.png b/front/public/images/large/TConstruct/materials/12.png deleted file mode 100644 index abc737e992..0000000000 Binary files a/front/public/images/large/TConstruct/materials/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/13.png b/front/public/images/large/TConstruct/materials/13.png deleted file mode 100644 index fb5941f23d..0000000000 Binary files a/front/public/images/large/TConstruct/materials/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/14.png b/front/public/images/large/TConstruct/materials/14.png deleted file mode 100644 index 125d9de4a0..0000000000 Binary files a/front/public/images/large/TConstruct/materials/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/15.png b/front/public/images/large/TConstruct/materials/15.png deleted file mode 100644 index c8fad740ff..0000000000 Binary files a/front/public/images/large/TConstruct/materials/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/16.png b/front/public/images/large/TConstruct/materials/16.png deleted file mode 100644 index 057f40a5ac..0000000000 Binary files a/front/public/images/large/TConstruct/materials/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/17.png b/front/public/images/large/TConstruct/materials/17.png deleted file mode 100644 index 6bd6b02eef..0000000000 Binary files a/front/public/images/large/TConstruct/materials/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/18.png b/front/public/images/large/TConstruct/materials/18.png deleted file mode 100644 index a61afc4577..0000000000 Binary files a/front/public/images/large/TConstruct/materials/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/19.png b/front/public/images/large/TConstruct/materials/19.png deleted file mode 100644 index 7328610afb..0000000000 Binary files a/front/public/images/large/TConstruct/materials/19.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/2.png b/front/public/images/large/TConstruct/materials/2.png deleted file mode 100644 index 9b946196da..0000000000 Binary files a/front/public/images/large/TConstruct/materials/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/20.png b/front/public/images/large/TConstruct/materials/20.png deleted file mode 100644 index 6d0c7cbfbc..0000000000 Binary files a/front/public/images/large/TConstruct/materials/20.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/21.png b/front/public/images/large/TConstruct/materials/21.png deleted file mode 100644 index 64caad6cea..0000000000 Binary files a/front/public/images/large/TConstruct/materials/21.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/22.png b/front/public/images/large/TConstruct/materials/22.png deleted file mode 100644 index 99120321c5..0000000000 Binary files a/front/public/images/large/TConstruct/materials/22.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/24.png b/front/public/images/large/TConstruct/materials/24.png deleted file mode 100644 index c95d4d5f6a..0000000000 Binary files a/front/public/images/large/TConstruct/materials/24.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/25.png b/front/public/images/large/TConstruct/materials/25.png deleted file mode 100644 index a251bb5d3c..0000000000 Binary files a/front/public/images/large/TConstruct/materials/25.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/26.png b/front/public/images/large/TConstruct/materials/26.png deleted file mode 100644 index 78c75b67e7..0000000000 Binary files a/front/public/images/large/TConstruct/materials/26.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/27.png b/front/public/images/large/TConstruct/materials/27.png deleted file mode 100644 index 352b5b8266..0000000000 Binary files a/front/public/images/large/TConstruct/materials/27.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/28.png b/front/public/images/large/TConstruct/materials/28.png deleted file mode 100644 index 136de57287..0000000000 Binary files a/front/public/images/large/TConstruct/materials/28.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/29.png b/front/public/images/large/TConstruct/materials/29.png deleted file mode 100644 index 0b4546ef44..0000000000 Binary files a/front/public/images/large/TConstruct/materials/29.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/3.png b/front/public/images/large/TConstruct/materials/3.png deleted file mode 100644 index b9981757d5..0000000000 Binary files a/front/public/images/large/TConstruct/materials/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/30.png b/front/public/images/large/TConstruct/materials/30.png deleted file mode 100644 index 4c626290fc..0000000000 Binary files a/front/public/images/large/TConstruct/materials/30.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/31.png b/front/public/images/large/TConstruct/materials/31.png deleted file mode 100644 index ba2ff32669..0000000000 Binary files a/front/public/images/large/TConstruct/materials/31.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/32.png b/front/public/images/large/TConstruct/materials/32.png deleted file mode 100644 index bd9d64e9bb..0000000000 Binary files a/front/public/images/large/TConstruct/materials/32.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/33.png b/front/public/images/large/TConstruct/materials/33.png deleted file mode 100644 index a346d13dd5..0000000000 Binary files a/front/public/images/large/TConstruct/materials/33.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/34.png b/front/public/images/large/TConstruct/materials/34.png deleted file mode 100644 index 8931685bf9..0000000000 Binary files a/front/public/images/large/TConstruct/materials/34.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/35.png b/front/public/images/large/TConstruct/materials/35.png deleted file mode 100644 index 290f9abc3e..0000000000 Binary files a/front/public/images/large/TConstruct/materials/35.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/36.png b/front/public/images/large/TConstruct/materials/36.png deleted file mode 100644 index ee3185c3c1..0000000000 Binary files a/front/public/images/large/TConstruct/materials/36.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/37.png b/front/public/images/large/TConstruct/materials/37.png deleted file mode 100644 index 5f4689e3fd..0000000000 Binary files a/front/public/images/large/TConstruct/materials/37.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/38.png b/front/public/images/large/TConstruct/materials/38.png deleted file mode 100644 index fbec3699e3..0000000000 Binary files a/front/public/images/large/TConstruct/materials/38.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/39.png b/front/public/images/large/TConstruct/materials/39.png deleted file mode 100644 index 6b7102685b..0000000000 Binary files a/front/public/images/large/TConstruct/materials/39.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/4.png b/front/public/images/large/TConstruct/materials/4.png deleted file mode 100644 index ba53ceb1ee..0000000000 Binary files a/front/public/images/large/TConstruct/materials/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/40.png b/front/public/images/large/TConstruct/materials/40.png deleted file mode 100644 index fcc4a6705a..0000000000 Binary files a/front/public/images/large/TConstruct/materials/40.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/41.png b/front/public/images/large/TConstruct/materials/41.png deleted file mode 100644 index cdc757d3d6..0000000000 Binary files a/front/public/images/large/TConstruct/materials/41.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/42.png b/front/public/images/large/TConstruct/materials/42.png deleted file mode 100644 index 5737eaf53b..0000000000 Binary files a/front/public/images/large/TConstruct/materials/42.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/43.png b/front/public/images/large/TConstruct/materials/43.png deleted file mode 100644 index 595127adab..0000000000 Binary files a/front/public/images/large/TConstruct/materials/43.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/5.png b/front/public/images/large/TConstruct/materials/5.png deleted file mode 100644 index f0728196b5..0000000000 Binary files a/front/public/images/large/TConstruct/materials/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/6.png b/front/public/images/large/TConstruct/materials/6.png deleted file mode 100644 index 0168e21eda..0000000000 Binary files a/front/public/images/large/TConstruct/materials/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/7.png b/front/public/images/large/TConstruct/materials/7.png deleted file mode 100644 index ce8556e7c1..0000000000 Binary files a/front/public/images/large/TConstruct/materials/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/8.png b/front/public/images/large/TConstruct/materials/8.png deleted file mode 100644 index 323b70e02f..0000000000 Binary files a/front/public/images/large/TConstruct/materials/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/materials/9.png b/front/public/images/large/TConstruct/materials/9.png deleted file mode 100644 index 81c0ee4873..0000000000 Binary files a/front/public/images/large/TConstruct/materials/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/mattock/0.png b/front/public/images/large/TConstruct/mattock/0.png deleted file mode 100644 index 61da087bd8..0000000000 Binary files a/front/public/images/large/TConstruct/mattock/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/0.png b/front/public/images/large/TConstruct/metalPattern/0.png deleted file mode 100644 index e7d381be70..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/1.png b/front/public/images/large/TConstruct/metalPattern/1.png deleted file mode 100644 index c69d7a4c2e..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/10.png b/front/public/images/large/TConstruct/metalPattern/10.png deleted file mode 100644 index 00585174c2..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/11.png b/front/public/images/large/TConstruct/metalPattern/11.png deleted file mode 100644 index e7b8ccab94..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/12.png b/front/public/images/large/TConstruct/metalPattern/12.png deleted file mode 100644 index ea67a884e3..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/13.png b/front/public/images/large/TConstruct/metalPattern/13.png deleted file mode 100644 index 112353bae5..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/14.png b/front/public/images/large/TConstruct/metalPattern/14.png deleted file mode 100644 index 6ebf694c46..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/15.png b/front/public/images/large/TConstruct/metalPattern/15.png deleted file mode 100644 index 44f8d3cc33..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/16.png b/front/public/images/large/TConstruct/metalPattern/16.png deleted file mode 100644 index a3005e61e1..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/17.png b/front/public/images/large/TConstruct/metalPattern/17.png deleted file mode 100644 index c497018fc9..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/18.png b/front/public/images/large/TConstruct/metalPattern/18.png deleted file mode 100644 index a85bd8925c..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/19.png b/front/public/images/large/TConstruct/metalPattern/19.png deleted file mode 100644 index 325013cc06..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/19.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/2.png b/front/public/images/large/TConstruct/metalPattern/2.png deleted file mode 100644 index c9e22f2303..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/20.png b/front/public/images/large/TConstruct/metalPattern/20.png deleted file mode 100644 index 6cd78ce943..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/20.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/21.png b/front/public/images/large/TConstruct/metalPattern/21.png deleted file mode 100644 index 3477c5b5df..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/21.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/22.png b/front/public/images/large/TConstruct/metalPattern/22.png deleted file mode 100644 index e8e5805b57..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/22.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/25.png b/front/public/images/large/TConstruct/metalPattern/25.png deleted file mode 100644 index 5728591df4..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/25.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/26.png b/front/public/images/large/TConstruct/metalPattern/26.png deleted file mode 100644 index e267e6a626..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/26.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/27.png b/front/public/images/large/TConstruct/metalPattern/27.png deleted file mode 100644 index ad3d957458..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/27.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/3.png b/front/public/images/large/TConstruct/metalPattern/3.png deleted file mode 100644 index 06284407fb..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/4.png b/front/public/images/large/TConstruct/metalPattern/4.png deleted file mode 100644 index 3b6c451bf1..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/5.png b/front/public/images/large/TConstruct/metalPattern/5.png deleted file mode 100644 index 77f2dcad7a..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/6.png b/front/public/images/large/TConstruct/metalPattern/6.png deleted file mode 100644 index 6107ca6262..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/7.png b/front/public/images/large/TConstruct/metalPattern/7.png deleted file mode 100644 index 79354480f8..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/8.png b/front/public/images/large/TConstruct/metalPattern/8.png deleted file mode 100644 index a7638993d3..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/metalPattern/9.png b/front/public/images/large/TConstruct/metalPattern/9.png deleted file mode 100644 index e4cc82268a..0000000000 Binary files a/front/public/images/large/TConstruct/metalPattern/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/molten.emerald/0.png b/front/public/images/large/TConstruct/molten.emerald/0.png deleted file mode 100644 index 06935bd900..0000000000 Binary files a/front/public/images/large/TConstruct/molten.emerald/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/molten.quartz/0.png b/front/public/images/large/TConstruct/molten.quartz/0.png deleted file mode 100644 index 5b302b14a8..0000000000 Binary files a/front/public/images/large/TConstruct/molten.quartz/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/molten.stone/0.png b/front/public/images/large/TConstruct/molten.stone/0.png deleted file mode 100644 index e32b511c3b..0000000000 Binary files a/front/public/images/large/TConstruct/molten.stone/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ore.berries.one/10.png b/front/public/images/large/TConstruct/ore.berries.one/10.png deleted file mode 100644 index c27fd11ba6..0000000000 Binary files a/front/public/images/large/TConstruct/ore.berries.one/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ore.berries.one/11.png b/front/public/images/large/TConstruct/ore.berries.one/11.png deleted file mode 100644 index 682ab1518c..0000000000 Binary files a/front/public/images/large/TConstruct/ore.berries.one/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ore.berries.one/8.png b/front/public/images/large/TConstruct/ore.berries.one/8.png deleted file mode 100644 index 34e171758c..0000000000 Binary files a/front/public/images/large/TConstruct/ore.berries.one/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ore.berries.one/9.png b/front/public/images/large/TConstruct/ore.berries.one/9.png deleted file mode 100644 index f03e27b3a3..0000000000 Binary files a/front/public/images/large/TConstruct/ore.berries.one/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ore.berries.two/8.png b/front/public/images/large/TConstruct/ore.berries.two/8.png deleted file mode 100644 index 2ec07781f4..0000000000 Binary files a/front/public/images/large/TConstruct/ore.berries.two/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/ore.berries.two/9.png b/front/public/images/large/TConstruct/ore.berries.two/9.png deleted file mode 100644 index 1f87ec5db6..0000000000 Binary files a/front/public/images/large/TConstruct/ore.berries.two/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/oreBerries/0.png b/front/public/images/large/TConstruct/oreBerries/0.png deleted file mode 100644 index d0c0f6f7f9..0000000000 Binary files a/front/public/images/large/TConstruct/oreBerries/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/oreBerries/1.png b/front/public/images/large/TConstruct/oreBerries/1.png deleted file mode 100644 index 430c1b3d92..0000000000 Binary files a/front/public/images/large/TConstruct/oreBerries/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/oreBerries/2.png b/front/public/images/large/TConstruct/oreBerries/2.png deleted file mode 100644 index 0fcebcc4b0..0000000000 Binary files a/front/public/images/large/TConstruct/oreBerries/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/oreBerries/3.png b/front/public/images/large/TConstruct/oreBerries/3.png deleted file mode 100644 index c070a0c9e2..0000000000 Binary files a/front/public/images/large/TConstruct/oreBerries/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/oreBerries/4.png b/front/public/images/large/TConstruct/oreBerries/4.png deleted file mode 100644 index 681a653e17..0000000000 Binary files a/front/public/images/large/TConstruct/oreBerries/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/oreBerries/5.png b/front/public/images/large/TConstruct/oreBerries/5.png deleted file mode 100644 index f6b20ac207..0000000000 Binary files a/front/public/images/large/TConstruct/oreBerries/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxe/0.png b/front/public/images/large/TConstruct/pickaxe/0.png deleted file mode 100644 index d46db77f3e..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/0.png b/front/public/images/large/TConstruct/pickaxeHead/0.png deleted file mode 100644 index 173026ff32..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/1.png b/front/public/images/large/TConstruct/pickaxeHead/1.png deleted file mode 100644 index f555fc83eb..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/10.png b/front/public/images/large/TConstruct/pickaxeHead/10.png deleted file mode 100644 index c6d2c80b08..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/11.png b/front/public/images/large/TConstruct/pickaxeHead/11.png deleted file mode 100644 index 1973e97df2..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/12.png b/front/public/images/large/TConstruct/pickaxeHead/12.png deleted file mode 100644 index c7aa28b8b8..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/13.png b/front/public/images/large/TConstruct/pickaxeHead/13.png deleted file mode 100644 index 0210482330..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/14.png b/front/public/images/large/TConstruct/pickaxeHead/14.png deleted file mode 100644 index 3eac4c22b9..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/15.png b/front/public/images/large/TConstruct/pickaxeHead/15.png deleted file mode 100644 index 06f36e29a3..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/16.png b/front/public/images/large/TConstruct/pickaxeHead/16.png deleted file mode 100644 index 01afd425a5..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/17.png b/front/public/images/large/TConstruct/pickaxeHead/17.png deleted file mode 100644 index dd99ea25e7..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/18.png b/front/public/images/large/TConstruct/pickaxeHead/18.png deleted file mode 100644 index 468e00cf28..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/2.png b/front/public/images/large/TConstruct/pickaxeHead/2.png deleted file mode 100644 index 5efa2fb574..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/3.png b/front/public/images/large/TConstruct/pickaxeHead/3.png deleted file mode 100644 index 221a122f70..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/314.png b/front/public/images/large/TConstruct/pickaxeHead/314.png deleted file mode 100644 index 92088abaea..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/4.png b/front/public/images/large/TConstruct/pickaxeHead/4.png deleted file mode 100644 index aa23ab6790..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/5.png b/front/public/images/large/TConstruct/pickaxeHead/5.png deleted file mode 100644 index d5473de91a..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/6.png b/front/public/images/large/TConstruct/pickaxeHead/6.png deleted file mode 100644 index d69cfff4d0..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/7.png b/front/public/images/large/TConstruct/pickaxeHead/7.png deleted file mode 100644 index e55800c97b..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/8.png b/front/public/images/large/TConstruct/pickaxeHead/8.png deleted file mode 100644 index 76e10aaa93..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/pickaxeHead/9.png b/front/public/images/large/TConstruct/pickaxeHead/9.png deleted file mode 100644 index 8944b42a77..0000000000 Binary files a/front/public/images/large/TConstruct/pickaxeHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/potionLauncher/0.png b/front/public/images/large/TConstruct/potionLauncher/0.png deleted file mode 100644 index fd81eeb71b..0000000000 Binary files a/front/public/images/large/TConstruct/potionLauncher/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/rail.wood/0.png b/front/public/images/large/TConstruct/rail.wood/0.png deleted file mode 100644 index 781bfd277c..0000000000 Binary files a/front/public/images/large/TConstruct/rail.wood/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/rapier/0.png b/front/public/images/large/TConstruct/rapier/0.png deleted file mode 100644 index fed7e31083..0000000000 Binary files a/front/public/images/large/TConstruct/rapier/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scythe/0.png b/front/public/images/large/TConstruct/scythe/0.png deleted file mode 100644 index 8057321a09..0000000000 Binary files a/front/public/images/large/TConstruct/scythe/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/0.png b/front/public/images/large/TConstruct/scytheBlade/0.png deleted file mode 100644 index 227f1e5832..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/1.png b/front/public/images/large/TConstruct/scytheBlade/1.png deleted file mode 100644 index 11cec2051e..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/10.png b/front/public/images/large/TConstruct/scytheBlade/10.png deleted file mode 100644 index cab8fe64af..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/11.png b/front/public/images/large/TConstruct/scytheBlade/11.png deleted file mode 100644 index e1da5f6433..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/12.png b/front/public/images/large/TConstruct/scytheBlade/12.png deleted file mode 100644 index b634208d68..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/13.png b/front/public/images/large/TConstruct/scytheBlade/13.png deleted file mode 100644 index 8f7231f35d..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/14.png b/front/public/images/large/TConstruct/scytheBlade/14.png deleted file mode 100644 index 4e1643e74f..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/15.png b/front/public/images/large/TConstruct/scytheBlade/15.png deleted file mode 100644 index 32617f64b9..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/16.png b/front/public/images/large/TConstruct/scytheBlade/16.png deleted file mode 100644 index e2a6e743d8..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/17.png b/front/public/images/large/TConstruct/scytheBlade/17.png deleted file mode 100644 index b31c03e683..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/18.png b/front/public/images/large/TConstruct/scytheBlade/18.png deleted file mode 100644 index 7e789f1ad0..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/2.png b/front/public/images/large/TConstruct/scytheBlade/2.png deleted file mode 100644 index 6d6fb6d739..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/3.png b/front/public/images/large/TConstruct/scytheBlade/3.png deleted file mode 100644 index f51bdfa19a..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/314.png b/front/public/images/large/TConstruct/scytheBlade/314.png deleted file mode 100644 index 2e03c10e71..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/4.png b/front/public/images/large/TConstruct/scytheBlade/4.png deleted file mode 100644 index 472983e878..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/5.png b/front/public/images/large/TConstruct/scytheBlade/5.png deleted file mode 100644 index 0b4b12d64b..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/6.png b/front/public/images/large/TConstruct/scytheBlade/6.png deleted file mode 100644 index 34109be686..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/7.png b/front/public/images/large/TConstruct/scytheBlade/7.png deleted file mode 100644 index c709e4faaa..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/8.png b/front/public/images/large/TConstruct/scytheBlade/8.png deleted file mode 100644 index 5904f64134..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/scytheBlade/9.png b/front/public/images/large/TConstruct/scytheBlade/9.png deleted file mode 100644 index 642ea14ebc..0000000000 Binary files a/front/public/images/large/TConstruct/scytheBlade/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovel/0.png b/front/public/images/large/TConstruct/shovel/0.png deleted file mode 100644 index 547b7d331a..0000000000 Binary files a/front/public/images/large/TConstruct/shovel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/0.png b/front/public/images/large/TConstruct/shovelHead/0.png deleted file mode 100644 index 3a8d8056b6..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/1.png b/front/public/images/large/TConstruct/shovelHead/1.png deleted file mode 100644 index 4293888e24..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/10.png b/front/public/images/large/TConstruct/shovelHead/10.png deleted file mode 100644 index 4cc003705c..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/11.png b/front/public/images/large/TConstruct/shovelHead/11.png deleted file mode 100644 index ee13a9157b..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/12.png b/front/public/images/large/TConstruct/shovelHead/12.png deleted file mode 100644 index 4e8edf9805..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/13.png b/front/public/images/large/TConstruct/shovelHead/13.png deleted file mode 100644 index 93e0629a5b..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/14.png b/front/public/images/large/TConstruct/shovelHead/14.png deleted file mode 100644 index 872098ef7b..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/15.png b/front/public/images/large/TConstruct/shovelHead/15.png deleted file mode 100644 index 48a76bb7dd..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/16.png b/front/public/images/large/TConstruct/shovelHead/16.png deleted file mode 100644 index 4a1f67c093..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/17.png b/front/public/images/large/TConstruct/shovelHead/17.png deleted file mode 100644 index cdf28a049c..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/18.png b/front/public/images/large/TConstruct/shovelHead/18.png deleted file mode 100644 index 00c7bf97dc..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/2.png b/front/public/images/large/TConstruct/shovelHead/2.png deleted file mode 100644 index bd28665433..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/3.png b/front/public/images/large/TConstruct/shovelHead/3.png deleted file mode 100644 index 9930650020..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/314.png b/front/public/images/large/TConstruct/shovelHead/314.png deleted file mode 100644 index d2213168cc..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/4.png b/front/public/images/large/TConstruct/shovelHead/4.png deleted file mode 100644 index 4b8257dcba..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/5.png b/front/public/images/large/TConstruct/shovelHead/5.png deleted file mode 100644 index 36e48f69c5..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/6.png b/front/public/images/large/TConstruct/shovelHead/6.png deleted file mode 100644 index f2ec14774d..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/7.png b/front/public/images/large/TConstruct/shovelHead/7.png deleted file mode 100644 index 130853ab70..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/8.png b/front/public/images/large/TConstruct/shovelHead/8.png deleted file mode 100644 index 47e09e591a..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/shovelHead/9.png b/front/public/images/large/TConstruct/shovelHead/9.png deleted file mode 100644 index 2566cfed0a..0000000000 Binary files a/front/public/images/large/TConstruct/shovelHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/0.png b/front/public/images/large/TConstruct/signHead/0.png deleted file mode 100644 index e6075c8db8..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/1.png b/front/public/images/large/TConstruct/signHead/1.png deleted file mode 100644 index d5c8b21df6..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/10.png b/front/public/images/large/TConstruct/signHead/10.png deleted file mode 100644 index 87f9e2420e..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/11.png b/front/public/images/large/TConstruct/signHead/11.png deleted file mode 100644 index ac022c7a22..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/12.png b/front/public/images/large/TConstruct/signHead/12.png deleted file mode 100644 index c0b6066a78..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/13.png b/front/public/images/large/TConstruct/signHead/13.png deleted file mode 100644 index bd66a54216..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/14.png b/front/public/images/large/TConstruct/signHead/14.png deleted file mode 100644 index a415065a43..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/15.png b/front/public/images/large/TConstruct/signHead/15.png deleted file mode 100644 index b1497b7ea0..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/16.png b/front/public/images/large/TConstruct/signHead/16.png deleted file mode 100644 index 87792a6c6c..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/17.png b/front/public/images/large/TConstruct/signHead/17.png deleted file mode 100644 index fd94aaea99..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/18.png b/front/public/images/large/TConstruct/signHead/18.png deleted file mode 100644 index b7082c77a5..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/2.png b/front/public/images/large/TConstruct/signHead/2.png deleted file mode 100644 index ba265d0b17..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/3.png b/front/public/images/large/TConstruct/signHead/3.png deleted file mode 100644 index d20078aabb..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/314.png b/front/public/images/large/TConstruct/signHead/314.png deleted file mode 100644 index a071008a4b..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/4.png b/front/public/images/large/TConstruct/signHead/4.png deleted file mode 100644 index 15aa501299..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/5.png b/front/public/images/large/TConstruct/signHead/5.png deleted file mode 100644 index 103acf3af8..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/6.png b/front/public/images/large/TConstruct/signHead/6.png deleted file mode 100644 index 5c3c4e954f..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/7.png b/front/public/images/large/TConstruct/signHead/7.png deleted file mode 100644 index 2e7911bf60..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/8.png b/front/public/images/large/TConstruct/signHead/8.png deleted file mode 100644 index accb1d5351..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/signHead/9.png b/front/public/images/large/TConstruct/signHead/9.png deleted file mode 100644 index 4e6cd3a5fb..0000000000 Binary files a/front/public/images/large/TConstruct/signHead/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.channel/0.png b/front/public/images/large/TConstruct/slime.channel/0.png deleted file mode 100644 index 8634108353..0000000000 Binary files a/front/public/images/large/TConstruct/slime.channel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.gel/0.png b/front/public/images/large/TConstruct/slime.gel/0.png deleted file mode 100644 index 25ae58343b..0000000000 Binary files a/front/public/images/large/TConstruct/slime.gel/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.gel/1.png b/front/public/images/large/TConstruct/slime.gel/1.png deleted file mode 100644 index ef4b07fe2f..0000000000 Binary files a/front/public/images/large/TConstruct/slime.gel/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.gel/2.png b/front/public/images/large/TConstruct/slime.gel/2.png deleted file mode 100644 index 7b792f165e..0000000000 Binary files a/front/public/images/large/TConstruct/slime.gel/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.grass.tall/0.png b/front/public/images/large/TConstruct/slime.grass.tall/0.png deleted file mode 100644 index 2abde12c7a..0000000000 Binary files a/front/public/images/large/TConstruct/slime.grass.tall/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.grass/0.png b/front/public/images/large/TConstruct/slime.grass/0.png deleted file mode 100644 index 4e8c5ae924..0000000000 Binary files a/front/public/images/large/TConstruct/slime.grass/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.leaves/0.png b/front/public/images/large/TConstruct/slime.leaves/0.png deleted file mode 100644 index 0e3ab3b284..0000000000 Binary files a/front/public/images/large/TConstruct/slime.leaves/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.pad/0.png b/front/public/images/large/TConstruct/slime.pad/0.png deleted file mode 100644 index 5aa5f886b5..0000000000 Binary files a/front/public/images/large/TConstruct/slime.pad/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime.sapling/0.png b/front/public/images/large/TConstruct/slime.sapling/0.png deleted file mode 100644 index 255bf5ff99..0000000000 Binary files a/front/public/images/large/TConstruct/slime.sapling/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slime_boots/0.png b/front/public/images/large/TConstruct/slime_boots/0.png deleted file mode 100644 index ef799bdcb5..0000000000 Binary files a/front/public/images/large/TConstruct/slime_boots/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/slimesling/0.png b/front/public/images/large/TConstruct/slimesling/0.png deleted file mode 100644 index b422d0e8ef..0000000000 Binary files a/front/public/images/large/TConstruct/slimesling/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/strangeFood/0.png b/front/public/images/large/TConstruct/strangeFood/0.png deleted file mode 100644 index 5cc826215b..0000000000 Binary files a/front/public/images/large/TConstruct/strangeFood/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/strangeFood/1.png b/front/public/images/large/TConstruct/strangeFood/1.png deleted file mode 100644 index 4aa79f917f..0000000000 Binary files a/front/public/images/large/TConstruct/strangeFood/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/strangeFood/2.png b/front/public/images/large/TConstruct/strangeFood/2.png deleted file mode 100644 index ee28710911..0000000000 Binary files a/front/public/images/large/TConstruct/strangeFood/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/0.png b/front/public/images/large/TConstruct/swordBlade/0.png deleted file mode 100644 index ff0d94dac7..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/1.png b/front/public/images/large/TConstruct/swordBlade/1.png deleted file mode 100644 index 133687a361..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/10.png b/front/public/images/large/TConstruct/swordBlade/10.png deleted file mode 100644 index 2ae91a818c..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/11.png b/front/public/images/large/TConstruct/swordBlade/11.png deleted file mode 100644 index 585963c440..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/12.png b/front/public/images/large/TConstruct/swordBlade/12.png deleted file mode 100644 index 293e14ba42..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/13.png b/front/public/images/large/TConstruct/swordBlade/13.png deleted file mode 100644 index b6da89b077..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/14.png b/front/public/images/large/TConstruct/swordBlade/14.png deleted file mode 100644 index d9f92ecef3..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/15.png b/front/public/images/large/TConstruct/swordBlade/15.png deleted file mode 100644 index 33a72f9fb2..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/16.png b/front/public/images/large/TConstruct/swordBlade/16.png deleted file mode 100644 index 198b96537e..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/17.png b/front/public/images/large/TConstruct/swordBlade/17.png deleted file mode 100644 index 4183ff7f4d..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/18.png b/front/public/images/large/TConstruct/swordBlade/18.png deleted file mode 100644 index 6b090f586c..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/2.png b/front/public/images/large/TConstruct/swordBlade/2.png deleted file mode 100644 index 68ff763fa8..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/3.png b/front/public/images/large/TConstruct/swordBlade/3.png deleted file mode 100644 index 32c060884b..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/314.png b/front/public/images/large/TConstruct/swordBlade/314.png deleted file mode 100644 index 6cfe1f9405..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/4.png b/front/public/images/large/TConstruct/swordBlade/4.png deleted file mode 100644 index ceb82689b8..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/5.png b/front/public/images/large/TConstruct/swordBlade/5.png deleted file mode 100644 index 38a5176733..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/6.png b/front/public/images/large/TConstruct/swordBlade/6.png deleted file mode 100644 index c3491437a2..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/7.png b/front/public/images/large/TConstruct/swordBlade/7.png deleted file mode 100644 index 39bb0fdffc..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/8.png b/front/public/images/large/TConstruct/swordBlade/8.png deleted file mode 100644 index f83e24d11b..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/swordBlade/9.png b/front/public/images/large/TConstruct/swordBlade/9.png deleted file mode 100644 index d94622bd4d..0000000000 Binary files a/front/public/images/large/TConstruct/swordBlade/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/titleIcon/0.png b/front/public/images/large/TConstruct/titleIcon/0.png deleted file mode 100644 index e25be5e619..0000000000 Binary files a/front/public/images/large/TConstruct/titleIcon/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/titleIcon/1.png b/front/public/images/large/TConstruct/titleIcon/1.png deleted file mode 100644 index 3a2b6caa69..0000000000 Binary files a/front/public/images/large/TConstruct/titleIcon/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/0.png b/front/public/images/large/TConstruct/toolRod/0.png deleted file mode 100644 index ccc070844e..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/1.png b/front/public/images/large/TConstruct/toolRod/1.png deleted file mode 100644 index e071735203..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/10.png b/front/public/images/large/TConstruct/toolRod/10.png deleted file mode 100644 index cf2ca2b013..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/11.png b/front/public/images/large/TConstruct/toolRod/11.png deleted file mode 100644 index 18986096e5..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/12.png b/front/public/images/large/TConstruct/toolRod/12.png deleted file mode 100644 index 538d08d3c2..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/13.png b/front/public/images/large/TConstruct/toolRod/13.png deleted file mode 100644 index d744109186..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/14.png b/front/public/images/large/TConstruct/toolRod/14.png deleted file mode 100644 index dd103cee2e..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/15.png b/front/public/images/large/TConstruct/toolRod/15.png deleted file mode 100644 index 5bfa9b1499..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/16.png b/front/public/images/large/TConstruct/toolRod/16.png deleted file mode 100644 index 19c3875109..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/17.png b/front/public/images/large/TConstruct/toolRod/17.png deleted file mode 100644 index 9335b0055b..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/18.png b/front/public/images/large/TConstruct/toolRod/18.png deleted file mode 100644 index c751712fe9..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/2.png b/front/public/images/large/TConstruct/toolRod/2.png deleted file mode 100644 index 160134cff4..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/3.png b/front/public/images/large/TConstruct/toolRod/3.png deleted file mode 100644 index 5c0737533c..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/314.png b/front/public/images/large/TConstruct/toolRod/314.png deleted file mode 100644 index 0337896ea1..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/4.png b/front/public/images/large/TConstruct/toolRod/4.png deleted file mode 100644 index 0457500954..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/5.png b/front/public/images/large/TConstruct/toolRod/5.png deleted file mode 100644 index bd9984e9ac..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/6.png b/front/public/images/large/TConstruct/toolRod/6.png deleted file mode 100644 index 2ffef33222..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/7.png b/front/public/images/large/TConstruct/toolRod/7.png deleted file mode 100644 index d024119f09..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/8.png b/front/public/images/large/TConstruct/toolRod/8.png deleted file mode 100644 index de91053ac9..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolRod/9.png b/front/public/images/large/TConstruct/toolRod/9.png deleted file mode 100644 index eb045e423d..0000000000 Binary files a/front/public/images/large/TConstruct/toolRod/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolShard/1.png b/front/public/images/large/TConstruct/toolShard/1.png deleted file mode 100644 index 028e05a194..0000000000 Binary files a/front/public/images/large/TConstruct/toolShard/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolShard/17.png b/front/public/images/large/TConstruct/toolShard/17.png deleted file mode 100644 index 9bdf019f6f..0000000000 Binary files a/front/public/images/large/TConstruct/toolShard/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolShard/3.png b/front/public/images/large/TConstruct/toolShard/3.png deleted file mode 100644 index 787570c62d..0000000000 Binary files a/front/public/images/large/TConstruct/toolShard/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolShard/4.png b/front/public/images/large/TConstruct/toolShard/4.png deleted file mode 100644 index c1de966532..0000000000 Binary files a/front/public/images/large/TConstruct/toolShard/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolShard/6.png b/front/public/images/large/TConstruct/toolShard/6.png deleted file mode 100644 index 41940e6b74..0000000000 Binary files a/front/public/images/large/TConstruct/toolShard/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolShard/7.png b/front/public/images/large/TConstruct/toolShard/7.png deleted file mode 100644 index f235938b5b..0000000000 Binary files a/front/public/images/large/TConstruct/toolShard/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toolShard/8.png b/front/public/images/large/TConstruct/toolShard/8.png deleted file mode 100644 index 30a5082561..0000000000 Binary files a/front/public/images/large/TConstruct/toolShard/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/0.png b/front/public/images/large/TConstruct/toughBinding/0.png deleted file mode 100644 index b0cd237d4b..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/1.png b/front/public/images/large/TConstruct/toughBinding/1.png deleted file mode 100644 index 6212c3094a..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/10.png b/front/public/images/large/TConstruct/toughBinding/10.png deleted file mode 100644 index d71e02aeea..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/11.png b/front/public/images/large/TConstruct/toughBinding/11.png deleted file mode 100644 index f6274db34b..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/12.png b/front/public/images/large/TConstruct/toughBinding/12.png deleted file mode 100644 index 7b9db99dec..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/13.png b/front/public/images/large/TConstruct/toughBinding/13.png deleted file mode 100644 index 2c55724168..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/14.png b/front/public/images/large/TConstruct/toughBinding/14.png deleted file mode 100644 index c5a9061212..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/15.png b/front/public/images/large/TConstruct/toughBinding/15.png deleted file mode 100644 index e8e18c4c8f..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/16.png b/front/public/images/large/TConstruct/toughBinding/16.png deleted file mode 100644 index 4f48da7013..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/17.png b/front/public/images/large/TConstruct/toughBinding/17.png deleted file mode 100644 index 78743ff954..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/18.png b/front/public/images/large/TConstruct/toughBinding/18.png deleted file mode 100644 index 6c414f8173..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/2.png b/front/public/images/large/TConstruct/toughBinding/2.png deleted file mode 100644 index 813c70cec8..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/3.png b/front/public/images/large/TConstruct/toughBinding/3.png deleted file mode 100644 index 2bbfc0e880..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/314.png b/front/public/images/large/TConstruct/toughBinding/314.png deleted file mode 100644 index 17a0e8720e..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/4.png b/front/public/images/large/TConstruct/toughBinding/4.png deleted file mode 100644 index 32c0a00ec7..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/5.png b/front/public/images/large/TConstruct/toughBinding/5.png deleted file mode 100644 index c8bc6ebe88..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/6.png b/front/public/images/large/TConstruct/toughBinding/6.png deleted file mode 100644 index 3d4ebf56c1..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/7.png b/front/public/images/large/TConstruct/toughBinding/7.png deleted file mode 100644 index 3511da5106..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/8.png b/front/public/images/large/TConstruct/toughBinding/8.png deleted file mode 100644 index 8fd0ba10c8..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughBinding/9.png b/front/public/images/large/TConstruct/toughBinding/9.png deleted file mode 100644 index e34b3ae3a6..0000000000 Binary files a/front/public/images/large/TConstruct/toughBinding/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/0.png b/front/public/images/large/TConstruct/toughRod/0.png deleted file mode 100644 index 04cfcbd892..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/1.png b/front/public/images/large/TConstruct/toughRod/1.png deleted file mode 100644 index 449e67ad8d..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/10.png b/front/public/images/large/TConstruct/toughRod/10.png deleted file mode 100644 index 61e8ece1c0..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/11.png b/front/public/images/large/TConstruct/toughRod/11.png deleted file mode 100644 index 4a1871bc64..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/12.png b/front/public/images/large/TConstruct/toughRod/12.png deleted file mode 100644 index 6f6f27e9de..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/13.png b/front/public/images/large/TConstruct/toughRod/13.png deleted file mode 100644 index 795d0d3de9..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/14.png b/front/public/images/large/TConstruct/toughRod/14.png deleted file mode 100644 index 03c2a27fec..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/15.png b/front/public/images/large/TConstruct/toughRod/15.png deleted file mode 100644 index 6d26ee55a1..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/16.png b/front/public/images/large/TConstruct/toughRod/16.png deleted file mode 100644 index fb1269be9c..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/17.png b/front/public/images/large/TConstruct/toughRod/17.png deleted file mode 100644 index 5a02f71a3a..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/18.png b/front/public/images/large/TConstruct/toughRod/18.png deleted file mode 100644 index 6647f71ddc..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/2.png b/front/public/images/large/TConstruct/toughRod/2.png deleted file mode 100644 index b4db12493a..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/3.png b/front/public/images/large/TConstruct/toughRod/3.png deleted file mode 100644 index d7970d389c..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/314.png b/front/public/images/large/TConstruct/toughRod/314.png deleted file mode 100644 index 7d31c73be8..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/4.png b/front/public/images/large/TConstruct/toughRod/4.png deleted file mode 100644 index 172b561c49..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/5.png b/front/public/images/large/TConstruct/toughRod/5.png deleted file mode 100644 index 7ac73240d7..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/6.png b/front/public/images/large/TConstruct/toughRod/6.png deleted file mode 100644 index 577d90e6e3..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/7.png b/front/public/images/large/TConstruct/toughRod/7.png deleted file mode 100644 index 816aa1f0b2..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/8.png b/front/public/images/large/TConstruct/toughRod/8.png deleted file mode 100644 index 411f564ef5..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/toughRod/9.png b/front/public/images/large/TConstruct/toughRod/9.png deleted file mode 100644 index 26f05b423c..0000000000 Binary files a/front/public/images/large/TConstruct/toughRod/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/trap.barricade.birch/0.png b/front/public/images/large/TConstruct/trap.barricade.birch/0.png deleted file mode 100644 index 3e6b0189ef..0000000000 Binary files a/front/public/images/large/TConstruct/trap.barricade.birch/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/trap.barricade.jungle/0.png b/front/public/images/large/TConstruct/trap.barricade.jungle/0.png deleted file mode 100644 index c8544e380b..0000000000 Binary files a/front/public/images/large/TConstruct/trap.barricade.jungle/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/trap.barricade.oak/0.png b/front/public/images/large/TConstruct/trap.barricade.oak/0.png deleted file mode 100644 index 9b63f4891e..0000000000 Binary files a/front/public/images/large/TConstruct/trap.barricade.oak/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/trap.barricade.spruce/0.png b/front/public/images/large/TConstruct/trap.barricade.spruce/0.png deleted file mode 100644 index 101fc1228f..0000000000 Binary files a/front/public/images/large/TConstruct/trap.barricade.spruce/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/trap.punji/0.png b/front/public/images/large/TConstruct/trap.punji/0.png deleted file mode 100644 index c96960c306..0000000000 Binary files a/front/public/images/large/TConstruct/trap.punji/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/travelBelt/0.png b/front/public/images/large/TConstruct/travelBelt/0.png deleted file mode 100644 index 86a71d6d91..0000000000 Binary files a/front/public/images/large/TConstruct/travelBelt/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/travelBoots/0.png b/front/public/images/large/TConstruct/travelBoots/0.png deleted file mode 100644 index 1e504611fd..0000000000 Binary files a/front/public/images/large/TConstruct/travelBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/travelGlove/0.png b/front/public/images/large/TConstruct/travelGlove/0.png deleted file mode 100644 index de688255c6..0000000000 Binary files a/front/public/images/large/TConstruct/travelGlove/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/travelGoggles/0.png b/front/public/images/large/TConstruct/travelGoggles/0.png deleted file mode 100644 index 778f0e4e85..0000000000 Binary files a/front/public/images/large/TConstruct/travelGoggles/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/travelVest/0.png b/front/public/images/large/TConstruct/travelVest/0.png deleted file mode 100644 index 74649eeb0e..0000000000 Binary files a/front/public/images/large/TConstruct/travelVest/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/travelWings/0.png b/front/public/images/large/TConstruct/travelWings/0.png deleted file mode 100644 index d43c205ff8..0000000000 Binary files a/front/public/images/large/TConstruct/travelWings/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/0.png b/front/public/images/large/TConstruct/wideGuard/0.png deleted file mode 100644 index ba2960144d..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/0.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/1.png b/front/public/images/large/TConstruct/wideGuard/1.png deleted file mode 100644 index edbc676f57..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/10.png b/front/public/images/large/TConstruct/wideGuard/10.png deleted file mode 100644 index 90784033aa..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/11.png b/front/public/images/large/TConstruct/wideGuard/11.png deleted file mode 100644 index 98614021c4..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/12.png b/front/public/images/large/TConstruct/wideGuard/12.png deleted file mode 100644 index c2b1cd2a5a..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/13.png b/front/public/images/large/TConstruct/wideGuard/13.png deleted file mode 100644 index 587594240e..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/14.png b/front/public/images/large/TConstruct/wideGuard/14.png deleted file mode 100644 index 393b2e8ece..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/15.png b/front/public/images/large/TConstruct/wideGuard/15.png deleted file mode 100644 index fd70f8a688..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/16.png b/front/public/images/large/TConstruct/wideGuard/16.png deleted file mode 100644 index 94088c0dcd..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/17.png b/front/public/images/large/TConstruct/wideGuard/17.png deleted file mode 100644 index 051c8bdaeb..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/18.png b/front/public/images/large/TConstruct/wideGuard/18.png deleted file mode 100644 index 270b59d65c..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/2.png b/front/public/images/large/TConstruct/wideGuard/2.png deleted file mode 100644 index 09b483bc21..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/3.png b/front/public/images/large/TConstruct/wideGuard/3.png deleted file mode 100644 index 34b1e053eb..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/314.png b/front/public/images/large/TConstruct/wideGuard/314.png deleted file mode 100644 index f022bfc11a..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/314.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/4.png b/front/public/images/large/TConstruct/wideGuard/4.png deleted file mode 100644 index 24dd6a1192..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/5.png b/front/public/images/large/TConstruct/wideGuard/5.png deleted file mode 100644 index 3b9dd2831a..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/6.png b/front/public/images/large/TConstruct/wideGuard/6.png deleted file mode 100644 index d541390828..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/7.png b/front/public/images/large/TConstruct/wideGuard/7.png deleted file mode 100644 index 6ea185a76d..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/8.png b/front/public/images/large/TConstruct/wideGuard/8.png deleted file mode 100644 index 352d8904f9..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/wideGuard/9.png b/front/public/images/large/TConstruct/wideGuard/9.png deleted file mode 100644 index 40ae4ec0dc..0000000000 Binary files a/front/public/images/large/TConstruct/wideGuard/9.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/1.png b/front/public/images/large/TConstruct/woodPattern/1.png deleted file mode 100644 index 69f208eb88..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/1.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/10.png b/front/public/images/large/TConstruct/woodPattern/10.png deleted file mode 100644 index 728c63323d..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/10.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/11.png b/front/public/images/large/TConstruct/woodPattern/11.png deleted file mode 100644 index 226767d4fc..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/11.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/12.png b/front/public/images/large/TConstruct/woodPattern/12.png deleted file mode 100644 index 0030abe621..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/12.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/13.png b/front/public/images/large/TConstruct/woodPattern/13.png deleted file mode 100644 index 4e1d14d7a5..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/13.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/14.png b/front/public/images/large/TConstruct/woodPattern/14.png deleted file mode 100644 index 829a796370..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/14.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/15.png b/front/public/images/large/TConstruct/woodPattern/15.png deleted file mode 100644 index 4ac47a635c..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/15.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/16.png b/front/public/images/large/TConstruct/woodPattern/16.png deleted file mode 100644 index a9df52581d..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/16.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/17.png b/front/public/images/large/TConstruct/woodPattern/17.png deleted file mode 100644 index 283b19fd47..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/17.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/18.png b/front/public/images/large/TConstruct/woodPattern/18.png deleted file mode 100644 index 3ef3f4a071..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/18.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/19.png b/front/public/images/large/TConstruct/woodPattern/19.png deleted file mode 100644 index 0c9aebf4a6..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/19.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/2.png b/front/public/images/large/TConstruct/woodPattern/2.png deleted file mode 100644 index 9be8b25118..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/2.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/20.png b/front/public/images/large/TConstruct/woodPattern/20.png deleted file mode 100644 index b7dc3afd73..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/20.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/21.png b/front/public/images/large/TConstruct/woodPattern/21.png deleted file mode 100644 index d525a9094c..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/21.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/22.png b/front/public/images/large/TConstruct/woodPattern/22.png deleted file mode 100644 index ed3a5090f7..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/22.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/23.png b/front/public/images/large/TConstruct/woodPattern/23.png deleted file mode 100644 index c5df5a3818..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/23.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/24.png b/front/public/images/large/TConstruct/woodPattern/24.png deleted file mode 100644 index cce016a03c..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/24.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/25.png b/front/public/images/large/TConstruct/woodPattern/25.png deleted file mode 100644 index 796368782c..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/25.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/3.png b/front/public/images/large/TConstruct/woodPattern/3.png deleted file mode 100644 index 86b21ee219..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/3.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/4.png b/front/public/images/large/TConstruct/woodPattern/4.png deleted file mode 100644 index f70b45b47f..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/4.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/5.png b/front/public/images/large/TConstruct/woodPattern/5.png deleted file mode 100644 index 51844e9f3c..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/5.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/6.png b/front/public/images/large/TConstruct/woodPattern/6.png deleted file mode 100644 index 5e3dfebabe..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/6.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/7.png b/front/public/images/large/TConstruct/woodPattern/7.png deleted file mode 100644 index 3ee3baf007..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/7.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/8.png b/front/public/images/large/TConstruct/woodPattern/8.png deleted file mode 100644 index c39a2dc5e5..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/8.png and /dev/null differ diff --git a/front/public/images/large/TConstruct/woodPattern/9.png b/front/public/images/large/TConstruct/woodPattern/9.png deleted file mode 100644 index 65d5937565..0000000000 Binary files a/front/public/images/large/TConstruct/woodPattern/9.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1500.png deleted file mode 100644 index 1419687b5a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1501.png deleted file mode 100644 index d98efe36c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1502.png deleted file mode 100644 index 74e35114d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1503.png deleted file mode 100644 index 34dc44ba7c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1504.png deleted file mode 100644 index eb3f855f52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1505.png deleted file mode 100644 index 6dc41ccd66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1506.png deleted file mode 100644 index a31e993a89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1507.png deleted file mode 100644 index 88a3257fa0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1508.png deleted file mode 100644 index ec700996cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1509.png deleted file mode 100644 index 1e3f9b52ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1510.png deleted file mode 100644 index 9eb4d74e45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1511.png deleted file mode 100644 index ec700996cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1512.png deleted file mode 100644 index 2440322008..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1513.png deleted file mode 100644 index 7358a3038a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1514.png deleted file mode 100644 index 8614df8025..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1515.png deleted file mode 100644 index c6b1f7325f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1516.png deleted file mode 100644 index 23330e1af8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1517.png deleted file mode 100644 index c099467a42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1518.png deleted file mode 100644 index 1a0a01ea3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1519.png deleted file mode 100644 index 2ab5ac41f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1520.png deleted file mode 100644 index b43237f90e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1521.png deleted file mode 100644 index e41a011300..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1522.png deleted file mode 100644 index f9850d1f0b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1523.png deleted file mode 100644 index 5e1834a3f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1524.png deleted file mode 100644 index 43b27630c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1525.png deleted file mode 100644 index d1a762a7cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1526.png deleted file mode 100644 index 4723d8d444..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1527.png deleted file mode 100644 index 68b3552f69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1528.png deleted file mode 100644 index 580f00966f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1529.png deleted file mode 100644 index d15992ee05..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1530.png deleted file mode 100644 index 7a65001bf4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1531.png deleted file mode 100644 index aabc8b4a14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1532.png deleted file mode 100644 index 7c844e855b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1533.png deleted file mode 100644 index 6e3336a9f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1534.png deleted file mode 100644 index 592fea46e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1535.png deleted file mode 100644 index 9ccc8d9d45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1536.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1537.png deleted file mode 100644 index 2db720ed56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1538.png deleted file mode 100644 index ca9935ebcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1539.png deleted file mode 100644 index a6ee39586d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1540.png deleted file mode 100644 index 3fb23eb216..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1541.png deleted file mode 100644 index 41c999a355..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1542.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1543.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1544.png deleted file mode 100644 index 729755ee7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1545.png deleted file mode 100644 index b7a4da73bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1546.png deleted file mode 100644 index 523010a116..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1547.png deleted file mode 100644 index d7d9ba1bc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1548.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1549.png deleted file mode 100644 index 1465269950..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1550.png deleted file mode 100644 index ba386ce4e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1551.png deleted file mode 100644 index d2efd6ce36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1553.png deleted file mode 100644 index b770c73a54..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1554.png deleted file mode 100644 index 0c7dd51e8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1555.png deleted file mode 100644 index 326bd5220e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1556.png deleted file mode 100644 index 8614df8025..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1557.png deleted file mode 100644 index 8614df8025..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1562.png deleted file mode 100644 index 0897076ff0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1563.png deleted file mode 100644 index 326bd5220e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1564.png deleted file mode 100644 index ad2eed2570..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1565.png deleted file mode 100644 index db9751d1c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1566.png deleted file mode 100644 index 43eefd5aad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1567.png deleted file mode 100644 index 4749df4065..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1568.png deleted file mode 100644 index 4aa9830190..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1570.png deleted file mode 100644 index c8ef77fc53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1571.png deleted file mode 100644 index 4f73e7f771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1572.png deleted file mode 100644 index 0b4d310233..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1573.png deleted file mode 100644 index 4f4817a398..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1574.png deleted file mode 100644 index e41a011300..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1575.png deleted file mode 100644 index d7d9ba1bc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1576.png deleted file mode 100644 index ac2617c0ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1577.png deleted file mode 100644 index c5625605fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1578.png deleted file mode 100644 index 95b7d78bcd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1579.png deleted file mode 100644 index ec700996cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1582.png deleted file mode 100644 index af0f734233..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1583.png deleted file mode 100644 index e4ff0b471c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1584.png deleted file mode 100644 index 256a619cc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1585.png deleted file mode 100644 index a144659293..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1586.png deleted file mode 100644 index 34d1b4ddf2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1587.png deleted file mode 100644 index cb5528631e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1588.png deleted file mode 100644 index 326bd5220e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1589.png deleted file mode 100644 index d66aaa7633..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1590.png deleted file mode 100644 index b7e7f55bc5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1591.png deleted file mode 100644 index 0dc1278f30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1592.png deleted file mode 100644 index 3ca8732f50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1593.png deleted file mode 100644 index 295598ac39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1594.png deleted file mode 100644 index efd279cab7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1595.png deleted file mode 100644 index 4d686c0db3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1596.png deleted file mode 100644 index dc678fc86b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1597.png deleted file mode 100644 index ede0694752..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1598.png deleted file mode 100644 index 27193edaf2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1599.png deleted file mode 100644 index e12a350927..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1600.png deleted file mode 100644 index 85a9ba03c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1601.png deleted file mode 100644 index af0b4f06a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1602.png deleted file mode 100644 index 3e4fc45257..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1603.png deleted file mode 100644 index 3afa4c6397..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1604.png deleted file mode 100644 index 7d35277510..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1605.png deleted file mode 100644 index 1019751335..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1606.png deleted file mode 100644 index cdfa20098f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1607.png deleted file mode 100644 index 03f0d5dbc1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1608.png deleted file mode 100644 index ca456692b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1609.png deleted file mode 100644 index e41a011300..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1610.png deleted file mode 100644 index 9eb4d74e45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1611.png deleted file mode 100644 index f7ffd47c4c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1612.png deleted file mode 100644 index 0d74965ba4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1613.png deleted file mode 100644 index fb724ba704..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1614.png deleted file mode 100644 index cdfa20098f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1615.png deleted file mode 100644 index ca9935ebcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1616.png deleted file mode 100644 index aa4b31eb70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1617.png deleted file mode 100644 index 1019751335..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1618.png deleted file mode 100644 index 43a1cbb358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1619.png deleted file mode 100644 index 96bb999c80..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1620.png deleted file mode 100644 index b7e7f55bc5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1621.png deleted file mode 100644 index 9be95b8c28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1622.png deleted file mode 100644 index e9b7523ccf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1623.png deleted file mode 100644 index cc67bbe418..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1624.png deleted file mode 100644 index 451a960131..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1625.png deleted file mode 100644 index c6f8e6724f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1626.png deleted file mode 100644 index 09b4579472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1627.png deleted file mode 100644 index 9a2cec03dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1628.png deleted file mode 100644 index b8384c6dc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1629.png deleted file mode 100644 index 3972aecca4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1630.png deleted file mode 100644 index b5205d24b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1631.png deleted file mode 100644 index 9eb4d74e45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1632.png deleted file mode 100644 index f3c5cf527a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1633.png deleted file mode 100644 index ca75195178..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1634.png deleted file mode 100644 index 1533d5e3a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1635.png deleted file mode 100644 index 84aa200f11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1636.png deleted file mode 100644 index 8bbee3cdce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1637.png deleted file mode 100644 index 7c8022b635..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1638.png deleted file mode 100644 index 88faaf89d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1639.png deleted file mode 100644 index 4f73e7f771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1640.png deleted file mode 100644 index 9daac6205c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1641.png deleted file mode 100644 index 107ecd879f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1642.png deleted file mode 100644 index 6ea4e71fbd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1643.png deleted file mode 100644 index 4b122fd55e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1644.png deleted file mode 100644 index 6849576032..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1645.png deleted file mode 100644 index f3c5cf527a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1646.png deleted file mode 100644 index cdfa20098f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1647.png deleted file mode 100644 index 8614df8025..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1648.png deleted file mode 100644 index 9eb4d74e45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1649.png deleted file mode 100644 index 7ecff0decd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1650.png deleted file mode 100644 index b7cf97e22e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1651.png deleted file mode 100644 index 46ad0f7fb3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1652.png deleted file mode 100644 index 778ebf18b0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1653.png deleted file mode 100644 index 0a8285a2ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1654.png deleted file mode 100644 index 9c81832e0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1655.png deleted file mode 100644 index 973e08d05d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1656.png deleted file mode 100644 index 9846316b0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1657.png deleted file mode 100644 index e41a011300..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1658.png deleted file mode 100644 index 36c5c9b2ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1659.png deleted file mode 100644 index 6a8416eb16..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1660.png deleted file mode 100644 index 7bcdf0988d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1661.png deleted file mode 100644 index 53204f2de0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1662.png deleted file mode 100644 index b05c980705..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1663.png deleted file mode 100644 index 19af8bc9bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1664.png deleted file mode 100644 index d8b575c9e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1665.png deleted file mode 100644 index f8c95646a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1666.png deleted file mode 100644 index 3dbdb0bc3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1667.png deleted file mode 100644 index 515502a3ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1668.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1670.png deleted file mode 100644 index 079a17eace..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1672.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1673.png deleted file mode 100644 index 43a6d0d1ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1674.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1675.png deleted file mode 100644 index cdfa20098f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1676.png deleted file mode 100644 index 0bfd0c93d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1677.png deleted file mode 100644 index 3cdc17b99e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1678.png deleted file mode 100644 index 9c102ffcc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1679.png deleted file mode 100644 index 900ae80147..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1680.png deleted file mode 100644 index 8221eb429d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1681.png deleted file mode 100644 index d9e0a1e3d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1682.png deleted file mode 100644 index 11d5d05a0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1683.png deleted file mode 100644 index 96f7d65e8b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1684.png deleted file mode 100644 index 41268f9a9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1685.png deleted file mode 100644 index 5a49be6b2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1686.png deleted file mode 100644 index e41a011300..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1687.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1688.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1689.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1690.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1691.png deleted file mode 100644 index ef539797b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1692.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1693.png deleted file mode 100644 index 643b0ea296..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1694.png deleted file mode 100644 index 72c93f9842..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1695.png deleted file mode 100644 index 00ee9bb9a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1696.png deleted file mode 100644 index c6b5f4b9d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1697.png deleted file mode 100644 index cde85e0464..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1698.png deleted file mode 100644 index e41a011300..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1699.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1700.png deleted file mode 100644 index e24694cbd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1701.png deleted file mode 100644 index 0f58a196dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1702.png deleted file mode 100644 index c2ba78f020..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1703.png deleted file mode 100644 index 7b013de32c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1704.png deleted file mode 100644 index c63c1a6ca0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1705.png deleted file mode 100644 index 9dfa7c397f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1706.png deleted file mode 100644 index 9eb4d74e45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1707.png deleted file mode 100644 index db4a166fe3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1708.png deleted file mode 100644 index eb3f855f52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1709.png deleted file mode 100644 index 03356b0f0a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1710.png deleted file mode 100644 index 4aefad08c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1711.png deleted file mode 100644 index 6c135fcbc8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1712.png deleted file mode 100644 index b602e9cd69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1713.png deleted file mode 100644 index c847d9cd46..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1714.png deleted file mode 100644 index 5addd09d01..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1715.png deleted file mode 100644 index 2356b8edd3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1716.png deleted file mode 100644 index 7ee3f161a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1717.png deleted file mode 100644 index a7e25c6ab1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1718.png deleted file mode 100644 index 5b335aef89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1719.png deleted file mode 100644 index 0686db1ee9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1720.png deleted file mode 100644 index 0686db1ee9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1721.png deleted file mode 100644 index 04441658e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1722.png deleted file mode 100644 index 002c9dc037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1723.png deleted file mode 100644 index ae827e154b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1724.png deleted file mode 100644 index 7a35717be1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1725.png deleted file mode 100644 index bfdbbcedc2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1726.png deleted file mode 100644 index bc66e5aa98..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1727.png deleted file mode 100644 index b415ec5006..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1728.png deleted file mode 100644 index 5cacc789d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1729.png deleted file mode 100644 index 300a25c9b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1730.png deleted file mode 100644 index c6fa40a751..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1731.png deleted file mode 100644 index 64d7b96e1b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1732.png deleted file mode 100644 index a7d8749a99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1733.png deleted file mode 100644 index 1bdaa3bbd5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1734.png deleted file mode 100644 index 4e6bda662e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1735.png deleted file mode 100644 index 15667cdc77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1740.png deleted file mode 100644 index a2e7e0133b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1741.png deleted file mode 100644 index e07daafe52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1742.png deleted file mode 100644 index 15d7b9be08..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1743.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1744.png deleted file mode 100644 index 034c521472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1745.png deleted file mode 100644 index 5fbecd857f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartArrowHead/1746.png deleted file mode 100644 index 534ef749c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartArrowHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1500.png deleted file mode 100644 index 366d6412bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1501.png deleted file mode 100644 index 73a91740f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1502.png deleted file mode 100644 index 601b4c75b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1503.png deleted file mode 100644 index 368377f5f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1504.png deleted file mode 100644 index 084a6bd293..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1505.png deleted file mode 100644 index 937dd8771f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1506.png deleted file mode 100644 index 9aac0a6928..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1507.png deleted file mode 100644 index ad9a68b3b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1508.png deleted file mode 100644 index 5bcf98f489..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1509.png deleted file mode 100644 index ff256df6a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1510.png deleted file mode 100644 index f41d58ac1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1511.png deleted file mode 100644 index 5bcf98f489..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1512.png deleted file mode 100644 index 82fb9ef054..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1513.png deleted file mode 100644 index cbcef40181..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1514.png deleted file mode 100644 index 5e7a880bc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1515.png deleted file mode 100644 index 646901ca92..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1516.png deleted file mode 100644 index 548ea13f35..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1517.png deleted file mode 100644 index a039971552..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1518.png deleted file mode 100644 index c4527dec34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1519.png deleted file mode 100644 index 2df20634d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1520.png deleted file mode 100644 index 18a489b64b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1521.png deleted file mode 100644 index 614c624ec5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1522.png deleted file mode 100644 index fc4bfc3393..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1523.png deleted file mode 100644 index 1eab32509a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1524.png deleted file mode 100644 index c0a8905819..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1525.png deleted file mode 100644 index 9577648c3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1526.png deleted file mode 100644 index 1e4308973d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1527.png deleted file mode 100644 index 1943d0d9b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1528.png deleted file mode 100644 index d90180c41b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1529.png deleted file mode 100644 index 5dbcb386ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1530.png deleted file mode 100644 index ae7569cd60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1531.png deleted file mode 100644 index 8b265108a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1532.png deleted file mode 100644 index 932c80a402..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1533.png deleted file mode 100644 index f6a32b939d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1534.png deleted file mode 100644 index afc4b6edab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1535.png deleted file mode 100644 index d67adec2d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1536.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1537.png deleted file mode 100644 index abffeab1e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1538.png deleted file mode 100644 index 6756b793d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1539.png deleted file mode 100644 index 1df54cf0dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1540.png deleted file mode 100644 index 569d79108c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1541.png deleted file mode 100644 index 00d4745286..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1542.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1543.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1544.png deleted file mode 100644 index 5aeacfe08e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1545.png deleted file mode 100644 index ee6d87d0b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1546.png deleted file mode 100644 index 811d3233f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1547.png deleted file mode 100644 index f233e8bb7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1548.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1549.png deleted file mode 100644 index 146f04b962..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1550.png deleted file mode 100644 index 10150a6546..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1551.png deleted file mode 100644 index cdb393d4da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1553.png deleted file mode 100644 index 7d76a4e644..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1554.png deleted file mode 100644 index 508cae0d23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1555.png deleted file mode 100644 index 8453eab5bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1556.png deleted file mode 100644 index 5e7a880bc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1557.png deleted file mode 100644 index 5e7a880bc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1562.png deleted file mode 100644 index 9488b6d32e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1563.png deleted file mode 100644 index 8453eab5bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1564.png deleted file mode 100644 index e6a20429d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1565.png deleted file mode 100644 index 9e05c05de6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1566.png deleted file mode 100644 index 2ba5a6e534..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1567.png deleted file mode 100644 index e12cb01729..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1568.png deleted file mode 100644 index 2a9766a8d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1570.png deleted file mode 100644 index 1e36ebe915..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1571.png deleted file mode 100644 index 096117d2f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1572.png deleted file mode 100644 index 55fde23cad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1573.png deleted file mode 100644 index 5873524bf8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1574.png deleted file mode 100644 index 614c624ec5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1575.png deleted file mode 100644 index f233e8bb7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1576.png deleted file mode 100644 index 8025228d1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1577.png deleted file mode 100644 index ccf25145bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1578.png deleted file mode 100644 index dbc7198bc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1579.png deleted file mode 100644 index 5bcf98f489..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1582.png deleted file mode 100644 index e42dd12262..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1583.png deleted file mode 100644 index 6d08eddc4e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1584.png deleted file mode 100644 index 34a392772c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1585.png deleted file mode 100644 index d756a3c42a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1586.png deleted file mode 100644 index 36c77e7f0a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1587.png deleted file mode 100644 index 85a9090b9f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1588.png deleted file mode 100644 index 8453eab5bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1589.png deleted file mode 100644 index 568675a6a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1590.png deleted file mode 100644 index 6237c8f423..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1591.png deleted file mode 100644 index 10c5065b5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1592.png deleted file mode 100644 index 1c6e4f948d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1593.png deleted file mode 100644 index 74504d8bf8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1594.png deleted file mode 100644 index 91f10c7a04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1595.png deleted file mode 100644 index 104c5119bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1596.png deleted file mode 100644 index 43421351f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1597.png deleted file mode 100644 index 8a2e8f7fc1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1598.png deleted file mode 100644 index 9def857f7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1599.png deleted file mode 100644 index 817b29a4d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1600.png deleted file mode 100644 index e6912a000d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1601.png deleted file mode 100644 index 2d94e5d769..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1602.png deleted file mode 100644 index 995a970d98..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1603.png deleted file mode 100644 index c6a637249d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1604.png deleted file mode 100644 index e5e7873c3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1605.png deleted file mode 100644 index b30ef00c66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1606.png deleted file mode 100644 index ec8c4e574d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1607.png deleted file mode 100644 index a527e900e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1608.png deleted file mode 100644 index c289d63523..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1609.png deleted file mode 100644 index 614c624ec5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1610.png deleted file mode 100644 index f41d58ac1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1611.png deleted file mode 100644 index d9a554ec19..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1612.png deleted file mode 100644 index 4e1eeed78b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1613.png deleted file mode 100644 index f1cfdb82c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1614.png deleted file mode 100644 index ec8c4e574d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1615.png deleted file mode 100644 index 6756b793d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1616.png deleted file mode 100644 index 57b71d4092..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1617.png deleted file mode 100644 index b30ef00c66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1618.png deleted file mode 100644 index 13e84fa5ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1619.png deleted file mode 100644 index 74dac189e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1620.png deleted file mode 100644 index 6237c8f423..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1621.png deleted file mode 100644 index 1e725a74e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1622.png deleted file mode 100644 index 07ec8a6346..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1623.png deleted file mode 100644 index eabc8843fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1624.png deleted file mode 100644 index 3589fa45c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1625.png deleted file mode 100644 index 91b2d84bf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1626.png deleted file mode 100644 index 7832d2f4aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1627.png deleted file mode 100644 index 8892d9e74e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1628.png deleted file mode 100644 index 0de7e4759c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1629.png deleted file mode 100644 index 372c069bb4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1630.png deleted file mode 100644 index 3953b86d73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1631.png deleted file mode 100644 index f41d58ac1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1632.png deleted file mode 100644 index f85efcb50a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1633.png deleted file mode 100644 index 44c87fd2f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1634.png deleted file mode 100644 index 52491dc089..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1635.png deleted file mode 100644 index 54b6c950b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1636.png deleted file mode 100644 index 453803d4ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1637.png deleted file mode 100644 index 228b48cf2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1638.png deleted file mode 100644 index be2fbff3d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1639.png deleted file mode 100644 index 096117d2f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1640.png deleted file mode 100644 index 917e10fdfa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1641.png deleted file mode 100644 index 1ab3b6db5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1642.png deleted file mode 100644 index 44737cdcd0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1643.png deleted file mode 100644 index 4b1fc3858a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1644.png deleted file mode 100644 index 2626cc7cb0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1645.png deleted file mode 100644 index f85efcb50a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1646.png deleted file mode 100644 index ec8c4e574d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1647.png deleted file mode 100644 index 5e7a880bc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1648.png deleted file mode 100644 index f41d58ac1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1649.png deleted file mode 100644 index c64f3ff39f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1650.png deleted file mode 100644 index 752b8b9dbd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1651.png deleted file mode 100644 index 7698b4ad7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1652.png deleted file mode 100644 index a67c8a0e20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1653.png deleted file mode 100644 index 7b006d2f2f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1654.png deleted file mode 100644 index 526f372b52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1655.png deleted file mode 100644 index 7f6db454fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1656.png deleted file mode 100644 index fc714b131a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1657.png deleted file mode 100644 index 614c624ec5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1658.png deleted file mode 100644 index 83458f19f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1659.png deleted file mode 100644 index 87c00c9f6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1660.png deleted file mode 100644 index 87ba9b3825..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1661.png deleted file mode 100644 index 146aadbc4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1662.png deleted file mode 100644 index add5f1906c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1663.png deleted file mode 100644 index a55f804d26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1664.png deleted file mode 100644 index ede1ea0fd4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1665.png deleted file mode 100644 index 141e7fb352..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1666.png deleted file mode 100644 index aac41e0e2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1667.png deleted file mode 100644 index 01c63ae41c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1668.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1670.png deleted file mode 100644 index e8203ef6d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1672.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1673.png deleted file mode 100644 index 0f4cf15228..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1674.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1675.png deleted file mode 100644 index ec8c4e574d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1676.png deleted file mode 100644 index ca95f0440e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1677.png deleted file mode 100644 index 8496a411e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1678.png deleted file mode 100644 index eae4993406..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1679.png deleted file mode 100644 index f15efd180d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1680.png deleted file mode 100644 index a9e87ad721..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1681.png deleted file mode 100644 index be9253ad53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1682.png deleted file mode 100644 index b4b1f8c20e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1683.png deleted file mode 100644 index a8d48de3a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1684.png deleted file mode 100644 index 9cd7ea9023..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1685.png deleted file mode 100644 index 8c7217bebc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1686.png deleted file mode 100644 index 614c624ec5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1687.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1688.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1689.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1690.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1691.png deleted file mode 100644 index 7a664c96df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1692.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1693.png deleted file mode 100644 index 717b244e48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1694.png deleted file mode 100644 index b4b1eb9b4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1695.png deleted file mode 100644 index b3b5b6343e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1696.png deleted file mode 100644 index ec76793e42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1697.png deleted file mode 100644 index e9710ec7db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1698.png deleted file mode 100644 index 614c624ec5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1699.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1700.png deleted file mode 100644 index 3126f206a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1701.png deleted file mode 100644 index 1a7f8747e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1702.png deleted file mode 100644 index 38fe123e6b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1703.png deleted file mode 100644 index d6d8814e34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1704.png deleted file mode 100644 index 43fe44250c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1705.png deleted file mode 100644 index 6964fd066a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1706.png deleted file mode 100644 index f41d58ac1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1707.png deleted file mode 100644 index 8e5745b0de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1708.png deleted file mode 100644 index 084a6bd293..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1709.png deleted file mode 100644 index 40b179e958..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1710.png deleted file mode 100644 index 17f9a3afd2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1711.png deleted file mode 100644 index abdc0c39d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1712.png deleted file mode 100644 index a3da7fee28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1713.png deleted file mode 100644 index 8fdbbfaeeb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1714.png deleted file mode 100644 index 3ad0cce23d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1715.png deleted file mode 100644 index 71686a78f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1716.png deleted file mode 100644 index d0c33fb42b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1717.png deleted file mode 100644 index 7909f7d07a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1718.png deleted file mode 100644 index 04485f6a18..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1719.png deleted file mode 100644 index fb6a4b3d1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1720.png deleted file mode 100644 index fb6a4b3d1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1721.png deleted file mode 100644 index 90247e01e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1722.png deleted file mode 100644 index a301bce96c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1723.png deleted file mode 100644 index 1aae4ea225..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1724.png deleted file mode 100644 index 7d38296d9c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1725.png deleted file mode 100644 index 4eadf8417b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1726.png deleted file mode 100644 index af50dbc023..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1727.png deleted file mode 100644 index d294183d24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1728.png deleted file mode 100644 index ab93dd3ce6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1729.png deleted file mode 100644 index d553b8e1bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1730.png deleted file mode 100644 index 5d77e87548..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1731.png deleted file mode 100644 index a6769d19b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1732.png deleted file mode 100644 index ebc0a3609f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1733.png deleted file mode 100644 index e068d38ff0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1734.png deleted file mode 100644 index 289ad1c347..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1735.png deleted file mode 100644 index 20416289a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1740.png deleted file mode 100644 index f48e4d021f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1741.png deleted file mode 100644 index 8412da5b25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1742.png deleted file mode 100644 index 6bf28059ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1743.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1744.png deleted file mode 100644 index ee7bd1ba0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1745.png deleted file mode 100644 index f73012ae7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartAxeHead/1746.png deleted file mode 100644 index ac43862eaa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartAxeHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1500.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1500.png deleted file mode 100644 index e62a48d1fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1501.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1501.png deleted file mode 100644 index 7e7a03bf11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1502.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1502.png deleted file mode 100644 index 15dec9f6a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1503.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1503.png deleted file mode 100644 index 1ec9e637a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1504.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1504.png deleted file mode 100644 index 4b944b62e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1505.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1505.png deleted file mode 100644 index ef277c0a3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1506.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1506.png deleted file mode 100644 index 88e9a203f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1507.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1507.png deleted file mode 100644 index c4e7e2ce36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1508.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1508.png deleted file mode 100644 index d671e00df8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1509.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1509.png deleted file mode 100644 index ecd8182eec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1510.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1510.png deleted file mode 100644 index 5490b7178d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1511.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1511.png deleted file mode 100644 index d671e00df8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1512.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1512.png deleted file mode 100644 index 2dd01d630f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1513.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1513.png deleted file mode 100644 index 433d78c0a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1514.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1514.png deleted file mode 100644 index c4ed75af25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1515.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1515.png deleted file mode 100644 index b5593f118e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1516.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1516.png deleted file mode 100644 index a30f4ed8f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1517.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1517.png deleted file mode 100644 index 7185cfe7d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1518.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1518.png deleted file mode 100644 index 4bc4094cac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1519.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1519.png deleted file mode 100644 index 3f9409820b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1520.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1520.png deleted file mode 100644 index d1bcb8fb6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1521.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1521.png deleted file mode 100644 index 16d60e5a66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1522.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1522.png deleted file mode 100644 index 9934b84031..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1523.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1523.png deleted file mode 100644 index f96262479c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1524.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1524.png deleted file mode 100644 index c73c0bf40a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1525.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1525.png deleted file mode 100644 index 23c538006f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1526.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1526.png deleted file mode 100644 index 096bcebbda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1527.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1527.png deleted file mode 100644 index 137f323d35..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1528.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1528.png deleted file mode 100644 index 506c8673c1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1529.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1529.png deleted file mode 100644 index bbf9472524..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1530.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1530.png deleted file mode 100644 index 5a3fbb43d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1531.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1531.png deleted file mode 100644 index 2faf4e4e69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1532.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1532.png deleted file mode 100644 index e797d6d60b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1533.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1533.png deleted file mode 100644 index 5863fbbd31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1534.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1534.png deleted file mode 100644 index 25c008c873..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1535.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1535.png deleted file mode 100644 index 3de4429d0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1536.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1536.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1537.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1537.png deleted file mode 100644 index 31c633d3ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1538.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1538.png deleted file mode 100644 index a6076eb975..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1539.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1539.png deleted file mode 100644 index d75008220c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1540.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1540.png deleted file mode 100644 index 28f2c0cee1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1541.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1541.png deleted file mode 100644 index d9c6ffe484..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1542.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1542.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1543.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1543.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1544.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1544.png deleted file mode 100644 index 488a16da0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1545.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1545.png deleted file mode 100644 index 8834230c2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1546.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1546.png deleted file mode 100644 index 811f0855f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1547.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1547.png deleted file mode 100644 index 23d4270bc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1548.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1548.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1549.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1549.png deleted file mode 100644 index 4c4ce2b106..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1550.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1550.png deleted file mode 100644 index c526e95b94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1551.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1551.png deleted file mode 100644 index de948bfe59..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1553.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1553.png deleted file mode 100644 index 6cd96d850f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1554.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1554.png deleted file mode 100644 index bccb22eeaf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1555.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1555.png deleted file mode 100644 index 341a8d0863..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1556.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1556.png deleted file mode 100644 index c4ed75af25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1557.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1557.png deleted file mode 100644 index c4ed75af25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1562.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1562.png deleted file mode 100644 index 2ea673a7cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1563.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1563.png deleted file mode 100644 index 341a8d0863..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1564.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1564.png deleted file mode 100644 index 3429140884..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1565.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1565.png deleted file mode 100644 index 374c5c6794..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1566.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1566.png deleted file mode 100644 index 66dd7d4f69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1567.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1567.png deleted file mode 100644 index fcc5b596c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1568.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1568.png deleted file mode 100644 index 779c3f1423..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1570.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1570.png deleted file mode 100644 index 0580ffc566..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1571.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1571.png deleted file mode 100644 index 3735fe14a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1572.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1572.png deleted file mode 100644 index a3396c2474..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1573.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1573.png deleted file mode 100644 index 03a4177dc8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1574.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1574.png deleted file mode 100644 index 16d60e5a66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1575.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1575.png deleted file mode 100644 index 23d4270bc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1576.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1576.png deleted file mode 100644 index b34b96ee4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1577.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1577.png deleted file mode 100644 index de94a4469b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1578.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1578.png deleted file mode 100644 index dda0720873..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1579.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1579.png deleted file mode 100644 index d671e00df8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1582.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1582.png deleted file mode 100644 index 038fe5f99a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1583.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1583.png deleted file mode 100644 index 89a393820c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1584.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1584.png deleted file mode 100644 index e5885d346b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1585.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1585.png deleted file mode 100644 index 09dbbe2ac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1586.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1586.png deleted file mode 100644 index 78942acbc5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1587.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1587.png deleted file mode 100644 index 44972b833f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1588.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1588.png deleted file mode 100644 index 341a8d0863..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1589.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1589.png deleted file mode 100644 index 6df611b2a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1590.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1590.png deleted file mode 100644 index c05ba3efda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1591.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1591.png deleted file mode 100644 index e94538f61e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1592.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1592.png deleted file mode 100644 index f9540216f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1593.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1593.png deleted file mode 100644 index 1194ebc713..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1594.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1594.png deleted file mode 100644 index e77d74e6bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1595.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1595.png deleted file mode 100644 index 7ea38c41d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1596.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1596.png deleted file mode 100644 index 2859d3302e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1597.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1597.png deleted file mode 100644 index c63810e73b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1598.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1598.png deleted file mode 100644 index c58f5c56a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1599.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1599.png deleted file mode 100644 index ebc38c96b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1600.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1600.png deleted file mode 100644 index b336a64534..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1601.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1601.png deleted file mode 100644 index f5236af201..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1602.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1602.png deleted file mode 100644 index 546dbd86ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1603.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1603.png deleted file mode 100644 index 49d93d6d14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1604.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1604.png deleted file mode 100644 index d74cc27a56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1605.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1605.png deleted file mode 100644 index f83cc77861..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1606.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1606.png deleted file mode 100644 index a63af57adb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1607.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1607.png deleted file mode 100644 index cea299d18d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1608.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1608.png deleted file mode 100644 index 83594d2ce9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1609.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1609.png deleted file mode 100644 index 16d60e5a66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1610.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1610.png deleted file mode 100644 index 5490b7178d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1611.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1611.png deleted file mode 100644 index 80a0297544..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1612.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1612.png deleted file mode 100644 index 17d55ae300..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1613.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1613.png deleted file mode 100644 index f2fb992169..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1614.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1614.png deleted file mode 100644 index a63af57adb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1615.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1615.png deleted file mode 100644 index a6076eb975..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1616.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1616.png deleted file mode 100644 index 3c8a042357..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1617.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1617.png deleted file mode 100644 index f83cc77861..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1618.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1618.png deleted file mode 100644 index 6ec00d41ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1619.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1619.png deleted file mode 100644 index 5542dc6d2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1620.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1620.png deleted file mode 100644 index c05ba3efda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1621.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1621.png deleted file mode 100644 index c436a52493..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1622.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1622.png deleted file mode 100644 index 9a199f3a89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1623.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1623.png deleted file mode 100644 index 4cc7e41c70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1624.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1624.png deleted file mode 100644 index e2a8b5e6e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1625.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1625.png deleted file mode 100644 index 1f9e49262b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1626.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1626.png deleted file mode 100644 index a520228c47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1627.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1627.png deleted file mode 100644 index c516f4c702..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1628.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1628.png deleted file mode 100644 index fb77789550..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1629.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1629.png deleted file mode 100644 index 5b75878fb0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1630.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1630.png deleted file mode 100644 index b4e8549788..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1631.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1631.png deleted file mode 100644 index 5490b7178d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1632.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1632.png deleted file mode 100644 index 6528f9b261..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1633.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1633.png deleted file mode 100644 index d5b1876f89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1634.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1634.png deleted file mode 100644 index aa31829e57..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1635.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1635.png deleted file mode 100644 index 5363658d58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1636.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1636.png deleted file mode 100644 index 364c1b5fae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1637.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1637.png deleted file mode 100644 index c48c956b00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1638.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1638.png deleted file mode 100644 index c3210f9c1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1639.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1639.png deleted file mode 100644 index 3735fe14a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1640.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1640.png deleted file mode 100644 index 35311dcc61..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1641.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1641.png deleted file mode 100644 index f5f89fd984..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1642.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1642.png deleted file mode 100644 index 48fcf2295d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1643.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1643.png deleted file mode 100644 index 0a5f7ee96a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1644.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1644.png deleted file mode 100644 index 005e6a41fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1645.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1645.png deleted file mode 100644 index 6528f9b261..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1646.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1646.png deleted file mode 100644 index a63af57adb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1647.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1647.png deleted file mode 100644 index c4ed75af25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1648.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1648.png deleted file mode 100644 index 5490b7178d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1649.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1649.png deleted file mode 100644 index d19606a97c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1650.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1650.png deleted file mode 100644 index 66c85a9e9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1651.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1651.png deleted file mode 100644 index 96c43d7e42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1652.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1652.png deleted file mode 100644 index af5f7a3780..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1653.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1653.png deleted file mode 100644 index b2fb2e901a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1654.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1654.png deleted file mode 100644 index 1a39a7b461..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1655.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1655.png deleted file mode 100644 index f98287ab52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1656.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1656.png deleted file mode 100644 index 63e9250f2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1657.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1657.png deleted file mode 100644 index 16d60e5a66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1658.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1658.png deleted file mode 100644 index c971602dcc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1659.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1659.png deleted file mode 100644 index 55839af33b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1660.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1660.png deleted file mode 100644 index ee3ea05386..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1661.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1661.png deleted file mode 100644 index 48b77c81ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1662.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1662.png deleted file mode 100644 index 6e2bfa954d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1663.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1663.png deleted file mode 100644 index ba58214868..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1664.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1664.png deleted file mode 100644 index 4154737a58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1665.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1665.png deleted file mode 100644 index ebafe2c5ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1666.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1666.png deleted file mode 100644 index 4a1574c99a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1667.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1667.png deleted file mode 100644 index 6c3fe98725..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1668.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1668.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1670.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1670.png deleted file mode 100644 index ae5697cf32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1672.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1672.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1673.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1673.png deleted file mode 100644 index d934649222..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1674.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1674.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1675.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1675.png deleted file mode 100644 index a63af57adb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1676.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1676.png deleted file mode 100644 index 9513ba1b77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1677.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1677.png deleted file mode 100644 index 3603cf39c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1678.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1678.png deleted file mode 100644 index af5e8b2dd1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1679.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1679.png deleted file mode 100644 index 65c29096ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1680.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1680.png deleted file mode 100644 index c2f96846ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1681.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1681.png deleted file mode 100644 index 2e277051e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1682.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1682.png deleted file mode 100644 index 3de34a3b88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1683.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1683.png deleted file mode 100644 index 3fd8388b09..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1684.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1684.png deleted file mode 100644 index 34e83cf96b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1685.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1685.png deleted file mode 100644 index 935b2e73ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1686.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1686.png deleted file mode 100644 index 16d60e5a66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1687.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1687.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1688.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1688.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1689.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1689.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1690.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1690.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1691.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1691.png deleted file mode 100644 index c4bcc03da2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1692.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1692.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1693.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1693.png deleted file mode 100644 index 8dfc593b11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1694.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1694.png deleted file mode 100644 index 4646d28bba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1695.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1695.png deleted file mode 100644 index 92a2b80334..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1696.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1696.png deleted file mode 100644 index 9e37083c5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1697.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1697.png deleted file mode 100644 index 5f5f9f3058..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1698.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1698.png deleted file mode 100644 index 16d60e5a66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1699.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1699.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1700.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1700.png deleted file mode 100644 index 302563dd34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1701.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1701.png deleted file mode 100644 index eaf6123c1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1702.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1702.png deleted file mode 100644 index 77d7b3761a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1703.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1703.png deleted file mode 100644 index 6f940c1d36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1704.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1704.png deleted file mode 100644 index 8657f50920..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1705.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1705.png deleted file mode 100644 index cdc4441841..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1706.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1706.png deleted file mode 100644 index 5490b7178d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1707.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1707.png deleted file mode 100644 index b23b589026..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1708.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1708.png deleted file mode 100644 index 4b944b62e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1709.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1709.png deleted file mode 100644 index fcfd2a05f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1710.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1710.png deleted file mode 100644 index 1bb561b6f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1711.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1711.png deleted file mode 100644 index 0058b22b3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1712.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1712.png deleted file mode 100644 index fd53731465..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1713.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1713.png deleted file mode 100644 index 99fbd36834..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1714.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1714.png deleted file mode 100644 index 526af33cda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1715.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1715.png deleted file mode 100644 index 63ae7bb26b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1716.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1716.png deleted file mode 100644 index 5a1eb9c80a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1717.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1717.png deleted file mode 100644 index 57629bef43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1718.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1718.png deleted file mode 100644 index 5aecec3bb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1719.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1719.png deleted file mode 100644 index 375332dead..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1720.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1720.png deleted file mode 100644 index 375332dead..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1721.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1721.png deleted file mode 100644 index dcfdda4d81..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1722.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1722.png deleted file mode 100644 index 854d32b2a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1723.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1723.png deleted file mode 100644 index d0e6034d8b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1724.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1724.png deleted file mode 100644 index 4b6101e327..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1725.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1725.png deleted file mode 100644 index a1068d5f60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1726.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1726.png deleted file mode 100644 index fef8a8cd3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1727.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1727.png deleted file mode 100644 index dd7768e33a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1728.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1728.png deleted file mode 100644 index 11288794c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1729.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1729.png deleted file mode 100644 index d34a3d3605..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1730.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1730.png deleted file mode 100644 index 03dde6cb2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1731.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1731.png deleted file mode 100644 index dfb857e263..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1732.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1732.png deleted file mode 100644 index 2c4dd123bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1733.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1733.png deleted file mode 100644 index f3cfef2fc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1734.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1734.png deleted file mode 100644 index 27719f5385..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1735.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1735.png deleted file mode 100644 index 4138c5255c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1740.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1740.png deleted file mode 100644 index c2cc4c73b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1741.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1741.png deleted file mode 100644 index b5b450b2c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1742.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1742.png deleted file mode 100644 index e7a1349dc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1743.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1743.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1744.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1744.png deleted file mode 100644 index 8ad39389cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1745.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1745.png deleted file mode 100644 index 892de4cec2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBinding/1746.png b/front/public/images/large/TGregworks/tGregToolPartBinding/1746.png deleted file mode 100644 index b9eb39832a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBinding/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1500.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1500.png deleted file mode 100644 index 27aa45dede..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1501.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1501.png deleted file mode 100644 index 907b96e57f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1502.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1502.png deleted file mode 100644 index 404843ad04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1503.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1503.png deleted file mode 100644 index 4e8fa2a805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1504.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1504.png deleted file mode 100644 index 33382f99de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1505.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1505.png deleted file mode 100644 index 2311a2c848..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1506.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1506.png deleted file mode 100644 index b383c9afd0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1507.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1507.png deleted file mode 100644 index 6173425b4e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1508.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1508.png deleted file mode 100644 index 8dba520940..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1509.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1509.png deleted file mode 100644 index e8de65ed24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1510.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1510.png deleted file mode 100644 index 09b87bf499..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1511.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1511.png deleted file mode 100644 index 8dba520940..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1512.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1512.png deleted file mode 100644 index 7d61297aa0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1513.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1513.png deleted file mode 100644 index a4446afe0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1514.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1514.png deleted file mode 100644 index fc06a53cc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1515.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1515.png deleted file mode 100644 index 0654b86df0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1516.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1516.png deleted file mode 100644 index 938a6380a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1517.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1517.png deleted file mode 100644 index 6e5804d484..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1518.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1518.png deleted file mode 100644 index c7c17f6116..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1519.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1519.png deleted file mode 100644 index 85e6d3541c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1520.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1520.png deleted file mode 100644 index 3b40606d66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1521.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1521.png deleted file mode 100644 index 2f0630140d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1522.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1522.png deleted file mode 100644 index 4dcc574ea9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1523.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1523.png deleted file mode 100644 index 4d95ed3a3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1524.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1524.png deleted file mode 100644 index 4a9e47b590..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1525.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1525.png deleted file mode 100644 index a514bda9fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1526.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1526.png deleted file mode 100644 index ac412d9bc2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1527.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1527.png deleted file mode 100644 index 4ffcc7a41f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1528.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1528.png deleted file mode 100644 index 89d1a81567..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1529.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1529.png deleted file mode 100644 index 1cc1995f37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1530.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1530.png deleted file mode 100644 index 07ca117b15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1531.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1531.png deleted file mode 100644 index fe4756bb04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1532.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1532.png deleted file mode 100644 index 4dab912285..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1533.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1533.png deleted file mode 100644 index 12421e0b23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1534.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1534.png deleted file mode 100644 index 454e917fdf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1535.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1535.png deleted file mode 100644 index 39751e7eef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1536.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1536.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1537.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1537.png deleted file mode 100644 index 8bf2fa1d96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1538.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1538.png deleted file mode 100644 index 32e689e871..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1539.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1539.png deleted file mode 100644 index 0055023fab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1540.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1540.png deleted file mode 100644 index 75b0eded92..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1541.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1541.png deleted file mode 100644 index 53503ef749..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1542.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1542.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1543.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1543.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1544.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1544.png deleted file mode 100644 index 6053fa87fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1545.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1545.png deleted file mode 100644 index dab2454c20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1546.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1546.png deleted file mode 100644 index b53208d2ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1547.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1547.png deleted file mode 100644 index e0f376ba4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1548.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1548.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1549.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1549.png deleted file mode 100644 index a0e0f72183..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1550.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1550.png deleted file mode 100644 index a880695309..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1551.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1551.png deleted file mode 100644 index f860d7b77c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1553.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1553.png deleted file mode 100644 index 1632ac7620..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1554.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1554.png deleted file mode 100644 index 7454ab388c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1555.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1555.png deleted file mode 100644 index 1cca847738..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1556.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1556.png deleted file mode 100644 index fc06a53cc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1557.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1557.png deleted file mode 100644 index fc06a53cc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1562.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1562.png deleted file mode 100644 index 321f75aa44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1563.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1563.png deleted file mode 100644 index 1cca847738..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1564.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1564.png deleted file mode 100644 index dabfb27799..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1565.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1565.png deleted file mode 100644 index d7b33fa6e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1566.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1566.png deleted file mode 100644 index 729c575289..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1567.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1567.png deleted file mode 100644 index 16cb63b16d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1568.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1568.png deleted file mode 100644 index d76bbf6a85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1570.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1570.png deleted file mode 100644 index bf45248d4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1571.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1571.png deleted file mode 100644 index ea6562754d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1572.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1572.png deleted file mode 100644 index 876a88b6de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1573.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1573.png deleted file mode 100644 index b5bba51e83..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1574.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1574.png deleted file mode 100644 index 2f0630140d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1575.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1575.png deleted file mode 100644 index e0f376ba4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1576.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1576.png deleted file mode 100644 index f88aa883ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1577.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1577.png deleted file mode 100644 index c11df80375..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1578.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1578.png deleted file mode 100644 index 782ce2e82f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1579.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1579.png deleted file mode 100644 index 8dba520940..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1582.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1582.png deleted file mode 100644 index f18618d481..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1583.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1583.png deleted file mode 100644 index 7853b5e4c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1584.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1584.png deleted file mode 100644 index f831183ee7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1585.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1585.png deleted file mode 100644 index d56b604b2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1586.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1586.png deleted file mode 100644 index fec9c52d5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1587.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1587.png deleted file mode 100644 index 9b54c51e30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1588.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1588.png deleted file mode 100644 index 1cca847738..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1589.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1589.png deleted file mode 100644 index d7a5152764..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1590.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1590.png deleted file mode 100644 index a4bee9ef30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1591.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1591.png deleted file mode 100644 index d74e651ee4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1592.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1592.png deleted file mode 100644 index 88742fa136..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1593.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1593.png deleted file mode 100644 index dfac14b7fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1594.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1594.png deleted file mode 100644 index 4cd9e1fc4e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1595.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1595.png deleted file mode 100644 index fdcc47fb48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1596.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1596.png deleted file mode 100644 index c156b09e9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1597.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1597.png deleted file mode 100644 index 8092658015..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1598.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1598.png deleted file mode 100644 index 7242297a93..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1599.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1599.png deleted file mode 100644 index 3a5c03e24b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1600.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1600.png deleted file mode 100644 index 07e8a7c22a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1601.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1601.png deleted file mode 100644 index 93b2b6009f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1602.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1602.png deleted file mode 100644 index 906f8fbbef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1603.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1603.png deleted file mode 100644 index 2fc6b31491..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1604.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1604.png deleted file mode 100644 index cffd27c668..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1605.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1605.png deleted file mode 100644 index 4bb43e9018..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1606.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1606.png deleted file mode 100644 index 0ec03f3949..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1607.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1607.png deleted file mode 100644 index e485aa18ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1608.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1608.png deleted file mode 100644 index f6ade5f6bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1609.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1609.png deleted file mode 100644 index 2f0630140d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1610.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1610.png deleted file mode 100644 index 09b87bf499..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1611.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1611.png deleted file mode 100644 index 5da3f6a562..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1612.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1612.png deleted file mode 100644 index 05b5ecb252..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1613.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1613.png deleted file mode 100644 index 4af9b90e61..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1614.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1614.png deleted file mode 100644 index 0ec03f3949..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1615.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1615.png deleted file mode 100644 index 32e689e871..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1616.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1616.png deleted file mode 100644 index be824b861d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1617.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1617.png deleted file mode 100644 index 4bb43e9018..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1618.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1618.png deleted file mode 100644 index 7746e5911f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1619.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1619.png deleted file mode 100644 index 695bbd622c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1620.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1620.png deleted file mode 100644 index a4bee9ef30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1621.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1621.png deleted file mode 100644 index 40de331e9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1622.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1622.png deleted file mode 100644 index 1be3b24019..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1623.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1623.png deleted file mode 100644 index 5dc1b9e548..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1624.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1624.png deleted file mode 100644 index a4cc220ae4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1625.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1625.png deleted file mode 100644 index de5bad47b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1626.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1626.png deleted file mode 100644 index 31f96f1be8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1627.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1627.png deleted file mode 100644 index 3cb0c407be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1628.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1628.png deleted file mode 100644 index 28a8d364ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1629.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1629.png deleted file mode 100644 index b34cdd0e24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1630.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1630.png deleted file mode 100644 index c51abb61f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1631.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1631.png deleted file mode 100644 index 09b87bf499..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1632.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1632.png deleted file mode 100644 index 6866f1e1dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1633.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1633.png deleted file mode 100644 index da993d7934..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1634.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1634.png deleted file mode 100644 index 82c7f33653..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1635.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1635.png deleted file mode 100644 index d6b4369cc2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1636.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1636.png deleted file mode 100644 index 256ebf07f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1637.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1637.png deleted file mode 100644 index a107b3f52b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1638.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1638.png deleted file mode 100644 index a0367ccfcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1639.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1639.png deleted file mode 100644 index ea6562754d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1640.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1640.png deleted file mode 100644 index 0df87e9064..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1641.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1641.png deleted file mode 100644 index 69f5619634..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1642.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1642.png deleted file mode 100644 index 400d11afba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1643.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1643.png deleted file mode 100644 index 444fb1c5e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1644.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1644.png deleted file mode 100644 index a50fb09f40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1645.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1645.png deleted file mode 100644 index 6866f1e1dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1646.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1646.png deleted file mode 100644 index 0ec03f3949..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1647.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1647.png deleted file mode 100644 index fc06a53cc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1648.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1648.png deleted file mode 100644 index 09b87bf499..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1649.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1649.png deleted file mode 100644 index 258e755e0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1650.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1650.png deleted file mode 100644 index bfd018987c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1651.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1651.png deleted file mode 100644 index 7d705acba1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1652.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1652.png deleted file mode 100644 index cb4a1afd47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1653.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1653.png deleted file mode 100644 index 87b57861f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1654.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1654.png deleted file mode 100644 index 19d243942b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1655.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1655.png deleted file mode 100644 index 11326b8102..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1656.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1656.png deleted file mode 100644 index f7ab637782..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1657.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1657.png deleted file mode 100644 index 2f0630140d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1658.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1658.png deleted file mode 100644 index eb824515bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1659.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1659.png deleted file mode 100644 index b53d9d41d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1660.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1660.png deleted file mode 100644 index ccb96e1838..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1661.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1661.png deleted file mode 100644 index a709f98da9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1662.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1662.png deleted file mode 100644 index ab3885e5ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1663.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1663.png deleted file mode 100644 index 1b33c9c071..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1664.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1664.png deleted file mode 100644 index 5710ac307c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1665.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1665.png deleted file mode 100644 index 139d421da9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1666.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1666.png deleted file mode 100644 index 0d5f720af8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1667.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1667.png deleted file mode 100644 index 9cdea19d43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1668.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1668.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1670.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1670.png deleted file mode 100644 index e337613f11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1672.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1672.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1673.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1673.png deleted file mode 100644 index 1f9a04c278..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1674.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1674.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1675.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1675.png deleted file mode 100644 index 0ec03f3949..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1676.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1676.png deleted file mode 100644 index 4f4cef24ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1677.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1677.png deleted file mode 100644 index ff7dcb111e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1678.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1678.png deleted file mode 100644 index ad5d9aa6d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1679.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1679.png deleted file mode 100644 index f5af7fffec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1680.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1680.png deleted file mode 100644 index 1364584033..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1681.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1681.png deleted file mode 100644 index 0813556743..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1682.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1682.png deleted file mode 100644 index 76ef59781d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1683.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1683.png deleted file mode 100644 index 232282a6dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1684.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1684.png deleted file mode 100644 index e78d07fc61..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1685.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1685.png deleted file mode 100644 index 642a2ae333..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1686.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1686.png deleted file mode 100644 index 2f0630140d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1687.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1687.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1688.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1688.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1689.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1689.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1690.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1690.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1691.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1691.png deleted file mode 100644 index 7fdd43bf3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1692.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1692.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1693.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1693.png deleted file mode 100644 index 50c6d3ef53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1694.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1694.png deleted file mode 100644 index 36b3953ee7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1695.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1695.png deleted file mode 100644 index d6cf7eb430..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1696.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1696.png deleted file mode 100644 index 7876a3e462..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1697.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1697.png deleted file mode 100644 index 20fc55ab15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1698.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1698.png deleted file mode 100644 index 2f0630140d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1699.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1699.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1700.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1700.png deleted file mode 100644 index bd8af989a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1701.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1701.png deleted file mode 100644 index 1e2ee5f701..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1702.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1702.png deleted file mode 100644 index 4415b72ea2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1703.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1703.png deleted file mode 100644 index 93a58a0529..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1704.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1704.png deleted file mode 100644 index 5427ffc78d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1705.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1705.png deleted file mode 100644 index 591d1098b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1706.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1706.png deleted file mode 100644 index 09b87bf499..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1707.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1707.png deleted file mode 100644 index aae8888708..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1708.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1708.png deleted file mode 100644 index 33382f99de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1709.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1709.png deleted file mode 100644 index d04236970f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1710.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1710.png deleted file mode 100644 index 701f6e13cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1711.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1711.png deleted file mode 100644 index 4d4be29215..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1712.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1712.png deleted file mode 100644 index e8b1f66b45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1713.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1713.png deleted file mode 100644 index 611a5b9e38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1714.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1714.png deleted file mode 100644 index 031de8ba8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1715.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1715.png deleted file mode 100644 index dc874eba6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1716.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1716.png deleted file mode 100644 index 79c7eb6871..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1717.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1717.png deleted file mode 100644 index 18321024d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1718.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1718.png deleted file mode 100644 index 3eb2ebd616..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1719.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1719.png deleted file mode 100644 index d2980e4324..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1720.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1720.png deleted file mode 100644 index d2980e4324..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1721.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1721.png deleted file mode 100644 index e973d62cf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1722.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1722.png deleted file mode 100644 index 0ca39b13c1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1723.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1723.png deleted file mode 100644 index 0bffe84b0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1724.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1724.png deleted file mode 100644 index 6e93674bbb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1725.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1725.png deleted file mode 100644 index f5640e22c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1726.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1726.png deleted file mode 100644 index 0893a3cd2b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1727.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1727.png deleted file mode 100644 index c8c86689fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1728.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1728.png deleted file mode 100644 index 5f7dd69265..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1729.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1729.png deleted file mode 100644 index 7cdadd8eb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1730.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1730.png deleted file mode 100644 index 3709f974c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1731.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1731.png deleted file mode 100644 index f9f76c3167..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1732.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1732.png deleted file mode 100644 index f8c6c6249e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1733.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1733.png deleted file mode 100644 index dfcc512073..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1734.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1734.png deleted file mode 100644 index b963e4da72..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1735.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1735.png deleted file mode 100644 index fb5a89761d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1740.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1740.png deleted file mode 100644 index 8267593fe7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1741.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1741.png deleted file mode 100644 index c00699750d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1742.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1742.png deleted file mode 100644 index 6a644ce8c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1743.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1743.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1744.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1744.png deleted file mode 100644 index 503bf38822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1745.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1745.png deleted file mode 100644 index 01734d93f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1746.png b/front/public/images/large/TGregworks/tGregToolPartBowLimb/1746.png deleted file mode 100644 index b0091355a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartBowLimb/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1500.png deleted file mode 100644 index 45ffd9f051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1501.png deleted file mode 100644 index ffc28ddb53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1502.png deleted file mode 100644 index 8e8bf7daa5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1503.png deleted file mode 100644 index e6d92b3985..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1504.png deleted file mode 100644 index 98690b3d55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1505.png deleted file mode 100644 index 4708675a26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1506.png deleted file mode 100644 index 56b866699c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1507.png deleted file mode 100644 index 58171920e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1508.png deleted file mode 100644 index 47137e48bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1509.png deleted file mode 100644 index bb4890bb3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1510.png deleted file mode 100644 index 3874d68bcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1511.png deleted file mode 100644 index 47137e48bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1512.png deleted file mode 100644 index d9d8f9c826..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1513.png deleted file mode 100644 index 73c7fd00d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1514.png deleted file mode 100644 index 2b51852cf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1515.png deleted file mode 100644 index 9d4ba84eb7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1516.png deleted file mode 100644 index 6cd7b542f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1517.png deleted file mode 100644 index 51e2c8c58f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1518.png deleted file mode 100644 index 1ba7e5b80a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1519.png deleted file mode 100644 index 48932c1da1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1520.png deleted file mode 100644 index 59da3a9177..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1521.png deleted file mode 100644 index e0946acd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1522.png deleted file mode 100644 index 3e5060c4de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1523.png deleted file mode 100644 index 26cc3b99c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1524.png deleted file mode 100644 index 4b2b0bf05c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1525.png deleted file mode 100644 index 1e8b40e4f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1526.png deleted file mode 100644 index 6dbcff563f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1527.png deleted file mode 100644 index c3bacdae0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1528.png deleted file mode 100644 index 007a6e1465..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1529.png deleted file mode 100644 index b13ba8ccf3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1530.png deleted file mode 100644 index 731af53efc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1531.png deleted file mode 100644 index 10ebaaf23a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1532.png deleted file mode 100644 index 933dd250ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1533.png deleted file mode 100644 index 7102bdd5a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1534.png deleted file mode 100644 index c371907c66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1535.png deleted file mode 100644 index 096d524c00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1536.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1537.png deleted file mode 100644 index 80bd673146..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1538.png deleted file mode 100644 index 11db5538b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1539.png deleted file mode 100644 index c15fc161a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1540.png deleted file mode 100644 index 1c236c0098..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1541.png deleted file mode 100644 index 08fa9035e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1542.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1543.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1544.png deleted file mode 100644 index c36119c5b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1545.png deleted file mode 100644 index 911b7934ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1546.png deleted file mode 100644 index e2781681d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1547.png deleted file mode 100644 index 8ce06d9f17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1548.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1549.png deleted file mode 100644 index 0da6d7da59..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1550.png deleted file mode 100644 index 5b1d0ebbe1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1551.png deleted file mode 100644 index cf0cf82a8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1553.png deleted file mode 100644 index 7e75f33a26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1554.png deleted file mode 100644 index f978b87b31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1555.png deleted file mode 100644 index 9e1a794b53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1556.png deleted file mode 100644 index 2b51852cf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1557.png deleted file mode 100644 index 2b51852cf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1562.png deleted file mode 100644 index 144dfd5cb0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1563.png deleted file mode 100644 index 9e1a794b53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1564.png deleted file mode 100644 index dada701d99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1565.png deleted file mode 100644 index 74bdccb344..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1566.png deleted file mode 100644 index 83611d2345..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1567.png deleted file mode 100644 index 8e270990b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1568.png deleted file mode 100644 index 4c310e8f04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1570.png deleted file mode 100644 index 112fce6391..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1571.png deleted file mode 100644 index 4000229477..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1572.png deleted file mode 100644 index 3a98c23a72..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1573.png deleted file mode 100644 index 483042429e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1574.png deleted file mode 100644 index e0946acd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1575.png deleted file mode 100644 index 8ce06d9f17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1576.png deleted file mode 100644 index fd678c2328..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1577.png deleted file mode 100644 index 8695b41fcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1578.png deleted file mode 100644 index 083110abd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1579.png deleted file mode 100644 index 47137e48bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1582.png deleted file mode 100644 index 60f911d744..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1583.png deleted file mode 100644 index a288c894b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1584.png deleted file mode 100644 index f5b532f699..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1585.png deleted file mode 100644 index 6f8de06c94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1586.png deleted file mode 100644 index bc9e2d985c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1587.png deleted file mode 100644 index 8cad9c7a0b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1588.png deleted file mode 100644 index 9e1a794b53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1589.png deleted file mode 100644 index 5033b37beb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1590.png deleted file mode 100644 index fce9040ea4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1591.png deleted file mode 100644 index 13e26e6bd3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1592.png deleted file mode 100644 index 65ea49897c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1593.png deleted file mode 100644 index 1dedf37cc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1594.png deleted file mode 100644 index 08a42c4b05..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1595.png deleted file mode 100644 index b2f4687875..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1596.png deleted file mode 100644 index 73d43f1434..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1597.png deleted file mode 100644 index f66f930bec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1598.png deleted file mode 100644 index ed38626e6b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1599.png deleted file mode 100644 index 702f348a06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1600.png deleted file mode 100644 index 8b2a69336f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1601.png deleted file mode 100644 index b556d815e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1602.png deleted file mode 100644 index 8fb6c7ef46..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1603.png deleted file mode 100644 index ab09756385..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1604.png deleted file mode 100644 index 610c164a54..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1605.png deleted file mode 100644 index 5012dab14c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1606.png deleted file mode 100644 index 41b09ce875..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1607.png deleted file mode 100644 index 359f8736b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1608.png deleted file mode 100644 index 34e7157d3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1609.png deleted file mode 100644 index e0946acd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1610.png deleted file mode 100644 index 3874d68bcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1611.png deleted file mode 100644 index 7e6a2a44db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1612.png deleted file mode 100644 index 8dd2b9bdaa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1613.png deleted file mode 100644 index 1aa67eb16a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1614.png deleted file mode 100644 index 41b09ce875..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1615.png deleted file mode 100644 index 11db5538b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1616.png deleted file mode 100644 index 1e2631bc17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1617.png deleted file mode 100644 index 5012dab14c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1618.png deleted file mode 100644 index c0f991f99f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1619.png deleted file mode 100644 index 8245c20a69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1620.png deleted file mode 100644 index fce9040ea4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1621.png deleted file mode 100644 index efe0390c35..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1622.png deleted file mode 100644 index 011bcb8727..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1623.png deleted file mode 100644 index 9d22c7200f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1624.png deleted file mode 100644 index 26475c8942..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1625.png deleted file mode 100644 index eb2a93444c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1626.png deleted file mode 100644 index 29c556370f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1627.png deleted file mode 100644 index db7e4b5445..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1628.png deleted file mode 100644 index 15a05c50c1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1629.png deleted file mode 100644 index 7953538948..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1630.png deleted file mode 100644 index 09321aa269..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1631.png deleted file mode 100644 index 3874d68bcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1632.png deleted file mode 100644 index 6d4ace42fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1633.png deleted file mode 100644 index cd27ed5209..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1634.png deleted file mode 100644 index 52914db33a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1635.png deleted file mode 100644 index dfef82db51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1636.png deleted file mode 100644 index 42afb3e8ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1637.png deleted file mode 100644 index 6d8a37b6de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1638.png deleted file mode 100644 index d3d9a30b8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1639.png deleted file mode 100644 index 4000229477..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1640.png deleted file mode 100644 index 03c79df7f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1641.png deleted file mode 100644 index 49f98534d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1642.png deleted file mode 100644 index f5e38849cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1643.png deleted file mode 100644 index c6c08abbbf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1644.png deleted file mode 100644 index 3c7d7aec4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1645.png deleted file mode 100644 index 6d4ace42fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1646.png deleted file mode 100644 index 41b09ce875..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1647.png deleted file mode 100644 index 2b51852cf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1648.png deleted file mode 100644 index 3874d68bcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1649.png deleted file mode 100644 index 89ea43023f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1650.png deleted file mode 100644 index 35fd9e5324..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1651.png deleted file mode 100644 index bc944df2fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1652.png deleted file mode 100644 index 4238d44dba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1653.png deleted file mode 100644 index 075a98bfc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1654.png deleted file mode 100644 index 1ac13e2ff6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1655.png deleted file mode 100644 index e1a3ee9cd1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1656.png deleted file mode 100644 index 5c95f4206f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1657.png deleted file mode 100644 index e0946acd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1658.png deleted file mode 100644 index ebd71017c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1659.png deleted file mode 100644 index fd62c57f1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1660.png deleted file mode 100644 index f2624babff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1661.png deleted file mode 100644 index e42a8d89eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1662.png deleted file mode 100644 index c81bef7479..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1663.png deleted file mode 100644 index 61741393a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1664.png deleted file mode 100644 index 87022488d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1665.png deleted file mode 100644 index 3516edfc12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1666.png deleted file mode 100644 index 9658be94a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1667.png deleted file mode 100644 index 9a34542368..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1668.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1670.png deleted file mode 100644 index 42de874a99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1672.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1673.png deleted file mode 100644 index 681e0f5357..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1674.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1675.png deleted file mode 100644 index 41b09ce875..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1676.png deleted file mode 100644 index d90699c15c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1677.png deleted file mode 100644 index caedb8a113..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1678.png deleted file mode 100644 index cf920553cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1679.png deleted file mode 100644 index 83c640f99a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1680.png deleted file mode 100644 index a427948970..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1681.png deleted file mode 100644 index 09e37d119d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1682.png deleted file mode 100644 index 7473483d5d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1683.png deleted file mode 100644 index 3863c6bdb7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1684.png deleted file mode 100644 index 54ecccdf1b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1685.png deleted file mode 100644 index 0ee3202605..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1686.png deleted file mode 100644 index e0946acd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1687.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1688.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1689.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1690.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1691.png deleted file mode 100644 index 84ae1683c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1692.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1693.png deleted file mode 100644 index f9630206bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1694.png deleted file mode 100644 index 6229a0baf5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1695.png deleted file mode 100644 index 2b5574b268..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1696.png deleted file mode 100644 index 2ed6938725..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1697.png deleted file mode 100644 index b60623e3ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1698.png deleted file mode 100644 index e0946acd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1699.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1700.png deleted file mode 100644 index b6250e9cc9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1701.png deleted file mode 100644 index 3b6d5208a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1702.png deleted file mode 100644 index b80c82282d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1703.png deleted file mode 100644 index 6f8b18ea34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1704.png deleted file mode 100644 index db2346f040..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1705.png deleted file mode 100644 index d2dd8f08d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1706.png deleted file mode 100644 index 3874d68bcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1707.png deleted file mode 100644 index 943ecdbf0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1708.png deleted file mode 100644 index 98690b3d55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1709.png deleted file mode 100644 index f553d6c3fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1710.png deleted file mode 100644 index 48466992e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1711.png deleted file mode 100644 index f415af4bcc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1712.png deleted file mode 100644 index 7f507d827a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1713.png deleted file mode 100644 index 7216648c01..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1714.png deleted file mode 100644 index 00a5b09a66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1715.png deleted file mode 100644 index fdf033246d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1716.png deleted file mode 100644 index aebe9d7919..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1717.png deleted file mode 100644 index 8a4240870b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1718.png deleted file mode 100644 index fdeccdc91f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1719.png deleted file mode 100644 index 81bec5dc2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1720.png deleted file mode 100644 index 81bec5dc2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1721.png deleted file mode 100644 index 517dc2753f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1722.png deleted file mode 100644 index 714899e97d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1723.png deleted file mode 100644 index d3160de90e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1724.png deleted file mode 100644 index f73fff1ba0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1725.png deleted file mode 100644 index 5ee2601899..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1726.png deleted file mode 100644 index c0b761a21b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1727.png deleted file mode 100644 index dc7c442ecf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1728.png deleted file mode 100644 index 279fa2bd14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1729.png deleted file mode 100644 index 09f25d7b47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1730.png deleted file mode 100644 index 1bf9c27e29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1731.png deleted file mode 100644 index f367fd90c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1732.png deleted file mode 100644 index ca2ace580c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1733.png deleted file mode 100644 index c9fc779859..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1734.png deleted file mode 100644 index ad22d2cee1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1735.png deleted file mode 100644 index ea82aba545..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1740.png deleted file mode 100644 index 55cef1baee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1741.png deleted file mode 100644 index 300a507bdf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1742.png deleted file mode 100644 index 95ad11b643..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1743.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1744.png deleted file mode 100644 index 434d3bcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1745.png deleted file mode 100644 index dde327339b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartChiselHead/1746.png deleted file mode 100644 index e7b6995be7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChiselHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1500.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1500.png deleted file mode 100644 index 3ffdbd612a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1501.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1501.png deleted file mode 100644 index 57776853f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1502.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1502.png deleted file mode 100644 index bf3851a1be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1503.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1503.png deleted file mode 100644 index 76dee8ec78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1504.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1504.png deleted file mode 100644 index 30d4830f4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1505.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1505.png deleted file mode 100644 index d21e8af9e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1506.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1506.png deleted file mode 100644 index 2c7cfffb76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1507.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1507.png deleted file mode 100644 index 5a815f74f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1508.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1508.png deleted file mode 100644 index 7c15f4ef76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1509.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1509.png deleted file mode 100644 index 8acaf6af34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1510.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1510.png deleted file mode 100644 index 69fa60dd23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1511.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1511.png deleted file mode 100644 index 7c15f4ef76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1512.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1512.png deleted file mode 100644 index 169fb706a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1513.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1513.png deleted file mode 100644 index 7fae15f4c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1514.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1514.png deleted file mode 100644 index 47b7385e37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1515.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1515.png deleted file mode 100644 index e4faacac9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1516.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1516.png deleted file mode 100644 index c51d6bb69c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1517.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1517.png deleted file mode 100644 index 13aacce179..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1518.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1518.png deleted file mode 100644 index e5c4058f9f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1519.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1519.png deleted file mode 100644 index 46fe2c790f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1520.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1520.png deleted file mode 100644 index f5f0d26638..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1521.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1521.png deleted file mode 100644 index 3b7d3e14d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1522.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1522.png deleted file mode 100644 index 7e96accf5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1523.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1523.png deleted file mode 100644 index 99338270e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1524.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1524.png deleted file mode 100644 index 8e609bc50a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1525.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1525.png deleted file mode 100644 index 21331329e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1526.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1526.png deleted file mode 100644 index c776fd65a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1527.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1527.png deleted file mode 100644 index dba6e1029a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1528.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1528.png deleted file mode 100644 index a7e5018d3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1529.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1529.png deleted file mode 100644 index a046bab89e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1530.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1530.png deleted file mode 100644 index 89a7eef099..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1531.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1531.png deleted file mode 100644 index f8cfcaa425..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1532.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1532.png deleted file mode 100644 index 31bbaa2bc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1533.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1533.png deleted file mode 100644 index 1be84f1eb7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1534.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1534.png deleted file mode 100644 index 89b2a7c8f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1535.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1535.png deleted file mode 100644 index 1afcbe181d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1536.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1536.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1537.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1537.png deleted file mode 100644 index 246d5e97a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1538.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1538.png deleted file mode 100644 index d5a767693e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1539.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1539.png deleted file mode 100644 index 3d5ec52bb9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1540.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1540.png deleted file mode 100644 index 0827480aa0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1541.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1541.png deleted file mode 100644 index adf788658c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1542.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1542.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1543.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1543.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1544.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1544.png deleted file mode 100644 index f9f2b801ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1545.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1545.png deleted file mode 100644 index 61e60c6e21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1546.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1546.png deleted file mode 100644 index 278a836d7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1547.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1547.png deleted file mode 100644 index 2202c5c5bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1548.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1548.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1549.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1549.png deleted file mode 100644 index e7188014a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1550.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1550.png deleted file mode 100644 index a4a5948ed2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1551.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1551.png deleted file mode 100644 index fee5c13eda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1553.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1553.png deleted file mode 100644 index c0be50e243..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1554.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1554.png deleted file mode 100644 index d6a09aa3d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1555.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1555.png deleted file mode 100644 index 75bead872b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1556.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1556.png deleted file mode 100644 index 47b7385e37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1557.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1557.png deleted file mode 100644 index 47b7385e37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1562.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1562.png deleted file mode 100644 index 563cd9bf6c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1563.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1563.png deleted file mode 100644 index 75bead872b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1564.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1564.png deleted file mode 100644 index 4819d555d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1565.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1565.png deleted file mode 100644 index 170da4fb21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1566.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1566.png deleted file mode 100644 index 9b9b7b8d10..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1567.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1567.png deleted file mode 100644 index b4cda05256..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1568.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1568.png deleted file mode 100644 index a4627b7134..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1570.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1570.png deleted file mode 100644 index e455c0344b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1571.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1571.png deleted file mode 100644 index 65f46c28e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1572.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1572.png deleted file mode 100644 index 9dbd05dc4c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1573.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1573.png deleted file mode 100644 index 33748eb522..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1574.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1574.png deleted file mode 100644 index 3b7d3e14d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1575.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1575.png deleted file mode 100644 index 2202c5c5bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1576.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1576.png deleted file mode 100644 index a6fd6de408..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1577.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1577.png deleted file mode 100644 index fe88850cc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1578.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1578.png deleted file mode 100644 index bd407e4582..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1579.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1579.png deleted file mode 100644 index 7c15f4ef76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1582.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1582.png deleted file mode 100644 index 2d191fc209..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1583.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1583.png deleted file mode 100644 index bcab07fc22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1584.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1584.png deleted file mode 100644 index 77b67a00b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1585.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1585.png deleted file mode 100644 index 5ae888e96b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1586.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1586.png deleted file mode 100644 index 880ad10ef0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1587.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1587.png deleted file mode 100644 index c35b6d9eb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1588.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1588.png deleted file mode 100644 index 75bead872b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1589.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1589.png deleted file mode 100644 index b164d30f2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1590.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1590.png deleted file mode 100644 index 85022b3399..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1591.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1591.png deleted file mode 100644 index 76ce8ff2dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1592.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1592.png deleted file mode 100644 index 9d2fed9aff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1593.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1593.png deleted file mode 100644 index c7e7936da4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1594.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1594.png deleted file mode 100644 index 2ae378943c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1595.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1595.png deleted file mode 100644 index 5663a8ca76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1596.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1596.png deleted file mode 100644 index 7b217e105f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1597.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1597.png deleted file mode 100644 index f1a60f9c56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1598.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1598.png deleted file mode 100644 index 6ef9e7bec1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1599.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1599.png deleted file mode 100644 index 6f497b2264..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1600.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1600.png deleted file mode 100644 index 44bb59a6ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1601.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1601.png deleted file mode 100644 index e97fd5364a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1602.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1602.png deleted file mode 100644 index b6dcfa2f5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1603.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1603.png deleted file mode 100644 index 56a893ec1e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1604.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1604.png deleted file mode 100644 index 80bf7b25c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1605.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1605.png deleted file mode 100644 index 07b1b1fd62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1606.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1606.png deleted file mode 100644 index ff70f6d5d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1607.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1607.png deleted file mode 100644 index 236d6b1ff8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1608.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1608.png deleted file mode 100644 index 9fcab18eeb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1609.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1609.png deleted file mode 100644 index 3b7d3e14d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1610.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1610.png deleted file mode 100644 index 69fa60dd23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1611.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1611.png deleted file mode 100644 index ad69d5cba8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1612.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1612.png deleted file mode 100644 index 83325931d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1613.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1613.png deleted file mode 100644 index 67334a8e66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1614.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1614.png deleted file mode 100644 index ff70f6d5d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1615.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1615.png deleted file mode 100644 index d5a767693e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1616.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1616.png deleted file mode 100644 index e6b4be951f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1617.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1617.png deleted file mode 100644 index 07b1b1fd62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1618.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1618.png deleted file mode 100644 index a2ba806dd7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1619.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1619.png deleted file mode 100644 index 6e3034236c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1620.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1620.png deleted file mode 100644 index 85022b3399..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1621.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1621.png deleted file mode 100644 index 46ea9c6842..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1622.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1622.png deleted file mode 100644 index c1e7d00d88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1623.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1623.png deleted file mode 100644 index 4dd0ac43c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1624.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1624.png deleted file mode 100644 index bf45819960..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1625.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1625.png deleted file mode 100644 index 945369ff09..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1626.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1626.png deleted file mode 100644 index c181be707d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1627.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1627.png deleted file mode 100644 index 6315b0cbb4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1628.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1628.png deleted file mode 100644 index a596ccb365..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1629.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1629.png deleted file mode 100644 index 69d79305d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1630.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1630.png deleted file mode 100644 index 9a15046421..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1631.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1631.png deleted file mode 100644 index 69fa60dd23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1632.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1632.png deleted file mode 100644 index 5fac860ef9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1633.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1633.png deleted file mode 100644 index b8fdc6d0d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1634.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1634.png deleted file mode 100644 index f409371ec9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1635.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1635.png deleted file mode 100644 index bcd7571e88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1636.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1636.png deleted file mode 100644 index bcb3fcc3c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1637.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1637.png deleted file mode 100644 index 7402d889a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1638.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1638.png deleted file mode 100644 index aa79944a47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1639.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1639.png deleted file mode 100644 index 65f46c28e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1640.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1640.png deleted file mode 100644 index 51054f9cd5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1641.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1641.png deleted file mode 100644 index 2956113d30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1642.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1642.png deleted file mode 100644 index 482a9c206c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1643.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1643.png deleted file mode 100644 index c884839750..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1644.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1644.png deleted file mode 100644 index 54fbf34218..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1645.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1645.png deleted file mode 100644 index 5fac860ef9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1646.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1646.png deleted file mode 100644 index ff70f6d5d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1647.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1647.png deleted file mode 100644 index 47b7385e37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1648.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1648.png deleted file mode 100644 index 69fa60dd23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1649.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1649.png deleted file mode 100644 index a79631789e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1650.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1650.png deleted file mode 100644 index 4fcbcc8255..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1651.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1651.png deleted file mode 100644 index 90dc5e57ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1652.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1652.png deleted file mode 100644 index 33d99b4224..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1653.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1653.png deleted file mode 100644 index 6815d140ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1654.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1654.png deleted file mode 100644 index 265961b6a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1655.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1655.png deleted file mode 100644 index 6041d51582..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1656.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1656.png deleted file mode 100644 index 92fc2cca69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1657.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1657.png deleted file mode 100644 index 3b7d3e14d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1658.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1658.png deleted file mode 100644 index eb5fdd094d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1659.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1659.png deleted file mode 100644 index f5722e72bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1660.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1660.png deleted file mode 100644 index a850fc1055..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1661.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1661.png deleted file mode 100644 index 8b9f075307..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1662.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1662.png deleted file mode 100644 index 6e3fec4fa0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1663.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1663.png deleted file mode 100644 index f9c48647a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1664.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1664.png deleted file mode 100644 index 949bc2aedd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1665.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1665.png deleted file mode 100644 index b1a54afad9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1666.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1666.png deleted file mode 100644 index 0418ac834b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1667.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1667.png deleted file mode 100644 index 45537fc1d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1668.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1668.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1670.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1670.png deleted file mode 100644 index 32d4fe5f64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1672.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1672.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1673.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1673.png deleted file mode 100644 index 1f9eea1b97..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1674.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1674.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1675.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1675.png deleted file mode 100644 index ff70f6d5d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1676.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1676.png deleted file mode 100644 index e6c77c3b5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1677.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1677.png deleted file mode 100644 index c9e64b306a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1678.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1678.png deleted file mode 100644 index 5c2036dd46..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1679.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1679.png deleted file mode 100644 index f465869734..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1680.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1680.png deleted file mode 100644 index d567ce4fcc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1681.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1681.png deleted file mode 100644 index c6b6f53266..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1682.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1682.png deleted file mode 100644 index 6c65912787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1683.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1683.png deleted file mode 100644 index f48bf62fe7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1684.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1684.png deleted file mode 100644 index ca3145a974..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1685.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1685.png deleted file mode 100644 index 7ddf36cd4e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1686.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1686.png deleted file mode 100644 index 3b7d3e14d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1687.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1687.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1688.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1688.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1689.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1689.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1690.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1690.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1691.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1691.png deleted file mode 100644 index f90018f1ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1692.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1692.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1693.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1693.png deleted file mode 100644 index c6df7f3d24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1694.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1694.png deleted file mode 100644 index c3a8f6ef26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1695.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1695.png deleted file mode 100644 index 118caa5678..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1696.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1696.png deleted file mode 100644 index 69d792da15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1697.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1697.png deleted file mode 100644 index 128d388fbd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1698.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1698.png deleted file mode 100644 index 3b7d3e14d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1699.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1699.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1700.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1700.png deleted file mode 100644 index 2ea84e9aa2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1701.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1701.png deleted file mode 100644 index 770c421b51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1702.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1702.png deleted file mode 100644 index e48f8fe7a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1703.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1703.png deleted file mode 100644 index 5093144324..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1704.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1704.png deleted file mode 100644 index 3657460f86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1705.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1705.png deleted file mode 100644 index 1c20738044..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1706.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1706.png deleted file mode 100644 index 69fa60dd23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1707.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1707.png deleted file mode 100644 index 92e9964da9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1708.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1708.png deleted file mode 100644 index 30d4830f4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1709.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1709.png deleted file mode 100644 index 137b271975..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1710.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1710.png deleted file mode 100644 index 65a9518298..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1711.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1711.png deleted file mode 100644 index 772bff710a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1712.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1712.png deleted file mode 100644 index 7eb3f30630..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1713.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1713.png deleted file mode 100644 index 5c574936e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1714.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1714.png deleted file mode 100644 index 9e096648a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1715.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1715.png deleted file mode 100644 index acd3a56c7d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1716.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1716.png deleted file mode 100644 index af334e116e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1717.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1717.png deleted file mode 100644 index 981fe0217d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1718.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1718.png deleted file mode 100644 index 0f4d07f276..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1719.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1719.png deleted file mode 100644 index 7a5d02b1d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1720.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1720.png deleted file mode 100644 index 7a5d02b1d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1721.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1721.png deleted file mode 100644 index a840967c5d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1722.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1722.png deleted file mode 100644 index 2a86302627..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1723.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1723.png deleted file mode 100644 index 692aac13c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1724.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1724.png deleted file mode 100644 index 0ae1cf58f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1725.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1725.png deleted file mode 100644 index 0c95a5188c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1726.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1726.png deleted file mode 100644 index 03f6d215bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1727.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1727.png deleted file mode 100644 index ca81869cd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1728.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1728.png deleted file mode 100644 index 1ea95812dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1729.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1729.png deleted file mode 100644 index 2bfc9362b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1730.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1730.png deleted file mode 100644 index 260fe4544d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1731.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1731.png deleted file mode 100644 index c058b08a79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1732.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1732.png deleted file mode 100644 index bbc4b1eb77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1733.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1733.png deleted file mode 100644 index 9b900d7c9c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1734.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1734.png deleted file mode 100644 index c471c355de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1735.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1735.png deleted file mode 100644 index 6ca4258e15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1740.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1740.png deleted file mode 100644 index 1fecd4082a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1741.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1741.png deleted file mode 100644 index ec774f31be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1742.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1742.png deleted file mode 100644 index 903638e792..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1743.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1743.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1744.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1744.png deleted file mode 100644 index 46626f2314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1745.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1745.png deleted file mode 100644 index 517b89c65a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartChunk/1746.png b/front/public/images/large/TGregworks/tGregToolPartChunk/1746.png deleted file mode 100644 index cb28ea5a37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartChunk/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1500.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1500.png deleted file mode 100644 index 7d4b4e46cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1501.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1501.png deleted file mode 100644 index 010628ded5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1502.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1502.png deleted file mode 100644 index aea007aad4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1503.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1503.png deleted file mode 100644 index 819f527602..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1504.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1504.png deleted file mode 100644 index dd406af9b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1505.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1505.png deleted file mode 100644 index 66c68045ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1506.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1506.png deleted file mode 100644 index 1d8b13215f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1507.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1507.png deleted file mode 100644 index b9c558935d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1508.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1508.png deleted file mode 100644 index 9240baeaf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1509.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1509.png deleted file mode 100644 index b963c644ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1510.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1510.png deleted file mode 100644 index 36b72d3103..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1511.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1511.png deleted file mode 100644 index 9240baeaf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1512.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1512.png deleted file mode 100644 index 77e6eb54ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1513.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1513.png deleted file mode 100644 index 3e3190c350..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1514.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1514.png deleted file mode 100644 index 9f4184290c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1515.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1515.png deleted file mode 100644 index 3f0eb7b3dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1516.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1516.png deleted file mode 100644 index 9090e9dd32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1517.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1517.png deleted file mode 100644 index 41bd86f485..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1518.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1518.png deleted file mode 100644 index 8cf4263e9f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1519.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1519.png deleted file mode 100644 index 0295df8a26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1520.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1520.png deleted file mode 100644 index c0c22c20ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1521.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1521.png deleted file mode 100644 index 0c3215bac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1522.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1522.png deleted file mode 100644 index 7e96ce1bcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1523.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1523.png deleted file mode 100644 index daa119045f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1524.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1524.png deleted file mode 100644 index bea13f8496..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1525.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1525.png deleted file mode 100644 index b89077eca8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1526.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1526.png deleted file mode 100644 index 615d42816f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1527.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1527.png deleted file mode 100644 index 84c20820a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1528.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1528.png deleted file mode 100644 index 7e4c5f7820..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1529.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1529.png deleted file mode 100644 index 9020738670..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1530.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1530.png deleted file mode 100644 index d7b6ed7352..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1531.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1531.png deleted file mode 100644 index c5761c3c78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1532.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1532.png deleted file mode 100644 index fa3ac890a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1533.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1533.png deleted file mode 100644 index 9575a8250f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1534.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1534.png deleted file mode 100644 index 94a5e08fa0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1535.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1535.png deleted file mode 100644 index 2eeada037f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1536.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1536.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1537.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1537.png deleted file mode 100644 index 35b7a18fc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1538.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1538.png deleted file mode 100644 index b9a7e4b8a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1539.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1539.png deleted file mode 100644 index df5cf3e4ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1540.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1540.png deleted file mode 100644 index e41ca88bb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1541.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1541.png deleted file mode 100644 index 6aed06d9b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1542.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1542.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1543.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1543.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1544.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1544.png deleted file mode 100644 index 1b64220e0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1545.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1545.png deleted file mode 100644 index 642ab2f9bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1546.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1546.png deleted file mode 100644 index bd4f013a0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1547.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1547.png deleted file mode 100644 index 7e48f75648..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1548.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1548.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1549.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1549.png deleted file mode 100644 index 74e241900c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1550.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1550.png deleted file mode 100644 index 2fe8878c3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1551.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1551.png deleted file mode 100644 index ab137b1ac8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1553.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1553.png deleted file mode 100644 index 5fba0ffcc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1554.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1554.png deleted file mode 100644 index 2eac158e18..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1555.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1555.png deleted file mode 100644 index a73bb00898..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1556.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1556.png deleted file mode 100644 index 9f4184290c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1557.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1557.png deleted file mode 100644 index 9f4184290c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1562.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1562.png deleted file mode 100644 index 574ad10c14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1563.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1563.png deleted file mode 100644 index a73bb00898..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1564.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1564.png deleted file mode 100644 index 2c482a7d37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1565.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1565.png deleted file mode 100644 index ec6ac4e7a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1566.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1566.png deleted file mode 100644 index ece67dd11e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1567.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1567.png deleted file mode 100644 index c29ec62598..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1568.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1568.png deleted file mode 100644 index cb13daaebf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1570.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1570.png deleted file mode 100644 index 9b33ee7273..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1571.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1571.png deleted file mode 100644 index 63a6053cbb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1572.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1572.png deleted file mode 100644 index 58269477e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1573.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1573.png deleted file mode 100644 index f1444706c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1574.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1574.png deleted file mode 100644 index 0c3215bac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1575.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1575.png deleted file mode 100644 index 7e48f75648..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1576.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1576.png deleted file mode 100644 index 2b5e278e71..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1577.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1577.png deleted file mode 100644 index ad8b43cc28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1578.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1578.png deleted file mode 100644 index 73626d909e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1579.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1579.png deleted file mode 100644 index 9240baeaf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1582.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1582.png deleted file mode 100644 index d5e62e4a88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1583.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1583.png deleted file mode 100644 index 006863bb56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1584.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1584.png deleted file mode 100644 index 522ecb6c93..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1585.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1585.png deleted file mode 100644 index 6a7a077e1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1586.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1586.png deleted file mode 100644 index 2210145500..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1587.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1587.png deleted file mode 100644 index f6df6a5e7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1588.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1588.png deleted file mode 100644 index a73bb00898..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1589.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1589.png deleted file mode 100644 index a619ac428b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1590.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1590.png deleted file mode 100644 index 30b72935a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1591.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1591.png deleted file mode 100644 index 893ec1468e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1592.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1592.png deleted file mode 100644 index 44adfbf100..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1593.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1593.png deleted file mode 100644 index 78db71f8c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1594.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1594.png deleted file mode 100644 index 5a2e0b573c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1595.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1595.png deleted file mode 100644 index 374ec79fbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1596.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1596.png deleted file mode 100644 index c3c5b59ba8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1597.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1597.png deleted file mode 100644 index c032f4ec52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1598.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1598.png deleted file mode 100644 index ddf7adb7ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1599.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1599.png deleted file mode 100644 index 8f6088af3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1600.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1600.png deleted file mode 100644 index 5b3fac8b53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1601.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1601.png deleted file mode 100644 index 35960b5633..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1602.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1602.png deleted file mode 100644 index 6d5aa2d12e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1603.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1603.png deleted file mode 100644 index ae6f9da270..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1604.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1604.png deleted file mode 100644 index a2309832ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1605.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1605.png deleted file mode 100644 index d26af77df9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1606.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1606.png deleted file mode 100644 index 49ddecdd1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1607.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1607.png deleted file mode 100644 index de98d7abd1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1608.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1608.png deleted file mode 100644 index 375ac668c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1609.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1609.png deleted file mode 100644 index 0c3215bac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1610.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1610.png deleted file mode 100644 index 36b72d3103..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1611.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1611.png deleted file mode 100644 index 26aac8bd4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1612.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1612.png deleted file mode 100644 index 23c3440a50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1613.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1613.png deleted file mode 100644 index 90368e36ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1614.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1614.png deleted file mode 100644 index 49ddecdd1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1615.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1615.png deleted file mode 100644 index b9a7e4b8a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1616.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1616.png deleted file mode 100644 index 80ae41edec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1617.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1617.png deleted file mode 100644 index d26af77df9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1618.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1618.png deleted file mode 100644 index c9d973dacb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1619.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1619.png deleted file mode 100644 index df94b724d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1620.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1620.png deleted file mode 100644 index 30b72935a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1621.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1621.png deleted file mode 100644 index 939b4599d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1622.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1622.png deleted file mode 100644 index 32012d851e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1623.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1623.png deleted file mode 100644 index 64604adff2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1624.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1624.png deleted file mode 100644 index 315d9f8cce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1625.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1625.png deleted file mode 100644 index 1ce6afcbad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1626.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1626.png deleted file mode 100644 index 6aa4316c0b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1627.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1627.png deleted file mode 100644 index a84e6aaf9d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1628.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1628.png deleted file mode 100644 index deaa231510..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1629.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1629.png deleted file mode 100644 index 942b836fcc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1630.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1630.png deleted file mode 100644 index 4887d15c60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1631.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1631.png deleted file mode 100644 index 36b72d3103..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1632.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1632.png deleted file mode 100644 index 046a03a908..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1633.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1633.png deleted file mode 100644 index f425792998..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1634.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1634.png deleted file mode 100644 index 93dd569f34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1635.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1635.png deleted file mode 100644 index 517abd79fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1636.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1636.png deleted file mode 100644 index 5da860508b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1637.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1637.png deleted file mode 100644 index e144ea3485..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1638.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1638.png deleted file mode 100644 index d1b5bb14b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1639.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1639.png deleted file mode 100644 index 63a6053cbb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1640.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1640.png deleted file mode 100644 index fa1399b70b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1641.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1641.png deleted file mode 100644 index 72726e6325..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1642.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1642.png deleted file mode 100644 index 8a23e9d69d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1643.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1643.png deleted file mode 100644 index e20a5850c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1644.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1644.png deleted file mode 100644 index 084f83a993..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1645.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1645.png deleted file mode 100644 index 046a03a908..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1646.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1646.png deleted file mode 100644 index 49ddecdd1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1647.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1647.png deleted file mode 100644 index 9f4184290c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1648.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1648.png deleted file mode 100644 index 36b72d3103..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1649.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1649.png deleted file mode 100644 index 0e7a871700..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1650.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1650.png deleted file mode 100644 index 3d9e88ed72..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1651.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1651.png deleted file mode 100644 index fa346102cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1652.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1652.png deleted file mode 100644 index 77325acf7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1653.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1653.png deleted file mode 100644 index 0ba61138aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1654.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1654.png deleted file mode 100644 index 4fe3d168ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1655.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1655.png deleted file mode 100644 index d02dcbc5d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1656.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1656.png deleted file mode 100644 index 4f2635172d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1657.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1657.png deleted file mode 100644 index 0c3215bac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1658.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1658.png deleted file mode 100644 index 57c31b1cc5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1659.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1659.png deleted file mode 100644 index 8d7e33d97f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1660.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1660.png deleted file mode 100644 index 57ad968458..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1661.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1661.png deleted file mode 100644 index 9b7a33fdf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1662.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1662.png deleted file mode 100644 index 5008624a14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1663.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1663.png deleted file mode 100644 index d4eae3e18e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1664.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1664.png deleted file mode 100644 index d2b70aa75b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1665.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1665.png deleted file mode 100644 index 5d224f6fe0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1666.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1666.png deleted file mode 100644 index eda18dbad9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1667.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1667.png deleted file mode 100644 index b840dfed77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1668.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1668.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1670.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1670.png deleted file mode 100644 index e9e5396dcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1672.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1672.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1673.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1673.png deleted file mode 100644 index 44a3f63a69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1674.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1674.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1675.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1675.png deleted file mode 100644 index 49ddecdd1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1676.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1676.png deleted file mode 100644 index f6f821eefe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1677.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1677.png deleted file mode 100644 index 496c80377c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1678.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1678.png deleted file mode 100644 index c958b2a2b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1679.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1679.png deleted file mode 100644 index 54e68e17cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1680.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1680.png deleted file mode 100644 index 62478a86e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1681.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1681.png deleted file mode 100644 index 137510af96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1682.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1682.png deleted file mode 100644 index 6579b55b3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1683.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1683.png deleted file mode 100644 index 98eeb55289..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1684.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1684.png deleted file mode 100644 index f0407b4bf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1685.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1685.png deleted file mode 100644 index 127dee3659..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1686.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1686.png deleted file mode 100644 index 0c3215bac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1687.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1687.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1688.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1688.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1689.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1689.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1690.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1690.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1691.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1691.png deleted file mode 100644 index 78b1c77f5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1692.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1692.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1693.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1693.png deleted file mode 100644 index b3fce61ced..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1694.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1694.png deleted file mode 100644 index f6b492c16b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1695.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1695.png deleted file mode 100644 index 622469c9cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1696.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1696.png deleted file mode 100644 index 34c47052b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1697.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1697.png deleted file mode 100644 index 69599cda34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1698.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1698.png deleted file mode 100644 index 0c3215bac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1699.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1699.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1700.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1700.png deleted file mode 100644 index af7cf76505..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1701.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1701.png deleted file mode 100644 index 628b162a10..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1702.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1702.png deleted file mode 100644 index 6379a1dcfb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1703.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1703.png deleted file mode 100644 index 520d42ef86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1704.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1704.png deleted file mode 100644 index 23768746b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1705.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1705.png deleted file mode 100644 index 5ddeedf5f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1706.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1706.png deleted file mode 100644 index 36b72d3103..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1707.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1707.png deleted file mode 100644 index 7be4384489..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1708.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1708.png deleted file mode 100644 index dd406af9b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1709.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1709.png deleted file mode 100644 index 426140cd22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1710.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1710.png deleted file mode 100644 index be5ee8c9f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1711.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1711.png deleted file mode 100644 index d34631c92c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1712.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1712.png deleted file mode 100644 index dada3502ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1713.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1713.png deleted file mode 100644 index 38b254de0a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1714.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1714.png deleted file mode 100644 index a1b59943dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1715.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1715.png deleted file mode 100644 index b555ef7f08..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1716.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1716.png deleted file mode 100644 index 110cfba153..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1717.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1717.png deleted file mode 100644 index d2b96eb5a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1718.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1718.png deleted file mode 100644 index 786db2de64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1719.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1719.png deleted file mode 100644 index b6e1114417..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1720.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1720.png deleted file mode 100644 index b6e1114417..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1721.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1721.png deleted file mode 100644 index 3da5cbfa92..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1722.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1722.png deleted file mode 100644 index 9dfd019723..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1723.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1723.png deleted file mode 100644 index 9f77612274..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1724.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1724.png deleted file mode 100644 index 2322f81bd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1725.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1725.png deleted file mode 100644 index f3e44c9067..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1726.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1726.png deleted file mode 100644 index c88621fa75..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1727.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1727.png deleted file mode 100644 index 63c3c815be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1728.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1728.png deleted file mode 100644 index 3386392717..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1729.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1729.png deleted file mode 100644 index 1674ec2177..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1730.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1730.png deleted file mode 100644 index 02dcccaa75..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1731.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1731.png deleted file mode 100644 index b1e37fb98c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1732.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1732.png deleted file mode 100644 index aa8fc51b1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1733.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1733.png deleted file mode 100644 index bc42bdee6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1734.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1734.png deleted file mode 100644 index b4c551bd73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1735.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1735.png deleted file mode 100644 index 24d736b959..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1740.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1740.png deleted file mode 100644 index 6cbf5a37f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1741.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1741.png deleted file mode 100644 index f5c5f1794a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1742.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1742.png deleted file mode 100644 index 6ea9c15d63..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1743.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1743.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1744.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1744.png deleted file mode 100644 index c640eebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1745.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1745.png deleted file mode 100644 index e8ca9ec9a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1746.png b/front/public/images/large/TGregworks/tGregToolPartCrossbar/1746.png deleted file mode 100644 index 33423344ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbar/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1500.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1500.png deleted file mode 100644 index bb48a333c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1501.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1501.png deleted file mode 100644 index 6f970b05e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1502.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1502.png deleted file mode 100644 index 9ac881d4e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1503.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1503.png deleted file mode 100644 index b070fd96d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1504.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1504.png deleted file mode 100644 index ecc9074a87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1505.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1505.png deleted file mode 100644 index ca5c833aae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1506.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1506.png deleted file mode 100644 index bbf3a2376c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1507.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1507.png deleted file mode 100644 index 7c2125c9ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1508.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1508.png deleted file mode 100644 index ff4311f986..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1509.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1509.png deleted file mode 100644 index 155787c0d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1510.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1510.png deleted file mode 100644 index 563ace8c3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1511.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1511.png deleted file mode 100644 index ff4311f986..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1512.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1512.png deleted file mode 100644 index 29056698d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1513.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1513.png deleted file mode 100644 index c6e06532a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1514.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1514.png deleted file mode 100644 index 53f6fc7be6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1515.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1515.png deleted file mode 100644 index 82cd1cef43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1516.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1516.png deleted file mode 100644 index cd8030f137..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1517.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1517.png deleted file mode 100644 index 672d0b0a60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1518.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1518.png deleted file mode 100644 index 1355d4039b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1519.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1519.png deleted file mode 100644 index 8184d769ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1520.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1520.png deleted file mode 100644 index 8e7250a5b0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1521.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1521.png deleted file mode 100644 index 0f4938ea12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1522.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1522.png deleted file mode 100644 index 4e531e433b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1523.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1523.png deleted file mode 100644 index 917d9ace21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1524.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1524.png deleted file mode 100644 index fef55d798e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1525.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1525.png deleted file mode 100644 index ad9afedba8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1526.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1526.png deleted file mode 100644 index 6f105eb8e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1527.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1527.png deleted file mode 100644 index bd563b2485..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1528.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1528.png deleted file mode 100644 index c032c323e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1529.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1529.png deleted file mode 100644 index 874e418fb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1530.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1530.png deleted file mode 100644 index 105b8aa821..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1531.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1531.png deleted file mode 100644 index ab55d5efcd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1532.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1532.png deleted file mode 100644 index ea5117a88f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1533.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1533.png deleted file mode 100644 index 3a16786255..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1534.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1534.png deleted file mode 100644 index 14f2ee2caf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1535.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1535.png deleted file mode 100644 index d92c99ee14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1536.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1536.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1537.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1537.png deleted file mode 100644 index 718259e41e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1538.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1538.png deleted file mode 100644 index 981a509e0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1539.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1539.png deleted file mode 100644 index 6c50b8e1b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1540.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1540.png deleted file mode 100644 index b208448b67..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1541.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1541.png deleted file mode 100644 index afa86dacc2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1542.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1542.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1543.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1543.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1544.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1544.png deleted file mode 100644 index f40ed40836..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1545.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1545.png deleted file mode 100644 index aca88505fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1546.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1546.png deleted file mode 100644 index 4a9b11491c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1547.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1547.png deleted file mode 100644 index 839f9cdd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1548.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1548.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1549.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1549.png deleted file mode 100644 index 327afa632f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1550.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1550.png deleted file mode 100644 index e10ef26ea6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1551.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1551.png deleted file mode 100644 index 171ddcd28c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1553.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1553.png deleted file mode 100644 index 7bc085a604..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1554.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1554.png deleted file mode 100644 index a8a5b1155c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1555.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1555.png deleted file mode 100644 index 71df2c5f06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1556.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1556.png deleted file mode 100644 index 53f6fc7be6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1557.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1557.png deleted file mode 100644 index 53f6fc7be6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1562.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1562.png deleted file mode 100644 index 6865de9b5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1563.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1563.png deleted file mode 100644 index 71df2c5f06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1564.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1564.png deleted file mode 100644 index df8797459c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1565.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1565.png deleted file mode 100644 index 6367177790..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1566.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1566.png deleted file mode 100644 index 1e21578ce7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1567.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1567.png deleted file mode 100644 index c16708842c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1568.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1568.png deleted file mode 100644 index 0d1bbcbe22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1570.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1570.png deleted file mode 100644 index 0cd3e4281f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1571.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1571.png deleted file mode 100644 index 87fb1d9d8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1572.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1572.png deleted file mode 100644 index 799bc4cce9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1573.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1573.png deleted file mode 100644 index 2ad12251a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1574.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1574.png deleted file mode 100644 index 0f4938ea12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1575.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1575.png deleted file mode 100644 index 839f9cdd13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1576.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1576.png deleted file mode 100644 index 5134796d76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1577.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1577.png deleted file mode 100644 index 60288c6cbf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1578.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1578.png deleted file mode 100644 index f377e7bb6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1579.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1579.png deleted file mode 100644 index ff4311f986..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1582.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1582.png deleted file mode 100644 index bfcc61fd2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1583.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1583.png deleted file mode 100644 index 6e4ababfd6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1584.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1584.png deleted file mode 100644 index 8e07ee5bd4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1585.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1585.png deleted file mode 100644 index b561346a15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1586.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1586.png deleted file mode 100644 index 19663c4ba9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1587.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1587.png deleted file mode 100644 index b9e703f543..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1588.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1588.png deleted file mode 100644 index 71df2c5f06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1589.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1589.png deleted file mode 100644 index dfc449f157..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1590.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1590.png deleted file mode 100644 index c83323f55b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1591.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1591.png deleted file mode 100644 index 00a86f8e14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1592.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1592.png deleted file mode 100644 index 1401d717c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1593.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1593.png deleted file mode 100644 index a95ce41843..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1594.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1594.png deleted file mode 100644 index 1a66b06306..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1595.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1595.png deleted file mode 100644 index c3b3f5298e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1596.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1596.png deleted file mode 100644 index 2d12afe586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1597.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1597.png deleted file mode 100644 index 793bf327f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1598.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1598.png deleted file mode 100644 index a061f9bfb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1599.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1599.png deleted file mode 100644 index 118958470f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1600.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1600.png deleted file mode 100644 index 3f4c1d0559..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1601.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1601.png deleted file mode 100644 index a6dcec8721..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1602.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1602.png deleted file mode 100644 index b972c5b975..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1603.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1603.png deleted file mode 100644 index 1fa031b30b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1604.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1604.png deleted file mode 100644 index e1c35b89ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1605.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1605.png deleted file mode 100644 index 155475ade7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1606.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1606.png deleted file mode 100644 index ccf7233c0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1607.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1607.png deleted file mode 100644 index 9e08a238e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1608.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1608.png deleted file mode 100644 index df3398cc05..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1609.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1609.png deleted file mode 100644 index 0f4938ea12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1610.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1610.png deleted file mode 100644 index 563ace8c3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1611.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1611.png deleted file mode 100644 index ef39e08624..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1612.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1612.png deleted file mode 100644 index 1d91dac27b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1613.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1613.png deleted file mode 100644 index 8d0a2fd06c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1614.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1614.png deleted file mode 100644 index ccf7233c0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1615.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1615.png deleted file mode 100644 index 981a509e0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1616.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1616.png deleted file mode 100644 index 4a189c947a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1617.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1617.png deleted file mode 100644 index 155475ade7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1618.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1618.png deleted file mode 100644 index 7538060868..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1619.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1619.png deleted file mode 100644 index a0b545cd55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1620.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1620.png deleted file mode 100644 index c83323f55b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1621.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1621.png deleted file mode 100644 index f6cb8f69e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1622.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1622.png deleted file mode 100644 index fa88d437ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1623.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1623.png deleted file mode 100644 index e275e240f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1624.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1624.png deleted file mode 100644 index 17d66dbf7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1625.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1625.png deleted file mode 100644 index 07a371a891..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1626.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1626.png deleted file mode 100644 index 495d8dfd48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1627.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1627.png deleted file mode 100644 index b84540698d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1628.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1628.png deleted file mode 100644 index e9c095ab15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1629.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1629.png deleted file mode 100644 index edfd408eec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1630.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1630.png deleted file mode 100644 index c1f9d5022c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1631.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1631.png deleted file mode 100644 index 563ace8c3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1632.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1632.png deleted file mode 100644 index 6d9580cb7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1633.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1633.png deleted file mode 100644 index 4b8631e48c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1634.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1634.png deleted file mode 100644 index 26703d19de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1635.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1635.png deleted file mode 100644 index 3365af645d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1636.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1636.png deleted file mode 100644 index 7ff884aca3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1637.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1637.png deleted file mode 100644 index 4b9b7277f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1638.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1638.png deleted file mode 100644 index 12af700370..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1639.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1639.png deleted file mode 100644 index 87fb1d9d8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1640.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1640.png deleted file mode 100644 index af8809c6fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1641.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1641.png deleted file mode 100644 index 9e382c0b94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1642.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1642.png deleted file mode 100644 index 687539d9fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1643.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1643.png deleted file mode 100644 index b8a5954b48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1644.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1644.png deleted file mode 100644 index e30aef5c17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1645.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1645.png deleted file mode 100644 index 6d9580cb7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1646.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1646.png deleted file mode 100644 index ccf7233c0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1647.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1647.png deleted file mode 100644 index 53f6fc7be6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1648.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1648.png deleted file mode 100644 index 563ace8c3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1649.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1649.png deleted file mode 100644 index fc2139b8ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1650.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1650.png deleted file mode 100644 index 343909943a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1651.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1651.png deleted file mode 100644 index bbda53f484..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1652.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1652.png deleted file mode 100644 index aa714ec474..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1653.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1653.png deleted file mode 100644 index 16256786ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1654.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1654.png deleted file mode 100644 index fe6f1b5564..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1655.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1655.png deleted file mode 100644 index 3325f79a7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1656.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1656.png deleted file mode 100644 index d336c91945..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1657.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1657.png deleted file mode 100644 index 0f4938ea12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1658.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1658.png deleted file mode 100644 index a69d7bc903..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1659.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1659.png deleted file mode 100644 index 9e720ba211..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1660.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1660.png deleted file mode 100644 index 870aed1efe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1661.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1661.png deleted file mode 100644 index 56235b9a43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1662.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1662.png deleted file mode 100644 index 3325c6ec77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1663.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1663.png deleted file mode 100644 index 1fc6b406cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1664.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1664.png deleted file mode 100644 index 0744f37a13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1665.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1665.png deleted file mode 100644 index c8da788553..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1666.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1666.png deleted file mode 100644 index c563a33634..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1667.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1667.png deleted file mode 100644 index f2cf406fa4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1668.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1668.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1670.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1670.png deleted file mode 100644 index dc85e5f489..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1672.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1672.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1673.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1673.png deleted file mode 100644 index 72907db934..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1674.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1674.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1675.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1675.png deleted file mode 100644 index ccf7233c0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1676.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1676.png deleted file mode 100644 index 7a21f5e8e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1677.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1677.png deleted file mode 100644 index 92cf706f55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1678.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1678.png deleted file mode 100644 index 2636ef801d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1679.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1679.png deleted file mode 100644 index 8b236f1710..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1680.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1680.png deleted file mode 100644 index afbb9f487c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1681.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1681.png deleted file mode 100644 index acb8148cfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1682.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1682.png deleted file mode 100644 index 9c16a49840..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1683.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1683.png deleted file mode 100644 index 150574cc55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1684.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1684.png deleted file mode 100644 index b212354e9c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1685.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1685.png deleted file mode 100644 index aad40a5f45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1686.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1686.png deleted file mode 100644 index 0f4938ea12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1687.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1687.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1688.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1688.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1689.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1689.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1690.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1690.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1691.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1691.png deleted file mode 100644 index c5978ed131..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1692.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1692.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1693.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1693.png deleted file mode 100644 index 941051f6a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1694.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1694.png deleted file mode 100644 index c4777a2f51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1695.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1695.png deleted file mode 100644 index dee2e68d1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1696.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1696.png deleted file mode 100644 index 5dd080b69a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1697.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1697.png deleted file mode 100644 index 5ae917fa4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1698.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1698.png deleted file mode 100644 index 0f4938ea12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1699.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1699.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1700.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1700.png deleted file mode 100644 index 1cceae1511..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1701.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1701.png deleted file mode 100644 index 21a64ab8aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1702.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1702.png deleted file mode 100644 index 605a3296c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1703.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1703.png deleted file mode 100644 index ddf080568f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1704.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1704.png deleted file mode 100644 index 601e178f84..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1705.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1705.png deleted file mode 100644 index 14eab5da3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1706.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1706.png deleted file mode 100644 index 563ace8c3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1707.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1707.png deleted file mode 100644 index 9b54a5b323..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1708.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1708.png deleted file mode 100644 index ecc9074a87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1709.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1709.png deleted file mode 100644 index e5b5a1667e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1710.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1710.png deleted file mode 100644 index 87f052327a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1711.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1711.png deleted file mode 100644 index 5b6f7861b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1712.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1712.png deleted file mode 100644 index 5daef85ebb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1713.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1713.png deleted file mode 100644 index cccd6535a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1714.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1714.png deleted file mode 100644 index 45fa486c5a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1715.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1715.png deleted file mode 100644 index 7bfb74212e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1716.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1716.png deleted file mode 100644 index 9817e500e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1717.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1717.png deleted file mode 100644 index d7fc030a6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1718.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1718.png deleted file mode 100644 index 8bace332c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1719.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1719.png deleted file mode 100644 index 5055db2eb3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1720.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1720.png deleted file mode 100644 index 5055db2eb3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1721.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1721.png deleted file mode 100644 index 763e65edbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1722.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1722.png deleted file mode 100644 index fe5b68d160..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1723.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1723.png deleted file mode 100644 index f4a5bd19f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1724.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1724.png deleted file mode 100644 index 3d513ff6e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1725.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1725.png deleted file mode 100644 index 17aafe7e94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1726.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1726.png deleted file mode 100644 index 42ee492ec3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1727.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1727.png deleted file mode 100644 index 506e7f2c6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1728.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1728.png deleted file mode 100644 index 96064c9a32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1729.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1729.png deleted file mode 100644 index dcf2c3011c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1730.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1730.png deleted file mode 100644 index 8b6c9da063..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1731.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1731.png deleted file mode 100644 index fb13d499db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1732.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1732.png deleted file mode 100644 index b6798d09da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1733.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1733.png deleted file mode 100644 index 290e81084d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1734.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1734.png deleted file mode 100644 index 495c5f7458..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1735.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1735.png deleted file mode 100644 index ffa17ff82a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1740.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1740.png deleted file mode 100644 index b52630c814..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1741.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1741.png deleted file mode 100644 index e72dc4ea7a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1742.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1742.png deleted file mode 100644 index 799b5860be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1743.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1743.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1744.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1744.png deleted file mode 100644 index 8ae393c80c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1745.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1745.png deleted file mode 100644 index 15d5dcabc1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1746.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1746.png deleted file mode 100644 index 7945c73f1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowBody/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1500.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1500.png deleted file mode 100644 index 320edc55d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1501.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1501.png deleted file mode 100644 index 99b1f2da38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1502.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1502.png deleted file mode 100644 index 5f41f28dab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1503.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1503.png deleted file mode 100644 index e6b891b153..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1504.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1504.png deleted file mode 100644 index a5d909ee21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1505.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1505.png deleted file mode 100644 index c5992f463a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1506.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1506.png deleted file mode 100644 index e0b313383a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1507.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1507.png deleted file mode 100644 index 0bc10d2766..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1508.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1508.png deleted file mode 100644 index b4d1322936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1509.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1509.png deleted file mode 100644 index 4a0a7f55d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1510.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1510.png deleted file mode 100644 index 3833c5b5ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1511.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1511.png deleted file mode 100644 index b4d1322936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1512.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1512.png deleted file mode 100644 index 310f6289bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1513.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1513.png deleted file mode 100644 index caeaff7022..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1514.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1514.png deleted file mode 100644 index 0038033632..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1515.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1515.png deleted file mode 100644 index 342ec83466..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1516.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1516.png deleted file mode 100644 index 7f65a3532c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1517.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1517.png deleted file mode 100644 index 0a018bf8ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1518.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1518.png deleted file mode 100644 index 9686ef86fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1519.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1519.png deleted file mode 100644 index edede34b63..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1520.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1520.png deleted file mode 100644 index b753f0f75a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1521.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1521.png deleted file mode 100644 index c304ff6a34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1522.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1522.png deleted file mode 100644 index cb543357be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1523.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1523.png deleted file mode 100644 index 6b67d74257..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1524.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1524.png deleted file mode 100644 index f505f87d3d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1525.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1525.png deleted file mode 100644 index 9b59df73c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1526.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1526.png deleted file mode 100644 index 6e38e34b65..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1527.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1527.png deleted file mode 100644 index 225314e73f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1528.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1528.png deleted file mode 100644 index 20e8dbe153..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1529.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1529.png deleted file mode 100644 index 3b0898193a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1530.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1530.png deleted file mode 100644 index 0fc14f000c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1531.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1531.png deleted file mode 100644 index e501415e30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1532.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1532.png deleted file mode 100644 index cbfcc91d2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1533.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1533.png deleted file mode 100644 index a34c5619eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1534.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1534.png deleted file mode 100644 index 4e1c7bfaaa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1535.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1535.png deleted file mode 100644 index 9297df2936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1536.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1536.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1537.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1537.png deleted file mode 100644 index 427d212064..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1538.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1538.png deleted file mode 100644 index 5b28d2bca5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1539.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1539.png deleted file mode 100644 index 3dffa9c9e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1540.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1540.png deleted file mode 100644 index 2ecb5baf24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1541.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1541.png deleted file mode 100644 index 6855107ed5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1542.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1542.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1543.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1543.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1544.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1544.png deleted file mode 100644 index 41e3a9c8af..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1545.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1545.png deleted file mode 100644 index 639e86c745..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1546.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1546.png deleted file mode 100644 index 999fd8a3cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1547.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1547.png deleted file mode 100644 index afb1709c62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1548.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1548.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1549.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1549.png deleted file mode 100644 index d928f9bfb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1550.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1550.png deleted file mode 100644 index 1da8832d5b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1551.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1551.png deleted file mode 100644 index e4bf804fbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1553.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1553.png deleted file mode 100644 index 5296414b63..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1554.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1554.png deleted file mode 100644 index cf5e665be2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1555.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1555.png deleted file mode 100644 index 03bbb68e68..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1556.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1556.png deleted file mode 100644 index 0038033632..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1557.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1557.png deleted file mode 100644 index 0038033632..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1562.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1562.png deleted file mode 100644 index 03605f62d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1563.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1563.png deleted file mode 100644 index 03bbb68e68..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1564.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1564.png deleted file mode 100644 index 931af6ac6f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1565.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1565.png deleted file mode 100644 index 9907a40635..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1566.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1566.png deleted file mode 100644 index cc06f07aaf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1567.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1567.png deleted file mode 100644 index a71b057cb2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1568.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1568.png deleted file mode 100644 index 619ef02240..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1570.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1570.png deleted file mode 100644 index 6331d10c75..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1571.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1571.png deleted file mode 100644 index 1e58812101..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1572.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1572.png deleted file mode 100644 index e08aea8145..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1573.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1573.png deleted file mode 100644 index 9f6542ad57..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1574.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1574.png deleted file mode 100644 index c304ff6a34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1575.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1575.png deleted file mode 100644 index afb1709c62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1576.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1576.png deleted file mode 100644 index 8735c69e0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1577.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1577.png deleted file mode 100644 index 3e7bc0ace6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1578.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1578.png deleted file mode 100644 index 33f280d68b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1579.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1579.png deleted file mode 100644 index b4d1322936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1582.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1582.png deleted file mode 100644 index 8a8e3ee889..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1583.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1583.png deleted file mode 100644 index b483a692c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1584.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1584.png deleted file mode 100644 index 1f18a8eba2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1585.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1585.png deleted file mode 100644 index b0e53332e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1586.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1586.png deleted file mode 100644 index 3e4d92cab7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1587.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1587.png deleted file mode 100644 index a7d1aad21c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1588.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1588.png deleted file mode 100644 index 03bbb68e68..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1589.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1589.png deleted file mode 100644 index a1d7e390b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1590.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1590.png deleted file mode 100644 index 6b5b795d66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1591.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1591.png deleted file mode 100644 index ae2e388630..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1592.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1592.png deleted file mode 100644 index 637fe6c480..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1593.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1593.png deleted file mode 100644 index c6337f403a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1594.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1594.png deleted file mode 100644 index db2e93e0fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1595.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1595.png deleted file mode 100644 index f6e6463afa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1596.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1596.png deleted file mode 100644 index 173d91e687..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1597.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1597.png deleted file mode 100644 index 2da2683e4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1598.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1598.png deleted file mode 100644 index 67cd228001..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1599.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1599.png deleted file mode 100644 index a8fb576cee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1600.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1600.png deleted file mode 100644 index 0ca73b4236..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1601.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1601.png deleted file mode 100644 index 35a4a6bda0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1602.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1602.png deleted file mode 100644 index 62e2fbb1ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1603.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1603.png deleted file mode 100644 index 62c8f22175..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1604.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1604.png deleted file mode 100644 index 70c82fc0ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1605.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1605.png deleted file mode 100644 index 821b34147d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1606.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1606.png deleted file mode 100644 index b3d163f97f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1607.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1607.png deleted file mode 100644 index cd6b91822b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1608.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1608.png deleted file mode 100644 index 0a0b724737..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1609.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1609.png deleted file mode 100644 index c304ff6a34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1610.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1610.png deleted file mode 100644 index 3833c5b5ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1611.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1611.png deleted file mode 100644 index c1537fb504..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1612.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1612.png deleted file mode 100644 index e454dce135..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1613.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1613.png deleted file mode 100644 index 2b4cbb744a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1614.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1614.png deleted file mode 100644 index b3d163f97f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1615.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1615.png deleted file mode 100644 index 5b28d2bca5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1616.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1616.png deleted file mode 100644 index 748ec27686..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1617.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1617.png deleted file mode 100644 index 821b34147d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1618.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1618.png deleted file mode 100644 index 09b7f0848f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1619.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1619.png deleted file mode 100644 index 70b2f61198..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1620.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1620.png deleted file mode 100644 index 6b5b795d66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1621.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1621.png deleted file mode 100644 index 4ea56d405a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1622.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1622.png deleted file mode 100644 index 826b5abb48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1623.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1623.png deleted file mode 100644 index 63b88fd00a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1624.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1624.png deleted file mode 100644 index 24616962df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1625.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1625.png deleted file mode 100644 index 45bc8ac515..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1626.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1626.png deleted file mode 100644 index 4c3eeef8f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1627.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1627.png deleted file mode 100644 index dd7d89a9f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1628.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1628.png deleted file mode 100644 index ce31ca3605..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1629.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1629.png deleted file mode 100644 index 0d94b60d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1630.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1630.png deleted file mode 100644 index 88827b0b13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1631.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1631.png deleted file mode 100644 index 3833c5b5ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1632.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1632.png deleted file mode 100644 index 75ddb89952..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1633.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1633.png deleted file mode 100644 index 2525c929a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1634.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1634.png deleted file mode 100644 index 395cf0d99d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1635.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1635.png deleted file mode 100644 index 7df77dd6ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1636.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1636.png deleted file mode 100644 index ad7ac5a216..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1637.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1637.png deleted file mode 100644 index 49c7dd28e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1638.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1638.png deleted file mode 100644 index aeb5c83008..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1639.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1639.png deleted file mode 100644 index 1e58812101..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1640.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1640.png deleted file mode 100644 index f21a26c8b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1641.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1641.png deleted file mode 100644 index 8d1a644be5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1642.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1642.png deleted file mode 100644 index a4f18827a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1643.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1643.png deleted file mode 100644 index b253e9f15d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1644.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1644.png deleted file mode 100644 index 61cb35e7d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1645.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1645.png deleted file mode 100644 index 75ddb89952..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1646.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1646.png deleted file mode 100644 index b3d163f97f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1647.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1647.png deleted file mode 100644 index 0038033632..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1648.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1648.png deleted file mode 100644 index 3833c5b5ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1649.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1649.png deleted file mode 100644 index 155234a9c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1650.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1650.png deleted file mode 100644 index fc654c7290..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1651.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1651.png deleted file mode 100644 index a52ea7278d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1652.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1652.png deleted file mode 100644 index ecc4964293..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1653.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1653.png deleted file mode 100644 index f54197eebc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1654.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1654.png deleted file mode 100644 index 986dadcf44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1655.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1655.png deleted file mode 100644 index 22bb972b4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1656.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1656.png deleted file mode 100644 index 715ce11f7a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1657.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1657.png deleted file mode 100644 index c304ff6a34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1658.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1658.png deleted file mode 100644 index 5734bd8d53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1659.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1659.png deleted file mode 100644 index 332d8f7288..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1660.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1660.png deleted file mode 100644 index 5d926b81fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1661.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1661.png deleted file mode 100644 index 05bd1104e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1662.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1662.png deleted file mode 100644 index 7708975eb4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1663.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1663.png deleted file mode 100644 index f3ce810519..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1664.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1664.png deleted file mode 100644 index ba7f8c5ffa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1665.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1665.png deleted file mode 100644 index 14dd81a584..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1666.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1666.png deleted file mode 100644 index 1b67e85377..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1667.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1667.png deleted file mode 100644 index e32cef3ff2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1668.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1668.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1670.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1670.png deleted file mode 100644 index e1274d39e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1672.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1672.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1673.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1673.png deleted file mode 100644 index a3b90b4ce0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1674.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1674.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1675.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1675.png deleted file mode 100644 index b3d163f97f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1676.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1676.png deleted file mode 100644 index 6f4fccd233..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1677.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1677.png deleted file mode 100644 index bf62bff5d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1678.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1678.png deleted file mode 100644 index c1308470c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1679.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1679.png deleted file mode 100644 index f99255fc43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1680.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1680.png deleted file mode 100644 index 02d1f8979d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1681.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1681.png deleted file mode 100644 index ffba6276c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1682.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1682.png deleted file mode 100644 index f34e7cd68e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1683.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1683.png deleted file mode 100644 index 56bae8f93a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1684.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1684.png deleted file mode 100644 index af2af1faa3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1685.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1685.png deleted file mode 100644 index 8e79d2aeee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1686.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1686.png deleted file mode 100644 index c304ff6a34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1687.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1687.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1688.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1688.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1689.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1689.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1690.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1690.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1691.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1691.png deleted file mode 100644 index e766ac3c82..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1692.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1692.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1693.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1693.png deleted file mode 100644 index 39f3d7f41f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1694.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1694.png deleted file mode 100644 index e3bd6cdeff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1695.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1695.png deleted file mode 100644 index b4c54440e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1696.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1696.png deleted file mode 100644 index 996202287c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1697.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1697.png deleted file mode 100644 index ac63cb4b6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1698.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1698.png deleted file mode 100644 index c304ff6a34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1699.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1699.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1700.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1700.png deleted file mode 100644 index ec7365c0b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1701.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1701.png deleted file mode 100644 index 2c82b208b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1702.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1702.png deleted file mode 100644 index e57a6db042..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1703.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1703.png deleted file mode 100644 index a1cc646a3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1704.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1704.png deleted file mode 100644 index bb1333e9cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1705.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1705.png deleted file mode 100644 index 92b387fd64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1706.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1706.png deleted file mode 100644 index 3833c5b5ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1707.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1707.png deleted file mode 100644 index c44e522ff1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1708.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1708.png deleted file mode 100644 index a5d909ee21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1709.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1709.png deleted file mode 100644 index 7ad4f31997..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1710.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1710.png deleted file mode 100644 index ad4ddfcf5b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1711.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1711.png deleted file mode 100644 index 8313cf893d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1712.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1712.png deleted file mode 100644 index ccde2a0f6c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1713.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1713.png deleted file mode 100644 index 7147811bbd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1714.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1714.png deleted file mode 100644 index 56f1f0bf43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1715.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1715.png deleted file mode 100644 index 991a6142e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1716.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1716.png deleted file mode 100644 index 200fbe9893..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1717.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1717.png deleted file mode 100644 index 8ab20524f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1718.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1718.png deleted file mode 100644 index 46fbbe6808..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1719.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1719.png deleted file mode 100644 index 5364a2edcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1720.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1720.png deleted file mode 100644 index 5364a2edcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1721.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1721.png deleted file mode 100644 index bc023943cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1722.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1722.png deleted file mode 100644 index 0d663dcc63..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1723.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1723.png deleted file mode 100644 index 15529c6308..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1724.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1724.png deleted file mode 100644 index 571fcc24ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1725.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1725.png deleted file mode 100644 index 3d4f034720..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1726.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1726.png deleted file mode 100644 index 0865ff7da8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1727.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1727.png deleted file mode 100644 index 41264925b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1728.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1728.png deleted file mode 100644 index e930a1b06f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1729.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1729.png deleted file mode 100644 index e86be7224a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1730.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1730.png deleted file mode 100644 index 5e057edf94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1731.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1731.png deleted file mode 100644 index 1bcf2d6a9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1732.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1732.png deleted file mode 100644 index e6524c550b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1733.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1733.png deleted file mode 100644 index 12a3bf4b98..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1734.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1734.png deleted file mode 100644 index bd8014696b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1735.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1735.png deleted file mode 100644 index f175ebdd16..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1740.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1740.png deleted file mode 100644 index e00e5ca133..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1741.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1741.png deleted file mode 100644 index 978296964f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1742.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1742.png deleted file mode 100644 index a87f1caa82..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1743.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1743.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1744.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1744.png deleted file mode 100644 index ca18231330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1745.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1745.png deleted file mode 100644 index 480c6ba59b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1746.png b/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1746.png deleted file mode 100644 index 3daefab680..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartCrossbowLimb/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1500.png deleted file mode 100644 index d7d3485105..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1501.png deleted file mode 100644 index 48672dc961..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1502.png deleted file mode 100644 index 79c93ae886..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1503.png deleted file mode 100644 index 236f6c4779..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1504.png deleted file mode 100644 index d144fa0a96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1505.png deleted file mode 100644 index b9be41002f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1506.png deleted file mode 100644 index 95a95f22f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1507.png deleted file mode 100644 index 97a96ede18..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1508.png deleted file mode 100644 index 4488db43f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1509.png deleted file mode 100644 index cdae19e49a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1510.png deleted file mode 100644 index 3d55f40c9d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1511.png deleted file mode 100644 index 4488db43f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1512.png deleted file mode 100644 index 34cadf7db0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1513.png deleted file mode 100644 index a153b0bfc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1514.png deleted file mode 100644 index 5ae7090f8a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1515.png deleted file mode 100644 index dec0be3785..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1516.png deleted file mode 100644 index 544eb7b955..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1517.png deleted file mode 100644 index 8a8705d7e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1518.png deleted file mode 100644 index 48a4cb47a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1519.png deleted file mode 100644 index f5cca1e456..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1520.png deleted file mode 100644 index 70ff81b516..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1521.png deleted file mode 100644 index ace93f4b9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1522.png deleted file mode 100644 index 5acbfe7ac3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1523.png deleted file mode 100644 index 96e2767f9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1524.png deleted file mode 100644 index 2edf4312f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1525.png deleted file mode 100644 index ca4cf83ffc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1526.png deleted file mode 100644 index 2505dd2c71..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1527.png deleted file mode 100644 index ebdb04b0e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1528.png deleted file mode 100644 index 17e5fa1160..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1529.png deleted file mode 100644 index 8aaaef9e58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1530.png deleted file mode 100644 index 8def6eae7a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1531.png deleted file mode 100644 index 5f8689c8e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1532.png deleted file mode 100644 index c08ee1c416..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1533.png deleted file mode 100644 index aa88527bc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1534.png deleted file mode 100644 index 28ac54a02c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1535.png deleted file mode 100644 index bb0e2107b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1536.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1537.png deleted file mode 100644 index 08f52b02af..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1538.png deleted file mode 100644 index aa574bbb3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1539.png deleted file mode 100644 index e4a72692ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1540.png deleted file mode 100644 index 2f4c38b500..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1541.png deleted file mode 100644 index b8cc6b2848..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1542.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1543.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1544.png deleted file mode 100644 index 8b66ee8277..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1545.png deleted file mode 100644 index 9c18a20c4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1546.png deleted file mode 100644 index 580325866f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1547.png deleted file mode 100644 index 3c7796fa79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1548.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1549.png deleted file mode 100644 index be73a35b2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1550.png deleted file mode 100644 index 012f5ac5a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1551.png deleted file mode 100644 index 8cefc9635a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1553.png deleted file mode 100644 index 17f257186f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1554.png deleted file mode 100644 index 19ea246ef5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1555.png deleted file mode 100644 index 2f524640f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1556.png deleted file mode 100644 index 5ae7090f8a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1557.png deleted file mode 100644 index 5ae7090f8a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1562.png deleted file mode 100644 index d53558209d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1563.png deleted file mode 100644 index 2f524640f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1564.png deleted file mode 100644 index a7c4090aa2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1565.png deleted file mode 100644 index ec83aaacf7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1566.png deleted file mode 100644 index e7533b41b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1567.png deleted file mode 100644 index caca807929..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1568.png deleted file mode 100644 index 1491476f3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1570.png deleted file mode 100644 index f4aaa04315..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1571.png deleted file mode 100644 index ba61078f67..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1572.png deleted file mode 100644 index 53ecaa9916..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1573.png deleted file mode 100644 index 9f685b5786..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1574.png deleted file mode 100644 index ace93f4b9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1575.png deleted file mode 100644 index 3c7796fa79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1576.png deleted file mode 100644 index a6e4775d44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1577.png deleted file mode 100644 index 96ff587408..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1578.png deleted file mode 100644 index 0307fb619d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1579.png deleted file mode 100644 index 4488db43f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1582.png deleted file mode 100644 index 7d0f078803..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1583.png deleted file mode 100644 index 2de7963523..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1584.png deleted file mode 100644 index 718c0135a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1585.png deleted file mode 100644 index da2d17ed73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1586.png deleted file mode 100644 index e8acf9110c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1587.png deleted file mode 100644 index 07b6b4b09c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1588.png deleted file mode 100644 index 2f524640f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1589.png deleted file mode 100644 index 2200133a2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1590.png deleted file mode 100644 index 7ce6895148..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1591.png deleted file mode 100644 index a25143f48a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1592.png deleted file mode 100644 index 85a73d8abb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1593.png deleted file mode 100644 index 651ea5f32c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1594.png deleted file mode 100644 index 757af5ad6b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1595.png deleted file mode 100644 index 63c50c2fda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1596.png deleted file mode 100644 index 44ff1bb4db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1597.png deleted file mode 100644 index 93dbceb719..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1598.png deleted file mode 100644 index ac0aae7e43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1599.png deleted file mode 100644 index cda699a8ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1600.png deleted file mode 100644 index dab11c1d69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1601.png deleted file mode 100644 index f2d1bccf13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1602.png deleted file mode 100644 index b9e62b43d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1603.png deleted file mode 100644 index 97e9d0d174..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1604.png deleted file mode 100644 index dcbb2b4cb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1605.png deleted file mode 100644 index eed70782a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1606.png deleted file mode 100644 index b419ec097d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1607.png deleted file mode 100644 index 349a38c739..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1608.png deleted file mode 100644 index ae431ae071..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1609.png deleted file mode 100644 index ace93f4b9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1610.png deleted file mode 100644 index 3d55f40c9d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1611.png deleted file mode 100644 index d7fdecdf5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1612.png deleted file mode 100644 index 37b2fd7754..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1613.png deleted file mode 100644 index f278c877c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1614.png deleted file mode 100644 index b419ec097d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1615.png deleted file mode 100644 index aa574bbb3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1616.png deleted file mode 100644 index a52c734cfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1617.png deleted file mode 100644 index eed70782a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1618.png deleted file mode 100644 index 3882caa07c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1619.png deleted file mode 100644 index 484bdb14b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1620.png deleted file mode 100644 index 7ce6895148..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1621.png deleted file mode 100644 index 9a6670eaee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1622.png deleted file mode 100644 index 562c69b29d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1623.png deleted file mode 100644 index fed5ea0d2b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1624.png deleted file mode 100644 index c27d0be6d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1625.png deleted file mode 100644 index 5cd64fe5dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1626.png deleted file mode 100644 index 56c9b6a5e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1627.png deleted file mode 100644 index b6f5197f37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1628.png deleted file mode 100644 index ebbbaec84b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1629.png deleted file mode 100644 index 5db4bb1105..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1630.png deleted file mode 100644 index f7a27fbdd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1631.png deleted file mode 100644 index 3d55f40c9d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1632.png deleted file mode 100644 index e2f9e575b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1633.png deleted file mode 100644 index eba355fd7a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1634.png deleted file mode 100644 index 66ad56e3f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1635.png deleted file mode 100644 index 045bd8babf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1636.png deleted file mode 100644 index bfbf3f2cfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1637.png deleted file mode 100644 index 1d5904b814..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1638.png deleted file mode 100644 index 4eeaeeed82..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1639.png deleted file mode 100644 index ba61078f67..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1640.png deleted file mode 100644 index 5629b11e78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1641.png deleted file mode 100644 index c0364d5f59..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1642.png deleted file mode 100644 index be7aeef6b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1643.png deleted file mode 100644 index 129858aea1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1644.png deleted file mode 100644 index d19cd449ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1645.png deleted file mode 100644 index e2f9e575b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1646.png deleted file mode 100644 index b419ec097d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1647.png deleted file mode 100644 index 5ae7090f8a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1648.png deleted file mode 100644 index 3d55f40c9d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1649.png deleted file mode 100644 index edfa2f96b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1650.png deleted file mode 100644 index 6b762c5c14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1651.png deleted file mode 100644 index 0946dc09ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1652.png deleted file mode 100644 index 66ef504bd8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1653.png deleted file mode 100644 index bae4c0ab46..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1654.png deleted file mode 100644 index 2154b97533..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1655.png deleted file mode 100644 index a3a2cb3388..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1656.png deleted file mode 100644 index 15e4a26e32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1657.png deleted file mode 100644 index ace93f4b9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1658.png deleted file mode 100644 index 31b52cea82..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1659.png deleted file mode 100644 index 5827616c63..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1660.png deleted file mode 100644 index 0c55f309b0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1661.png deleted file mode 100644 index 6594816f19..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1662.png deleted file mode 100644 index 05560e5952..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1663.png deleted file mode 100644 index b858c247e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1664.png deleted file mode 100644 index 4530fc23eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1665.png deleted file mode 100644 index 52c065812a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1666.png deleted file mode 100644 index 57e5241c44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1667.png deleted file mode 100644 index 91a278a3b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1668.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1670.png deleted file mode 100644 index fc252eb05c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1672.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1673.png deleted file mode 100644 index b02fb55222..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1674.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1675.png deleted file mode 100644 index b419ec097d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1676.png deleted file mode 100644 index 064117eef3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1677.png deleted file mode 100644 index de66c70312..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1678.png deleted file mode 100644 index cb181b9bde..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1679.png deleted file mode 100644 index 8227cc0a12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1680.png deleted file mode 100644 index 90c3e3080b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1681.png deleted file mode 100644 index 607db1b8f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1682.png deleted file mode 100644 index 0a49f74cfa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1683.png deleted file mode 100644 index 865c228c78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1684.png deleted file mode 100644 index c85bb47cd3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1685.png deleted file mode 100644 index 904488eac5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1686.png deleted file mode 100644 index ace93f4b9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1687.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1688.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1689.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1690.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1691.png deleted file mode 100644 index 5386e86951..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1692.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1693.png deleted file mode 100644 index 383451edb9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1694.png deleted file mode 100644 index 7eb94b1aea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1695.png deleted file mode 100644 index 48dce8dcbf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1696.png deleted file mode 100644 index ef0282e969..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1697.png deleted file mode 100644 index 912400050e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1698.png deleted file mode 100644 index ace93f4b9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1699.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1700.png deleted file mode 100644 index e2c85a6c4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1701.png deleted file mode 100644 index b01e3d6c5b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1702.png deleted file mode 100644 index bbe210c2cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1703.png deleted file mode 100644 index ec5ac8c2dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1704.png deleted file mode 100644 index 8c238d05b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1705.png deleted file mode 100644 index e787c76fe6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1706.png deleted file mode 100644 index 3d55f40c9d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1707.png deleted file mode 100644 index 2df9c099d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1708.png deleted file mode 100644 index d144fa0a96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1709.png deleted file mode 100644 index c3054a03d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1710.png deleted file mode 100644 index 16cdb9c72b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1711.png deleted file mode 100644 index 41e28ec407..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1712.png deleted file mode 100644 index 6aa3442452..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1713.png deleted file mode 100644 index 14abebab37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1714.png deleted file mode 100644 index a3ccc54121..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1715.png deleted file mode 100644 index a4815bde36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1716.png deleted file mode 100644 index c3133b2a80..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1717.png deleted file mode 100644 index cfc00e1248..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1718.png deleted file mode 100644 index 391e963aea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1719.png deleted file mode 100644 index 54a642bffa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1720.png deleted file mode 100644 index 54a642bffa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1721.png deleted file mode 100644 index 79e62124ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1722.png deleted file mode 100644 index a4eb6320d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1723.png deleted file mode 100644 index 9b98daf113..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1724.png deleted file mode 100644 index 3bfc1ff801..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1725.png deleted file mode 100644 index 720675c4f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1726.png deleted file mode 100644 index 93f66253eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1727.png deleted file mode 100644 index 54a5dd27a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1728.png deleted file mode 100644 index 232e943f51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1729.png deleted file mode 100644 index b766edebd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1730.png deleted file mode 100644 index d3d1d2559d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1731.png deleted file mode 100644 index 5191e3fce6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1732.png deleted file mode 100644 index 542807a8dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1733.png deleted file mode 100644 index 003cf05f78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1734.png deleted file mode 100644 index 4570c040fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1735.png deleted file mode 100644 index 5a34f7d3c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1740.png deleted file mode 100644 index f4c33f79b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1741.png deleted file mode 100644 index 6b3aff04b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1742.png deleted file mode 100644 index 0efbf5d690..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1743.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1744.png deleted file mode 100644 index 71305d8771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1745.png deleted file mode 100644 index 8ca900de60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1746.png deleted file mode 100644 index aa5c366555..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartExcavatorHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1500.png deleted file mode 100644 index fa4089d127..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1501.png deleted file mode 100644 index 384322720c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1502.png deleted file mode 100644 index 51964ebe49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1503.png deleted file mode 100644 index 05f5c10e4e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1504.png deleted file mode 100644 index 7ab52875a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1505.png deleted file mode 100644 index 2312b164a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1506.png deleted file mode 100644 index 876b1b19bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1507.png deleted file mode 100644 index 5423932ea9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1508.png deleted file mode 100644 index 37037f3578..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1509.png deleted file mode 100644 index 5e477e3b4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1510.png deleted file mode 100644 index fda557bf6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1511.png deleted file mode 100644 index 37037f3578..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1512.png deleted file mode 100644 index 8165f72abe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1513.png deleted file mode 100644 index 1ca752ceca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1514.png deleted file mode 100644 index aea2c0492d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1515.png deleted file mode 100644 index 0727dab113..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1516.png deleted file mode 100644 index e755da97ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1517.png deleted file mode 100644 index a96cab9e09..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1518.png deleted file mode 100644 index bc5385e2be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1519.png deleted file mode 100644 index 97f68909ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1520.png deleted file mode 100644 index 659c3841a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1521.png deleted file mode 100644 index 569212a94d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1522.png deleted file mode 100644 index 03a7d92688..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1523.png deleted file mode 100644 index 9064ca69b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1524.png deleted file mode 100644 index 73ebce83ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1525.png deleted file mode 100644 index 68a409f7bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1526.png deleted file mode 100644 index 9c075498a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1527.png deleted file mode 100644 index d62eec1f7d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1528.png deleted file mode 100644 index b09653314f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1529.png deleted file mode 100644 index b2b9509cc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1530.png deleted file mode 100644 index 875d031a5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1531.png deleted file mode 100644 index 6b66c8846d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1532.png deleted file mode 100644 index b88ad1dc86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1533.png deleted file mode 100644 index 9ae1e76f19..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1534.png deleted file mode 100644 index 6fa9d587f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1535.png deleted file mode 100644 index 4cd94b0434..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1536.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1537.png deleted file mode 100644 index c329350781..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1538.png deleted file mode 100644 index 36c8c65284..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1539.png deleted file mode 100644 index f5145ce3a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1540.png deleted file mode 100644 index 1217dc4b13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1541.png deleted file mode 100644 index f55042710a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1542.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1543.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1544.png deleted file mode 100644 index bba7d9f6be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1545.png deleted file mode 100644 index 5b4c961ffb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1546.png deleted file mode 100644 index 5029997dc5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1547.png deleted file mode 100644 index 78c9c3244a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1548.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1549.png deleted file mode 100644 index 814c52fcf7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1550.png deleted file mode 100644 index 91920c0563..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1551.png deleted file mode 100644 index be2282b366..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1553.png deleted file mode 100644 index 87b8cf70b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1554.png deleted file mode 100644 index 26a86834e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1555.png deleted file mode 100644 index 51956867ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1556.png deleted file mode 100644 index aea2c0492d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1557.png deleted file mode 100644 index aea2c0492d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1562.png deleted file mode 100644 index 9563ad5e8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1563.png deleted file mode 100644 index 51956867ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1564.png deleted file mode 100644 index 49b1c39330..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1565.png deleted file mode 100644 index 167f88d836..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1566.png deleted file mode 100644 index 40d44b8e0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1567.png deleted file mode 100644 index 35ccdc752b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1568.png deleted file mode 100644 index 73a2bd11c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1570.png deleted file mode 100644 index 62b363c388..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1571.png deleted file mode 100644 index cbca97d0ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1572.png deleted file mode 100644 index aa4d6dac34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1573.png deleted file mode 100644 index 96f523e997..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1574.png deleted file mode 100644 index 569212a94d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1575.png deleted file mode 100644 index 78c9c3244a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1576.png deleted file mode 100644 index 08f1b15cd0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1577.png deleted file mode 100644 index af720c4ec9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1578.png deleted file mode 100644 index 236fa916e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1579.png deleted file mode 100644 index 37037f3578..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1582.png deleted file mode 100644 index 609b9494e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1583.png deleted file mode 100644 index 16b2785593..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1584.png deleted file mode 100644 index 5fede7fe32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1585.png deleted file mode 100644 index 0159fecd8a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1586.png deleted file mode 100644 index b5cab96ada..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1587.png deleted file mode 100644 index d555182ca1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1588.png deleted file mode 100644 index 51956867ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1589.png deleted file mode 100644 index 4d42136939..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1590.png deleted file mode 100644 index 18e393b1a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1591.png deleted file mode 100644 index 85963ffc76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1592.png deleted file mode 100644 index 8ff7eac619..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1593.png deleted file mode 100644 index 1cb43e44ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1594.png deleted file mode 100644 index 6f0cd9d58a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1595.png deleted file mode 100644 index 1cf12781a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1596.png deleted file mode 100644 index 28e7d6cc3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1597.png deleted file mode 100644 index 4ce2724604..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1598.png deleted file mode 100644 index cf8d77425e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1599.png deleted file mode 100644 index 355e647eda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1600.png deleted file mode 100644 index 257e1cee74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1601.png deleted file mode 100644 index a14c5b8c87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1602.png deleted file mode 100644 index a220bdfe79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1603.png deleted file mode 100644 index aff84a7320..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1604.png deleted file mode 100644 index 569273b743..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1605.png deleted file mode 100644 index 7834ba5f07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1606.png deleted file mode 100644 index e18b25a9f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1607.png deleted file mode 100644 index 4eec25c446..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1608.png deleted file mode 100644 index 28099e88ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1609.png deleted file mode 100644 index 569212a94d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1610.png deleted file mode 100644 index fda557bf6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1611.png deleted file mode 100644 index a593e7fb71..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1612.png deleted file mode 100644 index 1e574f4f5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1613.png deleted file mode 100644 index f9c2c4aa07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1614.png deleted file mode 100644 index e18b25a9f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1615.png deleted file mode 100644 index 36c8c65284..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1616.png deleted file mode 100644 index e329d3a80d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1617.png deleted file mode 100644 index 7834ba5f07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1618.png deleted file mode 100644 index d25f80746c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1619.png deleted file mode 100644 index 4e5157ae2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1620.png deleted file mode 100644 index 18e393b1a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1621.png deleted file mode 100644 index 7204801ad2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1622.png deleted file mode 100644 index 50977389f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1623.png deleted file mode 100644 index 393bc78d86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1624.png deleted file mode 100644 index 433a6e4170..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1625.png deleted file mode 100644 index f5cad4524d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1626.png deleted file mode 100644 index dd9db1143b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1627.png deleted file mode 100644 index fd101f6a81..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1628.png deleted file mode 100644 index 81f4333529..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1629.png deleted file mode 100644 index 1cc7f935e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1630.png deleted file mode 100644 index 8584de4e32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1631.png deleted file mode 100644 index fda557bf6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1632.png deleted file mode 100644 index 877b49d4ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1633.png deleted file mode 100644 index 24c9ae424e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1634.png deleted file mode 100644 index cea2c8e7df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1635.png deleted file mode 100644 index 68bdc4541a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1636.png deleted file mode 100644 index b9a14a9707..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1637.png deleted file mode 100644 index 0e0bf6e06f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1638.png deleted file mode 100644 index 1bcf20d283..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1639.png deleted file mode 100644 index cbca97d0ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1640.png deleted file mode 100644 index 544981eef4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1641.png deleted file mode 100644 index 3efc576204..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1642.png deleted file mode 100644 index bef020de71..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1643.png deleted file mode 100644 index 1c11ddf75a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1644.png deleted file mode 100644 index c0de9ef889..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1645.png deleted file mode 100644 index 877b49d4ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1646.png deleted file mode 100644 index e18b25a9f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1647.png deleted file mode 100644 index aea2c0492d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1648.png deleted file mode 100644 index fda557bf6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1649.png deleted file mode 100644 index 4cce358d22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1650.png deleted file mode 100644 index 05be38ecfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1651.png deleted file mode 100644 index 3997e5a00b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1652.png deleted file mode 100644 index 7a5a8cbc62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1653.png deleted file mode 100644 index ff0aa4a000..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1654.png deleted file mode 100644 index ebc0d2b42f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1655.png deleted file mode 100644 index 21f479efa7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1656.png deleted file mode 100644 index e08834e7c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1657.png deleted file mode 100644 index 569212a94d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1658.png deleted file mode 100644 index 2b72662189..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1659.png deleted file mode 100644 index 5be3adc7b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1660.png deleted file mode 100644 index 8cdd3954eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1661.png deleted file mode 100644 index 394c13c52e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1662.png deleted file mode 100644 index 54ebaebf87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1663.png deleted file mode 100644 index 0152d5bb39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1664.png deleted file mode 100644 index f0ebe28d6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1665.png deleted file mode 100644 index 905e4defbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1666.png deleted file mode 100644 index 60a2dda3be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1667.png deleted file mode 100644 index de82967574..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1668.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1670.png deleted file mode 100644 index 7acfff56f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1672.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1673.png deleted file mode 100644 index 001164c179..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1674.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1675.png deleted file mode 100644 index e18b25a9f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1676.png deleted file mode 100644 index 02c02a38f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1677.png deleted file mode 100644 index dedade5387..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1678.png deleted file mode 100644 index 16a2e85792..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1679.png deleted file mode 100644 index c44f914dd6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1680.png deleted file mode 100644 index 55ecd8c611..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1681.png deleted file mode 100644 index 5fe396a939..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1682.png deleted file mode 100644 index 9aefaf0dff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1683.png deleted file mode 100644 index 30dddd868c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1684.png deleted file mode 100644 index bf8852c2cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1685.png deleted file mode 100644 index b8751fd878..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1686.png deleted file mode 100644 index 569212a94d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1687.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1688.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1689.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1690.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1691.png deleted file mode 100644 index 3c715fa5cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1692.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1693.png deleted file mode 100644 index 787d75457a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1694.png deleted file mode 100644 index 4e2cfb6929..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1695.png deleted file mode 100644 index b29f2fea45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1696.png deleted file mode 100644 index ed900a7838..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1697.png deleted file mode 100644 index 6fed826aad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1698.png deleted file mode 100644 index 569212a94d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1699.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1700.png deleted file mode 100644 index 36cd82a2d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1701.png deleted file mode 100644 index 4cf93c48c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1702.png deleted file mode 100644 index dc3d7ab5f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1703.png deleted file mode 100644 index d0af0836fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1704.png deleted file mode 100644 index 27a2d7d25d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1705.png deleted file mode 100644 index d3eaf2460f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1706.png deleted file mode 100644 index fda557bf6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1707.png deleted file mode 100644 index e70661c4cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1708.png deleted file mode 100644 index 7ab52875a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1709.png deleted file mode 100644 index 85f07cb905..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1710.png deleted file mode 100644 index 85b06ef451..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1711.png deleted file mode 100644 index bebc5c52eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1712.png deleted file mode 100644 index ef56290a36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1713.png deleted file mode 100644 index 00167b9917..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1714.png deleted file mode 100644 index 97fab5ccdb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1715.png deleted file mode 100644 index 481df6dbc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1716.png deleted file mode 100644 index 138ea96a29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1717.png deleted file mode 100644 index 7da144bddd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1718.png deleted file mode 100644 index f04f4830fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1719.png deleted file mode 100644 index 7a0ead4bba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1720.png deleted file mode 100644 index 7a0ead4bba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1721.png deleted file mode 100644 index c3d4c9542c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1722.png deleted file mode 100644 index b6c9afd721..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1723.png deleted file mode 100644 index 9df1d9f675..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1724.png deleted file mode 100644 index ad31c3674f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1725.png deleted file mode 100644 index 893999d51a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1726.png deleted file mode 100644 index e6f8a87218..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1727.png deleted file mode 100644 index 3ec83bd5b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1728.png deleted file mode 100644 index ea9f991019..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1729.png deleted file mode 100644 index eb6fab7e2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1730.png deleted file mode 100644 index 1660009429..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1731.png deleted file mode 100644 index 513e28d1c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1732.png deleted file mode 100644 index 08be678407..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1733.png deleted file mode 100644 index 0c307d648a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1734.png deleted file mode 100644 index 2024a34076..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1735.png deleted file mode 100644 index ab16c8c64c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1740.png deleted file mode 100644 index b83965666a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1741.png deleted file mode 100644 index 38b5b0f9e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1742.png deleted file mode 100644 index 4d13251adc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1743.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1744.png deleted file mode 100644 index 48a6705c99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1745.png deleted file mode 100644 index 6a5819dce5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1746.png deleted file mode 100644 index e95c2a21c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFrypanHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1500.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1500.png deleted file mode 100644 index b7c52819ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1501.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1501.png deleted file mode 100644 index f645f798a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1502.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1502.png deleted file mode 100644 index 99ec3b3df7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1503.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1503.png deleted file mode 100644 index 9372d747b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1504.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1504.png deleted file mode 100644 index bdffeb19f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1505.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1505.png deleted file mode 100644 index f546c01fee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1506.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1506.png deleted file mode 100644 index fbac76c97e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1507.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1507.png deleted file mode 100644 index 74802de962..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1508.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1508.png deleted file mode 100644 index 4bc6ddcc39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1509.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1509.png deleted file mode 100644 index b1d17ef14d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1510.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1510.png deleted file mode 100644 index 40b7b35b1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1511.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1511.png deleted file mode 100644 index 4bc6ddcc39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1512.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1512.png deleted file mode 100644 index e3c2b4b80e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1513.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1513.png deleted file mode 100644 index 679e550aa6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1514.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1514.png deleted file mode 100644 index a5a96e9e2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1515.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1515.png deleted file mode 100644 index f14ecd7d51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1516.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1516.png deleted file mode 100644 index 452de4b5a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1517.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1517.png deleted file mode 100644 index 87ee58474b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1518.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1518.png deleted file mode 100644 index c448707aba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1519.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1519.png deleted file mode 100644 index c6c2c7b730..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1520.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1520.png deleted file mode 100644 index cf4a2200f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1521.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1521.png deleted file mode 100644 index fc9b2b5037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1522.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1522.png deleted file mode 100644 index 0bf9b4bf35..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1523.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1523.png deleted file mode 100644 index c6482f1f91..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1524.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1524.png deleted file mode 100644 index f1ef944125..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1525.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1525.png deleted file mode 100644 index 35beffa810..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1526.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1526.png deleted file mode 100644 index ddda1c0e6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1527.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1527.png deleted file mode 100644 index b182e1aba9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1528.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1528.png deleted file mode 100644 index 6cb6b7ea78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1529.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1529.png deleted file mode 100644 index 56dc3c9c10..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1530.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1530.png deleted file mode 100644 index 6c8df4eb26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1531.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1531.png deleted file mode 100644 index f2abdcb3ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1532.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1532.png deleted file mode 100644 index acb29e88eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1533.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1533.png deleted file mode 100644 index a6b64beff5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1534.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1534.png deleted file mode 100644 index f1bfb68d80..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1535.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1535.png deleted file mode 100644 index 80f35b6ef5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1536.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1536.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1537.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1537.png deleted file mode 100644 index 4819f63533..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1538.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1538.png deleted file mode 100644 index b2676d5471..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1539.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1539.png deleted file mode 100644 index 21baa55276..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1540.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1540.png deleted file mode 100644 index 01fa80559f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1541.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1541.png deleted file mode 100644 index 3c587d3042..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1542.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1542.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1543.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1543.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1544.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1544.png deleted file mode 100644 index 75fc9ec040..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1545.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1545.png deleted file mode 100644 index a38cd32af8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1546.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1546.png deleted file mode 100644 index 654f85bb60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1547.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1547.png deleted file mode 100644 index d427144931..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1548.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1548.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1549.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1549.png deleted file mode 100644 index e33bc1b9ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1550.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1550.png deleted file mode 100644 index d9596ead92..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1551.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1551.png deleted file mode 100644 index f00778c677..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1553.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1553.png deleted file mode 100644 index f5abe4b922..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1554.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1554.png deleted file mode 100644 index 3b7c1c0a5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1555.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1555.png deleted file mode 100644 index d0b3024b31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1556.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1556.png deleted file mode 100644 index a5a96e9e2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1557.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1557.png deleted file mode 100644 index a5a96e9e2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1562.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1562.png deleted file mode 100644 index 10ec974591..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1563.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1563.png deleted file mode 100644 index d0b3024b31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1564.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1564.png deleted file mode 100644 index d5b267bdb9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1565.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1565.png deleted file mode 100644 index 19c3ca7452..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1566.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1566.png deleted file mode 100644 index 7f540d1bb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1567.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1567.png deleted file mode 100644 index 66f686ffdd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1568.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1568.png deleted file mode 100644 index b2e134c934..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1570.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1570.png deleted file mode 100644 index af610e4820..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1571.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1571.png deleted file mode 100644 index 10c4dd2337..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1572.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1572.png deleted file mode 100644 index 37bb4a37ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1573.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1573.png deleted file mode 100644 index a0c9eb0595..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1574.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1574.png deleted file mode 100644 index fc9b2b5037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1575.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1575.png deleted file mode 100644 index d427144931..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1576.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1576.png deleted file mode 100644 index 60f0e16102..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1577.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1577.png deleted file mode 100644 index 1335d30047..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1578.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1578.png deleted file mode 100644 index 25f2a9c540..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1579.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1579.png deleted file mode 100644 index 4bc6ddcc39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1582.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1582.png deleted file mode 100644 index 298ae6533e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1583.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1583.png deleted file mode 100644 index 376730df25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1584.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1584.png deleted file mode 100644 index 8762b41b69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1585.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1585.png deleted file mode 100644 index 90b9bcb5cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1586.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1586.png deleted file mode 100644 index 5a802abb62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1587.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1587.png deleted file mode 100644 index ed33bde776..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1588.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1588.png deleted file mode 100644 index d0b3024b31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1589.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1589.png deleted file mode 100644 index 924c611793..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1590.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1590.png deleted file mode 100644 index 97535afe8c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1591.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1591.png deleted file mode 100644 index 759b02958e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1592.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1592.png deleted file mode 100644 index a5d861daf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1593.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1593.png deleted file mode 100644 index f555e2bbfa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1594.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1594.png deleted file mode 100644 index 2c43279814..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1595.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1595.png deleted file mode 100644 index 2ab673aec9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1596.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1596.png deleted file mode 100644 index 92d089441d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1597.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1597.png deleted file mode 100644 index 4a792d437a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1598.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1598.png deleted file mode 100644 index 3f20fadf92..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1599.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1599.png deleted file mode 100644 index c0c42d4657..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1600.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1600.png deleted file mode 100644 index 733bc867d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1601.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1601.png deleted file mode 100644 index d1106ec74f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1602.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1602.png deleted file mode 100644 index 00b00d2a9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1603.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1603.png deleted file mode 100644 index ad3d2466ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1604.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1604.png deleted file mode 100644 index 04d6b02fcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1605.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1605.png deleted file mode 100644 index f8f63ce1a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1606.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1606.png deleted file mode 100644 index 90c46377e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1607.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1607.png deleted file mode 100644 index aeea8bcbff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1608.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1608.png deleted file mode 100644 index 1ddcd9b747..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1609.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1609.png deleted file mode 100644 index fc9b2b5037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1610.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1610.png deleted file mode 100644 index 40b7b35b1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1611.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1611.png deleted file mode 100644 index 68f5ec4c90..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1612.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1612.png deleted file mode 100644 index f720fbbf93..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1613.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1613.png deleted file mode 100644 index 45fc2e08a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1614.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1614.png deleted file mode 100644 index 90c46377e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1615.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1615.png deleted file mode 100644 index b2676d5471..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1616.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1616.png deleted file mode 100644 index f169328e93..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1617.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1617.png deleted file mode 100644 index f8f63ce1a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1618.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1618.png deleted file mode 100644 index 05ca5c6801..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1619.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1619.png deleted file mode 100644 index ab065c1aac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1620.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1620.png deleted file mode 100644 index 97535afe8c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1621.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1621.png deleted file mode 100644 index bedb2bc573..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1622.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1622.png deleted file mode 100644 index 05b6ad37ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1623.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1623.png deleted file mode 100644 index 5e27d267fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1624.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1624.png deleted file mode 100644 index 7ec0b5cb0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1625.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1625.png deleted file mode 100644 index ca789c2da8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1626.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1626.png deleted file mode 100644 index d3926746e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1627.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1627.png deleted file mode 100644 index c37abee105..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1628.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1628.png deleted file mode 100644 index ce9f8d921c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1629.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1629.png deleted file mode 100644 index a98b71a469..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1630.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1630.png deleted file mode 100644 index a23514a477..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1631.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1631.png deleted file mode 100644 index 40b7b35b1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1632.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1632.png deleted file mode 100644 index 6e16d81e87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1633.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1633.png deleted file mode 100644 index aa1e06b9b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1634.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1634.png deleted file mode 100644 index e9632ec204..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1635.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1635.png deleted file mode 100644 index 8fa5a28aa9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1636.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1636.png deleted file mode 100644 index 12475d29c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1637.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1637.png deleted file mode 100644 index 3044c9a5fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1638.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1638.png deleted file mode 100644 index de990a946c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1639.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1639.png deleted file mode 100644 index 10c4dd2337..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1640.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1640.png deleted file mode 100644 index 317cd9b832..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1641.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1641.png deleted file mode 100644 index 22b1b08fef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1642.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1642.png deleted file mode 100644 index efef92ac31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1643.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1643.png deleted file mode 100644 index 4bf3854eca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1644.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1644.png deleted file mode 100644 index fe352de408..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1645.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1645.png deleted file mode 100644 index 6e16d81e87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1646.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1646.png deleted file mode 100644 index 90c46377e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1647.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1647.png deleted file mode 100644 index a5a96e9e2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1648.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1648.png deleted file mode 100644 index 40b7b35b1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1649.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1649.png deleted file mode 100644 index c1a9354e8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1650.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1650.png deleted file mode 100644 index e2548ed318..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1651.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1651.png deleted file mode 100644 index 1c53e70b47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1652.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1652.png deleted file mode 100644 index 393748a6cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1653.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1653.png deleted file mode 100644 index 6e457c5277..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1654.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1654.png deleted file mode 100644 index e551364adb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1655.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1655.png deleted file mode 100644 index b14e9d5370..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1656.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1656.png deleted file mode 100644 index 53047e6104..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1657.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1657.png deleted file mode 100644 index fc9b2b5037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1658.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1658.png deleted file mode 100644 index 63100bb45e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1659.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1659.png deleted file mode 100644 index 51e179e870..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1660.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1660.png deleted file mode 100644 index a33e9805f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1661.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1661.png deleted file mode 100644 index 2cb494111b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1662.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1662.png deleted file mode 100644 index 61f1a07149..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1663.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1663.png deleted file mode 100644 index a8d8bef228..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1664.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1664.png deleted file mode 100644 index 2aa4e5f27b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1665.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1665.png deleted file mode 100644 index e0079da818..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1666.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1666.png deleted file mode 100644 index 8518fe8923..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1667.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1667.png deleted file mode 100644 index 1552a1a03e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1668.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1668.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1670.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1670.png deleted file mode 100644 index 04ffedd26b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1672.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1672.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1673.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1673.png deleted file mode 100644 index 7d6993c840..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1674.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1674.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1675.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1675.png deleted file mode 100644 index 90c46377e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1676.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1676.png deleted file mode 100644 index edeb1b0822..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1677.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1677.png deleted file mode 100644 index de81175e75..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1678.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1678.png deleted file mode 100644 index 6258a2b93b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1679.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1679.png deleted file mode 100644 index 95dc2f8a25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1680.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1680.png deleted file mode 100644 index 0b54bbcb0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1681.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1681.png deleted file mode 100644 index dc146ba903..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1682.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1682.png deleted file mode 100644 index 5a77753193..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1683.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1683.png deleted file mode 100644 index 157644eea9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1684.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1684.png deleted file mode 100644 index 5541072d4c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1685.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1685.png deleted file mode 100644 index 5f8e3fa961..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1686.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1686.png deleted file mode 100644 index fc9b2b5037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1687.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1687.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1688.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1688.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1689.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1689.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1690.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1690.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1691.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1691.png deleted file mode 100644 index 1fb4c458a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1692.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1692.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1693.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1693.png deleted file mode 100644 index 4f186ac87c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1694.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1694.png deleted file mode 100644 index 8ff131080a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1695.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1695.png deleted file mode 100644 index bc732874d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1696.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1696.png deleted file mode 100644 index 97cb1cefef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1697.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1697.png deleted file mode 100644 index 55ffb28d4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1698.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1698.png deleted file mode 100644 index fc9b2b5037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1699.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1699.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1700.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1700.png deleted file mode 100644 index 37f1f9b932..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1701.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1701.png deleted file mode 100644 index d4ade8346a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1702.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1702.png deleted file mode 100644 index d76e95ac44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1703.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1703.png deleted file mode 100644 index e8eccf27cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1704.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1704.png deleted file mode 100644 index 75dd388cac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1705.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1705.png deleted file mode 100644 index 63b2ef6cc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1706.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1706.png deleted file mode 100644 index 40b7b35b1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1707.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1707.png deleted file mode 100644 index 55ee74ef59..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1708.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1708.png deleted file mode 100644 index bdffeb19f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1709.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1709.png deleted file mode 100644 index 6524791874..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1710.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1710.png deleted file mode 100644 index 677a280829..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1711.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1711.png deleted file mode 100644 index d23344bbce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1712.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1712.png deleted file mode 100644 index b4680d5da0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1713.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1713.png deleted file mode 100644 index ef555ba0b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1714.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1714.png deleted file mode 100644 index db87bff65a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1715.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1715.png deleted file mode 100644 index d9538304e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1716.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1716.png deleted file mode 100644 index 75e5bbe055..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1717.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1717.png deleted file mode 100644 index d6147f4324..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1718.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1718.png deleted file mode 100644 index a3a206c86c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1719.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1719.png deleted file mode 100644 index 1367adf22d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1720.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1720.png deleted file mode 100644 index 1367adf22d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1721.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1721.png deleted file mode 100644 index e900522ca6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1722.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1722.png deleted file mode 100644 index 95f29da60b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1723.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1723.png deleted file mode 100644 index 7755b34bf8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1724.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1724.png deleted file mode 100644 index 3b61c23014..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1725.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1725.png deleted file mode 100644 index 5cd33faed6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1726.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1726.png deleted file mode 100644 index 65c888006a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1727.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1727.png deleted file mode 100644 index 79ea9d2936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1728.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1728.png deleted file mode 100644 index 6f34376605..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1729.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1729.png deleted file mode 100644 index f7829586ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1730.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1730.png deleted file mode 100644 index 3583cd287e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1731.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1731.png deleted file mode 100644 index 8e7d4c2506..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1732.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1732.png deleted file mode 100644 index 2395bdcc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1733.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1733.png deleted file mode 100644 index 27ab686085..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1734.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1734.png deleted file mode 100644 index 0ca2474151..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1735.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1735.png deleted file mode 100644 index f946709c81..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1740.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1740.png deleted file mode 100644 index fd94b1831a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1741.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1741.png deleted file mode 100644 index 8f18e8c68c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1742.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1742.png deleted file mode 100644 index 08ebd81d3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1743.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1743.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1744.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1744.png deleted file mode 100644 index 21abddf358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1745.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1745.png deleted file mode 100644 index 31b50d3680..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1746.png b/front/public/images/large/TGregworks/tGregToolPartFullGuard/1746.png deleted file mode 100644 index 7f7760dfbb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartFullGuard/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1500.png deleted file mode 100644 index b915894839..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1501.png deleted file mode 100644 index e788d00b58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1502.png deleted file mode 100644 index 1adbb72ded..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1503.png deleted file mode 100644 index 5174ae30ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1504.png deleted file mode 100644 index db5c6610a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1505.png deleted file mode 100644 index 0d0740c070..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1506.png deleted file mode 100644 index 31ccc6ea24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1507.png deleted file mode 100644 index e4ab3ae008..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1508.png deleted file mode 100644 index c7009134d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1509.png deleted file mode 100644 index 5cddf1c931..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1510.png deleted file mode 100644 index 581ebd8787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1511.png deleted file mode 100644 index c7009134d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1512.png deleted file mode 100644 index 074b723621..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1513.png deleted file mode 100644 index 09c55b82d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1514.png deleted file mode 100644 index e8e4c18745..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1515.png deleted file mode 100644 index 2f6e61a795..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1516.png deleted file mode 100644 index a6aed99e62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1517.png deleted file mode 100644 index 07a4cdd256..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1518.png deleted file mode 100644 index 668d37a52b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1519.png deleted file mode 100644 index 0ece3fb0ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1520.png deleted file mode 100644 index cba20ab557..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1521.png deleted file mode 100644 index e32a6b7d89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1522.png deleted file mode 100644 index b98c77ede4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1523.png deleted file mode 100644 index 806545932a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1524.png deleted file mode 100644 index 9cf5cd8cc5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1525.png deleted file mode 100644 index d21ba55626..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1526.png deleted file mode 100644 index f00612569f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1527.png deleted file mode 100644 index 2f89688947..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1528.png deleted file mode 100644 index ce360a6438..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1529.png deleted file mode 100644 index aea4787b97..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1530.png deleted file mode 100644 index 729b045fec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1531.png deleted file mode 100644 index cec1031b44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1532.png deleted file mode 100644 index 2cb2a48d8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1533.png deleted file mode 100644 index 2c98f205f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1534.png deleted file mode 100644 index 10ca75a508..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1535.png deleted file mode 100644 index 0ed3424c71..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1536.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1537.png deleted file mode 100644 index 9b891ed3c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1538.png deleted file mode 100644 index fc6589cb50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1539.png deleted file mode 100644 index 956c9dbaae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1540.png deleted file mode 100644 index 1985bf29a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1541.png deleted file mode 100644 index 0ddaa7466d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1542.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1543.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1544.png deleted file mode 100644 index 4468d327ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1545.png deleted file mode 100644 index 6e744ffee0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1546.png deleted file mode 100644 index a8019a99dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1547.png deleted file mode 100644 index a7f753bacd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1548.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1549.png deleted file mode 100644 index 6875578a0a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1550.png deleted file mode 100644 index 6ec622f812..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1551.png deleted file mode 100644 index c686c08edd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1553.png deleted file mode 100644 index ffb363777a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1554.png deleted file mode 100644 index 3d43efee96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1555.png deleted file mode 100644 index fd62c76db3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1556.png deleted file mode 100644 index e8e4c18745..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1557.png deleted file mode 100644 index e8e4c18745..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1562.png deleted file mode 100644 index 459cdae7fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1563.png deleted file mode 100644 index fd62c76db3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1564.png deleted file mode 100644 index c3e2f5280d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1565.png deleted file mode 100644 index 17b68e1cf6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1566.png deleted file mode 100644 index 9f4173c524..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1567.png deleted file mode 100644 index 154383cefb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1568.png deleted file mode 100644 index 87abfe8a6c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1570.png deleted file mode 100644 index 6646c185db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1571.png deleted file mode 100644 index 3d5a738cf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1572.png deleted file mode 100644 index 94440c3717..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1573.png deleted file mode 100644 index 331d9ad103..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1574.png deleted file mode 100644 index e32a6b7d89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1575.png deleted file mode 100644 index a7f753bacd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1576.png deleted file mode 100644 index 9a73bfd2c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1577.png deleted file mode 100644 index 6c2e69a568..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1578.png deleted file mode 100644 index e3bb9a6310..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1579.png deleted file mode 100644 index c7009134d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1582.png deleted file mode 100644 index 83bf36b8f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1583.png deleted file mode 100644 index 24b011fa00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1584.png deleted file mode 100644 index f8088c1f9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1585.png deleted file mode 100644 index fe611382f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1586.png deleted file mode 100644 index 9cf6331fee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1587.png deleted file mode 100644 index 0242d90cbd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1588.png deleted file mode 100644 index fd62c76db3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1589.png deleted file mode 100644 index a12d7567e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1590.png deleted file mode 100644 index 19f96fa394..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1591.png deleted file mode 100644 index 8f7100f4bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1592.png deleted file mode 100644 index c6592f7606..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1593.png deleted file mode 100644 index 1425175435..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1594.png deleted file mode 100644 index c166be32e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1595.png deleted file mode 100644 index a899b3ce26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1596.png deleted file mode 100644 index 157a013937..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1597.png deleted file mode 100644 index bee8560a0b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1598.png deleted file mode 100644 index 6374032847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1599.png deleted file mode 100644 index 61ea082be2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1600.png deleted file mode 100644 index 1d852ed350..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1601.png deleted file mode 100644 index ba599913af..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1602.png deleted file mode 100644 index 77ed632193..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1603.png deleted file mode 100644 index 6e67163f5a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1604.png deleted file mode 100644 index d4bfe71bb9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1605.png deleted file mode 100644 index cff3cc92bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1606.png deleted file mode 100644 index 7af2975352..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1607.png deleted file mode 100644 index 7799a764b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1608.png deleted file mode 100644 index 4f90a783a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1609.png deleted file mode 100644 index e32a6b7d89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1610.png deleted file mode 100644 index 581ebd8787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1611.png deleted file mode 100644 index 2310894ad2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1612.png deleted file mode 100644 index 087d58a874..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1613.png deleted file mode 100644 index 3537b776ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1614.png deleted file mode 100644 index 7af2975352..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1615.png deleted file mode 100644 index fc6589cb50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1616.png deleted file mode 100644 index 611a0aa15b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1617.png deleted file mode 100644 index cff3cc92bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1618.png deleted file mode 100644 index 1dda9b5ad2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1619.png deleted file mode 100644 index 7cffc7d934..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1620.png deleted file mode 100644 index 19f96fa394..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1621.png deleted file mode 100644 index 2dc8e4db38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1622.png deleted file mode 100644 index 4cb1798205..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1623.png deleted file mode 100644 index 1a1595a82f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1624.png deleted file mode 100644 index a2f8a09abe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1625.png deleted file mode 100644 index c6938e04e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1626.png deleted file mode 100644 index ba7ec99e23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1627.png deleted file mode 100644 index 8391163b3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1628.png deleted file mode 100644 index 1dd77ce0be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1629.png deleted file mode 100644 index 053235496f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1630.png deleted file mode 100644 index 0f6d7e3f77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1631.png deleted file mode 100644 index 581ebd8787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1632.png deleted file mode 100644 index a59017e7a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1633.png deleted file mode 100644 index 5cdcf97d83..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1634.png deleted file mode 100644 index 737c3c4fe3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1635.png deleted file mode 100644 index 5cd78b2f32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1636.png deleted file mode 100644 index 730f1de1aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1637.png deleted file mode 100644 index f2d675905c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1638.png deleted file mode 100644 index 6f1320677b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1639.png deleted file mode 100644 index 3d5a738cf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1640.png deleted file mode 100644 index ec5095dd95..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1641.png deleted file mode 100644 index b825bc2a1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1642.png deleted file mode 100644 index 0d0c745fc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1643.png deleted file mode 100644 index f3c856ee8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1644.png deleted file mode 100644 index a1d7adf865..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1645.png deleted file mode 100644 index a59017e7a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1646.png deleted file mode 100644 index 7af2975352..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1647.png deleted file mode 100644 index e8e4c18745..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1648.png deleted file mode 100644 index 581ebd8787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1649.png deleted file mode 100644 index 20bbbfbb26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1650.png deleted file mode 100644 index 6a9c6b479a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1651.png deleted file mode 100644 index f0982bcdf6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1652.png deleted file mode 100644 index a3c5556c9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1653.png deleted file mode 100644 index 2b5548ceeb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1654.png deleted file mode 100644 index c953acd435..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1655.png deleted file mode 100644 index 192f2ad9a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1656.png deleted file mode 100644 index 023019d647..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1657.png deleted file mode 100644 index e32a6b7d89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1658.png deleted file mode 100644 index 31a2781c36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1659.png deleted file mode 100644 index dd1af7e850..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1660.png deleted file mode 100644 index 53a4ca3251..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1661.png deleted file mode 100644 index 61582f6254..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1662.png deleted file mode 100644 index dc1fc8a9c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1663.png deleted file mode 100644 index 04d4c2f861..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1664.png deleted file mode 100644 index 54c7ad5bf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1665.png deleted file mode 100644 index f2a3819c6c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1666.png deleted file mode 100644 index 8bf1525f89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1667.png deleted file mode 100644 index 4affe1b95f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1668.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1670.png deleted file mode 100644 index 6bbc4a8b14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1672.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1673.png deleted file mode 100644 index 8cd9e0aed9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1674.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1675.png deleted file mode 100644 index 7af2975352..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1676.png deleted file mode 100644 index a85bacf377..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1677.png deleted file mode 100644 index 579011875f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1678.png deleted file mode 100644 index eb8fc19f5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1679.png deleted file mode 100644 index 34aad6f820..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1680.png deleted file mode 100644 index 2d7c3d0435..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1681.png deleted file mode 100644 index 5bf02f7b44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1682.png deleted file mode 100644 index cd0b44f15e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1683.png deleted file mode 100644 index 4aaf9702d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1684.png deleted file mode 100644 index 9c0883edcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1685.png deleted file mode 100644 index 5c84efcb07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1686.png deleted file mode 100644 index e32a6b7d89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1687.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1688.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1689.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1690.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1691.png deleted file mode 100644 index a51a54e205..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1692.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1693.png deleted file mode 100644 index 55b60dec1e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1694.png deleted file mode 100644 index 259f7448aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1695.png deleted file mode 100644 index 965b90d97d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1696.png deleted file mode 100644 index fb289bfb7d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1697.png deleted file mode 100644 index 9b3af69f3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1698.png deleted file mode 100644 index e32a6b7d89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1699.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1700.png deleted file mode 100644 index 0daabba3fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1701.png deleted file mode 100644 index ef92a2cef4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1702.png deleted file mode 100644 index f70ef25d34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1703.png deleted file mode 100644 index 7e50a88f0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1704.png deleted file mode 100644 index 208c4f7b1b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1705.png deleted file mode 100644 index f1439d4f95..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1706.png deleted file mode 100644 index 581ebd8787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1707.png deleted file mode 100644 index 3e5de0c072..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1708.png deleted file mode 100644 index db5c6610a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1709.png deleted file mode 100644 index fb96048cdd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1710.png deleted file mode 100644 index 8e46f09136..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1711.png deleted file mode 100644 index 0ea91c6506..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1712.png deleted file mode 100644 index 3eb54ea616..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1713.png deleted file mode 100644 index 5e134e02dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1714.png deleted file mode 100644 index 7f3d21e1d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1715.png deleted file mode 100644 index fb6a7b58b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1716.png deleted file mode 100644 index f639ec6556..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1717.png deleted file mode 100644 index a092f7c0ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1718.png deleted file mode 100644 index a044358164..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1719.png deleted file mode 100644 index beddbf8835..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1720.png deleted file mode 100644 index beddbf8835..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1721.png deleted file mode 100644 index de8bc6f8d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1722.png deleted file mode 100644 index c2f4c86059..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1723.png deleted file mode 100644 index e68fb9cb4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1724.png deleted file mode 100644 index bcf25d2364..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1725.png deleted file mode 100644 index 3f59e6beee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1726.png deleted file mode 100644 index cf68f015b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1727.png deleted file mode 100644 index 2dedaef710..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1728.png deleted file mode 100644 index c693adc22c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1729.png deleted file mode 100644 index 834732d4ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1730.png deleted file mode 100644 index 10d8d0a938..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1731.png deleted file mode 100644 index 228d3edd34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1732.png deleted file mode 100644 index a39dc687c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1733.png deleted file mode 100644 index 083f61e151..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1734.png deleted file mode 100644 index 0b2656091b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1735.png deleted file mode 100644 index 57e58dc8c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1740.png deleted file mode 100644 index a529970d1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1741.png deleted file mode 100644 index b1817a3469..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1742.png deleted file mode 100644 index b77ba73291..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1743.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1744.png deleted file mode 100644 index 3f7462d936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1745.png deleted file mode 100644 index 8fcebfbbfa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartHammerHead/1746.png deleted file mode 100644 index 9b3ec40fea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartHammerHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1500.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1500.png deleted file mode 100644 index e72d955fee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1501.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1501.png deleted file mode 100644 index ea0dc6e4c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1502.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1502.png deleted file mode 100644 index b47321d8c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1503.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1503.png deleted file mode 100644 index 16b171c987..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1504.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1504.png deleted file mode 100644 index e86e8838ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1505.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1505.png deleted file mode 100644 index 68d3067ce8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1506.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1506.png deleted file mode 100644 index 7f8b2f3c29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1507.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1507.png deleted file mode 100644 index 67ea6a9c16..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1508.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1508.png deleted file mode 100644 index 6a942912cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1509.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1509.png deleted file mode 100644 index 2575f700e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1510.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1510.png deleted file mode 100644 index b87ab66d13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1511.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1511.png deleted file mode 100644 index 6a942912cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1512.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1512.png deleted file mode 100644 index 89cc401084..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1513.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1513.png deleted file mode 100644 index ce90585afd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1514.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1514.png deleted file mode 100644 index 5fef73d1f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1515.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1515.png deleted file mode 100644 index be57311033..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1516.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1516.png deleted file mode 100644 index ab44fab9a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1517.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1517.png deleted file mode 100644 index 397138bbd4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1518.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1518.png deleted file mode 100644 index c7359a0863..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1519.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1519.png deleted file mode 100644 index 43acfbde9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1520.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1520.png deleted file mode 100644 index ffdec2c916..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1521.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1521.png deleted file mode 100644 index 912fa12def..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1522.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1522.png deleted file mode 100644 index 8441a85c06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1523.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1523.png deleted file mode 100644 index bcdce671fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1524.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1524.png deleted file mode 100644 index 4393919e17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1525.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1525.png deleted file mode 100644 index 62814e464d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1526.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1526.png deleted file mode 100644 index 84c03f3763..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1527.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1527.png deleted file mode 100644 index 69f877d9ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1528.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1528.png deleted file mode 100644 index 04db919cb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1529.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1529.png deleted file mode 100644 index 42093eff5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1530.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1530.png deleted file mode 100644 index 4ebc7805bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1531.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1531.png deleted file mode 100644 index 2db44a3610..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1532.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1532.png deleted file mode 100644 index 7ec15d744e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1533.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1533.png deleted file mode 100644 index 4132b6dd7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1534.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1534.png deleted file mode 100644 index 958702b42c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1535.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1535.png deleted file mode 100644 index 6850088af0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1536.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1536.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1537.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1537.png deleted file mode 100644 index 6d233d736c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1538.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1538.png deleted file mode 100644 index 97e2c846f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1539.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1539.png deleted file mode 100644 index 4a927f651b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1540.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1540.png deleted file mode 100644 index 45446272b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1541.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1541.png deleted file mode 100644 index f9606171fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1542.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1542.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1543.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1543.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1544.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1544.png deleted file mode 100644 index 31f913a365..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1545.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1545.png deleted file mode 100644 index e6316f4237..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1546.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1546.png deleted file mode 100644 index 1e6c93d4a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1547.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1547.png deleted file mode 100644 index 44eefae8fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1548.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1548.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1549.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1549.png deleted file mode 100644 index bc4f81677f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1550.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1550.png deleted file mode 100644 index 2a46929044..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1551.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1551.png deleted file mode 100644 index a79cd25ba9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1553.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1553.png deleted file mode 100644 index b40361d19e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1554.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1554.png deleted file mode 100644 index 56222951c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1555.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1555.png deleted file mode 100644 index 513aadc0c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1556.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1556.png deleted file mode 100644 index 5fef73d1f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1557.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1557.png deleted file mode 100644 index 5fef73d1f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1562.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1562.png deleted file mode 100644 index c21a67564e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1563.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1563.png deleted file mode 100644 index 513aadc0c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1564.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1564.png deleted file mode 100644 index 91f4047f16..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1565.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1565.png deleted file mode 100644 index 76c6ea4274..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1566.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1566.png deleted file mode 100644 index 1f3a2f882e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1567.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1567.png deleted file mode 100644 index e70bdcd006..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1568.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1568.png deleted file mode 100644 index 9b480c65f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1570.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1570.png deleted file mode 100644 index a3c5aaac83..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1571.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1571.png deleted file mode 100644 index 240d7f9887..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1572.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1572.png deleted file mode 100644 index bc21d8c2a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1573.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1573.png deleted file mode 100644 index 54555ba3c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1574.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1574.png deleted file mode 100644 index 912fa12def..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1575.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1575.png deleted file mode 100644 index 44eefae8fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1576.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1576.png deleted file mode 100644 index a0b71baa02..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1577.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1577.png deleted file mode 100644 index 54668371e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1578.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1578.png deleted file mode 100644 index 04afdaa8e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1579.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1579.png deleted file mode 100644 index 6a942912cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1582.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1582.png deleted file mode 100644 index 54ee878756..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1583.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1583.png deleted file mode 100644 index a2cb70b56a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1584.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1584.png deleted file mode 100644 index dff4afaf62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1585.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1585.png deleted file mode 100644 index 5475c903f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1586.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1586.png deleted file mode 100644 index 622524754e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1587.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1587.png deleted file mode 100644 index 8253a68314..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1588.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1588.png deleted file mode 100644 index 513aadc0c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1589.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1589.png deleted file mode 100644 index 8f90e470fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1590.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1590.png deleted file mode 100644 index 8a970e6b49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1591.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1591.png deleted file mode 100644 index 8fe618748a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1592.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1592.png deleted file mode 100644 index 079332227f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1593.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1593.png deleted file mode 100644 index 5eba6eb4aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1594.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1594.png deleted file mode 100644 index b0fdf67dc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1595.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1595.png deleted file mode 100644 index f605d42daa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1596.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1596.png deleted file mode 100644 index 27f3545191..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1597.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1597.png deleted file mode 100644 index 79715a3a7d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1598.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1598.png deleted file mode 100644 index 9697e78fd2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1599.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1599.png deleted file mode 100644 index 04ca09e049..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1600.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1600.png deleted file mode 100644 index c75aad9267..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1601.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1601.png deleted file mode 100644 index e2c81e786f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1602.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1602.png deleted file mode 100644 index ecff0a14a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1603.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1603.png deleted file mode 100644 index 314276321f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1604.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1604.png deleted file mode 100644 index 2e93c58dc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1605.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1605.png deleted file mode 100644 index e886dff0b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1606.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1606.png deleted file mode 100644 index 027ab45bfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1607.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1607.png deleted file mode 100644 index 8161bb8cfa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1608.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1608.png deleted file mode 100644 index e257a86b58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1609.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1609.png deleted file mode 100644 index 912fa12def..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1610.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1610.png deleted file mode 100644 index b87ab66d13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1611.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1611.png deleted file mode 100644 index 44e8c6f7cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1612.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1612.png deleted file mode 100644 index 5e61680c3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1613.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1613.png deleted file mode 100644 index 016e0cab6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1614.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1614.png deleted file mode 100644 index 027ab45bfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1615.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1615.png deleted file mode 100644 index 97e2c846f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1616.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1616.png deleted file mode 100644 index 678e35f9ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1617.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1617.png deleted file mode 100644 index e886dff0b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1618.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1618.png deleted file mode 100644 index 1c9754a332..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1619.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1619.png deleted file mode 100644 index a56042ff79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1620.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1620.png deleted file mode 100644 index 8a970e6b49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1621.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1621.png deleted file mode 100644 index 3f94eab82b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1622.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1622.png deleted file mode 100644 index acd38a8e31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1623.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1623.png deleted file mode 100644 index fdf37dc1d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1624.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1624.png deleted file mode 100644 index c98af439fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1625.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1625.png deleted file mode 100644 index f4ed04a8d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1626.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1626.png deleted file mode 100644 index 2cb6b01db5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1627.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1627.png deleted file mode 100644 index b157400a51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1628.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1628.png deleted file mode 100644 index cb138ec3bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1629.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1629.png deleted file mode 100644 index 7d0d5e6751..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1630.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1630.png deleted file mode 100644 index 4d8df3616d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1631.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1631.png deleted file mode 100644 index b87ab66d13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1632.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1632.png deleted file mode 100644 index 9c3fbab07d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1633.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1633.png deleted file mode 100644 index 12e28d569a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1634.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1634.png deleted file mode 100644 index 9df573e722..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1635.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1635.png deleted file mode 100644 index c89cdbbdca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1636.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1636.png deleted file mode 100644 index 47f1a94d22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1637.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1637.png deleted file mode 100644 index 07e5b13e36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1638.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1638.png deleted file mode 100644 index 5cc1100748..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1639.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1639.png deleted file mode 100644 index 240d7f9887..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1640.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1640.png deleted file mode 100644 index cc33a31ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1641.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1641.png deleted file mode 100644 index 64c8b4b934..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1642.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1642.png deleted file mode 100644 index d71c453799..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1643.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1643.png deleted file mode 100644 index 6312233c36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1644.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1644.png deleted file mode 100644 index d571be591f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1645.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1645.png deleted file mode 100644 index 9c3fbab07d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1646.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1646.png deleted file mode 100644 index 027ab45bfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1647.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1647.png deleted file mode 100644 index 5fef73d1f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1648.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1648.png deleted file mode 100644 index b87ab66d13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1649.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1649.png deleted file mode 100644 index 4581ae8b5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1650.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1650.png deleted file mode 100644 index 850ea5d688..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1651.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1651.png deleted file mode 100644 index faa093d68c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1652.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1652.png deleted file mode 100644 index eafa3489b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1653.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1653.png deleted file mode 100644 index af0614efe7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1654.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1654.png deleted file mode 100644 index f011b8cc4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1655.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1655.png deleted file mode 100644 index 3eea069ac0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1656.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1656.png deleted file mode 100644 index 8f3ffb6aa5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1657.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1657.png deleted file mode 100644 index 912fa12def..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1658.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1658.png deleted file mode 100644 index 007200c326..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1659.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1659.png deleted file mode 100644 index 47d49f78f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1660.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1660.png deleted file mode 100644 index fe9e79ff49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1661.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1661.png deleted file mode 100644 index 646c249975..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1662.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1662.png deleted file mode 100644 index 9de9aa22bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1663.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1663.png deleted file mode 100644 index b4c6451f79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1664.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1664.png deleted file mode 100644 index dfd72dc21e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1665.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1665.png deleted file mode 100644 index cde64ce2e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1666.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1666.png deleted file mode 100644 index ae268d6216..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1667.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1667.png deleted file mode 100644 index 7c9a03927f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1668.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1668.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1670.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1670.png deleted file mode 100644 index 67f912e60b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1672.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1672.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1673.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1673.png deleted file mode 100644 index 81d1752c0a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1674.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1674.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1675.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1675.png deleted file mode 100644 index 027ab45bfe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1676.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1676.png deleted file mode 100644 index 436caa3cad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1677.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1677.png deleted file mode 100644 index bb126f019e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1678.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1678.png deleted file mode 100644 index 6e66172a7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1679.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1679.png deleted file mode 100644 index f0e00aec81..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1680.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1680.png deleted file mode 100644 index e093598230..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1681.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1681.png deleted file mode 100644 index 1d084e6f86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1682.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1682.png deleted file mode 100644 index 94c628d3ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1683.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1683.png deleted file mode 100644 index 2470783260..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1684.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1684.png deleted file mode 100644 index fb382d60a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1685.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1685.png deleted file mode 100644 index 5484a4993e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1686.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1686.png deleted file mode 100644 index 912fa12def..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1687.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1687.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1688.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1688.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1689.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1689.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1690.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1690.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1691.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1691.png deleted file mode 100644 index e8cfd051ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1692.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1692.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1693.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1693.png deleted file mode 100644 index 24e85b8883..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1694.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1694.png deleted file mode 100644 index a5f69945f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1695.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1695.png deleted file mode 100644 index 0f257af9c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1696.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1696.png deleted file mode 100644 index 0d373599f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1697.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1697.png deleted file mode 100644 index c910ef09f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1698.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1698.png deleted file mode 100644 index 912fa12def..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1699.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1699.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1700.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1700.png deleted file mode 100644 index 5c9ba5d0c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1701.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1701.png deleted file mode 100644 index 26872dce99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1702.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1702.png deleted file mode 100644 index 9046cbef86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1703.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1703.png deleted file mode 100644 index e15e9e3393..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1704.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1704.png deleted file mode 100644 index 90b7ff4482..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1705.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1705.png deleted file mode 100644 index 8c16750122..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1706.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1706.png deleted file mode 100644 index b87ab66d13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1707.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1707.png deleted file mode 100644 index 3eeb78f92f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1708.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1708.png deleted file mode 100644 index e86e8838ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1709.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1709.png deleted file mode 100644 index f0a4b96968..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1710.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1710.png deleted file mode 100644 index 5757671e30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1711.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1711.png deleted file mode 100644 index b39ab1efc4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1712.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1712.png deleted file mode 100644 index 1b296a8761..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1713.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1713.png deleted file mode 100644 index 0a01ee509d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1714.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1714.png deleted file mode 100644 index 6fdc7b1332..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1715.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1715.png deleted file mode 100644 index 0c5fc1bc00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1716.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1716.png deleted file mode 100644 index 8590ba7de2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1717.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1717.png deleted file mode 100644 index 85425355f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1718.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1718.png deleted file mode 100644 index 95edbdb659..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1719.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1719.png deleted file mode 100644 index 7e986756c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1720.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1720.png deleted file mode 100644 index 7e986756c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1721.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1721.png deleted file mode 100644 index 28c6c6a7ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1722.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1722.png deleted file mode 100644 index 81603a3503..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1723.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1723.png deleted file mode 100644 index 6dac7c74a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1724.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1724.png deleted file mode 100644 index 183126dbf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1725.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1725.png deleted file mode 100644 index 2136a549b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1726.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1726.png deleted file mode 100644 index 9ffd58e76d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1727.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1727.png deleted file mode 100644 index 90a46ccd0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1728.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1728.png deleted file mode 100644 index 026d1e0366..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1729.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1729.png deleted file mode 100644 index 45c0e98a6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1730.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1730.png deleted file mode 100644 index ef6e17d8dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1731.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1731.png deleted file mode 100644 index a42ecf2b29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1732.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1732.png deleted file mode 100644 index 10abde7fac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1733.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1733.png deleted file mode 100644 index 5fe45c4eff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1734.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1734.png deleted file mode 100644 index 090754b239..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1735.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1735.png deleted file mode 100644 index f9b550a12e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1740.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1740.png deleted file mode 100644 index 487d032e30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1741.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1741.png deleted file mode 100644 index 76e03109fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1742.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1742.png deleted file mode 100644 index 2809ab7683..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1743.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1743.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1744.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1744.png deleted file mode 100644 index 69731c882b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1745.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1745.png deleted file mode 100644 index 6a2d2a9620..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1746.png b/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1746.png deleted file mode 100644 index 5fe80d9bc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartKnifeBlade/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1500.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1500.png deleted file mode 100644 index ae0f57176e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1501.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1501.png deleted file mode 100644 index db275b4297..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1502.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1502.png deleted file mode 100644 index 536914bb1e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1503.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1503.png deleted file mode 100644 index 0c75fd06a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1504.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1504.png deleted file mode 100644 index 0ed7206ad7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1505.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1505.png deleted file mode 100644 index 7855236769..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1506.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1506.png deleted file mode 100644 index e03c0e6057..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1507.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1507.png deleted file mode 100644 index c06facd248..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1508.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1508.png deleted file mode 100644 index c79a454a57..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1509.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1509.png deleted file mode 100644 index 179b19ff88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1510.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1510.png deleted file mode 100644 index 4ca88b2cec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1511.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1511.png deleted file mode 100644 index c79a454a57..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1512.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1512.png deleted file mode 100644 index 2212e8e54c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1513.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1513.png deleted file mode 100644 index a3f6fc715b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1514.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1514.png deleted file mode 100644 index 88233a1709..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1515.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1515.png deleted file mode 100644 index bbeded2c4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1516.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1516.png deleted file mode 100644 index 72b4cea829..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1517.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1517.png deleted file mode 100644 index 7db87f0b73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1518.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1518.png deleted file mode 100644 index 10421a53f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1519.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1519.png deleted file mode 100644 index f257b48633..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1520.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1520.png deleted file mode 100644 index c5f5c5efef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1521.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1521.png deleted file mode 100644 index a71bfbe079..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1522.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1522.png deleted file mode 100644 index da54d412e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1523.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1523.png deleted file mode 100644 index 0d898adb67..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1524.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1524.png deleted file mode 100644 index baa3860821..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1525.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1525.png deleted file mode 100644 index 4b47433cab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1526.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1526.png deleted file mode 100644 index 4dadafc31a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1527.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1527.png deleted file mode 100644 index 441bce8538..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1528.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1528.png deleted file mode 100644 index f9ae79cbfc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1529.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1529.png deleted file mode 100644 index 29bcd909a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1530.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1530.png deleted file mode 100644 index dc3a08cad0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1531.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1531.png deleted file mode 100644 index 41d4853c53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1532.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1532.png deleted file mode 100644 index 5de87363ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1533.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1533.png deleted file mode 100644 index 460fa8383d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1534.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1534.png deleted file mode 100644 index ad08ab2af3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1535.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1535.png deleted file mode 100644 index cd7dcd6b0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1536.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1536.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1537.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1537.png deleted file mode 100644 index f576c78f89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1538.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1538.png deleted file mode 100644 index 88e4703e97..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1539.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1539.png deleted file mode 100644 index 3f558c4e50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1540.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1540.png deleted file mode 100644 index f5c73702ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1541.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1541.png deleted file mode 100644 index d5860f73f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1542.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1542.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1543.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1543.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1544.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1544.png deleted file mode 100644 index fe3a1ac5d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1545.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1545.png deleted file mode 100644 index 39053b9813..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1546.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1546.png deleted file mode 100644 index 8aed54f1d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1547.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1547.png deleted file mode 100644 index a1c08b716c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1548.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1548.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1549.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1549.png deleted file mode 100644 index b7108c0b6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1550.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1550.png deleted file mode 100644 index 432519d429..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1551.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1551.png deleted file mode 100644 index 9f0f33234b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1553.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1553.png deleted file mode 100644 index a1ebe60857..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1554.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1554.png deleted file mode 100644 index fffc59d196..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1555.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1555.png deleted file mode 100644 index 3f2d9c8ab2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1556.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1556.png deleted file mode 100644 index 88233a1709..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1557.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1557.png deleted file mode 100644 index 88233a1709..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1562.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1562.png deleted file mode 100644 index 6b1cf30e6f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1563.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1563.png deleted file mode 100644 index 3f2d9c8ab2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1564.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1564.png deleted file mode 100644 index f317ef5080..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1565.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1565.png deleted file mode 100644 index c8d9af59c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1566.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1566.png deleted file mode 100644 index f21e8f517f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1567.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1567.png deleted file mode 100644 index e5488dda8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1568.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1568.png deleted file mode 100644 index e36bedb8c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1570.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1570.png deleted file mode 100644 index faf12f33a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1571.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1571.png deleted file mode 100644 index e24e1daddb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1572.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1572.png deleted file mode 100644 index 5b1cf9c141..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1573.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1573.png deleted file mode 100644 index 7fcb927f78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1574.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1574.png deleted file mode 100644 index a71bfbe079..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1575.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1575.png deleted file mode 100644 index a1c08b716c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1576.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1576.png deleted file mode 100644 index e4574fe7c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1577.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1577.png deleted file mode 100644 index 2d94ef4b9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1578.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1578.png deleted file mode 100644 index 2d37f1bb22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1579.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1579.png deleted file mode 100644 index c79a454a57..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1582.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1582.png deleted file mode 100644 index e3602d8ced..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1583.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1583.png deleted file mode 100644 index d3c925a9a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1584.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1584.png deleted file mode 100644 index c7761d503d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1585.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1585.png deleted file mode 100644 index fedd54044e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1586.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1586.png deleted file mode 100644 index 60ef28a7d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1587.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1587.png deleted file mode 100644 index 4a5d47fb8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1588.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1588.png deleted file mode 100644 index 3f2d9c8ab2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1589.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1589.png deleted file mode 100644 index 1df6505ddd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1590.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1590.png deleted file mode 100644 index 238702fc67..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1591.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1591.png deleted file mode 100644 index 4ff8f9af8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1592.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1592.png deleted file mode 100644 index 33e46131c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1593.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1593.png deleted file mode 100644 index 440ae831e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1594.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1594.png deleted file mode 100644 index 2f14c846dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1595.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1595.png deleted file mode 100644 index 77ba5a8d33..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1596.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1596.png deleted file mode 100644 index 461e9bd8c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1597.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1597.png deleted file mode 100644 index 45bc0ed388..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1598.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1598.png deleted file mode 100644 index 78559de004..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1599.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1599.png deleted file mode 100644 index 9e3b1bcd65..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1600.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1600.png deleted file mode 100644 index 0eadb6acd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1601.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1601.png deleted file mode 100644 index 71a32e6337..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1602.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1602.png deleted file mode 100644 index ed8f32d56e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1603.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1603.png deleted file mode 100644 index 29b25702f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1604.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1604.png deleted file mode 100644 index df6138280d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1605.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1605.png deleted file mode 100644 index 85a806b0d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1606.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1606.png deleted file mode 100644 index 376af171a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1607.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1607.png deleted file mode 100644 index dc2dd9c24c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1608.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1608.png deleted file mode 100644 index c5d287d108..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1609.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1609.png deleted file mode 100644 index a71bfbe079..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1610.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1610.png deleted file mode 100644 index 4ca88b2cec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1611.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1611.png deleted file mode 100644 index 6528369355..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1612.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1612.png deleted file mode 100644 index 22c7cdfdda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1613.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1613.png deleted file mode 100644 index e9346435f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1614.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1614.png deleted file mode 100644 index 376af171a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1615.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1615.png deleted file mode 100644 index 88e4703e97..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1616.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1616.png deleted file mode 100644 index bba2091857..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1617.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1617.png deleted file mode 100644 index 85a806b0d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1618.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1618.png deleted file mode 100644 index 648da7ebf2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1619.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1619.png deleted file mode 100644 index a30f2a3444..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1620.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1620.png deleted file mode 100644 index 238702fc67..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1621.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1621.png deleted file mode 100644 index c602ba1afb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1622.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1622.png deleted file mode 100644 index 19c4a7b244..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1623.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1623.png deleted file mode 100644 index f8fb20f590..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1624.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1624.png deleted file mode 100644 index 5dec99fc77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1625.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1625.png deleted file mode 100644 index 75b6031cca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1626.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1626.png deleted file mode 100644 index bc3123ca38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1627.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1627.png deleted file mode 100644 index f6f22685a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1628.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1628.png deleted file mode 100644 index bf91c44d8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1629.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1629.png deleted file mode 100644 index e405ec2229..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1630.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1630.png deleted file mode 100644 index 0bfa38c0a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1631.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1631.png deleted file mode 100644 index 4ca88b2cec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1632.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1632.png deleted file mode 100644 index 65885537a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1633.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1633.png deleted file mode 100644 index a4330f74f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1634.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1634.png deleted file mode 100644 index 82c9a3493c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1635.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1635.png deleted file mode 100644 index 338cda674d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1636.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1636.png deleted file mode 100644 index 1304bb9188..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1637.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1637.png deleted file mode 100644 index be6db4c45c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1638.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1638.png deleted file mode 100644 index 867b491787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1639.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1639.png deleted file mode 100644 index e24e1daddb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1640.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1640.png deleted file mode 100644 index 972a859bd1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1641.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1641.png deleted file mode 100644 index a5b81af36f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1642.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1642.png deleted file mode 100644 index 351ea997de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1643.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1643.png deleted file mode 100644 index 6a8dbde588..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1644.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1644.png deleted file mode 100644 index bcf242a8e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1645.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1645.png deleted file mode 100644 index 65885537a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1646.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1646.png deleted file mode 100644 index 376af171a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1647.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1647.png deleted file mode 100644 index 88233a1709..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1648.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1648.png deleted file mode 100644 index 4ca88b2cec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1649.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1649.png deleted file mode 100644 index 0d3b02e773..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1650.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1650.png deleted file mode 100644 index eea8fcf329..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1651.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1651.png deleted file mode 100644 index 1d55e39e2f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1652.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1652.png deleted file mode 100644 index 6f4ccb2c67..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1653.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1653.png deleted file mode 100644 index 03e4ef859a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1654.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1654.png deleted file mode 100644 index 20cea496fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1655.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1655.png deleted file mode 100644 index 25d3c8ef28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1656.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1656.png deleted file mode 100644 index 1c27c48ac7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1657.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1657.png deleted file mode 100644 index a71bfbe079..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1658.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1658.png deleted file mode 100644 index 6ab6daf350..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1659.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1659.png deleted file mode 100644 index cb5afeb07a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1660.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1660.png deleted file mode 100644 index c6d055c86b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1661.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1661.png deleted file mode 100644 index 7491c52ce0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1662.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1662.png deleted file mode 100644 index 8793cfc067..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1663.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1663.png deleted file mode 100644 index ba00129efa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1664.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1664.png deleted file mode 100644 index ddd17fc7af..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1665.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1665.png deleted file mode 100644 index e52ff101f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1666.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1666.png deleted file mode 100644 index 7fcca36358..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1667.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1667.png deleted file mode 100644 index bc4861f5a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1668.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1668.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1670.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1670.png deleted file mode 100644 index e08198e042..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1672.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1672.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1673.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1673.png deleted file mode 100644 index 6678c37515..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1674.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1674.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1675.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1675.png deleted file mode 100644 index 376af171a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1676.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1676.png deleted file mode 100644 index 84f4039499..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1677.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1677.png deleted file mode 100644 index a5c4fd8845..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1678.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1678.png deleted file mode 100644 index 61c9f4744d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1679.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1679.png deleted file mode 100644 index 6edeafc78d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1680.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1680.png deleted file mode 100644 index cc8ca2a1aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1681.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1681.png deleted file mode 100644 index c3eac4c9c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1682.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1682.png deleted file mode 100644 index 3a129d06bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1683.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1683.png deleted file mode 100644 index da85e20804..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1684.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1684.png deleted file mode 100644 index b51b0d5b03..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1685.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1685.png deleted file mode 100644 index b8033c3019..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1686.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1686.png deleted file mode 100644 index a71bfbe079..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1687.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1687.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1688.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1688.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1689.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1689.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1690.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1690.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1691.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1691.png deleted file mode 100644 index e96192e1ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1692.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1692.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1693.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1693.png deleted file mode 100644 index f494623927..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1694.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1694.png deleted file mode 100644 index 5fe585b665..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1695.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1695.png deleted file mode 100644 index 1e7f591cf6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1696.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1696.png deleted file mode 100644 index 3e181f7376..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1697.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1697.png deleted file mode 100644 index f28ec72c3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1698.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1698.png deleted file mode 100644 index a71bfbe079..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1699.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1699.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1700.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1700.png deleted file mode 100644 index 4c70c95ce3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1701.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1701.png deleted file mode 100644 index 01fde11c76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1702.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1702.png deleted file mode 100644 index 930343c3c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1703.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1703.png deleted file mode 100644 index f903156d3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1704.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1704.png deleted file mode 100644 index d47c5f7ac9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1705.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1705.png deleted file mode 100644 index 7283c4a2c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1706.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1706.png deleted file mode 100644 index 4ca88b2cec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1707.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1707.png deleted file mode 100644 index 30f5dba966..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1708.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1708.png deleted file mode 100644 index 0ed7206ad7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1709.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1709.png deleted file mode 100644 index 303b055621..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1710.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1710.png deleted file mode 100644 index 6d5aa0809a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1711.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1711.png deleted file mode 100644 index 9d2192265e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1712.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1712.png deleted file mode 100644 index 086e2d85ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1713.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1713.png deleted file mode 100644 index f0988412bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1714.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1714.png deleted file mode 100644 index 66e0975996..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1715.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1715.png deleted file mode 100644 index 6ac6dbdab1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1716.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1716.png deleted file mode 100644 index 0ef9d87a93..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1717.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1717.png deleted file mode 100644 index de236eb90c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1718.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1718.png deleted file mode 100644 index 4aa3e8c164..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1719.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1719.png deleted file mode 100644 index 778d35abac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1720.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1720.png deleted file mode 100644 index 778d35abac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1721.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1721.png deleted file mode 100644 index 54451dada5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1722.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1722.png deleted file mode 100644 index 2e86840754..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1723.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1723.png deleted file mode 100644 index 9f7f119077..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1724.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1724.png deleted file mode 100644 index 51e84189d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1725.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1725.png deleted file mode 100644 index bc83a6a3ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1726.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1726.png deleted file mode 100644 index 430dd99084..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1727.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1727.png deleted file mode 100644 index b9db2196c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1728.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1728.png deleted file mode 100644 index 752cced498..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1729.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1729.png deleted file mode 100644 index 47e5e1cfc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1730.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1730.png deleted file mode 100644 index c98ef1d692..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1731.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1731.png deleted file mode 100644 index f04f9e0d0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1732.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1732.png deleted file mode 100644 index acb2f27ad1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1733.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1733.png deleted file mode 100644 index b4dd948d3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1734.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1734.png deleted file mode 100644 index b6f4afd936..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1735.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1735.png deleted file mode 100644 index facae0af06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1740.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1740.png deleted file mode 100644 index 2bdb876f6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1741.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1741.png deleted file mode 100644 index b776cbfbfc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1742.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1742.png deleted file mode 100644 index 7a3f1029b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1743.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1743.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1744.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1744.png deleted file mode 100644 index a696ea12dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1745.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1745.png deleted file mode 100644 index 840daf4077..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1746.png b/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1746.png deleted file mode 100644 index 309754cdbb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeGuard/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1500.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1500.png deleted file mode 100644 index 3f8e5d5737..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1501.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1501.png deleted file mode 100644 index b620709f2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1502.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1502.png deleted file mode 100644 index aa697f36ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1503.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1503.png deleted file mode 100644 index f4e9e464d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1504.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1504.png deleted file mode 100644 index f38df025e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1505.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1505.png deleted file mode 100644 index d4d05b2340..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1506.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1506.png deleted file mode 100644 index c892e8735a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1507.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1507.png deleted file mode 100644 index 374fd68532..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1508.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1508.png deleted file mode 100644 index 6240098623..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1509.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1509.png deleted file mode 100644 index 51cafe29af..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1510.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1510.png deleted file mode 100644 index dd68d5a5d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1511.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1511.png deleted file mode 100644 index 6240098623..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1512.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1512.png deleted file mode 100644 index f398b4c194..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1513.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1513.png deleted file mode 100644 index 10a0f5fa31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1514.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1514.png deleted file mode 100644 index 6a745a91c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1515.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1515.png deleted file mode 100644 index f10bb829bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1516.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1516.png deleted file mode 100644 index 218a0bc0cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1517.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1517.png deleted file mode 100644 index e3c775db0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1518.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1518.png deleted file mode 100644 index 2ce89ed1b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1519.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1519.png deleted file mode 100644 index 60ab31fd9e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1520.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1520.png deleted file mode 100644 index 4fd9f9d462..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1521.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1521.png deleted file mode 100644 index 9ca83ddf9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1522.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1522.png deleted file mode 100644 index 44c05f7526..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1523.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1523.png deleted file mode 100644 index 5c5aa154d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1524.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1524.png deleted file mode 100644 index 55061e7a2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1525.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1525.png deleted file mode 100644 index a58c2550fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1526.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1526.png deleted file mode 100644 index 1222e64b3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1527.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1527.png deleted file mode 100644 index bfe7be818c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1528.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1528.png deleted file mode 100644 index f7bac326f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1529.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1529.png deleted file mode 100644 index 00d31543ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1530.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1530.png deleted file mode 100644 index de99e9861f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1531.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1531.png deleted file mode 100644 index 0029d981e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1532.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1532.png deleted file mode 100644 index 11366b4ee4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1533.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1533.png deleted file mode 100644 index e28a54c0c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1534.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1534.png deleted file mode 100644 index 9d77c183a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1535.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1535.png deleted file mode 100644 index b9e3f66390..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1536.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1536.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1537.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1537.png deleted file mode 100644 index 53b500c33e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1538.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1538.png deleted file mode 100644 index 3709826154..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1539.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1539.png deleted file mode 100644 index 64d8af0864..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1540.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1540.png deleted file mode 100644 index 78fc3ac0e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1541.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1541.png deleted file mode 100644 index d0c613da99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1542.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1542.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1543.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1543.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1544.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1544.png deleted file mode 100644 index 38eb48d073..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1545.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1545.png deleted file mode 100644 index aa70581ea0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1546.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1546.png deleted file mode 100644 index d359b1d96f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1547.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1547.png deleted file mode 100644 index 5cfed29e6b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1548.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1548.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1549.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1549.png deleted file mode 100644 index 5e35cfbbe0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1550.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1550.png deleted file mode 100644 index e1211fb25c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1551.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1551.png deleted file mode 100644 index 56a958fea0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1553.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1553.png deleted file mode 100644 index a42bda6957..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1554.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1554.png deleted file mode 100644 index 5383da93a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1555.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1555.png deleted file mode 100644 index 9073849532..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1556.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1556.png deleted file mode 100644 index 6a745a91c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1557.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1557.png deleted file mode 100644 index 6a745a91c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1562.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1562.png deleted file mode 100644 index bea043e679..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1563.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1563.png deleted file mode 100644 index 9073849532..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1564.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1564.png deleted file mode 100644 index 8f682a6aab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1565.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1565.png deleted file mode 100644 index 6608b5bff9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1566.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1566.png deleted file mode 100644 index 7c922e17e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1567.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1567.png deleted file mode 100644 index 3a4149d837..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1568.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1568.png deleted file mode 100644 index a4201c835a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1570.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1570.png deleted file mode 100644 index 90883dbf44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1571.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1571.png deleted file mode 100644 index 70ad43cd74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1572.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1572.png deleted file mode 100644 index 876ece6469..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1573.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1573.png deleted file mode 100644 index 7fa2c95c4c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1574.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1574.png deleted file mode 100644 index 9ca83ddf9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1575.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1575.png deleted file mode 100644 index 5cfed29e6b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1576.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1576.png deleted file mode 100644 index 1cc32f1851..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1577.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1577.png deleted file mode 100644 index b5ec2e24f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1578.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1578.png deleted file mode 100644 index b848e72c3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1579.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1579.png deleted file mode 100644 index 6240098623..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1582.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1582.png deleted file mode 100644 index 67ad1a418b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1583.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1583.png deleted file mode 100644 index 77172b1766..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1584.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1584.png deleted file mode 100644 index 2dd550908f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1585.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1585.png deleted file mode 100644 index 1d626c42d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1586.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1586.png deleted file mode 100644 index 8fbe85705c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1587.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1587.png deleted file mode 100644 index 849d4d4e7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1588.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1588.png deleted file mode 100644 index 9073849532..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1589.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1589.png deleted file mode 100644 index d7fe77cc46..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1590.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1590.png deleted file mode 100644 index af6c3b6193..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1591.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1591.png deleted file mode 100644 index 3c75394207..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1592.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1592.png deleted file mode 100644 index 810fc4625d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1593.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1593.png deleted file mode 100644 index f1e1c09edc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1594.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1594.png deleted file mode 100644 index 2b09e0ce07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1595.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1595.png deleted file mode 100644 index fd6df82040..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1596.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1596.png deleted file mode 100644 index ddaf213d36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1597.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1597.png deleted file mode 100644 index bba4d87866..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1598.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1598.png deleted file mode 100644 index 48dc5aad88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1599.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1599.png deleted file mode 100644 index b96ddd266d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1600.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1600.png deleted file mode 100644 index 683424c7eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1601.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1601.png deleted file mode 100644 index 77a10231e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1602.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1602.png deleted file mode 100644 index 9392899f39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1603.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1603.png deleted file mode 100644 index 7df1daeb88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1604.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1604.png deleted file mode 100644 index 5669472102..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1605.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1605.png deleted file mode 100644 index 1f3d711eff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1606.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1606.png deleted file mode 100644 index 80e4453c53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1607.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1607.png deleted file mode 100644 index 50308f4fee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1608.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1608.png deleted file mode 100644 index a14f0f4857..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1609.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1609.png deleted file mode 100644 index 9ca83ddf9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1610.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1610.png deleted file mode 100644 index dd68d5a5d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1611.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1611.png deleted file mode 100644 index da7fd88990..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1612.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1612.png deleted file mode 100644 index 69d7f50045..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1613.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1613.png deleted file mode 100644 index 778d1dd35d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1614.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1614.png deleted file mode 100644 index 80e4453c53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1615.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1615.png deleted file mode 100644 index 3709826154..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1616.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1616.png deleted file mode 100644 index f9592e6bdb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1617.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1617.png deleted file mode 100644 index 1f3d711eff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1618.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1618.png deleted file mode 100644 index aec96561af..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1619.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1619.png deleted file mode 100644 index 19bfd2cbfa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1620.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1620.png deleted file mode 100644 index af6c3b6193..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1621.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1621.png deleted file mode 100644 index e6352be642..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1622.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1622.png deleted file mode 100644 index ae2f4fa90c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1623.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1623.png deleted file mode 100644 index a7526a166e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1624.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1624.png deleted file mode 100644 index cba609eb42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1625.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1625.png deleted file mode 100644 index b66d34d2ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1626.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1626.png deleted file mode 100644 index e9ec5b6e95..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1627.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1627.png deleted file mode 100644 index 99a586a72f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1628.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1628.png deleted file mode 100644 index a4ab3723cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1629.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1629.png deleted file mode 100644 index 8ecc8f395e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1630.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1630.png deleted file mode 100644 index 0506ed5488..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1631.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1631.png deleted file mode 100644 index dd68d5a5d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1632.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1632.png deleted file mode 100644 index 93be188492..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1633.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1633.png deleted file mode 100644 index 5331e31b53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1634.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1634.png deleted file mode 100644 index cd9ec206df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1635.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1635.png deleted file mode 100644 index 2c601e2725..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1636.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1636.png deleted file mode 100644 index d5a545f208..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1637.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1637.png deleted file mode 100644 index 2a4c8ec0d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1638.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1638.png deleted file mode 100644 index 8304a37119..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1639.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1639.png deleted file mode 100644 index 70ad43cd74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1640.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1640.png deleted file mode 100644 index 7a6aaebfb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1641.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1641.png deleted file mode 100644 index be7c09ee23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1642.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1642.png deleted file mode 100644 index 02ea7d8265..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1643.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1643.png deleted file mode 100644 index 8a21b3b4b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1644.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1644.png deleted file mode 100644 index 0e12e75b2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1645.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1645.png deleted file mode 100644 index 93be188492..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1646.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1646.png deleted file mode 100644 index 80e4453c53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1647.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1647.png deleted file mode 100644 index 6a745a91c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1648.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1648.png deleted file mode 100644 index dd68d5a5d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1649.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1649.png deleted file mode 100644 index 8dea1babec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1650.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1650.png deleted file mode 100644 index 7b149f53e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1651.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1651.png deleted file mode 100644 index e29363eaaf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1652.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1652.png deleted file mode 100644 index 3468f46d6f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1653.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1653.png deleted file mode 100644 index 96682e1eb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1654.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1654.png deleted file mode 100644 index 623f1f969d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1655.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1655.png deleted file mode 100644 index 7653603bcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1656.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1656.png deleted file mode 100644 index 0f56402ed4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1657.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1657.png deleted file mode 100644 index 9ca83ddf9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1658.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1658.png deleted file mode 100644 index 86873a5335..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1659.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1659.png deleted file mode 100644 index e054ad8bde..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1660.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1660.png deleted file mode 100644 index 5def6091d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1661.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1661.png deleted file mode 100644 index 1a356b79ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1662.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1662.png deleted file mode 100644 index 72634b77fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1663.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1663.png deleted file mode 100644 index c05efdec4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1664.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1664.png deleted file mode 100644 index c22d5eb22d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1665.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1665.png deleted file mode 100644 index a7c830eaad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1666.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1666.png deleted file mode 100644 index 6ad2c19052..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1667.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1667.png deleted file mode 100644 index f243b5d3c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1668.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1668.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1670.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1670.png deleted file mode 100644 index 6673525b2b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1672.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1672.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1673.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1673.png deleted file mode 100644 index 01c24a0eca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1674.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1674.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1675.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1675.png deleted file mode 100644 index 80e4453c53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1676.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1676.png deleted file mode 100644 index 78d3187040..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1677.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1677.png deleted file mode 100644 index b8b0029a52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1678.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1678.png deleted file mode 100644 index 3437f3a8d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1679.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1679.png deleted file mode 100644 index fa16b44f21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1680.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1680.png deleted file mode 100644 index 0698be8919..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1681.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1681.png deleted file mode 100644 index a8519d6202..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1682.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1682.png deleted file mode 100644 index 089bbaadfc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1683.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1683.png deleted file mode 100644 index e0f70a0b42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1684.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1684.png deleted file mode 100644 index 6c90da88c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1685.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1685.png deleted file mode 100644 index 9e47bc388d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1686.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1686.png deleted file mode 100644 index 9ca83ddf9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1687.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1687.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1688.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1688.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1689.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1689.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1690.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1690.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1691.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1691.png deleted file mode 100644 index b9a3b13ec9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1692.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1692.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1693.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1693.png deleted file mode 100644 index 9590a1ccb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1694.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1694.png deleted file mode 100644 index 9551b21be6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1695.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1695.png deleted file mode 100644 index 7c5b278787..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1696.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1696.png deleted file mode 100644 index 3f9a5ef1bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1697.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1697.png deleted file mode 100644 index 6b9c114bb4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1698.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1698.png deleted file mode 100644 index 9ca83ddf9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1699.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1699.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1700.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1700.png deleted file mode 100644 index 3a48e32fa1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1701.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1701.png deleted file mode 100644 index 92accd83e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1702.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1702.png deleted file mode 100644 index 7204a89d2e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1703.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1703.png deleted file mode 100644 index ed09bd23cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1704.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1704.png deleted file mode 100644 index cf9777c2fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1705.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1705.png deleted file mode 100644 index d6bd99bc60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1706.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1706.png deleted file mode 100644 index dd68d5a5d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1707.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1707.png deleted file mode 100644 index f5c5c40d2b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1708.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1708.png deleted file mode 100644 index f38df025e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1709.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1709.png deleted file mode 100644 index b19a4fadf3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1710.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1710.png deleted file mode 100644 index 549270cf48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1711.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1711.png deleted file mode 100644 index 2a4c37d8f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1712.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1712.png deleted file mode 100644 index 8498fda3c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1713.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1713.png deleted file mode 100644 index 1e5ee243b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1714.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1714.png deleted file mode 100644 index 59b990a7ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1715.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1715.png deleted file mode 100644 index 2ad2d7a224..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1716.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1716.png deleted file mode 100644 index 065c75dc76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1717.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1717.png deleted file mode 100644 index bf0f7d5229..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1718.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1718.png deleted file mode 100644 index d5e19d291e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1719.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1719.png deleted file mode 100644 index d57124c443..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1720.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1720.png deleted file mode 100644 index d57124c443..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1721.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1721.png deleted file mode 100644 index b001893fa3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1722.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1722.png deleted file mode 100644 index 159b5478f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1723.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1723.png deleted file mode 100644 index c5d6f4a20d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1724.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1724.png deleted file mode 100644 index 674cd7b375..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1725.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1725.png deleted file mode 100644 index aa8e8b09c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1726.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1726.png deleted file mode 100644 index 6e165f6ac9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1727.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1727.png deleted file mode 100644 index ba035b4b87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1728.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1728.png deleted file mode 100644 index 757527a25a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1729.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1729.png deleted file mode 100644 index 5cf5831e45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1730.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1730.png deleted file mode 100644 index 9e8e26c888..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1731.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1731.png deleted file mode 100644 index 78db8bad0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1732.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1732.png deleted file mode 100644 index 6ebc01b293..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1733.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1733.png deleted file mode 100644 index 37f8a1c843..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1734.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1734.png deleted file mode 100644 index 1fc3ce84d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1735.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1735.png deleted file mode 100644 index f6e9b7f97a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1740.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1740.png deleted file mode 100644 index fe0d5a95f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1741.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1741.png deleted file mode 100644 index 38c85c52bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1742.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1742.png deleted file mode 100644 index b5f13f459c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1743.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1743.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1744.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1744.png deleted file mode 100644 index b686413ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1745.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1745.png deleted file mode 100644 index 694c9b6501..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1746.png b/front/public/images/large/TGregworks/tGregToolPartLargePlate/1746.png deleted file mode 100644 index b2b2aea8de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargePlate/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1500.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1500.png deleted file mode 100644 index d028748ce5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1501.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1501.png deleted file mode 100644 index 713a0ee0fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1502.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1502.png deleted file mode 100644 index c5329c99af..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1503.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1503.png deleted file mode 100644 index 7a184cb664..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1504.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1504.png deleted file mode 100644 index 479205d967..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1505.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1505.png deleted file mode 100644 index e5388583cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1506.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1506.png deleted file mode 100644 index 96075838e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1507.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1507.png deleted file mode 100644 index c626669800..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1508.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1508.png deleted file mode 100644 index cd982c1052..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1509.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1509.png deleted file mode 100644 index 4c8a278f3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1510.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1510.png deleted file mode 100644 index d487d6d5be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1511.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1511.png deleted file mode 100644 index cd982c1052..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1512.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1512.png deleted file mode 100644 index a88eb85802..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1513.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1513.png deleted file mode 100644 index 01e16dc663..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1514.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1514.png deleted file mode 100644 index 977a36c0b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1515.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1515.png deleted file mode 100644 index 0dbdf7d2e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1516.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1516.png deleted file mode 100644 index d8d66e8f31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1517.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1517.png deleted file mode 100644 index 6688789d5b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1518.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1518.png deleted file mode 100644 index a284e06c7c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1519.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1519.png deleted file mode 100644 index 8c0398e089..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1520.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1520.png deleted file mode 100644 index 75deec518e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1521.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1521.png deleted file mode 100644 index be2ca987bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1522.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1522.png deleted file mode 100644 index b61243676c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1523.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1523.png deleted file mode 100644 index 8871f39fba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1524.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1524.png deleted file mode 100644 index 7434a9efb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1525.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1525.png deleted file mode 100644 index 12a3cc7d0a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1526.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1526.png deleted file mode 100644 index e787062a2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1527.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1527.png deleted file mode 100644 index ff42849ac6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1528.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1528.png deleted file mode 100644 index fa88a30cce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1529.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1529.png deleted file mode 100644 index bafdf76ece..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1530.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1530.png deleted file mode 100644 index 633541f840..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1531.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1531.png deleted file mode 100644 index 6c9f13d6f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1532.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1532.png deleted file mode 100644 index ade255a310..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1533.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1533.png deleted file mode 100644 index 06a4480f66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1534.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1534.png deleted file mode 100644 index 4c82fb3a65..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1535.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1535.png deleted file mode 100644 index 369cdfc013..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1536.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1536.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1537.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1537.png deleted file mode 100644 index bef625e928..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1538.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1538.png deleted file mode 100644 index 1e42f06340..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1539.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1539.png deleted file mode 100644 index c14f2d041a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1540.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1540.png deleted file mode 100644 index c4db6457ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1541.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1541.png deleted file mode 100644 index 008fff9a01..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1542.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1542.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1543.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1543.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1544.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1544.png deleted file mode 100644 index 9eaf282f31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1545.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1545.png deleted file mode 100644 index 426b9974ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1546.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1546.png deleted file mode 100644 index b93580dcba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1547.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1547.png deleted file mode 100644 index 982f043477..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1548.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1548.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1549.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1549.png deleted file mode 100644 index cd0a7e4d07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1550.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1550.png deleted file mode 100644 index 17ca7827f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1551.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1551.png deleted file mode 100644 index 20853ea4d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1553.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1553.png deleted file mode 100644 index 13a1050357..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1554.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1554.png deleted file mode 100644 index 7b779a4ff2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1555.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1555.png deleted file mode 100644 index 2c2c8b15f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1556.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1556.png deleted file mode 100644 index 977a36c0b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1557.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1557.png deleted file mode 100644 index 977a36c0b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1562.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1562.png deleted file mode 100644 index f299dc6092..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1563.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1563.png deleted file mode 100644 index 2c2c8b15f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1564.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1564.png deleted file mode 100644 index ab36345db5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1565.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1565.png deleted file mode 100644 index a4f3c5d713..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1566.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1566.png deleted file mode 100644 index 299bda3918..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1567.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1567.png deleted file mode 100644 index 6c5cf31687..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1568.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1568.png deleted file mode 100644 index eaa66afac2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1570.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1570.png deleted file mode 100644 index d99adf8c5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1571.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1571.png deleted file mode 100644 index b26dbde5f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1572.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1572.png deleted file mode 100644 index 04d4551e55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1573.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1573.png deleted file mode 100644 index 970ce68d47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1574.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1574.png deleted file mode 100644 index be2ca987bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1575.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1575.png deleted file mode 100644 index 982f043477..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1576.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1576.png deleted file mode 100644 index 5724c904dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1577.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1577.png deleted file mode 100644 index 58a9d5ae76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1578.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1578.png deleted file mode 100644 index 251956916e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1579.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1579.png deleted file mode 100644 index cd982c1052..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1582.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1582.png deleted file mode 100644 index 15acb10bb7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1583.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1583.png deleted file mode 100644 index ddf5381ff1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1584.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1584.png deleted file mode 100644 index a6bc3ecec0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1585.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1585.png deleted file mode 100644 index 169d7fec2f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1586.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1586.png deleted file mode 100644 index 6e5e0e27d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1587.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1587.png deleted file mode 100644 index dbc6ff5788..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1588.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1588.png deleted file mode 100644 index 2c2c8b15f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1589.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1589.png deleted file mode 100644 index 6a66d6f78a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1590.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1590.png deleted file mode 100644 index 74efe393d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1591.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1591.png deleted file mode 100644 index a213f95d3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1592.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1592.png deleted file mode 100644 index 8cb21b77a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1593.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1593.png deleted file mode 100644 index 45576a737a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1594.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1594.png deleted file mode 100644 index 2895a30809..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1595.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1595.png deleted file mode 100644 index ed5048f2ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1596.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1596.png deleted file mode 100644 index d60c404317..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1597.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1597.png deleted file mode 100644 index 30e7287d60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1598.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1598.png deleted file mode 100644 index 50393d3ada..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1599.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1599.png deleted file mode 100644 index b245a35f56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1600.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1600.png deleted file mode 100644 index ae140c22c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1601.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1601.png deleted file mode 100644 index a5a6ab7d95..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1602.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1602.png deleted file mode 100644 index 33334a8e64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1603.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1603.png deleted file mode 100644 index 040751270d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1604.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1604.png deleted file mode 100644 index ffea322d38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1605.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1605.png deleted file mode 100644 index 97e57b770e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1606.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1606.png deleted file mode 100644 index af2e07a8b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1607.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1607.png deleted file mode 100644 index 08ace025d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1608.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1608.png deleted file mode 100644 index 65c406fe2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1609.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1609.png deleted file mode 100644 index be2ca987bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1610.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1610.png deleted file mode 100644 index d487d6d5be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1611.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1611.png deleted file mode 100644 index eeef0a3d28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1612.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1612.png deleted file mode 100644 index 2992fc9219..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1613.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1613.png deleted file mode 100644 index af015d9949..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1614.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1614.png deleted file mode 100644 index af2e07a8b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1615.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1615.png deleted file mode 100644 index 1e42f06340..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1616.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1616.png deleted file mode 100644 index 8ecaec75b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1617.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1617.png deleted file mode 100644 index 97e57b770e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1618.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1618.png deleted file mode 100644 index 1bb830a170..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1619.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1619.png deleted file mode 100644 index 1a16d69e14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1620.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1620.png deleted file mode 100644 index 74efe393d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1621.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1621.png deleted file mode 100644 index 7dccc505d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1622.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1622.png deleted file mode 100644 index c3d6799269..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1623.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1623.png deleted file mode 100644 index b542ae54e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1624.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1624.png deleted file mode 100644 index 5b2baa740c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1625.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1625.png deleted file mode 100644 index e7b78db098..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1626.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1626.png deleted file mode 100644 index 2c3435de89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1627.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1627.png deleted file mode 100644 index e4ba1035dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1628.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1628.png deleted file mode 100644 index 98d38c4ca1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1629.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1629.png deleted file mode 100644 index 448ff9f850..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1630.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1630.png deleted file mode 100644 index b80e7777ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1631.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1631.png deleted file mode 100644 index d487d6d5be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1632.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1632.png deleted file mode 100644 index 5cf5f8d85c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1633.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1633.png deleted file mode 100644 index 9626c7f67d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1634.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1634.png deleted file mode 100644 index e9c9bb1f71..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1635.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1635.png deleted file mode 100644 index 69191a8060..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1636.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1636.png deleted file mode 100644 index 835b82fa8b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1637.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1637.png deleted file mode 100644 index 2be09ab2c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1638.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1638.png deleted file mode 100644 index a78c8a6db8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1639.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1639.png deleted file mode 100644 index b26dbde5f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1640.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1640.png deleted file mode 100644 index 3343ab823b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1641.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1641.png deleted file mode 100644 index 6c3b71ae37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1642.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1642.png deleted file mode 100644 index b6a5867fe1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1643.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1643.png deleted file mode 100644 index cc9da39957..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1644.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1644.png deleted file mode 100644 index ecc7d1059c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1645.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1645.png deleted file mode 100644 index 5cf5f8d85c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1646.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1646.png deleted file mode 100644 index af2e07a8b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1647.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1647.png deleted file mode 100644 index 977a36c0b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1648.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1648.png deleted file mode 100644 index d487d6d5be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1649.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1649.png deleted file mode 100644 index fce9bcc1d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1650.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1650.png deleted file mode 100644 index 4a96a9476b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1651.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1651.png deleted file mode 100644 index 660f2a7b78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1652.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1652.png deleted file mode 100644 index 266f01e341..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1653.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1653.png deleted file mode 100644 index 64ec9f2a77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1654.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1654.png deleted file mode 100644 index 3d8e4eb622..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1655.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1655.png deleted file mode 100644 index 9399e6847e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1656.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1656.png deleted file mode 100644 index a857d31250..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1657.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1657.png deleted file mode 100644 index be2ca987bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1658.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1658.png deleted file mode 100644 index b33c7d3c86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1659.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1659.png deleted file mode 100644 index aab01aaf33..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1660.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1660.png deleted file mode 100644 index 865401c7cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1661.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1661.png deleted file mode 100644 index 6c5b691131..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1662.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1662.png deleted file mode 100644 index 4f41e07af3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1663.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1663.png deleted file mode 100644 index 2f47e2e42e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1664.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1664.png deleted file mode 100644 index da39141576..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1665.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1665.png deleted file mode 100644 index 7707edca6b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1666.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1666.png deleted file mode 100644 index e8eb41f54b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1667.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1667.png deleted file mode 100644 index d625dbadba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1668.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1668.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1670.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1670.png deleted file mode 100644 index 19f05bd525..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1672.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1672.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1673.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1673.png deleted file mode 100644 index 78ae6c038a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1674.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1674.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1675.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1675.png deleted file mode 100644 index af2e07a8b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1676.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1676.png deleted file mode 100644 index 3889482e05..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1677.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1677.png deleted file mode 100644 index 191fcf7988..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1678.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1678.png deleted file mode 100644 index 44bd742b7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1679.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1679.png deleted file mode 100644 index 9580418903..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1680.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1680.png deleted file mode 100644 index ee7fa5af95..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1681.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1681.png deleted file mode 100644 index 2804025173..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1682.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1682.png deleted file mode 100644 index be26d4c2ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1683.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1683.png deleted file mode 100644 index 53a6f13ed9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1684.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1684.png deleted file mode 100644 index 002a0e3b5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1685.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1685.png deleted file mode 100644 index a81445d273..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1686.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1686.png deleted file mode 100644 index be2ca987bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1687.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1687.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1688.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1688.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1689.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1689.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1690.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1690.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1691.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1691.png deleted file mode 100644 index e531357801..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1692.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1692.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1693.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1693.png deleted file mode 100644 index 70acae631a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1694.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1694.png deleted file mode 100644 index 645f8d8238..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1695.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1695.png deleted file mode 100644 index 074d3a5693..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1696.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1696.png deleted file mode 100644 index c4144080c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1697.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1697.png deleted file mode 100644 index e609e56d8b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1698.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1698.png deleted file mode 100644 index be2ca987bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1699.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1699.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1700.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1700.png deleted file mode 100644 index 88d9bfc30d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1701.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1701.png deleted file mode 100644 index 8f0988b360..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1702.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1702.png deleted file mode 100644 index f505ad3d02..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1703.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1703.png deleted file mode 100644 index eabee88bf7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1704.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1704.png deleted file mode 100644 index 9b87d0816e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1705.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1705.png deleted file mode 100644 index 0108954e5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1706.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1706.png deleted file mode 100644 index d487d6d5be..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1707.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1707.png deleted file mode 100644 index be514ce1a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1708.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1708.png deleted file mode 100644 index 479205d967..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1709.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1709.png deleted file mode 100644 index 8d5111804b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1710.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1710.png deleted file mode 100644 index a5ab4ea8e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1711.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1711.png deleted file mode 100644 index 35b43b60d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1712.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1712.png deleted file mode 100644 index 66deeac304..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1713.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1713.png deleted file mode 100644 index b149709c24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1714.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1714.png deleted file mode 100644 index 493829b68c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1715.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1715.png deleted file mode 100644 index a71f3a6cfa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1716.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1716.png deleted file mode 100644 index 8252b8bbc8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1717.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1717.png deleted file mode 100644 index 62c8303d26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1718.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1718.png deleted file mode 100644 index 682f745cb9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1719.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1719.png deleted file mode 100644 index 435d3fff00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1720.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1720.png deleted file mode 100644 index 435d3fff00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1721.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1721.png deleted file mode 100644 index 9f36ee6d3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1722.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1722.png deleted file mode 100644 index c6abc9bf27..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1723.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1723.png deleted file mode 100644 index b55bbcf2b0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1724.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1724.png deleted file mode 100644 index 131f10a89d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1725.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1725.png deleted file mode 100644 index ed8117994a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1726.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1726.png deleted file mode 100644 index b9e33ac86d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1727.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1727.png deleted file mode 100644 index d0517da757..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1728.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1728.png deleted file mode 100644 index 1ad3d4a603..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1729.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1729.png deleted file mode 100644 index 89de55311c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1730.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1730.png deleted file mode 100644 index 288a53e2e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1731.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1731.png deleted file mode 100644 index 90dc803cd5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1732.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1732.png deleted file mode 100644 index 903d0308a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1733.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1733.png deleted file mode 100644 index bf89fd5eca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1734.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1734.png deleted file mode 100644 index 9db3160e0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1735.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1735.png deleted file mode 100644 index 04d49b52e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1740.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1740.png deleted file mode 100644 index ca08001b2b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1741.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1741.png deleted file mode 100644 index d995ab906f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1742.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1742.png deleted file mode 100644 index 1e54f4fc7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1743.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1743.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1744.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1744.png deleted file mode 100644 index 863746086a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1745.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1745.png deleted file mode 100644 index 6cd87fb00f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1746.png b/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1746.png deleted file mode 100644 index 824fd52c4e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLargeSwordBlade/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1500.png deleted file mode 100644 index 9e697a72b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1501.png deleted file mode 100644 index 4d2038e603..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1502.png deleted file mode 100644 index 2dec0fafb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1503.png deleted file mode 100644 index 201dcb511c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1504.png deleted file mode 100644 index 696c2c89d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1505.png deleted file mode 100644 index f78d5f41d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1506.png deleted file mode 100644 index d896e942d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1507.png deleted file mode 100644 index bdd477a45f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1508.png deleted file mode 100644 index 1acf956485..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1509.png deleted file mode 100644 index c2655b8b91..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1510.png deleted file mode 100644 index 02d786f13e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1511.png deleted file mode 100644 index 1acf956485..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1512.png deleted file mode 100644 index d86b782332..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1513.png deleted file mode 100644 index d61a952608..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1514.png deleted file mode 100644 index f88bb5ef78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1515.png deleted file mode 100644 index 228265bef1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1516.png deleted file mode 100644 index 81499271e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1517.png deleted file mode 100644 index a3ff978263..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1518.png deleted file mode 100644 index 69212e828b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1519.png deleted file mode 100644 index 1312e2ac03..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1520.png deleted file mode 100644 index 006d2dc2d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1521.png deleted file mode 100644 index d4c730acab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1522.png deleted file mode 100644 index 73ed9a2262..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1523.png deleted file mode 100644 index 5fa0bcd5bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1524.png deleted file mode 100644 index c9d69748d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1525.png deleted file mode 100644 index 56ff477b5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1526.png deleted file mode 100644 index e4915f2349..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1527.png deleted file mode 100644 index 46549419db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1528.png deleted file mode 100644 index 6d020ac375..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1529.png deleted file mode 100644 index 55ed771ae1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1530.png deleted file mode 100644 index 8f03428c66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1531.png deleted file mode 100644 index e0d353e7f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1532.png deleted file mode 100644 index 87af1cac99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1533.png deleted file mode 100644 index f73df8bbbe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1534.png deleted file mode 100644 index 5798d03aec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1535.png deleted file mode 100644 index f33317b8dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1536.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1537.png deleted file mode 100644 index 84ebc14760..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1538.png deleted file mode 100644 index ba094dc402..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1539.png deleted file mode 100644 index 95d35e303c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1540.png deleted file mode 100644 index 3740adc854..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1541.png deleted file mode 100644 index 3e6a734dcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1542.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1543.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1544.png deleted file mode 100644 index 41b5614019..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1545.png deleted file mode 100644 index b8c24c3663..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1546.png deleted file mode 100644 index b250af020a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1547.png deleted file mode 100644 index ca0803fdd3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1548.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1549.png deleted file mode 100644 index 4a23f8b7b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1550.png deleted file mode 100644 index 97432c8dd0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1551.png deleted file mode 100644 index 39f78d3e01..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1553.png deleted file mode 100644 index e497ebe830..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1554.png deleted file mode 100644 index e26571afe8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1555.png deleted file mode 100644 index fb89b3bb1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1556.png deleted file mode 100644 index f88bb5ef78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1557.png deleted file mode 100644 index f88bb5ef78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1562.png deleted file mode 100644 index cd1bb906dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1563.png deleted file mode 100644 index fb89b3bb1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1564.png deleted file mode 100644 index 2cf09c2909..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1565.png deleted file mode 100644 index af7722a49b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1566.png deleted file mode 100644 index 3a27b0421d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1567.png deleted file mode 100644 index db31a59d8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1568.png deleted file mode 100644 index ee11892ccb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1570.png deleted file mode 100644 index 81481174f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1571.png deleted file mode 100644 index 1a0de1e266..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1572.png deleted file mode 100644 index 4fb2a4cd6b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1573.png deleted file mode 100644 index 9fe531a7ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1574.png deleted file mode 100644 index d4c730acab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1575.png deleted file mode 100644 index ca0803fdd3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1576.png deleted file mode 100644 index 80299458d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1577.png deleted file mode 100644 index 0fc5d7cb53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1578.png deleted file mode 100644 index 2250b8436a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1579.png deleted file mode 100644 index 1acf956485..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1582.png deleted file mode 100644 index bb90717208..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1583.png deleted file mode 100644 index b05c9f0bf7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1584.png deleted file mode 100644 index 2769afdf58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1585.png deleted file mode 100644 index 956a16a5bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1586.png deleted file mode 100644 index e14ee54213..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1587.png deleted file mode 100644 index fe9f1925f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1588.png deleted file mode 100644 index fb89b3bb1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1589.png deleted file mode 100644 index 439aaf7e25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1590.png deleted file mode 100644 index 5694d034b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1591.png deleted file mode 100644 index 343329e85a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1592.png deleted file mode 100644 index 0c3e1f8c39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1593.png deleted file mode 100644 index ad9317bf5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1594.png deleted file mode 100644 index 63ce6c677f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1595.png deleted file mode 100644 index e2e12c5de4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1596.png deleted file mode 100644 index 12c1970500..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1597.png deleted file mode 100644 index 6fe154e566..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1598.png deleted file mode 100644 index eb32b5d1a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1599.png deleted file mode 100644 index 89bcac0a3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1600.png deleted file mode 100644 index 85cadcb88f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1601.png deleted file mode 100644 index 3fb6270077..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1602.png deleted file mode 100644 index d1f84c33d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1603.png deleted file mode 100644 index b3245c8625..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1604.png deleted file mode 100644 index 94864a11ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1605.png deleted file mode 100644 index 2c85217609..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1606.png deleted file mode 100644 index 4577e767ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1607.png deleted file mode 100644 index 4e0e8421ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1608.png deleted file mode 100644 index dd3aa1261e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1609.png deleted file mode 100644 index d4c730acab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1610.png deleted file mode 100644 index 02d786f13e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1611.png deleted file mode 100644 index 4c8e5e5b39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1612.png deleted file mode 100644 index 67bfd233fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1613.png deleted file mode 100644 index f8fe4b767a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1614.png deleted file mode 100644 index 4577e767ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1615.png deleted file mode 100644 index ba094dc402..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1616.png deleted file mode 100644 index 273feca66a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1617.png deleted file mode 100644 index 2c85217609..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1618.png deleted file mode 100644 index 66cbbee3c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1619.png deleted file mode 100644 index 40ad434ce8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1620.png deleted file mode 100644 index 5694d034b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1621.png deleted file mode 100644 index 19c0cedba0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1622.png deleted file mode 100644 index 399d5febf4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1623.png deleted file mode 100644 index 676c265c3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1624.png deleted file mode 100644 index 07938e0509..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1625.png deleted file mode 100644 index cb686deef4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1626.png deleted file mode 100644 index 59c5d8c550..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1627.png deleted file mode 100644 index 0d7199fc15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1628.png deleted file mode 100644 index 0a6045c981..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1629.png deleted file mode 100644 index 76c2cbd176..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1630.png deleted file mode 100644 index 44f9bff99b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1631.png deleted file mode 100644 index 02d786f13e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1632.png deleted file mode 100644 index 2925bdcbe0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1633.png deleted file mode 100644 index 2d8133bfe4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1634.png deleted file mode 100644 index e2c941bc85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1635.png deleted file mode 100644 index 4ea4a898c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1636.png deleted file mode 100644 index 452c4f158c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1637.png deleted file mode 100644 index ec27ad6c2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1638.png deleted file mode 100644 index 21afc3d9d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1639.png deleted file mode 100644 index 1a0de1e266..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1640.png deleted file mode 100644 index d26d12a9a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1641.png deleted file mode 100644 index 88f422262f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1642.png deleted file mode 100644 index 1b10547b75..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1643.png deleted file mode 100644 index bddb497d30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1644.png deleted file mode 100644 index cf42c71971..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1645.png deleted file mode 100644 index 2925bdcbe0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1646.png deleted file mode 100644 index 4577e767ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1647.png deleted file mode 100644 index f88bb5ef78..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1648.png deleted file mode 100644 index 02d786f13e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1649.png deleted file mode 100644 index d9f293ad07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1650.png deleted file mode 100644 index 5faec4f31e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1651.png deleted file mode 100644 index df57a48eac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1652.png deleted file mode 100644 index 4e444be6fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1653.png deleted file mode 100644 index cd851cc22c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1654.png deleted file mode 100644 index 5c4ac5057f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1655.png deleted file mode 100644 index 1505ade0b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1656.png deleted file mode 100644 index 770c518818..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1657.png deleted file mode 100644 index d4c730acab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1658.png deleted file mode 100644 index 72779bd021..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1659.png deleted file mode 100644 index 3777a4755a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1660.png deleted file mode 100644 index 075592411d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1661.png deleted file mode 100644 index 07a194c496..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1662.png deleted file mode 100644 index 4bf670b5e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1663.png deleted file mode 100644 index 3b2f1af008..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1664.png deleted file mode 100644 index 288e7e43bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1665.png deleted file mode 100644 index c0171a9ebb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1666.png deleted file mode 100644 index 5b454ca1f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1667.png deleted file mode 100644 index 4d5dabafa6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1668.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1670.png deleted file mode 100644 index 3a29a79643..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1672.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1673.png deleted file mode 100644 index fbcd0e63cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1674.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1675.png deleted file mode 100644 index 4577e767ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1676.png deleted file mode 100644 index 52003a5036..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1677.png deleted file mode 100644 index c08675ac0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1678.png deleted file mode 100644 index 9da3e81e7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1679.png deleted file mode 100644 index 426b1ec36b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1680.png deleted file mode 100644 index 270e2340a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1681.png deleted file mode 100644 index c6369156a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1682.png deleted file mode 100644 index b129d0b918..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1683.png deleted file mode 100644 index 5ab0510108..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1684.png deleted file mode 100644 index 941f309d80..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1685.png deleted file mode 100644 index 408f15f833..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1686.png deleted file mode 100644 index d4c730acab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1687.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1688.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1689.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1690.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1691.png deleted file mode 100644 index c4a6ddb32f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1692.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1693.png deleted file mode 100644 index 76026f193a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1694.png deleted file mode 100644 index 557d624a36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1695.png deleted file mode 100644 index 16af7dde8c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1696.png deleted file mode 100644 index b0448d325a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1697.png deleted file mode 100644 index 67e1bb0c7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1698.png deleted file mode 100644 index d4c730acab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1699.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1700.png deleted file mode 100644 index 0517a6f833..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1701.png deleted file mode 100644 index 5702adb526..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1702.png deleted file mode 100644 index f98e19e595..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1703.png deleted file mode 100644 index e689ddfab5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1704.png deleted file mode 100644 index 161bc91402..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1705.png deleted file mode 100644 index 4c27d94142..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1706.png deleted file mode 100644 index 02d786f13e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1707.png deleted file mode 100644 index a48e041af6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1708.png deleted file mode 100644 index 696c2c89d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1709.png deleted file mode 100644 index 966eb8e5b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1710.png deleted file mode 100644 index 748d3c721c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1711.png deleted file mode 100644 index 400de93aaa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1712.png deleted file mode 100644 index cd2a075a42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1713.png deleted file mode 100644 index 9ef328b3d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1714.png deleted file mode 100644 index 9bf00d2dc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1715.png deleted file mode 100644 index 9f94d16be4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1716.png deleted file mode 100644 index f6bfb494eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1717.png deleted file mode 100644 index 09264f80f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1718.png deleted file mode 100644 index 325b2d4eba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1719.png deleted file mode 100644 index b5c51ad481..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1720.png deleted file mode 100644 index b5c51ad481..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1721.png deleted file mode 100644 index 0f4cf1ae3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1722.png deleted file mode 100644 index a94fd00bb6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1723.png deleted file mode 100644 index f80ed38f1b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1724.png deleted file mode 100644 index f87d450f9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1725.png deleted file mode 100644 index 50a351915c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1726.png deleted file mode 100644 index 5f7be3b738..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1727.png deleted file mode 100644 index b3fb8d8c4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1728.png deleted file mode 100644 index bdbd2bb81a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1729.png deleted file mode 100644 index 2a78a9b251..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1730.png deleted file mode 100644 index 76f983deb2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1731.png deleted file mode 100644 index 0524f410b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1732.png deleted file mode 100644 index 0f16b3b1ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1733.png deleted file mode 100644 index 90b60c3d40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1734.png deleted file mode 100644 index cace1b36e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1735.png deleted file mode 100644 index b61f2e5040..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1740.png deleted file mode 100644 index c2d836e67d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1741.png deleted file mode 100644 index 19dcdedecb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1742.png deleted file mode 100644 index ac2624d6e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1743.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1744.png deleted file mode 100644 index 188c1a7d2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1745.png deleted file mode 100644 index 3d87f9f2ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartLumberHead/1746.png deleted file mode 100644 index 1bebdba98d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartLumberHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1500.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1500.png deleted file mode 100644 index 10eee48eea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1501.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1501.png deleted file mode 100644 index 18777e47ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1502.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1502.png deleted file mode 100644 index 76ffab5576..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1503.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1503.png deleted file mode 100644 index e1d10aecf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1504.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1504.png deleted file mode 100644 index ceb6fbfac8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1505.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1505.png deleted file mode 100644 index c6bfc4b82b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1506.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1506.png deleted file mode 100644 index 06f7756b29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1507.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1507.png deleted file mode 100644 index 238ceb60a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1508.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1508.png deleted file mode 100644 index 2696d3c6a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1509.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1509.png deleted file mode 100644 index 32f4a4eb31..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1510.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1510.png deleted file mode 100644 index fba74d4cc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1511.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1511.png deleted file mode 100644 index 2696d3c6a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1512.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1512.png deleted file mode 100644 index 19c74330d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1513.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1513.png deleted file mode 100644 index 6428d23803..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1514.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1514.png deleted file mode 100644 index b25e0fc2ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1515.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1515.png deleted file mode 100644 index 7570e3d29a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1516.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1516.png deleted file mode 100644 index 6a08fc1093..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1517.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1517.png deleted file mode 100644 index e7a3ecf1ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1518.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1518.png deleted file mode 100644 index 7cc18cc970..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1519.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1519.png deleted file mode 100644 index 614f6119c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1520.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1520.png deleted file mode 100644 index 64a000f723..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1521.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1521.png deleted file mode 100644 index eca8d31736..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1522.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1522.png deleted file mode 100644 index 580e30658a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1523.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1523.png deleted file mode 100644 index 396f73b08b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1524.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1524.png deleted file mode 100644 index 24c9ce00cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1525.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1525.png deleted file mode 100644 index a186997a30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1526.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1526.png deleted file mode 100644 index b0ceb61f50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1527.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1527.png deleted file mode 100644 index 1c1428ceb7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1528.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1528.png deleted file mode 100644 index 57d45d2dde..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1529.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1529.png deleted file mode 100644 index 66db892f90..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1530.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1530.png deleted file mode 100644 index fd434be9b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1531.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1531.png deleted file mode 100644 index e04985c727..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1532.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1532.png deleted file mode 100644 index 8f82b9c483..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1533.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1533.png deleted file mode 100644 index 3de6dee440..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1534.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1534.png deleted file mode 100644 index adb6dd91dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1535.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1535.png deleted file mode 100644 index 2369c50fd8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1536.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1536.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1537.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1537.png deleted file mode 100644 index 230dd795bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1538.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1538.png deleted file mode 100644 index 1a12cf56a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1539.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1539.png deleted file mode 100644 index 34386632f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1540.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1540.png deleted file mode 100644 index ca7d91c456..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1541.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1541.png deleted file mode 100644 index fc13dded03..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1542.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1542.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1543.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1543.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1544.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1544.png deleted file mode 100644 index 9a29d157a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1545.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1545.png deleted file mode 100644 index 978d1bba8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1546.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1546.png deleted file mode 100644 index 510ce044b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1547.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1547.png deleted file mode 100644 index 4a51c9d266..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1548.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1548.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1549.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1549.png deleted file mode 100644 index 4d6f184f2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1550.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1550.png deleted file mode 100644 index 2fd12ce8fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1551.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1551.png deleted file mode 100644 index acefaef0fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1553.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1553.png deleted file mode 100644 index c2ed23384c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1554.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1554.png deleted file mode 100644 index 05efd9b01d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1555.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1555.png deleted file mode 100644 index bafad5e89a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1556.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1556.png deleted file mode 100644 index b25e0fc2ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1557.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1557.png deleted file mode 100644 index b25e0fc2ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1562.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1562.png deleted file mode 100644 index f4cdaa967e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1563.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1563.png deleted file mode 100644 index bafad5e89a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1564.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1564.png deleted file mode 100644 index e23e090eb6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1565.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1565.png deleted file mode 100644 index c4cacafa26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1566.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1566.png deleted file mode 100644 index 10a241b119..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1567.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1567.png deleted file mode 100644 index 697865ab4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1568.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1568.png deleted file mode 100644 index e8a7dd0387..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1570.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1570.png deleted file mode 100644 index 09ca4fae0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1571.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1571.png deleted file mode 100644 index 88a8e33ea9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1572.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1572.png deleted file mode 100644 index 2eeb8d90e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1573.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1573.png deleted file mode 100644 index 1a0be5fe06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1574.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1574.png deleted file mode 100644 index eca8d31736..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1575.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1575.png deleted file mode 100644 index 4a51c9d266..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1576.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1576.png deleted file mode 100644 index 007f9fe888..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1577.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1577.png deleted file mode 100644 index 0eed21f79d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1578.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1578.png deleted file mode 100644 index 912305db5d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1579.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1579.png deleted file mode 100644 index 2696d3c6a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1582.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1582.png deleted file mode 100644 index 149b9af13d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1583.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1583.png deleted file mode 100644 index ff05f3e3d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1584.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1584.png deleted file mode 100644 index 8bb7d6d404..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1585.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1585.png deleted file mode 100644 index 8ea84c2daa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1586.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1586.png deleted file mode 100644 index 6cfe592ffa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1587.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1587.png deleted file mode 100644 index 845284a151..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1588.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1588.png deleted file mode 100644 index bafad5e89a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1589.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1589.png deleted file mode 100644 index 21cc7527b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1590.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1590.png deleted file mode 100644 index ccf30ad63d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1591.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1591.png deleted file mode 100644 index a9b40e12e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1592.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1592.png deleted file mode 100644 index d4e44d1f84..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1593.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1593.png deleted file mode 100644 index 7f001f6ae3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1594.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1594.png deleted file mode 100644 index 15616a2d53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1595.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1595.png deleted file mode 100644 index 3a2177521a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1596.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1596.png deleted file mode 100644 index 04b9f611b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1597.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1597.png deleted file mode 100644 index 72bd78cb66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1598.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1598.png deleted file mode 100644 index 809a5a3b7c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1599.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1599.png deleted file mode 100644 index 6a8db702fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1600.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1600.png deleted file mode 100644 index 623f159c22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1601.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1601.png deleted file mode 100644 index 09f8a5a817..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1602.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1602.png deleted file mode 100644 index 4cd960908f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1603.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1603.png deleted file mode 100644 index 701c03d00f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1604.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1604.png deleted file mode 100644 index acd6a3b2d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1605.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1605.png deleted file mode 100644 index 1bcd06536d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1606.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1606.png deleted file mode 100644 index 06e8e4fe1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1607.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1607.png deleted file mode 100644 index 55b9c39c5a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1608.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1608.png deleted file mode 100644 index 34abcd3d10..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1609.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1609.png deleted file mode 100644 index eca8d31736..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1610.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1610.png deleted file mode 100644 index fba74d4cc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1611.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1611.png deleted file mode 100644 index be5d2ba28f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1612.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1612.png deleted file mode 100644 index 44fc5fcd45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1613.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1613.png deleted file mode 100644 index 8d68e7d3a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1614.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1614.png deleted file mode 100644 index 06e8e4fe1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1615.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1615.png deleted file mode 100644 index 1a12cf56a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1616.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1616.png deleted file mode 100644 index edd832ce02..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1617.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1617.png deleted file mode 100644 index 1bcd06536d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1618.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1618.png deleted file mode 100644 index ba0f6e3e51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1619.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1619.png deleted file mode 100644 index 6ef519db12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1620.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1620.png deleted file mode 100644 index ccf30ad63d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1621.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1621.png deleted file mode 100644 index 3b959e24a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1622.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1622.png deleted file mode 100644 index 8e00a3c063..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1623.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1623.png deleted file mode 100644 index ba805bf6d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1624.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1624.png deleted file mode 100644 index 56e6b2aeec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1625.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1625.png deleted file mode 100644 index b46e76d29b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1626.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1626.png deleted file mode 100644 index 8fe7a6b401..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1627.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1627.png deleted file mode 100644 index f6e030f310..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1628.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1628.png deleted file mode 100644 index fde055858b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1629.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1629.png deleted file mode 100644 index abba71c556..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1630.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1630.png deleted file mode 100644 index a0b64a13a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1631.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1631.png deleted file mode 100644 index fba74d4cc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1632.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1632.png deleted file mode 100644 index 926b027378..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1633.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1633.png deleted file mode 100644 index f6cfd303ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1634.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1634.png deleted file mode 100644 index 76a5dbcb85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1635.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1635.png deleted file mode 100644 index 8b33cbb676..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1636.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1636.png deleted file mode 100644 index 465f2e11ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1637.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1637.png deleted file mode 100644 index 0566215424..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1638.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1638.png deleted file mode 100644 index ad816e3f49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1639.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1639.png deleted file mode 100644 index 88a8e33ea9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1640.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1640.png deleted file mode 100644 index 8d99af9443..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1641.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1641.png deleted file mode 100644 index e89202f62d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1642.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1642.png deleted file mode 100644 index 958fc10124..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1643.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1643.png deleted file mode 100644 index fc84751672..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1644.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1644.png deleted file mode 100644 index f42cd61409..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1645.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1645.png deleted file mode 100644 index 926b027378..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1646.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1646.png deleted file mode 100644 index 06e8e4fe1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1647.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1647.png deleted file mode 100644 index b25e0fc2ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1648.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1648.png deleted file mode 100644 index fba74d4cc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1649.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1649.png deleted file mode 100644 index 37c77c47ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1650.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1650.png deleted file mode 100644 index 88cf6a4b20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1651.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1651.png deleted file mode 100644 index 9773aa1bcb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1652.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1652.png deleted file mode 100644 index 389cd74d1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1653.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1653.png deleted file mode 100644 index ff3fe86e6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1654.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1654.png deleted file mode 100644 index b21839c841..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1655.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1655.png deleted file mode 100644 index 6217b8679c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1656.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1656.png deleted file mode 100644 index 948829fcd6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1657.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1657.png deleted file mode 100644 index eca8d31736..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1658.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1658.png deleted file mode 100644 index c9fee2dc91..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1659.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1659.png deleted file mode 100644 index 6bafdfc730..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1660.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1660.png deleted file mode 100644 index 5cd1cce9bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1661.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1661.png deleted file mode 100644 index b435a6f9bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1662.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1662.png deleted file mode 100644 index 4726ff62a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1663.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1663.png deleted file mode 100644 index 7862335c45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1664.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1664.png deleted file mode 100644 index f2f4a8b020..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1665.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1665.png deleted file mode 100644 index d69382a5a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1666.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1666.png deleted file mode 100644 index bee63e493e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1667.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1667.png deleted file mode 100644 index 402174fb8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1668.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1668.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1670.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1670.png deleted file mode 100644 index ff51eb68e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1672.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1672.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1673.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1673.png deleted file mode 100644 index 01a8b5e8d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1674.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1674.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1675.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1675.png deleted file mode 100644 index 06e8e4fe1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1676.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1676.png deleted file mode 100644 index 4fcf38889b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1677.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1677.png deleted file mode 100644 index cf81c9176a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1678.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1678.png deleted file mode 100644 index ce85614b39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1679.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1679.png deleted file mode 100644 index efa2bc943d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1680.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1680.png deleted file mode 100644 index 765dc4552c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1681.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1681.png deleted file mode 100644 index 3c42b3fcf1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1682.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1682.png deleted file mode 100644 index 6655d082fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1683.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1683.png deleted file mode 100644 index a339d61550..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1684.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1684.png deleted file mode 100644 index 3488e3eba5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1685.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1685.png deleted file mode 100644 index 5d828e8e20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1686.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1686.png deleted file mode 100644 index eca8d31736..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1687.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1687.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1688.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1688.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1689.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1689.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1690.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1690.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1691.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1691.png deleted file mode 100644 index 3cf0ddaf4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1692.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1692.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1693.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1693.png deleted file mode 100644 index a0af0d28c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1694.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1694.png deleted file mode 100644 index 5ae9dc6a77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1695.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1695.png deleted file mode 100644 index 6e049588cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1696.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1696.png deleted file mode 100644 index c7c9360617..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1697.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1697.png deleted file mode 100644 index f31ae2e1a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1698.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1698.png deleted file mode 100644 index eca8d31736..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1699.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1699.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1700.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1700.png deleted file mode 100644 index 2689270bbf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1701.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1701.png deleted file mode 100644 index 65a014ae2b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1702.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1702.png deleted file mode 100644 index b903aa09e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1703.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1703.png deleted file mode 100644 index bb0e325cd4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1704.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1704.png deleted file mode 100644 index f8783c52d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1705.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1705.png deleted file mode 100644 index 2d110dd735..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1706.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1706.png deleted file mode 100644 index fba74d4cc0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1707.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1707.png deleted file mode 100644 index 2a3cf5fcc5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1708.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1708.png deleted file mode 100644 index ceb6fbfac8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1709.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1709.png deleted file mode 100644 index 52b3165079..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1710.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1710.png deleted file mode 100644 index f13d0c3401..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1711.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1711.png deleted file mode 100644 index 351d761550..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1712.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1712.png deleted file mode 100644 index f08cc7bde2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1713.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1713.png deleted file mode 100644 index c94ab12ad0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1714.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1714.png deleted file mode 100644 index 5ed4d692a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1715.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1715.png deleted file mode 100644 index 767dd2f83c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1716.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1716.png deleted file mode 100644 index bb54d47326..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1717.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1717.png deleted file mode 100644 index 00ad95151b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1718.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1718.png deleted file mode 100644 index aa3c15d02b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1719.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1719.png deleted file mode 100644 index 2caea0950e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1720.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1720.png deleted file mode 100644 index 2caea0950e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1721.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1721.png deleted file mode 100644 index fe9de7c81d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1722.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1722.png deleted file mode 100644 index ba4a5c71f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1723.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1723.png deleted file mode 100644 index 7f2c0f7c60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1724.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1724.png deleted file mode 100644 index c01692ed5a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1725.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1725.png deleted file mode 100644 index 9b3426abea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1726.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1726.png deleted file mode 100644 index deba46eb56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1727.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1727.png deleted file mode 100644 index 8c20140940..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1728.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1728.png deleted file mode 100644 index b51f9a0c53..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1729.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1729.png deleted file mode 100644 index c8e69741a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1730.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1730.png deleted file mode 100644 index e0ac7042d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1731.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1731.png deleted file mode 100644 index 2e3fc244c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1732.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1732.png deleted file mode 100644 index 381ee6b80a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1733.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1733.png deleted file mode 100644 index 0245b05459..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1734.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1734.png deleted file mode 100644 index c51f69dc3d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1735.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1735.png deleted file mode 100644 index 9dc6f72e7d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1740.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1740.png deleted file mode 100644 index 1fd588a3f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1741.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1741.png deleted file mode 100644 index fd1c7b2749..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1742.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1742.png deleted file mode 100644 index bca1f601d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1743.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1743.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1744.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1744.png deleted file mode 100644 index 5f2aa21c07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1745.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1745.png deleted file mode 100644 index ffed7a1c11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1746.png b/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1746.png deleted file mode 100644 index 40d9aee9dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartMediumGuard/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1500.png deleted file mode 100644 index 0708ec6cf6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1501.png deleted file mode 100644 index da5d23e5ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1502.png deleted file mode 100644 index 259f2611d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1503.png deleted file mode 100644 index 668cfd10b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1504.png deleted file mode 100644 index e4fbd71051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1505.png deleted file mode 100644 index adeffdaa98..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1506.png deleted file mode 100644 index 2d711b01f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1507.png deleted file mode 100644 index 046cc1f258..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1508.png deleted file mode 100644 index b70ff9373a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1509.png deleted file mode 100644 index ef6c2c701a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1510.png deleted file mode 100644 index eebc3b46f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1511.png deleted file mode 100644 index b70ff9373a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1512.png deleted file mode 100644 index 10705c45a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1513.png deleted file mode 100644 index 3e18aff52f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1514.png deleted file mode 100644 index a5cd43ad21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1515.png deleted file mode 100644 index 8c7933df9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1516.png deleted file mode 100644 index e71f7eecdf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1517.png deleted file mode 100644 index 0026ef23c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1518.png deleted file mode 100644 index c8b48f448f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1519.png deleted file mode 100644 index e83b6afdf5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1520.png deleted file mode 100644 index f9a932e03f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1521.png deleted file mode 100644 index 0fe0b35775..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1522.png deleted file mode 100644 index 34b5759a28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1523.png deleted file mode 100644 index 032b43f105..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1524.png deleted file mode 100644 index f0cd9a96f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1525.png deleted file mode 100644 index 658af8d5c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1526.png deleted file mode 100644 index 390529c399..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1527.png deleted file mode 100644 index d606c1d7df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1528.png deleted file mode 100644 index 4aee5efb21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1529.png deleted file mode 100644 index aae8f08cbd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1530.png deleted file mode 100644 index e0f3f62fa9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1531.png deleted file mode 100644 index 51143da6f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1532.png deleted file mode 100644 index 84ab5e5989..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1533.png deleted file mode 100644 index 89e2878d91..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1534.png deleted file mode 100644 index 1cf37ead76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1535.png deleted file mode 100644 index fba97305e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1536.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1537.png deleted file mode 100644 index 526d4b4daa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1538.png deleted file mode 100644 index d1533066a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1539.png deleted file mode 100644 index fc98ec87fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1540.png deleted file mode 100644 index 14160971d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1541.png deleted file mode 100644 index abfdd67512..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1542.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1543.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1544.png deleted file mode 100644 index a698036492..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1545.png deleted file mode 100644 index 1a7b71e108..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1546.png deleted file mode 100644 index 56494958e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1547.png deleted file mode 100644 index 5e986827b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1548.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1549.png deleted file mode 100644 index 108f85b373..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1550.png deleted file mode 100644 index 21ba7dd7ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1551.png deleted file mode 100644 index 7c6d69fadc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1553.png deleted file mode 100644 index 8c2cf86e42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1554.png deleted file mode 100644 index dd9762aa5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1555.png deleted file mode 100644 index 744f0ba04b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1556.png deleted file mode 100644 index a5cd43ad21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1557.png deleted file mode 100644 index a5cd43ad21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1562.png deleted file mode 100644 index d89efa02de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1563.png deleted file mode 100644 index 744f0ba04b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1564.png deleted file mode 100644 index 7393d06619..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1565.png deleted file mode 100644 index 556666cb28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1566.png deleted file mode 100644 index 352554cf40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1567.png deleted file mode 100644 index 7e65a222e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1568.png deleted file mode 100644 index add9d5e113..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1570.png deleted file mode 100644 index f652fc4446..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1571.png deleted file mode 100644 index 8f95262251..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1572.png deleted file mode 100644 index cae227d319..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1573.png deleted file mode 100644 index 33edc6df52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1574.png deleted file mode 100644 index 0fe0b35775..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1575.png deleted file mode 100644 index 5e986827b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1576.png deleted file mode 100644 index faeceb4d5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1577.png deleted file mode 100644 index a753254611..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1578.png deleted file mode 100644 index 1bd3325fef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1579.png deleted file mode 100644 index b70ff9373a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1582.png deleted file mode 100644 index 0beed87c40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1583.png deleted file mode 100644 index c769703219..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1584.png deleted file mode 100644 index c119862dbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1585.png deleted file mode 100644 index b29e56a511..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1586.png deleted file mode 100644 index 30ef762b41..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1587.png deleted file mode 100644 index f2b9369df1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1588.png deleted file mode 100644 index 744f0ba04b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1589.png deleted file mode 100644 index bfe3c138ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1590.png deleted file mode 100644 index bafd4b44c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1591.png deleted file mode 100644 index 1bbdc5e152..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1592.png deleted file mode 100644 index e41e391505..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1593.png deleted file mode 100644 index 989cfa6ed8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1594.png deleted file mode 100644 index 51f1d2badb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1595.png deleted file mode 100644 index 8cf6ac1e70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1596.png deleted file mode 100644 index 95df39f1ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1597.png deleted file mode 100644 index aa4de4b014..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1598.png deleted file mode 100644 index bd8748fc6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1599.png deleted file mode 100644 index 678a0bd9f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1600.png deleted file mode 100644 index 0cc3797568..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1601.png deleted file mode 100644 index 9436da23bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1602.png deleted file mode 100644 index 5afc1679e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1603.png deleted file mode 100644 index 5747465866..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1604.png deleted file mode 100644 index 971ec81b94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1605.png deleted file mode 100644 index 95b6d7ce84..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1606.png deleted file mode 100644 index 95fff47041..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1607.png deleted file mode 100644 index 6328e16c61..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1608.png deleted file mode 100644 index cc4ad2079c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1609.png deleted file mode 100644 index 0fe0b35775..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1610.png deleted file mode 100644 index eebc3b46f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1611.png deleted file mode 100644 index fe3affb94c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1612.png deleted file mode 100644 index 497f1a76a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1613.png deleted file mode 100644 index 97dfba4870..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1614.png deleted file mode 100644 index 95fff47041..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1615.png deleted file mode 100644 index d1533066a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1616.png deleted file mode 100644 index 282f1bf6ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1617.png deleted file mode 100644 index 95b6d7ce84..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1618.png deleted file mode 100644 index d16ce56f6c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1619.png deleted file mode 100644 index d01be60b17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1620.png deleted file mode 100644 index bafd4b44c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1621.png deleted file mode 100644 index 4804085302..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1622.png deleted file mode 100644 index 05cbb0f8f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1623.png deleted file mode 100644 index 132818d66e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1624.png deleted file mode 100644 index feb321a58f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1625.png deleted file mode 100644 index 19566cb42f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1626.png deleted file mode 100644 index 52888d7e1b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1627.png deleted file mode 100644 index c6dd57e33c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1628.png deleted file mode 100644 index 54c9d50520..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1629.png deleted file mode 100644 index 3e04675968..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1630.png deleted file mode 100644 index fe0f0fc431..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1631.png deleted file mode 100644 index eebc3b46f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1632.png deleted file mode 100644 index 77906b5748..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1633.png deleted file mode 100644 index d800382f09..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1634.png deleted file mode 100644 index 3743fb592c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1635.png deleted file mode 100644 index 9503646298..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1636.png deleted file mode 100644 index 9b0019b8d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1637.png deleted file mode 100644 index 885896977f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1638.png deleted file mode 100644 index 3e95c9fa70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1639.png deleted file mode 100644 index 8f95262251..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1640.png deleted file mode 100644 index 2bca8b8bda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1641.png deleted file mode 100644 index 5dc659ea4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1642.png deleted file mode 100644 index af13b90ee5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1643.png deleted file mode 100644 index 9d35de2700..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1644.png deleted file mode 100644 index db43a3b334..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1645.png deleted file mode 100644 index 77906b5748..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1646.png deleted file mode 100644 index 95fff47041..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1647.png deleted file mode 100644 index a5cd43ad21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1648.png deleted file mode 100644 index eebc3b46f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1649.png deleted file mode 100644 index 2308e5352d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1650.png deleted file mode 100644 index 7e9cbf12f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1651.png deleted file mode 100644 index f34ee2b8f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1652.png deleted file mode 100644 index 623b01999d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1653.png deleted file mode 100644 index 1c9a34cdcc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1654.png deleted file mode 100644 index 5c7630b624..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1655.png deleted file mode 100644 index 6e6e21eb03..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1656.png deleted file mode 100644 index 17b551c17f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1657.png deleted file mode 100644 index 0fe0b35775..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1658.png deleted file mode 100644 index 615a7290b9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1659.png deleted file mode 100644 index fb215bee16..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1660.png deleted file mode 100644 index 63e820f7d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1661.png deleted file mode 100644 index 0bd69967c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1662.png deleted file mode 100644 index 17503a8485..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1663.png deleted file mode 100644 index 6392c7c7ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1664.png deleted file mode 100644 index d9115859eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1665.png deleted file mode 100644 index 985b19a817..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1666.png deleted file mode 100644 index b8f03dea7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1667.png deleted file mode 100644 index 4302fb79f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1668.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1670.png deleted file mode 100644 index ed396f351b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1672.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1673.png deleted file mode 100644 index ad35ffe281..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1674.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1675.png deleted file mode 100644 index 95fff47041..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1676.png deleted file mode 100644 index 3663f532da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1677.png deleted file mode 100644 index 62a2785988..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1678.png deleted file mode 100644 index 2613d6240a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1679.png deleted file mode 100644 index 835624b1c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1680.png deleted file mode 100644 index 79f530f70f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1681.png deleted file mode 100644 index 35118d9914..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1682.png deleted file mode 100644 index e51f2d4158..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1683.png deleted file mode 100644 index 02a12a00bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1684.png deleted file mode 100644 index ec5d6afe40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1685.png deleted file mode 100644 index a8a2874b66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1686.png deleted file mode 100644 index 0fe0b35775..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1687.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1688.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1689.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1690.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1691.png deleted file mode 100644 index 2cf99e17dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1692.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1693.png deleted file mode 100644 index fdcb71dc51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1694.png deleted file mode 100644 index bc0e8a5f4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1695.png deleted file mode 100644 index c450986f85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1696.png deleted file mode 100644 index 9be881f63c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1697.png deleted file mode 100644 index 4973c318bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1698.png deleted file mode 100644 index 0fe0b35775..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1699.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1700.png deleted file mode 100644 index 5f9ef54a9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1701.png deleted file mode 100644 index b200da7dce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1702.png deleted file mode 100644 index 5ae5a1b684..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1703.png deleted file mode 100644 index 25cee4013f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1704.png deleted file mode 100644 index 15a1d6bc20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1705.png deleted file mode 100644 index f003d49595..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1706.png deleted file mode 100644 index eebc3b46f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1707.png deleted file mode 100644 index 49d2d2e558..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1708.png deleted file mode 100644 index e4fbd71051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1709.png deleted file mode 100644 index fbaa28d5b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1710.png deleted file mode 100644 index 30993069b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1711.png deleted file mode 100644 index 22cdaa4ce0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1712.png deleted file mode 100644 index 98cfc55474..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1713.png deleted file mode 100644 index 13b38288fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1714.png deleted file mode 100644 index f3029594c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1715.png deleted file mode 100644 index cfa9b1a42a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1716.png deleted file mode 100644 index 7bce8a5c42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1717.png deleted file mode 100644 index 54b7a69419..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1718.png deleted file mode 100644 index 0e0af6a883..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1719.png deleted file mode 100644 index 12a2702120..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1720.png deleted file mode 100644 index 12a2702120..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1721.png deleted file mode 100644 index 157cd58a3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1722.png deleted file mode 100644 index 3c2bff3411..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1723.png deleted file mode 100644 index d0b9c1372e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1724.png deleted file mode 100644 index aecd4ad2a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1725.png deleted file mode 100644 index 0a949fddf4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1726.png deleted file mode 100644 index a79506c9bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1727.png deleted file mode 100644 index 9297c23e05..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1728.png deleted file mode 100644 index 87a90244a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1729.png deleted file mode 100644 index cef72e5cde..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1730.png deleted file mode 100644 index 00977c5283..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1731.png deleted file mode 100644 index 04e3f2a306..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1732.png deleted file mode 100644 index bb678a9128..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1733.png deleted file mode 100644 index b67625fb9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1734.png deleted file mode 100644 index b7c765b548..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1735.png deleted file mode 100644 index 3311e685f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1740.png deleted file mode 100644 index ef136a9340..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1741.png deleted file mode 100644 index 3d3c82681c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1742.png deleted file mode 100644 index df3f30e0a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1743.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1744.png deleted file mode 100644 index d93ddde847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1745.png deleted file mode 100644 index 8368cdcb1a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1746.png deleted file mode 100644 index 218b720d07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartPickaxeHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1500.png deleted file mode 100644 index d08ddb133a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1501.png deleted file mode 100644 index 41e7ab471e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1502.png deleted file mode 100644 index 6aba6f4a14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1503.png deleted file mode 100644 index f5007778da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1504.png deleted file mode 100644 index 52b2b60224..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1505.png deleted file mode 100644 index 1c918ebb94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1506.png deleted file mode 100644 index 803e995ca9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1507.png deleted file mode 100644 index 0552b475cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1508.png deleted file mode 100644 index a3b66159c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1509.png deleted file mode 100644 index cb081c9124..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1510.png deleted file mode 100644 index 19ffb6aa55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1511.png deleted file mode 100644 index a3b66159c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1512.png deleted file mode 100644 index 9dd843c564..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1513.png deleted file mode 100644 index 451e028ec6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1514.png deleted file mode 100644 index 812612e488..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1515.png deleted file mode 100644 index 464c7031c1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1516.png deleted file mode 100644 index fbb8f26fcc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1517.png deleted file mode 100644 index 0c0c32e25b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1518.png deleted file mode 100644 index 4802d2c053..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1519.png deleted file mode 100644 index 1978dd7199..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1520.png deleted file mode 100644 index 35e9c7118c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1521.png deleted file mode 100644 index 3621c85811..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1522.png deleted file mode 100644 index 296abc1d3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1523.png deleted file mode 100644 index df82748129..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1524.png deleted file mode 100644 index 7cbd44d921..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1525.png deleted file mode 100644 index b1c734f265..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1526.png deleted file mode 100644 index 296e24075e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1527.png deleted file mode 100644 index 2581f8d212..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1528.png deleted file mode 100644 index 7b36cd8916..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1529.png deleted file mode 100644 index 0d260be4ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1530.png deleted file mode 100644 index 6e9149dda6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1531.png deleted file mode 100644 index 8665461e21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1532.png deleted file mode 100644 index 29e510207d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1533.png deleted file mode 100644 index 5f60a5d0e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1534.png deleted file mode 100644 index 3f88f79170..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1535.png deleted file mode 100644 index ae6d6252df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1536.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1537.png deleted file mode 100644 index eb9403ff46..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1538.png deleted file mode 100644 index 182570df82..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1539.png deleted file mode 100644 index f21d191569..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1540.png deleted file mode 100644 index 1ae16dfabe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1541.png deleted file mode 100644 index 833552e888..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1542.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1543.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1544.png deleted file mode 100644 index 02db0a4964..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1545.png deleted file mode 100644 index 8b92b82695..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1546.png deleted file mode 100644 index 0d2293697d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1547.png deleted file mode 100644 index 37381383b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1548.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1549.png deleted file mode 100644 index f407e9176f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1550.png deleted file mode 100644 index 9327944040..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1551.png deleted file mode 100644 index 5fd4ac368d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1553.png deleted file mode 100644 index 19fb8aee2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1554.png deleted file mode 100644 index bccc1605f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1555.png deleted file mode 100644 index 4a79f8b49f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1556.png deleted file mode 100644 index 812612e488..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1557.png deleted file mode 100644 index 812612e488..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1562.png deleted file mode 100644 index e6f50dea2f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1563.png deleted file mode 100644 index 4a79f8b49f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1564.png deleted file mode 100644 index 741a742904..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1565.png deleted file mode 100644 index d4ce2b7c19..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1566.png deleted file mode 100644 index e3192ec9fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1567.png deleted file mode 100644 index 08a2753f95..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1568.png deleted file mode 100644 index b3718b8d50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1570.png deleted file mode 100644 index d891297fd3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1571.png deleted file mode 100644 index 3593f3030f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1572.png deleted file mode 100644 index 8219e4734f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1573.png deleted file mode 100644 index fdb4f60ed2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1574.png deleted file mode 100644 index 3621c85811..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1575.png deleted file mode 100644 index 37381383b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1576.png deleted file mode 100644 index 801d64dc3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1577.png deleted file mode 100644 index 531e0f77c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1578.png deleted file mode 100644 index 5f0d29caa4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1579.png deleted file mode 100644 index a3b66159c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1582.png deleted file mode 100644 index 6a91844ce4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1583.png deleted file mode 100644 index 8226f17e14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1584.png deleted file mode 100644 index fa966645d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1585.png deleted file mode 100644 index d4335e98ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1586.png deleted file mode 100644 index 1f06f85cce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1587.png deleted file mode 100644 index 35c2a0a3e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1588.png deleted file mode 100644 index 4a79f8b49f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1589.png deleted file mode 100644 index 05f34365a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1590.png deleted file mode 100644 index 8802e3f86a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1591.png deleted file mode 100644 index 8c8ca170a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1592.png deleted file mode 100644 index 869b852a16..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1593.png deleted file mode 100644 index 7aa7d9e15c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1594.png deleted file mode 100644 index 3801bac6a3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1595.png deleted file mode 100644 index 48a1f80392..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1596.png deleted file mode 100644 index 874db1bf2f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1597.png deleted file mode 100644 index bf89000ab2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1598.png deleted file mode 100644 index 70d47eacf5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1599.png deleted file mode 100644 index 5a50e46762..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1600.png deleted file mode 100644 index 07a984d743..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1601.png deleted file mode 100644 index 69684e12bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1602.png deleted file mode 100644 index f2edad4583..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1603.png deleted file mode 100644 index bdd3dd63ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1604.png deleted file mode 100644 index 48e4044d1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1605.png deleted file mode 100644 index 58675732a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1606.png deleted file mode 100644 index b80c7f46f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1607.png deleted file mode 100644 index ad303f5a05..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1608.png deleted file mode 100644 index cb682b5e87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1609.png deleted file mode 100644 index 3621c85811..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1610.png deleted file mode 100644 index 19ffb6aa55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1611.png deleted file mode 100644 index aceb1636fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1612.png deleted file mode 100644 index 0cfb53724b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1613.png deleted file mode 100644 index b30be0b516..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1614.png deleted file mode 100644 index b80c7f46f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1615.png deleted file mode 100644 index 182570df82..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1616.png deleted file mode 100644 index 045960570d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1617.png deleted file mode 100644 index 58675732a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1618.png deleted file mode 100644 index 9734e7eca2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1619.png deleted file mode 100644 index e628e41895..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1620.png deleted file mode 100644 index 8802e3f86a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1621.png deleted file mode 100644 index d93d88daa0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1622.png deleted file mode 100644 index 4c4fb140e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1623.png deleted file mode 100644 index a37faabb56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1624.png deleted file mode 100644 index 6687bb192c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1625.png deleted file mode 100644 index 86e747e38f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1626.png deleted file mode 100644 index e8d3afbe64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1627.png deleted file mode 100644 index 2b792b1564..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1628.png deleted file mode 100644 index 7ce88df798..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1629.png deleted file mode 100644 index 33097a6f21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1630.png deleted file mode 100644 index 866c3a19c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1631.png deleted file mode 100644 index 19ffb6aa55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1632.png deleted file mode 100644 index f69343dda1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1633.png deleted file mode 100644 index 910bd008d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1634.png deleted file mode 100644 index 8734b0b70d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1635.png deleted file mode 100644 index f27aec5a0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1636.png deleted file mode 100644 index 6651cb7ec8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1637.png deleted file mode 100644 index f5edc52928..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1638.png deleted file mode 100644 index 4be875b28d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1639.png deleted file mode 100644 index 3593f3030f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1640.png deleted file mode 100644 index 1f331f327f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1641.png deleted file mode 100644 index 3807192521..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1642.png deleted file mode 100644 index 7db6dae928..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1643.png deleted file mode 100644 index 7b548d4f94..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1644.png deleted file mode 100644 index ae353ccab0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1645.png deleted file mode 100644 index f69343dda1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1646.png deleted file mode 100644 index b80c7f46f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1647.png deleted file mode 100644 index 812612e488..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1648.png deleted file mode 100644 index 19ffb6aa55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1649.png deleted file mode 100644 index ed26ded9e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1650.png deleted file mode 100644 index 6998759a20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1651.png deleted file mode 100644 index fdbbd36356..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1652.png deleted file mode 100644 index 105c4903f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1653.png deleted file mode 100644 index 1bed69a029..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1654.png deleted file mode 100644 index b072ecdf29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1655.png deleted file mode 100644 index 3fae0b59de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1656.png deleted file mode 100644 index b83c442e3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1657.png deleted file mode 100644 index 3621c85811..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1658.png deleted file mode 100644 index caf4ac64e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1659.png deleted file mode 100644 index 3b8070c6b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1660.png deleted file mode 100644 index 215d09ea9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1661.png deleted file mode 100644 index c7a97219cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1662.png deleted file mode 100644 index 36fd0b70b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1663.png deleted file mode 100644 index 1ed73e8e6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1664.png deleted file mode 100644 index d723742c55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1665.png deleted file mode 100644 index c34292f8a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1666.png deleted file mode 100644 index 33d382e4e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1667.png deleted file mode 100644 index 61b84ec7d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1668.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1670.png deleted file mode 100644 index f1c7915e50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1672.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1673.png deleted file mode 100644 index 4a34d58e7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1674.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1675.png deleted file mode 100644 index b80c7f46f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1676.png deleted file mode 100644 index f7300468e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1677.png deleted file mode 100644 index 504750f349..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1678.png deleted file mode 100644 index 2a62b3bff6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1679.png deleted file mode 100644 index 8f39acd9f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1680.png deleted file mode 100644 index dba53a2984..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1681.png deleted file mode 100644 index a9f1e91830..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1682.png deleted file mode 100644 index b199cb5c77..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1683.png deleted file mode 100644 index f1f5b05011..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1684.png deleted file mode 100644 index bdd6eed852..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1685.png deleted file mode 100644 index 8b63a57834..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1686.png deleted file mode 100644 index 3621c85811..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1687.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1688.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1689.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1690.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1691.png deleted file mode 100644 index 5bdac26111..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1692.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1693.png deleted file mode 100644 index a798ed2cd8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1694.png deleted file mode 100644 index f2995aae0c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1695.png deleted file mode 100644 index 3b23286771..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1696.png deleted file mode 100644 index ac2e022fdf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1697.png deleted file mode 100644 index 8686d058a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1698.png deleted file mode 100644 index 3621c85811..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1699.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1700.png deleted file mode 100644 index bbfbb06629..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1701.png deleted file mode 100644 index ce11610ba9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1702.png deleted file mode 100644 index 36a120768b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1703.png deleted file mode 100644 index 04f8948f11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1704.png deleted file mode 100644 index 77cc5863c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1705.png deleted file mode 100644 index 03da93b0ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1706.png deleted file mode 100644 index 19ffb6aa55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1707.png deleted file mode 100644 index 7ad4eb72d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1708.png deleted file mode 100644 index 52b2b60224..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1709.png deleted file mode 100644 index c33de07a36..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1710.png deleted file mode 100644 index 0206667975..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1711.png deleted file mode 100644 index 6ac5ac2122..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1712.png deleted file mode 100644 index 27d11424fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1713.png deleted file mode 100644 index ab474df03b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1714.png deleted file mode 100644 index c730b31e11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1715.png deleted file mode 100644 index ff1f99c836..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1716.png deleted file mode 100644 index 202094a061..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1717.png deleted file mode 100644 index 3eed186f29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1718.png deleted file mode 100644 index ef5b7e3d95..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1719.png deleted file mode 100644 index 8e85e345bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1720.png deleted file mode 100644 index 8e85e345bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1721.png deleted file mode 100644 index 9437308d25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1722.png deleted file mode 100644 index 6bad3ead66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1723.png deleted file mode 100644 index ed5b0b707e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1724.png deleted file mode 100644 index 464b8080fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1725.png deleted file mode 100644 index 288a8ea944..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1726.png deleted file mode 100644 index d33e548914..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1727.png deleted file mode 100644 index 2c90cd4085..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1728.png deleted file mode 100644 index b6d0db97ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1729.png deleted file mode 100644 index 4ef18e3e3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1730.png deleted file mode 100644 index 54bcb1c460..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1731.png deleted file mode 100644 index 146849c50c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1732.png deleted file mode 100644 index eccb6b1685..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1733.png deleted file mode 100644 index aae2665e87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1734.png deleted file mode 100644 index 9bc7af1ce0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1735.png deleted file mode 100644 index 409c9d1258..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1740.png deleted file mode 100644 index 2c9adb5295..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1741.png deleted file mode 100644 index bab4f1f8a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1742.png deleted file mode 100644 index ed16ade186..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1743.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1744.png deleted file mode 100644 index ce66f4f9e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1745.png deleted file mode 100644 index 99924ea625..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartScytheHead/1746.png deleted file mode 100644 index 7407467682..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartScytheHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1500.png deleted file mode 100644 index 9507b91e12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1501.png deleted file mode 100644 index 0649b6b736..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1502.png deleted file mode 100644 index 75058437f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1503.png deleted file mode 100644 index 7f886267e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1504.png deleted file mode 100644 index fd22bbcbc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1505.png deleted file mode 100644 index 3c3aea7f35..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1506.png deleted file mode 100644 index dcad364ba6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1507.png deleted file mode 100644 index 45f885b79c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1508.png deleted file mode 100644 index c6d668bb2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1509.png deleted file mode 100644 index 74b549a2d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1510.png deleted file mode 100644 index 39a03e1ff4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1511.png deleted file mode 100644 index c6d668bb2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1512.png deleted file mode 100644 index 032e254ecd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1513.png deleted file mode 100644 index 9582e3355d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1514.png deleted file mode 100644 index d799d186d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1515.png deleted file mode 100644 index 0ce0b36415..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1516.png deleted file mode 100644 index 12cfa870de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1517.png deleted file mode 100644 index d23fd8a7e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1518.png deleted file mode 100644 index 0e5396d145..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1519.png deleted file mode 100644 index d8b3003001..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1520.png deleted file mode 100644 index af701a9a40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1521.png deleted file mode 100644 index 79e7638be9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1522.png deleted file mode 100644 index 677263d62f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1523.png deleted file mode 100644 index 12f4af2e11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1524.png deleted file mode 100644 index a7b3906888..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1525.png deleted file mode 100644 index 5b61eaef3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1526.png deleted file mode 100644 index 32f665b0fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1527.png deleted file mode 100644 index 90ad3386ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1528.png deleted file mode 100644 index c46776bb55..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1529.png deleted file mode 100644 index a8ed2ff8f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1530.png deleted file mode 100644 index be41ccb30b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1531.png deleted file mode 100644 index 08558474ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1532.png deleted file mode 100644 index d690f568ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1533.png deleted file mode 100644 index 072db07b32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1534.png deleted file mode 100644 index 89198598a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1535.png deleted file mode 100644 index 4128f01504..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1536.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1537.png deleted file mode 100644 index c66bf1812a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1538.png deleted file mode 100644 index d6a70157e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1539.png deleted file mode 100644 index 5e1bd6311d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1540.png deleted file mode 100644 index 273fba1cea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1541.png deleted file mode 100644 index 60cac6a8fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1542.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1543.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1544.png deleted file mode 100644 index ce25923547..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1545.png deleted file mode 100644 index 10089c3342..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1546.png deleted file mode 100644 index d42672fd1f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1547.png deleted file mode 100644 index 48eed31178..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1548.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1549.png deleted file mode 100644 index e02c7ea425..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1550.png deleted file mode 100644 index 3e3e99075c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1551.png deleted file mode 100644 index 5bc3a039cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1553.png deleted file mode 100644 index a5b8d4377e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1554.png deleted file mode 100644 index ec7581d23e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1555.png deleted file mode 100644 index 0909f5422c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1556.png deleted file mode 100644 index d799d186d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1557.png deleted file mode 100644 index d799d186d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1562.png deleted file mode 100644 index 337a8a0c87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1563.png deleted file mode 100644 index 0909f5422c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1564.png deleted file mode 100644 index 1ec813ca7c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1565.png deleted file mode 100644 index 5e8d51abb2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1566.png deleted file mode 100644 index 6d3942b9ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1567.png deleted file mode 100644 index aee4496eda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1568.png deleted file mode 100644 index 1b9588328a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1570.png deleted file mode 100644 index f046318df7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1571.png deleted file mode 100644 index 39cc8caa64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1572.png deleted file mode 100644 index 745197a1d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1573.png deleted file mode 100644 index acf46280e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1574.png deleted file mode 100644 index 79e7638be9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1575.png deleted file mode 100644 index 48eed31178..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1576.png deleted file mode 100644 index afd8d0afd7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1577.png deleted file mode 100644 index 64f5821701..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1578.png deleted file mode 100644 index 386d4eeb9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1579.png deleted file mode 100644 index c6d668bb2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1582.png deleted file mode 100644 index 8e90dac25f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1583.png deleted file mode 100644 index 26d97f8f73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1584.png deleted file mode 100644 index 0c7035c83f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1585.png deleted file mode 100644 index 3ded44536b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1586.png deleted file mode 100644 index 2ab7ff952b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1587.png deleted file mode 100644 index f16898219c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1588.png deleted file mode 100644 index 0909f5422c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1589.png deleted file mode 100644 index e22558ea45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1590.png deleted file mode 100644 index ca420232ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1591.png deleted file mode 100644 index 0cc252369f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1592.png deleted file mode 100644 index 0bbaa6ebba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1593.png deleted file mode 100644 index 497d9669ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1594.png deleted file mode 100644 index f03433ac96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1595.png deleted file mode 100644 index 92a91403d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1596.png deleted file mode 100644 index 1ce40c13e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1597.png deleted file mode 100644 index c131db92b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1598.png deleted file mode 100644 index d506bc0e7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1599.png deleted file mode 100644 index 5e80534ea3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1600.png deleted file mode 100644 index b54b004f6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1601.png deleted file mode 100644 index be25ada777..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1602.png deleted file mode 100644 index 7fe3be42b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1603.png deleted file mode 100644 index 2dc7b0a60a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1604.png deleted file mode 100644 index b95d5e1d2b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1605.png deleted file mode 100644 index 0ee05b681f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1606.png deleted file mode 100644 index f3b1c13f4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1607.png deleted file mode 100644 index 6798d8cbf5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1608.png deleted file mode 100644 index 4333abd74d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1609.png deleted file mode 100644 index 79e7638be9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1610.png deleted file mode 100644 index 39a03e1ff4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1611.png deleted file mode 100644 index dcb4d99d7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1612.png deleted file mode 100644 index 492099e3ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1613.png deleted file mode 100644 index bd660f30db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1614.png deleted file mode 100644 index f3b1c13f4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1615.png deleted file mode 100644 index d6a70157e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1616.png deleted file mode 100644 index 07f170c0fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1617.png deleted file mode 100644 index 0ee05b681f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1618.png deleted file mode 100644 index 5f6d8013f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1619.png deleted file mode 100644 index 383eab90ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1620.png deleted file mode 100644 index ca420232ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1621.png deleted file mode 100644 index 2f873f52d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1622.png deleted file mode 100644 index 7a304bfc61..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1623.png deleted file mode 100644 index 75b0aa6266..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1624.png deleted file mode 100644 index b8a8e861da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1625.png deleted file mode 100644 index ed042e062c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1626.png deleted file mode 100644 index 9c51a78c42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1627.png deleted file mode 100644 index 7c6d8a4a70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1628.png deleted file mode 100644 index 17a15e31a5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1629.png deleted file mode 100644 index e9991e98a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1630.png deleted file mode 100644 index 20837a609f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1631.png deleted file mode 100644 index 39a03e1ff4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1632.png deleted file mode 100644 index 15cdc074dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1633.png deleted file mode 100644 index 7d352d4c4e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1634.png deleted file mode 100644 index 3a85a9ce48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1635.png deleted file mode 100644 index 9a20c10c79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1636.png deleted file mode 100644 index 081ecee218..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1637.png deleted file mode 100644 index b31b758aad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1638.png deleted file mode 100644 index 15090f2372..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1639.png deleted file mode 100644 index 39cc8caa64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1640.png deleted file mode 100644 index ebc557f47b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1641.png deleted file mode 100644 index d609eac4f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1642.png deleted file mode 100644 index 966dbedb26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1643.png deleted file mode 100644 index 8132d33054..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1644.png deleted file mode 100644 index 642d5be483..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1645.png deleted file mode 100644 index 15cdc074dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1646.png deleted file mode 100644 index f3b1c13f4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1647.png deleted file mode 100644 index d799d186d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1648.png deleted file mode 100644 index 39a03e1ff4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1649.png deleted file mode 100644 index e3b8b7d64f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1650.png deleted file mode 100644 index a09f753821..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1651.png deleted file mode 100644 index dd429e03c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1652.png deleted file mode 100644 index 10bcdc9cb2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1653.png deleted file mode 100644 index 6efd6ad72e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1654.png deleted file mode 100644 index 011ebc7ee8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1655.png deleted file mode 100644 index fe8ff131b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1656.png deleted file mode 100644 index 347f476fe8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1657.png deleted file mode 100644 index 79e7638be9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1658.png deleted file mode 100644 index e9fc922a38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1659.png deleted file mode 100644 index d4f9c99d04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1660.png deleted file mode 100644 index 6ab0fcd094..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1661.png deleted file mode 100644 index 3798888102..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1662.png deleted file mode 100644 index 18f173c380..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1663.png deleted file mode 100644 index 9a1452307f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1664.png deleted file mode 100644 index 607b080fb9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1665.png deleted file mode 100644 index af2a39fb0b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1666.png deleted file mode 100644 index 81a505617d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1667.png deleted file mode 100644 index 0c2c67685b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1668.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1670.png deleted file mode 100644 index bfc018dd83..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1672.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1673.png deleted file mode 100644 index dd714d3ccc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1674.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1675.png deleted file mode 100644 index f3b1c13f4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1676.png deleted file mode 100644 index e3b8ca15ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1677.png deleted file mode 100644 index 5ee6cfe049..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1678.png deleted file mode 100644 index 8cfdb22ef9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1679.png deleted file mode 100644 index 6d291c885a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1680.png deleted file mode 100644 index 50520071c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1681.png deleted file mode 100644 index f7f732f468..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1682.png deleted file mode 100644 index 949d652f50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1683.png deleted file mode 100644 index 5f864f4433..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1684.png deleted file mode 100644 index 25c4ee10f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1685.png deleted file mode 100644 index 3b822512ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1686.png deleted file mode 100644 index 79e7638be9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1687.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1688.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1689.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1690.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1691.png deleted file mode 100644 index 0ff03cda2d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1692.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1693.png deleted file mode 100644 index 494c0aedc8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1694.png deleted file mode 100644 index f00199e88f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1695.png deleted file mode 100644 index dd71b548b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1696.png deleted file mode 100644 index e61abdfc44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1697.png deleted file mode 100644 index c10b01adbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1698.png deleted file mode 100644 index 79e7638be9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1699.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1700.png deleted file mode 100644 index bf62795352..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1701.png deleted file mode 100644 index f966475d5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1702.png deleted file mode 100644 index 08a1b58a9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1703.png deleted file mode 100644 index 5017bf3c70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1704.png deleted file mode 100644 index 60aab6a890..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1705.png deleted file mode 100644 index 768e94d8cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1706.png deleted file mode 100644 index 39a03e1ff4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1707.png deleted file mode 100644 index 419fdde8dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1708.png deleted file mode 100644 index fd22bbcbc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1709.png deleted file mode 100644 index 44e9cb7846..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1710.png deleted file mode 100644 index 16925102f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1711.png deleted file mode 100644 index 73294d8b7a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1712.png deleted file mode 100644 index 497c0ab2bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1713.png deleted file mode 100644 index 573642ff38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1714.png deleted file mode 100644 index d08811065e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1715.png deleted file mode 100644 index 10b35adf34..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1716.png deleted file mode 100644 index 9084f28d6f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1717.png deleted file mode 100644 index 40061ef850..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1718.png deleted file mode 100644 index 235378755d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1719.png deleted file mode 100644 index a0bcceb1e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1720.png deleted file mode 100644 index a0bcceb1e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1721.png deleted file mode 100644 index b6e647b7f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1722.png deleted file mode 100644 index f3dd9c4a4c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1723.png deleted file mode 100644 index 246511f10f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1724.png deleted file mode 100644 index 50a6c373ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1725.png deleted file mode 100644 index 3c8c5e496f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1726.png deleted file mode 100644 index 39a305ea0b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1727.png deleted file mode 100644 index c107f51b09..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1728.png deleted file mode 100644 index 52aa79f99a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1729.png deleted file mode 100644 index ea9f56e198..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1730.png deleted file mode 100644 index be62328cf9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1731.png deleted file mode 100644 index 43695af265..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1732.png deleted file mode 100644 index 29d69a9a43..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1733.png deleted file mode 100644 index 84ca63a9c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1734.png deleted file mode 100644 index e1432146b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1735.png deleted file mode 100644 index 7a1e798de8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1740.png deleted file mode 100644 index 9d9f7c6051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1741.png deleted file mode 100644 index 50e2e459b8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1742.png deleted file mode 100644 index f0fcd1107f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1743.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1744.png deleted file mode 100644 index 7e4034107e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1745.png deleted file mode 100644 index ac5c629373..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartShovelHead/1746.png deleted file mode 100644 index 1186383c83..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShovelHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1500.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1500.png deleted file mode 100644 index 9dec3c3d96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1501.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1501.png deleted file mode 100644 index 80bf3f42e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1502.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1502.png deleted file mode 100644 index 93205874fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1503.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1503.png deleted file mode 100644 index 38f4bb87f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1504.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1504.png deleted file mode 100644 index eea89abbaf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1505.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1505.png deleted file mode 100644 index f60dbc84bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1506.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1506.png deleted file mode 100644 index 73e0c9786b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1507.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1507.png deleted file mode 100644 index a460c3d479..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1508.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1508.png deleted file mode 100644 index c5d13e44fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1509.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1509.png deleted file mode 100644 index 4f4da12a14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1510.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1510.png deleted file mode 100644 index 324fc818f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1511.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1511.png deleted file mode 100644 index c5d13e44fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1512.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1512.png deleted file mode 100644 index b7d22b9502..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1513.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1513.png deleted file mode 100644 index 22fe516ea1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1514.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1514.png deleted file mode 100644 index 42e8de2c0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1515.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1515.png deleted file mode 100644 index 8a4c671093..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1516.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1516.png deleted file mode 100644 index 5af74d103b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1517.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1517.png deleted file mode 100644 index 17f632fefa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1518.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1518.png deleted file mode 100644 index aee6250a58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1519.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1519.png deleted file mode 100644 index c39ea1dd4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1520.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1520.png deleted file mode 100644 index dccd5d4b9f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1521.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1521.png deleted file mode 100644 index 59f646726c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1522.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1522.png deleted file mode 100644 index b14bfc9b1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1523.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1523.png deleted file mode 100644 index 9fabbb5782..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1524.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1524.png deleted file mode 100644 index 38e5a2fed6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1525.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1525.png deleted file mode 100644 index 4b2862378a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1526.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1526.png deleted file mode 100644 index f6965783d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1527.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1527.png deleted file mode 100644 index 036a30459e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1528.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1528.png deleted file mode 100644 index c1bdacbdf4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1529.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1529.png deleted file mode 100644 index d3b3cfa492..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1530.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1530.png deleted file mode 100644 index 045fbc944f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1531.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1531.png deleted file mode 100644 index 0ac303cf04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1532.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1532.png deleted file mode 100644 index 87c5f10949..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1533.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1533.png deleted file mode 100644 index f9f32320fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1534.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1534.png deleted file mode 100644 index 5a395a78b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1535.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1535.png deleted file mode 100644 index 8fb98709c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1536.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1536.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1537.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1537.png deleted file mode 100644 index 201f3fa56d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1538.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1538.png deleted file mode 100644 index 17c8d6199d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1539.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1539.png deleted file mode 100644 index 14de70eb85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1540.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1540.png deleted file mode 100644 index 22f29ded38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1541.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1541.png deleted file mode 100644 index 52887a28ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1542.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1542.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1543.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1543.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1544.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1544.png deleted file mode 100644 index bf287fec9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1545.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1545.png deleted file mode 100644 index 275d838248..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1546.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1546.png deleted file mode 100644 index 2872b2f6b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1547.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1547.png deleted file mode 100644 index 6853434ff8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1548.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1548.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1549.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1549.png deleted file mode 100644 index 37a5bc62c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1550.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1550.png deleted file mode 100644 index b8192c67d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1551.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1551.png deleted file mode 100644 index c9492d7ad5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1553.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1553.png deleted file mode 100644 index 7d22f55a6f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1554.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1554.png deleted file mode 100644 index 48fcb58f7c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1555.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1555.png deleted file mode 100644 index e9a3fac363..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1556.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1556.png deleted file mode 100644 index 42e8de2c0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1557.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1557.png deleted file mode 100644 index 42e8de2c0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1562.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1562.png deleted file mode 100644 index a37bf50f57..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1563.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1563.png deleted file mode 100644 index e9a3fac363..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1564.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1564.png deleted file mode 100644 index c978220b06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1565.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1565.png deleted file mode 100644 index a5212ff304..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1566.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1566.png deleted file mode 100644 index 9ea12fbb93..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1567.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1567.png deleted file mode 100644 index f216630fc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1568.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1568.png deleted file mode 100644 index a4f58d219b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1570.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1570.png deleted file mode 100644 index 55456a2cff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1571.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1571.png deleted file mode 100644 index a0fe141f59..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1572.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1572.png deleted file mode 100644 index d902d381d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1573.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1573.png deleted file mode 100644 index ecfad84ca3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1574.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1574.png deleted file mode 100644 index 59f646726c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1575.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1575.png deleted file mode 100644 index 6853434ff8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1576.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1576.png deleted file mode 100644 index 9f8471c6c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1577.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1577.png deleted file mode 100644 index ae45a033b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1578.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1578.png deleted file mode 100644 index 7f15c8dba8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1579.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1579.png deleted file mode 100644 index c5d13e44fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1582.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1582.png deleted file mode 100644 index 06600d092b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1583.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1583.png deleted file mode 100644 index 8a269566c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1584.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1584.png deleted file mode 100644 index 5be59c43f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1585.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1585.png deleted file mode 100644 index 9319a8cd24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1586.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1586.png deleted file mode 100644 index 554e33e1c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1587.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1587.png deleted file mode 100644 index f342a216e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1588.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1588.png deleted file mode 100644 index e9a3fac363..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1589.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1589.png deleted file mode 100644 index 65ba832ff6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1590.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1590.png deleted file mode 100644 index 993a491f04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1591.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1591.png deleted file mode 100644 index 59ff076c42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1592.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1592.png deleted file mode 100644 index a5b937f367..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1593.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1593.png deleted file mode 100644 index 7c41ae0be7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1594.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1594.png deleted file mode 100644 index d49b1caa40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1595.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1595.png deleted file mode 100644 index 4fec98f370..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1596.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1596.png deleted file mode 100644 index d4b2c8a218..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1597.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1597.png deleted file mode 100644 index d8c823cce7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1598.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1598.png deleted file mode 100644 index f2d2a9e1b1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1599.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1599.png deleted file mode 100644 index f833c5fc5d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1600.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1600.png deleted file mode 100644 index 00df2912da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1601.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1601.png deleted file mode 100644 index 64f0cd3eea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1602.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1602.png deleted file mode 100644 index 3d1d3abcd7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1603.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1603.png deleted file mode 100644 index f47e194f74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1604.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1604.png deleted file mode 100644 index 0e900f22da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1605.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1605.png deleted file mode 100644 index 62c38ca7a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1606.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1606.png deleted file mode 100644 index 15d5513661..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1607.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1607.png deleted file mode 100644 index 09fc7a2ab9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1608.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1608.png deleted file mode 100644 index e93d937a41..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1609.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1609.png deleted file mode 100644 index 59f646726c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1610.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1610.png deleted file mode 100644 index 324fc818f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1611.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1611.png deleted file mode 100644 index ad5958e94c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1612.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1612.png deleted file mode 100644 index 5b792a1d5b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1613.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1613.png deleted file mode 100644 index 0b440f4e22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1614.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1614.png deleted file mode 100644 index 15d5513661..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1615.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1615.png deleted file mode 100644 index 17c8d6199d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1616.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1616.png deleted file mode 100644 index 67d44e0e23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1617.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1617.png deleted file mode 100644 index 62c38ca7a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1618.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1618.png deleted file mode 100644 index 6d8ebea37c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1619.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1619.png deleted file mode 100644 index 1123edc6df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1620.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1620.png deleted file mode 100644 index 993a491f04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1621.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1621.png deleted file mode 100644 index c894275d61..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1622.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1622.png deleted file mode 100644 index b9a50fc814..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1623.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1623.png deleted file mode 100644 index 7e1a0f9fcd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1624.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1624.png deleted file mode 100644 index bbb0ed3a04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1625.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1625.png deleted file mode 100644 index e7c2e09721..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1626.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1626.png deleted file mode 100644 index b8439f0563..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1627.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1627.png deleted file mode 100644 index 1137d70f3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1628.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1628.png deleted file mode 100644 index 53e26ac8e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1629.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1629.png deleted file mode 100644 index 71614fc515..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1630.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1630.png deleted file mode 100644 index ed4896b9c9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1631.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1631.png deleted file mode 100644 index 324fc818f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1632.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1632.png deleted file mode 100644 index fa132c2999..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1633.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1633.png deleted file mode 100644 index 4a6dcac168..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1634.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1634.png deleted file mode 100644 index f3e4d4b8df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1635.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1635.png deleted file mode 100644 index 9e32ecddd0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1636.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1636.png deleted file mode 100644 index 01a868cb1d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1637.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1637.png deleted file mode 100644 index b7c5852ba3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1638.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1638.png deleted file mode 100644 index feac612d96..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1639.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1639.png deleted file mode 100644 index a0fe141f59..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1640.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1640.png deleted file mode 100644 index 81d9700914..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1641.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1641.png deleted file mode 100644 index 5fb9c9792d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1642.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1642.png deleted file mode 100644 index 5c1d87fb21..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1643.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1643.png deleted file mode 100644 index 58a000f72d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1644.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1644.png deleted file mode 100644 index 1d9437d6a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1645.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1645.png deleted file mode 100644 index fa132c2999..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1646.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1646.png deleted file mode 100644 index 15d5513661..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1647.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1647.png deleted file mode 100644 index 42e8de2c0d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1648.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1648.png deleted file mode 100644 index 324fc818f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1649.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1649.png deleted file mode 100644 index eca86cafc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1650.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1650.png deleted file mode 100644 index 6691d4cb48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1651.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1651.png deleted file mode 100644 index 75e95b30eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1652.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1652.png deleted file mode 100644 index 538915210b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1653.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1653.png deleted file mode 100644 index 0513683e5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1654.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1654.png deleted file mode 100644 index e28b58b399..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1655.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1655.png deleted file mode 100644 index bf1f6f5000..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1656.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1656.png deleted file mode 100644 index 79387c7f10..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1657.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1657.png deleted file mode 100644 index 59f646726c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1658.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1658.png deleted file mode 100644 index 4399c6415a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1659.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1659.png deleted file mode 100644 index 156e821f99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1660.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1660.png deleted file mode 100644 index f3038fcac9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1661.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1661.png deleted file mode 100644 index 927d2c5e4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1662.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1662.png deleted file mode 100644 index 16fda48e22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1663.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1663.png deleted file mode 100644 index 4a94573f01..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1664.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1664.png deleted file mode 100644 index c155a0adc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1665.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1665.png deleted file mode 100644 index 97c1a21ca3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1666.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1666.png deleted file mode 100644 index b24faf4233..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1667.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1667.png deleted file mode 100644 index eb636d4d05..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1668.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1668.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1670.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1670.png deleted file mode 100644 index 8c39c6b453..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1672.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1672.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1673.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1673.png deleted file mode 100644 index 9a141978dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1674.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1674.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1675.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1675.png deleted file mode 100644 index 15d5513661..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1676.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1676.png deleted file mode 100644 index 783cc573f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1677.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1677.png deleted file mode 100644 index 42910df957..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1678.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1678.png deleted file mode 100644 index a95de04014..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1679.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1679.png deleted file mode 100644 index 6136663504..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1680.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1680.png deleted file mode 100644 index f89f3f4b06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1681.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1681.png deleted file mode 100644 index 12cd14266d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1682.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1682.png deleted file mode 100644 index f120028dbf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1683.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1683.png deleted file mode 100644 index 58f5ec601c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1684.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1684.png deleted file mode 100644 index 5a9e77e0d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1685.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1685.png deleted file mode 100644 index e82f2138ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1686.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1686.png deleted file mode 100644 index 59f646726c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1687.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1687.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1688.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1688.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1689.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1689.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1690.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1690.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1691.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1691.png deleted file mode 100644 index 2385d92ee0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1692.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1692.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1693.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1693.png deleted file mode 100644 index 6aea0a5245..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1694.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1694.png deleted file mode 100644 index 1a087b5cd4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1695.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1695.png deleted file mode 100644 index 3e5803f59b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1696.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1696.png deleted file mode 100644 index e61ef51c03..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1697.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1697.png deleted file mode 100644 index 5fc098233f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1698.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1698.png deleted file mode 100644 index 59f646726c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1699.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1699.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1700.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1700.png deleted file mode 100644 index a826cad869..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1701.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1701.png deleted file mode 100644 index e6727288d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1702.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1702.png deleted file mode 100644 index c0c7f7eacc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1703.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1703.png deleted file mode 100644 index 137c4b2076..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1704.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1704.png deleted file mode 100644 index 43af28c386..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1705.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1705.png deleted file mode 100644 index 26c92cd1f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1706.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1706.png deleted file mode 100644 index 324fc818f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1707.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1707.png deleted file mode 100644 index 91a49e4b22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1708.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1708.png deleted file mode 100644 index eea89abbaf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1709.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1709.png deleted file mode 100644 index c90ec5e4a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1710.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1710.png deleted file mode 100644 index 20120f1889..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1711.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1711.png deleted file mode 100644 index 6fe10180da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1712.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1712.png deleted file mode 100644 index c7f859744a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1713.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1713.png deleted file mode 100644 index d0e0dc8214..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1714.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1714.png deleted file mode 100644 index a56e48e6a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1715.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1715.png deleted file mode 100644 index df6f082c3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1716.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1716.png deleted file mode 100644 index 412ebe4019..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1717.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1717.png deleted file mode 100644 index 21f71599ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1718.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1718.png deleted file mode 100644 index cf80eba2a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1719.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1719.png deleted file mode 100644 index 5e2dd5f5e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1720.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1720.png deleted file mode 100644 index 5e2dd5f5e5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1721.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1721.png deleted file mode 100644 index 1f9ad4e542..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1722.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1722.png deleted file mode 100644 index 5715108a97..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1723.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1723.png deleted file mode 100644 index 4715f36eba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1724.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1724.png deleted file mode 100644 index 0d74bd578f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1725.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1725.png deleted file mode 100644 index 4c98c580f4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1726.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1726.png deleted file mode 100644 index 9f8fd6160d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1727.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1727.png deleted file mode 100644 index f66e253dab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1728.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1728.png deleted file mode 100644 index a40c9757b0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1729.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1729.png deleted file mode 100644 index 3549fef038..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1730.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1730.png deleted file mode 100644 index 70871a723e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1731.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1731.png deleted file mode 100644 index 44e1314802..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1732.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1732.png deleted file mode 100644 index 3b761f7854..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1733.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1733.png deleted file mode 100644 index 04e53c6645..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1734.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1734.png deleted file mode 100644 index 45259cb3cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1735.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1735.png deleted file mode 100644 index 38a543c947..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1740.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1740.png deleted file mode 100644 index f1af974577..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1741.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1741.png deleted file mode 100644 index 28dea87396..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1742.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1742.png deleted file mode 100644 index 258de4be8c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1743.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1743.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1744.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1744.png deleted file mode 100644 index 4e635cc976..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1745.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1745.png deleted file mode 100644 index 7af86d7084..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartShuriken/1746.png b/front/public/images/large/TGregworks/tGregToolPartShuriken/1746.png deleted file mode 100644 index d6fc8a073d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartShuriken/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1500.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1500.png deleted file mode 100644 index 0ac5f95a23..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1501.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1501.png deleted file mode 100644 index 886a22f278..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1502.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1502.png deleted file mode 100644 index 5017c24d0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1503.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1503.png deleted file mode 100644 index 619f92e941..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1504.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1504.png deleted file mode 100644 index cbfa47077c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1505.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1505.png deleted file mode 100644 index e3bc7b18ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1506.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1506.png deleted file mode 100644 index b38963944f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1507.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1507.png deleted file mode 100644 index 04302cc430..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1508.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1508.png deleted file mode 100644 index ec51cb2c62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1509.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1509.png deleted file mode 100644 index c41e677847..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1510.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1510.png deleted file mode 100644 index 10989037e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1511.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1511.png deleted file mode 100644 index ec51cb2c62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1512.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1512.png deleted file mode 100644 index aefd265c3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1513.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1513.png deleted file mode 100644 index d9b769f040..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1514.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1514.png deleted file mode 100644 index a1a7ec7051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1515.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1515.png deleted file mode 100644 index 303b3c3049..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1516.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1516.png deleted file mode 100644 index 478cbc1d8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1517.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1517.png deleted file mode 100644 index d90439cf01..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1518.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1518.png deleted file mode 100644 index 1539372bfd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1519.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1519.png deleted file mode 100644 index fc24a6b1cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1520.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1520.png deleted file mode 100644 index 6b15dad0de..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1521.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1521.png deleted file mode 100644 index 2760f2238c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1522.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1522.png deleted file mode 100644 index 3a40d6e25e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1523.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1523.png deleted file mode 100644 index 2dc6c88a6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1524.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1524.png deleted file mode 100644 index 519be19ac7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1525.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1525.png deleted file mode 100644 index a7c7b28380..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1526.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1526.png deleted file mode 100644 index 0daa852ab8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1527.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1527.png deleted file mode 100644 index 86cf21d0bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1528.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1528.png deleted file mode 100644 index 58acda7032..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1529.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1529.png deleted file mode 100644 index d1b1a6515b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1530.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1530.png deleted file mode 100644 index 8075087d4c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1531.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1531.png deleted file mode 100644 index d8b0494b15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1532.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1532.png deleted file mode 100644 index 76e78a6581..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1533.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1533.png deleted file mode 100644 index e3075b09c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1534.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1534.png deleted file mode 100644 index 642c6e6a90..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1535.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1535.png deleted file mode 100644 index c9ecf084dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1536.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1536.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1537.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1537.png deleted file mode 100644 index 099f176c76..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1538.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1538.png deleted file mode 100644 index 37c5d9f32d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1539.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1539.png deleted file mode 100644 index 41d1be3279..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1540.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1540.png deleted file mode 100644 index 7ae88f93c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1541.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1541.png deleted file mode 100644 index 6c6616f858..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1542.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1542.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1543.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1543.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1544.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1544.png deleted file mode 100644 index 336390323d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1545.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1545.png deleted file mode 100644 index b823217c27..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1546.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1546.png deleted file mode 100644 index 9b395a3509..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1547.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1547.png deleted file mode 100644 index 5169c325ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1548.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1548.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1549.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1549.png deleted file mode 100644 index 6b27e6b681..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1550.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1550.png deleted file mode 100644 index dd696bcce9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1551.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1551.png deleted file mode 100644 index 2015e5dcdb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1553.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1553.png deleted file mode 100644 index 70d221a99b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1554.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1554.png deleted file mode 100644 index 208c6a7391..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1555.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1555.png deleted file mode 100644 index ea12a4cd73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1556.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1556.png deleted file mode 100644 index a1a7ec7051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1557.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1557.png deleted file mode 100644 index a1a7ec7051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1562.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1562.png deleted file mode 100644 index 84ff516b89..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1563.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1563.png deleted file mode 100644 index ea12a4cd73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1564.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1564.png deleted file mode 100644 index 1ca76aa8ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1565.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1565.png deleted file mode 100644 index e9ec76122d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1566.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1566.png deleted file mode 100644 index 5b6febc6fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1567.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1567.png deleted file mode 100644 index 435b40b1b2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1568.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1568.png deleted file mode 100644 index 9d318d1e98..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1570.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1570.png deleted file mode 100644 index 0064ba33e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1571.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1571.png deleted file mode 100644 index 71acbe2a8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1572.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1572.png deleted file mode 100644 index 46da0a7f41..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1573.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1573.png deleted file mode 100644 index b991dee163..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1574.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1574.png deleted file mode 100644 index 2760f2238c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1575.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1575.png deleted file mode 100644 index 5169c325ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1576.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1576.png deleted file mode 100644 index 21f0705322..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1577.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1577.png deleted file mode 100644 index 5f67497621..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1578.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1578.png deleted file mode 100644 index 949c65240c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1579.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1579.png deleted file mode 100644 index ec51cb2c62..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1582.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1582.png deleted file mode 100644 index eb028f0e1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1583.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1583.png deleted file mode 100644 index 7ea2eab8a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1584.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1584.png deleted file mode 100644 index 9d34954b20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1585.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1585.png deleted file mode 100644 index a38a395a79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1586.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1586.png deleted file mode 100644 index cc003ef2bc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1587.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1587.png deleted file mode 100644 index ed1e9f10aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1588.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1588.png deleted file mode 100644 index ea12a4cd73..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1589.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1589.png deleted file mode 100644 index 4b4d853453..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1590.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1590.png deleted file mode 100644 index 51721d0538..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1591.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1591.png deleted file mode 100644 index 24f53c74eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1592.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1592.png deleted file mode 100644 index 812c1cf75c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1593.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1593.png deleted file mode 100644 index 91a59020da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1594.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1594.png deleted file mode 100644 index 1ccb58e23a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1595.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1595.png deleted file mode 100644 index 43d359c6c1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1596.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1596.png deleted file mode 100644 index dab9d79af8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1597.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1597.png deleted file mode 100644 index 19507e236c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1598.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1598.png deleted file mode 100644 index 086595023c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1599.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1599.png deleted file mode 100644 index 7aae68ba32..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1600.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1600.png deleted file mode 100644 index 9e64307cde..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1601.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1601.png deleted file mode 100644 index e2eec5a870..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1602.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1602.png deleted file mode 100644 index 63b770d0e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1603.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1603.png deleted file mode 100644 index a4bfb4cec1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1604.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1604.png deleted file mode 100644 index fa496e7cf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1605.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1605.png deleted file mode 100644 index 75f12cf766..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1606.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1606.png deleted file mode 100644 index 01a4f2f4fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1607.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1607.png deleted file mode 100644 index 38ff4cb3b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1608.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1608.png deleted file mode 100644 index 302396f258..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1609.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1609.png deleted file mode 100644 index 2760f2238c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1610.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1610.png deleted file mode 100644 index 10989037e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1611.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1611.png deleted file mode 100644 index 6a9ce66080..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1612.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1612.png deleted file mode 100644 index 062f4d5c7f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1613.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1613.png deleted file mode 100644 index 4d974680dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1614.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1614.png deleted file mode 100644 index 01a4f2f4fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1615.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1615.png deleted file mode 100644 index 37c5d9f32d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1616.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1616.png deleted file mode 100644 index 725f5583e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1617.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1617.png deleted file mode 100644 index 75f12cf766..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1618.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1618.png deleted file mode 100644 index 02c52b075e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1619.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1619.png deleted file mode 100644 index 1eadbc2d41..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1620.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1620.png deleted file mode 100644 index 51721d0538..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1621.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1621.png deleted file mode 100644 index 995489283c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1622.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1622.png deleted file mode 100644 index fabc19ff16..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1623.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1623.png deleted file mode 100644 index af75d0b2f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1624.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1624.png deleted file mode 100644 index e7349b0d7b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1625.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1625.png deleted file mode 100644 index 7fa0f42655..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1626.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1626.png deleted file mode 100644 index abc353de40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1627.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1627.png deleted file mode 100644 index c1b90f75d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1628.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1628.png deleted file mode 100644 index be434f1162..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1629.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1629.png deleted file mode 100644 index 3bf0043890..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1630.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1630.png deleted file mode 100644 index aef54d14d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1631.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1631.png deleted file mode 100644 index 10989037e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1632.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1632.png deleted file mode 100644 index 60bd2c465b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1633.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1633.png deleted file mode 100644 index 65d5b48939..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1634.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1634.png deleted file mode 100644 index 480788b70b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1635.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1635.png deleted file mode 100644 index e8501a746e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1636.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1636.png deleted file mode 100644 index ec6f46a2cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1637.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1637.png deleted file mode 100644 index a4f466ab99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1638.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1638.png deleted file mode 100644 index 5b13697dfb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1639.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1639.png deleted file mode 100644 index 71acbe2a8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1640.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1640.png deleted file mode 100644 index 0aecd4b7cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1641.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1641.png deleted file mode 100644 index 40b263ded7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1642.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1642.png deleted file mode 100644 index 11739504a9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1643.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1643.png deleted file mode 100644 index 015d36e47f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1644.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1644.png deleted file mode 100644 index 57d591ca25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1645.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1645.png deleted file mode 100644 index 60bd2c465b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1646.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1646.png deleted file mode 100644 index 01a4f2f4fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1647.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1647.png deleted file mode 100644 index a1a7ec7051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1648.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1648.png deleted file mode 100644 index 10989037e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1649.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1649.png deleted file mode 100644 index 43c8e096f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1650.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1650.png deleted file mode 100644 index b1741cbae7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1651.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1651.png deleted file mode 100644 index 514b6b9e07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1652.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1652.png deleted file mode 100644 index a442879c12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1653.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1653.png deleted file mode 100644 index 77bdc5397d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1654.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1654.png deleted file mode 100644 index 573c45558b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1655.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1655.png deleted file mode 100644 index 5e57c4114e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1656.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1656.png deleted file mode 100644 index 03ae8a3dce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1657.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1657.png deleted file mode 100644 index 2760f2238c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1658.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1658.png deleted file mode 100644 index b1d5d184aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1659.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1659.png deleted file mode 100644 index 186f339bbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1660.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1660.png deleted file mode 100644 index 7050badb83..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1661.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1661.png deleted file mode 100644 index 5ee1c86932..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1662.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1662.png deleted file mode 100644 index 34c9bd0bc8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1663.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1663.png deleted file mode 100644 index 1cbc767c3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1664.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1664.png deleted file mode 100644 index 7698dc6382..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1665.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1665.png deleted file mode 100644 index ff1927c2c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1666.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1666.png deleted file mode 100644 index 4dca751eb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1667.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1667.png deleted file mode 100644 index cd3c6ad215..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1668.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1668.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1670.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1670.png deleted file mode 100644 index 276b434aa8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1672.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1672.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1673.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1673.png deleted file mode 100644 index b73d0611ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1674.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1674.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1675.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1675.png deleted file mode 100644 index 01a4f2f4fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1676.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1676.png deleted file mode 100644 index 9a7ee1bcec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1677.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1677.png deleted file mode 100644 index ad42ca77bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1678.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1678.png deleted file mode 100644 index 30a701a243..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1679.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1679.png deleted file mode 100644 index 4104f10d47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1680.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1680.png deleted file mode 100644 index 2664e1a5db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1681.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1681.png deleted file mode 100644 index 0f32becdbe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1682.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1682.png deleted file mode 100644 index a6ac05e241..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1683.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1683.png deleted file mode 100644 index c6042ec90e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1684.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1684.png deleted file mode 100644 index 125c4943e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1685.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1685.png deleted file mode 100644 index 3388a5cdae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1686.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1686.png deleted file mode 100644 index 2760f2238c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1687.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1687.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1688.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1688.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1689.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1689.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1690.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1690.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1691.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1691.png deleted file mode 100644 index 4e40a9cc3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1692.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1692.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1693.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1693.png deleted file mode 100644 index e9313b112c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1694.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1694.png deleted file mode 100644 index 3b5b1ca398..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1695.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1695.png deleted file mode 100644 index 225653c609..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1696.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1696.png deleted file mode 100644 index 7c94d941cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1697.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1697.png deleted file mode 100644 index 0eeb447730..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1698.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1698.png deleted file mode 100644 index 2760f2238c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1699.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1699.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1700.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1700.png deleted file mode 100644 index 92bdf3dd42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1701.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1701.png deleted file mode 100644 index 83094d9725..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1702.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1702.png deleted file mode 100644 index 73e623bc4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1703.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1703.png deleted file mode 100644 index 2ecfba002e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1704.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1704.png deleted file mode 100644 index 5424a808e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1705.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1705.png deleted file mode 100644 index 683ab261df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1706.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1706.png deleted file mode 100644 index 10989037e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1707.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1707.png deleted file mode 100644 index e4bf68057c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1708.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1708.png deleted file mode 100644 index cbfa47077c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1709.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1709.png deleted file mode 100644 index a81f9e485d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1710.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1710.png deleted file mode 100644 index 7b77d3c0c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1711.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1711.png deleted file mode 100644 index 1e57e056fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1712.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1712.png deleted file mode 100644 index 7e43b1a8fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1713.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1713.png deleted file mode 100644 index d6090a402a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1714.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1714.png deleted file mode 100644 index 0a23e7820d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1715.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1715.png deleted file mode 100644 index a9375b7aa2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1716.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1716.png deleted file mode 100644 index 726fe5e533..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1717.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1717.png deleted file mode 100644 index 5769b75ef6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1718.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1718.png deleted file mode 100644 index b725a3cf42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1719.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1719.png deleted file mode 100644 index 4a91b82700..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1720.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1720.png deleted file mode 100644 index 4a91b82700..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1721.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1721.png deleted file mode 100644 index 0c3f35afa3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1722.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1722.png deleted file mode 100644 index ec3ca46995..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1723.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1723.png deleted file mode 100644 index 4d6fd3850b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1724.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1724.png deleted file mode 100644 index f0e28f04e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1725.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1725.png deleted file mode 100644 index 70444c61f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1726.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1726.png deleted file mode 100644 index d8c03c73cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1727.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1727.png deleted file mode 100644 index 2377d91367..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1728.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1728.png deleted file mode 100644 index c6e2145084..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1729.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1729.png deleted file mode 100644 index 7e66781bba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1730.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1730.png deleted file mode 100644 index 9850e30e90..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1731.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1731.png deleted file mode 100644 index dffb500c9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1732.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1732.png deleted file mode 100644 index bcab7c17ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1733.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1733.png deleted file mode 100644 index f761ff3a0b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1734.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1734.png deleted file mode 100644 index 7167ef6965..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1735.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1735.png deleted file mode 100644 index 030875d5b4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1740.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1740.png deleted file mode 100644 index ec9fb089ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1741.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1741.png deleted file mode 100644 index b16ae8d2ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1742.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1742.png deleted file mode 100644 index 9fc33d7332..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1743.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1743.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1744.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1744.png deleted file mode 100644 index 110938adb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1745.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1745.png deleted file mode 100644 index 8654a7d051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSignHead/1746.png b/front/public/images/large/TGregworks/tGregToolPartSignHead/1746.png deleted file mode 100644 index 0b9ffe0425..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSignHead/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1500.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1500.png deleted file mode 100644 index b425d30561..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1501.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1501.png deleted file mode 100644 index fa2f05055c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1502.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1502.png deleted file mode 100644 index cd7ad247f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1503.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1503.png deleted file mode 100644 index ad7844e5cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1504.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1504.png deleted file mode 100644 index 5750f6b990..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1505.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1505.png deleted file mode 100644 index 7fd37b7ffb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1506.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1506.png deleted file mode 100644 index d12b51418f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1507.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1507.png deleted file mode 100644 index 9f1990400b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1508.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1508.png deleted file mode 100644 index 9917c95e28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1509.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1509.png deleted file mode 100644 index 82e628317f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1510.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1510.png deleted file mode 100644 index 06d8089d85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1511.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1511.png deleted file mode 100644 index 9917c95e28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1512.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1512.png deleted file mode 100644 index ef5325b7e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1513.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1513.png deleted file mode 100644 index cf9170d0f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1514.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1514.png deleted file mode 100644 index 33ba99569c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1515.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1515.png deleted file mode 100644 index a967cd571e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1516.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1516.png deleted file mode 100644 index 1e1c6d7e22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1517.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1517.png deleted file mode 100644 index 2ec0bd34d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1518.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1518.png deleted file mode 100644 index 311ebaf19f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1519.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1519.png deleted file mode 100644 index 4fd2c53806..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1520.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1520.png deleted file mode 100644 index 897b5ce8a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1521.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1521.png deleted file mode 100644 index 818896d993..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1522.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1522.png deleted file mode 100644 index 1a2a80430e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1523.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1523.png deleted file mode 100644 index 73484ee92a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1524.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1524.png deleted file mode 100644 index 3c31df8c9d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1525.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1525.png deleted file mode 100644 index 35a1efa596..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1526.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1526.png deleted file mode 100644 index e68251b34f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1527.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1527.png deleted file mode 100644 index a45670e0ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1528.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1528.png deleted file mode 100644 index 7ada17f4d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1529.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1529.png deleted file mode 100644 index 040f20b935..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1530.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1530.png deleted file mode 100644 index e6c0d943da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1531.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1531.png deleted file mode 100644 index 695d665255..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1532.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1532.png deleted file mode 100644 index 99b6b65f4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1533.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1533.png deleted file mode 100644 index 933546650a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1534.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1534.png deleted file mode 100644 index b87988847a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1535.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1535.png deleted file mode 100644 index e3872671a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1536.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1536.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1537.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1537.png deleted file mode 100644 index d5fb027692..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1538.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1538.png deleted file mode 100644 index e8e20e5599..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1539.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1539.png deleted file mode 100644 index 1f7ba22ca9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1540.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1540.png deleted file mode 100644 index a434d082ec..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1541.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1541.png deleted file mode 100644 index c2807507df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1542.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1542.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1543.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1543.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1544.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1544.png deleted file mode 100644 index 5b65d4d3bb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1545.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1545.png deleted file mode 100644 index 3a426fcdd0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1546.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1546.png deleted file mode 100644 index 8cc65b99c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1547.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1547.png deleted file mode 100644 index 6785b3e207..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1548.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1548.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1549.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1549.png deleted file mode 100644 index f082080834..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1550.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1550.png deleted file mode 100644 index 9276b4d566..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1551.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1551.png deleted file mode 100644 index 64afbe3f17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1553.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1553.png deleted file mode 100644 index 876162809b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1554.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1554.png deleted file mode 100644 index c49bbb57ce..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1555.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1555.png deleted file mode 100644 index 4c966af333..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1556.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1556.png deleted file mode 100644 index 33ba99569c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1557.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1557.png deleted file mode 100644 index 33ba99569c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1562.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1562.png deleted file mode 100644 index a83bab2f51..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1563.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1563.png deleted file mode 100644 index 4c966af333..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1564.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1564.png deleted file mode 100644 index ebfaac3aae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1565.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1565.png deleted file mode 100644 index b6fb506f3d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1566.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1566.png deleted file mode 100644 index 60ce9eb654..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1567.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1567.png deleted file mode 100644 index cd51ffc2cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1568.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1568.png deleted file mode 100644 index b76147d573..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1570.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1570.png deleted file mode 100644 index 0f22bdee9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1571.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1571.png deleted file mode 100644 index a9725608d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1572.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1572.png deleted file mode 100644 index 642efccf28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1573.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1573.png deleted file mode 100644 index b135e8b846..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1574.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1574.png deleted file mode 100644 index 818896d993..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1575.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1575.png deleted file mode 100644 index 6785b3e207..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1576.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1576.png deleted file mode 100644 index 6afd2e1c8c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1577.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1577.png deleted file mode 100644 index 999d72c8cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1578.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1578.png deleted file mode 100644 index 34f2617261..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1579.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1579.png deleted file mode 100644 index 9917c95e28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1582.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1582.png deleted file mode 100644 index aa975601c1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1583.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1583.png deleted file mode 100644 index fb7cc680db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1584.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1584.png deleted file mode 100644 index 02ffad0bbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1585.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1585.png deleted file mode 100644 index 0f23966466..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1586.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1586.png deleted file mode 100644 index b940a76da0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1587.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1587.png deleted file mode 100644 index bec562303c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1588.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1588.png deleted file mode 100644 index 4c966af333..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1589.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1589.png deleted file mode 100644 index e0141a8d3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1590.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1590.png deleted file mode 100644 index 98331ddd5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1591.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1591.png deleted file mode 100644 index 01ad84a5e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1592.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1592.png deleted file mode 100644 index ed7c354aaf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1593.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1593.png deleted file mode 100644 index c749a2ef47..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1594.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1594.png deleted file mode 100644 index 4a20da82cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1595.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1595.png deleted file mode 100644 index 3d784e35cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1596.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1596.png deleted file mode 100644 index daba9aea14..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1597.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1597.png deleted file mode 100644 index 6bd0e3df88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1598.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1598.png deleted file mode 100644 index 921e3a2e9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1599.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1599.png deleted file mode 100644 index 69a3482860..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1600.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1600.png deleted file mode 100644 index 237e78962b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1601.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1601.png deleted file mode 100644 index 3560b9d8f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1602.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1602.png deleted file mode 100644 index 09b57cb673..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1603.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1603.png deleted file mode 100644 index 589e59edf8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1604.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1604.png deleted file mode 100644 index 0a6395d19f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1605.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1605.png deleted file mode 100644 index a8a8288001..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1606.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1606.png deleted file mode 100644 index 38f606b7e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1607.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1607.png deleted file mode 100644 index 81407923cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1608.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1608.png deleted file mode 100644 index 5d4ca447d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1609.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1609.png deleted file mode 100644 index 818896d993..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1610.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1610.png deleted file mode 100644 index 06d8089d85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1611.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1611.png deleted file mode 100644 index 78eb5439ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1612.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1612.png deleted file mode 100644 index 9593c67310..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1613.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1613.png deleted file mode 100644 index 4240cb2ce3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1614.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1614.png deleted file mode 100644 index 38f606b7e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1615.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1615.png deleted file mode 100644 index e8e20e5599..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1616.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1616.png deleted file mode 100644 index 3132aaa4a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1617.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1617.png deleted file mode 100644 index a8a8288001..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1618.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1618.png deleted file mode 100644 index 294c8b84fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1619.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1619.png deleted file mode 100644 index 04c628589b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1620.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1620.png deleted file mode 100644 index 98331ddd5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1621.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1621.png deleted file mode 100644 index 3be89273b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1622.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1622.png deleted file mode 100644 index 90215eccdd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1623.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1623.png deleted file mode 100644 index e53fb7b8df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1624.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1624.png deleted file mode 100644 index ae672da526..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1625.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1625.png deleted file mode 100644 index 49fad39232..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1626.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1626.png deleted file mode 100644 index 5c6f296dcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1627.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1627.png deleted file mode 100644 index 772cdd16cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1628.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1628.png deleted file mode 100644 index 1a0a1cdc79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1629.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1629.png deleted file mode 100644 index 21b9ecd23e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1630.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1630.png deleted file mode 100644 index 089bded953..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1631.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1631.png deleted file mode 100644 index 06d8089d85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1632.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1632.png deleted file mode 100644 index a66fff8c8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1633.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1633.png deleted file mode 100644 index ac3a5f40f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1634.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1634.png deleted file mode 100644 index 58d3ae0e33..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1635.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1635.png deleted file mode 100644 index d93f17b2d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1636.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1636.png deleted file mode 100644 index a39522ec10..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1637.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1637.png deleted file mode 100644 index 95257c7551..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1638.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1638.png deleted file mode 100644 index 1321b2ab3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1639.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1639.png deleted file mode 100644 index a9725608d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1640.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1640.png deleted file mode 100644 index b8ab2d082b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1641.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1641.png deleted file mode 100644 index 73a0a11772..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1642.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1642.png deleted file mode 100644 index 58a3a41cda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1643.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1643.png deleted file mode 100644 index 00e4089702..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1644.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1644.png deleted file mode 100644 index 8e1a0af072..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1645.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1645.png deleted file mode 100644 index a66fff8c8e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1646.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1646.png deleted file mode 100644 index 38f606b7e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1647.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1647.png deleted file mode 100644 index 33ba99569c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1648.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1648.png deleted file mode 100644 index 06d8089d85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1649.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1649.png deleted file mode 100644 index 3372ede53c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1650.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1650.png deleted file mode 100644 index 18e72dbaf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1651.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1651.png deleted file mode 100644 index 79836acb93..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1652.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1652.png deleted file mode 100644 index c7996aa73d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1653.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1653.png deleted file mode 100644 index c8895bb1ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1654.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1654.png deleted file mode 100644 index 24b43eddcc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1655.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1655.png deleted file mode 100644 index e8eb8ffc6a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1656.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1656.png deleted file mode 100644 index 6fc46609e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1657.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1657.png deleted file mode 100644 index 818896d993..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1658.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1658.png deleted file mode 100644 index 87c6b6a4e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1659.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1659.png deleted file mode 100644 index f99de035d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1660.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1660.png deleted file mode 100644 index 2a1dfd3200..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1661.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1661.png deleted file mode 100644 index 29f20eef38..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1662.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1662.png deleted file mode 100644 index ff06843dc3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1663.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1663.png deleted file mode 100644 index beb2925f85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1664.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1664.png deleted file mode 100644 index 34cf84bcd5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1665.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1665.png deleted file mode 100644 index 55f6f1bd1c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1666.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1666.png deleted file mode 100644 index 06e13a5bbc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1667.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1667.png deleted file mode 100644 index 1bc124efd7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1668.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1668.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1670.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1670.png deleted file mode 100644 index 6b03678726..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1672.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1672.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1673.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1673.png deleted file mode 100644 index ecb388d001..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1674.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1674.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1675.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1675.png deleted file mode 100644 index 38f606b7e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1676.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1676.png deleted file mode 100644 index 0a06758141..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1677.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1677.png deleted file mode 100644 index 6d51a830d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1678.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1678.png deleted file mode 100644 index f072992e48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1679.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1679.png deleted file mode 100644 index b6b73a0018..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1680.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1680.png deleted file mode 100644 index 367a7a4628..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1681.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1681.png deleted file mode 100644 index f150cc994e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1682.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1682.png deleted file mode 100644 index ba293c56bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1683.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1683.png deleted file mode 100644 index 0266abcf46..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1684.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1684.png deleted file mode 100644 index 74341bf3b6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1685.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1685.png deleted file mode 100644 index 69764cd6c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1686.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1686.png deleted file mode 100644 index 818896d993..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1687.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1687.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1688.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1688.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1689.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1689.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1690.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1690.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1691.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1691.png deleted file mode 100644 index 796e0ebc25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1692.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1692.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1693.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1693.png deleted file mode 100644 index bedbf30eb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1694.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1694.png deleted file mode 100644 index 203effad7a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1695.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1695.png deleted file mode 100644 index 37bc0276ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1696.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1696.png deleted file mode 100644 index 4b4a486075..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1697.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1697.png deleted file mode 100644 index 0c8139f228..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1698.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1698.png deleted file mode 100644 index 818896d993..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1699.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1699.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1700.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1700.png deleted file mode 100644 index dc26c52abe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1701.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1701.png deleted file mode 100644 index 3f397e668e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1702.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1702.png deleted file mode 100644 index b6e83ce1e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1703.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1703.png deleted file mode 100644 index 42f43c92f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1704.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1704.png deleted file mode 100644 index cab3d44bca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1705.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1705.png deleted file mode 100644 index ab9da61753..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1706.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1706.png deleted file mode 100644 index 06d8089d85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1707.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1707.png deleted file mode 100644 index 52077b9294..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1708.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1708.png deleted file mode 100644 index 5750f6b990..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1709.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1709.png deleted file mode 100644 index a1bba48f79..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1710.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1710.png deleted file mode 100644 index a935aa3cb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1711.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1711.png deleted file mode 100644 index 93fcd5232a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1712.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1712.png deleted file mode 100644 index d7ca006200..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1713.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1713.png deleted file mode 100644 index 56c4ee7427..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1714.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1714.png deleted file mode 100644 index 3151f1c7db..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1715.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1715.png deleted file mode 100644 index da05cdd37e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1716.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1716.png deleted file mode 100644 index 714f8847df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1717.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1717.png deleted file mode 100644 index ebaec6ba49..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1718.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1718.png deleted file mode 100644 index b513c29fcd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1719.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1719.png deleted file mode 100644 index 3141840ba4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1720.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1720.png deleted file mode 100644 index 3141840ba4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1721.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1721.png deleted file mode 100644 index e974b6d7c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1722.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1722.png deleted file mode 100644 index e65c0f090c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1723.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1723.png deleted file mode 100644 index 8f5308b65a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1724.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1724.png deleted file mode 100644 index 690014d82a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1725.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1725.png deleted file mode 100644 index 1fd7415bae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1726.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1726.png deleted file mode 100644 index 822ff6f979..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1727.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1727.png deleted file mode 100644 index 49484cca6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1728.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1728.png deleted file mode 100644 index 03bf9d0fc9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1729.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1729.png deleted file mode 100644 index da500f5e81..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1730.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1730.png deleted file mode 100644 index 09f22e38ba..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1731.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1731.png deleted file mode 100644 index 25136ecedf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1732.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1732.png deleted file mode 100644 index 329a3bb3c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1733.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1733.png deleted file mode 100644 index c6756a3d17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1734.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1734.png deleted file mode 100644 index 92293381cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1735.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1735.png deleted file mode 100644 index fbdbeebc3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1740.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1740.png deleted file mode 100644 index 46a66352bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1741.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1741.png deleted file mode 100644 index f8931064ff..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1742.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1742.png deleted file mode 100644 index 3cd5523b87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1743.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1743.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1744.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1744.png deleted file mode 100644 index 3dfb4e8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1745.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1745.png deleted file mode 100644 index ae69fcccf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1746.png b/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1746.png deleted file mode 100644 index e84bd9f75c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartSwordBlade/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1500.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1500.png deleted file mode 100644 index 904ae3093d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1501.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1501.png deleted file mode 100644 index 79a4f478a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1502.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1502.png deleted file mode 100644 index 1576b304e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1503.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1503.png deleted file mode 100644 index 5cd67ad288..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1504.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1504.png deleted file mode 100644 index 38f10ec1c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1505.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1505.png deleted file mode 100644 index 1594ea9fcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1506.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1506.png deleted file mode 100644 index 646add0ce4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1507.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1507.png deleted file mode 100644 index c4136435ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1508.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1508.png deleted file mode 100644 index a997bfd2b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1509.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1509.png deleted file mode 100644 index f815136fe1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1510.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1510.png deleted file mode 100644 index 2fb554cb0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1511.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1511.png deleted file mode 100644 index a997bfd2b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1512.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1512.png deleted file mode 100644 index 555ae6ec60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1513.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1513.png deleted file mode 100644 index 222aac949e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1514.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1514.png deleted file mode 100644 index fccfc7ae25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1515.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1515.png deleted file mode 100644 index 0468a12c6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1516.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1516.png deleted file mode 100644 index 7dc7e31d56..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1517.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1517.png deleted file mode 100644 index 272e4aedb7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1518.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1518.png deleted file mode 100644 index 82076dc8f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1519.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1519.png deleted file mode 100644 index 638b35f325..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1520.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1520.png deleted file mode 100644 index 3602eecb85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1521.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1521.png deleted file mode 100644 index 50f074b2d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1522.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1522.png deleted file mode 100644 index 50b6b725c2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1523.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1523.png deleted file mode 100644 index 19787cab72..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1524.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1524.png deleted file mode 100644 index b3775c82f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1525.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1525.png deleted file mode 100644 index 82cc084f5c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1526.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1526.png deleted file mode 100644 index b0b2ffce42..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1527.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1527.png deleted file mode 100644 index 5f78ee8337..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1528.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1528.png deleted file mode 100644 index fbeed81ba7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1529.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1529.png deleted file mode 100644 index 0017884310..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1530.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1530.png deleted file mode 100644 index 4bae146daf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1531.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1531.png deleted file mode 100644 index b9a6035cb5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1532.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1532.png deleted file mode 100644 index d447afc142..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1533.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1533.png deleted file mode 100644 index fa3902bf37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1534.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1534.png deleted file mode 100644 index b038a46588..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1535.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1535.png deleted file mode 100644 index 9ed6e92adb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1536.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1536.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1537.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1537.png deleted file mode 100644 index 8e55de95f1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1538.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1538.png deleted file mode 100644 index dc2a8407dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1539.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1539.png deleted file mode 100644 index b1d40f81d9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1540.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1540.png deleted file mode 100644 index 143cf0c1f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1541.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1541.png deleted file mode 100644 index 57823e7775..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1542.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1542.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1543.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1543.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1544.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1544.png deleted file mode 100644 index 19deb7f27f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1545.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1545.png deleted file mode 100644 index d96fb8f60e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1546.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1546.png deleted file mode 100644 index 3f7135d013..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1547.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1547.png deleted file mode 100644 index c8d5b1393f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1548.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1548.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1549.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1549.png deleted file mode 100644 index 8388f7d442..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1550.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1550.png deleted file mode 100644 index 2dae773923..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1551.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1551.png deleted file mode 100644 index 845d9ef059..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1553.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1553.png deleted file mode 100644 index 13ef887ab0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1554.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1554.png deleted file mode 100644 index deb96802eb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1555.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1555.png deleted file mode 100644 index 8d931aa536..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1556.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1556.png deleted file mode 100644 index fccfc7ae25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1557.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1557.png deleted file mode 100644 index fccfc7ae25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1562.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1562.png deleted file mode 100644 index da5f5ef942..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1563.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1563.png deleted file mode 100644 index 8d931aa536..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1564.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1564.png deleted file mode 100644 index 7ad12a2bae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1565.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1565.png deleted file mode 100644 index ffd9f1640e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1566.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1566.png deleted file mode 100644 index da27a15763..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1567.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1567.png deleted file mode 100644 index 3d2507ce75..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1568.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1568.png deleted file mode 100644 index 15b72d1741..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1570.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1570.png deleted file mode 100644 index d36a0e9bbb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1571.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1571.png deleted file mode 100644 index 0a911ed512..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1572.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1572.png deleted file mode 100644 index 500c3a58cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1573.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1573.png deleted file mode 100644 index 1e7c3c5ba7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1574.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1574.png deleted file mode 100644 index 50f074b2d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1575.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1575.png deleted file mode 100644 index c8d5b1393f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1576.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1576.png deleted file mode 100644 index 6ba8e39146..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1577.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1577.png deleted file mode 100644 index e293804472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1578.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1578.png deleted file mode 100644 index 906108d52a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1579.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1579.png deleted file mode 100644 index a997bfd2b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1582.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1582.png deleted file mode 100644 index 4496b1d6aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1583.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1583.png deleted file mode 100644 index 9290c50027..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1584.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1584.png deleted file mode 100644 index 9f833b1792..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1585.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1585.png deleted file mode 100644 index 8eb5a17b74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1586.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1586.png deleted file mode 100644 index b9017c56c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1587.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1587.png deleted file mode 100644 index 37f0768f68..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1588.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1588.png deleted file mode 100644 index 8d931aa536..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1589.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1589.png deleted file mode 100644 index b734af1ac9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1590.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1590.png deleted file mode 100644 index cee560bad2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1591.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1591.png deleted file mode 100644 index b47312d48d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1592.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1592.png deleted file mode 100644 index 9d4b0e5563..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1593.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1593.png deleted file mode 100644 index ebc9b2195f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1594.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1594.png deleted file mode 100644 index 1627c34440..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1595.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1595.png deleted file mode 100644 index ed313198d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1596.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1596.png deleted file mode 100644 index 32e290f0ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1597.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1597.png deleted file mode 100644 index 03cd9d6869..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1598.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1598.png deleted file mode 100644 index 63aec9a431..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1599.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1599.png deleted file mode 100644 index fa6f431b07..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1600.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1600.png deleted file mode 100644 index c8c2552db6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1601.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1601.png deleted file mode 100644 index 316112a404..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1602.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1602.png deleted file mode 100644 index 69ec7a0e29..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1603.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1603.png deleted file mode 100644 index ae3b6a22d6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1604.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1604.png deleted file mode 100644 index b22cdddda1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1605.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1605.png deleted file mode 100644 index f240248bb4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1606.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1606.png deleted file mode 100644 index 0af4be5fb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1607.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1607.png deleted file mode 100644 index b528352f68..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1608.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1608.png deleted file mode 100644 index 3409b0291f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1609.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1609.png deleted file mode 100644 index 50f074b2d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1610.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1610.png deleted file mode 100644 index 2fb554cb0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1611.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1611.png deleted file mode 100644 index 216baa8602..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1612.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1612.png deleted file mode 100644 index c56bda8fe8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1613.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1613.png deleted file mode 100644 index d9c302ed12..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1614.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1614.png deleted file mode 100644 index 0af4be5fb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1615.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1615.png deleted file mode 100644 index dc2a8407dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1616.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1616.png deleted file mode 100644 index 5306f0f52a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1617.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1617.png deleted file mode 100644 index f240248bb4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1618.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1618.png deleted file mode 100644 index 7381bcaccd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1619.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1619.png deleted file mode 100644 index 2c5dbc3a74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1620.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1620.png deleted file mode 100644 index cee560bad2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1621.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1621.png deleted file mode 100644 index f27f50c0c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1622.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1622.png deleted file mode 100644 index a3ad4ed102..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1623.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1623.png deleted file mode 100644 index e3c24a0f44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1624.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1624.png deleted file mode 100644 index 1a3958fd97..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1625.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1625.png deleted file mode 100644 index 825aedd50b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1626.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1626.png deleted file mode 100644 index dfa9d4aa9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1627.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1627.png deleted file mode 100644 index 88c555ab01..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1628.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1628.png deleted file mode 100644 index dd852cdbae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1629.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1629.png deleted file mode 100644 index 0abdcd2733..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1630.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1630.png deleted file mode 100644 index 0d797d7d58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1631.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1631.png deleted file mode 100644 index 2fb554cb0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1632.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1632.png deleted file mode 100644 index 7cda01e5fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1633.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1633.png deleted file mode 100644 index 79ba09d538..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1634.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1634.png deleted file mode 100644 index 64e2c32a71..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1635.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1635.png deleted file mode 100644 index 4b7153d23a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1636.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1636.png deleted file mode 100644 index 66a7f694a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1637.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1637.png deleted file mode 100644 index 2eaf9f3710..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1638.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1638.png deleted file mode 100644 index d59da1de7d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1639.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1639.png deleted file mode 100644 index 0a911ed512..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1640.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1640.png deleted file mode 100644 index 8277d904a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1641.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1641.png deleted file mode 100644 index 49cf04d80f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1642.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1642.png deleted file mode 100644 index 07982f2767..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1643.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1643.png deleted file mode 100644 index 0baee8497e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1644.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1644.png deleted file mode 100644 index d9c1e149b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1645.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1645.png deleted file mode 100644 index 7cda01e5fa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1646.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1646.png deleted file mode 100644 index 0af4be5fb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1647.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1647.png deleted file mode 100644 index fccfc7ae25..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1648.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1648.png deleted file mode 100644 index 2fb554cb0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1649.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1649.png deleted file mode 100644 index bf4343f677..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1650.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1650.png deleted file mode 100644 index e2d839dabf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1651.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1651.png deleted file mode 100644 index 7b01313103..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1652.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1652.png deleted file mode 100644 index f1a525aa39..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1653.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1653.png deleted file mode 100644 index 5a72333928..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1654.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1654.png deleted file mode 100644 index 5519d79e20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1655.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1655.png deleted file mode 100644 index aed4da7f3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1656.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1656.png deleted file mode 100644 index 9354f82397..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1657.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1657.png deleted file mode 100644 index 50f074b2d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1658.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1658.png deleted file mode 100644 index c2a9839fb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1659.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1659.png deleted file mode 100644 index 200b533120..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1660.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1660.png deleted file mode 100644 index 049aa83cea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1661.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1661.png deleted file mode 100644 index 950bea1fa0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1662.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1662.png deleted file mode 100644 index 16aebab2ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1663.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1663.png deleted file mode 100644 index dffdd1a665..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1664.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1664.png deleted file mode 100644 index 183359e44b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1665.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1665.png deleted file mode 100644 index 36ccf77ec4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1666.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1666.png deleted file mode 100644 index bd853a1735..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1667.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1667.png deleted file mode 100644 index b0891cd302..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1668.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1668.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1670.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1670.png deleted file mode 100644 index 8864228e87..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1672.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1672.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1673.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1673.png deleted file mode 100644 index 839ea38778..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1674.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1674.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1675.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1675.png deleted file mode 100644 index 0af4be5fb8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1676.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1676.png deleted file mode 100644 index f68c97a7c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1677.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1677.png deleted file mode 100644 index 0a96a5c5f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1678.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1678.png deleted file mode 100644 index 29b8209971..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1679.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1679.png deleted file mode 100644 index 14942cbd99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1680.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1680.png deleted file mode 100644 index 290bae7756..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1681.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1681.png deleted file mode 100644 index 99d7afb20e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1682.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1682.png deleted file mode 100644 index a6a659f39a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1683.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1683.png deleted file mode 100644 index 466ed0e849..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1684.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1684.png deleted file mode 100644 index 4b35bb8c24..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1685.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1685.png deleted file mode 100644 index ea1808ea15..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1686.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1686.png deleted file mode 100644 index 50f074b2d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1687.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1687.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1688.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1688.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1689.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1689.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1690.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1690.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1691.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1691.png deleted file mode 100644 index 5b2204b8c4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1692.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1692.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1693.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1693.png deleted file mode 100644 index b4c4c5644e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1694.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1694.png deleted file mode 100644 index f70a0e8934..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1695.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1695.png deleted file mode 100644 index 0af4abe36c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1696.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1696.png deleted file mode 100644 index dd80a115cd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1697.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1697.png deleted file mode 100644 index 98301a1a7a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1698.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1698.png deleted file mode 100644 index 50f074b2d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1699.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1699.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1700.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1700.png deleted file mode 100644 index 33b8fd0284..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1701.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1701.png deleted file mode 100644 index 35dd5ea6fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1702.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1702.png deleted file mode 100644 index 6f1908af8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1703.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1703.png deleted file mode 100644 index e9520bf927..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1704.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1704.png deleted file mode 100644 index 32908fb433..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1705.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1705.png deleted file mode 100644 index a21a004c60..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1706.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1706.png deleted file mode 100644 index 2fb554cb0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1707.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1707.png deleted file mode 100644 index 3f0d787cf0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1708.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1708.png deleted file mode 100644 index 38f10ec1c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1709.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1709.png deleted file mode 100644 index 7af9ab3f54..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1710.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1710.png deleted file mode 100644 index 68b4a3435e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1711.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1711.png deleted file mode 100644 index f71f3713b5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1712.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1712.png deleted file mode 100644 index 7480eec68b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1713.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1713.png deleted file mode 100644 index 39577d52d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1714.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1714.png deleted file mode 100644 index 95e9c396e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1715.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1715.png deleted file mode 100644 index 1ec503c791..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1716.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1716.png deleted file mode 100644 index f8db291dd7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1717.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1717.png deleted file mode 100644 index a8f3f81df3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1718.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1718.png deleted file mode 100644 index 722cfff7e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1719.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1719.png deleted file mode 100644 index a323a8d38c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1720.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1720.png deleted file mode 100644 index a323a8d38c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1721.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1721.png deleted file mode 100644 index 23b9306452..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1722.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1722.png deleted file mode 100644 index fd617b92f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1723.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1723.png deleted file mode 100644 index 8cf996cf9c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1724.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1724.png deleted file mode 100644 index 45425aafcd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1725.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1725.png deleted file mode 100644 index 7c1ab43197..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1726.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1726.png deleted file mode 100644 index 6d874b8bbb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1727.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1727.png deleted file mode 100644 index ad3526e4f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1728.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1728.png deleted file mode 100644 index dd8e078d5f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1729.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1729.png deleted file mode 100644 index be2772eda5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1730.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1730.png deleted file mode 100644 index f9f72112d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1731.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1731.png deleted file mode 100644 index 86c75be287..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1732.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1732.png deleted file mode 100644 index 1e1fb636a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1733.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1733.png deleted file mode 100644 index 8b3fe52db0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1734.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1734.png deleted file mode 100644 index c1862a2037..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1735.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1735.png deleted file mode 100644 index 0f03f9f2bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1740.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1740.png deleted file mode 100644 index 3829796979..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1741.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1741.png deleted file mode 100644 index 92afdf0727..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1742.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1742.png deleted file mode 100644 index 5873ed6fb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1743.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1743.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1744.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1744.png deleted file mode 100644 index bf6d1be805..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1745.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1745.png deleted file mode 100644 index d9456caa28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToolRod/1746.png b/front/public/images/large/TGregworks/tGregToolPartToolRod/1746.png deleted file mode 100644 index 8181cc9fcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToolRod/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1500.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1500.png deleted file mode 100644 index 7c00539051..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1501.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1501.png deleted file mode 100644 index 53c737cc74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1502.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1502.png deleted file mode 100644 index bf0b775f0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1503.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1503.png deleted file mode 100644 index 67a3aa08d2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1504.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1504.png deleted file mode 100644 index 6e47e1baf4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1505.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1505.png deleted file mode 100644 index 34f1fb3d3e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1506.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1506.png deleted file mode 100644 index 0d8496dd22..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1507.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1507.png deleted file mode 100644 index 1241f42438..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1508.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1508.png deleted file mode 100644 index 00dca92f33..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1509.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1509.png deleted file mode 100644 index cd5784823c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1510.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1510.png deleted file mode 100644 index 0ff2b027f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1511.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1511.png deleted file mode 100644 index 00dca92f33..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1512.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1512.png deleted file mode 100644 index 30096c9fa8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1513.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1513.png deleted file mode 100644 index 9433389568..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1514.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1514.png deleted file mode 100644 index bbf55836f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1515.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1515.png deleted file mode 100644 index 86dd8723ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1516.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1516.png deleted file mode 100644 index 270d698d70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1517.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1517.png deleted file mode 100644 index 50a9f48829..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1518.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1518.png deleted file mode 100644 index 456e25ff00..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1519.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1519.png deleted file mode 100644 index a4bf24d602..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1520.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1520.png deleted file mode 100644 index 0b1c4c7b1e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1521.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1521.png deleted file mode 100644 index e8ebd03ac4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1522.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1522.png deleted file mode 100644 index 73a519275b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1523.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1523.png deleted file mode 100644 index 9335ccb49f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1524.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1524.png deleted file mode 100644 index 4839dcb896..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1525.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1525.png deleted file mode 100644 index 791d24825a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1526.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1526.png deleted file mode 100644 index 9e134a1301..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1527.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1527.png deleted file mode 100644 index 15a6424f2a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1528.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1528.png deleted file mode 100644 index 609e0359ef..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1529.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1529.png deleted file mode 100644 index d6280c6ba8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1530.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1530.png deleted file mode 100644 index 7110a67e9b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1531.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1531.png deleted file mode 100644 index 836c3a1319..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1532.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1532.png deleted file mode 100644 index 70b6f4da6e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1533.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1533.png deleted file mode 100644 index 81961d5da3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1534.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1534.png deleted file mode 100644 index 4020d38fc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1535.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1535.png deleted file mode 100644 index 819c718fe0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1536.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1536.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1537.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1537.png deleted file mode 100644 index 3a21b5770f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1538.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1538.png deleted file mode 100644 index 85052acede..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1539.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1539.png deleted file mode 100644 index df8742f1e0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1540.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1540.png deleted file mode 100644 index e9d32f671c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1541.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1541.png deleted file mode 100644 index 2500cc6577..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1542.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1542.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1543.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1543.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1544.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1544.png deleted file mode 100644 index e4c51bc8c3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1545.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1545.png deleted file mode 100644 index 2ca9686233..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1546.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1546.png deleted file mode 100644 index d6a0083090..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1547.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1547.png deleted file mode 100644 index 9b9c347597..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1548.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1548.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1549.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1549.png deleted file mode 100644 index 836cdda26e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1550.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1550.png deleted file mode 100644 index d6f6944a26..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1551.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1551.png deleted file mode 100644 index e1cc5ca09c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1553.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1553.png deleted file mode 100644 index b4561b27a7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1554.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1554.png deleted file mode 100644 index 5f4d48577c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1555.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1555.png deleted file mode 100644 index 483161a79c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1556.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1556.png deleted file mode 100644 index bbf55836f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1557.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1557.png deleted file mode 100644 index bbf55836f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1562.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1562.png deleted file mode 100644 index c047d012df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1563.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1563.png deleted file mode 100644 index 483161a79c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1564.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1564.png deleted file mode 100644 index f6aa9976e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1565.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1565.png deleted file mode 100644 index 45287738c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1566.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1566.png deleted file mode 100644 index 32602af768..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1567.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1567.png deleted file mode 100644 index 11b24ef14b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1568.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1568.png deleted file mode 100644 index c92b25c839..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1570.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1570.png deleted file mode 100644 index be06f411a6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1571.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1571.png deleted file mode 100644 index e280425741..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1572.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1572.png deleted file mode 100644 index 6b5c8fd97c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1573.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1573.png deleted file mode 100644 index 5519a8c928..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1574.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1574.png deleted file mode 100644 index e8ebd03ac4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1575.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1575.png deleted file mode 100644 index 9b9c347597..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1576.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1576.png deleted file mode 100644 index 13dc9d2bd4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1577.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1577.png deleted file mode 100644 index a7f2ad4249..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1578.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1578.png deleted file mode 100644 index d35ac90044..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1579.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1579.png deleted file mode 100644 index 00dca92f33..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1582.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1582.png deleted file mode 100644 index c435245396..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1583.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1583.png deleted file mode 100644 index 9e09826772..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1584.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1584.png deleted file mode 100644 index a16b5aa963..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1585.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1585.png deleted file mode 100644 index 4433f252d0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1586.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1586.png deleted file mode 100644 index 2534b93879..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1587.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1587.png deleted file mode 100644 index 6d0fce92f8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1588.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1588.png deleted file mode 100644 index 483161a79c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1589.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1589.png deleted file mode 100644 index aee6b111cc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1590.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1590.png deleted file mode 100644 index 54683e357c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1591.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1591.png deleted file mode 100644 index 563a82937e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1592.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1592.png deleted file mode 100644 index 03f7359efa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1593.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1593.png deleted file mode 100644 index c5a0f9fe9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1594.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1594.png deleted file mode 100644 index 43d2646272..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1595.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1595.png deleted file mode 100644 index b5d76c6241..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1596.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1596.png deleted file mode 100644 index f4ef5cb587..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1597.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1597.png deleted file mode 100644 index cc773c13c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1598.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1598.png deleted file mode 100644 index c82b5d391c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1599.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1599.png deleted file mode 100644 index a781fa922c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1600.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1600.png deleted file mode 100644 index a3d60e63bd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1601.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1601.png deleted file mode 100644 index 289a36de28..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1602.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1602.png deleted file mode 100644 index 70814f9d66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1603.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1603.png deleted file mode 100644 index 0d72c3d1d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1604.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1604.png deleted file mode 100644 index b7a62b4992..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1605.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1605.png deleted file mode 100644 index 96e46590c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1606.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1606.png deleted file mode 100644 index 96bf895b85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1607.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1607.png deleted file mode 100644 index a8536550f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1608.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1608.png deleted file mode 100644 index ce135f744a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1609.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1609.png deleted file mode 100644 index e8ebd03ac4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1610.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1610.png deleted file mode 100644 index 0ff2b027f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1611.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1611.png deleted file mode 100644 index 88fd68ced0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1612.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1612.png deleted file mode 100644 index 1687fbd626..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1613.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1613.png deleted file mode 100644 index 35d747b059..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1614.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1614.png deleted file mode 100644 index 96bf895b85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1615.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1615.png deleted file mode 100644 index 85052acede..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1616.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1616.png deleted file mode 100644 index d74843c7c7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1617.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1617.png deleted file mode 100644 index 96e46590c8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1618.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1618.png deleted file mode 100644 index 18295ae721..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1619.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1619.png deleted file mode 100644 index 1227d10ace..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1620.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1620.png deleted file mode 100644 index 54683e357c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1621.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1621.png deleted file mode 100644 index 9de3cd1b1b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1622.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1622.png deleted file mode 100644 index 6234ef8a17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1623.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1623.png deleted file mode 100644 index 9c7201af3c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1624.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1624.png deleted file mode 100644 index 5fbb5fd9e9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1625.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1625.png deleted file mode 100644 index 099f0e4c18..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1626.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1626.png deleted file mode 100644 index 82c119c1df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1627.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1627.png deleted file mode 100644 index c9b3cc6555..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1628.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1628.png deleted file mode 100644 index 109227c6a4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1629.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1629.png deleted file mode 100644 index 331e247da9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1630.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1630.png deleted file mode 100644 index e8a338d653..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1631.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1631.png deleted file mode 100644 index 0ff2b027f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1632.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1632.png deleted file mode 100644 index d25da17100..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1633.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1633.png deleted file mode 100644 index e10e939dab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1634.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1634.png deleted file mode 100644 index 506fa9a22c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1635.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1635.png deleted file mode 100644 index 301e4f1e99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1636.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1636.png deleted file mode 100644 index d1405a8669..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1637.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1637.png deleted file mode 100644 index 3959ba3fd1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1638.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1638.png deleted file mode 100644 index 1a43945767..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1639.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1639.png deleted file mode 100644 index e280425741..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1640.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1640.png deleted file mode 100644 index 6d90eba51e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1641.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1641.png deleted file mode 100644 index 5d92285274..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1642.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1642.png deleted file mode 100644 index 5a7cba42e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1643.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1643.png deleted file mode 100644 index 7ba382123b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1644.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1644.png deleted file mode 100644 index 8268ed4d83..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1645.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1645.png deleted file mode 100644 index d25da17100..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1646.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1646.png deleted file mode 100644 index 96bf895b85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1647.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1647.png deleted file mode 100644 index bbf55836f7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1648.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1648.png deleted file mode 100644 index 0ff2b027f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1649.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1649.png deleted file mode 100644 index 1cfcb33668..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1650.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1650.png deleted file mode 100644 index 80e1bbeec9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1651.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1651.png deleted file mode 100644 index 3746986f3f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1652.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1652.png deleted file mode 100644 index cacb0e3f30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1653.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1653.png deleted file mode 100644 index fa25b9949b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1654.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1654.png deleted file mode 100644 index 6133b44802..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1655.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1655.png deleted file mode 100644 index 627774bc52..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1656.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1656.png deleted file mode 100644 index 6213f26814..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1657.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1657.png deleted file mode 100644 index e8ebd03ac4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1658.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1658.png deleted file mode 100644 index fba8ab4d18..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1659.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1659.png deleted file mode 100644 index 21a350a88f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1660.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1660.png deleted file mode 100644 index 2f1224f5dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1661.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1661.png deleted file mode 100644 index aff648e7df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1662.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1662.png deleted file mode 100644 index 08be3cc10c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1663.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1663.png deleted file mode 100644 index 0a92b4b472..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1664.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1664.png deleted file mode 100644 index f7f1fde0e8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1665.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1665.png deleted file mode 100644 index 7787ba9a69..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1666.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1666.png deleted file mode 100644 index 10c6e80b4f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1667.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1667.png deleted file mode 100644 index d558fefbfc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1668.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1668.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1670.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1670.png deleted file mode 100644 index 19be8a5c86..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1672.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1672.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1673.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1673.png deleted file mode 100644 index 18f21b35cf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1674.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1674.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1675.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1675.png deleted file mode 100644 index 96bf895b85..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1676.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1676.png deleted file mode 100644 index f239ee37b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1677.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1677.png deleted file mode 100644 index d69df9006a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1678.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1678.png deleted file mode 100644 index 976445c32b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1679.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1679.png deleted file mode 100644 index 1e6cbb5d5a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1680.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1680.png deleted file mode 100644 index f05c79410e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1681.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1681.png deleted file mode 100644 index 8c1833a791..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1682.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1682.png deleted file mode 100644 index 1ed06d40f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1683.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1683.png deleted file mode 100644 index 6419a9bdf5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1684.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1684.png deleted file mode 100644 index 3818ff9cbf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1685.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1685.png deleted file mode 100644 index f54f32ae30..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1686.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1686.png deleted file mode 100644 index e8ebd03ac4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1687.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1687.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1688.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1688.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1689.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1689.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1690.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1690.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1691.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1691.png deleted file mode 100644 index 779e636b63..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1692.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1692.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1693.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1693.png deleted file mode 100644 index 5bc2928fb2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1694.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1694.png deleted file mode 100644 index 39431560e1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1695.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1695.png deleted file mode 100644 index bd99684683..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1696.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1696.png deleted file mode 100644 index f2722c4d5d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1697.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1697.png deleted file mode 100644 index 383919b451..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1698.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1698.png deleted file mode 100644 index e8ebd03ac4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1699.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1699.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1700.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1700.png deleted file mode 100644 index 59b6603984..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1701.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1701.png deleted file mode 100644 index 79385e4005..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1702.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1702.png deleted file mode 100644 index 4976b786f6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1703.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1703.png deleted file mode 100644 index 1d588290e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1704.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1704.png deleted file mode 100644 index 262bf9bf8d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1705.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1705.png deleted file mode 100644 index c3818bd633..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1706.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1706.png deleted file mode 100644 index 0ff2b027f9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1707.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1707.png deleted file mode 100644 index d50db23b4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1708.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1708.png deleted file mode 100644 index 6e47e1baf4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1709.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1709.png deleted file mode 100644 index 8a85ca7855..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1710.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1710.png deleted file mode 100644 index 80b23e67d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1711.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1711.png deleted file mode 100644 index e48cf8cf0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1712.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1712.png deleted file mode 100644 index a5cef93ebe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1713.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1713.png deleted file mode 100644 index d976ef414c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1714.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1714.png deleted file mode 100644 index e3adbf2099..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1715.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1715.png deleted file mode 100644 index 896bb329f3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1716.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1716.png deleted file mode 100644 index efbe34e5ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1717.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1717.png deleted file mode 100644 index 9cb9a42fc6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1718.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1718.png deleted file mode 100644 index 842c0b2a04..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1719.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1719.png deleted file mode 100644 index 8461d535d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1720.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1720.png deleted file mode 100644 index 8461d535d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1721.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1721.png deleted file mode 100644 index fc7c8e2326..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1722.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1722.png deleted file mode 100644 index 7d6952845d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1723.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1723.png deleted file mode 100644 index 23024dc0a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1724.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1724.png deleted file mode 100644 index b5b8752f66..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1725.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1725.png deleted file mode 100644 index 95d5eded17..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1726.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1726.png deleted file mode 100644 index e53a26e43b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1727.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1727.png deleted file mode 100644 index cea174bbf5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1728.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1728.png deleted file mode 100644 index 38da6e5f0f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1729.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1729.png deleted file mode 100644 index 6298104047..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1730.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1730.png deleted file mode 100644 index 29c2284966..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1731.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1731.png deleted file mode 100644 index d81a033aca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1732.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1732.png deleted file mode 100644 index a10f1fd133..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1733.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1733.png deleted file mode 100644 index ecf0488857..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1734.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1734.png deleted file mode 100644 index 7b8894d284..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1735.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1735.png deleted file mode 100644 index b51a7930a8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1740.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1740.png deleted file mode 100644 index 66ac6cf49e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1741.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1741.png deleted file mode 100644 index 2ca134de11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1742.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1742.png deleted file mode 100644 index 25eb798647..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1743.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1743.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1744.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1744.png deleted file mode 100644 index a36ab5590d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1745.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1745.png deleted file mode 100644 index 5d15a8ef64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughBind/1746.png b/front/public/images/large/TGregworks/tGregToolPartToughBind/1746.png deleted file mode 100644 index 5d03776e06..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughBind/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1500.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1500.png deleted file mode 100644 index c064295d33..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1500.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1501.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1501.png deleted file mode 100644 index 39fc69df6d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1501.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1502.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1502.png deleted file mode 100644 index 62e66cb8e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1502.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1503.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1503.png deleted file mode 100644 index 6cacc965ca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1503.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1504.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1504.png deleted file mode 100644 index cab15fd1ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1504.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1505.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1505.png deleted file mode 100644 index 702140294c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1505.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1506.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1506.png deleted file mode 100644 index 9bfd9783ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1506.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1507.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1507.png deleted file mode 100644 index 81babad276..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1507.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1508.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1508.png deleted file mode 100644 index 19cc71dae3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1508.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1509.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1509.png deleted file mode 100644 index 39d4a652ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1509.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1510.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1510.png deleted file mode 100644 index 886073d540..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1510.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1511.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1511.png deleted file mode 100644 index 19cc71dae3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1511.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1512.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1512.png deleted file mode 100644 index 156980a189..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1512.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1513.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1513.png deleted file mode 100644 index 02467f45ed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1513.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1514.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1514.png deleted file mode 100644 index 16a7906e8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1514.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1515.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1515.png deleted file mode 100644 index 3e624250df..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1515.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1516.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1516.png deleted file mode 100644 index a4990d8147..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1516.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1517.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1517.png deleted file mode 100644 index 875785957a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1517.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1518.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1518.png deleted file mode 100644 index 090b403290..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1518.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1519.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1519.png deleted file mode 100644 index 524c7f1417..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1519.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1520.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1520.png deleted file mode 100644 index ca6ef280d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1520.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1521.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1521.png deleted file mode 100644 index dbdde841da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1521.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1522.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1522.png deleted file mode 100644 index c09d6a5ac3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1522.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1523.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1523.png deleted file mode 100644 index 48adc78c8a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1523.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1524.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1524.png deleted file mode 100644 index 459fbfea13..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1524.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1525.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1525.png deleted file mode 100644 index 832eb61ea9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1525.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1526.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1526.png deleted file mode 100644 index 11ad86f884..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1526.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1527.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1527.png deleted file mode 100644 index 5d44c637ea..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1527.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1528.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1528.png deleted file mode 100644 index f4588ba9e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1528.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1529.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1529.png deleted file mode 100644 index cd5c5264f5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1529.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1530.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1530.png deleted file mode 100644 index 45a092d316..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1530.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1531.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1531.png deleted file mode 100644 index 9a41f29fd6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1531.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1532.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1532.png deleted file mode 100644 index 69ebb7da48..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1532.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1533.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1533.png deleted file mode 100644 index 077cf3fcf6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1533.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1534.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1534.png deleted file mode 100644 index 5f02df2d35..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1534.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1535.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1535.png deleted file mode 100644 index c25414810c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1535.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1536.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1536.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1536.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1537.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1537.png deleted file mode 100644 index 3c295912dc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1537.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1538.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1538.png deleted file mode 100644 index 6666220751..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1538.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1539.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1539.png deleted file mode 100644 index cb6271505a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1539.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1540.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1540.png deleted file mode 100644 index 8997595bde..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1540.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1541.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1541.png deleted file mode 100644 index 16914597e3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1541.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1542.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1542.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1542.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1543.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1543.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1543.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1544.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1544.png deleted file mode 100644 index 7c343a06d5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1544.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1545.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1545.png deleted file mode 100644 index 98e01142c5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1545.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1546.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1546.png deleted file mode 100644 index 51c28729fb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1546.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1547.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1547.png deleted file mode 100644 index 327d695a7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1547.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1548.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1548.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1548.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1549.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1549.png deleted file mode 100644 index 2630221512..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1549.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1550.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1550.png deleted file mode 100644 index 507c0806fe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1550.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1551.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1551.png deleted file mode 100644 index 2810242846..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1551.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1553.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1553.png deleted file mode 100644 index 214ee3016f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1553.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1554.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1554.png deleted file mode 100644 index 971dd9f88e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1554.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1555.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1555.png deleted file mode 100644 index 09ea8d7693..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1555.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1556.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1556.png deleted file mode 100644 index 16a7906e8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1556.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1557.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1557.png deleted file mode 100644 index 16a7906e8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1557.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1562.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1562.png deleted file mode 100644 index bb637b2610..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1562.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1563.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1563.png deleted file mode 100644 index 09ea8d7693..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1563.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1564.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1564.png deleted file mode 100644 index d98a5ba297..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1564.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1565.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1565.png deleted file mode 100644 index 17be530d74..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1565.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1566.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1566.png deleted file mode 100644 index ff99d0c074..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1566.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1567.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1567.png deleted file mode 100644 index 1e277d34dd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1567.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1568.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1568.png deleted file mode 100644 index e78cd1dbd4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1568.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1570.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1570.png deleted file mode 100644 index 9b709e3d5d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1570.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1571.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1571.png deleted file mode 100644 index 9003773bc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1571.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1572.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1572.png deleted file mode 100644 index 991f82fa45..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1572.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1573.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1573.png deleted file mode 100644 index 2752e85abc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1573.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1574.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1574.png deleted file mode 100644 index dbdde841da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1574.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1575.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1575.png deleted file mode 100644 index 327d695a7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1575.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1576.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1576.png deleted file mode 100644 index 0793bb71c6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1576.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1577.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1577.png deleted file mode 100644 index 3029b09af6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1577.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1578.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1578.png deleted file mode 100644 index 6516df658e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1578.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1579.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1579.png deleted file mode 100644 index 19cc71dae3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1579.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1582.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1582.png deleted file mode 100644 index a19314ce64..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1582.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1583.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1583.png deleted file mode 100644 index 78c2d560d1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1583.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1584.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1584.png deleted file mode 100644 index 287ed11378..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1584.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1585.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1585.png deleted file mode 100644 index 871a394161..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1585.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1586.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1586.png deleted file mode 100644 index 88066d87ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1586.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1587.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1587.png deleted file mode 100644 index bee0ccc95d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1587.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1588.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1588.png deleted file mode 100644 index 09ea8d7693..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1588.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1589.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1589.png deleted file mode 100644 index e046dec817..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1589.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1590.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1590.png deleted file mode 100644 index 7305f6a2e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1590.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1591.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1591.png deleted file mode 100644 index 93df181a4b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1591.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1592.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1592.png deleted file mode 100644 index 2ec4453178..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1592.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1593.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1593.png deleted file mode 100644 index df0837a1a2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1593.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1594.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1594.png deleted file mode 100644 index ecf55bba3a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1594.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1595.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1595.png deleted file mode 100644 index 61ae727218..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1595.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1596.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1596.png deleted file mode 100644 index cc1ca2883e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1596.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1597.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1597.png deleted file mode 100644 index dd2a3d5540..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1597.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1598.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1598.png deleted file mode 100644 index a10e4406cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1598.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1599.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1599.png deleted file mode 100644 index 4b75ef2f5b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1599.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1600.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1600.png deleted file mode 100644 index 727fcfc1ab..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1600.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1601.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1601.png deleted file mode 100644 index 5b1c689c40..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1601.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1602.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1602.png deleted file mode 100644 index 7140801fd9..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1602.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1603.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1603.png deleted file mode 100644 index 93c96d81a0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1603.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1604.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1604.png deleted file mode 100644 index be8d1a8792..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1604.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1605.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1605.png deleted file mode 100644 index 4d7789a169..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1605.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1606.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1606.png deleted file mode 100644 index 13214d39fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1606.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1607.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1607.png deleted file mode 100644 index 2e231e89a1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1607.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1608.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1608.png deleted file mode 100644 index 098f4ccf03..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1608.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1609.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1609.png deleted file mode 100644 index dbdde841da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1609.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1610.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1610.png deleted file mode 100644 index 886073d540..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1610.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1611.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1611.png deleted file mode 100644 index b98b6262d4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1611.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1612.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1612.png deleted file mode 100644 index 4d49836318..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1612.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1613.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1613.png deleted file mode 100644 index 0f43e3dbca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1613.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1614.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1614.png deleted file mode 100644 index 13214d39fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1614.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1615.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1615.png deleted file mode 100644 index 6666220751..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1615.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1616.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1616.png deleted file mode 100644 index ac030a7c4d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1616.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1617.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1617.png deleted file mode 100644 index 4d7789a169..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1617.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1618.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1618.png deleted file mode 100644 index a01ebc7165..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1618.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1619.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1619.png deleted file mode 100644 index a96a8a8d70..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1619.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1620.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1620.png deleted file mode 100644 index 7305f6a2e2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1620.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1621.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1621.png deleted file mode 100644 index 7530f8744e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1621.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1622.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1622.png deleted file mode 100644 index beb2d6ca5e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1622.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1623.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1623.png deleted file mode 100644 index d9f5192896..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1623.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1624.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1624.png deleted file mode 100644 index fd6bf2175f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1624.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1625.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1625.png deleted file mode 100644 index e124acb018..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1625.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1626.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1626.png deleted file mode 100644 index e6055a0a4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1626.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1627.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1627.png deleted file mode 100644 index 937f0ed7cb..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1627.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1628.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1628.png deleted file mode 100644 index a9d066bca5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1628.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1629.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1629.png deleted file mode 100644 index 1eb0bc724b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1629.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1630.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1630.png deleted file mode 100644 index 5ac9c1a23b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1630.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1631.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1631.png deleted file mode 100644 index 886073d540..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1631.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1632.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1632.png deleted file mode 100644 index ea2d6e8478..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1632.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1633.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1633.png deleted file mode 100644 index e1e2246642..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1633.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1634.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1634.png deleted file mode 100644 index bc8769793e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1634.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1635.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1635.png deleted file mode 100644 index c7960a5a88..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1635.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1636.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1636.png deleted file mode 100644 index 089684293f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1636.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1637.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1637.png deleted file mode 100644 index 50255ead0e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1637.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1638.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1638.png deleted file mode 100644 index e510e11077..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1638.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1639.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1639.png deleted file mode 100644 index 9003773bc7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1639.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1640.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1640.png deleted file mode 100644 index 6a8beec610..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1640.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1641.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1641.png deleted file mode 100644 index 5ed8f81382..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1641.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1642.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1642.png deleted file mode 100644 index 425f5ff0b3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1642.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1643.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1643.png deleted file mode 100644 index 0ab80eccb1..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1643.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1644.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1644.png deleted file mode 100644 index 30206acf75..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1644.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1645.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1645.png deleted file mode 100644 index ea2d6e8478..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1645.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1646.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1646.png deleted file mode 100644 index 13214d39fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1646.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1647.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1647.png deleted file mode 100644 index 16a7906e8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1647.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1648.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1648.png deleted file mode 100644 index 886073d540..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1648.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1649.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1649.png deleted file mode 100644 index ca227538f0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1649.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1650.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1650.png deleted file mode 100644 index 08dae48f2f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1650.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1651.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1651.png deleted file mode 100644 index 178ccd5f99..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1651.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1652.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1652.png deleted file mode 100644 index c3256be7ae..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1652.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1653.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1653.png deleted file mode 100644 index d4159e317e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1653.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1654.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1654.png deleted file mode 100644 index 3b1affc6ee..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1654.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1655.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1655.png deleted file mode 100644 index 93aacb65b7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1655.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1656.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1656.png deleted file mode 100644 index 7dfceaba11..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1656.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1657.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1657.png deleted file mode 100644 index dbdde841da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1657.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1658.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1658.png deleted file mode 100644 index 3a09b38b50..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1658.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1659.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1659.png deleted file mode 100644 index b8050d6bcf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1659.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1660.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1660.png deleted file mode 100644 index 3af6c64fd5..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1660.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1661.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1661.png deleted file mode 100644 index d8a7e27eda..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1661.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1662.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1662.png deleted file mode 100644 index 53340a198c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1662.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1663.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1663.png deleted file mode 100644 index 2ae94844e4..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1663.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1664.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1664.png deleted file mode 100644 index 8f472a4d9c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1664.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1665.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1665.png deleted file mode 100644 index 1132b444aa..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1665.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1666.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1666.png deleted file mode 100644 index 777f844589..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1666.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1667.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1667.png deleted file mode 100644 index 7f6f1fafca..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1667.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1668.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1668.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1668.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1670.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1670.png deleted file mode 100644 index bd510a17bf..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1670.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1672.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1672.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1672.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1673.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1673.png deleted file mode 100644 index 97da846b61..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1673.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1674.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1674.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1674.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1675.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1675.png deleted file mode 100644 index 13214d39fc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1675.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1676.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1676.png deleted file mode 100644 index 5be119a43b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1676.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1677.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1677.png deleted file mode 100644 index 83fcd7aa37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1677.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1678.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1678.png deleted file mode 100644 index 8f45c4da7e..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1678.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1679.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1679.png deleted file mode 100644 index 06283e8efc..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1679.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1680.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1680.png deleted file mode 100644 index 9dc0a16507..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1680.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1681.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1681.png deleted file mode 100644 index f6408983e6..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1681.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1682.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1682.png deleted file mode 100644 index f45f1db7e7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1682.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1683.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1683.png deleted file mode 100644 index b9764cfca3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1683.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1684.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1684.png deleted file mode 100644 index 9bdab9e7c0..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1684.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1685.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1685.png deleted file mode 100644 index 5bd50e454b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1685.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1686.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1686.png deleted file mode 100644 index dbdde841da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1686.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1687.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1687.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1687.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1688.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1688.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1688.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1689.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1689.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1689.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1690.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1690.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1690.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1691.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1691.png deleted file mode 100644 index b05e2d249c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1691.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1692.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1692.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1692.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1693.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1693.png deleted file mode 100644 index d4e298d209..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1693.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1694.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1694.png deleted file mode 100644 index 90f4c6762c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1694.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1695.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1695.png deleted file mode 100644 index 7c25570fbe..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1695.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1696.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1696.png deleted file mode 100644 index 90cf8ffc10..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1696.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1697.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1697.png deleted file mode 100644 index 3b16120835..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1697.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1698.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1698.png deleted file mode 100644 index dbdde841da..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1698.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1699.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1699.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1699.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1700.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1700.png deleted file mode 100644 index d1c9564208..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1700.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1701.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1701.png deleted file mode 100644 index 4de3420ab2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1701.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1702.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1702.png deleted file mode 100644 index 16d465674d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1702.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1703.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1703.png deleted file mode 100644 index 47fc536e09..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1703.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1704.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1704.png deleted file mode 100644 index 77df6222fd..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1704.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1705.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1705.png deleted file mode 100644 index f531222808..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1705.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1706.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1706.png deleted file mode 100644 index 886073d540..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1706.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1707.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1707.png deleted file mode 100644 index 2634599f3b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1707.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1708.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1708.png deleted file mode 100644 index cab15fd1ad..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1708.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1709.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1709.png deleted file mode 100644 index c592fef34b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1709.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1710.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1710.png deleted file mode 100644 index 7e513f4ade..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1710.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1711.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1711.png deleted file mode 100644 index 3eeccb8aed..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1711.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1712.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1712.png deleted file mode 100644 index 73f9d92d37..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1712.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1713.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1713.png deleted file mode 100644 index 3befab8b8f..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1713.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1714.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1714.png deleted file mode 100644 index bf295ff109..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1714.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1715.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1715.png deleted file mode 100644 index 4e5a2c1c20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1715.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1716.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1716.png deleted file mode 100644 index 3b474dd185..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1716.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1717.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1717.png deleted file mode 100644 index a2808f2b2c..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1717.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1718.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1718.png deleted file mode 100644 index 502940bb44..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1718.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1719.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1719.png deleted file mode 100644 index b99aa62102..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1719.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1720.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1720.png deleted file mode 100644 index b99aa62102..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1720.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1721.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1721.png deleted file mode 100644 index 0bc1eaf92d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1721.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1722.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1722.png deleted file mode 100644 index 6735e47135..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1722.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1723.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1723.png deleted file mode 100644 index 2b9159b87d..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1723.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1724.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1724.png deleted file mode 100644 index 6a21f596d7..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1724.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1725.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1725.png deleted file mode 100644 index cf0b599c20..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1725.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1726.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1726.png deleted file mode 100644 index 9577bf83ac..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1726.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1727.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1727.png deleted file mode 100644 index c7bb13bc9a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1727.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1728.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1728.png deleted file mode 100644 index 31c8357a4a..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1728.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1729.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1729.png deleted file mode 100644 index 8c979f4773..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1729.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1730.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1730.png deleted file mode 100644 index f867a24205..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1730.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1731.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1731.png deleted file mode 100644 index 02b64141d3..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1731.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1732.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1732.png deleted file mode 100644 index 8f8ca39a68..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1732.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1733.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1733.png deleted file mode 100644 index 266225bf58..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1733.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1734.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1734.png deleted file mode 100644 index 6534a82450..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1734.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1735.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1735.png deleted file mode 100644 index 494361be68..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1735.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1740.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1740.png deleted file mode 100644 index 8f30ab109b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1740.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1741.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1741.png deleted file mode 100644 index 35e0b1331b..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1741.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1742.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1742.png deleted file mode 100644 index b3804563d8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1742.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1743.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1743.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1743.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1744.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1744.png deleted file mode 100644 index 69bf965586..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1744.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1745.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1745.png deleted file mode 100644 index eecf043fc8..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1745.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tGregToolPartToughRod/1746.png b/front/public/images/large/TGregworks/tGregToolPartToughRod/1746.png deleted file mode 100644 index 37ea0ce9f2..0000000000 Binary files a/front/public/images/large/TGregworks/tGregToolPartToughRod/1746.png and /dev/null differ diff --git a/front/public/images/large/TGregworks/tgregworks.shardcast/0.png b/front/public/images/large/TGregworks/tgregworks.shardcast/0.png deleted file mode 100644 index a92b035dae..0000000000 Binary files a/front/public/images/large/TGregworks/tgregworks.shardcast/0.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/Dynamo/0.png b/front/public/images/large/TMechworks/Dynamo/0.png deleted file mode 100644 index 2c0b35478b..0000000000 Binary files a/front/public/images/large/TMechworks/Dynamo/0.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/LengthWire/0.png b/front/public/images/large/TMechworks/LengthWire/0.png deleted file mode 100644 index a89570f10b..0000000000 Binary files a/front/public/images/large/TMechworks/LengthWire/0.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/MeshFilter/0.png b/front/public/images/large/TMechworks/MeshFilter/0.png deleted file mode 100644 index 3b92951c35..0000000000 Binary files a/front/public/images/large/TMechworks/MeshFilter/0.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/MeshFilter/1.png b/front/public/images/large/TMechworks/MeshFilter/1.png deleted file mode 100644 index 2e1cfddf53..0000000000 Binary files a/front/public/images/large/TMechworks/MeshFilter/1.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/MeshFilter/2.png b/front/public/images/large/TMechworks/MeshFilter/2.png deleted file mode 100644 index 175ff9d77a..0000000000 Binary files a/front/public/images/large/TMechworks/MeshFilter/2.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/MeshFilter/3.png b/front/public/images/large/TMechworks/MeshFilter/3.png deleted file mode 100644 index 068abc65fc..0000000000 Binary files a/front/public/images/large/TMechworks/MeshFilter/3.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/MeshFilter/4.png b/front/public/images/large/TMechworks/MeshFilter/4.png deleted file mode 100644 index 98339d54ea..0000000000 Binary files a/front/public/images/large/TMechworks/MeshFilter/4.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/RedstoneMachine/0.png b/front/public/images/large/TMechworks/RedstoneMachine/0.png deleted file mode 100644 index 9b631eee9d..0000000000 Binary files a/front/public/images/large/TMechworks/RedstoneMachine/0.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/RedstoneMachine/1.png b/front/public/images/large/TMechworks/RedstoneMachine/1.png deleted file mode 100644 index 3d16b3944d..0000000000 Binary files a/front/public/images/large/TMechworks/RedstoneMachine/1.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/RedstoneMachine/2.png b/front/public/images/large/TMechworks/RedstoneMachine/2.png deleted file mode 100644 index 77d5501fde..0000000000 Binary files a/front/public/images/large/TMechworks/RedstoneMachine/2.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/RedstoneMachine/3.png b/front/public/images/large/TMechworks/RedstoneMachine/3.png deleted file mode 100644 index 22f2731881..0000000000 Binary files a/front/public/images/large/TMechworks/RedstoneMachine/3.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/SignalBus/0.png b/front/public/images/large/TMechworks/SignalBus/0.png deleted file mode 100644 index 19c537a60e..0000000000 Binary files a/front/public/images/large/TMechworks/SignalBus/0.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/SignalTerminal/0.png b/front/public/images/large/TMechworks/SignalTerminal/0.png deleted file mode 100644 index 3e3d051f70..0000000000 Binary files a/front/public/images/large/TMechworks/SignalTerminal/0.png and /dev/null differ diff --git a/front/public/images/large/TMechworks/SpoolWire/0.png b/front/public/images/large/TMechworks/SpoolWire/0.png deleted file mode 100644 index 722fc4dbaf..0000000000 Binary files a/front/public/images/large/TMechworks/SpoolWire/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/BlockShadowOre/0.png b/front/public/images/large/TaintedMagic/BlockShadowOre/0.png deleted file mode 100644 index 4e3c21f2a7..0000000000 Binary files a/front/public/images/large/TaintedMagic/BlockShadowOre/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/BlockShadowmetal/0.png b/front/public/images/large/TaintedMagic/BlockShadowmetal/0.png deleted file mode 100644 index 0cf4a54103..0000000000 Binary files a/front/public/images/large/TaintedMagic/BlockShadowmetal/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/BlockWarpwoodLeaves/0.png b/front/public/images/large/TaintedMagic/BlockWarpwoodLeaves/0.png deleted file mode 100644 index 1faf5adc3c..0000000000 Binary files a/front/public/images/large/TaintedMagic/BlockWarpwoodLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/BlockWarpwoodLog/0.png b/front/public/images/large/TaintedMagic/BlockWarpwoodLog/0.png deleted file mode 100644 index d759657c3f..0000000000 Binary files a/front/public/images/large/TaintedMagic/BlockWarpwoodLog/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/BlockWarpwoodPlanks/0.png b/front/public/images/large/TaintedMagic/BlockWarpwoodPlanks/0.png deleted file mode 100644 index 45e53b282b..0000000000 Binary files a/front/public/images/large/TaintedMagic/BlockWarpwoodPlanks/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/BlockWarpwoodSapling/0.png b/front/public/images/large/TaintedMagic/BlockWarpwoodSapling/0.png deleted file mode 100644 index aea8e50ed7..0000000000 Binary files a/front/public/images/large/TaintedMagic/BlockWarpwoodSapling/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemCrystalDagger/0.png b/front/public/images/large/TaintedMagic/ItemCrystalDagger/0.png deleted file mode 100644 index 30d5dee743..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemCrystalDagger/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemFocusEldritch/0.png b/front/public/images/large/TaintedMagic/ItemFocusEldritch/0.png deleted file mode 100644 index 50e9c06769..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemFocusEldritch/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemFocusMageMace/0.png b/front/public/images/large/TaintedMagic/ItemFocusMageMace/0.png deleted file mode 100644 index 9c20bcdd75..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemFocusMageMace/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemFocusMeteorology/0.png b/front/public/images/large/TaintedMagic/ItemFocusMeteorology/0.png deleted file mode 100644 index 6b0fae17f5..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemFocusMeteorology/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemFocusTaint/0.png b/front/public/images/large/TaintedMagic/ItemFocusTaint/0.png deleted file mode 100644 index 56f4b9155e..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemFocusTaint/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemFocusTaintedBlast/0.png b/front/public/images/large/TaintedMagic/ItemFocusTaintedBlast/0.png deleted file mode 100644 index 89a8ab1a11..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemFocusTaintedBlast/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemFocusTime/0.png b/front/public/images/large/TaintedMagic/ItemFocusTime/0.png deleted file mode 100644 index 60f641f05c..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemFocusTime/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemFocusVisShard/0.png b/front/public/images/large/TaintedMagic/ItemFocusVisShard/0.png deleted file mode 100644 index 6d208ca7c6..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemFocusVisShard/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemKatana/0.png b/front/public/images/large/TaintedMagic/ItemKatana/0.png deleted file mode 100644 index e6c6424caf..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemKatana/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemKatana/1.png b/front/public/images/large/TaintedMagic/ItemKatana/1.png deleted file mode 100644 index 2b3024b0b7..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemKatana/1.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemKatana/2.png b/front/public/images/large/TaintedMagic/ItemKatana/2.png deleted file mode 100644 index d23edbdce3..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemKatana/2.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMagicFunguar/0.png b/front/public/images/large/TaintedMagic/ItemMagicFunguar/0.png deleted file mode 100644 index 9621ae6cea..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMagicFunguar/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/0.png b/front/public/images/large/TaintedMagic/ItemMaterial/0.png deleted file mode 100644 index 2396ef93ae..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/1.png b/front/public/images/large/TaintedMagic/ItemMaterial/1.png deleted file mode 100644 index 4bdfd7bda5..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/1.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/2.png b/front/public/images/large/TaintedMagic/ItemMaterial/2.png deleted file mode 100644 index 60c8b6ff35..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/2.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/3.png b/front/public/images/large/TaintedMagic/ItemMaterial/3.png deleted file mode 100644 index a7c0b59579..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/3.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/4.png b/front/public/images/large/TaintedMagic/ItemMaterial/4.png deleted file mode 100644 index 1b066b49c1..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/4.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/5.png b/front/public/images/large/TaintedMagic/ItemMaterial/5.png deleted file mode 100644 index cf49157f1f..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/5.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/6.png b/front/public/images/large/TaintedMagic/ItemMaterial/6.png deleted file mode 100644 index e675e9de5c..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/6.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/7.png b/front/public/images/large/TaintedMagic/ItemMaterial/7.png deleted file mode 100644 index 066b15682e..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/7.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemMaterial/8.png b/front/public/images/large/TaintedMagic/ItemMaterial/8.png deleted file mode 100644 index ad9625a3a7..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemMaterial/8.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemPrimordialEdge/0.png b/front/public/images/large/TaintedMagic/ItemPrimordialEdge/0.png deleted file mode 100644 index 488eaf3122..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemPrimordialEdge/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowFortressChestplate/0.png b/front/public/images/large/TaintedMagic/ItemShadowFortressChestplate/0.png deleted file mode 100644 index b68995ca20..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowFortressChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowFortressHelmet/0.png b/front/public/images/large/TaintedMagic/ItemShadowFortressHelmet/0.png deleted file mode 100644 index 586f1caaf3..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowFortressHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowFortressLeggings/0.png b/front/public/images/large/TaintedMagic/ItemShadowFortressLeggings/0.png deleted file mode 100644 index 22bbe2980b..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowFortressLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowmetalAxe/0.png b/front/public/images/large/TaintedMagic/ItemShadowmetalAxe/0.png deleted file mode 100644 index a9bd3b6fe7..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowmetalAxe/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowmetalHoe/0.png b/front/public/images/large/TaintedMagic/ItemShadowmetalHoe/0.png deleted file mode 100644 index 95c001d232..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowmetalHoe/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowmetalPick/0.png b/front/public/images/large/TaintedMagic/ItemShadowmetalPick/0.png deleted file mode 100644 index 6e82088471..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowmetalPick/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowmetalSpade/0.png b/front/public/images/large/TaintedMagic/ItemShadowmetalSpade/0.png deleted file mode 100644 index 0020afa0f9..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowmetalSpade/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemShadowmetalSword/0.png b/front/public/images/large/TaintedMagic/ItemShadowmetalSword/0.png deleted file mode 100644 index 971cc71e96..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemShadowmetalSword/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemThaumicDisassembler/0.png b/front/public/images/large/TaintedMagic/ItemThaumicDisassembler/0.png deleted file mode 100644 index 6eb931c96c..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemThaumicDisassembler/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemVoidFortressChestplate/0.png b/front/public/images/large/TaintedMagic/ItemVoidFortressChestplate/0.png deleted file mode 100644 index 0e19cbc0c5..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemVoidFortressChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemVoidFortressHelmet/0.png b/front/public/images/large/TaintedMagic/ItemVoidFortressHelmet/0.png deleted file mode 100644 index 396839d493..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemVoidFortressHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemVoidFortressLeggings/0.png b/front/public/images/large/TaintedMagic/ItemVoidFortressLeggings/0.png deleted file mode 100644 index 880ef4e8b4..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemVoidFortressLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemVoidmetalGoggles/0.png b/front/public/images/large/TaintedMagic/ItemVoidmetalGoggles/0.png deleted file mode 100644 index 9653efb2c9..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemVoidmetalGoggles/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemVoidsentBlood/0.png b/front/public/images/large/TaintedMagic/ItemVoidsentBlood/0.png deleted file mode 100644 index de7eccbfc9..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemVoidsentBlood/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemVoidwalkerBoots/0.png b/front/public/images/large/TaintedMagic/ItemVoidwalkerBoots/0.png deleted file mode 100644 index 6a52b053bf..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemVoidwalkerBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemVoidwalkerSash/0.png b/front/public/images/large/TaintedMagic/ItemVoidwalkerSash/0.png deleted file mode 100644 index df32121cb4..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemVoidwalkerSash/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemWandCap/0.png b/front/public/images/large/TaintedMagic/ItemWandCap/0.png deleted file mode 100644 index 29c8fb8b16..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemWandCap/1.png b/front/public/images/large/TaintedMagic/ItemWandCap/1.png deleted file mode 100644 index 78f1845227..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemWandCap/1.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemWandCap/2.png b/front/public/images/large/TaintedMagic/ItemWandCap/2.png deleted file mode 100644 index 51346c42ae..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemWandCap/2.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemWandCap/3.png b/front/public/images/large/TaintedMagic/ItemWandCap/3.png deleted file mode 100644 index fad085b638..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemWandCap/3.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemWandRod/0.png b/front/public/images/large/TaintedMagic/ItemWandRod/0.png deleted file mode 100644 index 35da225d06..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemWandRod/0.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemWandRod/1.png b/front/public/images/large/TaintedMagic/ItemWandRod/1.png deleted file mode 100644 index 2b84871b14..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemWandRod/1.png and /dev/null differ diff --git a/front/public/images/large/TaintedMagic/ItemWarpedGoggles/0.png b/front/public/images/large/TaintedMagic/ItemWarpedGoggles/0.png deleted file mode 100644 index 0a6f5af37a..0000000000 Binary files a/front/public/images/large/TaintedMagic/ItemWarpedGoggles/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ArcaneDoorKey/0.png b/front/public/images/large/Thaumcraft/ArcaneDoorKey/0.png deleted file mode 100644 index f6a3429c96..0000000000 Binary files a/front/public/images/large/Thaumcraft/ArcaneDoorKey/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ArcaneDoorKey/1.png b/front/public/images/large/Thaumcraft/ArcaneDoorKey/1.png deleted file mode 100644 index 13efb23094..0000000000 Binary files a/front/public/images/large/Thaumcraft/ArcaneDoorKey/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/BlockJarFilledItem/0.png b/front/public/images/large/Thaumcraft/BlockJarFilledItem/0.png deleted file mode 100644 index c471ba110c..0000000000 Binary files a/front/public/images/large/Thaumcraft/BlockJarFilledItem/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/BlockJarNodeItem/0.png b/front/public/images/large/Thaumcraft/BlockJarNodeItem/0.png deleted file mode 100644 index c471ba110c..0000000000 Binary files a/front/public/images/large/Thaumcraft/BlockJarNodeItem/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/BootsTraveller/0.png b/front/public/images/large/Thaumcraft/BootsTraveller/0.png deleted file mode 100644 index fe232e3b2b..0000000000 Binary files a/front/public/images/large/Thaumcraft/BootsTraveller/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusExcavation/0.png b/front/public/images/large/Thaumcraft/FocusExcavation/0.png deleted file mode 100644 index 846bf2fdb4..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusExcavation/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusFire/0.png b/front/public/images/large/Thaumcraft/FocusFire/0.png deleted file mode 100644 index 4a188c5a4e..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusFire/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusFrost/0.png b/front/public/images/large/Thaumcraft/FocusFrost/0.png deleted file mode 100644 index 95ee0670d9..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusFrost/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusHellbat/0.png b/front/public/images/large/Thaumcraft/FocusHellbat/0.png deleted file mode 100644 index c5d5d414bf..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusHellbat/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusPech/0.png b/front/public/images/large/Thaumcraft/FocusPech/0.png deleted file mode 100644 index abf8b33ba6..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusPech/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusPortableHole/0.png b/front/public/images/large/Thaumcraft/FocusPortableHole/0.png deleted file mode 100644 index 1c85e4bdc0..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusPortableHole/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusPouch/0.png b/front/public/images/large/Thaumcraft/FocusPouch/0.png deleted file mode 100644 index b814b77f9d..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusPouch/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusPrimal/0.png b/front/public/images/large/Thaumcraft/FocusPrimal/0.png deleted file mode 100644 index 708dbec2a1..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusPrimal/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusShock/0.png b/front/public/images/large/Thaumcraft/FocusShock/0.png deleted file mode 100644 index 5feb9ec807..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusShock/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusTrade/0.png b/front/public/images/large/Thaumcraft/FocusTrade/0.png deleted file mode 100644 index 7acdd1d218..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusTrade/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/FocusWarding/0.png b/front/public/images/large/Thaumcraft/FocusWarding/0.png deleted file mode 100644 index 0b6dc83e39..0000000000 Binary files a/front/public/images/large/Thaumcraft/FocusWarding/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/GolemBell/0.png b/front/public/images/large/Thaumcraft/GolemBell/0.png deleted file mode 100644 index 352a1aea53..0000000000 Binary files a/front/public/images/large/Thaumcraft/GolemBell/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/HandMirror/0.png b/front/public/images/large/Thaumcraft/HandMirror/0.png deleted file mode 100644 index ad96d0ad57..0000000000 Binary files a/front/public/images/large/Thaumcraft/HandMirror/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/HoverHarness/0.png b/front/public/images/large/Thaumcraft/HoverHarness/0.png deleted file mode 100644 index ff555a06ef..0000000000 Binary files a/front/public/images/large/Thaumcraft/HoverHarness/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemAmuletRunic/0.png b/front/public/images/large/Thaumcraft/ItemAmuletRunic/0.png deleted file mode 100644 index e7ae2b1adf..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemAmuletRunic/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemAmuletRunic/1.png b/front/public/images/large/Thaumcraft/ItemAmuletRunic/1.png deleted file mode 100644 index 4c3009f37c..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemAmuletRunic/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemAmuletVis/0.png b/front/public/images/large/Thaumcraft/ItemAmuletVis/0.png deleted file mode 100644 index b8f509214f..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemAmuletVis/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemAmuletVis/1.png b/front/public/images/large/Thaumcraft/ItemAmuletVis/1.png deleted file mode 100644 index da6dd735d5..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemAmuletVis/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemArcaneDoor/0.png b/front/public/images/large/Thaumcraft/ItemArcaneDoor/0.png deleted file mode 100644 index a44a214d2e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemArcaneDoor/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemAxeElemental/0.png b/front/public/images/large/Thaumcraft/ItemAxeElemental/0.png deleted file mode 100644 index ac1c808d1b..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemAxeElemental/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemAxeThaumium/0.png b/front/public/images/large/Thaumcraft/ItemAxeThaumium/0.png deleted file mode 100644 index a9febf259b..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemAxeThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemAxeVoid/0.png b/front/public/images/large/Thaumcraft/ItemAxeVoid/0.png deleted file mode 100644 index 7311d51ba0..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemAxeVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBathSalts/0.png b/front/public/images/large/Thaumcraft/ItemBathSalts/0.png deleted file mode 100644 index e5a14d422e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBathSalts/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBaubleBlanks/0.png b/front/public/images/large/Thaumcraft/ItemBaubleBlanks/0.png deleted file mode 100644 index 6fc7930c89..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBaubleBlanks/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBaubleBlanks/1.png b/front/public/images/large/Thaumcraft/ItemBaubleBlanks/1.png deleted file mode 100644 index ad00a60079..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBaubleBlanks/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBaubleBlanks/2.png b/front/public/images/large/Thaumcraft/ItemBaubleBlanks/2.png deleted file mode 100644 index df2542b243..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBaubleBlanks/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBootsCultist/0.png b/front/public/images/large/Thaumcraft/ItemBootsCultist/0.png deleted file mode 100644 index ce949b864a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBootsCultist/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBootsRobe/0.png b/front/public/images/large/Thaumcraft/ItemBootsRobe/0.png deleted file mode 100644 index 1c9b477000..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBootsRobe/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBootsThaumium/0.png b/front/public/images/large/Thaumcraft/ItemBootsThaumium/0.png deleted file mode 100644 index 5e1aa91090..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBootsThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBootsVoid/0.png b/front/public/images/large/Thaumcraft/ItemBootsVoid/0.png deleted file mode 100644 index 6fea9eb9cf..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBootsVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBottleTaint/0.png b/front/public/images/large/Thaumcraft/ItemBottleTaint/0.png deleted file mode 100644 index f153ae456f..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBottleTaint/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBowBone/0.png b/front/public/images/large/Thaumcraft/ItemBowBone/0.png deleted file mode 100644 index 3cfeccbc2f..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBowBone/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBucketDeath/0.png b/front/public/images/large/Thaumcraft/ItemBucketDeath/0.png deleted file mode 100644 index 4a6d9a2c59..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBucketDeath/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemBucketPure/0.png b/front/public/images/large/Thaumcraft/ItemBucketPure/0.png deleted file mode 100644 index c86c2e4b07..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemBucketPure/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateCultistLeaderPlate/0.png b/front/public/images/large/Thaumcraft/ItemChestplateCultistLeaderPlate/0.png deleted file mode 100644 index ce6c3dbff8..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateCultistLeaderPlate/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateCultistPlate/0.png b/front/public/images/large/Thaumcraft/ItemChestplateCultistPlate/0.png deleted file mode 100644 index d6eaa70c15..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateCultistPlate/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateCultistRobe/0.png b/front/public/images/large/Thaumcraft/ItemChestplateCultistRobe/0.png deleted file mode 100644 index 16affaf7d2..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateCultistRobe/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateFortress/0.png b/front/public/images/large/Thaumcraft/ItemChestplateFortress/0.png deleted file mode 100644 index 4abc7b05b0..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateFortress/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateRobe/0.png b/front/public/images/large/Thaumcraft/ItemChestplateRobe/0.png deleted file mode 100644 index 9e3e340cd7..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateRobe/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateThaumium/0.png b/front/public/images/large/Thaumcraft/ItemChestplateThaumium/0.png deleted file mode 100644 index 34ce9a6286..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateVoid/0.png b/front/public/images/large/Thaumcraft/ItemChestplateVoid/0.png deleted file mode 100644 index 1dfc6f150c..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemChestplateVoidFortress/0.png b/front/public/images/large/Thaumcraft/ItemChestplateVoidFortress/0.png deleted file mode 100644 index f24db26819..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemChestplateVoidFortress/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemCompassStone/0.png b/front/public/images/large/Thaumcraft/ItemCompassStone/0.png deleted file mode 100644 index 5ac7fbf57a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemCompassStone/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemCrystalEssence/0.png b/front/public/images/large/Thaumcraft/ItemCrystalEssence/0.png deleted file mode 100644 index e5a4e21bcd..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemCrystalEssence/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemEldritchObject/0.png b/front/public/images/large/Thaumcraft/ItemEldritchObject/0.png deleted file mode 100644 index dd76b2826a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemEldritchObject/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemEldritchObject/1.png b/front/public/images/large/Thaumcraft/ItemEldritchObject/1.png deleted file mode 100644 index 4dc7650c6e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemEldritchObject/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemEldritchObject/2.png b/front/public/images/large/Thaumcraft/ItemEldritchObject/2.png deleted file mode 100644 index d437cdb058..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemEldritchObject/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemEldritchObject/3.png b/front/public/images/large/Thaumcraft/ItemEldritchObject/3.png deleted file mode 100644 index f07b6bea3e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemEldritchObject/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemEldritchObject/4.png b/front/public/images/large/Thaumcraft/ItemEldritchObject/4.png deleted file mode 100644 index 4e73d2159d..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemEldritchObject/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemEssence/0.png b/front/public/images/large/Thaumcraft/ItemEssence/0.png deleted file mode 100644 index b4c3bb597e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemEssence/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemEssence/1.png b/front/public/images/large/Thaumcraft/ItemEssence/1.png deleted file mode 100644 index 082788d642..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemEssence/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/0.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/0.png deleted file mode 100644 index dd216d00fe..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/1.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/1.png deleted file mode 100644 index 1f2445c2a3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/10.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/10.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/10.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/11.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/11.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/11.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/12.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/12.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/12.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/13.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/13.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/13.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/14.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/14.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/15.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/15.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/15.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/2.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/2.png deleted file mode 100644 index 197440ab21..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/3.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/3.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/4.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/4.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/5.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/5.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/6.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/6.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/7.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/7.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/8.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/8.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemFakeLootbag/9.png b/front/public/images/large/Thaumcraft/ItemFakeLootbag/9.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemFakeLootbag/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGirdleHover/0.png b/front/public/images/large/Thaumcraft/ItemGirdleHover/0.png deleted file mode 100644 index ca77174d95..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGirdleHover/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGirdleRunic/0.png b/front/public/images/large/Thaumcraft/ItemGirdleRunic/0.png deleted file mode 100644 index c46896ad4c..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGirdleRunic/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGirdleRunic/1.png b/front/public/images/large/Thaumcraft/ItemGirdleRunic/1.png deleted file mode 100644 index e71f7d64ca..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGirdleRunic/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGoggles/0.png b/front/public/images/large/Thaumcraft/ItemGoggles/0.png deleted file mode 100644 index 9510cbd7b0..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGoggles/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/0.png b/front/public/images/large/Thaumcraft/ItemGolemCore/0.png deleted file mode 100644 index 09ba9a73bf..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/1.png b/front/public/images/large/Thaumcraft/ItemGolemCore/1.png deleted file mode 100644 index 77982bfb6c..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/10.png b/front/public/images/large/Thaumcraft/ItemGolemCore/10.png deleted file mode 100644 index dfbc6cfd34..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/10.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/100.png b/front/public/images/large/Thaumcraft/ItemGolemCore/100.png deleted file mode 100644 index 03dfbbc55a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/100.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/11.png b/front/public/images/large/Thaumcraft/ItemGolemCore/11.png deleted file mode 100644 index e77ce40428..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/11.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/2.png b/front/public/images/large/Thaumcraft/ItemGolemCore/2.png deleted file mode 100644 index f979939be5..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/3.png b/front/public/images/large/Thaumcraft/ItemGolemCore/3.png deleted file mode 100644 index 272edd6342..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/4.png b/front/public/images/large/Thaumcraft/ItemGolemCore/4.png deleted file mode 100644 index 00cd74fe4d..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/5.png b/front/public/images/large/Thaumcraft/ItemGolemCore/5.png deleted file mode 100644 index 16bcefd0da..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/6.png b/front/public/images/large/Thaumcraft/ItemGolemCore/6.png deleted file mode 100644 index 3d7893ac97..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/7.png b/front/public/images/large/Thaumcraft/ItemGolemCore/7.png deleted file mode 100644 index 0e31b242e3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/8.png b/front/public/images/large/Thaumcraft/ItemGolemCore/8.png deleted file mode 100644 index 8e916b5801..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemCore/9.png b/front/public/images/large/Thaumcraft/ItemGolemCore/9.png deleted file mode 100644 index 8f8d2ff819..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemCore/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/0.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/0.png deleted file mode 100644 index edd0edab71..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/1.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/1.png deleted file mode 100644 index ad1cffe71a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/2.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/2.png deleted file mode 100644 index ff6d3a65cf..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/3.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/3.png deleted file mode 100644 index b5826f9bc7..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/4.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/4.png deleted file mode 100644 index af445d48c5..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/5.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/5.png deleted file mode 100644 index b170a0bad1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/6.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/6.png deleted file mode 100644 index e40fcdbe37..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemDecoration/7.png b/front/public/images/large/Thaumcraft/ItemGolemDecoration/7.png deleted file mode 100644 index 3151c4b64d..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemDecoration/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/0.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/0.png deleted file mode 100644 index e9e9d8fa8a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/1.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/1.png deleted file mode 100644 index 84c70a23d9..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/2.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/2.png deleted file mode 100644 index 1f2171395a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/3.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/3.png deleted file mode 100644 index 1e4dc7f7f0..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/4.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/4.png deleted file mode 100644 index 0742f26e21..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/5.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/5.png deleted file mode 100644 index 917ef98eb2..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/6.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/6.png deleted file mode 100644 index 6c1e8b6a94..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemPlacer/7.png b/front/public/images/large/Thaumcraft/ItemGolemPlacer/7.png deleted file mode 100644 index 35feea992f..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemPlacer/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/0.png b/front/public/images/large/Thaumcraft/ItemGolemUpgrade/0.png deleted file mode 100644 index cd154d38b3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/1.png b/front/public/images/large/Thaumcraft/ItemGolemUpgrade/1.png deleted file mode 100644 index 0b0f403352..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/2.png b/front/public/images/large/Thaumcraft/ItemGolemUpgrade/2.png deleted file mode 100644 index a886818257..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/3.png b/front/public/images/large/Thaumcraft/ItemGolemUpgrade/3.png deleted file mode 100644 index 54586ebfc5..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/4.png b/front/public/images/large/Thaumcraft/ItemGolemUpgrade/4.png deleted file mode 100644 index 0288a6f097..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/5.png b/front/public/images/large/Thaumcraft/ItemGolemUpgrade/5.png deleted file mode 100644 index f53d23a713..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemGolemUpgrade/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHelmetCultistLeaderPlate/0.png b/front/public/images/large/Thaumcraft/ItemHelmetCultistLeaderPlate/0.png deleted file mode 100644 index 18eab33723..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHelmetCultistLeaderPlate/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHelmetCultistPlate/0.png b/front/public/images/large/Thaumcraft/ItemHelmetCultistPlate/0.png deleted file mode 100644 index feafd91724..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHelmetCultistPlate/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHelmetCultistRobe/0.png b/front/public/images/large/Thaumcraft/ItemHelmetCultistRobe/0.png deleted file mode 100644 index b4bfe42088..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHelmetCultistRobe/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHelmetFortress/0.png b/front/public/images/large/Thaumcraft/ItemHelmetFortress/0.png deleted file mode 100644 index ce43ed536b..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHelmetFortress/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHelmetThaumium/0.png b/front/public/images/large/Thaumcraft/ItemHelmetThaumium/0.png deleted file mode 100644 index 91ec9a6ada..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHelmetThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHelmetVoid/0.png b/front/public/images/large/Thaumcraft/ItemHelmetVoid/0.png deleted file mode 100644 index 72d4149d30..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHelmetVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHelmetVoidFortress/0.png b/front/public/images/large/Thaumcraft/ItemHelmetVoidFortress/0.png deleted file mode 100644 index 5f60fb188c..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHelmetVoidFortress/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHoeElemental/0.png b/front/public/images/large/Thaumcraft/ItemHoeElemental/0.png deleted file mode 100644 index 89fbde2424..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHoeElemental/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHoeThaumium/0.png b/front/public/images/large/Thaumcraft/ItemHoeThaumium/0.png deleted file mode 100644 index 36f2f4ebd8..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHoeThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemHoeVoid/0.png b/front/public/images/large/Thaumcraft/ItemHoeVoid/0.png deleted file mode 100644 index 6e28d7d899..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemHoeVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemInkwell/0.png b/front/public/images/large/Thaumcraft/ItemInkwell/0.png deleted file mode 100644 index a12f069ca5..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemInkwell/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsCultistLeaderPlate/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsCultistLeaderPlate/0.png deleted file mode 100644 index 6ca39eadb4..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsCultistLeaderPlate/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsCultistPlate/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsCultistPlate/0.png deleted file mode 100644 index 8dd2d6834a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsCultistPlate/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsCultistRobe/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsCultistRobe/0.png deleted file mode 100644 index cb336f67a0..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsCultistRobe/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsFortress/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsFortress/0.png deleted file mode 100644 index a2b46ffeea..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsFortress/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsRobe/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsRobe/0.png deleted file mode 100644 index 3fe07eab9a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsRobe/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsThaumium/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsThaumium/0.png deleted file mode 100644 index 031ad976c8..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsVoid/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsVoid/0.png deleted file mode 100644 index aeede01c42..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLeggingsVoidFortress/0.png b/front/public/images/large/Thaumcraft/ItemLeggingsVoidFortress/0.png deleted file mode 100644 index 24ed058107..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLeggingsVoidFortress/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLootBag/0.png b/front/public/images/large/Thaumcraft/ItemLootBag/0.png deleted file mode 100644 index dd216d00fe..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLootBag/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLootBag/1.png b/front/public/images/large/Thaumcraft/ItemLootBag/1.png deleted file mode 100644 index 1f2445c2a3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLootBag/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemLootBag/2.png b/front/public/images/large/Thaumcraft/ItemLootBag/2.png deleted file mode 100644 index 197440ab21..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemLootBag/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemManaBean/0.png b/front/public/images/large/Thaumcraft/ItemManaBean/0.png deleted file mode 100644 index 3595d0fdba..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemManaBean/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNugget/0.png b/front/public/images/large/Thaumcraft/ItemNugget/0.png deleted file mode 100644 index 60c30a5f49..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNugget/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNugget/16.png b/front/public/images/large/Thaumcraft/ItemNugget/16.png deleted file mode 100644 index a37ca1e3d1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNugget/16.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNugget/21.png b/front/public/images/large/Thaumcraft/ItemNugget/21.png deleted file mode 100644 index b7dcad2152..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNugget/21.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNugget/31.png b/front/public/images/large/Thaumcraft/ItemNugget/31.png deleted file mode 100644 index a7208b6bdf..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNugget/31.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNugget/5.png b/front/public/images/large/Thaumcraft/ItemNugget/5.png deleted file mode 100644 index 627b49e5ad..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNugget/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNugget/6.png b/front/public/images/large/Thaumcraft/ItemNugget/6.png deleted file mode 100644 index 8c9b33b471..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNugget/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNugget/7.png b/front/public/images/large/Thaumcraft/ItemNugget/7.png deleted file mode 100644 index 2c8d816c18..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNugget/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNuggetBeef/0.png b/front/public/images/large/Thaumcraft/ItemNuggetBeef/0.png deleted file mode 100644 index a660ca776a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNuggetBeef/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNuggetChicken/0.png b/front/public/images/large/Thaumcraft/ItemNuggetChicken/0.png deleted file mode 100644 index 21eaede410..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNuggetChicken/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNuggetFish/0.png b/front/public/images/large/Thaumcraft/ItemNuggetFish/0.png deleted file mode 100644 index ebc69bda9b..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNuggetFish/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemNuggetPork/0.png b/front/public/images/large/Thaumcraft/ItemNuggetPork/0.png deleted file mode 100644 index fbe82c477e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemNuggetPork/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemPickThaumium/0.png b/front/public/images/large/Thaumcraft/ItemPickThaumium/0.png deleted file mode 100644 index ebe76477c6..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemPickThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemPickVoid/0.png b/front/public/images/large/Thaumcraft/ItemPickVoid/0.png deleted file mode 100644 index d5c1e90050..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemPickVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemPickaxeElemental/0.png b/front/public/images/large/Thaumcraft/ItemPickaxeElemental/0.png deleted file mode 100644 index 6257dbad3e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemPickaxeElemental/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemPrimalCrusher/0.png b/front/public/images/large/Thaumcraft/ItemPrimalCrusher/0.png deleted file mode 100644 index 10c19d1ff3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemPrimalCrusher/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResearchNotes/0.png b/front/public/images/large/Thaumcraft/ItemResearchNotes/0.png deleted file mode 100644 index 9bc8971781..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResearchNotes/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResonator/0.png b/front/public/images/large/Thaumcraft/ItemResonator/0.png deleted file mode 100644 index 90f6fc703d..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResonator/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/0.png b/front/public/images/large/Thaumcraft/ItemResource/0.png deleted file mode 100644 index 7ea9a0f99e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/1.png b/front/public/images/large/Thaumcraft/ItemResource/1.png deleted file mode 100644 index cff8cb1c93..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/10.png b/front/public/images/large/Thaumcraft/ItemResource/10.png deleted file mode 100644 index f2c64eac5e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/10.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/11.png b/front/public/images/large/Thaumcraft/ItemResource/11.png deleted file mode 100644 index 2f9e7f44e1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/11.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/12.png b/front/public/images/large/Thaumcraft/ItemResource/12.png deleted file mode 100644 index 1444a5d349..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/12.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/13.png b/front/public/images/large/Thaumcraft/ItemResource/13.png deleted file mode 100644 index 18621757dc..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/13.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/14.png b/front/public/images/large/Thaumcraft/ItemResource/14.png deleted file mode 100644 index f573e161cd..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/15.png b/front/public/images/large/Thaumcraft/ItemResource/15.png deleted file mode 100644 index c8f27ca774..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/15.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/16.png b/front/public/images/large/Thaumcraft/ItemResource/16.png deleted file mode 100644 index 3cb6ecf928..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/16.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/17.png b/front/public/images/large/Thaumcraft/ItemResource/17.png deleted file mode 100644 index 8862244fb6..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/17.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/18.png b/front/public/images/large/Thaumcraft/ItemResource/18.png deleted file mode 100644 index e8b806bbdf..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/18.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/2.png b/front/public/images/large/Thaumcraft/ItemResource/2.png deleted file mode 100644 index e7624b8b04..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/3.png b/front/public/images/large/Thaumcraft/ItemResource/3.png deleted file mode 100644 index 3b0895f80f..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/4.png b/front/public/images/large/Thaumcraft/ItemResource/4.png deleted file mode 100644 index 32e146783b..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/6.png b/front/public/images/large/Thaumcraft/ItemResource/6.png deleted file mode 100644 index ab692e50ec..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/7.png b/front/public/images/large/Thaumcraft/ItemResource/7.png deleted file mode 100644 index ac09cb9d65..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/8.png b/front/public/images/large/Thaumcraft/ItemResource/8.png deleted file mode 100644 index 0e356df90b..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemResource/9.png b/front/public/images/large/Thaumcraft/ItemResource/9.png deleted file mode 100644 index 33e9d94d81..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemResource/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemRingRunic/0.png b/front/public/images/large/Thaumcraft/ItemRingRunic/0.png deleted file mode 100644 index b2fcc039d1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemRingRunic/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemRingRunic/1.png b/front/public/images/large/Thaumcraft/ItemRingRunic/1.png deleted file mode 100644 index 4af60fa9e2..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemRingRunic/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemRingRunic/2.png b/front/public/images/large/Thaumcraft/ItemRingRunic/2.png deleted file mode 100644 index b28ad33142..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemRingRunic/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemRingRunic/3.png b/front/public/images/large/Thaumcraft/ItemRingRunic/3.png deleted file mode 100644 index 12554ff306..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemRingRunic/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSanityChecker/0.png b/front/public/images/large/Thaumcraft/ItemSanityChecker/0.png deleted file mode 100644 index fd6654b330..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSanityChecker/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSanitySoap/0.png b/front/public/images/large/Thaumcraft/ItemSanitySoap/0.png deleted file mode 100644 index 35dd97b986..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSanitySoap/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShard/0.png b/front/public/images/large/Thaumcraft/ItemShard/0.png deleted file mode 100644 index e41a6360bf..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShard/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShard/1.png b/front/public/images/large/Thaumcraft/ItemShard/1.png deleted file mode 100644 index 337754edcb..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShard/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShard/2.png b/front/public/images/large/Thaumcraft/ItemShard/2.png deleted file mode 100644 index 47c4d13de3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShard/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShard/3.png b/front/public/images/large/Thaumcraft/ItemShard/3.png deleted file mode 100644 index 336df3014a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShard/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShard/4.png b/front/public/images/large/Thaumcraft/ItemShard/4.png deleted file mode 100644 index 539d57e14e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShard/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShard/5.png b/front/public/images/large/Thaumcraft/ItemShard/5.png deleted file mode 100644 index 1e4aeffc87..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShard/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShard/6.png b/front/public/images/large/Thaumcraft/ItemShard/6.png deleted file mode 100644 index bd575a5e00..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShard/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShovelElemental/0.png b/front/public/images/large/Thaumcraft/ItemShovelElemental/0.png deleted file mode 100644 index 631406ef61..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShovelElemental/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShovelThaumium/0.png b/front/public/images/large/Thaumcraft/ItemShovelThaumium/0.png deleted file mode 100644 index f28414f3a5..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShovelThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemShovelVoid/0.png b/front/public/images/large/Thaumcraft/ItemShovelVoid/0.png deleted file mode 100644 index 86da1186c9..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemShovelVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/0.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/0.png deleted file mode 100644 index 6a93d314f1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/1.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/1.png deleted file mode 100644 index c7feedf0a2..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/10.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/10.png deleted file mode 100644 index e0e7134dcc..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/10.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/11.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/11.png deleted file mode 100644 index dbb2e98fc9..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/11.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/12.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/12.png deleted file mode 100644 index 81868d6ab7..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/12.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/13.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/13.png deleted file mode 100644 index 74a5b89460..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/13.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/14.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/14.png deleted file mode 100644 index 7181591357..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/15.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/15.png deleted file mode 100644 index 929a992741..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/15.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/16.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/16.png deleted file mode 100644 index 469735d3eb..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/16.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/17.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/17.png deleted file mode 100644 index 508a888c31..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/17.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/18.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/18.png deleted file mode 100644 index 04f1f01c67..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/18.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/19.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/19.png deleted file mode 100644 index 1863d74e77..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/19.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/2.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/2.png deleted file mode 100644 index f1d9b9277e..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/20.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/20.png deleted file mode 100644 index 60eda0a3e2..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/20.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/21.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/21.png deleted file mode 100644 index cc70e9c63a..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/21.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/22.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/22.png deleted file mode 100644 index 90af77d7da..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/22.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/23.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/23.png deleted file mode 100644 index c28a03d173..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/23.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/24.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/24.png deleted file mode 100644 index be509b0d2f..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/24.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/25.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/25.png deleted file mode 100644 index 937d8e4db3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/25.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/26.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/26.png deleted file mode 100644 index 43f8835838..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/26.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/27.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/27.png deleted file mode 100644 index 808a8949b6..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/27.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/28.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/28.png deleted file mode 100644 index 43f8835838..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/28.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/3.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/3.png deleted file mode 100644 index 454a71b521..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/4.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/4.png deleted file mode 100644 index dc7ee2db26..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/5.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/5.png deleted file mode 100644 index 8b0404c738..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/6.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/6.png deleted file mode 100644 index fccf83aab3..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/7.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/7.png deleted file mode 100644 index ed2ec001ff..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/8.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/8.png deleted file mode 100644 index 9e1a9f08f1..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/9.png b/front/public/images/large/Thaumcraft/ItemSpawnerEgg/9.png deleted file mode 100644 index 0afbb52df0..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSpawnerEgg/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSwordCrimson/0.png b/front/public/images/large/Thaumcraft/ItemSwordCrimson/0.png deleted file mode 100644 index eae3c373e8..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSwordCrimson/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSwordElemental/0.png b/front/public/images/large/Thaumcraft/ItemSwordElemental/0.png deleted file mode 100644 index edfbeb1b29..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSwordElemental/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSwordThaumium/0.png b/front/public/images/large/Thaumcraft/ItemSwordThaumium/0.png deleted file mode 100644 index e70451a5fc..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSwordThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemSwordVoid/0.png b/front/public/images/large/Thaumcraft/ItemSwordVoid/0.png deleted file mode 100644 index 46d56c9560..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemSwordVoid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemThaumometer/0.png b/front/public/images/large/Thaumcraft/ItemThaumometer/0.png deleted file mode 100644 index 6850c94ede..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemThaumometer/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemThaumonomicon/0.png b/front/public/images/large/Thaumcraft/ItemThaumonomicon/0.png deleted file mode 100644 index 8e83d789cc..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemThaumonomicon/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemThaumonomicon/42.png b/front/public/images/large/Thaumcraft/ItemThaumonomicon/42.png deleted file mode 100644 index cf510e542f..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemThaumonomicon/42.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemWispEssence/0.png b/front/public/images/large/Thaumcraft/ItemWispEssence/0.png deleted file mode 100644 index 2705671174..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemWispEssence/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/ItemZombieBrain/0.png b/front/public/images/large/Thaumcraft/ItemZombieBrain/0.png deleted file mode 100644 index 7dad4a10cd..0000000000 Binary files a/front/public/images/large/Thaumcraft/ItemZombieBrain/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/PrimalArrow/0.png b/front/public/images/large/Thaumcraft/PrimalArrow/0.png deleted file mode 100644 index 0695501a73..0000000000 Binary files a/front/public/images/large/Thaumcraft/PrimalArrow/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/PrimalArrow/1.png b/front/public/images/large/Thaumcraft/PrimalArrow/1.png deleted file mode 100644 index 2af117d8c3..0000000000 Binary files a/front/public/images/large/Thaumcraft/PrimalArrow/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/PrimalArrow/2.png b/front/public/images/large/Thaumcraft/PrimalArrow/2.png deleted file mode 100644 index 41e2bf4dd9..0000000000 Binary files a/front/public/images/large/Thaumcraft/PrimalArrow/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/PrimalArrow/3.png b/front/public/images/large/Thaumcraft/PrimalArrow/3.png deleted file mode 100644 index 63fd2ad786..0000000000 Binary files a/front/public/images/large/Thaumcraft/PrimalArrow/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/PrimalArrow/4.png b/front/public/images/large/Thaumcraft/PrimalArrow/4.png deleted file mode 100644 index ad86afec0b..0000000000 Binary files a/front/public/images/large/Thaumcraft/PrimalArrow/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/PrimalArrow/5.png b/front/public/images/large/Thaumcraft/PrimalArrow/5.png deleted file mode 100644 index 00321103bd..0000000000 Binary files a/front/public/images/large/Thaumcraft/PrimalArrow/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/TripleMeatTreat/0.png b/front/public/images/large/Thaumcraft/TripleMeatTreat/0.png deleted file mode 100644 index 83b0a8469d..0000000000 Binary files a/front/public/images/large/Thaumcraft/TripleMeatTreat/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/TrunkSpawner/0.png b/front/public/images/large/Thaumcraft/TrunkSpawner/0.png deleted file mode 100644 index efa4438991..0000000000 Binary files a/front/public/images/large/Thaumcraft/TrunkSpawner/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCap/0.png b/front/public/images/large/Thaumcraft/WandCap/0.png deleted file mode 100644 index 09bca37b88..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCap/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCap/1.png b/front/public/images/large/Thaumcraft/WandCap/1.png deleted file mode 100644 index 61aa03a5dc..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCap/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCap/2.png b/front/public/images/large/Thaumcraft/WandCap/2.png deleted file mode 100644 index 91be6fe56b..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCap/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCap/6.png b/front/public/images/large/Thaumcraft/WandCap/6.png deleted file mode 100644 index 91be6fe56b..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCap/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCap/7.png b/front/public/images/large/Thaumcraft/WandCap/7.png deleted file mode 100644 index 0339b170e6..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCap/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCap/8.png b/front/public/images/large/Thaumcraft/WandCap/8.png deleted file mode 100644 index aff5b2453b..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCap/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/0.png b/front/public/images/large/Thaumcraft/WandCasting/0.png deleted file mode 100644 index 1e9d1450ab..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/1.png b/front/public/images/large/Thaumcraft/WandCasting/1.png deleted file mode 100644 index 1770718708..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/128.png b/front/public/images/large/Thaumcraft/WandCasting/128.png deleted file mode 100644 index fdb57537d3..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/128.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/144.png b/front/public/images/large/Thaumcraft/WandCasting/144.png deleted file mode 100644 index 0ab25c0d1e..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/144.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/168.png b/front/public/images/large/Thaumcraft/WandCasting/168.png deleted file mode 100644 index e5cced0341..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/168.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/2000.png b/front/public/images/large/Thaumcraft/WandCasting/2000.png deleted file mode 100644 index 998035da4f..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/2000.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/36.png b/front/public/images/large/Thaumcraft/WandCasting/36.png deleted file mode 100644 index 7001737824..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/36.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/54.png b/front/public/images/large/Thaumcraft/WandCasting/54.png deleted file mode 100644 index d8fcd11f0b..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/54.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/72.png b/front/public/images/large/Thaumcraft/WandCasting/72.png deleted file mode 100644 index 8f1ed0e897..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/72.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/84.png b/front/public/images/large/Thaumcraft/WandCasting/84.png deleted file mode 100644 index 99a3098787..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/84.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandCasting/9.png b/front/public/images/large/Thaumcraft/WandCasting/9.png deleted file mode 100644 index a43526156c..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandCasting/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/0.png b/front/public/images/large/Thaumcraft/WandRod/0.png deleted file mode 100644 index 5d5b80e18c..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/1.png b/front/public/images/large/Thaumcraft/WandRod/1.png deleted file mode 100644 index 474cac60d6..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/100.png b/front/public/images/large/Thaumcraft/WandRod/100.png deleted file mode 100644 index 53b6c49aee..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/100.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/2.png b/front/public/images/large/Thaumcraft/WandRod/2.png deleted file mode 100644 index 5130eb54a4..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/3.png b/front/public/images/large/Thaumcraft/WandRod/3.png deleted file mode 100644 index 36b77303f6..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/4.png b/front/public/images/large/Thaumcraft/WandRod/4.png deleted file mode 100644 index e053830cd0..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/5.png b/front/public/images/large/Thaumcraft/WandRod/5.png deleted file mode 100644 index 2a4eff3496..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/50.png b/front/public/images/large/Thaumcraft/WandRod/50.png deleted file mode 100644 index 5cfe7e7943..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/50.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/51.png b/front/public/images/large/Thaumcraft/WandRod/51.png deleted file mode 100644 index ccebac03ea..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/51.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/52.png b/front/public/images/large/Thaumcraft/WandRod/52.png deleted file mode 100644 index a3b69ebfb6..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/52.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/53.png b/front/public/images/large/Thaumcraft/WandRod/53.png deleted file mode 100644 index 10079a50cf..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/53.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/54.png b/front/public/images/large/Thaumcraft/WandRod/54.png deleted file mode 100644 index f4510efbb4..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/54.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/55.png b/front/public/images/large/Thaumcraft/WandRod/55.png deleted file mode 100644 index 02d008fba7..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/55.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/56.png b/front/public/images/large/Thaumcraft/WandRod/56.png deleted file mode 100644 index e437af6bd6..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/56.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/57.png b/front/public/images/large/Thaumcraft/WandRod/57.png deleted file mode 100644 index e8f092b5a5..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/57.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/6.png b/front/public/images/large/Thaumcraft/WandRod/6.png deleted file mode 100644 index 2980740f79..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/WandRod/7.png b/front/public/images/large/Thaumcraft/WandRod/7.png deleted file mode 100644 index 8b442ec73b..0000000000 Binary files a/front/public/images/large/Thaumcraft/WandRod/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockAiry/0.png b/front/public/images/large/Thaumcraft/blockAiry/0.png deleted file mode 100644 index 831db21368..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockAiry/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockAlchemyFurnace/0.png b/front/public/images/large/Thaumcraft/blockAlchemyFurnace/0.png deleted file mode 100644 index 1a0c63c5d0..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockAlchemyFurnace/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockArcaneDoor/0.png b/front/public/images/large/Thaumcraft/blockArcaneDoor/0.png deleted file mode 100644 index 243714d7c1..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockArcaneDoor/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockArcaneFurnace/0.png b/front/public/images/large/Thaumcraft/blockArcaneFurnace/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockArcaneFurnace/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/0.png b/front/public/images/large/Thaumcraft/blockCandle/0.png deleted file mode 100644 index 6acbbfe8bd..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/1.png b/front/public/images/large/Thaumcraft/blockCandle/1.png deleted file mode 100644 index c97075476d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/10.png b/front/public/images/large/Thaumcraft/blockCandle/10.png deleted file mode 100644 index 5e775c3da3..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/10.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/11.png b/front/public/images/large/Thaumcraft/blockCandle/11.png deleted file mode 100644 index 6bbe54519e..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/11.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/12.png b/front/public/images/large/Thaumcraft/blockCandle/12.png deleted file mode 100644 index ca6053a8ae..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/12.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/13.png b/front/public/images/large/Thaumcraft/blockCandle/13.png deleted file mode 100644 index b6cd1d9569..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/13.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/14.png b/front/public/images/large/Thaumcraft/blockCandle/14.png deleted file mode 100644 index 9c65980b9d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/15.png b/front/public/images/large/Thaumcraft/blockCandle/15.png deleted file mode 100644 index be76d26a0a..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/15.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/2.png b/front/public/images/large/Thaumcraft/blockCandle/2.png deleted file mode 100644 index 65a4947b3e..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/3.png b/front/public/images/large/Thaumcraft/blockCandle/3.png deleted file mode 100644 index 94406b9531..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/4.png b/front/public/images/large/Thaumcraft/blockCandle/4.png deleted file mode 100644 index 85f678b922..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/5.png b/front/public/images/large/Thaumcraft/blockCandle/5.png deleted file mode 100644 index 75e560d667..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/6.png b/front/public/images/large/Thaumcraft/blockCandle/6.png deleted file mode 100644 index c8ad445a56..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/7.png b/front/public/images/large/Thaumcraft/blockCandle/7.png deleted file mode 100644 index aa914ed187..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/8.png b/front/public/images/large/Thaumcraft/blockCandle/8.png deleted file mode 100644 index 7afabeb306..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCandle/9.png b/front/public/images/large/Thaumcraft/blockCandle/9.png deleted file mode 100644 index fdf0ef83f1..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCandle/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockChestHungry/0.png b/front/public/images/large/Thaumcraft/blockChestHungry/0.png deleted file mode 100644 index 7cd4d89631..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockChestHungry/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticDoubleSlabStone/0.png b/front/public/images/large/Thaumcraft/blockCosmeticDoubleSlabStone/0.png deleted file mode 100644 index 9d38563846..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticDoubleSlabStone/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticDoubleSlabWood/0.png b/front/public/images/large/Thaumcraft/blockCosmeticDoubleSlabWood/0.png deleted file mode 100644 index 8ab252fe6a..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticDoubleSlabWood/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticOpaque/0.png b/front/public/images/large/Thaumcraft/blockCosmeticOpaque/0.png deleted file mode 100644 index 9bc5f21a66..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticOpaque/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticOpaque/1.png b/front/public/images/large/Thaumcraft/blockCosmeticOpaque/1.png deleted file mode 100644 index 2354dd2cd7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticOpaque/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticOpaque/2.png b/front/public/images/large/Thaumcraft/blockCosmeticOpaque/2.png deleted file mode 100644 index 9af1ea546c..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticOpaque/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSlabStone/0.png b/front/public/images/large/Thaumcraft/blockCosmeticSlabStone/0.png deleted file mode 100644 index d3a1c1567b..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSlabStone/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSlabStone/1.png b/front/public/images/large/Thaumcraft/blockCosmeticSlabStone/1.png deleted file mode 100644 index 3b56d34b5a..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSlabStone/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSlabWood/0.png b/front/public/images/large/Thaumcraft/blockCosmeticSlabWood/0.png deleted file mode 100644 index b00e01de38..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSlabWood/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSlabWood/1.png b/front/public/images/large/Thaumcraft/blockCosmeticSlabWood/1.png deleted file mode 100644 index b51b8ea130..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSlabWood/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/0.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/0.png deleted file mode 100644 index f43530aad8..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/1.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/1.png deleted file mode 100644 index f43530aad8..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/11.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/11.png deleted file mode 100644 index 8b61194ce3..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/11.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/12.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/12.png deleted file mode 100644 index 222b7f7d54..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/12.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/14.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/14.png deleted file mode 100644 index 29a103aeec..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/15.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/15.png deleted file mode 100644 index 660e272246..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/15.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/2.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/2.png deleted file mode 100644 index b1a307641d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/3.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/3.png deleted file mode 100644 index 32d4b4af9d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/4.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/4.png deleted file mode 100644 index 4a7c80688d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/5.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/5.png deleted file mode 100644 index d7dc390e90..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/6.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/6.png deleted file mode 100644 index 965f3c1ff9..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/7.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/7.png deleted file mode 100644 index 5339287d44..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/8.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/8.png deleted file mode 100644 index f43530aad8..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCosmeticSolid/9.png b/front/public/images/large/Thaumcraft/blockCosmeticSolid/9.png deleted file mode 100644 index 8cf07503d8..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCosmeticSolid/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCrystal/0.png b/front/public/images/large/Thaumcraft/blockCrystal/0.png deleted file mode 100644 index 7f83cc9919..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCrystal/1.png b/front/public/images/large/Thaumcraft/blockCrystal/1.png deleted file mode 100644 index 7931b1b1c2..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCrystal/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCrystal/2.png b/front/public/images/large/Thaumcraft/blockCrystal/2.png deleted file mode 100644 index 2dc76adc06..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCrystal/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCrystal/3.png b/front/public/images/large/Thaumcraft/blockCrystal/3.png deleted file mode 100644 index 334d587581..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCrystal/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCrystal/4.png b/front/public/images/large/Thaumcraft/blockCrystal/4.png deleted file mode 100644 index a6e6551406..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCrystal/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCrystal/5.png b/front/public/images/large/Thaumcraft/blockCrystal/5.png deleted file mode 100644 index 09183cbc5d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCrystal/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCrystal/6.png b/front/public/images/large/Thaumcraft/blockCrystal/6.png deleted file mode 100644 index ee3f7eb600..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCrystal/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/0.png b/front/public/images/large/Thaumcraft/blockCustomOre/0.png deleted file mode 100644 index fa18d253c4..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/1.png b/front/public/images/large/Thaumcraft/blockCustomOre/1.png deleted file mode 100644 index 0c6fed527b..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/2.png b/front/public/images/large/Thaumcraft/blockCustomOre/2.png deleted file mode 100644 index 4bed19451a..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/3.png b/front/public/images/large/Thaumcraft/blockCustomOre/3.png deleted file mode 100644 index 6eebe9f0c7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/4.png b/front/public/images/large/Thaumcraft/blockCustomOre/4.png deleted file mode 100644 index 9f5ad89548..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/5.png b/front/public/images/large/Thaumcraft/blockCustomOre/5.png deleted file mode 100644 index 9488444978..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/6.png b/front/public/images/large/Thaumcraft/blockCustomOre/6.png deleted file mode 100644 index 82abc999e0..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomOre/7.png b/front/public/images/large/Thaumcraft/blockCustomOre/7.png deleted file mode 100644 index d4ecd13d93..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomOre/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomPlant/0.png b/front/public/images/large/Thaumcraft/blockCustomPlant/0.png deleted file mode 100644 index c94db448d7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomPlant/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomPlant/1.png b/front/public/images/large/Thaumcraft/blockCustomPlant/1.png deleted file mode 100644 index 1c94d5b32c..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomPlant/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomPlant/2.png b/front/public/images/large/Thaumcraft/blockCustomPlant/2.png deleted file mode 100644 index 9c66408c36..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomPlant/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomPlant/3.png b/front/public/images/large/Thaumcraft/blockCustomPlant/3.png deleted file mode 100644 index 75a11bcc93..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomPlant/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomPlant/4.png b/front/public/images/large/Thaumcraft/blockCustomPlant/4.png deleted file mode 100644 index 8f94aea7d8..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomPlant/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockCustomPlant/5.png b/front/public/images/large/Thaumcraft/blockCustomPlant/5.png deleted file mode 100644 index 9c5fa290cd..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockCustomPlant/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockEldritch/4.png b/front/public/images/large/Thaumcraft/blockEldritch/4.png deleted file mode 100644 index 1c9d9a87c7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockEldritch/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockEldritchNothing/0.png b/front/public/images/large/Thaumcraft/blockEldritchNothing/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockEldritchNothing/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockEssentiaReservoir/0.png b/front/public/images/large/Thaumcraft/blockEssentiaReservoir/0.png deleted file mode 100644 index 78252fd203..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockEssentiaReservoir/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockFluidDeath/0.png b/front/public/images/large/Thaumcraft/blockFluidDeath/0.png deleted file mode 100644 index 2f40185ae9..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockFluidDeath/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockFluidPure/0.png b/front/public/images/large/Thaumcraft/blockFluidPure/0.png deleted file mode 100644 index 4df682d187..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockFluidPure/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockFluxGas/0.png b/front/public/images/large/Thaumcraft/blockFluxGas/0.png deleted file mode 100644 index 3087d0e0f8..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockFluxGas/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockFluxGoo/0.png b/front/public/images/large/Thaumcraft/blockFluxGoo/0.png deleted file mode 100644 index e559440bca..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockFluxGoo/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockHole/0.png b/front/public/images/large/Thaumcraft/blockHole/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockHole/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockJar/0.png b/front/public/images/large/Thaumcraft/blockJar/0.png deleted file mode 100644 index 907bf16832..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockJar/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockJar/1.png b/front/public/images/large/Thaumcraft/blockJar/1.png deleted file mode 100644 index ad43eaed09..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockJar/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockJar/3.png b/front/public/images/large/Thaumcraft/blockJar/3.png deleted file mode 100644 index 5c662d0a6f..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockJar/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockLifter/0.png b/front/public/images/large/Thaumcraft/blockLifter/0.png deleted file mode 100644 index 10702bc950..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockLifter/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockLootCrate/0.png b/front/public/images/large/Thaumcraft/blockLootCrate/0.png deleted file mode 100644 index 148e854692..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockLootCrate/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockLootCrate/1.png b/front/public/images/large/Thaumcraft/blockLootCrate/1.png deleted file mode 100644 index 148e854692..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockLootCrate/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockLootCrate/2.png b/front/public/images/large/Thaumcraft/blockLootCrate/2.png deleted file mode 100644 index 148e854692..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockLootCrate/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockLootUrn/0.png b/front/public/images/large/Thaumcraft/blockLootUrn/0.png deleted file mode 100644 index dfa5e0df49..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockLootUrn/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockLootUrn/1.png b/front/public/images/large/Thaumcraft/blockLootUrn/1.png deleted file mode 100644 index dfa5e0df49..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockLootUrn/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockLootUrn/2.png b/front/public/images/large/Thaumcraft/blockLootUrn/2.png deleted file mode 100644 index dfa5e0df49..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockLootUrn/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMagicBox/0.png b/front/public/images/large/Thaumcraft/blockMagicBox/0.png deleted file mode 100644 index 4ad9861abc..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMagicBox/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMagicalLeaves/0.png b/front/public/images/large/Thaumcraft/blockMagicalLeaves/0.png deleted file mode 100644 index 18de4b16d5..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMagicalLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMagicalLeaves/1.png b/front/public/images/large/Thaumcraft/blockMagicalLeaves/1.png deleted file mode 100644 index becf8227a4..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMagicalLeaves/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMagicalLog/0.png b/front/public/images/large/Thaumcraft/blockMagicalLog/0.png deleted file mode 100644 index 963fbf21bd..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMagicalLog/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMagicalLog/1.png b/front/public/images/large/Thaumcraft/blockMagicalLog/1.png deleted file mode 100644 index 0d88aac402..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMagicalLog/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockManaPod/0.png b/front/public/images/large/Thaumcraft/blockManaPod/0.png deleted file mode 100644 index 4776049bd1..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockManaPod/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/0.png b/front/public/images/large/Thaumcraft/blockMetalDevice/0.png deleted file mode 100644 index cb1250a268..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/1.png b/front/public/images/large/Thaumcraft/blockMetalDevice/1.png deleted file mode 100644 index 64310a39d7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/12.png b/front/public/images/large/Thaumcraft/blockMetalDevice/12.png deleted file mode 100644 index f9689074ca..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/12.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/13.png b/front/public/images/large/Thaumcraft/blockMetalDevice/13.png deleted file mode 100644 index 3fe6922aae..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/13.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/14.png b/front/public/images/large/Thaumcraft/blockMetalDevice/14.png deleted file mode 100644 index ab71a9cb57..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/2.png b/front/public/images/large/Thaumcraft/blockMetalDevice/2.png deleted file mode 100644 index d486eb21ad..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/3.png b/front/public/images/large/Thaumcraft/blockMetalDevice/3.png deleted file mode 100644 index 892a3e47ee..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/5.png b/front/public/images/large/Thaumcraft/blockMetalDevice/5.png deleted file mode 100644 index eae050f204..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/7.png b/front/public/images/large/Thaumcraft/blockMetalDevice/7.png deleted file mode 100644 index f34d510034..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/8.png b/front/public/images/large/Thaumcraft/blockMetalDevice/8.png deleted file mode 100644 index f77d3f7b03..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMetalDevice/9.png b/front/public/images/large/Thaumcraft/blockMetalDevice/9.png deleted file mode 100644 index c2c5c61933..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMetalDevice/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMirror/0.png b/front/public/images/large/Thaumcraft/blockMirror/0.png deleted file mode 100644 index fc43db207f..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMirror/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockMirror/6.png b/front/public/images/large/Thaumcraft/blockMirror/6.png deleted file mode 100644 index 23a4dee4c5..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockMirror/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockPortalEldritch/0.png b/front/public/images/large/Thaumcraft/blockPortalEldritch/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockPortalEldritch/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStairsArcaneStone/0.png b/front/public/images/large/Thaumcraft/blockStairsArcaneStone/0.png deleted file mode 100644 index 016bdc5a68..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStairsArcaneStone/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStairsEldritch/0.png b/front/public/images/large/Thaumcraft/blockStairsEldritch/0.png deleted file mode 100644 index f9b2f68328..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStairsEldritch/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStairsGreatwood/0.png b/front/public/images/large/Thaumcraft/blockStairsGreatwood/0.png deleted file mode 100644 index 3948df94d4..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStairsGreatwood/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStairsSilverwood/0.png b/front/public/images/large/Thaumcraft/blockStairsSilverwood/0.png deleted file mode 100644 index 6ed48cc3b6..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStairsSilverwood/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/0.png b/front/public/images/large/Thaumcraft/blockStoneDevice/0.png deleted file mode 100644 index 60676cca97..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/1.png b/front/public/images/large/Thaumcraft/blockStoneDevice/1.png deleted file mode 100644 index ce9df14c21..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/10.png b/front/public/images/large/Thaumcraft/blockStoneDevice/10.png deleted file mode 100644 index fcdbc7eb21..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/10.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/11.png b/front/public/images/large/Thaumcraft/blockStoneDevice/11.png deleted file mode 100644 index e9db91971a..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/11.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/12.png b/front/public/images/large/Thaumcraft/blockStoneDevice/12.png deleted file mode 100644 index 17b71a4e84..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/12.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/13.png b/front/public/images/large/Thaumcraft/blockStoneDevice/13.png deleted file mode 100644 index 4e9aeb031c..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/13.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/14.png b/front/public/images/large/Thaumcraft/blockStoneDevice/14.png deleted file mode 100644 index d8bcd31816..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/2.png b/front/public/images/large/Thaumcraft/blockStoneDevice/2.png deleted file mode 100644 index 371c38f244..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/5.png b/front/public/images/large/Thaumcraft/blockStoneDevice/5.png deleted file mode 100644 index 2470a9a95d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/8.png b/front/public/images/large/Thaumcraft/blockStoneDevice/8.png deleted file mode 100644 index b10a73e74d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/8.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockStoneDevice/9.png b/front/public/images/large/Thaumcraft/blockStoneDevice/9.png deleted file mode 100644 index 45ec4a2f7f..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockStoneDevice/9.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTable/0.png b/front/public/images/large/Thaumcraft/blockTable/0.png deleted file mode 100644 index d232a6441a..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTable/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTable/14.png b/front/public/images/large/Thaumcraft/blockTable/14.png deleted file mode 100644 index 30721c3fa5..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTable/14.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTable/15.png b/front/public/images/large/Thaumcraft/blockTable/15.png deleted file mode 100644 index f9695bb55d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTable/15.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTaint/0.png b/front/public/images/large/Thaumcraft/blockTaint/0.png deleted file mode 100644 index a5bc773134..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTaint/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTaint/1.png b/front/public/images/large/Thaumcraft/blockTaint/1.png deleted file mode 100644 index 51063c0088..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTaint/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTaint/2.png b/front/public/images/large/Thaumcraft/blockTaint/2.png deleted file mode 100644 index fe53508ccb..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTaint/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTaintFibres/0.png b/front/public/images/large/Thaumcraft/blockTaintFibres/0.png deleted file mode 100644 index aea51aac15..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTaintFibres/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTaintFibres/1.png b/front/public/images/large/Thaumcraft/blockTaintFibres/1.png deleted file mode 100644 index 47968eb7e4..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTaintFibres/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTaintFibres/2.png b/front/public/images/large/Thaumcraft/blockTaintFibres/2.png deleted file mode 100644 index 98b2f94291..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTaintFibres/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTaintFibres/3.png b/front/public/images/large/Thaumcraft/blockTaintFibres/3.png deleted file mode 100644 index b7f1c24f5c..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTaintFibres/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/0.png b/front/public/images/large/Thaumcraft/blockTube/0.png deleted file mode 100644 index 5d51389dfb..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/1.png b/front/public/images/large/Thaumcraft/blockTube/1.png deleted file mode 100644 index c67edb4cb4..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/2.png b/front/public/images/large/Thaumcraft/blockTube/2.png deleted file mode 100644 index 3f90c7eed9..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/3.png b/front/public/images/large/Thaumcraft/blockTube/3.png deleted file mode 100644 index e7aa855804..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/3.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/4.png b/front/public/images/large/Thaumcraft/blockTube/4.png deleted file mode 100644 index 0dc361d11d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/5.png b/front/public/images/large/Thaumcraft/blockTube/5.png deleted file mode 100644 index 89c79bbde0..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/6.png b/front/public/images/large/Thaumcraft/blockTube/6.png deleted file mode 100644 index a4b5b01596..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockTube/7.png b/front/public/images/large/Thaumcraft/blockTube/7.png deleted file mode 100644 index 5df6ca88b2..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockTube/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWarded/0.png b/front/public/images/large/Thaumcraft/blockWarded/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWarded/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/0.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/0.png deleted file mode 100644 index c1e0e23f9c..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/0.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/1.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/1.png deleted file mode 100644 index 406d295b4e..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/1.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/2.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/2.png deleted file mode 100644 index 00370ffd50..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/2.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/4.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/4.png deleted file mode 100644 index 19cf295473..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/4.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/5.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/5.png deleted file mode 100644 index d75f9be0f6..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/5.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/6.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/6.png deleted file mode 100644 index a442c25f68..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/6.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/7.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/7.png deleted file mode 100644 index fbf2f88285..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/7.png and /dev/null differ diff --git a/front/public/images/large/Thaumcraft/blockWoodenDevice/8.png b/front/public/images/large/Thaumcraft/blockWoodenDevice/8.png deleted file mode 100644 index 47197fc28d..0000000000 Binary files a/front/public/images/large/Thaumcraft/blockWoodenDevice/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/amberCore/0.png b/front/public/images/large/ThaumicExploration/amberCore/0.png deleted file mode 100644 index ecdf47a2d7..0000000000 Binary files a/front/public/images/large/ThaumicExploration/amberCore/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/amberStaffCore/0.png b/front/public/images/large/ThaumicExploration/amberStaffCore/0.png deleted file mode 100644 index 9541dc3a28..0000000000 Binary files a/front/public/images/large/ThaumicExploration/amberStaffCore/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/0.png b/front/public/images/large/ThaumicExploration/blankSeal/0.png deleted file mode 100644 index 237c6e0eef..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/1.png b/front/public/images/large/ThaumicExploration/blankSeal/1.png deleted file mode 100644 index 8ee15386df..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/10.png b/front/public/images/large/ThaumicExploration/blankSeal/10.png deleted file mode 100644 index bb165a94c9..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/11.png b/front/public/images/large/ThaumicExploration/blankSeal/11.png deleted file mode 100644 index c275a339b4..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/12.png b/front/public/images/large/ThaumicExploration/blankSeal/12.png deleted file mode 100644 index cfc0b9e149..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/13.png b/front/public/images/large/ThaumicExploration/blankSeal/13.png deleted file mode 100644 index 5473f91a1e..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/14.png b/front/public/images/large/ThaumicExploration/blankSeal/14.png deleted file mode 100644 index f9fffa1317..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/15.png b/front/public/images/large/ThaumicExploration/blankSeal/15.png deleted file mode 100644 index bca781f8e0..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/2.png b/front/public/images/large/ThaumicExploration/blankSeal/2.png deleted file mode 100644 index 9a2c32f6cf..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/3.png b/front/public/images/large/ThaumicExploration/blankSeal/3.png deleted file mode 100644 index 19f0862e21..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/4.png b/front/public/images/large/ThaumicExploration/blankSeal/4.png deleted file mode 100644 index 42f650745c..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/5.png b/front/public/images/large/ThaumicExploration/blankSeal/5.png deleted file mode 100644 index 47d9c59839..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/6.png b/front/public/images/large/ThaumicExploration/blankSeal/6.png deleted file mode 100644 index f609b188e8..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/7.png b/front/public/images/large/ThaumicExploration/blankSeal/7.png deleted file mode 100644 index 6b27e34422..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/8.png b/front/public/images/large/ThaumicExploration/blankSeal/8.png deleted file mode 100644 index 321d60e2e9..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/blankSeal/9.png b/front/public/images/large/ThaumicExploration/blankSeal/9.png deleted file mode 100644 index 49967644f6..0000000000 Binary files a/front/public/images/large/ThaumicExploration/blankSeal/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/bootsComet/0.png b/front/public/images/large/ThaumicExploration/bootsComet/0.png deleted file mode 100644 index 35b5a88224..0000000000 Binary files a/front/public/images/large/ThaumicExploration/bootsComet/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/bootsMeteor/0.png b/front/public/images/large/ThaumicExploration/bootsMeteor/0.png deleted file mode 100644 index a8a5e0be10..0000000000 Binary files a/front/public/images/large/ThaumicExploration/bootsMeteor/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/boundChest/0.png b/front/public/images/large/ThaumicExploration/boundChest/0.png deleted file mode 100644 index df029e7057..0000000000 Binary files a/front/public/images/large/ThaumicExploration/boundChest/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/boundJar/0.png b/front/public/images/large/ThaumicExploration/boundJar/0.png deleted file mode 100644 index 907bf16832..0000000000 Binary files a/front/public/images/large/ThaumicExploration/boundJar/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/charmNoTaint/0.png b/front/public/images/large/ThaumicExploration/charmNoTaint/0.png deleted file mode 100644 index 6e2b930dd0..0000000000 Binary files a/front/public/images/large/ThaumicExploration/charmNoTaint/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/0.png b/front/public/images/large/ThaumicExploration/chestSeal/0.png deleted file mode 100644 index 517297f727..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/1.png b/front/public/images/large/ThaumicExploration/chestSeal/1.png deleted file mode 100644 index bceed1fe94..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/10.png b/front/public/images/large/ThaumicExploration/chestSeal/10.png deleted file mode 100644 index fc09f2c79e..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/11.png b/front/public/images/large/ThaumicExploration/chestSeal/11.png deleted file mode 100644 index ebf7bf206a..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/12.png b/front/public/images/large/ThaumicExploration/chestSeal/12.png deleted file mode 100644 index e8ee91441f..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/13.png b/front/public/images/large/ThaumicExploration/chestSeal/13.png deleted file mode 100644 index 30d0e81186..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/14.png b/front/public/images/large/ThaumicExploration/chestSeal/14.png deleted file mode 100644 index a155762da3..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/15.png b/front/public/images/large/ThaumicExploration/chestSeal/15.png deleted file mode 100644 index ceb1d61d1a..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/2.png b/front/public/images/large/ThaumicExploration/chestSeal/2.png deleted file mode 100644 index 9f0592eb8e..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/3.png b/front/public/images/large/ThaumicExploration/chestSeal/3.png deleted file mode 100644 index bd5ea5e13a..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/4.png b/front/public/images/large/ThaumicExploration/chestSeal/4.png deleted file mode 100644 index 24ec1b50dc..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/5.png b/front/public/images/large/ThaumicExploration/chestSeal/5.png deleted file mode 100644 index ed2c829d80..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/6.png b/front/public/images/large/ThaumicExploration/chestSeal/6.png deleted file mode 100644 index 81a2e24004..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/7.png b/front/public/images/large/ThaumicExploration/chestSeal/7.png deleted file mode 100644 index d9df184d00..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/8.png b/front/public/images/large/ThaumicExploration/chestSeal/8.png deleted file mode 100644 index 04e6c06c83..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSeal/9.png b/front/public/images/large/ThaumicExploration/chestSeal/9.png deleted file mode 100644 index 3de2c5b3aa..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSeal/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/0.png b/front/public/images/large/ThaumicExploration/chestSealLinked/0.png deleted file mode 100644 index 7b66abf7fc..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/1.png b/front/public/images/large/ThaumicExploration/chestSealLinked/1.png deleted file mode 100644 index 2306fec575..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/10.png b/front/public/images/large/ThaumicExploration/chestSealLinked/10.png deleted file mode 100644 index 5cc0393505..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/11.png b/front/public/images/large/ThaumicExploration/chestSealLinked/11.png deleted file mode 100644 index 69bdba96db..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/12.png b/front/public/images/large/ThaumicExploration/chestSealLinked/12.png deleted file mode 100644 index e4ccfc42cf..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/13.png b/front/public/images/large/ThaumicExploration/chestSealLinked/13.png deleted file mode 100644 index 506b2c8de8..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/14.png b/front/public/images/large/ThaumicExploration/chestSealLinked/14.png deleted file mode 100644 index d5a0a6acde..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/15.png b/front/public/images/large/ThaumicExploration/chestSealLinked/15.png deleted file mode 100644 index 7557f17303..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/2.png b/front/public/images/large/ThaumicExploration/chestSealLinked/2.png deleted file mode 100644 index 69b22cc156..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/3.png b/front/public/images/large/ThaumicExploration/chestSealLinked/3.png deleted file mode 100644 index 0999be94c3..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/4.png b/front/public/images/large/ThaumicExploration/chestSealLinked/4.png deleted file mode 100644 index 0270246ba3..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/5.png b/front/public/images/large/ThaumicExploration/chestSealLinked/5.png deleted file mode 100644 index 8793b756dc..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/6.png b/front/public/images/large/ThaumicExploration/chestSealLinked/6.png deleted file mode 100644 index 403ba89556..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/7.png b/front/public/images/large/ThaumicExploration/chestSealLinked/7.png deleted file mode 100644 index 7e720751f3..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/8.png b/front/public/images/large/ThaumicExploration/chestSealLinked/8.png deleted file mode 100644 index 05bc63cd1f..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/chestSealLinked/9.png b/front/public/images/large/ThaumicExploration/chestSealLinked/9.png deleted file mode 100644 index 4d241abf5b..0000000000 Binary files a/front/public/images/large/ThaumicExploration/chestSealLinked/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/crucibleSouls/0.png b/front/public/images/large/ThaumicExploration/crucibleSouls/0.png deleted file mode 100644 index 1f90238a19..0000000000 Binary files a/front/public/images/large/ThaumicExploration/crucibleSouls/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/discountRing/0.png b/front/public/images/large/ThaumicExploration/discountRing/0.png deleted file mode 100644 index 1bdbb2c071..0000000000 Binary files a/front/public/images/large/ThaumicExploration/discountRing/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/discountRing/1.png b/front/public/images/large/ThaumicExploration/discountRing/1.png deleted file mode 100644 index 446d233d21..0000000000 Binary files a/front/public/images/large/ThaumicExploration/discountRing/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/discountRing/2.png b/front/public/images/large/ThaumicExploration/discountRing/2.png deleted file mode 100644 index 9308311b7f..0000000000 Binary files a/front/public/images/large/ThaumicExploration/discountRing/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/discountRing/3.png b/front/public/images/large/ThaumicExploration/discountRing/3.png deleted file mode 100644 index 56674e0a5b..0000000000 Binary files a/front/public/images/large/ThaumicExploration/discountRing/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/discountRing/4.png b/front/public/images/large/ThaumicExploration/discountRing/4.png deleted file mode 100644 index 030ca0d8bf..0000000000 Binary files a/front/public/images/large/ThaumicExploration/discountRing/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/discountRing/5.png b/front/public/images/large/ThaumicExploration/discountRing/5.png deleted file mode 100644 index 3e292f3c3c..0000000000 Binary files a/front/public/images/large/ThaumicExploration/discountRing/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/everburnUrn/0.png b/front/public/images/large/ThaumicExploration/everburnUrn/0.png deleted file mode 100644 index 1fb4b6cc51..0000000000 Binary files a/front/public/images/large/ThaumicExploration/everburnUrn/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/everfullUrn/0.png b/front/public/images/large/ThaumicExploration/everfullUrn/0.png deleted file mode 100644 index 1fb4b6cc51..0000000000 Binary files a/front/public/images/large/ThaumicExploration/everfullUrn/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/0.png b/front/public/images/large/ThaumicExploration/floatCandle/0.png deleted file mode 100644 index 6acbbfe8bd..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/1.png b/front/public/images/large/ThaumicExploration/floatCandle/1.png deleted file mode 100644 index c97075476d..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/10.png b/front/public/images/large/ThaumicExploration/floatCandle/10.png deleted file mode 100644 index 5e775c3da3..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/11.png b/front/public/images/large/ThaumicExploration/floatCandle/11.png deleted file mode 100644 index 6bbe54519e..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/12.png b/front/public/images/large/ThaumicExploration/floatCandle/12.png deleted file mode 100644 index ca6053a8ae..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/13.png b/front/public/images/large/ThaumicExploration/floatCandle/13.png deleted file mode 100644 index b6cd1d9569..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/14.png b/front/public/images/large/ThaumicExploration/floatCandle/14.png deleted file mode 100644 index 9c65980b9d..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/15.png b/front/public/images/large/ThaumicExploration/floatCandle/15.png deleted file mode 100644 index be76d26a0a..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/2.png b/front/public/images/large/ThaumicExploration/floatCandle/2.png deleted file mode 100644 index 65a4947b3e..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/3.png b/front/public/images/large/ThaumicExploration/floatCandle/3.png deleted file mode 100644 index 94406b9531..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/4.png b/front/public/images/large/ThaumicExploration/floatCandle/4.png deleted file mode 100644 index 85f678b922..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/5.png b/front/public/images/large/ThaumicExploration/floatCandle/5.png deleted file mode 100644 index 75e560d667..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/6.png b/front/public/images/large/ThaumicExploration/floatCandle/6.png deleted file mode 100644 index c8ad445a56..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/7.png b/front/public/images/large/ThaumicExploration/floatCandle/7.png deleted file mode 100644 index aa914ed187..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/8.png b/front/public/images/large/ThaumicExploration/floatCandle/8.png deleted file mode 100644 index 7afabeb306..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/floatCandle/9.png b/front/public/images/large/ThaumicExploration/floatCandle/9.png deleted file mode 100644 index fdf0ef83f1..0000000000 Binary files a/front/public/images/large/ThaumicExploration/floatCandle/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/0.png b/front/public/images/large/ThaumicExploration/jarSeal/0.png deleted file mode 100644 index b56bfdb01d..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/1.png b/front/public/images/large/ThaumicExploration/jarSeal/1.png deleted file mode 100644 index a38784c5f9..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/10.png b/front/public/images/large/ThaumicExploration/jarSeal/10.png deleted file mode 100644 index 3849a74603..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/11.png b/front/public/images/large/ThaumicExploration/jarSeal/11.png deleted file mode 100644 index 234e834e35..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/12.png b/front/public/images/large/ThaumicExploration/jarSeal/12.png deleted file mode 100644 index dcd8404a89..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/13.png b/front/public/images/large/ThaumicExploration/jarSeal/13.png deleted file mode 100644 index a7d11e40b6..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/14.png b/front/public/images/large/ThaumicExploration/jarSeal/14.png deleted file mode 100644 index e00a1ee645..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/15.png b/front/public/images/large/ThaumicExploration/jarSeal/15.png deleted file mode 100644 index b1dbbc2c64..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/2.png b/front/public/images/large/ThaumicExploration/jarSeal/2.png deleted file mode 100644 index f93126f796..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/3.png b/front/public/images/large/ThaumicExploration/jarSeal/3.png deleted file mode 100644 index 983d1191d8..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/4.png b/front/public/images/large/ThaumicExploration/jarSeal/4.png deleted file mode 100644 index 1a0eaab57d..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/5.png b/front/public/images/large/ThaumicExploration/jarSeal/5.png deleted file mode 100644 index 03ebcf1679..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/6.png b/front/public/images/large/ThaumicExploration/jarSeal/6.png deleted file mode 100644 index c92f1f704c..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/7.png b/front/public/images/large/ThaumicExploration/jarSeal/7.png deleted file mode 100644 index 889cee963b..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/8.png b/front/public/images/large/ThaumicExploration/jarSeal/8.png deleted file mode 100644 index f50edbaf99..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/jarSeal/9.png b/front/public/images/large/ThaumicExploration/jarSeal/9.png deleted file mode 100644 index 9e14dc718f..0000000000 Binary files a/front/public/images/large/ThaumicExploration/jarSeal/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/mechanistCap/0.png b/front/public/images/large/ThaumicExploration/mechanistCap/0.png deleted file mode 100644 index 2eaac68f3f..0000000000 Binary files a/front/public/images/large/ThaumicExploration/mechanistCap/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/mechanistCapUncharged/0.png b/front/public/images/large/ThaumicExploration/mechanistCapUncharged/0.png deleted file mode 100644 index 2eaac68f3f..0000000000 Binary files a/front/public/images/large/ThaumicExploration/mechanistCapUncharged/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/meltyIce/0.png b/front/public/images/large/ThaumicExploration/meltyIce/0.png deleted file mode 100644 index a8e61025d7..0000000000 Binary files a/front/public/images/large/ThaumicExploration/meltyIce/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/necroStaffCore/0.png b/front/public/images/large/ThaumicExploration/necroStaffCore/0.png deleted file mode 100644 index d5bf0a1a99..0000000000 Binary files a/front/public/images/large/ThaumicExploration/necroStaffCore/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/pureZombieBrain/0.png b/front/public/images/large/ThaumicExploration/pureZombieBrain/0.png deleted file mode 100644 index bb3729e8ee..0000000000 Binary files a/front/public/images/large/ThaumicExploration/pureZombieBrain/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/replicator/0.png b/front/public/images/large/ThaumicExploration/replicator/0.png deleted file mode 100644 index ad7be478b0..0000000000 Binary files a/front/public/images/large/ThaumicExploration/replicator/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/sojournerCap/0.png b/front/public/images/large/ThaumicExploration/sojournerCap/0.png deleted file mode 100644 index fef1a5daa4..0000000000 Binary files a/front/public/images/large/ThaumicExploration/sojournerCap/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/sojournerCapUncharged/0.png b/front/public/images/large/ThaumicExploration/sojournerCapUncharged/0.png deleted file mode 100644 index fef1a5daa4..0000000000 Binary files a/front/public/images/large/ThaumicExploration/sojournerCapUncharged/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/soulBrazier/0.png b/front/public/images/large/ThaumicExploration/soulBrazier/0.png deleted file mode 100644 index 1e9c973613..0000000000 Binary files a/front/public/images/large/ThaumicExploration/soulBrazier/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/stabilizerBelt/0.png b/front/public/images/large/ThaumicExploration/stabilizerBelt/0.png deleted file mode 100644 index af6f46912d..0000000000 Binary files a/front/public/images/large/ThaumicExploration/stabilizerBelt/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/taintBerry/0.png b/front/public/images/large/ThaumicExploration/taintBerry/0.png deleted file mode 100644 index 153a4234c2..0000000000 Binary files a/front/public/images/large/ThaumicExploration/taintBerry/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/talismanFood/0.png b/front/public/images/large/ThaumicExploration/talismanFood/0.png deleted file mode 100644 index 6a572e5839..0000000000 Binary files a/front/public/images/large/ThaumicExploration/talismanFood/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/tentacleRing/0.png b/front/public/images/large/ThaumicExploration/tentacleRing/0.png deleted file mode 100644 index 4a66b563a1..0000000000 Binary files a/front/public/images/large/ThaumicExploration/tentacleRing/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/thinkTankJar/0.png b/front/public/images/large/ThaumicExploration/thinkTankJar/0.png deleted file mode 100644 index 77f37bda7e..0000000000 Binary files a/front/public/images/large/ThaumicExploration/thinkTankJar/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/transmutationCore/0.png b/front/public/images/large/ThaumicExploration/transmutationCore/0.png deleted file mode 100644 index 3b5aa7c51c..0000000000 Binary files a/front/public/images/large/ThaumicExploration/transmutationCore/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/transmutationStaffCore/0.png b/front/public/images/large/ThaumicExploration/transmutationStaffCore/0.png deleted file mode 100644 index 1880e07030..0000000000 Binary files a/front/public/images/large/ThaumicExploration/transmutationStaffCore/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicExploration/trashJar/0.png b/front/public/images/large/ThaumicExploration/trashJar/0.png deleted file mode 100644 index 30b4d296d9..0000000000 Binary files a/front/public/images/large/ThaumicExploration/trashJar/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/Golemancy Bell TH/0.png b/front/public/images/large/ThaumicHorizons/Golemancy Bell TH/0.png deleted file mode 100644 index 4ad6bc483c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/Golemancy Bell TH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/alchemite/0.png b/front/public/images/large/ThaumicHorizons/alchemite/0.png deleted file mode 100644 index eca6c734bb..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/alchemite/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/amuletMirror/0.png b/front/public/images/large/ThaumicHorizons/amuletMirror/0.png deleted file mode 100644 index fc3a430c6e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/amuletMirror/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/barChocolate/0.png b/front/public/images/large/ThaumicHorizons/barChocolate/0.png deleted file mode 100644 index 6b32d63574..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/barChocolate/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/bloodInfuser/0.png b/front/public/images/large/ThaumicHorizons/bloodInfuser/0.png deleted file mode 100644 index e8e4c9fbd6..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/bloodInfuser/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/boatGreatwood/0.png b/front/public/images/large/ThaumicHorizons/boatGreatwood/0.png deleted file mode 100644 index 7a44cb6d29..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/boatGreatwood/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/boatThaumium/0.png b/front/public/images/large/ThaumicHorizons/boatThaumium/0.png deleted file mode 100644 index 6e63023294..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/boatThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/boneTH/0.png b/front/public/images/large/ThaumicHorizons/boneTH/0.png deleted file mode 100644 index 9518095d2f..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/boneTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/brainTH/0.png b/front/public/images/large/ThaumicHorizons/brainTH/0.png deleted file mode 100644 index 194c0eb0e1..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/brainTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/bucketChocolate/0.png b/front/public/images/large/ThaumicHorizons/bucketChocolate/0.png deleted file mode 100644 index b25617625d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/bucketChocolate/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/chocolate/0.png b/front/public/images/large/ThaumicHorizons/chocolate/0.png deleted file mode 100644 index 560d16ba8c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/chocolate/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/1.png b/front/public/images/large/ThaumicHorizons/cloudGlowingTH/1.png deleted file mode 100644 index 81080f6773..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/4.png b/front/public/images/large/ThaumicHorizons/cloudGlowingTH/4.png deleted file mode 100644 index 32fc3c67b8..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/6.png b/front/public/images/large/ThaumicHorizons/cloudGlowingTH/6.png deleted file mode 100644 index a43fca8d55..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/7.png b/front/public/images/large/ThaumicHorizons/cloudGlowingTH/7.png deleted file mode 100644 index 12a8a9de27..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/9.png b/front/public/images/large/ThaumicHorizons/cloudGlowingTH/9.png deleted file mode 100644 index 3141bfe5f6..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudGlowingTH/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudTH/0.png b/front/public/images/large/ThaumicHorizons/cloudTH/0.png deleted file mode 100644 index 081a8fa5b1..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudTH/2.png b/front/public/images/large/ThaumicHorizons/cloudTH/2.png deleted file mode 100644 index c6e8ebbc18..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudTH/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudTH/3.png b/front/public/images/large/ThaumicHorizons/cloudTH/3.png deleted file mode 100644 index 94592e7856..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudTH/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudTH/5.png b/front/public/images/large/ThaumicHorizons/cloudTH/5.png deleted file mode 100644 index bb6803e2be..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudTH/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/cloudTH/8.png b/front/public/images/large/ThaumicHorizons/cloudTH/8.png deleted file mode 100644 index e7d510a85e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/cloudTH/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/corpseEffigy/0.png b/front/public/images/large/ThaumicHorizons/corpseEffigy/0.png deleted file mode 100644 index d4c11295fd..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/corpseEffigy/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalDeep/0.png b/front/public/images/large/ThaumicHorizons/crystalDeep/0.png deleted file mode 100644 index d7c0e700c2..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalDeep/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/0.png b/front/public/images/large/ThaumicHorizons/crystalTH/0.png deleted file mode 100644 index 2b544368f3..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/1.png b/front/public/images/large/ThaumicHorizons/crystalTH/1.png deleted file mode 100644 index 9c95fc6a89..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/10.png b/front/public/images/large/ThaumicHorizons/crystalTH/10.png deleted file mode 100644 index 5b4139fdf8..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/11.png b/front/public/images/large/ThaumicHorizons/crystalTH/11.png deleted file mode 100644 index 92a7636960..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/12.png b/front/public/images/large/ThaumicHorizons/crystalTH/12.png deleted file mode 100644 index 1a758ffeca..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/13.png b/front/public/images/large/ThaumicHorizons/crystalTH/13.png deleted file mode 100644 index 8c73f53ca1..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/14.png b/front/public/images/large/ThaumicHorizons/crystalTH/14.png deleted file mode 100644 index d7c0e700c2..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/15.png b/front/public/images/large/ThaumicHorizons/crystalTH/15.png deleted file mode 100644 index ca8d456d17..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/2.png b/front/public/images/large/ThaumicHorizons/crystalTH/2.png deleted file mode 100644 index 2d21555a81..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/3.png b/front/public/images/large/ThaumicHorizons/crystalTH/3.png deleted file mode 100644 index ca944fa11c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/4.png b/front/public/images/large/ThaumicHorizons/crystalTH/4.png deleted file mode 100644 index dfb548d371..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/5.png b/front/public/images/large/ThaumicHorizons/crystalTH/5.png deleted file mode 100644 index 3728387500..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/6.png b/front/public/images/large/ThaumicHorizons/crystalTH/6.png deleted file mode 100644 index 0844f52724..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/7.png b/front/public/images/large/ThaumicHorizons/crystalTH/7.png deleted file mode 100644 index 60e1f6bb9e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/8.png b/front/public/images/large/ThaumicHorizons/crystalTH/8.png deleted file mode 100644 index e72794fdce..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalTH/9.png b/front/public/images/large/ThaumicHorizons/crystalTH/9.png deleted file mode 100644 index 6806d86a8f..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalTH/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/crystalWand/0.png b/front/public/images/large/ThaumicHorizons/crystalWand/0.png deleted file mode 100644 index 96daeddad4..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/crystalWand/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/dummy/0.png b/front/public/images/large/ThaumicHorizons/dummy/0.png deleted file mode 100644 index fbcc6ebede..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/dummy/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/dummyVat/0.png b/front/public/images/large/ThaumicHorizons/dummyVat/0.png deleted file mode 100644 index 69a97bead7..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/dummyVat/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/dustTH/0.png b/front/public/images/large/ThaumicHorizons/dustTH/0.png deleted file mode 100644 index 9f608cee52..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/dustTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/eggIncubated/0.png b/front/public/images/large/ThaumicHorizons/eggIncubated/0.png deleted file mode 100644 index 03ee47e88d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/eggIncubated/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/essentiaDynamo/0.png b/front/public/images/large/ThaumicHorizons/essentiaDynamo/0.png deleted file mode 100644 index 07959b1e2d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/essentiaDynamo/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/evanescent/0.png b/front/public/images/large/ThaumicHorizons/evanescent/0.png deleted file mode 100644 index 77ccdf56ef..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/evanescent/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/eyeTH/0.png b/front/public/images/large/ThaumicHorizons/eyeTH/0.png deleted file mode 100644 index 17fb2bffdd..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/eyeTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/fleshTH/0.png b/front/public/images/large/ThaumicHorizons/fleshTH/0.png deleted file mode 100644 index fa14d7a069..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/fleshTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusAnimation/0.png b/front/public/images/large/ThaumicHorizons/focusAnimation/0.png deleted file mode 100644 index b74eb7e41e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusAnimation/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusContainment/0.png b/front/public/images/large/ThaumicHorizons/focusContainment/0.png deleted file mode 100644 index 6f5fd2d2fb..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusContainment/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusDisintegration/0.png b/front/public/images/large/ThaumicHorizons/focusDisintegration/0.png deleted file mode 100644 index 1216a217ba..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusDisintegration/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/0.png b/front/public/images/large/ThaumicHorizons/focusIllumination/0.png deleted file mode 100644 index 591b3fe6c6..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/1.png b/front/public/images/large/ThaumicHorizons/focusIllumination/1.png deleted file mode 100644 index a612c96e0e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/10.png b/front/public/images/large/ThaumicHorizons/focusIllumination/10.png deleted file mode 100644 index 49b55e00de..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/11.png b/front/public/images/large/ThaumicHorizons/focusIllumination/11.png deleted file mode 100644 index 1ba94cf9f1..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/12.png b/front/public/images/large/ThaumicHorizons/focusIllumination/12.png deleted file mode 100644 index 1325504ec4..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/13.png b/front/public/images/large/ThaumicHorizons/focusIllumination/13.png deleted file mode 100644 index 8196138880..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/14.png b/front/public/images/large/ThaumicHorizons/focusIllumination/14.png deleted file mode 100644 index cc26ac9beb..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/15.png b/front/public/images/large/ThaumicHorizons/focusIllumination/15.png deleted file mode 100644 index fd64fb5d42..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/2.png b/front/public/images/large/ThaumicHorizons/focusIllumination/2.png deleted file mode 100644 index c622cba5f1..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/3.png b/front/public/images/large/ThaumicHorizons/focusIllumination/3.png deleted file mode 100644 index 5158f06b1b..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/4.png b/front/public/images/large/ThaumicHorizons/focusIllumination/4.png deleted file mode 100644 index ba518eb5bb..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/5.png b/front/public/images/large/ThaumicHorizons/focusIllumination/5.png deleted file mode 100644 index fb9aa1d582..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/6.png b/front/public/images/large/ThaumicHorizons/focusIllumination/6.png deleted file mode 100644 index e64f8c2738..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/7.png b/front/public/images/large/ThaumicHorizons/focusIllumination/7.png deleted file mode 100644 index 38db6e6d54..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/8.png b/front/public/images/large/ThaumicHorizons/focusIllumination/8.png deleted file mode 100644 index e202a4e129..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusIllumination/9.png b/front/public/images/large/ThaumicHorizons/focusIllumination/9.png deleted file mode 100644 index 026c2c09fa..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusIllumination/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/focusLiquefaction/0.png b/front/public/images/large/ThaumicHorizons/focusLiquefaction/0.png deleted file mode 100644 index 8a421c23e0..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/focusLiquefaction/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/gatewayTH/0.png b/front/public/images/large/ThaumicHorizons/gatewayTH/0.png deleted file mode 100644 index 03e68c7d61..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/gatewayTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/goldEgg/0.png b/front/public/images/large/ThaumicHorizons/goldEgg/0.png deleted file mode 100644 index 66346269b3..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/goldEgg/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/0.png b/front/public/images/large/ThaumicHorizons/golemPlacer/0.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/1.png b/front/public/images/large/ThaumicHorizons/golemPlacer/1.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/2.png b/front/public/images/large/ThaumicHorizons/golemPlacer/2.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/3.png b/front/public/images/large/ThaumicHorizons/golemPlacer/3.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/4.png b/front/public/images/large/ThaumicHorizons/golemPlacer/4.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/5.png b/front/public/images/large/ThaumicHorizons/golemPlacer/5.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/6.png b/front/public/images/large/ThaumicHorizons/golemPlacer/6.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPlacer/7.png b/front/public/images/large/ThaumicHorizons/golemPlacer/7.png deleted file mode 100644 index 38a89d1496..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPlacer/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/golemPowder/0.png b/front/public/images/large/ThaumicHorizons/golemPowder/0.png deleted file mode 100644 index da7dd6fa0d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/golemPowder/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/iceCream/0.png b/front/public/images/large/ThaumicHorizons/iceCream/0.png deleted file mode 100644 index e1c325cd7d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/iceCream/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/1.png b/front/public/images/large/ThaumicHorizons/infusionCheat/1.png deleted file mode 100644 index 8f24e63083..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/10.png b/front/public/images/large/ThaumicHorizons/infusionCheat/10.png deleted file mode 100644 index 8f9939ab6a..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/2.png b/front/public/images/large/ThaumicHorizons/infusionCheat/2.png deleted file mode 100644 index 10a118332c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/3.png b/front/public/images/large/ThaumicHorizons/infusionCheat/3.png deleted file mode 100644 index a7b63fd5fd..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/4.png b/front/public/images/large/ThaumicHorizons/infusionCheat/4.png deleted file mode 100644 index 58041b1b0a..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/5.png b/front/public/images/large/ThaumicHorizons/infusionCheat/5.png deleted file mode 100644 index 658eb01ab9..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/6.png b/front/public/images/large/ThaumicHorizons/infusionCheat/6.png deleted file mode 100644 index 928c97d7d5..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/7.png b/front/public/images/large/ThaumicHorizons/infusionCheat/7.png deleted file mode 100644 index 7c3f69be46..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/8.png b/front/public/images/large/ThaumicHorizons/infusionCheat/8.png deleted file mode 100644 index 95e37684d1..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionCheat/9.png b/front/public/images/large/ThaumicHorizons/infusionCheat/9.png deleted file mode 100644 index 9a12eb6427..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionCheat/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/1.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/1.png deleted file mode 100644 index 8f24e63083..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/10.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/10.png deleted file mode 100644 index 7f1960e18c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/2.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/2.png deleted file mode 100644 index 74d4912d62..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/3.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/3.png deleted file mode 100644 index a7b63fd5fd..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/4.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/4.png deleted file mode 100644 index 58041b1b0a..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/5.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/5.png deleted file mode 100644 index 4228dd5777..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/6.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/6.png deleted file mode 100644 index 99acf5d0e7..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/7.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/7.png deleted file mode 100644 index 75f05b3099..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/8.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/8.png deleted file mode 100644 index 8a5ff9fe62..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/9.png b/front/public/images/large/ThaumicHorizons/infusionSelfCheat/9.png deleted file mode 100644 index 6b680e5c35..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/infusionSelfCheat/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/injector/0.png b/front/public/images/large/ThaumicHorizons/injector/0.png deleted file mode 100644 index f3c0a43e32..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/injector/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/inkEgg/0.png b/front/public/images/large/ThaumicHorizons/inkEgg/0.png deleted file mode 100644 index 8c64c90868..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/inkEgg/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/inspiratron/0.png b/front/public/images/large/ThaumicHorizons/inspiratron/0.png deleted file mode 100644 index 00f84c1d1d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/inspiratron/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/keystoneTH/0.png b/front/public/images/large/ThaumicHorizons/keystoneTH/0.png deleted file mode 100644 index 5969205039..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/keystoneTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/lensAir/0.png b/front/public/images/large/ThaumicHorizons/lensAir/0.png deleted file mode 100644 index 8ff0356beb..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/lensAir/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/lensCase/0.png b/front/public/images/large/ThaumicHorizons/lensCase/0.png deleted file mode 100644 index 79fe9175f5..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/lensCase/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/lensEarth/0.png b/front/public/images/large/ThaumicHorizons/lensEarth/0.png deleted file mode 100644 index 2c3f7d6339..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/lensEarth/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/lensFire/0.png b/front/public/images/large/ThaumicHorizons/lensFire/0.png deleted file mode 100644 index 24e8edeb09..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/lensFire/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/lensOrderEntropy/0.png b/front/public/images/large/ThaumicHorizons/lensOrderEntropy/0.png deleted file mode 100644 index f7329642e2..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/lensOrderEntropy/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/lensWater/0.png b/front/public/images/large/ThaumicHorizons/lensWater/0.png deleted file mode 100644 index 75d2125754..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/lensWater/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/leviathanTH/0.png b/front/public/images/large/ThaumicHorizons/leviathanTH/0.png deleted file mode 100644 index dc085a6251..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/leviathanTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/light/0.png b/front/public/images/large/ThaumicHorizons/light/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/light/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/lightSolar/0.png b/front/public/images/large/ThaumicHorizons/lightSolar/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/lightSolar/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/meatCookedTH/0.png b/front/public/images/large/ThaumicHorizons/meatCookedTH/0.png deleted file mode 100644 index 447dc59ace..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/meatCookedTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/meatNuggetTH/0.png b/front/public/images/large/ThaumicHorizons/meatNuggetTH/0.png deleted file mode 100644 index 56eed7863c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/meatNuggetTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/meatTH/0.png b/front/public/images/large/ThaumicHorizons/meatTH/0.png deleted file mode 100644 index c7146ba385..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/meatTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/modMatrix/0.png b/front/public/images/large/ThaumicHorizons/modMatrix/0.png deleted file mode 100644 index 4018ac86cc..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/modMatrix/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/nodeCheat/0.png b/front/public/images/large/ThaumicHorizons/nodeCheat/0.png deleted file mode 100644 index 10f5f754e7..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/nodeCheat/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/nodeMonitor/0.png b/front/public/images/large/ThaumicHorizons/nodeMonitor/0.png deleted file mode 100644 index c1b824175c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/nodeMonitor/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/nutrients/0.png b/front/public/images/large/ThaumicHorizons/nutrients/0.png deleted file mode 100644 index becbe83d3d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/nutrients/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/planarConduit/0.png b/front/public/images/large/ThaumicHorizons/planarConduit/0.png deleted file mode 100644 index a0f07acef7..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/planarConduit/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/portalTH/0.png b/front/public/images/large/ThaumicHorizons/portalTH/0.png deleted file mode 100644 index 608badc5ef..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/portalTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/recombinator/0.png b/front/public/images/large/ThaumicHorizons/recombinator/0.png deleted file mode 100644 index 07416d02d6..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/recombinator/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/slotTH/0.png b/front/public/images/large/ThaumicHorizons/slotTH/0.png deleted file mode 100644 index 1d39e0a487..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/slotTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/soulBeacon/0.png b/front/public/images/large/ThaumicHorizons/soulBeacon/0.png deleted file mode 100644 index 53fc7ec00e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/soulBeacon/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/soulJar/0.png b/front/public/images/large/ThaumicHorizons/soulJar/0.png deleted file mode 100644 index d5d385e7cd..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/soulJar/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/soulSieve/0.png b/front/public/images/large/ThaumicHorizons/soulSieve/0.png deleted file mode 100644 index ed4139ce4c..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/soulSieve/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/soulforge/0.png b/front/public/images/large/ThaumicHorizons/soulforge/0.png deleted file mode 100644 index c457916051..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/soulforge/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/0.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/0.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/1.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/1.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/10.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/10.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/11.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/11.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/12.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/12.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/13.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/13.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/14.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/14.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/15.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/15.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/16.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/16.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/16.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/17.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/17.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/17.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/18.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/18.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/18.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/19.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/19.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/19.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/2.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/2.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/20.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/20.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/20.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/21.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/21.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/21.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/22.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/22.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/22.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/3.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/3.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/4.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/4.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/5.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/5.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/6.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/6.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/7.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/7.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/8.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/8.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spawnerEgg/9.png b/front/public/images/large/ThaumicHorizons/spawnerEgg/9.png deleted file mode 100644 index ab579fdd01..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spawnerEgg/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spikeTH/0.png b/front/public/images/large/ThaumicHorizons/spikeTH/0.png deleted file mode 100644 index 2fa2be784e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spikeTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spikeToothTH/0.png b/front/public/images/large/ThaumicHorizons/spikeToothTH/0.png deleted file mode 100644 index 26a5f97733..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spikeToothTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/spikeWoodTH/0.png b/front/public/images/large/ThaumicHorizons/spikeWoodTH/0.png deleted file mode 100644 index 62b05d25e5..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/spikeWoodTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/suicidePill/0.png b/front/public/images/large/ThaumicHorizons/suicidePill/0.png deleted file mode 100644 index ea2040914e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/suicidePill/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/synthNode/0.png b/front/public/images/large/ThaumicHorizons/synthNode/0.png deleted file mode 100644 index 4d1e5b4a3a..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/synthNode/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeBlood/0.png b/front/public/images/large/ThaumicHorizons/syringeBlood/0.png deleted file mode 100644 index f59cb0eb85..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeBlood/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeBlood/1.png b/front/public/images/large/ThaumicHorizons/syringeBlood/1.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeBlood/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeEmpty/0.png b/front/public/images/large/ThaumicHorizons/syringeEmpty/0.png deleted file mode 100644 index 5364b782b9..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeEmpty/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/0.png b/front/public/images/large/ThaumicHorizons/syringeInjection/0.png deleted file mode 100644 index 367c288829..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/1.png b/front/public/images/large/ThaumicHorizons/syringeInjection/1.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/10.png b/front/public/images/large/ThaumicHorizons/syringeInjection/10.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/11.png b/front/public/images/large/ThaumicHorizons/syringeInjection/11.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/12.png b/front/public/images/large/ThaumicHorizons/syringeInjection/12.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/13.png b/front/public/images/large/ThaumicHorizons/syringeInjection/13.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/14.png b/front/public/images/large/ThaumicHorizons/syringeInjection/14.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/15.png b/front/public/images/large/ThaumicHorizons/syringeInjection/15.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/2.png b/front/public/images/large/ThaumicHorizons/syringeInjection/2.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/3.png b/front/public/images/large/ThaumicHorizons/syringeInjection/3.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/4.png b/front/public/images/large/ThaumicHorizons/syringeInjection/4.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/5.png b/front/public/images/large/ThaumicHorizons/syringeInjection/5.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/6.png b/front/public/images/large/ThaumicHorizons/syringeInjection/6.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/7.png b/front/public/images/large/ThaumicHorizons/syringeInjection/7.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/8.png b/front/public/images/large/ThaumicHorizons/syringeInjection/8.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/syringeInjection/9.png b/front/public/images/large/ThaumicHorizons/syringeInjection/9.png deleted file mode 100644 index 415ef64810..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/syringeInjection/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/transductionAmplifier/0.png b/front/public/images/large/ThaumicHorizons/transductionAmplifier/0.png deleted file mode 100644 index a211044eb2..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/transductionAmplifier/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/vat/0.png b/front/public/images/large/ThaumicHorizons/vat/0.png deleted file mode 100644 index 339190e100..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/vat/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/vatInterior/0.png b/front/public/images/large/ThaumicHorizons/vatInterior/0.png deleted file mode 100644 index b764887b4e..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/vatInterior/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/vatSolid/0.png b/front/public/images/large/ThaumicHorizons/vatSolid/0.png deleted file mode 100644 index 34dc625f9a..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/vatSolid/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/visDynamo/0.png b/front/public/images/large/ThaumicHorizons/visDynamo/0.png deleted file mode 100644 index a654458fd6..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/visDynamo/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/voidPutty/0.png b/front/public/images/large/ThaumicHorizons/voidPutty/0.png deleted file mode 100644 index fe9853f92d..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/voidPutty/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/voidTH/0.png b/front/public/images/large/ThaumicHorizons/voidTH/0.png deleted file mode 100644 index 4a490a5ac2..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/voidTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/vortexStabilizer/0.png b/front/public/images/large/ThaumicHorizons/vortexStabilizer/0.png deleted file mode 100644 index 44db146d0f..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/vortexStabilizer/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/vortexTH/0.png b/front/public/images/large/ThaumicHorizons/vortexTH/0.png deleted file mode 100644 index 6884b89169..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/vortexTH/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/vortexTH/1.png b/front/public/images/large/ThaumicHorizons/vortexTH/1.png deleted file mode 100644 index 6884b89169..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/vortexTH/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicHorizons/wandCastingDisposable/0.png b/front/public/images/large/ThaumicHorizons/wandCastingDisposable/0.png deleted file mode 100644 index 1ab5d0a5d4..0000000000 Binary files a/front/public/images/large/ThaumicHorizons/wandCastingDisposable/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicMachina/metaphysicalBrick/0.png b/front/public/images/large/ThaumicMachina/metaphysicalBrick/0.png deleted file mode 100644 index eb17310ab4..0000000000 Binary files a/front/public/images/large/ThaumicMachina/metaphysicalBrick/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicMachina/metaphysicalRose/0.png b/front/public/images/large/ThaumicMachina/metaphysicalRose/0.png deleted file mode 100644 index eb902add08..0000000000 Binary files a/front/public/images/large/ThaumicMachina/metaphysicalRose/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicMachina/nodeAugmentation/0.png b/front/public/images/large/ThaumicMachina/nodeAugmentation/0.png deleted file mode 100644 index b88edc262a..0000000000 Binary files a/front/public/images/large/ThaumicMachina/nodeAugmentation/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicMachina/nodeTransmodifier/0.png b/front/public/images/large/ThaumicMachina/nodeTransmodifier/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ThaumicMachina/nodeTransmodifier/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicMachina/wandAugmentationCore/0.png b/front/public/images/large/ThaumicMachina/wandAugmentationCore/0.png deleted file mode 100644 index 4bf34e1afa..0000000000 Binary files a/front/public/images/large/ThaumicMachina/wandAugmentationCore/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicMachina/wandCore/0.png b/front/public/images/large/ThaumicMachina/wandCore/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ThaumicMachina/wandCore/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/Levitational Locomotive Relay/0.png b/front/public/images/large/ThaumicTinkerer/Levitational Locomotive Relay/0.png deleted file mode 100644 index 5623d767ff..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/Levitational Locomotive Relay/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/Levitational Locomotive/0.png b/front/public/images/large/ThaumicTinkerer/Levitational Locomotive/0.png deleted file mode 100644 index 8dbcc52358..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/Levitational Locomotive/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/animationTablet/0.png b/front/public/images/large/ThaumicTinkerer/animationTablet/0.png deleted file mode 100644 index 3e84924b87..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/animationTablet/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/bedrockPortal/0.png b/front/public/images/large/ThaumicTinkerer/bedrockPortal/0.png deleted file mode 100644 index d4ecd2ac76..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/bedrockPortal/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/blockTalisman/0.png b/front/public/images/large/ThaumicTinkerer/blockTalisman/0.png deleted file mode 100644 index 57e5cb2b23..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/blockTalisman/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/bloodSword/0.png b/front/public/images/large/ThaumicTinkerer/bloodSword/0.png deleted file mode 100644 index 32b3b11431..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/bloodSword/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/brightNitor/0.png b/front/public/images/large/ThaumicTinkerer/brightNitor/0.png deleted file mode 100644 index 007fbae363..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/brightNitor/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/catAmulet/0.png b/front/public/images/large/ThaumicTinkerer/catAmulet/0.png deleted file mode 100644 index 320e572470..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/catAmulet/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/cleansingTalisman/0.png b/front/public/images/large/ThaumicTinkerer/cleansingTalisman/0.png deleted file mode 100644 index 9d32e8139a..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/cleansingTalisman/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/connector/0.png b/front/public/images/large/ThaumicTinkerer/connector/0.png deleted file mode 100644 index ba66983755..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/connector/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/darkQuartz/0.png b/front/public/images/large/ThaumicTinkerer/darkQuartz/0.png deleted file mode 100644 index 962fe5cf33..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/darkQuartz/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/darkQuartz/1.png b/front/public/images/large/ThaumicTinkerer/darkQuartz/1.png deleted file mode 100644 index 1e0032eaf2..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/darkQuartz/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/darkQuartz/2.png b/front/public/images/large/ThaumicTinkerer/darkQuartz/2.png deleted file mode 100644 index b4fca2a903..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/darkQuartz/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/darkQuartzItem/0.png b/front/public/images/large/ThaumicTinkerer/darkQuartzItem/0.png deleted file mode 100644 index bc2cf71790..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/darkQuartzItem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/darkQuartzSlab/0.png b/front/public/images/large/ThaumicTinkerer/darkQuartzSlab/0.png deleted file mode 100644 index 201c994f7f..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/darkQuartzSlab/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/darkQuartzSlabFull/0.png b/front/public/images/large/ThaumicTinkerer/darkQuartzSlabFull/0.png deleted file mode 100644 index 962fe5cf33..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/darkQuartzSlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/darkQuartzStairs/0.png b/front/public/images/large/ThaumicTinkerer/darkQuartzStairs/0.png deleted file mode 100644 index 8c1df517f0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/darkQuartzStairs/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/dislocator/0.png b/front/public/images/large/ThaumicTinkerer/dislocator/0.png deleted file mode 100644 index 489b9a2e22..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/dislocator/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/enchanter/0.png b/front/public/images/large/ThaumicTinkerer/enchanter/0.png deleted file mode 100644 index c1fd810e20..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/enchanter/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/fireAir/0.png b/front/public/images/large/ThaumicTinkerer/fireAir/0.png deleted file mode 100644 index f870a3931c..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/fireAir/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/fireChaos/0.png b/front/public/images/large/ThaumicTinkerer/fireChaos/0.png deleted file mode 100644 index ab424b1608..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/fireChaos/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/fireEarth/0.png b/front/public/images/large/ThaumicTinkerer/fireEarth/0.png deleted file mode 100644 index 3802c6ddf4..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/fireEarth/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/fireFire/0.png b/front/public/images/large/ThaumicTinkerer/fireFire/0.png deleted file mode 100644 index ae885cca8d..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/fireFire/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/fireOrder/0.png b/front/public/images/large/ThaumicTinkerer/fireOrder/0.png deleted file mode 100644 index 66e6ae3781..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/fireOrder/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/fireWater/0.png b/front/public/images/large/ThaumicTinkerer/fireWater/0.png deleted file mode 100644 index 75d6b7e7f0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/fireWater/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusDeflect/0.png b/front/public/images/large/ThaumicTinkerer/focusDeflect/0.png deleted file mode 100644 index 99741801ea..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusDeflect/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusDislocation/0.png b/front/public/images/large/ThaumicTinkerer/focusDislocation/0.png deleted file mode 100644 index 22f42575cc..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusDislocation/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusEnderChest/0.png b/front/public/images/large/ThaumicTinkerer/focusEnderChest/0.png deleted file mode 100644 index 463deede82..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusEnderChest/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusFlight/0.png b/front/public/images/large/ThaumicTinkerer/focusFlight/0.png deleted file mode 100644 index 2d398f4f09..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusFlight/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusHeal/0.png b/front/public/images/large/ThaumicTinkerer/focusHeal/0.png deleted file mode 100644 index be4ffd3bd5..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusHeal/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusRecall/0.png b/front/public/images/large/ThaumicTinkerer/focusRecall/0.png deleted file mode 100644 index 41eb62034a..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusRecall/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusShadowbeam/0.png b/front/public/images/large/ThaumicTinkerer/focusShadowbeam/0.png deleted file mode 100644 index e2a815e560..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusShadowbeam/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusSmelt/0.png b/front/public/images/large/ThaumicTinkerer/focusSmelt/0.png deleted file mode 100644 index b8cfe071dd..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusSmelt/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusTelekinesis/0.png b/front/public/images/large/ThaumicTinkerer/focusTelekinesis/0.png deleted file mode 100644 index 0e5541b3c8..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusTelekinesis/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/focusXPDrain/0.png b/front/public/images/large/ThaumicTinkerer/focusXPDrain/0.png deleted file mode 100644 index c0e68ae0c9..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/focusXPDrain/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/forcefield/0.png b/front/public/images/large/ThaumicTinkerer/forcefield/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/forcefield/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/funnel/0.png b/front/public/images/large/ThaumicTinkerer/funnel/0.png deleted file mode 100644 index 9152d7d547..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/funnel/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/gasRemover/0.png b/front/public/images/large/ThaumicTinkerer/gasRemover/0.png deleted file mode 100644 index 22ddf7b0da..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/gasRemover/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/gaseousLight/0.png b/front/public/images/large/ThaumicTinkerer/gaseousLight/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/gaseousLight/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/gaseousLightItem/0.png b/front/public/images/large/ThaumicTinkerer/gaseousLightItem/0.png deleted file mode 100644 index 7f090beb51..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/gaseousLightItem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/gaseousShadow/0.png b/front/public/images/large/ThaumicTinkerer/gaseousShadow/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/gaseousShadow/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/gaseousShadowItem/0.png b/front/public/images/large/ThaumicTinkerer/gaseousShadowItem/0.png deleted file mode 100644 index 4a6f9c50a8..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/gaseousShadowItem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorAxe/0.png b/front/public/images/large/ThaumicTinkerer/ichorAxe/0.png deleted file mode 100644 index 1f906dba01..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorAxe/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorAxeGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorAxeGem/0.png deleted file mode 100644 index 83867a70db..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorAxeGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorPick/0.png b/front/public/images/large/ThaumicTinkerer/ichorPick/0.png deleted file mode 100644 index d0f507a762..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorPick/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorPickGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorPickGem/0.png deleted file mode 100644 index 26cdec806f..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorPickGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorPouch/0.png b/front/public/images/large/ThaumicTinkerer/ichorPouch/0.png deleted file mode 100644 index e6e1db38c1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorPouch/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorShovel/0.png b/front/public/images/large/ThaumicTinkerer/ichorShovel/0.png deleted file mode 100644 index c5d7fe4594..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorShovel/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorShovelGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorShovelGem/0.png deleted file mode 100644 index 6300e543c1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorShovelGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorSword/0.png b/front/public/images/large/ThaumicTinkerer/ichorSword/0.png deleted file mode 100644 index 9d626b40bd..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorSword/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorSwordGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorSwordGem/0.png deleted file mode 100644 index bf2d8e5ac4..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorSwordGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothBoots/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothBoots/0.png deleted file mode 100644 index 8f52dd32da..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothBoots/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothBootsGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothBootsGem/0.png deleted file mode 100644 index c3045f649a..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothBootsGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothChest/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothChest/0.png deleted file mode 100644 index ea685ed8c1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothChest/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothChestGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothChestGem/0.png deleted file mode 100644 index 2522516114..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothChestGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothHelm/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothHelm/0.png deleted file mode 100644 index d16d7a894d..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothHelm/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothHelmGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothHelmGem/0.png deleted file mode 100644 index 1cae193530..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothHelmGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothLegs/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothLegs/0.png deleted file mode 100644 index dab5582858..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothLegs/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/ichorclothLegsGem/0.png b/front/public/images/large/ThaumicTinkerer/ichorclothLegsGem/0.png deleted file mode 100644 index cee68d61e1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/ichorclothLegsGem/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedFarmland/0.png b/front/public/images/large/ThaumicTinkerer/infusedFarmland/0.png deleted file mode 100644 index a01e22995c..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedFarmland/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedGrain/0.png b/front/public/images/large/ThaumicTinkerer/infusedGrain/0.png deleted file mode 100644 index 3cbf94fdeb..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedGrain/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedGrain/1.png b/front/public/images/large/ThaumicTinkerer/infusedGrain/1.png deleted file mode 100644 index c9a89418cb..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedGrain/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedGrain/2.png b/front/public/images/large/ThaumicTinkerer/infusedGrain/2.png deleted file mode 100644 index 65ea701d88..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedGrain/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedGrain/3.png b/front/public/images/large/ThaumicTinkerer/infusedGrain/3.png deleted file mode 100644 index 220ef3fd40..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedGrain/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedGrainBlock/0.png b/front/public/images/large/ThaumicTinkerer/infusedGrainBlock/0.png deleted file mode 100644 index ac9a738007..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedGrainBlock/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedInkwell/0.png b/front/public/images/large/ThaumicTinkerer/infusedInkwell/0.png deleted file mode 100644 index a12f069ca5..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedInkwell/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedPotion/0.png b/front/public/images/large/ThaumicTinkerer/infusedPotion/0.png deleted file mode 100644 index b2df1c1005..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedPotion/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedPotion/1.png b/front/public/images/large/ThaumicTinkerer/infusedPotion/1.png deleted file mode 100644 index db336bb531..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedPotion/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedPotion/2.png b/front/public/images/large/ThaumicTinkerer/infusedPotion/2.png deleted file mode 100644 index e1c32efa61..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedPotion/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedPotion/3.png b/front/public/images/large/ThaumicTinkerer/infusedPotion/3.png deleted file mode 100644 index cb5c8a1eaa..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedPotion/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/infusedSeeds/0.png b/front/public/images/large/ThaumicTinkerer/infusedSeeds/0.png deleted file mode 100644 index 263adcf36f..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/infusedSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/interface/0.png b/front/public/images/large/ThaumicTinkerer/interface/0.png deleted file mode 100644 index d856f3078d..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/interface/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/0.png b/front/public/images/large/ThaumicTinkerer/kamiResource/0.png deleted file mode 100644 index 2f9ea9db37..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/1.png b/front/public/images/large/ThaumicTinkerer/kamiResource/1.png deleted file mode 100644 index 0059795c11..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/2.png b/front/public/images/large/ThaumicTinkerer/kamiResource/2.png deleted file mode 100644 index 88ae5f803f..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/3.png b/front/public/images/large/ThaumicTinkerer/kamiResource/3.png deleted file mode 100644 index 160432a939..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/4.png b/front/public/images/large/ThaumicTinkerer/kamiResource/4.png deleted file mode 100644 index 8269f46547..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/5.png b/front/public/images/large/ThaumicTinkerer/kamiResource/5.png deleted file mode 100644 index d8a540d1d4..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/6.png b/front/public/images/large/ThaumicTinkerer/kamiResource/6.png deleted file mode 100644 index e5ae701d34..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/kamiResource/7.png b/front/public/images/large/ThaumicTinkerer/kamiResource/7.png deleted file mode 100644 index b4a3f66c66..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/kamiResource/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/magnet/0.png b/front/public/images/large/ThaumicTinkerer/magnet/0.png deleted file mode 100644 index 4e5836a3f2..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/magnet/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/magnet/1.png b/front/public/images/large/ThaumicTinkerer/magnet/1.png deleted file mode 100644 index 0401a08b8f..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/magnet/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/0.png b/front/public/images/large/ThaumicTinkerer/mobAspect/0.png deleted file mode 100644 index a7b20d6c0b..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/1.png b/front/public/images/large/ThaumicTinkerer/mobAspect/1.png deleted file mode 100644 index 155248dd9c..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/1.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/10.png b/front/public/images/large/ThaumicTinkerer/mobAspect/10.png deleted file mode 100644 index c94305d15b..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/10.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/11.png b/front/public/images/large/ThaumicTinkerer/mobAspect/11.png deleted file mode 100644 index d5c2da82e0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/11.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/12.png b/front/public/images/large/ThaumicTinkerer/mobAspect/12.png deleted file mode 100644 index ce203dbcfa..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/12.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/13.png b/front/public/images/large/ThaumicTinkerer/mobAspect/13.png deleted file mode 100644 index 83a6886d85..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/13.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/14.png b/front/public/images/large/ThaumicTinkerer/mobAspect/14.png deleted file mode 100644 index 10f9ce62ce..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/14.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/15.png b/front/public/images/large/ThaumicTinkerer/mobAspect/15.png deleted file mode 100644 index 9df7758034..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/15.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/16.png b/front/public/images/large/ThaumicTinkerer/mobAspect/16.png deleted file mode 100644 index 07e01c4d24..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/16.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/2.png b/front/public/images/large/ThaumicTinkerer/mobAspect/2.png deleted file mode 100644 index 0c5045c23d..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/2.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/3.png b/front/public/images/large/ThaumicTinkerer/mobAspect/3.png deleted file mode 100644 index 1cd94bc033..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/3.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/4.png b/front/public/images/large/ThaumicTinkerer/mobAspect/4.png deleted file mode 100644 index 37b787f485..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/4.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/42.png b/front/public/images/large/ThaumicTinkerer/mobAspect/42.png deleted file mode 100644 index a7b20d6c0b..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/42.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/43.png b/front/public/images/large/ThaumicTinkerer/mobAspect/43.png deleted file mode 100644 index 155248dd9c..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/43.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/44.png b/front/public/images/large/ThaumicTinkerer/mobAspect/44.png deleted file mode 100644 index 0c5045c23d..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/44.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/45.png b/front/public/images/large/ThaumicTinkerer/mobAspect/45.png deleted file mode 100644 index 1cd94bc033..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/45.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/46.png b/front/public/images/large/ThaumicTinkerer/mobAspect/46.png deleted file mode 100644 index 37b787f485..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/46.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/47.png b/front/public/images/large/ThaumicTinkerer/mobAspect/47.png deleted file mode 100644 index f8e97635f1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/47.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/48.png b/front/public/images/large/ThaumicTinkerer/mobAspect/48.png deleted file mode 100644 index e7beb388bf..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/48.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/49.png b/front/public/images/large/ThaumicTinkerer/mobAspect/49.png deleted file mode 100644 index 2ffed41502..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/49.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/5.png b/front/public/images/large/ThaumicTinkerer/mobAspect/5.png deleted file mode 100644 index f8e97635f1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/5.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/50.png b/front/public/images/large/ThaumicTinkerer/mobAspect/50.png deleted file mode 100644 index f439a2a3b0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/50.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/51.png b/front/public/images/large/ThaumicTinkerer/mobAspect/51.png deleted file mode 100644 index 030db56ed0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/51.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/52.png b/front/public/images/large/ThaumicTinkerer/mobAspect/52.png deleted file mode 100644 index c94305d15b..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/52.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/53.png b/front/public/images/large/ThaumicTinkerer/mobAspect/53.png deleted file mode 100644 index d5c2da82e0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/53.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/54.png b/front/public/images/large/ThaumicTinkerer/mobAspect/54.png deleted file mode 100644 index ce203dbcfa..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/54.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/55.png b/front/public/images/large/ThaumicTinkerer/mobAspect/55.png deleted file mode 100644 index 83a6886d85..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/55.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/56.png b/front/public/images/large/ThaumicTinkerer/mobAspect/56.png deleted file mode 100644 index 10f9ce62ce..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/56.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/57.png b/front/public/images/large/ThaumicTinkerer/mobAspect/57.png deleted file mode 100644 index 9df7758034..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/57.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/58.png b/front/public/images/large/ThaumicTinkerer/mobAspect/58.png deleted file mode 100644 index 07e01c4d24..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/58.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/6.png b/front/public/images/large/ThaumicTinkerer/mobAspect/6.png deleted file mode 100644 index e7beb388bf..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/6.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/7.png b/front/public/images/large/ThaumicTinkerer/mobAspect/7.png deleted file mode 100644 index 2ffed41502..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/7.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/8.png b/front/public/images/large/ThaumicTinkerer/mobAspect/8.png deleted file mode 100644 index f439a2a3b0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/8.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/mobAspect/9.png b/front/public/images/large/ThaumicTinkerer/mobAspect/9.png deleted file mode 100644 index 030db56ed0..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/mobAspect/9.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/nitorGas/0.png b/front/public/images/large/ThaumicTinkerer/nitorGas/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/nitorGas/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/placementMirror/0.png b/front/public/images/large/ThaumicTinkerer/placementMirror/0.png deleted file mode 100644 index 575d802f82..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/placementMirror/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/platform/0.png b/front/public/images/large/ThaumicTinkerer/platform/0.png deleted file mode 100644 index 964fb065ba..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/platform/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/protoclay/0.png b/front/public/images/large/ThaumicTinkerer/protoclay/0.png deleted file mode 100644 index e6d757dc02..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/protoclay/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/repairer/0.png b/front/public/images/large/ThaumicTinkerer/repairer/0.png deleted file mode 100644 index a637b1d0e3..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/repairer/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/revealingHelm/0.png b/front/public/images/large/ThaumicTinkerer/revealingHelm/0.png deleted file mode 100644 index 3c1aca6857..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/revealingHelm/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/shareBook/0.png b/front/public/images/large/ThaumicTinkerer/shareBook/0.png deleted file mode 100644 index 53533c5463..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/shareBook/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/skyPearl/0.png b/front/public/images/large/ThaumicTinkerer/skyPearl/0.png deleted file mode 100644 index dd218dc5ea..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/skyPearl/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/soulMould/0.png b/front/public/images/large/ThaumicTinkerer/soulMould/0.png deleted file mode 100644 index 74d7f686be..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/soulMould/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/spawner/0.png b/front/public/images/large/ThaumicTinkerer/spawner/0.png deleted file mode 100644 index 20add56aa4..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/spawner/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/spellCloth/0.png b/front/public/images/large/ThaumicTinkerer/spellCloth/0.png deleted file mode 100644 index c78a9b5b4d..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/spellCloth/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/travelSlab/0.png b/front/public/images/large/ThaumicTinkerer/travelSlab/0.png deleted file mode 100644 index c6cca8738c..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/travelSlab/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/travelSlabFull/0.png b/front/public/images/large/ThaumicTinkerer/travelSlabFull/0.png deleted file mode 100644 index abae4f8685..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/travelSlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/travelStairs/0.png b/front/public/images/large/ThaumicTinkerer/travelStairs/0.png deleted file mode 100644 index cc68a35c0a..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/travelStairs/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/wardSlab/0.png b/front/public/images/large/ThaumicTinkerer/wardSlab/0.png deleted file mode 100644 index 20a77831da..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/wardSlab/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/wardSlabFull/0.png b/front/public/images/large/ThaumicTinkerer/wardSlabFull/0.png deleted file mode 100644 index 2f6345e609..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/wardSlabFull/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/warpGate/0.png b/front/public/images/large/ThaumicTinkerer/warpGate/0.png deleted file mode 100644 index 1dbf8d4f6d..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/warpGate/0.png and /dev/null differ diff --git a/front/public/images/large/ThaumicTinkerer/xpTalisman/0.png b/front/public/images/large/ThaumicTinkerer/xpTalisman/0.png deleted file mode 100644 index b0906e1c4f..0000000000 Binary files a/front/public/images/large/ThaumicTinkerer/xpTalisman/0.png and /dev/null differ diff --git a/front/public/images/large/ToxicEverglades/blockDarkWorldGround/0.png b/front/public/images/large/ToxicEverglades/blockDarkWorldGround/0.png deleted file mode 100644 index 51c04d3457..0000000000 Binary files a/front/public/images/large/ToxicEverglades/blockDarkWorldGround/0.png and /dev/null differ diff --git a/front/public/images/large/ToxicEverglades/blockDarkWorldGround2/0.png b/front/public/images/large/ToxicEverglades/blockDarkWorldGround2/0.png deleted file mode 100644 index 40d0c080fc..0000000000 Binary files a/front/public/images/large/ToxicEverglades/blockDarkWorldGround2/0.png and /dev/null differ diff --git a/front/public/images/large/ToxicEverglades/blockDarkWorldGround2/2.png b/front/public/images/large/ToxicEverglades/blockDarkWorldGround2/2.png deleted file mode 100644 index 46f2900f81..0000000000 Binary files a/front/public/images/large/ToxicEverglades/blockDarkWorldGround2/2.png and /dev/null differ diff --git a/front/public/images/large/ToxicEverglades/blockDarkWorldPortalFrame/0.png b/front/public/images/large/ToxicEverglades/blockDarkWorldPortalFrame/0.png deleted file mode 100644 index acdb38cfe3..0000000000 Binary files a/front/public/images/large/ToxicEverglades/blockDarkWorldPortalFrame/0.png and /dev/null differ diff --git a/front/public/images/large/ToxicEverglades/dimensionDarkWorld_portal/0.png b/front/public/images/large/ToxicEverglades/dimensionDarkWorld_portal/0.png deleted file mode 100644 index 44e53beb03..0000000000 Binary files a/front/public/images/large/ToxicEverglades/dimensionDarkWorld_portal/0.png and /dev/null differ diff --git a/front/public/images/large/ToxicEverglades/everglades.trigger/0.png b/front/public/images/large/ToxicEverglades/everglades.trigger/0.png deleted file mode 100644 index 65d86e9153..0000000000 Binary files a/front/public/images/large/ToxicEverglades/everglades.trigger/0.png and /dev/null differ diff --git a/front/public/images/large/ToxicEverglades/fluidSludge/0.png b/front/public/images/large/ToxicEverglades/fluidSludge/0.png deleted file mode 100644 index e1eeee9f2c..0000000000 Binary files a/front/public/images/large/ToxicEverglades/fluidSludge/0.png and /dev/null differ diff --git a/front/public/images/large/Translocator/craftingGrid/0.png b/front/public/images/large/Translocator/craftingGrid/0.png deleted file mode 100644 index 35c94af7cd..0000000000 Binary files a/front/public/images/large/Translocator/craftingGrid/0.png and /dev/null differ diff --git a/front/public/images/large/Translocator/diamondNugget/0.png b/front/public/images/large/Translocator/diamondNugget/0.png deleted file mode 100644 index 872f10819a..0000000000 Binary files a/front/public/images/large/Translocator/diamondNugget/0.png and /dev/null differ diff --git a/front/public/images/large/Translocator/translocator/0.png b/front/public/images/large/Translocator/translocator/0.png deleted file mode 100644 index b777f2d60d..0000000000 Binary files a/front/public/images/large/Translocator/translocator/0.png and /dev/null differ diff --git a/front/public/images/large/Translocator/translocator/1.png b/front/public/images/large/Translocator/translocator/1.png deleted file mode 100644 index 68f8748d2b..0000000000 Binary files a/front/public/images/large/Translocator/translocator/1.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/armorstand/0.png b/front/public/images/large/TravellersGear/armorstand/0.png deleted file mode 100644 index 324e3c6316..0000000000 Binary files a/front/public/images/large/TravellersGear/armorstand/0.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/simpleGear/0.png b/front/public/images/large/TravellersGear/simpleGear/0.png deleted file mode 100644 index f2e2397086..0000000000 Binary files a/front/public/images/large/TravellersGear/simpleGear/0.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/simpleGear/1.png b/front/public/images/large/TravellersGear/simpleGear/1.png deleted file mode 100644 index 88689830ca..0000000000 Binary files a/front/public/images/large/TravellersGear/simpleGear/1.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/simpleGear/2.png b/front/public/images/large/TravellersGear/simpleGear/2.png deleted file mode 100644 index ab681588d4..0000000000 Binary files a/front/public/images/large/TravellersGear/simpleGear/2.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/simpleGear/3.png b/front/public/images/large/TravellersGear/simpleGear/3.png deleted file mode 100644 index 0d1d374216..0000000000 Binary files a/front/public/images/large/TravellersGear/simpleGear/3.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/simpleGear/4.png b/front/public/images/large/TravellersGear/simpleGear/4.png deleted file mode 100644 index 402c841052..0000000000 Binary files a/front/public/images/large/TravellersGear/simpleGear/4.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/simpleGear/5.png b/front/public/images/large/TravellersGear/simpleGear/5.png deleted file mode 100644 index 828e4aa48a..0000000000 Binary files a/front/public/images/large/TravellersGear/simpleGear/5.png and /dev/null differ diff --git a/front/public/images/large/TravellersGear/simpleGear/6.png b/front/public/images/large/TravellersGear/simpleGear/6.png deleted file mode 100644 index b3ec421759..0000000000 Binary files a/front/public/images/large/TravellersGear/simpleGear/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.alphaFur/0.png b/front/public/images/large/TwilightForest/item.alphaFur/0.png deleted file mode 100644 index 4dc66c9fb1..0000000000 Binary files a/front/public/images/large/TwilightForest/item.alphaFur/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.arcticBoots/0.png b/front/public/images/large/TwilightForest/item.arcticBoots/0.png deleted file mode 100644 index 35c2a0aba5..0000000000 Binary files a/front/public/images/large/TwilightForest/item.arcticBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.arcticFur/0.png b/front/public/images/large/TwilightForest/item.arcticFur/0.png deleted file mode 100644 index a94ba4c46a..0000000000 Binary files a/front/public/images/large/TwilightForest/item.arcticFur/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.arcticHelm/0.png b/front/public/images/large/TwilightForest/item.arcticHelm/0.png deleted file mode 100644 index ed4c2d3e8f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.arcticHelm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.arcticLegs/0.png b/front/public/images/large/TwilightForest/item.arcticLegs/0.png deleted file mode 100644 index a07bff3a00..0000000000 Binary files a/front/public/images/large/TwilightForest/item.arcticLegs/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.arcticPlate/0.png b/front/public/images/large/TwilightForest/item.arcticPlate/0.png deleted file mode 100644 index 0073b296e1..0000000000 Binary files a/front/public/images/large/TwilightForest/item.arcticPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.armorShards/0.png b/front/public/images/large/TwilightForest/item.armorShards/0.png deleted file mode 100644 index f576d704fd..0000000000 Binary files a/front/public/images/large/TwilightForest/item.armorShards/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.borerEssence/0.png b/front/public/images/large/TwilightForest/item.borerEssence/0.png deleted file mode 100644 index 0b194bc9f2..0000000000 Binary files a/front/public/images/large/TwilightForest/item.borerEssence/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.carminite/0.png b/front/public/images/large/TwilightForest/item.carminite/0.png deleted file mode 100644 index 030780ea1f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.carminite/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.chainBlock/0.png b/front/public/images/large/TwilightForest/item.chainBlock/0.png deleted file mode 100644 index 04d6a1c50d..0000000000 Binary files a/front/public/images/large/TwilightForest/item.chainBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.charmOfKeeping1/0.png b/front/public/images/large/TwilightForest/item.charmOfKeeping1/0.png deleted file mode 100644 index 2390d02741..0000000000 Binary files a/front/public/images/large/TwilightForest/item.charmOfKeeping1/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.charmOfKeeping2/0.png b/front/public/images/large/TwilightForest/item.charmOfKeeping2/0.png deleted file mode 100644 index 6d2470ac30..0000000000 Binary files a/front/public/images/large/TwilightForest/item.charmOfKeeping2/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.charmOfKeeping3/0.png b/front/public/images/large/TwilightForest/item.charmOfKeeping3/0.png deleted file mode 100644 index 608d2fddcb..0000000000 Binary files a/front/public/images/large/TwilightForest/item.charmOfKeeping3/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.charmOfLife1/0.png b/front/public/images/large/TwilightForest/item.charmOfLife1/0.png deleted file mode 100644 index afeec88af2..0000000000 Binary files a/front/public/images/large/TwilightForest/item.charmOfLife1/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.charmOfLife2/0.png b/front/public/images/large/TwilightForest/item.charmOfLife2/0.png deleted file mode 100644 index 2e4f654b20..0000000000 Binary files a/front/public/images/large/TwilightForest/item.charmOfLife2/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.crumbleHorn/0.png b/front/public/images/large/TwilightForest/item.crumbleHorn/0.png deleted file mode 100644 index 3ef00115a6..0000000000 Binary files a/front/public/images/large/TwilightForest/item.crumbleHorn/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.cubeOfAnnihilation/0.png b/front/public/images/large/TwilightForest/item.cubeOfAnnihilation/0.png deleted file mode 100644 index 7f24ce6d93..0000000000 Binary files a/front/public/images/large/TwilightForest/item.cubeOfAnnihilation/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.cubeTalisman/0.png b/front/public/images/large/TwilightForest/item.cubeTalisman/0.png deleted file mode 100644 index 0adf0b55a9..0000000000 Binary files a/front/public/images/large/TwilightForest/item.cubeTalisman/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorCanopy/0.png b/front/public/images/large/TwilightForest/item.doorCanopy/0.png deleted file mode 100644 index 5ef44612b7..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorCanopy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorDarkwood/0.png b/front/public/images/large/TwilightForest/item.doorDarkwood/0.png deleted file mode 100644 index 29db0633eb..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorDarkwood/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorMangrove/0.png b/front/public/images/large/TwilightForest/item.doorMangrove/0.png deleted file mode 100644 index 19d7cdc744..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorMangrove/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorMine/0.png b/front/public/images/large/TwilightForest/item.doorMine/0.png deleted file mode 100644 index be744df35c..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorMine/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorSort/0.png b/front/public/images/large/TwilightForest/item.doorSort/0.png deleted file mode 100644 index 1b2f0422ce..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorSort/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorTime/0.png b/front/public/images/large/TwilightForest/item.doorTime/0.png deleted file mode 100644 index ada1a51749..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorTime/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorTrans/0.png b/front/public/images/large/TwilightForest/item.doorTrans/0.png deleted file mode 100644 index 89e671bc88..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorTrans/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.doorTwilight/0.png b/front/public/images/large/TwilightForest/item.doorTwilight/0.png deleted file mode 100644 index e807016c63..0000000000 Binary files a/front/public/images/large/TwilightForest/item.doorTwilight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.emptyMagicMap/0.png b/front/public/images/large/TwilightForest/item.emptyMagicMap/0.png deleted file mode 100644 index 73de40389e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.emptyMagicMap/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.emptyMazeMap/0.png b/front/public/images/large/TwilightForest/item.emptyMazeMap/0.png deleted file mode 100644 index d7f83cff96..0000000000 Binary files a/front/public/images/large/TwilightForest/item.emptyMazeMap/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.emptyOreMap/0.png b/front/public/images/large/TwilightForest/item.emptyOreMap/0.png deleted file mode 100644 index f96f59653f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.emptyOreMap/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.enderBow/0.png b/front/public/images/large/TwilightForest/item.enderBow/0.png deleted file mode 100644 index ffe65528e3..0000000000 Binary files a/front/public/images/large/TwilightForest/item.enderBow/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.experiment115/0.png b/front/public/images/large/TwilightForest/item.experiment115/0.png deleted file mode 100644 index 2f9104f930..0000000000 Binary files a/front/public/images/large/TwilightForest/item.experiment115/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryBlood/0.png b/front/public/images/large/TwilightForest/item.fieryBlood/0.png deleted file mode 100644 index 907e0c9ad6..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryBlood/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryBoots/0.png b/front/public/images/large/TwilightForest/item.fieryBoots/0.png deleted file mode 100644 index edcd8c3294..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryHelm/0.png b/front/public/images/large/TwilightForest/item.fieryHelm/0.png deleted file mode 100644 index a45124ee19..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryHelm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryIngot/0.png b/front/public/images/large/TwilightForest/item.fieryIngot/0.png deleted file mode 100644 index 08f94a242f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryIngot/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryLegs/0.png b/front/public/images/large/TwilightForest/item.fieryLegs/0.png deleted file mode 100644 index 353dbd83c5..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryLegs/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryPick/0.png b/front/public/images/large/TwilightForest/item.fieryPick/0.png deleted file mode 100644 index 27a0a6ffef..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryPick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryPlate/0.png b/front/public/images/large/TwilightForest/item.fieryPlate/0.png deleted file mode 100644 index a8e6938ef4..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fierySword/0.png b/front/public/images/large/TwilightForest/item.fierySword/0.png deleted file mode 100644 index b22dec3889..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fierySword/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.fieryTears/0.png b/front/public/images/large/TwilightForest/item.fieryTears/0.png deleted file mode 100644 index 71d939686d..0000000000 Binary files a/front/public/images/large/TwilightForest/item.fieryTears/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.giantPick/0.png b/front/public/images/large/TwilightForest/item.giantPick/0.png deleted file mode 100644 index d5e8f3a4b7..0000000000 Binary files a/front/public/images/large/TwilightForest/item.giantPick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.giantSword/0.png b/front/public/images/large/TwilightForest/item.giantSword/0.png deleted file mode 100644 index 659bacea88..0000000000 Binary files a/front/public/images/large/TwilightForest/item.giantSword/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.glassSword/0.png b/front/public/images/large/TwilightForest/item.glassSword/0.png deleted file mode 100644 index f18bb7e5ca..0000000000 Binary files a/front/public/images/large/TwilightForest/item.glassSword/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.hydraChop/0.png b/front/public/images/large/TwilightForest/item.hydraChop/0.png deleted file mode 100644 index 9caa5aa4b4..0000000000 Binary files a/front/public/images/large/TwilightForest/item.hydraChop/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.iceBomb/0.png b/front/public/images/large/TwilightForest/item.iceBomb/0.png deleted file mode 100644 index 396b7031ee..0000000000 Binary files a/front/public/images/large/TwilightForest/item.iceBomb/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.iceBow/0.png b/front/public/images/large/TwilightForest/item.iceBow/0.png deleted file mode 100644 index 4af0f5db7f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.iceBow/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.iceSword/0.png b/front/public/images/large/TwilightForest/item.iceSword/0.png deleted file mode 100644 index ea49bbc6f6..0000000000 Binary files a/front/public/images/large/TwilightForest/item.iceSword/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodAxe/0.png b/front/public/images/large/TwilightForest/item.ironwoodAxe/0.png deleted file mode 100644 index 08fc951058..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodAxe/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodBoots/0.png b/front/public/images/large/TwilightForest/item.ironwoodBoots/0.png deleted file mode 100644 index 53bed9e30f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodHelm/0.png b/front/public/images/large/TwilightForest/item.ironwoodHelm/0.png deleted file mode 100644 index f0a48cf3d9..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodHelm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodHoe/0.png b/front/public/images/large/TwilightForest/item.ironwoodHoe/0.png deleted file mode 100644 index f35d386f99..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodHoe/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodIngot/0.png b/front/public/images/large/TwilightForest/item.ironwoodIngot/0.png deleted file mode 100644 index 4a94efc444..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodIngot/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodLegs/0.png b/front/public/images/large/TwilightForest/item.ironwoodLegs/0.png deleted file mode 100644 index f7bf8ce170..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodLegs/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodPick/0.png b/front/public/images/large/TwilightForest/item.ironwoodPick/0.png deleted file mode 100644 index e6aa236613..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodPick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodPlate/0.png b/front/public/images/large/TwilightForest/item.ironwoodPlate/0.png deleted file mode 100644 index d262d8993f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodRaw/0.png b/front/public/images/large/TwilightForest/item.ironwoodRaw/0.png deleted file mode 100644 index 7cbb602459..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodRaw/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodShovel/0.png b/front/public/images/large/TwilightForest/item.ironwoodShovel/0.png deleted file mode 100644 index 9071894dac..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodShovel/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.ironwoodSword/0.png b/front/public/images/large/TwilightForest/item.ironwoodSword/0.png deleted file mode 100644 index 6b07c2e8ac..0000000000 Binary files a/front/public/images/large/TwilightForest/item.ironwoodSword/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightMetal/0.png b/front/public/images/large/TwilightForest/item.knightMetal/0.png deleted file mode 100644 index e3f342b8c0..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightMetal/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightlyAxe/0.png b/front/public/images/large/TwilightForest/item.knightlyAxe/0.png deleted file mode 100644 index 739a540bd1..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightlyAxe/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightlyBoots/0.png b/front/public/images/large/TwilightForest/item.knightlyBoots/0.png deleted file mode 100644 index 5c94638610..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightlyBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightlyHelm/0.png b/front/public/images/large/TwilightForest/item.knightlyHelm/0.png deleted file mode 100644 index 96063c7059..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightlyHelm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightlyLegs/0.png b/front/public/images/large/TwilightForest/item.knightlyLegs/0.png deleted file mode 100644 index fe34032325..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightlyLegs/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightlyPick/0.png b/front/public/images/large/TwilightForest/item.knightlyPick/0.png deleted file mode 100644 index 2789c44f63..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightlyPick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightlyPlate/0.png b/front/public/images/large/TwilightForest/item.knightlyPlate/0.png deleted file mode 100644 index 1da95a89ed..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightlyPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightlySword/0.png b/front/public/images/large/TwilightForest/item.knightlySword/0.png deleted file mode 100644 index 29baa21b0c..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightlySword/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.knightmetalRing/0.png b/front/public/images/large/TwilightForest/item.knightmetalRing/0.png deleted file mode 100644 index 71de41b266..0000000000 Binary files a/front/public/images/large/TwilightForest/item.knightmetalRing/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.lampOfCinders/0.png b/front/public/images/large/TwilightForest/item.lampOfCinders/0.png deleted file mode 100644 index da50462c9a..0000000000 Binary files a/front/public/images/large/TwilightForest/item.lampOfCinders/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.legsNaga/0.png b/front/public/images/large/TwilightForest/item.legsNaga/0.png deleted file mode 100644 index 8e13388dab..0000000000 Binary files a/front/public/images/large/TwilightForest/item.legsNaga/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.liveRoot/0.png b/front/public/images/large/TwilightForest/item.liveRoot/0.png deleted file mode 100644 index 027bdb9831..0000000000 Binary files a/front/public/images/large/TwilightForest/item.liveRoot/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.magicBeans/0.png b/front/public/images/large/TwilightForest/item.magicBeans/0.png deleted file mode 100644 index 96109f1f84..0000000000 Binary files a/front/public/images/large/TwilightForest/item.magicBeans/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.magicMap/0.png b/front/public/images/large/TwilightForest/item.magicMap/0.png deleted file mode 100644 index a79a49cdae..0000000000 Binary files a/front/public/images/large/TwilightForest/item.magicMap/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.magicMapFocus/0.png b/front/public/images/large/TwilightForest/item.magicMapFocus/0.png deleted file mode 100644 index 57f33b7d23..0000000000 Binary files a/front/public/images/large/TwilightForest/item.magicMapFocus/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.mazeMap/0.png b/front/public/images/large/TwilightForest/item.mazeMap/0.png deleted file mode 100644 index e523764ca0..0000000000 Binary files a/front/public/images/large/TwilightForest/item.mazeMap/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.mazeMapFocus/0.png b/front/public/images/large/TwilightForest/item.mazeMapFocus/0.png deleted file mode 100644 index 361cca5e84..0000000000 Binary files a/front/public/images/large/TwilightForest/item.mazeMapFocus/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.mazeWafer/0.png b/front/public/images/large/TwilightForest/item.mazeWafer/0.png deleted file mode 100644 index b70ced2f8e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.mazeWafer/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.mazebreakerPick/0.png b/front/public/images/large/TwilightForest/item.mazebreakerPick/0.png deleted file mode 100644 index 7255036047..0000000000 Binary files a/front/public/images/large/TwilightForest/item.mazebreakerPick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.meefRaw/0.png b/front/public/images/large/TwilightForest/item.meefRaw/0.png deleted file mode 100644 index 48694640f5..0000000000 Binary files a/front/public/images/large/TwilightForest/item.meefRaw/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.meefSteak/0.png b/front/public/images/large/TwilightForest/item.meefSteak/0.png deleted file mode 100644 index d2f67cbd9d..0000000000 Binary files a/front/public/images/large/TwilightForest/item.meefSteak/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.meefStroganoff/0.png b/front/public/images/large/TwilightForest/item.meefStroganoff/0.png deleted file mode 100644 index e999cd7935..0000000000 Binary files a/front/public/images/large/TwilightForest/item.meefStroganoff/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.minotaurAxe/0.png b/front/public/images/large/TwilightForest/item.minotaurAxe/0.png deleted file mode 100644 index a5677da156..0000000000 Binary files a/front/public/images/large/TwilightForest/item.minotaurAxe/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.moonwormQueen/0.png b/front/public/images/large/TwilightForest/item.moonwormQueen/0.png deleted file mode 100644 index e9b0ce1f9f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.moonwormQueen/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.nagaScale/0.png b/front/public/images/large/TwilightForest/item.nagaScale/0.png deleted file mode 100644 index 6cf0fb6238..0000000000 Binary files a/front/public/images/large/TwilightForest/item.nagaScale/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.null/0.png b/front/public/images/large/TwilightForest/item.null/0.png deleted file mode 100644 index 7db05d13c3..0000000000 Binary files a/front/public/images/large/TwilightForest/item.null/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.null/1.png b/front/public/images/large/TwilightForest/item.null/1.png deleted file mode 100644 index b4d2dca956..0000000000 Binary files a/front/public/images/large/TwilightForest/item.null/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.oreMagnet/0.png b/front/public/images/large/TwilightForest/item.oreMagnet/0.png deleted file mode 100644 index 56ab68b7a7..0000000000 Binary files a/front/public/images/large/TwilightForest/item.oreMagnet/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.oreMap/0.png b/front/public/images/large/TwilightForest/item.oreMap/0.png deleted file mode 100644 index 82f325d1a9..0000000000 Binary files a/front/public/images/large/TwilightForest/item.oreMap/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.oreMeter/0.png b/front/public/images/large/TwilightForest/item.oreMeter/0.png deleted file mode 100644 index 35b37b196c..0000000000 Binary files a/front/public/images/large/TwilightForest/item.oreMeter/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.peacockFan/0.png b/front/public/images/large/TwilightForest/item.peacockFan/0.png deleted file mode 100644 index 7b3a607655..0000000000 Binary files a/front/public/images/large/TwilightForest/item.peacockFan/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.phantomHelm/0.png b/front/public/images/large/TwilightForest/item.phantomHelm/0.png deleted file mode 100644 index c1b6d19e84..0000000000 Binary files a/front/public/images/large/TwilightForest/item.phantomHelm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.phantomPlate/0.png b/front/public/images/large/TwilightForest/item.phantomPlate/0.png deleted file mode 100644 index a2aa6cdb2d..0000000000 Binary files a/front/public/images/large/TwilightForest/item.phantomPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.plateNaga/0.png b/front/public/images/large/TwilightForest/item.plateNaga/0.png deleted file mode 100644 index db010c189e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.plateNaga/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.scepterLifeDrain/0.png b/front/public/images/large/TwilightForest/item.scepterLifeDrain/0.png deleted file mode 100644 index 8548c7e908..0000000000 Binary files a/front/public/images/large/TwilightForest/item.scepterLifeDrain/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.scepterTwilight/0.png b/front/public/images/large/TwilightForest/item.scepterTwilight/0.png deleted file mode 100644 index 3ab35cc071..0000000000 Binary files a/front/public/images/large/TwilightForest/item.scepterTwilight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.scepterZombie/0.png b/front/public/images/large/TwilightForest/item.scepterZombie/0.png deleted file mode 100644 index 9c1b4984e4..0000000000 Binary files a/front/public/images/large/TwilightForest/item.scepterZombie/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.seekerBow/0.png b/front/public/images/large/TwilightForest/item.seekerBow/0.png deleted file mode 100644 index 3f2993583d..0000000000 Binary files a/front/public/images/large/TwilightForest/item.seekerBow/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.shardCluster/0.png b/front/public/images/large/TwilightForest/item.shardCluster/0.png deleted file mode 100644 index c5a38827cb..0000000000 Binary files a/front/public/images/large/TwilightForest/item.shardCluster/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafAxe/0.png b/front/public/images/large/TwilightForest/item.steeleafAxe/0.png deleted file mode 100644 index c3fdda23ab..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafAxe/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafBoots/0.png b/front/public/images/large/TwilightForest/item.steeleafBoots/0.png deleted file mode 100644 index c4273d2834..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafHelm/0.png b/front/public/images/large/TwilightForest/item.steeleafHelm/0.png deleted file mode 100644 index 5f425a09b0..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafHelm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafHoe/0.png b/front/public/images/large/TwilightForest/item.steeleafHoe/0.png deleted file mode 100644 index a6ed67d5a6..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafHoe/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafIngot/0.png b/front/public/images/large/TwilightForest/item.steeleafIngot/0.png deleted file mode 100644 index 74c0477d7b..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafIngot/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafLegs/0.png b/front/public/images/large/TwilightForest/item.steeleafLegs/0.png deleted file mode 100644 index 48de0dfb51..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafLegs/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafPick/0.png b/front/public/images/large/TwilightForest/item.steeleafPick/0.png deleted file mode 100644 index 06b8912bea..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafPick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafPlate/0.png b/front/public/images/large/TwilightForest/item.steeleafPlate/0.png deleted file mode 100644 index 7f92a51cb4..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafShovel/0.png b/front/public/images/large/TwilightForest/item.steeleafShovel/0.png deleted file mode 100644 index 3843af9bd9..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafShovel/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.steeleafSword/0.png b/front/public/images/large/TwilightForest/item.steeleafSword/0.png deleted file mode 100644 index 14413b98b2..0000000000 Binary files a/front/public/images/large/TwilightForest/item.steeleafSword/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfFeather/0.png b/front/public/images/large/TwilightForest/item.tfFeather/0.png deleted file mode 100644 index cb0175af6b..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfFeather/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/0.png b/front/public/images/large/TwilightForest/item.tfspawnegg/0.png deleted file mode 100644 index 9a58989ab9..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/177.png b/front/public/images/large/TwilightForest/item.tfspawnegg/177.png deleted file mode 100644 index 5e7dbe3e97..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/177.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/178.png b/front/public/images/large/TwilightForest/item.tfspawnegg/178.png deleted file mode 100644 index deeb6dff72..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/178.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/179.png b/front/public/images/large/TwilightForest/item.tfspawnegg/179.png deleted file mode 100644 index ee5630bda3..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/179.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/180.png b/front/public/images/large/TwilightForest/item.tfspawnegg/180.png deleted file mode 100644 index 3d458bd303..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/180.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/181.png b/front/public/images/large/TwilightForest/item.tfspawnegg/181.png deleted file mode 100644 index fd4fe69b44..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/181.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/182.png b/front/public/images/large/TwilightForest/item.tfspawnegg/182.png deleted file mode 100644 index 81e9f52a1e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/182.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/184.png b/front/public/images/large/TwilightForest/item.tfspawnegg/184.png deleted file mode 100644 index 9b479aa713..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/184.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/185.png b/front/public/images/large/TwilightForest/item.tfspawnegg/185.png deleted file mode 100644 index ac343ea336..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/185.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/186.png b/front/public/images/large/TwilightForest/item.tfspawnegg/186.png deleted file mode 100644 index 2e511c91d0..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/186.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/187.png b/front/public/images/large/TwilightForest/item.tfspawnegg/187.png deleted file mode 100644 index 0a149c551e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/187.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/189.png b/front/public/images/large/TwilightForest/item.tfspawnegg/189.png deleted file mode 100644 index 8fb5d71567..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/189.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/190.png b/front/public/images/large/TwilightForest/item.tfspawnegg/190.png deleted file mode 100644 index cbbb8d9fee..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/190.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/191.png b/front/public/images/large/TwilightForest/item.tfspawnegg/191.png deleted file mode 100644 index 3c649813ae..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/191.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/194.png b/front/public/images/large/TwilightForest/item.tfspawnegg/194.png deleted file mode 100644 index e11119b3ba..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/194.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/195.png b/front/public/images/large/TwilightForest/item.tfspawnegg/195.png deleted file mode 100644 index 2e92785e06..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/195.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/196.png b/front/public/images/large/TwilightForest/item.tfspawnegg/196.png deleted file mode 100644 index a09f84b4a4..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/196.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/197.png b/front/public/images/large/TwilightForest/item.tfspawnegg/197.png deleted file mode 100644 index e331cc4d2b..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/197.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/199.png b/front/public/images/large/TwilightForest/item.tfspawnegg/199.png deleted file mode 100644 index 84f3b749d2..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/199.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/202.png b/front/public/images/large/TwilightForest/item.tfspawnegg/202.png deleted file mode 100644 index f4a4ce8d0d..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/202.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/203.png b/front/public/images/large/TwilightForest/item.tfspawnegg/203.png deleted file mode 100644 index 90c7aa5b2e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/203.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/204.png b/front/public/images/large/TwilightForest/item.tfspawnegg/204.png deleted file mode 100644 index 93c4f0d2d5..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/204.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/205.png b/front/public/images/large/TwilightForest/item.tfspawnegg/205.png deleted file mode 100644 index 1e24c17b6c..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/205.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/206.png b/front/public/images/large/TwilightForest/item.tfspawnegg/206.png deleted file mode 100644 index eae29ed88e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/206.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/207.png b/front/public/images/large/TwilightForest/item.tfspawnegg/207.png deleted file mode 100644 index 3caa1522ba..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/207.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/208.png b/front/public/images/large/TwilightForest/item.tfspawnegg/208.png deleted file mode 100644 index 04b1aa8be7..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/208.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/209.png b/front/public/images/large/TwilightForest/item.tfspawnegg/209.png deleted file mode 100644 index 9b479aa713..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/209.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/210.png b/front/public/images/large/TwilightForest/item.tfspawnegg/210.png deleted file mode 100644 index 16a43c10c9..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/210.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/211.png b/front/public/images/large/TwilightForest/item.tfspawnegg/211.png deleted file mode 100644 index d5c1d51515..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/211.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/212.png b/front/public/images/large/TwilightForest/item.tfspawnegg/212.png deleted file mode 100644 index 6957f281f0..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/212.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/213.png b/front/public/images/large/TwilightForest/item.tfspawnegg/213.png deleted file mode 100644 index 178cd08fdb..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/213.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/214.png b/front/public/images/large/TwilightForest/item.tfspawnegg/214.png deleted file mode 100644 index f324b6198c..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/214.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/215.png b/front/public/images/large/TwilightForest/item.tfspawnegg/215.png deleted file mode 100644 index 332493da4b..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/215.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/216.png b/front/public/images/large/TwilightForest/item.tfspawnegg/216.png deleted file mode 100644 index 934be14a34..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/216.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/217.png b/front/public/images/large/TwilightForest/item.tfspawnegg/217.png deleted file mode 100644 index 332493da4b..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/217.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/218.png b/front/public/images/large/TwilightForest/item.tfspawnegg/218.png deleted file mode 100644 index 3576c8d0df..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/218.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/219.png b/front/public/images/large/TwilightForest/item.tfspawnegg/219.png deleted file mode 100644 index bc45114e7b..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/219.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/220.png b/front/public/images/large/TwilightForest/item.tfspawnegg/220.png deleted file mode 100644 index f3d0eee409..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/220.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/222.png b/front/public/images/large/TwilightForest/item.tfspawnegg/222.png deleted file mode 100644 index 5e98220f3e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/222.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/223.png b/front/public/images/large/TwilightForest/item.tfspawnegg/223.png deleted file mode 100644 index 7bf8cd8c20..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/223.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/224.png b/front/public/images/large/TwilightForest/item.tfspawnegg/224.png deleted file mode 100644 index 9a94ac6266..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/224.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/225.png b/front/public/images/large/TwilightForest/item.tfspawnegg/225.png deleted file mode 100644 index 110f80c329..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/225.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/226.png b/front/public/images/large/TwilightForest/item.tfspawnegg/226.png deleted file mode 100644 index e4a99f24fb..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/226.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/227.png b/front/public/images/large/TwilightForest/item.tfspawnegg/227.png deleted file mode 100644 index 715272f33c..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/227.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/228.png b/front/public/images/large/TwilightForest/item.tfspawnegg/228.png deleted file mode 100644 index 4ac46e30ca..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/228.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/229.png b/front/public/images/large/TwilightForest/item.tfspawnegg/229.png deleted file mode 100644 index 25fbf75058..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/229.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/230.png b/front/public/images/large/TwilightForest/item.tfspawnegg/230.png deleted file mode 100644 index 45db2c321a..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/230.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/231.png b/front/public/images/large/TwilightForest/item.tfspawnegg/231.png deleted file mode 100644 index 9b8aa161de..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/231.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/232.png b/front/public/images/large/TwilightForest/item.tfspawnegg/232.png deleted file mode 100644 index 48cf708bab..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/232.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/233.png b/front/public/images/large/TwilightForest/item.tfspawnegg/233.png deleted file mode 100644 index 1998072092..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/233.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/234.png b/front/public/images/large/TwilightForest/item.tfspawnegg/234.png deleted file mode 100644 index 1696f9b655..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/234.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/235.png b/front/public/images/large/TwilightForest/item.tfspawnegg/235.png deleted file mode 100644 index 8a3cfc2a8b..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/235.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/236.png b/front/public/images/large/TwilightForest/item.tfspawnegg/236.png deleted file mode 100644 index 5da44b5459..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/236.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tfspawnegg/237.png b/front/public/images/large/TwilightForest/item.tfspawnegg/237.png deleted file mode 100644 index 54ea1607a3..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tfspawnegg/237.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.torchberries/0.png b/front/public/images/large/TwilightForest/item.torchberries/0.png deleted file mode 100644 index 4e2561f3bd..0000000000 Binary files a/front/public/images/large/TwilightForest/item.torchberries/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.towerKey/0.png b/front/public/images/large/TwilightForest/item.towerKey/0.png deleted file mode 100644 index 3e47c15148..0000000000 Binary files a/front/public/images/large/TwilightForest/item.towerKey/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.transformPowder/0.png b/front/public/images/large/TwilightForest/item.transformPowder/0.png deleted file mode 100644 index 696eea3cb8..0000000000 Binary files a/front/public/images/large/TwilightForest/item.transformPowder/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.tripleBow/0.png b/front/public/images/large/TwilightForest/item.tripleBow/0.png deleted file mode 100644 index c5facc4c93..0000000000 Binary files a/front/public/images/large/TwilightForest/item.tripleBow/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.trophy/0.png b/front/public/images/large/TwilightForest/item.trophy/0.png deleted file mode 100644 index d023bac961..0000000000 Binary files a/front/public/images/large/TwilightForest/item.trophy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.trophy/1.png b/front/public/images/large/TwilightForest/item.trophy/1.png deleted file mode 100644 index cebdba4f58..0000000000 Binary files a/front/public/images/large/TwilightForest/item.trophy/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.trophy/2.png b/front/public/images/large/TwilightForest/item.trophy/2.png deleted file mode 100644 index 9983b2278e..0000000000 Binary files a/front/public/images/large/TwilightForest/item.trophy/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.trophy/3.png b/front/public/images/large/TwilightForest/item.trophy/3.png deleted file mode 100644 index e63be094e0..0000000000 Binary files a/front/public/images/large/TwilightForest/item.trophy/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.trophy/4.png b/front/public/images/large/TwilightForest/item.trophy/4.png deleted file mode 100644 index e0f2d1d78c..0000000000 Binary files a/front/public/images/large/TwilightForest/item.trophy/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.venisonCooked/0.png b/front/public/images/large/TwilightForest/item.venisonCooked/0.png deleted file mode 100644 index 2cf77b2163..0000000000 Binary files a/front/public/images/large/TwilightForest/item.venisonCooked/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.venisonRaw/0.png b/front/public/images/large/TwilightForest/item.venisonRaw/0.png deleted file mode 100644 index 5e9843ba6f..0000000000 Binary files a/front/public/images/large/TwilightForest/item.venisonRaw/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.yetiBoots/0.png b/front/public/images/large/TwilightForest/item.yetiBoots/0.png deleted file mode 100644 index be08ba79d8..0000000000 Binary files a/front/public/images/large/TwilightForest/item.yetiBoots/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.yetiHelm/0.png b/front/public/images/large/TwilightForest/item.yetiHelm/0.png deleted file mode 100644 index 2e6ac1cd14..0000000000 Binary files a/front/public/images/large/TwilightForest/item.yetiHelm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.yetiLegs/0.png b/front/public/images/large/TwilightForest/item.yetiLegs/0.png deleted file mode 100644 index dd1a7673de..0000000000 Binary files a/front/public/images/large/TwilightForest/item.yetiLegs/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/item.yetiPlate/0.png b/front/public/images/large/TwilightForest/item.yetiPlate/0.png deleted file mode 100644 index e55aa52a41..0000000000 Binary files a/front/public/images/large/TwilightForest/item.yetiPlate/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.ArcticFurBlock/0.png b/front/public/images/large/TwilightForest/tile.ArcticFurBlock/0.png deleted file mode 100644 index 559935b290..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.ArcticFurBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.AuroraDoubleSlab/0.png b/front/public/images/large/TwilightForest/tile.AuroraDoubleSlab/0.png deleted file mode 100644 index d29d71b135..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.AuroraDoubleSlab/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.AuroraPillar/0.png b/front/public/images/large/TwilightForest/tile.AuroraPillar/0.png deleted file mode 100644 index 7af55e1f66..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.AuroraPillar/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.AuroraSlab/0.png b/front/public/images/large/TwilightForest/tile.AuroraSlab/0.png deleted file mode 100644 index 498a48dca7..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.AuroraSlab/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CarminiteBlock/0.png b/front/public/images/large/TwilightForest/tile.CarminiteBlock/0.png deleted file mode 100644 index 7417727fd1..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CarminiteBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleBrick/0.png b/front/public/images/large/TwilightForest/tile.CastleBrick/0.png deleted file mode 100644 index 1588276b89..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleBrick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleBrick/1.png b/front/public/images/large/TwilightForest/tile.CastleBrick/1.png deleted file mode 100644 index 327038476d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleBrick/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleBrick/2.png b/front/public/images/large/TwilightForest/tile.CastleBrick/2.png deleted file mode 100644 index 0f2d017c67..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleBrick/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleBrick/3.png b/front/public/images/large/TwilightForest/tile.CastleBrick/3.png deleted file mode 100644 index 5e72547962..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleBrick/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoor/0.png b/front/public/images/large/TwilightForest/tile.CastleDoor/0.png deleted file mode 100644 index 77fc83e304..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoor/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoor/1.png b/front/public/images/large/TwilightForest/tile.CastleDoor/1.png deleted file mode 100644 index 9e0e6bae9f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoor/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoor/2.png b/front/public/images/large/TwilightForest/tile.CastleDoor/2.png deleted file mode 100644 index f1882d8440..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoor/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoor/3.png b/front/public/images/large/TwilightForest/tile.CastleDoor/3.png deleted file mode 100644 index 62ea5f4277..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoor/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/0.png b/front/public/images/large/TwilightForest/tile.CastleDoorVanished/0.png deleted file mode 100644 index 8dbda02a1d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/1.png b/front/public/images/large/TwilightForest/tile.CastleDoorVanished/1.png deleted file mode 100644 index 4a66e538e3..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/2.png b/front/public/images/large/TwilightForest/tile.CastleDoorVanished/2.png deleted file mode 100644 index b66d4558d4..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/3.png b/front/public/images/large/TwilightForest/tile.CastleDoorVanished/3.png deleted file mode 100644 index ed3a437d23..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleDoorVanished/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleMagic/0.png b/front/public/images/large/TwilightForest/tile.CastleMagic/0.png deleted file mode 100644 index 6b91ff9fac..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleMagic/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleMagic/1.png b/front/public/images/large/TwilightForest/tile.CastleMagic/1.png deleted file mode 100644 index 7ab1959693..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleMagic/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleMagic/2.png b/front/public/images/large/TwilightForest/tile.CastleMagic/2.png deleted file mode 100644 index 76583bd582..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleMagic/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CastleMagic/3.png b/front/public/images/large/TwilightForest/tile.CastleMagic/3.png deleted file mode 100644 index 0d2153e87d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CastleMagic/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CinderFurnaceIdle/0.png b/front/public/images/large/TwilightForest/tile.CinderFurnaceIdle/0.png deleted file mode 100644 index f82a3b73e6..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CinderFurnaceIdle/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CinderFurnaceLit/0.png b/front/public/images/large/TwilightForest/tile.CinderFurnaceLit/0.png deleted file mode 100644 index 6c27c9a268..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CinderFurnaceLit/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.CinderLog/0.png b/front/public/images/large/TwilightForest/tile.CinderLog/0.png deleted file mode 100644 index bfe76e9b48..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.CinderLog/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.DarkLeaves/0.png b/front/public/images/large/TwilightForest/tile.DarkLeaves/0.png deleted file mode 100644 index 3fe9c94b93..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.DarkLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.FieryBlock/0.png b/front/public/images/large/TwilightForest/tile.FieryBlock/0.png deleted file mode 100644 index 1756aeb4b5..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.FieryBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.FluffyCloud/0.png b/front/public/images/large/TwilightForest/tile.FluffyCloud/0.png deleted file mode 100644 index 271f35da3f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.FluffyCloud/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.ForceField/0.png b/front/public/images/large/TwilightForest/tile.ForceField/0.png deleted file mode 100644 index 8e29580034..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.ForceField/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.ForceField/1.png b/front/public/images/large/TwilightForest/tile.ForceField/1.png deleted file mode 100644 index 1fbd752fcf..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.ForceField/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.ForceField/2.png b/front/public/images/large/TwilightForest/tile.ForceField/2.png deleted file mode 100644 index 265e760abb..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.ForceField/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.ForceField/3.png b/front/public/images/large/TwilightForest/tile.ForceField/3.png deleted file mode 100644 index bccef346ca..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.ForceField/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.ForceField/4.png b/front/public/images/large/TwilightForest/tile.ForceField/4.png deleted file mode 100644 index 1fc6932804..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.ForceField/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.GiantCobble/0.png b/front/public/images/large/TwilightForest/tile.GiantCobble/0.png deleted file mode 100644 index 7567b8ba50..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.GiantCobble/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.GiantLeaves/0.png b/front/public/images/large/TwilightForest/tile.GiantLeaves/0.png deleted file mode 100644 index dd432cef21..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.GiantLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.GiantLog/0.png b/front/public/images/large/TwilightForest/tile.GiantLog/0.png deleted file mode 100644 index 8d2fd156ef..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.GiantLog/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.GiantObsidian/0.png b/front/public/images/large/TwilightForest/tile.GiantObsidian/0.png deleted file mode 100644 index db0f86b017..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.GiantObsidian/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.HugeGloomBlock/0.png b/front/public/images/large/TwilightForest/tile.HugeGloomBlock/0.png deleted file mode 100644 index 7e45f3356a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.HugeGloomBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.HugeLilyPad/0.png b/front/public/images/large/TwilightForest/tile.HugeLilyPad/0.png deleted file mode 100644 index 27f2365370..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.HugeLilyPad/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.HugeStalk/0.png b/front/public/images/large/TwilightForest/tile.HugeStalk/0.png deleted file mode 100644 index ad7d1d437d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.HugeStalk/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.HugeWaterLily/0.png b/front/public/images/large/TwilightForest/tile.HugeWaterLily/0.png deleted file mode 100644 index 4bdc8a4218..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.HugeWaterLily/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.IronwoodBlock/0.png b/front/public/images/large/TwilightForest/tile.IronwoodBlock/0.png deleted file mode 100644 index dc5b96e2cb..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.IronwoodBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.KnightmetalBlock/0.png b/front/public/images/large/TwilightForest/tile.KnightmetalBlock/0.png deleted file mode 100644 index cc60c43154..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.KnightmetalBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.Slider/0.png b/front/public/images/large/TwilightForest/tile.Slider/0.png deleted file mode 100644 index 9802669f9a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.Slider/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.Slider/1.png b/front/public/images/large/TwilightForest/tile.Slider/1.png deleted file mode 100644 index 9802669f9a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.Slider/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.Slider/2.png b/front/public/images/large/TwilightForest/tile.Slider/2.png deleted file mode 100644 index 9802669f9a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.Slider/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.Slider/3.png b/front/public/images/large/TwilightForest/tile.Slider/3.png deleted file mode 100644 index 9802669f9a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.Slider/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.SteeleafBlock/0.png b/front/public/images/large/TwilightForest/tile.SteeleafBlock/0.png deleted file mode 100644 index 8288951f82..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.SteeleafBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFAuroraBrick/0.png b/front/public/images/large/TwilightForest/tile.TFAuroraBrick/0.png deleted file mode 100644 index 64ddfa223e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFAuroraBrick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFBossSpawner/0.png b/front/public/images/large/TwilightForest/tile.TFBossSpawner/0.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFBossSpawner/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFBossSpawner/1.png b/front/public/images/large/TwilightForest/tile.TFBossSpawner/1.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFBossSpawner/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFBossSpawner/2.png b/front/public/images/large/TwilightForest/tile.TFBossSpawner/2.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFBossSpawner/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFBossSpawner/3.png b/front/public/images/large/TwilightForest/tile.TFBossSpawner/3.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFBossSpawner/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFBossSpawner/4.png b/front/public/images/large/TwilightForest/tile.TFBossSpawner/4.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFBossSpawner/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFBossSpawner/5.png b/front/public/images/large/TwilightForest/tile.TFBossSpawner/5.png deleted file mode 100644 index 349e42d362..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFBossSpawner/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFBurntThorns/0.png b/front/public/images/large/TwilightForest/tile.TFBurntThorns/0.png deleted file mode 100644 index bfba0443b6..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFBurntThorns/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFCicada/0.png b/front/public/images/large/TwilightForest/tile.TFCicada/0.png deleted file mode 100644 index a666bf5704..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFCicada/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDeadrock/0.png b/front/public/images/large/TwilightForest/tile.TFDeadrock/0.png deleted file mode 100644 index 717dc187fc..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDeadrock/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDeadrock/1.png b/front/public/images/large/TwilightForest/tile.TFDeadrock/1.png deleted file mode 100644 index ea3098904a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDeadrock/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDeadrock/2.png b/front/public/images/large/TwilightForest/tile.TFDeadrock/2.png deleted file mode 100644 index 51aa6cf851..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDeadrock/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorCanopy/0.png b/front/public/images/large/TwilightForest/tile.TFDoorCanopy/0.png deleted file mode 100644 index ccca535764..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorCanopy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorDarkwood/0.png b/front/public/images/large/TwilightForest/tile.TFDoorDarkwood/0.png deleted file mode 100644 index 9014d1bb94..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorDarkwood/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorMangrove/0.png b/front/public/images/large/TwilightForest/tile.TFDoorMangrove/0.png deleted file mode 100644 index 17e28d5b45..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorMangrove/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorMine/0.png b/front/public/images/large/TwilightForest/tile.TFDoorMine/0.png deleted file mode 100644 index ae5e2e5dff..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorMine/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorSort/0.png b/front/public/images/large/TwilightForest/tile.TFDoorSort/0.png deleted file mode 100644 index f48dc3f964..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorSort/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorTime/0.png b/front/public/images/large/TwilightForest/tile.TFDoorTime/0.png deleted file mode 100644 index 443abb7f08..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorTime/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorTrans/0.png b/front/public/images/large/TwilightForest/tile.TFDoorTrans/0.png deleted file mode 100644 index 7a1696246c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorTrans/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFDoorTwilight/0.png b/front/public/images/large/TwilightForest/tile.TFDoorTwilight/0.png deleted file mode 100644 index 3c8b9eae8e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFDoorTwilight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFExperiment115/0.png b/front/public/images/large/TwilightForest/tile.TFExperiment115/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFExperiment115/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFFireJet/0.png b/front/public/images/large/TwilightForest/tile.TFFireJet/0.png deleted file mode 100644 index c55d758c76..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFFireJet/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFFireJet/1.png b/front/public/images/large/TwilightForest/tile.TFFireJet/1.png deleted file mode 100644 index b328863950..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFFireJet/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFFireJet/11.png b/front/public/images/large/TwilightForest/tile.TFFireJet/11.png deleted file mode 100644 index 6d8f1e782e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFFireJet/11.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFFireJet/8.png b/front/public/images/large/TwilightForest/tile.TFFireJet/8.png deleted file mode 100644 index c55d758c76..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFFireJet/8.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFFirefly/0.png b/front/public/images/large/TwilightForest/tile.TFFirefly/0.png deleted file mode 100644 index 40d0d9300d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFFirefly/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFFireflyJar/0.png b/front/public/images/large/TwilightForest/tile.TFFireflyJar/0.png deleted file mode 100644 index 2a3ee4fe15..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFFireflyJar/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFHedge/0.png b/front/public/images/large/TwilightForest/tile.TFHedge/0.png deleted file mode 100644 index 435dd18cbd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFHedge/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLeaves/0.png b/front/public/images/large/TwilightForest/tile.TFLeaves/0.png deleted file mode 100644 index 7aea72c3fd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLeaves/1.png b/front/public/images/large/TwilightForest/tile.TFLeaves/1.png deleted file mode 100644 index 5508d95207..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLeaves/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLeaves/2.png b/front/public/images/large/TwilightForest/tile.TFLeaves/2.png deleted file mode 100644 index d628199d96..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLeaves/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLeaves/3.png b/front/public/images/large/TwilightForest/tile.TFLeaves/3.png deleted file mode 100644 index 7aea72c3fd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLeaves/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLeaves3/0.png b/front/public/images/large/TwilightForest/tile.TFLeaves3/0.png deleted file mode 100644 index 7aea72c3fd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLeaves3/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLeaves3/1.png b/front/public/images/large/TwilightForest/tile.TFLeaves3/1.png deleted file mode 100644 index 6207b53966..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLeaves3/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLog/0.png b/front/public/images/large/TwilightForest/tile.TFLog/0.png deleted file mode 100644 index ffb3944041..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLog/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLog/1.png b/front/public/images/large/TwilightForest/tile.TFLog/1.png deleted file mode 100644 index b68cdd7265..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLog/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLog/2.png b/front/public/images/large/TwilightForest/tile.TFLog/2.png deleted file mode 100644 index 4d03f57fb2..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLog/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFLog/3.png b/front/public/images/large/TwilightForest/tile.TFLog/3.png deleted file mode 100644 index 3da5177f5d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFLog/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/0.png b/front/public/images/large/TwilightForest/tile.TFMagicLeaves/0.png deleted file mode 100644 index 192f411ff4..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/1.png b/front/public/images/large/TwilightForest/tile.TFMagicLeaves/1.png deleted file mode 100644 index b1f7588ca7..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/2.png b/front/public/images/large/TwilightForest/tile.TFMagicLeaves/2.png deleted file mode 100644 index b1f6378b7e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/3.png b/front/public/images/large/TwilightForest/tile.TFMagicLeaves/3.png deleted file mode 100644 index 631dbfd022..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLeaves/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLog/0.png b/front/public/images/large/TwilightForest/tile.TFMagicLog/0.png deleted file mode 100644 index bbb8f5290b..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLog/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLog/1.png b/front/public/images/large/TwilightForest/tile.TFMagicLog/1.png deleted file mode 100644 index 1d46fd765d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLog/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLog/2.png b/front/public/images/large/TwilightForest/tile.TFMagicLog/2.png deleted file mode 100644 index 8c565f9eb0..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLog/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLog/3.png b/front/public/images/large/TwilightForest/tile.TFMagicLog/3.png deleted file mode 100644 index 059419ba4c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLog/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/0.png b/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/0.png deleted file mode 100644 index 0714c4fc0d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/1.png b/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/1.png deleted file mode 100644 index ea3f4f27ce..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/2.png b/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/2.png deleted file mode 100644 index aebfcf1bee..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/3.png b/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/3.png deleted file mode 100644 index bb958eb373..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMagicLogSpecial/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/0.png b/front/public/images/large/TwilightForest/tile.TFMazestone/0.png deleted file mode 100644 index 045f9348f0..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/1.png b/front/public/images/large/TwilightForest/tile.TFMazestone/1.png deleted file mode 100644 index a7c48b63bb..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/2.png b/front/public/images/large/TwilightForest/tile.TFMazestone/2.png deleted file mode 100644 index ba7372b634..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/3.png b/front/public/images/large/TwilightForest/tile.TFMazestone/3.png deleted file mode 100644 index 06d6c9ee86..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/4.png b/front/public/images/large/TwilightForest/tile.TFMazestone/4.png deleted file mode 100644 index 368b3ad8ca..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/5.png b/front/public/images/large/TwilightForest/tile.TFMazestone/5.png deleted file mode 100644 index 3e5b079380..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/6.png b/front/public/images/large/TwilightForest/tile.TFMazestone/6.png deleted file mode 100644 index 2d465669fd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMazestone/7.png b/front/public/images/large/TwilightForest/tile.TFMazestone/7.png deleted file mode 100644 index 1de94aedb5..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMazestone/7.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFMoonworm/0.png b/front/public/images/large/TwilightForest/tile.TFMoonworm/0.png deleted file mode 100644 index 84011166a4..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFMoonworm/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/0.png b/front/public/images/large/TwilightForest/tile.TFNagastone/0.png deleted file mode 100644 index 4fd5b4c56d..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/1.png b/front/public/images/large/TwilightForest/tile.TFNagastone/1.png deleted file mode 100644 index c1cd02aa96..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/10.png b/front/public/images/large/TwilightForest/tile.TFNagastone/10.png deleted file mode 100644 index 186b451ce4..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/10.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/11.png b/front/public/images/large/TwilightForest/tile.TFNagastone/11.png deleted file mode 100644 index b9dc515941..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/11.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/12.png b/front/public/images/large/TwilightForest/tile.TFNagastone/12.png deleted file mode 100644 index 38fbc6f11a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/12.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/2.png b/front/public/images/large/TwilightForest/tile.TFNagastone/2.png deleted file mode 100644 index 78cd05fde3..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/3.png b/front/public/images/large/TwilightForest/tile.TFNagastone/3.png deleted file mode 100644 index f0965f59d9..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/5.png b/front/public/images/large/TwilightForest/tile.TFNagastone/5.png deleted file mode 100644 index 70aa8f508b..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/6.png b/front/public/images/large/TwilightForest/tile.TFNagastone/6.png deleted file mode 100644 index ef348058d2..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/7.png b/front/public/images/large/TwilightForest/tile.TFNagastone/7.png deleted file mode 100644 index c977034394..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/7.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastone/9.png b/front/public/images/large/TwilightForest/tile.TFNagastone/9.png deleted file mode 100644 index 2fd766db76..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastone/9.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneBody/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneBody/0.png deleted file mode 100644 index 6bcd69a92b..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneBody/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneEtched/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneEtched/0.png deleted file mode 100644 index bb04f14253..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneEtched/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneEtchedMossy/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneEtchedMossy/0.png deleted file mode 100644 index 8c9ed88fc0..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneEtchedMossy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneEtchedWeathered/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneEtchedWeathered/0.png deleted file mode 100644 index 4e5f74ff75..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneEtchedWeathered/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneHead/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneHead/0.png deleted file mode 100644 index f61feb41b5..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneHead/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastonePillar/0.png b/front/public/images/large/TwilightForest/tile.TFNagastonePillar/0.png deleted file mode 100644 index 43ac3e5985..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastonePillar/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastonePillarMossy/0.png b/front/public/images/large/TwilightForest/tile.TFNagastonePillarMossy/0.png deleted file mode 100644 index 1b01261db4..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastonePillarMossy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastonePillarWeathered/0.png b/front/public/images/large/TwilightForest/tile.TFNagastonePillarWeathered/0.png deleted file mode 100644 index 67308c5cfe..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastonePillarWeathered/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsLeft/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneStairsLeft/0.png deleted file mode 100644 index 27badb9c2c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsLeft/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsMossyLeft/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneStairsMossyLeft/0.png deleted file mode 100644 index 9fdddf7359..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsMossyLeft/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsMossyRight/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneStairsMossyRight/0.png deleted file mode 100644 index 883d402d07..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsMossyRight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsRight/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneStairsRight/0.png deleted file mode 100644 index bbd1caafe6..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsRight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsWeatheredLeft/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneStairsWeatheredLeft/0.png deleted file mode 100644 index 1cb7a7a2ae..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsWeatheredLeft/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsWeatheredRight/0.png b/front/public/images/large/TwilightForest/tile.TFNagastoneStairsWeatheredRight/0.png deleted file mode 100644 index daadba3877..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFNagastoneStairsWeatheredRight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/0.png b/front/public/images/large/TwilightForest/tile.TFPlanks/0.png deleted file mode 100644 index 40927b9ad9..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/1.png b/front/public/images/large/TwilightForest/tile.TFPlanks/1.png deleted file mode 100644 index 124f530425..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/2.png b/front/public/images/large/TwilightForest/tile.TFPlanks/2.png deleted file mode 100644 index 3950dd4919..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/3.png b/front/public/images/large/TwilightForest/tile.TFPlanks/3.png deleted file mode 100644 index c7c7283ce3..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/4.png b/front/public/images/large/TwilightForest/tile.TFPlanks/4.png deleted file mode 100644 index bddd3668b8..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/5.png b/front/public/images/large/TwilightForest/tile.TFPlanks/5.png deleted file mode 100644 index fc40fdfc5a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/6.png b/front/public/images/large/TwilightForest/tile.TFPlanks/6.png deleted file mode 100644 index 704b26797f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlanks/7.png b/front/public/images/large/TwilightForest/tile.TFPlanks/7.png deleted file mode 100644 index 3692085faa..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlanks/7.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/10.png b/front/public/images/large/TwilightForest/tile.TFPlant/10.png deleted file mode 100644 index fe02b7bb03..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/10.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/11.png b/front/public/images/large/TwilightForest/tile.TFPlant/11.png deleted file mode 100644 index 427841e883..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/11.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/13.png b/front/public/images/large/TwilightForest/tile.TFPlant/13.png deleted file mode 100644 index 23a37e679e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/13.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/14.png b/front/public/images/large/TwilightForest/tile.TFPlant/14.png deleted file mode 100644 index 1be8771038..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/14.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/3.png b/front/public/images/large/TwilightForest/tile.TFPlant/3.png deleted file mode 100644 index 250b9052a7..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/4.png b/front/public/images/large/TwilightForest/tile.TFPlant/4.png deleted file mode 100644 index f5d04a955b..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/8.png b/front/public/images/large/TwilightForest/tile.TFPlant/8.png deleted file mode 100644 index d2093373d5..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/8.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPlant/9.png b/front/public/images/large/TwilightForest/tile.TFPlant/9.png deleted file mode 100644 index 9afef66081..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPlant/9.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFPortal/0.png b/front/public/images/large/TwilightForest/tile.TFPortal/0.png deleted file mode 100644 index f578f882fd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFPortal/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFRoots/0.png b/front/public/images/large/TwilightForest/tile.TFRoots/0.png deleted file mode 100644 index b72a6dab2c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFRoots/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFRoots/1.png b/front/public/images/large/TwilightForest/tile.TFRoots/1.png deleted file mode 100644 index aadc8a5651..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFRoots/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/0.png b/front/public/images/large/TwilightForest/tile.TFSapling/0.png deleted file mode 100644 index c499245ae1..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/1.png b/front/public/images/large/TwilightForest/tile.TFSapling/1.png deleted file mode 100644 index 90914dd3bd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/2.png b/front/public/images/large/TwilightForest/tile.TFSapling/2.png deleted file mode 100644 index 0a8572439f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/3.png b/front/public/images/large/TwilightForest/tile.TFSapling/3.png deleted file mode 100644 index 3daabf830c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/4.png b/front/public/images/large/TwilightForest/tile.TFSapling/4.png deleted file mode 100644 index 8be93fbad0..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/5.png b/front/public/images/large/TwilightForest/tile.TFSapling/5.png deleted file mode 100644 index 310eba3c3f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/6.png b/front/public/images/large/TwilightForest/tile.TFSapling/6.png deleted file mode 100644 index 0ac1ece70c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/7.png b/front/public/images/large/TwilightForest/tile.TFSapling/7.png deleted file mode 100644 index 7ffadfef16..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/7.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/8.png b/front/public/images/large/TwilightForest/tile.TFSapling/8.png deleted file mode 100644 index ea0d2c74ba..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/8.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSapling/9.png b/front/public/images/large/TwilightForest/tile.TFSapling/9.png deleted file mode 100644 index f85616b2e8..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSapling/9.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFShield/0.png b/front/public/images/large/TwilightForest/tile.TFShield/0.png deleted file mode 100644 index 652476bcc1..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFShield/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFSpiralBricks/0.png b/front/public/images/large/TwilightForest/tile.TFSpiralBricks/0.png deleted file mode 100644 index 1a04cceca7..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFSpiralBricks/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFThornRose/0.png b/front/public/images/large/TwilightForest/tile.TFThornRose/0.png deleted file mode 100644 index 86ebc2587e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFThornRose/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFThorns/0.png b/front/public/images/large/TwilightForest/tile.TFThorns/0.png deleted file mode 100644 index 58b4dde610..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFThorns/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFThorns/1.png b/front/public/images/large/TwilightForest/tile.TFThorns/1.png deleted file mode 100644 index 9fcd71c85e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFThorns/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/0.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/0.png deleted file mode 100644 index 010a003308..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/10.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/10.png deleted file mode 100644 index 42cc589285..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/10.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/12.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/12.png deleted file mode 100644 index b1706665a4..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/12.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/2.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/2.png deleted file mode 100644 index c4292982ac..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/4.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/4.png deleted file mode 100644 index 700c666911..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/5.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/5.png deleted file mode 100644 index 1583796e3c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/6.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/6.png deleted file mode 100644 index d169d04b93..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerDevice/9.png b/front/public/images/large/TwilightForest/tile.TFTowerDevice/9.png deleted file mode 100644 index f476515802..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerDevice/9.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerStone/0.png b/front/public/images/large/TwilightForest/tile.TFTowerStone/0.png deleted file mode 100644 index 051f3a83e6..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerStone/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerStone/1.png b/front/public/images/large/TwilightForest/tile.TFTowerStone/1.png deleted file mode 100644 index b8450b3dd1..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerStone/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerStone/2.png b/front/public/images/large/TwilightForest/tile.TFTowerStone/2.png deleted file mode 100644 index 642a2a0574..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerStone/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerStone/3.png b/front/public/images/large/TwilightForest/tile.TFTowerStone/3.png deleted file mode 100644 index 631829e687..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerStone/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerStone/4.png b/front/public/images/large/TwilightForest/tile.TFTowerStone/4.png deleted file mode 100644 index 47e154aad7..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerStone/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/0.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/0.png deleted file mode 100644 index a6e446555f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/1.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/1.png deleted file mode 100644 index 2e35759dbb..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/2.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/2.png deleted file mode 100644 index bd7bfe5d82..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/3.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/3.png deleted file mode 100644 index 891eaa06cc..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/4.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/4.png deleted file mode 100644 index ffbe627873..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/5.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/5.png deleted file mode 100644 index cbd33bd7eb..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/6.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/6.png deleted file mode 100644 index e8d7ddd6c8..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/7.png b/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/7.png deleted file mode 100644 index 832e0257b3..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTowerTranslucent/7.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorCanopy/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorCanopy/0.png deleted file mode 100644 index dba48abd46..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorCanopy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorDarkwood/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorDarkwood/0.png deleted file mode 100644 index 01b38c0ecf..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorDarkwood/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorMangrove/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorMangrove/0.png deleted file mode 100644 index a1341353f4..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorMangrove/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorMine/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorMine/0.png deleted file mode 100644 index 63587fdb0e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorMine/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorSort/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorSort/0.png deleted file mode 100644 index c63c75674e..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorSort/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorTime/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorTime/0.png deleted file mode 100644 index 70a441992c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorTime/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorTrans/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorTrans/0.png deleted file mode 100644 index 7c2a8f1b2f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorTrans/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrapDoorTwilight/0.png b/front/public/images/large/TwilightForest/tile.TFTrapDoorTwilight/0.png deleted file mode 100644 index 415ce26dfa..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrapDoorTwilight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrophy/0.png b/front/public/images/large/TwilightForest/tile.TFTrophy/0.png deleted file mode 100644 index c630726f7c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrophy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrophyPedestal/0.png b/front/public/images/large/TwilightForest/tile.TFTrophyPedestal/0.png deleted file mode 100644 index 24e62ec25c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrophyPedestal/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFTrophyPedestal/15.png b/front/public/images/large/TwilightForest/tile.TFTrophyPedestal/15.png deleted file mode 100644 index 9681b6e853..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFTrophyPedestal/15.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFUncraftingTable/0.png b/front/public/images/large/TwilightForest/tile.TFUncraftingTable/0.png deleted file mode 100644 index e19df60b98..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFUncraftingTable/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFUnderBrick/0.png b/front/public/images/large/TwilightForest/tile.TFUnderBrick/0.png deleted file mode 100644 index aecd3e0a53..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFUnderBrick/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFUnderBrick/1.png b/front/public/images/large/TwilightForest/tile.TFUnderBrick/1.png deleted file mode 100644 index 9f882cc04c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFUnderBrick/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFUnderBrick/2.png b/front/public/images/large/TwilightForest/tile.TFUnderBrick/2.png deleted file mode 100644 index a8e4f11d60..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFUnderBrick/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/0.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/0.png deleted file mode 100644 index 6f1b5de0e7..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/1.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/1.png deleted file mode 100644 index c8e45fbe54..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/2.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/2.png deleted file mode 100644 index 5b25237662..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/3.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/3.png deleted file mode 100644 index 2d9a1325be..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/4.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/4.png deleted file mode 100644 index 7c5ae8abfd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/5.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/5.png deleted file mode 100644 index 2574e50b62..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/6.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/6.png deleted file mode 100644 index 9328713e3c..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlab/7.png b/front/public/images/large/TwilightForest/tile.TFWoodSlab/7.png deleted file mode 100644 index ab608b4691..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlab/7.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/0.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/0.png deleted file mode 100644 index 40927b9ad9..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/1.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/1.png deleted file mode 100644 index 124f530425..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/1.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/10.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/10.png deleted file mode 100644 index 3950dd4919..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/10.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/11.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/11.png deleted file mode 100644 index c7c7283ce3..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/11.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/12.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/12.png deleted file mode 100644 index bddd3668b8..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/12.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/13.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/13.png deleted file mode 100644 index fc40fdfc5a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/13.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/14.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/14.png deleted file mode 100644 index 704b26797f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/14.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/15.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/15.png deleted file mode 100644 index 3692085faa..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/15.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/2.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/2.png deleted file mode 100644 index 3950dd4919..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/2.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/3.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/3.png deleted file mode 100644 index c7c7283ce3..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/3.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/4.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/4.png deleted file mode 100644 index bddd3668b8..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/4.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/5.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/5.png deleted file mode 100644 index fc40fdfc5a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/5.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/6.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/6.png deleted file mode 100644 index 704b26797f..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/6.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/7.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/7.png deleted file mode 100644 index 3692085faa..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/7.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/9.png b/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/9.png deleted file mode 100644 index 124f530425..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodSlabDouble/9.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsCanopy/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsCanopy/0.png deleted file mode 100644 index 5ee18b942a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsCanopy/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsDarkwood/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsDarkwood/0.png deleted file mode 100644 index e06b3cd7fd..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsDarkwood/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsMangrove/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsMangrove/0.png deleted file mode 100644 index 4d47d0be83..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsMangrove/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsMine/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsMine/0.png deleted file mode 100644 index 8d86727091..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsMine/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsSort/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsSort/0.png deleted file mode 100644 index fbbea98a0a..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsSort/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsTime/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsTime/0.png deleted file mode 100644 index 8b0a73d249..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsTime/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsTrans/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsTrans/0.png deleted file mode 100644 index 2f86f87123..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsTrans/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TFWoodStairsTwilight/0.png b/front/public/images/large/TwilightForest/tile.TFWoodStairsTwilight/0.png deleted file mode 100644 index 19356f00c6..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TFWoodStairsTwilight/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TrollBer/0.png b/front/public/images/large/TwilightForest/tile.TrollBer/0.png deleted file mode 100644 index 8d71c48294..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TrollBer/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TrollSteinn/0.png b/front/public/images/large/TwilightForest/tile.TrollSteinn/0.png deleted file mode 100644 index a055a47ceb..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TrollSteinn/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.TrollVidr/0.png b/front/public/images/large/TwilightForest/tile.TrollVidr/0.png deleted file mode 100644 index 5636a45f51..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.TrollVidr/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.UberousSoil/0.png b/front/public/images/large/TwilightForest/tile.UberousSoil/0.png deleted file mode 100644 index 983b0269ba..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.UberousSoil/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.UnripeTrollBer/0.png b/front/public/images/large/TwilightForest/tile.UnripeTrollBer/0.png deleted file mode 100644 index 7408b55822..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.UnripeTrollBer/0.png and /dev/null differ diff --git a/front/public/images/large/TwilightForest/tile.WispyCloud/0.png b/front/public/images/large/TwilightForest/tile.WispyCloud/0.png deleted file mode 100644 index 61656a41fa..0000000000 Binary files a/front/public/images/large/TwilightForest/tile.WispyCloud/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/BlockPowerChair/0.png b/front/public/images/large/TwistSpaceTechnology/BlockPowerChair/0.png deleted file mode 100644 index fba2290c09..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/BlockPowerChair/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/HatchUpdateTool/0.png b/front/public/images/large/TwistSpaceTechnology/HatchUpdateTool/0.png deleted file mode 100644 index 373194be1e..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/HatchUpdateTool/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlock01/0.png b/front/public/images/large/TwistSpaceTechnology/MetaBlock01/0.png deleted file mode 100644 index 2d1c5ed20b..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlock01/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/0.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/0.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/1.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/1.png deleted file mode 100644 index 7d9457ff66..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/1.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/10.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/10.png deleted file mode 100644 index 45890f92d2..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/10.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/11.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/11.png deleted file mode 100644 index fa2f432137..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/11.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/12.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/12.png deleted file mode 100644 index f27feabc48..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/12.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/2.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/2.png deleted file mode 100644 index 48ed319f13..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/2.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/3.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/3.png deleted file mode 100644 index 1fc4709331..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/3.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/4.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/4.png deleted file mode 100644 index 72a1b77812..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/4.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/5.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/5.png deleted file mode 100644 index e7eb8c5b87..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/5.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/6.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/6.png deleted file mode 100644 index 2918a1841d..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/6.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/7.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/7.png deleted file mode 100644 index 70655d2101..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/7.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/8.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/8.png deleted file mode 100644 index 38f2aa0401..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/8.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/9.png b/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/9.png deleted file mode 100644 index 3f32fcc567..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaBlockCasing01/9.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/0.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/0.png deleted file mode 100644 index b80ddbf6a0..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/1.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/1.png deleted file mode 100644 index 44cac35299..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/1.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/10.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/10.png deleted file mode 100644 index 3e00163b0f..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/10.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/11.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/11.png deleted file mode 100644 index 55da373016..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/11.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/12.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/12.png deleted file mode 100644 index e2f4016616..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/12.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/13.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/13.png deleted file mode 100644 index a0071c207f..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/13.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/14.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/14.png deleted file mode 100644 index 89c081c551..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/14.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/15.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/15.png deleted file mode 100644 index fc3d58a667..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/15.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/16.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/16.png deleted file mode 100644 index 969e87a2fa..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/16.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/17.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/17.png deleted file mode 100644 index 0e204d3b64..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/17.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/18.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/18.png deleted file mode 100644 index a449db54dc..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/18.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/19.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/19.png deleted file mode 100644 index 7d0646ad24..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/19.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/2.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/2.png deleted file mode 100644 index 7e052800a5..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/2.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/20.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/20.png deleted file mode 100644 index bea6ba6073..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/20.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/21.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/21.png deleted file mode 100644 index 8b09608f9e..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/21.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/22.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/22.png deleted file mode 100644 index 620b432392..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/22.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/23.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/23.png deleted file mode 100644 index 9aef00323b..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/23.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/24.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/24.png deleted file mode 100644 index e4d7c545c0..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/24.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/25.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/25.png deleted file mode 100644 index af6611ef56..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/25.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/26.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/26.png deleted file mode 100644 index 60d9a4c53a..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/26.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/27.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/27.png deleted file mode 100644 index 1e77c50a51..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/27.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/28.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/28.png deleted file mode 100644 index 692652e623..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/28.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/29.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/29.png deleted file mode 100644 index d9c5c0f659..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/29.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/3.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/3.png deleted file mode 100644 index 7e375d0d62..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/3.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/30.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/30.png deleted file mode 100644 index d66c91b4ef..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/30.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/31.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/31.png deleted file mode 100644 index d208a0621c..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/31.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/32.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/32.png deleted file mode 100644 index 6fad01cac5..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/32.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/33.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/33.png deleted file mode 100644 index 6f98080c7a..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/33.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/34.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/34.png deleted file mode 100644 index 18173be150..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/34.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/35.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/35.png deleted file mode 100644 index c9599b6cf5..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/35.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/4.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/4.png deleted file mode 100644 index b292fe86cd..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/4.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/5.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/5.png deleted file mode 100644 index 1857e0db5a..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/5.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/6.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/6.png deleted file mode 100644 index 146f61703e..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/6.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/7.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/7.png deleted file mode 100644 index 6a326c6d46..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/7.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/8.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/8.png deleted file mode 100644 index aa58042159..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/8.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItem01/9.png b/front/public/images/large/TwistSpaceTechnology/MetaItem01/9.png deleted file mode 100644 index 3e95a1b1b0..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItem01/9.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/0.png b/front/public/images/large/TwistSpaceTechnology/MetaItemRune/0.png deleted file mode 100644 index b718e0d523..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/1.png b/front/public/images/large/TwistSpaceTechnology/MetaItemRune/1.png deleted file mode 100644 index b718e0d523..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/1.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/2.png b/front/public/images/large/TwistSpaceTechnology/MetaItemRune/2.png deleted file mode 100644 index b718e0d523..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/2.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/3.png b/front/public/images/large/TwistSpaceTechnology/MetaItemRune/3.png deleted file mode 100644 index b718e0d523..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/MetaItemRune/3.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/0.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/0.png deleted file mode 100644 index 2d1c5ed20b..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/1.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/1.png deleted file mode 100644 index fcac0a4d87..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/1.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/10.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/10.png deleted file mode 100644 index 9de3676b3f..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/10.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/11.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/11.png deleted file mode 100644 index eda6c4b9a7..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/11.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/12.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/12.png deleted file mode 100644 index be92a27052..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/12.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/13.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/13.png deleted file mode 100644 index 0c4d98a4bd..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/13.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/2.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/2.png deleted file mode 100644 index 55f2b0a1b5..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/2.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/3.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/3.png deleted file mode 100644 index 9be7a2361c..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/3.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/4.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/4.png deleted file mode 100644 index 8be14526c1..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/4.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/5.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/5.png deleted file mode 100644 index ad7ba8756f..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/5.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/6.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/6.png deleted file mode 100644 index 4b70d46c5c..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/6.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/7.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/7.png deleted file mode 100644 index 1fccf77ad1..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/7.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/8.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/8.png deleted file mode 100644 index f0fac93af8..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/8.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/9.png b/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/9.png deleted file mode 100644 index c8f3b960ea..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PhotonControllerUpgrades/9.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/PowerChair/0.png b/front/public/images/large/TwistSpaceTechnology/PowerChair/0.png deleted file mode 100644 index 1dee94d14f..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/PowerChair/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/ProofOfHeroes/0.png b/front/public/images/large/TwistSpaceTechnology/ProofOfHeroes/0.png deleted file mode 100644 index d3565c6129..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/ProofOfHeroes/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceStationAntiGravityBlock/0.png b/front/public/images/large/TwistSpaceTechnology/SpaceStationAntiGravityBlock/0.png deleted file mode 100644 index d0902e4bfd..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceStationAntiGravityBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceStationStructureBlock/0.png b/front/public/images/large/TwistSpaceTechnology/SpaceStationStructureBlock/0.png deleted file mode 100644 index 03e68c7d61..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceStationStructureBlock/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/0.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/0.png deleted file mode 100644 index 4347292c1e..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/1.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/1.png deleted file mode 100644 index cce5a6fc5e..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/1.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/2.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/2.png deleted file mode 100644 index fb40620548..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeConstraintor/2.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/0.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/0.png deleted file mode 100644 index d1898fc35e..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/1.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/1.png deleted file mode 100644 index 3e5526f8d8..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/1.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/2.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/2.png deleted file mode 100644 index 066154ab14..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeMerger/2.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/0.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/0.png deleted file mode 100644 index 9305d6e87b..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/1.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/1.png deleted file mode 100644 index 3426ca3438..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/1.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/2.png b/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/2.png deleted file mode 100644 index 439f71903d..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/SpaceTimeOscillator/2.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/item.MultiStructuresLinkTool/0.png b/front/public/images/large/TwistSpaceTechnology/item.MultiStructuresLinkTool/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/item.MultiStructuresLinkTool/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/item.Yamato/0.png b/front/public/images/large/TwistSpaceTechnology/item.Yamato/0.png deleted file mode 100644 index 3fa5a82daf..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/item.Yamato/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/nuclear/0.png b/front/public/images/large/TwistSpaceTechnology/nuclear/0.png deleted file mode 100644 index 6ccf6ded17..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/nuclear/0.png and /dev/null differ diff --git a/front/public/images/large/TwistSpaceTechnology/tile.tst.star/0.png b/front/public/images/large/TwistSpaceTechnology/tile.tst.star/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/TwistSpaceTechnology/tile.tst.star/0.png and /dev/null differ diff --git a/front/public/images/large/WarpTheory/blockVanish/0.png b/front/public/images/large/WarpTheory/blockVanish/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/WarpTheory/blockVanish/0.png and /dev/null differ diff --git a/front/public/images/large/WarpTheory/item.warptheory.amulet/0.png b/front/public/images/large/WarpTheory/item.warptheory.amulet/0.png deleted file mode 100644 index 43cf515df4..0000000000 Binary files a/front/public/images/large/WarpTheory/item.warptheory.amulet/0.png and /dev/null differ diff --git a/front/public/images/large/WarpTheory/item.warptheory.cleanser/0.png b/front/public/images/large/WarpTheory/item.warptheory.cleanser/0.png deleted file mode 100644 index fef7dd8dcb..0000000000 Binary files a/front/public/images/large/WarpTheory/item.warptheory.cleanser/0.png and /dev/null differ diff --git a/front/public/images/large/WarpTheory/item.warptheory.cleanserminor/0.png b/front/public/images/large/WarpTheory/item.warptheory.cleanserminor/0.png deleted file mode 100644 index 9c31f6a809..0000000000 Binary files a/front/public/images/large/WarpTheory/item.warptheory.cleanserminor/0.png and /dev/null differ diff --git a/front/public/images/large/WarpTheory/item.warptheory.paper/0.png b/front/public/images/large/WarpTheory/item.warptheory.paper/0.png deleted file mode 100644 index a9cc044e57..0000000000 Binary files a/front/public/images/large/WarpTheory/item.warptheory.paper/0.png and /dev/null differ diff --git a/front/public/images/large/WarpTheory/item.warptheory.something/0.png b/front/public/images/large/WarpTheory/item.warptheory.something/0.png deleted file mode 100644 index 53ce5812cb..0000000000 Binary files a/front/public/images/large/WarpTheory/item.warptheory.something/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_CustomAir/0.png b/front/public/images/large/WitchingGadgets/WG_CustomAir/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_CustomAir/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/0.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/0.png deleted file mode 100644 index b841a022bf..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/1.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/1.png deleted file mode 100644 index 80016f4169..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/10.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/10.png deleted file mode 100644 index 2397e64c83..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/10.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/11.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/11.png deleted file mode 100644 index 2397e64c83..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/11.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/12.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/12.png deleted file mode 100644 index d5b521b4f7..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/12.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/13.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/13.png deleted file mode 100644 index 775f9e42a3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/13.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/2.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/2.png deleted file mode 100644 index 48fd9e1077..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/3.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/3.png deleted file mode 100644 index 5c462ea085..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/4.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/4.png deleted file mode 100644 index 78ee0e8851..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/4.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/5.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/5.png deleted file mode 100644 index 8f1d835be8..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/5.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/6.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/6.png deleted file mode 100644 index 4df78b45fc..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/6.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/7.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/7.png deleted file mode 100644 index 4f7972913e..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/7.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/8.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/8.png deleted file mode 100644 index a813aef521..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/8.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_MetalDevice/9.png b/front/public/images/large/WitchingGadgets/WG_MetalDevice/9.png deleted file mode 100644 index 94745ef336..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_MetalDevice/9.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_RoseVine/0.png b/front/public/images/large/WitchingGadgets/WG_RoseVine/0.png deleted file mode 100644 index edcd999845..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_RoseVine/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_StoneDevice/0.png b/front/public/images/large/WitchingGadgets/WG_StoneDevice/0.png deleted file mode 100644 index 1230eb0914..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_StoneDevice/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_StoneDevice/1.png b/front/public/images/large/WitchingGadgets/WG_StoneDevice/1.png deleted file mode 100644 index 92498d0990..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_StoneDevice/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_VoidWalkway/0.png b/front/public/images/large/WitchingGadgets/WG_VoidWalkway/0.png deleted file mode 100644 index 89807191a6..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_VoidWalkway/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WallMirror/0.png b/front/public/images/large/WitchingGadgets/WG_WallMirror/0.png deleted file mode 100644 index 81e8d9aa49..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WallMirror/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/0.png b/front/public/images/large/WitchingGadgets/WG_WoodenDevice/0.png deleted file mode 100644 index d7960a190d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/1.png b/front/public/images/large/WitchingGadgets/WG_WoodenDevice/1.png deleted file mode 100644 index 267f4027e3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/2.png b/front/public/images/large/WitchingGadgets/WG_WoodenDevice/2.png deleted file mode 100644 index 0510c51e0b..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/3.png b/front/public/images/large/WitchingGadgets/WG_WoodenDevice/3.png deleted file mode 100644 index 412ac53b6a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/4.png b/front/public/images/large/WitchingGadgets/WG_WoodenDevice/4.png deleted file mode 100644 index 5da15eafc9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/4.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/5.png b/front/public/images/large/WitchingGadgets/WG_WoodenDevice/5.png deleted file mode 100644 index 15d4b3e547..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/5.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/6.png b/front/public/images/large/WitchingGadgets/WG_WoodenDevice/6.png deleted file mode 100644 index 267f4027e3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/WG_WoodenDevice/6.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_AdvancedRobeChest/0.png b/front/public/images/large/WitchingGadgets/item.WG_AdvancedRobeChest/0.png deleted file mode 100644 index 6466dd4949..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_AdvancedRobeChest/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_AdvancedRobeLegs/0.png b/front/public/images/large/WitchingGadgets/item.WG_AdvancedRobeLegs/0.png deleted file mode 100644 index 2aa5c66fae..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_AdvancedRobeLegs/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_AdvancedScribingTools/0.png b/front/public/images/large/WitchingGadgets/item.WG_AdvancedScribingTools/0.png deleted file mode 100644 index 332ea2f386..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_AdvancedScribingTools/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Bag/0.png b/front/public/images/large/WitchingGadgets/item.WG_Bag/0.png deleted file mode 100644 index 97c4e31081..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Bag/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Bag/1.png b/front/public/images/large/WitchingGadgets/item.WG_Bag/1.png deleted file mode 100644 index 349887fea1..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Bag/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Bag/2.png b/front/public/images/large/WitchingGadgets/item.WG_Bag/2.png deleted file mode 100644 index d6cff20bd3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Bag/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Bag/3.png b/front/public/images/large/WitchingGadgets/item.WG_Bag/3.png deleted file mode 100644 index ef905d5c1d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Bag/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Baubles/0.png b/front/public/images/large/WitchingGadgets/item.WG_Baubles/0.png deleted file mode 100644 index 6b6e5d7f7f..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Baubles/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Baubles/1.png b/front/public/images/large/WitchingGadgets/item.WG_Baubles/1.png deleted file mode 100644 index a9b57d5fb5..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Baubles/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Baubles/2.png b/front/public/images/large/WitchingGadgets/item.WG_Baubles/2.png deleted file mode 100644 index 3c112a4419..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Baubles/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Baubles/3.png b/front/public/images/large/WitchingGadgets/item.WG_Baubles/3.png deleted file mode 100644 index d7eda2ea96..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Baubles/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Baubles/4.png b/front/public/images/large/WitchingGadgets/item.WG_Baubles/4.png deleted file mode 100644 index 7599612563..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Baubles/4.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Baubles/5.png b/front/public/images/large/WitchingGadgets/item.WG_Baubles/5.png deleted file mode 100644 index 2043e46805..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Baubles/5.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Baubles/6.png b/front/public/images/large/WitchingGadgets/item.WG_Baubles/6.png deleted file mode 100644 index 28462daf14..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Baubles/6.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cloak/0.png b/front/public/images/large/WitchingGadgets/item.WG_Cloak/0.png deleted file mode 100644 index ca44bc56f1..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cloak/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cloak/1.png b/front/public/images/large/WitchingGadgets/item.WG_Cloak/1.png deleted file mode 100644 index 1ed79e8b40..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cloak/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cloak/2.png b/front/public/images/large/WitchingGadgets/item.WG_Cloak/2.png deleted file mode 100644 index 1127df1007..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cloak/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cloak/3.png b/front/public/images/large/WitchingGadgets/item.WG_Cloak/3.png deleted file mode 100644 index d6288aa09b..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cloak/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/0.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/0.png deleted file mode 100644 index 07215e6ea6..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/1.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/1.png deleted file mode 100644 index 831fedc4d1..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/10.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/10.png deleted file mode 100644 index cd8534117d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/10.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/100.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/100.png deleted file mode 100644 index 24b922882d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/100.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/101.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/101.png deleted file mode 100644 index 8d8a495803..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/101.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/102.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/102.png deleted file mode 100644 index a8a0e00ea2..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/102.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/103.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/103.png deleted file mode 100644 index bee809641e..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/103.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/104.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/104.png deleted file mode 100644 index a58fe4a639..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/104.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/105.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/105.png deleted file mode 100644 index 4b9d5da510..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/105.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/106.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/106.png deleted file mode 100644 index 92e0de68db..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/106.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/107.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/107.png deleted file mode 100644 index 554eb3edaa..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/107.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/108.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/108.png deleted file mode 100644 index 9f389b70e5..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/108.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/109.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/109.png deleted file mode 100644 index 831fedc4d1..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/109.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/11.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/11.png deleted file mode 100644 index ae55de6180..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/11.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/110.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/110.png deleted file mode 100644 index 405ef1c84a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/110.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/111.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/111.png deleted file mode 100644 index 438e90384b..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/111.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/112.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/112.png deleted file mode 100644 index 9af8848f3f..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/112.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/113.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/113.png deleted file mode 100644 index d270810b03..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/113.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/114.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/114.png deleted file mode 100644 index 0c637c655b..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/114.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/115.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/115.png deleted file mode 100644 index 56079e6a33..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/115.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/116.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/116.png deleted file mode 100644 index c9f9baec37..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/116.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/117.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/117.png deleted file mode 100644 index 1db2c45f35..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/117.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/118.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/118.png deleted file mode 100644 index 2286314691..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/118.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/119.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/119.png deleted file mode 100644 index e9a1b34b15..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/119.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/12.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/12.png deleted file mode 100644 index 46c68ef10d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/12.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/120.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/120.png deleted file mode 100644 index e85b1643fb..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/120.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/121.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/121.png deleted file mode 100644 index 6e2e57d00d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/121.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/122.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/122.png deleted file mode 100644 index 50f460d7d6..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/122.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/123.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/123.png deleted file mode 100644 index 150495f40f..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/123.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/124.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/124.png deleted file mode 100644 index 8479cbedc1..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/124.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/125.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/125.png deleted file mode 100644 index 224ae2d50a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/125.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/126.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/126.png deleted file mode 100644 index 3da8b54e61..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/126.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/127.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/127.png deleted file mode 100644 index 85892659a3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/127.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/128.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/128.png deleted file mode 100644 index cca89ad270..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/128.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/129.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/129.png deleted file mode 100644 index a5f7b81443..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/129.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/13.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/13.png deleted file mode 100644 index 61bc0c2b2a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/13.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/130.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/130.png deleted file mode 100644 index e8fe484a25..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/130.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/131.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/131.png deleted file mode 100644 index 16db3033a0..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/131.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/132.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/132.png deleted file mode 100644 index facb531bd9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/132.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/133.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/133.png deleted file mode 100644 index 29ada79b1b..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/133.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/134.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/134.png deleted file mode 100644 index e440d7031c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/134.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/135.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/135.png deleted file mode 100644 index ae55de6180..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/135.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/136.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/136.png deleted file mode 100644 index 16db3033a0..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/136.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/137.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/137.png deleted file mode 100644 index 4e9c1478cb..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/137.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/138.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/138.png deleted file mode 100644 index 771f3a6057..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/138.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/139.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/139.png deleted file mode 100644 index ed1127db40..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/139.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/14.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/14.png deleted file mode 100644 index fd96c9cfbb..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/14.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/140.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/140.png deleted file mode 100644 index 5e79e1d1f9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/140.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/141.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/141.png deleted file mode 100644 index 544f555320..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/141.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/142.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/142.png deleted file mode 100644 index cef01e9c77..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/142.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/143.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/143.png deleted file mode 100644 index 733ea15ba9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/143.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/144.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/144.png deleted file mode 100644 index ca6f27acec..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/144.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/145.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/145.png deleted file mode 100644 index bce62f33a9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/145.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/146.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/146.png deleted file mode 100644 index 4d73479490..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/146.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/147.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/147.png deleted file mode 100644 index e65e96b340..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/147.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/148.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/148.png deleted file mode 100644 index b96b385f20..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/148.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/149.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/149.png deleted file mode 100644 index 0c2a9b80ec..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/149.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/15.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/15.png deleted file mode 100644 index 36994b3540..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/15.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/150.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/150.png deleted file mode 100644 index 5b74a61abc..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/150.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/151.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/151.png deleted file mode 100644 index 6c48a06654..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/151.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/152.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/152.png deleted file mode 100644 index 9c64a7eaec..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/152.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/153.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/153.png deleted file mode 100644 index a63be99968..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/153.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/154.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/154.png deleted file mode 100644 index 394934e426..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/154.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/155.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/155.png deleted file mode 100644 index 7686f79d96..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/155.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/156.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/156.png deleted file mode 100644 index 484609f7ac..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/156.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/157.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/157.png deleted file mode 100644 index 2b8c9a2304..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/157.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/158.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/158.png deleted file mode 100644 index 19f6c10084..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/158.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/159.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/159.png deleted file mode 100644 index 469bae0fb8..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/159.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/16.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/16.png deleted file mode 100644 index b98e7a901b..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/16.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/160.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/160.png deleted file mode 100644 index b9a7618322..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/160.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/161.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/161.png deleted file mode 100644 index 86418b718c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/161.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/162.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/162.png deleted file mode 100644 index 329d4782a6..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/162.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/163.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/163.png deleted file mode 100644 index 23fbe693e0..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/163.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/164.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/164.png deleted file mode 100644 index 87a0d1a75d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/164.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/165.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/165.png deleted file mode 100644 index dc7e9cf6d1..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/165.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/166.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/166.png deleted file mode 100644 index 05143f51fb..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/166.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/167.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/167.png deleted file mode 100644 index 462dab69fb..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/167.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/168.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/168.png deleted file mode 100644 index 9f96f03e69..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/168.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/169.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/169.png deleted file mode 100644 index e440d7031c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/169.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/17.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/17.png deleted file mode 100644 index 150495f40f..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/17.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/170.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/170.png deleted file mode 100644 index 53bee53242..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/170.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/171.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/171.png deleted file mode 100644 index 2dd3770815..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/171.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/18.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/18.png deleted file mode 100644 index 707fe4e728..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/18.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/19.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/19.png deleted file mode 100644 index e928cdd61a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/19.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/2.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/2.png deleted file mode 100644 index 56079e6a33..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/20.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/20.png deleted file mode 100644 index b6dcf618b2..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/20.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/21.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/21.png deleted file mode 100644 index 280c2de5ab..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/21.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/22.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/22.png deleted file mode 100644 index 24b922882d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/22.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/23.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/23.png deleted file mode 100644 index 0be18e5667..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/23.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/24.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/24.png deleted file mode 100644 index dffa267a10..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/24.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/25.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/25.png deleted file mode 100644 index cb9ad2a065..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/25.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/26.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/26.png deleted file mode 100644 index 49b7040f19..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/26.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/27.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/27.png deleted file mode 100644 index 4e7a14844a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/27.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/28.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/28.png deleted file mode 100644 index e60dd7f6b5..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/28.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/29.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/29.png deleted file mode 100644 index 528d8e0a39..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/29.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/3.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/3.png deleted file mode 100644 index 93360edf0e..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/30.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/30.png deleted file mode 100644 index 86418b718c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/30.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/31.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/31.png deleted file mode 100644 index 821406ea48..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/31.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/32.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/32.png deleted file mode 100644 index 2233facbcd..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/32.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/33.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/33.png deleted file mode 100644 index 48e91ba776..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/33.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/34.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/34.png deleted file mode 100644 index b15850dc7c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/34.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/35.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/35.png deleted file mode 100644 index 1ca341cf60..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/35.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/36.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/36.png deleted file mode 100644 index 178b13119a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/36.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/37.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/37.png deleted file mode 100644 index 455e1979ef..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/37.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/38.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/38.png deleted file mode 100644 index 7eb9bd8026..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/38.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/39.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/39.png deleted file mode 100644 index 1a3e29dad4..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/39.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/4.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/4.png deleted file mode 100644 index 53bee53242..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/4.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/40.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/40.png deleted file mode 100644 index cc6a44cee2..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/40.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/41.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/41.png deleted file mode 100644 index d4300cf7f8..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/41.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/42.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/42.png deleted file mode 100644 index 46c68ef10d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/42.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/43.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/43.png deleted file mode 100644 index 53bee53242..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/43.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/44.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/44.png deleted file mode 100644 index 2b35431ead..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/44.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/45.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/45.png deleted file mode 100644 index fb4e71297d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/45.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/46.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/46.png deleted file mode 100644 index 9c4cced910..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/46.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/47.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/47.png deleted file mode 100644 index ff7749e929..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/47.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/48.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/48.png deleted file mode 100644 index 2dd3770815..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/48.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/49.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/49.png deleted file mode 100644 index aebdfd30d5..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/49.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/5.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/5.png deleted file mode 100644 index 2be5d0a350..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/5.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/50.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/50.png deleted file mode 100644 index cde855e406..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/50.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/51.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/51.png deleted file mode 100644 index a6ebe040dc..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/51.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/52.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/52.png deleted file mode 100644 index 9a8d710c77..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/52.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/53.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/53.png deleted file mode 100644 index 2dd3770815..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/53.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/54.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/54.png deleted file mode 100644 index 46c68ef10d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/54.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/55.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/55.png deleted file mode 100644 index 733ea15ba9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/55.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/56.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/56.png deleted file mode 100644 index d67ff34f45..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/56.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/57.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/57.png deleted file mode 100644 index 16db3033a0..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/57.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/58.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/58.png deleted file mode 100644 index c8367358f7..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/58.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/59.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/59.png deleted file mode 100644 index 59ff8a0123..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/59.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/6.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/6.png deleted file mode 100644 index 33d133b229..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/6.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/60.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/60.png deleted file mode 100644 index ca6f27acec..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/60.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/61.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/61.png deleted file mode 100644 index 46c68ef10d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/61.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/62.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/62.png deleted file mode 100644 index 33d133b229..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/62.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/63.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/63.png deleted file mode 100644 index 70cebffa15..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/63.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/64.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/64.png deleted file mode 100644 index b6864c4fde..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/64.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/65.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/65.png deleted file mode 100644 index defdbe2fd9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/65.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/66.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/66.png deleted file mode 100644 index 86418b718c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/66.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/67.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/67.png deleted file mode 100644 index 46c68ef10d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/67.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/68.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/68.png deleted file mode 100644 index f58eabd51d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/68.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/69.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/69.png deleted file mode 100644 index 46c68ef10d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/69.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/7.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/7.png deleted file mode 100644 index 573ce555d6..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/7.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/70.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/70.png deleted file mode 100644 index 9fa40267ba..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/70.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/71.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/71.png deleted file mode 100644 index e534d36224..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/71.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/72.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/72.png deleted file mode 100644 index b6a42e16bc..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/72.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/73.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/73.png deleted file mode 100644 index 0b577f79b3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/73.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/74.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/74.png deleted file mode 100644 index f58eabd51d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/74.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/75.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/75.png deleted file mode 100644 index 733ea15ba9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/75.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/76.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/76.png deleted file mode 100644 index caaf8bb06e..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/76.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/77.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/77.png deleted file mode 100644 index 19a5541145..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/77.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/78.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/78.png deleted file mode 100644 index 3f2ffe6c04..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/78.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/79.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/79.png deleted file mode 100644 index 8c1495d117..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/79.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/8.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/8.png deleted file mode 100644 index d270810b03..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/8.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/80.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/80.png deleted file mode 100644 index c6fc20f178..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/80.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/81.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/81.png deleted file mode 100644 index 56759618d9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/81.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/82.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/82.png deleted file mode 100644 index 824f98a718..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/82.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/83.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/83.png deleted file mode 100644 index 16db3033a0..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/83.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/84.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/84.png deleted file mode 100644 index ab625cb514..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/84.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/85.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/85.png deleted file mode 100644 index 85892659a3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/85.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/86.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/86.png deleted file mode 100644 index 1e016f567a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/86.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/87.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/87.png deleted file mode 100644 index 83b96223b2..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/87.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/88.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/88.png deleted file mode 100644 index 2a0180a3d5..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/88.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/89.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/89.png deleted file mode 100644 index 86418b718c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/89.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/9.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/9.png deleted file mode 100644 index 3f2ffe6c04..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/9.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/90.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/90.png deleted file mode 100644 index 867a74141d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/90.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/91.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/91.png deleted file mode 100644 index 384109d4d3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/91.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/92.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/92.png deleted file mode 100644 index 09c15666c3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/92.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/93.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/93.png deleted file mode 100644 index b5c8f93c48..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/93.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/94.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/94.png deleted file mode 100644 index 7170b9aab6..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/94.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/95.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/95.png deleted file mode 100644 index 4d73479490..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/95.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/96.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/96.png deleted file mode 100644 index 733ea15ba9..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/96.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/97.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/97.png deleted file mode 100644 index fb77a554b7..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/97.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/98.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/98.png deleted file mode 100644 index 16db3033a0..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/98.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Cluster/99.png b/front/public/images/large/WitchingGadgets/item.WG_Cluster/99.png deleted file mode 100644 index c433fb89b4..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Cluster/99.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_CrystalFlask/0.png b/front/public/images/large/WitchingGadgets/item.WG_CrystalFlask/0.png deleted file mode 100644 index 373523876f..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_CrystalFlask/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_InfusedGem/0.png b/front/public/images/large/WitchingGadgets/item.WG_InfusedGem/0.png deleted file mode 100644 index f0f88c486c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_InfusedGem/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Kama/0.png b/front/public/images/large/WitchingGadgets/item.WG_Kama/0.png deleted file mode 100644 index b88f787286..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Kama/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Kama/1.png b/front/public/images/large/WitchingGadgets/item.WG_Kama/1.png deleted file mode 100644 index b6cb8353cc..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Kama/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Kama/2.png b/front/public/images/large/WitchingGadgets/item.WG_Kama/2.png deleted file mode 100644 index 6cc95cf860..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Kama/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Kama/3.png b/front/public/images/large/WitchingGadgets/item.WG_Kama/3.png deleted file mode 100644 index 80472361f3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Kama/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_MagicFood/0.png b/front/public/images/large/WitchingGadgets/item.WG_MagicFood/0.png deleted file mode 100644 index 66fa3ee171..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_MagicFood/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_MagicFood/1.png b/front/public/images/large/WitchingGadgets/item.WG_MagicFood/1.png deleted file mode 100644 index 29c83908a1..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_MagicFood/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/0.png b/front/public/images/large/WitchingGadgets/item.WG_Material/0.png deleted file mode 100644 index 92b65deb3d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/1.png b/front/public/images/large/WitchingGadgets/item.WG_Material/1.png deleted file mode 100644 index 3245796310..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/1.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/10.png b/front/public/images/large/WitchingGadgets/item.WG_Material/10.png deleted file mode 100644 index 50de7bfc12..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/10.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/11.png b/front/public/images/large/WitchingGadgets/item.WG_Material/11.png deleted file mode 100644 index cb16761f24..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/11.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/12.png b/front/public/images/large/WitchingGadgets/item.WG_Material/12.png deleted file mode 100644 index a11b948c65..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/12.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/13.png b/front/public/images/large/WitchingGadgets/item.WG_Material/13.png deleted file mode 100644 index 4e1b126d10..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/13.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/2.png b/front/public/images/large/WitchingGadgets/item.WG_Material/2.png deleted file mode 100644 index 392fe13c9d..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/2.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/3.png b/front/public/images/large/WitchingGadgets/item.WG_Material/3.png deleted file mode 100644 index c89b56c414..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/3.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/4.png b/front/public/images/large/WitchingGadgets/item.WG_Material/4.png deleted file mode 100644 index 45e0622f8a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/4.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/5.png b/front/public/images/large/WitchingGadgets/item.WG_Material/5.png deleted file mode 100644 index 652b5adf82..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/5.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/6.png b/front/public/images/large/WitchingGadgets/item.WG_Material/6.png deleted file mode 100644 index f493150c9c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/6.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/7.png b/front/public/images/large/WitchingGadgets/item.WG_Material/7.png deleted file mode 100644 index 1d720ddbd3..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/7.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/8.png b/front/public/images/large/WitchingGadgets/item.WG_Material/8.png deleted file mode 100644 index b7e22d216b..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/8.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_Material/9.png b/front/public/images/large/WitchingGadgets/item.WG_Material/9.png deleted file mode 100644 index 2786a9fbd0..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_Material/9.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialAxe/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialAxe/0.png deleted file mode 100644 index 4b7a80c66c..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialAxe/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialBoots/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialBoots/0.png deleted file mode 100644 index 4521db7a22..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialBoots/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialChest/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialChest/0.png deleted file mode 100644 index c2362a54dc..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialChest/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialGlove/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialGlove/0.png deleted file mode 100644 index 2d3659a037..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialGlove/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialHammer/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialHammer/0.png deleted file mode 100644 index 1d1cafc5ce..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialHammer/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialHelm/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialHelm/0.png deleted file mode 100644 index 65a43b2e44..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialHelm/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialLegs/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialLegs/0.png deleted file mode 100644 index eca376d657..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialLegs/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_PrimordialSword/0.png b/front/public/images/large/WitchingGadgets/item.WG_PrimordialSword/0.png deleted file mode 100644 index eb4b432ba5..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_PrimordialSword/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_ScanCamera/0.png b/front/public/images/large/WitchingGadgets/item.WG_ScanCamera/0.png deleted file mode 100644 index a8f52ba42a..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_ScanCamera/0.png and /dev/null differ diff --git a/front/public/images/large/WitchingGadgets/item.WG_ThaumiumShears/0.png b/front/public/images/large/WitchingGadgets/item.WG_ThaumiumShears/0.png deleted file mode 100644 index 9e7cc05056..0000000000 Binary files a/front/public/images/large/WitchingGadgets/item.WG_ThaumiumShears/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/auroraBlock/0.png b/front/public/images/large/Ztones/auroraBlock/0.png deleted file mode 100644 index 86453e8ae2..0000000000 Binary files a/front/public/images/large/Ztones/auroraBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/booster/0.png b/front/public/images/large/Ztones/booster/0.png deleted file mode 100644 index f7e37d0b9b..0000000000 Binary files a/front/public/images/large/Ztones/booster/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/cleanDirt/0.png b/front/public/images/large/Ztones/cleanDirt/0.png deleted file mode 100644 index 6da2adbec6..0000000000 Binary files a/front/public/images/large/Ztones/cleanDirt/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/lampb/0.png b/front/public/images/large/Ztones/lampb/0.png deleted file mode 100644 index 4364b20670..0000000000 Binary files a/front/public/images/large/Ztones/lampb/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/lampf/0.png b/front/public/images/large/Ztones/lampf/0.png deleted file mode 100644 index 720783d923..0000000000 Binary files a/front/public/images/large/Ztones/lampf/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/lampt/0.png b/front/public/images/large/Ztones/lampt/0.png deleted file mode 100644 index 2cb605237e..0000000000 Binary files a/front/public/images/large/Ztones/lampt/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/minicharcoal/0.png b/front/public/images/large/Ztones/minicharcoal/0.png deleted file mode 100644 index ff662333c6..0000000000 Binary files a/front/public/images/large/Ztones/minicharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/minicoal/0.png b/front/public/images/large/Ztones/minicoal/0.png deleted file mode 100644 index 15239a7250..0000000000 Binary files a/front/public/images/large/Ztones/minicoal/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/ofanix/0.png b/front/public/images/large/Ztones/ofanix/0.png deleted file mode 100644 index 1b165ebf74..0000000000 Binary files a/front/public/images/large/Ztones/ofanix/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/stoneTile/0.png b/front/public/images/large/Ztones/stoneTile/0.png deleted file mode 100644 index 42e95b31f2..0000000000 Binary files a/front/public/images/large/Ztones/stoneTile/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/0.png b/front/public/images/large/Ztones/tile.agonBlock/0.png deleted file mode 100644 index bd87b737bc..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/1.png b/front/public/images/large/Ztones/tile.agonBlock/1.png deleted file mode 100644 index f14f1096f2..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/10.png b/front/public/images/large/Ztones/tile.agonBlock/10.png deleted file mode 100644 index 1ac0eb6a29..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/11.png b/front/public/images/large/Ztones/tile.agonBlock/11.png deleted file mode 100644 index 8dc3f7b037..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/12.png b/front/public/images/large/Ztones/tile.agonBlock/12.png deleted file mode 100644 index 518a64f428..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/13.png b/front/public/images/large/Ztones/tile.agonBlock/13.png deleted file mode 100644 index e58c1990fd..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/14.png b/front/public/images/large/Ztones/tile.agonBlock/14.png deleted file mode 100644 index bde376a683..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/15.png b/front/public/images/large/Ztones/tile.agonBlock/15.png deleted file mode 100644 index 4aa586ae9a..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/2.png b/front/public/images/large/Ztones/tile.agonBlock/2.png deleted file mode 100644 index d26ae3d822..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/3.png b/front/public/images/large/Ztones/tile.agonBlock/3.png deleted file mode 100644 index 5236b3953b..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/4.png b/front/public/images/large/Ztones/tile.agonBlock/4.png deleted file mode 100644 index d87432f05a..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/5.png b/front/public/images/large/Ztones/tile.agonBlock/5.png deleted file mode 100644 index fb3f46812e..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/6.png b/front/public/images/large/Ztones/tile.agonBlock/6.png deleted file mode 100644 index fc7b7c7877..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/7.png b/front/public/images/large/Ztones/tile.agonBlock/7.png deleted file mode 100644 index 578cd54447..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/8.png b/front/public/images/large/Ztones/tile.agonBlock/8.png deleted file mode 100644 index 4635d72f2d..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.agonBlock/9.png b/front/public/images/large/Ztones/tile.agonBlock/9.png deleted file mode 100644 index 413acf0ab4..0000000000 Binary files a/front/public/images/large/Ztones/tile.agonBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/0.png b/front/public/images/large/Ztones/tile.azurBlock/0.png deleted file mode 100644 index 6a8651b0dd..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/1.png b/front/public/images/large/Ztones/tile.azurBlock/1.png deleted file mode 100644 index de34e41475..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/10.png b/front/public/images/large/Ztones/tile.azurBlock/10.png deleted file mode 100644 index 743372affa..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/11.png b/front/public/images/large/Ztones/tile.azurBlock/11.png deleted file mode 100644 index c98c35d9e4..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/12.png b/front/public/images/large/Ztones/tile.azurBlock/12.png deleted file mode 100644 index c5f86d5693..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/13.png b/front/public/images/large/Ztones/tile.azurBlock/13.png deleted file mode 100644 index 0db3b211fa..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/14.png b/front/public/images/large/Ztones/tile.azurBlock/14.png deleted file mode 100644 index 13e27f415d..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/15.png b/front/public/images/large/Ztones/tile.azurBlock/15.png deleted file mode 100644 index 0644eebfd9..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/2.png b/front/public/images/large/Ztones/tile.azurBlock/2.png deleted file mode 100644 index f20a28ad19..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/3.png b/front/public/images/large/Ztones/tile.azurBlock/3.png deleted file mode 100644 index f89490d6a6..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/4.png b/front/public/images/large/Ztones/tile.azurBlock/4.png deleted file mode 100644 index 713fdf0d16..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/5.png b/front/public/images/large/Ztones/tile.azurBlock/5.png deleted file mode 100644 index 981edbea0b..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/6.png b/front/public/images/large/Ztones/tile.azurBlock/6.png deleted file mode 100644 index bf7b19de8c..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/7.png b/front/public/images/large/Ztones/tile.azurBlock/7.png deleted file mode 100644 index 6d79077f8e..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/8.png b/front/public/images/large/Ztones/tile.azurBlock/8.png deleted file mode 100644 index d28ab6ce1f..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.azurBlock/9.png b/front/public/images/large/Ztones/tile.azurBlock/9.png deleted file mode 100644 index 3ca57898d0..0000000000 Binary files a/front/public/images/large/Ztones/tile.azurBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/0.png b/front/public/images/large/Ztones/tile.bittBlock/0.png deleted file mode 100644 index 3e2e1f5cb0..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/1.png b/front/public/images/large/Ztones/tile.bittBlock/1.png deleted file mode 100644 index 32e251774e..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/10.png b/front/public/images/large/Ztones/tile.bittBlock/10.png deleted file mode 100644 index 80f0822cf1..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/11.png b/front/public/images/large/Ztones/tile.bittBlock/11.png deleted file mode 100644 index 42a6354f3c..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/12.png b/front/public/images/large/Ztones/tile.bittBlock/12.png deleted file mode 100644 index 06a5a51585..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/13.png b/front/public/images/large/Ztones/tile.bittBlock/13.png deleted file mode 100644 index af92cfacf4..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/14.png b/front/public/images/large/Ztones/tile.bittBlock/14.png deleted file mode 100644 index 90f2585308..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/15.png b/front/public/images/large/Ztones/tile.bittBlock/15.png deleted file mode 100644 index f3b5c849d7..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/2.png b/front/public/images/large/Ztones/tile.bittBlock/2.png deleted file mode 100644 index 3e51620063..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/3.png b/front/public/images/large/Ztones/tile.bittBlock/3.png deleted file mode 100644 index c7aa435e47..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/4.png b/front/public/images/large/Ztones/tile.bittBlock/4.png deleted file mode 100644 index b6417dd800..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/5.png b/front/public/images/large/Ztones/tile.bittBlock/5.png deleted file mode 100644 index 39e8d8d6da..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/6.png b/front/public/images/large/Ztones/tile.bittBlock/6.png deleted file mode 100644 index 075924a10c..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/7.png b/front/public/images/large/Ztones/tile.bittBlock/7.png deleted file mode 100644 index 6fc9f09d12..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/8.png b/front/public/images/large/Ztones/tile.bittBlock/8.png deleted file mode 100644 index 1a2b0d61d0..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.bittBlock/9.png b/front/public/images/large/Ztones/tile.bittBlock/9.png deleted file mode 100644 index 0d0c1d2e87..0000000000 Binary files a/front/public/images/large/Ztones/tile.bittBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/0.png b/front/public/images/large/Ztones/tile.crayBlock/0.png deleted file mode 100644 index cbb1d08139..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/1.png b/front/public/images/large/Ztones/tile.crayBlock/1.png deleted file mode 100644 index ab1e997afe..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/10.png b/front/public/images/large/Ztones/tile.crayBlock/10.png deleted file mode 100644 index 1e308681a0..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/11.png b/front/public/images/large/Ztones/tile.crayBlock/11.png deleted file mode 100644 index 7c54b55201..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/12.png b/front/public/images/large/Ztones/tile.crayBlock/12.png deleted file mode 100644 index 3cc185bb99..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/13.png b/front/public/images/large/Ztones/tile.crayBlock/13.png deleted file mode 100644 index c9f49a273e..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/14.png b/front/public/images/large/Ztones/tile.crayBlock/14.png deleted file mode 100644 index e43b6492be..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/15.png b/front/public/images/large/Ztones/tile.crayBlock/15.png deleted file mode 100644 index a241c1db63..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/2.png b/front/public/images/large/Ztones/tile.crayBlock/2.png deleted file mode 100644 index 1116edd0f6..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/3.png b/front/public/images/large/Ztones/tile.crayBlock/3.png deleted file mode 100644 index 7036c6fcea..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/4.png b/front/public/images/large/Ztones/tile.crayBlock/4.png deleted file mode 100644 index ce9408df71..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/5.png b/front/public/images/large/Ztones/tile.crayBlock/5.png deleted file mode 100644 index 72bb7a622f..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/6.png b/front/public/images/large/Ztones/tile.crayBlock/6.png deleted file mode 100644 index 11baf66d6d..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/7.png b/front/public/images/large/Ztones/tile.crayBlock/7.png deleted file mode 100644 index 6ba32f4b16..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/8.png b/front/public/images/large/Ztones/tile.crayBlock/8.png deleted file mode 100644 index ec3012925f..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.crayBlock/9.png b/front/public/images/large/Ztones/tile.crayBlock/9.png deleted file mode 100644 index c76430422b..0000000000 Binary files a/front/public/images/large/Ztones/tile.crayBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/0.png b/front/public/images/large/Ztones/tile.fortBlock/0.png deleted file mode 100644 index c5002e4a13..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/1.png b/front/public/images/large/Ztones/tile.fortBlock/1.png deleted file mode 100644 index 5960e07fd2..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/10.png b/front/public/images/large/Ztones/tile.fortBlock/10.png deleted file mode 100644 index 2c04a11b3e..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/11.png b/front/public/images/large/Ztones/tile.fortBlock/11.png deleted file mode 100644 index 9dc27472f4..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/12.png b/front/public/images/large/Ztones/tile.fortBlock/12.png deleted file mode 100644 index 5c0af4eff1..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/13.png b/front/public/images/large/Ztones/tile.fortBlock/13.png deleted file mode 100644 index 98b69fcd22..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/14.png b/front/public/images/large/Ztones/tile.fortBlock/14.png deleted file mode 100644 index 0443f34cfd..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/15.png b/front/public/images/large/Ztones/tile.fortBlock/15.png deleted file mode 100644 index 8260d4f78e..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/2.png b/front/public/images/large/Ztones/tile.fortBlock/2.png deleted file mode 100644 index 4af2c046f1..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/3.png b/front/public/images/large/Ztones/tile.fortBlock/3.png deleted file mode 100644 index 3c4a57ef13..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/4.png b/front/public/images/large/Ztones/tile.fortBlock/4.png deleted file mode 100644 index 438b1ec504..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/5.png b/front/public/images/large/Ztones/tile.fortBlock/5.png deleted file mode 100644 index b690e92da6..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/6.png b/front/public/images/large/Ztones/tile.fortBlock/6.png deleted file mode 100644 index 430672e6a8..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/7.png b/front/public/images/large/Ztones/tile.fortBlock/7.png deleted file mode 100644 index 0328a3152c..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/8.png b/front/public/images/large/Ztones/tile.fortBlock/8.png deleted file mode 100644 index 4828e743f6..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.fortBlock/9.png b/front/public/images/large/Ztones/tile.fortBlock/9.png deleted file mode 100644 index 3655608ddc..0000000000 Binary files a/front/public/images/large/Ztones/tile.fortBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/0.png b/front/public/images/large/Ztones/tile.glaxx/0.png deleted file mode 100644 index 0512cf6792..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/1.png b/front/public/images/large/Ztones/tile.glaxx/1.png deleted file mode 100644 index 8716a5b481..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/10.png b/front/public/images/large/Ztones/tile.glaxx/10.png deleted file mode 100644 index a74468c9c3..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/11.png b/front/public/images/large/Ztones/tile.glaxx/11.png deleted file mode 100644 index b7b45b852c..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/12.png b/front/public/images/large/Ztones/tile.glaxx/12.png deleted file mode 100644 index 8e0877319a..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/13.png b/front/public/images/large/Ztones/tile.glaxx/13.png deleted file mode 100644 index 0cf3644ad0..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/14.png b/front/public/images/large/Ztones/tile.glaxx/14.png deleted file mode 100644 index 4b63eb504a..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/15.png b/front/public/images/large/Ztones/tile.glaxx/15.png deleted file mode 100644 index 0b93ac6052..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/2.png b/front/public/images/large/Ztones/tile.glaxx/2.png deleted file mode 100644 index 9aec24c779..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/3.png b/front/public/images/large/Ztones/tile.glaxx/3.png deleted file mode 100644 index 62a3752054..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/4.png b/front/public/images/large/Ztones/tile.glaxx/4.png deleted file mode 100644 index d039d4adf4..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/5.png b/front/public/images/large/Ztones/tile.glaxx/5.png deleted file mode 100644 index 0b99e819a6..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/6.png b/front/public/images/large/Ztones/tile.glaxx/6.png deleted file mode 100644 index 65e6bbcb2f..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/7.png b/front/public/images/large/Ztones/tile.glaxx/7.png deleted file mode 100644 index 15d46c4c66..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/8.png b/front/public/images/large/Ztones/tile.glaxx/8.png deleted file mode 100644 index 3d2f90a68c..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.glaxx/9.png b/front/public/images/large/Ztones/tile.glaxx/9.png deleted file mode 100644 index 6dbc463860..0000000000 Binary files a/front/public/images/large/Ztones/tile.glaxx/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/0.png b/front/public/images/large/Ztones/tile.iszmBlock/0.png deleted file mode 100644 index 79b94ec346..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/1.png b/front/public/images/large/Ztones/tile.iszmBlock/1.png deleted file mode 100644 index 5b395f5a11..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/10.png b/front/public/images/large/Ztones/tile.iszmBlock/10.png deleted file mode 100644 index 70ada65caa..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/11.png b/front/public/images/large/Ztones/tile.iszmBlock/11.png deleted file mode 100644 index 30b1c1f1c5..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/12.png b/front/public/images/large/Ztones/tile.iszmBlock/12.png deleted file mode 100644 index add2a2ba6c..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/13.png b/front/public/images/large/Ztones/tile.iszmBlock/13.png deleted file mode 100644 index 92217af074..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/14.png b/front/public/images/large/Ztones/tile.iszmBlock/14.png deleted file mode 100644 index 016b22670e..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/15.png b/front/public/images/large/Ztones/tile.iszmBlock/15.png deleted file mode 100644 index a96a95aec5..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/2.png b/front/public/images/large/Ztones/tile.iszmBlock/2.png deleted file mode 100644 index eeb60e8c5b..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/3.png b/front/public/images/large/Ztones/tile.iszmBlock/3.png deleted file mode 100644 index 26b5fcdadc..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/4.png b/front/public/images/large/Ztones/tile.iszmBlock/4.png deleted file mode 100644 index a86b6d8579..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/5.png b/front/public/images/large/Ztones/tile.iszmBlock/5.png deleted file mode 100644 index a511dbbc29..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/6.png b/front/public/images/large/Ztones/tile.iszmBlock/6.png deleted file mode 100644 index e02328aca7..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/7.png b/front/public/images/large/Ztones/tile.iszmBlock/7.png deleted file mode 100644 index 92feabe8e1..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/8.png b/front/public/images/large/Ztones/tile.iszmBlock/8.png deleted file mode 100644 index 29e4cc256b..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.iszmBlock/9.png b/front/public/images/large/Ztones/tile.iszmBlock/9.png deleted file mode 100644 index 3d561a9940..0000000000 Binary files a/front/public/images/large/Ztones/tile.iszmBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/0.png b/front/public/images/large/Ztones/tile.jeltBlock/0.png deleted file mode 100644 index e113c673e8..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/1.png b/front/public/images/large/Ztones/tile.jeltBlock/1.png deleted file mode 100644 index 096548483f..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/10.png b/front/public/images/large/Ztones/tile.jeltBlock/10.png deleted file mode 100644 index 6098defe62..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/11.png b/front/public/images/large/Ztones/tile.jeltBlock/11.png deleted file mode 100644 index bc71133384..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/12.png b/front/public/images/large/Ztones/tile.jeltBlock/12.png deleted file mode 100644 index 70dd6e661a..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/13.png b/front/public/images/large/Ztones/tile.jeltBlock/13.png deleted file mode 100644 index c9caf33c96..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/14.png b/front/public/images/large/Ztones/tile.jeltBlock/14.png deleted file mode 100644 index 19138e6ca0..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/15.png b/front/public/images/large/Ztones/tile.jeltBlock/15.png deleted file mode 100644 index aafafe87fd..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/2.png b/front/public/images/large/Ztones/tile.jeltBlock/2.png deleted file mode 100644 index afc10d29f3..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/3.png b/front/public/images/large/Ztones/tile.jeltBlock/3.png deleted file mode 100644 index dc8b2fe607..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/4.png b/front/public/images/large/Ztones/tile.jeltBlock/4.png deleted file mode 100644 index 6b3502762d..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/5.png b/front/public/images/large/Ztones/tile.jeltBlock/5.png deleted file mode 100644 index 3bd0690cb7..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/6.png b/front/public/images/large/Ztones/tile.jeltBlock/6.png deleted file mode 100644 index f2943be1ec..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/7.png b/front/public/images/large/Ztones/tile.jeltBlock/7.png deleted file mode 100644 index 6f4d407b27..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/8.png b/front/public/images/large/Ztones/tile.jeltBlock/8.png deleted file mode 100644 index 1f8946eb51..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.jeltBlock/9.png b/front/public/images/large/Ztones/tile.jeltBlock/9.png deleted file mode 100644 index 53c83c318c..0000000000 Binary files a/front/public/images/large/Ztones/tile.jeltBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/0.png b/front/public/images/large/Ztones/tile.korpBlock/0.png deleted file mode 100644 index 89028227ca..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/1.png b/front/public/images/large/Ztones/tile.korpBlock/1.png deleted file mode 100644 index 0e67699ee6..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/10.png b/front/public/images/large/Ztones/tile.korpBlock/10.png deleted file mode 100644 index 779887a77b..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/11.png b/front/public/images/large/Ztones/tile.korpBlock/11.png deleted file mode 100644 index 14d77c3705..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/12.png b/front/public/images/large/Ztones/tile.korpBlock/12.png deleted file mode 100644 index 53701cb1e5..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/13.png b/front/public/images/large/Ztones/tile.korpBlock/13.png deleted file mode 100644 index 5a84b75776..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/14.png b/front/public/images/large/Ztones/tile.korpBlock/14.png deleted file mode 100644 index a8b6b9dd7b..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/15.png b/front/public/images/large/Ztones/tile.korpBlock/15.png deleted file mode 100644 index 428e2a7d9a..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/2.png b/front/public/images/large/Ztones/tile.korpBlock/2.png deleted file mode 100644 index 178d62da01..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/3.png b/front/public/images/large/Ztones/tile.korpBlock/3.png deleted file mode 100644 index d84137c75c..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/4.png b/front/public/images/large/Ztones/tile.korpBlock/4.png deleted file mode 100644 index 7bd39bead2..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/5.png b/front/public/images/large/Ztones/tile.korpBlock/5.png deleted file mode 100644 index 23e94bb25d..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/6.png b/front/public/images/large/Ztones/tile.korpBlock/6.png deleted file mode 100644 index 24cad95f19..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/7.png b/front/public/images/large/Ztones/tile.korpBlock/7.png deleted file mode 100644 index bee6e96320..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/8.png b/front/public/images/large/Ztones/tile.korpBlock/8.png deleted file mode 100644 index 7185ed4231..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.korpBlock/9.png b/front/public/images/large/Ztones/tile.korpBlock/9.png deleted file mode 100644 index 17f6a72126..0000000000 Binary files a/front/public/images/large/Ztones/tile.korpBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/0.png b/front/public/images/large/Ztones/tile.krypBlock/0.png deleted file mode 100644 index 2696789dea..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/1.png b/front/public/images/large/Ztones/tile.krypBlock/1.png deleted file mode 100644 index cd4aaea8b5..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/10.png b/front/public/images/large/Ztones/tile.krypBlock/10.png deleted file mode 100644 index ae5e3b68c3..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/11.png b/front/public/images/large/Ztones/tile.krypBlock/11.png deleted file mode 100644 index 388dee4170..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/12.png b/front/public/images/large/Ztones/tile.krypBlock/12.png deleted file mode 100644 index ed671c01c8..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/13.png b/front/public/images/large/Ztones/tile.krypBlock/13.png deleted file mode 100644 index 1420542786..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/14.png b/front/public/images/large/Ztones/tile.krypBlock/14.png deleted file mode 100644 index 29be62105a..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/15.png b/front/public/images/large/Ztones/tile.krypBlock/15.png deleted file mode 100644 index 29624f72d6..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/2.png b/front/public/images/large/Ztones/tile.krypBlock/2.png deleted file mode 100644 index 802d0c1ec1..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/3.png b/front/public/images/large/Ztones/tile.krypBlock/3.png deleted file mode 100644 index 3f2a78bdea..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/4.png b/front/public/images/large/Ztones/tile.krypBlock/4.png deleted file mode 100644 index 792cd3d33f..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/5.png b/front/public/images/large/Ztones/tile.krypBlock/5.png deleted file mode 100644 index 9b271a27c9..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/6.png b/front/public/images/large/Ztones/tile.krypBlock/6.png deleted file mode 100644 index ee6d6e2d62..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/7.png b/front/public/images/large/Ztones/tile.krypBlock/7.png deleted file mode 100644 index 73b585a15c..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/8.png b/front/public/images/large/Ztones/tile.krypBlock/8.png deleted file mode 100644 index 75475fff80..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.krypBlock/9.png b/front/public/images/large/Ztones/tile.krypBlock/9.png deleted file mode 100644 index a054efc94e..0000000000 Binary files a/front/public/images/large/Ztones/tile.krypBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/0.png b/front/public/images/large/Ztones/tile.lairBlock/0.png deleted file mode 100644 index fb825e611a..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/1.png b/front/public/images/large/Ztones/tile.lairBlock/1.png deleted file mode 100644 index 6ef660b346..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/10.png b/front/public/images/large/Ztones/tile.lairBlock/10.png deleted file mode 100644 index b3840ad47f..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/11.png b/front/public/images/large/Ztones/tile.lairBlock/11.png deleted file mode 100644 index 5a152b859e..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/12.png b/front/public/images/large/Ztones/tile.lairBlock/12.png deleted file mode 100644 index 5b54961157..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/13.png b/front/public/images/large/Ztones/tile.lairBlock/13.png deleted file mode 100644 index 4f56a8c9be..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/14.png b/front/public/images/large/Ztones/tile.lairBlock/14.png deleted file mode 100644 index bfc96c43a5..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/15.png b/front/public/images/large/Ztones/tile.lairBlock/15.png deleted file mode 100644 index 7c937e1d14..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/2.png b/front/public/images/large/Ztones/tile.lairBlock/2.png deleted file mode 100644 index 1dd66879c9..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/3.png b/front/public/images/large/Ztones/tile.lairBlock/3.png deleted file mode 100644 index b642a4187b..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/4.png b/front/public/images/large/Ztones/tile.lairBlock/4.png deleted file mode 100644 index 61540d7511..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/5.png b/front/public/images/large/Ztones/tile.lairBlock/5.png deleted file mode 100644 index fd018b1daf..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/6.png b/front/public/images/large/Ztones/tile.lairBlock/6.png deleted file mode 100644 index 9b6109d5dc..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/7.png b/front/public/images/large/Ztones/tile.lairBlock/7.png deleted file mode 100644 index 34f114cdbb..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/8.png b/front/public/images/large/Ztones/tile.lairBlock/8.png deleted file mode 100644 index c2a6c533b9..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.lairBlock/9.png b/front/public/images/large/Ztones/tile.lairBlock/9.png deleted file mode 100644 index b625e0b4a2..0000000000 Binary files a/front/public/images/large/Ztones/tile.lairBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/0.png b/front/public/images/large/Ztones/tile.laveBlock/0.png deleted file mode 100644 index 3dd9afb038..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/1.png b/front/public/images/large/Ztones/tile.laveBlock/1.png deleted file mode 100644 index 999cf3994c..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/10.png b/front/public/images/large/Ztones/tile.laveBlock/10.png deleted file mode 100644 index 80d6846e7f..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/11.png b/front/public/images/large/Ztones/tile.laveBlock/11.png deleted file mode 100644 index ea07ab30fd..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/12.png b/front/public/images/large/Ztones/tile.laveBlock/12.png deleted file mode 100644 index db12a42aa8..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/13.png b/front/public/images/large/Ztones/tile.laveBlock/13.png deleted file mode 100644 index 8c6ae1c3af..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/14.png b/front/public/images/large/Ztones/tile.laveBlock/14.png deleted file mode 100644 index 5bba46b3ca..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/15.png b/front/public/images/large/Ztones/tile.laveBlock/15.png deleted file mode 100644 index 6df49b7bcd..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/2.png b/front/public/images/large/Ztones/tile.laveBlock/2.png deleted file mode 100644 index 63eb10178c..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/3.png b/front/public/images/large/Ztones/tile.laveBlock/3.png deleted file mode 100644 index e748701d3c..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/4.png b/front/public/images/large/Ztones/tile.laveBlock/4.png deleted file mode 100644 index 13dfe2c9e1..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/5.png b/front/public/images/large/Ztones/tile.laveBlock/5.png deleted file mode 100644 index d4e59ddbdd..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/6.png b/front/public/images/large/Ztones/tile.laveBlock/6.png deleted file mode 100644 index d1100d4289..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/7.png b/front/public/images/large/Ztones/tile.laveBlock/7.png deleted file mode 100644 index 6b7afc1761..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/8.png b/front/public/images/large/Ztones/tile.laveBlock/8.png deleted file mode 100644 index bffc1a0e5e..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.laveBlock/9.png b/front/public/images/large/Ztones/tile.laveBlock/9.png deleted file mode 100644 index fe8180f149..0000000000 Binary files a/front/public/images/large/Ztones/tile.laveBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/0.png b/front/public/images/large/Ztones/tile.mintBlock/0.png deleted file mode 100644 index 6d708a2b3b..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/1.png b/front/public/images/large/Ztones/tile.mintBlock/1.png deleted file mode 100644 index 0564a15cc1..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/10.png b/front/public/images/large/Ztones/tile.mintBlock/10.png deleted file mode 100644 index a621e3dcd4..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/11.png b/front/public/images/large/Ztones/tile.mintBlock/11.png deleted file mode 100644 index f257eecd65..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/12.png b/front/public/images/large/Ztones/tile.mintBlock/12.png deleted file mode 100644 index a4930da0aa..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/13.png b/front/public/images/large/Ztones/tile.mintBlock/13.png deleted file mode 100644 index 38365be1ac..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/14.png b/front/public/images/large/Ztones/tile.mintBlock/14.png deleted file mode 100644 index f3664be5e8..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/15.png b/front/public/images/large/Ztones/tile.mintBlock/15.png deleted file mode 100644 index b86d2303f1..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/2.png b/front/public/images/large/Ztones/tile.mintBlock/2.png deleted file mode 100644 index 447f946782..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/3.png b/front/public/images/large/Ztones/tile.mintBlock/3.png deleted file mode 100644 index 8e0ac32b8a..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/4.png b/front/public/images/large/Ztones/tile.mintBlock/4.png deleted file mode 100644 index fc98fc74bc..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/5.png b/front/public/images/large/Ztones/tile.mintBlock/5.png deleted file mode 100644 index 4f6ac5954c..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/6.png b/front/public/images/large/Ztones/tile.mintBlock/6.png deleted file mode 100644 index 6fe16fe41c..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/7.png b/front/public/images/large/Ztones/tile.mintBlock/7.png deleted file mode 100644 index 0988005b26..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/8.png b/front/public/images/large/Ztones/tile.mintBlock/8.png deleted file mode 100644 index 2dad897f01..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mintBlock/9.png b/front/public/images/large/Ztones/tile.mintBlock/9.png deleted file mode 100644 index 00da444530..0000000000 Binary files a/front/public/images/large/Ztones/tile.mintBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/0.png b/front/public/images/large/Ztones/tile.mystBlock/0.png deleted file mode 100644 index 2b4391b600..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/1.png b/front/public/images/large/Ztones/tile.mystBlock/1.png deleted file mode 100644 index 3f49919407..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/10.png b/front/public/images/large/Ztones/tile.mystBlock/10.png deleted file mode 100644 index 56dcd3f59b..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/11.png b/front/public/images/large/Ztones/tile.mystBlock/11.png deleted file mode 100644 index c07b6dd430..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/12.png b/front/public/images/large/Ztones/tile.mystBlock/12.png deleted file mode 100644 index f8728ea2d8..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/13.png b/front/public/images/large/Ztones/tile.mystBlock/13.png deleted file mode 100644 index 2b3e98384d..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/14.png b/front/public/images/large/Ztones/tile.mystBlock/14.png deleted file mode 100644 index 67baa32c5b..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/15.png b/front/public/images/large/Ztones/tile.mystBlock/15.png deleted file mode 100644 index bb75227f7f..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/2.png b/front/public/images/large/Ztones/tile.mystBlock/2.png deleted file mode 100644 index 3d542d9b7a..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/3.png b/front/public/images/large/Ztones/tile.mystBlock/3.png deleted file mode 100644 index 5d2db2ddd1..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/4.png b/front/public/images/large/Ztones/tile.mystBlock/4.png deleted file mode 100644 index e66bd427ed..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/5.png b/front/public/images/large/Ztones/tile.mystBlock/5.png deleted file mode 100644 index 2416503045..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/6.png b/front/public/images/large/Ztones/tile.mystBlock/6.png deleted file mode 100644 index 3e8bda63f3..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/7.png b/front/public/images/large/Ztones/tile.mystBlock/7.png deleted file mode 100644 index 3df51b28ac..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/8.png b/front/public/images/large/Ztones/tile.mystBlock/8.png deleted file mode 100644 index 9e655bab97..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.mystBlock/9.png b/front/public/images/large/Ztones/tile.mystBlock/9.png deleted file mode 100644 index 061a8c3730..0000000000 Binary files a/front/public/images/large/Ztones/tile.mystBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/0.png b/front/public/images/large/Ztones/tile.redsBlock/0.png deleted file mode 100644 index 2d62a18f01..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/1.png b/front/public/images/large/Ztones/tile.redsBlock/1.png deleted file mode 100644 index ee54c1a5a8..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/10.png b/front/public/images/large/Ztones/tile.redsBlock/10.png deleted file mode 100644 index fbcb091066..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/11.png b/front/public/images/large/Ztones/tile.redsBlock/11.png deleted file mode 100644 index 6624852cc1..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/12.png b/front/public/images/large/Ztones/tile.redsBlock/12.png deleted file mode 100644 index f80075b443..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/13.png b/front/public/images/large/Ztones/tile.redsBlock/13.png deleted file mode 100644 index 6c37934704..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/14.png b/front/public/images/large/Ztones/tile.redsBlock/14.png deleted file mode 100644 index 6fc014649d..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/15.png b/front/public/images/large/Ztones/tile.redsBlock/15.png deleted file mode 100644 index 19fb1953b2..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/2.png b/front/public/images/large/Ztones/tile.redsBlock/2.png deleted file mode 100644 index 5f7c60aa08..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/3.png b/front/public/images/large/Ztones/tile.redsBlock/3.png deleted file mode 100644 index 9879e0250d..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/4.png b/front/public/images/large/Ztones/tile.redsBlock/4.png deleted file mode 100644 index 3c0c48a50e..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/5.png b/front/public/images/large/Ztones/tile.redsBlock/5.png deleted file mode 100644 index 43cc7a2e43..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/6.png b/front/public/images/large/Ztones/tile.redsBlock/6.png deleted file mode 100644 index 71e47fb8ce..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/7.png b/front/public/images/large/Ztones/tile.redsBlock/7.png deleted file mode 100644 index 30661e5257..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/8.png b/front/public/images/large/Ztones/tile.redsBlock/8.png deleted file mode 100644 index 78b8defb83..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.redsBlock/9.png b/front/public/images/large/Ztones/tile.redsBlock/9.png deleted file mode 100644 index 102ef21df9..0000000000 Binary files a/front/public/images/large/Ztones/tile.redsBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/0.png b/front/public/images/large/Ztones/tile.reedBlock/0.png deleted file mode 100644 index df6d6b0668..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/1.png b/front/public/images/large/Ztones/tile.reedBlock/1.png deleted file mode 100644 index 42639a94bd..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/10.png b/front/public/images/large/Ztones/tile.reedBlock/10.png deleted file mode 100644 index 1c71078671..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/11.png b/front/public/images/large/Ztones/tile.reedBlock/11.png deleted file mode 100644 index af0a318582..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/12.png b/front/public/images/large/Ztones/tile.reedBlock/12.png deleted file mode 100644 index 54e8019399..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/13.png b/front/public/images/large/Ztones/tile.reedBlock/13.png deleted file mode 100644 index 5e25ff7242..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/14.png b/front/public/images/large/Ztones/tile.reedBlock/14.png deleted file mode 100644 index 8defc0f86d..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/15.png b/front/public/images/large/Ztones/tile.reedBlock/15.png deleted file mode 100644 index 476a9a184e..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/2.png b/front/public/images/large/Ztones/tile.reedBlock/2.png deleted file mode 100644 index 47e2e85170..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/3.png b/front/public/images/large/Ztones/tile.reedBlock/3.png deleted file mode 100644 index 0776c8c18d..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/4.png b/front/public/images/large/Ztones/tile.reedBlock/4.png deleted file mode 100644 index f3b557cd5d..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/5.png b/front/public/images/large/Ztones/tile.reedBlock/5.png deleted file mode 100644 index d4d43926d9..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/6.png b/front/public/images/large/Ztones/tile.reedBlock/6.png deleted file mode 100644 index 00d4b55dc3..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/7.png b/front/public/images/large/Ztones/tile.reedBlock/7.png deleted file mode 100644 index fbdaa4028c..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/8.png b/front/public/images/large/Ztones/tile.reedBlock/8.png deleted file mode 100644 index 1ff0ce2e10..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.reedBlock/9.png b/front/public/images/large/Ztones/tile.reedBlock/9.png deleted file mode 100644 index f75579ea80..0000000000 Binary files a/front/public/images/large/Ztones/tile.reedBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/0.png b/front/public/images/large/Ztones/tile.roenBlock/0.png deleted file mode 100644 index 7463c9ff87..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/1.png b/front/public/images/large/Ztones/tile.roenBlock/1.png deleted file mode 100644 index f8bff58c1e..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/10.png b/front/public/images/large/Ztones/tile.roenBlock/10.png deleted file mode 100644 index a044684f02..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/11.png b/front/public/images/large/Ztones/tile.roenBlock/11.png deleted file mode 100644 index ca7c30eef4..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/12.png b/front/public/images/large/Ztones/tile.roenBlock/12.png deleted file mode 100644 index 62b17992e8..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/13.png b/front/public/images/large/Ztones/tile.roenBlock/13.png deleted file mode 100644 index b78b5b2cb8..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/14.png b/front/public/images/large/Ztones/tile.roenBlock/14.png deleted file mode 100644 index 7d0a7ff630..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/15.png b/front/public/images/large/Ztones/tile.roenBlock/15.png deleted file mode 100644 index ca768b4829..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/2.png b/front/public/images/large/Ztones/tile.roenBlock/2.png deleted file mode 100644 index f618d76e16..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/3.png b/front/public/images/large/Ztones/tile.roenBlock/3.png deleted file mode 100644 index 41f67d9dce..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/4.png b/front/public/images/large/Ztones/tile.roenBlock/4.png deleted file mode 100644 index 8509e7ae58..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/5.png b/front/public/images/large/Ztones/tile.roenBlock/5.png deleted file mode 100644 index ad954c3b7c..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/6.png b/front/public/images/large/Ztones/tile.roenBlock/6.png deleted file mode 100644 index be081ff48e..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/7.png b/front/public/images/large/Ztones/tile.roenBlock/7.png deleted file mode 100644 index f244a2e8d4..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/8.png b/front/public/images/large/Ztones/tile.roenBlock/8.png deleted file mode 100644 index ba1ed07369..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.roenBlock/9.png b/front/public/images/large/Ztones/tile.roenBlock/9.png deleted file mode 100644 index 45f09643d0..0000000000 Binary files a/front/public/images/large/Ztones/tile.roenBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/0.png b/front/public/images/large/Ztones/tile.solsBlock/0.png deleted file mode 100644 index 96b786c401..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/1.png b/front/public/images/large/Ztones/tile.solsBlock/1.png deleted file mode 100644 index 6b6a76f6d0..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/10.png b/front/public/images/large/Ztones/tile.solsBlock/10.png deleted file mode 100644 index fba108eed3..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/11.png b/front/public/images/large/Ztones/tile.solsBlock/11.png deleted file mode 100644 index 409719cfd1..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/12.png b/front/public/images/large/Ztones/tile.solsBlock/12.png deleted file mode 100644 index b0914fc61e..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/13.png b/front/public/images/large/Ztones/tile.solsBlock/13.png deleted file mode 100644 index 00d3fce94d..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/14.png b/front/public/images/large/Ztones/tile.solsBlock/14.png deleted file mode 100644 index 86c4d83303..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/15.png b/front/public/images/large/Ztones/tile.solsBlock/15.png deleted file mode 100644 index ec85db7c9c..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/2.png b/front/public/images/large/Ztones/tile.solsBlock/2.png deleted file mode 100644 index b812971e44..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/3.png b/front/public/images/large/Ztones/tile.solsBlock/3.png deleted file mode 100644 index 29e17aec95..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/4.png b/front/public/images/large/Ztones/tile.solsBlock/4.png deleted file mode 100644 index 90c1154d2e..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/5.png b/front/public/images/large/Ztones/tile.solsBlock/5.png deleted file mode 100644 index 9b65428f61..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/6.png b/front/public/images/large/Ztones/tile.solsBlock/6.png deleted file mode 100644 index db237fd611..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/7.png b/front/public/images/large/Ztones/tile.solsBlock/7.png deleted file mode 100644 index fbd6790ce6..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/8.png b/front/public/images/large/Ztones/tile.solsBlock/8.png deleted file mode 100644 index 146c1e90ea..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.solsBlock/9.png b/front/public/images/large/Ztones/tile.solsBlock/9.png deleted file mode 100644 index 8cb48389bf..0000000000 Binary files a/front/public/images/large/Ztones/tile.solsBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/0.png b/front/public/images/large/Ztones/tile.syncBlock/0.png deleted file mode 100644 index 7aa95358f1..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/1.png b/front/public/images/large/Ztones/tile.syncBlock/1.png deleted file mode 100644 index b3860ffa10..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/10.png b/front/public/images/large/Ztones/tile.syncBlock/10.png deleted file mode 100644 index 68e34036e0..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/11.png b/front/public/images/large/Ztones/tile.syncBlock/11.png deleted file mode 100644 index c4cc1ac8c9..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/12.png b/front/public/images/large/Ztones/tile.syncBlock/12.png deleted file mode 100644 index 7f72e0c2f1..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/13.png b/front/public/images/large/Ztones/tile.syncBlock/13.png deleted file mode 100644 index e8d1f1b142..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/14.png b/front/public/images/large/Ztones/tile.syncBlock/14.png deleted file mode 100644 index f1910f58af..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/15.png b/front/public/images/large/Ztones/tile.syncBlock/15.png deleted file mode 100644 index 3ab1071291..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/2.png b/front/public/images/large/Ztones/tile.syncBlock/2.png deleted file mode 100644 index b77b446d6a..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/3.png b/front/public/images/large/Ztones/tile.syncBlock/3.png deleted file mode 100644 index d0077cd3c5..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/4.png b/front/public/images/large/Ztones/tile.syncBlock/4.png deleted file mode 100644 index 517c09adbf..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/5.png b/front/public/images/large/Ztones/tile.syncBlock/5.png deleted file mode 100644 index b3a70e27b2..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/6.png b/front/public/images/large/Ztones/tile.syncBlock/6.png deleted file mode 100644 index 6bff32ffd0..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/7.png b/front/public/images/large/Ztones/tile.syncBlock/7.png deleted file mode 100644 index 6f123915c1..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/8.png b/front/public/images/large/Ztones/tile.syncBlock/8.png deleted file mode 100644 index 0cf4069f65..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.syncBlock/9.png b/front/public/images/large/Ztones/tile.syncBlock/9.png deleted file mode 100644 index 1aa9865967..0000000000 Binary files a/front/public/images/large/Ztones/tile.syncBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/0.png b/front/public/images/large/Ztones/tile.tankBlock/0.png deleted file mode 100644 index 5f53932926..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/1.png b/front/public/images/large/Ztones/tile.tankBlock/1.png deleted file mode 100644 index bd0c69bc83..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/10.png b/front/public/images/large/Ztones/tile.tankBlock/10.png deleted file mode 100644 index dc35b07f24..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/11.png b/front/public/images/large/Ztones/tile.tankBlock/11.png deleted file mode 100644 index 7d2b0460e0..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/12.png b/front/public/images/large/Ztones/tile.tankBlock/12.png deleted file mode 100644 index 4caff1c66b..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/13.png b/front/public/images/large/Ztones/tile.tankBlock/13.png deleted file mode 100644 index a754a8f82c..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/14.png b/front/public/images/large/Ztones/tile.tankBlock/14.png deleted file mode 100644 index 3459c66155..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/15.png b/front/public/images/large/Ztones/tile.tankBlock/15.png deleted file mode 100644 index 97de99d777..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/2.png b/front/public/images/large/Ztones/tile.tankBlock/2.png deleted file mode 100644 index e931c11005..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/3.png b/front/public/images/large/Ztones/tile.tankBlock/3.png deleted file mode 100644 index d07e17b37e..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/4.png b/front/public/images/large/Ztones/tile.tankBlock/4.png deleted file mode 100644 index d06ea73492..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/5.png b/front/public/images/large/Ztones/tile.tankBlock/5.png deleted file mode 100644 index a4d55a4970..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/6.png b/front/public/images/large/Ztones/tile.tankBlock/6.png deleted file mode 100644 index ac412cf083..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/7.png b/front/public/images/large/Ztones/tile.tankBlock/7.png deleted file mode 100644 index d157e800b0..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/8.png b/front/public/images/large/Ztones/tile.tankBlock/8.png deleted file mode 100644 index 3fd36fee08..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.tankBlock/9.png b/front/public/images/large/Ztones/tile.tankBlock/9.png deleted file mode 100644 index e5434acdf3..0000000000 Binary files a/front/public/images/large/Ztones/tile.tankBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/0.png b/front/public/images/large/Ztones/tile.vectBlock/0.png deleted file mode 100644 index 27f4a3d645..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/1.png b/front/public/images/large/Ztones/tile.vectBlock/1.png deleted file mode 100644 index c33e48c7b8..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/10.png b/front/public/images/large/Ztones/tile.vectBlock/10.png deleted file mode 100644 index 8dc7a97aa8..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/11.png b/front/public/images/large/Ztones/tile.vectBlock/11.png deleted file mode 100644 index 9de838ea2e..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/12.png b/front/public/images/large/Ztones/tile.vectBlock/12.png deleted file mode 100644 index f6a0cc9b74..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/13.png b/front/public/images/large/Ztones/tile.vectBlock/13.png deleted file mode 100644 index 28235093f0..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/14.png b/front/public/images/large/Ztones/tile.vectBlock/14.png deleted file mode 100644 index 931f160ae8..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/15.png b/front/public/images/large/Ztones/tile.vectBlock/15.png deleted file mode 100644 index 13bcb89863..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/2.png b/front/public/images/large/Ztones/tile.vectBlock/2.png deleted file mode 100644 index f893c76456..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/3.png b/front/public/images/large/Ztones/tile.vectBlock/3.png deleted file mode 100644 index afdfb49684..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/4.png b/front/public/images/large/Ztones/tile.vectBlock/4.png deleted file mode 100644 index 4acf170fa4..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/5.png b/front/public/images/large/Ztones/tile.vectBlock/5.png deleted file mode 100644 index c27a940789..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/6.png b/front/public/images/large/Ztones/tile.vectBlock/6.png deleted file mode 100644 index 204cb5cbae..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/7.png b/front/public/images/large/Ztones/tile.vectBlock/7.png deleted file mode 100644 index 0b5d092373..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/8.png b/front/public/images/large/Ztones/tile.vectBlock/8.png deleted file mode 100644 index fe41e6e327..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.vectBlock/9.png b/front/public/images/large/Ztones/tile.vectBlock/9.png deleted file mode 100644 index b258270eb5..0000000000 Binary files a/front/public/images/large/Ztones/tile.vectBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/0.png b/front/public/images/large/Ztones/tile.venaBlock/0.png deleted file mode 100644 index 6ff541deaa..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/1.png b/front/public/images/large/Ztones/tile.venaBlock/1.png deleted file mode 100644 index 18d0b3b082..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/10.png b/front/public/images/large/Ztones/tile.venaBlock/10.png deleted file mode 100644 index 2358e7b6eb..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/11.png b/front/public/images/large/Ztones/tile.venaBlock/11.png deleted file mode 100644 index 3288ff29b0..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/12.png b/front/public/images/large/Ztones/tile.venaBlock/12.png deleted file mode 100644 index 878c0bd07d..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/13.png b/front/public/images/large/Ztones/tile.venaBlock/13.png deleted file mode 100644 index fc3f0eb778..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/14.png b/front/public/images/large/Ztones/tile.venaBlock/14.png deleted file mode 100644 index a771ac3f2a..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/15.png b/front/public/images/large/Ztones/tile.venaBlock/15.png deleted file mode 100644 index 3866fae7df..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/2.png b/front/public/images/large/Ztones/tile.venaBlock/2.png deleted file mode 100644 index cb31fc299b..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/3.png b/front/public/images/large/Ztones/tile.venaBlock/3.png deleted file mode 100644 index 5ba331bbb3..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/4.png b/front/public/images/large/Ztones/tile.venaBlock/4.png deleted file mode 100644 index 1538ed4855..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/5.png b/front/public/images/large/Ztones/tile.venaBlock/5.png deleted file mode 100644 index 2a0ac115de..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/6.png b/front/public/images/large/Ztones/tile.venaBlock/6.png deleted file mode 100644 index 3dfb4e099a..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/7.png b/front/public/images/large/Ztones/tile.venaBlock/7.png deleted file mode 100644 index e9eda4de7c..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/8.png b/front/public/images/large/Ztones/tile.venaBlock/8.png deleted file mode 100644 index 60123e3456..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.venaBlock/9.png b/front/public/images/large/Ztones/tile.venaBlock/9.png deleted file mode 100644 index c75ed7fc23..0000000000 Binary files a/front/public/images/large/Ztones/tile.venaBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/0.png b/front/public/images/large/Ztones/tile.zaneBlock/0.png deleted file mode 100644 index c577dc1aa1..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/1.png b/front/public/images/large/Ztones/tile.zaneBlock/1.png deleted file mode 100644 index a04b602782..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/10.png b/front/public/images/large/Ztones/tile.zaneBlock/10.png deleted file mode 100644 index 8a0c206f62..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/11.png b/front/public/images/large/Ztones/tile.zaneBlock/11.png deleted file mode 100644 index 1d1426e52a..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/12.png b/front/public/images/large/Ztones/tile.zaneBlock/12.png deleted file mode 100644 index aa7b655651..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/13.png b/front/public/images/large/Ztones/tile.zaneBlock/13.png deleted file mode 100644 index ed7f310860..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/14.png b/front/public/images/large/Ztones/tile.zaneBlock/14.png deleted file mode 100644 index af1a256082..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/15.png b/front/public/images/large/Ztones/tile.zaneBlock/15.png deleted file mode 100644 index f81422d9e1..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/2.png b/front/public/images/large/Ztones/tile.zaneBlock/2.png deleted file mode 100644 index 9b82e197d3..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/3.png b/front/public/images/large/Ztones/tile.zaneBlock/3.png deleted file mode 100644 index 2746fd4989..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/4.png b/front/public/images/large/Ztones/tile.zaneBlock/4.png deleted file mode 100644 index 60e1d8d2ad..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/5.png b/front/public/images/large/Ztones/tile.zaneBlock/5.png deleted file mode 100644 index ff47424519..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/6.png b/front/public/images/large/Ztones/tile.zaneBlock/6.png deleted file mode 100644 index 928f423fa9..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/7.png b/front/public/images/large/Ztones/tile.zaneBlock/7.png deleted file mode 100644 index 380455f6e0..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/8.png b/front/public/images/large/Ztones/tile.zaneBlock/8.png deleted file mode 100644 index 722740fb0d..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zaneBlock/9.png b/front/public/images/large/Ztones/tile.zaneBlock/9.png deleted file mode 100644 index 283d6d9371..0000000000 Binary files a/front/public/images/large/Ztones/tile.zaneBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/0.png b/front/public/images/large/Ztones/tile.zechBlock/0.png deleted file mode 100644 index 656964af84..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/1.png b/front/public/images/large/Ztones/tile.zechBlock/1.png deleted file mode 100644 index dec53eb965..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/10.png b/front/public/images/large/Ztones/tile.zechBlock/10.png deleted file mode 100644 index f8bc8ae931..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/11.png b/front/public/images/large/Ztones/tile.zechBlock/11.png deleted file mode 100644 index 40e1a03661..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/12.png b/front/public/images/large/Ztones/tile.zechBlock/12.png deleted file mode 100644 index 34cc308324..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/13.png b/front/public/images/large/Ztones/tile.zechBlock/13.png deleted file mode 100644 index 5eb82b66a5..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/14.png b/front/public/images/large/Ztones/tile.zechBlock/14.png deleted file mode 100644 index 53cdac8553..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/15.png b/front/public/images/large/Ztones/tile.zechBlock/15.png deleted file mode 100644 index 2b984dbd71..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/2.png b/front/public/images/large/Ztones/tile.zechBlock/2.png deleted file mode 100644 index b4c4b3f32f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/3.png b/front/public/images/large/Ztones/tile.zechBlock/3.png deleted file mode 100644 index 9c70b488cd..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/4.png b/front/public/images/large/Ztones/tile.zechBlock/4.png deleted file mode 100644 index f517808d82..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/5.png b/front/public/images/large/Ztones/tile.zechBlock/5.png deleted file mode 100644 index 6cd5cd3f9b..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/6.png b/front/public/images/large/Ztones/tile.zechBlock/6.png deleted file mode 100644 index 4be091c414..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/7.png b/front/public/images/large/Ztones/tile.zechBlock/7.png deleted file mode 100644 index f0fd453523..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/8.png b/front/public/images/large/Ztones/tile.zechBlock/8.png deleted file mode 100644 index 6580c65c27..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zechBlock/9.png b/front/public/images/large/Ztones/tile.zechBlock/9.png deleted file mode 100644 index dadd6582da..0000000000 Binary files a/front/public/images/large/Ztones/tile.zechBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/0.png b/front/public/images/large/Ztones/tile.zestBlock/0.png deleted file mode 100644 index 093d549cbb..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/1.png b/front/public/images/large/Ztones/tile.zestBlock/1.png deleted file mode 100644 index 622c8fcc7f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/10.png b/front/public/images/large/Ztones/tile.zestBlock/10.png deleted file mode 100644 index d0eace37ba..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/11.png b/front/public/images/large/Ztones/tile.zestBlock/11.png deleted file mode 100644 index 5f303e33af..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/12.png b/front/public/images/large/Ztones/tile.zestBlock/12.png deleted file mode 100644 index a118805153..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/13.png b/front/public/images/large/Ztones/tile.zestBlock/13.png deleted file mode 100644 index dee878cd3c..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/14.png b/front/public/images/large/Ztones/tile.zestBlock/14.png deleted file mode 100644 index 634c9ca009..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/15.png b/front/public/images/large/Ztones/tile.zestBlock/15.png deleted file mode 100644 index 65db8f5c2b..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/2.png b/front/public/images/large/Ztones/tile.zestBlock/2.png deleted file mode 100644 index b39b6668bc..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/3.png b/front/public/images/large/Ztones/tile.zestBlock/3.png deleted file mode 100644 index ba110d5759..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/4.png b/front/public/images/large/Ztones/tile.zestBlock/4.png deleted file mode 100644 index afb86a4090..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/5.png b/front/public/images/large/Ztones/tile.zestBlock/5.png deleted file mode 100644 index e385ba924f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/6.png b/front/public/images/large/Ztones/tile.zestBlock/6.png deleted file mode 100644 index 49bd745083..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/7.png b/front/public/images/large/Ztones/tile.zestBlock/7.png deleted file mode 100644 index 733e9277cc..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/8.png b/front/public/images/large/Ztones/tile.zestBlock/8.png deleted file mode 100644 index 6cd2bc0170..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zestBlock/9.png b/front/public/images/large/Ztones/tile.zestBlock/9.png deleted file mode 100644 index 30819b1b97..0000000000 Binary files a/front/public/images/large/Ztones/tile.zestBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/0.png b/front/public/images/large/Ztones/tile.zetaBlock/0.png deleted file mode 100644 index c649cf23c3..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/1.png b/front/public/images/large/Ztones/tile.zetaBlock/1.png deleted file mode 100644 index cfe7cbe444..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/10.png b/front/public/images/large/Ztones/tile.zetaBlock/10.png deleted file mode 100644 index a833d044bf..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/11.png b/front/public/images/large/Ztones/tile.zetaBlock/11.png deleted file mode 100644 index 8868f39956..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/12.png b/front/public/images/large/Ztones/tile.zetaBlock/12.png deleted file mode 100644 index dd02d40411..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/13.png b/front/public/images/large/Ztones/tile.zetaBlock/13.png deleted file mode 100644 index 337714680b..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/14.png b/front/public/images/large/Ztones/tile.zetaBlock/14.png deleted file mode 100644 index 6da7346154..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/15.png b/front/public/images/large/Ztones/tile.zetaBlock/15.png deleted file mode 100644 index 830c77f8dc..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/2.png b/front/public/images/large/Ztones/tile.zetaBlock/2.png deleted file mode 100644 index 803f5bcad0..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/3.png b/front/public/images/large/Ztones/tile.zetaBlock/3.png deleted file mode 100644 index 137e5e0207..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/4.png b/front/public/images/large/Ztones/tile.zetaBlock/4.png deleted file mode 100644 index efb8870dbe..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/5.png b/front/public/images/large/Ztones/tile.zetaBlock/5.png deleted file mode 100644 index 8a92ccaeca..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/6.png b/front/public/images/large/Ztones/tile.zetaBlock/6.png deleted file mode 100644 index a496a48b92..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/7.png b/front/public/images/large/Ztones/tile.zetaBlock/7.png deleted file mode 100644 index 51549c8b0e..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/8.png b/front/public/images/large/Ztones/tile.zetaBlock/8.png deleted file mode 100644 index 3fb9d5f73c..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zetaBlock/9.png b/front/public/images/large/Ztones/tile.zetaBlock/9.png deleted file mode 100644 index 16de4566d2..0000000000 Binary files a/front/public/images/large/Ztones/tile.zetaBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/0.png b/front/public/images/large/Ztones/tile.zionBlock/0.png deleted file mode 100644 index f36bb3a8c9..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/1.png b/front/public/images/large/Ztones/tile.zionBlock/1.png deleted file mode 100644 index b197ade6a8..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/10.png b/front/public/images/large/Ztones/tile.zionBlock/10.png deleted file mode 100644 index cb50a6cd78..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/11.png b/front/public/images/large/Ztones/tile.zionBlock/11.png deleted file mode 100644 index 748f7e17c4..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/12.png b/front/public/images/large/Ztones/tile.zionBlock/12.png deleted file mode 100644 index 489a9d32e4..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/13.png b/front/public/images/large/Ztones/tile.zionBlock/13.png deleted file mode 100644 index 7f558e25bb..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/14.png b/front/public/images/large/Ztones/tile.zionBlock/14.png deleted file mode 100644 index d049a50f0a..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/15.png b/front/public/images/large/Ztones/tile.zionBlock/15.png deleted file mode 100644 index f59d15da6f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/2.png b/front/public/images/large/Ztones/tile.zionBlock/2.png deleted file mode 100644 index edeee11a98..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/3.png b/front/public/images/large/Ztones/tile.zionBlock/3.png deleted file mode 100644 index 11f557a6e9..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/4.png b/front/public/images/large/Ztones/tile.zionBlock/4.png deleted file mode 100644 index b5cca1b982..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/5.png b/front/public/images/large/Ztones/tile.zionBlock/5.png deleted file mode 100644 index 028db27331..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/6.png b/front/public/images/large/Ztones/tile.zionBlock/6.png deleted file mode 100644 index 6546295f57..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/7.png b/front/public/images/large/Ztones/tile.zionBlock/7.png deleted file mode 100644 index b4f79b6080..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/8.png b/front/public/images/large/Ztones/tile.zionBlock/8.png deleted file mode 100644 index c1d3cc004e..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zionBlock/9.png b/front/public/images/large/Ztones/tile.zionBlock/9.png deleted file mode 100644 index c1ce23bcfa..0000000000 Binary files a/front/public/images/large/Ztones/tile.zionBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/0.png b/front/public/images/large/Ztones/tile.zkulBlock/0.png deleted file mode 100644 index d608473079..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/1.png b/front/public/images/large/Ztones/tile.zkulBlock/1.png deleted file mode 100644 index 7cb102c190..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/10.png b/front/public/images/large/Ztones/tile.zkulBlock/10.png deleted file mode 100644 index 9a24f7559a..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/11.png b/front/public/images/large/Ztones/tile.zkulBlock/11.png deleted file mode 100644 index 4926223383..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/12.png b/front/public/images/large/Ztones/tile.zkulBlock/12.png deleted file mode 100644 index cbd72e93c0..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/13.png b/front/public/images/large/Ztones/tile.zkulBlock/13.png deleted file mode 100644 index 50cefe929d..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/14.png b/front/public/images/large/Ztones/tile.zkulBlock/14.png deleted file mode 100644 index 1d833b9675..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/15.png b/front/public/images/large/Ztones/tile.zkulBlock/15.png deleted file mode 100644 index 19ff9c64ad..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/2.png b/front/public/images/large/Ztones/tile.zkulBlock/2.png deleted file mode 100644 index 66eb89b1c4..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/3.png b/front/public/images/large/Ztones/tile.zkulBlock/3.png deleted file mode 100644 index 96cfddfbd1..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/4.png b/front/public/images/large/Ztones/tile.zkulBlock/4.png deleted file mode 100644 index ee4f4fac94..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/5.png b/front/public/images/large/Ztones/tile.zkulBlock/5.png deleted file mode 100644 index d2773ecf37..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/6.png b/front/public/images/large/Ztones/tile.zkulBlock/6.png deleted file mode 100644 index 47667c99ba..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/7.png b/front/public/images/large/Ztones/tile.zkulBlock/7.png deleted file mode 100644 index e6cffa4852..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/8.png b/front/public/images/large/Ztones/tile.zkulBlock/8.png deleted file mode 100644 index 428c6e1f10..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zkulBlock/9.png b/front/public/images/large/Ztones/tile.zkulBlock/9.png deleted file mode 100644 index 4ae2502f7c..0000000000 Binary files a/front/public/images/large/Ztones/tile.zkulBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/0.png b/front/public/images/large/Ztones/tile.zoeaBlock/0.png deleted file mode 100644 index 5046e56887..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/1.png b/front/public/images/large/Ztones/tile.zoeaBlock/1.png deleted file mode 100644 index 0df6e57418..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/10.png b/front/public/images/large/Ztones/tile.zoeaBlock/10.png deleted file mode 100644 index 98540ade1e..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/11.png b/front/public/images/large/Ztones/tile.zoeaBlock/11.png deleted file mode 100644 index c903c05150..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/12.png b/front/public/images/large/Ztones/tile.zoeaBlock/12.png deleted file mode 100644 index 75b7893cb5..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/13.png b/front/public/images/large/Ztones/tile.zoeaBlock/13.png deleted file mode 100644 index c6a648c5e0..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/14.png b/front/public/images/large/Ztones/tile.zoeaBlock/14.png deleted file mode 100644 index 82b53c2eb9..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/15.png b/front/public/images/large/Ztones/tile.zoeaBlock/15.png deleted file mode 100644 index 29f94a1562..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/2.png b/front/public/images/large/Ztones/tile.zoeaBlock/2.png deleted file mode 100644 index 1adb6831a4..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/3.png b/front/public/images/large/Ztones/tile.zoeaBlock/3.png deleted file mode 100644 index 9eea7c1250..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/4.png b/front/public/images/large/Ztones/tile.zoeaBlock/4.png deleted file mode 100644 index f164d90799..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/5.png b/front/public/images/large/Ztones/tile.zoeaBlock/5.png deleted file mode 100644 index 30b650961d..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/6.png b/front/public/images/large/Ztones/tile.zoeaBlock/6.png deleted file mode 100644 index 3657f70869..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/7.png b/front/public/images/large/Ztones/tile.zoeaBlock/7.png deleted file mode 100644 index 095c0a81f3..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/8.png b/front/public/images/large/Ztones/tile.zoeaBlock/8.png deleted file mode 100644 index 7e85ae2514..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoeaBlock/9.png b/front/public/images/large/Ztones/tile.zoeaBlock/9.png deleted file mode 100644 index a5c91227f5..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoeaBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/0.png b/front/public/images/large/Ztones/tile.zomeBlock/0.png deleted file mode 100644 index 72d7392267..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/1.png b/front/public/images/large/Ztones/tile.zomeBlock/1.png deleted file mode 100644 index e27076520d..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/10.png b/front/public/images/large/Ztones/tile.zomeBlock/10.png deleted file mode 100644 index 694e8e0081..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/11.png b/front/public/images/large/Ztones/tile.zomeBlock/11.png deleted file mode 100644 index d3e647fb09..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/12.png b/front/public/images/large/Ztones/tile.zomeBlock/12.png deleted file mode 100644 index 7ddc972937..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/13.png b/front/public/images/large/Ztones/tile.zomeBlock/13.png deleted file mode 100644 index b4c7ce236d..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/14.png b/front/public/images/large/Ztones/tile.zomeBlock/14.png deleted file mode 100644 index 76ab348b5e..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/15.png b/front/public/images/large/Ztones/tile.zomeBlock/15.png deleted file mode 100644 index f5aa918750..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/2.png b/front/public/images/large/Ztones/tile.zomeBlock/2.png deleted file mode 100644 index b7f2aa9852..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/3.png b/front/public/images/large/Ztones/tile.zomeBlock/3.png deleted file mode 100644 index 17530bcd5b..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/4.png b/front/public/images/large/Ztones/tile.zomeBlock/4.png deleted file mode 100644 index a15196cca9..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/5.png b/front/public/images/large/Ztones/tile.zomeBlock/5.png deleted file mode 100644 index a802458e8b..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/6.png b/front/public/images/large/Ztones/tile.zomeBlock/6.png deleted file mode 100644 index 7aeb00b943..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/7.png b/front/public/images/large/Ztones/tile.zomeBlock/7.png deleted file mode 100644 index f8450733a6..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/8.png b/front/public/images/large/Ztones/tile.zomeBlock/8.png deleted file mode 100644 index 4bf1cd3403..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zomeBlock/9.png b/front/public/images/large/Ztones/tile.zomeBlock/9.png deleted file mode 100644 index b2ebb930e9..0000000000 Binary files a/front/public/images/large/Ztones/tile.zomeBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/0.png b/front/public/images/large/Ztones/tile.zoneBlock/0.png deleted file mode 100644 index ed5594c804..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/1.png b/front/public/images/large/Ztones/tile.zoneBlock/1.png deleted file mode 100644 index 10358b4975..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/10.png b/front/public/images/large/Ztones/tile.zoneBlock/10.png deleted file mode 100644 index 16cb3c0f10..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/11.png b/front/public/images/large/Ztones/tile.zoneBlock/11.png deleted file mode 100644 index 369c40f2df..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/12.png b/front/public/images/large/Ztones/tile.zoneBlock/12.png deleted file mode 100644 index 2a77384196..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/13.png b/front/public/images/large/Ztones/tile.zoneBlock/13.png deleted file mode 100644 index 5bab903956..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/14.png b/front/public/images/large/Ztones/tile.zoneBlock/14.png deleted file mode 100644 index 3e3013e1b5..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/15.png b/front/public/images/large/Ztones/tile.zoneBlock/15.png deleted file mode 100644 index 38ca687f2f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/2.png b/front/public/images/large/Ztones/tile.zoneBlock/2.png deleted file mode 100644 index a453b1a4d0..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/3.png b/front/public/images/large/Ztones/tile.zoneBlock/3.png deleted file mode 100644 index acfe55d98a..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/4.png b/front/public/images/large/Ztones/tile.zoneBlock/4.png deleted file mode 100644 index 056ac411a8..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/5.png b/front/public/images/large/Ztones/tile.zoneBlock/5.png deleted file mode 100644 index bbab864ba0..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/6.png b/front/public/images/large/Ztones/tile.zoneBlock/6.png deleted file mode 100644 index 91735c7ea5..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/7.png b/front/public/images/large/Ztones/tile.zoneBlock/7.png deleted file mode 100644 index 8144e747d5..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/8.png b/front/public/images/large/Ztones/tile.zoneBlock/8.png deleted file mode 100644 index 8f78019f12..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zoneBlock/9.png b/front/public/images/large/Ztones/tile.zoneBlock/9.png deleted file mode 100644 index b9c51de2eb..0000000000 Binary files a/front/public/images/large/Ztones/tile.zoneBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/0.png b/front/public/images/large/Ztones/tile.zorgBlock/0.png deleted file mode 100644 index ffd3acf53e..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/1.png b/front/public/images/large/Ztones/tile.zorgBlock/1.png deleted file mode 100644 index bdc5bc95df..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/10.png b/front/public/images/large/Ztones/tile.zorgBlock/10.png deleted file mode 100644 index 90b203fe54..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/11.png b/front/public/images/large/Ztones/tile.zorgBlock/11.png deleted file mode 100644 index 2935553e2f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/12.png b/front/public/images/large/Ztones/tile.zorgBlock/12.png deleted file mode 100644 index 45c624c34f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/13.png b/front/public/images/large/Ztones/tile.zorgBlock/13.png deleted file mode 100644 index f4683c79b6..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/14.png b/front/public/images/large/Ztones/tile.zorgBlock/14.png deleted file mode 100644 index 0695e7e3bb..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/15.png b/front/public/images/large/Ztones/tile.zorgBlock/15.png deleted file mode 100644 index b1575c2323..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/2.png b/front/public/images/large/Ztones/tile.zorgBlock/2.png deleted file mode 100644 index 5063d0a178..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/3.png b/front/public/images/large/Ztones/tile.zorgBlock/3.png deleted file mode 100644 index 1667cbbcef..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/4.png b/front/public/images/large/Ztones/tile.zorgBlock/4.png deleted file mode 100644 index 0dc3fefc18..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/5.png b/front/public/images/large/Ztones/tile.zorgBlock/5.png deleted file mode 100644 index b4bcfcb421..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/6.png b/front/public/images/large/Ztones/tile.zorgBlock/6.png deleted file mode 100644 index 78e6bc48b7..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/7.png b/front/public/images/large/Ztones/tile.zorgBlock/7.png deleted file mode 100644 index aabb0d2b74..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/8.png b/front/public/images/large/Ztones/tile.zorgBlock/8.png deleted file mode 100644 index 00d3dc119b..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zorgBlock/9.png b/front/public/images/large/Ztones/tile.zorgBlock/9.png deleted file mode 100644 index c0a587e6b2..0000000000 Binary files a/front/public/images/large/Ztones/tile.zorgBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/0.png b/front/public/images/large/Ztones/tile.ztylBlock/0.png deleted file mode 100644 index 117122b331..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/1.png b/front/public/images/large/Ztones/tile.ztylBlock/1.png deleted file mode 100644 index 457a2023e3..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/10.png b/front/public/images/large/Ztones/tile.ztylBlock/10.png deleted file mode 100644 index 5e67a5228b..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/11.png b/front/public/images/large/Ztones/tile.ztylBlock/11.png deleted file mode 100644 index 427391e5df..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/12.png b/front/public/images/large/Ztones/tile.ztylBlock/12.png deleted file mode 100644 index 6c972281d0..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/13.png b/front/public/images/large/Ztones/tile.ztylBlock/13.png deleted file mode 100644 index 80a84aac89..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/14.png b/front/public/images/large/Ztones/tile.ztylBlock/14.png deleted file mode 100644 index af1181f356..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/15.png b/front/public/images/large/Ztones/tile.ztylBlock/15.png deleted file mode 100644 index 9ed2df2391..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/2.png b/front/public/images/large/Ztones/tile.ztylBlock/2.png deleted file mode 100644 index ab24b96fcd..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/3.png b/front/public/images/large/Ztones/tile.ztylBlock/3.png deleted file mode 100644 index 69c2578b4b..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/4.png b/front/public/images/large/Ztones/tile.ztylBlock/4.png deleted file mode 100644 index 82d6e72564..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/5.png b/front/public/images/large/Ztones/tile.ztylBlock/5.png deleted file mode 100644 index 9c79b20038..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/6.png b/front/public/images/large/Ztones/tile.ztylBlock/6.png deleted file mode 100644 index 21adc51f02..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/7.png b/front/public/images/large/Ztones/tile.ztylBlock/7.png deleted file mode 100644 index 87b32bc2e3..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/8.png b/front/public/images/large/Ztones/tile.ztylBlock/8.png deleted file mode 100644 index 311cde3954..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.ztylBlock/9.png b/front/public/images/large/Ztones/tile.ztylBlock/9.png deleted file mode 100644 index 1d25ac7bd3..0000000000 Binary files a/front/public/images/large/Ztones/tile.ztylBlock/9.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/0.png b/front/public/images/large/Ztones/tile.zythBlock/0.png deleted file mode 100644 index 4946f42bd2..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/0.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/1.png b/front/public/images/large/Ztones/tile.zythBlock/1.png deleted file mode 100644 index 7d09998a1f..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/1.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/10.png b/front/public/images/large/Ztones/tile.zythBlock/10.png deleted file mode 100644 index b7e970313c..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/10.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/11.png b/front/public/images/large/Ztones/tile.zythBlock/11.png deleted file mode 100644 index 1de4e48f3e..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/11.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/12.png b/front/public/images/large/Ztones/tile.zythBlock/12.png deleted file mode 100644 index a417071c41..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/12.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/13.png b/front/public/images/large/Ztones/tile.zythBlock/13.png deleted file mode 100644 index 7fafced2d8..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/13.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/14.png b/front/public/images/large/Ztones/tile.zythBlock/14.png deleted file mode 100644 index 2f48d5cebd..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/14.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/15.png b/front/public/images/large/Ztones/tile.zythBlock/15.png deleted file mode 100644 index 629ccc4702..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/15.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/2.png b/front/public/images/large/Ztones/tile.zythBlock/2.png deleted file mode 100644 index 495107b9de..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/2.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/3.png b/front/public/images/large/Ztones/tile.zythBlock/3.png deleted file mode 100644 index 970e8f3fc9..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/3.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/4.png b/front/public/images/large/Ztones/tile.zythBlock/4.png deleted file mode 100644 index c313ea1d19..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/4.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/5.png b/front/public/images/large/Ztones/tile.zythBlock/5.png deleted file mode 100644 index 32c4a792cb..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/5.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/6.png b/front/public/images/large/Ztones/tile.zythBlock/6.png deleted file mode 100644 index 196e942cb6..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/6.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/7.png b/front/public/images/large/Ztones/tile.zythBlock/7.png deleted file mode 100644 index 2025f251e2..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/7.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/8.png b/front/public/images/large/Ztones/tile.zythBlock/8.png deleted file mode 100644 index 2dff6beb56..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/8.png and /dev/null differ diff --git a/front/public/images/large/Ztones/tile.zythBlock/9.png b/front/public/images/large/Ztones/tile.zythBlock/9.png deleted file mode 100644 index c6427efaee..0000000000 Binary files a/front/public/images/large/Ztones/tile.zythBlock/9.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/0.png b/front/public/images/large/adventurebackpack/adventureBackpack/0.png deleted file mode 100644 index 103c39424c..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/1.png b/front/public/images/large/adventurebackpack/adventureBackpack/1.png deleted file mode 100644 index 5f66e10d30..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/1.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/10.png b/front/public/images/large/adventurebackpack/adventureBackpack/10.png deleted file mode 100644 index a2f2a5b851..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/10.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/11.png b/front/public/images/large/adventurebackpack/adventureBackpack/11.png deleted file mode 100644 index 4111b387d7..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/11.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/12.png b/front/public/images/large/adventurebackpack/adventureBackpack/12.png deleted file mode 100644 index d8b2e4641b..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/12.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/13.png b/front/public/images/large/adventurebackpack/adventureBackpack/13.png deleted file mode 100644 index d1722a4768..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/13.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/14.png b/front/public/images/large/adventurebackpack/adventureBackpack/14.png deleted file mode 100644 index be6712045b..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/14.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/15.png b/front/public/images/large/adventurebackpack/adventureBackpack/15.png deleted file mode 100644 index b3e743dbb4..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/15.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/16.png b/front/public/images/large/adventurebackpack/adventureBackpack/16.png deleted file mode 100644 index 3ce52b7c3b..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/16.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/17.png b/front/public/images/large/adventurebackpack/adventureBackpack/17.png deleted file mode 100644 index 6ffc7dfb5f..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/17.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/18.png b/front/public/images/large/adventurebackpack/adventureBackpack/18.png deleted file mode 100644 index 51e66c7f97..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/18.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/19.png b/front/public/images/large/adventurebackpack/adventureBackpack/19.png deleted file mode 100644 index a75d93a1d4..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/19.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/2.png b/front/public/images/large/adventurebackpack/adventureBackpack/2.png deleted file mode 100644 index ed334fc517..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/2.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/20.png b/front/public/images/large/adventurebackpack/adventureBackpack/20.png deleted file mode 100644 index 576749623f..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/20.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/21.png b/front/public/images/large/adventurebackpack/adventureBackpack/21.png deleted file mode 100644 index bdef64f556..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/21.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/22.png b/front/public/images/large/adventurebackpack/adventureBackpack/22.png deleted file mode 100644 index 8c84842425..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/22.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/23.png b/front/public/images/large/adventurebackpack/adventureBackpack/23.png deleted file mode 100644 index 625d95599a..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/23.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/24.png b/front/public/images/large/adventurebackpack/adventureBackpack/24.png deleted file mode 100644 index 81065249f0..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/24.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/25.png b/front/public/images/large/adventurebackpack/adventureBackpack/25.png deleted file mode 100644 index b64903dfbb..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/25.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/26.png b/front/public/images/large/adventurebackpack/adventureBackpack/26.png deleted file mode 100644 index dc7de57252..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/26.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/27.png b/front/public/images/large/adventurebackpack/adventureBackpack/27.png deleted file mode 100644 index 0329fe0d5a..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/27.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/28.png b/front/public/images/large/adventurebackpack/adventureBackpack/28.png deleted file mode 100644 index cdf4984e6d..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/28.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/29.png b/front/public/images/large/adventurebackpack/adventureBackpack/29.png deleted file mode 100644 index 49118e03ad..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/29.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/3.png b/front/public/images/large/adventurebackpack/adventureBackpack/3.png deleted file mode 100644 index 66c33ee3b0..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/3.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/30.png b/front/public/images/large/adventurebackpack/adventureBackpack/30.png deleted file mode 100644 index 2795cd7766..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/30.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/31.png b/front/public/images/large/adventurebackpack/adventureBackpack/31.png deleted file mode 100644 index 4be3789b28..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/31.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/32.png b/front/public/images/large/adventurebackpack/adventureBackpack/32.png deleted file mode 100644 index aaea6d683a..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/32.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/33.png b/front/public/images/large/adventurebackpack/adventureBackpack/33.png deleted file mode 100644 index ca1d8341bc..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/33.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/34.png b/front/public/images/large/adventurebackpack/adventureBackpack/34.png deleted file mode 100644 index 1dad803aec..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/34.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/35.png b/front/public/images/large/adventurebackpack/adventureBackpack/35.png deleted file mode 100644 index c8e40d2251..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/35.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/36.png b/front/public/images/large/adventurebackpack/adventureBackpack/36.png deleted file mode 100644 index 78fe6b8905..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/36.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/37.png b/front/public/images/large/adventurebackpack/adventureBackpack/37.png deleted file mode 100644 index cc44b87666..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/37.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/38.png b/front/public/images/large/adventurebackpack/adventureBackpack/38.png deleted file mode 100644 index dccbdf1422..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/38.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/39.png b/front/public/images/large/adventurebackpack/adventureBackpack/39.png deleted file mode 100644 index a2076843de..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/39.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/4.png b/front/public/images/large/adventurebackpack/adventureBackpack/4.png deleted file mode 100644 index 558718ce35..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/4.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/40.png b/front/public/images/large/adventurebackpack/adventureBackpack/40.png deleted file mode 100644 index 786378c244..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/40.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/41.png b/front/public/images/large/adventurebackpack/adventureBackpack/41.png deleted file mode 100644 index bcf8e0e937..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/41.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/42.png b/front/public/images/large/adventurebackpack/adventureBackpack/42.png deleted file mode 100644 index 2fe0224208..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/42.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/43.png b/front/public/images/large/adventurebackpack/adventureBackpack/43.png deleted file mode 100644 index 98e965c491..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/43.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/44.png b/front/public/images/large/adventurebackpack/adventureBackpack/44.png deleted file mode 100644 index dbe17cb799..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/44.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/45.png b/front/public/images/large/adventurebackpack/adventureBackpack/45.png deleted file mode 100644 index 2dd3da8ee3..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/45.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/46.png b/front/public/images/large/adventurebackpack/adventureBackpack/46.png deleted file mode 100644 index 1de314c8a3..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/46.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/47.png b/front/public/images/large/adventurebackpack/adventureBackpack/47.png deleted file mode 100644 index 378a97c3af..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/47.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/48.png b/front/public/images/large/adventurebackpack/adventureBackpack/48.png deleted file mode 100644 index 425adca31d..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/48.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/49.png b/front/public/images/large/adventurebackpack/adventureBackpack/49.png deleted file mode 100644 index c1eb60bb87..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/49.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/5.png b/front/public/images/large/adventurebackpack/adventureBackpack/5.png deleted file mode 100644 index d47e6817a7..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/5.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/50.png b/front/public/images/large/adventurebackpack/adventureBackpack/50.png deleted file mode 100644 index 86c091973c..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/50.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/51.png b/front/public/images/large/adventurebackpack/adventureBackpack/51.png deleted file mode 100644 index 582c10b89f..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/51.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/52.png b/front/public/images/large/adventurebackpack/adventureBackpack/52.png deleted file mode 100644 index ce80de347c..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/52.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/53.png b/front/public/images/large/adventurebackpack/adventureBackpack/53.png deleted file mode 100644 index 1388e25991..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/53.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/54.png b/front/public/images/large/adventurebackpack/adventureBackpack/54.png deleted file mode 100644 index fffa29698a..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/54.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/55.png b/front/public/images/large/adventurebackpack/adventureBackpack/55.png deleted file mode 100644 index a4f90c8d84..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/55.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/56.png b/front/public/images/large/adventurebackpack/adventureBackpack/56.png deleted file mode 100644 index 7b344e2d2f..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/56.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/57.png b/front/public/images/large/adventurebackpack/adventureBackpack/57.png deleted file mode 100644 index 6cbb641b08..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/57.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/58.png b/front/public/images/large/adventurebackpack/adventureBackpack/58.png deleted file mode 100644 index 75b9d541d8..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/58.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/59.png b/front/public/images/large/adventurebackpack/adventureBackpack/59.png deleted file mode 100644 index 8673857a9e..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/59.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/6.png b/front/public/images/large/adventurebackpack/adventureBackpack/6.png deleted file mode 100644 index 3fcc9f9a2c..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/6.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/60.png b/front/public/images/large/adventurebackpack/adventureBackpack/60.png deleted file mode 100644 index 28fe11e8fe..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/60.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/61.png b/front/public/images/large/adventurebackpack/adventureBackpack/61.png deleted file mode 100644 index 39b3ba8290..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/61.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/62.png b/front/public/images/large/adventurebackpack/adventureBackpack/62.png deleted file mode 100644 index ff1c709205..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/62.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/63.png b/front/public/images/large/adventurebackpack/adventureBackpack/63.png deleted file mode 100644 index f190a53c06..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/63.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/64.png b/front/public/images/large/adventurebackpack/adventureBackpack/64.png deleted file mode 100644 index 5c50760d07..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/64.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/65.png b/front/public/images/large/adventurebackpack/adventureBackpack/65.png deleted file mode 100644 index cf1172089b..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/65.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/66.png b/front/public/images/large/adventurebackpack/adventureBackpack/66.png deleted file mode 100644 index ea170cef24..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/66.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/67.png b/front/public/images/large/adventurebackpack/adventureBackpack/67.png deleted file mode 100644 index 6f517c8367..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/67.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/68.png b/front/public/images/large/adventurebackpack/adventureBackpack/68.png deleted file mode 100644 index 5339133987..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/68.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/69.png b/front/public/images/large/adventurebackpack/adventureBackpack/69.png deleted file mode 100644 index 7d91915d70..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/69.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/7.png b/front/public/images/large/adventurebackpack/adventureBackpack/7.png deleted file mode 100644 index 189d4754cc..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/7.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/70.png b/front/public/images/large/adventurebackpack/adventureBackpack/70.png deleted file mode 100644 index 411f13af1f..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/70.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/71.png b/front/public/images/large/adventurebackpack/adventureBackpack/71.png deleted file mode 100644 index abac22af93..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/71.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/72.png b/front/public/images/large/adventurebackpack/adventureBackpack/72.png deleted file mode 100644 index 28551ffec6..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/72.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/73.png b/front/public/images/large/adventurebackpack/adventureBackpack/73.png deleted file mode 100644 index 6b67b515ce..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/73.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/74.png b/front/public/images/large/adventurebackpack/adventureBackpack/74.png deleted file mode 100644 index 6e56127293..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/74.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/75.png b/front/public/images/large/adventurebackpack/adventureBackpack/75.png deleted file mode 100644 index d638c7d5c1..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/75.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/76.png b/front/public/images/large/adventurebackpack/adventureBackpack/76.png deleted file mode 100644 index fd2b120032..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/76.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/8.png b/front/public/images/large/adventurebackpack/adventureBackpack/8.png deleted file mode 100644 index 8dda756ce9..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/8.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureBackpack/9.png b/front/public/images/large/adventurebackpack/adventureBackpack/9.png deleted file mode 100644 index 5426093a58..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureBackpack/9.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureHat/0.png b/front/public/images/large/adventurebackpack/adventureHat/0.png deleted file mode 100644 index 457265ea05..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureHat/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventurePants/0.png b/front/public/images/large/adventurebackpack/adventurePants/0.png deleted file mode 100644 index f92513c0b3..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventurePants/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/adventureSuit/0.png b/front/public/images/large/adventurebackpack/adventureSuit/0.png deleted file mode 100644 index f81dd23d71..0000000000 Binary files a/front/public/images/large/adventurebackpack/adventureSuit/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/1.png b/front/public/images/large/adventurebackpack/backpackComponent/1.png deleted file mode 100644 index 6dfc567a33..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/1.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/2.png b/front/public/images/large/adventurebackpack/backpackComponent/2.png deleted file mode 100644 index ab3650df21..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/2.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/3.png b/front/public/images/large/adventurebackpack/backpackComponent/3.png deleted file mode 100644 index 73d282a97b..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/3.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/4.png b/front/public/images/large/adventurebackpack/backpackComponent/4.png deleted file mode 100644 index ce4da3c62f..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/4.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/5.png b/front/public/images/large/adventurebackpack/backpackComponent/5.png deleted file mode 100644 index eca1e9330c..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/5.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/6.png b/front/public/images/large/adventurebackpack/backpackComponent/6.png deleted file mode 100644 index c5ac43532c..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/6.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/7.png b/front/public/images/large/adventurebackpack/backpackComponent/7.png deleted file mode 100644 index cf3e8ca5d7..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/7.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/8.png b/front/public/images/large/adventurebackpack/backpackComponent/8.png deleted file mode 100644 index 611991c215..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/8.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackComponent/9.png b/front/public/images/large/adventurebackpack/backpackComponent/9.png deleted file mode 100644 index 6577ec3840..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackComponent/9.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/backpackHose/0.png b/front/public/images/large/adventurebackpack/backpackHose/0.png deleted file mode 100644 index c3b9864e9f..0000000000 Binary files a/front/public/images/large/adventurebackpack/backpackHose/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/blockBackpack/0.png b/front/public/images/large/adventurebackpack/blockBackpack/0.png deleted file mode 100644 index 103c39424c..0000000000 Binary files a/front/public/images/large/adventurebackpack/blockBackpack/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/blockCampFire/0.png b/front/public/images/large/adventurebackpack/blockCampFire/0.png deleted file mode 100644 index 1b25c1cca1..0000000000 Binary files a/front/public/images/large/adventurebackpack/blockCampFire/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/blockSleepingBag/0.png b/front/public/images/large/adventurebackpack/blockSleepingBag/0.png deleted file mode 100644 index 9c36e4490e..0000000000 Binary files a/front/public/images/large/adventurebackpack/blockSleepingBag/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/clockworkCrossbow/0.png b/front/public/images/large/adventurebackpack/clockworkCrossbow/0.png deleted file mode 100644 index f630fe6608..0000000000 Binary files a/front/public/images/large/adventurebackpack/clockworkCrossbow/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/coalJetpack/0.png b/front/public/images/large/adventurebackpack/coalJetpack/0.png deleted file mode 100644 index dca1179070..0000000000 Binary files a/front/public/images/large/adventurebackpack/coalJetpack/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/copterPack/0.png b/front/public/images/large/adventurebackpack/copterPack/0.png deleted file mode 100644 index 80fba8712c..0000000000 Binary files a/front/public/images/large/adventurebackpack/copterPack/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/machete/0.png b/front/public/images/large/adventurebackpack/machete/0.png deleted file mode 100644 index 7bd3fd99a4..0000000000 Binary files a/front/public/images/large/adventurebackpack/machete/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/melonJuiceBottle/0.png b/front/public/images/large/adventurebackpack/melonJuiceBottle/0.png deleted file mode 100644 index 7c43f91e81..0000000000 Binary files a/front/public/images/large/adventurebackpack/melonJuiceBottle/0.png and /dev/null differ diff --git a/front/public/images/large/adventurebackpack/pistonBoots/0.png b/front/public/images/large/adventurebackpack/pistonBoots/0.png deleted file mode 100644 index 851c12c63a..0000000000 Binary files a/front/public/images/large/adventurebackpack/pistonBoots/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/certus_quartz_tank/0.png b/front/public/images/large/ae2fc/certus_quartz_tank/0.png deleted file mode 100644 index db77b17486..0000000000 Binary files a/front/public/images/large/ae2fc/certus_quartz_tank/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/creative_fluid_storage/0.png b/front/public/images/large/ae2fc/creative_fluid_storage/0.png deleted file mode 100644 index f86e46e5d5..0000000000 Binary files a/front/public/images/large/ae2fc/creative_fluid_storage/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_auto_filler/0.png b/front/public/images/large/ae2fc/fluid_auto_filler/0.png deleted file mode 100644 index 23b3caee23..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_auto_filler/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_buffer/0.png b/front/public/images/large/ae2fc/fluid_buffer/0.png deleted file mode 100644 index 07e61f36ff..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_buffer/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_discretizer/0.png b/front/public/images/large/ae2fc/fluid_discretizer/0.png deleted file mode 100644 index a23fba9f54..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_discretizer/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_drop/0.png b/front/public/images/large/ae2fc/fluid_drop/0.png deleted file mode 100644 index 38a58f89dc..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_drop/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_encoded_pattern/0.png b/front/public/images/large/ae2fc/fluid_encoded_pattern/0.png deleted file mode 100644 index 1fc01088d1..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_encoded_pattern/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_interface/0.png b/front/public/images/large/ae2fc/fluid_interface/0.png deleted file mode 100644 index 8ab89ec21a..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_interface/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_packet/0.png b/front/public/images/large/ae2fc/fluid_packet/0.png deleted file mode 100644 index 4ca233dfee..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_packet/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_packet_decoder/0.png b/front/public/images/large/ae2fc/fluid_packet_decoder/0.png deleted file mode 100644 index df4f538206..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_packet_decoder/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/0.png b/front/public/images/large/ae2fc/fluid_part/0.png deleted file mode 100644 index 3333a8eff7..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/1.png b/front/public/images/large/ae2fc/fluid_part/1.png deleted file mode 100644 index 0047f9a9b9..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/1.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/2.png b/front/public/images/large/ae2fc/fluid_part/2.png deleted file mode 100644 index 6fc5561cf3..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/2.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/3.png b/front/public/images/large/ae2fc/fluid_part/3.png deleted file mode 100644 index 4e7aab1e22..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/3.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/4.png b/front/public/images/large/ae2fc/fluid_part/4.png deleted file mode 100644 index 142be66714..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/4.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/5.png b/front/public/images/large/ae2fc/fluid_part/5.png deleted file mode 100644 index bf8a0f3bf1..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/5.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/6.png b/front/public/images/large/ae2fc/fluid_part/6.png deleted file mode 100644 index 4807f1701f..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/6.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_part/7.png b/front/public/images/large/ae2fc/fluid_part/7.png deleted file mode 100644 index cd275c758f..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_part/7.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_pattern_encoder/0.png b/front/public/images/large/ae2fc/fluid_pattern_encoder/0.png deleted file mode 100644 index ff751ac394..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_pattern_encoder/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage.quantum/0.png b/front/public/images/large/ae2fc/fluid_storage.quantum/0.png deleted file mode 100644 index 3ebf4f996b..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage.quantum/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage.singularity/0.png b/front/public/images/large/ae2fc/fluid_storage.singularity/0.png deleted file mode 100644 index e328e6b303..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage1/0.png b/front/public/images/large/ae2fc/fluid_storage1/0.png deleted file mode 100644 index b075b25207..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage1/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage1024/0.png b/front/public/images/large/ae2fc/fluid_storage1024/0.png deleted file mode 100644 index 8e87c96331..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage1024/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage16/0.png b/front/public/images/large/ae2fc/fluid_storage16/0.png deleted file mode 100644 index 837cec58ea..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage16/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage16384/0.png b/front/public/images/large/ae2fc/fluid_storage16384/0.png deleted file mode 100644 index 0fa008ec20..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage16384/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage256/0.png b/front/public/images/large/ae2fc/fluid_storage256/0.png deleted file mode 100644 index e1aada37b2..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage256/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage4/0.png b/front/public/images/large/ae2fc/fluid_storage4/0.png deleted file mode 100644 index c09efd248d..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage4/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage4096/0.png b/front/public/images/large/ae2fc/fluid_storage4096/0.png deleted file mode 100644 index eb7d7b0769..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage4096/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage64/0.png b/front/public/images/large/ae2fc/fluid_storage64/0.png deleted file mode 100644 index 0b5a2da40c..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage64/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage_housing/0.png b/front/public/images/large/ae2fc/fluid_storage_housing/0.png deleted file mode 100644 index f0fa1bb130..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage_housing/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage_housing/1.png b/front/public/images/large/ae2fc/fluid_storage_housing/1.png deleted file mode 100644 index c6b002b84c..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage_housing/1.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage_housing/2.png b/front/public/images/large/ae2fc/fluid_storage_housing/2.png deleted file mode 100644 index f2ac3f65e8..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage_housing/2.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/fluid_storage_housing/3.png b/front/public/images/large/ae2fc/fluid_storage_housing/3.png deleted file mode 100644 index 944457ef4e..0000000000 Binary files a/front/public/images/large/ae2fc/fluid_storage_housing/3.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/ingredient_buffer/0.png b/front/public/images/large/ae2fc/ingredient_buffer/0.png deleted file mode 100644 index 8d9b7b6fe1..0000000000 Binary files a/front/public/images/large/ae2fc/ingredient_buffer/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/large_ingredient_buffer/0.png b/front/public/images/large/ae2fc/large_ingredient_buffer/0.png deleted file mode 100644 index 8c160c8c2b..0000000000 Binary files a/front/public/images/large/ae2fc/large_ingredient_buffer/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/level_maintainer/0.png b/front/public/images/large/ae2fc/level_maintainer/0.png deleted file mode 100644 index e16c5d8de6..0000000000 Binary files a/front/public/images/large/ae2fc/level_maintainer/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage1/0.png b/front/public/images/large/ae2fc/multi_fluid_storage1/0.png deleted file mode 100644 index fdda5acf4f..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage1/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage1024/0.png b/front/public/images/large/ae2fc/multi_fluid_storage1024/0.png deleted file mode 100644 index 4f261ea3fa..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage1024/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage16/0.png b/front/public/images/large/ae2fc/multi_fluid_storage16/0.png deleted file mode 100644 index 7c9a257007..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage16/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage16384/0.png b/front/public/images/large/ae2fc/multi_fluid_storage16384/0.png deleted file mode 100644 index b1a20df3f8..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage16384/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage256/0.png b/front/public/images/large/ae2fc/multi_fluid_storage256/0.png deleted file mode 100644 index bb08f5ef63..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage256/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage4/0.png b/front/public/images/large/ae2fc/multi_fluid_storage4/0.png deleted file mode 100644 index c1945e9683..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage4/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage4096/0.png b/front/public/images/large/ae2fc/multi_fluid_storage4096/0.png deleted file mode 100644 index c59d0ee33d..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage4096/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/multi_fluid_storage64/0.png b/front/public/images/large/ae2fc/multi_fluid_storage64/0.png deleted file mode 100644 index 5fef71a2b7..0000000000 Binary files a/front/public/images/large/ae2fc/multi_fluid_storage64/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/oc_pattern_editor/0.png b/front/public/images/large/ae2fc/oc_pattern_editor/0.png deleted file mode 100644 index 610e628ad3..0000000000 Binary files a/front/public/images/large/ae2fc/oc_pattern_editor/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_conversion_monitor/0.png b/front/public/images/large/ae2fc/part_fluid_conversion_monitor/0.png deleted file mode 100644 index 9d562fa877..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_conversion_monitor/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_export/0.png b/front/public/images/large/ae2fc/part_fluid_export/0.png deleted file mode 100644 index 477c09aeb2..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_export/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_import/0.png b/front/public/images/large/ae2fc/part_fluid_import/0.png deleted file mode 100644 index 1658e623c2..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_import/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_interface/0.png b/front/public/images/large/ae2fc/part_fluid_interface/0.png deleted file mode 100644 index 087438bb70..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_interface/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_level_emitter/0.png b/front/public/images/large/ae2fc/part_fluid_level_emitter/0.png deleted file mode 100644 index f6100185fc..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_level_emitter/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_p2p_interface/0.png b/front/public/images/large/ae2fc/part_fluid_p2p_interface/0.png deleted file mode 100644 index 353250ebb5..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_p2p_interface/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_pattern_terminal/0.png b/front/public/images/large/ae2fc/part_fluid_pattern_terminal/0.png deleted file mode 100644 index 238d5600b6..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_pattern_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_pattern_terminal_ex/0.png b/front/public/images/large/ae2fc/part_fluid_pattern_terminal_ex/0.png deleted file mode 100644 index 238d5600b6..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_pattern_terminal_ex/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_storage_bus/0.png b/front/public/images/large/ae2fc/part_fluid_storage_bus/0.png deleted file mode 100644 index 7df5840c78..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_storage_bus/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_storage_monitor/0.png b/front/public/images/large/ae2fc/part_fluid_storage_monitor/0.png deleted file mode 100644 index 9d562fa877..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_storage_monitor/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_fluid_terminal/0.png b/front/public/images/large/ae2fc/part_fluid_terminal/0.png deleted file mode 100644 index 9a93eae944..0000000000 Binary files a/front/public/images/large/ae2fc/part_fluid_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/part_level_terminal/0.png b/front/public/images/large/ae2fc/part_level_terminal/0.png deleted file mode 100644 index 998e5f84c7..0000000000 Binary files a/front/public/images/large/ae2fc/part_level_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/portable_fluid_cell/0.png b/front/public/images/large/ae2fc/portable_fluid_cell/0.png deleted file mode 100644 index 65c27d273a..0000000000 Binary files a/front/public/images/large/ae2fc/portable_fluid_cell/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/walrus/0.png b/front/public/images/large/ae2fc/walrus/0.png deleted file mode 100644 index 0cc4369764..0000000000 Binary files a/front/public/images/large/ae2fc/walrus/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/wireless_fluid_pattern_terminal/0.png b/front/public/images/large/ae2fc/wireless_fluid_pattern_terminal/0.png deleted file mode 100644 index 99a0b40720..0000000000 Binary files a/front/public/images/large/ae2fc/wireless_fluid_pattern_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/wireless_fluid_terminal/0.png b/front/public/images/large/ae2fc/wireless_fluid_terminal/0.png deleted file mode 100644 index 9b35076849..0000000000 Binary files a/front/public/images/large/ae2fc/wireless_fluid_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/wireless_interface_terminal/0.png b/front/public/images/large/ae2fc/wireless_interface_terminal/0.png deleted file mode 100644 index f6c8323543..0000000000 Binary files a/front/public/images/large/ae2fc/wireless_interface_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/wireless_level_terminal/0.png b/front/public/images/large/ae2fc/wireless_level_terminal/0.png deleted file mode 100644 index 824a6a147e..0000000000 Binary files a/front/public/images/large/ae2fc/wireless_level_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2fc/wireless_ultra_terminal/0.png b/front/public/images/large/ae2fc/wireless_ultra_terminal/0.png deleted file mode 100644 index 138bee36a0..0000000000 Binary files a/front/public/images/large/ae2fc/wireless_ultra_terminal/0.png and /dev/null differ diff --git a/front/public/images/large/ae2stuff/Encoder/0.png b/front/public/images/large/ae2stuff/Encoder/0.png deleted file mode 100644 index 36f0a5d98f..0000000000 Binary files a/front/public/images/large/ae2stuff/Encoder/0.png and /dev/null differ diff --git a/front/public/images/large/ae2stuff/Grower/0.png b/front/public/images/large/ae2stuff/Grower/0.png deleted file mode 100644 index 2dd2185f9e..0000000000 Binary files a/front/public/images/large/ae2stuff/Grower/0.png and /dev/null differ diff --git a/front/public/images/large/ae2stuff/Inscriber/0.png b/front/public/images/large/ae2stuff/Inscriber/0.png deleted file mode 100644 index 7d28b06325..0000000000 Binary files a/front/public/images/large/ae2stuff/Inscriber/0.png and /dev/null differ diff --git a/front/public/images/large/ae2stuff/Visualiser/0.png b/front/public/images/large/ae2stuff/Visualiser/0.png deleted file mode 100644 index 712b9eac34..0000000000 Binary files a/front/public/images/large/ae2stuff/Visualiser/0.png and /dev/null differ diff --git a/front/public/images/large/ae2stuff/Wireless/0.png b/front/public/images/large/ae2stuff/Wireless/0.png deleted file mode 100644 index 881b946293..0000000000 Binary files a/front/public/images/large/ae2stuff/Wireless/0.png and /dev/null differ diff --git a/front/public/images/large/ae2stuff/WirelessKit/0.png b/front/public/images/large/ae2stuff/WirelessKit/0.png deleted file mode 100644 index acea44a5ea..0000000000 Binary files a/front/public/images/large/ae2stuff/WirelessKit/0.png and /dev/null differ diff --git a/front/public/images/large/ae2wct/boosterBG/0.png b/front/public/images/large/ae2wct/boosterBG/0.png deleted file mode 100644 index fac09cc86e..0000000000 Binary files a/front/public/images/large/ae2wct/boosterBG/0.png and /dev/null differ diff --git a/front/public/images/large/ae2wct/infinityBoosterCard/0.png b/front/public/images/large/ae2wct/infinityBoosterCard/0.png deleted file mode 100644 index c4d1d493dd..0000000000 Binary files a/front/public/images/large/ae2wct/infinityBoosterCard/0.png and /dev/null differ diff --git a/front/public/images/large/ae2wct/infinityBoosterIcon/0.png b/front/public/images/large/ae2wct/infinityBoosterIcon/0.png deleted file mode 100644 index c4d1d493dd..0000000000 Binary files a/front/public/images/large/ae2wct/infinityBoosterIcon/0.png and /dev/null differ diff --git a/front/public/images/large/ae2wct/magnetCard/0.png b/front/public/images/large/ae2wct/magnetCard/0.png deleted file mode 100644 index 6f799cc35e..0000000000 Binary files a/front/public/images/large/ae2wct/magnetCard/0.png and /dev/null differ diff --git a/front/public/images/large/ae2wct/wirelessCraftingTerminal/0.png b/front/public/images/large/ae2wct/wirelessCraftingTerminal/0.png deleted file mode 100644 index 02bea46a97..0000000000 Binary files a/front/public/images/large/ae2wct/wirelessCraftingTerminal/0.png and /dev/null differ diff --git a/front/public/images/large/alchgrate/alchgrate/0.png b/front/public/images/large/alchgrate/alchgrate/0.png deleted file mode 100644 index 7f76ca2631..0000000000 Binary files a/front/public/images/large/alchgrate/alchgrate/0.png and /dev/null differ diff --git a/front/public/images/large/amazingtrophies/trophy/0.png b/front/public/images/large/amazingtrophies/trophy/0.png deleted file mode 100644 index 2ba821180a..0000000000 Binary files a/front/public/images/large/amazingtrophies/trophy/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.1024k/0.png b/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.1024k/0.png deleted file mode 100644 index e475fd5cd4..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.1024k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.16384k/0.png b/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.16384k/0.png deleted file mode 100644 index ec4a08ecc0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.16384k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.256k/0.png b/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.256k/0.png deleted file mode 100644 index de4f5f48ee..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.256k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.4096k/0.png b/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.4096k/0.png deleted file mode 100644 index 091c125eb6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemAdvancedStorageCell.4096k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.16k/0.png b/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.16k/0.png deleted file mode 100644 index 42fab565ca..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.16k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.1k/0.png b/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.1k/0.png deleted file mode 100644 index 37617efa5b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.1k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.4k/0.png b/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.4k/0.png deleted file mode 100644 index 7a8d969245..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.4k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.64k/0.png b/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.64k/0.png deleted file mode 100644 index 254d256458..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemBasicStorageCell.64k/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemCreativeStorageCell/0.png b/front/public/images/large/appliedenergistics2/item.ItemCreativeStorageCell/0.png deleted file mode 100644 index 240cc46fc0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemCreativeStorageCell/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/0.png b/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/0.png deleted file mode 100644 index 6b0eae606b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/1200.png b/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/1200.png deleted file mode 100644 index db2dfc7169..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/1200.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/600.png b/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/600.png deleted file mode 100644 index 3d6aecd464..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemCrystalSeed/600.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemEncodedPattern/0.png b/front/public/images/large/appliedenergistics2/item.ItemEncodedPattern/0.png deleted file mode 100644 index 83bec084ee..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemEncodedPattern/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Container/0.png b/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Container/0.png deleted file mode 100644 index 612a6ee64e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Container/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Quantum/0.png b/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Quantum/0.png deleted file mode 100644 index ebd3ddbfd6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Quantum/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Singularity/0.png b/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Singularity/0.png deleted file mode 100644 index 4e41934b61..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemExtremeStorageCell.Singularity/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemFacade/0.png b/front/public/images/large/appliedenergistics2/item.ItemFacade/0.png deleted file mode 100644 index 6a3b7f4e9a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemFacade/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/1.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/1.png deleted file mode 100644 index ea95bc78c3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/10.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/10.png deleted file mode 100644 index b7b5264901..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/10.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/11.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/11.png deleted file mode 100644 index f945d44f8e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/11.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/12.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/12.png deleted file mode 100644 index 9c83db31ee..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/12.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/13.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/13.png deleted file mode 100644 index c4908f3a60..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/13.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/14.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/14.png deleted file mode 100644 index 11d56681f3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/14.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/15.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/15.png deleted file mode 100644 index fe7a48f3db..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/15.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/16.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/16.png deleted file mode 100644 index 9831379524..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/16.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/17.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/17.png deleted file mode 100644 index a2e2f40a57..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/17.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/18.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/18.png deleted file mode 100644 index c31ada3da7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/18.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/19.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/19.png deleted file mode 100644 index 85599bbcfb..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/19.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/20.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/20.png deleted file mode 100644 index 5300eda4d4..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/20.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/21.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/21.png deleted file mode 100644 index fa6436ad15..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/21.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/22.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/22.png deleted file mode 100644 index 31fab97e4e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/22.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/23.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/23.png deleted file mode 100644 index 4f25c6c8a8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/23.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/24.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/24.png deleted file mode 100644 index c93cc44402..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/24.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/25.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/25.png deleted file mode 100644 index 59a6074c4f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/25.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/26.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/26.png deleted file mode 100644 index 34d3444cb5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/26.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/27.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/27.png deleted file mode 100644 index 69291ac1d7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/27.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/28.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/28.png deleted file mode 100644 index 4fc06d461e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/28.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/29.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/29.png deleted file mode 100644 index cd14dd8d8d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/29.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/30.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/30.png deleted file mode 100644 index fffdd3182f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/30.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/31.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/31.png deleted file mode 100644 index 2307863306..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/31.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/32.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/32.png deleted file mode 100644 index 94ccc3e403..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/32.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/33.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/33.png deleted file mode 100644 index 1e95834ff7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/33.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/34.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/34.png deleted file mode 100644 index 801090cf37..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/34.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/35.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/35.png deleted file mode 100644 index 632b123ff4..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/35.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/36.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/36.png deleted file mode 100644 index 0dcf8811e5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/36.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/37.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/37.png deleted file mode 100644 index e3fac442fe..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/37.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/38.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/38.png deleted file mode 100644 index 0b0f2da4bf..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/38.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/39.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/39.png deleted file mode 100644 index b4b1c77824..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/39.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/41.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/41.png deleted file mode 100644 index 12b57aa90f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/41.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/42.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/42.png deleted file mode 100644 index 6273f88aa2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/42.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/43.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/43.png deleted file mode 100644 index b8132ee013..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/43.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/44.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/44.png deleted file mode 100644 index 5ff9b2e063..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/44.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/45.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/45.png deleted file mode 100644 index e5a4c2ae62..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/45.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/47.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/47.png deleted file mode 100644 index 52e8379673..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/47.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/48.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/48.png deleted file mode 100644 index fbd1db2be3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/48.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/52.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/52.png deleted file mode 100644 index 8ae6608dcd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/52.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/53.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/53.png deleted file mode 100644 index 941ac3c368..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/53.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/54.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/54.png deleted file mode 100644 index f0d7932fb4..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/54.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/55.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/55.png deleted file mode 100644 index 351e49593a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/55.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/56.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/56.png deleted file mode 100644 index 4df98bfde6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/56.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/57.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/57.png deleted file mode 100644 index a7e406134f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/57.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/58.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/58.png deleted file mode 100644 index d030970b4f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/58.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/59.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/59.png deleted file mode 100644 index 57d01006c2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/59.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/6.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/6.png deleted file mode 100644 index 10ba0adc20..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/6.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/60.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/60.png deleted file mode 100644 index 1a9a2a3c0e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/60.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/61.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/61.png deleted file mode 100644 index 72e55fd9ae..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/61.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/62.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/62.png deleted file mode 100644 index 7f2a10716e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/62.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/63.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/63.png deleted file mode 100644 index 4d230c1171..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/63.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/64.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/64.png deleted file mode 100644 index 42495e2db2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/64.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/65.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/65.png deleted file mode 100644 index 5cffc3b389..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/65.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/7.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/7.png deleted file mode 100644 index c12b44b71e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/7.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/8.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/8.png deleted file mode 100644 index 33e31a229e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/8.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/9.png b/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/9.png deleted file mode 100644 index 70cdd3da24..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiMaterial/9.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/0.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/0.png deleted file mode 100644 index 9aad8c7548..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/1.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/1.png deleted file mode 100644 index 463aade886..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/10.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/10.png deleted file mode 100644 index 822531c54a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/10.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/100.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/100.png deleted file mode 100644 index 0fcba8ae79..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/100.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/11.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/11.png deleted file mode 100644 index db0d1df7c2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/11.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/12.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/12.png deleted file mode 100644 index 3ea1589132..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/12.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/120.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/120.png deleted file mode 100644 index c36f58145b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/120.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/13.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/13.png deleted file mode 100644 index 51c5fb0631..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/13.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/14.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/14.png deleted file mode 100644 index 48d17e6439..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/14.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/140.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/140.png deleted file mode 100644 index 8492f3ed40..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/140.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/15.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/15.png deleted file mode 100644 index b9407ae329..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/15.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/16.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/16.png deleted file mode 100644 index 4f2f24a99e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/16.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/160.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/160.png deleted file mode 100644 index e30c92f36b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/160.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/180.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/180.png deleted file mode 100644 index d02e9b1304..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/180.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/2.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/2.png deleted file mode 100644 index 851c66425d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/2.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/20.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/20.png deleted file mode 100644 index 7fc2909bad..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/20.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/200.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/200.png deleted file mode 100644 index 529bdb40e5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/200.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/21.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/21.png deleted file mode 100644 index 2942f2295c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/21.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/22.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/22.png deleted file mode 100644 index 6a06c0a9a0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/22.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/220.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/220.png deleted file mode 100644 index 2c6ae5a04a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/220.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/23.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/23.png deleted file mode 100644 index 9a3dbaf9b3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/23.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/24.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/24.png deleted file mode 100644 index a7046cfabb..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/24.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/240.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/240.png deleted file mode 100644 index a0fa5034bd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/240.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/25.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/25.png deleted file mode 100644 index 754c3e2b03..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/25.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/26.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/26.png deleted file mode 100644 index 10682a4fda..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/26.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/260.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/260.png deleted file mode 100644 index 489ec6b926..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/260.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/27.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/27.png deleted file mode 100644 index 7b80f0bf1f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/27.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/28.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/28.png deleted file mode 100644 index 60edce336c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/28.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/280.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/280.png deleted file mode 100644 index f6100185fc..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/280.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/29.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/29.png deleted file mode 100644 index 8ccf6555df..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/29.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/3.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/3.png deleted file mode 100644 index 419e4a2c01..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/3.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/30.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/30.png deleted file mode 100644 index 42cc75e52d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/30.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/300.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/300.png deleted file mode 100644 index 8f23402ccc..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/300.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/301.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/301.png deleted file mode 100644 index 428cedd3bf..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/301.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/31.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/31.png deleted file mode 100644 index 19d217fbcb..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/31.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/32.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/32.png deleted file mode 100644 index feda57fe71..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/32.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/320.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/320.png deleted file mode 100644 index 3be3121134..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/320.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/33.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/33.png deleted file mode 100644 index 57ab934cd8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/33.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/34.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/34.png deleted file mode 100644 index 5cf918aa57..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/34.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/340.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/340.png deleted file mode 100644 index 24f70025c3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/340.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/35.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/35.png deleted file mode 100644 index 55d1cffb36..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/35.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/36.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/36.png deleted file mode 100644 index 83ca7b4b82..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/36.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/360.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/360.png deleted file mode 100644 index 98c55ea274..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/360.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/380.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/380.png deleted file mode 100644 index 59b1ea935f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/380.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/4.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/4.png deleted file mode 100644 index 526dd31765..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/4.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/40.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/40.png deleted file mode 100644 index f118f0ff0f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/40.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/400.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/400.png deleted file mode 100644 index 9d562fa877..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/400.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/41.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/41.png deleted file mode 100644 index 65cdde4ee6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/41.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/42.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/42.png deleted file mode 100644 index 93fd6cbe63..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/42.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/420.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/420.png deleted file mode 100644 index 91ac9586cb..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/420.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/43.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/43.png deleted file mode 100644 index 2522f0406a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/43.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/44.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/44.png deleted file mode 100644 index 85311a48d1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/44.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/440.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/440.png deleted file mode 100644 index 4d74b883a9..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/440.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/45.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/45.png deleted file mode 100644 index aae9acfc37..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/45.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/46.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/46.png deleted file mode 100644 index 3dddc5cfe5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/46.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/460.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/460.png deleted file mode 100644 index c9401fc10a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/460.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/461.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/461.png deleted file mode 100644 index 81da37ce8b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/461.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/462.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/462.png deleted file mode 100644 index 6ccdb98f7c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/462.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/463.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/463.png deleted file mode 100644 index cf3e2d9f12..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/463.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/466.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/466.png deleted file mode 100644 index 1c095e4a05..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/466.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/467.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/467.png deleted file mode 100644 index 7d592bcb37..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/467.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/468.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/468.png deleted file mode 100644 index ce35353e39..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/468.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/47.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/47.png deleted file mode 100644 index e0d9af263d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/47.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/470.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/470.png deleted file mode 100644 index a1420da447..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/470.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/471.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/471.png deleted file mode 100644 index 0a934fb5e6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/471.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/48.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/48.png deleted file mode 100644 index 599fc00ac2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/48.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/480.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/480.png deleted file mode 100644 index 8206d263b3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/480.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/49.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/49.png deleted file mode 100644 index 9bcdcf294c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/49.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/5.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/5.png deleted file mode 100644 index 0b2e2db1de..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/5.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/50.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/50.png deleted file mode 100644 index c1f88d562a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/50.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/500.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/500.png deleted file mode 100644 index 24f70025c3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/500.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/51.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/51.png deleted file mode 100644 index 8bfd941457..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/51.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/52.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/52.png deleted file mode 100644 index 86fffd8ac0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/52.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/520.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/520.png deleted file mode 100644 index 909e3b835a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/520.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/521.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/521.png deleted file mode 100644 index 09b1915dc5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/521.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/522.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/522.png deleted file mode 100644 index aa567edd07..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/522.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/523.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/523.png deleted file mode 100644 index 06d41cb769..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/523.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/524.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/524.png deleted file mode 100644 index e12392326f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/524.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/525.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/525.png deleted file mode 100644 index c12537528c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/525.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/526.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/526.png deleted file mode 100644 index edb518f7a5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/526.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/527.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/527.png deleted file mode 100644 index c9ea8fa7d6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/527.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/528.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/528.png deleted file mode 100644 index b338902ab1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/528.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/529.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/529.png deleted file mode 100644 index cec6c0ec42..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/529.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/53.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/53.png deleted file mode 100644 index c4e415ae0a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/53.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/530.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/530.png deleted file mode 100644 index 0f40e605ae..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/530.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/531.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/531.png deleted file mode 100644 index dd31a56451..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/531.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/532.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/532.png deleted file mode 100644 index ef985a2803..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/532.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/533.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/533.png deleted file mode 100644 index e6c4adfd1f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/533.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/534.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/534.png deleted file mode 100644 index d4da02c5c6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/534.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/535.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/535.png deleted file mode 100644 index 241fc2c1c3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/535.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/536.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/536.png deleted file mode 100644 index 0d78a41e90..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/536.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/54.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/54.png deleted file mode 100644 index be10bf006c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/54.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/540.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/540.png deleted file mode 100644 index b2f84c4fdd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/540.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/541.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/541.png deleted file mode 100644 index c9ee852ac8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/541.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/542.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/542.png deleted file mode 100644 index 89f03a6521..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/542.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/543.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/543.png deleted file mode 100644 index 9a0dbb042d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/543.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/544.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/544.png deleted file mode 100644 index 75eaf4630c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/544.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/545.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/545.png deleted file mode 100644 index 5d000fb614..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/545.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/546.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/546.png deleted file mode 100644 index 5e196b609a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/546.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/547.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/547.png deleted file mode 100644 index 2e744a00b8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/547.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/548.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/548.png deleted file mode 100644 index 0ae79f1feb..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/548.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/549.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/549.png deleted file mode 100644 index 51aa8ee543..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/549.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/55.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/55.png deleted file mode 100644 index bd30e58144..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/55.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/550.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/550.png deleted file mode 100644 index 2258e2a3e5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/550.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/551.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/551.png deleted file mode 100644 index da4f619117..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/551.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/552.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/552.png deleted file mode 100644 index 9a0bbd2ab8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/552.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/553.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/553.png deleted file mode 100644 index 0c1321d51f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/553.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/554.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/554.png deleted file mode 100644 index b35d5631df..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/554.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/555.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/555.png deleted file mode 100644 index f43184fd11..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/555.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/556.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/556.png deleted file mode 100644 index f91878d5d0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/556.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/56.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/56.png deleted file mode 100644 index 23340b5d04..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/56.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/560.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/560.png deleted file mode 100644 index dce8c985f0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/560.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/561.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/561.png deleted file mode 100644 index c32af99a56..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/561.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/562.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/562.png deleted file mode 100644 index db86c8d8ab..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/562.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/563.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/563.png deleted file mode 100644 index 8200d83cee..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/563.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/564.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/564.png deleted file mode 100644 index 4c7a8916fa..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/564.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/565.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/565.png deleted file mode 100644 index 96c9cd33c7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/565.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/566.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/566.png deleted file mode 100644 index de3876e395..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/566.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/567.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/567.png deleted file mode 100644 index 3ac9b49742..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/567.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/568.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/568.png deleted file mode 100644 index c6b219245f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/568.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/569.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/569.png deleted file mode 100644 index 6263535945..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/569.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/570.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/570.png deleted file mode 100644 index d434c667f8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/570.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/571.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/571.png deleted file mode 100644 index be868fe07d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/571.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/572.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/572.png deleted file mode 100644 index c6a34ae310..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/572.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/573.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/573.png deleted file mode 100644 index 28b73ea81d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/573.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/574.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/574.png deleted file mode 100644 index 9a687d7244..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/574.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/575.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/575.png deleted file mode 100644 index c6c82ddda7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/575.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/576.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/576.png deleted file mode 100644 index 449cc59a49..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/576.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/6.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/6.png deleted file mode 100644 index fc887bdea1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/6.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/60.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/60.png deleted file mode 100644 index 7f4dbeb264..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/60.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/61.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/61.png deleted file mode 100644 index b97d10bd39..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/61.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/62.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/62.png deleted file mode 100644 index 5a7a36d9c9..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/62.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/63.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/63.png deleted file mode 100644 index 442847a755..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/63.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/64.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/64.png deleted file mode 100644 index b06ced640d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/64.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/65.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/65.png deleted file mode 100644 index 7deb53d743..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/65.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/66.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/66.png deleted file mode 100644 index dbf4a1397a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/66.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/67.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/67.png deleted file mode 100644 index c637b8e245..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/67.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/68.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/68.png deleted file mode 100644 index d738b9b10d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/68.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/69.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/69.png deleted file mode 100644 index f84b297416..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/69.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/7.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/7.png deleted file mode 100644 index caf7d9a5df..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/7.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/70.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/70.png deleted file mode 100644 index 9244f7f724..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/70.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/71.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/71.png deleted file mode 100644 index 15e49a006e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/71.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/72.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/72.png deleted file mode 100644 index 0401ccadba..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/72.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/73.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/73.png deleted file mode 100644 index ee75dbdb07..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/73.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/74.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/74.png deleted file mode 100644 index 5d38a42db7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/74.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/75.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/75.png deleted file mode 100644 index d4aa2d8d30..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/75.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/76.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/76.png deleted file mode 100644 index 543be9426b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/76.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/8.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/8.png deleted file mode 100644 index f9323c32c2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/8.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/80.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/80.png deleted file mode 100644 index 1ad20e6927..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/80.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/9.png b/front/public/images/large/appliedenergistics2/item.ItemMultiPart/9.png deleted file mode 100644 index c489fc3bcf..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemMultiPart/9.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/0.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/0.png deleted file mode 100644 index 1a65780a78..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/1.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/1.png deleted file mode 100644 index 80e7998fd1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/10.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/10.png deleted file mode 100644 index 5369bdb218..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/10.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/11.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/11.png deleted file mode 100644 index c28e302a37..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/11.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/12.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/12.png deleted file mode 100644 index 02a12db8be..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/12.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/13.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/13.png deleted file mode 100644 index c16ff5f611..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/13.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/14.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/14.png deleted file mode 100644 index 56b4d9ce64..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/14.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/15.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/15.png deleted file mode 100644 index 8fbfa84571..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/15.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/2.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/2.png deleted file mode 100644 index 0d655d616e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/2.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/20.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/20.png deleted file mode 100644 index 6dabce5280..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/20.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/21.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/21.png deleted file mode 100644 index 17777d888b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/21.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/22.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/22.png deleted file mode 100644 index 337c4a80f3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/22.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/23.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/23.png deleted file mode 100644 index 69e3b000ab..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/23.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/24.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/24.png deleted file mode 100644 index bdcbad55dd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/24.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/25.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/25.png deleted file mode 100644 index 79a3ae3ff2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/25.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/26.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/26.png deleted file mode 100644 index 8e6990716c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/26.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/27.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/27.png deleted file mode 100644 index d80a7bc324..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/27.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/28.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/28.png deleted file mode 100644 index 18324c7cb5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/28.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/29.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/29.png deleted file mode 100644 index 5f4e78dc65..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/29.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/3.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/3.png deleted file mode 100644 index 7e543a6911..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/3.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/30.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/30.png deleted file mode 100644 index 5640e6027f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/30.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/31.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/31.png deleted file mode 100644 index b92902edcd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/31.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/32.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/32.png deleted file mode 100644 index af5d89b4e1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/32.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/33.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/33.png deleted file mode 100644 index c43aa066d5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/33.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/34.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/34.png deleted file mode 100644 index 33a0b5f074..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/34.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/35.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/35.png deleted file mode 100644 index 6886787da2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/35.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/4.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/4.png deleted file mode 100644 index 05e260228a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/4.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/5.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/5.png deleted file mode 100644 index df2af0972e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/5.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/6.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/6.png deleted file mode 100644 index 05cf7e9aa6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/6.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/7.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/7.png deleted file mode 100644 index 710c2841b8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/7.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/8.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/8.png deleted file mode 100644 index 2a0351bf6c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/8.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/9.png b/front/public/images/large/appliedenergistics2/item.ItemPaintBall/9.png deleted file mode 100644 index 25db0b62c1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemPaintBall/9.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.128Cubed/0.png b/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.128Cubed/0.png deleted file mode 100644 index ade1048583..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.128Cubed/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.16Cubed/0.png b/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.16Cubed/0.png deleted file mode 100644 index 78f4a60496..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.16Cubed/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.2Cubed/0.png b/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.2Cubed/0.png deleted file mode 100644 index e083df0eb8..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemSpatialStorageCell.2Cubed/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemViewCell/0.png b/front/public/images/large/appliedenergistics2/item.ItemViewCell/0.png deleted file mode 100644 index 0cd8eceff3..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemViewCell/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ItemVoidStorageCell/0.png b/front/public/images/large/appliedenergistics2/item.ItemVoidStorageCell/0.png deleted file mode 100644 index 5a8d3ae0ab..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ItemVoidStorageCell/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolAdvancedNetworkTool/0.png b/front/public/images/large/appliedenergistics2/item.ToolAdvancedNetworkTool/0.png deleted file mode 100644 index 1b6af96d08..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolAdvancedNetworkTool/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolBiometricCard/0.png b/front/public/images/large/appliedenergistics2/item.ToolBiometricCard/0.png deleted file mode 100644 index 92fb3d6a14..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolBiometricCard/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzAxe/0.png b/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzAxe/0.png deleted file mode 100644 index 59853e303d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzAxe/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzCuttingKnife/0.png b/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzCuttingKnife/0.png deleted file mode 100644 index b3b572985a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzCuttingKnife/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzHoe/0.png b/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzHoe/0.png deleted file mode 100644 index c30b49e707..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzHoe/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzPickaxe/0.png b/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzPickaxe/0.png deleted file mode 100644 index 13e8fa6d93..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzSpade/0.png b/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzSpade/0.png deleted file mode 100644 index 2db81e8a62..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzSpade/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzSword/0.png b/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzSword/0.png deleted file mode 100644 index 85f3d49c09..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzSword/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzWrench/0.png b/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzWrench/0.png deleted file mode 100644 index a8d5e5677a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolCertusQuartzWrench/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolChargedStaff/0.png b/front/public/images/large/appliedenergistics2/item.ToolChargedStaff/0.png deleted file mode 100644 index 64f7375d71..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolChargedStaff/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolColorApplicator/0.png b/front/public/images/large/appliedenergistics2/item.ToolColorApplicator/0.png deleted file mode 100644 index ba569378dd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolColorApplicator/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolEntropyManipulator/0.png b/front/public/images/large/appliedenergistics2/item.ToolEntropyManipulator/0.png deleted file mode 100644 index 46b26181b0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolEntropyManipulator/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolMassCannon/0.png b/front/public/images/large/appliedenergistics2/item.ToolMassCannon/0.png deleted file mode 100644 index be1ea38bea..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolMassCannon/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolMemoryCard/0.png b/front/public/images/large/appliedenergistics2/item.ToolMemoryCard/0.png deleted file mode 100644 index d77ba7c0ee..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolMemoryCard/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzAxe/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzAxe/0.png deleted file mode 100644 index 462aa6d5ff..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzAxe/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzCuttingKnife/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzCuttingKnife/0.png deleted file mode 100644 index 289dd53371..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzCuttingKnife/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzHoe/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzHoe/0.png deleted file mode 100644 index db00a5ad31..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzHoe/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzPickaxe/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzPickaxe/0.png deleted file mode 100644 index 28586ab6e9..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzPickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzSpade/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzSpade/0.png deleted file mode 100644 index ee59d27313..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzSpade/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzSword/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzSword/0.png deleted file mode 100644 index 8adbc1b9d1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzSword/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzWrench/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzWrench/0.png deleted file mode 100644 index dcb771bb08..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetherQuartzWrench/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolNetworkTool/0.png b/front/public/images/large/appliedenergistics2/item.ToolNetworkTool/0.png deleted file mode 100644 index 0dac254245..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolNetworkTool/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolPortableCell/0.png b/front/public/images/large/appliedenergistics2/item.ToolPortableCell/0.png deleted file mode 100644 index c36fdacc32..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolPortableCell/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolPriorityCard/0.png b/front/public/images/large/appliedenergistics2/item.ToolPriorityCard/0.png deleted file mode 100644 index 0ef513ffac..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolPriorityCard/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/item.ToolWirelessTerminal/0.png b/front/public/images/large/appliedenergistics2/item.ToolWirelessTerminal/0.png deleted file mode 100644 index 83751a04c4..0000000000 Binary files a/front/public/images/large/appliedenergistics2/item.ToolWirelessTerminal/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/0.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/0.png deleted file mode 100644 index 85bf6bda1c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/1.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/1.png deleted file mode 100644 index df96d564d1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/2.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/2.png deleted file mode 100644 index 9c81b34a5b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/2.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/3.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/3.png deleted file mode 100644 index a8fc47fdfb..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingStorage/3.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/0.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/0.png deleted file mode 100644 index 4968c9fd76..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/1.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/1.png deleted file mode 100644 index 7ca4b0273d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/2.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/2.png deleted file mode 100644 index 42133f0c49..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/2.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/3.png b/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/3.png deleted file mode 100644 index 2a9744e494..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockAdvancedCraftingUnit/3.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCableBus/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCableBus/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCableBus/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCellWorkbench/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCellWorkbench/0.png deleted file mode 100644 index d1d748f47b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCellWorkbench/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCharger/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCharger/0.png deleted file mode 100644 index f9bdfa7b1f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCharger/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockChest/0.png b/front/public/images/large/appliedenergistics2/tile.BlockChest/0.png deleted file mode 100644 index b8ff5b6cfd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockChest/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCondenser/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCondenser/0.png deleted file mode 100644 index 7121f11e1e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCondenser/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockController/0.png b/front/public/images/large/appliedenergistics2/tile.BlockController/0.png deleted file mode 100644 index a9573f2ce2..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockController/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingMonitor/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingMonitor/0.png deleted file mode 100644 index 100a24059b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingMonitor/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/0.png deleted file mode 100644 index 02c4e0025d..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/1.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/1.png deleted file mode 100644 index 1cea33f471..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/2.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/2.png deleted file mode 100644 index c9a1ed247a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/2.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/3.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/3.png deleted file mode 100644 index ce02169e01..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingStorage/3.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/0.png deleted file mode 100644 index 3d44e7622f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/1.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/1.png deleted file mode 100644 index b021a024e7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/2.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/2.png deleted file mode 100644 index a79c2573ba..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/2.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/3.png b/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/3.png deleted file mode 100644 index 5334dcc6f6..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCraftingUnit/3.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockCreativeEnergyCell/0.png b/front/public/images/large/appliedenergistics2/tile.BlockCreativeEnergyCell/0.png deleted file mode 100644 index d04a664fac..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockCreativeEnergyCell/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockDenseEnergyCell/0.png b/front/public/images/large/appliedenergistics2/tile.BlockDenseEnergyCell/0.png deleted file mode 100644 index bdee12ec1b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockDenseEnergyCell/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockDrive/0.png b/front/public/images/large/appliedenergistics2/tile.BlockDrive/0.png deleted file mode 100644 index 9b669f8c3b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockDrive/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockEnergyAcceptor/0.png b/front/public/images/large/appliedenergistics2/tile.BlockEnergyAcceptor/0.png deleted file mode 100644 index 80d7812501..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockEnergyAcceptor/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockEnergyCell/0.png b/front/public/images/large/appliedenergistics2/tile.BlockEnergyCell/0.png deleted file mode 100644 index 67840f953e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockEnergyCell/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockFluix/0.png b/front/public/images/large/appliedenergistics2/tile.BlockFluix/0.png deleted file mode 100644 index a4e9df8f92..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockFluix/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockIOPort/0.png b/front/public/images/large/appliedenergistics2/tile.BlockIOPort/0.png deleted file mode 100644 index ab648fa7f5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockIOPort/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockInscriber/0.png b/front/public/images/large/appliedenergistics2/tile.BlockInscriber/0.png deleted file mode 100644 index 34a5aa13b0..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockInscriber/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockInterface/0.png b/front/public/images/large/appliedenergistics2/tile.BlockInterface/0.png deleted file mode 100644 index 01075f6b0a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockInterface/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockLightDetector/0.png b/front/public/images/large/appliedenergistics2/tile.BlockLightDetector/0.png deleted file mode 100644 index 0a06e14fa7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockLightDetector/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockMatrixFrame/0.png b/front/public/images/large/appliedenergistics2/tile.BlockMatrixFrame/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockMatrixFrame/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockMolecularAssembler/0.png b/front/public/images/large/appliedenergistics2/tile.BlockMolecularAssembler/0.png deleted file mode 100644 index b2874005e5..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockMolecularAssembler/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockPaint/0.png b/front/public/images/large/appliedenergistics2/tile.BlockPaint/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockPaint/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockPatternOptimizationMatrix/0.png b/front/public/images/large/appliedenergistics2/tile.BlockPatternOptimizationMatrix/0.png deleted file mode 100644 index cea63fbdd9..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockPatternOptimizationMatrix/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuantumLinkChamber/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuantumLinkChamber/0.png deleted file mode 100644 index 7066d16bce..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuantumLinkChamber/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuantumRing/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuantumRing/0.png deleted file mode 100644 index 97c8b888b4..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuantumRing/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuartz/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuartz/0.png deleted file mode 100644 index 3cca522f5b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuartz/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuartzChiseled/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuartzChiseled/0.png deleted file mode 100644 index 7e1b96503b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuartzChiseled/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuartzGlass/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuartzGlass/0.png deleted file mode 100644 index 9f434ff43c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuartzGlass/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuartzGrowthAccelerator/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuartzGrowthAccelerator/0.png deleted file mode 100644 index 770f70b06f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuartzGrowthAccelerator/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuartzLamp/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuartzLamp/0.png deleted file mode 100644 index 9f434ff43c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuartzLamp/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuartzPillar/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuartzPillar/0.png deleted file mode 100644 index 181bbce908..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuartzPillar/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockQuartzTorch/0.png b/front/public/images/large/appliedenergistics2/tile.BlockQuartzTorch/0.png deleted file mode 100644 index dc51b72013..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockQuartzTorch/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSecurity/0.png b/front/public/images/large/appliedenergistics2/tile.BlockSecurity/0.png deleted file mode 100644 index 490a7cf751..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSecurity/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSingularityCraftingStorage/0.png b/front/public/images/large/appliedenergistics2/tile.BlockSingularityCraftingStorage/0.png deleted file mode 100644 index 3f4af333a1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSingularityCraftingStorage/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSkyChest/0.png b/front/public/images/large/appliedenergistics2/tile.BlockSkyChest/0.png deleted file mode 100644 index 16d315407b..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSkyChest/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSkyChest/1.png b/front/public/images/large/appliedenergistics2/tile.BlockSkyChest/1.png deleted file mode 100644 index cdb8b880b1..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSkyChest/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSkyCompass/0.png b/front/public/images/large/appliedenergistics2/tile.BlockSkyCompass/0.png deleted file mode 100644 index beb41851cc..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSkyCompass/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/0.png b/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/0.png deleted file mode 100644 index 6677db9f98..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/1.png b/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/1.png deleted file mode 100644 index e75d0d8a4e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/1.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/2.png b/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/2.png deleted file mode 100644 index 957a329312..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/2.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/3.png b/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/3.png deleted file mode 100644 index 1148ecb51c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSkyStone/3.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSpatialIOPort/0.png b/front/public/images/large/appliedenergistics2/tile.BlockSpatialIOPort/0.png deleted file mode 100644 index d3ed5e025a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSpatialIOPort/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockSpatialPylon/0.png b/front/public/images/large/appliedenergistics2/tile.BlockSpatialPylon/0.png deleted file mode 100644 index 22433d6414..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockSpatialPylon/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockTinyTNT/0.png b/front/public/images/large/appliedenergistics2/tile.BlockTinyTNT/0.png deleted file mode 100644 index bd2499c9db..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockTinyTNT/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockVibrationChamber/0.png b/front/public/images/large/appliedenergistics2/tile.BlockVibrationChamber/0.png deleted file mode 100644 index 2c5a2e7c74..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockVibrationChamber/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.BlockWireless/0.png b/front/public/images/large/appliedenergistics2/tile.BlockWireless/0.png deleted file mode 100644 index 9b7ca98151..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.BlockWireless/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzSlabBlock.double/0.png deleted file mode 100644 index 4c9906dc2e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzSlabBlock/0.png deleted file mode 100644 index d9f6377c21..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzStairBlock/0.png deleted file mode 100644 index 7cce4b8918..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.ChiseledQuartzStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.FluixSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.FluixSlabBlock.double/0.png deleted file mode 100644 index 0f2aa12c0a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.FluixSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.FluixSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.FluixSlabBlock/0.png deleted file mode 100644 index d8a2fe6d0a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.FluixSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.FluixStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.FluixStairBlock/0.png deleted file mode 100644 index 4ec8d29d07..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.FluixStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.OreQuartz/0.png b/front/public/images/large/appliedenergistics2/tile.OreQuartz/0.png deleted file mode 100644 index a4d160273a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.OreQuartz/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.OreQuartzCharged/0.png b/front/public/images/large/appliedenergistics2/tile.OreQuartzCharged/0.png deleted file mode 100644 index 427caf476a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.OreQuartzCharged/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.QuartzPillarSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.QuartzPillarSlabBlock.double/0.png deleted file mode 100644 index 7f8f681cfd..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.QuartzPillarSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.QuartzPillarSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.QuartzPillarSlabBlock/0.png deleted file mode 100644 index ecb6b9f08c..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.QuartzPillarSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.QuartzPillarStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.QuartzPillarStairBlock/0.png deleted file mode 100644 index ab51a272bf..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.QuartzPillarStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.QuartzSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.QuartzSlabBlock.double/0.png deleted file mode 100644 index 870b61035e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.QuartzSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.QuartzSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.QuartzSlabBlock/0.png deleted file mode 100644 index 6bc8d89e6a..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.QuartzSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.QuartzStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.QuartzStairBlock/0.png deleted file mode 100644 index 1972d27e40..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.QuartzStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockSlabBlock.double/0.png deleted file mode 100644 index 138a5fc522..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockSlabBlock/0.png deleted file mode 100644 index f04920a788..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockStairBlock/0.png deleted file mode 100644 index 19deec92a7..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneBlockStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickSlabBlock.double/0.png deleted file mode 100644 index 869524dd29..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickSlabBlock/0.png deleted file mode 100644 index c4d0b11918..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickStairBlock/0.png deleted file mode 100644 index efcf85088f..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneBrickStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneSlabBlock.double/0.png deleted file mode 100644 index 709d65e269..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneSlabBlock/0.png deleted file mode 100644 index 87cc31e132..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock.double/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock.double/0.png deleted file mode 100644 index 249719ae23..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock/0.png deleted file mode 100644 index a8f546dffe..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickStairBlock/0.png deleted file mode 100644 index d9ebc40852..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneSmallBrickStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/appliedenergistics2/tile.SkyStoneStairBlock/0.png b/front/public/images/large/appliedenergistics2/tile.SkyStoneStairBlock/0.png deleted file mode 100644 index 0d88a3cd9e..0000000000 Binary files a/front/public/images/large/appliedenergistics2/tile.SkyStoneStairBlock/0.png and /dev/null differ diff --git a/front/public/images/large/avaritiaddons/CompressedChest/0.png b/front/public/images/large/avaritiaddons/CompressedChest/0.png deleted file mode 100644 index 2bd7820e4c..0000000000 Binary files a/front/public/images/large/avaritiaddons/CompressedChest/0.png and /dev/null differ diff --git a/front/public/images/large/avaritiaddons/ExtremeAutoCrafter/0.png b/front/public/images/large/avaritiaddons/ExtremeAutoCrafter/0.png deleted file mode 100644 index 888c9f4c76..0000000000 Binary files a/front/public/images/large/avaritiaddons/ExtremeAutoCrafter/0.png and /dev/null differ diff --git a/front/public/images/large/avaritiaddons/InfinityChest/0.png b/front/public/images/large/avaritiaddons/InfinityChest/0.png deleted file mode 100644 index 3b52e17459..0000000000 Binary files a/front/public/images/large/avaritiaddons/InfinityChest/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BWExpReversePumpBlock/0.png b/front/public/images/large/bartworks/BWExpReversePumpBlock/0.png deleted file mode 100644 index 03e68c7d61..0000000000 Binary files a/front/public/images/large/bartworks/BWExpReversePumpBlock/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BWHeatedWaterPumpBlock/0.png b/front/public/images/large/bartworks/BWHeatedWaterPumpBlock/0.png deleted file mode 100644 index 14b9585e9a..0000000000 Binary files a/front/public/images/large/bartworks/BWHeatedWaterPumpBlock/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BWPumpParts/0.png b/front/public/images/large/bartworks/BWPumpParts/0.png deleted file mode 100644 index a0f5abb778..0000000000 Binary files a/front/public/images/large/bartworks/BWPumpParts/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BWPumpParts/1.png b/front/public/images/large/bartworks/BWPumpParts/1.png deleted file mode 100644 index ec3043bce5..0000000000 Binary files a/front/public/images/large/bartworks/BWPumpParts/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BWRotorBlock/0.png b/front/public/images/large/bartworks/BWRotorBlock/0.png deleted file mode 100644 index 3fdb84ca33..0000000000 Binary files a/front/public/images/large/bartworks/BWRotorBlock/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_CombinedRotor/0.png b/front/public/images/large/bartworks/BW_CombinedRotor/0.png deleted file mode 100644 index 13b0b985a8..0000000000 Binary files a/front/public/images/large/bartworks/BW_CombinedRotor/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_FakeGlasBlock/0.png b/front/public/images/large/bartworks/BW_FakeGlasBlock/0.png deleted file mode 100644 index 27c62afd99..0000000000 Binary files a/front/public/images/large/bartworks/BW_FakeGlasBlock/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_FakeGlasBlocks2/0.png b/front/public/images/large/bartworks/BW_FakeGlasBlocks2/0.png deleted file mode 100644 index 27c62afd99..0000000000 Binary files a/front/public/images/large/bartworks/BW_FakeGlasBlocks2/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/0.png b/front/public/images/large/bartworks/BW_GlasBlocks/0.png deleted file mode 100644 index 1bf8e05ee5..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/1.png b/front/public/images/large/bartworks/BW_GlasBlocks/1.png deleted file mode 100644 index 5fb5a0d954..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/10.png b/front/public/images/large/bartworks/BW_GlasBlocks/10.png deleted file mode 100644 index f800d64cf8..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/11.png b/front/public/images/large/bartworks/BW_GlasBlocks/11.png deleted file mode 100644 index 3fda7241b1..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/12.png b/front/public/images/large/bartworks/BW_GlasBlocks/12.png deleted file mode 100644 index 741de3e111..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/13.png b/front/public/images/large/bartworks/BW_GlasBlocks/13.png deleted file mode 100644 index a2549b05a0..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/14.png b/front/public/images/large/bartworks/BW_GlasBlocks/14.png deleted file mode 100644 index 624e3e0c66..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/15.png b/front/public/images/large/bartworks/BW_GlasBlocks/15.png deleted file mode 100644 index a4f1ffdafa..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/2.png b/front/public/images/large/bartworks/BW_GlasBlocks/2.png deleted file mode 100644 index 9be4cafd9c..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/3.png b/front/public/images/large/bartworks/BW_GlasBlocks/3.png deleted file mode 100644 index e153633226..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/4.png b/front/public/images/large/bartworks/BW_GlasBlocks/4.png deleted file mode 100644 index 978109ec60..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/5.png b/front/public/images/large/bartworks/BW_GlasBlocks/5.png deleted file mode 100644 index 3db68d3a58..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/6.png b/front/public/images/large/bartworks/BW_GlasBlocks/6.png deleted file mode 100644 index 180ee43f05..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/7.png b/front/public/images/large/bartworks/BW_GlasBlocks/7.png deleted file mode 100644 index de7a2c35f7..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/8.png b/front/public/images/large/bartworks/BW_GlasBlocks/8.png deleted file mode 100644 index e41716dbd7..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks/9.png b/front/public/images/large/bartworks/BW_GlasBlocks/9.png deleted file mode 100644 index 056c2b0f8f..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_GlasBlocks2/0.png b/front/public/images/large/bartworks/BW_GlasBlocks2/0.png deleted file mode 100644 index d494dc7f45..0000000000 Binary files a/front/public/images/large/bartworks/BW_GlasBlocks2/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_ItemBlocks/0.png b/front/public/images/large/bartworks/BW_ItemBlocks/0.png deleted file mode 100644 index db84858dca..0000000000 Binary files a/front/public/images/large/bartworks/BW_ItemBlocks/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_ItemBlocks/1.png b/front/public/images/large/bartworks/BW_ItemBlocks/1.png deleted file mode 100644 index 40d6e08cca..0000000000 Binary files a/front/public/images/large/bartworks/BW_ItemBlocks/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_LeatherRotor/0.png b/front/public/images/large/bartworks/BW_LeatherRotor/0.png deleted file mode 100644 index 9523e6c4b9..0000000000 Binary files a/front/public/images/large/bartworks/BW_LeatherRotor/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_Machinery_Casings/0.png b/front/public/images/large/bartworks/BW_Machinery_Casings/0.png deleted file mode 100644 index e74c8cb8af..0000000000 Binary files a/front/public/images/large/bartworks/BW_Machinery_Casings/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_Machinery_Casings/1.png b/front/public/images/large/bartworks/BW_Machinery_Casings/1.png deleted file mode 100644 index 6f0e1e54e8..0000000000 Binary files a/front/public/images/large/bartworks/BW_Machinery_Casings/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_PaperRotor/0.png b/front/public/images/large/bartworks/BW_PaperRotor/0.png deleted file mode 100644 index 4d035d434d..0000000000 Binary files a/front/public/images/large/bartworks/BW_PaperRotor/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_SimpleWindMeter/0.png b/front/public/images/large/bartworks/BW_SimpleWindMeter/0.png deleted file mode 100644 index 0b15ec8e79..0000000000 Binary files a/front/public/images/large/bartworks/BW_SimpleWindMeter/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BW_WoolRotor/0.png b/front/public/images/large/bartworks/BW_WoolRotor/0.png deleted file mode 100644 index e9e25de885..0000000000 Binary files a/front/public/images/large/bartworks/BW_WoolRotor/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabModules/0.png b/front/public/images/large/bartworks/BioLabModules/0.png deleted file mode 100644 index e18f313d76..0000000000 Binary files a/front/public/images/large/bartworks/BioLabModules/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabModules/1.png b/front/public/images/large/bartworks/BioLabModules/1.png deleted file mode 100644 index 0a395b8c7d..0000000000 Binary files a/front/public/images/large/bartworks/BioLabModules/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabModules/2.png b/front/public/images/large/bartworks/BioLabModules/2.png deleted file mode 100644 index 98fed8ccc3..0000000000 Binary files a/front/public/images/large/bartworks/BioLabModules/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabModules/3.png b/front/public/images/large/bartworks/BioLabModules/3.png deleted file mode 100644 index 963b8081d2..0000000000 Binary files a/front/public/images/large/bartworks/BioLabModules/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabModules/4.png b/front/public/images/large/bartworks/BioLabModules/4.png deleted file mode 100644 index c3f1b6d73b..0000000000 Binary files a/front/public/images/large/bartworks/BioLabModules/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabParts/0.png b/front/public/images/large/bartworks/BioLabParts/0.png deleted file mode 100644 index eb429f41f9..0000000000 Binary files a/front/public/images/large/bartworks/BioLabParts/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabParts/1.png b/front/public/images/large/bartworks/BioLabParts/1.png deleted file mode 100644 index d6a3d04a09..0000000000 Binary files a/front/public/images/large/bartworks/BioLabParts/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabParts/2.png b/front/public/images/large/bartworks/BioLabParts/2.png deleted file mode 100644 index 1a7ec0c214..0000000000 Binary files a/front/public/images/large/bartworks/BioLabParts/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabParts/3.png b/front/public/images/large/bartworks/BioLabParts/3.png deleted file mode 100644 index f9751c01c8..0000000000 Binary files a/front/public/images/large/bartworks/BioLabParts/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabParts/4.png b/front/public/images/large/bartworks/BioLabParts/4.png deleted file mode 100644 index 2a857fe4b2..0000000000 Binary files a/front/public/images/large/bartworks/BioLabParts/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabParts/5.png b/front/public/images/large/bartworks/BioLabParts/5.png deleted file mode 100644 index e3c33e70a5..0000000000 Binary files a/front/public/images/large/bartworks/BioLabParts/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/BioLabParts/6.png b/front/public/images/large/bartworks/BioLabParts/6.png deleted file mode 100644 index fdce5454f0..0000000000 Binary files a/front/public/images/large/bartworks/BioLabParts/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/GT_LESU_CASING/0.png b/front/public/images/large/bartworks/GT_LESU_CASING/0.png deleted file mode 100644 index 16a325d447..0000000000 Binary files a/front/public/images/large/bartworks/GT_LESU_CASING/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/0.png b/front/public/images/large/bartworks/bw.HTGRMaterials/0.png deleted file mode 100644 index 12bbf647ba..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/1.png b/front/public/images/large/bartworks/bw.HTGRMaterials/1.png deleted file mode 100644 index c42695a6f6..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/10.png b/front/public/images/large/bartworks/bw.HTGRMaterials/10.png deleted file mode 100644 index ae635b44da..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/11.png b/front/public/images/large/bartworks/bw.HTGRMaterials/11.png deleted file mode 100644 index 72a9ebaeec..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/12.png b/front/public/images/large/bartworks/bw.HTGRMaterials/12.png deleted file mode 100644 index 5695ce34a7..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/13.png b/front/public/images/large/bartworks/bw.HTGRMaterials/13.png deleted file mode 100644 index 17dc1d8ea2..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/14.png b/front/public/images/large/bartworks/bw.HTGRMaterials/14.png deleted file mode 100644 index fa86c3a00c..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/15.png b/front/public/images/large/bartworks/bw.HTGRMaterials/15.png deleted file mode 100644 index 95b43349fd..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/16.png b/front/public/images/large/bartworks/bw.HTGRMaterials/16.png deleted file mode 100644 index 9a5f8d5989..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/17.png b/front/public/images/large/bartworks/bw.HTGRMaterials/17.png deleted file mode 100644 index fc2ac52eef..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/18.png b/front/public/images/large/bartworks/bw.HTGRMaterials/18.png deleted file mode 100644 index 9c20db9409..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/19.png b/front/public/images/large/bartworks/bw.HTGRMaterials/19.png deleted file mode 100644 index 6b12d627df..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/2.png b/front/public/images/large/bartworks/bw.HTGRMaterials/2.png deleted file mode 100644 index b184984cde..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/20.png b/front/public/images/large/bartworks/bw.HTGRMaterials/20.png deleted file mode 100644 index 882a81f888..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/3.png b/front/public/images/large/bartworks/bw.HTGRMaterials/3.png deleted file mode 100644 index 188ec14213..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/4.png b/front/public/images/large/bartworks/bw.HTGRMaterials/4.png deleted file mode 100644 index 6509c943c8..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/5.png b/front/public/images/large/bartworks/bw.HTGRMaterials/5.png deleted file mode 100644 index b2711804fd..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/6.png b/front/public/images/large/bartworks/bw.HTGRMaterials/6.png deleted file mode 100644 index 34a2c3e226..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/7.png b/front/public/images/large/bartworks/bw.HTGRMaterials/7.png deleted file mode 100644 index 3496ff3c44..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/8.png b/front/public/images/large/bartworks/bw.HTGRMaterials/8.png deleted file mode 100644 index 0b5b8b042b..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.HTGRMaterials/9.png b/front/public/images/large/bartworks/bw.HTGRMaterials/9.png deleted file mode 100644 index 0323b4af40..0000000000 Binary files a/front/public/images/large/bartworks/bw.HTGRMaterials/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.THTRMaterials/0.png b/front/public/images/large/bartworks/bw.THTRMaterials/0.png deleted file mode 100644 index c007d740e0..0000000000 Binary files a/front/public/images/large/bartworks/bw.THTRMaterials/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.THTRMaterials/1.png b/front/public/images/large/bartworks/bw.THTRMaterials/1.png deleted file mode 100644 index 65c6f50f27..0000000000 Binary files a/front/public/images/large/bartworks/bw.THTRMaterials/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.THTRMaterials/2.png b/front/public/images/large/bartworks/bw.THTRMaterials/2.png deleted file mode 100644 index c8f779e379..0000000000 Binary files a/front/public/images/large/bartworks/bw.THTRMaterials/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.THTRMaterials/3.png b/front/public/images/large/bartworks/bw.THTRMaterials/3.png deleted file mode 100644 index a71246870c..0000000000 Binary files a/front/public/images/large/bartworks/bw.THTRMaterials/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.THTRMaterials/4.png b/front/public/images/large/bartworks/bw.THTRMaterials/4.png deleted file mode 100644 index a3e732f322..0000000000 Binary files a/front/public/images/large/bartworks/bw.THTRMaterials/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.THTRMaterials/5.png b/front/public/images/large/bartworks/bw.THTRMaterials/5.png deleted file mode 100644 index ab105a7f61..0000000000 Binary files a/front/public/images/large/bartworks/bw.THTRMaterials/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.THTRMaterials/6.png b/front/public/images/large/bartworks/bw.THTRMaterials/6.png deleted file mode 100644 index 6766d40064..0000000000 Binary files a/front/public/images/large/bartworks/bw.THTRMaterials/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/1.png b/front/public/images/large/bartworks/bw.blockores.01/1.png deleted file mode 100644 index 39f27c0943..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/10.png b/front/public/images/large/bartworks/bw.blockores.01/10.png deleted file mode 100644 index b7ceca09ab..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/10023.png b/front/public/images/large/bartworks/bw.blockores.01/10023.png deleted file mode 100644 index 4936dc4792..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/10054.png b/front/public/images/large/bartworks/bw.blockores.01/10054.png deleted file mode 100644 index 3f863bcad6..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/10067.png b/front/public/images/large/bartworks/bw.blockores.01/10067.png deleted file mode 100644 index 8e3afc4a24..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/10072.png b/front/public/images/large/bartworks/bw.blockores.01/10072.png deleted file mode 100644 index 8a1b17ddc9..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/11.png b/front/public/images/large/bartworks/bw.blockores.01/11.png deleted file mode 100644 index b7ceca09ab..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/12.png b/front/public/images/large/bartworks/bw.blockores.01/12.png deleted file mode 100644 index 1e3d975d76..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/13.png b/front/public/images/large/bartworks/bw.blockores.01/13.png deleted file mode 100644 index 7635ee8e8a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/14.png b/front/public/images/large/bartworks/bw.blockores.01/14.png deleted file mode 100644 index 676badfdb2..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/15.png b/front/public/images/large/bartworks/bw.blockores.01/15.png deleted file mode 100644 index 4b4c1469d1..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/16.png b/front/public/images/large/bartworks/bw.blockores.01/16.png deleted file mode 100644 index be91177d59..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/17.png b/front/public/images/large/bartworks/bw.blockores.01/17.png deleted file mode 100644 index d28c25af97..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/18.png b/front/public/images/large/bartworks/bw.blockores.01/18.png deleted file mode 100644 index 5810048fe6..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/19.png b/front/public/images/large/bartworks/bw.blockores.01/19.png deleted file mode 100644 index b61a0dc966..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/2.png b/front/public/images/large/bartworks/bw.blockores.01/2.png deleted file mode 100644 index dc691515fb..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/23.png b/front/public/images/large/bartworks/bw.blockores.01/23.png deleted file mode 100644 index 0890fd02a3..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/24.png b/front/public/images/large/bartworks/bw.blockores.01/24.png deleted file mode 100644 index edf51166c1..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/25.png b/front/public/images/large/bartworks/bw.blockores.01/25.png deleted file mode 100644 index bd4617c623..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/26.png b/front/public/images/large/bartworks/bw.blockores.01/26.png deleted file mode 100644 index e62b8815c3..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/27.png b/front/public/images/large/bartworks/bw.blockores.01/27.png deleted file mode 100644 index 028fb84e4b..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/28.png b/front/public/images/large/bartworks/bw.blockores.01/28.png deleted file mode 100644 index 7efe1cfadf..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/29.png b/front/public/images/large/bartworks/bw.blockores.01/29.png deleted file mode 100644 index e86a590df5..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/35.png b/front/public/images/large/bartworks/bw.blockores.01/35.png deleted file mode 100644 index 3a33b65856..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/43.png b/front/public/images/large/bartworks/bw.blockores.01/43.png deleted file mode 100644 index 210b9f1c12..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/47.png b/front/public/images/large/bartworks/bw.blockores.01/47.png deleted file mode 100644 index 44e23287dd..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/5.png b/front/public/images/large/bartworks/bw.blockores.01/5.png deleted file mode 100644 index bc2dcbe41f..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/53.png b/front/public/images/large/bartworks/bw.blockores.01/53.png deleted file mode 100644 index d54bda6bf1..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/60.png b/front/public/images/large/bartworks/bw.blockores.01/60.png deleted file mode 100644 index b6a09fc42b..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/69.png b/front/public/images/large/bartworks/bw.blockores.01/69.png deleted file mode 100644 index b6a09fc42b..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/7.png b/front/public/images/large/bartworks/bw.blockores.01/7.png deleted file mode 100644 index 0937c0e9a7..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/70.png b/front/public/images/large/bartworks/bw.blockores.01/70.png deleted file mode 100644 index cb0739db19..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/79.png b/front/public/images/large/bartworks/bw.blockores.01/79.png deleted file mode 100644 index 7563290ff0..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/8.png b/front/public/images/large/bartworks/bw.blockores.01/8.png deleted file mode 100644 index 8fd1173493..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/89.png b/front/public/images/large/bartworks/bw.blockores.01/89.png deleted file mode 100644 index 1cf7d3060a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/9.png b/front/public/images/large/bartworks/bw.blockores.01/9.png deleted file mode 100644 index 6dc0546ecb..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/91.png b/front/public/images/large/bartworks/bw.blockores.01/91.png deleted file mode 100644 index e98f81bc03..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/93.png b/front/public/images/large/bartworks/bw.blockores.01/93.png deleted file mode 100644 index 6c6e4fd101..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/94.png b/front/public/images/large/bartworks/bw.blockores.01/94.png deleted file mode 100644 index ccfbfbddf6..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.01/95.png b/front/public/images/large/bartworks/bw.blockores.01/95.png deleted file mode 100644 index 1325702e09..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.01/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/1.png b/front/public/images/large/bartworks/bw.blockores.02/1.png deleted file mode 100644 index f469ef685a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/10.png b/front/public/images/large/bartworks/bw.blockores.02/10.png deleted file mode 100644 index 61aa8e1ed5..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/10023.png b/front/public/images/large/bartworks/bw.blockores.02/10023.png deleted file mode 100644 index 7d424875c7..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/10054.png b/front/public/images/large/bartworks/bw.blockores.02/10054.png deleted file mode 100644 index de7b97cf7b..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/10067.png b/front/public/images/large/bartworks/bw.blockores.02/10067.png deleted file mode 100644 index 9fb6d99c8a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/10072.png b/front/public/images/large/bartworks/bw.blockores.02/10072.png deleted file mode 100644 index 6c9284e8c3..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/11.png b/front/public/images/large/bartworks/bw.blockores.02/11.png deleted file mode 100644 index 61aa8e1ed5..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/12.png b/front/public/images/large/bartworks/bw.blockores.02/12.png deleted file mode 100644 index 595df1deed..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/13.png b/front/public/images/large/bartworks/bw.blockores.02/13.png deleted file mode 100644 index 7be569c1dc..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/14.png b/front/public/images/large/bartworks/bw.blockores.02/14.png deleted file mode 100644 index 097ca811da..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/15.png b/front/public/images/large/bartworks/bw.blockores.02/15.png deleted file mode 100644 index aa098ad54a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/16.png b/front/public/images/large/bartworks/bw.blockores.02/16.png deleted file mode 100644 index 7169093959..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/17.png b/front/public/images/large/bartworks/bw.blockores.02/17.png deleted file mode 100644 index 077f6a0c6c..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/18.png b/front/public/images/large/bartworks/bw.blockores.02/18.png deleted file mode 100644 index 9c5edad059..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/19.png b/front/public/images/large/bartworks/bw.blockores.02/19.png deleted file mode 100644 index 5c075e859a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/2.png b/front/public/images/large/bartworks/bw.blockores.02/2.png deleted file mode 100644 index 869ac25733..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/23.png b/front/public/images/large/bartworks/bw.blockores.02/23.png deleted file mode 100644 index 8eeba6e8b1..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/24.png b/front/public/images/large/bartworks/bw.blockores.02/24.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/25.png b/front/public/images/large/bartworks/bw.blockores.02/25.png deleted file mode 100644 index 1d9b2fc732..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/26.png b/front/public/images/large/bartworks/bw.blockores.02/26.png deleted file mode 100644 index aa54dfb5cd..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/27.png b/front/public/images/large/bartworks/bw.blockores.02/27.png deleted file mode 100644 index 635fddfe01..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/28.png b/front/public/images/large/bartworks/bw.blockores.02/28.png deleted file mode 100644 index e02c20c7b5..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/29.png b/front/public/images/large/bartworks/bw.blockores.02/29.png deleted file mode 100644 index 73a397e248..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/35.png b/front/public/images/large/bartworks/bw.blockores.02/35.png deleted file mode 100644 index 3d282d52d6..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/43.png b/front/public/images/large/bartworks/bw.blockores.02/43.png deleted file mode 100644 index f23fa4691a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/47.png b/front/public/images/large/bartworks/bw.blockores.02/47.png deleted file mode 100644 index 6957eaaebe..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/5.png b/front/public/images/large/bartworks/bw.blockores.02/5.png deleted file mode 100644 index 22c5889d02..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/53.png b/front/public/images/large/bartworks/bw.blockores.02/53.png deleted file mode 100644 index d933a907b9..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/60.png b/front/public/images/large/bartworks/bw.blockores.02/60.png deleted file mode 100644 index fab7a4bf1c..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/69.png b/front/public/images/large/bartworks/bw.blockores.02/69.png deleted file mode 100644 index fab7a4bf1c..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/7.png b/front/public/images/large/bartworks/bw.blockores.02/7.png deleted file mode 100644 index 69cc93d453..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/70.png b/front/public/images/large/bartworks/bw.blockores.02/70.png deleted file mode 100644 index d27c34cc33..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/79.png b/front/public/images/large/bartworks/bw.blockores.02/79.png deleted file mode 100644 index 8a1b9d5bb4..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/8.png b/front/public/images/large/bartworks/bw.blockores.02/8.png deleted file mode 100644 index 951ff5872e..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/89.png b/front/public/images/large/bartworks/bw.blockores.02/89.png deleted file mode 100644 index a304dec30a..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/9.png b/front/public/images/large/bartworks/bw.blockores.02/9.png deleted file mode 100644 index 4257427d3b..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/91.png b/front/public/images/large/bartworks/bw.blockores.02/91.png deleted file mode 100644 index 001458414c..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/93.png b/front/public/images/large/bartworks/bw.blockores.02/93.png deleted file mode 100644 index ae024d0ec2..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/94.png b/front/public/images/large/bartworks/bw.blockores.02/94.png deleted file mode 100644 index 38fe9b2a3b..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.blockores.02/95.png b/front/public/images/large/bartworks/bw.blockores.02/95.png deleted file mode 100644 index 38fe9b2a3b..0000000000 Binary files a/front/public/images/large/bartworks/bw.blockores.02/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/1.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/1.png deleted file mode 100644 index 212a107d0b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10022.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10022.png deleted file mode 100644 index 3a25433338..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10023.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10023.png deleted file mode 100644 index 34a0709a49..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10024.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10024.png deleted file mode 100644 index 32f662e586..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10053.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10053.png deleted file mode 100644 index 3efd6423f7..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10082.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10082.png deleted file mode 100644 index 55712eb7c6..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10083.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10083.png deleted file mode 100644 index 79a7318e7d..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10084.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10084.png deleted file mode 100644 index 79a7318e7d..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10085.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10085.png deleted file mode 100644 index fbbffb4be7..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10096.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10096.png deleted file mode 100644 index c531aef150..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10097.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10097.png deleted file mode 100644 index b2135a860d..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10098.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10098.png deleted file mode 100644 index c1d991f13b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10099.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10099.png deleted file mode 100644 index 5799522f4d..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10101.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10101.png deleted file mode 100644 index a6b86f0ed5..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10102.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10102.png deleted file mode 100644 index 637fbf280f..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10103.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10103.png deleted file mode 100644 index 90117db890..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10104.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10104.png deleted file mode 100644 index 7c020eaad4..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10105.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10105.png deleted file mode 100644 index c6b430341b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10106.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10106.png deleted file mode 100644 index 8de1fd4b56..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10109.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10109.png deleted file mode 100644 index 0b16459366..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10110.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10110.png deleted file mode 100644 index e460104228..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10111.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10111.png deleted file mode 100644 index 0380c58c43..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10112.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/10112.png deleted file mode 100644 index 5a14980e15..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/104.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/104.png deleted file mode 100644 index 8a52d8c30f..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11000.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/11000.png deleted file mode 100644 index ba34dcc277..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11007.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/11007.png deleted file mode 100644 index 1d559ed535..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11312.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/11312.png deleted file mode 100644 index ab53555338..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11499.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/11499.png deleted file mode 100644 index acdf43da61..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11503.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/11503.png deleted file mode 100644 index 54565ebcfd..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/19.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/19.png deleted file mode 100644 index 05b1549806..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/20.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/20.png deleted file mode 100644 index c8f22318a2..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/21.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/21.png deleted file mode 100644 index 49194f9447..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/22.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/22.png deleted file mode 100644 index 240452b827..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/23.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/23.png deleted file mode 100644 index 08acb3ea81..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/24.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/24.png deleted file mode 100644 index 66b8918c88..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/25.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/25.png deleted file mode 100644 index 8ecae7d647..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/3.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/3.png deleted file mode 100644 index a5c0285cb1..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/30.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/30.png deleted file mode 100644 index 0f9f4c2826..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/32237.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/32237.png deleted file mode 100644 index 4faa50e310..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/35.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/35.png deleted file mode 100644 index 0ea4428041..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/36.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/36.png deleted file mode 100644 index 1094b43737..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/39.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/39.png deleted file mode 100644 index c0b7dc5892..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/4.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/4.png deleted file mode 100644 index 68959314eb..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/40.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/40.png deleted file mode 100644 index b5a6af8f5b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/43.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/43.png deleted file mode 100644 index d6eda45706..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/5.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/5.png deleted file mode 100644 index af4246639e..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/64.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/64.png deleted file mode 100644 index f58d9776c5..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/7.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/7.png deleted file mode 100644 index 032834d1b8..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/78.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/78.png deleted file mode 100644 index 73a7a016a1..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/8.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/8.png deleted file mode 100644 index d827d25959..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/88.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/88.png deleted file mode 100644 index 3dc4e4bb64..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/89.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/89.png deleted file mode 100644 index 5b31ebead5..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/9.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/9.png deleted file mode 100644 index dc4bcb57fb..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/90.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/90.png deleted file mode 100644 index d673d7aba0..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/91.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/91.png deleted file mode 100644 index 65ad43d29f..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/92.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/92.png deleted file mode 100644 index 3c7278060b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblocks.01/96.png b/front/public/images/large/bartworks/bw.werkstoffblocks.01/96.png deleted file mode 100644 index e40722c821..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblocks.01/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10022.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10022.png deleted file mode 100644 index c06b6779ed..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10024.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10024.png deleted file mode 100644 index 2a194d97e1..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10085.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10085.png deleted file mode 100644 index cf55442c24..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10096.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10096.png deleted file mode 100644 index 645e94518b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10097.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10097.png deleted file mode 100644 index f31035b446..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10109.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10109.png deleted file mode 100644 index eb4db6f64b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10110.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10110.png deleted file mode 100644 index a8e196073e..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10111.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10111.png deleted file mode 100644 index 35291a75be..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10112.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10112.png deleted file mode 100644 index c8ef8d5aeb..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31776.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31776.png deleted file mode 100644 index 747ab3cb55..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31776.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31785.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31785.png deleted file mode 100644 index 6c5e2c71d9..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31785.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31794.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31794.png deleted file mode 100644 index cb6383d89c..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31794.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31796.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31796.png deleted file mode 100644 index 339c406159..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31796.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31798.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31798.png deleted file mode 100644 index 42019e6668..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31798.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31799.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31799.png deleted file mode 100644 index 3e72202c09..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31799.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31800.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31800.png deleted file mode 100644 index c525bc2c57..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31800.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31801.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31801.png deleted file mode 100644 index 529d866c61..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31801.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31818.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31818.png deleted file mode 100644 index fc1e27bc5f..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31818.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31820.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31820.png deleted file mode 100644 index e95cf46b34..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31820.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31823.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31823.png deleted file mode 100644 index 72fc4b8821..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31823.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31833.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31833.png deleted file mode 100644 index be433b57fc..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31833.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31847.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31847.png deleted file mode 100644 index f3cd2d4d46..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31847.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31849.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31849.png deleted file mode 100644 index e88c3b29f8..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31849.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31850.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31850.png deleted file mode 100644 index 4c4d6047cf..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31850.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31851.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31851.png deleted file mode 100644 index 3ab7da317c..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31851.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31852.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31852.png deleted file mode 100644 index 042e2b2f1a..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31852.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31855.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31855.png deleted file mode 100644 index 25c2493ef5..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31855.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31856.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31856.png deleted file mode 100644 index a1b9e0e281..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31856.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31895.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31895.png deleted file mode 100644 index b2fe8143b6..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/31895.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32066.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32066.png deleted file mode 100644 index 793b3c62e0..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32066.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32067.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32067.png deleted file mode 100644 index 28aa720170..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32070.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32070.png deleted file mode 100644 index 80ee4fc730..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32070.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32071.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32071.png deleted file mode 100644 index fc1e27bc5f..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32071.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32072.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32072.png deleted file mode 100644 index b308320baf..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32083.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32083.png deleted file mode 100644 index 149bdbcb01..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32090.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32090.png deleted file mode 100644 index f3cd2d4d46..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32090.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32091.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32091.png deleted file mode 100644 index efb8c3f714..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32091.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32100.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32100.png deleted file mode 100644 index be433b57fc..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32100.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32101.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32101.png deleted file mode 100644 index 586b03fa52..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32110.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32110.png deleted file mode 100644 index 17129debb8..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32111.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32111.png deleted file mode 100644 index bbeb764755..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32114.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32114.png deleted file mode 100644 index ed9573bf56..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32114.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32115.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32115.png deleted file mode 100644 index 2d05de44be..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32115.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32116.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32116.png deleted file mode 100644 index fbe290ef49..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32116.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32117.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32117.png deleted file mode 100644 index 552e7007b3..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32117.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32118.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32118.png deleted file mode 100644 index f14dca3c3e..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32118.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32119.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32119.png deleted file mode 100644 index 1e7c3f9fd1..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32119.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32148.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32148.png deleted file mode 100644 index fcf9a7b500..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32148.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32236.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32236.png deleted file mode 100644 index 5fdee5feae..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32236.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32239.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32239.png deleted file mode 100644 index be433b57fc..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32239.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32575.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32575.png deleted file mode 100644 index 1a9f646754..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/32575.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/88.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/88.png deleted file mode 100644 index 339c406159..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/90.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/90.png deleted file mode 100644 index 20abcd0a1e..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/92.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/92.png deleted file mode 100644 index 936177e57b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/96.png b/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/96.png deleted file mode 100644 index f2b4b50fef..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasing.01/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10022.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10022.png deleted file mode 100644 index adb6f25db0..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10024.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10024.png deleted file mode 100644 index fa3cfde40e..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10085.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10085.png deleted file mode 100644 index e702006447..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10096.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10096.png deleted file mode 100644 index 6239040c9b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10097.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10097.png deleted file mode 100644 index 34f2013938..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10109.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10109.png deleted file mode 100644 index 5643d1e0a2..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10110.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10110.png deleted file mode 100644 index 1f8ef6f1ef..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10111.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10111.png deleted file mode 100644 index d130ecdb51..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10112.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10112.png deleted file mode 100644 index 7fa13981fb..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31776.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31776.png deleted file mode 100644 index bd20cc2b6e..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31776.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31785.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31785.png deleted file mode 100644 index cccf65260b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31785.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31794.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31794.png deleted file mode 100644 index 4c3236f6e6..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31794.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31796.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31796.png deleted file mode 100644 index 18fe06ad64..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31796.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31798.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31798.png deleted file mode 100644 index 2dc4fde9f4..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31798.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31799.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31799.png deleted file mode 100644 index 53d37c5719..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31799.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31800.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31800.png deleted file mode 100644 index a6eb0defb5..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31800.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31801.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31801.png deleted file mode 100644 index 88252b3e47..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31801.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31818.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31818.png deleted file mode 100644 index e4c7753204..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31818.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31820.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31820.png deleted file mode 100644 index eb1cd7b0cb..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31820.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31823.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31823.png deleted file mode 100644 index eceb3ebcf8..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31823.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31833.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31833.png deleted file mode 100644 index 513ad56fe0..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31833.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31847.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31847.png deleted file mode 100644 index 2aee06bdb1..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31847.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31849.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31849.png deleted file mode 100644 index 69f759ede8..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31849.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31850.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31850.png deleted file mode 100644 index da8645815a..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31850.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31851.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31851.png deleted file mode 100644 index 6d95fec18b..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31851.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31852.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31852.png deleted file mode 100644 index 250cd740bd..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31852.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31855.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31855.png deleted file mode 100644 index ba1dd183a6..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31855.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31856.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31856.png deleted file mode 100644 index 7e685b3b68..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31856.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31895.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31895.png deleted file mode 100644 index aa3a5e0b17..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/31895.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32066.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32066.png deleted file mode 100644 index 705bdc58ac..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32066.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32067.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32067.png deleted file mode 100644 index b72b300600..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32070.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32070.png deleted file mode 100644 index d170ad51f4..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32070.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32071.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32071.png deleted file mode 100644 index e4c7753204..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32071.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32072.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32072.png deleted file mode 100644 index 4f257dc50f..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32083.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32083.png deleted file mode 100644 index b0924eed79..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32090.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32090.png deleted file mode 100644 index 2aee06bdb1..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32090.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32091.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32091.png deleted file mode 100644 index 6ebfd89b41..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32091.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32100.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32100.png deleted file mode 100644 index 513ad56fe0..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32100.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32101.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32101.png deleted file mode 100644 index 277a8b5284..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32110.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32110.png deleted file mode 100644 index a2811dc525..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32111.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32111.png deleted file mode 100644 index 505353125c..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32114.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32114.png deleted file mode 100644 index d0d7e73d3f..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32114.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32115.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32115.png deleted file mode 100644 index 3c5e58a3a3..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32115.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32116.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32116.png deleted file mode 100644 index dbec0e74c8..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32116.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32117.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32117.png deleted file mode 100644 index cf82931068..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32117.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32118.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32118.png deleted file mode 100644 index 7d8f4f4373..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32118.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32119.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32119.png deleted file mode 100644 index 93992f58ef..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32119.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32148.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32148.png deleted file mode 100644 index 4c1bdd3ac2..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32148.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32236.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32236.png deleted file mode 100644 index b984d6ea4e..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32236.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32239.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32239.png deleted file mode 100644 index 513ad56fe0..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32239.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32575.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32575.png deleted file mode 100644 index b176cd4536..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/32575.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/88.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/88.png deleted file mode 100644 index 18fe06ad64..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/90.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/90.png deleted file mode 100644 index 377cf188f8..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/92.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/92.png deleted file mode 100644 index d80df12777..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/96.png b/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/96.png deleted file mode 100644 index 58b054688d..0000000000 Binary files a/front/public/images/large/bartworks/bw.werkstoffblockscasingadvanced.01/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/coloredFluidBlock/0.png b/front/public/images/large/bartworks/coloredFluidBlock/0.png deleted file mode 100644 index 9a9af24cd8..0000000000 Binary files a/front/public/images/large/bartworks/coloredFluidBlock/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/craftingParts/0.png b/front/public/images/large/bartworks/craftingParts/0.png deleted file mode 100644 index 3c0d7078e4..0000000000 Binary files a/front/public/images/large/bartworks/craftingParts/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/craftingParts/1.png b/front/public/images/large/bartworks/craftingParts/1.png deleted file mode 100644 index 8e9fd9e366..0000000000 Binary files a/front/public/images/large/bartworks/craftingParts/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/craftingParts/2.png b/front/public/images/large/bartworks/craftingParts/2.png deleted file mode 100644 index 81a3eaf20e..0000000000 Binary files a/front/public/images/large/bartworks/craftingParts/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/craftingParts/3.png b/front/public/images/large/bartworks/craftingParts/3.png deleted file mode 100644 index c6ec46443a..0000000000 Binary files a/front/public/images/large/bartworks/craftingParts/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/craftingParts/4.png b/front/public/images/large/bartworks/craftingParts/4.png deleted file mode 100644 index 168eaf8bec..0000000000 Binary files a/front/public/images/large/bartworks/craftingParts/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/craftingParts/5.png b/front/public/images/large/bartworks/craftingParts/5.png deleted file mode 100644 index f43f59d973..0000000000 Binary files a/front/public/images/large/bartworks/craftingParts/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/craftingParts/6.png b/front/public/images/large/bartworks/craftingParts/6.png deleted file mode 100644 index e73dc08c8b..0000000000 Binary files a/front/public/images/large/bartworks/craftingParts/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.BWCircuitProgrammer/0.png b/front/public/images/large/bartworks/gt.BWCircuitProgrammer/0.png deleted file mode 100644 index d9304977af..0000000000 Binary files a/front/public/images/large/bartworks/gt.BWCircuitProgrammer/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.GT2Destructopack/0.png b/front/public/images/large/bartworks/gt.GT2Destructopack/0.png deleted file mode 100644 index 4b307f5fa3..0000000000 Binary files a/front/public/images/large/bartworks/gt.GT2Destructopack/0.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/15.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/15.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/153.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/153.png deleted file mode 100644 index 0044fa6b56..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/153.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/19.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/24.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/257.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/257.png deleted file mode 100644 index 67bf19f8a3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/257.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/258.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/258.png deleted file mode 100644 index 3080a07f8a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/258.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/288.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/288.png deleted file mode 100644 index c65c00defe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/288.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/29.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/29.png deleted file mode 100644 index 8a95eb5c3c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/290.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/290.png deleted file mode 100644 index 844eb2d7b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/290.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/291.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/291.png deleted file mode 100644 index ccd302bf44..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/291.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/299.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/299.png deleted file mode 100644 index d0563ff690..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/299.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/30.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/301.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/301.png deleted file mode 100644 index 6afd0b7bb1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/301.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/302.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/302.png deleted file mode 100644 index 27d61a399d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/302.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/303.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/303.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/303.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/304.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/304.png deleted file mode 100644 index 46f6559e67..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/304.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/306.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/306.png deleted file mode 100644 index b7046a5db5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/306.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/309.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/309.png deleted file mode 100644 index 6afd0b7bb1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/309.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/31.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/31.png deleted file mode 100644 index ffe5e0a175..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/31.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/310.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/310.png deleted file mode 100644 index 08d4deac2a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/310.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/313.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/313.png deleted file mode 100644 index f1e51351d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/313.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/330.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/330.png deleted file mode 100644 index 94315d1453..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/330.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/331.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/331.png deleted file mode 100644 index e154d6ffc7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/331.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/332.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/332.png deleted file mode 100644 index ebd4d39d37..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/332.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/340.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/340.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/340.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/341.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/341.png deleted file mode 100644 index e24bb527f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/341.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/342.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/342.png deleted file mode 100644 index e24bb527f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/342.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/343.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/343.png deleted file mode 100644 index e24bb527f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/343.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/344.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/344.png deleted file mode 100644 index e24bb527f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/344.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/345.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/345.png deleted file mode 100644 index e24bb527f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/345.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/346.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/346.png deleted file mode 100644 index e24bb527f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/346.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/383.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/383.png deleted file mode 100644 index e29510f9d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/383.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/386.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/386.png deleted file mode 100644 index 8a95eb5c3c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/386.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/391.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/391.png deleted file mode 100644 index 400ca1c37e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/391.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/4.png deleted file mode 100644 index 844eb2d7b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/404.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/404.png deleted file mode 100644 index 13e678d94c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/404.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/42.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/42.png deleted file mode 100644 index ecb127f33e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/42.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/429.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/429.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/429.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/431.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/431.png deleted file mode 100644 index be4c19c7d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/431.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/432.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/432.png deleted file mode 100644 index 2a05aa2ece..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/432.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/433.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/433.png deleted file mode 100644 index 2a05aa2ece..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/433.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/434.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/434.png deleted file mode 100644 index 2a05aa2ece..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/434.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/435.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/435.png deleted file mode 100644 index c76e1c524d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/435.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/436.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/436.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/436.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/437.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/437.png deleted file mode 100644 index c76e1c524d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/437.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/438.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/438.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/438.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/439.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/439.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/439.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/440.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/440.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/440.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/441.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/441.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/441.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/442.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/442.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/442.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/443.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/443.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/443.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/444.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/444.png deleted file mode 100644 index 5ef51673ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/444.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/445.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/445.png deleted file mode 100644 index 922da408bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/445.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/446.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/446.png deleted file mode 100644 index 4ee0cd1f8d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/446.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/448.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/448.png deleted file mode 100644 index cb2a5e3801..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/448.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/449.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/449.png deleted file mode 100644 index b2fd4b10cf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/449.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/450.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/450.png deleted file mode 100644 index 1ab469ee99..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/450.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/451.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/451.png deleted file mode 100644 index 00740db2cf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/451.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/453.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/453.png deleted file mode 100644 index 4a25946321..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/453.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/454.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/454.png deleted file mode 100644 index 3857464f5e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/454.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/468.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/468.png deleted file mode 100644 index a9de3a7a25..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/468.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/469.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/469.png deleted file mode 100644 index 2d479a092e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/469.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/470.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/470.png deleted file mode 100644 index f70de87e11..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/470.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/473.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/473.png deleted file mode 100644 index ae91095d94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/473.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/475.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/475.png deleted file mode 100644 index 719a4600ef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/475.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/476.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/476.png deleted file mode 100644 index d51319e19c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/476.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/477.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/477.png deleted file mode 100644 index c406ca0773..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/477.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/478.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/478.png deleted file mode 100644 index a531097fcd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/478.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/479.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/479.png deleted file mode 100644 index 98be1eca63..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/479.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/48.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/48.png deleted file mode 100644 index 23323dd9a6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/48.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/480.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/480.png deleted file mode 100644 index eeb958ee29..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/480.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/481.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/481.png deleted file mode 100644 index dfaeafe008..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/481.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/482.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/482.png deleted file mode 100644 index 8500a293a0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/482.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/483.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/483.png deleted file mode 100644 index 3fbb90eab8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/483.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/486.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/486.png deleted file mode 100644 index 58a1ee3c24..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/486.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/487.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/487.png deleted file mode 100644 index 58a1ee3c24..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/487.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/489.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/489.png deleted file mode 100644 index 0b4f6d9e67..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/489.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/490.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/490.png deleted file mode 100644 index 545299b06e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/490.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/491.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/491.png deleted file mode 100644 index cafcd6bf7e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/491.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/492.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/492.png deleted file mode 100644 index 2d479a092e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/492.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/493.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/493.png deleted file mode 100644 index 9f484da65b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/493.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/494.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/494.png deleted file mode 100644 index e20c3619ea..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/494.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/495.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/495.png deleted file mode 100644 index 55f2e1745e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/495.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/496.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/496.png deleted file mode 100644 index bffde7d87c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/496.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/497.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/497.png deleted file mode 100644 index c263b21477..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/497.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/498.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/498.png deleted file mode 100644 index 312d0b1ab2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/498.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/499.png deleted file mode 100644 index 0af1bbe3a7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/50.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/50.png deleted file mode 100644 index 602cd7e850..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/50.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/500.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/500.png deleted file mode 100644 index fca69b73e5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/500.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/502.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/502.png deleted file mode 100644 index 6a1b11f702..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/502.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/503.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/503.png deleted file mode 100644 index 3c3a8c2d8a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/504.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/504.png deleted file mode 100644 index 1ec9a7897f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/504.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/505.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/505.png deleted file mode 100644 index 16dcdd81d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/505.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/506.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/506.png deleted file mode 100644 index b872afbf70..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/506.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/507.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/507.png deleted file mode 100644 index cb42917903..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/507.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/508.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/508.png deleted file mode 100644 index ce765645b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/508.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/509.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/509.png deleted file mode 100644 index b16a044b8a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/509.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/510.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/510.png deleted file mode 100644 index e4af4f64bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/510.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/512.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/512.png deleted file mode 100644 index 4aa9546ffd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/512.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/513.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/513.png deleted file mode 100644 index be26f336e5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/513.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/514.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/514.png deleted file mode 100644 index 3f4a6dc187..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/514.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/515.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/515.png deleted file mode 100644 index f8d84eb84d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/515.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/516.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/516.png deleted file mode 100644 index 51c5c3e7c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/516.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/517.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/517.png deleted file mode 100644 index ccf1ebd36c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/517.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/518.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/518.png deleted file mode 100644 index 4554568549..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/518.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/519.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/519.png deleted file mode 100644 index 79369a0b1e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/519.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/522.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/522.png deleted file mode 100644 index 53b29ba88a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/522.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/523.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/523.png deleted file mode 100644 index ccd302bf44..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/523.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/524.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/524.png deleted file mode 100644 index 4262671c7e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/524.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/525.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/525.png deleted file mode 100644 index a92020fc0a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/525.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/526.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/526.png deleted file mode 100644 index 8536415109..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/526.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/527.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/527.png deleted file mode 100644 index 64540af259..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/527.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/528.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/528.png deleted file mode 100644 index d83bc10775..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/528.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/539.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/539.png deleted file mode 100644 index d8e4c1b6e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/539.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/540.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/540.png deleted file mode 100644 index 717bbc2387..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/540.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/541.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/541.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/541.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/542.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/542.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/542.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/543.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/543.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/543.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/544.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/544.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/544.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/555.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/555.png deleted file mode 100644 index a9de3a7a25..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/555.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/59.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/59.png deleted file mode 100644 index 2dd75f1438..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/59.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/608.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/608.png deleted file mode 100644 index 994be23f3a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/608.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/670.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/670.png deleted file mode 100644 index 9531e2cc11..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/670.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/677.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/677.png deleted file mode 100644 index c01a4affb9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/677.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/682.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/682.png deleted file mode 100644 index dd6a336d62..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/682.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/683.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/683.png deleted file mode 100644 index 9942fc07b0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/683.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/685.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/685.png deleted file mode 100644 index 76a6d5ff96..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/685.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/686.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/686.png deleted file mode 100644 index bb4d79eb52..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/686.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/687.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/687.png deleted file mode 100644 index b2a1f222c4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/687.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/688.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/688.png deleted file mode 100644 index 880ccdb346..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/688.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/690.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/690.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/690.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/691.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/691.png deleted file mode 100644 index 6a7d5a5576..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/691.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/692.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/692.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/692.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/693.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/693.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/693.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/694.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/694.png deleted file mode 100644 index bcad7561e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/694.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/695.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/695.png deleted file mode 100644 index f0e397bda5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/695.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/696.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/696.png deleted file mode 100644 index f0e397bda5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/696.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/760.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/760.png deleted file mode 100644 index 467dd1a0c5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/760.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/775.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/775.png deleted file mode 100644 index e2c55c4283..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/775.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/776.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/776.png deleted file mode 100644 index 2c59a86719..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/776.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/777.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/777.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/777.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/778.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/778.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/778.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/779.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/779.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/779.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/781.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/781.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/781.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/782.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/782.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/782.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/783.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/783.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/783.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/784.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/784.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/784.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/786.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/786.png deleted file mode 100644 index f67fa70c77..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/786.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/787.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/787.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/787.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/789.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/789.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/789.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/790.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/790.png deleted file mode 100644 index f172cf3630..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/790.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/792.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/792.png deleted file mode 100644 index 93af94f6aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/792.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/793.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/793.png deleted file mode 100644 index 889f32418e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/793.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/794.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/794.png deleted file mode 100644 index f86c1a9d97..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/794.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/796.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/796.png deleted file mode 100644 index 5588501d93..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/796.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/801.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/801.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/801.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/802.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/802.png deleted file mode 100644 index 508ffe1fcb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/802.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/803.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/803.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/803.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/805.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/805.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/805.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/806.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/806.png deleted file mode 100644 index 7d909c9a10..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/806.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/807.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/807.png deleted file mode 100644 index be107fe501..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/807.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/809.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/809.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/809.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/817.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/817.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/817.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/819.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/819.png deleted file mode 100644 index 7c3bd61a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/819.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/821.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/821.png deleted file mode 100644 index ed4bebd8ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/821.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/822.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/822.png deleted file mode 100644 index 2ca695ef24..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/822.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/823.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/823.png deleted file mode 100644 index edb52f6543..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/823.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/827.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/827.png deleted file mode 100644 index d5c1242104..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/827.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/828.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/828.png deleted file mode 100644 index 9e1d934695..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/828.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/829.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/829.png deleted file mode 100644 index e21a90073a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/829.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/830.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/830.png deleted file mode 100644 index 1030adc609..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/830.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/831.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/831.png deleted file mode 100644 index 1030adc609..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/831.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/832.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/832.png deleted file mode 100644 index 1030adc609..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/832.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/833.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/833.png deleted file mode 100644 index 1030adc609..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/833.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/834.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/834.png deleted file mode 100644 index 1030adc609..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/834.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/835.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/835.png deleted file mode 100644 index 99b4885646..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/835.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/836.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/836.png deleted file mode 100644 index 99b4885646..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/836.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/837.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/837.png deleted file mode 100644 index 99b4885646..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/837.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/838.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/838.png deleted file mode 100644 index 99b4885646..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/838.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/839.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/839.png deleted file mode 100644 index 39c14a7046..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/839.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/84.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/84.png deleted file mode 100644 index 8a95eb5c3c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/84.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/840.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/840.png deleted file mode 100644 index 05cc7527a9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/840.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/844.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/844.png deleted file mode 100644 index 635a0ad94c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/844.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/85.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/85.png deleted file mode 100644 index d821de72cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/85.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/851.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/851.png deleted file mode 100644 index 05e90c9c12..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/851.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/853.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/853.png deleted file mode 100644 index 48a514394f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/853.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/86.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/86.png deleted file mode 100644 index 2ac87149a3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/86.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/863.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/863.png deleted file mode 100644 index f99fd0aa56..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/863.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/87.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/87.png deleted file mode 100644 index 3697567295..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/87.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/88.png deleted file mode 100644 index 19390de8b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/89.png deleted file mode 100644 index 27a686c07c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/90.png deleted file mode 100644 index bf1be7d4d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/91.png deleted file mode 100644 index d83b5ec9fd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/1.png deleted file mode 100644 index 4b47537734..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/111.png deleted file mode 100644 index 6efa009af3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/122.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/122.png deleted file mode 100644 index 9134e14f58..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/122.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/123.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/123.png deleted file mode 100644 index f8176041e1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/123.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/126.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/126.png deleted file mode 100644 index 9bb51d9677..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/126.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/128.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/128.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/128.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/130.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/130.png deleted file mode 100644 index b455eb3089..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/130.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/133.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/133.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/133.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/135.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/135.png deleted file mode 100644 index 1d4c9ab44a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/135.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/136.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/136.png deleted file mode 100644 index 0cb90f39ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/136.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/137.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/137.png deleted file mode 100644 index 71a4e3fc3a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/137.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/138.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/138.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/138.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/146.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/146.png deleted file mode 100644 index 5919b8cb85..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/146.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/147.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/147.png deleted file mode 100644 index b340989903..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/147.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/150.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/150.png deleted file mode 100644 index d072937efa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/150.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/16.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/16.png deleted file mode 100644 index 852734a383..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/162.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/162.png deleted file mode 100644 index 664f9e9268..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/162.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/165.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/165.png deleted file mode 100644 index b2de15e8f2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/165.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/166.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/166.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/166.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/17.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/17.png deleted file mode 100644 index 8afd6a0477..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/170.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/170.png deleted file mode 100644 index 9bb51d9677..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/170.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/172.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/172.png deleted file mode 100644 index 37429da60a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/172.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/174.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/174.png deleted file mode 100644 index 60fb5cffa5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/174.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/177.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/177.png deleted file mode 100644 index 32f669287f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/177.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/178.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/178.png deleted file mode 100644 index 65359f30ff..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/178.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/182.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/182.png deleted file mode 100644 index 00570cea2d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/182.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/193.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/193.png deleted file mode 100644 index 0d5a629ab1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/193.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/195.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/195.png deleted file mode 100644 index 7be39e0dfb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/195.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/196.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/196.png deleted file mode 100644 index a7d53e0400..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/196.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/199.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/199.png deleted file mode 100644 index 6977c915dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/199.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/200.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/200.png deleted file mode 100644 index 319c13db8f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/200.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/209.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/209.png deleted file mode 100644 index e68b9cb76e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/209.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/219.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/219.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/219.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/220.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/220.png deleted file mode 100644 index 71ed3984fc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/220.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/221.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/221.png deleted file mode 100644 index f18de5cae2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/221.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/227.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/227.png deleted file mode 100644 index e79946e10c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/227.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/228.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/228.png deleted file mode 100644 index b2de15e8f2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/228.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/229.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/229.png deleted file mode 100644 index 3b65b8a4ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/229.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/230.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/230.png deleted file mode 100644 index e067ff66c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/230.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/238.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/238.png deleted file mode 100644 index e078dd9c81..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/238.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/239.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/239.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/239.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/240.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/240.png deleted file mode 100644 index f8157535d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/240.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/245.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/245.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/245.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/246.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/246.png deleted file mode 100644 index 30490fe5d0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/246.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/250.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/250.png deleted file mode 100644 index cb22b1def6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/250.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/259.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/259.png deleted file mode 100644 index 957346152b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/259.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/261.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/261.png deleted file mode 100644 index f8343c1fc1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/261.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/262.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/262.png deleted file mode 100644 index 9642ad7f3f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/262.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/27.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/27.png deleted file mode 100644 index 07767acd06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/320.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/320.png deleted file mode 100644 index c81af0e991..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/320.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/33.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/33.png deleted file mode 100644 index e33af2cbbd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/33.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/334.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/334.png deleted file mode 100644 index 9e1cd6ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/334.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/335.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/335.png deleted file mode 100644 index 0b33c41798..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/335.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/336.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/336.png deleted file mode 100644 index 00570cea2d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/336.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/34.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/34.png deleted file mode 100644 index 2702b982d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/34.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/358.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/358.png deleted file mode 100644 index d32b756cea..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/358.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/359.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/359.png deleted file mode 100644 index 7039e37534..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/359.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/36.png deleted file mode 100644 index 5a444291eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/374.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/374.png deleted file mode 100644 index 35dbbb978d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/374.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/376.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/376.png deleted file mode 100644 index d0db2d8bfe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/376.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/378.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/378.png deleted file mode 100644 index a523383535..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/378.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/39.png deleted file mode 100644 index 7da93364be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/393.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/393.png deleted file mode 100644 index 09bb759764..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/393.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/394.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/394.png deleted file mode 100644 index b88bbb5b59..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/394.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/396.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/396.png deleted file mode 100644 index 40de74f61f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/396.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/400.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/400.png deleted file mode 100644 index 5974abaf81..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/400.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/407.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/407.png deleted file mode 100644 index be5cdf80c0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/407.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/408.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/408.png deleted file mode 100644 index 2702b982d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/408.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/409.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/409.png deleted file mode 100644 index 51d55dfed6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/409.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/41.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/41.png deleted file mode 100644 index af5db83a9b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/41.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/411.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/411.png deleted file mode 100644 index 33b3c4369f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/411.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/412.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/412.png deleted file mode 100644 index 4d83e85072..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/412.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/413.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/413.png deleted file mode 100644 index f3a4dcfbbf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/413.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/420.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/420.png deleted file mode 100644 index adf68d62e5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/420.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/43.png deleted file mode 100644 index 80a44acd4a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/44.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/44.png deleted file mode 100644 index f3a4dcfbbf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/44.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/45.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/45.png deleted file mode 100644 index af5db83a9b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/45.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/456.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/456.png deleted file mode 100644 index 0c363abd04..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/456.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/46.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/46.png deleted file mode 100644 index 050f8d8f83..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/46.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/472.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/472.png deleted file mode 100644 index 25e6dec8b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/472.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/474.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/474.png deleted file mode 100644 index b22b047ef2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/474.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/485.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/485.png deleted file mode 100644 index 29b526d0ca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/485.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/488.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/488.png deleted file mode 100644 index 2914f12eeb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/488.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/49.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/49.png deleted file mode 100644 index 24cdedd809..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/49.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/51.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/51.png deleted file mode 100644 index f6769baab3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/51.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/53.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/53.png deleted file mode 100644 index 4e44c03a32..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/54.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/54.png deleted file mode 100644 index 3910ddd8a7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/54.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/55.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/55.png deleted file mode 100644 index 873e5cf6e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/55.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/552.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/552.png deleted file mode 100644 index cc6a9f542d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/552.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/553.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/553.png deleted file mode 100644 index f6769baab3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/553.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/558.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/558.png deleted file mode 100644 index 2702b982d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/558.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/561.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/561.png deleted file mode 100644 index abfa82d492..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/561.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/566.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/566.png deleted file mode 100644 index be5cdf80c0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/566.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/572.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/572.png deleted file mode 100644 index b2262cfce8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/572.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/583.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/583.png deleted file mode 100644 index 9f80d1bb97..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/583.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/594.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/594.png deleted file mode 100644 index 4d25f7fe32..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/594.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/595.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/595.png deleted file mode 100644 index d1e41fc054..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/595.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/597.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/597.png deleted file mode 100644 index 0c43652c69..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/597.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/598.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/598.png deleted file mode 100644 index 7ae1e13af7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/598.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/599.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/599.png deleted file mode 100644 index 130ee46473..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/599.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/600.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/600.png deleted file mode 100644 index b14c3f4389..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/600.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/601.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/601.png deleted file mode 100644 index 04f1b65960..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/601.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/602.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/602.png deleted file mode 100644 index f3a4dcfbbf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/602.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/603.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/603.png deleted file mode 100644 index 4853095529..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/603.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/604.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/604.png deleted file mode 100644 index 36b2370028..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/604.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/605.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/605.png deleted file mode 100644 index 39df10e2ca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/605.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/606.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/606.png deleted file mode 100644 index 9194648da7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/606.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/610.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/610.png deleted file mode 100644 index 17552bccad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/610.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/617.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/617.png deleted file mode 100644 index 762f6cfbc3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/617.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/618.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/618.png deleted file mode 100644 index f753cbf60a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/618.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/625.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/625.png deleted file mode 100644 index add769c4b0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/625.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/626.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/626.png deleted file mode 100644 index 4853095529..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/626.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/64.png deleted file mode 100644 index 20c57f597a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/660.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/660.png deleted file mode 100644 index 2702b982d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/660.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/661.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/661.png deleted file mode 100644 index f6769baab3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/661.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/662.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/662.png deleted file mode 100644 index f3a4dcfbbf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/662.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/663.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/663.png deleted file mode 100644 index 6a53dda5d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/663.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/664.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/664.png deleted file mode 100644 index 322683829f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/664.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/665.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/665.png deleted file mode 100644 index 80786510c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/665.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/666.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/666.png deleted file mode 100644 index e15ed359fb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/666.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/667.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/667.png deleted file mode 100644 index bce5bc90ce..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/667.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/668.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/668.png deleted file mode 100644 index 0bc816f925..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/668.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/669.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/669.png deleted file mode 100644 index 704c985d69..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/669.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/671.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/671.png deleted file mode 100644 index 9b083b6f9d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/671.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/689.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/689.png deleted file mode 100644 index 24066b1a3f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/689.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/698.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/698.png deleted file mode 100644 index f1a974e22e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/698.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/699.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/699.png deleted file mode 100644 index 42eac72117..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/699.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/7.png deleted file mode 100644 index 69dd22ec7b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/700.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/700.png deleted file mode 100644 index 76b23eb27a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/700.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/701.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/701.png deleted file mode 100644 index 97b581f5bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/701.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/702.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/702.png deleted file mode 100644 index b556c65f73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/702.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/703.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/703.png deleted file mode 100644 index e516145c5f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/703.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/704.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/704.png deleted file mode 100644 index 656a7718d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/704.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/705.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/705.png deleted file mode 100644 index 4d83e85072..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/705.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/706.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/706.png deleted file mode 100644 index bd6cbc6f81..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/706.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/707.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/707.png deleted file mode 100644 index e6f79ba95c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/707.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/708.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/708.png deleted file mode 100644 index 6927f8c14b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/708.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/709.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/709.png deleted file mode 100644 index 86287a80ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/709.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/71.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/71.png deleted file mode 100644 index f71c1c6c32..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/71.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/710.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/710.png deleted file mode 100644 index 4acf03cb0d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/710.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/711.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/711.png deleted file mode 100644 index 8ad7ffcca9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/711.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/712.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/712.png deleted file mode 100644 index f6e69a8d73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/712.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/713.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/713.png deleted file mode 100644 index 5bb1d349cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/713.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/714.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/714.png deleted file mode 100644 index 091e523d47..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/714.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/715.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/715.png deleted file mode 100644 index c6234992d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/715.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/716.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/716.png deleted file mode 100644 index cf9183395d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/716.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/717.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/717.png deleted file mode 100644 index a9d9821f81..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/717.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/718.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/718.png deleted file mode 100644 index ff1d1b6ac9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/718.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/719.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/719.png deleted file mode 100644 index db4dee2db6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/719.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/720.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/720.png deleted file mode 100644 index 32823952be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/720.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/721.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/721.png deleted file mode 100644 index b45e8b01f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/721.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/722.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/722.png deleted file mode 100644 index f25800977a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/722.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/723.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/723.png deleted file mode 100644 index 933e013738..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/723.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/724.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/724.png deleted file mode 100644 index 371b0ba305..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/724.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/725.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/725.png deleted file mode 100644 index 3c782beb4d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/725.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/726.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/726.png deleted file mode 100644 index bf3d52fd89..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/726.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/727.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/727.png deleted file mode 100644 index f38d330d3c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/727.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/729.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/729.png deleted file mode 100644 index ad9a20cdd9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/729.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/730.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/730.png deleted file mode 100644 index f84a5974b0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/730.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/731.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/731.png deleted file mode 100644 index 0eb35cc7c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/731.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/732.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/732.png deleted file mode 100644 index 9bb51d9677..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/732.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/733.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/733.png deleted file mode 100644 index 8f9972e3f6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/733.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/735.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/735.png deleted file mode 100644 index 607375c535..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/735.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/736.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/736.png deleted file mode 100644 index b494d73553..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/736.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/737.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/737.png deleted file mode 100644 index 4e19985c38..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/737.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/74.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/74.png deleted file mode 100644 index 4164debcd7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/74.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/75.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/75.png deleted file mode 100644 index 0795dfc209..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/75.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/762.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/762.png deleted file mode 100644 index 75242b140e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/762.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/763.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/763.png deleted file mode 100644 index 95fd79f0b2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/763.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/765.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/765.png deleted file mode 100644 index f6bfac776c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/765.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/766.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/766.png deleted file mode 100644 index 39454d6ddc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/766.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/767.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/767.png deleted file mode 100644 index 124028eadc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/767.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/769.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/769.png deleted file mode 100644 index 2f59bffedc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/769.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/77.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/77.png deleted file mode 100644 index 4d83e85072..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/77.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/78.png deleted file mode 100644 index 04347fa3f3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/79.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/79.png deleted file mode 100644 index 62b0e2b47b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/8.png deleted file mode 100644 index 30d9e4ca3a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/841.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/841.png deleted file mode 100644 index 82459af10a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/841.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/842.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/842.png deleted file mode 100644 index 55487fc57a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/842.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/843.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/843.png deleted file mode 100644 index fb6b60fbeb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/843.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/845.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/845.png deleted file mode 100644 index e6ee70d721..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/845.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/846.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/846.png deleted file mode 100644 index adf68d62e5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/846.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/849.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/849.png deleted file mode 100644 index 86d50c8db4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/849.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/850.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/850.png deleted file mode 100644 index 7ab1237b22..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/850.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/852.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/852.png deleted file mode 100644 index 57a41be2e7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/852.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/92.png deleted file mode 100644 index 9bb51d9677..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10022.png deleted file mode 100644 index de9e451492..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10024.png deleted file mode 100644 index d10ebc6842..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10082.png deleted file mode 100644 index 87fa19ebfc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10083.png deleted file mode 100644 index aadf376b40..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10084.png deleted file mode 100644 index aadf376b40..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10085.png deleted file mode 100644 index 2d14055649..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10096.png deleted file mode 100644 index 20ef57baa0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10097.png deleted file mode 100644 index 0683fb108c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10099.png deleted file mode 100644 index 00b596aee0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10101.png deleted file mode 100644 index d224540783..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10102.png deleted file mode 100644 index f55ce69a1b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10103.png deleted file mode 100644 index 18b5a0a49f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10104.png deleted file mode 100644 index bd217e2481..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10105.png deleted file mode 100644 index 414cac9693..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10106.png deleted file mode 100644 index 273a606210..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10109.png deleted file mode 100644 index f5887ff8ba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10110.png deleted file mode 100644 index c7e77c6ef3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10111.png deleted file mode 100644 index 528ab2274f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10112.png deleted file mode 100644 index f994b3ba9e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/88.png deleted file mode 100644 index ea8833e27d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/89.png deleted file mode 100644 index a60fcaf3da..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/90.png deleted file mode 100644 index 5a8f756196..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/92.png deleted file mode 100644 index 23b7d60f5d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/96.png deleted file mode 100644 index aecff176b2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedbolt/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10002.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10002.png deleted file mode 100644 index 93f524f1eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10002.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10003.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10003.png deleted file mode 100644 index 93f524f1eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10003.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10004.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10004.png deleted file mode 100644 index c30b493e75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10004.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10006.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10006.png deleted file mode 100644 index 41efc283c5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10006.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10007.png deleted file mode 100644 index 41efc283c5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10008.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10008.png deleted file mode 100644 index 02401c68a1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10008.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10010.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10010.png deleted file mode 100644 index e6d86ae1c4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10010.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10011.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10011.png deleted file mode 100644 index e6d86ae1c4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10011.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10012.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10012.png deleted file mode 100644 index a59bf2fa94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10012.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10013.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10013.png deleted file mode 100644 index 6c349b063b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10013.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10015.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10015.png deleted file mode 100644 index 9d55dd9fbb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10015.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10019.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10019.png deleted file mode 100644 index 3a945cee7d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10019.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10020.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10020.png deleted file mode 100644 index 318db51328..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10020.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10021.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10021.png deleted file mode 100644 index 318db51328..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10021.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10025.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10025.png deleted file mode 100644 index ec8d07b342..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10025.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10026.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10026.png deleted file mode 100644 index cd0836096e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10026.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10027.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10027.png deleted file mode 100644 index 8febac8b05..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10027.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10028.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10028.png deleted file mode 100644 index 201d0e3b1f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10028.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10029.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10029.png deleted file mode 100644 index ddf4685ce5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10029.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10030.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10030.png deleted file mode 100644 index 8491b0f922..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10030.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10031.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10031.png deleted file mode 100644 index 6c7be7109e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10031.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10032.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10032.png deleted file mode 100644 index 6c7be7109e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10032.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10033.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10033.png deleted file mode 100644 index 83dfbdbae3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10033.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10034.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10034.png deleted file mode 100644 index 83dfbdbae3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10034.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10036.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10036.png deleted file mode 100644 index e5b68725d3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10036.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10037.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10037.png deleted file mode 100644 index e4c16eaa18..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10037.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10038.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10038.png deleted file mode 100644 index 5104d2cf0f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10038.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10039.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10039.png deleted file mode 100644 index c96c315458..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10039.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10040.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10040.png deleted file mode 100644 index 98cef95be1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10040.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10041.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10041.png deleted file mode 100644 index 3652dc66c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10041.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10042.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10042.png deleted file mode 100644 index 7d9732543b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10042.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10046.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10046.png deleted file mode 100644 index 96bddce245..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10046.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10047.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10047.png deleted file mode 100644 index de46dbe137..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10047.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10048.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10048.png deleted file mode 100644 index 7d3c2f1e14..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10048.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10049.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10049.png deleted file mode 100644 index 6f00f49279..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10049.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10050.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10050.png deleted file mode 100644 index 5c84933d02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10050.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10051.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10051.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10051.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10056.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10056.png deleted file mode 100644 index 53ce7a9524..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10056.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10058.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10058.png deleted file mode 100644 index 31e52a0af9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10058.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10059.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10059.png deleted file mode 100644 index 9913e83de8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10059.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10060.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10060.png deleted file mode 100644 index 59fcdceb11..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10060.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10061.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10061.png deleted file mode 100644 index 305776562d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10061.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10062.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10062.png deleted file mode 100644 index f2253b58d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10062.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10064.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10064.png deleted file mode 100644 index 081b58e8f2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10064.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10065.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10065.png deleted file mode 100644 index 0af1bba7d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10065.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10069.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10069.png deleted file mode 100644 index a5f6b9019e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10069.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10075.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10075.png deleted file mode 100644 index 08e159d5fb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10075.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10077.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10077.png deleted file mode 100644 index 597ff0ce0c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10077.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10079.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10079.png deleted file mode 100644 index 53ce7a9524..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10079.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10080.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10080.png deleted file mode 100644 index 8097818300..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10080.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10081.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10081.png deleted file mode 100644 index 61729e194d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10081.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10086.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10086.png deleted file mode 100644 index 2836305759..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10086.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10087.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10087.png deleted file mode 100644 index df9a4099c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10087.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10088.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10088.png deleted file mode 100644 index 1981f56362..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10088.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10089.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10089.png deleted file mode 100644 index f5d7711e87..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10089.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10090.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10090.png deleted file mode 100644 index 3097ef070a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10090.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10091.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10091.png deleted file mode 100644 index feb3426138..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10091.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10092.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10092.png deleted file mode 100644 index 4b4df61a85..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10092.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10094.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10094.png deleted file mode 100644 index a91865c954..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10094.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10095.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10095.png deleted file mode 100644 index 868e3a699f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10095.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10107.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10107.png deleted file mode 100644 index 83dfbdbae3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10107.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10116.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10116.png deleted file mode 100644 index 59f0126e6a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10116.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10117.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10117.png deleted file mode 100644 index 2799c50e03..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/10117.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/103.png deleted file mode 100644 index 261a973d94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11004.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11004.png deleted file mode 100644 index fa36dbc28a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11004.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11010.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11010.png deleted file mode 100644 index 98696de7dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11010.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11012.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11012.png deleted file mode 100644 index 5a1e04f51d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11012.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11014.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11014.png deleted file mode 100644 index 05f65480c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11014.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11015.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11015.png deleted file mode 100644 index 2646323864..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11015.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11016.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11016.png deleted file mode 100644 index 9422a8fd68..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11016.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11017.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11017.png deleted file mode 100644 index 40ac28afe7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11017.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11018.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11018.png deleted file mode 100644 index 32de01db99..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11018.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11036.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11036.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11036.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11042.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11042.png deleted file mode 100644 index 5c967e8c50..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11042.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11044.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11044.png deleted file mode 100644 index 3669a9ab9a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11044.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11045.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11045.png deleted file mode 100644 index 4a07e90142..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11045.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11046.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11046.png deleted file mode 100644 index 4a07e90142..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11046.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11100.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11100.png deleted file mode 100644 index 37af7294b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11100.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11102.png deleted file mode 100644 index 37af7294b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11103.png deleted file mode 100644 index 37af7294b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11104.png deleted file mode 100644 index 37af7294b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11105.png deleted file mode 100644 index 37af7294b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11106.png deleted file mode 100644 index 37af7294b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11114.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11114.png deleted file mode 100644 index 19744ae17c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11114.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11115.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11115.png deleted file mode 100644 index 5a40bdf43d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11115.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11124.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11124.png deleted file mode 100644 index 1ddb660ef1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11124.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11300.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11300.png deleted file mode 100644 index e0749aee92..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11300.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11301.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11301.png deleted file mode 100644 index 9b2e5a41f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11301.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11302.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11302.png deleted file mode 100644 index 75bda0c4e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11302.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11306.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11306.png deleted file mode 100644 index 1c965b9f06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11306.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11307.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11307.png deleted file mode 100644 index 191470d071..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11307.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11308.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11308.png deleted file mode 100644 index 7ef741f828..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11308.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11309.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11309.png deleted file mode 100644 index fd20469857..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11309.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11310.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11310.png deleted file mode 100644 index fed4e06d72..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11310.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11311.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11311.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11311.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11316.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11316.png deleted file mode 100644 index 6d086e6b21..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11316.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11401.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11401.png deleted file mode 100644 index 57d1e8484a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11401.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11402.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11402.png deleted file mode 100644 index a5ea2a1137..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11402.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11403.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11403.png deleted file mode 100644 index c0ff808b4d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11403.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11404.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11404.png deleted file mode 100644 index 1c671723d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11404.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11405.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11405.png deleted file mode 100644 index 2b499c4b89..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11405.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11406.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11406.png deleted file mode 100644 index abfcd3ff16..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11406.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11407.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11407.png deleted file mode 100644 index 93c8e8614f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11407.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11408.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11408.png deleted file mode 100644 index 28327e15ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11408.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11409.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11409.png deleted file mode 100644 index 6eb58d85bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11409.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11410.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11410.png deleted file mode 100644 index 3ae9c29a36..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11410.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11411.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11411.png deleted file mode 100644 index 9c458c8f52..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11411.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11412.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11412.png deleted file mode 100644 index faf1e72787..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11412.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11413.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11413.png deleted file mode 100644 index 2204e41a1a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11413.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11414.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11414.png deleted file mode 100644 index d48c0f0837..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11414.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11415.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11415.png deleted file mode 100644 index 1d2857b6d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11415.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11416.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11416.png deleted file mode 100644 index 24b1f00218..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11416.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11417.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11417.png deleted file mode 100644 index 2d3bc0f7da..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11417.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11418.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11418.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11418.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11419.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11419.png deleted file mode 100644 index ab28a54d75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11419.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11420.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11420.png deleted file mode 100644 index d050222dbe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11420.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11421.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11421.png deleted file mode 100644 index 831f0ce17c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11421.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11422.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11422.png deleted file mode 100644 index 119aa02595..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11422.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11423.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11423.png deleted file mode 100644 index a3a63cb7b0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11423.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11424.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11424.png deleted file mode 100644 index 2feaae26d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11424.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11425.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11425.png deleted file mode 100644 index b5621cd09f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11425.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11426.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11426.png deleted file mode 100644 index dd08e1d778..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11426.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11427.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11427.png deleted file mode 100644 index 93f524f1eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11427.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11428.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11428.png deleted file mode 100644 index 71bc0e28a4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11428.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11429.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11429.png deleted file mode 100644 index 27afa40ebc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11429.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11430.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11430.png deleted file mode 100644 index a0502cb238..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11430.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11431.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11431.png deleted file mode 100644 index a5ea2a1137..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11431.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11432.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11432.png deleted file mode 100644 index 1c671723d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11432.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11433.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11433.png deleted file mode 100644 index abfcd3ff16..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11433.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11434.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11434.png deleted file mode 100644 index 28327e15ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11434.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11435.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11435.png deleted file mode 100644 index 3ae9c29a36..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11435.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11436.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11436.png deleted file mode 100644 index faf1e72787..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11436.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11437.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11437.png deleted file mode 100644 index d48c0f0837..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11437.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11438.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11438.png deleted file mode 100644 index 24b1f00218..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11438.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11439.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11439.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11439.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11440.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11440.png deleted file mode 100644 index d050222dbe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11440.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11441.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11441.png deleted file mode 100644 index 119aa02595..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11441.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11442.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11442.png deleted file mode 100644 index 2feaae26d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11442.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11443.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11443.png deleted file mode 100644 index dd08e1d778..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11443.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11444.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11444.png deleted file mode 100644 index 71bc0e28a4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11444.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11445.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11445.png deleted file mode 100644 index a0502cb238..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11445.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11461.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11461.png deleted file mode 100644 index 7c2834b08f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11461.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11462.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11462.png deleted file mode 100644 index 925b5e0a67..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11462.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11463.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11463.png deleted file mode 100644 index 3495f6ec59..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11463.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11469.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11469.png deleted file mode 100644 index 39b8fe4312..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11469.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11470.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11470.png deleted file mode 100644 index a782be9fd2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11470.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11471.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11471.png deleted file mode 100644 index aff4f1b36d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11471.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11500.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11500.png deleted file mode 100644 index 06a79ed1bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/11500.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20005.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20005.png deleted file mode 100644 index b51e0c40d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20006.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20006.png deleted file mode 100644 index 8eb37b93d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20006.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20007.png deleted file mode 100644 index 503d169dd1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/20007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29904.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29904.png deleted file mode 100644 index 36f851db0d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29904.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29905.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29905.png deleted file mode 100644 index 92ab303e02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29905.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29914.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29914.png deleted file mode 100644 index 6769168202..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29914.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29915.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29915.png deleted file mode 100644 index 5a2b7252b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/29915.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/37.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/37.png deleted file mode 100644 index 4e65caebe2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/37.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/38.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/38.png deleted file mode 100644 index 713131c2e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/38.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/41.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/41.png deleted file mode 100644 index 56ee2ed108..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/41.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/42.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/42.png deleted file mode 100644 index ca7e297350..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/42.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/44.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/44.png deleted file mode 100644 index 4423eea80e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/44.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/48.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/48.png deleted file mode 100644 index 3d28f45a00..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/48.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/50.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/50.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/50.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/52.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/52.png deleted file mode 100644 index ce731706e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/52.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/56.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/56.png deleted file mode 100644 index 388e806e40..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/56.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/58.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/58.png deleted file mode 100644 index 615dabe4cd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/58.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/61.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/61.png deleted file mode 100644 index 13b1411dc5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/61.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/62.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/62.png deleted file mode 100644 index 0df3b96124..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/62.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/63.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/63.png deleted file mode 100644 index 44e9fa5568..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/63.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/66.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/66.png deleted file mode 100644 index 3671ab3292..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/66.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/67.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/67.png deleted file mode 100644 index 3671ab3292..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/67.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/68.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/68.png deleted file mode 100644 index 3671ab3292..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/68.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/72.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/72.png deleted file mode 100644 index 186637a90f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/72.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/74.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/74.png deleted file mode 100644 index 186637a90f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/74.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/75.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/75.png deleted file mode 100644 index 186637a90f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/75.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/81.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/81.png deleted file mode 100644 index c6117ef75d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/81.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/86.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/86.png deleted file mode 100644 index c6117ef75d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/86.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/98.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/98.png deleted file mode 100644 index d0c72d48e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsule/98.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10022.png deleted file mode 100644 index 4f5c5e9613..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10023.png deleted file mode 100644 index 58ddfcd4a9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10024.png deleted file mode 100644 index 06959150cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10053.png deleted file mode 100644 index eef8e5cf39..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10082.png deleted file mode 100644 index 3e04fe40b3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10083.png deleted file mode 100644 index 1724bcd60c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10084.png deleted file mode 100644 index 1724bcd60c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10085.png deleted file mode 100644 index 533460a843..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10096.png deleted file mode 100644 index 8852dfae50..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10097.png deleted file mode 100644 index 4b13790cff..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10098.png deleted file mode 100644 index 8a094c4bf5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10099.png deleted file mode 100644 index e4de38350d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10101.png deleted file mode 100644 index 9c3d53a716..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10102.png deleted file mode 100644 index 5e5e623860..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10103.png deleted file mode 100644 index 01ecd22a62..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10104.png deleted file mode 100644 index de42843d86..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10105.png deleted file mode 100644 index 3516d77a8f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10106.png deleted file mode 100644 index c329f10f30..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10109.png deleted file mode 100644 index 3a5e18b15c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10110.png deleted file mode 100644 index 9e962cc9ef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10111.png deleted file mode 100644 index bea5cf96e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10112.png deleted file mode 100644 index 95e7ec7123..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11124.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11124.png deleted file mode 100644 index 4e5a404c26..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11124.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11312.png deleted file mode 100644 index 3073484e0b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11314.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11314.png deleted file mode 100644 index f71b7554e1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11314.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11465.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11465.png deleted file mode 100644 index 5fb5f9684c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11465.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11498.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11498.png deleted file mode 100644 index 88a127b822..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11498.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11503.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11503.png deleted file mode 100644 index aec8e4b604..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/20001.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/20001.png deleted file mode 100644 index fd4fafa3e0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/20001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/32237.png deleted file mode 100644 index 8718144caf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/39.png deleted file mode 100644 index bd8b9b36b1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/40.png deleted file mode 100644 index a1e05ebe95..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/43.png deleted file mode 100644 index e79946e10c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/59.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/59.png deleted file mode 100644 index 7434a6f805..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/59.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/64.png deleted file mode 100644 index 63eaeb810c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/78.png deleted file mode 100644 index 63eaeb810c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/88.png deleted file mode 100644 index 852734a383..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/90.png deleted file mode 100644 index d6378c0b64..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/92.png deleted file mode 100644 index 89f2c7a4ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/96.png deleted file mode 100644 index 3e69b9afa4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcapsuleMolten/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10002.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10002.png deleted file mode 100644 index b91e5f1783..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10002.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10003.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10003.png deleted file mode 100644 index b91e5f1783..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10003.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10004.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10004.png deleted file mode 100644 index 8e4726e5d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10004.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10006.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10006.png deleted file mode 100644 index 4307582176..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10006.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10007.png deleted file mode 100644 index 4307582176..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10008.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10008.png deleted file mode 100644 index 9cc23549c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10008.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10010.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10010.png deleted file mode 100644 index 69a02a1e19..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10010.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10011.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10011.png deleted file mode 100644 index 69a02a1e19..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10011.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10012.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10012.png deleted file mode 100644 index 8ac77ed145..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10012.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10013.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10013.png deleted file mode 100644 index 1470dfae02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10013.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10015.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10015.png deleted file mode 100644 index 782f2ef442..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10015.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10019.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10019.png deleted file mode 100644 index eaeed5f053..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10019.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10020.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10020.png deleted file mode 100644 index ad26d53839..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10020.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10021.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10021.png deleted file mode 100644 index c32f2f0293..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10021.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10025.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10025.png deleted file mode 100644 index f518967f1a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10025.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10026.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10026.png deleted file mode 100644 index a6c66ce5e0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10026.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10027.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10027.png deleted file mode 100644 index dc303d987c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10027.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10028.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10028.png deleted file mode 100644 index c16f4278ec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10028.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10029.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10029.png deleted file mode 100644 index 5eb0672d22..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10029.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10030.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10030.png deleted file mode 100644 index c054bb017a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10030.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10031.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10031.png deleted file mode 100644 index 0caa05a791..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10031.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10032.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10032.png deleted file mode 100644 index 0caa05a791..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10032.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10033.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10033.png deleted file mode 100644 index fb34bbace9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10033.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10034.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10034.png deleted file mode 100644 index fb34bbace9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10034.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10036.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10036.png deleted file mode 100644 index e4e578f186..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10036.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10037.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10037.png deleted file mode 100644 index ac09fb204b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10037.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10038.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10038.png deleted file mode 100644 index f387ba39ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10038.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10039.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10039.png deleted file mode 100644 index 4d2153a661..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10039.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10040.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10040.png deleted file mode 100644 index 5ff11773fc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10040.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10041.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10041.png deleted file mode 100644 index be755ddabd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10041.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10042.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10042.png deleted file mode 100644 index 68161f32c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10042.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10046.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10046.png deleted file mode 100644 index f12f1dd432..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10046.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10047.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10047.png deleted file mode 100644 index 0f469c52ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10047.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10048.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10048.png deleted file mode 100644 index 02c1f0e9bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10048.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10049.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10049.png deleted file mode 100644 index 823f8b90ef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10049.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10050.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10050.png deleted file mode 100644 index 9e6a00337c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10050.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10051.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10051.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10051.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10056.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10056.png deleted file mode 100644 index de8030c362..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10056.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10058.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10058.png deleted file mode 100644 index 136a56b8aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10058.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10059.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10059.png deleted file mode 100644 index 57e39d653d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10059.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10060.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10060.png deleted file mode 100644 index 051b044a01..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10060.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10061.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10061.png deleted file mode 100644 index 4858b7404c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10061.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10062.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10062.png deleted file mode 100644 index a0e54cd72f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10062.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10064.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10064.png deleted file mode 100644 index 6a401eb3ef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10064.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10065.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10065.png deleted file mode 100644 index 1f4eb486a7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10065.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10069.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10069.png deleted file mode 100644 index f4b7d9da9d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10069.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10075.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10075.png deleted file mode 100644 index ea3f7daf9e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10075.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10077.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10077.png deleted file mode 100644 index c510f88393..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10077.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10079.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10079.png deleted file mode 100644 index de8030c362..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10079.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10080.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10080.png deleted file mode 100644 index 9ce14c1958..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10080.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10081.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10081.png deleted file mode 100644 index 297a4e0da7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10081.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10086.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10086.png deleted file mode 100644 index 74d206d69a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10086.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10087.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10087.png deleted file mode 100644 index 5f1493c498..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10087.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10088.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10088.png deleted file mode 100644 index 4beab3d186..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10088.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10089.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10089.png deleted file mode 100644 index a0e75ba2fe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10089.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10090.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10090.png deleted file mode 100644 index 50cc6b55aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10090.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10091.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10091.png deleted file mode 100644 index a22f420b37..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10091.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10092.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10092.png deleted file mode 100644 index 9d15f31890..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10092.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10094.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10094.png deleted file mode 100644 index 4a614c66db..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10094.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10095.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10095.png deleted file mode 100644 index 3b3142cf9d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10095.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10107.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10107.png deleted file mode 100644 index fb34bbace9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10107.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10116.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10116.png deleted file mode 100644 index d81b669484..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10116.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10117.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10117.png deleted file mode 100644 index 48f5b830a2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/10117.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/103.png deleted file mode 100644 index d201022f6f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11004.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11004.png deleted file mode 100644 index 2f8928f807..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11004.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11010.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11010.png deleted file mode 100644 index 6bcb2b9682..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11010.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11012.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11012.png deleted file mode 100644 index 7107552148..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11012.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11014.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11014.png deleted file mode 100644 index 9ae5e1a6a3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11014.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11015.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11015.png deleted file mode 100644 index 6b59242153..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11015.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11016.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11016.png deleted file mode 100644 index 7a89395235..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11016.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11017.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11017.png deleted file mode 100644 index 286173ca0a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11017.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11018.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11018.png deleted file mode 100644 index 16b8169a94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11018.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11036.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11036.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11036.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11042.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11042.png deleted file mode 100644 index 2211826518..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11042.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11044.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11044.png deleted file mode 100644 index 66615c4075..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11044.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11045.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11045.png deleted file mode 100644 index 434adefa5b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11045.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11046.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11046.png deleted file mode 100644 index 434adefa5b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11046.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11100.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11100.png deleted file mode 100644 index e57ce93c6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11100.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11102.png deleted file mode 100644 index e57ce93c6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11103.png deleted file mode 100644 index e57ce93c6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11104.png deleted file mode 100644 index e57ce93c6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11105.png deleted file mode 100644 index e57ce93c6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11106.png deleted file mode 100644 index e57ce93c6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11114.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11114.png deleted file mode 100644 index da725b55bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11114.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11115.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11115.png deleted file mode 100644 index aa6d1b4341..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11115.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11124.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11124.png deleted file mode 100644 index 068ae28da6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11124.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11300.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11300.png deleted file mode 100644 index 278a693ba8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11300.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11301.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11301.png deleted file mode 100644 index 89a093fd35..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11301.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11302.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11302.png deleted file mode 100644 index 5997b8490a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11302.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11306.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11306.png deleted file mode 100644 index b17d8062aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11306.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11307.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11307.png deleted file mode 100644 index 0ea88a930f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11307.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11308.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11308.png deleted file mode 100644 index 1d2dc2373a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11308.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11309.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11309.png deleted file mode 100644 index f49495ad34..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11309.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11310.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11310.png deleted file mode 100644 index c704a2af13..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11310.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11311.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11311.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11311.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11316.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11316.png deleted file mode 100644 index e4fc345655..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11316.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11401.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11401.png deleted file mode 100644 index d769980f5b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11401.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11402.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11402.png deleted file mode 100644 index 21091ede05..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11402.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11403.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11403.png deleted file mode 100644 index 885faf8be9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11403.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11404.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11404.png deleted file mode 100644 index 69164d1e56..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11404.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11405.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11405.png deleted file mode 100644 index b5c04e9f70..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11405.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11406.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11406.png deleted file mode 100644 index 3a3ae2decc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11406.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11407.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11407.png deleted file mode 100644 index 2109e241ba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11407.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11408.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11408.png deleted file mode 100644 index 89ebc5c9a9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11408.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11409.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11409.png deleted file mode 100644 index ad1e9c32a8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11409.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11410.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11410.png deleted file mode 100644 index b86d142f25..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11410.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11411.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11411.png deleted file mode 100644 index c9aa1ca003..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11411.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11412.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11412.png deleted file mode 100644 index 25af3cba27..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11412.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11413.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11413.png deleted file mode 100644 index 01bce707c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11413.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11414.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11414.png deleted file mode 100644 index 394dbec1bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11414.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11415.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11415.png deleted file mode 100644 index 480b033c76..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11415.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11416.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11416.png deleted file mode 100644 index a09a3ae245..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11416.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11417.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11417.png deleted file mode 100644 index 10101b6895..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11417.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11418.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11418.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11418.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11419.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11419.png deleted file mode 100644 index 1fbdc7b5c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11419.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11420.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11420.png deleted file mode 100644 index d791ebfd9c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11420.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11421.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11421.png deleted file mode 100644 index 0f44beb44a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11421.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11422.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11422.png deleted file mode 100644 index fe5303c7ba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11422.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11423.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11423.png deleted file mode 100644 index 6a6b52891d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11423.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11424.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11424.png deleted file mode 100644 index 4676138693..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11424.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11425.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11425.png deleted file mode 100644 index f7374d6a55..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11425.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11426.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11426.png deleted file mode 100644 index 4bc7b2d48a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11426.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11427.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11427.png deleted file mode 100644 index b91e5f1783..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11427.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11428.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11428.png deleted file mode 100644 index a6360e6482..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11428.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11429.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11429.png deleted file mode 100644 index 6db3cade15..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11429.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11430.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11430.png deleted file mode 100644 index 3b78e3d2f7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11430.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11431.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11431.png deleted file mode 100644 index 21091ede05..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11431.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11432.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11432.png deleted file mode 100644 index 69164d1e56..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11432.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11433.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11433.png deleted file mode 100644 index 3a3ae2decc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11433.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11434.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11434.png deleted file mode 100644 index 89ebc5c9a9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11434.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11435.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11435.png deleted file mode 100644 index b86d142f25..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11435.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11436.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11436.png deleted file mode 100644 index 25af3cba27..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11436.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11437.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11437.png deleted file mode 100644 index 394dbec1bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11437.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11438.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11438.png deleted file mode 100644 index a09a3ae245..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11438.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11439.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11439.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11439.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11440.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11440.png deleted file mode 100644 index d791ebfd9c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11440.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11441.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11441.png deleted file mode 100644 index fe5303c7ba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11441.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11442.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11442.png deleted file mode 100644 index 4676138693..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11442.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11443.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11443.png deleted file mode 100644 index 4bc7b2d48a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11443.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11444.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11444.png deleted file mode 100644 index a6360e6482..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11444.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11445.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11445.png deleted file mode 100644 index 3b78e3d2f7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11445.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11461.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11461.png deleted file mode 100644 index e3a820b2b2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11461.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11462.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11462.png deleted file mode 100644 index 750842ebc2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11462.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11463.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11463.png deleted file mode 100644 index 3a7b75a62e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11463.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11469.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11469.png deleted file mode 100644 index 735da67cc4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11469.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11470.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11470.png deleted file mode 100644 index 8bda87a9f5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11470.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11471.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11471.png deleted file mode 100644 index 55bfa4524b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11471.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11500.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11500.png deleted file mode 100644 index 354be1cb36..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/11500.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20005.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20005.png deleted file mode 100644 index 3d5f6ba04d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20006.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20006.png deleted file mode 100644 index b99448797e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20006.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20007.png deleted file mode 100644 index 1a54352835..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/20007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29904.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29904.png deleted file mode 100644 index edb35ee5b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29904.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29905.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29905.png deleted file mode 100644 index cf03a9032a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29905.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29914.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29914.png deleted file mode 100644 index 5aaf330e7a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29914.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29915.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29915.png deleted file mode 100644 index 06c0377c1d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/29915.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/37.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/37.png deleted file mode 100644 index 8f359269de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/37.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/38.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/38.png deleted file mode 100644 index 80f05855cc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/38.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/41.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/41.png deleted file mode 100644 index 9329f0b25d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/41.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/42.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/42.png deleted file mode 100644 index 49531d6520..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/42.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/44.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/44.png deleted file mode 100644 index 39ad74b524..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/44.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/48.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/48.png deleted file mode 100644 index 2b3db7b83a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/48.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/50.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/50.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/50.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/52.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/52.png deleted file mode 100644 index 6f0ae35a2e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/52.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/56.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/56.png deleted file mode 100644 index 5c04fb6aad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/56.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/58.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/58.png deleted file mode 100644 index a13ec5d085..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/58.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/61.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/61.png deleted file mode 100644 index 811b0cb08a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/61.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/62.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/62.png deleted file mode 100644 index 07d2666815..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/62.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/63.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/63.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/63.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/66.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/66.png deleted file mode 100644 index 01eff2bf73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/66.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/67.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/67.png deleted file mode 100644 index 01eff2bf73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/67.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/68.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/68.png deleted file mode 100644 index 01eff2bf73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/68.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/72.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/72.png deleted file mode 100644 index 66b3e98ffe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/72.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/74.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/74.png deleted file mode 100644 index 66b3e98ffe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/74.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/75.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/75.png deleted file mode 100644 index 66b3e98ffe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/75.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/81.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/81.png deleted file mode 100644 index fe333db563..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/81.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/86.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/86.png deleted file mode 100644 index fe333db563..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/86.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/98.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/98.png deleted file mode 100644 index 124bcb7351..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcell/98.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10022.png deleted file mode 100644 index bcbd5c2e12..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10023.png deleted file mode 100644 index 1ea022c874..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10024.png deleted file mode 100644 index 9bad27b3bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10053.png deleted file mode 100644 index 6ed026a11b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10082.png deleted file mode 100644 index ee9aa9f3b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10083.png deleted file mode 100644 index ccba2bc05b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10084.png deleted file mode 100644 index ccba2bc05b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10085.png deleted file mode 100644 index e0fcb7737b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10096.png deleted file mode 100644 index 7c1d27401f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10097.png deleted file mode 100644 index d915b5abbf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10098.png deleted file mode 100644 index 33518b250e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10099.png deleted file mode 100644 index 3b1d21e393..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10101.png deleted file mode 100644 index 6e8115a3b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10102.png deleted file mode 100644 index 3b08c4495b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10103.png deleted file mode 100644 index e685bf1ebb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10104.png deleted file mode 100644 index 2b1657810e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10105.png deleted file mode 100644 index c64344d57c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10106.png deleted file mode 100644 index b3469f276a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10109.png deleted file mode 100644 index a6c42437fa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10110.png deleted file mode 100644 index 037aea1505..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10111.png deleted file mode 100644 index d442cfec95..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10112.png deleted file mode 100644 index 10d53f915a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11124.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11124.png deleted file mode 100644 index 08625c40c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11124.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11312.png deleted file mode 100644 index df3e4bde0f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11314.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11314.png deleted file mode 100644 index 31eade13ba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11314.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11465.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11465.png deleted file mode 100644 index d045864ed7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11465.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11498.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11498.png deleted file mode 100644 index f0bbf49dc6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11498.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11503.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11503.png deleted file mode 100644 index cfd87c2b66..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/20001.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/20001.png deleted file mode 100644 index e99e0f4492..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/20001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/32237.png deleted file mode 100644 index 2530550cd2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/39.png deleted file mode 100644 index 16b15ea459..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/40.png deleted file mode 100644 index 3acb411e3b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/43.png deleted file mode 100644 index dfa363efc1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/59.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/59.png deleted file mode 100644 index 130fcf3ca6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/59.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/64.png deleted file mode 100644 index 13baf0b69a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/78.png deleted file mode 100644 index 13baf0b69a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/88.png deleted file mode 100644 index 7519492d92..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/90.png deleted file mode 100644 index 409d1da8a7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/92.png deleted file mode 100644 index e4580afd46..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/96.png deleted file mode 100644 index 614e28822f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcellMolten/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/1.png deleted file mode 100644 index fc47816c2f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10.png deleted file mode 100644 index b87c06e3dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10023.png deleted file mode 100644 index af93721b29..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10054.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10054.png deleted file mode 100644 index 5678f419ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10067.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10067.png deleted file mode 100644 index f50046dc93..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10072.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10072.png deleted file mode 100644 index 61da14e456..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/11.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/11.png deleted file mode 100644 index b87c06e3dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/12.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/12.png deleted file mode 100644 index 0febbeb1be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/13.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/13.png deleted file mode 100644 index 1964c0b53d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/14.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/14.png deleted file mode 100644 index 21adad5102..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/15.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/15.png deleted file mode 100644 index 3771cac656..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/16.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/16.png deleted file mode 100644 index ae096de4ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/17.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/17.png deleted file mode 100644 index 1cace9093e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/18.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/18.png deleted file mode 100644 index 64245cec49..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/19.png deleted file mode 100644 index c1c846f46d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/2.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/2.png deleted file mode 100644 index ca57a7c51b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/23.png deleted file mode 100644 index 7bdbe17359..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/24.png deleted file mode 100644 index b11688c3c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/25.png deleted file mode 100644 index 81e7cfc131..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/26.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/26.png deleted file mode 100644 index 1fa4219fbe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/27.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/27.png deleted file mode 100644 index 9e9d989961..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/28.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/28.png deleted file mode 100644 index 33bac1540e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/29.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/29.png deleted file mode 100644 index 4c08cb82d3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/35.png deleted file mode 100644 index cd04d35848..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/43.png deleted file mode 100644 index ed569ea125..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/47.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/47.png deleted file mode 100644 index 415825d82d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/5.png deleted file mode 100644 index 973a9a27f3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/53.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/53.png deleted file mode 100644 index d8dfba2834..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/60.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/60.png deleted file mode 100644 index 4022a2959c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/69.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/69.png deleted file mode 100644 index 4022a2959c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/7.png deleted file mode 100644 index b6290b4a7b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/70.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/70.png deleted file mode 100644 index 242f57d73d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/79.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/79.png deleted file mode 100644 index 07d47290cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/8.png deleted file mode 100644 index 8a32ae40e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/89.png deleted file mode 100644 index f37bf417b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/9.png deleted file mode 100644 index 3df3ebdca6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/91.png deleted file mode 100644 index d1269a9d25..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/93.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/93.png deleted file mode 100644 index f178b1330f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/94.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/94.png deleted file mode 100644 index 49a145c919..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/95.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/95.png deleted file mode 100644 index 49a145c919..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushed/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/1.png deleted file mode 100644 index d3710333de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10.png deleted file mode 100644 index 457b96edd3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10023.png deleted file mode 100644 index e25a01a874..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10054.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10054.png deleted file mode 100644 index e6742a6c0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10067.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10067.png deleted file mode 100644 index 99bfaab7d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10072.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10072.png deleted file mode 100644 index 4af2cf5018..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/11.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/11.png deleted file mode 100644 index 457b96edd3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/12.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/12.png deleted file mode 100644 index 93e65ac0e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/13.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/13.png deleted file mode 100644 index 5041dac5c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/14.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/14.png deleted file mode 100644 index 5cf7594e30..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/15.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/15.png deleted file mode 100644 index 39384ec3c3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/16.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/16.png deleted file mode 100644 index 6743d99925..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/17.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/17.png deleted file mode 100644 index 359c7978df..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/18.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/18.png deleted file mode 100644 index 385c854f4b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/19.png deleted file mode 100644 index 1aa7ffcfa8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/2.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/2.png deleted file mode 100644 index f8543772c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/23.png deleted file mode 100644 index c4a2b7ff0a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/24.png deleted file mode 100644 index 1dd98a4f24..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/25.png deleted file mode 100644 index 8d9472617a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/26.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/26.png deleted file mode 100644 index 001df6053d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/27.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/27.png deleted file mode 100644 index 992b7620b3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/28.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/28.png deleted file mode 100644 index a925f1bff3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/29.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/29.png deleted file mode 100644 index 7ab1e8329f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/35.png deleted file mode 100644 index c4ed107a11..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/43.png deleted file mode 100644 index 095b4070e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/47.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/47.png deleted file mode 100644 index d6f4e9ea48..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/5.png deleted file mode 100644 index 1a1faa03c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/53.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/53.png deleted file mode 100644 index 85d4c58da0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/60.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/60.png deleted file mode 100644 index f7dc9fcc35..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/69.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/69.png deleted file mode 100644 index f7dc9fcc35..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/7.png deleted file mode 100644 index 03dbf524eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/70.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/70.png deleted file mode 100644 index 3797b02989..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/79.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/79.png deleted file mode 100644 index dbf9428c72..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/8.png deleted file mode 100644 index 8e2e77bcf1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/89.png deleted file mode 100644 index ae08b0a428..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/9.png deleted file mode 100644 index 007935d1ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/91.png deleted file mode 100644 index 6d8f699ed9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/93.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/93.png deleted file mode 100644 index 9aef94c62a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/94.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/94.png deleted file mode 100644 index 34d6e505bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/95.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/95.png deleted file mode 100644 index 34d6e505bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/1.png deleted file mode 100644 index ffa1b7ce96..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10.png deleted file mode 100644 index f035b04b06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10023.png deleted file mode 100644 index 16aaa599bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10054.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10054.png deleted file mode 100644 index dea8f720cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10067.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10067.png deleted file mode 100644 index 1898c8e7b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10072.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10072.png deleted file mode 100644 index 5cccf720f6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/11.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/11.png deleted file mode 100644 index f035b04b06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/12.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/12.png deleted file mode 100644 index 74e39d25e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/13.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/13.png deleted file mode 100644 index 028c6b462f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/14.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/14.png deleted file mode 100644 index 5311e42b77..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/15.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/15.png deleted file mode 100644 index b370277c98..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/16.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/16.png deleted file mode 100644 index 309cc9bd61..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/17.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/17.png deleted file mode 100644 index 9097dd1c44..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/18.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/18.png deleted file mode 100644 index 66e428c5f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/19.png deleted file mode 100644 index b6b0784b6a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/2.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/2.png deleted file mode 100644 index a5c5ea267a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/23.png deleted file mode 100644 index 22c74d3eab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/24.png deleted file mode 100644 index 734af1ed94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/25.png deleted file mode 100644 index a005b7ad93..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/26.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/26.png deleted file mode 100644 index 7bc33a6e26..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/27.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/27.png deleted file mode 100644 index d1629b8956..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/28.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/28.png deleted file mode 100644 index a3a5c9d7e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/29.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/29.png deleted file mode 100644 index e723a42356..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/35.png deleted file mode 100644 index e37c94a1df..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/43.png deleted file mode 100644 index cf3b3905de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/47.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/47.png deleted file mode 100644 index 82aeac4ce6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/5.png deleted file mode 100644 index f0acbdaf58..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/53.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/53.png deleted file mode 100644 index 6fa0ed9ca2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/60.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/60.png deleted file mode 100644 index df307882e9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/69.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/69.png deleted file mode 100644 index df307882e9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/7.png deleted file mode 100644 index 5dac475948..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/70.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/70.png deleted file mode 100644 index 33bc2da343..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/79.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/79.png deleted file mode 100644 index f897ba03de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/8.png deleted file mode 100644 index 7e6a1e6ff8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/89.png deleted file mode 100644 index 618eb80253..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/9.png deleted file mode 100644 index 807486772a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/91.png deleted file mode 100644 index 9b194f7b8c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/93.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/93.png deleted file mode 100644 index e103c496b8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/94.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/94.png deleted file mode 100644 index b6b78cff52..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/95.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/95.png deleted file mode 100644 index b6b78cff52..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedcrushedPurified/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/1.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/1.png deleted file mode 100644 index d19c9e3d08..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10.png deleted file mode 100644 index d9b0d9c74b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10001.png deleted file mode 100644 index 5e298b0c21..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10005.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10005.png deleted file mode 100644 index 5ba20b2dc4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10009.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10009.png deleted file mode 100644 index 8ab21513c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10009.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10014.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10014.png deleted file mode 100644 index f51bd3e39b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10014.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10016.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10016.png deleted file mode 100644 index 295a5b4843..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10016.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10017.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10017.png deleted file mode 100644 index d0ed669d83..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10017.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10018.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10018.png deleted file mode 100644 index 9071b91876..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10018.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10022.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10022.png deleted file mode 100644 index 2f4f8a4d03..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10023.png deleted file mode 100644 index 91224e51ba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10024.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10024.png deleted file mode 100644 index 05e0453618..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10035.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10035.png deleted file mode 100644 index a88bd9512e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10035.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10052.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10052.png deleted file mode 100644 index 05e04aeec0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10052.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10053.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10053.png deleted file mode 100644 index e38780fc2d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10054.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10054.png deleted file mode 100644 index 8875350f8f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10055.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10055.png deleted file mode 100644 index 59baa30c75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10055.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10057.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10057.png deleted file mode 100644 index d964971d8b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10057.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10063.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10063.png deleted file mode 100644 index 2d9f436cde..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10063.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10066.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10066.png deleted file mode 100644 index 55cbccdc4c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10066.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10067.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10067.png deleted file mode 100644 index ad25624c5c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10068.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10068.png deleted file mode 100644 index df34c50d32..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10068.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10070.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10070.png deleted file mode 100644 index b2345af18e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10070.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10071.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10071.png deleted file mode 100644 index c1791a5fc9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10071.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10072.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10072.png deleted file mode 100644 index f8d76cab9f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10073.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10073.png deleted file mode 100644 index 2c67def0c0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10073.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10074.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10074.png deleted file mode 100644 index fb99aa24b3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10074.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10076.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10076.png deleted file mode 100644 index 0dbb9e385e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10076.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10078.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10078.png deleted file mode 100644 index 2179db371b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10078.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10082.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10082.png deleted file mode 100644 index 5ce79de20f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10083.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10083.png deleted file mode 100644 index f92aab6768..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10084.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10084.png deleted file mode 100644 index f92aab6768..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10085.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10085.png deleted file mode 100644 index 7af90c6b5a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10093.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10093.png deleted file mode 100644 index 89db4d7486..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10093.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10096.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10096.png deleted file mode 100644 index 4d505fa07e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10097.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10097.png deleted file mode 100644 index 0be19e7777..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10098.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10098.png deleted file mode 100644 index 6bb400becc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10099.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10099.png deleted file mode 100644 index 07b1a73d06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/101.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/101.png deleted file mode 100644 index c872175db0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10100.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10100.png deleted file mode 100644 index d091a6c6f2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10100.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10101.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10101.png deleted file mode 100644 index 6d82274f03..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10102.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10102.png deleted file mode 100644 index 0585c04056..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10103.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10103.png deleted file mode 100644 index f03cd7b85d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10104.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10104.png deleted file mode 100644 index f6faa8255a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10105.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10105.png deleted file mode 100644 index eb41b18bd5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10106.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10106.png deleted file mode 100644 index 70a7ce9be8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10108.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10108.png deleted file mode 100644 index 2d8cfb1a67..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10108.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10109.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10109.png deleted file mode 100644 index bffe62a238..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10110.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10110.png deleted file mode 100644 index 5f24157ce2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10111.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10111.png deleted file mode 100644 index bb05972d15..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10112.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10112.png deleted file mode 100644 index b812c628d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10113.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10113.png deleted file mode 100644 index 50c658b102..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10113.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10114.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10114.png deleted file mode 100644 index 554774d95e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10114.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10115.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10115.png deleted file mode 100644 index a8e75256a4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/10115.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/102.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/102.png deleted file mode 100644 index cf593aa986..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/104.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/104.png deleted file mode 100644 index 21b6616fda..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11.png deleted file mode 100644 index d9b0d9c74b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11000.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11000.png deleted file mode 100644 index 09d6797048..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11001.png deleted file mode 100644 index 402e3903ec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11002.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11002.png deleted file mode 100644 index 49bfd4d90b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11002.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11003.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11003.png deleted file mode 100644 index 5e1f9cc166..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11003.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11005.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11005.png deleted file mode 100644 index 37a65b9f7d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11006.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11006.png deleted file mode 100644 index 30f9e0641b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11006.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11007.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11007.png deleted file mode 100644 index 26ffc01a81..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11008.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11008.png deleted file mode 100644 index 4713337676..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11008.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11009.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11009.png deleted file mode 100644 index d207afb1db..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11009.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11011.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11011.png deleted file mode 100644 index 49bfd4d90b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11011.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11012.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11012.png deleted file mode 100644 index 96d8a39082..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11012.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11019.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11019.png deleted file mode 100644 index 8a79c8b1c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11019.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11020.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11020.png deleted file mode 100644 index e1c54a1c32..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11020.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11021.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11021.png deleted file mode 100644 index 46cd60d47c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11021.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11022.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11022.png deleted file mode 100644 index e1c54a1c32..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11023.png deleted file mode 100644 index 80f28cb9f3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11024.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11024.png deleted file mode 100644 index a7ce62adc2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11025.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11025.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11025.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11026.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11026.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11026.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11027.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11027.png deleted file mode 100644 index 687cbfd6ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11027.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11028.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11028.png deleted file mode 100644 index 4004be574a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11028.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11029.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11029.png deleted file mode 100644 index 0e23f5e56f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11029.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11030.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11030.png deleted file mode 100644 index a7ce62adc2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11030.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11031.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11031.png deleted file mode 100644 index a7ce62adc2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11031.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11032.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11032.png deleted file mode 100644 index a7ce62adc2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11032.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11033.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11033.png deleted file mode 100644 index a7ce62adc2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11033.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11034.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11034.png deleted file mode 100644 index f30d7cafc5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11034.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11037.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11037.png deleted file mode 100644 index 07bd5d63fd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11037.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11038.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11038.png deleted file mode 100644 index a8059598b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11038.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11039.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11039.png deleted file mode 100644 index 148bef0b94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11039.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11040.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11040.png deleted file mode 100644 index 8f6cf46582..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11040.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11041.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11041.png deleted file mode 100644 index dcd6bb3cf6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11041.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11043.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11043.png deleted file mode 100644 index 72315a7ac7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11043.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11047.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11047.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11047.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11048.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11048.png deleted file mode 100644 index 9e1657056a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11048.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11049.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11049.png deleted file mode 100644 index bc1401d316..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11049.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11050.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11050.png deleted file mode 100644 index 84d27914c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11050.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11107.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11107.png deleted file mode 100644 index 955ae6b900..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11107.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11108.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11108.png deleted file mode 100644 index 955ae6b900..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11108.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11109.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11109.png deleted file mode 100644 index 06135da7e7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11110.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11110.png deleted file mode 100644 index 49454343a2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11111.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11111.png deleted file mode 100644 index f85bb1da0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11112.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11112.png deleted file mode 100644 index f85bb1da0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11113.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11113.png deleted file mode 100644 index f85bb1da0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11113.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11116.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11116.png deleted file mode 100644 index 89224ff06d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11116.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11117.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11117.png deleted file mode 100644 index 89224ff06d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11117.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11121.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11121.png deleted file mode 100644 index 88ac0e001f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11121.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11122.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11122.png deleted file mode 100644 index 88ac0e001f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11122.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11123.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11123.png deleted file mode 100644 index 6fa62e1d2b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11123.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11124.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11124.png deleted file mode 100644 index 0dcecedb91..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11124.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11125.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11125.png deleted file mode 100644 index fe309f06dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11125.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11126.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11126.png deleted file mode 100644 index fe309f06dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11126.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11127.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11127.png deleted file mode 100644 index 56f5711221..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11127.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11128.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11128.png deleted file mode 100644 index c7a3ee1df4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11128.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11129.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11129.png deleted file mode 100644 index c1f9861d66..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11129.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11303.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11303.png deleted file mode 100644 index 5646589ce2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11303.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11304.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11304.png deleted file mode 100644 index 87bd869f1f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11304.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11305.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11305.png deleted file mode 100644 index deb4ab89a4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11305.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11306.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11306.png deleted file mode 100644 index d2f046b883..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11306.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11312.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11312.png deleted file mode 100644 index cddd5917d3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11314.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11314.png deleted file mode 100644 index 98dcdd1854..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11314.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11446.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11446.png deleted file mode 100644 index 50f0597463..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11446.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11447.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11447.png deleted file mode 100644 index 9e832c07f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11447.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11449.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11449.png deleted file mode 100644 index 789d91d43d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11449.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11450.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11450.png deleted file mode 100644 index 2681607cb7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11450.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11451.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11451.png deleted file mode 100644 index 9877c827e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11451.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11452.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11452.png deleted file mode 100644 index 6f3a439213..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11452.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11453.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11453.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11453.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11454.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11454.png deleted file mode 100644 index d5be784096..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11454.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11455.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11455.png deleted file mode 100644 index 81e9b5e830..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11455.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11456.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11456.png deleted file mode 100644 index ad7a3fa0a8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11456.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11457.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11457.png deleted file mode 100644 index 9ff2a198a9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11457.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11458.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11458.png deleted file mode 100644 index 868a8f6618..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11458.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11459.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11459.png deleted file mode 100644 index 19a01e1fcd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11459.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11464.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11464.png deleted file mode 100644 index e5c9ec8701..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11464.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11465.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11465.png deleted file mode 100644 index 91fee88f7a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11465.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11466.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11466.png deleted file mode 100644 index c7a3ee1df4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11466.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11467.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11467.png deleted file mode 100644 index 44d0829d8c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11467.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11468.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11468.png deleted file mode 100644 index fe309f06dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11468.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11472.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11472.png deleted file mode 100644 index 90d92f68a2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11472.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11498.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11498.png deleted file mode 100644 index d14a4cb6e9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11498.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11501.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11501.png deleted file mode 100644 index b13f00c92f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11501.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11502.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11502.png deleted file mode 100644 index 49eb097c42..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11502.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11503.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11503.png deleted file mode 100644 index a498f7c8e7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/12.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/12.png deleted file mode 100644 index 37e199e860..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/13.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/13.png deleted file mode 100644 index 19edba9fe5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/14.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/14.png deleted file mode 100644 index 4ed06f94c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/15.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/15.png deleted file mode 100644 index 016c071c47..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/16.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/16.png deleted file mode 100644 index 0086b2d7dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/17.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/17.png deleted file mode 100644 index 0f5535c51f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/18.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/18.png deleted file mode 100644 index 72a58b03d0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/19.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/19.png deleted file mode 100644 index 5502fdbad8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/2.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/2.png deleted file mode 100644 index c19719b47a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/20001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/20001.png deleted file mode 100644 index 944fee7447..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/20001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/23.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/23.png deleted file mode 100644 index 8100a69603..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/24.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/24.png deleted file mode 100644 index df1d350ddb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/25.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/25.png deleted file mode 100644 index 6aef033e13..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/26.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/26.png deleted file mode 100644 index 206d650496..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/27.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/27.png deleted file mode 100644 index 23685b4ade..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/28.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/28.png deleted file mode 100644 index d466013ece..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29.png deleted file mode 100644 index c14d1f4498..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29900.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29900.png deleted file mode 100644 index 633d9efa21..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29900.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29901.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29901.png deleted file mode 100644 index 954249360a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29901.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29903.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29903.png deleted file mode 100644 index aa891480a6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/29903.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/3.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/3.png deleted file mode 100644 index b763885f0b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/30.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/30.png deleted file mode 100644 index d004b05b63..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/31.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/31.png deleted file mode 100644 index 85578d626e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/31.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/33.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/33.png deleted file mode 100644 index 54b7dec67c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/33.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/34.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/34.png deleted file mode 100644 index fb50a44ec6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/34.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/35.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/35.png deleted file mode 100644 index 6228e637bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/36.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/36.png deleted file mode 100644 index e3267bf4e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/39.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/39.png deleted file mode 100644 index 4fe01d7c8a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/4.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/4.png deleted file mode 100644 index e6ea5f1f0a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/43.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/43.png deleted file mode 100644 index 62b32b4037..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/45.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/45.png deleted file mode 100644 index 693a3eb5f5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/45.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/46.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/46.png deleted file mode 100644 index 308dd46b60..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/46.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/47.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/47.png deleted file mode 100644 index 308dd46b60..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/49.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/49.png deleted file mode 100644 index f6cd3b47c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/49.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/5.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/5.png deleted file mode 100644 index 8106a51f0d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/51.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/51.png deleted file mode 100644 index 308dd46b60..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/51.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/53.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/53.png deleted file mode 100644 index 723ea56484..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/54.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/54.png deleted file mode 100644 index 723ea56484..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/54.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/55.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/55.png deleted file mode 100644 index 723ea56484..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/55.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/57.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/57.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/57.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/59.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/59.png deleted file mode 100644 index e3c977f0b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/59.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/6.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/6.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/60.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/60.png deleted file mode 100644 index 4d402de786..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/63.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/63.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/63.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/64.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/64.png deleted file mode 100644 index 0ea7698948..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/65.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/65.png deleted file mode 100644 index 2a37f1a98b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/65.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/66.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/66.png deleted file mode 100644 index 66194ded35..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/66.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/69.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/69.png deleted file mode 100644 index 4d402de786..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/7.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/7.png deleted file mode 100644 index 0548b97e75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/70.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/70.png deleted file mode 100644 index 738d1523e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/71.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/71.png deleted file mode 100644 index 62e599fa02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/71.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/73.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/73.png deleted file mode 100644 index 62e599fa02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/73.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/76.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/76.png deleted file mode 100644 index d35a3b5973..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/76.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/77.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/77.png deleted file mode 100644 index 62e599fa02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/77.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/78.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/78.png deleted file mode 100644 index 22b8b25483..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/79.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/79.png deleted file mode 100644 index 85c3c3d552..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/8.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/8.png deleted file mode 100644 index 19fa1b513e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/80.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/80.png deleted file mode 100644 index b8dcd23343..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/80.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/82.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/82.png deleted file mode 100644 index 99d852d2ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/82.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/83.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/83.png deleted file mode 100644 index dfffda4e8b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/83.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/84.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/84.png deleted file mode 100644 index d35a3b5973..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/84.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/85.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/85.png deleted file mode 100644 index dfffda4e8b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/85.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/87.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/87.png deleted file mode 100644 index dfffda4e8b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/87.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/88.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/88.png deleted file mode 100644 index 168978e795..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/89.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/89.png deleted file mode 100644 index a353733cf1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/9.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/9.png deleted file mode 100644 index 067797183c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/90.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/90.png deleted file mode 100644 index 541b46a311..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/91.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/91.png deleted file mode 100644 index 8fabb7197e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/92.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/92.png deleted file mode 100644 index a33d83cb31..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/93.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/93.png deleted file mode 100644 index 420f0e0c55..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/94.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/94.png deleted file mode 100644 index 75a9fb88f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/95.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/95.png deleted file mode 100644 index 7d05b2ae8c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/96.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/96.png deleted file mode 100644 index f0017f60f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/97.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/97.png deleted file mode 100644 index 75c56048a1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/97.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/99.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddust/99.png deleted file mode 100644 index cad2c95ec7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddust/99.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/1.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/1.png deleted file mode 100644 index da34e5daaf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10.png deleted file mode 100644 index 4c5dbd38ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10023.png deleted file mode 100644 index 9078286879..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10054.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10054.png deleted file mode 100644 index 7fe44cc8a1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10067.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10067.png deleted file mode 100644 index c68ff82a7d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10072.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10072.png deleted file mode 100644 index 3b9aa50c8f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/11.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/11.png deleted file mode 100644 index 4c5dbd38ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/12.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/12.png deleted file mode 100644 index fb4347556d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/13.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/13.png deleted file mode 100644 index eefd387828..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/14.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/14.png deleted file mode 100644 index d0893351c0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/15.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/15.png deleted file mode 100644 index 9146b818e7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/16.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/16.png deleted file mode 100644 index 000b43f57e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/17.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/17.png deleted file mode 100644 index fdfb4d629f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/18.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/18.png deleted file mode 100644 index 4998f9d61d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/19.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/19.png deleted file mode 100644 index da2ed0a689..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/2.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/2.png deleted file mode 100644 index be462a7ded..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/23.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/23.png deleted file mode 100644 index f89d7cb37d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/24.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/24.png deleted file mode 100644 index 1ece9dcd22..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/25.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/25.png deleted file mode 100644 index a2e41a1bf6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/26.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/26.png deleted file mode 100644 index 8a4a4b4dbd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/27.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/27.png deleted file mode 100644 index 64969d0e16..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/28.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/28.png deleted file mode 100644 index a0691e7801..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/29.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/29.png deleted file mode 100644 index 4a7a973788..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/35.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/35.png deleted file mode 100644 index a1dbbd7e9f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/43.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/43.png deleted file mode 100644 index 353155bd4a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/47.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/47.png deleted file mode 100644 index 48c333aeaf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/5.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/5.png deleted file mode 100644 index cac8a51ea6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/53.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/53.png deleted file mode 100644 index 6f64cf001c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/60.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/60.png deleted file mode 100644 index 936b5de45b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/69.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/69.png deleted file mode 100644 index 936b5de45b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/7.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/7.png deleted file mode 100644 index 13eb9072e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/70.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/70.png deleted file mode 100644 index 88be12ab5e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/79.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/79.png deleted file mode 100644 index 7f4bcb836d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/8.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/8.png deleted file mode 100644 index 0c2c2ee760..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/89.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/89.png deleted file mode 100644 index b124d29734..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/9.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/9.png deleted file mode 100644 index 6840f49f8d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/91.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/91.png deleted file mode 100644 index 789e6e5b75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/93.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/93.png deleted file mode 100644 index 294caa64b8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/94.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/94.png deleted file mode 100644 index 629173bf20..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/95.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/95.png deleted file mode 100644 index cfd376d75a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustImpure/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/1.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/1.png deleted file mode 100644 index c75efb0331..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10.png deleted file mode 100644 index 80c11f9534..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10023.png deleted file mode 100644 index e0af1e1338..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10054.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10054.png deleted file mode 100644 index 7b62116bb2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10067.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10067.png deleted file mode 100644 index e6e6500160..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10072.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10072.png deleted file mode 100644 index 88add9cd7a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/11.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/11.png deleted file mode 100644 index 80c11f9534..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/12.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/12.png deleted file mode 100644 index dffb89cb43..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/13.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/13.png deleted file mode 100644 index ad088203f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/14.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/14.png deleted file mode 100644 index 549a9f4467..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/15.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/15.png deleted file mode 100644 index f465843b16..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/16.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/16.png deleted file mode 100644 index 614b343ee1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/17.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/17.png deleted file mode 100644 index cbdfb5edfd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/18.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/18.png deleted file mode 100644 index f0011679f5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/19.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/19.png deleted file mode 100644 index ee64819a06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/2.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/2.png deleted file mode 100644 index 1c08251469..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/23.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/23.png deleted file mode 100644 index 7dd65917a9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/24.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/24.png deleted file mode 100644 index 4f2ee535a5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/25.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/25.png deleted file mode 100644 index c916ace7d7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/26.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/26.png deleted file mode 100644 index a84c6255e1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/27.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/27.png deleted file mode 100644 index 96bd54111e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/28.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/28.png deleted file mode 100644 index d34b007856..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/29.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/29.png deleted file mode 100644 index feff83bcb1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/35.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/35.png deleted file mode 100644 index 65a58779eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/43.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/43.png deleted file mode 100644 index e15c038ca7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/47.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/47.png deleted file mode 100644 index f8a7ff4cc4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/5.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/5.png deleted file mode 100644 index 914a336ce8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/53.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/53.png deleted file mode 100644 index 221659632c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/60.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/60.png deleted file mode 100644 index 6794aaf26c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/69.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/69.png deleted file mode 100644 index 6794aaf26c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/7.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/7.png deleted file mode 100644 index 1995fcae5f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/70.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/70.png deleted file mode 100644 index 4c44c3cd5c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/79.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/79.png deleted file mode 100644 index bcbdd02c55..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/8.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/8.png deleted file mode 100644 index f818ac49ae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/89.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/89.png deleted file mode 100644 index c2a8575c5e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/9.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/9.png deleted file mode 100644 index f7ce0c5dcd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/91.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/91.png deleted file mode 100644 index c1012d1f86..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/93.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/93.png deleted file mode 100644 index 2eb428ccae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/94.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/94.png deleted file mode 100644 index d494632379..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/95.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/95.png deleted file mode 100644 index d3edfccfeb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustPure/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/1.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/1.png deleted file mode 100644 index f66e19fe90..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10.png deleted file mode 100644 index 4c80bfe353..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10001.png deleted file mode 100644 index 979c034f84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10005.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10005.png deleted file mode 100644 index 97920ba933..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10009.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10009.png deleted file mode 100644 index 6390f314a8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10009.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10014.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10014.png deleted file mode 100644 index 7d645a6323..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10014.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10016.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10016.png deleted file mode 100644 index 917deaff04..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10016.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10017.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10017.png deleted file mode 100644 index bf0016c68c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10017.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10018.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10018.png deleted file mode 100644 index e01e885251..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10018.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10022.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10022.png deleted file mode 100644 index b994b1cdd0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10023.png deleted file mode 100644 index a536dac804..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10024.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10024.png deleted file mode 100644 index 44c1b5ab93..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10035.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10035.png deleted file mode 100644 index 1e033ee782..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10035.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10052.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10052.png deleted file mode 100644 index 5354501050..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10052.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10053.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10053.png deleted file mode 100644 index 6b61693b1b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10054.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10054.png deleted file mode 100644 index 4659ebc62a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10055.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10055.png deleted file mode 100644 index 519fbe4f1b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10055.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10057.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10057.png deleted file mode 100644 index 01836e5836..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10057.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10063.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10063.png deleted file mode 100644 index fec01791c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10063.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10066.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10066.png deleted file mode 100644 index 01282ada39..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10066.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10067.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10067.png deleted file mode 100644 index 8024596236..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10068.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10068.png deleted file mode 100644 index 478c74b8fd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10068.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10070.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10070.png deleted file mode 100644 index 4e8e4501e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10070.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10071.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10071.png deleted file mode 100644 index 4ecc6d25ec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10071.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10072.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10072.png deleted file mode 100644 index 6fc1482059..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10073.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10073.png deleted file mode 100644 index ca69874d06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10073.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10074.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10074.png deleted file mode 100644 index 6342b988ae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10074.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10076.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10076.png deleted file mode 100644 index 23e0af9ea4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10076.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10078.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10078.png deleted file mode 100644 index 98dfe734f8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10078.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10082.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10082.png deleted file mode 100644 index 01e747b476..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10083.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10083.png deleted file mode 100644 index c99c8ea656..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10084.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10084.png deleted file mode 100644 index c99c8ea656..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10085.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10085.png deleted file mode 100644 index e069178be6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10093.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10093.png deleted file mode 100644 index f05c81e747..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10093.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10096.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10096.png deleted file mode 100644 index 4fb5caf4a6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10097.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10097.png deleted file mode 100644 index d0a909a95a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10098.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10098.png deleted file mode 100644 index 02e4e5ab7e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10099.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10099.png deleted file mode 100644 index 00fc4807f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/101.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/101.png deleted file mode 100644 index c6d4a1a1de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10100.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10100.png deleted file mode 100644 index 43ded2996a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10100.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10101.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10101.png deleted file mode 100644 index 7ac0b9d6e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10102.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10102.png deleted file mode 100644 index c4b6284a73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10103.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10103.png deleted file mode 100644 index e7825c2825..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10104.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10104.png deleted file mode 100644 index 20ddc131f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10105.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10105.png deleted file mode 100644 index 88ed4667ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10106.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10106.png deleted file mode 100644 index a4bf24f797..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10108.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10108.png deleted file mode 100644 index 080d7dcd5f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10108.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10109.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10109.png deleted file mode 100644 index 30ce9b0e7f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10110.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10110.png deleted file mode 100644 index a6d1b34c9a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10111.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10111.png deleted file mode 100644 index bac8cf06a2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10112.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10112.png deleted file mode 100644 index 173ae8cae8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10113.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10113.png deleted file mode 100644 index 4784bf0ccb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10113.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10114.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10114.png deleted file mode 100644 index ad33f308eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10114.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10115.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10115.png deleted file mode 100644 index b5bc915bee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/10115.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/102.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/102.png deleted file mode 100644 index a37f1f1894..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/104.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/104.png deleted file mode 100644 index 137b2834fe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11.png deleted file mode 100644 index 4c80bfe353..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11000.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11000.png deleted file mode 100644 index 03cd5a73aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11001.png deleted file mode 100644 index 6ab694ace2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11002.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11002.png deleted file mode 100644 index 004c449703..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11002.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11003.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11003.png deleted file mode 100644 index f9759bf13c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11003.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11005.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11005.png deleted file mode 100644 index a376e8013b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11006.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11006.png deleted file mode 100644 index a32ba59916..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11006.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11007.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11007.png deleted file mode 100644 index b023d32909..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11008.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11008.png deleted file mode 100644 index b7d84f39cd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11008.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11009.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11009.png deleted file mode 100644 index 6533677637..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11009.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11011.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11011.png deleted file mode 100644 index 004c449703..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11011.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11012.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11012.png deleted file mode 100644 index 10b6427ccf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11012.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11019.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11019.png deleted file mode 100644 index 3185f01219..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11019.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11020.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11020.png deleted file mode 100644 index 9515474008..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11020.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11021.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11021.png deleted file mode 100644 index ff46a58325..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11021.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11022.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11022.png deleted file mode 100644 index 9515474008..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11023.png deleted file mode 100644 index 8a6234de66..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11024.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11024.png deleted file mode 100644 index e2fbff17c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11025.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11025.png deleted file mode 100644 index 234a0995d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11025.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11026.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11026.png deleted file mode 100644 index 234a0995d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11026.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11027.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11027.png deleted file mode 100644 index 203b9dfadd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11027.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11028.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11028.png deleted file mode 100644 index c20eb145f7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11028.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11029.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11029.png deleted file mode 100644 index 1e47f9620d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11029.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11030.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11030.png deleted file mode 100644 index e2fbff17c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11030.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11031.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11031.png deleted file mode 100644 index e2fbff17c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11031.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11032.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11032.png deleted file mode 100644 index e2fbff17c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11032.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11033.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11033.png deleted file mode 100644 index e2fbff17c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11033.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11034.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11034.png deleted file mode 100644 index 1c0cf758bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11034.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11037.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11037.png deleted file mode 100644 index d757a8eb12..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11037.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11038.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11038.png deleted file mode 100644 index d591b75f84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11038.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11039.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11039.png deleted file mode 100644 index 2453cf8459..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11039.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11040.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11040.png deleted file mode 100644 index d7aa91ff2d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11040.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11041.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11041.png deleted file mode 100644 index 44a4053303..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11041.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11043.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11043.png deleted file mode 100644 index 15f3655327..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11043.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11047.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11047.png deleted file mode 100644 index 234a0995d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11047.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11048.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11048.png deleted file mode 100644 index c31da7040d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11048.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11049.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11049.png deleted file mode 100644 index 0f7b0884be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11049.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11050.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11050.png deleted file mode 100644 index d858828740..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11050.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11107.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11107.png deleted file mode 100644 index d122d97c84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11107.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11108.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11108.png deleted file mode 100644 index d122d97c84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11108.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11109.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11109.png deleted file mode 100644 index 181ac5d3d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11110.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11110.png deleted file mode 100644 index d0ec111840..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11111.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11111.png deleted file mode 100644 index 72e4461284..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11112.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11112.png deleted file mode 100644 index 72e4461284..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11113.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11113.png deleted file mode 100644 index 72e4461284..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11113.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11116.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11116.png deleted file mode 100644 index e3d546b65b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11116.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11117.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11117.png deleted file mode 100644 index e3d546b65b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11117.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11121.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11121.png deleted file mode 100644 index 79326f0ecd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11121.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11122.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11122.png deleted file mode 100644 index 79326f0ecd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11122.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11123.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11123.png deleted file mode 100644 index 31b43c8ef3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11123.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11124.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11124.png deleted file mode 100644 index 8ff15e1fb4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11124.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11125.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11125.png deleted file mode 100644 index 3ac715b14a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11125.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11126.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11126.png deleted file mode 100644 index 3ac715b14a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11126.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11127.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11127.png deleted file mode 100644 index a9020a9781..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11127.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11128.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11128.png deleted file mode 100644 index c62d417d57..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11128.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11129.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11129.png deleted file mode 100644 index 2c0e948010..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11129.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11303.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11303.png deleted file mode 100644 index e11491f304..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11303.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11304.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11304.png deleted file mode 100644 index 5a708ac0b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11304.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11305.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11305.png deleted file mode 100644 index 94121029d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11305.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11306.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11306.png deleted file mode 100644 index 4a075a9a20..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11306.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11312.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11312.png deleted file mode 100644 index 1361df61a1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11314.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11314.png deleted file mode 100644 index 60b62d6faa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11314.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11446.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11446.png deleted file mode 100644 index f2fa882f8d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11446.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11447.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11447.png deleted file mode 100644 index 7d96e9ec3b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11447.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11449.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11449.png deleted file mode 100644 index 93174f682c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11449.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11450.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11450.png deleted file mode 100644 index bb91a66faf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11450.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11451.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11451.png deleted file mode 100644 index 7dee390823..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11451.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11452.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11452.png deleted file mode 100644 index 0920a09fb6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11452.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11453.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11453.png deleted file mode 100644 index 234a0995d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11453.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11454.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11454.png deleted file mode 100644 index 4d71caaf5b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11454.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11455.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11455.png deleted file mode 100644 index b1a335754d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11455.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11456.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11456.png deleted file mode 100644 index d38c8739bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11456.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11457.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11457.png deleted file mode 100644 index 740fc206be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11457.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11458.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11458.png deleted file mode 100644 index 8dfa92751d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11458.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11459.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11459.png deleted file mode 100644 index 57cd673e54..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11459.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11464.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11464.png deleted file mode 100644 index f38f70ef97..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11464.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11465.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11465.png deleted file mode 100644 index 1e662db774..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11465.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11466.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11466.png deleted file mode 100644 index c62d417d57..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11466.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11467.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11467.png deleted file mode 100644 index 081fbf8aba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11467.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11468.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11468.png deleted file mode 100644 index 3ac715b14a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11468.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11472.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11472.png deleted file mode 100644 index df46cf328f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11472.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11498.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11498.png deleted file mode 100644 index d7449ffde1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11498.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11501.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11501.png deleted file mode 100644 index 2810d81862..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11501.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11502.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11502.png deleted file mode 100644 index c682373bed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11502.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11503.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11503.png deleted file mode 100644 index e598eae362..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/12.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/12.png deleted file mode 100644 index bcedc5d154..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/13.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/13.png deleted file mode 100644 index 9514907a1d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/14.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/14.png deleted file mode 100644 index e9364c0db8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/15.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/15.png deleted file mode 100644 index e979ebcfde..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/16.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/16.png deleted file mode 100644 index bc8e3582f5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/17.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/17.png deleted file mode 100644 index a62ec8049a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/18.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/18.png deleted file mode 100644 index d8efa0b3b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/19.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/19.png deleted file mode 100644 index 8bc7add121..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/2.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/2.png deleted file mode 100644 index 988c8adf29..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/20001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/20001.png deleted file mode 100644 index 0c3967bd7f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/20001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/23.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/23.png deleted file mode 100644 index 11e8480a64..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/24.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/24.png deleted file mode 100644 index 148bc34aa4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/25.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/25.png deleted file mode 100644 index 459a53267b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/26.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/26.png deleted file mode 100644 index 078159259d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/27.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/27.png deleted file mode 100644 index 3d39be635e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/28.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/28.png deleted file mode 100644 index 79ae00291b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29.png deleted file mode 100644 index 3a6712586a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29900.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29900.png deleted file mode 100644 index da5d85ecf6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29900.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29901.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29901.png deleted file mode 100644 index 2a84fa32d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29901.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29903.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29903.png deleted file mode 100644 index 1e9e0124d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/29903.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/3.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/3.png deleted file mode 100644 index 715c26c009..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/30.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/30.png deleted file mode 100644 index 981d58c6c0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/31.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/31.png deleted file mode 100644 index 50bf7d2a55..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/31.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/33.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/33.png deleted file mode 100644 index 8b09014d96..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/33.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/34.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/34.png deleted file mode 100644 index f366142f5d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/34.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/35.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/35.png deleted file mode 100644 index 0e581873d3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/36.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/36.png deleted file mode 100644 index 0836608f72..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/39.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/39.png deleted file mode 100644 index b662b85f96..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/4.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/4.png deleted file mode 100644 index 3faeefdf3a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/43.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/43.png deleted file mode 100644 index 683ec3772e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/45.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/45.png deleted file mode 100644 index 30b9a5b758..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/45.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/46.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/46.png deleted file mode 100644 index b01fb04262..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/46.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/47.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/47.png deleted file mode 100644 index b01fb04262..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/49.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/49.png deleted file mode 100644 index 6df61ee6d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/49.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/5.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/5.png deleted file mode 100644 index 4a93733451..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/51.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/51.png deleted file mode 100644 index b01fb04262..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/51.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/53.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/53.png deleted file mode 100644 index fec8d7228e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/54.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/54.png deleted file mode 100644 index fec8d7228e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/54.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/55.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/55.png deleted file mode 100644 index fec8d7228e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/55.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/57.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/57.png deleted file mode 100644 index 234a0995d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/57.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/59.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/59.png deleted file mode 100644 index ff8fc3dc7b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/59.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/6.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/6.png deleted file mode 100644 index 234a0995d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/60.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/60.png deleted file mode 100644 index 55b6781281..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/63.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/63.png deleted file mode 100644 index 234a0995d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/63.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/64.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/64.png deleted file mode 100644 index 75f2d34196..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/65.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/65.png deleted file mode 100644 index f92fd0b8d1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/65.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/66.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/66.png deleted file mode 100644 index cf5a64aac5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/66.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/69.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/69.png deleted file mode 100644 index 55b6781281..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/7.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/7.png deleted file mode 100644 index 7ee56acaf8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/70.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/70.png deleted file mode 100644 index bedd652f32..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/71.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/71.png deleted file mode 100644 index fd2e946a84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/71.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/73.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/73.png deleted file mode 100644 index fd2e946a84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/73.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/76.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/76.png deleted file mode 100644 index 6ba30931ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/76.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/77.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/77.png deleted file mode 100644 index fd2e946a84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/77.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/78.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/78.png deleted file mode 100644 index dde812e5c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/79.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/79.png deleted file mode 100644 index 7b6c503f14..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/8.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/8.png deleted file mode 100644 index 654b233cde..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/80.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/80.png deleted file mode 100644 index 7db1e48432..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/80.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/82.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/82.png deleted file mode 100644 index e4f277cba5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/82.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/83.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/83.png deleted file mode 100644 index 5d2d986140..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/83.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/84.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/84.png deleted file mode 100644 index 6ba30931ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/84.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/85.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/85.png deleted file mode 100644 index 5d2d986140..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/85.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/87.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/87.png deleted file mode 100644 index 5d2d986140..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/87.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/88.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/88.png deleted file mode 100644 index 2ab5914307..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/89.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/89.png deleted file mode 100644 index 3a929a86de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/9.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/9.png deleted file mode 100644 index b3a6426855..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/90.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/90.png deleted file mode 100644 index 2bb40e2c39..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/91.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/91.png deleted file mode 100644 index cf4a1db22c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/92.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/92.png deleted file mode 100644 index 49132e8acc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/93.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/93.png deleted file mode 100644 index 76390deb78..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/94.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/94.png deleted file mode 100644 index c8476161ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/95.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/95.png deleted file mode 100644 index 9beccbb2de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/96.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/96.png deleted file mode 100644 index b9400841cc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/97.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/97.png deleted file mode 100644 index 8732da7602..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/97.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/99.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/99.png deleted file mode 100644 index 3593ea9c2f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustSmall/99.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/1.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/1.png deleted file mode 100644 index 3d2cf9af75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10.png deleted file mode 100644 index c4a0637f85..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10001.png deleted file mode 100644 index 40a074e97c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10005.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10005.png deleted file mode 100644 index 9fc8c023c3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10009.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10009.png deleted file mode 100644 index a7614bc863..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10009.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10014.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10014.png deleted file mode 100644 index e06d88330f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10014.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10016.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10016.png deleted file mode 100644 index 09dc90ba6e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10016.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10017.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10017.png deleted file mode 100644 index 923c5e7af3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10017.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10018.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10018.png deleted file mode 100644 index 8d175c139f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10018.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10022.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10022.png deleted file mode 100644 index 7155f2f0bf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10023.png deleted file mode 100644 index 1ead2ce315..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10024.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10024.png deleted file mode 100644 index db9253fd5f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10035.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10035.png deleted file mode 100644 index 2e0266ae78..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10035.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10052.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10052.png deleted file mode 100644 index bd12401d66..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10052.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10053.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10053.png deleted file mode 100644 index d7c4748dc8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10054.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10054.png deleted file mode 100644 index 643b38d5f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10054.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10055.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10055.png deleted file mode 100644 index 20d8f9053d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10055.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10057.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10057.png deleted file mode 100644 index 90a5d7b924..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10057.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10063.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10063.png deleted file mode 100644 index c33d484cfe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10063.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10066.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10066.png deleted file mode 100644 index f33cd30cc8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10066.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10067.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10067.png deleted file mode 100644 index 27f0b899ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10067.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10068.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10068.png deleted file mode 100644 index 7d2382c599..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10068.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10070.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10070.png deleted file mode 100644 index 2106811a1e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10070.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10071.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10071.png deleted file mode 100644 index 6f7332bd46..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10071.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10072.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10072.png deleted file mode 100644 index 8b6b0a6c43..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10072.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10073.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10073.png deleted file mode 100644 index 9dc8bf448e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10073.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10074.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10074.png deleted file mode 100644 index 7b701e8d58..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10074.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10076.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10076.png deleted file mode 100644 index 567d5af7e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10076.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10078.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10078.png deleted file mode 100644 index 5042ab96d1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10078.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10082.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10082.png deleted file mode 100644 index d02aa7435c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10083.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10083.png deleted file mode 100644 index 812abcad23..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10084.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10084.png deleted file mode 100644 index 812abcad23..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10085.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10085.png deleted file mode 100644 index c4f2aa7280..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10093.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10093.png deleted file mode 100644 index a044ab09c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10093.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10096.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10096.png deleted file mode 100644 index 1b86b12814..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10097.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10097.png deleted file mode 100644 index 1912909d84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10098.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10098.png deleted file mode 100644 index 1100859307..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10099.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10099.png deleted file mode 100644 index 4d37965321..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/101.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/101.png deleted file mode 100644 index bbec2a6dbb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10100.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10100.png deleted file mode 100644 index 128be79313..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10100.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10101.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10101.png deleted file mode 100644 index 920df3d49b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10102.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10102.png deleted file mode 100644 index 826eaa7900..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10103.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10103.png deleted file mode 100644 index c3bfc5962e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10104.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10104.png deleted file mode 100644 index 7a26d3bac1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10105.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10105.png deleted file mode 100644 index 83d8efbcbf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10106.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10106.png deleted file mode 100644 index 7ea3897ffe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10108.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10108.png deleted file mode 100644 index a636c0ddfd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10108.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10109.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10109.png deleted file mode 100644 index 34bdc936ef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10110.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10110.png deleted file mode 100644 index 18f5006a8e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10111.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10111.png deleted file mode 100644 index c60dbb6eee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10112.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10112.png deleted file mode 100644 index ffc9067ff3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10113.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10113.png deleted file mode 100644 index 4701f175f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10113.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10114.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10114.png deleted file mode 100644 index 7e1f30c861..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10114.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10115.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10115.png deleted file mode 100644 index 52fdc5620d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/10115.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/102.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/102.png deleted file mode 100644 index c4ea9c33db..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/104.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/104.png deleted file mode 100644 index 5c8cc6a348..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11.png deleted file mode 100644 index c4a0637f85..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11000.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11000.png deleted file mode 100644 index f847784dfd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11001.png deleted file mode 100644 index 0b7079b857..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11002.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11002.png deleted file mode 100644 index 5df31366d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11002.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11003.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11003.png deleted file mode 100644 index 4c8d9cfb00..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11003.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11005.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11005.png deleted file mode 100644 index 6a56842384..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11005.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11006.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11006.png deleted file mode 100644 index 4d02eb3446..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11006.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11007.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11007.png deleted file mode 100644 index 814e8705cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11008.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11008.png deleted file mode 100644 index 7718456614..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11008.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11009.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11009.png deleted file mode 100644 index d53c494c17..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11009.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11011.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11011.png deleted file mode 100644 index 5df31366d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11011.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11012.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11012.png deleted file mode 100644 index 625db9c4c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11012.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11019.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11019.png deleted file mode 100644 index b49e46a29d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11019.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11020.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11020.png deleted file mode 100644 index c0f5001e37..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11020.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11021.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11021.png deleted file mode 100644 index baeb27fc44..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11021.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11022.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11022.png deleted file mode 100644 index c0f5001e37..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11023.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11023.png deleted file mode 100644 index 82132bc78d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11024.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11024.png deleted file mode 100644 index 6edbf438c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11025.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11025.png deleted file mode 100644 index fd2c201da1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11025.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11026.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11026.png deleted file mode 100644 index fd2c201da1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11026.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11027.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11027.png deleted file mode 100644 index 63e2d0104f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11027.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11028.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11028.png deleted file mode 100644 index 590c0e68db..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11028.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11029.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11029.png deleted file mode 100644 index 81792e0eb3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11029.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11030.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11030.png deleted file mode 100644 index 6edbf438c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11030.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11031.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11031.png deleted file mode 100644 index 6edbf438c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11031.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11032.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11032.png deleted file mode 100644 index 6edbf438c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11032.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11033.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11033.png deleted file mode 100644 index 6edbf438c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11033.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11034.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11034.png deleted file mode 100644 index 758baa01af..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11034.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11037.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11037.png deleted file mode 100644 index e0637fbe48..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11037.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11038.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11038.png deleted file mode 100644 index 7313c81d4e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11038.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11039.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11039.png deleted file mode 100644 index 77c992482b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11039.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11040.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11040.png deleted file mode 100644 index 4a9723d07c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11040.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11041.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11041.png deleted file mode 100644 index ebdd28b446..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11041.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11043.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11043.png deleted file mode 100644 index 47c11f4ee5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11043.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11047.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11047.png deleted file mode 100644 index fd2c201da1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11047.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11048.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11048.png deleted file mode 100644 index 1a95734d23..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11048.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11049.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11049.png deleted file mode 100644 index 1a829f0cf7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11049.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11050.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11050.png deleted file mode 100644 index ad611e0560..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11050.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11107.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11107.png deleted file mode 100644 index 2e29906139..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11107.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11108.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11108.png deleted file mode 100644 index 2e29906139..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11108.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11109.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11109.png deleted file mode 100644 index 1072e1912b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11110.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11110.png deleted file mode 100644 index 1c5dedce55..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11111.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11111.png deleted file mode 100644 index 7b7fe7b1dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11112.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11112.png deleted file mode 100644 index 7b7fe7b1dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11113.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11113.png deleted file mode 100644 index 7b7fe7b1dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11113.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11116.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11116.png deleted file mode 100644 index b8f3e2ffbb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11116.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11117.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11117.png deleted file mode 100644 index b8f3e2ffbb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11117.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11121.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11121.png deleted file mode 100644 index 0b5431994c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11121.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11122.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11122.png deleted file mode 100644 index 0b5431994c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11122.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11123.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11123.png deleted file mode 100644 index 9bc1dabc7c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11123.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11124.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11124.png deleted file mode 100644 index c69d4c9b4c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11124.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11125.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11125.png deleted file mode 100644 index 5fd547a921..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11125.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11126.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11126.png deleted file mode 100644 index 5fd547a921..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11126.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11127.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11127.png deleted file mode 100644 index 9b630cf44f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11127.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11128.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11128.png deleted file mode 100644 index 1457bbd2e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11128.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11129.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11129.png deleted file mode 100644 index 55cb33e761..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11129.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11303.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11303.png deleted file mode 100644 index 1922fb3ab3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11303.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11304.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11304.png deleted file mode 100644 index d766a9d418..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11304.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11305.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11305.png deleted file mode 100644 index 35d515ef2b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11305.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11306.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11306.png deleted file mode 100644 index 432b7dec38..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11306.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11312.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11312.png deleted file mode 100644 index e8e1a8610d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11314.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11314.png deleted file mode 100644 index 22224d2a90..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11314.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11446.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11446.png deleted file mode 100644 index 53a5d53f07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11446.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11447.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11447.png deleted file mode 100644 index 9c98bfced9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11447.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11449.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11449.png deleted file mode 100644 index 328ddc0ce6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11449.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11450.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11450.png deleted file mode 100644 index c9165896f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11450.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11451.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11451.png deleted file mode 100644 index fffaac2617..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11451.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11452.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11452.png deleted file mode 100644 index a00188826b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11452.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11453.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11453.png deleted file mode 100644 index fd2c201da1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11453.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11454.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11454.png deleted file mode 100644 index 614ad1118f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11454.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11455.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11455.png deleted file mode 100644 index 4f9ac5d2e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11455.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11456.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11456.png deleted file mode 100644 index d9ab57a01a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11456.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11457.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11457.png deleted file mode 100644 index 5197369dd1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11457.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11458.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11458.png deleted file mode 100644 index 3e046dd7f5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11458.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11459.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11459.png deleted file mode 100644 index 43f2125d95..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11459.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11464.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11464.png deleted file mode 100644 index ed534f27ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11464.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11465.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11465.png deleted file mode 100644 index c9948ee270..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11465.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11466.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11466.png deleted file mode 100644 index 1457bbd2e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11466.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11467.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11467.png deleted file mode 100644 index 31b1e0f30b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11467.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11468.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11468.png deleted file mode 100644 index 5fd547a921..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11468.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11472.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11472.png deleted file mode 100644 index 7302f227aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11472.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11498.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11498.png deleted file mode 100644 index 36720bbb1f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11498.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11501.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11501.png deleted file mode 100644 index c7a23b947d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11501.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11502.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11502.png deleted file mode 100644 index 2c1203a5d2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11502.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11503.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11503.png deleted file mode 100644 index 3de78d5a63..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/12.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/12.png deleted file mode 100644 index 77d93a968a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/12.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/13.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/13.png deleted file mode 100644 index cba4148d78..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/13.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/14.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/14.png deleted file mode 100644 index 203df906c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/14.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/15.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/15.png deleted file mode 100644 index 754a274f69..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/15.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/16.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/16.png deleted file mode 100644 index 90f7ba3e71..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/16.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/17.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/17.png deleted file mode 100644 index 021a73128e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/17.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/18.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/18.png deleted file mode 100644 index c35380ce59..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/18.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/19.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/19.png deleted file mode 100644 index 29790d4008..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/2.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/2.png deleted file mode 100644 index c36c6c4908..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/2.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/20001.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/20001.png deleted file mode 100644 index 14282a5b72..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/20001.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/23.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/23.png deleted file mode 100644 index 7487ab70a0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/24.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/24.png deleted file mode 100644 index a2da5f88d7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/25.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/25.png deleted file mode 100644 index 7f2e0646d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/26.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/26.png deleted file mode 100644 index 498ef6faab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/26.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/27.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/27.png deleted file mode 100644 index 973997b4c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/27.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/28.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/28.png deleted file mode 100644 index 4f22368a77..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/28.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29.png deleted file mode 100644 index 844d5aef44..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29900.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29900.png deleted file mode 100644 index 65464262c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29900.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29901.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29901.png deleted file mode 100644 index 1c89ce905c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29901.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29903.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29903.png deleted file mode 100644 index 929d46c236..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/29903.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/3.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/3.png deleted file mode 100644 index e374f46a93..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/30.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/30.png deleted file mode 100644 index a410ed95fa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/31.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/31.png deleted file mode 100644 index 732b3c982c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/31.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/33.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/33.png deleted file mode 100644 index cbd8bbdf60..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/33.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/34.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/34.png deleted file mode 100644 index 5854b24dba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/34.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/35.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/35.png deleted file mode 100644 index a058e92a6c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/36.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/36.png deleted file mode 100644 index 699a6bf2e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/39.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/39.png deleted file mode 100644 index bc4444e42c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/4.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/4.png deleted file mode 100644 index 31c4a1b6b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/43.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/43.png deleted file mode 100644 index a577d89d60..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/45.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/45.png deleted file mode 100644 index 446ccad6c5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/45.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/46.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/46.png deleted file mode 100644 index fc7b725580..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/46.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/47.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/47.png deleted file mode 100644 index fc7b725580..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/47.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/49.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/49.png deleted file mode 100644 index 2930ed0ef0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/49.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/5.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/5.png deleted file mode 100644 index 6030760fe5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/51.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/51.png deleted file mode 100644 index fc7b725580..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/51.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/53.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/53.png deleted file mode 100644 index 03f731a294..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/53.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/54.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/54.png deleted file mode 100644 index 03f731a294..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/54.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/55.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/55.png deleted file mode 100644 index 03f731a294..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/55.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/57.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/57.png deleted file mode 100644 index fd2c201da1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/57.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/59.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/59.png deleted file mode 100644 index a571fd20f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/59.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/6.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/6.png deleted file mode 100644 index fd2c201da1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/6.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/60.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/60.png deleted file mode 100644 index 96190b5075..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/60.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/63.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/63.png deleted file mode 100644 index fd2c201da1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/63.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/64.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/64.png deleted file mode 100644 index f8f76eda29..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/65.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/65.png deleted file mode 100644 index eb3e69556c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/65.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/66.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/66.png deleted file mode 100644 index 8819e09791..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/66.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/69.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/69.png deleted file mode 100644 index 96190b5075..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/69.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/7.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/7.png deleted file mode 100644 index bdefd61191..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/70.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/70.png deleted file mode 100644 index 1923c95969..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/70.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/71.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/71.png deleted file mode 100644 index fd6b074b07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/71.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/73.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/73.png deleted file mode 100644 index fd6b074b07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/73.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/76.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/76.png deleted file mode 100644 index 7905091128..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/76.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/77.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/77.png deleted file mode 100644 index fd6b074b07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/77.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/78.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/78.png deleted file mode 100644 index cf8d20d23e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/79.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/79.png deleted file mode 100644 index c81ebecced..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/79.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/8.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/8.png deleted file mode 100644 index 987dc4ad3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/80.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/80.png deleted file mode 100644 index ac4da3b75b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/80.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/82.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/82.png deleted file mode 100644 index cd988ea1ae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/82.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/83.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/83.png deleted file mode 100644 index 1ef5f26e03..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/83.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/84.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/84.png deleted file mode 100644 index 7905091128..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/84.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/85.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/85.png deleted file mode 100644 index 1ef5f26e03..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/85.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/87.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/87.png deleted file mode 100644 index 1ef5f26e03..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/87.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/88.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/88.png deleted file mode 100644 index 55f343dea9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/89.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/89.png deleted file mode 100644 index e5fe8e3986..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/9.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/9.png deleted file mode 100644 index eb87fd1fae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/90.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/90.png deleted file mode 100644 index 9f0ba863aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/91.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/91.png deleted file mode 100644 index 2a58598bf8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/92.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/92.png deleted file mode 100644 index 3eff51aee5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/93.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/93.png deleted file mode 100644 index 39b6a71905..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/93.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/94.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/94.png deleted file mode 100644 index bfc607b914..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/94.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/95.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/95.png deleted file mode 100644 index 77f74bcc84..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/95.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/96.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/96.png deleted file mode 100644 index 1ac7b6ae4e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/97.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/97.png deleted file mode 100644 index ee831de290..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/97.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/99.png b/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/99.png deleted file mode 100644 index 0b09157298..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGenerateddustTiny/99.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/1.png deleted file mode 100644 index 8fbc7557bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10022.png deleted file mode 100644 index 35416361ba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10023.png deleted file mode 100644 index 5ec8d2d40a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10024.png deleted file mode 100644 index 4279b367e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10053.png deleted file mode 100644 index 2b9d213797..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10082.png deleted file mode 100644 index 8507298f9e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10083.png deleted file mode 100644 index a2ea4f3caf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10084.png deleted file mode 100644 index a2ea4f3caf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10085.png deleted file mode 100644 index 74d98e9161..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10096.png deleted file mode 100644 index 3a9f0025a6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10097.png deleted file mode 100644 index 1d8944f212..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10098.png deleted file mode 100644 index 33fbbd58dc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10099.png deleted file mode 100644 index c5c269e721..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10101.png deleted file mode 100644 index b75f756489..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10102.png deleted file mode 100644 index b7cdef08bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10103.png deleted file mode 100644 index ed8009c6c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10104.png deleted file mode 100644 index e1f09f3e77..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10105.png deleted file mode 100644 index 22a79a0a76..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10106.png deleted file mode 100644 index 2d796bd584..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10109.png deleted file mode 100644 index ce9bbdc4e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10110.png deleted file mode 100644 index 1e4aebaf9e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10111.png deleted file mode 100644 index 34c3376ef7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10112.png deleted file mode 100644 index ea0ceb7f02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/104.png deleted file mode 100644 index 4fee7aa65c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11000.png deleted file mode 100644 index 449b4a0909..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11007.png deleted file mode 100644 index e77f360c0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11312.png deleted file mode 100644 index 46708ca64c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11499.png deleted file mode 100644 index fcadf17bd1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/19.png deleted file mode 100644 index efa2b7a47f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/20.png deleted file mode 100644 index d6a3665422..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/21.png deleted file mode 100644 index 4ecc1adc7f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/22.png deleted file mode 100644 index 6e71e08cfc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/23.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/24.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/25.png deleted file mode 100644 index 71da6df9f7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/3.png deleted file mode 100644 index ffe10359f6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/30.png deleted file mode 100644 index 01fae09fd2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/32237.png deleted file mode 100644 index da1474abca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/35.png deleted file mode 100644 index 3f54bda5c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/36.png deleted file mode 100644 index 718ac79c1e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/39.png deleted file mode 100644 index daac9fad60..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/4.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/40.png deleted file mode 100644 index 77091316d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/43.png deleted file mode 100644 index 52b7de9d4a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/5.png deleted file mode 100644 index ad54744c57..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/64.png deleted file mode 100644 index df40121b5b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/7.png deleted file mode 100644 index f87a9b0174..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/78.png deleted file mode 100644 index 3e83d2361a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/8.png deleted file mode 100644 index 7dc04104cf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/88.png deleted file mode 100644 index aaedfd5e17..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/89.png deleted file mode 100644 index 02cbc8067a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/9.png deleted file mode 100644 index 42fbf05cd0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/90.png deleted file mode 100644 index b4bbf10f25..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/91.png deleted file mode 100644 index 71225f1eef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/92.png deleted file mode 100644 index 2dad9dfa6c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/96.png deleted file mode 100644 index 0a23ca379f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedfoil/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10022.png deleted file mode 100644 index 130ba8cbea..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10024.png deleted file mode 100644 index 1711c42127..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10082.png deleted file mode 100644 index 3d58cccd99..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10083.png deleted file mode 100644 index 897c7d485f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10084.png deleted file mode 100644 index 897c7d485f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10085.png deleted file mode 100644 index fc245bb233..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10096.png deleted file mode 100644 index b000211795..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10097.png deleted file mode 100644 index 5677223cad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10099.png deleted file mode 100644 index b6c0f3b279..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10101.png deleted file mode 100644 index 80d7e2388e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10102.png deleted file mode 100644 index 903883fe46..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10103.png deleted file mode 100644 index 387f6ba49e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10104.png deleted file mode 100644 index e4543a4201..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10105.png deleted file mode 100644 index 71cb08bee3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10106.png deleted file mode 100644 index 957e2b03e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10109.png deleted file mode 100644 index 10b69d02d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10110.png deleted file mode 100644 index 62a13935c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10111.png deleted file mode 100644 index 714c04d46b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10112.png deleted file mode 100644 index 8715506d06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/88.png deleted file mode 100644 index 10266461d0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/89.png deleted file mode 100644 index 5ac31e2256..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/90.png deleted file mode 100644 index 535845acb5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/92.png deleted file mode 100644 index 816b3fb263..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/96.png deleted file mode 100644 index 57b27db51e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGt/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10022.png deleted file mode 100644 index f6ebb741f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10024.png deleted file mode 100644 index 3a5b520273..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10082.png deleted file mode 100644 index 62fc9133fe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10083.png deleted file mode 100644 index 8462667fec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10084.png deleted file mode 100644 index 8462667fec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10085.png deleted file mode 100644 index 0ae40d36b0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10096.png deleted file mode 100644 index 7a2b23df70..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10097.png deleted file mode 100644 index 00e1a45f5d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10099.png deleted file mode 100644 index 77e6bbb5a5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10101.png deleted file mode 100644 index 69c6753769..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10102.png deleted file mode 100644 index e2bb2c2546..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10103.png deleted file mode 100644 index 538a8a2109..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10104.png deleted file mode 100644 index b5a92bfbef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10105.png deleted file mode 100644 index 0f8256e3cd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10106.png deleted file mode 100644 index e7998804a8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10109.png deleted file mode 100644 index 614c5869e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10110.png deleted file mode 100644 index 00ef39fd1a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10111.png deleted file mode 100644 index 365d17dcca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10112.png deleted file mode 100644 index 03dd33f8eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/88.png deleted file mode 100644 index 9e82183c4e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/89.png deleted file mode 100644 index 57539939ec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/90.png deleted file mode 100644 index 8b7c22c8fc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/92.png deleted file mode 100644 index 27818caccf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/96.png deleted file mode 100644 index ecf322cebc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgearGtSmall/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/1.png deleted file mode 100644 index 6eecf8b422..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/10023.png deleted file mode 100644 index 3e8eba1302..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/11499.png deleted file mode 100644 index a82d8947ce..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/19.png deleted file mode 100644 index 4e618c4e82..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/20.png deleted file mode 100644 index 32ddcd5eae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/21.png deleted file mode 100644 index 4ebd9bfc3d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/22.png deleted file mode 100644 index c72bae37c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/23.png deleted file mode 100644 index febcac3f4e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/24.png deleted file mode 100644 index 539f8cbe1d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/25.png deleted file mode 100644 index 97ab22f430..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/35.png deleted file mode 100644 index 4465c08ae1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/36.png deleted file mode 100644 index 7789b4d6f6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/4.png deleted file mode 100644 index fedae8af28..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/43.png deleted file mode 100644 index c095ff8ed6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/5.png deleted file mode 100644 index e51fe8a34b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/7.png deleted file mode 100644 index 4e1d78cad5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/8.png deleted file mode 100644 index db2e8f4b43..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/89.png deleted file mode 100644 index 313a4ec31e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/9.png deleted file mode 100644 index c0030fb5cd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/91.png deleted file mode 100644 index 914dcd2708..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgem/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/1.png deleted file mode 100644 index 104e40c904..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/10023.png deleted file mode 100644 index 6a63678431..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/11499.png deleted file mode 100644 index f1eec725e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/19.png deleted file mode 100644 index 6ea199439b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/20.png deleted file mode 100644 index d29280d7cd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/21.png deleted file mode 100644 index f3a673e222..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/22.png deleted file mode 100644 index 25154d5b5f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/23.png deleted file mode 100644 index b6da0aca4f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/24.png deleted file mode 100644 index f59a4dbd07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/25.png deleted file mode 100644 index e1371e84b8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/35.png deleted file mode 100644 index 4159ff7ef2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/36.png deleted file mode 100644 index 284ffed69b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/4.png deleted file mode 100644 index f59a4dbd07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/43.png deleted file mode 100644 index e20f24a15b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/5.png deleted file mode 100644 index b0472cf994..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/7.png deleted file mode 100644 index 202e1111f2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/8.png deleted file mode 100644 index 06ea19c436..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/89.png deleted file mode 100644 index 40c17eac94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/9.png deleted file mode 100644 index 61fab96620..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/91.png deleted file mode 100644 index f6b5f5269c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemChipped/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/1.png deleted file mode 100644 index 58387150e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/10023.png deleted file mode 100644 index fc3d488fdd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/11499.png deleted file mode 100644 index b187d016e0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/19.png deleted file mode 100644 index a551bd859d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/20.png deleted file mode 100644 index 6c65c44803..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/21.png deleted file mode 100644 index f8e74dfd51..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/22.png deleted file mode 100644 index 5a20db0a99..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/23.png deleted file mode 100644 index c58104bf7d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/24.png deleted file mode 100644 index 48de437623..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/25.png deleted file mode 100644 index d4f532daba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/35.png deleted file mode 100644 index 13d2ddcc2f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/36.png deleted file mode 100644 index 596a001873..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/4.png deleted file mode 100644 index 48de437623..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/43.png deleted file mode 100644 index f65a093dde..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/5.png deleted file mode 100644 index 85aaaa33e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/7.png deleted file mode 100644 index b49a7aafca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/8.png deleted file mode 100644 index 8353055540..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/89.png deleted file mode 100644 index be46d7abfd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/9.png deleted file mode 100644 index 45719ad26b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/91.png deleted file mode 100644 index 5b07d8b5b0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemExquisite/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/1.png deleted file mode 100644 index 53a773dbbe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/10023.png deleted file mode 100644 index 38555f679b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/11499.png deleted file mode 100644 index 8fc11ed97f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/19.png deleted file mode 100644 index 8ed9b9ba47..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/20.png deleted file mode 100644 index fc8968c306..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/21.png deleted file mode 100644 index d4a798045d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/22.png deleted file mode 100644 index 4c9c3b46f8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/23.png deleted file mode 100644 index 87988df6d0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/24.png deleted file mode 100644 index 323b790375..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/25.png deleted file mode 100644 index cb7829fa45..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/35.png deleted file mode 100644 index 843bc53958..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/36.png deleted file mode 100644 index 737f222848..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/4.png deleted file mode 100644 index 323b790375..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/43.png deleted file mode 100644 index 26f151140a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/5.png deleted file mode 100644 index 478f95863a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/7.png deleted file mode 100644 index 85e062f8ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/8.png deleted file mode 100644 index 97aac89268..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/89.png deleted file mode 100644 index e2f62b6939..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/9.png deleted file mode 100644 index 20452f5af4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/91.png deleted file mode 100644 index 35d43daa90..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawed/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/1.png deleted file mode 100644 index 71132ac905..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/10023.png deleted file mode 100644 index 5e9c2546ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/11499.png deleted file mode 100644 index ef3df3f916..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/19.png deleted file mode 100644 index acb186eb37..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/20.png deleted file mode 100644 index 2e4a7322d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/21.png deleted file mode 100644 index ff86adac4e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/22.png deleted file mode 100644 index f7d3115e2e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/23.png deleted file mode 100644 index 2d667fab31..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/24.png deleted file mode 100644 index 4101ed2ae7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/25.png deleted file mode 100644 index b6e2e85833..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/35.png deleted file mode 100644 index b0044c146f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/36.png deleted file mode 100644 index db7f7ef7f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/4.png deleted file mode 100644 index 4101ed2ae7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/43.png deleted file mode 100644 index 9068bde9ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/5.png deleted file mode 100644 index 3b03eec3f3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/7.png deleted file mode 100644 index daabffe0ec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/8.png deleted file mode 100644 index fb0a01d829..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/89.png deleted file mode 100644 index 37a5e9ba86..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/9.png deleted file mode 100644 index 8cd18db60a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/91.png deleted file mode 100644 index 9f7a3f316e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedgemFlawless/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10022.png deleted file mode 100644 index 566fafa195..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10024.png deleted file mode 100644 index 9a2cb2abed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10053.png deleted file mode 100644 index 12182a7fcc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10082.png deleted file mode 100644 index af7b987f11..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10083.png deleted file mode 100644 index 0adc4da4d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10084.png deleted file mode 100644 index 0adc4da4d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10085.png deleted file mode 100644 index fe996e89c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10096.png deleted file mode 100644 index 23d9de602f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10097.png deleted file mode 100644 index 8cac1f6ba1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10098.png deleted file mode 100644 index 4560266dc6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10099.png deleted file mode 100644 index 01341720f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10101.png deleted file mode 100644 index 14ad389af2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10102.png deleted file mode 100644 index ad7657bced..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10103.png deleted file mode 100644 index 9503f2f6bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10104.png deleted file mode 100644 index 96862f8949..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10105.png deleted file mode 100644 index 2bd08b616b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10106.png deleted file mode 100644 index dc7e4d0035..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10109.png deleted file mode 100644 index 3adfe5babe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10110.png deleted file mode 100644 index c80599272e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10111.png deleted file mode 100644 index d65530fcfb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10112.png deleted file mode 100644 index f146afe4e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/104.png deleted file mode 100644 index 7dc7bb80d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11000.png deleted file mode 100644 index ebbaf9e1ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11007.png deleted file mode 100644 index 249abaa371..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11312.png deleted file mode 100644 index 5fbae7fe06..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11503.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11503.png deleted file mode 100644 index fc51264b67..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/3.png deleted file mode 100644 index c07dfba7dc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/30.png deleted file mode 100644 index 315f3b515b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/32237.png deleted file mode 100644 index b0f7943a88..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/39.png deleted file mode 100644 index 72f78f513d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/40.png deleted file mode 100644 index 34799b50aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/43.png deleted file mode 100644 index 1c9be01111..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/64.png deleted file mode 100644 index 168e20d721..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/78.png deleted file mode 100644 index e8079b68c3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/88.png deleted file mode 100644 index ff0c0f9a70..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/90.png deleted file mode 100644 index bb33cc2115..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/92.png deleted file mode 100644 index a779a2f381..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/96.png deleted file mode 100644 index a5f94d1db8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingot/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10022.png deleted file mode 100644 index ffa9242c74..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10024.png deleted file mode 100644 index 540b211a27..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10085.png deleted file mode 100644 index fc6c451fd9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10096.png deleted file mode 100644 index 41220b5061..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10097.png deleted file mode 100644 index de16026296..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10109.png deleted file mode 100644 index aab90a9329..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10110.png deleted file mode 100644 index ab68243a14..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10111.png deleted file mode 100644 index 1a94b95ac7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10112.png deleted file mode 100644 index 8d35bdb7a9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/88.png deleted file mode 100644 index c2fa727b86..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/90.png deleted file mode 100644 index ee1386e014..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/92.png deleted file mode 100644 index a789345290..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/96.png deleted file mode 100644 index 88d237e392..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotDouble/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10022.png deleted file mode 100644 index c7efb85fed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10024.png deleted file mode 100644 index c83336f7c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10053.png deleted file mode 100644 index 883fda4b7e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10082.png deleted file mode 100644 index ad91383b35..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10083.png deleted file mode 100644 index 95f56087bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10084.png deleted file mode 100644 index 95f56087bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10085.png deleted file mode 100644 index 92cb312fec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10096.png deleted file mode 100644 index ca3ae87885..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10097.png deleted file mode 100644 index 84c7962be5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10098.png deleted file mode 100644 index c53a5acdc8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10099.png deleted file mode 100644 index 3aa21a87dc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10101.png deleted file mode 100644 index 833a5251a4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10102.png deleted file mode 100644 index 11cd2b7f7f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10103.png deleted file mode 100644 index af740958d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10104.png deleted file mode 100644 index af6ee36fd2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10105.png deleted file mode 100644 index da56a019cd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10106.png deleted file mode 100644 index 825578c95f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10109.png deleted file mode 100644 index 0d0821dd53..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10110.png deleted file mode 100644 index e54d8ad89f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10111.png deleted file mode 100644 index 4709440a93..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10112.png deleted file mode 100644 index bc22102bff..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/104.png deleted file mode 100644 index 91b2b5bbe8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11000.png deleted file mode 100644 index 9d960258d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11007.png deleted file mode 100644 index 0af23e0983..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11312.png deleted file mode 100644 index d87c1ed68c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11503.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11503.png deleted file mode 100644 index 79c51208c3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/3.png deleted file mode 100644 index ade82565ce..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/30.png deleted file mode 100644 index 5f1b89f730..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/32237.png deleted file mode 100644 index 5e923ff764..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/39.png deleted file mode 100644 index 93d3f361b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/40.png deleted file mode 100644 index 286eeaa2de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/43.png deleted file mode 100644 index 02e53770b1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/64.png deleted file mode 100644 index c981fb1758..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/78.png deleted file mode 100644 index efee09e58e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/88.png deleted file mode 100644 index 4f33cb7b20..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/90.png deleted file mode 100644 index 2387add0e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/92.png deleted file mode 100644 index 63a6d06fff..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/96.png deleted file mode 100644 index 19ecf02fd2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotHot/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10022.png deleted file mode 100644 index fcea5f17f8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10024.png deleted file mode 100644 index 8590c89d90..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10085.png deleted file mode 100644 index 6e16562173..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10096.png deleted file mode 100644 index 8056c40e14..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10097.png deleted file mode 100644 index 4679884bad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10109.png deleted file mode 100644 index 0b596c7752..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10110.png deleted file mode 100644 index 17d3bab69e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10111.png deleted file mode 100644 index a7fcc0b54e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10112.png deleted file mode 100644 index 1c389591bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/88.png deleted file mode 100644 index b678c90445..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/90.png deleted file mode 100644 index cd7552d2f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/92.png deleted file mode 100644 index e9e939954d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/96.png deleted file mode 100644 index cb17526391..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuadruple/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10022.png deleted file mode 100644 index 01db6797c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10024.png deleted file mode 100644 index 4a2f264cfd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10085.png deleted file mode 100644 index a1d930727d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10096.png deleted file mode 100644 index bcdaa86c95..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10097.png deleted file mode 100644 index 83dd6a0747..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10109.png deleted file mode 100644 index 251b344d8e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10110.png deleted file mode 100644 index 857e6dabfb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10111.png deleted file mode 100644 index e58eb0520a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10112.png deleted file mode 100644 index fc54d0d1f6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/88.png deleted file mode 100644 index 31db9be4a0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/90.png deleted file mode 100644 index d25ba224f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/92.png deleted file mode 100644 index e313d1cbf1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/96.png deleted file mode 100644 index b68465f986..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotQuintuple/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10022.png deleted file mode 100644 index f67b0ff089..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10024.png deleted file mode 100644 index 60e87b8861..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10085.png deleted file mode 100644 index 9020466f5c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10096.png deleted file mode 100644 index bdba38a6e9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10097.png deleted file mode 100644 index b1ce376dea..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10109.png deleted file mode 100644 index b4af4229dc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10110.png deleted file mode 100644 index 0e487fdf6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10111.png deleted file mode 100644 index e1d1374374..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10112.png deleted file mode 100644 index 1239213f59..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/88.png deleted file mode 100644 index 28ccc20fcf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/90.png deleted file mode 100644 index 5776e442ae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/92.png deleted file mode 100644 index e58e5eb4c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/96.png deleted file mode 100644 index 81ba7768c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedingotTriple/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/1.png deleted file mode 100644 index 893e32330c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/10023.png deleted file mode 100644 index 00b186087b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/11499.png deleted file mode 100644 index 11ca0a7937..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/19.png deleted file mode 100644 index b9becd373b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/20.png deleted file mode 100644 index aaec2ba4ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/21.png deleted file mode 100644 index f01343f628..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/22.png deleted file mode 100644 index fd7a8bb571..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/23.png deleted file mode 100644 index 1d69c1bbc9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/24.png deleted file mode 100644 index 1e13425145..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/25.png deleted file mode 100644 index 7d172fafa1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/35.png deleted file mode 100644 index 4d9b979950..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/36.png deleted file mode 100644 index 368810a60f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/4.png deleted file mode 100644 index 1e13425145..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/43.png deleted file mode 100644 index 80c1792bcb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/5.png deleted file mode 100644 index 91b70c8f5f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/7.png deleted file mode 100644 index 38672cf822..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/8.png deleted file mode 100644 index 6c813485f2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/89.png deleted file mode 100644 index 03ff44e580..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/9.png deleted file mode 100644 index 032b1989dc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/91.png deleted file mode 100644 index e40de6c8f9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedlens/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10022.png deleted file mode 100644 index 3cbd58f6e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10024.png deleted file mode 100644 index df038e6e2e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10053.png deleted file mode 100644 index dc027de04a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10082.png deleted file mode 100644 index 7aeb8aa332..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10083.png deleted file mode 100644 index 9658a35cb4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10084.png deleted file mode 100644 index 9658a35cb4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10085.png deleted file mode 100644 index 600b39c00e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10096.png deleted file mode 100644 index 1a1aac9ab6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10097.png deleted file mode 100644 index 0c9b2cc087..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10098.png deleted file mode 100644 index d8e5d2761b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10099.png deleted file mode 100644 index 4c7fec08ce..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10101.png deleted file mode 100644 index 3eea133854..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10102.png deleted file mode 100644 index cdeea09373..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10103.png deleted file mode 100644 index d0a24f2170..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10104.png deleted file mode 100644 index ef2e2b0e12..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10105.png deleted file mode 100644 index 3d7138d5f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10106.png deleted file mode 100644 index 87c1c9ec27..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10109.png deleted file mode 100644 index 104a1417dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10110.png deleted file mode 100644 index 8b2f505f57..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10111.png deleted file mode 100644 index ab9e777651..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10112.png deleted file mode 100644 index 8febeaeb64..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/104.png deleted file mode 100644 index ee987e3b70..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11000.png deleted file mode 100644 index 55fa7163f8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11007.png deleted file mode 100644 index ca0429fe1e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11312.png deleted file mode 100644 index 318f3374ef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11503.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11503.png deleted file mode 100644 index 70bc4800e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/11503.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/3.png deleted file mode 100644 index 4bbfa5437f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/30.png deleted file mode 100644 index 445f482288..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/32237.png deleted file mode 100644 index ffe6228060..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/39.png deleted file mode 100644 index b1bfbd5ff6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/40.png deleted file mode 100644 index 650019b3ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/43.png deleted file mode 100644 index 89b4792037..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/64.png deleted file mode 100644 index ea5a6d3e42..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/78.png deleted file mode 100644 index 9c3f569c96..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/88.png deleted file mode 100644 index bda908c9a5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/90.png deleted file mode 100644 index 7d55aeddae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/92.png deleted file mode 100644 index 9b9bbd0100..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/96.png deleted file mode 100644 index 86e228667d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratednugget/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/1.png deleted file mode 100644 index 24fd5885fd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10022.png deleted file mode 100644 index 07e899bdbf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10023.png deleted file mode 100644 index ffb9c6c35c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10024.png deleted file mode 100644 index a81d89a3c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10053.png deleted file mode 100644 index bbd229be5c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10082.png deleted file mode 100644 index fa3aac3e86..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10083.png deleted file mode 100644 index 3909f5e395..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10084.png deleted file mode 100644 index 3909f5e395..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10085.png deleted file mode 100644 index b64acc2a0f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10096.png deleted file mode 100644 index d43743fc27..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10097.png deleted file mode 100644 index 59751045ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10098.png deleted file mode 100644 index 41209674c5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10099.png deleted file mode 100644 index 815c0e29e2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10101.png deleted file mode 100644 index 43eb49c5e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10102.png deleted file mode 100644 index 6e0ad8dcf0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10103.png deleted file mode 100644 index 52181cda11..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10104.png deleted file mode 100644 index e15c7137c5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10105.png deleted file mode 100644 index 4a3c3c9a60..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10106.png deleted file mode 100644 index 64e607cc64..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10109.png deleted file mode 100644 index cd31f66055..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10110.png deleted file mode 100644 index d57dc8f48c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10111.png deleted file mode 100644 index 5eae7e8736..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10112.png deleted file mode 100644 index 36b9e407d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/104.png deleted file mode 100644 index f3ebea31e1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11000.png deleted file mode 100644 index 8041b70021..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11007.png deleted file mode 100644 index 7ed7f9ab75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11312.png deleted file mode 100644 index 5f040d34f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11499.png deleted file mode 100644 index 271935666a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/19.png deleted file mode 100644 index c2e44a5bf1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/20.png deleted file mode 100644 index 4dda744e17..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/21.png deleted file mode 100644 index 93e7050271..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/22.png deleted file mode 100644 index f277e81ac2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/23.png deleted file mode 100644 index e4f45f4645..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/24.png deleted file mode 100644 index 3917e9e0d3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/25.png deleted file mode 100644 index ee0fe01908..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/3.png deleted file mode 100644 index 38e3f0f830..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/30.png deleted file mode 100644 index 1d17e411b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/32237.png deleted file mode 100644 index 2d1a5b7fca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/35.png deleted file mode 100644 index 0857fc17dd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/36.png deleted file mode 100644 index d374edd734..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/39.png deleted file mode 100644 index d03ff7e663..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/4.png deleted file mode 100644 index 9020a11593..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/40.png deleted file mode 100644 index ed2d5eea25..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/43.png deleted file mode 100644 index 09ca1cede1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/5.png deleted file mode 100644 index ff48503bf9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/64.png deleted file mode 100644 index 1ee7145c78..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/7.png deleted file mode 100644 index 5f7da45674..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/78.png deleted file mode 100644 index 161562768d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/8.png deleted file mode 100644 index 6a72e1a839..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/88.png deleted file mode 100644 index 2879d1dcc8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/89.png deleted file mode 100644 index 33c49bcc51..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/9.png deleted file mode 100644 index e48d155f2c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/90.png deleted file mode 100644 index 207d03675c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/91.png deleted file mode 100644 index 7d2e53c0bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/92.png deleted file mode 100644 index 20902505d7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/96.png deleted file mode 100644 index 3dd934c618..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplate/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10022.png deleted file mode 100644 index 5898b4a7b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10024.png deleted file mode 100644 index dbc066a069..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10085.png deleted file mode 100644 index 6915c6689d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10096.png deleted file mode 100644 index 50404909f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10097.png deleted file mode 100644 index d363adc0d7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10109.png deleted file mode 100644 index 0e97c65e3c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10110.png deleted file mode 100644 index 31376b5954..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10111.png deleted file mode 100644 index c7784d645e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10112.png deleted file mode 100644 index 9ede934281..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/88.png deleted file mode 100644 index 5d01d4725a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/90.png deleted file mode 100644 index 9c604ef2ea..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/92.png deleted file mode 100644 index 9785d5899b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/96.png deleted file mode 100644 index 67be6e8242..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDense/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10022.png deleted file mode 100644 index 0dd0267f57..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10024.png deleted file mode 100644 index 1ec2b5e356..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10085.png deleted file mode 100644 index 471137aba9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10096.png deleted file mode 100644 index c5a0333031..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10097.png deleted file mode 100644 index aab07ff262..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10109.png deleted file mode 100644 index 451f6101f7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10110.png deleted file mode 100644 index c4a3a7956e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10111.png deleted file mode 100644 index ee9818862f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10112.png deleted file mode 100644 index c5edabaf29..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/88.png deleted file mode 100644 index 3403ff1158..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/90.png deleted file mode 100644 index 8bc50cd1bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/92.png deleted file mode 100644 index 7af7c449be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/96.png deleted file mode 100644 index 44450b9038..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateDouble/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10022.png deleted file mode 100644 index 7ef9f3fa04..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10024.png deleted file mode 100644 index fc81f956e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10085.png deleted file mode 100644 index c237a25aca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10096.png deleted file mode 100644 index 4d944e5853..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10097.png deleted file mode 100644 index 46977dc8cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10109.png deleted file mode 100644 index 205f2d103b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10110.png deleted file mode 100644 index d31fa8fb48..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10111.png deleted file mode 100644 index f0f53a2fad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10112.png deleted file mode 100644 index 23362f46d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/88.png deleted file mode 100644 index fb610a1da7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/90.png deleted file mode 100644 index c49de6e0a4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/92.png deleted file mode 100644 index a30910ef2e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/96.png deleted file mode 100644 index 632b409199..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuadruple/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10022.png deleted file mode 100644 index 34201d565b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10024.png deleted file mode 100644 index 477260dbdb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10085.png deleted file mode 100644 index 030a7ea1d7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10096.png deleted file mode 100644 index a52517bab1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10097.png deleted file mode 100644 index 7e4578e964..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10109.png deleted file mode 100644 index ba1daa5daf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10110.png deleted file mode 100644 index b75d1ddbef..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10111.png deleted file mode 100644 index e44242ebcc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10112.png deleted file mode 100644 index 744f08b0c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/88.png deleted file mode 100644 index 6012d06238..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/90.png deleted file mode 100644 index 4d2f348d40..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/92.png deleted file mode 100644 index 360e745738..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/96.png deleted file mode 100644 index 4856a7d727..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateQuintuple/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10022.png deleted file mode 100644 index e864133d7e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10024.png deleted file mode 100644 index b1b48ba02a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10085.png deleted file mode 100644 index 55c9998af6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10096.png deleted file mode 100644 index faf0bf3bc2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10097.png deleted file mode 100644 index c61bde9b82..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10109.png deleted file mode 100644 index 69984115b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10110.png deleted file mode 100644 index 2470a0061e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10111.png deleted file mode 100644 index a99dccbf83..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10112.png deleted file mode 100644 index dfc7357297..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/88.png deleted file mode 100644 index fe1659949d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/90.png deleted file mode 100644 index b98ea68182..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/92.png deleted file mode 100644 index 072a8a8bb9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/96.png deleted file mode 100644 index 3e8f48d24d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedplateTriple/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10022.png deleted file mode 100644 index 56aec0db5a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10024.png deleted file mode 100644 index 7e50a4eec5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10082.png deleted file mode 100644 index bab68fccc0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10083.png deleted file mode 100644 index 033353f3af..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10084.png deleted file mode 100644 index 033353f3af..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10085.png deleted file mode 100644 index 9b4c2396df..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10096.png deleted file mode 100644 index c56c7075bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10097.png deleted file mode 100644 index 8a727f2196..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10099.png deleted file mode 100644 index e365c4b0bb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10101.png deleted file mode 100644 index 4a865bb755..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10102.png deleted file mode 100644 index 2917ad938a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10103.png deleted file mode 100644 index a81e5a3a07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10104.png deleted file mode 100644 index 43433c9ea9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10105.png deleted file mode 100644 index 0f21c88cf1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10106.png deleted file mode 100644 index 5bdd170e10..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10109.png deleted file mode 100644 index 5e210472a5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10110.png deleted file mode 100644 index b88de9401c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10111.png deleted file mode 100644 index 08bb29a362..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10112.png deleted file mode 100644 index caa900cf6f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/88.png deleted file mode 100644 index c35a8fe9d0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/89.png deleted file mode 100644 index 3dc9f52c5c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/90.png deleted file mode 100644 index 79438a2660..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/92.png deleted file mode 100644 index fd34d428fa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedring/96.png deleted file mode 100644 index d85ec2bc62..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedring/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10022.png deleted file mode 100644 index 26ae104c4d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10024.png deleted file mode 100644 index 03d4de1734..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10082.png deleted file mode 100644 index 0480effba2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10083.png deleted file mode 100644 index 5ff4b234e7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10084.png deleted file mode 100644 index 5ff4b234e7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10085.png deleted file mode 100644 index dabdf32b89..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10096.png deleted file mode 100644 index 8a00d2b5fc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10097.png deleted file mode 100644 index 95796b74bf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10099.png deleted file mode 100644 index aa51168844..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10101.png deleted file mode 100644 index e5273ae9c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10102.png deleted file mode 100644 index bc13fc4006..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10103.png deleted file mode 100644 index 93f1db4bdb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10104.png deleted file mode 100644 index 77867f5475..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10105.png deleted file mode 100644 index 75ebf34e10..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10106.png deleted file mode 100644 index b9f645059e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10109.png deleted file mode 100644 index 2376ba58f8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10110.png deleted file mode 100644 index 26ed3900c4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10111.png deleted file mode 100644 index 3061cfd111..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10112.png deleted file mode 100644 index 2126e54f2b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/88.png deleted file mode 100644 index b50dc8bb37..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/89.png deleted file mode 100644 index 5d027325d8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/90.png deleted file mode 100644 index ade0ccfda7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/92.png deleted file mode 100644 index 011f383c63..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/96.png deleted file mode 100644 index b32b068df0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedrotor/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10022.png deleted file mode 100644 index 44f174e17e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10024.png deleted file mode 100644 index fe4f70f80a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10082.png deleted file mode 100644 index e4db91a023..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10083.png deleted file mode 100644 index 5c8909d70b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10084.png deleted file mode 100644 index 5c8909d70b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10085.png deleted file mode 100644 index ca6617e364..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10096.png deleted file mode 100644 index 3e0c85a1ee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10097.png deleted file mode 100644 index eb407f4463..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10099.png deleted file mode 100644 index 2912162d68..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10101.png deleted file mode 100644 index 2e7133656e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10102.png deleted file mode 100644 index 5c5105099d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10103.png deleted file mode 100644 index b3b115aefb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10104.png deleted file mode 100644 index 700599a620..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10105.png deleted file mode 100644 index c7aa4e6008..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10106.png deleted file mode 100644 index aa69f9c357..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10109.png deleted file mode 100644 index f87fcde742..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10110.png deleted file mode 100644 index e90cdad329..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10111.png deleted file mode 100644 index ee92cd3ffc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10112.png deleted file mode 100644 index 197d9db24f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/88.png deleted file mode 100644 index 8c0110d2da..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/89.png deleted file mode 100644 index 0798b4585b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/90.png deleted file mode 100644 index 6a9496a9ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/92.png deleted file mode 100644 index 019eaaf54a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/96.png deleted file mode 100644 index e0fff5ad20..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedscrew/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10022.png deleted file mode 100644 index 9639fddc37..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10024.png deleted file mode 100644 index a8fbfb00d0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10082.png deleted file mode 100644 index 0de3550f59..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10083.png deleted file mode 100644 index 6ff4f5d3f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10084.png deleted file mode 100644 index 6ff4f5d3f1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10085.png deleted file mode 100644 index e06632cb68..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10096.png deleted file mode 100644 index cb6c7861c0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10097.png deleted file mode 100644 index c654270ed4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10099.png deleted file mode 100644 index 9a70adc178..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10101.png deleted file mode 100644 index 63b1ef57e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10102.png deleted file mode 100644 index 91a91217b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10103.png deleted file mode 100644 index a4aceb5e63..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10104.png deleted file mode 100644 index 49db15b789..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10105.png deleted file mode 100644 index 0acdb99ab0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10106.png deleted file mode 100644 index de305a5645..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10109.png deleted file mode 100644 index 7a18b122ff..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10110.png deleted file mode 100644 index dd058becb8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10111.png deleted file mode 100644 index 255ee420fb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10112.png deleted file mode 100644 index d55f1fb7be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/88.png deleted file mode 100644 index 9bf79ce91f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/89.png deleted file mode 100644 index 28c4e22ce9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/90.png deleted file mode 100644 index 8ee723256a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/92.png deleted file mode 100644 index 786d41c5de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/96.png deleted file mode 100644 index 717a46bcc6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspring/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10022.png deleted file mode 100644 index 08061f2548..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10024.png deleted file mode 100644 index 90139f7a29..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10082.png deleted file mode 100644 index 6a1bc10088..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10083.png deleted file mode 100644 index 6c3a271754..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10084.png deleted file mode 100644 index 6c3a271754..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10085.png deleted file mode 100644 index 7346e09866..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10096.png deleted file mode 100644 index ba00ddccf0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10097.png deleted file mode 100644 index f5b148909d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10099.png deleted file mode 100644 index c2ce89e2f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10101.png deleted file mode 100644 index c6c1c56e3a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10102.png deleted file mode 100644 index 71af0aabb5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10103.png deleted file mode 100644 index ed9cd96ab2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10104.png deleted file mode 100644 index 8f1fbd8db1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10105.png deleted file mode 100644 index d42aff8c35..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10106.png deleted file mode 100644 index c0df1de133..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10109.png deleted file mode 100644 index 01103db349..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10110.png deleted file mode 100644 index c31696f458..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10111.png deleted file mode 100644 index 2f19adca17..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10112.png deleted file mode 100644 index 83b2c8025e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/88.png deleted file mode 100644 index 5515707ddd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/89.png deleted file mode 100644 index fd55ffc1fe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/90.png deleted file mode 100644 index feac53a244..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/92.png deleted file mode 100644 index 42da043028..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/96.png deleted file mode 100644 index 38f8114525..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedspringSmall/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/1.png deleted file mode 100644 index 34e5c188f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10022.png deleted file mode 100644 index 14ef6b382d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10023.png deleted file mode 100644 index 67b2f033c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10024.png deleted file mode 100644 index 35978ce9dc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10053.png deleted file mode 100644 index 4588af17e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10082.png deleted file mode 100644 index 05d1f7e9e6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10083.png deleted file mode 100644 index 30f55ecf8d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10084.png deleted file mode 100644 index 30f55ecf8d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10085.png deleted file mode 100644 index 2fbabc4190..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10096.png deleted file mode 100644 index ac05aa06e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10097.png deleted file mode 100644 index 5d5f0c2851..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10098.png deleted file mode 100644 index f460440a65..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10099.png deleted file mode 100644 index 15881f962d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10101.png deleted file mode 100644 index d6ce76396a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10102.png deleted file mode 100644 index f7926d90b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10103.png deleted file mode 100644 index 58f1a2407a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10104.png deleted file mode 100644 index b622f3f8eb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10105.png deleted file mode 100644 index 01684e2af8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10106.png deleted file mode 100644 index 739d5ec9a7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10109.png deleted file mode 100644 index d231d292d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10110.png deleted file mode 100644 index 7cec1ed939..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10111.png deleted file mode 100644 index c699f7bddb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10112.png deleted file mode 100644 index 514a7537d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/104.png deleted file mode 100644 index d92d1c3293..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11000.png deleted file mode 100644 index d4bff3144f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11007.png deleted file mode 100644 index 9e9731d390..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11312.png deleted file mode 100644 index 078096b5ec..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11499.png deleted file mode 100644 index 63b851ffe2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/19.png deleted file mode 100644 index 5f459ff919..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/20.png deleted file mode 100644 index 9d17874a57..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/21.png deleted file mode 100644 index bf6a7547bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/22.png deleted file mode 100644 index 454ac0db5d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/23.png deleted file mode 100644 index e8af39523b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/24.png deleted file mode 100644 index 79c7dbd347..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/25.png deleted file mode 100644 index 2a0b5a0164..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/3.png deleted file mode 100644 index a95a5eb3c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/30.png deleted file mode 100644 index 31db4e4056..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/32237.png deleted file mode 100644 index b1dd62ed90..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/35.png deleted file mode 100644 index 5e26762ca3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/36.png deleted file mode 100644 index aa95ce0465..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/39.png deleted file mode 100644 index b1456c272c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/4.png deleted file mode 100644 index 8eb23105b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/40.png deleted file mode 100644 index 0125001f3e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/43.png deleted file mode 100644 index 9d8a7acde7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/5.png deleted file mode 100644 index a1128ced39..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/64.png deleted file mode 100644 index 663c961f3b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/7.png deleted file mode 100644 index df3a9b59e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/78.png deleted file mode 100644 index 651ae6b2b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/8.png deleted file mode 100644 index b85b5f8396..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/88.png deleted file mode 100644 index d936e7b7ed..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/89.png deleted file mode 100644 index e125da6621..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/9.png deleted file mode 100644 index 0685560fff..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/90.png deleted file mode 100644 index b2e54544ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/91.png deleted file mode 100644 index e6903b3936..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/92.png deleted file mode 100644 index 3f40acc5f4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/96.png deleted file mode 100644 index cee3b9b17e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstick/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/1.png deleted file mode 100644 index 19854b7dc8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10022.png deleted file mode 100644 index 40faa8dec8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10023.png deleted file mode 100644 index 9dc36c5f2c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10024.png deleted file mode 100644 index 49f3dc8485..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10053.png deleted file mode 100644 index 595576f989..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10082.png deleted file mode 100644 index f0353c3cfb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10083.png deleted file mode 100644 index 232a44b431..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10084.png deleted file mode 100644 index 232a44b431..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10085.png deleted file mode 100644 index 7a9ea41924..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10096.png deleted file mode 100644 index fe219d17a2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10097.png deleted file mode 100644 index 1ddb6b7d80..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10098.png deleted file mode 100644 index 350c930ffb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10099.png deleted file mode 100644 index 2cd5599b70..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10101.png deleted file mode 100644 index 07bbc1c9b9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10102.png deleted file mode 100644 index 9243db3638..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10103.png deleted file mode 100644 index f63d85a07e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10104.png deleted file mode 100644 index a9c5ef9171..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10105.png deleted file mode 100644 index ba663c47cd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10106.png deleted file mode 100644 index f8b19b3425..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10109.png deleted file mode 100644 index c440b3089a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10110.png deleted file mode 100644 index 6086c341f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10111.png deleted file mode 100644 index 2a7a30717e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10112.png deleted file mode 100644 index 9cd7f72642..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/104.png deleted file mode 100644 index 38c07fbed4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11000.png deleted file mode 100644 index d0e3ee5dbe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11007.png deleted file mode 100644 index 86f466e16d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11312.png deleted file mode 100644 index 2e1d661f80..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11499.png deleted file mode 100644 index 3c340e55ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/19.png deleted file mode 100644 index 12a7adf783..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/20.png deleted file mode 100644 index 8ebb0167ce..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/21.png deleted file mode 100644 index b0074d6bbd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/22.png deleted file mode 100644 index 2459962f07..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/23.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/24.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/25.png deleted file mode 100644 index db466af619..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/3.png deleted file mode 100644 index 68a54427d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/30.png deleted file mode 100644 index 31099b11d3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/32237.png deleted file mode 100644 index 7073b7b474..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/35.png deleted file mode 100644 index 9321bb5de4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/36.png deleted file mode 100644 index 1cb17e94bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/39.png deleted file mode 100644 index 2297dc9713..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/4.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/40.png deleted file mode 100644 index 3cddf281f0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/43.png deleted file mode 100644 index ce95cc598e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/5.png deleted file mode 100644 index f492f206d0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/64.png deleted file mode 100644 index 6730e7c271..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/7.png deleted file mode 100644 index 316cbc4dee..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/78.png deleted file mode 100644 index 120b07d361..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/8.png deleted file mode 100644 index 0a5dd604ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/88.png deleted file mode 100644 index c218e745e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/89.png deleted file mode 100644 index 32ad171101..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/9.png deleted file mode 100644 index 69ab3fe964..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/90.png deleted file mode 100644 index 50fbc7a5c8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/91.png deleted file mode 100644 index 5da3f8bb0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/92.png deleted file mode 100644 index 506d64e9c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/96.png deleted file mode 100644 index a6b6537fdf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedstickLong/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/1.png deleted file mode 100644 index 3c06b7f9e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10022.png deleted file mode 100644 index 90f535d780..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10023.png deleted file mode 100644 index 9d9fae5453..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10024.png deleted file mode 100644 index 3e0baf954e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10053.png deleted file mode 100644 index 0b3fda81b6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10082.png deleted file mode 100644 index 70cde2aa3f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10083.png deleted file mode 100644 index e6e996a382..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10084.png deleted file mode 100644 index e6e996a382..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10085.png deleted file mode 100644 index ae8bf15e56..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10096.png deleted file mode 100644 index 2e516b17c2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10097.png deleted file mode 100644 index a07ca0fb9c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10098.png deleted file mode 100644 index c0f0ab237c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10099.png deleted file mode 100644 index d3543c680b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10101.png deleted file mode 100644 index 6b19fb3ebf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10102.png deleted file mode 100644 index 151865bd6d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10103.png deleted file mode 100644 index 6392529c02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10104.png deleted file mode 100644 index c5cdac26ae..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10105.png deleted file mode 100644 index 268f29afba..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10106.png deleted file mode 100644 index 885d0562df..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10109.png deleted file mode 100644 index c3b641a4b3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10110.png deleted file mode 100644 index 3db127712d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10111.png deleted file mode 100644 index e77d3c0c73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10112.png deleted file mode 100644 index 290e1c85b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/104.png deleted file mode 100644 index a4273b49b7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11000.png deleted file mode 100644 index 435f8e7bd1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11007.png deleted file mode 100644 index c6749f80be..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11312.png deleted file mode 100644 index 21eec69573..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11499.png deleted file mode 100644 index bf10122bf1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/19.png deleted file mode 100644 index 0a52141847..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/20.png deleted file mode 100644 index 880a91898b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/21.png deleted file mode 100644 index 983f618f05..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/22.png deleted file mode 100644 index 24e94b18cc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/23.png deleted file mode 100644 index 82d168ccbc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/24.png deleted file mode 100644 index bf7b4507bf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/25.png deleted file mode 100644 index a1003dee0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/3.png deleted file mode 100644 index ebfa97e5d5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/30.png deleted file mode 100644 index 635fafc8f8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/32237.png deleted file mode 100644 index 875596e2a5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/35.png deleted file mode 100644 index 61215683b8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/36.png deleted file mode 100644 index 666b950363..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/39.png deleted file mode 100644 index 2179862a02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/4.png deleted file mode 100644 index bf7b4507bf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/40.png deleted file mode 100644 index 79b3b33ae3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/43.png deleted file mode 100644 index c1ebf59445..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/5.png deleted file mode 100644 index a30757547f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/64.png deleted file mode 100644 index 4e2a6804d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/7.png deleted file mode 100644 index 86bb60b4e1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/78.png deleted file mode 100644 index 6b1ded98e1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/8.png deleted file mode 100644 index f074cfcaf0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/88.png deleted file mode 100644 index 9a8841906c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/89.png deleted file mode 100644 index b9b38f0751..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/9.png deleted file mode 100644 index 8774f881e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/90.png deleted file mode 100644 index 86fe7ac95e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/91.png deleted file mode 100644 index 85e3315453..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/92.png deleted file mode 100644 index 2e3d1538c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/96.png deleted file mode 100644 index df8c2eeaeb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadHammer/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/1.png deleted file mode 100644 index b67229a664..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10022.png deleted file mode 100644 index 889a967e19..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10023.png deleted file mode 100644 index 938119bd81..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10024.png deleted file mode 100644 index 09e259e847..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10053.png deleted file mode 100644 index 853105d3df..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10082.png deleted file mode 100644 index 5fd210bfdf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10083.png deleted file mode 100644 index 179c8fb6bf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10084.png deleted file mode 100644 index 179c8fb6bf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10085.png deleted file mode 100644 index e85785824f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10096.png deleted file mode 100644 index f91b6bb3bd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10097.png deleted file mode 100644 index b429b1360d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10098.png deleted file mode 100644 index 3185f1c9d9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10099.png deleted file mode 100644 index 81a260b5b0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10101.png deleted file mode 100644 index 619a1a4300..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10102.png deleted file mode 100644 index af81d26ef5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10103.png deleted file mode 100644 index 0faa5bd0ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10104.png deleted file mode 100644 index b19165bec0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10105.png deleted file mode 100644 index 93ac70ebd2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10106.png deleted file mode 100644 index 4a699409fd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10109.png deleted file mode 100644 index 7770af8327..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10110.png deleted file mode 100644 index 1f7e015512..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10111.png deleted file mode 100644 index 09afa50ce4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10112.png deleted file mode 100644 index 7607ddea02..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/104.png deleted file mode 100644 index 20e542a3b8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11000.png deleted file mode 100644 index 6d653fc4a1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11007.png deleted file mode 100644 index 1cc2fd6fe8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11312.png deleted file mode 100644 index ed592842d6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11499.png deleted file mode 100644 index 484763a834..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/19.png deleted file mode 100644 index 6c57a2d29d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/20.png deleted file mode 100644 index 868d164dbc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/21.png deleted file mode 100644 index e5593b0fe6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/22.png deleted file mode 100644 index 9bc77122e5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/23.png deleted file mode 100644 index 7c73d95cc0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/24.png deleted file mode 100644 index b888eb6618..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/25.png deleted file mode 100644 index c5f54eb155..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/3.png deleted file mode 100644 index 4b53429f48..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/30.png deleted file mode 100644 index 37f9ad4162..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/32237.png deleted file mode 100644 index 08992c1c5b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/35.png deleted file mode 100644 index ee5e11e662..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/36.png deleted file mode 100644 index 1eb91bd8c5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/39.png deleted file mode 100644 index ed920440aa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/4.png deleted file mode 100644 index b888eb6618..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/40.png deleted file mode 100644 index 26315f0526..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/43.png deleted file mode 100644 index 8bed5161d4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/5.png deleted file mode 100644 index d67dfbf05a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/64.png deleted file mode 100644 index c7d60321ea..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/7.png deleted file mode 100644 index 2039bcc3ac..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/78.png deleted file mode 100644 index a9eb43f1b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/8.png deleted file mode 100644 index c9ad7da8fa..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/88.png deleted file mode 100644 index dcbb30e226..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/89.png deleted file mode 100644 index 0ac45269fe..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/9.png deleted file mode 100644 index 2ce1293f3a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/90.png deleted file mode 100644 index f450b46428..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/91.png deleted file mode 100644 index 948c84fb8b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/92.png deleted file mode 100644 index 5a807939de..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/96.png deleted file mode 100644 index 36a382bde4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadSaw/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/1.png deleted file mode 100644 index 5aaee58b42..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10022.png deleted file mode 100644 index 698cc793c6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10023.png deleted file mode 100644 index 7f3c17b348..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10024.png deleted file mode 100644 index c1b086a894..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10053.png deleted file mode 100644 index 452120623a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10082.png deleted file mode 100644 index 4851feca23..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10083.png deleted file mode 100644 index 18d1c2b755..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10084.png deleted file mode 100644 index 18d1c2b755..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10085.png deleted file mode 100644 index 0122983735..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10096.png deleted file mode 100644 index e278dc7aa2..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10097.png deleted file mode 100644 index cb62c04720..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10098.png deleted file mode 100644 index 0243812786..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10099.png deleted file mode 100644 index fbe7de6fad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10101.png deleted file mode 100644 index 1f759ca46d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10102.png deleted file mode 100644 index 95cbe4c587..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10103.png deleted file mode 100644 index ca9adef97a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10104.png deleted file mode 100644 index aab10e4bcb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10105.png deleted file mode 100644 index b9f9f413cb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10106.png deleted file mode 100644 index 5c62e4ba1d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10109.png deleted file mode 100644 index 47e82f9869..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10110.png deleted file mode 100644 index 3320be0a45..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10111.png deleted file mode 100644 index 99f1e05efb..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10112.png deleted file mode 100644 index 2d91c4580f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/104.png deleted file mode 100644 index 904d73075d..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11000.png deleted file mode 100644 index 8c3be9afd5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11007.png deleted file mode 100644 index bfe2929458..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11312.png deleted file mode 100644 index 80ad73cb44..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11499.png deleted file mode 100644 index 65986e8bcd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/19.png deleted file mode 100644 index bcf063df6c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/20.png deleted file mode 100644 index a2c42343ab..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/21.png deleted file mode 100644 index ac98818a75..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/22.png deleted file mode 100644 index fa0792149f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/23.png deleted file mode 100644 index 24228a16a0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/24.png deleted file mode 100644 index 1bea70d980..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/25.png deleted file mode 100644 index cdbb0ad2ca..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/3.png deleted file mode 100644 index 2d793d7972..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/30.png deleted file mode 100644 index 689c34c456..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/32237.png deleted file mode 100644 index c74e4ed170..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/35.png deleted file mode 100644 index 7c6bd5b9c9..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/36.png deleted file mode 100644 index df514eeacc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/39.png deleted file mode 100644 index 0305e9dcaf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/4.png deleted file mode 100644 index 1bea70d980..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/40.png deleted file mode 100644 index 7cce1cc548..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/43.png deleted file mode 100644 index 429024e415..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/5.png deleted file mode 100644 index 02c3a9a1c1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/64.png deleted file mode 100644 index 454b63bade..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/7.png deleted file mode 100644 index 6b1d7baa04..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/78.png deleted file mode 100644 index a94171fb0e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/8.png deleted file mode 100644 index b537c17cd0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/88.png deleted file mode 100644 index 20ed7bc7b5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/89.png deleted file mode 100644 index a8d9f10bf5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/9.png deleted file mode 100644 index da595f0cd1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/90.png deleted file mode 100644 index 13f3c96a68..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/91.png deleted file mode 100644 index a225ac7f5e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/92.png deleted file mode 100644 index 64447bdfc1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/96.png deleted file mode 100644 index 9a888cada1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedtoolHeadWrench/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/1.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/1.png deleted file mode 100644 index 0b56b4e0bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10022.png deleted file mode 100644 index 5d59fda6da..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10023.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10023.png deleted file mode 100644 index cf0feabc64..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10023.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10024.png deleted file mode 100644 index 12ef8acc0f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10053.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10053.png deleted file mode 100644 index c3189d2c52..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10053.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10082.png deleted file mode 100644 index 25cd479a64..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10083.png deleted file mode 100644 index 5354f4d7c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10084.png deleted file mode 100644 index 5354f4d7c7..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10085.png deleted file mode 100644 index 6e5385ab12..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10096.png deleted file mode 100644 index ae2f78206a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10097.png deleted file mode 100644 index 244955c631..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10098.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10098.png deleted file mode 100644 index 5c7f57a40a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10098.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10099.png deleted file mode 100644 index 1f17578736..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10101.png deleted file mode 100644 index 26a1990065..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10102.png deleted file mode 100644 index e45c351aea..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10103.png deleted file mode 100644 index fd03301999..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10104.png deleted file mode 100644 index ba772e6ec8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10105.png deleted file mode 100644 index 72ba5791e4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10106.png deleted file mode 100644 index 92ab73997f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10109.png deleted file mode 100644 index d6656d1a77..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10110.png deleted file mode 100644 index a1a4cba102..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10111.png deleted file mode 100644 index a877db19b1..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10112.png deleted file mode 100644 index 4c4b08c970..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/104.png deleted file mode 100644 index b6e123d112..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11000.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11000.png deleted file mode 100644 index 32fcdf61ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11000.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11007.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11007.png deleted file mode 100644 index cc8d45258f..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11007.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11312.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11312.png deleted file mode 100644 index fa9ff3e273..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11312.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11499.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11499.png deleted file mode 100644 index e197f4bf5c..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/11499.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/19.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/19.png deleted file mode 100644 index 81cbf8ead5..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/19.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/20.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/20.png deleted file mode 100644 index 20b9bb2ddd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/20.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/21.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/21.png deleted file mode 100644 index 3d4fba4203..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/21.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/22.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/22.png deleted file mode 100644 index 4d840c41ad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/22.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/23.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/23.png deleted file mode 100644 index 7136075bfd..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/23.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/24.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/24.png deleted file mode 100644 index dca6274032..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/24.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/25.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/25.png deleted file mode 100644 index eb903c79e3..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/25.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/3.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/3.png deleted file mode 100644 index 504a1e4a94..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/3.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/30.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/30.png deleted file mode 100644 index bf8508e0bc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/30.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/32237.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/32237.png deleted file mode 100644 index 0a2ac34338..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/32237.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/35.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/35.png deleted file mode 100644 index 0e6a05da81..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/35.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/36.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/36.png deleted file mode 100644 index 742be0889e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/36.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/39.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/39.png deleted file mode 100644 index c4cd30aedf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/39.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/4.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/4.png deleted file mode 100644 index dca6274032..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/4.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/40.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/40.png deleted file mode 100644 index f4a566a436..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/40.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/43.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/43.png deleted file mode 100644 index 866631d145..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/43.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/5.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/5.png deleted file mode 100644 index f3b04e8f28..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/5.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/64.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/64.png deleted file mode 100644 index 6ccf01a7b4..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/64.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/7.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/7.png deleted file mode 100644 index d2c3fe5d0b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/7.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/78.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/78.png deleted file mode 100644 index 825b5f1aad..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/78.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/8.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/8.png deleted file mode 100644 index 1cb1793a76..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/8.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/88.png deleted file mode 100644 index 098ea63d73..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/89.png deleted file mode 100644 index 046d962738..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/9.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/9.png deleted file mode 100644 index afaab1204e..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/9.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/90.png deleted file mode 100644 index 4c77a979cc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/91.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/91.png deleted file mode 100644 index 4bd82e1630..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/91.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/92.png deleted file mode 100644 index ee5c21f488..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/96.png deleted file mode 100644 index 7b0ccb1533..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedturbineBlade/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10022.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10022.png deleted file mode 100644 index 41be5c46b6..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10022.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10024.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10024.png deleted file mode 100644 index 5873c827e8..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10024.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10082.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10082.png deleted file mode 100644 index aba985ed91..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10082.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10083.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10083.png deleted file mode 100644 index 88a9c0f31b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10083.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10084.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10084.png deleted file mode 100644 index 88a9c0f31b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10084.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10085.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10085.png deleted file mode 100644 index 8e1f9bfc93..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10085.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10096.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10096.png deleted file mode 100644 index 99c31288cf..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10096.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10097.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10097.png deleted file mode 100644 index 422eff4698..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10097.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10099.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10099.png deleted file mode 100644 index 3f44812ed0..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10099.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10101.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10101.png deleted file mode 100644 index 4fbcb91b80..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10101.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10102.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10102.png deleted file mode 100644 index 753991ce51..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10102.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10103.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10103.png deleted file mode 100644 index d014595241..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10103.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10104.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10104.png deleted file mode 100644 index a0a0e77f64..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10104.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10105.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10105.png deleted file mode 100644 index 2a225bfe31..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10105.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10106.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10106.png deleted file mode 100644 index 74faeb0afc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10106.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10109.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10109.png deleted file mode 100644 index 75eeaa8690..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10109.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10110.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10110.png deleted file mode 100644 index 677cda56fc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10110.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10111.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10111.png deleted file mode 100644 index 87ccbc8b76..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10111.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10112.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10112.png deleted file mode 100644 index fca24d1400..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/10112.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/88.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/88.png deleted file mode 100644 index 539971d192..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/88.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/89.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/89.png deleted file mode 100644 index 272ed6f57a..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/89.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/90.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/90.png deleted file mode 100644 index c81d54bcfc..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/90.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/92.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/92.png deleted file mode 100644 index 7397448245..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/92.png and /dev/null differ diff --git a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/96.png b/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/96.png deleted file mode 100644 index 0cfaee048b..0000000000 Binary files a/front/public/images/large/bartworks/gt.bwMetaGeneratedwireFine/96.png and /dev/null differ diff --git a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_HV/1.png b/front/public/images/large/bartworks/item.GT_Rockcutter_Item_HV/1.png deleted file mode 100644 index 2640ae049e..0000000000 Binary files a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_HV/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_HV/1027.png b/front/public/images/large/bartworks/item.GT_Rockcutter_Item_HV/1027.png deleted file mode 100644 index 2640ae049e..0000000000 Binary files a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_HV/1027.png and /dev/null differ diff --git a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_LV/1.png b/front/public/images/large/bartworks/item.GT_Rockcutter_Item_LV/1.png deleted file mode 100644 index 2640ae049e..0000000000 Binary files a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_LV/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_LV/37.png b/front/public/images/large/bartworks/item.GT_Rockcutter_Item_LV/37.png deleted file mode 100644 index 2640ae049e..0000000000 Binary files a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_LV/37.png and /dev/null differ diff --git a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_MV/1.png b/front/public/images/large/bartworks/item.GT_Rockcutter_Item_MV/1.png deleted file mode 100644 index 2640ae049e..0000000000 Binary files a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_MV/1.png and /dev/null differ diff --git a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_MV/127.png b/front/public/images/large/bartworks/item.GT_Rockcutter_Item_MV/127.png deleted file mode 100644 index 2640ae049e..0000000000 Binary files a/front/public/images/large/bartworks/item.GT_Rockcutter_Item_MV/127.png and /dev/null differ diff --git a/front/public/images/large/bartworks/tabIconGT2/0.png b/front/public/images/large/bartworks/tabIconGT2/0.png deleted file mode 100644 index 515c8c8a89..0000000000 Binary files a/front/public/images/large/bartworks/tabIconGT2/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/bow.diamond/0.png b/front/public/images/large/battlegear2/bow.diamond/0.png deleted file mode 100644 index a5e689f611..0000000000 Binary files a/front/public/images/large/battlegear2/bow.diamond/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/bow.iron/0.png b/front/public/images/large/battlegear2/bow.iron/0.png deleted file mode 100644 index bec3d97a92..0000000000 Binary files a/front/public/images/large/battlegear2/bow.iron/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/chain/0.png b/front/public/images/large/battlegear2/chain/0.png deleted file mode 100644 index b148bc5aeb..0000000000 Binary files a/front/public/images/large/battlegear2/chain/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/dagger.diamond/0.png b/front/public/images/large/battlegear2/dagger.diamond/0.png deleted file mode 100644 index e7fdef87b7..0000000000 Binary files a/front/public/images/large/battlegear2/dagger.diamond/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/dagger.gold/0.png b/front/public/images/large/battlegear2/dagger.gold/0.png deleted file mode 100644 index e86b6d6de3..0000000000 Binary files a/front/public/images/large/battlegear2/dagger.gold/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/dagger.iron/0.png b/front/public/images/large/battlegear2/dagger.iron/0.png deleted file mode 100644 index be46abcc36..0000000000 Binary files a/front/public/images/large/battlegear2/dagger.iron/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/dagger.stone/0.png b/front/public/images/large/battlegear2/dagger.stone/0.png deleted file mode 100644 index 755945b6e9..0000000000 Binary files a/front/public/images/large/battlegear2/dagger.stone/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/dagger.wood/0.png b/front/public/images/large/battlegear2/dagger.wood/0.png deleted file mode 100644 index 86f2fc25b4..0000000000 Binary files a/front/public/images/large/battlegear2/dagger.wood/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/flagpole/0.png b/front/public/images/large/battlegear2/flagpole/0.png deleted file mode 100644 index 72191565d2..0000000000 Binary files a/front/public/images/large/battlegear2/flagpole/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/flagpole/1.png b/front/public/images/large/battlegear2/flagpole/1.png deleted file mode 100644 index b74ec53d9a..0000000000 Binary files a/front/public/images/large/battlegear2/flagpole/1.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/flagpole/2.png b/front/public/images/large/battlegear2/flagpole/2.png deleted file mode 100644 index 8a313f5a08..0000000000 Binary files a/front/public/images/large/battlegear2/flagpole/2.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/flagpole/3.png b/front/public/images/large/battlegear2/flagpole/3.png deleted file mode 100644 index 6f29c35f3c..0000000000 Binary files a/front/public/images/large/battlegear2/flagpole/3.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/flagpole/4.png b/front/public/images/large/battlegear2/flagpole/4.png deleted file mode 100644 index 18b6b305ad..0000000000 Binary files a/front/public/images/large/battlegear2/flagpole/4.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/flagpole/5.png b/front/public/images/large/battlegear2/flagpole/5.png deleted file mode 100644 index b433c09b47..0000000000 Binary files a/front/public/images/large/battlegear2/flagpole/5.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/flagpole/6.png b/front/public/images/large/battlegear2/flagpole/6.png deleted file mode 100644 index 0675523ee8..0000000000 Binary files a/front/public/images/large/battlegear2/flagpole/6.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/heraldric/0.png b/front/public/images/large/battlegear2/heraldric/0.png deleted file mode 100644 index cd40c0a783..0000000000 Binary files a/front/public/images/large/battlegear2/heraldric/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/knights_armour.boots/0.png b/front/public/images/large/battlegear2/knights_armour.boots/0.png deleted file mode 100644 index 0d61135dc0..0000000000 Binary files a/front/public/images/large/battlegear2/knights_armour.boots/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/knights_armour.helmet/0.png b/front/public/images/large/battlegear2/knights_armour.helmet/0.png deleted file mode 100644 index 30cf1e4b24..0000000000 Binary files a/front/public/images/large/battlegear2/knights_armour.helmet/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/knights_armour.legs/0.png b/front/public/images/large/battlegear2/knights_armour.legs/0.png deleted file mode 100644 index 862ef0a3fb..0000000000 Binary files a/front/public/images/large/battlegear2/knights_armour.legs/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/knights_armour.plate/0.png b/front/public/images/large/battlegear2/knights_armour.plate/0.png deleted file mode 100644 index b28040af23..0000000000 Binary files a/front/public/images/large/battlegear2/knights_armour.plate/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mace.diamond/0.png b/front/public/images/large/battlegear2/mace.diamond/0.png deleted file mode 100644 index d22249232c..0000000000 Binary files a/front/public/images/large/battlegear2/mace.diamond/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mace.gold/0.png b/front/public/images/large/battlegear2/mace.gold/0.png deleted file mode 100644 index c0dfa48503..0000000000 Binary files a/front/public/images/large/battlegear2/mace.gold/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mace.iron/0.png b/front/public/images/large/battlegear2/mace.iron/0.png deleted file mode 100644 index dfab3991f3..0000000000 Binary files a/front/public/images/large/battlegear2/mace.iron/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mace.stone/0.png b/front/public/images/large/battlegear2/mace.stone/0.png deleted file mode 100644 index c325810217..0000000000 Binary files a/front/public/images/large/battlegear2/mace.stone/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mace.wood/0.png b/front/public/images/large/battlegear2/mace.wood/0.png deleted file mode 100644 index 9fc7c303f1..0000000000 Binary files a/front/public/images/large/battlegear2/mace.wood/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/0.png b/front/public/images/large/battlegear2/mb.arrow/0.png deleted file mode 100644 index db3741bd82..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/1.png b/front/public/images/large/battlegear2/mb.arrow/1.png deleted file mode 100644 index b2df84738d..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/1.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/2.png b/front/public/images/large/battlegear2/mb.arrow/2.png deleted file mode 100644 index f2f6c722a1..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/2.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/3.png b/front/public/images/large/battlegear2/mb.arrow/3.png deleted file mode 100644 index 6a5eb07d8a..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/3.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/4.png b/front/public/images/large/battlegear2/mb.arrow/4.png deleted file mode 100644 index 640f156a46..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/4.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/5.png b/front/public/images/large/battlegear2/mb.arrow/5.png deleted file mode 100644 index 2ac7f76020..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/5.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/6.png b/front/public/images/large/battlegear2/mb.arrow/6.png deleted file mode 100644 index 4dc3f8b65d..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/6.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/7.png b/front/public/images/large/battlegear2/mb.arrow/7.png deleted file mode 100644 index 5b14e56a6b..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/7.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/mb.arrow/8.png b/front/public/images/large/battlegear2/mb.arrow/8.png deleted file mode 100644 index 97d658c638..0000000000 Binary files a/front/public/images/large/battlegear2/mb.arrow/8.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/quiver/0.png b/front/public/images/large/battlegear2/quiver/0.png deleted file mode 100644 index 3154ec24ff..0000000000 Binary files a/front/public/images/large/battlegear2/quiver/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/shield.diamond/0.png b/front/public/images/large/battlegear2/shield.diamond/0.png deleted file mode 100644 index b784dabb8a..0000000000 Binary files a/front/public/images/large/battlegear2/shield.diamond/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/shield.gold/0.png b/front/public/images/large/battlegear2/shield.gold/0.png deleted file mode 100644 index f127d20c78..0000000000 Binary files a/front/public/images/large/battlegear2/shield.gold/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/shield.hide/0.png b/front/public/images/large/battlegear2/shield.hide/0.png deleted file mode 100644 index b365606b30..0000000000 Binary files a/front/public/images/large/battlegear2/shield.hide/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/shield.iron/0.png b/front/public/images/large/battlegear2/shield.iron/0.png deleted file mode 100644 index 0eacad4607..0000000000 Binary files a/front/public/images/large/battlegear2/shield.iron/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/shield.wood/0.png b/front/public/images/large/battlegear2/shield.wood/0.png deleted file mode 100644 index d2b8c9059a..0000000000 Binary files a/front/public/images/large/battlegear2/shield.wood/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/spear.diamond/0.png b/front/public/images/large/battlegear2/spear.diamond/0.png deleted file mode 100644 index f8a02dd493..0000000000 Binary files a/front/public/images/large/battlegear2/spear.diamond/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/spear.gold/0.png b/front/public/images/large/battlegear2/spear.gold/0.png deleted file mode 100644 index b4e6e0bcec..0000000000 Binary files a/front/public/images/large/battlegear2/spear.gold/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/spear.iron/0.png b/front/public/images/large/battlegear2/spear.iron/0.png deleted file mode 100644 index bb7ecbdc92..0000000000 Binary files a/front/public/images/large/battlegear2/spear.iron/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/spear.stone/0.png b/front/public/images/large/battlegear2/spear.stone/0.png deleted file mode 100644 index efbc75f0f2..0000000000 Binary files a/front/public/images/large/battlegear2/spear.stone/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/spear.wood/0.png b/front/public/images/large/battlegear2/spear.wood/0.png deleted file mode 100644 index bca0462aec..0000000000 Binary files a/front/public/images/large/battlegear2/spear.wood/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/waraxe.diamond/0.png b/front/public/images/large/battlegear2/waraxe.diamond/0.png deleted file mode 100644 index 0c8bc08ba0..0000000000 Binary files a/front/public/images/large/battlegear2/waraxe.diamond/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/waraxe.gold/0.png b/front/public/images/large/battlegear2/waraxe.gold/0.png deleted file mode 100644 index 351efad71d..0000000000 Binary files a/front/public/images/large/battlegear2/waraxe.gold/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/waraxe.iron/0.png b/front/public/images/large/battlegear2/waraxe.iron/0.png deleted file mode 100644 index 50b2072781..0000000000 Binary files a/front/public/images/large/battlegear2/waraxe.iron/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/waraxe.stone/0.png b/front/public/images/large/battlegear2/waraxe.stone/0.png deleted file mode 100644 index c40e9635e9..0000000000 Binary files a/front/public/images/large/battlegear2/waraxe.stone/0.png and /dev/null differ diff --git a/front/public/images/large/battlegear2/waraxe.wood/0.png b/front/public/images/large/battlegear2/waraxe.wood/0.png deleted file mode 100644 index d18dd2fb1b..0000000000 Binary files a/front/public/images/large/battlegear2/waraxe.wood/0.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/0.png b/front/public/images/large/berriespp/BppPotions/0.png deleted file mode 100644 index 33e1a48b44..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/0.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/1.png b/front/public/images/large/berriespp/BppPotions/1.png deleted file mode 100644 index 7ad7f50ab2..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/1.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/2.png b/front/public/images/large/berriespp/BppPotions/2.png deleted file mode 100644 index 7ad7f50ab2..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/2.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/3.png b/front/public/images/large/berriespp/BppPotions/3.png deleted file mode 100644 index 33e1a48b44..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/3.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/4.png b/front/public/images/large/berriespp/BppPotions/4.png deleted file mode 100644 index 7ad7f50ab2..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/4.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/5.png b/front/public/images/large/berriespp/BppPotions/5.png deleted file mode 100644 index 946fc7f9cb..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/5.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/6.png b/front/public/images/large/berriespp/BppPotions/6.png deleted file mode 100644 index 33e1a48b44..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/6.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/7.png b/front/public/images/large/berriespp/BppPotions/7.png deleted file mode 100644 index 7ad7f50ab2..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/7.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/8.png b/front/public/images/large/berriespp/BppPotions/8.png deleted file mode 100644 index ea7d9dd0af..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/8.png and /dev/null differ diff --git a/front/public/images/large/berriespp/BppPotions/9.png b/front/public/images/large/berriespp/BppPotions/9.png deleted file mode 100644 index ea7d9dd0af..0000000000 Binary files a/front/public/images/large/berriespp/BppPotions/9.png and /dev/null differ diff --git a/front/public/images/large/berriespp/Modifier/0.png b/front/public/images/large/berriespp/Modifier/0.png deleted file mode 100644 index 54747d8b74..0000000000 Binary files a/front/public/images/large/berriespp/Modifier/0.png and /dev/null differ diff --git a/front/public/images/large/berriespp/Modifier/1.png b/front/public/images/large/berriespp/Modifier/1.png deleted file mode 100644 index 504f42cd09..0000000000 Binary files a/front/public/images/large/berriespp/Modifier/1.png and /dev/null differ diff --git a/front/public/images/large/berriespp/Modifier/2.png b/front/public/images/large/berriespp/Modifier/2.png deleted file mode 100644 index f367aa0fbc..0000000000 Binary files a/front/public/images/large/berriespp/Modifier/2.png and /dev/null differ diff --git a/front/public/images/large/berriespp/foodBerries/0.png b/front/public/images/large/berriespp/foodBerries/0.png deleted file mode 100644 index 3a47db2baf..0000000000 Binary files a/front/public/images/large/berriespp/foodBerries/0.png and /dev/null differ diff --git a/front/public/images/large/berriespp/foodBerries/1.png b/front/public/images/large/berriespp/foodBerries/1.png deleted file mode 100644 index 39276a239e..0000000000 Binary files a/front/public/images/large/berriespp/foodBerries/1.png and /dev/null differ diff --git a/front/public/images/large/berriespp/foodGoldfish/0.png b/front/public/images/large/berriespp/foodGoldfish/0.png deleted file mode 100644 index eadcc07a3f..0000000000 Binary files a/front/public/images/large/berriespp/foodGoldfish/0.png and /dev/null differ diff --git a/front/public/images/large/berriespp/itemLens/0.png b/front/public/images/large/berriespp/itemLens/0.png deleted file mode 100644 index 3e514def76..0000000000 Binary files a/front/public/images/large/berriespp/itemLens/0.png and /dev/null differ diff --git a/front/public/images/large/berriespp/itemSpade/0.png b/front/public/images/large/berriespp/itemSpade/0.png deleted file mode 100644 index cbb8d041a8..0000000000 Binary files a/front/public/images/large/berriespp/itemSpade/0.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandDiamond/0.png b/front/public/images/large/betterbuilderswands/wandDiamond/0.png deleted file mode 100644 index 81e1a36efb..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandIron/0.png b/front/public/images/large/betterbuilderswands/wandIron/0.png deleted file mode 100644 index 1e7419b271..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandIron/0.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandStone/0.png b/front/public/images/large/betterbuilderswands/wandStone/0.png deleted file mode 100644 index f9921881d7..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandStone/0.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandUnbreakable/12.png b/front/public/images/large/betterbuilderswands/wandUnbreakable/12.png deleted file mode 100644 index 28f75d6867..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandUnbreakable/12.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandUnbreakable/13.png b/front/public/images/large/betterbuilderswands/wandUnbreakable/13.png deleted file mode 100644 index 28f75d6867..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandUnbreakable/13.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandUnbreakable/14.png b/front/public/images/large/betterbuilderswands/wandUnbreakable/14.png deleted file mode 100644 index 28f75d6867..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandUnbreakable/14.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandUnbreakable/4.png b/front/public/images/large/betterbuilderswands/wandUnbreakable/4.png deleted file mode 100644 index 28f75d6867..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandUnbreakable/4.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandUnbreakable/5.png b/front/public/images/large/betterbuilderswands/wandUnbreakable/5.png deleted file mode 100644 index 28f75d6867..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandUnbreakable/5.png and /dev/null differ diff --git a/front/public/images/large/betterbuilderswands/wandUnbreakable/6.png b/front/public/images/large/betterbuilderswands/wandUnbreakable/6.png deleted file mode 100644 index 28f75d6867..0000000000 Binary files a/front/public/images/large/betterbuilderswands/wandUnbreakable/6.png and /dev/null differ diff --git a/front/public/images/large/betterp2p/advanced_memory_card/0.png b/front/public/images/large/betterp2p/advanced_memory_card/0.png deleted file mode 100644 index 00256714c0..0000000000 Binary files a/front/public/images/large/betterp2p/advanced_memory_card/0.png and /dev/null differ diff --git a/front/public/images/large/betterquesting/extra_life/0.png b/front/public/images/large/betterquesting/extra_life/0.png deleted file mode 100644 index 23d1c8a2a5..0000000000 Binary files a/front/public/images/large/betterquesting/extra_life/0.png and /dev/null differ diff --git a/front/public/images/large/betterquesting/extra_life/1.png b/front/public/images/large/betterquesting/extra_life/1.png deleted file mode 100644 index 7bb87dea16..0000000000 Binary files a/front/public/images/large/betterquesting/extra_life/1.png and /dev/null differ diff --git a/front/public/images/large/betterquesting/extra_life/2.png b/front/public/images/large/betterquesting/extra_life/2.png deleted file mode 100644 index e5e3633670..0000000000 Binary files a/front/public/images/large/betterquesting/extra_life/2.png and /dev/null differ diff --git a/front/public/images/large/betterquesting/guide_book/0.png b/front/public/images/large/betterquesting/guide_book/0.png deleted file mode 100644 index 5f7b3a5a1e..0000000000 Binary files a/front/public/images/large/betterquesting/guide_book/0.png and /dev/null differ diff --git a/front/public/images/large/betterquesting/observation_station/0.png b/front/public/images/large/betterquesting/observation_station/0.png deleted file mode 100644 index 1bc3586000..0000000000 Binary files a/front/public/images/large/betterquesting/observation_station/0.png and /dev/null differ diff --git a/front/public/images/large/betterquesting/placeholder/0.png b/front/public/images/large/betterquesting/placeholder/0.png deleted file mode 100644 index 3f1db5a0a8..0000000000 Binary files a/front/public/images/large/betterquesting/placeholder/0.png and /dev/null differ diff --git a/front/public/images/large/betterquesting/submit_station/0.png b/front/public/images/large/betterquesting/submit_station/0.png deleted file mode 100644 index 559c2774e6..0000000000 Binary files a/front/public/images/large/betterquesting/submit_station/0.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/0.png b/front/public/images/large/bq_standard/loot_chest/0.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/0.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/100.png b/front/public/images/large/bq_standard/loot_chest/100.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/100.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/101.png b/front/public/images/large/bq_standard/loot_chest/101.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/101.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/102.png b/front/public/images/large/bq_standard/loot_chest/102.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/102.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/103.png b/front/public/images/large/bq_standard/loot_chest/103.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/103.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/104.png b/front/public/images/large/bq_standard/loot_chest/104.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/104.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/25.png b/front/public/images/large/bq_standard/loot_chest/25.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/25.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/50.png b/front/public/images/large/bq_standard/loot_chest/50.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/50.png and /dev/null differ diff --git a/front/public/images/large/bq_standard/loot_chest/75.png b/front/public/images/large/bq_standard/loot_chest/75.png deleted file mode 100644 index 0897be24eb..0000000000 Binary files a/front/public/images/large/bq_standard/loot_chest/75.png and /dev/null differ diff --git a/front/public/images/large/catwalks/blowtorch/0.png b/front/public/images/large/catwalks/blowtorch/0.png deleted file mode 100644 index 777411bc13..0000000000 Binary files a/front/public/images/large/catwalks/blowtorch/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_lit/0.png b/front/public/images/large/catwalks/cagedLadder_east_lit/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_lit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_lit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_east_lit_nobottom/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_lit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_east_lit_nobottom_tape/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_lit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_east_lit_tape/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_unlit/0.png b/front/public/images/large/catwalks/cagedLadder_east_unlit/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_unlit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_unlit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_east_unlit_nobottom/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_unlit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_east_unlit_nobottom_tape/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_east_unlit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_east_unlit_tape/0.png deleted file mode 100644 index 9f305645c6..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_east_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_lit/0.png b/front/public/images/large/catwalks/cagedLadder_north_lit/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_lit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_lit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_north_lit_nobottom/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_lit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_north_lit_nobottom_tape/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_lit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_north_lit_tape/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_unlit/0.png b/front/public/images/large/catwalks/cagedLadder_north_unlit/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_unlit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_unlit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_north_unlit_nobottom/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_unlit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_north_unlit_nobottom_tape/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_north_unlit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_north_unlit_tape/0.png deleted file mode 100644 index b16fd66f74..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_north_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_lit/0.png b/front/public/images/large/catwalks/cagedLadder_south_lit/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_lit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_lit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_south_lit_nobottom/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_lit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_south_lit_nobottom_tape/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_lit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_south_lit_tape/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_unlit/0.png b/front/public/images/large/catwalks/cagedLadder_south_unlit/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_unlit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_unlit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_south_unlit_nobottom/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_unlit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_south_unlit_nobottom_tape/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_south_unlit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_south_unlit_tape/0.png deleted file mode 100644 index cee9c68a75..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_south_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_lit/0.png b/front/public/images/large/catwalks/cagedLadder_west_lit/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_lit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_lit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_west_lit_nobottom/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_lit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_west_lit_nobottom_tape/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_lit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_west_lit_tape/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_unlit/0.png b/front/public/images/large/catwalks/cagedLadder_west_unlit/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_unlit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_unlit_nobottom/0.png b/front/public/images/large/catwalks/cagedLadder_west_unlit_nobottom/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_unlit_nobottom_tape/0.png b/front/public/images/large/catwalks/cagedLadder_west_unlit_nobottom_tape/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cagedLadder_west_unlit_tape/0.png b/front/public/images/large/catwalks/cagedLadder_west_unlit_tape/0.png deleted file mode 100644 index 75afafddab..0000000000 Binary files a/front/public/images/large/catwalks/cagedLadder_west_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_lit/0.png b/front/public/images/large/catwalks/catwalk_lit/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_lit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_lit_nobottom/0.png b/front/public/images/large/catwalks/catwalk_lit_nobottom/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_lit_nobottom_tape/0.png b/front/public/images/large/catwalks/catwalk_lit_nobottom_tape/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_lit_tape/0.png b/front/public/images/large/catwalks/catwalk_lit_tape/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_unlit/0.png b/front/public/images/large/catwalks/catwalk_unlit/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_unlit/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_unlit_nobottom/0.png b/front/public/images/large/catwalks/catwalk_unlit_nobottom/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_unlit_nobottom_tape/0.png b/front/public/images/large/catwalks/catwalk_unlit_nobottom_tape/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/catwalk_unlit_tape/0.png b/front/public/images/large/catwalks/catwalk_unlit_tape/0.png deleted file mode 100644 index e786f4e295..0000000000 Binary files a/front/public/images/large/catwalks/catwalk_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/cautionTape/0.png b/front/public/images/large/catwalks/cautionTape/0.png deleted file mode 100644 index 0f8648c97b..0000000000 Binary files a/front/public/images/large/catwalks/cautionTape/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/ropeLight/0.png b/front/public/images/large/catwalks/ropeLight/0.png deleted file mode 100644 index dd90a95b5b..0000000000 Binary files a/front/public/images/large/catwalks/ropeLight/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/scaffold/0.png b/front/public/images/large/catwalks/scaffold/0.png deleted file mode 100644 index e415ac30ce..0000000000 Binary files a/front/public/images/large/catwalks/scaffold/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/scaffold/1.png b/front/public/images/large/catwalks/scaffold/1.png deleted file mode 100644 index ae111adc49..0000000000 Binary files a/front/public/images/large/catwalks/scaffold/1.png and /dev/null differ diff --git a/front/public/images/large/catwalks/steelgrate/0.png b/front/public/images/large/catwalks/steelgrate/0.png deleted file mode 100644 index d056faa8c7..0000000000 Binary files a/front/public/images/large/catwalks/steelgrate/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/sturdy_rail/0.png b/front/public/images/large/catwalks/sturdy_rail/0.png deleted file mode 100644 index 3758c4198a..0000000000 Binary files a/front/public/images/large/catwalks/sturdy_rail/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/sturdy_rail_activator/0.png b/front/public/images/large/catwalks/sturdy_rail_activator/0.png deleted file mode 100644 index c159560025..0000000000 Binary files a/front/public/images/large/catwalks/sturdy_rail_activator/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/sturdy_rail_detector/0.png b/front/public/images/large/catwalks/sturdy_rail_detector/0.png deleted file mode 100644 index c2f8a0186f..0000000000 Binary files a/front/public/images/large/catwalks/sturdy_rail_detector/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/sturdy_rail_powered/0.png b/front/public/images/large/catwalks/sturdy_rail_powered/0.png deleted file mode 100644 index 75ef5aab0f..0000000000 Binary files a/front/public/images/large/catwalks/sturdy_rail_powered/0.png and /dev/null differ diff --git a/front/public/images/large/catwalks/support_column/0.png b/front/public/images/large/catwalks/support_column/0.png deleted file mode 100644 index db85432760..0000000000 Binary files a/front/public/images/large/catwalks/support_column/0.png and /dev/null differ diff --git a/front/public/images/large/cb4bq/BlockDLB/0.png b/front/public/images/large/cb4bq/BlockDLB/0.png deleted file mode 100644 index 962c4e4209..0000000000 Binary files a/front/public/images/large/cb4bq/BlockDLB/0.png and /dev/null differ diff --git a/front/public/images/large/cb4bq/BlockHSB/0.png b/front/public/images/large/cb4bq/BlockHSB/0.png deleted file mode 100644 index 962c4e4209..0000000000 Binary files a/front/public/images/large/cb4bq/BlockHSB/0.png and /dev/null differ diff --git a/front/public/images/large/cb4bq/BlockREB/0.png b/front/public/images/large/cb4bq/BlockREB/0.png deleted file mode 100644 index 962c4e4209..0000000000 Binary files a/front/public/images/large/cb4bq/BlockREB/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/1.png b/front/public/images/large/chisel/acacia_planks/1.png deleted file mode 100644 index 89ad3c5487..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/10.png b/front/public/images/large/chisel/acacia_planks/10.png deleted file mode 100644 index 379335d57e..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/11.png b/front/public/images/large/chisel/acacia_planks/11.png deleted file mode 100644 index dc9724d8cb..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/12.png b/front/public/images/large/chisel/acacia_planks/12.png deleted file mode 100644 index 0245d42bce..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/13.png b/front/public/images/large/chisel/acacia_planks/13.png deleted file mode 100644 index 78ffa601ff..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/14.png b/front/public/images/large/chisel/acacia_planks/14.png deleted file mode 100644 index ac649f8666..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/15.png b/front/public/images/large/chisel/acacia_planks/15.png deleted file mode 100644 index c7819c88b4..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/2.png b/front/public/images/large/chisel/acacia_planks/2.png deleted file mode 100644 index a5e7c4be74..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/3.png b/front/public/images/large/chisel/acacia_planks/3.png deleted file mode 100644 index cf4bfb3971..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/4.png b/front/public/images/large/chisel/acacia_planks/4.png deleted file mode 100644 index a4b7ee42ea..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/5.png b/front/public/images/large/chisel/acacia_planks/5.png deleted file mode 100644 index fc8abfba67..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/6.png b/front/public/images/large/chisel/acacia_planks/6.png deleted file mode 100644 index 5764b07b1f..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/7.png b/front/public/images/large/chisel/acacia_planks/7.png deleted file mode 100644 index dddf584a1c..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/8.png b/front/public/images/large/chisel/acacia_planks/8.png deleted file mode 100644 index d21fad9a50..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/acacia_planks/9.png b/front/public/images/large/chisel/acacia_planks/9.png deleted file mode 100644 index 28f4151486..0000000000 Binary files a/front/public/images/large/chisel/acacia_planks/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminum_stairs.0/0.png b/front/public/images/large/chisel/aluminum_stairs.0/0.png deleted file mode 100644 index 0c8af9dfe9..0000000000 Binary files a/front/public/images/large/chisel/aluminum_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminum_stairs.0/8.png b/front/public/images/large/chisel/aluminum_stairs.0/8.png deleted file mode 100644 index 5cac9328ff..0000000000 Binary files a/front/public/images/large/chisel/aluminum_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminum_stairs.1/0.png b/front/public/images/large/chisel/aluminum_stairs.1/0.png deleted file mode 100644 index a6ceac1a60..0000000000 Binary files a/front/public/images/large/chisel/aluminum_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminum_stairs.1/8.png b/front/public/images/large/chisel/aluminum_stairs.1/8.png deleted file mode 100644 index 185dba7657..0000000000 Binary files a/front/public/images/large/chisel/aluminum_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminum_stairs.2/0.png b/front/public/images/large/chisel/aluminum_stairs.2/0.png deleted file mode 100644 index 007c9d53aa..0000000000 Binary files a/front/public/images/large/chisel/aluminum_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminum_stairs.2/8.png b/front/public/images/large/chisel/aluminum_stairs.2/8.png deleted file mode 100644 index df6088d80b..0000000000 Binary files a/front/public/images/large/chisel/aluminum_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminumblock/0.png b/front/public/images/large/chisel/aluminumblock/0.png deleted file mode 100644 index da6608bed7..0000000000 Binary files a/front/public/images/large/chisel/aluminumblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminumblock/1.png b/front/public/images/large/chisel/aluminumblock/1.png deleted file mode 100644 index 6407aeab51..0000000000 Binary files a/front/public/images/large/chisel/aluminumblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminumblock/2.png b/front/public/images/large/chisel/aluminumblock/2.png deleted file mode 100644 index e4ae341706..0000000000 Binary files a/front/public/images/large/chisel/aluminumblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminumblock/3.png b/front/public/images/large/chisel/aluminumblock/3.png deleted file mode 100644 index 73d1eee535..0000000000 Binary files a/front/public/images/large/chisel/aluminumblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminumblock/4.png b/front/public/images/large/chisel/aluminumblock/4.png deleted file mode 100644 index a58c49a7da..0000000000 Binary files a/front/public/images/large/chisel/aluminumblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/aluminumblock/5.png b/front/public/images/large/chisel/aluminumblock/5.png deleted file mode 100644 index 67ed8c11d8..0000000000 Binary files a/front/public/images/large/chisel/aluminumblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/amber/0.png b/front/public/images/large/chisel/amber/0.png deleted file mode 100644 index 748139c107..0000000000 Binary files a/front/public/images/large/chisel/amber/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/andesite/0.png b/front/public/images/large/chisel/andesite/0.png deleted file mode 100644 index 200a94cf31..0000000000 Binary files a/front/public/images/large/chisel/andesite/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/andesite/1.png b/front/public/images/large/chisel/andesite/1.png deleted file mode 100644 index 3d53222af7..0000000000 Binary files a/front/public/images/large/chisel/andesite/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/andesite/2.png b/front/public/images/large/chisel/andesite/2.png deleted file mode 100644 index f2e862b587..0000000000 Binary files a/front/public/images/large/chisel/andesite/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/andesite/3.png b/front/public/images/large/chisel/andesite/3.png deleted file mode 100644 index e41fc986cd..0000000000 Binary files a/front/public/images/large/chisel/andesite/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/andesite/4.png b/front/public/images/large/chisel/andesite/4.png deleted file mode 100644 index bbd9a84a37..0000000000 Binary files a/front/public/images/large/chisel/andesite/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/andesite/5.png b/front/public/images/large/chisel/andesite/5.png deleted file mode 100644 index 63e0fe757e..0000000000 Binary files a/front/public/images/large/chisel/andesite/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/andesite/6.png b/front/public/images/large/chisel/andesite/6.png deleted file mode 100644 index 7692b75bba..0000000000 Binary files a/front/public/images/large/chisel/andesite/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/0.png b/front/public/images/large/chisel/antiBlock/0.png deleted file mode 100644 index e14ae8729e..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/1.png b/front/public/images/large/chisel/antiBlock/1.png deleted file mode 100644 index 17a9483bcd..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/10.png b/front/public/images/large/chisel/antiBlock/10.png deleted file mode 100644 index 22585e486d..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/11.png b/front/public/images/large/chisel/antiBlock/11.png deleted file mode 100644 index 01fa736c9f..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/12.png b/front/public/images/large/chisel/antiBlock/12.png deleted file mode 100644 index 8d41dc4a0c..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/13.png b/front/public/images/large/chisel/antiBlock/13.png deleted file mode 100644 index 917036524c..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/14.png b/front/public/images/large/chisel/antiBlock/14.png deleted file mode 100644 index cf86a68233..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/15.png b/front/public/images/large/chisel/antiBlock/15.png deleted file mode 100644 index 8485d57c5c..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/2.png b/front/public/images/large/chisel/antiBlock/2.png deleted file mode 100644 index ec9a0bc642..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/3.png b/front/public/images/large/chisel/antiBlock/3.png deleted file mode 100644 index a6cb3f06e6..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/4.png b/front/public/images/large/chisel/antiBlock/4.png deleted file mode 100644 index 9cb9b599de..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/5.png b/front/public/images/large/chisel/antiBlock/5.png deleted file mode 100644 index 59dfcf3823..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/6.png b/front/public/images/large/chisel/antiBlock/6.png deleted file mode 100644 index 8e84f82896..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/7.png b/front/public/images/large/chisel/antiBlock/7.png deleted file mode 100644 index 6642a54035..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/8.png b/front/public/images/large/chisel/antiBlock/8.png deleted file mode 100644 index 26ddcd30f3..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/antiBlock/9.png b/front/public/images/large/chisel/antiBlock/9.png deleted file mode 100644 index a55c7cab90..0000000000 Binary files a/front/public/images/large/chisel/antiBlock/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/0.png b/front/public/images/large/chisel/arcane/0.png deleted file mode 100644 index a094c534b8..0000000000 Binary files a/front/public/images/large/chisel/arcane/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/1.png b/front/public/images/large/chisel/arcane/1.png deleted file mode 100644 index 7424fc04c3..0000000000 Binary files a/front/public/images/large/chisel/arcane/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/10.png b/front/public/images/large/chisel/arcane/10.png deleted file mode 100644 index cbddd2e8e3..0000000000 Binary files a/front/public/images/large/chisel/arcane/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/11.png b/front/public/images/large/chisel/arcane/11.png deleted file mode 100644 index 086c90bd75..0000000000 Binary files a/front/public/images/large/chisel/arcane/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/2.png b/front/public/images/large/chisel/arcane/2.png deleted file mode 100644 index dc57d3e12d..0000000000 Binary files a/front/public/images/large/chisel/arcane/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/3.png b/front/public/images/large/chisel/arcane/3.png deleted file mode 100644 index 6f6e96cad7..0000000000 Binary files a/front/public/images/large/chisel/arcane/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/4.png b/front/public/images/large/chisel/arcane/4.png deleted file mode 100644 index 5394394339..0000000000 Binary files a/front/public/images/large/chisel/arcane/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/5.png b/front/public/images/large/chisel/arcane/5.png deleted file mode 100644 index de203538cc..0000000000 Binary files a/front/public/images/large/chisel/arcane/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/6.png b/front/public/images/large/chisel/arcane/6.png deleted file mode 100644 index b73afddaaf..0000000000 Binary files a/front/public/images/large/chisel/arcane/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/7.png b/front/public/images/large/chisel/arcane/7.png deleted file mode 100644 index df7f66498c..0000000000 Binary files a/front/public/images/large/chisel/arcane/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/8.png b/front/public/images/large/chisel/arcane/8.png deleted file mode 100644 index 151d244f10..0000000000 Binary files a/front/public/images/large/chisel/arcane/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/arcane/9.png b/front/public/images/large/chisel/arcane/9.png deleted file mode 100644 index 967ce558e2..0000000000 Binary files a/front/public/images/large/chisel/arcane/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/autoChisel/0.png b/front/public/images/large/chisel/autoChisel/0.png deleted file mode 100644 index 3857e9f329..0000000000 Binary files a/front/public/images/large/chisel/autoChisel/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ballomoss/0.png b/front/public/images/large/chisel/ballomoss/0.png deleted file mode 100644 index 1bf4add742..0000000000 Binary files a/front/public/images/large/chisel/ballomoss/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/0.png b/front/public/images/large/chisel/beacon/0.png deleted file mode 100644 index 791e3b73b6..0000000000 Binary files a/front/public/images/large/chisel/beacon/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/1.png b/front/public/images/large/chisel/beacon/1.png deleted file mode 100644 index c65557be46..0000000000 Binary files a/front/public/images/large/chisel/beacon/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/10.png b/front/public/images/large/chisel/beacon/10.png deleted file mode 100644 index 18523ba3be..0000000000 Binary files a/front/public/images/large/chisel/beacon/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/11.png b/front/public/images/large/chisel/beacon/11.png deleted file mode 100644 index 99ba529658..0000000000 Binary files a/front/public/images/large/chisel/beacon/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/12.png b/front/public/images/large/chisel/beacon/12.png deleted file mode 100644 index 0fae049f63..0000000000 Binary files a/front/public/images/large/chisel/beacon/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/13.png b/front/public/images/large/chisel/beacon/13.png deleted file mode 100644 index ab951dea0e..0000000000 Binary files a/front/public/images/large/chisel/beacon/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/14.png b/front/public/images/large/chisel/beacon/14.png deleted file mode 100644 index 68ef0547a3..0000000000 Binary files a/front/public/images/large/chisel/beacon/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/15.png b/front/public/images/large/chisel/beacon/15.png deleted file mode 100644 index 0d4d182fa3..0000000000 Binary files a/front/public/images/large/chisel/beacon/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/2.png b/front/public/images/large/chisel/beacon/2.png deleted file mode 100644 index d9ba184145..0000000000 Binary files a/front/public/images/large/chisel/beacon/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/3.png b/front/public/images/large/chisel/beacon/3.png deleted file mode 100644 index c591b57404..0000000000 Binary files a/front/public/images/large/chisel/beacon/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/4.png b/front/public/images/large/chisel/beacon/4.png deleted file mode 100644 index 3160f183a2..0000000000 Binary files a/front/public/images/large/chisel/beacon/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/5.png b/front/public/images/large/chisel/beacon/5.png deleted file mode 100644 index 7f82b2dd3b..0000000000 Binary files a/front/public/images/large/chisel/beacon/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/6.png b/front/public/images/large/chisel/beacon/6.png deleted file mode 100644 index 66443bdcdc..0000000000 Binary files a/front/public/images/large/chisel/beacon/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/7.png b/front/public/images/large/chisel/beacon/7.png deleted file mode 100644 index 13586b1ce7..0000000000 Binary files a/front/public/images/large/chisel/beacon/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/8.png b/front/public/images/large/chisel/beacon/8.png deleted file mode 100644 index bfca43754b..0000000000 Binary files a/front/public/images/large/chisel/beacon/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/beacon/9.png b/front/public/images/large/chisel/beacon/9.png deleted file mode 100644 index 6d60e689b1..0000000000 Binary files a/front/public/images/large/chisel/beacon/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/1.png b/front/public/images/large/chisel/birch_planks/1.png deleted file mode 100644 index a488cc5ae1..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/10.png b/front/public/images/large/chisel/birch_planks/10.png deleted file mode 100644 index c4c14ebc1a..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/11.png b/front/public/images/large/chisel/birch_planks/11.png deleted file mode 100644 index 96e4353f69..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/12.png b/front/public/images/large/chisel/birch_planks/12.png deleted file mode 100644 index ea223c8197..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/13.png b/front/public/images/large/chisel/birch_planks/13.png deleted file mode 100644 index 6140a4cc03..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/14.png b/front/public/images/large/chisel/birch_planks/14.png deleted file mode 100644 index 77a27dfbeb..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/15.png b/front/public/images/large/chisel/birch_planks/15.png deleted file mode 100644 index 472c09d35b..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/2.png b/front/public/images/large/chisel/birch_planks/2.png deleted file mode 100644 index fb84fd263f..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/3.png b/front/public/images/large/chisel/birch_planks/3.png deleted file mode 100644 index fe3f455ffa..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/4.png b/front/public/images/large/chisel/birch_planks/4.png deleted file mode 100644 index 1059186079..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/5.png b/front/public/images/large/chisel/birch_planks/5.png deleted file mode 100644 index 3a9d5db77e..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/6.png b/front/public/images/large/chisel/birch_planks/6.png deleted file mode 100644 index b93a265203..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/7.png b/front/public/images/large/chisel/birch_planks/7.png deleted file mode 100644 index 680c96bb11..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/8.png b/front/public/images/large/chisel/birch_planks/8.png deleted file mode 100644 index 8153b61a90..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/birch_planks/9.png b/front/public/images/large/chisel/birch_planks/9.png deleted file mode 100644 index 3635f804eb..0000000000 Binary files a/front/public/images/large/chisel/birch_planks/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/bloodBrick/0.png b/front/public/images/large/chisel/bloodBrick/0.png deleted file mode 100644 index 748139c107..0000000000 Binary files a/front/public/images/large/chisel/bloodBrick/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/bloodRune/0.png b/front/public/images/large/chisel/bloodRune/0.png deleted file mode 100644 index 3f00d917e3..0000000000 Binary files a/front/public/images/large/chisel/bloodRune/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/bloodRune/1.png b/front/public/images/large/chisel/bloodRune/1.png deleted file mode 100644 index e04a206c1d..0000000000 Binary files a/front/public/images/large/chisel/bloodRune/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/bloodRune/2.png b/front/public/images/large/chisel/bloodRune/2.png deleted file mode 100644 index 4902c249ab..0000000000 Binary files a/front/public/images/large/chisel/bloodRune/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/bloodRune/3.png b/front/public/images/large/chisel/bloodRune/3.png deleted file mode 100644 index 401e5e2da6..0000000000 Binary files a/front/public/images/large/chisel/bloodRune/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/bloodRune/4.png b/front/public/images/large/chisel/bloodRune/4.png deleted file mode 100644 index 59da77b528..0000000000 Binary files a/front/public/images/large/chisel/bloodRune/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/bloodRune/5.png b/front/public/images/large/chisel/bloodRune/5.png deleted file mode 100644 index 7794df9e51..0000000000 Binary files a/front/public/images/large/chisel/bloodRune/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/1.png b/front/public/images/large/chisel/bookshelf/1.png deleted file mode 100644 index 51c955cb01..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/2.png b/front/public/images/large/chisel/bookshelf/2.png deleted file mode 100644 index 2d889f0d75..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/3.png b/front/public/images/large/chisel/bookshelf/3.png deleted file mode 100644 index 518bda3feb..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/4.png b/front/public/images/large/chisel/bookshelf/4.png deleted file mode 100644 index 6c6eca8d6e..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/5.png b/front/public/images/large/chisel/bookshelf/5.png deleted file mode 100644 index e3b1b3b6f9..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/6.png b/front/public/images/large/chisel/bookshelf/6.png deleted file mode 100644 index 2556bd4254..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/7.png b/front/public/images/large/chisel/bookshelf/7.png deleted file mode 100644 index 68056420f1..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/bookshelf/8.png b/front/public/images/large/chisel/bookshelf/8.png deleted file mode 100644 index 3f449fe434..0000000000 Binary files a/front/public/images/large/chisel/bookshelf/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/brickCustom/1.png b/front/public/images/large/chisel/brickCustom/1.png deleted file mode 100644 index c38f14105f..0000000000 Binary files a/front/public/images/large/chisel/brickCustom/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/brickCustom/2.png b/front/public/images/large/chisel/brickCustom/2.png deleted file mode 100644 index dab8136732..0000000000 Binary files a/front/public/images/large/chisel/brickCustom/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/brickCustom/3.png b/front/public/images/large/chisel/brickCustom/3.png deleted file mode 100644 index b6a917c49a..0000000000 Binary files a/front/public/images/large/chisel/brickCustom/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/brickCustom/5.png b/front/public/images/large/chisel/brickCustom/5.png deleted file mode 100644 index 0e42bb655d..0000000000 Binary files a/front/public/images/large/chisel/brickCustom/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/brickCustom/6.png b/front/public/images/large/chisel/brickCustom/6.png deleted file mode 100644 index 96bef0362e..0000000000 Binary files a/front/public/images/large/chisel/brickCustom/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/bronzeblock/0.png b/front/public/images/large/chisel/bronzeblock/0.png deleted file mode 100644 index 1eb4878d32..0000000000 Binary files a/front/public/images/large/chisel/bronzeblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/bronzeblock/1.png b/front/public/images/large/chisel/bronzeblock/1.png deleted file mode 100644 index b9305c170f..0000000000 Binary files a/front/public/images/large/chisel/bronzeblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/bronzeblock/2.png b/front/public/images/large/chisel/bronzeblock/2.png deleted file mode 100644 index e4273f036f..0000000000 Binary files a/front/public/images/large/chisel/bronzeblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/bronzeblock/3.png b/front/public/images/large/chisel/bronzeblock/3.png deleted file mode 100644 index b8317c4c77..0000000000 Binary files a/front/public/images/large/chisel/bronzeblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/bronzeblock/4.png b/front/public/images/large/chisel/bronzeblock/4.png deleted file mode 100644 index 757d16547b..0000000000 Binary files a/front/public/images/large/chisel/bronzeblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/bronzeblock/5.png b/front/public/images/large/chisel/bronzeblock/5.png deleted file mode 100644 index 8f8645f465..0000000000 Binary files a/front/public/images/large/chisel/bronzeblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/0.png b/front/public/images/large/chisel/carpet/0.png deleted file mode 100644 index e444f29200..0000000000 Binary files a/front/public/images/large/chisel/carpet/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/1.png b/front/public/images/large/chisel/carpet/1.png deleted file mode 100644 index 417c3ee40b..0000000000 Binary files a/front/public/images/large/chisel/carpet/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/10.png b/front/public/images/large/chisel/carpet/10.png deleted file mode 100644 index 4f2987d9b8..0000000000 Binary files a/front/public/images/large/chisel/carpet/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/11.png b/front/public/images/large/chisel/carpet/11.png deleted file mode 100644 index ebcd0fbb6b..0000000000 Binary files a/front/public/images/large/chisel/carpet/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/12.png b/front/public/images/large/chisel/carpet/12.png deleted file mode 100644 index d22fc71361..0000000000 Binary files a/front/public/images/large/chisel/carpet/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/13.png b/front/public/images/large/chisel/carpet/13.png deleted file mode 100644 index aa8cc89036..0000000000 Binary files a/front/public/images/large/chisel/carpet/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/14.png b/front/public/images/large/chisel/carpet/14.png deleted file mode 100644 index 44b72d4ed5..0000000000 Binary files a/front/public/images/large/chisel/carpet/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/15.png b/front/public/images/large/chisel/carpet/15.png deleted file mode 100644 index c12f0a4b67..0000000000 Binary files a/front/public/images/large/chisel/carpet/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/2.png b/front/public/images/large/chisel/carpet/2.png deleted file mode 100644 index 5b6b0b50ca..0000000000 Binary files a/front/public/images/large/chisel/carpet/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/3.png b/front/public/images/large/chisel/carpet/3.png deleted file mode 100644 index 1ddbdde894..0000000000 Binary files a/front/public/images/large/chisel/carpet/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/4.png b/front/public/images/large/chisel/carpet/4.png deleted file mode 100644 index efdbe341b9..0000000000 Binary files a/front/public/images/large/chisel/carpet/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/5.png b/front/public/images/large/chisel/carpet/5.png deleted file mode 100644 index 83cac6e595..0000000000 Binary files a/front/public/images/large/chisel/carpet/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/6.png b/front/public/images/large/chisel/carpet/6.png deleted file mode 100644 index b7cf45ce78..0000000000 Binary files a/front/public/images/large/chisel/carpet/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/7.png b/front/public/images/large/chisel/carpet/7.png deleted file mode 100644 index 422e56edc3..0000000000 Binary files a/front/public/images/large/chisel/carpet/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/8.png b/front/public/images/large/chisel/carpet/8.png deleted file mode 100644 index 088d852f9d..0000000000 Binary files a/front/public/images/large/chisel/carpet/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet/9.png b/front/public/images/large/chisel/carpet/9.png deleted file mode 100644 index 65bf6ae580..0000000000 Binary files a/front/public/images/large/chisel/carpet/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/0.png b/front/public/images/large/chisel/carpet_block/0.png deleted file mode 100644 index b8f6ce959d..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/1.png b/front/public/images/large/chisel/carpet_block/1.png deleted file mode 100644 index d0f44280df..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/10.png b/front/public/images/large/chisel/carpet_block/10.png deleted file mode 100644 index 8785ded6b5..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/11.png b/front/public/images/large/chisel/carpet_block/11.png deleted file mode 100644 index 10021ea771..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/12.png b/front/public/images/large/chisel/carpet_block/12.png deleted file mode 100644 index 34030d0fbf..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/13.png b/front/public/images/large/chisel/carpet_block/13.png deleted file mode 100644 index 9feb75506b..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/14.png b/front/public/images/large/chisel/carpet_block/14.png deleted file mode 100644 index c72b2f84e5..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/15.png b/front/public/images/large/chisel/carpet_block/15.png deleted file mode 100644 index bf5d00f1b0..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/2.png b/front/public/images/large/chisel/carpet_block/2.png deleted file mode 100644 index d9ce873487..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/3.png b/front/public/images/large/chisel/carpet_block/3.png deleted file mode 100644 index 8bb912bd95..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/4.png b/front/public/images/large/chisel/carpet_block/4.png deleted file mode 100644 index 33d944a808..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/5.png b/front/public/images/large/chisel/carpet_block/5.png deleted file mode 100644 index c98ed7be9a..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/6.png b/front/public/images/large/chisel/carpet_block/6.png deleted file mode 100644 index a5241815f3..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/7.png b/front/public/images/large/chisel/carpet_block/7.png deleted file mode 100644 index 26b8ac6bdd..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/8.png b/front/public/images/large/chisel/carpet_block/8.png deleted file mode 100644 index fa68b33a56..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/carpet_block/9.png b/front/public/images/large/chisel/carpet_block/9.png deleted file mode 100644 index c6c7ba7ff4..0000000000 Binary files a/front/public/images/large/chisel/carpet_block/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/chisel/0.png b/front/public/images/large/chisel/chisel/0.png deleted file mode 100644 index 0aee256a90..0000000000 Binary files a/front/public/images/large/chisel/chisel/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/cloud/0.png b/front/public/images/large/chisel/cloud/0.png deleted file mode 100644 index 5475e82a1d..0000000000 Binary files a/front/public/images/large/chisel/cloud/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/cloud/1.png b/front/public/images/large/chisel/cloud/1.png deleted file mode 100644 index 45174eda6b..0000000000 Binary files a/front/public/images/large/chisel/cloud/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/cloud/2.png b/front/public/images/large/chisel/cloud/2.png deleted file mode 100644 index eb8e0dd6dd..0000000000 Binary files a/front/public/images/large/chisel/cloud/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/cloud/3.png b/front/public/images/large/chisel/cloud/3.png deleted file mode 100644 index 6b3beb77bf..0000000000 Binary files a/front/public/images/large/chisel/cloud/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/cloud/4.png b/front/public/images/large/chisel/cloud/4.png deleted file mode 100644 index fd0ad0f95a..0000000000 Binary files a/front/public/images/large/chisel/cloud/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/cloudinabottle/0.png b/front/public/images/large/chisel/cloudinabottle/0.png deleted file mode 100644 index 8c1b489b4a..0000000000 Binary files a/front/public/images/large/chisel/cloudinabottle/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/1.png b/front/public/images/large/chisel/cobblestone/1.png deleted file mode 100644 index ee2e6721bc..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/10.png b/front/public/images/large/chisel/cobblestone/10.png deleted file mode 100644 index 8c5a04ba7a..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/11.png b/front/public/images/large/chisel/cobblestone/11.png deleted file mode 100644 index 77ab7115ae..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/12.png b/front/public/images/large/chisel/cobblestone/12.png deleted file mode 100644 index 62804897c7..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/13.png b/front/public/images/large/chisel/cobblestone/13.png deleted file mode 100644 index c5374b2345..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/14.png b/front/public/images/large/chisel/cobblestone/14.png deleted file mode 100644 index 1712e01b88..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/15.png b/front/public/images/large/chisel/cobblestone/15.png deleted file mode 100644 index f4220dc1c2..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/2.png b/front/public/images/large/chisel/cobblestone/2.png deleted file mode 100644 index 2346f21520..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/3.png b/front/public/images/large/chisel/cobblestone/3.png deleted file mode 100644 index 846f39f255..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/4.png b/front/public/images/large/chisel/cobblestone/4.png deleted file mode 100644 index a412fea6d9..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/5.png b/front/public/images/large/chisel/cobblestone/5.png deleted file mode 100644 index ca038e61cc..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/6.png b/front/public/images/large/chisel/cobblestone/6.png deleted file mode 100644 index 62c371f0a6..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/7.png b/front/public/images/large/chisel/cobblestone/7.png deleted file mode 100644 index 2a6a53860f..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/8.png b/front/public/images/large/chisel/cobblestone/8.png deleted file mode 100644 index e0c8324a3a..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/cobblestone/9.png b/front/public/images/large/chisel/cobblestone/9.png deleted file mode 100644 index 07abcb7dd5..0000000000 Binary files a/front/public/images/large/chisel/cobblestone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/0.png b/front/public/images/large/chisel/concrete/0.png deleted file mode 100644 index c1f1274725..0000000000 Binary files a/front/public/images/large/chisel/concrete/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/1.png b/front/public/images/large/chisel/concrete/1.png deleted file mode 100644 index a6dd72b76c..0000000000 Binary files a/front/public/images/large/chisel/concrete/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/10.png b/front/public/images/large/chisel/concrete/10.png deleted file mode 100644 index 2c7d1f3394..0000000000 Binary files a/front/public/images/large/chisel/concrete/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/2.png b/front/public/images/large/chisel/concrete/2.png deleted file mode 100644 index 32d7248099..0000000000 Binary files a/front/public/images/large/chisel/concrete/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/3.png b/front/public/images/large/chisel/concrete/3.png deleted file mode 100644 index d7cb712b7f..0000000000 Binary files a/front/public/images/large/chisel/concrete/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/4.png b/front/public/images/large/chisel/concrete/4.png deleted file mode 100644 index aca8603e24..0000000000 Binary files a/front/public/images/large/chisel/concrete/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/5.png b/front/public/images/large/chisel/concrete/5.png deleted file mode 100644 index 4c86382191..0000000000 Binary files a/front/public/images/large/chisel/concrete/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/6.png b/front/public/images/large/chisel/concrete/6.png deleted file mode 100644 index 7d1bf7400a..0000000000 Binary files a/front/public/images/large/chisel/concrete/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/7.png b/front/public/images/large/chisel/concrete/7.png deleted file mode 100644 index 0d19782fad..0000000000 Binary files a/front/public/images/large/chisel/concrete/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/8.png b/front/public/images/large/chisel/concrete/8.png deleted file mode 100644 index 5534151ef2..0000000000 Binary files a/front/public/images/large/chisel/concrete/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/concrete/9.png b/front/public/images/large/chisel/concrete/9.png deleted file mode 100644 index b0c9d9180c..0000000000 Binary files a/front/public/images/large/chisel/concrete/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/copperblock/0.png b/front/public/images/large/chisel/copperblock/0.png deleted file mode 100644 index 569fa7f632..0000000000 Binary files a/front/public/images/large/chisel/copperblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/copperblock/1.png b/front/public/images/large/chisel/copperblock/1.png deleted file mode 100644 index 08735c9b87..0000000000 Binary files a/front/public/images/large/chisel/copperblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/copperblock/2.png b/front/public/images/large/chisel/copperblock/2.png deleted file mode 100644 index 589262b6f2..0000000000 Binary files a/front/public/images/large/chisel/copperblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/copperblock/3.png b/front/public/images/large/chisel/copperblock/3.png deleted file mode 100644 index 8764b2eef1..0000000000 Binary files a/front/public/images/large/chisel/copperblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/copperblock/4.png b/front/public/images/large/chisel/copperblock/4.png deleted file mode 100644 index 7480d96c2f..0000000000 Binary files a/front/public/images/large/chisel/copperblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/copperblock/5.png b/front/public/images/large/chisel/copperblock/5.png deleted file mode 100644 index 0685e6ea91..0000000000 Binary files a/front/public/images/large/chisel/copperblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/0.png b/front/public/images/large/chisel/cubit/0.png deleted file mode 100644 index 73d5e4a0c0..0000000000 Binary files a/front/public/images/large/chisel/cubit/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/1.png b/front/public/images/large/chisel/cubit/1.png deleted file mode 100644 index 4f93e0abf9..0000000000 Binary files a/front/public/images/large/chisel/cubit/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/10.png b/front/public/images/large/chisel/cubit/10.png deleted file mode 100644 index 7fe96e5dc9..0000000000 Binary files a/front/public/images/large/chisel/cubit/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/11.png b/front/public/images/large/chisel/cubit/11.png deleted file mode 100644 index 9b9a082005..0000000000 Binary files a/front/public/images/large/chisel/cubit/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/12.png b/front/public/images/large/chisel/cubit/12.png deleted file mode 100644 index 947e2ca3a7..0000000000 Binary files a/front/public/images/large/chisel/cubit/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/13.png b/front/public/images/large/chisel/cubit/13.png deleted file mode 100644 index b273d1c389..0000000000 Binary files a/front/public/images/large/chisel/cubit/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/14.png b/front/public/images/large/chisel/cubit/14.png deleted file mode 100644 index 737654d2d7..0000000000 Binary files a/front/public/images/large/chisel/cubit/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/15.png b/front/public/images/large/chisel/cubit/15.png deleted file mode 100644 index cc7e4114cc..0000000000 Binary files a/front/public/images/large/chisel/cubit/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/2.png b/front/public/images/large/chisel/cubit/2.png deleted file mode 100644 index 2f7ce7a833..0000000000 Binary files a/front/public/images/large/chisel/cubit/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/3.png b/front/public/images/large/chisel/cubit/3.png deleted file mode 100644 index 462f857996..0000000000 Binary files a/front/public/images/large/chisel/cubit/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/4.png b/front/public/images/large/chisel/cubit/4.png deleted file mode 100644 index 23220e6f59..0000000000 Binary files a/front/public/images/large/chisel/cubit/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/5.png b/front/public/images/large/chisel/cubit/5.png deleted file mode 100644 index a53d490576..0000000000 Binary files a/front/public/images/large/chisel/cubit/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/6.png b/front/public/images/large/chisel/cubit/6.png deleted file mode 100644 index 3832c623ca..0000000000 Binary files a/front/public/images/large/chisel/cubit/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/7.png b/front/public/images/large/chisel/cubit/7.png deleted file mode 100644 index 493d802c66..0000000000 Binary files a/front/public/images/large/chisel/cubit/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/8.png b/front/public/images/large/chisel/cubit/8.png deleted file mode 100644 index 6a6b134582..0000000000 Binary files a/front/public/images/large/chisel/cubit/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/cubit/9.png b/front/public/images/large/chisel/cubit/9.png deleted file mode 100644 index 498b97e357..0000000000 Binary files a/front/public/images/large/chisel/cubit/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/1.png b/front/public/images/large/chisel/dark_oak_planks/1.png deleted file mode 100644 index e589910ca6..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/10.png b/front/public/images/large/chisel/dark_oak_planks/10.png deleted file mode 100644 index 9e378585ac..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/11.png b/front/public/images/large/chisel/dark_oak_planks/11.png deleted file mode 100644 index d1b123313c..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/12.png b/front/public/images/large/chisel/dark_oak_planks/12.png deleted file mode 100644 index 82d1e5cc03..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/13.png b/front/public/images/large/chisel/dark_oak_planks/13.png deleted file mode 100644 index 0a15990381..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/14.png b/front/public/images/large/chisel/dark_oak_planks/14.png deleted file mode 100644 index e10f63cf15..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/15.png b/front/public/images/large/chisel/dark_oak_planks/15.png deleted file mode 100644 index e6505a6783..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/2.png b/front/public/images/large/chisel/dark_oak_planks/2.png deleted file mode 100644 index f8819bb070..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/3.png b/front/public/images/large/chisel/dark_oak_planks/3.png deleted file mode 100644 index ff836a66c1..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/4.png b/front/public/images/large/chisel/dark_oak_planks/4.png deleted file mode 100644 index 0f86405bdc..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/5.png b/front/public/images/large/chisel/dark_oak_planks/5.png deleted file mode 100644 index 718826baa7..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/6.png b/front/public/images/large/chisel/dark_oak_planks/6.png deleted file mode 100644 index 1c5e19eb44..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/7.png b/front/public/images/large/chisel/dark_oak_planks/7.png deleted file mode 100644 index 01fcfa4436..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/8.png b/front/public/images/large/chisel/dark_oak_planks/8.png deleted file mode 100644 index 09ee6c3753..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/dark_oak_planks/9.png b/front/public/images/large/chisel/dark_oak_planks/9.png deleted file mode 100644 index 24afb18539..0000000000 Binary files a/front/public/images/large/chisel/dark_oak_planks/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamondChisel/0.png b/front/public/images/large/chisel/diamondChisel/0.png deleted file mode 100644 index 418e2bb7db..0000000000 Binary files a/front/public/images/large/chisel/diamondChisel/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/1.png b/front/public/images/large/chisel/diamond_block/1.png deleted file mode 100644 index 2f939c1273..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/10.png b/front/public/images/large/chisel/diamond_block/10.png deleted file mode 100644 index ed677dc802..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/11.png b/front/public/images/large/chisel/diamond_block/11.png deleted file mode 100644 index d065782d0e..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/12.png b/front/public/images/large/chisel/diamond_block/12.png deleted file mode 100644 index 00ef55b656..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/2.png b/front/public/images/large/chisel/diamond_block/2.png deleted file mode 100644 index e104022828..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/3.png b/front/public/images/large/chisel/diamond_block/3.png deleted file mode 100644 index b29f4c28ad..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/4.png b/front/public/images/large/chisel/diamond_block/4.png deleted file mode 100644 index 005b01f060..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/5.png b/front/public/images/large/chisel/diamond_block/5.png deleted file mode 100644 index daa703a214..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/6.png b/front/public/images/large/chisel/diamond_block/6.png deleted file mode 100644 index d71de27e9e..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/7.png b/front/public/images/large/chisel/diamond_block/7.png deleted file mode 100644 index 1ecd517c69..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/8.png b/front/public/images/large/chisel/diamond_block/8.png deleted file mode 100644 index 3507058ee8..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/diamond_block/9.png b/front/public/images/large/chisel/diamond_block/9.png deleted file mode 100644 index dad579bc16..0000000000 Binary files a/front/public/images/large/chisel/diamond_block/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/diorite/0.png b/front/public/images/large/chisel/diorite/0.png deleted file mode 100644 index acbbecfa00..0000000000 Binary files a/front/public/images/large/chisel/diorite/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/diorite/1.png b/front/public/images/large/chisel/diorite/1.png deleted file mode 100644 index 75f37c9e7c..0000000000 Binary files a/front/public/images/large/chisel/diorite/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/diorite/2.png b/front/public/images/large/chisel/diorite/2.png deleted file mode 100644 index 09244f6d3f..0000000000 Binary files a/front/public/images/large/chisel/diorite/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/diorite/3.png b/front/public/images/large/chisel/diorite/3.png deleted file mode 100644 index e449e081a5..0000000000 Binary files a/front/public/images/large/chisel/diorite/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/diorite/4.png b/front/public/images/large/chisel/diorite/4.png deleted file mode 100644 index 29e98009bb..0000000000 Binary files a/front/public/images/large/chisel/diorite/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/diorite/5.png b/front/public/images/large/chisel/diorite/5.png deleted file mode 100644 index 76f359ce4c..0000000000 Binary files a/front/public/images/large/chisel/diorite/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/diorite/6.png b/front/public/images/large/chisel/diorite/6.png deleted file mode 100644 index d4ae74ee9d..0000000000 Binary files a/front/public/images/large/chisel/diorite/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/0.png b/front/public/images/large/chisel/dirt/0.png deleted file mode 100644 index 57db6abb72..0000000000 Binary files a/front/public/images/large/chisel/dirt/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/1.png b/front/public/images/large/chisel/dirt/1.png deleted file mode 100644 index a609ea7787..0000000000 Binary files a/front/public/images/large/chisel/dirt/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/10.png b/front/public/images/large/chisel/dirt/10.png deleted file mode 100644 index 2fe9e55474..0000000000 Binary files a/front/public/images/large/chisel/dirt/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/11.png b/front/public/images/large/chisel/dirt/11.png deleted file mode 100644 index a8a658f163..0000000000 Binary files a/front/public/images/large/chisel/dirt/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/12.png b/front/public/images/large/chisel/dirt/12.png deleted file mode 100644 index 82146f3e24..0000000000 Binary files a/front/public/images/large/chisel/dirt/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/13.png b/front/public/images/large/chisel/dirt/13.png deleted file mode 100644 index 567a6c8933..0000000000 Binary files a/front/public/images/large/chisel/dirt/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/14.png b/front/public/images/large/chisel/dirt/14.png deleted file mode 100644 index 1176a61dce..0000000000 Binary files a/front/public/images/large/chisel/dirt/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/15.png b/front/public/images/large/chisel/dirt/15.png deleted file mode 100644 index 381a91597e..0000000000 Binary files a/front/public/images/large/chisel/dirt/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/2.png b/front/public/images/large/chisel/dirt/2.png deleted file mode 100644 index 959f585305..0000000000 Binary files a/front/public/images/large/chisel/dirt/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/3.png b/front/public/images/large/chisel/dirt/3.png deleted file mode 100644 index 43322cb608..0000000000 Binary files a/front/public/images/large/chisel/dirt/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/4.png b/front/public/images/large/chisel/dirt/4.png deleted file mode 100644 index d3e6accf68..0000000000 Binary files a/front/public/images/large/chisel/dirt/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/5.png b/front/public/images/large/chisel/dirt/5.png deleted file mode 100644 index 396215e3c7..0000000000 Binary files a/front/public/images/large/chisel/dirt/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/6.png b/front/public/images/large/chisel/dirt/6.png deleted file mode 100644 index 5a23d028e0..0000000000 Binary files a/front/public/images/large/chisel/dirt/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/7.png b/front/public/images/large/chisel/dirt/7.png deleted file mode 100644 index 81198954aa..0000000000 Binary files a/front/public/images/large/chisel/dirt/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/8.png b/front/public/images/large/chisel/dirt/8.png deleted file mode 100644 index 0d2a270051..0000000000 Binary files a/front/public/images/large/chisel/dirt/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/dirt/9.png b/front/public/images/large/chisel/dirt/9.png deleted file mode 100644 index 66602f91b6..0000000000 Binary files a/front/public/images/large/chisel/dirt/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/1.png b/front/public/images/large/chisel/emerald_block/1.png deleted file mode 100644 index e1a848b488..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/10.png b/front/public/images/large/chisel/emerald_block/10.png deleted file mode 100644 index 97cd74f5f8..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/11.png b/front/public/images/large/chisel/emerald_block/11.png deleted file mode 100644 index a1ee33d668..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/2.png b/front/public/images/large/chisel/emerald_block/2.png deleted file mode 100644 index ae284c2041..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/3.png b/front/public/images/large/chisel/emerald_block/3.png deleted file mode 100644 index f9ee01e28f..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/4.png b/front/public/images/large/chisel/emerald_block/4.png deleted file mode 100644 index b4f4dbb767..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/5.png b/front/public/images/large/chisel/emerald_block/5.png deleted file mode 100644 index 1c892a4879..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/6.png b/front/public/images/large/chisel/emerald_block/6.png deleted file mode 100644 index bb8402bc88..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/7.png b/front/public/images/large/chisel/emerald_block/7.png deleted file mode 100644 index 99207dac08..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/8.png b/front/public/images/large/chisel/emerald_block/8.png deleted file mode 100644 index ddff0cc4ae..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/emerald_block/9.png b/front/public/images/large/chisel/emerald_block/9.png deleted file mode 100644 index 9ea940dfca..0000000000 Binary files a/front/public/images/large/chisel/emerald_block/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/0.png b/front/public/images/large/chisel/end_Stone/0.png deleted file mode 100644 index 0919e90a47..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/1.png b/front/public/images/large/chisel/end_Stone/1.png deleted file mode 100644 index d51470f153..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/10.png b/front/public/images/large/chisel/end_Stone/10.png deleted file mode 100644 index c57323004e..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/11.png b/front/public/images/large/chisel/end_Stone/11.png deleted file mode 100644 index 655ba91d9c..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/12.png b/front/public/images/large/chisel/end_Stone/12.png deleted file mode 100644 index 4282307a61..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/13.png b/front/public/images/large/chisel/end_Stone/13.png deleted file mode 100644 index 8aac1f4d17..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/2.png b/front/public/images/large/chisel/end_Stone/2.png deleted file mode 100644 index 2d6390b110..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/3.png b/front/public/images/large/chisel/end_Stone/3.png deleted file mode 100644 index f1e9f05544..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/4.png b/front/public/images/large/chisel/end_Stone/4.png deleted file mode 100644 index 72b4a8431b..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/5.png b/front/public/images/large/chisel/end_Stone/5.png deleted file mode 100644 index 4701584224..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/6.png b/front/public/images/large/chisel/end_Stone/6.png deleted file mode 100644 index d9d9554935..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/7.png b/front/public/images/large/chisel/end_Stone/7.png deleted file mode 100644 index 66a1bbf70c..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/8.png b/front/public/images/large/chisel/end_Stone/8.png deleted file mode 100644 index dd0a9ebdfb..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/end_Stone/9.png b/front/public/images/large/chisel/end_Stone/9.png deleted file mode 100644 index 7b47ba2e8f..0000000000 Binary files a/front/public/images/large/chisel/end_Stone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/0.png b/front/public/images/large/chisel/factoryblock/0.png deleted file mode 100644 index 3fae0998f9..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/1.png b/front/public/images/large/chisel/factoryblock/1.png deleted file mode 100644 index 26e1d15f88..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/10.png b/front/public/images/large/chisel/factoryblock/10.png deleted file mode 100644 index de4f2424fa..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/11.png b/front/public/images/large/chisel/factoryblock/11.png deleted file mode 100644 index df5e926487..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/12.png b/front/public/images/large/chisel/factoryblock/12.png deleted file mode 100644 index 0bddf461cc..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/13.png b/front/public/images/large/chisel/factoryblock/13.png deleted file mode 100644 index c080e1ef92..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/14.png b/front/public/images/large/chisel/factoryblock/14.png deleted file mode 100644 index 4a0fa4a71b..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/15.png b/front/public/images/large/chisel/factoryblock/15.png deleted file mode 100644 index 01bd190c47..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/2.png b/front/public/images/large/chisel/factoryblock/2.png deleted file mode 100644 index d4c74ae532..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/3.png b/front/public/images/large/chisel/factoryblock/3.png deleted file mode 100644 index 323a2a4015..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/4.png b/front/public/images/large/chisel/factoryblock/4.png deleted file mode 100644 index 27a98ffc0f..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/5.png b/front/public/images/large/chisel/factoryblock/5.png deleted file mode 100644 index a09a87dcfa..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/6.png b/front/public/images/large/chisel/factoryblock/6.png deleted file mode 100644 index db542b7c40..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/7.png b/front/public/images/large/chisel/factoryblock/7.png deleted file mode 100644 index 0a01535aa1..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/8.png b/front/public/images/large/chisel/factoryblock/8.png deleted file mode 100644 index 7c6f0ea2ba..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock/9.png b/front/public/images/large/chisel/factoryblock/9.png deleted file mode 100644 index 55f66f988d..0000000000 Binary files a/front/public/images/large/chisel/factoryblock/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock2/0.png b/front/public/images/large/chisel/factoryblock2/0.png deleted file mode 100644 index fb5b0f244e..0000000000 Binary files a/front/public/images/large/chisel/factoryblock2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock2/1.png b/front/public/images/large/chisel/factoryblock2/1.png deleted file mode 100644 index b57af785d4..0000000000 Binary files a/front/public/images/large/chisel/factoryblock2/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock2/2.png b/front/public/images/large/chisel/factoryblock2/2.png deleted file mode 100644 index de6a17b407..0000000000 Binary files a/front/public/images/large/chisel/factoryblock2/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/factoryblock2/3.png b/front/public/images/large/chisel/factoryblock2/3.png deleted file mode 100644 index c3749da912..0000000000 Binary files a/front/public/images/large/chisel/factoryblock2/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/0.png b/front/public/images/large/chisel/fantasyblock/0.png deleted file mode 100644 index ff88df11de..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/1.png b/front/public/images/large/chisel/fantasyblock/1.png deleted file mode 100644 index 119d886383..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/10.png b/front/public/images/large/chisel/fantasyblock/10.png deleted file mode 100644 index b8281b93b7..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/11.png b/front/public/images/large/chisel/fantasyblock/11.png deleted file mode 100644 index 2b32c6e3ed..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/12.png b/front/public/images/large/chisel/fantasyblock/12.png deleted file mode 100644 index 9f6a600b33..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/13.png b/front/public/images/large/chisel/fantasyblock/13.png deleted file mode 100644 index a67010a560..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/14.png b/front/public/images/large/chisel/fantasyblock/14.png deleted file mode 100644 index cda7b912ac..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/15.png b/front/public/images/large/chisel/fantasyblock/15.png deleted file mode 100644 index 9de54e91f2..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/2.png b/front/public/images/large/chisel/fantasyblock/2.png deleted file mode 100644 index 2a32d5e920..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/3.png b/front/public/images/large/chisel/fantasyblock/3.png deleted file mode 100644 index c8675d98e2..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/4.png b/front/public/images/large/chisel/fantasyblock/4.png deleted file mode 100644 index 0c7f5a9009..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/5.png b/front/public/images/large/chisel/fantasyblock/5.png deleted file mode 100644 index 7a742a876b..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/6.png b/front/public/images/large/chisel/fantasyblock/6.png deleted file mode 100644 index c214385efe..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/7.png b/front/public/images/large/chisel/fantasyblock/7.png deleted file mode 100644 index ea37bc66c8..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/8.png b/front/public/images/large/chisel/fantasyblock/8.png deleted file mode 100644 index c62cf464a0..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock/9.png b/front/public/images/large/chisel/fantasyblock/9.png deleted file mode 100644 index 0143909aea..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/0.png b/front/public/images/large/chisel/fantasyblock2/0.png deleted file mode 100644 index ee64047784..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/1.png b/front/public/images/large/chisel/fantasyblock2/1.png deleted file mode 100644 index e342e70dcf..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/10.png b/front/public/images/large/chisel/fantasyblock2/10.png deleted file mode 100644 index b8281b93b7..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/11.png b/front/public/images/large/chisel/fantasyblock2/11.png deleted file mode 100644 index 2b32c6e3ed..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/12.png b/front/public/images/large/chisel/fantasyblock2/12.png deleted file mode 100644 index a10030a718..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/13.png b/front/public/images/large/chisel/fantasyblock2/13.png deleted file mode 100644 index 077c6ab85d..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/14.png b/front/public/images/large/chisel/fantasyblock2/14.png deleted file mode 100644 index c7aa322b43..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/15.png b/front/public/images/large/chisel/fantasyblock2/15.png deleted file mode 100644 index 47d48de103..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/2.png b/front/public/images/large/chisel/fantasyblock2/2.png deleted file mode 100644 index a1247afc6d..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/3.png b/front/public/images/large/chisel/fantasyblock2/3.png deleted file mode 100644 index 280496eaac..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/4.png b/front/public/images/large/chisel/fantasyblock2/4.png deleted file mode 100644 index 946249ba87..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/5.png b/front/public/images/large/chisel/fantasyblock2/5.png deleted file mode 100644 index 76b22d03f3..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/6.png b/front/public/images/large/chisel/fantasyblock2/6.png deleted file mode 100644 index a7c5923054..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/7.png b/front/public/images/large/chisel/fantasyblock2/7.png deleted file mode 100644 index 7f0c673989..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/8.png b/front/public/images/large/chisel/fantasyblock2/8.png deleted file mode 100644 index c62cf464a0..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/fantasyblock2/9.png b/front/public/images/large/chisel/fantasyblock2/9.png deleted file mode 100644 index 0143909aea..0000000000 Binary files a/front/public/images/large/chisel/fantasyblock2/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/futura/0.png b/front/public/images/large/chisel/futura/0.png deleted file mode 100644 index bf7e034b7f..0000000000 Binary files a/front/public/images/large/chisel/futura/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/futura/1.png b/front/public/images/large/chisel/futura/1.png deleted file mode 100644 index 366c816f80..0000000000 Binary files a/front/public/images/large/chisel/futura/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/futura/2.png b/front/public/images/large/chisel/futura/2.png deleted file mode 100644 index d173608c07..0000000000 Binary files a/front/public/images/large/chisel/futura/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/futura/3.png b/front/public/images/large/chisel/futura/3.png deleted file mode 100644 index f36f615854..0000000000 Binary files a/front/public/images/large/chisel/futura/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/futura/4.png b/front/public/images/large/chisel/futura/4.png deleted file mode 100644 index e53f923f09..0000000000 Binary files a/front/public/images/large/chisel/futura/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/futura/5.png b/front/public/images/large/chisel/futura/5.png deleted file mode 100644 index 4b3824ecfe..0000000000 Binary files a/front/public/images/large/chisel/futura/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/0.png b/front/public/images/large/chisel/futuraCircuit/0.png deleted file mode 100644 index 6f59ac817a..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/1.png b/front/public/images/large/chisel/futuraCircuit/1.png deleted file mode 100644 index 5a9a4a6270..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/10.png b/front/public/images/large/chisel/futuraCircuit/10.png deleted file mode 100644 index 98fb85a374..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/11.png b/front/public/images/large/chisel/futuraCircuit/11.png deleted file mode 100644 index 2ba3fd53ad..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/12.png b/front/public/images/large/chisel/futuraCircuit/12.png deleted file mode 100644 index efddba5f02..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/13.png b/front/public/images/large/chisel/futuraCircuit/13.png deleted file mode 100644 index 2fbd9cc7ce..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/14.png b/front/public/images/large/chisel/futuraCircuit/14.png deleted file mode 100644 index ef077f56ff..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/15.png b/front/public/images/large/chisel/futuraCircuit/15.png deleted file mode 100644 index 249f2f6c91..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/2.png b/front/public/images/large/chisel/futuraCircuit/2.png deleted file mode 100644 index 3853764a35..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/3.png b/front/public/images/large/chisel/futuraCircuit/3.png deleted file mode 100644 index a3f304935a..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/4.png b/front/public/images/large/chisel/futuraCircuit/4.png deleted file mode 100644 index 69c266c141..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/5.png b/front/public/images/large/chisel/futuraCircuit/5.png deleted file mode 100644 index e32608f21a..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/6.png b/front/public/images/large/chisel/futuraCircuit/6.png deleted file mode 100644 index 31c65d67f8..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/7.png b/front/public/images/large/chisel/futuraCircuit/7.png deleted file mode 100644 index 6d87e0f25d..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/8.png b/front/public/images/large/chisel/futuraCircuit/8.png deleted file mode 100644 index 8169395a58..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/futuraCircuit/9.png b/front/public/images/large/chisel/futuraCircuit/9.png deleted file mode 100644 index eb81e0be67..0000000000 Binary files a/front/public/images/large/chisel/futuraCircuit/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/1.png b/front/public/images/large/chisel/glass/1.png deleted file mode 100644 index d937171df6..0000000000 Binary files a/front/public/images/large/chisel/glass/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/10.png b/front/public/images/large/chisel/glass/10.png deleted file mode 100644 index 5af0a729b2..0000000000 Binary files a/front/public/images/large/chisel/glass/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/11.png b/front/public/images/large/chisel/glass/11.png deleted file mode 100644 index 9801c46849..0000000000 Binary files a/front/public/images/large/chisel/glass/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/12.png b/front/public/images/large/chisel/glass/12.png deleted file mode 100644 index ecff2e20ed..0000000000 Binary files a/front/public/images/large/chisel/glass/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/13.png b/front/public/images/large/chisel/glass/13.png deleted file mode 100644 index eb34549123..0000000000 Binary files a/front/public/images/large/chisel/glass/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/14.png b/front/public/images/large/chisel/glass/14.png deleted file mode 100644 index bf359f71ee..0000000000 Binary files a/front/public/images/large/chisel/glass/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/15.png b/front/public/images/large/chisel/glass/15.png deleted file mode 100644 index 93a919ead7..0000000000 Binary files a/front/public/images/large/chisel/glass/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/2.png b/front/public/images/large/chisel/glass/2.png deleted file mode 100644 index c15e2349e7..0000000000 Binary files a/front/public/images/large/chisel/glass/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/3.png b/front/public/images/large/chisel/glass/3.png deleted file mode 100644 index c1e4bb89e0..0000000000 Binary files a/front/public/images/large/chisel/glass/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/4.png b/front/public/images/large/chisel/glass/4.png deleted file mode 100644 index 3b26ff32f0..0000000000 Binary files a/front/public/images/large/chisel/glass/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/5.png b/front/public/images/large/chisel/glass/5.png deleted file mode 100644 index 8b92b08de0..0000000000 Binary files a/front/public/images/large/chisel/glass/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/6.png b/front/public/images/large/chisel/glass/6.png deleted file mode 100644 index 43165bdada..0000000000 Binary files a/front/public/images/large/chisel/glass/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/7.png b/front/public/images/large/chisel/glass/7.png deleted file mode 100644 index 097633a6c9..0000000000 Binary files a/front/public/images/large/chisel/glass/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/8.png b/front/public/images/large/chisel/glass/8.png deleted file mode 100644 index a28f29e46a..0000000000 Binary files a/front/public/images/large/chisel/glass/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass/9.png b/front/public/images/large/chisel/glass/9.png deleted file mode 100644 index d98b1aeedb..0000000000 Binary files a/front/public/images/large/chisel/glass/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass2/0.png b/front/public/images/large/chisel/glass2/0.png deleted file mode 100644 index 0e9383632e..0000000000 Binary files a/front/public/images/large/chisel/glass2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/1.png b/front/public/images/large/chisel/glass_pane/1.png deleted file mode 100644 index bd7420ef8e..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/12.png b/front/public/images/large/chisel/glass_pane/12.png deleted file mode 100644 index bf43bcfa7c..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/13.png b/front/public/images/large/chisel/glass_pane/13.png deleted file mode 100644 index 2b537d389d..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/14.png b/front/public/images/large/chisel/glass_pane/14.png deleted file mode 100644 index cf0a3ab602..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/15.png b/front/public/images/large/chisel/glass_pane/15.png deleted file mode 100644 index 41cbc1d62d..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/2.png b/front/public/images/large/chisel/glass_pane/2.png deleted file mode 100644 index e0a391484e..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/3.png b/front/public/images/large/chisel/glass_pane/3.png deleted file mode 100644 index 92748390f8..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/glass_pane/4.png b/front/public/images/large/chisel/glass_pane/4.png deleted file mode 100644 index 647bdc6594..0000000000 Binary files a/front/public/images/large/chisel/glass_pane/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/0.png b/front/public/images/large/chisel/glotek/0.png deleted file mode 100644 index 554bb249fa..0000000000 Binary files a/front/public/images/large/chisel/glotek/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/1.png b/front/public/images/large/chisel/glotek/1.png deleted file mode 100644 index 0dc89d67e7..0000000000 Binary files a/front/public/images/large/chisel/glotek/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/10.png b/front/public/images/large/chisel/glotek/10.png deleted file mode 100644 index 46382f558a..0000000000 Binary files a/front/public/images/large/chisel/glotek/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/11.png b/front/public/images/large/chisel/glotek/11.png deleted file mode 100644 index fcb5efda56..0000000000 Binary files a/front/public/images/large/chisel/glotek/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/12.png b/front/public/images/large/chisel/glotek/12.png deleted file mode 100644 index 2aacae6191..0000000000 Binary files a/front/public/images/large/chisel/glotek/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/13.png b/front/public/images/large/chisel/glotek/13.png deleted file mode 100644 index 8c51c94774..0000000000 Binary files a/front/public/images/large/chisel/glotek/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/14.png b/front/public/images/large/chisel/glotek/14.png deleted file mode 100644 index 5ec356454a..0000000000 Binary files a/front/public/images/large/chisel/glotek/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/15.png b/front/public/images/large/chisel/glotek/15.png deleted file mode 100644 index 4c1719dd12..0000000000 Binary files a/front/public/images/large/chisel/glotek/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/2.png b/front/public/images/large/chisel/glotek/2.png deleted file mode 100644 index 38072e2099..0000000000 Binary files a/front/public/images/large/chisel/glotek/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/3.png b/front/public/images/large/chisel/glotek/3.png deleted file mode 100644 index 6355576040..0000000000 Binary files a/front/public/images/large/chisel/glotek/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/4.png b/front/public/images/large/chisel/glotek/4.png deleted file mode 100644 index fa22768b52..0000000000 Binary files a/front/public/images/large/chisel/glotek/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/5.png b/front/public/images/large/chisel/glotek/5.png deleted file mode 100644 index aadc4a9893..0000000000 Binary files a/front/public/images/large/chisel/glotek/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/6.png b/front/public/images/large/chisel/glotek/6.png deleted file mode 100644 index 902007cd3f..0000000000 Binary files a/front/public/images/large/chisel/glotek/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/7.png b/front/public/images/large/chisel/glotek/7.png deleted file mode 100644 index a4671948a3..0000000000 Binary files a/front/public/images/large/chisel/glotek/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/8.png b/front/public/images/large/chisel/glotek/8.png deleted file mode 100644 index dbf58740db..0000000000 Binary files a/front/public/images/large/chisel/glotek/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/glotek/9.png b/front/public/images/large/chisel/glotek/9.png deleted file mode 100644 index 03e239cac6..0000000000 Binary files a/front/public/images/large/chisel/glotek/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/1.png b/front/public/images/large/chisel/glowstone/1.png deleted file mode 100644 index b8823a9d71..0000000000 Binary files a/front/public/images/large/chisel/glowstone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/10.png b/front/public/images/large/chisel/glowstone/10.png deleted file mode 100644 index bf28337e46..0000000000 Binary files a/front/public/images/large/chisel/glowstone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/11.png b/front/public/images/large/chisel/glowstone/11.png deleted file mode 100644 index 47a6fa50cf..0000000000 Binary files a/front/public/images/large/chisel/glowstone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/12.png b/front/public/images/large/chisel/glowstone/12.png deleted file mode 100644 index d1286f0d9b..0000000000 Binary files a/front/public/images/large/chisel/glowstone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/13.png b/front/public/images/large/chisel/glowstone/13.png deleted file mode 100644 index f9883bb362..0000000000 Binary files a/front/public/images/large/chisel/glowstone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/14.png b/front/public/images/large/chisel/glowstone/14.png deleted file mode 100644 index a159077805..0000000000 Binary files a/front/public/images/large/chisel/glowstone/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/15.png b/front/public/images/large/chisel/glowstone/15.png deleted file mode 100644 index 25d01a86b4..0000000000 Binary files a/front/public/images/large/chisel/glowstone/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/2.png b/front/public/images/large/chisel/glowstone/2.png deleted file mode 100644 index f9883bb362..0000000000 Binary files a/front/public/images/large/chisel/glowstone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/3.png b/front/public/images/large/chisel/glowstone/3.png deleted file mode 100644 index 57ac16a92e..0000000000 Binary files a/front/public/images/large/chisel/glowstone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/4.png b/front/public/images/large/chisel/glowstone/4.png deleted file mode 100644 index ba4a1a0b81..0000000000 Binary files a/front/public/images/large/chisel/glowstone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/5.png b/front/public/images/large/chisel/glowstone/5.png deleted file mode 100644 index c7e8a5d0eb..0000000000 Binary files a/front/public/images/large/chisel/glowstone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/6.png b/front/public/images/large/chisel/glowstone/6.png deleted file mode 100644 index 7a52138676..0000000000 Binary files a/front/public/images/large/chisel/glowstone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/7.png b/front/public/images/large/chisel/glowstone/7.png deleted file mode 100644 index b00f5f04ed..0000000000 Binary files a/front/public/images/large/chisel/glowstone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/8.png b/front/public/images/large/chisel/glowstone/8.png deleted file mode 100644 index 8e5c3ba531..0000000000 Binary files a/front/public/images/large/chisel/glowstone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/glowstone/9.png b/front/public/images/large/chisel/glowstone/9.png deleted file mode 100644 index eb35b00193..0000000000 Binary files a/front/public/images/large/chisel/glowstone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold2/0.png b/front/public/images/large/chisel/gold2/0.png deleted file mode 100644 index 7c3c9eb012..0000000000 Binary files a/front/public/images/large/chisel/gold2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold2/1.png b/front/public/images/large/chisel/gold2/1.png deleted file mode 100644 index c8b04ce7f8..0000000000 Binary files a/front/public/images/large/chisel/gold2/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold2/2.png b/front/public/images/large/chisel/gold2/2.png deleted file mode 100644 index e49efcbb8d..0000000000 Binary files a/front/public/images/large/chisel/gold2/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold2/3.png b/front/public/images/large/chisel/gold2/3.png deleted file mode 100644 index 27aa406d72..0000000000 Binary files a/front/public/images/large/chisel/gold2/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold2/4.png b/front/public/images/large/chisel/gold2/4.png deleted file mode 100644 index a15a39e425..0000000000 Binary files a/front/public/images/large/chisel/gold2/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold2/5.png b/front/public/images/large/chisel/gold2/5.png deleted file mode 100644 index 7c8a4b79bc..0000000000 Binary files a/front/public/images/large/chisel/gold2/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/1.png b/front/public/images/large/chisel/gold_block/1.png deleted file mode 100644 index 63317e6968..0000000000 Binary files a/front/public/images/large/chisel/gold_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/10.png b/front/public/images/large/chisel/gold_block/10.png deleted file mode 100644 index 25421f19ce..0000000000 Binary files a/front/public/images/large/chisel/gold_block/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/11.png b/front/public/images/large/chisel/gold_block/11.png deleted file mode 100644 index 8ea56f3b10..0000000000 Binary files a/front/public/images/large/chisel/gold_block/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/12.png b/front/public/images/large/chisel/gold_block/12.png deleted file mode 100644 index 78805a606d..0000000000 Binary files a/front/public/images/large/chisel/gold_block/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/13.png b/front/public/images/large/chisel/gold_block/13.png deleted file mode 100644 index 00499fecdc..0000000000 Binary files a/front/public/images/large/chisel/gold_block/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/14.png b/front/public/images/large/chisel/gold_block/14.png deleted file mode 100644 index 7c13b1685b..0000000000 Binary files a/front/public/images/large/chisel/gold_block/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/2.png b/front/public/images/large/chisel/gold_block/2.png deleted file mode 100644 index 6dd9c32ac7..0000000000 Binary files a/front/public/images/large/chisel/gold_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/3.png b/front/public/images/large/chisel/gold_block/3.png deleted file mode 100644 index 79da7a441e..0000000000 Binary files a/front/public/images/large/chisel/gold_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/4.png b/front/public/images/large/chisel/gold_block/4.png deleted file mode 100644 index c9d60ee3cc..0000000000 Binary files a/front/public/images/large/chisel/gold_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/5.png b/front/public/images/large/chisel/gold_block/5.png deleted file mode 100644 index bfeb10710d..0000000000 Binary files a/front/public/images/large/chisel/gold_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/6.png b/front/public/images/large/chisel/gold_block/6.png deleted file mode 100644 index c37005e66b..0000000000 Binary files a/front/public/images/large/chisel/gold_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/7.png b/front/public/images/large/chisel/gold_block/7.png deleted file mode 100644 index a15d469050..0000000000 Binary files a/front/public/images/large/chisel/gold_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/8.png b/front/public/images/large/chisel/gold_block/8.png deleted file mode 100644 index 915bc7a0dd..0000000000 Binary files a/front/public/images/large/chisel/gold_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/gold_block/9.png b/front/public/images/large/chisel/gold_block/9.png deleted file mode 100644 index 9c0c98904a..0000000000 Binary files a/front/public/images/large/chisel/gold_block/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/granite/0.png b/front/public/images/large/chisel/granite/0.png deleted file mode 100644 index 61f088a811..0000000000 Binary files a/front/public/images/large/chisel/granite/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/granite/1.png b/front/public/images/large/chisel/granite/1.png deleted file mode 100644 index d34eda2254..0000000000 Binary files a/front/public/images/large/chisel/granite/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/granite/2.png b/front/public/images/large/chisel/granite/2.png deleted file mode 100644 index 55115f6777..0000000000 Binary files a/front/public/images/large/chisel/granite/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/granite/3.png b/front/public/images/large/chisel/granite/3.png deleted file mode 100644 index 259debb15f..0000000000 Binary files a/front/public/images/large/chisel/granite/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/granite/4.png b/front/public/images/large/chisel/granite/4.png deleted file mode 100644 index 8d47a31a07..0000000000 Binary files a/front/public/images/large/chisel/granite/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/granite/5.png b/front/public/images/large/chisel/granite/5.png deleted file mode 100644 index e04c77dc05..0000000000 Binary files a/front/public/images/large/chisel/granite/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/granite/6.png b/front/public/images/large/chisel/granite/6.png deleted file mode 100644 index ce7371d778..0000000000 Binary files a/front/public/images/large/chisel/granite/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/0.png b/front/public/images/large/chisel/grimstone/0.png deleted file mode 100644 index 0a82c91da2..0000000000 Binary files a/front/public/images/large/chisel/grimstone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/1.png b/front/public/images/large/chisel/grimstone/1.png deleted file mode 100644 index 3a425bb51e..0000000000 Binary files a/front/public/images/large/chisel/grimstone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/10.png b/front/public/images/large/chisel/grimstone/10.png deleted file mode 100644 index 3067f8667b..0000000000 Binary files a/front/public/images/large/chisel/grimstone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/11.png b/front/public/images/large/chisel/grimstone/11.png deleted file mode 100644 index d50ee8bc88..0000000000 Binary files a/front/public/images/large/chisel/grimstone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/12.png b/front/public/images/large/chisel/grimstone/12.png deleted file mode 100644 index 5c594b4d16..0000000000 Binary files a/front/public/images/large/chisel/grimstone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/13.png b/front/public/images/large/chisel/grimstone/13.png deleted file mode 100644 index b92e7c4032..0000000000 Binary files a/front/public/images/large/chisel/grimstone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/14.png b/front/public/images/large/chisel/grimstone/14.png deleted file mode 100644 index 6799dad217..0000000000 Binary files a/front/public/images/large/chisel/grimstone/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/2.png b/front/public/images/large/chisel/grimstone/2.png deleted file mode 100644 index 42545ed82e..0000000000 Binary files a/front/public/images/large/chisel/grimstone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/3.png b/front/public/images/large/chisel/grimstone/3.png deleted file mode 100644 index 6cf34d5a62..0000000000 Binary files a/front/public/images/large/chisel/grimstone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/4.png b/front/public/images/large/chisel/grimstone/4.png deleted file mode 100644 index 814416df54..0000000000 Binary files a/front/public/images/large/chisel/grimstone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/5.png b/front/public/images/large/chisel/grimstone/5.png deleted file mode 100644 index 347e5c7a29..0000000000 Binary files a/front/public/images/large/chisel/grimstone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/6.png b/front/public/images/large/chisel/grimstone/6.png deleted file mode 100644 index 93ce3e7c6c..0000000000 Binary files a/front/public/images/large/chisel/grimstone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/7.png b/front/public/images/large/chisel/grimstone/7.png deleted file mode 100644 index 2a586479eb..0000000000 Binary files a/front/public/images/large/chisel/grimstone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/8.png b/front/public/images/large/chisel/grimstone/8.png deleted file mode 100644 index 95c0377e0e..0000000000 Binary files a/front/public/images/large/chisel/grimstone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/grimstone/9.png b/front/public/images/large/chisel/grimstone/9.png deleted file mode 100644 index 20d1e59200..0000000000 Binary files a/front/public/images/large/chisel/grimstone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/0.png b/front/public/images/large/chisel/hempcrete/0.png deleted file mode 100644 index 1eacd75ed3..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/1.png b/front/public/images/large/chisel/hempcrete/1.png deleted file mode 100644 index 3815f85be6..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/10.png b/front/public/images/large/chisel/hempcrete/10.png deleted file mode 100644 index 45c8d0c7f4..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/11.png b/front/public/images/large/chisel/hempcrete/11.png deleted file mode 100644 index d85823e715..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/12.png b/front/public/images/large/chisel/hempcrete/12.png deleted file mode 100644 index 8b3377613b..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/13.png b/front/public/images/large/chisel/hempcrete/13.png deleted file mode 100644 index 32dfd8b912..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/14.png b/front/public/images/large/chisel/hempcrete/14.png deleted file mode 100644 index 2d020c58fe..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/15.png b/front/public/images/large/chisel/hempcrete/15.png deleted file mode 100644 index 69d9c2dece..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/2.png b/front/public/images/large/chisel/hempcrete/2.png deleted file mode 100644 index b460af9203..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/3.png b/front/public/images/large/chisel/hempcrete/3.png deleted file mode 100644 index 2d390cdbe9..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/4.png b/front/public/images/large/chisel/hempcrete/4.png deleted file mode 100644 index bafd704655..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/5.png b/front/public/images/large/chisel/hempcrete/5.png deleted file mode 100644 index 3a4fdd3b91..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/6.png b/front/public/images/large/chisel/hempcrete/6.png deleted file mode 100644 index 15477d1129..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/7.png b/front/public/images/large/chisel/hempcrete/7.png deleted file mode 100644 index 2be83dd556..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/8.png b/front/public/images/large/chisel/hempcrete/8.png deleted file mode 100644 index 928f6ac693..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcrete/9.png b/front/public/images/large/chisel/hempcrete/9.png deleted file mode 100644 index 89c86ebacb..0000000000 Binary files a/front/public/images/large/chisel/hempcrete/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/0.png b/front/public/images/large/chisel/hempcretesand/0.png deleted file mode 100644 index 2e7f4c0104..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/1.png b/front/public/images/large/chisel/hempcretesand/1.png deleted file mode 100644 index 8b678b72d4..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/10.png b/front/public/images/large/chisel/hempcretesand/10.png deleted file mode 100644 index dd74643e89..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/11.png b/front/public/images/large/chisel/hempcretesand/11.png deleted file mode 100644 index 0e6cf11a57..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/12.png b/front/public/images/large/chisel/hempcretesand/12.png deleted file mode 100644 index be91c3cf31..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/13.png b/front/public/images/large/chisel/hempcretesand/13.png deleted file mode 100644 index d3b33a9572..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/14.png b/front/public/images/large/chisel/hempcretesand/14.png deleted file mode 100644 index 327f8feb7f..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/15.png b/front/public/images/large/chisel/hempcretesand/15.png deleted file mode 100644 index c4869a0a47..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/2.png b/front/public/images/large/chisel/hempcretesand/2.png deleted file mode 100644 index 8c7e71bb0e..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/3.png b/front/public/images/large/chisel/hempcretesand/3.png deleted file mode 100644 index 52af8f6680..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/4.png b/front/public/images/large/chisel/hempcretesand/4.png deleted file mode 100644 index b437f62d3a..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/5.png b/front/public/images/large/chisel/hempcretesand/5.png deleted file mode 100644 index fc77ae9280..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/6.png b/front/public/images/large/chisel/hempcretesand/6.png deleted file mode 100644 index b729b44940..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/7.png b/front/public/images/large/chisel/hempcretesand/7.png deleted file mode 100644 index ec04f22ace..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/8.png b/front/public/images/large/chisel/hempcretesand/8.png deleted file mode 100644 index 749f748ab8..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/hempcretesand/9.png b/front/public/images/large/chisel/hempcretesand/9.png deleted file mode 100644 index 3347c61c3b..0000000000 Binary files a/front/public/images/large/chisel/hempcretesand/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/0.png b/front/public/images/large/chisel/hexLargePlating/0.png deleted file mode 100644 index 78d0f8c883..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/1.png b/front/public/images/large/chisel/hexLargePlating/1.png deleted file mode 100644 index fe0469dfd9..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/10.png b/front/public/images/large/chisel/hexLargePlating/10.png deleted file mode 100644 index 84afa67da4..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/11.png b/front/public/images/large/chisel/hexLargePlating/11.png deleted file mode 100644 index 9df1dc8dc2..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/12.png b/front/public/images/large/chisel/hexLargePlating/12.png deleted file mode 100644 index fafbb5f29a..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/13.png b/front/public/images/large/chisel/hexLargePlating/13.png deleted file mode 100644 index a4bfeb3791..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/14.png b/front/public/images/large/chisel/hexLargePlating/14.png deleted file mode 100644 index dffba095b2..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/15.png b/front/public/images/large/chisel/hexLargePlating/15.png deleted file mode 100644 index f2b2cb2cf4..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/2.png b/front/public/images/large/chisel/hexLargePlating/2.png deleted file mode 100644 index 84b88e737d..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/3.png b/front/public/images/large/chisel/hexLargePlating/3.png deleted file mode 100644 index 2dc5d9973b..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/4.png b/front/public/images/large/chisel/hexLargePlating/4.png deleted file mode 100644 index 2350a2c0a8..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/5.png b/front/public/images/large/chisel/hexLargePlating/5.png deleted file mode 100644 index 0d56458274..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/6.png b/front/public/images/large/chisel/hexLargePlating/6.png deleted file mode 100644 index 688f988cfe..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/7.png b/front/public/images/large/chisel/hexLargePlating/7.png deleted file mode 100644 index 94a63da14b..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/8.png b/front/public/images/large/chisel/hexLargePlating/8.png deleted file mode 100644 index fe6d991abf..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexLargePlating/9.png b/front/public/images/large/chisel/hexLargePlating/9.png deleted file mode 100644 index 40130428ea..0000000000 Binary files a/front/public/images/large/chisel/hexLargePlating/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/0.png b/front/public/images/large/chisel/hexPlating/0.png deleted file mode 100644 index f884ba0879..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/1.png b/front/public/images/large/chisel/hexPlating/1.png deleted file mode 100644 index 1ec7131c68..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/10.png b/front/public/images/large/chisel/hexPlating/10.png deleted file mode 100644 index a8ccf9e611..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/11.png b/front/public/images/large/chisel/hexPlating/11.png deleted file mode 100644 index 0e304c648b..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/12.png b/front/public/images/large/chisel/hexPlating/12.png deleted file mode 100644 index 7c1b27b752..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/13.png b/front/public/images/large/chisel/hexPlating/13.png deleted file mode 100644 index 99929c8793..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/14.png b/front/public/images/large/chisel/hexPlating/14.png deleted file mode 100644 index 50552193df..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/15.png b/front/public/images/large/chisel/hexPlating/15.png deleted file mode 100644 index 9a7b9222ec..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/2.png b/front/public/images/large/chisel/hexPlating/2.png deleted file mode 100644 index fc80349b05..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/3.png b/front/public/images/large/chisel/hexPlating/3.png deleted file mode 100644 index 95a4bd063f..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/4.png b/front/public/images/large/chisel/hexPlating/4.png deleted file mode 100644 index e90b475348..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/5.png b/front/public/images/large/chisel/hexPlating/5.png deleted file mode 100644 index eb070f6802..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/6.png b/front/public/images/large/chisel/hexPlating/6.png deleted file mode 100644 index 5921fd3e0e..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/7.png b/front/public/images/large/chisel/hexPlating/7.png deleted file mode 100644 index 304f819ddc..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/8.png b/front/public/images/large/chisel/hexPlating/8.png deleted file mode 100644 index 94b5acbea0..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/hexPlating/9.png b/front/public/images/large/chisel/hexPlating/9.png deleted file mode 100644 index e53199d069..0000000000 Binary files a/front/public/images/large/chisel/hexPlating/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/0.png b/front/public/images/large/chisel/holystone/0.png deleted file mode 100644 index 224234fdb0..0000000000 Binary files a/front/public/images/large/chisel/holystone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/1.png b/front/public/images/large/chisel/holystone/1.png deleted file mode 100644 index f1b8619c26..0000000000 Binary files a/front/public/images/large/chisel/holystone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/10.png b/front/public/images/large/chisel/holystone/10.png deleted file mode 100644 index 4978eb0346..0000000000 Binary files a/front/public/images/large/chisel/holystone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/11.png b/front/public/images/large/chisel/holystone/11.png deleted file mode 100644 index 614796f641..0000000000 Binary files a/front/public/images/large/chisel/holystone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/12.png b/front/public/images/large/chisel/holystone/12.png deleted file mode 100644 index 3f45bafa2c..0000000000 Binary files a/front/public/images/large/chisel/holystone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/13.png b/front/public/images/large/chisel/holystone/13.png deleted file mode 100644 index ec5fe4bf3f..0000000000 Binary files a/front/public/images/large/chisel/holystone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/2.png b/front/public/images/large/chisel/holystone/2.png deleted file mode 100644 index e642113860..0000000000 Binary files a/front/public/images/large/chisel/holystone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/3.png b/front/public/images/large/chisel/holystone/3.png deleted file mode 100644 index 6c8445269c..0000000000 Binary files a/front/public/images/large/chisel/holystone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/4.png b/front/public/images/large/chisel/holystone/4.png deleted file mode 100644 index 9332d78dff..0000000000 Binary files a/front/public/images/large/chisel/holystone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/5.png b/front/public/images/large/chisel/holystone/5.png deleted file mode 100644 index a1fd7c8120..0000000000 Binary files a/front/public/images/large/chisel/holystone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/6.png b/front/public/images/large/chisel/holystone/6.png deleted file mode 100644 index d4be5a73c6..0000000000 Binary files a/front/public/images/large/chisel/holystone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/7.png b/front/public/images/large/chisel/holystone/7.png deleted file mode 100644 index f390645d42..0000000000 Binary files a/front/public/images/large/chisel/holystone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/8.png b/front/public/images/large/chisel/holystone/8.png deleted file mode 100644 index 4152cae4b7..0000000000 Binary files a/front/public/images/large/chisel/holystone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/holystone/9.png b/front/public/images/large/chisel/holystone/9.png deleted file mode 100644 index 19962d0c0a..0000000000 Binary files a/front/public/images/large/chisel/holystone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/1.png b/front/public/images/large/chisel/ice/1.png deleted file mode 100644 index 6019240dbc..0000000000 Binary files a/front/public/images/large/chisel/ice/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/10.png b/front/public/images/large/chisel/ice/10.png deleted file mode 100644 index c51046b29d..0000000000 Binary files a/front/public/images/large/chisel/ice/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/11.png b/front/public/images/large/chisel/ice/11.png deleted file mode 100644 index 3845ae531a..0000000000 Binary files a/front/public/images/large/chisel/ice/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/12.png b/front/public/images/large/chisel/ice/12.png deleted file mode 100644 index a1cf2b882a..0000000000 Binary files a/front/public/images/large/chisel/ice/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/13.png b/front/public/images/large/chisel/ice/13.png deleted file mode 100644 index 17902cef1d..0000000000 Binary files a/front/public/images/large/chisel/ice/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/14.png b/front/public/images/large/chisel/ice/14.png deleted file mode 100644 index 683b94f13c..0000000000 Binary files a/front/public/images/large/chisel/ice/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/15.png b/front/public/images/large/chisel/ice/15.png deleted file mode 100644 index a0bf91e91c..0000000000 Binary files a/front/public/images/large/chisel/ice/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/2.png b/front/public/images/large/chisel/ice/2.png deleted file mode 100644 index d16035c03c..0000000000 Binary files a/front/public/images/large/chisel/ice/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/3.png b/front/public/images/large/chisel/ice/3.png deleted file mode 100644 index 29f49616d9..0000000000 Binary files a/front/public/images/large/chisel/ice/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/4.png b/front/public/images/large/chisel/ice/4.png deleted file mode 100644 index fd5b03afc4..0000000000 Binary files a/front/public/images/large/chisel/ice/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/5.png b/front/public/images/large/chisel/ice/5.png deleted file mode 100644 index 69a57a3da2..0000000000 Binary files a/front/public/images/large/chisel/ice/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/6.png b/front/public/images/large/chisel/ice/6.png deleted file mode 100644 index 37506997f8..0000000000 Binary files a/front/public/images/large/chisel/ice/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/7.png b/front/public/images/large/chisel/ice/7.png deleted file mode 100644 index 9c24b2b931..0000000000 Binary files a/front/public/images/large/chisel/ice/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/8.png b/front/public/images/large/chisel/ice/8.png deleted file mode 100644 index 6f9ba25da4..0000000000 Binary files a/front/public/images/large/chisel/ice/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice/9.png b/front/public/images/large/chisel/ice/9.png deleted file mode 100644 index 1ea7e5e651..0000000000 Binary files a/front/public/images/large/chisel/ice/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_pillar/0.png b/front/public/images/large/chisel/ice_pillar/0.png deleted file mode 100644 index c5b87aaee8..0000000000 Binary files a/front/public/images/large/chisel/ice_pillar/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_pillar/1.png b/front/public/images/large/chisel/ice_pillar/1.png deleted file mode 100644 index 4a9d81601a..0000000000 Binary files a/front/public/images/large/chisel/ice_pillar/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_pillar/2.png b/front/public/images/large/chisel/ice_pillar/2.png deleted file mode 100644 index f26848ee56..0000000000 Binary files a/front/public/images/large/chisel/ice_pillar/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_pillar/3.png b/front/public/images/large/chisel/ice_pillar/3.png deleted file mode 100644 index d9c13733b1..0000000000 Binary files a/front/public/images/large/chisel/ice_pillar/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_pillar/4.png b/front/public/images/large/chisel/ice_pillar/4.png deleted file mode 100644 index 4713359430..0000000000 Binary files a/front/public/images/large/chisel/ice_pillar/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_pillar/5.png b/front/public/images/large/chisel/ice_pillar/5.png deleted file mode 100644 index 11546c728c..0000000000 Binary files a/front/public/images/large/chisel/ice_pillar/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_pillar/6.png b/front/public/images/large/chisel/ice_pillar/6.png deleted file mode 100644 index e98c76ba9c..0000000000 Binary files a/front/public/images/large/chisel/ice_pillar/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.0/0.png b/front/public/images/large/chisel/ice_stairs.0/0.png deleted file mode 100644 index 2d90967f69..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.0/8.png b/front/public/images/large/chisel/ice_stairs.0/8.png deleted file mode 100644 index 6760c2c4f3..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.1/0.png b/front/public/images/large/chisel/ice_stairs.1/0.png deleted file mode 100644 index a0bbd9b244..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.1/8.png b/front/public/images/large/chisel/ice_stairs.1/8.png deleted file mode 100644 index febd6cbdbb..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.2/0.png b/front/public/images/large/chisel/ice_stairs.2/0.png deleted file mode 100644 index a3929a10ea..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.2/8.png b/front/public/images/large/chisel/ice_stairs.2/8.png deleted file mode 100644 index 23d457ed45..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.3/0.png b/front/public/images/large/chisel/ice_stairs.3/0.png deleted file mode 100644 index 4db8092ccc..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.3/8.png b/front/public/images/large/chisel/ice_stairs.3/8.png deleted file mode 100644 index ffd73ceed6..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.4/0.png b/front/public/images/large/chisel/ice_stairs.4/0.png deleted file mode 100644 index f50b5b2d71..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.4/8.png b/front/public/images/large/chisel/ice_stairs.4/8.png deleted file mode 100644 index 0cb1ebbcf9..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.5/0.png b/front/public/images/large/chisel/ice_stairs.5/0.png deleted file mode 100644 index e27f5a1b5a..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.5/8.png b/front/public/images/large/chisel/ice_stairs.5/8.png deleted file mode 100644 index 8750f19113..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.6/0.png b/front/public/images/large/chisel/ice_stairs.6/0.png deleted file mode 100644 index 97ca46b90b..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.6/8.png b/front/public/images/large/chisel/ice_stairs.6/8.png deleted file mode 100644 index 32ad8db503..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.7/0.png b/front/public/images/large/chisel/ice_stairs.7/0.png deleted file mode 100644 index d539340102..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/ice_stairs.7/8.png b/front/public/images/large/chisel/ice_stairs.7/8.png deleted file mode 100644 index 9e9fa2456f..0000000000 Binary files a/front/public/images/large/chisel/ice_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron2/0.png b/front/public/images/large/chisel/iron2/0.png deleted file mode 100644 index 59bd992fe5..0000000000 Binary files a/front/public/images/large/chisel/iron2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron2/1.png b/front/public/images/large/chisel/iron2/1.png deleted file mode 100644 index cc2c5f4c38..0000000000 Binary files a/front/public/images/large/chisel/iron2/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron2/2.png b/front/public/images/large/chisel/iron2/2.png deleted file mode 100644 index 8019a0fb0e..0000000000 Binary files a/front/public/images/large/chisel/iron2/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron2/3.png b/front/public/images/large/chisel/iron2/3.png deleted file mode 100644 index 0669dd0bbe..0000000000 Binary files a/front/public/images/large/chisel/iron2/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron2/4.png b/front/public/images/large/chisel/iron2/4.png deleted file mode 100644 index a56a01e144..0000000000 Binary files a/front/public/images/large/chisel/iron2/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron2/5.png b/front/public/images/large/chisel/iron2/5.png deleted file mode 100644 index 60fe8f6208..0000000000 Binary files a/front/public/images/large/chisel/iron2/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/1.png b/front/public/images/large/chisel/iron_bars/1.png deleted file mode 100644 index 6e62a035b0..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/2.png b/front/public/images/large/chisel/iron_bars/2.png deleted file mode 100644 index 828eea4fbf..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/3.png b/front/public/images/large/chisel/iron_bars/3.png deleted file mode 100644 index 7c26ea86b0..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/4.png b/front/public/images/large/chisel/iron_bars/4.png deleted file mode 100644 index 7362b524c0..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/5.png b/front/public/images/large/chisel/iron_bars/5.png deleted file mode 100644 index 58e68c2737..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/6.png b/front/public/images/large/chisel/iron_bars/6.png deleted file mode 100644 index c36fce8b8f..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/7.png b/front/public/images/large/chisel/iron_bars/7.png deleted file mode 100644 index 8837c679ab..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/8.png b/front/public/images/large/chisel/iron_bars/8.png deleted file mode 100644 index fdf940eef5..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_bars/9.png b/front/public/images/large/chisel/iron_bars/9.png deleted file mode 100644 index ce92d2e491..0000000000 Binary files a/front/public/images/large/chisel/iron_bars/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/1.png b/front/public/images/large/chisel/iron_block/1.png deleted file mode 100644 index 8abcdb5585..0000000000 Binary files a/front/public/images/large/chisel/iron_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/10.png b/front/public/images/large/chisel/iron_block/10.png deleted file mode 100644 index b7e0057d05..0000000000 Binary files a/front/public/images/large/chisel/iron_block/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/11.png b/front/public/images/large/chisel/iron_block/11.png deleted file mode 100644 index b38ed93133..0000000000 Binary files a/front/public/images/large/chisel/iron_block/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/12.png b/front/public/images/large/chisel/iron_block/12.png deleted file mode 100644 index 2c183b9201..0000000000 Binary files a/front/public/images/large/chisel/iron_block/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/13.png b/front/public/images/large/chisel/iron_block/13.png deleted file mode 100644 index 1150af2bcd..0000000000 Binary files a/front/public/images/large/chisel/iron_block/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/14.png b/front/public/images/large/chisel/iron_block/14.png deleted file mode 100644 index 4c107fae4d..0000000000 Binary files a/front/public/images/large/chisel/iron_block/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/15.png b/front/public/images/large/chisel/iron_block/15.png deleted file mode 100644 index d84e4faa3b..0000000000 Binary files a/front/public/images/large/chisel/iron_block/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/2.png b/front/public/images/large/chisel/iron_block/2.png deleted file mode 100644 index 0ec2b80afd..0000000000 Binary files a/front/public/images/large/chisel/iron_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/3.png b/front/public/images/large/chisel/iron_block/3.png deleted file mode 100644 index 0273b266f8..0000000000 Binary files a/front/public/images/large/chisel/iron_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/4.png b/front/public/images/large/chisel/iron_block/4.png deleted file mode 100644 index b569939c48..0000000000 Binary files a/front/public/images/large/chisel/iron_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/5.png b/front/public/images/large/chisel/iron_block/5.png deleted file mode 100644 index f038cfa0a5..0000000000 Binary files a/front/public/images/large/chisel/iron_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/6.png b/front/public/images/large/chisel/iron_block/6.png deleted file mode 100644 index 9d491d41a5..0000000000 Binary files a/front/public/images/large/chisel/iron_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/7.png b/front/public/images/large/chisel/iron_block/7.png deleted file mode 100644 index 062b63bd2c..0000000000 Binary files a/front/public/images/large/chisel/iron_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/8.png b/front/public/images/large/chisel/iron_block/8.png deleted file mode 100644 index b59e7f97ab..0000000000 Binary files a/front/public/images/large/chisel/iron_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/iron_block/9.png b/front/public/images/large/chisel/iron_block/9.png deleted file mode 100644 index 1a7b0c886b..0000000000 Binary files a/front/public/images/large/chisel/iron_block/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern1/0.png b/front/public/images/large/chisel/jackolantern1/0.png deleted file mode 100644 index c7e6042227..0000000000 Binary files a/front/public/images/large/chisel/jackolantern1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern10/0.png b/front/public/images/large/chisel/jackolantern10/0.png deleted file mode 100644 index 9cca70a357..0000000000 Binary files a/front/public/images/large/chisel/jackolantern10/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern11/0.png b/front/public/images/large/chisel/jackolantern11/0.png deleted file mode 100644 index 0810e280d1..0000000000 Binary files a/front/public/images/large/chisel/jackolantern11/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern12/0.png b/front/public/images/large/chisel/jackolantern12/0.png deleted file mode 100644 index 1f8d625836..0000000000 Binary files a/front/public/images/large/chisel/jackolantern12/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern13/0.png b/front/public/images/large/chisel/jackolantern13/0.png deleted file mode 100644 index f3e33d3046..0000000000 Binary files a/front/public/images/large/chisel/jackolantern13/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern14/0.png b/front/public/images/large/chisel/jackolantern14/0.png deleted file mode 100644 index ced6623276..0000000000 Binary files a/front/public/images/large/chisel/jackolantern14/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern15/0.png b/front/public/images/large/chisel/jackolantern15/0.png deleted file mode 100644 index f1f052da26..0000000000 Binary files a/front/public/images/large/chisel/jackolantern15/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern16/0.png b/front/public/images/large/chisel/jackolantern16/0.png deleted file mode 100644 index 31674b5258..0000000000 Binary files a/front/public/images/large/chisel/jackolantern16/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern2/0.png b/front/public/images/large/chisel/jackolantern2/0.png deleted file mode 100644 index 41bcd8a963..0000000000 Binary files a/front/public/images/large/chisel/jackolantern2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern3/0.png b/front/public/images/large/chisel/jackolantern3/0.png deleted file mode 100644 index 7e87a1a9e4..0000000000 Binary files a/front/public/images/large/chisel/jackolantern3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern4/0.png b/front/public/images/large/chisel/jackolantern4/0.png deleted file mode 100644 index 081a55b177..0000000000 Binary files a/front/public/images/large/chisel/jackolantern4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern5/0.png b/front/public/images/large/chisel/jackolantern5/0.png deleted file mode 100644 index f6c4e41459..0000000000 Binary files a/front/public/images/large/chisel/jackolantern5/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern6/0.png b/front/public/images/large/chisel/jackolantern6/0.png deleted file mode 100644 index fbca48eaf1..0000000000 Binary files a/front/public/images/large/chisel/jackolantern6/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern7/0.png b/front/public/images/large/chisel/jackolantern7/0.png deleted file mode 100644 index 9b3bbc8fc8..0000000000 Binary files a/front/public/images/large/chisel/jackolantern7/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern8/0.png b/front/public/images/large/chisel/jackolantern8/0.png deleted file mode 100644 index 61ebe6eb96..0000000000 Binary files a/front/public/images/large/chisel/jackolantern8/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jackolantern9/0.png b/front/public/images/large/chisel/jackolantern9/0.png deleted file mode 100644 index 3a35a89b87..0000000000 Binary files a/front/public/images/large/chisel/jackolantern9/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/1.png b/front/public/images/large/chisel/jungle_planks/1.png deleted file mode 100644 index 2969436873..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/10.png b/front/public/images/large/chisel/jungle_planks/10.png deleted file mode 100644 index 0a5d60a9b7..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/11.png b/front/public/images/large/chisel/jungle_planks/11.png deleted file mode 100644 index abc9485a28..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/12.png b/front/public/images/large/chisel/jungle_planks/12.png deleted file mode 100644 index 191c9c7156..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/13.png b/front/public/images/large/chisel/jungle_planks/13.png deleted file mode 100644 index 21331eb192..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/14.png b/front/public/images/large/chisel/jungle_planks/14.png deleted file mode 100644 index 286f450cab..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/15.png b/front/public/images/large/chisel/jungle_planks/15.png deleted file mode 100644 index 79162eb19d..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/2.png b/front/public/images/large/chisel/jungle_planks/2.png deleted file mode 100644 index 6cd91cefaf..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/3.png b/front/public/images/large/chisel/jungle_planks/3.png deleted file mode 100644 index 61b52c4776..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/4.png b/front/public/images/large/chisel/jungle_planks/4.png deleted file mode 100644 index 20f8311f98..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/5.png b/front/public/images/large/chisel/jungle_planks/5.png deleted file mode 100644 index 5d39c241b2..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/6.png b/front/public/images/large/chisel/jungle_planks/6.png deleted file mode 100644 index 3107e51911..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/7.png b/front/public/images/large/chisel/jungle_planks/7.png deleted file mode 100644 index 2105cac86e..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/8.png b/front/public/images/large/chisel/jungle_planks/8.png deleted file mode 100644 index 316ac6e436..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/jungle_planks/9.png b/front/public/images/large/chisel/jungle_planks/9.png deleted file mode 100644 index 01a0256810..0000000000 Binary files a/front/public/images/large/chisel/jungle_planks/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/0.png b/front/public/images/large/chisel/laboratoryblock/0.png deleted file mode 100644 index efb2b56e74..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/1.png b/front/public/images/large/chisel/laboratoryblock/1.png deleted file mode 100644 index ba84596186..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/10.png b/front/public/images/large/chisel/laboratoryblock/10.png deleted file mode 100644 index 9cb0385b58..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/11.png b/front/public/images/large/chisel/laboratoryblock/11.png deleted file mode 100644 index 755244ade2..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/12.png b/front/public/images/large/chisel/laboratoryblock/12.png deleted file mode 100644 index 012c236608..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/13.png b/front/public/images/large/chisel/laboratoryblock/13.png deleted file mode 100644 index 94e33e1dc7..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/14.png b/front/public/images/large/chisel/laboratoryblock/14.png deleted file mode 100644 index 34317079fb..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/15.png b/front/public/images/large/chisel/laboratoryblock/15.png deleted file mode 100644 index 3eed5088c7..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/2.png b/front/public/images/large/chisel/laboratoryblock/2.png deleted file mode 100644 index ae6376503c..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/3.png b/front/public/images/large/chisel/laboratoryblock/3.png deleted file mode 100644 index 4ee68032d0..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/4.png b/front/public/images/large/chisel/laboratoryblock/4.png deleted file mode 100644 index a078e25847..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/5.png b/front/public/images/large/chisel/laboratoryblock/5.png deleted file mode 100644 index 4b29d1ec0e..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/6.png b/front/public/images/large/chisel/laboratoryblock/6.png deleted file mode 100644 index f4a56421b4..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/7.png b/front/public/images/large/chisel/laboratoryblock/7.png deleted file mode 100644 index 688d6902f6..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/8.png b/front/public/images/large/chisel/laboratoryblock/8.png deleted file mode 100644 index 9e609fafd6..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/laboratoryblock/9.png b/front/public/images/large/chisel/laboratoryblock/9.png deleted file mode 100644 index e8945f1fa8..0000000000 Binary files a/front/public/images/large/chisel/laboratoryblock/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/1.png b/front/public/images/large/chisel/lapis_block/1.png deleted file mode 100644 index e43e86318e..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/2.png b/front/public/images/large/chisel/lapis_block/2.png deleted file mode 100644 index 5ef81e2a75..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/3.png b/front/public/images/large/chisel/lapis_block/3.png deleted file mode 100644 index 869cfe78b7..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/4.png b/front/public/images/large/chisel/lapis_block/4.png deleted file mode 100644 index 2031db3cc9..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/5.png b/front/public/images/large/chisel/lapis_block/5.png deleted file mode 100644 index efcc911700..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/6.png b/front/public/images/large/chisel/lapis_block/6.png deleted file mode 100644 index 8dcfca638e..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/7.png b/front/public/images/large/chisel/lapis_block/7.png deleted file mode 100644 index 404c287489..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/lapis_block/8.png b/front/public/images/large/chisel/lapis_block/8.png deleted file mode 100644 index 37bd2cb377..0000000000 Binary files a/front/public/images/large/chisel/lapis_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/0.png b/front/public/images/large/chisel/lavastone/0.png deleted file mode 100644 index 8ad0c8dd83..0000000000 Binary files a/front/public/images/large/chisel/lavastone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/1.png b/front/public/images/large/chisel/lavastone/1.png deleted file mode 100644 index 86faa9128b..0000000000 Binary files a/front/public/images/large/chisel/lavastone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/2.png b/front/public/images/large/chisel/lavastone/2.png deleted file mode 100644 index 3e590b32ce..0000000000 Binary files a/front/public/images/large/chisel/lavastone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/3.png b/front/public/images/large/chisel/lavastone/3.png deleted file mode 100644 index fdc338a940..0000000000 Binary files a/front/public/images/large/chisel/lavastone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/4.png b/front/public/images/large/chisel/lavastone/4.png deleted file mode 100644 index 9a1b4ffc03..0000000000 Binary files a/front/public/images/large/chisel/lavastone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/5.png b/front/public/images/large/chisel/lavastone/5.png deleted file mode 100644 index e67dc5f84b..0000000000 Binary files a/front/public/images/large/chisel/lavastone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/6.png b/front/public/images/large/chisel/lavastone/6.png deleted file mode 100644 index f5728b1062..0000000000 Binary files a/front/public/images/large/chisel/lavastone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/lavastone/7.png b/front/public/images/large/chisel/lavastone/7.png deleted file mode 100644 index af8bd58253..0000000000 Binary files a/front/public/images/large/chisel/lavastone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/leadblock/0.png b/front/public/images/large/chisel/leadblock/0.png deleted file mode 100644 index 38dcfc2dee..0000000000 Binary files a/front/public/images/large/chisel/leadblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/leadblock/1.png b/front/public/images/large/chisel/leadblock/1.png deleted file mode 100644 index 473486bdf4..0000000000 Binary files a/front/public/images/large/chisel/leadblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/leadblock/2.png b/front/public/images/large/chisel/leadblock/2.png deleted file mode 100644 index 30ef5759fb..0000000000 Binary files a/front/public/images/large/chisel/leadblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/leadblock/3.png b/front/public/images/large/chisel/leadblock/3.png deleted file mode 100644 index 69be992409..0000000000 Binary files a/front/public/images/large/chisel/leadblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/leadblock/4.png b/front/public/images/large/chisel/leadblock/4.png deleted file mode 100644 index cddb756be8..0000000000 Binary files a/front/public/images/large/chisel/leadblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/leadblock/5.png b/front/public/images/large/chisel/leadblock/5.png deleted file mode 100644 index a680109f9c..0000000000 Binary files a/front/public/images/large/chisel/leadblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/leaves/10.png b/front/public/images/large/chisel/leaves/10.png deleted file mode 100644 index 143b068860..0000000000 Binary files a/front/public/images/large/chisel/leaves/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/leaves/11.png b/front/public/images/large/chisel/leaves/11.png deleted file mode 100644 index 95f46cd393..0000000000 Binary files a/front/public/images/large/chisel/leaves/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/leaves/12.png b/front/public/images/large/chisel/leaves/12.png deleted file mode 100644 index a73d7eb755..0000000000 Binary files a/front/public/images/large/chisel/leaves/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/leaves/6.png b/front/public/images/large/chisel/leaves/6.png deleted file mode 100644 index 956f4eddda..0000000000 Binary files a/front/public/images/large/chisel/leaves/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/leaves/7.png b/front/public/images/large/chisel/leaves/7.png deleted file mode 100644 index dcf3d08443..0000000000 Binary files a/front/public/images/large/chisel/leaves/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/leaves/8.png b/front/public/images/large/chisel/leaves/8.png deleted file mode 100644 index 2ef9a34b32..0000000000 Binary files a/front/public/images/large/chisel/leaves/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/leaves/9.png b/front/public/images/large/chisel/leaves/9.png deleted file mode 100644 index 8613635476..0000000000 Binary files a/front/public/images/large/chisel/leaves/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/0.png b/front/public/images/large/chisel/limestone/0.png deleted file mode 100644 index 39e7bcc8eb..0000000000 Binary files a/front/public/images/large/chisel/limestone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/1.png b/front/public/images/large/chisel/limestone/1.png deleted file mode 100644 index 830e2b2f1d..0000000000 Binary files a/front/public/images/large/chisel/limestone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/10.png b/front/public/images/large/chisel/limestone/10.png deleted file mode 100644 index dff1c84765..0000000000 Binary files a/front/public/images/large/chisel/limestone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/11.png b/front/public/images/large/chisel/limestone/11.png deleted file mode 100644 index d134b9af30..0000000000 Binary files a/front/public/images/large/chisel/limestone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/12.png b/front/public/images/large/chisel/limestone/12.png deleted file mode 100644 index a4a5cc9614..0000000000 Binary files a/front/public/images/large/chisel/limestone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/13.png b/front/public/images/large/chisel/limestone/13.png deleted file mode 100644 index bff8d8341c..0000000000 Binary files a/front/public/images/large/chisel/limestone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/14.png b/front/public/images/large/chisel/limestone/14.png deleted file mode 100644 index efdf13d9af..0000000000 Binary files a/front/public/images/large/chisel/limestone/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/15.png b/front/public/images/large/chisel/limestone/15.png deleted file mode 100644 index 4b3ccae688..0000000000 Binary files a/front/public/images/large/chisel/limestone/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/2.png b/front/public/images/large/chisel/limestone/2.png deleted file mode 100644 index 251b1c9f92..0000000000 Binary files a/front/public/images/large/chisel/limestone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/3.png b/front/public/images/large/chisel/limestone/3.png deleted file mode 100644 index de7ec7636c..0000000000 Binary files a/front/public/images/large/chisel/limestone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/4.png b/front/public/images/large/chisel/limestone/4.png deleted file mode 100644 index 3a04887e32..0000000000 Binary files a/front/public/images/large/chisel/limestone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/5.png b/front/public/images/large/chisel/limestone/5.png deleted file mode 100644 index 7c0ce8efbd..0000000000 Binary files a/front/public/images/large/chisel/limestone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/6.png b/front/public/images/large/chisel/limestone/6.png deleted file mode 100644 index e5b1bfef6b..0000000000 Binary files a/front/public/images/large/chisel/limestone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/7.png b/front/public/images/large/chisel/limestone/7.png deleted file mode 100644 index 38513aaf91..0000000000 Binary files a/front/public/images/large/chisel/limestone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/8.png b/front/public/images/large/chisel/limestone/8.png deleted file mode 100644 index c842e224c0..0000000000 Binary files a/front/public/images/large/chisel/limestone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone/9.png b/front/public/images/large/chisel/limestone/9.png deleted file mode 100644 index fce9c6f081..0000000000 Binary files a/front/public/images/large/chisel/limestone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/0.png b/front/public/images/large/chisel/limestone_slab/0.png deleted file mode 100644 index fa0b87e47d..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/1.png b/front/public/images/large/chisel/limestone_slab/1.png deleted file mode 100644 index a69ff28c27..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/10.png b/front/public/images/large/chisel/limestone_slab/10.png deleted file mode 100644 index c44215e50b..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/11.png b/front/public/images/large/chisel/limestone_slab/11.png deleted file mode 100644 index 9445475ab6..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/12.png b/front/public/images/large/chisel/limestone_slab/12.png deleted file mode 100644 index c6af028a4e..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/13.png b/front/public/images/large/chisel/limestone_slab/13.png deleted file mode 100644 index 7dfc38bfcf..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/14.png b/front/public/images/large/chisel/limestone_slab/14.png deleted file mode 100644 index 49b9517657..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/15.png b/front/public/images/large/chisel/limestone_slab/15.png deleted file mode 100644 index 1f2ce3f4c5..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/2.png b/front/public/images/large/chisel/limestone_slab/2.png deleted file mode 100644 index 62e0c4ce1d..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/3.png b/front/public/images/large/chisel/limestone_slab/3.png deleted file mode 100644 index c2c7fd0409..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/4.png b/front/public/images/large/chisel/limestone_slab/4.png deleted file mode 100644 index f67d71b670..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/5.png b/front/public/images/large/chisel/limestone_slab/5.png deleted file mode 100644 index 7d2c72eb80..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/6.png b/front/public/images/large/chisel/limestone_slab/6.png deleted file mode 100644 index 93477a3a73..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/7.png b/front/public/images/large/chisel/limestone_slab/7.png deleted file mode 100644 index 021dc45275..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/8.png b/front/public/images/large/chisel/limestone_slab/8.png deleted file mode 100644 index aebe22816a..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab/9.png b/front/public/images/large/chisel/limestone_slab/9.png deleted file mode 100644 index 138e09433d..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_slab_top/0.png b/front/public/images/large/chisel/limestone_slab_top/0.png deleted file mode 100644 index 08992f4472..0000000000 Binary files a/front/public/images/large/chisel/limestone_slab_top/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.0/0.png b/front/public/images/large/chisel/limestone_stairs.0/0.png deleted file mode 100644 index bdccf4c90c..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.0/8.png b/front/public/images/large/chisel/limestone_stairs.0/8.png deleted file mode 100644 index 9b06bf0292..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.1/0.png b/front/public/images/large/chisel/limestone_stairs.1/0.png deleted file mode 100644 index 68953a5bf5..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.1/8.png b/front/public/images/large/chisel/limestone_stairs.1/8.png deleted file mode 100644 index 8466776976..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.2/0.png b/front/public/images/large/chisel/limestone_stairs.2/0.png deleted file mode 100644 index 52296b6faf..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.2/8.png b/front/public/images/large/chisel/limestone_stairs.2/8.png deleted file mode 100644 index 84bfb658a8..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.3/0.png b/front/public/images/large/chisel/limestone_stairs.3/0.png deleted file mode 100644 index 7483877d60..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.3/8.png b/front/public/images/large/chisel/limestone_stairs.3/8.png deleted file mode 100644 index df8a341a39..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.4/0.png b/front/public/images/large/chisel/limestone_stairs.4/0.png deleted file mode 100644 index 7838dac7c0..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.4/8.png b/front/public/images/large/chisel/limestone_stairs.4/8.png deleted file mode 100644 index 7d9d5d1bfa..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.5/0.png b/front/public/images/large/chisel/limestone_stairs.5/0.png deleted file mode 100644 index 7074e08a10..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.5/8.png b/front/public/images/large/chisel/limestone_stairs.5/8.png deleted file mode 100644 index 9b36387fdc..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.6/0.png b/front/public/images/large/chisel/limestone_stairs.6/0.png deleted file mode 100644 index c3a58a75e8..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.6/8.png b/front/public/images/large/chisel/limestone_stairs.6/8.png deleted file mode 100644 index 782f96e487..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.7/0.png b/front/public/images/large/chisel/limestone_stairs.7/0.png deleted file mode 100644 index 4964699224..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/limestone_stairs.7/8.png b/front/public/images/large/chisel/limestone_stairs.7/8.png deleted file mode 100644 index 7adb775eed..0000000000 Binary files a/front/public/images/large/chisel/limestone_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/0.png b/front/public/images/large/chisel/marble/0.png deleted file mode 100644 index 884804eef3..0000000000 Binary files a/front/public/images/large/chisel/marble/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/1.png b/front/public/images/large/chisel/marble/1.png deleted file mode 100644 index 509a9984b2..0000000000 Binary files a/front/public/images/large/chisel/marble/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/10.png b/front/public/images/large/chisel/marble/10.png deleted file mode 100644 index fec5be72db..0000000000 Binary files a/front/public/images/large/chisel/marble/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/11.png b/front/public/images/large/chisel/marble/11.png deleted file mode 100644 index 713f04f2c8..0000000000 Binary files a/front/public/images/large/chisel/marble/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/12.png b/front/public/images/large/chisel/marble/12.png deleted file mode 100644 index 11ec97f720..0000000000 Binary files a/front/public/images/large/chisel/marble/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/13.png b/front/public/images/large/chisel/marble/13.png deleted file mode 100644 index aa1f6dc4a9..0000000000 Binary files a/front/public/images/large/chisel/marble/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/14.png b/front/public/images/large/chisel/marble/14.png deleted file mode 100644 index 8977d41b99..0000000000 Binary files a/front/public/images/large/chisel/marble/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/15.png b/front/public/images/large/chisel/marble/15.png deleted file mode 100644 index a8c3e713c7..0000000000 Binary files a/front/public/images/large/chisel/marble/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/2.png b/front/public/images/large/chisel/marble/2.png deleted file mode 100644 index 464b6e1928..0000000000 Binary files a/front/public/images/large/chisel/marble/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/3.png b/front/public/images/large/chisel/marble/3.png deleted file mode 100644 index c49ebc1b0a..0000000000 Binary files a/front/public/images/large/chisel/marble/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/4.png b/front/public/images/large/chisel/marble/4.png deleted file mode 100644 index 9b16060e7a..0000000000 Binary files a/front/public/images/large/chisel/marble/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/5.png b/front/public/images/large/chisel/marble/5.png deleted file mode 100644 index fbef7d9c04..0000000000 Binary files a/front/public/images/large/chisel/marble/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/6.png b/front/public/images/large/chisel/marble/6.png deleted file mode 100644 index d13a536938..0000000000 Binary files a/front/public/images/large/chisel/marble/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/7.png b/front/public/images/large/chisel/marble/7.png deleted file mode 100644 index f0447050e5..0000000000 Binary files a/front/public/images/large/chisel/marble/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/8.png b/front/public/images/large/chisel/marble/8.png deleted file mode 100644 index 47304116c4..0000000000 Binary files a/front/public/images/large/chisel/marble/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble/9.png b/front/public/images/large/chisel/marble/9.png deleted file mode 100644 index ff5627a000..0000000000 Binary files a/front/public/images/large/chisel/marble/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/0.png b/front/public/images/large/chisel/marble_pillar/0.png deleted file mode 100644 index 76c0938fbb..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/1.png b/front/public/images/large/chisel/marble_pillar/1.png deleted file mode 100644 index 173c6530e9..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/10.png b/front/public/images/large/chisel/marble_pillar/10.png deleted file mode 100644 index 366b0a4024..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/11.png b/front/public/images/large/chisel/marble_pillar/11.png deleted file mode 100644 index 21e05cceca..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/12.png b/front/public/images/large/chisel/marble_pillar/12.png deleted file mode 100644 index 606bc98040..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/13.png b/front/public/images/large/chisel/marble_pillar/13.png deleted file mode 100644 index d6e72092a7..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/14.png b/front/public/images/large/chisel/marble_pillar/14.png deleted file mode 100644 index b50710fce3..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/15.png b/front/public/images/large/chisel/marble_pillar/15.png deleted file mode 100644 index e7fd544654..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/2.png b/front/public/images/large/chisel/marble_pillar/2.png deleted file mode 100644 index 2bfb8f9b04..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/3.png b/front/public/images/large/chisel/marble_pillar/3.png deleted file mode 100644 index 36a240b82f..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/4.png b/front/public/images/large/chisel/marble_pillar/4.png deleted file mode 100644 index c4e389e19c..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/5.png b/front/public/images/large/chisel/marble_pillar/5.png deleted file mode 100644 index e447f610f6..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/6.png b/front/public/images/large/chisel/marble_pillar/6.png deleted file mode 100644 index 606bc98040..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/7.png b/front/public/images/large/chisel/marble_pillar/7.png deleted file mode 100644 index ae0d4839c9..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/8.png b/front/public/images/large/chisel/marble_pillar/8.png deleted file mode 100644 index ed8f5b32a4..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar/9.png b/front/public/images/large/chisel/marble_pillar/9.png deleted file mode 100644 index 606bc98040..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/0.png b/front/public/images/large/chisel/marble_pillar_slab/0.png deleted file mode 100644 index 76db4cc6d2..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/1.png b/front/public/images/large/chisel/marble_pillar_slab/1.png deleted file mode 100644 index 2944adadd6..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/10.png b/front/public/images/large/chisel/marble_pillar_slab/10.png deleted file mode 100644 index b66bcd8a27..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/11.png b/front/public/images/large/chisel/marble_pillar_slab/11.png deleted file mode 100644 index 53c1c5da1b..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/12.png b/front/public/images/large/chisel/marble_pillar_slab/12.png deleted file mode 100644 index 53c1c5da1b..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/13.png b/front/public/images/large/chisel/marble_pillar_slab/13.png deleted file mode 100644 index 53c1c5da1b..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/14.png b/front/public/images/large/chisel/marble_pillar_slab/14.png deleted file mode 100644 index 02918903a1..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/15.png b/front/public/images/large/chisel/marble_pillar_slab/15.png deleted file mode 100644 index f0543db9f1..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/2.png b/front/public/images/large/chisel/marble_pillar_slab/2.png deleted file mode 100644 index b14e407910..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/3.png b/front/public/images/large/chisel/marble_pillar_slab/3.png deleted file mode 100644 index bd3390219e..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/4.png b/front/public/images/large/chisel/marble_pillar_slab/4.png deleted file mode 100644 index fbc2953376..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/5.png b/front/public/images/large/chisel/marble_pillar_slab/5.png deleted file mode 100644 index dd58b029cd..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/6.png b/front/public/images/large/chisel/marble_pillar_slab/6.png deleted file mode 100644 index dd58b029cd..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/7.png b/front/public/images/large/chisel/marble_pillar_slab/7.png deleted file mode 100644 index dd58b029cd..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/8.png b/front/public/images/large/chisel/marble_pillar_slab/8.png deleted file mode 100644 index b66bcd8a27..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab/9.png b/front/public/images/large/chisel/marble_pillar_slab/9.png deleted file mode 100644 index b66bcd8a27..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_pillar_slab_top/0.png b/front/public/images/large/chisel/marble_pillar_slab_top/0.png deleted file mode 100644 index 1f7a3513e8..0000000000 Binary files a/front/public/images/large/chisel/marble_pillar_slab_top/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/0.png b/front/public/images/large/chisel/marble_slab/0.png deleted file mode 100644 index f207f72455..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/1.png b/front/public/images/large/chisel/marble_slab/1.png deleted file mode 100644 index e0fcb94540..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/10.png b/front/public/images/large/chisel/marble_slab/10.png deleted file mode 100644 index d626a00fd1..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/11.png b/front/public/images/large/chisel/marble_slab/11.png deleted file mode 100644 index c8c3083c72..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/12.png b/front/public/images/large/chisel/marble_slab/12.png deleted file mode 100644 index c3ddfb066b..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/13.png b/front/public/images/large/chisel/marble_slab/13.png deleted file mode 100644 index 29574dbc09..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/14.png b/front/public/images/large/chisel/marble_slab/14.png deleted file mode 100644 index d9a58e9ede..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/15.png b/front/public/images/large/chisel/marble_slab/15.png deleted file mode 100644 index 8848898805..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/2.png b/front/public/images/large/chisel/marble_slab/2.png deleted file mode 100644 index 6a7a8bf962..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/3.png b/front/public/images/large/chisel/marble_slab/3.png deleted file mode 100644 index 4ef36d16c0..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/4.png b/front/public/images/large/chisel/marble_slab/4.png deleted file mode 100644 index 9e8e1c4af8..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/5.png b/front/public/images/large/chisel/marble_slab/5.png deleted file mode 100644 index 05a483d0ef..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/6.png b/front/public/images/large/chisel/marble_slab/6.png deleted file mode 100644 index 3a802a92d6..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/7.png b/front/public/images/large/chisel/marble_slab/7.png deleted file mode 100644 index d86a0bdf6f..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/8.png b/front/public/images/large/chisel/marble_slab/8.png deleted file mode 100644 index 43c9beea04..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab/9.png b/front/public/images/large/chisel/marble_slab/9.png deleted file mode 100644 index a4ad947403..0000000000 Binary files a/front/public/images/large/chisel/marble_slab/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_slab_top/0.png b/front/public/images/large/chisel/marble_slab_top/0.png deleted file mode 100644 index e343a515cc..0000000000 Binary files a/front/public/images/large/chisel/marble_slab_top/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.0/0.png b/front/public/images/large/chisel/marble_stairs.0/0.png deleted file mode 100644 index aa40eb6ff7..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.0/8.png b/front/public/images/large/chisel/marble_stairs.0/8.png deleted file mode 100644 index 2b6340d955..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.1/0.png b/front/public/images/large/chisel/marble_stairs.1/0.png deleted file mode 100644 index 384e2feb56..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.1/8.png b/front/public/images/large/chisel/marble_stairs.1/8.png deleted file mode 100644 index bab42fc7aa..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.2/0.png b/front/public/images/large/chisel/marble_stairs.2/0.png deleted file mode 100644 index e8128bb18d..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.2/8.png b/front/public/images/large/chisel/marble_stairs.2/8.png deleted file mode 100644 index 0b93853b56..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.3/0.png b/front/public/images/large/chisel/marble_stairs.3/0.png deleted file mode 100644 index ce2e6f28c4..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.3/8.png b/front/public/images/large/chisel/marble_stairs.3/8.png deleted file mode 100644 index 0db50a93e1..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.4/0.png b/front/public/images/large/chisel/marble_stairs.4/0.png deleted file mode 100644 index f8c2c82b14..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.4/8.png b/front/public/images/large/chisel/marble_stairs.4/8.png deleted file mode 100644 index f2eb118047..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.5/0.png b/front/public/images/large/chisel/marble_stairs.5/0.png deleted file mode 100644 index 38e9176fc9..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.5/8.png b/front/public/images/large/chisel/marble_stairs.5/8.png deleted file mode 100644 index 2b7f7a3c26..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.6/0.png b/front/public/images/large/chisel/marble_stairs.6/0.png deleted file mode 100644 index 84c25018bd..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.6/8.png b/front/public/images/large/chisel/marble_stairs.6/8.png deleted file mode 100644 index 8499f7f028..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.7/0.png b/front/public/images/large/chisel/marble_stairs.7/0.png deleted file mode 100644 index 7b4ca3e636..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/marble_stairs.7/8.png b/front/public/images/large/chisel/marble_stairs.7/8.png deleted file mode 100644 index 449cf85f96..0000000000 Binary files a/front/public/images/large/chisel/marble_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/1.png b/front/public/images/large/chisel/mossy_cobblestone/1.png deleted file mode 100644 index 17a9b02fe8..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/10.png b/front/public/images/large/chisel/mossy_cobblestone/10.png deleted file mode 100644 index 799221e20d..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/11.png b/front/public/images/large/chisel/mossy_cobblestone/11.png deleted file mode 100644 index e335476e16..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/12.png b/front/public/images/large/chisel/mossy_cobblestone/12.png deleted file mode 100644 index 8fe8c6ae27..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/13.png b/front/public/images/large/chisel/mossy_cobblestone/13.png deleted file mode 100644 index ff5dc9a1dc..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/14.png b/front/public/images/large/chisel/mossy_cobblestone/14.png deleted file mode 100644 index 4149b990f6..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/15.png b/front/public/images/large/chisel/mossy_cobblestone/15.png deleted file mode 100644 index 3b059f22b5..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/2.png b/front/public/images/large/chisel/mossy_cobblestone/2.png deleted file mode 100644 index c38de718d5..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/3.png b/front/public/images/large/chisel/mossy_cobblestone/3.png deleted file mode 100644 index a9af3564d2..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/4.png b/front/public/images/large/chisel/mossy_cobblestone/4.png deleted file mode 100644 index 8906403d6d..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/5.png b/front/public/images/large/chisel/mossy_cobblestone/5.png deleted file mode 100644 index 14a49372fc..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/6.png b/front/public/images/large/chisel/mossy_cobblestone/6.png deleted file mode 100644 index 9b41587e60..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/7.png b/front/public/images/large/chisel/mossy_cobblestone/7.png deleted file mode 100644 index a7f26876f5..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/8.png b/front/public/images/large/chisel/mossy_cobblestone/8.png deleted file mode 100644 index 0fe337b7e3..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_cobblestone/9.png b/front/public/images/large/chisel/mossy_cobblestone/9.png deleted file mode 100644 index c447b91685..0000000000 Binary files a/front/public/images/large/chisel/mossy_cobblestone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/0.png b/front/public/images/large/chisel/mossy_templeblock/0.png deleted file mode 100644 index 53dd74e3b1..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/1.png b/front/public/images/large/chisel/mossy_templeblock/1.png deleted file mode 100644 index b70f1c143b..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/10.png b/front/public/images/large/chisel/mossy_templeblock/10.png deleted file mode 100644 index 187ebec4c1..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/11.png b/front/public/images/large/chisel/mossy_templeblock/11.png deleted file mode 100644 index d3dbd49ca4..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/12.png b/front/public/images/large/chisel/mossy_templeblock/12.png deleted file mode 100644 index a7d3c17860..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/13.png b/front/public/images/large/chisel/mossy_templeblock/13.png deleted file mode 100644 index de96ed0f0c..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/14.png b/front/public/images/large/chisel/mossy_templeblock/14.png deleted file mode 100644 index d5c7136855..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/15.png b/front/public/images/large/chisel/mossy_templeblock/15.png deleted file mode 100644 index ceedc376fb..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/2.png b/front/public/images/large/chisel/mossy_templeblock/2.png deleted file mode 100644 index 6f8d1c4cc8..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/3.png b/front/public/images/large/chisel/mossy_templeblock/3.png deleted file mode 100644 index 8cdf19ce7e..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/4.png b/front/public/images/large/chisel/mossy_templeblock/4.png deleted file mode 100644 index 8b0bd7c8bd..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/5.png b/front/public/images/large/chisel/mossy_templeblock/5.png deleted file mode 100644 index bbe276ab3e..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/6.png b/front/public/images/large/chisel/mossy_templeblock/6.png deleted file mode 100644 index 04ecbc3187..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/7.png b/front/public/images/large/chisel/mossy_templeblock/7.png deleted file mode 100644 index 3f2fdb9d50..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/8.png b/front/public/images/large/chisel/mossy_templeblock/8.png deleted file mode 100644 index b51e90221d..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/mossy_templeblock/9.png b/front/public/images/large/chisel/mossy_templeblock/9.png deleted file mode 100644 index dccafcd54e..0000000000 Binary files a/front/public/images/large/chisel/mossy_templeblock/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/nation/0.png b/front/public/images/large/chisel/nation/0.png deleted file mode 100644 index 3faa0d1af4..0000000000 Binary files a/front/public/images/large/chisel/nation/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/nation/1.png b/front/public/images/large/chisel/nation/1.png deleted file mode 100644 index 9430f3446a..0000000000 Binary files a/front/public/images/large/chisel/nation/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/nation/2.png b/front/public/images/large/chisel/nation/2.png deleted file mode 100644 index d9aedd1c14..0000000000 Binary files a/front/public/images/large/chisel/nation/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/nation/3.png b/front/public/images/large/chisel/nation/3.png deleted file mode 100644 index 1642848353..0000000000 Binary files a/front/public/images/large/chisel/nation/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/nation/4.png b/front/public/images/large/chisel/nation/4.png deleted file mode 100644 index 55f3ada661..0000000000 Binary files a/front/public/images/large/chisel/nation/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/0.png b/front/public/images/large/chisel/neonite/0.png deleted file mode 100644 index 4f84571b73..0000000000 Binary files a/front/public/images/large/chisel/neonite/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/1.png b/front/public/images/large/chisel/neonite/1.png deleted file mode 100644 index 3faa12a269..0000000000 Binary files a/front/public/images/large/chisel/neonite/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/10.png b/front/public/images/large/chisel/neonite/10.png deleted file mode 100644 index d5c84ebd9b..0000000000 Binary files a/front/public/images/large/chisel/neonite/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/11.png b/front/public/images/large/chisel/neonite/11.png deleted file mode 100644 index ef431b18a8..0000000000 Binary files a/front/public/images/large/chisel/neonite/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/12.png b/front/public/images/large/chisel/neonite/12.png deleted file mode 100644 index e2478d40de..0000000000 Binary files a/front/public/images/large/chisel/neonite/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/13.png b/front/public/images/large/chisel/neonite/13.png deleted file mode 100644 index 53cef54fa9..0000000000 Binary files a/front/public/images/large/chisel/neonite/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/14.png b/front/public/images/large/chisel/neonite/14.png deleted file mode 100644 index 1803442832..0000000000 Binary files a/front/public/images/large/chisel/neonite/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/15.png b/front/public/images/large/chisel/neonite/15.png deleted file mode 100644 index 65a0900ee5..0000000000 Binary files a/front/public/images/large/chisel/neonite/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/2.png b/front/public/images/large/chisel/neonite/2.png deleted file mode 100644 index a28076eecb..0000000000 Binary files a/front/public/images/large/chisel/neonite/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/3.png b/front/public/images/large/chisel/neonite/3.png deleted file mode 100644 index 3f606afa9a..0000000000 Binary files a/front/public/images/large/chisel/neonite/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/4.png b/front/public/images/large/chisel/neonite/4.png deleted file mode 100644 index 0dd50bdd51..0000000000 Binary files a/front/public/images/large/chisel/neonite/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/5.png b/front/public/images/large/chisel/neonite/5.png deleted file mode 100644 index 0d94664ec4..0000000000 Binary files a/front/public/images/large/chisel/neonite/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/6.png b/front/public/images/large/chisel/neonite/6.png deleted file mode 100644 index 966548cb83..0000000000 Binary files a/front/public/images/large/chisel/neonite/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/7.png b/front/public/images/large/chisel/neonite/7.png deleted file mode 100644 index 8faee3ac6b..0000000000 Binary files a/front/public/images/large/chisel/neonite/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/8.png b/front/public/images/large/chisel/neonite/8.png deleted file mode 100644 index 93887106be..0000000000 Binary files a/front/public/images/large/chisel/neonite/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/neonite/9.png b/front/public/images/large/chisel/neonite/9.png deleted file mode 100644 index 0d8ceee35f..0000000000 Binary files a/front/public/images/large/chisel/neonite/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherStarChisel/0.png b/front/public/images/large/chisel/netherStarChisel/0.png deleted file mode 100644 index 9e16227e5f..0000000000 Binary files a/front/public/images/large/chisel/netherStarChisel/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/1.png b/front/public/images/large/chisel/nether_brick/1.png deleted file mode 100644 index 36cea98c2f..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/10.png b/front/public/images/large/chisel/nether_brick/10.png deleted file mode 100644 index b10821bcaa..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/11.png b/front/public/images/large/chisel/nether_brick/11.png deleted file mode 100644 index a297030202..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/12.png b/front/public/images/large/chisel/nether_brick/12.png deleted file mode 100644 index 64c5090131..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/13.png b/front/public/images/large/chisel/nether_brick/13.png deleted file mode 100644 index ca1dc36ca4..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/14.png b/front/public/images/large/chisel/nether_brick/14.png deleted file mode 100644 index bb4ff2be1c..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/15.png b/front/public/images/large/chisel/nether_brick/15.png deleted file mode 100644 index 13203e8397..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/2.png b/front/public/images/large/chisel/nether_brick/2.png deleted file mode 100644 index 5de8144dbf..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/3.png b/front/public/images/large/chisel/nether_brick/3.png deleted file mode 100644 index 42eff0465a..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/4.png b/front/public/images/large/chisel/nether_brick/4.png deleted file mode 100644 index d3279f529d..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/5.png b/front/public/images/large/chisel/nether_brick/5.png deleted file mode 100644 index 75e15999a4..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/6.png b/front/public/images/large/chisel/nether_brick/6.png deleted file mode 100644 index ce8815f7bd..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/7.png b/front/public/images/large/chisel/nether_brick/7.png deleted file mode 100644 index 018aeb6bf7..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/8.png b/front/public/images/large/chisel/nether_brick/8.png deleted file mode 100644 index 3cc97b810f..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/nether_brick/9.png b/front/public/images/large/chisel/nether_brick/9.png deleted file mode 100644 index 59be6c0035..0000000000 Binary files a/front/public/images/large/chisel/nether_brick/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/1.png b/front/public/images/large/chisel/netherrack/1.png deleted file mode 100644 index 1fb63e2c59..0000000000 Binary files a/front/public/images/large/chisel/netherrack/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/10.png b/front/public/images/large/chisel/netherrack/10.png deleted file mode 100644 index f708640e74..0000000000 Binary files a/front/public/images/large/chisel/netherrack/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/11.png b/front/public/images/large/chisel/netherrack/11.png deleted file mode 100644 index fa4f0a9ffe..0000000000 Binary files a/front/public/images/large/chisel/netherrack/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/12.png b/front/public/images/large/chisel/netherrack/12.png deleted file mode 100644 index 52af014829..0000000000 Binary files a/front/public/images/large/chisel/netherrack/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/13.png b/front/public/images/large/chisel/netherrack/13.png deleted file mode 100644 index adce3515e9..0000000000 Binary files a/front/public/images/large/chisel/netherrack/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/14.png b/front/public/images/large/chisel/netherrack/14.png deleted file mode 100644 index 180b37ade8..0000000000 Binary files a/front/public/images/large/chisel/netherrack/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/2.png b/front/public/images/large/chisel/netherrack/2.png deleted file mode 100644 index d59435ad01..0000000000 Binary files a/front/public/images/large/chisel/netherrack/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/3.png b/front/public/images/large/chisel/netherrack/3.png deleted file mode 100644 index 06d475d073..0000000000 Binary files a/front/public/images/large/chisel/netherrack/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/4.png b/front/public/images/large/chisel/netherrack/4.png deleted file mode 100644 index c5fc96523b..0000000000 Binary files a/front/public/images/large/chisel/netherrack/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/5.png b/front/public/images/large/chisel/netherrack/5.png deleted file mode 100644 index bf883a193e..0000000000 Binary files a/front/public/images/large/chisel/netherrack/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/6.png b/front/public/images/large/chisel/netherrack/6.png deleted file mode 100644 index d859fc124a..0000000000 Binary files a/front/public/images/large/chisel/netherrack/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/7.png b/front/public/images/large/chisel/netherrack/7.png deleted file mode 100644 index 8fda9c5e8e..0000000000 Binary files a/front/public/images/large/chisel/netherrack/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/8.png b/front/public/images/large/chisel/netherrack/8.png deleted file mode 100644 index 0835acf49f..0000000000 Binary files a/front/public/images/large/chisel/netherrack/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/netherrack/9.png b/front/public/images/large/chisel/netherrack/9.png deleted file mode 100644 index f40e8350a7..0000000000 Binary files a/front/public/images/large/chisel/netherrack/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/0.png b/front/public/images/large/chisel/nucrete/0.png deleted file mode 100644 index 6746b1ddf2..0000000000 Binary files a/front/public/images/large/chisel/nucrete/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/1.png b/front/public/images/large/chisel/nucrete/1.png deleted file mode 100644 index 30e4011ca9..0000000000 Binary files a/front/public/images/large/chisel/nucrete/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/10.png b/front/public/images/large/chisel/nucrete/10.png deleted file mode 100644 index 0934d3635b..0000000000 Binary files a/front/public/images/large/chisel/nucrete/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/11.png b/front/public/images/large/chisel/nucrete/11.png deleted file mode 100644 index 968a816028..0000000000 Binary files a/front/public/images/large/chisel/nucrete/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/12.png b/front/public/images/large/chisel/nucrete/12.png deleted file mode 100644 index af703b0c65..0000000000 Binary files a/front/public/images/large/chisel/nucrete/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/13.png b/front/public/images/large/chisel/nucrete/13.png deleted file mode 100644 index 0e067f02cc..0000000000 Binary files a/front/public/images/large/chisel/nucrete/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/14.png b/front/public/images/large/chisel/nucrete/14.png deleted file mode 100644 index 49b6ddcb66..0000000000 Binary files a/front/public/images/large/chisel/nucrete/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/15.png b/front/public/images/large/chisel/nucrete/15.png deleted file mode 100644 index c2db15a1bf..0000000000 Binary files a/front/public/images/large/chisel/nucrete/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/2.png b/front/public/images/large/chisel/nucrete/2.png deleted file mode 100644 index 30e4011ca9..0000000000 Binary files a/front/public/images/large/chisel/nucrete/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/3.png b/front/public/images/large/chisel/nucrete/3.png deleted file mode 100644 index 0778da9afb..0000000000 Binary files a/front/public/images/large/chisel/nucrete/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/4.png b/front/public/images/large/chisel/nucrete/4.png deleted file mode 100644 index 9a92754cad..0000000000 Binary files a/front/public/images/large/chisel/nucrete/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/5.png b/front/public/images/large/chisel/nucrete/5.png deleted file mode 100644 index a5479e320f..0000000000 Binary files a/front/public/images/large/chisel/nucrete/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/6.png b/front/public/images/large/chisel/nucrete/6.png deleted file mode 100644 index ecb58c2e6a..0000000000 Binary files a/front/public/images/large/chisel/nucrete/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/7.png b/front/public/images/large/chisel/nucrete/7.png deleted file mode 100644 index d5dc345843..0000000000 Binary files a/front/public/images/large/chisel/nucrete/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/8.png b/front/public/images/large/chisel/nucrete/8.png deleted file mode 100644 index 167f668a3b..0000000000 Binary files a/front/public/images/large/chisel/nucrete/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/nucrete/9.png b/front/public/images/large/chisel/nucrete/9.png deleted file mode 100644 index 0934d3635b..0000000000 Binary files a/front/public/images/large/chisel/nucrete/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/1.png b/front/public/images/large/chisel/oak_planks/1.png deleted file mode 100644 index 30a8c24497..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/10.png b/front/public/images/large/chisel/oak_planks/10.png deleted file mode 100644 index b7d71aa017..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/11.png b/front/public/images/large/chisel/oak_planks/11.png deleted file mode 100644 index 3294841ce0..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/12.png b/front/public/images/large/chisel/oak_planks/12.png deleted file mode 100644 index 992bc4a5a3..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/13.png b/front/public/images/large/chisel/oak_planks/13.png deleted file mode 100644 index 28e7329243..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/14.png b/front/public/images/large/chisel/oak_planks/14.png deleted file mode 100644 index 0523bf771f..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/15.png b/front/public/images/large/chisel/oak_planks/15.png deleted file mode 100644 index 2230cd8119..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/2.png b/front/public/images/large/chisel/oak_planks/2.png deleted file mode 100644 index 2108da9e3c..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/3.png b/front/public/images/large/chisel/oak_planks/3.png deleted file mode 100644 index 1385b8d203..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/4.png b/front/public/images/large/chisel/oak_planks/4.png deleted file mode 100644 index c6d2469dba..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/5.png b/front/public/images/large/chisel/oak_planks/5.png deleted file mode 100644 index 929b827f31..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/6.png b/front/public/images/large/chisel/oak_planks/6.png deleted file mode 100644 index 192872af3f..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/7.png b/front/public/images/large/chisel/oak_planks/7.png deleted file mode 100644 index c06b6af4e8..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/8.png b/front/public/images/large/chisel/oak_planks/8.png deleted file mode 100644 index 53782d84b6..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/oak_planks/9.png b/front/public/images/large/chisel/oak_planks/9.png deleted file mode 100644 index 8699eec121..0000000000 Binary files a/front/public/images/large/chisel/oak_planks/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/1.png b/front/public/images/large/chisel/obsidian/1.png deleted file mode 100644 index a281c8a641..0000000000 Binary files a/front/public/images/large/chisel/obsidian/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/10.png b/front/public/images/large/chisel/obsidian/10.png deleted file mode 100644 index ba5003f054..0000000000 Binary files a/front/public/images/large/chisel/obsidian/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/11.png b/front/public/images/large/chisel/obsidian/11.png deleted file mode 100644 index 69b3f42a74..0000000000 Binary files a/front/public/images/large/chisel/obsidian/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/12.png b/front/public/images/large/chisel/obsidian/12.png deleted file mode 100644 index 0a8626528f..0000000000 Binary files a/front/public/images/large/chisel/obsidian/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/13.png b/front/public/images/large/chisel/obsidian/13.png deleted file mode 100644 index f31c14acd4..0000000000 Binary files a/front/public/images/large/chisel/obsidian/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/14.png b/front/public/images/large/chisel/obsidian/14.png deleted file mode 100644 index 0ba64d14b8..0000000000 Binary files a/front/public/images/large/chisel/obsidian/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/15.png b/front/public/images/large/chisel/obsidian/15.png deleted file mode 100644 index 78b5b8fd2e..0000000000 Binary files a/front/public/images/large/chisel/obsidian/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/2.png b/front/public/images/large/chisel/obsidian/2.png deleted file mode 100644 index 81650ba1a1..0000000000 Binary files a/front/public/images/large/chisel/obsidian/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/3.png b/front/public/images/large/chisel/obsidian/3.png deleted file mode 100644 index 56fe886777..0000000000 Binary files a/front/public/images/large/chisel/obsidian/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/4.png b/front/public/images/large/chisel/obsidian/4.png deleted file mode 100644 index ab5cdd31e1..0000000000 Binary files a/front/public/images/large/chisel/obsidian/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/5.png b/front/public/images/large/chisel/obsidian/5.png deleted file mode 100644 index a997c028c2..0000000000 Binary files a/front/public/images/large/chisel/obsidian/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/6.png b/front/public/images/large/chisel/obsidian/6.png deleted file mode 100644 index 0803bc60d0..0000000000 Binary files a/front/public/images/large/chisel/obsidian/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/7.png b/front/public/images/large/chisel/obsidian/7.png deleted file mode 100644 index a7082df6b1..0000000000 Binary files a/front/public/images/large/chisel/obsidian/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/8.png b/front/public/images/large/chisel/obsidian/8.png deleted file mode 100644 index 8a4f0383f5..0000000000 Binary files a/front/public/images/large/chisel/obsidian/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian/9.png b/front/public/images/large/chisel/obsidian/9.png deleted file mode 100644 index f6d14c2121..0000000000 Binary files a/front/public/images/large/chisel/obsidian/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidianChisel/0.png b/front/public/images/large/chisel/obsidianChisel/0.png deleted file mode 100644 index eba81ec07d..0000000000 Binary files a/front/public/images/large/chisel/obsidianChisel/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian_snakestone/1.png b/front/public/images/large/chisel/obsidian_snakestone/1.png deleted file mode 100644 index 4dc16ea7a4..0000000000 Binary files a/front/public/images/large/chisel/obsidian_snakestone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/obsidian_snakestone/13.png b/front/public/images/large/chisel/obsidian_snakestone/13.png deleted file mode 100644 index 3e6047147e..0000000000 Binary files a/front/public/images/large/chisel/obsidian_snakestone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/1.png b/front/public/images/large/chisel/packedice/1.png deleted file mode 100644 index a724c73d1f..0000000000 Binary files a/front/public/images/large/chisel/packedice/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/10.png b/front/public/images/large/chisel/packedice/10.png deleted file mode 100644 index a69675d6de..0000000000 Binary files a/front/public/images/large/chisel/packedice/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/11.png b/front/public/images/large/chisel/packedice/11.png deleted file mode 100644 index 23cee1ffb4..0000000000 Binary files a/front/public/images/large/chisel/packedice/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/12.png b/front/public/images/large/chisel/packedice/12.png deleted file mode 100644 index 28aa578f5c..0000000000 Binary files a/front/public/images/large/chisel/packedice/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/13.png b/front/public/images/large/chisel/packedice/13.png deleted file mode 100644 index 4e44c6295f..0000000000 Binary files a/front/public/images/large/chisel/packedice/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/14.png b/front/public/images/large/chisel/packedice/14.png deleted file mode 100644 index 394bce08ee..0000000000 Binary files a/front/public/images/large/chisel/packedice/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/15.png b/front/public/images/large/chisel/packedice/15.png deleted file mode 100644 index 640cba00eb..0000000000 Binary files a/front/public/images/large/chisel/packedice/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/2.png b/front/public/images/large/chisel/packedice/2.png deleted file mode 100644 index f3cff80ff4..0000000000 Binary files a/front/public/images/large/chisel/packedice/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/3.png b/front/public/images/large/chisel/packedice/3.png deleted file mode 100644 index 0884198ba5..0000000000 Binary files a/front/public/images/large/chisel/packedice/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/4.png b/front/public/images/large/chisel/packedice/4.png deleted file mode 100644 index 1dc180adea..0000000000 Binary files a/front/public/images/large/chisel/packedice/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/5.png b/front/public/images/large/chisel/packedice/5.png deleted file mode 100644 index 5b13038f34..0000000000 Binary files a/front/public/images/large/chisel/packedice/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/6.png b/front/public/images/large/chisel/packedice/6.png deleted file mode 100644 index a8333aa251..0000000000 Binary files a/front/public/images/large/chisel/packedice/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/7.png b/front/public/images/large/chisel/packedice/7.png deleted file mode 100644 index d2eb2bb6e6..0000000000 Binary files a/front/public/images/large/chisel/packedice/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/8.png b/front/public/images/large/chisel/packedice/8.png deleted file mode 100644 index ba4a02634a..0000000000 Binary files a/front/public/images/large/chisel/packedice/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice/9.png b/front/public/images/large/chisel/packedice/9.png deleted file mode 100644 index b4cd14bc70..0000000000 Binary files a/front/public/images/large/chisel/packedice/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_pillar/0.png b/front/public/images/large/chisel/packedice_pillar/0.png deleted file mode 100644 index abce3c88d2..0000000000 Binary files a/front/public/images/large/chisel/packedice_pillar/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_pillar/1.png b/front/public/images/large/chisel/packedice_pillar/1.png deleted file mode 100644 index 63a3a364a0..0000000000 Binary files a/front/public/images/large/chisel/packedice_pillar/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_pillar/2.png b/front/public/images/large/chisel/packedice_pillar/2.png deleted file mode 100644 index 208bd15429..0000000000 Binary files a/front/public/images/large/chisel/packedice_pillar/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_pillar/3.png b/front/public/images/large/chisel/packedice_pillar/3.png deleted file mode 100644 index a2548bddb8..0000000000 Binary files a/front/public/images/large/chisel/packedice_pillar/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_pillar/4.png b/front/public/images/large/chisel/packedice_pillar/4.png deleted file mode 100644 index 2265d9278d..0000000000 Binary files a/front/public/images/large/chisel/packedice_pillar/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_pillar/5.png b/front/public/images/large/chisel/packedice_pillar/5.png deleted file mode 100644 index 258736481e..0000000000 Binary files a/front/public/images/large/chisel/packedice_pillar/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_pillar/6.png b/front/public/images/large/chisel/packedice_pillar/6.png deleted file mode 100644 index 13930c748d..0000000000 Binary files a/front/public/images/large/chisel/packedice_pillar/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.0/0.png b/front/public/images/large/chisel/packedice_stairs.0/0.png deleted file mode 100644 index 84472ba378..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.0/8.png b/front/public/images/large/chisel/packedice_stairs.0/8.png deleted file mode 100644 index e223438a91..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.1/0.png b/front/public/images/large/chisel/packedice_stairs.1/0.png deleted file mode 100644 index 6c3df2ddd0..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.1/8.png b/front/public/images/large/chisel/packedice_stairs.1/8.png deleted file mode 100644 index 2cc67251eb..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.2/0.png b/front/public/images/large/chisel/packedice_stairs.2/0.png deleted file mode 100644 index 4a94a36533..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.2/8.png b/front/public/images/large/chisel/packedice_stairs.2/8.png deleted file mode 100644 index a3587c7923..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.3/0.png b/front/public/images/large/chisel/packedice_stairs.3/0.png deleted file mode 100644 index 2d1ab82682..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.3/8.png b/front/public/images/large/chisel/packedice_stairs.3/8.png deleted file mode 100644 index ea9f48f276..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.4/0.png b/front/public/images/large/chisel/packedice_stairs.4/0.png deleted file mode 100644 index ccbc62482b..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.4/8.png b/front/public/images/large/chisel/packedice_stairs.4/8.png deleted file mode 100644 index 5729c43139..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.5/0.png b/front/public/images/large/chisel/packedice_stairs.5/0.png deleted file mode 100644 index b9e70f9544..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.5/8.png b/front/public/images/large/chisel/packedice_stairs.5/8.png deleted file mode 100644 index 19e510e076..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.6/0.png b/front/public/images/large/chisel/packedice_stairs.6/0.png deleted file mode 100644 index ae2967c1fb..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.6/8.png b/front/public/images/large/chisel/packedice_stairs.6/8.png deleted file mode 100644 index 9d8c4681d3..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.7/0.png b/front/public/images/large/chisel/packedice_stairs.7/0.png deleted file mode 100644 index c2b53a49e4..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/packedice_stairs.7/8.png b/front/public/images/large/chisel/packedice_stairs.7/8.png deleted file mode 100644 index 270354fbaa..0000000000 Binary files a/front/public/images/large/chisel/packedice_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/0.png b/front/public/images/large/chisel/paperwall/0.png deleted file mode 100644 index 6cdcf37950..0000000000 Binary files a/front/public/images/large/chisel/paperwall/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/1.png b/front/public/images/large/chisel/paperwall/1.png deleted file mode 100644 index d4e5f98135..0000000000 Binary files a/front/public/images/large/chisel/paperwall/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/2.png b/front/public/images/large/chisel/paperwall/2.png deleted file mode 100644 index b1dd956c95..0000000000 Binary files a/front/public/images/large/chisel/paperwall/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/3.png b/front/public/images/large/chisel/paperwall/3.png deleted file mode 100644 index 9478f34eba..0000000000 Binary files a/front/public/images/large/chisel/paperwall/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/4.png b/front/public/images/large/chisel/paperwall/4.png deleted file mode 100644 index 1e701329fa..0000000000 Binary files a/front/public/images/large/chisel/paperwall/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/5.png b/front/public/images/large/chisel/paperwall/5.png deleted file mode 100644 index 00ea8d4fc9..0000000000 Binary files a/front/public/images/large/chisel/paperwall/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/6.png b/front/public/images/large/chisel/paperwall/6.png deleted file mode 100644 index 1c9954d3f8..0000000000 Binary files a/front/public/images/large/chisel/paperwall/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/7.png b/front/public/images/large/chisel/paperwall/7.png deleted file mode 100644 index 6c20c11ad8..0000000000 Binary files a/front/public/images/large/chisel/paperwall/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall/8.png b/front/public/images/large/chisel/paperwall/8.png deleted file mode 100644 index c5361c8ff3..0000000000 Binary files a/front/public/images/large/chisel/paperwall/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/0.png b/front/public/images/large/chisel/paperwall_block/0.png deleted file mode 100644 index a8e1b5eb7f..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/1.png b/front/public/images/large/chisel/paperwall_block/1.png deleted file mode 100644 index 2d8d0c9f99..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/2.png b/front/public/images/large/chisel/paperwall_block/2.png deleted file mode 100644 index c434b41965..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/3.png b/front/public/images/large/chisel/paperwall_block/3.png deleted file mode 100644 index 227cdde9ad..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/4.png b/front/public/images/large/chisel/paperwall_block/4.png deleted file mode 100644 index 015ca39ee9..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/5.png b/front/public/images/large/chisel/paperwall_block/5.png deleted file mode 100644 index 6971832ae1..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/6.png b/front/public/images/large/chisel/paperwall_block/6.png deleted file mode 100644 index 8cc01354ad..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/7.png b/front/public/images/large/chisel/paperwall_block/7.png deleted file mode 100644 index a2a8604852..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/paperwall_block/8.png b/front/public/images/large/chisel/paperwall_block/8.png deleted file mode 100644 index 2b456458b8..0000000000 Binary files a/front/public/images/large/chisel/paperwall_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/0.png b/front/public/images/large/chisel/present/0.png deleted file mode 100644 index 7fff94201e..0000000000 Binary files a/front/public/images/large/chisel/present/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/1.png b/front/public/images/large/chisel/present/1.png deleted file mode 100644 index 0e171f2aef..0000000000 Binary files a/front/public/images/large/chisel/present/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/10.png b/front/public/images/large/chisel/present/10.png deleted file mode 100644 index be50bf85d5..0000000000 Binary files a/front/public/images/large/chisel/present/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/11.png b/front/public/images/large/chisel/present/11.png deleted file mode 100644 index 13a8d6584f..0000000000 Binary files a/front/public/images/large/chisel/present/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/12.png b/front/public/images/large/chisel/present/12.png deleted file mode 100644 index f5fe6c7ae7..0000000000 Binary files a/front/public/images/large/chisel/present/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/13.png b/front/public/images/large/chisel/present/13.png deleted file mode 100644 index 892fb8a569..0000000000 Binary files a/front/public/images/large/chisel/present/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/14.png b/front/public/images/large/chisel/present/14.png deleted file mode 100644 index 45027584d0..0000000000 Binary files a/front/public/images/large/chisel/present/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/15.png b/front/public/images/large/chisel/present/15.png deleted file mode 100644 index 07c8b6e0d3..0000000000 Binary files a/front/public/images/large/chisel/present/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/2.png b/front/public/images/large/chisel/present/2.png deleted file mode 100644 index 4a60d3d3bf..0000000000 Binary files a/front/public/images/large/chisel/present/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/3.png b/front/public/images/large/chisel/present/3.png deleted file mode 100644 index 8b75d200eb..0000000000 Binary files a/front/public/images/large/chisel/present/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/4.png b/front/public/images/large/chisel/present/4.png deleted file mode 100644 index 32f2aac070..0000000000 Binary files a/front/public/images/large/chisel/present/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/5.png b/front/public/images/large/chisel/present/5.png deleted file mode 100644 index 5dea12b236..0000000000 Binary files a/front/public/images/large/chisel/present/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/6.png b/front/public/images/large/chisel/present/6.png deleted file mode 100644 index 88e9c950ae..0000000000 Binary files a/front/public/images/large/chisel/present/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/7.png b/front/public/images/large/chisel/present/7.png deleted file mode 100644 index d28f88c128..0000000000 Binary files a/front/public/images/large/chisel/present/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/8.png b/front/public/images/large/chisel/present/8.png deleted file mode 100644 index d527cc5770..0000000000 Binary files a/front/public/images/large/chisel/present/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/present/9.png b/front/public/images/large/chisel/present/9.png deleted file mode 100644 index 3dcf04e9d7..0000000000 Binary files a/front/public/images/large/chisel/present/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin1/0.png b/front/public/images/large/chisel/pumpkin1/0.png deleted file mode 100644 index c04c82ce5a..0000000000 Binary files a/front/public/images/large/chisel/pumpkin1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin10/0.png b/front/public/images/large/chisel/pumpkin10/0.png deleted file mode 100644 index 82b2973f03..0000000000 Binary files a/front/public/images/large/chisel/pumpkin10/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin11/0.png b/front/public/images/large/chisel/pumpkin11/0.png deleted file mode 100644 index 678fa822cd..0000000000 Binary files a/front/public/images/large/chisel/pumpkin11/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin12/0.png b/front/public/images/large/chisel/pumpkin12/0.png deleted file mode 100644 index 06b34d1fb8..0000000000 Binary files a/front/public/images/large/chisel/pumpkin12/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin13/0.png b/front/public/images/large/chisel/pumpkin13/0.png deleted file mode 100644 index 22b4b824f2..0000000000 Binary files a/front/public/images/large/chisel/pumpkin13/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin14/0.png b/front/public/images/large/chisel/pumpkin14/0.png deleted file mode 100644 index bb0b3f229c..0000000000 Binary files a/front/public/images/large/chisel/pumpkin14/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin15/0.png b/front/public/images/large/chisel/pumpkin15/0.png deleted file mode 100644 index f0fb9cd212..0000000000 Binary files a/front/public/images/large/chisel/pumpkin15/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin16/0.png b/front/public/images/large/chisel/pumpkin16/0.png deleted file mode 100644 index a6628ba0f6..0000000000 Binary files a/front/public/images/large/chisel/pumpkin16/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin2/0.png b/front/public/images/large/chisel/pumpkin2/0.png deleted file mode 100644 index 7eadb3937a..0000000000 Binary files a/front/public/images/large/chisel/pumpkin2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin3/0.png b/front/public/images/large/chisel/pumpkin3/0.png deleted file mode 100644 index d4802e69f9..0000000000 Binary files a/front/public/images/large/chisel/pumpkin3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin4/0.png b/front/public/images/large/chisel/pumpkin4/0.png deleted file mode 100644 index 170f4b46df..0000000000 Binary files a/front/public/images/large/chisel/pumpkin4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin5/0.png b/front/public/images/large/chisel/pumpkin5/0.png deleted file mode 100644 index 879855ffd2..0000000000 Binary files a/front/public/images/large/chisel/pumpkin5/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin6/0.png b/front/public/images/large/chisel/pumpkin6/0.png deleted file mode 100644 index b4b98660bc..0000000000 Binary files a/front/public/images/large/chisel/pumpkin6/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin7/0.png b/front/public/images/large/chisel/pumpkin7/0.png deleted file mode 100644 index 466fd659e2..0000000000 Binary files a/front/public/images/large/chisel/pumpkin7/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin8/0.png b/front/public/images/large/chisel/pumpkin8/0.png deleted file mode 100644 index 3b098b3e0f..0000000000 Binary files a/front/public/images/large/chisel/pumpkin8/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/pumpkin9/0.png b/front/public/images/large/chisel/pumpkin9/0.png deleted file mode 100644 index c86efac5fc..0000000000 Binary files a/front/public/images/large/chisel/pumpkin9/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/0.png b/front/public/images/large/chisel/purpur/0.png deleted file mode 100644 index c149a15dcc..0000000000 Binary files a/front/public/images/large/chisel/purpur/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/1.png b/front/public/images/large/chisel/purpur/1.png deleted file mode 100644 index 1ac4925a8d..0000000000 Binary files a/front/public/images/large/chisel/purpur/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/10.png b/front/public/images/large/chisel/purpur/10.png deleted file mode 100644 index 4aeb7e2003..0000000000 Binary files a/front/public/images/large/chisel/purpur/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/2.png b/front/public/images/large/chisel/purpur/2.png deleted file mode 100644 index 5a103e4813..0000000000 Binary files a/front/public/images/large/chisel/purpur/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/3.png b/front/public/images/large/chisel/purpur/3.png deleted file mode 100644 index 52eac49dd7..0000000000 Binary files a/front/public/images/large/chisel/purpur/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/4.png b/front/public/images/large/chisel/purpur/4.png deleted file mode 100644 index fe5717f266..0000000000 Binary files a/front/public/images/large/chisel/purpur/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/5.png b/front/public/images/large/chisel/purpur/5.png deleted file mode 100644 index f1d4e0f52a..0000000000 Binary files a/front/public/images/large/chisel/purpur/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/6.png b/front/public/images/large/chisel/purpur/6.png deleted file mode 100644 index cbf7ab0b38..0000000000 Binary files a/front/public/images/large/chisel/purpur/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/7.png b/front/public/images/large/chisel/purpur/7.png deleted file mode 100644 index fc2a3b1330..0000000000 Binary files a/front/public/images/large/chisel/purpur/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/8.png b/front/public/images/large/chisel/purpur/8.png deleted file mode 100644 index f7c09e607a..0000000000 Binary files a/front/public/images/large/chisel/purpur/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/purpur/9.png b/front/public/images/large/chisel/purpur/9.png deleted file mode 100644 index 28f73ed5a4..0000000000 Binary files a/front/public/images/large/chisel/purpur/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/rebel/0.png b/front/public/images/large/chisel/rebel/0.png deleted file mode 100644 index bf6cad08eb..0000000000 Binary files a/front/public/images/large/chisel/rebel/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/rebel/1.png b/front/public/images/large/chisel/rebel/1.png deleted file mode 100644 index db03e64645..0000000000 Binary files a/front/public/images/large/chisel/rebel/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/rebel/2.png b/front/public/images/large/chisel/rebel/2.png deleted file mode 100644 index 7e8a7b24f4..0000000000 Binary files a/front/public/images/large/chisel/rebel/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/rebel/3.png b/front/public/images/large/chisel/rebel/3.png deleted file mode 100644 index 26c6f0299d..0000000000 Binary files a/front/public/images/large/chisel/rebel/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/rebel/4.png b/front/public/images/large/chisel/rebel/4.png deleted file mode 100644 index 60a23734e4..0000000000 Binary files a/front/public/images/large/chisel/rebel/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/1.png b/front/public/images/large/chisel/redstone_block/1.png deleted file mode 100644 index 2fdd3d2eec..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/10.png b/front/public/images/large/chisel/redstone_block/10.png deleted file mode 100644 index 5b6ba18cc4..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/11.png b/front/public/images/large/chisel/redstone_block/11.png deleted file mode 100644 index 78beced530..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/12.png b/front/public/images/large/chisel/redstone_block/12.png deleted file mode 100644 index 23c44597e1..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/13.png b/front/public/images/large/chisel/redstone_block/13.png deleted file mode 100644 index ec985575b9..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/14.png b/front/public/images/large/chisel/redstone_block/14.png deleted file mode 100644 index c46bfb1a89..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/15.png b/front/public/images/large/chisel/redstone_block/15.png deleted file mode 100644 index cbff22fb81..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/2.png b/front/public/images/large/chisel/redstone_block/2.png deleted file mode 100644 index f227bb4f01..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/3.png b/front/public/images/large/chisel/redstone_block/3.png deleted file mode 100644 index b4c60ac243..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/4.png b/front/public/images/large/chisel/redstone_block/4.png deleted file mode 100644 index a435fa9b11..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/5.png b/front/public/images/large/chisel/redstone_block/5.png deleted file mode 100644 index 9171fc928c..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/6.png b/front/public/images/large/chisel/redstone_block/6.png deleted file mode 100644 index 35ae7d9c6d..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/7.png b/front/public/images/large/chisel/redstone_block/7.png deleted file mode 100644 index 081c5b7abb..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/8.png b/front/public/images/large/chisel/redstone_block/8.png deleted file mode 100644 index ae4cbb876d..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/redstone_block/9.png b/front/public/images/large/chisel/redstone_block/9.png deleted file mode 100644 index 821191ef2d..0000000000 Binary files a/front/public/images/large/chisel/redstone_block/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/road_line/0.png b/front/public/images/large/chisel/road_line/0.png deleted file mode 100644 index c21149d909..0000000000 Binary files a/front/public/images/large/chisel/road_line/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/road_line/1.png b/front/public/images/large/chisel/road_line/1.png deleted file mode 100644 index 7806eff538..0000000000 Binary files a/front/public/images/large/chisel/road_line/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/road_line/2.png b/front/public/images/large/chisel/road_line/2.png deleted file mode 100644 index 1fdf1af8d9..0000000000 Binary files a/front/public/images/large/chisel/road_line/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/road_line/3.png b/front/public/images/large/chisel/road_line/3.png deleted file mode 100644 index e7f3e4c438..0000000000 Binary files a/front/public/images/large/chisel/road_line/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/road_line/4.png b/front/public/images/large/chisel/road_line/4.png deleted file mode 100644 index f7cb9b1517..0000000000 Binary files a/front/public/images/large/chisel/road_line/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/sand_snakestone/1.png b/front/public/images/large/chisel/sand_snakestone/1.png deleted file mode 100644 index 98359a90c2..0000000000 Binary files a/front/public/images/large/chisel/sand_snakestone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/sand_snakestone/13.png b/front/public/images/large/chisel/sand_snakestone/13.png deleted file mode 100644 index 9baeb0cc45..0000000000 Binary files a/front/public/images/large/chisel/sand_snakestone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/0.png b/front/public/images/large/chisel/sandstone/0.png deleted file mode 100644 index 90db85f29e..0000000000 Binary files a/front/public/images/large/chisel/sandstone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/1.png b/front/public/images/large/chisel/sandstone/1.png deleted file mode 100644 index c45dfa98a0..0000000000 Binary files a/front/public/images/large/chisel/sandstone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/10.png b/front/public/images/large/chisel/sandstone/10.png deleted file mode 100644 index 95b862ed1f..0000000000 Binary files a/front/public/images/large/chisel/sandstone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/11.png b/front/public/images/large/chisel/sandstone/11.png deleted file mode 100644 index 9fad90aa09..0000000000 Binary files a/front/public/images/large/chisel/sandstone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/12.png b/front/public/images/large/chisel/sandstone/12.png deleted file mode 100644 index 382a1f5026..0000000000 Binary files a/front/public/images/large/chisel/sandstone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/13.png b/front/public/images/large/chisel/sandstone/13.png deleted file mode 100644 index 435204fe3b..0000000000 Binary files a/front/public/images/large/chisel/sandstone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/14.png b/front/public/images/large/chisel/sandstone/14.png deleted file mode 100644 index 6f8706526b..0000000000 Binary files a/front/public/images/large/chisel/sandstone/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/15.png b/front/public/images/large/chisel/sandstone/15.png deleted file mode 100644 index e44554a5b2..0000000000 Binary files a/front/public/images/large/chisel/sandstone/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/2.png b/front/public/images/large/chisel/sandstone/2.png deleted file mode 100644 index cffa088e67..0000000000 Binary files a/front/public/images/large/chisel/sandstone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/3.png b/front/public/images/large/chisel/sandstone/3.png deleted file mode 100644 index 87880322c6..0000000000 Binary files a/front/public/images/large/chisel/sandstone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/4.png b/front/public/images/large/chisel/sandstone/4.png deleted file mode 100644 index f90e39df07..0000000000 Binary files a/front/public/images/large/chisel/sandstone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/5.png b/front/public/images/large/chisel/sandstone/5.png deleted file mode 100644 index 98c9bcd405..0000000000 Binary files a/front/public/images/large/chisel/sandstone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/6.png b/front/public/images/large/chisel/sandstone/6.png deleted file mode 100644 index cde59ac941..0000000000 Binary files a/front/public/images/large/chisel/sandstone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/7.png b/front/public/images/large/chisel/sandstone/7.png deleted file mode 100644 index 890c493438..0000000000 Binary files a/front/public/images/large/chisel/sandstone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/8.png b/front/public/images/large/chisel/sandstone/8.png deleted file mode 100644 index d5311b627c..0000000000 Binary files a/front/public/images/large/chisel/sandstone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone/9.png b/front/public/images/large/chisel/sandstone/9.png deleted file mode 100644 index be252747ec..0000000000 Binary files a/front/public/images/large/chisel/sandstone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone2/0.png b/front/public/images/large/chisel/sandstone2/0.png deleted file mode 100644 index 6c2892a1c7..0000000000 Binary files a/front/public/images/large/chisel/sandstone2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone2/1.png b/front/public/images/large/chisel/sandstone2/1.png deleted file mode 100644 index cc6814ab69..0000000000 Binary files a/front/public/images/large/chisel/sandstone2/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/0.png b/front/public/images/large/chisel/sandstone_scribbles/0.png deleted file mode 100644 index 9f8a6fd5c4..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/1.png b/front/public/images/large/chisel/sandstone_scribbles/1.png deleted file mode 100644 index 43a68007d3..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/10.png b/front/public/images/large/chisel/sandstone_scribbles/10.png deleted file mode 100644 index 0421019084..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/11.png b/front/public/images/large/chisel/sandstone_scribbles/11.png deleted file mode 100644 index d988770fa9..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/12.png b/front/public/images/large/chisel/sandstone_scribbles/12.png deleted file mode 100644 index 48d084945d..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/13.png b/front/public/images/large/chisel/sandstone_scribbles/13.png deleted file mode 100644 index 4a4afe2ce9..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/14.png b/front/public/images/large/chisel/sandstone_scribbles/14.png deleted file mode 100644 index 53faf199d7..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/15.png b/front/public/images/large/chisel/sandstone_scribbles/15.png deleted file mode 100644 index ef3ce5577f..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/2.png b/front/public/images/large/chisel/sandstone_scribbles/2.png deleted file mode 100644 index 9190c5a922..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/3.png b/front/public/images/large/chisel/sandstone_scribbles/3.png deleted file mode 100644 index cff32c199b..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/4.png b/front/public/images/large/chisel/sandstone_scribbles/4.png deleted file mode 100644 index 563a2878ba..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/5.png b/front/public/images/large/chisel/sandstone_scribbles/5.png deleted file mode 100644 index ab198de0d8..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/6.png b/front/public/images/large/chisel/sandstone_scribbles/6.png deleted file mode 100644 index e5bbe7e5e8..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/7.png b/front/public/images/large/chisel/sandstone_scribbles/7.png deleted file mode 100644 index 970f47902f..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/8.png b/front/public/images/large/chisel/sandstone_scribbles/8.png deleted file mode 100644 index cdff8e34a6..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/sandstone_scribbles/9.png b/front/public/images/large/chisel/sandstone_scribbles/9.png deleted file mode 100644 index dbca33d409..0000000000 Binary files a/front/public/images/large/chisel/sandstone_scribbles/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/silverblock/0.png b/front/public/images/large/chisel/silverblock/0.png deleted file mode 100644 index ea21a92a50..0000000000 Binary files a/front/public/images/large/chisel/silverblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/silverblock/1.png b/front/public/images/large/chisel/silverblock/1.png deleted file mode 100644 index 779ffdd55d..0000000000 Binary files a/front/public/images/large/chisel/silverblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/silverblock/2.png b/front/public/images/large/chisel/silverblock/2.png deleted file mode 100644 index 7aacd8ecc0..0000000000 Binary files a/front/public/images/large/chisel/silverblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/silverblock/3.png b/front/public/images/large/chisel/silverblock/3.png deleted file mode 100644 index 22e7c61ed4..0000000000 Binary files a/front/public/images/large/chisel/silverblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/silverblock/4.png b/front/public/images/large/chisel/silverblock/4.png deleted file mode 100644 index 2ca3e63e78..0000000000 Binary files a/front/public/images/large/chisel/silverblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/silverblock/5.png b/front/public/images/large/chisel/silverblock/5.png deleted file mode 100644 index 985b3c8d91..0000000000 Binary files a/front/public/images/large/chisel/silverblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/smashingrock/0.png b/front/public/images/large/chisel/smashingrock/0.png deleted file mode 100644 index a8d2557579..0000000000 Binary files a/front/public/images/large/chisel/smashingrock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/1.png b/front/public/images/large/chisel/spruce_planks/1.png deleted file mode 100644 index a19d866f43..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/10.png b/front/public/images/large/chisel/spruce_planks/10.png deleted file mode 100644 index 6799446821..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/11.png b/front/public/images/large/chisel/spruce_planks/11.png deleted file mode 100644 index e6f1071c3a..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/12.png b/front/public/images/large/chisel/spruce_planks/12.png deleted file mode 100644 index 84950f2293..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/13.png b/front/public/images/large/chisel/spruce_planks/13.png deleted file mode 100644 index d18e0722be..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/14.png b/front/public/images/large/chisel/spruce_planks/14.png deleted file mode 100644 index aa40730e0a..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/15.png b/front/public/images/large/chisel/spruce_planks/15.png deleted file mode 100644 index 39f7589d1a..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/2.png b/front/public/images/large/chisel/spruce_planks/2.png deleted file mode 100644 index 9c6dbb6e98..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/3.png b/front/public/images/large/chisel/spruce_planks/3.png deleted file mode 100644 index b1f414e09b..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/4.png b/front/public/images/large/chisel/spruce_planks/4.png deleted file mode 100644 index 4afdbee674..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/5.png b/front/public/images/large/chisel/spruce_planks/5.png deleted file mode 100644 index 7d5a03e631..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/6.png b/front/public/images/large/chisel/spruce_planks/6.png deleted file mode 100644 index 1016df04df..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/7.png b/front/public/images/large/chisel/spruce_planks/7.png deleted file mode 100644 index 424448c840..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/8.png b/front/public/images/large/chisel/spruce_planks/8.png deleted file mode 100644 index a131c1aee5..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/spruce_planks/9.png b/front/public/images/large/chisel/spruce_planks/9.png deleted file mode 100644 index b5a9afbb93..0000000000 Binary files a/front/public/images/large/chisel/spruce_planks/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/0.png b/front/public/images/large/chisel/stained_glass_brown/0.png deleted file mode 100644 index bc4e75964c..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/1.png b/front/public/images/large/chisel/stained_glass_brown/1.png deleted file mode 100644 index 5c291f0936..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/10.png b/front/public/images/large/chisel/stained_glass_brown/10.png deleted file mode 100644 index 7a2a8f80ef..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/11.png b/front/public/images/large/chisel/stained_glass_brown/11.png deleted file mode 100644 index c81e7fa9d0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/12.png b/front/public/images/large/chisel/stained_glass_brown/12.png deleted file mode 100644 index 7edf54a52c..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/13.png b/front/public/images/large/chisel/stained_glass_brown/13.png deleted file mode 100644 index 2005e81885..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/14.png b/front/public/images/large/chisel/stained_glass_brown/14.png deleted file mode 100644 index 8a14744d2d..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/15.png b/front/public/images/large/chisel/stained_glass_brown/15.png deleted file mode 100644 index 31d6a2bab9..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/2.png b/front/public/images/large/chisel/stained_glass_brown/2.png deleted file mode 100644 index dd7053478e..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/3.png b/front/public/images/large/chisel/stained_glass_brown/3.png deleted file mode 100644 index 8997aa6bd7..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/4.png b/front/public/images/large/chisel/stained_glass_brown/4.png deleted file mode 100644 index 33ece467cd..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/5.png b/front/public/images/large/chisel/stained_glass_brown/5.png deleted file mode 100644 index 89265b33ae..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/6.png b/front/public/images/large/chisel/stained_glass_brown/6.png deleted file mode 100644 index 5b60b149d4..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/7.png b/front/public/images/large/chisel/stained_glass_brown/7.png deleted file mode 100644 index 92dd613dd2..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/8.png b/front/public/images/large/chisel/stained_glass_brown/8.png deleted file mode 100644 index bc5ad215c5..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_brown/9.png b/front/public/images/large/chisel/stained_glass_brown/9.png deleted file mode 100644 index 11d779bf39..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_brown/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/0.png b/front/public/images/large/chisel/stained_glass_forestry/0.png deleted file mode 100644 index fd3b17078c..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/1.png b/front/public/images/large/chisel/stained_glass_forestry/1.png deleted file mode 100644 index 7c460d535a..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/10.png b/front/public/images/large/chisel/stained_glass_forestry/10.png deleted file mode 100644 index 78a1dbc5bf..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/11.png b/front/public/images/large/chisel/stained_glass_forestry/11.png deleted file mode 100644 index b45ddf2da5..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/12.png b/front/public/images/large/chisel/stained_glass_forestry/12.png deleted file mode 100644 index b03cf2736b..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/13.png b/front/public/images/large/chisel/stained_glass_forestry/13.png deleted file mode 100644 index 82a9df830b..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/14.png b/front/public/images/large/chisel/stained_glass_forestry/14.png deleted file mode 100644 index f0deb62817..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/15.png b/front/public/images/large/chisel/stained_glass_forestry/15.png deleted file mode 100644 index 72d52153d7..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/2.png b/front/public/images/large/chisel/stained_glass_forestry/2.png deleted file mode 100644 index 021957b289..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/3.png b/front/public/images/large/chisel/stained_glass_forestry/3.png deleted file mode 100644 index 41bcc81560..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/4.png b/front/public/images/large/chisel/stained_glass_forestry/4.png deleted file mode 100644 index 3b10405ac4..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/5.png b/front/public/images/large/chisel/stained_glass_forestry/5.png deleted file mode 100644 index cc28a3609c..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/6.png b/front/public/images/large/chisel/stained_glass_forestry/6.png deleted file mode 100644 index 8a59347498..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/7.png b/front/public/images/large/chisel/stained_glass_forestry/7.png deleted file mode 100644 index 8a08523ab4..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/8.png b/front/public/images/large/chisel/stained_glass_forestry/8.png deleted file mode 100644 index 8fcadc4ef0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_forestry/9.png b/front/public/images/large/chisel/stained_glass_forestry/9.png deleted file mode 100644 index 8f5b8958fc..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_forestry/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/0.png b/front/public/images/large/chisel/stained_glass_lightgray/0.png deleted file mode 100644 index 9fd4331eb1..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/1.png b/front/public/images/large/chisel/stained_glass_lightgray/1.png deleted file mode 100644 index 38397157eb..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/10.png b/front/public/images/large/chisel/stained_glass_lightgray/10.png deleted file mode 100644 index d1a40e4f7a..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/11.png b/front/public/images/large/chisel/stained_glass_lightgray/11.png deleted file mode 100644 index 8a4146c98f..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/12.png b/front/public/images/large/chisel/stained_glass_lightgray/12.png deleted file mode 100644 index 9f09678483..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/13.png b/front/public/images/large/chisel/stained_glass_lightgray/13.png deleted file mode 100644 index 8fbf22d650..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/14.png b/front/public/images/large/chisel/stained_glass_lightgray/14.png deleted file mode 100644 index e76512aca7..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/15.png b/front/public/images/large/chisel/stained_glass_lightgray/15.png deleted file mode 100644 index 44e04240e7..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/2.png b/front/public/images/large/chisel/stained_glass_lightgray/2.png deleted file mode 100644 index e1f2596527..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/3.png b/front/public/images/large/chisel/stained_glass_lightgray/3.png deleted file mode 100644 index 31d72394f6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/4.png b/front/public/images/large/chisel/stained_glass_lightgray/4.png deleted file mode 100644 index ec7512a124..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/5.png b/front/public/images/large/chisel/stained_glass_lightgray/5.png deleted file mode 100644 index 9730dff050..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/6.png b/front/public/images/large/chisel/stained_glass_lightgray/6.png deleted file mode 100644 index 0715a086c2..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/7.png b/front/public/images/large/chisel/stained_glass_lightgray/7.png deleted file mode 100644 index 98b0ae11a0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/8.png b/front/public/images/large/chisel/stained_glass_lightgray/8.png deleted file mode 100644 index ea516dc3c9..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_lightgray/9.png b/front/public/images/large/chisel/stained_glass_lightgray/9.png deleted file mode 100644 index baee515997..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_lightgray/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/0.png b/front/public/images/large/chisel/stained_glass_pane_brown/0.png deleted file mode 100644 index ed5c79ff0e..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/1.png b/front/public/images/large/chisel/stained_glass_pane_brown/1.png deleted file mode 100644 index bc90d36fb6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/10.png b/front/public/images/large/chisel/stained_glass_pane_brown/10.png deleted file mode 100644 index e316a80709..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/11.png b/front/public/images/large/chisel/stained_glass_pane_brown/11.png deleted file mode 100644 index ca4a47da7a..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/12.png b/front/public/images/large/chisel/stained_glass_pane_brown/12.png deleted file mode 100644 index f83bcc58b6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/13.png b/front/public/images/large/chisel/stained_glass_pane_brown/13.png deleted file mode 100644 index ff006ea1a3..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/2.png b/front/public/images/large/chisel/stained_glass_pane_brown/2.png deleted file mode 100644 index 344ac2c998..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/3.png b/front/public/images/large/chisel/stained_glass_pane_brown/3.png deleted file mode 100644 index 2bb874c391..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/4.png b/front/public/images/large/chisel/stained_glass_pane_brown/4.png deleted file mode 100644 index 7dd29ac73b..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/5.png b/front/public/images/large/chisel/stained_glass_pane_brown/5.png deleted file mode 100644 index 20a6a4cd40..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/8.png b/front/public/images/large/chisel/stained_glass_pane_brown/8.png deleted file mode 100644 index 91df2206a0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_brown/9.png b/front/public/images/large/chisel/stained_glass_pane_brown/9.png deleted file mode 100644 index 177602ec1e..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_brown/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/0.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/0.png deleted file mode 100644 index 1da44bb2c2..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/1.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/1.png deleted file mode 100644 index fdfce1df44..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/10.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/10.png deleted file mode 100644 index 1f36a667af..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/11.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/11.png deleted file mode 100644 index ebc008ff18..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/12.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/12.png deleted file mode 100644 index 866caf4556..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/13.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/13.png deleted file mode 100644 index e053a6a446..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/2.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/2.png deleted file mode 100644 index d5c18c2438..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/3.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/3.png deleted file mode 100644 index 09f1c9ad5e..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/4.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/4.png deleted file mode 100644 index c2e41012f2..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/5.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/5.png deleted file mode 100644 index a1d9a4665e..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/8.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/8.png deleted file mode 100644 index c71631fa98..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_lightgray/9.png b/front/public/images/large/chisel/stained_glass_pane_lightgray/9.png deleted file mode 100644 index f2e31a6028..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_lightgray/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/0.png b/front/public/images/large/chisel/stained_glass_pane_magenta/0.png deleted file mode 100644 index 7219a599d5..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/1.png b/front/public/images/large/chisel/stained_glass_pane_magenta/1.png deleted file mode 100644 index 00fd717abc..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/10.png b/front/public/images/large/chisel/stained_glass_pane_magenta/10.png deleted file mode 100644 index c89ebafe94..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/11.png b/front/public/images/large/chisel/stained_glass_pane_magenta/11.png deleted file mode 100644 index bb759503ea..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/12.png b/front/public/images/large/chisel/stained_glass_pane_magenta/12.png deleted file mode 100644 index 3f9aaa1d11..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/13.png b/front/public/images/large/chisel/stained_glass_pane_magenta/13.png deleted file mode 100644 index 298c1a7889..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/2.png b/front/public/images/large/chisel/stained_glass_pane_magenta/2.png deleted file mode 100644 index 924c7013d7..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/3.png b/front/public/images/large/chisel/stained_glass_pane_magenta/3.png deleted file mode 100644 index d943a1ec11..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/4.png b/front/public/images/large/chisel/stained_glass_pane_magenta/4.png deleted file mode 100644 index 3c0c1ed421..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/5.png b/front/public/images/large/chisel/stained_glass_pane_magenta/5.png deleted file mode 100644 index 722c020a98..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/8.png b/front/public/images/large/chisel/stained_glass_pane_magenta/8.png deleted file mode 100644 index c244edc018..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_magenta/9.png b/front/public/images/large/chisel/stained_glass_pane_magenta/9.png deleted file mode 100644 index adeea0bb14..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_magenta/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/0.png b/front/public/images/large/chisel/stained_glass_pane_pink/0.png deleted file mode 100644 index 9285a6264d..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/1.png b/front/public/images/large/chisel/stained_glass_pane_pink/1.png deleted file mode 100644 index e8f15ae2cf..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/10.png b/front/public/images/large/chisel/stained_glass_pane_pink/10.png deleted file mode 100644 index ef20a6de96..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/11.png b/front/public/images/large/chisel/stained_glass_pane_pink/11.png deleted file mode 100644 index 247e8282ea..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/12.png b/front/public/images/large/chisel/stained_glass_pane_pink/12.png deleted file mode 100644 index 3f0fb82f17..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/13.png b/front/public/images/large/chisel/stained_glass_pane_pink/13.png deleted file mode 100644 index 197015226a..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/2.png b/front/public/images/large/chisel/stained_glass_pane_pink/2.png deleted file mode 100644 index 90dd84772a..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/3.png b/front/public/images/large/chisel/stained_glass_pane_pink/3.png deleted file mode 100644 index cdf7c3fce3..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/4.png b/front/public/images/large/chisel/stained_glass_pane_pink/4.png deleted file mode 100644 index 65b3bd1802..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/5.png b/front/public/images/large/chisel/stained_glass_pane_pink/5.png deleted file mode 100644 index b5f7d1ca0b..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/8.png b/front/public/images/large/chisel/stained_glass_pane_pink/8.png deleted file mode 100644 index 636d08a80b..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_pink/9.png b/front/public/images/large/chisel/stained_glass_pane_pink/9.png deleted file mode 100644 index a5a40306c5..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_pink/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/0.png b/front/public/images/large/chisel/stained_glass_pane_purple/0.png deleted file mode 100644 index 53aa2af592..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/1.png b/front/public/images/large/chisel/stained_glass_pane_purple/1.png deleted file mode 100644 index 2d40b87343..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/10.png b/front/public/images/large/chisel/stained_glass_pane_purple/10.png deleted file mode 100644 index ac7736d324..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/11.png b/front/public/images/large/chisel/stained_glass_pane_purple/11.png deleted file mode 100644 index f3520a7be2..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/12.png b/front/public/images/large/chisel/stained_glass_pane_purple/12.png deleted file mode 100644 index b6bf67e2ce..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/13.png b/front/public/images/large/chisel/stained_glass_pane_purple/13.png deleted file mode 100644 index c0f887f4ed..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/2.png b/front/public/images/large/chisel/stained_glass_pane_purple/2.png deleted file mode 100644 index f9f04d38e4..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/3.png b/front/public/images/large/chisel/stained_glass_pane_purple/3.png deleted file mode 100644 index 474b7ba828..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/4.png b/front/public/images/large/chisel/stained_glass_pane_purple/4.png deleted file mode 100644 index b48d9e7564..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/5.png b/front/public/images/large/chisel/stained_glass_pane_purple/5.png deleted file mode 100644 index 4b3ad3e16f..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/8.png b/front/public/images/large/chisel/stained_glass_pane_purple/8.png deleted file mode 100644 index 74f5919a92..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_purple/9.png b/front/public/images/large/chisel/stained_glass_pane_purple/9.png deleted file mode 100644 index c4691d8284..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_purple/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/0.png b/front/public/images/large/chisel/stained_glass_pane_red/0.png deleted file mode 100644 index 21ccc47ded..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/1.png b/front/public/images/large/chisel/stained_glass_pane_red/1.png deleted file mode 100644 index af51cde1c2..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/10.png b/front/public/images/large/chisel/stained_glass_pane_red/10.png deleted file mode 100644 index d65d1fdfd4..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/11.png b/front/public/images/large/chisel/stained_glass_pane_red/11.png deleted file mode 100644 index 516e5f2ba8..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/12.png b/front/public/images/large/chisel/stained_glass_pane_red/12.png deleted file mode 100644 index a6bad12eb6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/13.png b/front/public/images/large/chisel/stained_glass_pane_red/13.png deleted file mode 100644 index e615a5da07..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/2.png b/front/public/images/large/chisel/stained_glass_pane_red/2.png deleted file mode 100644 index f25cabd50d..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/3.png b/front/public/images/large/chisel/stained_glass_pane_red/3.png deleted file mode 100644 index 980f9b54ae..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/4.png b/front/public/images/large/chisel/stained_glass_pane_red/4.png deleted file mode 100644 index 7c5525a9b8..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/5.png b/front/public/images/large/chisel/stained_glass_pane_red/5.png deleted file mode 100644 index c7ecacf679..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/8.png b/front/public/images/large/chisel/stained_glass_pane_red/8.png deleted file mode 100644 index e1856dc9c0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_red/9.png b/front/public/images/large/chisel/stained_glass_pane_red/9.png deleted file mode 100644 index 429c62fc17..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_red/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/0.png b/front/public/images/large/chisel/stained_glass_pane_white/0.png deleted file mode 100644 index 9b4dd7daf4..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/1.png b/front/public/images/large/chisel/stained_glass_pane_white/1.png deleted file mode 100644 index 28606beac3..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/10.png b/front/public/images/large/chisel/stained_glass_pane_white/10.png deleted file mode 100644 index a87d52516d..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/11.png b/front/public/images/large/chisel/stained_glass_pane_white/11.png deleted file mode 100644 index c0089be53d..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/12.png b/front/public/images/large/chisel/stained_glass_pane_white/12.png deleted file mode 100644 index 8034edcc03..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/13.png b/front/public/images/large/chisel/stained_glass_pane_white/13.png deleted file mode 100644 index 0a4e09e6d5..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/2.png b/front/public/images/large/chisel/stained_glass_pane_white/2.png deleted file mode 100644 index b4edf601e0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/3.png b/front/public/images/large/chisel/stained_glass_pane_white/3.png deleted file mode 100644 index 4a3f85e9a6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/4.png b/front/public/images/large/chisel/stained_glass_pane_white/4.png deleted file mode 100644 index 16f5f7455e..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/5.png b/front/public/images/large/chisel/stained_glass_pane_white/5.png deleted file mode 100644 index 37cbd1ae45..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/8.png b/front/public/images/large/chisel/stained_glass_pane_white/8.png deleted file mode 100644 index 1e53e3c9f3..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_white/9.png b/front/public/images/large/chisel/stained_glass_pane_white/9.png deleted file mode 100644 index 133f5a5ffa..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_white/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/0.png b/front/public/images/large/chisel/stained_glass_pane_yellow/0.png deleted file mode 100644 index 2521e414f6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/1.png b/front/public/images/large/chisel/stained_glass_pane_yellow/1.png deleted file mode 100644 index 4a221d914e..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/10.png b/front/public/images/large/chisel/stained_glass_pane_yellow/10.png deleted file mode 100644 index f84fc5d7de..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/11.png b/front/public/images/large/chisel/stained_glass_pane_yellow/11.png deleted file mode 100644 index 1748031cd3..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/12.png b/front/public/images/large/chisel/stained_glass_pane_yellow/12.png deleted file mode 100644 index ff596b8dda..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/13.png b/front/public/images/large/chisel/stained_glass_pane_yellow/13.png deleted file mode 100644 index d15d3528a9..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/2.png b/front/public/images/large/chisel/stained_glass_pane_yellow/2.png deleted file mode 100644 index f941338589..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/3.png b/front/public/images/large/chisel/stained_glass_pane_yellow/3.png deleted file mode 100644 index 820c397f9c..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/4.png b/front/public/images/large/chisel/stained_glass_pane_yellow/4.png deleted file mode 100644 index 0a2f6496f0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/5.png b/front/public/images/large/chisel/stained_glass_pane_yellow/5.png deleted file mode 100644 index e49a847d24..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/8.png b/front/public/images/large/chisel/stained_glass_pane_yellow/8.png deleted file mode 100644 index 2bb5030754..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_pane_yellow/9.png b/front/public/images/large/chisel/stained_glass_pane_yellow/9.png deleted file mode 100644 index 6f5b86124b..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_pane_yellow/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/0.png b/front/public/images/large/chisel/stained_glass_white/0.png deleted file mode 100644 index 5de790140c..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/1.png b/front/public/images/large/chisel/stained_glass_white/1.png deleted file mode 100644 index ffcab086ad..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/10.png b/front/public/images/large/chisel/stained_glass_white/10.png deleted file mode 100644 index 8fb3ff4ee3..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/11.png b/front/public/images/large/chisel/stained_glass_white/11.png deleted file mode 100644 index 66db3490f6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/12.png b/front/public/images/large/chisel/stained_glass_white/12.png deleted file mode 100644 index dec310a561..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/13.png b/front/public/images/large/chisel/stained_glass_white/13.png deleted file mode 100644 index ead61b7226..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/14.png b/front/public/images/large/chisel/stained_glass_white/14.png deleted file mode 100644 index 480406fda3..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/15.png b/front/public/images/large/chisel/stained_glass_white/15.png deleted file mode 100644 index ee2d25807f..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/2.png b/front/public/images/large/chisel/stained_glass_white/2.png deleted file mode 100644 index 1ba134039a..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/3.png b/front/public/images/large/chisel/stained_glass_white/3.png deleted file mode 100644 index e242c926a0..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/4.png b/front/public/images/large/chisel/stained_glass_white/4.png deleted file mode 100644 index 91d05fd7b7..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/5.png b/front/public/images/large/chisel/stained_glass_white/5.png deleted file mode 100644 index 0950ce84aa..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/6.png b/front/public/images/large/chisel/stained_glass_white/6.png deleted file mode 100644 index 4b3fc2c108..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/7.png b/front/public/images/large/chisel/stained_glass_white/7.png deleted file mode 100644 index 9de9621cec..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/8.png b/front/public/images/large/chisel/stained_glass_white/8.png deleted file mode 100644 index dc0b88e432..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_white/9.png b/front/public/images/large/chisel/stained_glass_white/9.png deleted file mode 100644 index 4cff982228..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_white/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/0.png b/front/public/images/large/chisel/stained_glass_yellow/0.png deleted file mode 100644 index cc3392014d..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/1.png b/front/public/images/large/chisel/stained_glass_yellow/1.png deleted file mode 100644 index 5508876196..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/10.png b/front/public/images/large/chisel/stained_glass_yellow/10.png deleted file mode 100644 index 6d1f992fbd..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/11.png b/front/public/images/large/chisel/stained_glass_yellow/11.png deleted file mode 100644 index 25c2000684..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/12.png b/front/public/images/large/chisel/stained_glass_yellow/12.png deleted file mode 100644 index f36849c7a6..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/13.png b/front/public/images/large/chisel/stained_glass_yellow/13.png deleted file mode 100644 index b3595343a4..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/14.png b/front/public/images/large/chisel/stained_glass_yellow/14.png deleted file mode 100644 index d2a71fc88f..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/15.png b/front/public/images/large/chisel/stained_glass_yellow/15.png deleted file mode 100644 index bf5a1b0220..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/2.png b/front/public/images/large/chisel/stained_glass_yellow/2.png deleted file mode 100644 index f38d12db70..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/3.png b/front/public/images/large/chisel/stained_glass_yellow/3.png deleted file mode 100644 index 2f4f705a65..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/4.png b/front/public/images/large/chisel/stained_glass_yellow/4.png deleted file mode 100644 index c3f1336c8f..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/5.png b/front/public/images/large/chisel/stained_glass_yellow/5.png deleted file mode 100644 index 8bbde0f639..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/6.png b/front/public/images/large/chisel/stained_glass_yellow/6.png deleted file mode 100644 index 91c2eaceaf..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/7.png b/front/public/images/large/chisel/stained_glass_yellow/7.png deleted file mode 100644 index 338a0344e1..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/8.png b/front/public/images/large/chisel/stained_glass_yellow/8.png deleted file mode 100644 index e251856fc8..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stained_glass_yellow/9.png b/front/public/images/large/chisel/stained_glass_yellow/9.png deleted file mode 100644 index 203e82ae15..0000000000 Binary files a/front/public/images/large/chisel/stained_glass_yellow/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/steelblock/0.png b/front/public/images/large/chisel/steelblock/0.png deleted file mode 100644 index fe7af90240..0000000000 Binary files a/front/public/images/large/chisel/steelblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/steelblock/1.png b/front/public/images/large/chisel/steelblock/1.png deleted file mode 100644 index 41e2e8a42a..0000000000 Binary files a/front/public/images/large/chisel/steelblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/steelblock/2.png b/front/public/images/large/chisel/steelblock/2.png deleted file mode 100644 index b1d0b63946..0000000000 Binary files a/front/public/images/large/chisel/steelblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/steelblock/3.png b/front/public/images/large/chisel/steelblock/3.png deleted file mode 100644 index dac55d1a51..0000000000 Binary files a/front/public/images/large/chisel/steelblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/steelblock/4.png b/front/public/images/large/chisel/steelblock/4.png deleted file mode 100644 index 596ea4c108..0000000000 Binary files a/front/public/images/large/chisel/steelblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/steelblock/5.png b/front/public/images/large/chisel/steelblock/5.png deleted file mode 100644 index aa2b28dcca..0000000000 Binary files a/front/public/images/large/chisel/steelblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stone_snakestone/1.png b/front/public/images/large/chisel/stone_snakestone/1.png deleted file mode 100644 index 289aee0062..0000000000 Binary files a/front/public/images/large/chisel/stone_snakestone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stone_snakestone/13.png b/front/public/images/large/chisel/stone_snakestone/13.png deleted file mode 100644 index 5e63fd0b48..0000000000 Binary files a/front/public/images/large/chisel/stone_snakestone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/0.png b/front/public/images/large/chisel/stonebricksmooth/0.png deleted file mode 100644 index 3c1d8be81d..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/1.png b/front/public/images/large/chisel/stonebricksmooth/1.png deleted file mode 100644 index 095b2c9c71..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/10.png b/front/public/images/large/chisel/stonebricksmooth/10.png deleted file mode 100644 index ac99b293d3..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/11.png b/front/public/images/large/chisel/stonebricksmooth/11.png deleted file mode 100644 index 045ad81f3d..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/12.png b/front/public/images/large/chisel/stonebricksmooth/12.png deleted file mode 100644 index f087fe9828..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/13.png b/front/public/images/large/chisel/stonebricksmooth/13.png deleted file mode 100644 index c63600c02e..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/14.png b/front/public/images/large/chisel/stonebricksmooth/14.png deleted file mode 100644 index e3341485c5..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/15.png b/front/public/images/large/chisel/stonebricksmooth/15.png deleted file mode 100644 index d235f2cd4a..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/2.png b/front/public/images/large/chisel/stonebricksmooth/2.png deleted file mode 100644 index d0e3545d71..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/3.png b/front/public/images/large/chisel/stonebricksmooth/3.png deleted file mode 100644 index f6c1bf2549..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/4.png b/front/public/images/large/chisel/stonebricksmooth/4.png deleted file mode 100644 index 369e6196ca..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/5.png b/front/public/images/large/chisel/stonebricksmooth/5.png deleted file mode 100644 index c72d2e8895..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/6.png b/front/public/images/large/chisel/stonebricksmooth/6.png deleted file mode 100644 index 4125db9906..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/7.png b/front/public/images/large/chisel/stonebricksmooth/7.png deleted file mode 100644 index 03b8973820..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/8.png b/front/public/images/large/chisel/stonebricksmooth/8.png deleted file mode 100644 index 4f08bf609c..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/stonebricksmooth/9.png b/front/public/images/large/chisel/stonebricksmooth/9.png deleted file mode 100644 index e6142ece88..0000000000 Binary files a/front/public/images/large/chisel/stonebricksmooth/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/0.png b/front/public/images/large/chisel/sveltstone/0.png deleted file mode 100644 index 1139cf2e5b..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/1.png b/front/public/images/large/chisel/sveltstone/1.png deleted file mode 100644 index 5c3f024917..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/10.png b/front/public/images/large/chisel/sveltstone/10.png deleted file mode 100644 index becbcb042d..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/11.png b/front/public/images/large/chisel/sveltstone/11.png deleted file mode 100644 index 424323765c..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/12.png b/front/public/images/large/chisel/sveltstone/12.png deleted file mode 100644 index 5b052ca46d..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/13.png b/front/public/images/large/chisel/sveltstone/13.png deleted file mode 100644 index 08d193f2b8..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/14.png b/front/public/images/large/chisel/sveltstone/14.png deleted file mode 100644 index d20888761b..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/15.png b/front/public/images/large/chisel/sveltstone/15.png deleted file mode 100644 index 617b9b9cf9..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/2.png b/front/public/images/large/chisel/sveltstone/2.png deleted file mode 100644 index 213848890c..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/3.png b/front/public/images/large/chisel/sveltstone/3.png deleted file mode 100644 index 8a02ddd1e0..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/4.png b/front/public/images/large/chisel/sveltstone/4.png deleted file mode 100644 index b7fc7baef1..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/5.png b/front/public/images/large/chisel/sveltstone/5.png deleted file mode 100644 index ccef5f7a08..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/6.png b/front/public/images/large/chisel/sveltstone/6.png deleted file mode 100644 index 9e42bd9cad..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/7.png b/front/public/images/large/chisel/sveltstone/7.png deleted file mode 100644 index 009d4c07ad..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/8.png b/front/public/images/large/chisel/sveltstone/8.png deleted file mode 100644 index 5570545dbf..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/sveltstone/9.png b/front/public/images/large/chisel/sveltstone/9.png deleted file mode 100644 index d654aa268b..0000000000 Binary files a/front/public/images/large/chisel/sveltstone/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/tallow/0.png b/front/public/images/large/chisel/tallow/0.png deleted file mode 100644 index d98ed62c5c..0000000000 Binary files a/front/public/images/large/chisel/tallow/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/tallow/1.png b/front/public/images/large/chisel/tallow/1.png deleted file mode 100644 index e11cde15f0..0000000000 Binary files a/front/public/images/large/chisel/tallow/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/0.png b/front/public/images/large/chisel/technical/0.png deleted file mode 100644 index 08f7fde39f..0000000000 Binary files a/front/public/images/large/chisel/technical/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/1.png b/front/public/images/large/chisel/technical/1.png deleted file mode 100644 index 56f0b91b20..0000000000 Binary files a/front/public/images/large/chisel/technical/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/10.png b/front/public/images/large/chisel/technical/10.png deleted file mode 100644 index 5266df9014..0000000000 Binary files a/front/public/images/large/chisel/technical/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/11.png b/front/public/images/large/chisel/technical/11.png deleted file mode 100644 index 5ca065b2ea..0000000000 Binary files a/front/public/images/large/chisel/technical/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/12.png b/front/public/images/large/chisel/technical/12.png deleted file mode 100644 index 7544b1119d..0000000000 Binary files a/front/public/images/large/chisel/technical/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/13.png b/front/public/images/large/chisel/technical/13.png deleted file mode 100644 index c9f3d943ae..0000000000 Binary files a/front/public/images/large/chisel/technical/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/14.png b/front/public/images/large/chisel/technical/14.png deleted file mode 100644 index 96e380ad81..0000000000 Binary files a/front/public/images/large/chisel/technical/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/15.png b/front/public/images/large/chisel/technical/15.png deleted file mode 100644 index b95c12d73b..0000000000 Binary files a/front/public/images/large/chisel/technical/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/2.png b/front/public/images/large/chisel/technical/2.png deleted file mode 100644 index 025404f109..0000000000 Binary files a/front/public/images/large/chisel/technical/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/3.png b/front/public/images/large/chisel/technical/3.png deleted file mode 100644 index 72716cd9bc..0000000000 Binary files a/front/public/images/large/chisel/technical/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/4.png b/front/public/images/large/chisel/technical/4.png deleted file mode 100644 index 96e380ad81..0000000000 Binary files a/front/public/images/large/chisel/technical/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/5.png b/front/public/images/large/chisel/technical/5.png deleted file mode 100644 index 69f2987b44..0000000000 Binary files a/front/public/images/large/chisel/technical/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/6.png b/front/public/images/large/chisel/technical/6.png deleted file mode 100644 index 077586c72a..0000000000 Binary files a/front/public/images/large/chisel/technical/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/7.png b/front/public/images/large/chisel/technical/7.png deleted file mode 100644 index 0c7a5c48bd..0000000000 Binary files a/front/public/images/large/chisel/technical/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/8.png b/front/public/images/large/chisel/technical/8.png deleted file mode 100644 index 5fec46baba..0000000000 Binary files a/front/public/images/large/chisel/technical/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical/9.png b/front/public/images/large/chisel/technical/9.png deleted file mode 100644 index aee4ac07bd..0000000000 Binary files a/front/public/images/large/chisel/technical/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical2/0.png b/front/public/images/large/chisel/technical2/0.png deleted file mode 100644 index b4a577536f..0000000000 Binary files a/front/public/images/large/chisel/technical2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical2/1.png b/front/public/images/large/chisel/technical2/1.png deleted file mode 100644 index c16d4ac521..0000000000 Binary files a/front/public/images/large/chisel/technical2/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical2/2.png b/front/public/images/large/chisel/technical2/2.png deleted file mode 100644 index 16a6e0bd28..0000000000 Binary files a/front/public/images/large/chisel/technical2/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical2/3.png b/front/public/images/large/chisel/technical2/3.png deleted file mode 100644 index 16a6e0bd28..0000000000 Binary files a/front/public/images/large/chisel/technical2/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical3/0.png b/front/public/images/large/chisel/technical3/0.png deleted file mode 100644 index 4d310dedf0..0000000000 Binary files a/front/public/images/large/chisel/technical3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical3/1.png b/front/public/images/large/chisel/technical3/1.png deleted file mode 100644 index 267320a350..0000000000 Binary files a/front/public/images/large/chisel/technical3/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/0.png b/front/public/images/large/chisel/technical4/0.png deleted file mode 100644 index 42233df251..0000000000 Binary files a/front/public/images/large/chisel/technical4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/1.png b/front/public/images/large/chisel/technical4/1.png deleted file mode 100644 index b200a4a2eb..0000000000 Binary files a/front/public/images/large/chisel/technical4/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/2.png b/front/public/images/large/chisel/technical4/2.png deleted file mode 100644 index eab5100268..0000000000 Binary files a/front/public/images/large/chisel/technical4/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/3.png b/front/public/images/large/chisel/technical4/3.png deleted file mode 100644 index f90137be53..0000000000 Binary files a/front/public/images/large/chisel/technical4/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/4.png b/front/public/images/large/chisel/technical4/4.png deleted file mode 100644 index b8422261e3..0000000000 Binary files a/front/public/images/large/chisel/technical4/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/5.png b/front/public/images/large/chisel/technical4/5.png deleted file mode 100644 index 158e99b67d..0000000000 Binary files a/front/public/images/large/chisel/technical4/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/6.png b/front/public/images/large/chisel/technical4/6.png deleted file mode 100644 index ca5702d6d6..0000000000 Binary files a/front/public/images/large/chisel/technical4/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/technical4/7.png b/front/public/images/large/chisel/technical4/7.png deleted file mode 100644 index 51b76e3657..0000000000 Binary files a/front/public/images/large/chisel/technical4/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/0.png b/front/public/images/large/chisel/templeblock/0.png deleted file mode 100644 index 874b8a5929..0000000000 Binary files a/front/public/images/large/chisel/templeblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/1.png b/front/public/images/large/chisel/templeblock/1.png deleted file mode 100644 index 9c3b0e62d2..0000000000 Binary files a/front/public/images/large/chisel/templeblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/10.png b/front/public/images/large/chisel/templeblock/10.png deleted file mode 100644 index 0b4c8ac4a4..0000000000 Binary files a/front/public/images/large/chisel/templeblock/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/11.png b/front/public/images/large/chisel/templeblock/11.png deleted file mode 100644 index d9f1c9e6d1..0000000000 Binary files a/front/public/images/large/chisel/templeblock/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/12.png b/front/public/images/large/chisel/templeblock/12.png deleted file mode 100644 index 68d8291c26..0000000000 Binary files a/front/public/images/large/chisel/templeblock/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/13.png b/front/public/images/large/chisel/templeblock/13.png deleted file mode 100644 index 676c89b2dd..0000000000 Binary files a/front/public/images/large/chisel/templeblock/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/14.png b/front/public/images/large/chisel/templeblock/14.png deleted file mode 100644 index 198b04db2e..0000000000 Binary files a/front/public/images/large/chisel/templeblock/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/15.png b/front/public/images/large/chisel/templeblock/15.png deleted file mode 100644 index 1f93364e41..0000000000 Binary files a/front/public/images/large/chisel/templeblock/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/2.png b/front/public/images/large/chisel/templeblock/2.png deleted file mode 100644 index fe2512e081..0000000000 Binary files a/front/public/images/large/chisel/templeblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/3.png b/front/public/images/large/chisel/templeblock/3.png deleted file mode 100644 index b6205347b7..0000000000 Binary files a/front/public/images/large/chisel/templeblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/4.png b/front/public/images/large/chisel/templeblock/4.png deleted file mode 100644 index 4345a56209..0000000000 Binary files a/front/public/images/large/chisel/templeblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/5.png b/front/public/images/large/chisel/templeblock/5.png deleted file mode 100644 index 35b633380c..0000000000 Binary files a/front/public/images/large/chisel/templeblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/6.png b/front/public/images/large/chisel/templeblock/6.png deleted file mode 100644 index 27e21e574e..0000000000 Binary files a/front/public/images/large/chisel/templeblock/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/7.png b/front/public/images/large/chisel/templeblock/7.png deleted file mode 100644 index 5bd2c2f59c..0000000000 Binary files a/front/public/images/large/chisel/templeblock/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/8.png b/front/public/images/large/chisel/templeblock/8.png deleted file mode 100644 index 2369b32fb6..0000000000 Binary files a/front/public/images/large/chisel/templeblock/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/templeblock/9.png b/front/public/images/large/chisel/templeblock/9.png deleted file mode 100644 index b1fe0c7f3a..0000000000 Binary files a/front/public/images/large/chisel/templeblock/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/thaumium/0.png b/front/public/images/large/chisel/thaumium/0.png deleted file mode 100644 index 10fc10c7ed..0000000000 Binary files a/front/public/images/large/chisel/thaumium/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/thaumium/1.png b/front/public/images/large/chisel/thaumium/1.png deleted file mode 100644 index 359737614d..0000000000 Binary files a/front/public/images/large/chisel/thaumium/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/thaumium/2.png b/front/public/images/large/chisel/thaumium/2.png deleted file mode 100644 index c3cc9c3d36..0000000000 Binary files a/front/public/images/large/chisel/thaumium/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/thaumium/3.png b/front/public/images/large/chisel/thaumium/3.png deleted file mode 100644 index 5ef9c86e84..0000000000 Binary files a/front/public/images/large/chisel/thaumium/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/thaumium/4.png b/front/public/images/large/chisel/thaumium/4.png deleted file mode 100644 index e31426efca..0000000000 Binary files a/front/public/images/large/chisel/thaumium/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/thaumium/5.png b/front/public/images/large/chisel/thaumium/5.png deleted file mode 100644 index 969dd87695..0000000000 Binary files a/front/public/images/large/chisel/thaumium/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/tinblock/0.png b/front/public/images/large/chisel/tinblock/0.png deleted file mode 100644 index e3d74f2d8b..0000000000 Binary files a/front/public/images/large/chisel/tinblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/tinblock/1.png b/front/public/images/large/chisel/tinblock/1.png deleted file mode 100644 index 7466d47d69..0000000000 Binary files a/front/public/images/large/chisel/tinblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/tinblock/2.png b/front/public/images/large/chisel/tinblock/2.png deleted file mode 100644 index 495c04d17a..0000000000 Binary files a/front/public/images/large/chisel/tinblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/tinblock/3.png b/front/public/images/large/chisel/tinblock/3.png deleted file mode 100644 index f21c414be5..0000000000 Binary files a/front/public/images/large/chisel/tinblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/tinblock/4.png b/front/public/images/large/chisel/tinblock/4.png deleted file mode 100644 index 1a372b14cc..0000000000 Binary files a/front/public/images/large/chisel/tinblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/tinblock/5.png b/front/public/images/large/chisel/tinblock/5.png deleted file mode 100644 index 008439dc2f..0000000000 Binary files a/front/public/images/large/chisel/tinblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch1/0.png b/front/public/images/large/chisel/torch1/0.png deleted file mode 100644 index b96e55a5aa..0000000000 Binary files a/front/public/images/large/chisel/torch1/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch10/0.png b/front/public/images/large/chisel/torch10/0.png deleted file mode 100644 index 9bd88c4e13..0000000000 Binary files a/front/public/images/large/chisel/torch10/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch2/0.png b/front/public/images/large/chisel/torch2/0.png deleted file mode 100644 index f20d577682..0000000000 Binary files a/front/public/images/large/chisel/torch2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch3/0.png b/front/public/images/large/chisel/torch3/0.png deleted file mode 100644 index 9e8df9e6cd..0000000000 Binary files a/front/public/images/large/chisel/torch3/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch4/0.png b/front/public/images/large/chisel/torch4/0.png deleted file mode 100644 index ef8adc90da..0000000000 Binary files a/front/public/images/large/chisel/torch4/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch5/0.png b/front/public/images/large/chisel/torch5/0.png deleted file mode 100644 index b7b1b8ea07..0000000000 Binary files a/front/public/images/large/chisel/torch5/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch6/0.png b/front/public/images/large/chisel/torch6/0.png deleted file mode 100644 index 35f6ed9b28..0000000000 Binary files a/front/public/images/large/chisel/torch6/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch7/0.png b/front/public/images/large/chisel/torch7/0.png deleted file mode 100644 index 6b55538782..0000000000 Binary files a/front/public/images/large/chisel/torch7/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch8/0.png b/front/public/images/large/chisel/torch8/0.png deleted file mode 100644 index ca39629d57..0000000000 Binary files a/front/public/images/large/chisel/torch8/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/torch9/0.png b/front/public/images/large/chisel/torch9/0.png deleted file mode 100644 index d3496853d8..0000000000 Binary files a/front/public/images/large/chisel/torch9/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/0.png b/front/public/images/large/chisel/tyrian/0.png deleted file mode 100644 index 953974a81d..0000000000 Binary files a/front/public/images/large/chisel/tyrian/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/1.png b/front/public/images/large/chisel/tyrian/1.png deleted file mode 100644 index 8704134a90..0000000000 Binary files a/front/public/images/large/chisel/tyrian/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/10.png b/front/public/images/large/chisel/tyrian/10.png deleted file mode 100644 index f5dc6b1de2..0000000000 Binary files a/front/public/images/large/chisel/tyrian/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/11.png b/front/public/images/large/chisel/tyrian/11.png deleted file mode 100644 index e2b76014b3..0000000000 Binary files a/front/public/images/large/chisel/tyrian/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/12.png b/front/public/images/large/chisel/tyrian/12.png deleted file mode 100644 index 38dbd38ce0..0000000000 Binary files a/front/public/images/large/chisel/tyrian/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/13.png b/front/public/images/large/chisel/tyrian/13.png deleted file mode 100644 index a025d1b3ec..0000000000 Binary files a/front/public/images/large/chisel/tyrian/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/14.png b/front/public/images/large/chisel/tyrian/14.png deleted file mode 100644 index 03b74755e5..0000000000 Binary files a/front/public/images/large/chisel/tyrian/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/15.png b/front/public/images/large/chisel/tyrian/15.png deleted file mode 100644 index 64253c97e1..0000000000 Binary files a/front/public/images/large/chisel/tyrian/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/2.png b/front/public/images/large/chisel/tyrian/2.png deleted file mode 100644 index 9a3f1246ea..0000000000 Binary files a/front/public/images/large/chisel/tyrian/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/3.png b/front/public/images/large/chisel/tyrian/3.png deleted file mode 100644 index a44d5a1c72..0000000000 Binary files a/front/public/images/large/chisel/tyrian/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/4.png b/front/public/images/large/chisel/tyrian/4.png deleted file mode 100644 index 6cade2c250..0000000000 Binary files a/front/public/images/large/chisel/tyrian/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/5.png b/front/public/images/large/chisel/tyrian/5.png deleted file mode 100644 index 09d60807cd..0000000000 Binary files a/front/public/images/large/chisel/tyrian/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/6.png b/front/public/images/large/chisel/tyrian/6.png deleted file mode 100644 index bbfe894e0f..0000000000 Binary files a/front/public/images/large/chisel/tyrian/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/7.png b/front/public/images/large/chisel/tyrian/7.png deleted file mode 100644 index fbbdacf725..0000000000 Binary files a/front/public/images/large/chisel/tyrian/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/8.png b/front/public/images/large/chisel/tyrian/8.png deleted file mode 100644 index da68a678c2..0000000000 Binary files a/front/public/images/large/chisel/tyrian/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/tyrian/9.png b/front/public/images/large/chisel/tyrian/9.png deleted file mode 100644 index 075e410fa6..0000000000 Binary files a/front/public/images/large/chisel/tyrian/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/upgrade/0.png b/front/public/images/large/chisel/upgrade/0.png deleted file mode 100644 index 5576c503da..0000000000 Binary files a/front/public/images/large/chisel/upgrade/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/upgrade/1.png b/front/public/images/large/chisel/upgrade/1.png deleted file mode 100644 index aee159a6d8..0000000000 Binary files a/front/public/images/large/chisel/upgrade/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/upgrade/2.png b/front/public/images/large/chisel/upgrade/2.png deleted file mode 100644 index 87c7af22f4..0000000000 Binary files a/front/public/images/large/chisel/upgrade/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/upgrade/3.png b/front/public/images/large/chisel/upgrade/3.png deleted file mode 100644 index 3a6a157d63..0000000000 Binary files a/front/public/images/large/chisel/upgrade/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/uraniumblock/0.png b/front/public/images/large/chisel/uraniumblock/0.png deleted file mode 100644 index 6887f0db60..0000000000 Binary files a/front/public/images/large/chisel/uraniumblock/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/uraniumblock/1.png b/front/public/images/large/chisel/uraniumblock/1.png deleted file mode 100644 index 29ce5c9ce0..0000000000 Binary files a/front/public/images/large/chisel/uraniumblock/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/uraniumblock/2.png b/front/public/images/large/chisel/uraniumblock/2.png deleted file mode 100644 index bc074f973c..0000000000 Binary files a/front/public/images/large/chisel/uraniumblock/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/uraniumblock/3.png b/front/public/images/large/chisel/uraniumblock/3.png deleted file mode 100644 index 9592670884..0000000000 Binary files a/front/public/images/large/chisel/uraniumblock/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/uraniumblock/4.png b/front/public/images/large/chisel/uraniumblock/4.png deleted file mode 100644 index 9988f16587..0000000000 Binary files a/front/public/images/large/chisel/uraniumblock/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/uraniumblock/5.png b/front/public/images/large/chisel/uraniumblock/5.png deleted file mode 100644 index 39b6a523fd..0000000000 Binary files a/front/public/images/large/chisel/uraniumblock/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/0.png b/front/public/images/large/chisel/valentines/0.png deleted file mode 100644 index 2f50d6e5ca..0000000000 Binary files a/front/public/images/large/chisel/valentines/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/1.png b/front/public/images/large/chisel/valentines/1.png deleted file mode 100644 index 7b4f07da25..0000000000 Binary files a/front/public/images/large/chisel/valentines/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/2.png b/front/public/images/large/chisel/valentines/2.png deleted file mode 100644 index e7a5166f8b..0000000000 Binary files a/front/public/images/large/chisel/valentines/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/3.png b/front/public/images/large/chisel/valentines/3.png deleted file mode 100644 index ac6a73fd7d..0000000000 Binary files a/front/public/images/large/chisel/valentines/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/4.png b/front/public/images/large/chisel/valentines/4.png deleted file mode 100644 index e4041173aa..0000000000 Binary files a/front/public/images/large/chisel/valentines/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/5.png b/front/public/images/large/chisel/valentines/5.png deleted file mode 100644 index 4077d7d03c..0000000000 Binary files a/front/public/images/large/chisel/valentines/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/6.png b/front/public/images/large/chisel/valentines/6.png deleted file mode 100644 index b17a891df9..0000000000 Binary files a/front/public/images/large/chisel/valentines/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/7.png b/front/public/images/large/chisel/valentines/7.png deleted file mode 100644 index 4fbc6921f1..0000000000 Binary files a/front/public/images/large/chisel/valentines/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/8.png b/front/public/images/large/chisel/valentines/8.png deleted file mode 100644 index 3ff3391542..0000000000 Binary files a/front/public/images/large/chisel/valentines/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/valentines/9.png b/front/public/images/large/chisel/valentines/9.png deleted file mode 100644 index 75b071fa46..0000000000 Binary files a/front/public/images/large/chisel/valentines/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/0.png b/front/public/images/large/chisel/voidstone/0.png deleted file mode 100644 index 5a3339754f..0000000000 Binary files a/front/public/images/large/chisel/voidstone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/1.png b/front/public/images/large/chisel/voidstone/1.png deleted file mode 100644 index 14fc9c4a00..0000000000 Binary files a/front/public/images/large/chisel/voidstone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/2.png b/front/public/images/large/chisel/voidstone/2.png deleted file mode 100644 index f1c4945753..0000000000 Binary files a/front/public/images/large/chisel/voidstone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/3.png b/front/public/images/large/chisel/voidstone/3.png deleted file mode 100644 index 6e156e6126..0000000000 Binary files a/front/public/images/large/chisel/voidstone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/4.png b/front/public/images/large/chisel/voidstone/4.png deleted file mode 100644 index 6ab26dc446..0000000000 Binary files a/front/public/images/large/chisel/voidstone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/5.png b/front/public/images/large/chisel/voidstone/5.png deleted file mode 100644 index a68260feac..0000000000 Binary files a/front/public/images/large/chisel/voidstone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/6.png b/front/public/images/large/chisel/voidstone/6.png deleted file mode 100644 index cab54e4efe..0000000000 Binary files a/front/public/images/large/chisel/voidstone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone/7.png b/front/public/images/large/chisel/voidstone/7.png deleted file mode 100644 index 9c5e3d3b83..0000000000 Binary files a/front/public/images/large/chisel/voidstone/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/0.png b/front/public/images/large/chisel/voidstone2/0.png deleted file mode 100644 index 25ddac4d64..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/1.png b/front/public/images/large/chisel/voidstone2/1.png deleted file mode 100644 index 178ca0ce31..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/2.png b/front/public/images/large/chisel/voidstone2/2.png deleted file mode 100644 index 795d5c7cb9..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/3.png b/front/public/images/large/chisel/voidstone2/3.png deleted file mode 100644 index e67ff10fdb..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/4.png b/front/public/images/large/chisel/voidstone2/4.png deleted file mode 100644 index a5a0369452..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/5.png b/front/public/images/large/chisel/voidstone2/5.png deleted file mode 100644 index a68260feac..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/6.png b/front/public/images/large/chisel/voidstone2/6.png deleted file mode 100644 index 74717c98c9..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstone2/7.png b/front/public/images/large/chisel/voidstone2/7.png deleted file mode 100644 index 3a7f2074d9..0000000000 Binary files a/front/public/images/large/chisel/voidstone2/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstonePillar/0.png b/front/public/images/large/chisel/voidstonePillar/0.png deleted file mode 100644 index 44919c53b7..0000000000 Binary files a/front/public/images/large/chisel/voidstonePillar/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstonePillar2/0.png b/front/public/images/large/chisel/voidstonePillar2/0.png deleted file mode 100644 index 44919c53b7..0000000000 Binary files a/front/public/images/large/chisel/voidstonePillar2/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/1.png b/front/public/images/large/chisel/voidstoneRunic/1.png deleted file mode 100644 index 4c082210a9..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/10.png b/front/public/images/large/chisel/voidstoneRunic/10.png deleted file mode 100644 index 08d828c175..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/11.png b/front/public/images/large/chisel/voidstoneRunic/11.png deleted file mode 100644 index 64e2e8c9c5..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/12.png b/front/public/images/large/chisel/voidstoneRunic/12.png deleted file mode 100644 index d6ee6b578a..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/13.png b/front/public/images/large/chisel/voidstoneRunic/13.png deleted file mode 100644 index ca56f936c3..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/14.png b/front/public/images/large/chisel/voidstoneRunic/14.png deleted file mode 100644 index 6dd02d882c..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/15.png b/front/public/images/large/chisel/voidstoneRunic/15.png deleted file mode 100644 index c122b34782..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/2.png b/front/public/images/large/chisel/voidstoneRunic/2.png deleted file mode 100644 index 0dff66db93..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/3.png b/front/public/images/large/chisel/voidstoneRunic/3.png deleted file mode 100644 index 8d05a3b23c..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/4.png b/front/public/images/large/chisel/voidstoneRunic/4.png deleted file mode 100644 index ceef4f8872..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/5.png b/front/public/images/large/chisel/voidstoneRunic/5.png deleted file mode 100644 index bc3f87ebba..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/6.png b/front/public/images/large/chisel/voidstoneRunic/6.png deleted file mode 100644 index 68e056c318..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/7.png b/front/public/images/large/chisel/voidstoneRunic/7.png deleted file mode 100644 index 68988ad57d..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/8.png b/front/public/images/large/chisel/voidstoneRunic/8.png deleted file mode 100644 index ca2aa8ebc5..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/voidstoneRunic/9.png b/front/public/images/large/chisel/voidstoneRunic/9.png deleted file mode 100644 index 5b404229c9..0000000000 Binary files a/front/public/images/large/chisel/voidstoneRunic/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/0.png b/front/public/images/large/chisel/warningSign/0.png deleted file mode 100644 index 3a125bd02b..0000000000 Binary files a/front/public/images/large/chisel/warningSign/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/1.png b/front/public/images/large/chisel/warningSign/1.png deleted file mode 100644 index 933bb25bab..0000000000 Binary files a/front/public/images/large/chisel/warningSign/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/10.png b/front/public/images/large/chisel/warningSign/10.png deleted file mode 100644 index bd07bde4c8..0000000000 Binary files a/front/public/images/large/chisel/warningSign/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/11.png b/front/public/images/large/chisel/warningSign/11.png deleted file mode 100644 index 9857701853..0000000000 Binary files a/front/public/images/large/chisel/warningSign/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/12.png b/front/public/images/large/chisel/warningSign/12.png deleted file mode 100644 index 81f396a91d..0000000000 Binary files a/front/public/images/large/chisel/warningSign/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/13.png b/front/public/images/large/chisel/warningSign/13.png deleted file mode 100644 index 6741ace575..0000000000 Binary files a/front/public/images/large/chisel/warningSign/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/14.png b/front/public/images/large/chisel/warningSign/14.png deleted file mode 100644 index 0336345193..0000000000 Binary files a/front/public/images/large/chisel/warningSign/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/2.png b/front/public/images/large/chisel/warningSign/2.png deleted file mode 100644 index 21c6f7c0f1..0000000000 Binary files a/front/public/images/large/chisel/warningSign/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/3.png b/front/public/images/large/chisel/warningSign/3.png deleted file mode 100644 index 0c5e440aa4..0000000000 Binary files a/front/public/images/large/chisel/warningSign/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/4.png b/front/public/images/large/chisel/warningSign/4.png deleted file mode 100644 index 18d5f6814f..0000000000 Binary files a/front/public/images/large/chisel/warningSign/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/5.png b/front/public/images/large/chisel/warningSign/5.png deleted file mode 100644 index 4243a12ad9..0000000000 Binary files a/front/public/images/large/chisel/warningSign/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/6.png b/front/public/images/large/chisel/warningSign/6.png deleted file mode 100644 index aba84daae8..0000000000 Binary files a/front/public/images/large/chisel/warningSign/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/7.png b/front/public/images/large/chisel/warningSign/7.png deleted file mode 100644 index 8eb587535c..0000000000 Binary files a/front/public/images/large/chisel/warningSign/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/8.png b/front/public/images/large/chisel/warningSign/8.png deleted file mode 100644 index eaf66b7bc7..0000000000 Binary files a/front/public/images/large/chisel/warningSign/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/warningSign/9.png b/front/public/images/large/chisel/warningSign/9.png deleted file mode 100644 index 7fe20dfe1a..0000000000 Binary files a/front/public/images/large/chisel/warningSign/9.png and /dev/null differ diff --git a/front/public/images/large/chisel/waterstone/0.png b/front/public/images/large/chisel/waterstone/0.png deleted file mode 100644 index 07f3c6423e..0000000000 Binary files a/front/public/images/large/chisel/waterstone/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/waterstone/1.png b/front/public/images/large/chisel/waterstone/1.png deleted file mode 100644 index 670de6f80b..0000000000 Binary files a/front/public/images/large/chisel/waterstone/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/waterstone/2.png b/front/public/images/large/chisel/waterstone/2.png deleted file mode 100644 index a05806c4ff..0000000000 Binary files a/front/public/images/large/chisel/waterstone/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/waterstone/3.png b/front/public/images/large/chisel/waterstone/3.png deleted file mode 100644 index aadf4f1004..0000000000 Binary files a/front/public/images/large/chisel/waterstone/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/waterstone/4.png b/front/public/images/large/chisel/waterstone/4.png deleted file mode 100644 index 2453c628ec..0000000000 Binary files a/front/public/images/large/chisel/waterstone/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/waterstone/5.png b/front/public/images/large/chisel/waterstone/5.png deleted file mode 100644 index a2e3238e48..0000000000 Binary files a/front/public/images/large/chisel/waterstone/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/waterstone/6.png b/front/public/images/large/chisel/waterstone/6.png deleted file mode 100644 index 21dfece74f..0000000000 Binary files a/front/public/images/large/chisel/waterstone/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/0.png b/front/public/images/large/chisel/woolen_clay/0.png deleted file mode 100644 index 61a8be1524..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/0.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/1.png b/front/public/images/large/chisel/woolen_clay/1.png deleted file mode 100644 index fb59c1b219..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/1.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/10.png b/front/public/images/large/chisel/woolen_clay/10.png deleted file mode 100644 index adb6ec2c57..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/10.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/11.png b/front/public/images/large/chisel/woolen_clay/11.png deleted file mode 100644 index 73af3cc6b4..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/11.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/12.png b/front/public/images/large/chisel/woolen_clay/12.png deleted file mode 100644 index f7b7cca500..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/12.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/13.png b/front/public/images/large/chisel/woolen_clay/13.png deleted file mode 100644 index 192f4fa01a..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/13.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/14.png b/front/public/images/large/chisel/woolen_clay/14.png deleted file mode 100644 index ab6370ccf1..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/14.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/15.png b/front/public/images/large/chisel/woolen_clay/15.png deleted file mode 100644 index fcac5f3d0b..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/15.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/2.png b/front/public/images/large/chisel/woolen_clay/2.png deleted file mode 100644 index 10912c4125..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/2.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/3.png b/front/public/images/large/chisel/woolen_clay/3.png deleted file mode 100644 index 3f4ef54032..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/3.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/4.png b/front/public/images/large/chisel/woolen_clay/4.png deleted file mode 100644 index 402e796891..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/4.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/5.png b/front/public/images/large/chisel/woolen_clay/5.png deleted file mode 100644 index 72e0cf0025..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/5.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/6.png b/front/public/images/large/chisel/woolen_clay/6.png deleted file mode 100644 index b2e1bea2d7..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/6.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/7.png b/front/public/images/large/chisel/woolen_clay/7.png deleted file mode 100644 index 731c0bc4ce..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/7.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/8.png b/front/public/images/large/chisel/woolen_clay/8.png deleted file mode 100644 index 6503b73c42..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/8.png and /dev/null differ diff --git a/front/public/images/large/chisel/woolen_clay/9.png b/front/public/images/large/chisel/woolen_clay/9.png deleted file mode 100644 index 1e67b049a7..0000000000 Binary files a/front/public/images/large/chisel/woolen_clay/9.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/0.png b/front/public/images/large/compactkineticgenerators/BlockCkg/0.png deleted file mode 100644 index 69b2b5891e..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/0.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/1.png b/front/public/images/large/compactkineticgenerators/BlockCkg/1.png deleted file mode 100644 index 0ea3ddb878..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/1.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/10.png b/front/public/images/large/compactkineticgenerators/BlockCkg/10.png deleted file mode 100644 index 47c8a1bfcb..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/10.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/11.png b/front/public/images/large/compactkineticgenerators/BlockCkg/11.png deleted file mode 100644 index 19e630e703..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/11.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/2.png b/front/public/images/large/compactkineticgenerators/BlockCkg/2.png deleted file mode 100644 index 47c8a1bfcb..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/2.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/3.png b/front/public/images/large/compactkineticgenerators/BlockCkg/3.png deleted file mode 100644 index 19e630e703..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/3.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/4.png b/front/public/images/large/compactkineticgenerators/BlockCkg/4.png deleted file mode 100644 index 69b2b5891e..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/4.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/5.png b/front/public/images/large/compactkineticgenerators/BlockCkg/5.png deleted file mode 100644 index 0ea3ddb878..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/5.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/6.png b/front/public/images/large/compactkineticgenerators/BlockCkg/6.png deleted file mode 100644 index 47c8a1bfcb..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/6.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/7.png b/front/public/images/large/compactkineticgenerators/BlockCkg/7.png deleted file mode 100644 index 19e630e703..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/7.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/8.png b/front/public/images/large/compactkineticgenerators/BlockCkg/8.png deleted file mode 100644 index 69b2b5891e..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/8.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/BlockCkg/9.png b/front/public/images/large/compactkineticgenerators/BlockCkg/9.png deleted file mode 100644 index 0ea3ddb878..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/BlockCkg/9.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/IridiumBlade/0.png b/front/public/images/large/compactkineticgenerators/IridiumBlade/0.png deleted file mode 100644 index 269acb6b88..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/IridiumBlade/0.png and /dev/null differ diff --git a/front/public/images/large/compactkineticgenerators/IridiumRotor/0.png b/front/public/images/large/compactkineticgenerators/IridiumRotor/0.png deleted file mode 100644 index a752a3d7bc..0000000000 Binary files a/front/public/images/large/compactkineticgenerators/IridiumRotor/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.audioCable/0.png b/front/public/images/large/computronics/computronics.audioCable/0.png deleted file mode 100644 index a63b5ca8ea..0000000000 Binary files a/front/public/images/large/computronics/computronics.audioCable/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.camera/0.png b/front/public/images/large/computronics/computronics.camera/0.png deleted file mode 100644 index 5846c3cde8..0000000000 Binary files a/front/public/images/large/computronics/computronics.camera/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.chatBox/0.png b/front/public/images/large/computronics/computronics.chatBox/0.png deleted file mode 100644 index 32cb5c4838..0000000000 Binary files a/front/public/images/large/computronics/computronics.chatBox/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.chatBox/8.png b/front/public/images/large/computronics/computronics.chatBox/8.png deleted file mode 100644 index dd2f1e5e34..0000000000 Binary files a/front/public/images/large/computronics/computronics.chatBox/8.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.cipher/0.png b/front/public/images/large/computronics/computronics.cipher/0.png deleted file mode 100644 index 2e05a626b3..0000000000 Binary files a/front/public/images/large/computronics/computronics.cipher/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.cipher_advanced/0.png b/front/public/images/large/computronics/computronics.cipher_advanced/0.png deleted file mode 100644 index 50ba62f86f..0000000000 Binary files a/front/public/images/large/computronics/computronics.cipher_advanced/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.colorfulLamp/0.png b/front/public/images/large/computronics/computronics.colorfulLamp/0.png deleted file mode 100644 index 265b7ea904..0000000000 Binary files a/front/public/images/large/computronics/computronics.colorfulLamp/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.detector/0.png b/front/public/images/large/computronics/computronics.detector/0.png deleted file mode 100644 index 362f46a8d4..0000000000 Binary files a/front/public/images/large/computronics/computronics.detector/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.digitalControllerBox/0.png b/front/public/images/large/computronics/computronics.digitalControllerBox/0.png deleted file mode 100644 index 236e77fa95..0000000000 Binary files a/front/public/images/large/computronics/computronics.digitalControllerBox/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.digitalReceiverBox/0.png b/front/public/images/large/computronics/computronics.digitalReceiverBox/0.png deleted file mode 100644 index cefd258cf1..0000000000 Binary files a/front/public/images/large/computronics/computronics.digitalReceiverBox/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.dockingUpgrade/0.png b/front/public/images/large/computronics/computronics.dockingUpgrade/0.png deleted file mode 100644 index b1a7d248f5..0000000000 Binary files a/front/public/images/large/computronics/computronics.dockingUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.droneStation/0.png b/front/public/images/large/computronics/computronics.droneStation/0.png deleted file mode 100644 index 15d980ac44..0000000000 Binary files a/front/public/images/large/computronics/computronics.droneStation/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.gt_parts/0.png b/front/public/images/large/computronics/computronics.gt_parts/0.png deleted file mode 100644 index a04b33d0be..0000000000 Binary files a/front/public/images/large/computronics/computronics.gt_parts/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ironNoteBlock/0.png b/front/public/images/large/computronics/computronics.ironNoteBlock/0.png deleted file mode 100644 index 7b9bea0880..0000000000 Binary files a/front/public/images/large/computronics/computronics.ironNoteBlock/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.locomotiveRelay/0.png b/front/public/images/large/computronics/computronics.locomotiveRelay/0.png deleted file mode 100644 index 8c27c38f56..0000000000 Binary files a/front/public/images/large/computronics/computronics.locomotiveRelay/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/0.png b/front/public/images/large/computronics/computronics.ocParts/0.png deleted file mode 100644 index a4a0e0b7c3..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/1.png b/front/public/images/large/computronics/computronics.ocParts/1.png deleted file mode 100644 index c11b963fbe..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/1.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/10.png b/front/public/images/large/computronics/computronics.ocParts/10.png deleted file mode 100644 index 3919c25083..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/10.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/11.png b/front/public/images/large/computronics/computronics.ocParts/11.png deleted file mode 100644 index 7671ef19d3..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/11.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/12.png b/front/public/images/large/computronics/computronics.ocParts/12.png deleted file mode 100644 index c6152919de..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/12.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/13.png b/front/public/images/large/computronics/computronics.ocParts/13.png deleted file mode 100644 index 50b6ebf85e..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/13.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/14.png b/front/public/images/large/computronics/computronics.ocParts/14.png deleted file mode 100644 index b8a969b78a..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/14.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/2.png b/front/public/images/large/computronics/computronics.ocParts/2.png deleted file mode 100644 index e1b66fa46a..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/2.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/3.png b/front/public/images/large/computronics/computronics.ocParts/3.png deleted file mode 100644 index ca73ab0e51..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/3.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/4.png b/front/public/images/large/computronics/computronics.ocParts/4.png deleted file mode 100644 index 72d0bb2982..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/4.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/5.png b/front/public/images/large/computronics/computronics.ocParts/5.png deleted file mode 100644 index cc6e62fe22..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/5.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/6.png b/front/public/images/large/computronics/computronics.ocParts/6.png deleted file mode 100644 index f075962604..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/6.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/7.png b/front/public/images/large/computronics/computronics.ocParts/7.png deleted file mode 100644 index 55c71d07aa..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/7.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/8.png b/front/public/images/large/computronics/computronics.ocParts/8.png deleted file mode 100644 index 594200352f..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/8.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocParts/9.png b/front/public/images/large/computronics/computronics.ocParts/9.png deleted file mode 100644 index 315d9ec451..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocParts/9.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ocSpecialParts/0.png b/front/public/images/large/computronics/computronics.ocSpecialParts/0.png deleted file mode 100644 index 5aa7fbca81..0000000000 Binary files a/front/public/images/large/computronics/computronics.ocSpecialParts/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.parts/0.png b/front/public/images/large/computronics/computronics.parts/0.png deleted file mode 100644 index 7d0327fa33..0000000000 Binary files a/front/public/images/large/computronics/computronics.parts/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.partsForestry/0.png b/front/public/images/large/computronics/computronics.partsForestry/0.png deleted file mode 100644 index 41c87fde91..0000000000 Binary files a/front/public/images/large/computronics/computronics.partsForestry/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.partsForestry/1.png b/front/public/images/large/computronics/computronics.partsForestry/1.png deleted file mode 100644 index 10c740ce0c..0000000000 Binary files a/front/public/images/large/computronics/computronics.partsForestry/1.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.portableTapeDrive/0.png b/front/public/images/large/computronics/computronics.portableTapeDrive/0.png deleted file mode 100644 index 86a637e6b2..0000000000 Binary files a/front/public/images/large/computronics/computronics.portableTapeDrive/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.radar/0.png b/front/public/images/large/computronics/computronics.radar/0.png deleted file mode 100644 index df7c69f4ef..0000000000 Binary files a/front/public/images/large/computronics/computronics.radar/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.relaySensor/0.png b/front/public/images/large/computronics/computronics.relaySensor/0.png deleted file mode 100644 index a901aaf951..0000000000 Binary files a/front/public/images/large/computronics/computronics.relaySensor/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.speaker/0.png b/front/public/images/large/computronics/computronics.speaker/0.png deleted file mode 100644 index 4309eaaf51..0000000000 Binary files a/front/public/images/large/computronics/computronics.speaker/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.speechBox/0.png b/front/public/images/large/computronics/computronics.speechBox/0.png deleted file mode 100644 index 3744f8d638..0000000000 Binary files a/front/public/images/large/computronics/computronics.speechBox/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/0.png b/front/public/images/large/computronics/computronics.tape/0.png deleted file mode 100644 index 9b94352540..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/1.png b/front/public/images/large/computronics/computronics.tape/1.png deleted file mode 100644 index 03ec346d09..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/1.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/2.png b/front/public/images/large/computronics/computronics.tape/2.png deleted file mode 100644 index 03ec346d09..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/2.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/3.png b/front/public/images/large/computronics/computronics.tape/3.png deleted file mode 100644 index 46996f4926..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/3.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/4.png b/front/public/images/large/computronics/computronics.tape/4.png deleted file mode 100644 index 14097d0cdb..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/4.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/5.png b/front/public/images/large/computronics/computronics.tape/5.png deleted file mode 100644 index 7545fc7daa..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/5.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/6.png b/front/public/images/large/computronics/computronics.tape/6.png deleted file mode 100644 index 5362c75e7d..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/6.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/7.png b/front/public/images/large/computronics/computronics.tape/7.png deleted file mode 100644 index 18d8503738..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/7.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/8.png b/front/public/images/large/computronics/computronics.tape/8.png deleted file mode 100644 index 14097d0cdb..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/8.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tape/9.png b/front/public/images/large/computronics/computronics.tape/9.png deleted file mode 100644 index 2dd4f42488..0000000000 Binary files a/front/public/images/large/computronics/computronics.tape/9.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.tapeReader/0.png b/front/public/images/large/computronics/computronics.tapeReader/0.png deleted file mode 100644 index 3c58115d47..0000000000 Binary files a/front/public/images/large/computronics/computronics.tapeReader/0.png and /dev/null differ diff --git a/front/public/images/large/computronics/computronics.ticketMachine/0.png b/front/public/images/large/computronics/computronics.ticketMachine/0.png deleted file mode 100644 index 38406bd32c..0000000000 Binary files a/front/public/images/large/computronics/computronics.ticketMachine/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/black_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/black_kitchen_floor/0.png deleted file mode 100644 index a053130c90..0000000000 Binary files a/front/public/images/large/cookingforblockheads/black_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/blue_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/blue_kitchen_floor/0.png deleted file mode 100644 index a1aa45a221..0000000000 Binary files a/front/public/images/large/cookingforblockheads/blue_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/brown_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/brown_kitchen_floor/0.png deleted file mode 100644 index c435ae5034..0000000000 Binary files a/front/public/images/large/cookingforblockheads/brown_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/cabinet/0.png b/front/public/images/large/cookingforblockheads/cabinet/0.png deleted file mode 100644 index 58bc764ba1..0000000000 Binary files a/front/public/images/large/cookingforblockheads/cabinet/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/cabinetcorner/0.png b/front/public/images/large/cookingforblockheads/cabinetcorner/0.png deleted file mode 100644 index 8eb333a8c5..0000000000 Binary files a/front/public/images/large/cookingforblockheads/cabinetcorner/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/cookingoven/0.png b/front/public/images/large/cookingforblockheads/cookingoven/0.png deleted file mode 100644 index 2888fee899..0000000000 Binary files a/front/public/images/large/cookingforblockheads/cookingoven/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/cookingtable/0.png b/front/public/images/large/cookingforblockheads/cookingtable/0.png deleted file mode 100644 index a3969367f7..0000000000 Binary files a/front/public/images/large/cookingforblockheads/cookingtable/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/counter/0.png b/front/public/images/large/cookingforblockheads/counter/0.png deleted file mode 100644 index 8d2f6e24d6..0000000000 Binary files a/front/public/images/large/cookingforblockheads/counter/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/countercorner/0.png b/front/public/images/large/cookingforblockheads/countercorner/0.png deleted file mode 100644 index 80b23a7d6f..0000000000 Binary files a/front/public/images/large/cookingforblockheads/countercorner/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/cyan_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/cyan_kitchen_floor/0.png deleted file mode 100644 index 99237196ff..0000000000 Binary files a/front/public/images/large/cookingforblockheads/cyan_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/fridge/0.png b/front/public/images/large/cookingforblockheads/fridge/0.png deleted file mode 100644 index 126171fe79..0000000000 Binary files a/front/public/images/large/cookingforblockheads/fridge/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/gray_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/gray_kitchen_floor/0.png deleted file mode 100644 index fad0225105..0000000000 Binary files a/front/public/images/large/cookingforblockheads/gray_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/green_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/green_kitchen_floor/0.png deleted file mode 100644 index 3557c4d441..0000000000 Binary files a/front/public/images/large/cookingforblockheads/green_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/light_blue_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/light_blue_kitchen_floor/0.png deleted file mode 100644 index 5e37d6bb2f..0000000000 Binary files a/front/public/images/large/cookingforblockheads/light_blue_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/light_gray_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/light_gray_kitchen_floor/0.png deleted file mode 100644 index 06dcaca737..0000000000 Binary files a/front/public/images/large/cookingforblockheads/light_gray_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/lime_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/lime_kitchen_floor/0.png deleted file mode 100644 index e3cdc85100..0000000000 Binary files a/front/public/images/large/cookingforblockheads/lime_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/magenta_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/magenta_kitchen_floor/0.png deleted file mode 100644 index 3e140b920c..0000000000 Binary files a/front/public/images/large/cookingforblockheads/magenta_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/orange_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/orange_kitchen_floor/0.png deleted file mode 100644 index c053637f7a..0000000000 Binary files a/front/public/images/large/cookingforblockheads/orange_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/pink_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/pink_kitchen_floor/0.png deleted file mode 100644 index 46fee5682f..0000000000 Binary files a/front/public/images/large/cookingforblockheads/pink_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/purple_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/purple_kitchen_floor/0.png deleted file mode 100644 index d9e23be4f8..0000000000 Binary files a/front/public/images/large/cookingforblockheads/purple_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/recipebook/0.png b/front/public/images/large/cookingforblockheads/recipebook/0.png deleted file mode 100644 index 7bef5b73cd..0000000000 Binary files a/front/public/images/large/cookingforblockheads/recipebook/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/recipebook/1.png b/front/public/images/large/cookingforblockheads/recipebook/1.png deleted file mode 100644 index d936f23476..0000000000 Binary files a/front/public/images/large/cookingforblockheads/recipebook/1.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/recipebook/3.png b/front/public/images/large/cookingforblockheads/recipebook/3.png deleted file mode 100644 index fc71e40ca0..0000000000 Binary files a/front/public/images/large/cookingforblockheads/recipebook/3.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/red_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/red_kitchen_floor/0.png deleted file mode 100644 index 2eccf067c4..0000000000 Binary files a/front/public/images/large/cookingforblockheads/red_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/sink/0.png b/front/public/images/large/cookingforblockheads/sink/0.png deleted file mode 100644 index 28a2432fe9..0000000000 Binary files a/front/public/images/large/cookingforblockheads/sink/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/toast/0.png b/front/public/images/large/cookingforblockheads/toast/0.png deleted file mode 100644 index a370123e7e..0000000000 Binary files a/front/public/images/large/cookingforblockheads/toast/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/toaster/0.png b/front/public/images/large/cookingforblockheads/toaster/0.png deleted file mode 100644 index 44dd2407cd..0000000000 Binary files a/front/public/images/large/cookingforblockheads/toaster/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/toolrack/0.png b/front/public/images/large/cookingforblockheads/toolrack/0.png deleted file mode 100644 index 5c50bed4c7..0000000000 Binary files a/front/public/images/large/cookingforblockheads/toolrack/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/white_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/white_kitchen_floor/0.png deleted file mode 100644 index 4a0747d669..0000000000 Binary files a/front/public/images/large/cookingforblockheads/white_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/cookingforblockheads/yellow_kitchen_floor/0.png b/front/public/images/large/cookingforblockheads/yellow_kitchen_floor/0.png deleted file mode 100644 index 7f687dffa3..0000000000 Binary files a/front/public/images/large/cookingforblockheads/yellow_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/BabyChest/0.png b/front/public/images/large/dreamcraft/BabyChest/0.png deleted file mode 100644 index 8c32d02900..0000000000 Binary files a/front/public/images/large/dreamcraft/BabyChest/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_Ammonia/0.png b/front/public/images/large/dreamcraft/dreamcraft_Ammonia/0.png deleted file mode 100644 index 74fb3c09ae..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_Ammonia/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_CompressedNitrogen/0.png b/front/public/images/large/dreamcraft/dreamcraft_CompressedNitrogen/0.png deleted file mode 100644 index 2559679158..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_CompressedNitrogen/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_CompressedOxygen/0.png b/front/public/images/large/dreamcraft/dreamcraft_CompressedOxygen/0.png deleted file mode 100644 index 803246afd3..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_CompressedOxygen/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_Concrete/0.png b/front/public/images/large/dreamcraft/dreamcraft_Concrete/0.png deleted file mode 100644 index ac934a34d0..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_Concrete/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_Concrete_bucket/0.png b/front/public/images/large/dreamcraft/dreamcraft_Concrete_bucket/0.png deleted file mode 100644 index 12295744ca..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_Concrete_bucket/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_EnrichedBacterialSludge/0.png b/front/public/images/large/dreamcraft/dreamcraft_EnrichedBacterialSludge/0.png deleted file mode 100644 index a676b2e1ca..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_EnrichedBacterialSludge/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_EnrichedBacterialSludge_bucket/0.png b/front/public/images/large/dreamcraft/dreamcraft_EnrichedBacterialSludge_bucket/0.png deleted file mode 100644 index b204fb5673..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_EnrichedBacterialSludge_bucket/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_FermentedBacterialSludge/0.png b/front/public/images/large/dreamcraft/dreamcraft_FermentedBacterialSludge/0.png deleted file mode 100644 index b2d05c899c..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_FermentedBacterialSludge/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_FermentedBacterialSludge_bucket/0.png b/front/public/images/large/dreamcraft/dreamcraft_FermentedBacterialSludge_bucket/0.png deleted file mode 100644 index d10ee94a24..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_FermentedBacterialSludge_bucket/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_NitricAcid/0.png b/front/public/images/large/dreamcraft/dreamcraft_NitricAcid/0.png deleted file mode 100644 index fee2dd7e59..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_NitricAcid/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_NitricAcid_bucket/0.png b/front/public/images/large/dreamcraft/dreamcraft_NitricAcid_bucket/0.png deleted file mode 100644 index 1facd3911b..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_NitricAcid_bucket/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_Pollution/0.png b/front/public/images/large/dreamcraft/dreamcraft_Pollution/0.png deleted file mode 100644 index a6d485d5ee..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_Pollution/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_Pollution_bucket/0.png b/front/public/images/large/dreamcraft/dreamcraft_Pollution_bucket/0.png deleted file mode 100644 index a1fc537af4..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_Pollution_bucket/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_SodiumPotassium/0.png b/front/public/images/large/dreamcraft/dreamcraft_SodiumPotassium/0.png deleted file mode 100644 index c40f1c778a..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_SodiumPotassium/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/dreamcraft_SodiumPotassium_bucket/0.png b/front/public/images/large/dreamcraft/dreamcraft_SodiumPotassium_bucket/0.png deleted file mode 100644 index 06dc07f323..0000000000 Binary files a/front/public/images/large/dreamcraft/dreamcraft_SodiumPotassium_bucket/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/0.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/0.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/1.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/1.png deleted file mode 100644 index 61ce313e5e..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/1.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/10.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/10.png deleted file mode 100644 index db81212a33..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/10.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/11.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/11.png deleted file mode 100644 index a22a977f83..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/11.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/12.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/12.png deleted file mode 100644 index 505e8d8bad..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/12.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/13.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/13.png deleted file mode 100644 index 7d6306af20..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/13.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/14.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/14.png deleted file mode 100644 index 8d316862a5..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/14.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/2.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/2.png deleted file mode 100644 index 0eb3e327e3..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/2.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/3.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/3.png deleted file mode 100644 index 7343e8a1d9..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/3.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/4.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/4.png deleted file mode 100644 index 77a6eb817d..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/4.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/5.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/5.png deleted file mode 100644 index 891af06208..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/5.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/gt.blockcasingsNH/6.png b/front/public/images/large/dreamcraft/gt.blockcasingsNH/6.png deleted file mode 100644 index 77299bf1ff..0000000000 Binary files a/front/public/images/large/dreamcraft/gt.blockcasingsNH/6.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AdsorptionFilter/0.png b/front/public/images/large/dreamcraft/item.AdsorptionFilter/0.png deleted file mode 100644 index 460b8b65de..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AdsorptionFilter/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AdsorptionFilterCasing/0.png b/front/public/images/large/dreamcraft/item.AdsorptionFilterCasing/0.png deleted file mode 100644 index 7ab0ec4e37..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AdsorptionFilterCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AdsorptionFilterDirty/0.png b/front/public/images/large/dreamcraft/item.AdsorptionFilterDirty/0.png deleted file mode 100644 index dc100eb4e9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AdsorptionFilterDirty/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AdvancedBoard/0.png b/front/public/images/large/dreamcraft/item.AdvancedBoard/0.png deleted file mode 100644 index affecd9a74..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AdvancedBoard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AdvancedCokeOvenBrick/0.png b/front/public/images/large/dreamcraft/item.AdvancedCokeOvenBrick/0.png deleted file mode 100644 index c90c22d197..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AdvancedCokeOvenBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AdvancedCokeOvenBrickDust/0.png b/front/public/images/large/dreamcraft/item.AdvancedCokeOvenBrickDust/0.png deleted file mode 100644 index fed0d81082..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AdvancedCokeOvenBrickDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AdvancedProcessorBoard/0.png b/front/public/images/large/dreamcraft/item.AdvancedProcessorBoard/0.png deleted file mode 100644 index 815f8dc87c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AdvancedProcessorBoard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AluminiumBars/0.png b/front/public/images/large/dreamcraft/item.AluminiumBars/0.png deleted file mode 100644 index 38606f5a9d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AluminiumBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AluminiumIronPlate/0.png b/front/public/images/large/dreamcraft/item.AluminiumIronPlate/0.png deleted file mode 100644 index ca2aeb3ac5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AluminiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AluminiumItemCasing/0.png b/front/public/images/large/dreamcraft/item.AluminiumItemCasing/0.png deleted file mode 100644 index 2e4621dde0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AluminiumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AluminoSilicateWool/0.png b/front/public/images/large/dreamcraft/item.AluminoSilicateWool/0.png deleted file mode 100644 index 13005781ed..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AluminoSilicateWool/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AlumiteDust/0.png b/front/public/images/large/dreamcraft/item.AlumiteDust/0.png deleted file mode 100644 index bd80f03085..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AlumiteDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ApprenticeOrb/0.png b/front/public/images/large/dreamcraft/item.ApprenticeOrb/0.png deleted file mode 100644 index cfe53b381f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ApprenticeOrb/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ArcaneShardChip/0.png b/front/public/images/large/dreamcraft/item.ArcaneShardChip/0.png deleted file mode 100644 index 180867b94c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ArcaneShardChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ArcaneShardFragment/0.png b/front/public/images/large/dreamcraft/item.ArcaneShardFragment/0.png deleted file mode 100644 index cc92305f50..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ArcaneShardFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ArcaneSlate/0.png b/front/public/images/large/dreamcraft/item.ArcaneSlate/0.png deleted file mode 100644 index 0ee79e2d27..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ArcaneSlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ArchmageOrb/0.png b/front/public/images/large/dreamcraft/item.ArchmageOrb/0.png deleted file mode 100644 index 565e43e0e6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ArchmageOrb/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ArditePlate/0.png b/front/public/images/large/dreamcraft/item.ArditePlate/0.png deleted file mode 100644 index 425c1774f4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ArditePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ArtificialLeather/0.png b/front/public/images/large/dreamcraft/item.ArtificialLeather/0.png deleted file mode 100644 index d0c360de87..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ArtificialLeather/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.AsteroidsStoneDust/0.png b/front/public/images/large/dreamcraft/item.AsteroidsStoneDust/0.png deleted file mode 100644 index cb367c85be..0000000000 Binary files a/front/public/images/large/dreamcraft/item.AsteroidsStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BarnardaEStoneDust/0.png b/front/public/images/large/dreamcraft/item.BarnardaEStoneDust/0.png deleted file mode 100644 index 2a4b110276..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BarnardaEStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BarnardaFStoneDust/0.png b/front/public/images/large/dreamcraft/item.BarnardaFStoneDust/0.png deleted file mode 100644 index a4ac2c62e2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BarnardaFStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BedrockiumIronPlate/0.png b/front/public/images/large/dreamcraft/item.BedrockiumIronPlate/0.png deleted file mode 100644 index f4a74bc84f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BedrockiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BedrockiumPlate/0.png b/front/public/images/large/dreamcraft/item.BedrockiumPlate/0.png deleted file mode 100644 index 3b4514a16b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BedrockiumPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BioBall/0.png b/front/public/images/large/dreamcraft/item.BioBall/0.png deleted file mode 100644 index e03e449481..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BioBall/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BioCarbonPlate/0.png b/front/public/images/large/dreamcraft/item.BioCarbonPlate/0.png deleted file mode 100644 index 924b991bc1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BioCarbonPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BioChunk/0.png b/front/public/images/large/dreamcraft/item.BioChunk/0.png deleted file mode 100644 index 1ee9852de0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BioChunk/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BioOrganicMesh/0.png b/front/public/images/large/dreamcraft/item.BioOrganicMesh/0.png deleted file mode 100644 index d4b82088ed..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BioOrganicMesh/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BlackPlutoniumCompressedPlate/0.png b/front/public/images/large/dreamcraft/item.BlackPlutoniumCompressedPlate/0.png deleted file mode 100644 index beba9fde89..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BlackPlutoniumCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BlackPlutoniumDensePlate/0.png b/front/public/images/large/dreamcraft/item.BlackPlutoniumDensePlate/0.png deleted file mode 100644 index 4739b1d8d3..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BlackPlutoniumDensePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BlackPlutoniumDust/0.png b/front/public/images/large/dreamcraft/item.BlackPlutoniumDust/0.png deleted file mode 100644 index bb1649fee9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BlackPlutoniumDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BlackPlutoniumPlate/0.png b/front/public/images/large/dreamcraft/item.BlackPlutoniumPlate/0.png deleted file mode 100644 index da72f4e3b9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BlackPlutoniumPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BlankPlatedChip/0.png b/front/public/images/large/dreamcraft/item.BlankPlatedChip/0.png deleted file mode 100644 index 55af3db889..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BlankPlatedChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Blaster/0.png b/front/public/images/large/dreamcraft/item.Blaster/0.png deleted file mode 100644 index 02bf9af657..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Blaster/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BloodVial/0.png b/front/public/images/large/dreamcraft/item.BloodVial/0.png deleted file mode 100644 index c83ecae07e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BloodVial/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BowFletchingCast/0.png b/front/public/images/large/dreamcraft/item.BowFletchingCast/0.png deleted file mode 100644 index 81fd2e189d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BowFletchingCast/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.BowStringCast/0.png b/front/public/images/large/dreamcraft/item.BowStringCast/0.png deleted file mode 100644 index 3ee44a3dfe..0000000000 Binary files a/front/public/images/large/dreamcraft/item.BowStringCast/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CallistoIceColdIngot/0.png b/front/public/images/large/dreamcraft/item.CallistoIceColdIngot/0.png deleted file mode 100644 index 85b5a17684..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CallistoIceColdIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CallistoIceCompressedPlate/0.png b/front/public/images/large/dreamcraft/item.CallistoIceCompressedPlate/0.png deleted file mode 100644 index 8a7f4f5517..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CallistoIceCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CallistoIceDensePlate/0.png b/front/public/images/large/dreamcraft/item.CallistoIceDensePlate/0.png deleted file mode 100644 index c59fe1779c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CallistoIceDensePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CallistoIceDust/0.png b/front/public/images/large/dreamcraft/item.CallistoIceDust/0.png deleted file mode 100644 index 3cdf7e3818..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CallistoIceDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CallistoIceIngot/0.png b/front/public/images/large/dreamcraft/item.CallistoIceIngot/0.png deleted file mode 100644 index 358299aea3..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CallistoIceIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CallistoIcePlate/0.png b/front/public/images/large/dreamcraft/item.CallistoIcePlate/0.png deleted file mode 100644 index a78820a84c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CallistoIcePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CallistoStoneDust/0.png b/front/public/images/large/dreamcraft/item.CallistoStoneDust/0.png deleted file mode 100644 index 73c588b933..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CallistoStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CarbonPartBoots/0.png b/front/public/images/large/dreamcraft/item.CarbonPartBoots/0.png deleted file mode 100644 index 76ffe6e473..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CarbonPartBoots/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CarbonPartChestplate/0.png b/front/public/images/large/dreamcraft/item.CarbonPartChestplate/0.png deleted file mode 100644 index 6f47112105..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CarbonPartChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CarbonPartHelmet/0.png b/front/public/images/large/dreamcraft/item.CarbonPartHelmet/0.png deleted file mode 100644 index 7387676302..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CarbonPartHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CarbonPartHelmetNightVision/0.png b/front/public/images/large/dreamcraft/item.CarbonPartHelmetNightVision/0.png deleted file mode 100644 index 6e114805f8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CarbonPartHelmetNightVision/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CarbonPartLeggings/0.png b/front/public/images/large/dreamcraft/item.CarbonPartLeggings/0.png deleted file mode 100644 index 23aa582db2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CarbonPartLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CarminiteChip/0.png b/front/public/images/large/dreamcraft/item.CarminiteChip/0.png deleted file mode 100644 index 33697fc23b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CarminiteChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CarminiteFragment/0.png b/front/public/images/large/dreamcraft/item.CarminiteFragment/0.png deleted file mode 100644 index 89ee338281..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CarminiteFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CentauriAStoneDust/0.png b/front/public/images/large/dreamcraft/item.CentauriAStoneDust/0.png deleted file mode 100644 index 4fe359d964..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CentauriAStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CentauriASurfaceDust/0.png b/front/public/images/large/dreamcraft/item.CentauriASurfaceDust/0.png deleted file mode 100644 index 22cd21b31b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CentauriASurfaceDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CeresStoneDust/0.png b/front/public/images/large/dreamcraft/item.CeresStoneDust/0.png deleted file mode 100644 index 9450a32807..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CeresStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedCertusQuartzDust/0.png b/front/public/images/large/dreamcraft/item.ChargedCertusQuartzDust/0.png deleted file mode 100644 index 42abe0019c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedCertusQuartzDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedCertusQuartzPlate/0.png b/front/public/images/large/dreamcraft/item.ChargedCertusQuartzPlate/0.png deleted file mode 100644 index 64eecb36a9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedCertusQuartzPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedCertusQuartzRod/0.png b/front/public/images/large/dreamcraft/item.ChargedCertusQuartzRod/0.png deleted file mode 100644 index 045dfde06b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedCertusQuartzRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedMechanistWandCap/0.png b/front/public/images/large/dreamcraft/item.ChargedMechanistWandCap/0.png deleted file mode 100644 index 2eaac68f3f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedMechanistWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedSilverWandCap/0.png b/front/public/images/large/dreamcraft/item.ChargedSilverWandCap/0.png deleted file mode 100644 index 0f382d0817..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedSilverWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedSojournerWandCap/0.png b/front/public/images/large/dreamcraft/item.ChargedSojournerWandCap/0.png deleted file mode 100644 index fef1a5daa4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedSojournerWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedThaumiumWandCap/0.png b/front/public/images/large/dreamcraft/item.ChargedThaumiumWandCap/0.png deleted file mode 100644 index b2a62383df..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedThaumiumWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChargedVoidWandCap/0.png b/front/public/images/large/dreamcraft/item.ChargedVoidWandCap/0.png deleted file mode 100644 index 0339b170e6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChargedVoidWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChromaticLens/0.png b/front/public/images/large/dreamcraft/item.ChromaticLens/0.png deleted file mode 100644 index 097bf697e8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChromaticLens/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChromeBars/0.png b/front/public/images/large/dreamcraft/item.ChromeBars/0.png deleted file mode 100644 index be4c3bc6be..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChromeBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChromeIronPlate/0.png b/front/public/images/large/dreamcraft/item.ChromeIronPlate/0.png deleted file mode 100644 index 903c249b85..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChromeIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ChromeItemCasing/0.png b/front/public/images/large/dreamcraft/item.ChromeItemCasing/0.png deleted file mode 100644 index 248b17fac3..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ChromeItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitEV/0.png b/front/public/images/large/dreamcraft/item.CircuitEV/0.png deleted file mode 100644 index ff7a24b647..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitEV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitHV/0.png b/front/public/images/large/dreamcraft/item.CircuitHV/0.png deleted file mode 100644 index ccc54bb899..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitHV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitIV/0.png b/front/public/images/large/dreamcraft/item.CircuitIV/0.png deleted file mode 100644 index ea773206f6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitLV/0.png b/front/public/images/large/dreamcraft/item.CircuitLV/0.png deleted file mode 100644 index bdcbc7e36f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitLV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitLuV/0.png b/front/public/images/large/dreamcraft/item.CircuitLuV/0.png deleted file mode 100644 index 8f8febf847..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitLuV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitMAX/0.png b/front/public/images/large/dreamcraft/item.CircuitMAX/0.png deleted file mode 100644 index 59d70f18d7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitMAX/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitMV/0.png b/front/public/images/large/dreamcraft/item.CircuitMV/0.png deleted file mode 100644 index 5e8ee41d4b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitMV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitUEV/0.png b/front/public/images/large/dreamcraft/item.CircuitUEV/0.png deleted file mode 100644 index fa6c4fadc7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitUEV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitUHV/0.png b/front/public/images/large/dreamcraft/item.CircuitUHV/0.png deleted file mode 100644 index 888b62ac6c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitUHV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitUIV/0.png b/front/public/images/large/dreamcraft/item.CircuitUIV/0.png deleted file mode 100644 index 595230c92b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitUIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitULV/0.png b/front/public/images/large/dreamcraft/item.CircuitULV/0.png deleted file mode 100644 index 84083c2a75..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitULV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitUMV/0.png b/front/public/images/large/dreamcraft/item.CircuitUMV/0.png deleted file mode 100644 index b14413b612..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitUMV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitUV/0.png b/front/public/images/large/dreamcraft/item.CircuitUV/0.png deleted file mode 100644 index e1f42841bb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitUV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitUXV/0.png b/front/public/images/large/dreamcraft/item.CircuitUXV/0.png deleted file mode 100644 index caeef55855..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitUXV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CircuitZPM/0.png b/front/public/images/large/dreamcraft/item.CircuitZPM/0.png deleted file mode 100644 index 40f148e879..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CircuitZPM/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CobbleStoneRod/0.png b/front/public/images/large/dreamcraft/item.CobbleStoneRod/0.png deleted file mode 100644 index ab792f9256..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CobbleStoneRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinAdventure/0.png b/front/public/images/large/dreamcraft/item.CoinAdventure/0.png deleted file mode 100644 index 95ccf3bad6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinAdventure/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinAdventureI/0.png b/front/public/images/large/dreamcraft/item.CoinAdventureI/0.png deleted file mode 100644 index 50ff9d91b6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinAdventureI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinAdventureII/0.png b/front/public/images/large/dreamcraft/item.CoinAdventureII/0.png deleted file mode 100644 index 975f28e06e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinAdventureII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinAdventureIII/0.png b/front/public/images/large/dreamcraft/item.CoinAdventureIII/0.png deleted file mode 100644 index b3700222e4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinAdventureIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinAdventureIV/0.png b/front/public/images/large/dreamcraft/item.CoinAdventureIV/0.png deleted file mode 100644 index b901a8dde4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinAdventureIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBees/0.png b/front/public/images/large/dreamcraft/item.CoinBees/0.png deleted file mode 100644 index 1732c61f7d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBees/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBeesI/0.png b/front/public/images/large/dreamcraft/item.CoinBeesI/0.png deleted file mode 100644 index 0c273c3526..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBeesI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBeesII/0.png b/front/public/images/large/dreamcraft/item.CoinBeesII/0.png deleted file mode 100644 index 1bd15b79d8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBeesII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBeesIII/0.png b/front/public/images/large/dreamcraft/item.CoinBeesIII/0.png deleted file mode 100644 index db8b60ecde..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBeesIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBeesIV/0.png b/front/public/images/large/dreamcraft/item.CoinBeesIV/0.png deleted file mode 100644 index de6a5c1d22..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBeesIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBlank/0.png b/front/public/images/large/dreamcraft/item.CoinBlank/0.png deleted file mode 100644 index 516bbf3708..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBlank/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBlankI/0.png b/front/public/images/large/dreamcraft/item.CoinBlankI/0.png deleted file mode 100644 index 7b4aa3abd7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBlankI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBlankII/0.png b/front/public/images/large/dreamcraft/item.CoinBlankII/0.png deleted file mode 100644 index 45f7613b6b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBlankII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBlankIII/0.png b/front/public/images/large/dreamcraft/item.CoinBlankIII/0.png deleted file mode 100644 index e8fb28bc01..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBlankIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBlankIV/0.png b/front/public/images/large/dreamcraft/item.CoinBlankIV/0.png deleted file mode 100644 index 68388cd567..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBlankIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBlood/0.png b/front/public/images/large/dreamcraft/item.CoinBlood/0.png deleted file mode 100644 index 1ed9a65df8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBlood/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBloodI/0.png b/front/public/images/large/dreamcraft/item.CoinBloodI/0.png deleted file mode 100644 index 0c841a08f2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBloodI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBloodII/0.png b/front/public/images/large/dreamcraft/item.CoinBloodII/0.png deleted file mode 100644 index 6a57189179..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBloodII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBloodIII/0.png b/front/public/images/large/dreamcraft/item.CoinBloodIII/0.png deleted file mode 100644 index 1658a891a9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBloodIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinBloodIV/0.png b/front/public/images/large/dreamcraft/item.CoinBloodIV/0.png deleted file mode 100644 index 9e61016497..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinBloodIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChemist/0.png b/front/public/images/large/dreamcraft/item.CoinChemist/0.png deleted file mode 100644 index 8311d0204b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChemist/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChemistI/0.png b/front/public/images/large/dreamcraft/item.CoinChemistI/0.png deleted file mode 100644 index b57ce6075b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChemistI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChemistII/0.png b/front/public/images/large/dreamcraft/item.CoinChemistII/0.png deleted file mode 100644 index 5ec93e9f01..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChemistII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChemistIII/0.png b/front/public/images/large/dreamcraft/item.CoinChemistIII/0.png deleted file mode 100644 index 94ed0e7567..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChemistIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChemistIV/0.png b/front/public/images/large/dreamcraft/item.CoinChemistIV/0.png deleted file mode 100644 index b6354dbe8e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChemistIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierI/0.png b/front/public/images/large/dreamcraft/item.CoinChunkloaderTierI/0.png deleted file mode 100644 index 98e53a71c8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierII/0.png b/front/public/images/large/dreamcraft/item.CoinChunkloaderTierII/0.png deleted file mode 100644 index a73a105b6b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierIII/0.png b/front/public/images/large/dreamcraft/item.CoinChunkloaderTierIII/0.png deleted file mode 100644 index c332cf625f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierIV/0.png b/front/public/images/large/dreamcraft/item.CoinChunkloaderTierIV/0.png deleted file mode 100644 index 9dca0931ab..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierV/0.png b/front/public/images/large/dreamcraft/item.CoinChunkloaderTierV/0.png deleted file mode 100644 index 422697aae5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinChunkloaderTierV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinCook/0.png b/front/public/images/large/dreamcraft/item.CoinCook/0.png deleted file mode 100644 index ed8b64d1b5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinCook/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinCookI/0.png b/front/public/images/large/dreamcraft/item.CoinCookI/0.png deleted file mode 100644 index 528842e58f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinCookI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinCookII/0.png b/front/public/images/large/dreamcraft/item.CoinCookII/0.png deleted file mode 100644 index 50ba9b6a9e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinCookII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinCookIII/0.png b/front/public/images/large/dreamcraft/item.CoinCookIII/0.png deleted file mode 100644 index 5c18afddd3..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinCookIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinCookIV/0.png b/front/public/images/large/dreamcraft/item.CoinCookIV/0.png deleted file mode 100644 index f0bd67ca09..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinCookIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinDarkWizard/0.png b/front/public/images/large/dreamcraft/item.CoinDarkWizard/0.png deleted file mode 100644 index b3c3ee8ad9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinDarkWizard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinDarkWizardI/0.png b/front/public/images/large/dreamcraft/item.CoinDarkWizardI/0.png deleted file mode 100644 index 5cebd6ed9f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinDarkWizardI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinDarkWizardII/0.png b/front/public/images/large/dreamcraft/item.CoinDarkWizardII/0.png deleted file mode 100644 index efd5774279..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinDarkWizardII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinDarkWizardIII/0.png b/front/public/images/large/dreamcraft/item.CoinDarkWizardIII/0.png deleted file mode 100644 index c5f58d541c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinDarkWizardIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinDarkWizardIV/0.png b/front/public/images/large/dreamcraft/item.CoinDarkWizardIV/0.png deleted file mode 100644 index ba62e25d99..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinDarkWizardIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinDonation/0.png b/front/public/images/large/dreamcraft/item.CoinDonation/0.png deleted file mode 100644 index ad56d336c1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinDonation/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFarmer/0.png b/front/public/images/large/dreamcraft/item.CoinFarmer/0.png deleted file mode 100644 index 7df1cd6e1b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFarmer/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFarmerI/0.png b/front/public/images/large/dreamcraft/item.CoinFarmerI/0.png deleted file mode 100644 index 6e2d0aad0f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFarmerI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFarmerII/0.png b/front/public/images/large/dreamcraft/item.CoinFarmerII/0.png deleted file mode 100644 index 1ac68fe108..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFarmerII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFarmerIII/0.png b/front/public/images/large/dreamcraft/item.CoinFarmerIII/0.png deleted file mode 100644 index 84e167b21c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFarmerIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFarmerIV/0.png b/front/public/images/large/dreamcraft/item.CoinFarmerIV/0.png deleted file mode 100644 index bdbeb48750..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFarmerIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFlower/0.png b/front/public/images/large/dreamcraft/item.CoinFlower/0.png deleted file mode 100644 index 5918a9958b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFlower/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFlowerI/0.png b/front/public/images/large/dreamcraft/item.CoinFlowerI/0.png deleted file mode 100644 index 816a24b8f5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFlowerI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFlowerII/0.png b/front/public/images/large/dreamcraft/item.CoinFlowerII/0.png deleted file mode 100644 index fd63de36a1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFlowerII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFlowerIII/0.png b/front/public/images/large/dreamcraft/item.CoinFlowerIII/0.png deleted file mode 100644 index a5ee3bdd9b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFlowerIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinFlowerIV/0.png b/front/public/images/large/dreamcraft/item.CoinFlowerIV/0.png deleted file mode 100644 index ba796149ed..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinFlowerIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinForestry/0.png b/front/public/images/large/dreamcraft/item.CoinForestry/0.png deleted file mode 100644 index 2a06d53ffb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinForestry/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinForestryI/0.png b/front/public/images/large/dreamcraft/item.CoinForestryI/0.png deleted file mode 100644 index 61eb0258c4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinForestryI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinForestryII/0.png b/front/public/images/large/dreamcraft/item.CoinForestryII/0.png deleted file mode 100644 index 397c395c52..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinForestryII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinForestryIII/0.png b/front/public/images/large/dreamcraft/item.CoinForestryIII/0.png deleted file mode 100644 index ba0cb014f2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinForestryIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinForestryIV/0.png b/front/public/images/large/dreamcraft/item.CoinForestryIV/0.png deleted file mode 100644 index 0c0fa68112..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinForestryIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSmith/0.png b/front/public/images/large/dreamcraft/item.CoinSmith/0.png deleted file mode 100644 index d040183318..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSmith/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSmithI/0.png b/front/public/images/large/dreamcraft/item.CoinSmithI/0.png deleted file mode 100644 index 6c8669fe34..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSmithI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSmithII/0.png b/front/public/images/large/dreamcraft/item.CoinSmithII/0.png deleted file mode 100644 index 020c956732..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSmithII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSmithIII/0.png b/front/public/images/large/dreamcraft/item.CoinSmithIII/0.png deleted file mode 100644 index 9309795284..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSmithIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSmithIV/0.png b/front/public/images/large/dreamcraft/item.CoinSmithIV/0.png deleted file mode 100644 index adaab56a37..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSmithIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSpace/0.png b/front/public/images/large/dreamcraft/item.CoinSpace/0.png deleted file mode 100644 index 217a16dc6f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSpace/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSpaceI/0.png b/front/public/images/large/dreamcraft/item.CoinSpaceI/0.png deleted file mode 100644 index 905dabf694..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSpaceI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSpaceII/0.png b/front/public/images/large/dreamcraft/item.CoinSpaceII/0.png deleted file mode 100644 index 76b45e4fa0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSpaceII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSpaceIII/0.png b/front/public/images/large/dreamcraft/item.CoinSpaceIII/0.png deleted file mode 100644 index f15b17a74e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSpaceIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSpaceIV/0.png b/front/public/images/large/dreamcraft/item.CoinSpaceIV/0.png deleted file mode 100644 index 9ad01c68f8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSpaceIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSurvivor/0.png b/front/public/images/large/dreamcraft/item.CoinSurvivor/0.png deleted file mode 100644 index 7954e6be03..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSurvivor/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSurvivorI/0.png b/front/public/images/large/dreamcraft/item.CoinSurvivorI/0.png deleted file mode 100644 index 23fc94f65d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSurvivorI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSurvivorII/0.png b/front/public/images/large/dreamcraft/item.CoinSurvivorII/0.png deleted file mode 100644 index 44a9519fb5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSurvivorII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSurvivorIII/0.png b/front/public/images/large/dreamcraft/item.CoinSurvivorIII/0.png deleted file mode 100644 index d0285c9ce2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSurvivorIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinSurvivorIV/0.png b/front/public/images/large/dreamcraft/item.CoinSurvivorIV/0.png deleted file mode 100644 index 95896f581f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinSurvivorIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinTechnician/0.png b/front/public/images/large/dreamcraft/item.CoinTechnician/0.png deleted file mode 100644 index 90059d8d44..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinTechnician/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinTechnicianI/0.png b/front/public/images/large/dreamcraft/item.CoinTechnicianI/0.png deleted file mode 100644 index 2af839da8f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinTechnicianI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinTechnicianII/0.png b/front/public/images/large/dreamcraft/item.CoinTechnicianII/0.png deleted file mode 100644 index 56a480a2ac..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinTechnicianII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinTechnicianIII/0.png b/front/public/images/large/dreamcraft/item.CoinTechnicianIII/0.png deleted file mode 100644 index 53ea9a7b66..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinTechnicianIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinTechnicianIV/0.png b/front/public/images/large/dreamcraft/item.CoinTechnicianIV/0.png deleted file mode 100644 index 47dbd0fd8a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinTechnicianIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinWitch/0.png b/front/public/images/large/dreamcraft/item.CoinWitch/0.png deleted file mode 100644 index 69248f7afd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinWitch/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinWitchI/0.png b/front/public/images/large/dreamcraft/item.CoinWitchI/0.png deleted file mode 100644 index 87a726f18c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinWitchI/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinWitchII/0.png b/front/public/images/large/dreamcraft/item.CoinWitchII/0.png deleted file mode 100644 index 88e2982565..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinWitchII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinWitchIII/0.png b/front/public/images/large/dreamcraft/item.CoinWitchIII/0.png deleted file mode 100644 index dadd9beaf7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinWitchIII/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CoinWitchIV/0.png b/front/public/images/large/dreamcraft/item.CoinWitchIV/0.png deleted file mode 100644 index 139d76be8a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CoinWitchIV/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CokeOvenBrick/0.png b/front/public/images/large/dreamcraft/item.CokeOvenBrick/0.png deleted file mode 100644 index 08ffbac5e6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CokeOvenBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CokeOvenBrickDust/0.png b/front/public/images/large/dreamcraft/item.CokeOvenBrickDust/0.png deleted file mode 100644 index a852edc358..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CokeOvenBrickDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CompressedBioBall/0.png b/front/public/images/large/dreamcraft/item.CompressedBioBall/0.png deleted file mode 100644 index 3dfc2f7ff5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CompressedBioBall/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ConductiveIronBars/0.png b/front/public/images/large/dreamcraft/item.ConductiveIronBars/0.png deleted file mode 100644 index 1076322a9c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ConductiveIronBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CopperDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.CopperDualCompressedPlates/0.png deleted file mode 100644 index 4ba4bef5dc..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CopperDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CopperWandCap/0.png b/front/public/images/large/dreamcraft/item.CopperWandCap/0.png deleted file mode 100644 index 00d25d4ad4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CopperWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.CrimsonStainedClothCap/0.png b/front/public/images/large/dreamcraft/item.CrimsonStainedClothCap/0.png deleted file mode 100644 index 51346c42ae..0000000000 Binary files a/front/public/images/large/dreamcraft/item.CrimsonStainedClothCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.DeimosStoneDust/0.png b/front/public/images/large/dreamcraft/item.DeimosStoneDust/0.png deleted file mode 100644 index 9573600f1b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.DeimosStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.DeshDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.DeshDualCompressedPlates/0.png deleted file mode 100644 index 6040b3f9b9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.DeshDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.DiamondCoreChip/0.png b/front/public/images/large/dreamcraft/item.DiamondCoreChip/0.png deleted file mode 100644 index 90c8c8f9d4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.DiamondCoreChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.DiamondDrillTip/0.png b/front/public/images/large/dreamcraft/item.DiamondDrillTip/0.png deleted file mode 100644 index dd8b6f0b45..0000000000 Binary files a/front/public/images/large/dreamcraft/item.DiamondDrillTip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.DiamondFluidCoreChip/0.png b/front/public/images/large/dreamcraft/item.DiamondFluidCoreChip/0.png deleted file mode 100644 index 513b704a23..0000000000 Binary files a/front/public/images/large/dreamcraft/item.DiamondFluidCoreChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Display/0.png b/front/public/images/large/dreamcraft/item.Display/0.png deleted file mode 100644 index 4d22772e9d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Display/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.DraconiumEgg/0.png b/front/public/images/large/dreamcraft/item.DraconiumEgg/0.png deleted file mode 100644 index 03013eb145..0000000000 Binary files a/front/public/images/large/dreamcraft/item.DraconiumEgg/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EMT/0.png b/front/public/images/large/dreamcraft/item.EMT/0.png deleted file mode 100644 index 661fab2f3f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EMT/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EctoplasmaChip/0.png b/front/public/images/large/dreamcraft/item.EctoplasmaChip/0.png deleted file mode 100644 index 8414d63f89..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EctoplasmaChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EctoplasmaFragment/0.png b/front/public/images/large/dreamcraft/item.EctoplasmaFragment/0.png deleted file mode 100644 index 533f57af20..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EctoplasmaFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EdibleSalt/0.png b/front/public/images/large/dreamcraft/item.EdibleSalt/0.png deleted file mode 100644 index 977519a2fb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EdibleSalt/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ElectricBoatHull/0.png b/front/public/images/large/dreamcraft/item.ElectricBoatHull/0.png deleted file mode 100644 index 3f8d88a3c4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ElectricBoatHull/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ElectricalSteelBars/0.png b/front/public/images/large/dreamcraft/item.ElectricalSteelBars/0.png deleted file mode 100644 index 657af2b5e7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ElectricalSteelBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ElectrotineWire/0.png b/front/public/images/large/dreamcraft/item.ElectrotineWire/0.png deleted file mode 100644 index 5fa382e1c8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ElectrotineWire/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EmeraldAdvancedCoreChip/0.png b/front/public/images/large/dreamcraft/item.EmeraldAdvancedCoreChip/0.png deleted file mode 100644 index e282ca4703..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EmeraldAdvancedCoreChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EmeraldAdvancedFluidCoreChip/0.png b/front/public/images/large/dreamcraft/item.EmeraldAdvancedFluidCoreChip/0.png deleted file mode 100644 index 74c995e524..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EmeraldAdvancedFluidCoreChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EmeraldHighAdvancedCoreChip/0.png b/front/public/images/large/dreamcraft/item.EmeraldHighAdvancedCoreChip/0.png deleted file mode 100644 index efea472214..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EmeraldHighAdvancedCoreChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Empty1080SpCell/0.png b/front/public/images/large/dreamcraft/item.Empty1080SpCell/0.png deleted file mode 100644 index f431705f81..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Empty1080SpCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Empty180SpCell/0.png b/front/public/images/large/dreamcraft/item.Empty180SpCell/0.png deleted file mode 100644 index b7568b69cb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Empty180SpCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Empty360SpCell/0.png b/front/public/images/large/dreamcraft/item.Empty360SpCell/0.png deleted file mode 100644 index 3ebc53f9a4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Empty360SpCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Empty540SpCell/0.png b/front/public/images/large/dreamcraft/item.Empty540SpCell/0.png deleted file mode 100644 index 962d23591e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Empty540SpCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnceladusIceDust/0.png b/front/public/images/large/dreamcraft/item.EnceladusIceDust/0.png deleted file mode 100644 index 84e40cc871..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnceladusIceDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnceladusStoneDust/0.png b/front/public/images/large/dreamcraft/item.EnceladusStoneDust/0.png deleted file mode 100644 index 8a669a51c9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnceladusStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnchantedClothCap/0.png b/front/public/images/large/dreamcraft/item.EnchantedClothCap/0.png deleted file mode 100644 index 78f1845227..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnchantedClothCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnderEgg/0.png b/front/public/images/large/dreamcraft/item.EnderEgg/0.png deleted file mode 100644 index 057c1d04a0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnderEgg/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnderiumBars/0.png b/front/public/images/large/dreamcraft/item.EnderiumBars/0.png deleted file mode 100644 index 8cb562244a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnderiumBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnderiumBaseBars/0.png b/front/public/images/large/dreamcraft/item.EnderiumBaseBars/0.png deleted file mode 100644 index 0e2435a531..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnderiumBaseBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnergeticAlloyBars/0.png b/front/public/images/large/dreamcraft/item.EnergeticAlloyBars/0.png deleted file mode 100644 index 8b0b50e4f6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnergeticAlloyBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineCore/0.png b/front/public/images/large/dreamcraft/item.EngineCore/0.png deleted file mode 100644 index 50f233f278..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineeringProcessorEssentiaPulsatingCore/0.png b/front/public/images/large/dreamcraft/item.EngineeringProcessorEssentiaPulsatingCore/0.png deleted file mode 100644 index 3e9098fe4a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineeringProcessorEssentiaPulsatingCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineeringProcessorFluidDiamondCore/0.png b/front/public/images/large/dreamcraft/item.EngineeringProcessorFluidDiamondCore/0.png deleted file mode 100644 index 47ec3d8906..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineeringProcessorFluidDiamondCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineeringProcessorFluidEmeraldCore/0.png b/front/public/images/large/dreamcraft/item.EngineeringProcessorFluidEmeraldCore/0.png deleted file mode 100644 index cc79f242c0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineeringProcessorFluidEmeraldCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineeringProcessorItemAdvEmeraldCore/0.png b/front/public/images/large/dreamcraft/item.EngineeringProcessorItemAdvEmeraldCore/0.png deleted file mode 100644 index 71a702b2a7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineeringProcessorItemAdvEmeraldCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineeringProcessorItemDiamondCore/0.png b/front/public/images/large/dreamcraft/item.EngineeringProcessorItemDiamondCore/0.png deleted file mode 100644 index fc7f252170..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineeringProcessorItemDiamondCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineeringProcessorItemEmeraldCore/0.png b/front/public/images/large/dreamcraft/item.EngineeringProcessorItemEmeraldCore/0.png deleted file mode 100644 index 9145ca0f8a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineeringProcessorItemEmeraldCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngineeringProcessorSpatialPulsatingCore/0.png b/front/public/images/large/dreamcraft/item.EngineeringProcessorSpatialPulsatingCore/0.png deleted file mode 100644 index 5433ad5299..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngineeringProcessorSpatialPulsatingCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngravedDiamondCrystalChip/0.png b/front/public/images/large/dreamcraft/item.EngravedDiamondCrystalChip/0.png deleted file mode 100644 index d5a8d14655..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngravedDiamondCrystalChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngravedEnergyChip/0.png b/front/public/images/large/dreamcraft/item.EngravedEnergyChip/0.png deleted file mode 100644 index 30a993bdd4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngravedEnergyChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngravedGoldChip/0.png b/front/public/images/large/dreamcraft/item.EngravedGoldChip/0.png deleted file mode 100644 index ca2ae46a0a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngravedGoldChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngravedManyullynCrystalChip/0.png b/front/public/images/large/dreamcraft/item.EngravedManyullynCrystalChip/0.png deleted file mode 100644 index 75a8601433..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngravedManyullynCrystalChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EngravedQuantumChip/0.png b/front/public/images/large/dreamcraft/item.EngravedQuantumChip/0.png deleted file mode 100644 index 88154563bf..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EngravedQuantumChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnrichedNaquadriaNeutroniumSunnariumAlloy/0.png b/front/public/images/large/dreamcraft/item.EnrichedNaquadriaNeutroniumSunnariumAlloy/0.png deleted file mode 100644 index a3dc6caa18..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnrichedNaquadriaNeutroniumSunnariumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnrichedNaquadriaSunnariumAlloy/0.png b/front/public/images/large/dreamcraft/item.EnrichedNaquadriaSunnariumAlloy/0.png deleted file mode 100644 index 669ee28c4a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnrichedNaquadriaSunnariumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnrichedXSunnariumAlloy/0.png b/front/public/images/large/dreamcraft/item.EnrichedXSunnariumAlloy/0.png deleted file mode 100644 index fe55d34065..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnrichedXSunnariumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EnvironmentalCircuit/0.png b/front/public/images/large/dreamcraft/item.EnvironmentalCircuit/0.png deleted file mode 100644 index f0f58e6144..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EnvironmentalCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EssentiaCircuit/0.png b/front/public/images/large/dreamcraft/item.EssentiaCircuit/0.png deleted file mode 100644 index 20fc285f2e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EssentiaCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EtchedInsaneVoltageWiring/0.png b/front/public/images/large/dreamcraft/item.EtchedInsaneVoltageWiring/0.png deleted file mode 100644 index 1c93311454..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EtchedInsaneVoltageWiring/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EtchedLowVoltageWiring/0.png b/front/public/images/large/dreamcraft/item.EtchedLowVoltageWiring/0.png deleted file mode 100644 index 7b4e8fca3e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EtchedLowVoltageWiring/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EtchedLudicrousVoltageWiring/0.png b/front/public/images/large/dreamcraft/item.EtchedLudicrousVoltageWiring/0.png deleted file mode 100644 index d8b8dfbe95..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EtchedLudicrousVoltageWiring/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EuropaIceDust/0.png b/front/public/images/large/dreamcraft/item.EuropaIceDust/0.png deleted file mode 100644 index 7e9a2eb42a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EuropaIceDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.EuropaStoneDust/0.png b/front/public/images/large/dreamcraft/item.EuropaStoneDust/0.png deleted file mode 100644 index 638628aa77..0000000000 Binary files a/front/public/images/large/dreamcraft/item.EuropaStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ExtraLargeFuelCanister/0.png b/front/public/images/large/dreamcraft/item.ExtraLargeFuelCanister/0.png deleted file mode 100644 index 1e8c1c3341..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ExtraLargeFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ExtruderShapeBoat/0.png b/front/public/images/large/dreamcraft/item.ExtruderShapeBoat/0.png deleted file mode 100644 index 57ff6ce81a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ExtruderShapeBoat/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.FieryBloodDrop/0.png b/front/public/images/large/dreamcraft/item.FieryBloodDrop/0.png deleted file mode 100644 index 735752c91a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.FieryBloodDrop/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.GanymedeStoneDust/0.png b/front/public/images/large/dreamcraft/item.GanymedeStoneDust/0.png deleted file mode 100644 index adc91d46cd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.GanymedeStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.GeneticCircuit/0.png b/front/public/images/large/dreamcraft/item.GeneticCircuit/0.png deleted file mode 100644 index dbfb699916..0000000000 Binary files a/front/public/images/large/dreamcraft/item.GeneticCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.GlowingMarshmallow/0.png b/front/public/images/large/dreamcraft/item.GlowingMarshmallow/0.png deleted file mode 100644 index e8c8dcc4ce..0000000000 Binary files a/front/public/images/large/dreamcraft/item.GlowingMarshmallow/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.GoldCoreChip/0.png b/front/public/images/large/dreamcraft/item.GoldCoreChip/0.png deleted file mode 100644 index 6aaccba579..0000000000 Binary files a/front/public/images/large/dreamcraft/item.GoldCoreChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.GoldWandCap/0.png b/front/public/images/large/dreamcraft/item.GoldWandCap/0.png deleted file mode 100644 index edb0ab99e7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.GoldWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HaumeaStoneDust/0.png b/front/public/images/large/dreamcraft/item.HaumeaStoneDust/0.png deleted file mode 100644 index a1fca286ab..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HaumeaStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT4/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT4/0.png deleted file mode 100644 index 8a278c8473..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT4/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT5/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT5/0.png deleted file mode 100644 index 6b10b0c0f1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT5/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT6/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT6/0.png deleted file mode 100644 index 4533ff1b85..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT6/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT7/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT7/0.png deleted file mode 100644 index 0f28ac6d7d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT7/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT8/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT8/0.png deleted file mode 100644 index b4e770d722..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT8/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT9/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT9/0.png deleted file mode 100644 index 46e564b685..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyAlloyIngotT9/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyNoseConeTier3/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyNoseConeTier3/0.png deleted file mode 100644 index e13381600c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyNoseConeTier3/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyNoseConeTier4/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyNoseConeTier4/0.png deleted file mode 100644 index 0641e8f8bf..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyNoseConeTier4/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier4/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier4/0.png deleted file mode 100644 index 7227ab5d7e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier4/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier5/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier5/0.png deleted file mode 100644 index bb7f2496fb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier5/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier6/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier6/0.png deleted file mode 100644 index bd0c234964..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier6/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier7/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier7/0.png deleted file mode 100644 index 488c232c6c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier7/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier8/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier8/0.png deleted file mode 100644 index 25b799f4fd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyPlateTier8/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyRocketEngineTier3/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyRocketEngineTier3/0.png deleted file mode 100644 index a97590df54..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyRocketEngineTier3/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyRocketEngineTier4/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyRocketEngineTier4/0.png deleted file mode 100644 index 7ee0a92ee5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyRocketEngineTier4/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyRocketFinsTier3/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyRocketFinsTier3/0.png deleted file mode 100644 index 4fc6e0ed28..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyRocketFinsTier3/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HeavyDutyRocketFinsTier4/0.png b/front/public/images/large/dreamcraft/item.HeavyDutyRocketFinsTier4/0.png deleted file mode 100644 index 2c4f371666..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HeavyDutyRocketFinsTier4/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HighEnergyCircuitParts/0.png b/front/public/images/large/dreamcraft/item.HighEnergyCircuitParts/0.png deleted file mode 100644 index 69f4c041cb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HighEnergyCircuitParts/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HighEnergyFlowCircuit/0.png b/front/public/images/large/dreamcraft/item.HighEnergyFlowCircuit/0.png deleted file mode 100644 index a16bc07594..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HighEnergyFlowCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.HotNetherrackBrick/0.png b/front/public/images/large/dreamcraft/item.HotNetherrackBrick/0.png deleted file mode 100644 index 0ad02d1c73..0000000000 Binary files a/front/public/images/large/dreamcraft/item.HotNetherrackBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IceCompressedPlate/0.png b/front/public/images/large/dreamcraft/item.IceCompressedPlate/0.png deleted file mode 100644 index bfcdefdcda..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IceCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IceDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.IceDualCompressedPlates/0.png deleted file mode 100644 index d3efc745d9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IceDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IchoriumCap/0.png b/front/public/images/large/dreamcraft/item.IchoriumCap/0.png deleted file mode 100644 index 8269f46547..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IchoriumCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IndustryFrame/0.png b/front/public/images/large/dreamcraft/item.IndustryFrame/0.png deleted file mode 100644 index c76d1140f8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IndustryFrame/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.InfernalBrick/0.png b/front/public/images/large/dreamcraft/item.InfernalBrick/0.png deleted file mode 100644 index f01d082aeb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.InfernalBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IoStoneDust/0.png b/front/public/images/large/dreamcraft/item.IoStoneDust/0.png deleted file mode 100644 index b785effeef..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IoStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IridiumAlloyItemCasing/0.png b/front/public/images/large/dreamcraft/item.IridiumAlloyItemCasing/0.png deleted file mode 100644 index bd7b9f5fb9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IridiumAlloyItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IridiumBars/0.png b/front/public/images/large/dreamcraft/item.IridiumBars/0.png deleted file mode 100644 index ddbbf24bef..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IridiumBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IridiumItemCasing/0.png b/front/public/images/large/dreamcraft/item.IridiumItemCasing/0.png deleted file mode 100644 index 8adc4013e1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IridiumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IronDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.IronDualCompressedPlates/0.png deleted file mode 100644 index b84d3bfe62..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IronDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IronWandCap/0.png b/front/public/images/large/dreamcraft/item.IronWandCap/0.png deleted file mode 100644 index a65d948d16..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IronWandCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedAluminiumPlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedAluminiumPlate/0.png deleted file mode 100644 index 1a614788f0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedAluminiumPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedBedrockiumPlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedBedrockiumPlate/0.png deleted file mode 100644 index 69a12ba068..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedBedrockiumPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedChromePlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedChromePlate/0.png deleted file mode 100644 index 73d28326d1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedChromePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedNaquadriaPlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedNaquadriaPlate/0.png deleted file mode 100644 index 3d316c2573..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedNaquadriaPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedNeutroniumPlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedNeutroniumPlate/0.png deleted file mode 100644 index ac87e9fd52..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedNeutroniumPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedTitaniumPlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedTitaniumPlate/0.png deleted file mode 100644 index ce34e7ab48..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedTitaniumPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedTungstenPlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedTungstenPlate/0.png deleted file mode 100644 index aba941b8f2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedTungstenPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.IrradiantReinforcedTungstenSteelPlate/0.png b/front/public/images/large/dreamcraft/item.IrradiantReinforcedTungstenSteelPlate/0.png deleted file mode 100644 index 9e626119d1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.IrradiantReinforcedTungstenSteelPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LapotronDust/0.png b/front/public/images/large/dreamcraft/item.LapotronDust/0.png deleted file mode 100644 index 6946eb5f79..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LapotronDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LargeFuelCanister/0.png b/front/public/images/large/dreamcraft/item.LargeFuelCanister/0.png deleted file mode 100644 index 0ccb371bd4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LargeFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LaserEmitter/0.png b/front/public/images/large/dreamcraft/item.LaserEmitter/0.png deleted file mode 100644 index 8e24763c18..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LaserEmitter/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LeadNickelPlate/0.png b/front/public/images/large/dreamcraft/item.LeadNickelPlate/0.png deleted file mode 100644 index ba9c4557e5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LeadNickelPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LeadOriharukonPlate/0.png b/front/public/images/large/dreamcraft/item.LeadOriharukonPlate/0.png deleted file mode 100644 index f73a82c18d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LeadOriharukonPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LedoxColdIngot/0.png b/front/public/images/large/dreamcraft/item.LedoxColdIngot/0.png deleted file mode 100644 index 84f632a4bc..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LedoxColdIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LedoxCompressedPlate/0.png b/front/public/images/large/dreamcraft/item.LedoxCompressedPlate/0.png deleted file mode 100644 index 338a235e2b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LedoxCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LedoxDensePlate/0.png b/front/public/images/large/dreamcraft/item.LedoxDensePlate/0.png deleted file mode 100644 index 5b6f033d96..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LedoxDensePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LedoxDust/0.png b/front/public/images/large/dreamcraft/item.LedoxDust/0.png deleted file mode 100644 index be97ef7a85..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LedoxDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LedoxIngot/0.png b/front/public/images/large/dreamcraft/item.LedoxIngot/0.png deleted file mode 100644 index 1b9dff02b4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LedoxIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LedoxPlate/0.png b/front/public/images/large/dreamcraft/item.LedoxPlate/0.png deleted file mode 100644 index de6f15b4c1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LedoxPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LichBone/0.png b/front/public/images/large/dreamcraft/item.LichBone/0.png deleted file mode 100644 index e473655773..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LichBone/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LichBoneChip/0.png b/front/public/images/large/dreamcraft/item.LichBoneChip/0.png deleted file mode 100644 index c718d30095..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LichBoneChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LichBoneFragment/0.png b/front/public/images/large/dreamcraft/item.LichBoneFragment/0.png deleted file mode 100644 index 5db4859d57..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LichBoneFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LightAxeHead/0.png b/front/public/images/large/dreamcraft/item.LightAxeHead/0.png deleted file mode 100644 index b4b308426a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LightAxeHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LightBinding/0.png b/front/public/images/large/dreamcraft/item.LightBinding/0.png deleted file mode 100644 index eab558110e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LightBinding/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LightPickaxeHead/0.png b/front/public/images/large/dreamcraft/item.LightPickaxeHead/0.png deleted file mode 100644 index 800e7fda6b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LightPickaxeHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LightShaft/0.png b/front/public/images/large/dreamcraft/item.LightShaft/0.png deleted file mode 100644 index ac41c5246b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LightShaft/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LightSwordBlade/0.png b/front/public/images/large/dreamcraft/item.LightSwordBlade/0.png deleted file mode 100644 index 3a0e40585c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LightSwordBlade/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LogicProcessorItemGoldCore/0.png b/front/public/images/large/dreamcraft/item.LogicProcessorItemGoldCore/0.png deleted file mode 100644 index 4ad7b2bb48..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LogicProcessorItemGoldCore/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LongObsidianRod/0.png b/front/public/images/large/dreamcraft/item.LongObsidianRod/0.png deleted file mode 100644 index 60c749b141..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LongObsidianRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.LongStoneRod/0.png b/front/public/images/large/dreamcraft/item.LongStoneRod/0.png deleted file mode 100644 index 1d6bc66a95..0000000000 Binary files a/front/public/images/large/dreamcraft/item.LongStoneRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MaceratedPlantmass/0.png b/front/public/images/large/dreamcraft/item.MaceratedPlantmass/0.png deleted file mode 100644 index b818d254bf..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MaceratedPlantmass/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MagicianOrb/0.png b/front/public/images/large/dreamcraft/item.MagicianOrb/0.png deleted file mode 100644 index 3bf37938b7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MagicianOrb/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MakeMakeStoneDust/0.png b/front/public/images/large/dreamcraft/item.MakeMakeStoneDust/0.png deleted file mode 100644 index 8bfd4528a5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MakeMakeStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MalformedSlush/0.png b/front/public/images/large/dreamcraft/item.MalformedSlush/0.png deleted file mode 100644 index 52802843b0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MalformedSlush/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ManyullynCrystal/0.png b/front/public/images/large/dreamcraft/item.ManyullynCrystal/0.png deleted file mode 100644 index 25c04a937b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ManyullynCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ManyullynPlate/0.png b/front/public/images/large/dreamcraft/item.ManyullynPlate/0.png deleted file mode 100644 index 12c00c42cd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ManyullynPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MarsStoneDust/0.png b/front/public/images/large/dreamcraft/item.MarsStoneDust/0.png deleted file mode 100644 index 525fdfb389..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MarsStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Marshmallow/0.png b/front/public/images/large/dreamcraft/item.Marshmallow/0.png deleted file mode 100644 index d91c9a81d1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Marshmallow/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MarshmallowForm/0.png b/front/public/images/large/dreamcraft/item.MarshmallowForm/0.png deleted file mode 100644 index 1013e0160a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MarshmallowForm/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MarshmallowFormMold/0.png b/front/public/images/large/dreamcraft/item.MarshmallowFormMold/0.png deleted file mode 100644 index 98812cf1f1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MarshmallowFormMold/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MasterOrb/0.png b/front/public/images/large/dreamcraft/item.MasterOrb/0.png deleted file mode 100644 index 42317dcbb4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MasterOrb/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MedalBuilder/0.png b/front/public/images/large/dreamcraft/item.MedalBuilder/0.png deleted file mode 100644 index 18f6cf0305..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MedalBuilder/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MedalDerp/0.png b/front/public/images/large/dreamcraft/item.MedalDerp/0.png deleted file mode 100644 index b8b1e3ace0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MedalDerp/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MedalEngineer/0.png b/front/public/images/large/dreamcraft/item.MedalEngineer/0.png deleted file mode 100644 index 19611d43fd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MedalEngineer/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MedalGTExplosion/0.png b/front/public/images/large/dreamcraft/item.MedalGTExplosion/0.png deleted file mode 100644 index 6e6e8a229f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MedalGTExplosion/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MedalWarp/0.png b/front/public/images/large/dreamcraft/item.MedalWarp/0.png deleted file mode 100644 index b2fa5457e0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MedalWarp/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MediumFuelCanister/0.png b/front/public/images/large/dreamcraft/item.MediumFuelCanister/0.png deleted file mode 100644 index 99a5aa43c0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MediumFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MercuryCoreDust/0.png b/front/public/images/large/dreamcraft/item.MercuryCoreDust/0.png deleted file mode 100644 index f2518033b6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MercuryCoreDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MercuryStoneDust/0.png b/front/public/images/large/dreamcraft/item.MercuryStoneDust/0.png deleted file mode 100644 index 989318dced..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MercuryStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MeteoricIronDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.MeteoricIronDualCompressedPlates/0.png deleted file mode 100644 index ad99f33ff7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MeteoricIronDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MeteoricIronString/0.png b/front/public/images/large/dreamcraft/item.MeteoricIronString/0.png deleted file mode 100644 index c78f41d42e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MeteoricIronString/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MicaBasedPulp/0.png b/front/public/images/large/dreamcraft/item.MicaBasedPulp/0.png deleted file mode 100644 index 19156f4e0d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MicaBasedPulp/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MicaBasedSheet/0.png b/front/public/images/large/dreamcraft/item.MicaBasedSheet/0.png deleted file mode 100644 index 60791b68cf..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MicaBasedSheet/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MicaInsulatorFoil/0.png b/front/public/images/large/dreamcraft/item.MicaInsulatorFoil/0.png deleted file mode 100644 index fd887aba83..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MicaInsulatorFoil/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MicaInsulatorSheet/0.png b/front/public/images/large/dreamcraft/item.MicaInsulatorSheet/0.png deleted file mode 100644 index efa0549efa..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MicaInsulatorSheet/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MirandaStoneDust/0.png b/front/public/images/large/dreamcraft/item.MirandaStoneDust/0.png deleted file mode 100644 index 1518c47eb3..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MirandaStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldBoots/0.png b/front/public/images/large/dreamcraft/item.MoldBoots/0.png deleted file mode 100644 index 10375a8b33..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldBoots/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldChestplate/0.png b/front/public/images/large/dreamcraft/item.MoldChestplate/0.png deleted file mode 100644 index 99994478ce..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormAnvil/0.png b/front/public/images/large/dreamcraft/item.MoldFormAnvil/0.png deleted file mode 100644 index 22917c03cb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormAnvil/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormArrowHead/0.png b/front/public/images/large/dreamcraft/item.MoldFormArrowHead/0.png deleted file mode 100644 index 04807d9a31..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormArrowHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBaguette/0.png b/front/public/images/large/dreamcraft/item.MoldFormBaguette/0.png deleted file mode 100644 index 17afa8da93..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBaguette/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBall/0.png b/front/public/images/large/dreamcraft/item.MoldFormBall/0.png deleted file mode 100644 index 0f7cee4b6f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBall/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBlock/0.png b/front/public/images/large/dreamcraft/item.MoldFormBlock/0.png deleted file mode 100644 index 92988e794e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBlock/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBolt/0.png b/front/public/images/large/dreamcraft/item.MoldFormBolt/0.png deleted file mode 100644 index bb38f13c53..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBolt/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBoots/0.png b/front/public/images/large/dreamcraft/item.MoldFormBoots/0.png deleted file mode 100644 index 1f0dd1fad6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBoots/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBottle/0.png b/front/public/images/large/dreamcraft/item.MoldFormBottle/0.png deleted file mode 100644 index 53f19780dd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBottle/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBread/0.png b/front/public/images/large/dreamcraft/item.MoldFormBread/0.png deleted file mode 100644 index f03d6bdfd2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBread/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormBuns/0.png b/front/public/images/large/dreamcraft/item.MoldFormBuns/0.png deleted file mode 100644 index d90b82a602..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormBuns/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormCasing/0.png b/front/public/images/large/dreamcraft/item.MoldFormCasing/0.png deleted file mode 100644 index 968266f884..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormChestplate/0.png b/front/public/images/large/dreamcraft/item.MoldFormChestplate/0.png deleted file mode 100644 index 620016a247..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormCoinage/0.png b/front/public/images/large/dreamcraft/item.MoldFormCoinage/0.png deleted file mode 100644 index 5ff7ae5b05..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormCoinage/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormCylinder/0.png b/front/public/images/large/dreamcraft/item.MoldFormCylinder/0.png deleted file mode 100644 index eef42b689c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormCylinder/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormDrillHead/0.png b/front/public/images/large/dreamcraft/item.MoldFormDrillHead/0.png deleted file mode 100644 index af9d82138a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormDrillHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormGear/0.png b/front/public/images/large/dreamcraft/item.MoldFormGear/0.png deleted file mode 100644 index 8ac4ae9f56..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormGear/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormHelmet/0.png b/front/public/images/large/dreamcraft/item.MoldFormHelmet/0.png deleted file mode 100644 index 5e09d1a1a6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormIngot/0.png b/front/public/images/large/dreamcraft/item.MoldFormIngot/0.png deleted file mode 100644 index 886ef0c548..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormLeggings/0.png b/front/public/images/large/dreamcraft/item.MoldFormLeggings/0.png deleted file mode 100644 index 0aa2bee9a0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormName/0.png b/front/public/images/large/dreamcraft/item.MoldFormName/0.png deleted file mode 100644 index 641f3ae97d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormName/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormNuggets/0.png b/front/public/images/large/dreamcraft/item.MoldFormNuggets/0.png deleted file mode 100644 index 9912d032da..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormNuggets/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormPipeHuge/0.png b/front/public/images/large/dreamcraft/item.MoldFormPipeHuge/0.png deleted file mode 100644 index 81b259171e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormPipeHuge/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormPipeLarge/0.png b/front/public/images/large/dreamcraft/item.MoldFormPipeLarge/0.png deleted file mode 100644 index 0e1f3e3545..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormPipeLarge/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormPipeMedium/0.png b/front/public/images/large/dreamcraft/item.MoldFormPipeMedium/0.png deleted file mode 100644 index 8b1082c7a5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormPipeMedium/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormPipeSmall/0.png b/front/public/images/large/dreamcraft/item.MoldFormPipeSmall/0.png deleted file mode 100644 index 7121e7e6f2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormPipeSmall/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormPipeTiny/0.png b/front/public/images/large/dreamcraft/item.MoldFormPipeTiny/0.png deleted file mode 100644 index 50aede6850..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormPipeTiny/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormPlate/0.png b/front/public/images/large/dreamcraft/item.MoldFormPlate/0.png deleted file mode 100644 index 3e152e8c28..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormRing/0.png b/front/public/images/large/dreamcraft/item.MoldFormRing/0.png deleted file mode 100644 index 4a064f4770..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormRing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormRotor/0.png b/front/public/images/large/dreamcraft/item.MoldFormRotor/0.png deleted file mode 100644 index 215324f74f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormRotor/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormRound/0.png b/front/public/images/large/dreamcraft/item.MoldFormRound/0.png deleted file mode 100644 index 054e941ae4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormRound/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormScrew/0.png b/front/public/images/large/dreamcraft/item.MoldFormScrew/0.png deleted file mode 100644 index d9a9cdd66f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormScrew/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormSmallGear/0.png b/front/public/images/large/dreamcraft/item.MoldFormSmallGear/0.png deleted file mode 100644 index a211bdee8a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormSmallGear/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormStick/0.png b/front/public/images/large/dreamcraft/item.MoldFormStick/0.png deleted file mode 100644 index 31cfcafa22..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormStick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormStickLong/0.png b/front/public/images/large/dreamcraft/item.MoldFormStickLong/0.png deleted file mode 100644 index 87c6eeddd5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormStickLong/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldFormTurbineBlade/0.png b/front/public/images/large/dreamcraft/item.MoldFormTurbineBlade/0.png deleted file mode 100644 index fb68fe56d0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldFormTurbineBlade/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldHelmet/0.png b/front/public/images/large/dreamcraft/item.MoldHelmet/0.png deleted file mode 100644 index 810e1c1df7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoldLeggings/0.png b/front/public/images/large/dreamcraft/item.MoldLeggings/0.png deleted file mode 100644 index 4c3fb1157e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoldLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MoonStoneDust/0.png b/front/public/images/large/dreamcraft/item.MoonStoneDust/0.png deleted file mode 100644 index bb9d75adeb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MoonStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MushroomPowder/0.png b/front/public/images/large/dreamcraft/item.MushroomPowder/0.png deleted file mode 100644 index d7a47f3480..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MushroomPowder/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MutatedEgg/0.png b/front/public/images/large/dreamcraft/item.MutatedEgg/0.png deleted file mode 100644 index ad4e5a6abe..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MutatedEgg/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystal/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystal/0.png deleted file mode 100644 index 3df94f1a68..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalColdIngot/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalColdIngot/0.png deleted file mode 100644 index 37c662a880..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalColdIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalCompressedPlate/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalCompressedPlate/0.png deleted file mode 100644 index 0f9780c12e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalDensePlate/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalDensePlate/0.png deleted file mode 100644 index 1341fbadf8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalDensePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalDualCompressedPlates/0.png deleted file mode 100644 index 39c9056268..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalDust/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalDust/0.png deleted file mode 100644 index 253bc1b630..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalGemExquisite/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalGemExquisite/0.png deleted file mode 100644 index 6d6a5acefc..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalGemExquisite/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalGemFlawless/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalGemFlawless/0.png deleted file mode 100644 index d5059436e1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalGemFlawless/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalIngot/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalIngot/0.png deleted file mode 100644 index 6d94ca4a87..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalLens/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalLens/0.png deleted file mode 100644 index 1b9c05a00b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalLens/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MysteriousCrystalPlate/0.png b/front/public/images/large/dreamcraft/item.MysteriousCrystalPlate/0.png deleted file mode 100644 index 7ef2d1c35d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MysteriousCrystalPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylCompressedPlate/0.png b/front/public/images/large/dreamcraft/item.MytrylCompressedPlate/0.png deleted file mode 100644 index ab2e9e3686..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylCrystal/0.png b/front/public/images/large/dreamcraft/item.MytrylCrystal/0.png deleted file mode 100644 index e1e9a25348..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylDensePlate/0.png b/front/public/images/large/dreamcraft/item.MytrylDensePlate/0.png deleted file mode 100644 index 65e55d9c9e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylDensePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.MytrylDualCompressedPlates/0.png deleted file mode 100644 index 50aa7809fb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylDust/0.png b/front/public/images/large/dreamcraft/item.MytrylDust/0.png deleted file mode 100644 index 1cb3b2c3ee..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylHotIngot/0.png b/front/public/images/large/dreamcraft/item.MytrylHotIngot/0.png deleted file mode 100644 index ff46b46ea8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylHotIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylIngot/0.png b/front/public/images/large/dreamcraft/item.MytrylIngot/0.png deleted file mode 100644 index 2a7f32484b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.MytrylPlate/0.png b/front/public/images/large/dreamcraft/item.MytrylPlate/0.png deleted file mode 100644 index b34c880c89..0000000000 Binary files a/front/public/images/large/dreamcraft/item.MytrylPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NagaScaleChip/0.png b/front/public/images/large/dreamcraft/item.NagaScaleChip/0.png deleted file mode 100644 index d0770531d1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NagaScaleChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NagaScaleFragment/0.png b/front/public/images/large/dreamcraft/item.NagaScaleFragment/0.png deleted file mode 100644 index d97f34fca5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NagaScaleFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoBoard/0.png b/front/public/images/large/dreamcraft/item.NanoBoard/0.png deleted file mode 100644 index 5d0b54121e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoBoard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoChestJetPack/0.png b/front/public/images/large/dreamcraft/item.NanoChestJetPack/0.png deleted file mode 100644 index 6462026c9a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoChestJetPack/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoCircuit/0.png b/front/public/images/large/dreamcraft/item.NanoCircuit/0.png deleted file mode 100644 index 77607c903c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoCrystal/0.png b/front/public/images/large/dreamcraft/item.NanoCrystal/0.png deleted file mode 100644 index 34c0434459..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoPlatedLeggings/0.png b/front/public/images/large/dreamcraft/item.NanoPlatedLeggings/0.png deleted file mode 100644 index fd2a4c0f1d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoPlatedLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoProcessorBoard/0.png b/front/public/images/large/dreamcraft/item.NanoProcessorBoard/0.png deleted file mode 100644 index 2a8767564b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoProcessorBoard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoRubberBoots/0.png b/front/public/images/large/dreamcraft/item.NanoRubberBoots/0.png deleted file mode 100644 index 0a0701d5db..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoRubberBoots/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NanoScubaHelmet/0.png b/front/public/images/large/dreamcraft/item.NanoScubaHelmet/0.png deleted file mode 100644 index db8bff0da8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NanoScubaHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NaquadriaIronPlate/0.png b/front/public/images/large/dreamcraft/item.NaquadriaIronPlate/0.png deleted file mode 100644 index 29ef6f5dfd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NaquadriaIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NetherStarFragment/0.png b/front/public/images/large/dreamcraft/item.NetherStarFragment/0.png deleted file mode 100644 index 9eba7f0e5c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NetherStarFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NeutronReflectorParts/0.png b/front/public/images/large/dreamcraft/item.NeutronReflectorParts/0.png deleted file mode 100644 index a7d9650d81..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NeutronReflectorParts/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NeutronReflectorSmallParts/0.png b/front/public/images/large/dreamcraft/item.NeutronReflectorSmallParts/0.png deleted file mode 100644 index dff4d3a842..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NeutronReflectorSmallParts/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NeutroniumBars/0.png b/front/public/images/large/dreamcraft/item.NeutroniumBars/0.png deleted file mode 100644 index 61a3b28849..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NeutroniumBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NeutroniumIronPlate/0.png b/front/public/images/large/dreamcraft/item.NeutroniumIronPlate/0.png deleted file mode 100644 index 41d5132221..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NeutroniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.NeutroniumItemCasing/0.png b/front/public/images/large/dreamcraft/item.NeutroniumItemCasing/0.png deleted file mode 100644 index 02740a8be6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.NeutroniumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Nothing/0.png b/front/public/images/large/dreamcraft/item.Nothing/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Nothing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.OberonStoneDust/0.png b/front/public/images/large/dreamcraft/item.OberonStoneDust/0.png deleted file mode 100644 index a5cda2e42c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.OberonStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.OsmiumBars/0.png b/front/public/images/large/dreamcraft/item.OsmiumBars/0.png deleted file mode 100644 index 2d894c7229..0000000000 Binary files a/front/public/images/large/dreamcraft/item.OsmiumBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.OsmiumItemCasing/0.png b/front/public/images/large/dreamcraft/item.OsmiumItemCasing/0.png deleted file mode 100644 index 9a5289c3e3..0000000000 Binary files a/front/public/images/large/dreamcraft/item.OsmiumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.OvenGlove/0.png b/front/public/images/large/dreamcraft/item.OvenGlove/0.png deleted file mode 100644 index f8dad6e797..0000000000 Binary files a/front/public/images/large/dreamcraft/item.OvenGlove/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.OvenGlove/1.png b/front/public/images/large/dreamcraft/item.OvenGlove/1.png deleted file mode 100644 index a5248d8460..0000000000 Binary files a/front/public/images/large/dreamcraft/item.OvenGlove/1.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PhobosStoneDust/0.png b/front/public/images/large/dreamcraft/item.PhobosStoneDust/0.png deleted file mode 100644 index 094428f8f7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PhobosStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PicoWafer/0.png b/front/public/images/large/dreamcraft/item.PicoWafer/0.png deleted file mode 100644 index 31554b0308..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PicoWafer/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PikoCircuit/0.png b/front/public/images/large/dreamcraft/item.PikoCircuit/0.png deleted file mode 100644 index f754a25b5a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PikoCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PistonPlate/0.png b/front/public/images/large/dreamcraft/item.PistonPlate/0.png deleted file mode 100644 index c8d14fb9d0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PistonPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PlutoIceDust/0.png b/front/public/images/large/dreamcraft/item.PlutoIceDust/0.png deleted file mode 100644 index 070c7e69fc..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PlutoIceDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PlutoStoneDust/0.png b/front/public/images/large/dreamcraft/item.PlutoStoneDust/0.png deleted file mode 100644 index 16c7e6edc6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PlutoStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PotassiumHydroxideDust/0.png b/front/public/images/large/dreamcraft/item.PotassiumHydroxideDust/0.png deleted file mode 100644 index 414a3684c5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PotassiumHydroxideDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PrimordialPearlFragment/0.png b/front/public/images/large/dreamcraft/item.PrimordialPearlFragment/0.png deleted file mode 100644 index 9b18b9720d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PrimordialPearlFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ProteusStoneDust/0.png b/front/public/images/large/dreamcraft/item.ProteusStoneDust/0.png deleted file mode 100644 index e4e9cb535f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ProteusStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PulsatingIronBars/0.png b/front/public/images/large/dreamcraft/item.PulsatingIronBars/0.png deleted file mode 100644 index fdea2676ee..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PulsatingIronBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.PulsatingSpatialCoreChip/0.png b/front/public/images/large/dreamcraft/item.PulsatingSpatialCoreChip/0.png deleted file mode 100644 index d637805b5c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.PulsatingSpatialCoreChip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantinumCompressedPlate/0.png b/front/public/images/large/dreamcraft/item.QuantinumCompressedPlate/0.png deleted file mode 100644 index 0941bd71d7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantinumCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantinumDensePlate/0.png b/front/public/images/large/dreamcraft/item.QuantinumDensePlate/0.png deleted file mode 100644 index 23c1e333f0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantinumDensePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantinumDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.QuantinumDualCompressedPlates/0.png deleted file mode 100644 index 0ce0274515..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantinumDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantinumDust/0.png b/front/public/images/large/dreamcraft/item.QuantinumDust/0.png deleted file mode 100644 index e03314a624..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantinumDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantinumHotIngot/0.png b/front/public/images/large/dreamcraft/item.QuantinumHotIngot/0.png deleted file mode 100644 index 9f8d7748d5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantinumHotIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantinumPlate/0.png b/front/public/images/large/dreamcraft/item.QuantinumPlate/0.png deleted file mode 100644 index 18e14aabb5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantinumPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantinumRod/0.png b/front/public/images/large/dreamcraft/item.QuantinumRod/0.png deleted file mode 100644 index 12daa8d1c9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantinumRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumBoard/0.png b/front/public/images/large/dreamcraft/item.QuantumBoard/0.png deleted file mode 100644 index 1a74c9ed20..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumBoard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumCircuit/0.png b/front/public/images/large/dreamcraft/item.QuantumCircuit/0.png deleted file mode 100644 index e20bb2d2c2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumCircuit/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumCrystal/0.png b/front/public/images/large/dreamcraft/item.QuantumCrystal/0.png deleted file mode 100644 index 1f740ba1ee..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumPartBoots/0.png b/front/public/images/large/dreamcraft/item.QuantumPartBoots/0.png deleted file mode 100644 index d2f4380026..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumPartBoots/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumPartChestplate/0.png b/front/public/images/large/dreamcraft/item.QuantumPartChestplate/0.png deleted file mode 100644 index d9c76fbdcb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumPartChestplate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumPartHelmet/0.png b/front/public/images/large/dreamcraft/item.QuantumPartHelmet/0.png deleted file mode 100644 index abc59d662a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumPartHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumPartHelmetEmpty/0.png b/front/public/images/large/dreamcraft/item.QuantumPartHelmetEmpty/0.png deleted file mode 100644 index 34b02155f2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumPartHelmetEmpty/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumPartLeggings/0.png b/front/public/images/large/dreamcraft/item.QuantumPartLeggings/0.png deleted file mode 100644 index 2cd1b04c6a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumPartLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.QuantumProcessorBoard/0.png b/front/public/images/large/dreamcraft/item.QuantumProcessorBoard/0.png deleted file mode 100644 index 1bf9637217..0000000000 Binary files a/front/public/images/large/dreamcraft/item.QuantumProcessorBoard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RadoxPolymerLens/0.png b/front/public/images/large/dreamcraft/item.RadoxPolymerLens/0.png deleted file mode 100644 index c9350a37b7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RadoxPolymerLens/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawBioFiber/0.png b/front/public/images/large/dreamcraft/item.RawBioFiber/0.png deleted file mode 100644 index 4d972d130d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawBioFiber/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawLapotronCrystal/0.png b/front/public/images/large/dreamcraft/item.RawLapotronCrystal/0.png deleted file mode 100644 index dd15ef3a62..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawLapotronCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawMytryl/0.png b/front/public/images/large/dreamcraft/item.RawMytryl/0.png deleted file mode 100644 index 6196340946..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawMytryl/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawNeutronium/0.png b/front/public/images/large/dreamcraft/item.RawNeutronium/0.png deleted file mode 100644 index e2876bfa89..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawNeutronium/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawOrbTier1/0.png b/front/public/images/large/dreamcraft/item.RawOrbTier1/0.png deleted file mode 100644 index 2c8c0637f4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawOrbTier1/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawOrbTier2/0.png b/front/public/images/large/dreamcraft/item.RawOrbTier2/0.png deleted file mode 100644 index 96a3cf23a2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawOrbTier2/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawOrbTier3/0.png b/front/public/images/large/dreamcraft/item.RawOrbTier3/0.png deleted file mode 100644 index ab6847a51f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawOrbTier3/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawOrbTier4/0.png b/front/public/images/large/dreamcraft/item.RawOrbTier4/0.png deleted file mode 100644 index 6560d4bbc9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawOrbTier4/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawOrbTier5/0.png b/front/public/images/large/dreamcraft/item.RawOrbTier5/0.png deleted file mode 100644 index bbeaee52e4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawOrbTier5/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawOrbTier6/0.png b/front/public/images/large/dreamcraft/item.RawOrbTier6/0.png deleted file mode 100644 index 32ed67fea8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawOrbTier6/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawPicoWafer/0.png b/front/public/images/large/dreamcraft/item.RawPicoWafer/0.png deleted file mode 100644 index bb6e67711a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawPicoWafer/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RawSDHCAlloy/0.png b/front/public/images/large/dreamcraft/item.RawSDHCAlloy/0.png deleted file mode 100644 index e34e228358..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RawSDHCAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RedstoneAlloyBars/0.png b/front/public/images/large/dreamcraft/item.RedstoneAlloyBars/0.png deleted file mode 100644 index b2e64c6c9f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RedstoneAlloyBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedAluminiumIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedAluminiumIronPlate/0.png deleted file mode 100644 index bf951db465..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedAluminiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedBedrockiumIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedBedrockiumIronPlate/0.png deleted file mode 100644 index fccfd80c99..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedBedrockiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedChromeIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedChromeIronPlate/0.png deleted file mode 100644 index 981593b879..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedChromeIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedGlassLense/0.png b/front/public/images/large/dreamcraft/item.ReinforcedGlassLense/0.png deleted file mode 100644 index 0a4a6ad2fe..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedGlassLense/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedGlassPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedGlassPlate/0.png deleted file mode 100644 index e843a0c3ab..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedGlassPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedIridiumDrillTip/0.png b/front/public/images/large/dreamcraft/item.ReinforcedIridiumDrillTip/0.png deleted file mode 100644 index dee496d329..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedIridiumDrillTip/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedNaquadriaIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedNaquadriaIronPlate/0.png deleted file mode 100644 index e914862765..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedNaquadriaIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedNeutroniumIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedNeutroniumIronPlate/0.png deleted file mode 100644 index 4027ef42d5..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedNeutroniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedTitaniumIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedTitaniumIronPlate/0.png deleted file mode 100644 index a8e9885932..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedTitaniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedTungstenIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedTungstenIronPlate/0.png deleted file mode 100644 index 9dddb1540c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedTungstenIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ReinforcedTungstenSteelIronPlate/0.png b/front/public/images/large/dreamcraft/item.ReinforcedTungstenSteelIronPlate/0.png deleted file mode 100644 index facec3aa7b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ReinforcedTungstenSteelIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RuneOfAgilityFragment/0.png b/front/public/images/large/dreamcraft/item.RuneOfAgilityFragment/0.png deleted file mode 100644 index bc783f0342..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RuneOfAgilityFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RuneOfDefenseFragment/0.png b/front/public/images/large/dreamcraft/item.RuneOfDefenseFragment/0.png deleted file mode 100644 index bf71da1e41..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RuneOfDefenseFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RuneOfMagicFragment/0.png b/front/public/images/large/dreamcraft/item.RuneOfMagicFragment/0.png deleted file mode 100644 index 23dcebcaaa..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RuneOfMagicFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RuneOfPowerFragment/0.png b/front/public/images/large/dreamcraft/item.RuneOfPowerFragment/0.png deleted file mode 100644 index 050216d348..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RuneOfPowerFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RuneOfVigorFragment/0.png b/front/public/images/large/dreamcraft/item.RuneOfVigorFragment/0.png deleted file mode 100644 index 30107ec408..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RuneOfVigorFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.RuneOfVoidFragment/0.png b/front/public/images/large/dreamcraft/item.RuneOfVoidFragment/0.png deleted file mode 100644 index 581b1671ae..0000000000 Binary files a/front/public/images/large/dreamcraft/item.RuneOfVoidFragment/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SandDust/0.png b/front/public/images/large/dreamcraft/item.SandDust/0.png deleted file mode 100644 index d7de7e26c4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SandDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SandStoneRod/0.png b/front/public/images/large/dreamcraft/item.SandStoneRod/0.png deleted file mode 100644 index c2e7c62e18..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SandStoneRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SawBladeArdite/0.png b/front/public/images/large/dreamcraft/item.SawBladeArdite/0.png deleted file mode 100644 index e4db315bec..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SawBladeArdite/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SawBladeDiamond/0.png b/front/public/images/large/dreamcraft/item.SawBladeDiamond/0.png deleted file mode 100644 index 9f362d6c7b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SawBladeDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SawBladeManyullyn/0.png b/front/public/images/large/dreamcraft/item.SawBladeManyullyn/0.png deleted file mode 100644 index 6cd9eb0544..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SawBladeManyullyn/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SawBladePeridot/0.png b/front/public/images/large/dreamcraft/item.SawBladePeridot/0.png deleted file mode 100644 index 930059e909..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SawBladePeridot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SawBladeRuby/0.png b/front/public/images/large/dreamcraft/item.SawBladeRuby/0.png deleted file mode 100644 index 344b95cbf0..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SawBladeRuby/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SawBladeSapphire/0.png b/front/public/images/large/dreamcraft/item.SawBladeSapphire/0.png deleted file mode 100644 index ffa1849b25..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SawBladeSapphire/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SawBladeStone/0.png b/front/public/images/large/dreamcraft/item.SawBladeStone/0.png deleted file mode 100644 index 19a61e7173..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SawBladeStone/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsAstroMiner/0.png b/front/public/images/large/dreamcraft/item.SchematicsAstroMiner/0.png deleted file mode 100644 index a911babac1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsAstroMiner/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsCargoRocket/0.png b/front/public/images/large/dreamcraft/item.SchematicsCargoRocket/0.png deleted file mode 100644 index 026749c6c2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsCargoRocket/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsMoonBuggy/0.png b/front/public/images/large/dreamcraft/item.SchematicsMoonBuggy/0.png deleted file mode 100644 index 84260e5c5d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsMoonBuggy/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier1/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier1/0.png deleted file mode 100644 index d2ac8a0a82..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier1/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier2/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier2/0.png deleted file mode 100644 index 1467d20efe..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier2/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier3/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier3/0.png deleted file mode 100644 index d444eb9561..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier3/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier4/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier4/0.png deleted file mode 100644 index 5cfd1e546b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier4/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier5/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier5/0.png deleted file mode 100644 index 78e3b9ed6d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier5/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier6/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier6/0.png deleted file mode 100644 index 32c76a708c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier6/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier7/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier7/0.png deleted file mode 100644 index c5bcc19d03..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier7/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SchematicsTier8/0.png b/front/public/images/large/dreamcraft/item.SchematicsTier8/0.png deleted file mode 100644 index 4846272d77..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SchematicsTier8/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShadowImbuedClothCap/0.png b/front/public/images/large/dreamcraft/item.ShadowImbuedClothCap/0.png deleted file mode 100644 index fad085b638..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShadowImbuedClothCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShadowmetalCap/0.png b/front/public/images/large/dreamcraft/item.ShadowmetalCap/0.png deleted file mode 100644 index 29c8fb8b16..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShadowmetalCap/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeAxeHead/0.png b/front/public/images/large/dreamcraft/item.ShapeAxeHead/0.png deleted file mode 100644 index e69dce9c05..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeAxeHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeBlock/0.png b/front/public/images/large/dreamcraft/item.ShapeBlock/0.png deleted file mode 100644 index 96c43cf4b4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeBoat/0.png b/front/public/images/large/dreamcraft/item.ShapeBoat/0.png deleted file mode 100644 index b5bac8ec41..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeBoat/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeBolt/0.png b/front/public/images/large/dreamcraft/item.ShapeBolt/0.png deleted file mode 100644 index 1fcae3c4b4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeBolt/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeBottle/0.png b/front/public/images/large/dreamcraft/item.ShapeBottle/0.png deleted file mode 100644 index e9b245d067..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeBottle/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeCasing/0.png b/front/public/images/large/dreamcraft/item.ShapeCasing/0.png deleted file mode 100644 index 61c39b4597..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeCell/0.png b/front/public/images/large/dreamcraft/item.ShapeCell/0.png deleted file mode 100644 index d35a2caa78..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeDrillHead/0.png b/front/public/images/large/dreamcraft/item.ShapeDrillHead/0.png deleted file mode 100644 index af9d82138a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeDrillHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeFileHead/0.png b/front/public/images/large/dreamcraft/item.ShapeFileHead/0.png deleted file mode 100644 index da1cca4d88..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeFileHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeGear/0.png b/front/public/images/large/dreamcraft/item.ShapeGear/0.png deleted file mode 100644 index 5d9dac5e96..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeGear/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeHammerHead/0.png b/front/public/images/large/dreamcraft/item.ShapeHammerHead/0.png deleted file mode 100644 index 75b40d22ad..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeHammerHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeHoeHead/0.png b/front/public/images/large/dreamcraft/item.ShapeHoeHead/0.png deleted file mode 100644 index ddf37b0334..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeHoeHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeHugePipe/0.png b/front/public/images/large/dreamcraft/item.ShapeHugePipe/0.png deleted file mode 100644 index 89d367ee58..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeHugePipe/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeIngot/0.png b/front/public/images/large/dreamcraft/item.ShapeIngot/0.png deleted file mode 100644 index 4243581ab9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeIngot/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeLargePipe/0.png b/front/public/images/large/dreamcraft/item.ShapeLargePipe/0.png deleted file mode 100644 index 2fde23d43f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeLargePipe/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeNormalPipe/0.png b/front/public/images/large/dreamcraft/item.ShapeNormalPipe/0.png deleted file mode 100644 index dc458021ec..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeNormalPipe/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapePickaxeHead/0.png b/front/public/images/large/dreamcraft/item.ShapePickaxeHead/0.png deleted file mode 100644 index 6ee26fbb95..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapePickaxeHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapePlate/0.png b/front/public/images/large/dreamcraft/item.ShapePlate/0.png deleted file mode 100644 index d5ad030468..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeRing/0.png b/front/public/images/large/dreamcraft/item.ShapeRing/0.png deleted file mode 100644 index 03b9811525..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeRing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeRod/0.png b/front/public/images/large/dreamcraft/item.ShapeRod/0.png deleted file mode 100644 index e14f8e764e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeRotor/0.png b/front/public/images/large/dreamcraft/item.ShapeRotor/0.png deleted file mode 100644 index 23e5be5bd9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeRotor/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeSawBlade/0.png b/front/public/images/large/dreamcraft/item.ShapeSawBlade/0.png deleted file mode 100644 index bfdeeb5b6f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeSawBlade/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeShovelHead/0.png b/front/public/images/large/dreamcraft/item.ShapeShovelHead/0.png deleted file mode 100644 index f7ddb37f2c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeShovelHead/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeSmallGear/0.png b/front/public/images/large/dreamcraft/item.ShapeSmallGear/0.png deleted file mode 100644 index 8e6065772c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeSmallGear/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeSmallPipe/0.png b/front/public/images/large/dreamcraft/item.ShapeSmallPipe/0.png deleted file mode 100644 index a1aaf596ea..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeSmallPipe/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeSwordBlade/0.png b/front/public/images/large/dreamcraft/item.ShapeSwordBlade/0.png deleted file mode 100644 index c5ca0f4130..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeSwordBlade/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeTinyPipe/0.png b/front/public/images/large/dreamcraft/item.ShapeTinyPipe/0.png deleted file mode 100644 index be155ee8b7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeTinyPipe/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeTurbineBlade/0.png b/front/public/images/large/dreamcraft/item.ShapeTurbineBlade/0.png deleted file mode 100644 index 331b3f74db..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeTurbineBlade/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ShapeWire/0.png b/front/public/images/large/dreamcraft/item.ShapeWire/0.png deleted file mode 100644 index fccc5c5bed..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ShapeWire/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SilverThread/0.png b/front/public/images/large/dreamcraft/item.SilverThread/0.png deleted file mode 100644 index 3d0be4a9c6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SilverThread/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SilveredFleece/0.png b/front/public/images/large/dreamcraft/item.SilveredFleece/0.png deleted file mode 100644 index 0284ce1c40..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SilveredFleece/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SimpleCircuitBoard/0.png b/front/public/images/large/dreamcraft/item.SimpleCircuitBoard/0.png deleted file mode 100644 index 93eb4e1a3c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SimpleCircuitBoard/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SixtyKCell/0.png b/front/public/images/large/dreamcraft/item.SixtyKCell/0.png deleted file mode 100644 index c58e8b154c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SixtyKCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SnowQueenBlood/0.png b/front/public/images/large/dreamcraft/item.SnowQueenBlood/0.png deleted file mode 100644 index 12ba89900e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SnowQueenBlood/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SnowQueenBloodDrop/0.png b/front/public/images/large/dreamcraft/item.SnowQueenBloodDrop/0.png deleted file mode 100644 index f42b0c49d4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SnowQueenBloodDrop/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SoulariumBars/0.png b/front/public/images/large/dreamcraft/item.SoulariumBars/0.png deleted file mode 100644 index 9fd0995afc..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SoulariumBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.StainlessSteelBars/0.png b/front/public/images/large/dreamcraft/item.StainlessSteelBars/0.png deleted file mode 100644 index 20527a5c9d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.StainlessSteelBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.StainlessSteelItemCasing/0.png b/front/public/images/large/dreamcraft/item.StainlessSteelItemCasing/0.png deleted file mode 100644 index db3b550140..0000000000 Binary files a/front/public/images/large/dreamcraft/item.StainlessSteelItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.StargateChevron/0.png b/front/public/images/large/dreamcraft/item.StargateChevron/0.png deleted file mode 100644 index cfb477ac4e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.StargateChevron/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.StargateCrystalDust/0.png b/front/public/images/large/dreamcraft/item.StargateCrystalDust/0.png deleted file mode 100644 index b24bf20007..0000000000 Binary files a/front/public/images/large/dreamcraft/item.StargateCrystalDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.StargateFramePart/0.png b/front/public/images/large/dreamcraft/item.StargateFramePart/0.png deleted file mode 100644 index 30b6952dfa..0000000000 Binary files a/front/public/images/large/dreamcraft/item.StargateFramePart/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.StargateShieldingFoil/0.png b/front/public/images/large/dreamcraft/item.StargateShieldingFoil/0.png deleted file mode 100644 index a7221c5a5b..0000000000 Binary files a/front/public/images/large/dreamcraft/item.StargateShieldingFoil/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SteelBars/0.png b/front/public/images/large/dreamcraft/item.SteelBars/0.png deleted file mode 100644 index a94acc0d5a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SteelBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.SteelDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.SteelDualCompressedPlates/0.png deleted file mode 100644 index de3fef220e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.SteelDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.StonePlate/0.png b/front/public/images/large/dreamcraft/item.StonePlate/0.png deleted file mode 100644 index 278cc12d1d..0000000000 Binary files a/front/public/images/large/dreamcraft/item.StonePlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TCetiESeaweedExtract/0.png b/front/public/images/large/dreamcraft/item.TCetiESeaweedExtract/0.png deleted file mode 100644 index daab047bb2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TCetiESeaweedExtract/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TCetiEStoneDust/0.png b/front/public/images/large/dreamcraft/item.TCetiEStoneDust/0.png deleted file mode 100644 index 54460ac0c1..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TCetiEStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TeleposerFrame/0.png b/front/public/images/large/dreamcraft/item.TeleposerFrame/0.png deleted file mode 100644 index 5cd918f717..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TeleposerFrame/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TenKCell/0.png b/front/public/images/large/dreamcraft/item.TenKCell/0.png deleted file mode 100644 index 6c08f0c0dd..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TenKCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TheBigEgg/0.png b/front/public/images/large/dreamcraft/item.TheBigEgg/0.png deleted file mode 100644 index 86fa6582f4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TheBigEgg/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.ThirtyKCell/0.png b/front/public/images/large/dreamcraft/item.ThirtyKCell/0.png deleted file mode 100644 index f0520c0737..0000000000 Binary files a/front/public/images/large/dreamcraft/item.ThirtyKCell/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Tier2Booster/0.png b/front/public/images/large/dreamcraft/item.Tier2Booster/0.png deleted file mode 100644 index df53831e60..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Tier2Booster/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Tier3Booster/0.png b/front/public/images/large/dreamcraft/item.Tier3Booster/0.png deleted file mode 100644 index 41c68bd121..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Tier3Booster/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.Tier4Booster/0.png b/front/public/images/large/dreamcraft/item.Tier4Booster/0.png deleted file mode 100644 index 792051d621..0000000000 Binary files a/front/public/images/large/dreamcraft/item.Tier4Booster/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TinDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.TinDualCompressedPlates/0.png deleted file mode 100644 index 8e09c419b2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TinDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TitanStoneDust/0.png b/front/public/images/large/dreamcraft/item.TitanStoneDust/0.png deleted file mode 100644 index 724a683255..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TitanStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TitaniumBars/0.png b/front/public/images/large/dreamcraft/item.TitaniumBars/0.png deleted file mode 100644 index e53d317f27..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TitaniumBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TitaniumDualCompressedPlates/0.png b/front/public/images/large/dreamcraft/item.TitaniumDualCompressedPlates/0.png deleted file mode 100644 index dd13722a3e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TitaniumDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TitaniumIronPlate/0.png b/front/public/images/large/dreamcraft/item.TitaniumIronPlate/0.png deleted file mode 100644 index eeca929c07..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TitaniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TitaniumItemCasing/0.png b/front/public/images/large/dreamcraft/item.TitaniumItemCasing/0.png deleted file mode 100644 index 1d6a4da1cb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TitaniumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TranscendentOrb/0.png b/front/public/images/large/dreamcraft/item.TranscendentOrb/0.png deleted file mode 100644 index 7a0b1f9389..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TranscendentOrb/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TritonStoneDust/0.png b/front/public/images/large/dreamcraft/item.TritonStoneDust/0.png deleted file mode 100644 index 3ba8879b14..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TritonStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TungstenBars/0.png b/front/public/images/large/dreamcraft/item.TungstenBars/0.png deleted file mode 100644 index 2514de6426..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TungstenBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TungstenIronPlate/0.png b/front/public/images/large/dreamcraft/item.TungstenIronPlate/0.png deleted file mode 100644 index 9c89ac2999..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TungstenIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TungstenItemCasing/0.png b/front/public/images/large/dreamcraft/item.TungstenItemCasing/0.png deleted file mode 100644 index 7453334d61..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TungstenItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TungstenSteelBars/0.png b/front/public/images/large/dreamcraft/item.TungstenSteelBars/0.png deleted file mode 100644 index 66a188bb40..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TungstenSteelBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TungstenSteelIronPlate/0.png b/front/public/images/large/dreamcraft/item.TungstenSteelIronPlate/0.png deleted file mode 100644 index 8dbcca4e48..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TungstenSteelIronPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TungstenSteelItemCasing/0.png b/front/public/images/large/dreamcraft/item.TungstenSteelItemCasing/0.png deleted file mode 100644 index b64f3c04c4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TungstenSteelItemCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TungstenString/0.png b/front/public/images/large/dreamcraft/item.TungstenString/0.png deleted file mode 100644 index 5eb1d3f33f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TungstenString/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.TwilightCrystal/0.png b/front/public/images/large/dreamcraft/item.TwilightCrystal/0.png deleted file mode 100644 index 1d3e74d223..0000000000 Binary files a/front/public/images/large/dreamcraft/item.TwilightCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.UncookedSlush/0.png b/front/public/images/large/dreamcraft/item.UncookedSlush/0.png deleted file mode 100644 index 2c84f6fe62..0000000000 Binary files a/front/public/images/large/dreamcraft/item.UncookedSlush/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.UnfiredClayBrick/0.png b/front/public/images/large/dreamcraft/item.UnfiredClayBrick/0.png deleted file mode 100644 index 01a49262a4..0000000000 Binary files a/front/public/images/large/dreamcraft/item.UnfiredClayBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.UnfiredCokeOvenBrick/0.png b/front/public/images/large/dreamcraft/item.UnfiredCokeOvenBrick/0.png deleted file mode 100644 index 78049d3647..0000000000 Binary files a/front/public/images/large/dreamcraft/item.UnfiredCokeOvenBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.UnfiredSearedBrick/0.png b/front/public/images/large/dreamcraft/item.UnfiredSearedBrick/0.png deleted file mode 100644 index 82eff323a8..0000000000 Binary files a/front/public/images/large/dreamcraft/item.UnfiredSearedBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.UnfiredSlimeSoulBrick/0.png b/front/public/images/large/dreamcraft/item.UnfiredSlimeSoulBrick/0.png deleted file mode 100644 index b4bb4aff9a..0000000000 Binary files a/front/public/images/large/dreamcraft/item.UnfiredSlimeSoulBrick/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VegaBStoneDust/0.png b/front/public/images/large/dreamcraft/item.VegaBStoneDust/0.png deleted file mode 100644 index 21bd3341be..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VegaBStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VenusStoneDust/0.png b/front/public/images/large/dreamcraft/item.VenusStoneDust/0.png deleted file mode 100644 index f616ee240e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VenusStoneDust/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VibrantAlloyBars/0.png b/front/public/images/large/dreamcraft/item.VibrantAlloyBars/0.png deleted file mode 100644 index 5411d769cb..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VibrantAlloyBars/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VinteumThread/0.png b/front/public/images/large/dreamcraft/item.VinteumThread/0.png deleted file mode 100644 index 3054c798ae..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VinteumThread/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VoidEssence/0.png b/front/public/images/large/dreamcraft/item.VoidEssence/0.png deleted file mode 100644 index 1ba974c405..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VoidEssence/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VoidFoil/0.png b/front/public/images/large/dreamcraft/item.VoidFoil/0.png deleted file mode 100644 index 4ba24aafb7..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VoidFoil/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VoidPlate/0.png b/front/public/images/large/dreamcraft/item.VoidPlate/0.png deleted file mode 100644 index edd8572f4c..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VoidPlate/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VoidRing/0.png b/front/public/images/large/dreamcraft/item.VoidRing/0.png deleted file mode 100644 index b64f2be482..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VoidRing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VoidRod/0.png b/front/public/images/large/dreamcraft/item.VoidRod/0.png deleted file mode 100644 index baa6ba3b75..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VoidRod/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.VoidSeed/0.png b/front/public/images/large/dreamcraft/item.VoidSeed/0.png deleted file mode 100644 index 8862244fb6..0000000000 Binary files a/front/public/images/large/dreamcraft/item.VoidSeed/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WaferTier3/0.png b/front/public/images/large/dreamcraft/item.WaferTier3/0.png deleted file mode 100644 index 9dfffc3fdc..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WaferTier3/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WandCapAlchemical/0.png b/front/public/images/large/dreamcraft/item.WandCapAlchemical/0.png deleted file mode 100644 index b542b667ea..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WandCapAlchemical/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WandCapBloodIron/0.png b/front/public/images/large/dreamcraft/item.WandCapBloodIron/0.png deleted file mode 100644 index 69ce5da95e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WandCapBloodIron/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WandCapElementium/0.png b/front/public/images/large/dreamcraft/item.WandCapElementium/0.png deleted file mode 100644 index 8127359e05..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WandCapElementium/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WandCapManaSteel/0.png b/front/public/images/large/dreamcraft/item.WandCapManaSteel/0.png deleted file mode 100644 index 29dc2240d3..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WandCapManaSteel/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WandCapTerraSteel/0.png b/front/public/images/large/dreamcraft/item.WandCapTerraSteel/0.png deleted file mode 100644 index 108dbe9da9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WandCapTerraSteel/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WandCapThauminite/0.png b/front/public/images/large/dreamcraft/item.WandCapThauminite/0.png deleted file mode 100644 index 4aa538d694..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WandCapThauminite/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WandCapVinteum/0.png b/front/public/images/large/dreamcraft/item.WandCapVinteum/0.png deleted file mode 100644 index 1d1b759f56..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WandCapVinteum/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WeakOrb/0.png b/front/public/images/large/dreamcraft/item.WeakOrb/0.png deleted file mode 100644 index 642b2f9e2f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WeakOrb/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WetTofu/0.png b/front/public/images/large/dreamcraft/item.WetTofu/0.png deleted file mode 100644 index d6d88f7c6e..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WetTofu/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WirelessTransmitter/0.png b/front/public/images/large/dreamcraft/item.WirelessTransmitter/0.png deleted file mode 100644 index de790d84c9..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WirelessTransmitter/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WitherProtectionRing/0.png b/front/public/images/large/dreamcraft/item.WitherProtectionRing/0.png deleted file mode 100644 index e47aeec593..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WitherProtectionRing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WoodenBrickForm/0.png b/front/public/images/large/dreamcraft/item.WoodenBrickForm/0.png deleted file mode 100644 index 53791ce48f..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WoodenBrickForm/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/item.WoodenCasing/0.png b/front/public/images/large/dreamcraft/item.WoodenCasing/0.png deleted file mode 100644 index 922aeaace2..0000000000 Binary files a/front/public/images/large/dreamcraft/item.WoodenCasing/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.BlackPlutonium/0.png b/front/public/images/large/dreamcraft/tile.BlackPlutonium/0.png deleted file mode 100644 index 87c9ccb1fd..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.BlackPlutonium/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.BloodyIchorium/0.png b/front/public/images/large/dreamcraft/tile.BloodyIchorium/0.png deleted file mode 100644 index bc60c6ac1c..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.BloodyIchorium/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.BloodyThaumium/0.png b/front/public/images/large/dreamcraft/tile.BloodyThaumium/0.png deleted file mode 100644 index ebb0b2b281..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.BloodyThaumium/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.BloodyVoid/0.png b/front/public/images/large/dreamcraft/tile.BloodyVoid/0.png deleted file mode 100644 index b6ead2c105..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.BloodyVoid/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.BronzePlatedReinforcedStone/0.png b/front/public/images/large/dreamcraft/tile.BronzePlatedReinforcedStone/0.png deleted file mode 100644 index 08f2aa43eb..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.BronzePlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.CallistoColdIce/0.png b/front/public/images/large/dreamcraft/tile.CallistoColdIce/0.png deleted file mode 100644 index ca88f52014..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.CallistoColdIce/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.Charcoal/0.png b/front/public/images/large/dreamcraft/tile.Charcoal/0.png deleted file mode 100644 index 38b8796777..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.Charcoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.CompressedCharcoal/0.png b/front/public/images/large/dreamcraft/tile.CompressedCharcoal/0.png deleted file mode 100644 index 93b0c6b00f..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.CompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.CompressedCoal/0.png b/front/public/images/large/dreamcraft/tile.CompressedCoal/0.png deleted file mode 100644 index 5398607848..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.CompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.CompressedCoalCoke/0.png b/front/public/images/large/dreamcraft/tile.CompressedCoalCoke/0.png deleted file mode 100644 index b08d26fb6f..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.CompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.CompressedGraphite/0.png b/front/public/images/large/dreamcraft/tile.CompressedGraphite/0.png deleted file mode 100644 index df3d262a2a..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.CompressedGraphite/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.DiamondFrameBox/0.png b/front/public/images/large/dreamcraft/tile.DiamondFrameBox/0.png deleted file mode 100644 index d5dbd746fb..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.DiamondFrameBox/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.DoubleCompressedCharcoal/0.png b/front/public/images/large/dreamcraft/tile.DoubleCompressedCharcoal/0.png deleted file mode 100644 index e396c805fb..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.DoubleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.DoubleCompressedCoal/0.png b/front/public/images/large/dreamcraft/tile.DoubleCompressedCoal/0.png deleted file mode 100644 index b431f06b95..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.DoubleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.DoubleCompressedCoalCoke/0.png b/front/public/images/large/dreamcraft/tile.DoubleCompressedCoalCoke/0.png deleted file mode 100644 index 76e66b29d3..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.DoubleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.Ledox/0.png b/front/public/images/large/dreamcraft/tile.Ledox/0.png deleted file mode 100644 index e210f77414..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.Ledox/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.MysteriousCrystal/0.png b/front/public/images/large/dreamcraft/tile.MysteriousCrystal/0.png deleted file mode 100644 index 6873b17385..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.MysteriousCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.Mytryl/0.png b/front/public/images/large/dreamcraft/tile.Mytryl/0.png deleted file mode 100644 index 3bf5c1ac88..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.Mytryl/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.NaquadahPlatedReinforcedStone/0.png b/front/public/images/large/dreamcraft/tile.NaquadahPlatedReinforcedStone/0.png deleted file mode 100644 index 29ecaa8548..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.NaquadahPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.NeutroniumPlatedReinforcedStone/0.png b/front/public/images/large/dreamcraft/tile.NeutroniumPlatedReinforcedStone/0.png deleted file mode 100644 index 5feb330129..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.NeutroniumPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.PistonBlock/0.png b/front/public/images/large/dreamcraft/tile.PistonBlock/0.png deleted file mode 100644 index 09b9768d6e..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.PistonBlock/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCharcoal/0.png b/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCharcoal/0.png deleted file mode 100644 index 9315f51212..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCoal/0.png b/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCoal/0.png deleted file mode 100644 index da99a23b0b..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCoalCoke/0.png b/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCoalCoke/0.png deleted file mode 100644 index fd5a043dad..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.QuadrupleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.Quantinum/0.png b/front/public/images/large/dreamcraft/tile.Quantinum/0.png deleted file mode 100644 index e130136c08..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.Quantinum/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.QuintupleCompressedCharcoal/0.png b/front/public/images/large/dreamcraft/tile.QuintupleCompressedCharcoal/0.png deleted file mode 100644 index 5a30a77953..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.QuintupleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.QuintupleCompressedCoal/0.png b/front/public/images/large/dreamcraft/tile.QuintupleCompressedCoal/0.png deleted file mode 100644 index e4719f9e76..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.QuintupleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.QuintupleCompressedCoalCoke/0.png b/front/public/images/large/dreamcraft/tile.QuintupleCompressedCoalCoke/0.png deleted file mode 100644 index dcf95674d4..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.QuintupleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.SandClayMix/0.png b/front/public/images/large/dreamcraft/tile.SandClayMix/0.png deleted file mode 100644 index 9a1f5e9e8e..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.SandClayMix/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.SteelPlatedReinforcedStone/0.png b/front/public/images/large/dreamcraft/tile.SteelPlatedReinforcedStone/0.png deleted file mode 100644 index 51809cdb2d..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.SteelPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.TitaniumPlatedReinforcedStone/0.png b/front/public/images/large/dreamcraft/tile.TitaniumPlatedReinforcedStone/0.png deleted file mode 100644 index 8972622b81..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.TitaniumPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.TripleCompressedCharcoal/0.png b/front/public/images/large/dreamcraft/tile.TripleCompressedCharcoal/0.png deleted file mode 100644 index 2fddc0af74..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.TripleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.TripleCompressedCoal/0.png b/front/public/images/large/dreamcraft/tile.TripleCompressedCoal/0.png deleted file mode 100644 index 2bdd76a303..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.TripleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.TripleCompressedCoalCoke/0.png b/front/public/images/large/dreamcraft/tile.TripleCompressedCoalCoke/0.png deleted file mode 100644 index c17c160602..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.TripleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/large/dreamcraft/tile.TungstensteelPlatedReinforcedStone/0.png b/front/public/images/large/dreamcraft/tile.TungstensteelPlatedReinforcedStone/0.png deleted file mode 100644 index 7205a03fd9..0000000000 Binary files a/front/public/images/large/dreamcraft/tile.TungstensteelPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/0.png b/front/public/images/large/enhancedlootbags/lootbag/0.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/0.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/1.png b/front/public/images/large/enhancedlootbags/lootbag/1.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/1.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/10.png b/front/public/images/large/enhancedlootbags/lootbag/10.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/10.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/11.png b/front/public/images/large/enhancedlootbags/lootbag/11.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/11.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/12.png b/front/public/images/large/enhancedlootbags/lootbag/12.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/12.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/13.png b/front/public/images/large/enhancedlootbags/lootbag/13.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/13.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/14.png b/front/public/images/large/enhancedlootbags/lootbag/14.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/14.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/15.png b/front/public/images/large/enhancedlootbags/lootbag/15.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/15.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/16.png b/front/public/images/large/enhancedlootbags/lootbag/16.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/16.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/17.png b/front/public/images/large/enhancedlootbags/lootbag/17.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/17.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/18.png b/front/public/images/large/enhancedlootbags/lootbag/18.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/18.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/19.png b/front/public/images/large/enhancedlootbags/lootbag/19.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/19.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/2.png b/front/public/images/large/enhancedlootbags/lootbag/2.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/2.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/20.png b/front/public/images/large/enhancedlootbags/lootbag/20.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/20.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/21.png b/front/public/images/large/enhancedlootbags/lootbag/21.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/21.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/22.png b/front/public/images/large/enhancedlootbags/lootbag/22.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/22.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/23.png b/front/public/images/large/enhancedlootbags/lootbag/23.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/23.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/24.png b/front/public/images/large/enhancedlootbags/lootbag/24.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/24.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/25.png b/front/public/images/large/enhancedlootbags/lootbag/25.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/25.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/26.png b/front/public/images/large/enhancedlootbags/lootbag/26.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/26.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/27.png b/front/public/images/large/enhancedlootbags/lootbag/27.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/27.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/28.png b/front/public/images/large/enhancedlootbags/lootbag/28.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/28.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/29.png b/front/public/images/large/enhancedlootbags/lootbag/29.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/29.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/3.png b/front/public/images/large/enhancedlootbags/lootbag/3.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/3.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/30.png b/front/public/images/large/enhancedlootbags/lootbag/30.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/30.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/31.png b/front/public/images/large/enhancedlootbags/lootbag/31.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/31.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/32.png b/front/public/images/large/enhancedlootbags/lootbag/32.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/32.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/33.png b/front/public/images/large/enhancedlootbags/lootbag/33.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/33.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/34.png b/front/public/images/large/enhancedlootbags/lootbag/34.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/34.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/35.png b/front/public/images/large/enhancedlootbags/lootbag/35.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/35.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/36.png b/front/public/images/large/enhancedlootbags/lootbag/36.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/36.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/37.png b/front/public/images/large/enhancedlootbags/lootbag/37.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/37.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/38.png b/front/public/images/large/enhancedlootbags/lootbag/38.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/38.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/39.png b/front/public/images/large/enhancedlootbags/lootbag/39.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/39.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/4.png b/front/public/images/large/enhancedlootbags/lootbag/4.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/4.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/40.png b/front/public/images/large/enhancedlootbags/lootbag/40.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/40.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/41.png b/front/public/images/large/enhancedlootbags/lootbag/41.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/41.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/42.png b/front/public/images/large/enhancedlootbags/lootbag/42.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/42.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/43.png b/front/public/images/large/enhancedlootbags/lootbag/43.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/43.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/44.png b/front/public/images/large/enhancedlootbags/lootbag/44.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/44.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/45.png b/front/public/images/large/enhancedlootbags/lootbag/45.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/45.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/46.png b/front/public/images/large/enhancedlootbags/lootbag/46.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/46.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/47.png b/front/public/images/large/enhancedlootbags/lootbag/47.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/47.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/48.png b/front/public/images/large/enhancedlootbags/lootbag/48.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/48.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/49.png b/front/public/images/large/enhancedlootbags/lootbag/49.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/49.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/5.png b/front/public/images/large/enhancedlootbags/lootbag/5.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/5.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/50.png b/front/public/images/large/enhancedlootbags/lootbag/50.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/50.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/51.png b/front/public/images/large/enhancedlootbags/lootbag/51.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/51.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/52.png b/front/public/images/large/enhancedlootbags/lootbag/52.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/52.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/53.png b/front/public/images/large/enhancedlootbags/lootbag/53.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/53.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/54.png b/front/public/images/large/enhancedlootbags/lootbag/54.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/54.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/55.png b/front/public/images/large/enhancedlootbags/lootbag/55.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/55.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/56.png b/front/public/images/large/enhancedlootbags/lootbag/56.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/56.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/57.png b/front/public/images/large/enhancedlootbags/lootbag/57.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/57.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/58.png b/front/public/images/large/enhancedlootbags/lootbag/58.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/58.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/6.png b/front/public/images/large/enhancedlootbags/lootbag/6.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/6.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/7.png b/front/public/images/large/enhancedlootbags/lootbag/7.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/7.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/8.png b/front/public/images/large/enhancedlootbags/lootbag/8.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/8.png and /dev/null differ diff --git a/front/public/images/large/enhancedlootbags/lootbag/9.png b/front/public/images/large/enhancedlootbags/lootbag/9.png deleted file mode 100644 index 3bc6a3e9a9..0000000000 Binary files a/front/public/images/large/enhancedlootbags/lootbag/9.png and /dev/null differ diff --git a/front/public/images/large/eternalsingularity/eternal_singularity/0.png b/front/public/images/large/eternalsingularity/eternal_singularity/0.png deleted file mode 100644 index b6203cb581..0000000000 Binary files a/front/public/images/large/eternalsingularity/eternal_singularity/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockAdditionalEldritchPortal/0.png b/front/public/images/large/gadomancy/BlockAdditionalEldritchPortal/0.png deleted file mode 100644 index babbca1c6a..0000000000 Binary files a/front/public/images/large/gadomancy/BlockAdditionalEldritchPortal/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockArcaneDropper/0.png b/front/public/images/large/gadomancy/BlockArcaneDropper/0.png deleted file mode 100644 index 355cfa33fc..0000000000 Binary files a/front/public/images/large/gadomancy/BlockArcaneDropper/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockAuraPylon/0.png b/front/public/images/large/gadomancy/BlockAuraPylon/0.png deleted file mode 100644 index 637a220ac6..0000000000 Binary files a/front/public/images/large/gadomancy/BlockAuraPylon/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockAuraPylon/1.png b/front/public/images/large/gadomancy/BlockAuraPylon/1.png deleted file mode 100644 index e4bf681340..0000000000 Binary files a/front/public/images/large/gadomancy/BlockAuraPylon/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockEssentiaCompressor/0.png b/front/public/images/large/gadomancy/BlockEssentiaCompressor/0.png deleted file mode 100644 index 75a431c829..0000000000 Binary files a/front/public/images/large/gadomancy/BlockEssentiaCompressor/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockExtendedNodeJar/0.png b/front/public/images/large/gadomancy/BlockExtendedNodeJar/0.png deleted file mode 100644 index 907bf16832..0000000000 Binary files a/front/public/images/large/gadomancy/BlockExtendedNodeJar/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockInfusionClaw/0.png b/front/public/images/large/gadomancy/BlockInfusionClaw/0.png deleted file mode 100644 index f2ee80b5c9..0000000000 Binary files a/front/public/images/large/gadomancy/BlockInfusionClaw/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockKnowledgeBook/0.png b/front/public/images/large/gadomancy/BlockKnowledgeBook/0.png deleted file mode 100644 index 6f0f3d2b72..0000000000 Binary files a/front/public/images/large/gadomancy/BlockKnowledgeBook/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockNodeManipulator/5.png b/front/public/images/large/gadomancy/BlockNodeManipulator/5.png deleted file mode 100644 index fa5c302955..0000000000 Binary files a/front/public/images/large/gadomancy/BlockNodeManipulator/5.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockRemoteJar/0.png b/front/public/images/large/gadomancy/BlockRemoteJar/0.png deleted file mode 100644 index a8c3d5ba41..0000000000 Binary files a/front/public/images/large/gadomancy/BlockRemoteJar/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStickyJar/0.png b/front/public/images/large/gadomancy/BlockStickyJar/0.png deleted file mode 100644 index 4309b286c5..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStickyJar/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStickyJar/1.png b/front/public/images/large/gadomancy/BlockStickyJar/1.png deleted file mode 100644 index 4309b286c5..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStickyJar/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStickyJar/3.png b/front/public/images/large/gadomancy/BlockStickyJar/3.png deleted file mode 100644 index 4309b286c5..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStickyJar/3.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStoneMachine/0.png b/front/public/images/large/gadomancy/BlockStoneMachine/0.png deleted file mode 100644 index 8795e95bfe..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStoneMachine/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStoneMachine/1.png b/front/public/images/large/gadomancy/BlockStoneMachine/1.png deleted file mode 100644 index 4fd9f4b637..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStoneMachine/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStoneMachine/2.png b/front/public/images/large/gadomancy/BlockStoneMachine/2.png deleted file mode 100644 index 6536d2257d..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStoneMachine/2.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStoneMachine/3.png b/front/public/images/large/gadomancy/BlockStoneMachine/3.png deleted file mode 100644 index be8303e01c..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStoneMachine/3.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/BlockStoneMachine/4.png b/front/public/images/large/gadomancy/BlockStoneMachine/4.png deleted file mode 100644 index 519eb82d29..0000000000 Binary files a/front/public/images/large/gadomancy/BlockStoneMachine/4.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemArcanePackage/0.png b/front/public/images/large/gadomancy/ItemArcanePackage/0.png deleted file mode 100644 index dd216d00fe..0000000000 Binary files a/front/public/images/large/gadomancy/ItemArcanePackage/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemArcanePackage/1.png b/front/public/images/large/gadomancy/ItemArcanePackage/1.png deleted file mode 100644 index 1f2445c2a3..0000000000 Binary files a/front/public/images/large/gadomancy/ItemArcanePackage/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemArcanePackage/2.png b/front/public/images/large/gadomancy/ItemArcanePackage/2.png deleted file mode 100644 index 197440ab21..0000000000 Binary files a/front/public/images/large/gadomancy/ItemArcanePackage/2.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemArcanePackage/3.png b/front/public/images/large/gadomancy/ItemArcanePackage/3.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/gadomancy/ItemArcanePackage/3.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemAuraCore/0.png b/front/public/images/large/gadomancy/ItemAuraCore/0.png deleted file mode 100644 index 771bd48fbf..0000000000 Binary files a/front/public/images/large/gadomancy/ItemAuraCore/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemAuraCore/1.png b/front/public/images/large/gadomancy/ItemAuraCore/1.png deleted file mode 100644 index d29be98873..0000000000 Binary files a/front/public/images/large/gadomancy/ItemAuraCore/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemAuraCore/2.png b/front/public/images/large/gadomancy/ItemAuraCore/2.png deleted file mode 100644 index 1ea5510efa..0000000000 Binary files a/front/public/images/large/gadomancy/ItemAuraCore/2.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemAuraCore/3.png b/front/public/images/large/gadomancy/ItemAuraCore/3.png deleted file mode 100644 index 7dc0fad551..0000000000 Binary files a/front/public/images/large/gadomancy/ItemAuraCore/3.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemAuraCore/4.png b/front/public/images/large/gadomancy/ItemAuraCore/4.png deleted file mode 100644 index 8d3a444153..0000000000 Binary files a/front/public/images/large/gadomancy/ItemAuraCore/4.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemAuraCore/5.png b/front/public/images/large/gadomancy/ItemAuraCore/5.png deleted file mode 100644 index 97a45eec81..0000000000 Binary files a/front/public/images/large/gadomancy/ItemAuraCore/5.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemAuraCore/6.png b/front/public/images/large/gadomancy/ItemAuraCore/6.png deleted file mode 100644 index 9e7711a588..0000000000 Binary files a/front/public/images/large/gadomancy/ItemAuraCore/6.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemCreativeNode/0.png b/front/public/images/large/gadomancy/ItemCreativeNode/0.png deleted file mode 100644 index 87a134a22e..0000000000 Binary files a/front/public/images/large/gadomancy/ItemCreativeNode/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemCreativeNode/1.png b/front/public/images/large/gadomancy/ItemCreativeNode/1.png deleted file mode 100644 index 604a3260b9..0000000000 Binary files a/front/public/images/large/gadomancy/ItemCreativeNode/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemCreativeNode/2.png b/front/public/images/large/gadomancy/ItemCreativeNode/2.png deleted file mode 100644 index cd2677df96..0000000000 Binary files a/front/public/images/large/gadomancy/ItemCreativeNode/2.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemCreativeNode/3.png b/front/public/images/large/gadomancy/ItemCreativeNode/3.png deleted file mode 100644 index e6934b3658..0000000000 Binary files a/front/public/images/large/gadomancy/ItemCreativeNode/3.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemCreativeNode/4.png b/front/public/images/large/gadomancy/ItemCreativeNode/4.png deleted file mode 100644 index afd3c28707..0000000000 Binary files a/front/public/images/large/gadomancy/ItemCreativeNode/4.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemCreativeNode/5.png b/front/public/images/large/gadomancy/ItemCreativeNode/5.png deleted file mode 100644 index be04450b33..0000000000 Binary files a/front/public/images/large/gadomancy/ItemCreativeNode/5.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemElement/0.png b/front/public/images/large/gadomancy/ItemElement/0.png deleted file mode 100644 index 3ee89450e2..0000000000 Binary files a/front/public/images/large/gadomancy/ItemElement/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemEtherealFamiliar/0.png b/front/public/images/large/gadomancy/ItemEtherealFamiliar/0.png deleted file mode 100644 index 67b5979f58..0000000000 Binary files a/front/public/images/large/gadomancy/ItemEtherealFamiliar/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemExtendedNodeJar/0.png b/front/public/images/large/gadomancy/ItemExtendedNodeJar/0.png deleted file mode 100644 index c471ba110c..0000000000 Binary files a/front/public/images/large/gadomancy/ItemExtendedNodeJar/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/0.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/0.png deleted file mode 100644 index e9e9d8fa8a..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/1.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/1.png deleted file mode 100644 index 84c70a23d9..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/2.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/2.png deleted file mode 100644 index 1f2171395a..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/2.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/3.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/3.png deleted file mode 100644 index 1e4dc7f7f0..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/3.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/4.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/4.png deleted file mode 100644 index 0742f26e21..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/4.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/5.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/5.png deleted file mode 100644 index 917ef98eb2..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/5.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/6.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/6.png deleted file mode 100644 index 6c1e8b6a94..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/6.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/7.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/7.png deleted file mode 100644 index 35feea992f..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/7.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/8.png b/front/public/images/large/gadomancy/ItemFakeGolemPlacer/8.png deleted file mode 100644 index 9d6ff941a9..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeGolemPlacer/8.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFakeModIcon/0.png b/front/public/images/large/gadomancy/ItemFakeModIcon/0.png deleted file mode 100644 index 8073477789..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFakeModIcon/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemFamiliar/0.png b/front/public/images/large/gadomancy/ItemFamiliar/0.png deleted file mode 100644 index 8073477789..0000000000 Binary files a/front/public/images/large/gadomancy/ItemFamiliar/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemGolemCoreBreak/0.png b/front/public/images/large/gadomancy/ItemGolemCoreBreak/0.png deleted file mode 100644 index 0ea24bc4f2..0000000000 Binary files a/front/public/images/large/gadomancy/ItemGolemCoreBreak/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemGolemCoreBreak/1.png b/front/public/images/large/gadomancy/ItemGolemCoreBreak/1.png deleted file mode 100644 index 4513da0d43..0000000000 Binary files a/front/public/images/large/gadomancy/ItemGolemCoreBreak/1.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/ItemTransformationFocus/0.png b/front/public/images/large/gadomancy/ItemTransformationFocus/0.png deleted file mode 100644 index 5a1fa6eb15..0000000000 Binary files a/front/public/images/large/gadomancy/ItemTransformationFocus/0.png and /dev/null differ diff --git a/front/public/images/large/gadomancy/itemSilverwoodGolemPlacer/8.png b/front/public/images/large/gadomancy/itemSilverwoodGolemPlacer/8.png deleted file mode 100644 index 9d6ff941a9..0000000000 Binary files a/front/public/images/large/gadomancy/itemSilverwoodGolemPlacer/8.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/0.png b/front/public/images/large/gendustry/ApiaryUpgrade/0.png deleted file mode 100644 index 2d89760e20..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/1.png b/front/public/images/large/gendustry/ApiaryUpgrade/1.png deleted file mode 100644 index 5ecb6d39e9..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/1.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/10.png b/front/public/images/large/gendustry/ApiaryUpgrade/10.png deleted file mode 100644 index d687b61011..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/10.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/11.png b/front/public/images/large/gendustry/ApiaryUpgrade/11.png deleted file mode 100644 index 901d9da440..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/11.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/12.png b/front/public/images/large/gendustry/ApiaryUpgrade/12.png deleted file mode 100644 index 71e28172e7..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/12.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/13.png b/front/public/images/large/gendustry/ApiaryUpgrade/13.png deleted file mode 100644 index cfbe5c7022..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/13.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/14.png b/front/public/images/large/gendustry/ApiaryUpgrade/14.png deleted file mode 100644 index e3991d047f..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/14.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/15.png b/front/public/images/large/gendustry/ApiaryUpgrade/15.png deleted file mode 100644 index 6bf6d3d186..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/15.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/16.png b/front/public/images/large/gendustry/ApiaryUpgrade/16.png deleted file mode 100644 index f1f19accf2..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/16.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/17.png b/front/public/images/large/gendustry/ApiaryUpgrade/17.png deleted file mode 100644 index c6ed563800..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/17.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/18.png b/front/public/images/large/gendustry/ApiaryUpgrade/18.png deleted file mode 100644 index a987814c91..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/18.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/19.png b/front/public/images/large/gendustry/ApiaryUpgrade/19.png deleted file mode 100644 index 291aa99711..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/19.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/2.png b/front/public/images/large/gendustry/ApiaryUpgrade/2.png deleted file mode 100644 index e42cde3ce1..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/2.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/20.png b/front/public/images/large/gendustry/ApiaryUpgrade/20.png deleted file mode 100644 index 7a0f7d133b..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/20.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/21.png b/front/public/images/large/gendustry/ApiaryUpgrade/21.png deleted file mode 100644 index e7406d2e34..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/21.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/22.png b/front/public/images/large/gendustry/ApiaryUpgrade/22.png deleted file mode 100644 index 2ff5976a15..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/22.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/3.png b/front/public/images/large/gendustry/ApiaryUpgrade/3.png deleted file mode 100644 index 83bee0e28d..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/3.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/4.png b/front/public/images/large/gendustry/ApiaryUpgrade/4.png deleted file mode 100644 index 5220dd4ab2..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/4.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/5.png b/front/public/images/large/gendustry/ApiaryUpgrade/5.png deleted file mode 100644 index 2383c5fc8a..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/5.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/6.png b/front/public/images/large/gendustry/ApiaryUpgrade/6.png deleted file mode 100644 index e96af7e717..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/6.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ApiaryUpgrade/7.png b/front/public/images/large/gendustry/ApiaryUpgrade/7.png deleted file mode 100644 index 117be4698a..0000000000 Binary files a/front/public/images/large/gendustry/ApiaryUpgrade/7.png and /dev/null differ diff --git a/front/public/images/large/gendustry/BeeReceptacle/0.png b/front/public/images/large/gendustry/BeeReceptacle/0.png deleted file mode 100644 index 75877d4b76..0000000000 Binary files a/front/public/images/large/gendustry/BeeReceptacle/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ClimateModule/0.png b/front/public/images/large/gendustry/ClimateModule/0.png deleted file mode 100644 index 1350de08bb..0000000000 Binary files a/front/public/images/large/gendustry/ClimateModule/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/EjectCover/0.png b/front/public/images/large/gendustry/EjectCover/0.png deleted file mode 100644 index 9381b2f598..0000000000 Binary files a/front/public/images/large/gendustry/EjectCover/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/EnvProcessor/0.png b/front/public/images/large/gendustry/EnvProcessor/0.png deleted file mode 100644 index 5562a29a60..0000000000 Binary files a/front/public/images/large/gendustry/EnvProcessor/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ErrorSensorCover/0.png b/front/public/images/large/gendustry/ErrorSensorCover/0.png deleted file mode 100644 index 422bcab583..0000000000 Binary files a/front/public/images/large/gendustry/ErrorSensorCover/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Extractor/0.png b/front/public/images/large/gendustry/Extractor/0.png deleted file mode 100644 index e6a814057a..0000000000 Binary files a/front/public/images/large/gendustry/Extractor/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/GeneSample/0.png b/front/public/images/large/gendustry/GeneSample/0.png deleted file mode 100644 index e22bfb31a3..0000000000 Binary files a/front/public/images/large/gendustry/GeneSample/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/GeneSampleBlank/0.png b/front/public/images/large/gendustry/GeneSampleBlank/0.png deleted file mode 100644 index 9a0357b028..0000000000 Binary files a/front/public/images/large/gendustry/GeneSampleBlank/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/GeneTemplate/0.png b/front/public/images/large/gendustry/GeneTemplate/0.png deleted file mode 100644 index 7e2258fb2a..0000000000 Binary files a/front/public/images/large/gendustry/GeneTemplate/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/GeneticsProcessor/0.png b/front/public/images/large/gendustry/GeneticsProcessor/0.png deleted file mode 100644 index d34e939feb..0000000000 Binary files a/front/public/images/large/gendustry/GeneticsProcessor/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HiveSpawnDebugger/0.png b/front/public/images/large/gendustry/HiveSpawnDebugger/0.png deleted file mode 100644 index 8262a1bf19..0000000000 Binary files a/front/public/images/large/gendustry/HiveSpawnDebugger/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/10.png b/front/public/images/large/gendustry/HoneyComb/10.png deleted file mode 100644 index 3f1dc9489b..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/10.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/11.png b/front/public/images/large/gendustry/HoneyComb/11.png deleted file mode 100644 index 5ed3d86431..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/11.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/12.png b/front/public/images/large/gendustry/HoneyComb/12.png deleted file mode 100644 index 2e4ee96722..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/12.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/13.png b/front/public/images/large/gendustry/HoneyComb/13.png deleted file mode 100644 index 302da00eee..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/13.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/14.png b/front/public/images/large/gendustry/HoneyComb/14.png deleted file mode 100644 index 15e5be5e5b..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/14.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/15.png b/front/public/images/large/gendustry/HoneyComb/15.png deleted file mode 100644 index 63e1093b06..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/15.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/16.png b/front/public/images/large/gendustry/HoneyComb/16.png deleted file mode 100644 index 23cff5101c..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/16.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/17.png b/front/public/images/large/gendustry/HoneyComb/17.png deleted file mode 100644 index 74beacb86f..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/17.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/18.png b/front/public/images/large/gendustry/HoneyComb/18.png deleted file mode 100644 index d300af4ae6..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/18.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/19.png b/front/public/images/large/gendustry/HoneyComb/19.png deleted file mode 100644 index e18aff2b61..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/19.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/20.png b/front/public/images/large/gendustry/HoneyComb/20.png deleted file mode 100644 index a73a164f2a..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/20.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/21.png b/front/public/images/large/gendustry/HoneyComb/21.png deleted file mode 100644 index 7a6d43692c..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/21.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/22.png b/front/public/images/large/gendustry/HoneyComb/22.png deleted file mode 100644 index b643d8e08c..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/22.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/23.png b/front/public/images/large/gendustry/HoneyComb/23.png deleted file mode 100644 index cb5beb1a1d..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/23.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/24.png b/front/public/images/large/gendustry/HoneyComb/24.png deleted file mode 100644 index 083a7fe24a..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/24.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyComb/25.png b/front/public/images/large/gendustry/HoneyComb/25.png deleted file mode 100644 index 407dd04db6..0000000000 Binary files a/front/public/images/large/gendustry/HoneyComb/25.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/10.png b/front/public/images/large/gendustry/HoneyDrop/10.png deleted file mode 100644 index 1d2a64b65c..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/10.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/11.png b/front/public/images/large/gendustry/HoneyDrop/11.png deleted file mode 100644 index 44c564336f..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/11.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/12.png b/front/public/images/large/gendustry/HoneyDrop/12.png deleted file mode 100644 index 20efd8c3c1..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/12.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/13.png b/front/public/images/large/gendustry/HoneyDrop/13.png deleted file mode 100644 index 17d01a4c5c..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/13.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/14.png b/front/public/images/large/gendustry/HoneyDrop/14.png deleted file mode 100644 index 0109cd4bdc..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/14.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/15.png b/front/public/images/large/gendustry/HoneyDrop/15.png deleted file mode 100644 index 9b6c0c7e92..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/15.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/16.png b/front/public/images/large/gendustry/HoneyDrop/16.png deleted file mode 100644 index dbb781d14c..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/16.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/17.png b/front/public/images/large/gendustry/HoneyDrop/17.png deleted file mode 100644 index 3d3e27f41f..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/17.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/18.png b/front/public/images/large/gendustry/HoneyDrop/18.png deleted file mode 100644 index 0564c6a54a..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/18.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/19.png b/front/public/images/large/gendustry/HoneyDrop/19.png deleted file mode 100644 index 59eb26fdd8..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/19.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/20.png b/front/public/images/large/gendustry/HoneyDrop/20.png deleted file mode 100644 index 20000f2fff..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/20.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/21.png b/front/public/images/large/gendustry/HoneyDrop/21.png deleted file mode 100644 index 50e038d162..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/21.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/22.png b/front/public/images/large/gendustry/HoneyDrop/22.png deleted file mode 100644 index 5e1eae457e..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/22.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/23.png b/front/public/images/large/gendustry/HoneyDrop/23.png deleted file mode 100644 index 320559171d..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/23.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/24.png b/front/public/images/large/gendustry/HoneyDrop/24.png deleted file mode 100644 index 94aa6fe23a..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/24.png and /dev/null differ diff --git a/front/public/images/large/gendustry/HoneyDrop/25.png b/front/public/images/large/gendustry/HoneyDrop/25.png deleted file mode 100644 index 4a9d154019..0000000000 Binary files a/front/public/images/large/gendustry/HoneyDrop/25.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ImportCover/0.png b/front/public/images/large/gendustry/ImportCover/0.png deleted file mode 100644 index 441d250280..0000000000 Binary files a/front/public/images/large/gendustry/ImportCover/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Imprinter/0.png b/front/public/images/large/gendustry/Imprinter/0.png deleted file mode 100644 index 81413d2a53..0000000000 Binary files a/front/public/images/large/gendustry/Imprinter/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/IndustrialApiary/0.png b/front/public/images/large/gendustry/IndustrialApiary/0.png deleted file mode 100644 index fff8b8f06a..0000000000 Binary files a/front/public/images/large/gendustry/IndustrialApiary/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/IndustrialGrafter/0.png b/front/public/images/large/gendustry/IndustrialGrafter/0.png deleted file mode 100644 index 4376e7b30d..0000000000 Binary files a/front/public/images/large/gendustry/IndustrialGrafter/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/IndustrialGrafter/1.png b/front/public/images/large/gendustry/IndustrialGrafter/1.png deleted file mode 100644 index 4376e7b30d..0000000000 Binary files a/front/public/images/large/gendustry/IndustrialGrafter/1.png and /dev/null differ diff --git a/front/public/images/large/gendustry/IndustrialScoop/0.png b/front/public/images/large/gendustry/IndustrialScoop/0.png deleted file mode 100644 index 8316c43a6a..0000000000 Binary files a/front/public/images/large/gendustry/IndustrialScoop/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/IndustrialScoop/1.png b/front/public/images/large/gendustry/IndustrialScoop/1.png deleted file mode 100644 index 8316c43a6a..0000000000 Binary files a/front/public/images/large/gendustry/IndustrialScoop/1.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Labware/0.png b/front/public/images/large/gendustry/Labware/0.png deleted file mode 100644 index 1c93fd38cf..0000000000 Binary files a/front/public/images/large/gendustry/Labware/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/LiquidDNABucket/0.png b/front/public/images/large/gendustry/LiquidDNABucket/0.png deleted file mode 100644 index 14ad0cd6ab..0000000000 Binary files a/front/public/images/large/gendustry/LiquidDNABucket/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/LiquidDNACan/0.png b/front/public/images/large/gendustry/LiquidDNACan/0.png deleted file mode 100644 index 60d9f62783..0000000000 Binary files a/front/public/images/large/gendustry/LiquidDNACan/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Liquifier/0.png b/front/public/images/large/gendustry/Liquifier/0.png deleted file mode 100644 index a67abcd728..0000000000 Binary files a/front/public/images/large/gendustry/Liquifier/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/MutagenBucket/0.png b/front/public/images/large/gendustry/MutagenBucket/0.png deleted file mode 100644 index c1b77799e6..0000000000 Binary files a/front/public/images/large/gendustry/MutagenBucket/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/MutagenCan/0.png b/front/public/images/large/gendustry/MutagenCan/0.png deleted file mode 100644 index ebf3f0bf9d..0000000000 Binary files a/front/public/images/large/gendustry/MutagenCan/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/MutagenProducer/0.png b/front/public/images/large/gendustry/MutagenProducer/0.png deleted file mode 100644 index b0c4ffaa9f..0000000000 Binary files a/front/public/images/large/gendustry/MutagenProducer/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/MutagenTank/0.png b/front/public/images/large/gendustry/MutagenTank/0.png deleted file mode 100644 index 675cba7f13..0000000000 Binary files a/front/public/images/large/gendustry/MutagenTank/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Mutatron/0.png b/front/public/images/large/gendustry/Mutatron/0.png deleted file mode 100644 index 0dbfa27e7f..0000000000 Binary files a/front/public/images/large/gendustry/Mutatron/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/MutatronAdv/0.png b/front/public/images/large/gendustry/MutatronAdv/0.png deleted file mode 100644 index f78138657a..0000000000 Binary files a/front/public/images/large/gendustry/MutatronAdv/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/PollenKit/0.png b/front/public/images/large/gendustry/PollenKit/0.png deleted file mode 100644 index bc9a6ade12..0000000000 Binary files a/front/public/images/large/gendustry/PollenKit/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/PowerModule/0.png b/front/public/images/large/gendustry/PowerModule/0.png deleted file mode 100644 index bfdc9285b5..0000000000 Binary files a/front/public/images/large/gendustry/PowerModule/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ProteinBucket/0.png b/front/public/images/large/gendustry/ProteinBucket/0.png deleted file mode 100644 index f84de31579..0000000000 Binary files a/front/public/images/large/gendustry/ProteinBucket/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/ProteinCan/0.png b/front/public/images/large/gendustry/ProteinCan/0.png deleted file mode 100644 index 9ab2d4d27c..0000000000 Binary files a/front/public/images/large/gendustry/ProteinCan/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Replicator/0.png b/front/public/images/large/gendustry/Replicator/0.png deleted file mode 100644 index e180553164..0000000000 Binary files a/front/public/images/large/gendustry/Replicator/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Sampler/0.png b/front/public/images/large/gendustry/Sampler/0.png deleted file mode 100644 index bb8e7d5bf9..0000000000 Binary files a/front/public/images/large/gendustry/Sampler/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Transposer/0.png b/front/public/images/large/gendustry/Transposer/0.png deleted file mode 100644 index 201b1f423c..0000000000 Binary files a/front/public/images/large/gendustry/Transposer/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/UpgradeFrame/0.png b/front/public/images/large/gendustry/UpgradeFrame/0.png deleted file mode 100644 index b62fa66b63..0000000000 Binary files a/front/public/images/large/gendustry/UpgradeFrame/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/Waste/0.png b/front/public/images/large/gendustry/Waste/0.png deleted file mode 100644 index 247dc924ba..0000000000 Binary files a/front/public/images/large/gendustry/Waste/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/fluid.LiquidDNA/0.png b/front/public/images/large/gendustry/fluid.LiquidDNA/0.png deleted file mode 100644 index bf2aff642f..0000000000 Binary files a/front/public/images/large/gendustry/fluid.LiquidDNA/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/fluid.Mutagen/0.png b/front/public/images/large/gendustry/fluid.Mutagen/0.png deleted file mode 100644 index 01f1190ae2..0000000000 Binary files a/front/public/images/large/gendustry/fluid.Mutagen/0.png and /dev/null differ diff --git a/front/public/images/large/gendustry/fluid.Protein/0.png b/front/public/images/large/gendustry/fluid.Protein/0.png deleted file mode 100644 index aa6c471cc5..0000000000 Binary files a/front/public/images/large/gendustry/fluid.Protein/0.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/0.png b/front/public/images/large/ggfab/gt.ggfab.d1/0.png deleted file mode 100644 index f5eb3b074d..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/0.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/1.png b/front/public/images/large/ggfab/gt.ggfab.d1/1.png deleted file mode 100644 index 163ebd14b7..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/1.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/2.png b/front/public/images/large/ggfab/gt.ggfab.d1/2.png deleted file mode 100644 index e26e8cee72..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/2.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/3.png b/front/public/images/large/ggfab/gt.ggfab.d1/3.png deleted file mode 100644 index 662f4b8689..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/3.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/30.png b/front/public/images/large/ggfab/gt.ggfab.d1/30.png deleted file mode 100644 index 6007d617a1..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/30.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/31.png b/front/public/images/large/ggfab/gt.ggfab.d1/31.png deleted file mode 100644 index e609798260..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/31.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/32.png b/front/public/images/large/ggfab/gt.ggfab.d1/32.png deleted file mode 100644 index 44e1826ab1..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/32.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/33.png b/front/public/images/large/ggfab/gt.ggfab.d1/33.png deleted file mode 100644 index fb3d751387..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/33.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/34.png b/front/public/images/large/ggfab/gt.ggfab.d1/34.png deleted file mode 100644 index 1c5c656d32..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/34.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/35.png b/front/public/images/large/ggfab/gt.ggfab.d1/35.png deleted file mode 100644 index 7cc5be2a49..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/35.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/36.png b/front/public/images/large/ggfab/gt.ggfab.d1/36.png deleted file mode 100644 index 84abde9e3a..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/36.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/4.png b/front/public/images/large/ggfab/gt.ggfab.d1/4.png deleted file mode 100644 index 8f0f3c8acd..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/4.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/5.png b/front/public/images/large/ggfab/gt.ggfab.d1/5.png deleted file mode 100644 index 260ee91129..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/5.png and /dev/null differ diff --git a/front/public/images/large/ggfab/gt.ggfab.d1/6.png b/front/public/images/large/ggfab/gt.ggfab.d1/6.png deleted file mode 100644 index c6ba4c8015..0000000000 Binary files a/front/public/images/large/ggfab/gt.ggfab.d1/6.png and /dev/null differ diff --git a/front/public/images/large/gravisuiteneo/epicLappack/1.png b/front/public/images/large/gravisuiteneo/epicLappack/1.png deleted file mode 100644 index ed2df2640f..0000000000 Binary files a/front/public/images/large/gravisuiteneo/epicLappack/1.png and /dev/null differ diff --git a/front/public/images/large/gravisuiteneo/epicLappack/27.png b/front/public/images/large/gravisuiteneo/epicLappack/27.png deleted file mode 100644 index ed2df2640f..0000000000 Binary files a/front/public/images/large/gravisuiteneo/epicLappack/27.png and /dev/null differ diff --git a/front/public/images/large/gravisuiteneo/itemPlasmaCell/27.png b/front/public/images/large/gravisuiteneo/itemPlasmaCell/27.png deleted file mode 100644 index ce7af3d50e..0000000000 Binary files a/front/public/images/large/gravisuiteneo/itemPlasmaCell/27.png and /dev/null differ diff --git a/front/public/images/large/gravisuiteneo/sonicLauncher/0.png b/front/public/images/large/gravisuiteneo/sonicLauncher/0.png deleted file mode 100644 index 0910e764b2..0000000000 Binary files a/front/public/images/large/gravisuiteneo/sonicLauncher/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.1080k_Space_Coolantcell/0.png b/front/public/images/large/gregtech/gt.1080k_Space_Coolantcell/0.png deleted file mode 100644 index 5e5ced02f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.1080k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.180k_Helium_Coolantcell/0.png b/front/public/images/large/gregtech/gt.180k_Helium_Coolantcell/0.png deleted file mode 100644 index d9d55a5b58..0000000000 Binary files a/front/public/images/large/gregtech/gt.180k_Helium_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.180k_NaK_Coolantcell/0.png b/front/public/images/large/gregtech/gt.180k_NaK_Coolantcell/0.png deleted file mode 100644 index ad8713844b..0000000000 Binary files a/front/public/images/large/gregtech/gt.180k_NaK_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.180k_Space_Coolantcell/0.png b/front/public/images/large/gregtech/gt.180k_Space_Coolantcell/0.png deleted file mode 100644 index 3bfa8c3be9..0000000000 Binary files a/front/public/images/large/gregtech/gt.180k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.360k_Helium_Coolantcell/0.png b/front/public/images/large/gregtech/gt.360k_Helium_Coolantcell/0.png deleted file mode 100644 index 4eba448f9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.360k_Helium_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.360k_NaK_Coolantcell/0.png b/front/public/images/large/gregtech/gt.360k_NaK_Coolantcell/0.png deleted file mode 100644 index bc26475926..0000000000 Binary files a/front/public/images/large/gregtech/gt.360k_NaK_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.360k_Space_Coolantcell/0.png b/front/public/images/large/gregtech/gt.360k_Space_Coolantcell/0.png deleted file mode 100644 index 4ea12a5d9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.360k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.540k_Space_Coolantcell/0.png b/front/public/images/large/gregtech/gt.540k_Space_Coolantcell/0.png deleted file mode 100644 index 2249af2dfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.540k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.60k_Helium_Coolantcell/0.png b/front/public/images/large/gregtech/gt.60k_Helium_Coolantcell/0.png deleted file mode 100644 index c1a651e56c..0000000000 Binary files a/front/public/images/large/gregtech/gt.60k_Helium_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.60k_NaK_Coolantcell/0.png b/front/public/images/large/gregtech/gt.60k_NaK_Coolantcell/0.png deleted file mode 100644 index 2822039cd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.60k_NaK_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Double_MNqCell/0.png b/front/public/images/large/gregtech/gt.Double_MNqCell/0.png deleted file mode 100644 index fadfb38665..0000000000 Binary files a/front/public/images/large/gregtech/gt.Double_MNqCell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Double_MNqCellDep/0.png b/front/public/images/large/gregtech/gt.Double_MNqCellDep/0.png deleted file mode 100644 index dea3a475f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.Double_MNqCellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Double_Naquadahcell/0.png b/front/public/images/large/gregtech/gt.Double_Naquadahcell/0.png deleted file mode 100644 index beaab51b8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.Double_Naquadahcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Double_NaquadahcellDep/0.png b/front/public/images/large/gregtech/gt.Double_NaquadahcellDep/0.png deleted file mode 100644 index dd81e0ffc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.Double_NaquadahcellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Double_Thoriumcell/0.png b/front/public/images/large/gregtech/gt.Double_Thoriumcell/0.png deleted file mode 100644 index dbc9779bd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.Double_Thoriumcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Double_ThoriumcellDep/0.png b/front/public/images/large/gregtech/gt.Double_ThoriumcellDep/0.png deleted file mode 100644 index dbc9779bd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.Double_ThoriumcellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/0.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/0.png deleted file mode 100644 index 4ca233dfee..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/1.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/1.png deleted file mode 100644 index 4ca233dfee..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/10.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/10.png deleted file mode 100644 index 3d2db84f27..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/11.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/11.png deleted file mode 100644 index 73d7066c87..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/12.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/12.png deleted file mode 100644 index 4d512fa7c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/13.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/13.png deleted file mode 100644 index a6d1504f77..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/14.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/14.png deleted file mode 100644 index 63ebda809e..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/15.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/15.png deleted file mode 100644 index dff5e69d44..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/2.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/2.png deleted file mode 100644 index 0d1ec2a5fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/3.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/3.png deleted file mode 100644 index a8c2981b36..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/4.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/4.png deleted file mode 100644 index 70abc03a59..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/5.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/5.png deleted file mode 100644 index 341e5bd78d..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/6.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/6.png deleted file mode 100644 index 1b73d378d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/7.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/7.png deleted file mode 100644 index 1c6ecba876..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/8.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/8.png deleted file mode 100644 index 716c78c336..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/9.png b/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/9.png deleted file mode 100644 index 58c96bde53..0000000000 Binary files a/front/public/images/large/gregtech/gt.GregTech_FluidDisplay/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.MNqCell/0.png b/front/public/images/large/gregtech/gt.MNqCell/0.png deleted file mode 100644 index 5af0f2d444..0000000000 Binary files a/front/public/images/large/gregtech/gt.MNqCell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.MNqCellDep/0.png b/front/public/images/large/gregtech/gt.MNqCellDep/0.png deleted file mode 100644 index d577efdb7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.MNqCellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Naquadahcell/0.png b/front/public/images/large/gregtech/gt.Naquadahcell/0.png deleted file mode 100644 index a87e5eecc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.Naquadahcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.NaquadahcellDep/0.png b/front/public/images/large/gregtech/gt.NaquadahcellDep/0.png deleted file mode 100644 index 91035ef18d..0000000000 Binary files a/front/public/images/large/gregtech/gt.NaquadahcellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Quad_MNqCell/0.png b/front/public/images/large/gregtech/gt.Quad_MNqCell/0.png deleted file mode 100644 index bc210143b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.Quad_MNqCell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Quad_MNqCellDep/0.png b/front/public/images/large/gregtech/gt.Quad_MNqCellDep/0.png deleted file mode 100644 index ae739aafa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.Quad_MNqCellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Quad_Naquadahcell/0.png b/front/public/images/large/gregtech/gt.Quad_Naquadahcell/0.png deleted file mode 100644 index 97d141dab3..0000000000 Binary files a/front/public/images/large/gregtech/gt.Quad_Naquadahcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Quad_NaquadahcellDep/0.png b/front/public/images/large/gregtech/gt.Quad_NaquadahcellDep/0.png deleted file mode 100644 index eeb628e84d..0000000000 Binary files a/front/public/images/large/gregtech/gt.Quad_NaquadahcellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Quad_Thoriumcell/0.png b/front/public/images/large/gregtech/gt.Quad_Thoriumcell/0.png deleted file mode 100644 index 1cb17b4387..0000000000 Binary files a/front/public/images/large/gregtech/gt.Quad_Thoriumcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Quad_ThoriumcellDep/0.png b/front/public/images/large/gregtech/gt.Quad_ThoriumcellDep/0.png deleted file mode 100644 index 1cb17b4387..0000000000 Binary files a/front/public/images/large/gregtech/gt.Quad_ThoriumcellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Thoriumcell/0.png b/front/public/images/large/gregtech/gt.Thoriumcell/0.png deleted file mode 100644 index 3fb5af1967..0000000000 Binary files a/front/public/images/large/gregtech/gt.Thoriumcell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.ThoriumcellDep/0.png b/front/public/images/large/gregtech/gt.ThoriumcellDep/0.png deleted file mode 100644 index 3fb5af1967..0000000000 Binary files a/front/public/images/large/gregtech/gt.ThoriumcellDep/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.Volumetric_Flask/0.png b/front/public/images/large/gregtech/gt.Volumetric_Flask/0.png deleted file mode 100644 index 5f0a554cc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.Volumetric_Flask/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.advancedsensorcard/0.png b/front/public/images/large/gregtech/gt.advancedsensorcard/0.png deleted file mode 100644 index 234e97975b..0000000000 Binary files a/front/public/images/large/gregtech/gt.advancedsensorcard/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.block.longdistancepipe/0.png b/front/public/images/large/gregtech/gt.block.longdistancepipe/0.png deleted file mode 100644 index 5003a6bea7..0000000000 Binary files a/front/public/images/large/gregtech/gt.block.longdistancepipe/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.block.longdistancepipe/1.png b/front/public/images/large/gregtech/gt.block.longdistancepipe/1.png deleted file mode 100644 index 83dcfb2b54..0000000000 Binary files a/front/public/images/large/gregtech/gt.block.longdistancepipe/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/0.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/0.png deleted file mode 100644 index 0a8c286989..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/1.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/1.png deleted file mode 100644 index ff8e70368d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/10.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/10.png deleted file mode 100644 index db8058c368..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/2.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/2.png deleted file mode 100644 index 7a76052333..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/3.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/3.png deleted file mode 100644 index f5dbae585b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/4.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/4.png deleted file mode 100644 index 9aab940903..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/5.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/5.png deleted file mode 100644 index d4007fafaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/6.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/6.png deleted file mode 100644 index ae188a8de7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/7.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/7.png deleted file mode 100644 index a879490f61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/8.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/8.png deleted file mode 100644 index b455110782..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/9.png b/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/9.png deleted file mode 100644 index 718fec1499..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings.cyclotron_coils/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/0.png b/front/public/images/large/gregtech/gt.blockcasings/0.png deleted file mode 100644 index 0eb3e327e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/1.png b/front/public/images/large/gregtech/gt.blockcasings/1.png deleted file mode 100644 index 27dd4bc9fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/10.png b/front/public/images/large/gregtech/gt.blockcasings/10.png deleted file mode 100644 index bdaa3af4ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/11.png b/front/public/images/large/gregtech/gt.blockcasings/11.png deleted file mode 100644 index 763630f4fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/12.png b/front/public/images/large/gregtech/gt.blockcasings/12.png deleted file mode 100644 index 8efe92242e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/13.png b/front/public/images/large/gregtech/gt.blockcasings/13.png deleted file mode 100644 index 882fb0fb87..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/14.png b/front/public/images/large/gregtech/gt.blockcasings/14.png deleted file mode 100644 index 50138311c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/15.png b/front/public/images/large/gregtech/gt.blockcasings/15.png deleted file mode 100644 index 9a30f04619..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/2.png b/front/public/images/large/gregtech/gt.blockcasings/2.png deleted file mode 100644 index ad13a51f30..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/3.png b/front/public/images/large/gregtech/gt.blockcasings/3.png deleted file mode 100644 index 573d431f4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/4.png b/front/public/images/large/gregtech/gt.blockcasings/4.png deleted file mode 100644 index 8862c9582d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/5.png b/front/public/images/large/gregtech/gt.blockcasings/5.png deleted file mode 100644 index e18f89cc0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/6.png b/front/public/images/large/gregtech/gt.blockcasings/6.png deleted file mode 100644 index 7f0e9946ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/7.png b/front/public/images/large/gregtech/gt.blockcasings/7.png deleted file mode 100644 index f7908928a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/8.png b/front/public/images/large/gregtech/gt.blockcasings/8.png deleted file mode 100644 index d4d4f36e41..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings/9.png b/front/public/images/large/gregtech/gt.blockcasings/9.png deleted file mode 100644 index c23b9f33d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/0.png b/front/public/images/large/gregtech/gt.blockcasings2/0.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/1.png b/front/public/images/large/gregtech/gt.blockcasings2/1.png deleted file mode 100644 index c215102edc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/10.png b/front/public/images/large/gregtech/gt.blockcasings2/10.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/11.png b/front/public/images/large/gregtech/gt.blockcasings2/11.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/12.png b/front/public/images/large/gregtech/gt.blockcasings2/12.png deleted file mode 100644 index b6db3d8599..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/13.png b/front/public/images/large/gregtech/gt.blockcasings2/13.png deleted file mode 100644 index 61ce313e5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/14.png b/front/public/images/large/gregtech/gt.blockcasings2/14.png deleted file mode 100644 index 77a6eb817d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/15.png b/front/public/images/large/gregtech/gt.blockcasings2/15.png deleted file mode 100644 index 77299bf1ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/2.png b/front/public/images/large/gregtech/gt.blockcasings2/2.png deleted file mode 100644 index 68e414b0a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/3.png b/front/public/images/large/gregtech/gt.blockcasings2/3.png deleted file mode 100644 index cbd83bb7e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/4.png b/front/public/images/large/gregtech/gt.blockcasings2/4.png deleted file mode 100644 index 23f4a36738..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/5.png b/front/public/images/large/gregtech/gt.blockcasings2/5.png deleted file mode 100644 index a085c872e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/6.png b/front/public/images/large/gregtech/gt.blockcasings2/6.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/7.png b/front/public/images/large/gregtech/gt.blockcasings2/7.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/8.png b/front/public/images/large/gregtech/gt.blockcasings2/8.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings2/9.png b/front/public/images/large/gregtech/gt.blockcasings2/9.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings2/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/0.png b/front/public/images/large/gregtech/gt.blockcasings3/0.png deleted file mode 100644 index 0c3302866e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/1.png b/front/public/images/large/gregtech/gt.blockcasings3/1.png deleted file mode 100644 index 5a58917cea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/10.png b/front/public/images/large/gregtech/gt.blockcasings3/10.png deleted file mode 100644 index a128402dbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/11.png b/front/public/images/large/gregtech/gt.blockcasings3/11.png deleted file mode 100644 index 7bb4d690ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/12.png b/front/public/images/large/gregtech/gt.blockcasings3/12.png deleted file mode 100644 index 4664de6a41..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/13.png b/front/public/images/large/gregtech/gt.blockcasings3/13.png deleted file mode 100644 index d32b04998e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/14.png b/front/public/images/large/gregtech/gt.blockcasings3/14.png deleted file mode 100644 index c869007f1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/15.png b/front/public/images/large/gregtech/gt.blockcasings3/15.png deleted file mode 100644 index 8743edc709..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/2.png b/front/public/images/large/gregtech/gt.blockcasings3/2.png deleted file mode 100644 index af2dd5af92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/3.png b/front/public/images/large/gregtech/gt.blockcasings3/3.png deleted file mode 100644 index 49b27111a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/4.png b/front/public/images/large/gregtech/gt.blockcasings3/4.png deleted file mode 100644 index f3728db7db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/5.png b/front/public/images/large/gregtech/gt.blockcasings3/5.png deleted file mode 100644 index 1d1144e326..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/6.png b/front/public/images/large/gregtech/gt.blockcasings3/6.png deleted file mode 100644 index 21637ff428..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/7.png b/front/public/images/large/gregtech/gt.blockcasings3/7.png deleted file mode 100644 index ff86f58c01..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/8.png b/front/public/images/large/gregtech/gt.blockcasings3/8.png deleted file mode 100644 index 34144c8a13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings3/9.png b/front/public/images/large/gregtech/gt.blockcasings3/9.png deleted file mode 100644 index 25ddbcfa39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings3/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/0.png b/front/public/images/large/gregtech/gt.blockcasings4/0.png deleted file mode 100644 index 891af06208..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/1.png b/front/public/images/large/gregtech/gt.blockcasings4/1.png deleted file mode 100644 index 23b7ae1412..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/10.png b/front/public/images/large/gregtech/gt.blockcasings4/10.png deleted file mode 100644 index 23b7ae1412..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/11.png b/front/public/images/large/gregtech/gt.blockcasings4/11.png deleted file mode 100644 index 7343e8a1d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/12.png b/front/public/images/large/gregtech/gt.blockcasings4/12.png deleted file mode 100644 index 891af06208..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/13.png b/front/public/images/large/gregtech/gt.blockcasings4/13.png deleted file mode 100644 index 1c23ada5fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/14.png b/front/public/images/large/gregtech/gt.blockcasings4/14.png deleted file mode 100644 index a1df320a33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/15.png b/front/public/images/large/gregtech/gt.blockcasings4/15.png deleted file mode 100644 index 1f9ed478f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/2.png b/front/public/images/large/gregtech/gt.blockcasings4/2.png deleted file mode 100644 index 7343e8a1d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/3.png b/front/public/images/large/gregtech/gt.blockcasings4/3.png deleted file mode 100644 index 43619d5e57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/6.png b/front/public/images/large/gregtech/gt.blockcasings4/6.png deleted file mode 100644 index 229b8a59f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/7.png b/front/public/images/large/gregtech/gt.blockcasings4/7.png deleted file mode 100644 index 0c36938ca5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/8.png b/front/public/images/large/gregtech/gt.blockcasings4/8.png deleted file mode 100644 index dc1bf4cbda..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings4/9.png b/front/public/images/large/gregtech/gt.blockcasings4/9.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings4/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/0.png b/front/public/images/large/gregtech/gt.blockcasings5/0.png deleted file mode 100644 index 0bf3ee4b03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/1.png b/front/public/images/large/gregtech/gt.blockcasings5/1.png deleted file mode 100644 index 81ee4a85ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/10.png b/front/public/images/large/gregtech/gt.blockcasings5/10.png deleted file mode 100644 index 530b0e70bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/11.png b/front/public/images/large/gregtech/gt.blockcasings5/11.png deleted file mode 100644 index 1d0713d057..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/12.png b/front/public/images/large/gregtech/gt.blockcasings5/12.png deleted file mode 100644 index d6a7c94da9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/13.png b/front/public/images/large/gregtech/gt.blockcasings5/13.png deleted file mode 100644 index 186e64e300..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/2.png b/front/public/images/large/gregtech/gt.blockcasings5/2.png deleted file mode 100644 index a5bcb438e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/3.png b/front/public/images/large/gregtech/gt.blockcasings5/3.png deleted file mode 100644 index 6f7263f1d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/4.png b/front/public/images/large/gregtech/gt.blockcasings5/4.png deleted file mode 100644 index 3085830cd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/5.png b/front/public/images/large/gregtech/gt.blockcasings5/5.png deleted file mode 100644 index 690ee433ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/6.png b/front/public/images/large/gregtech/gt.blockcasings5/6.png deleted file mode 100644 index a41e76415a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/7.png b/front/public/images/large/gregtech/gt.blockcasings5/7.png deleted file mode 100644 index ee4547a827..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/8.png b/front/public/images/large/gregtech/gt.blockcasings5/8.png deleted file mode 100644 index 4f6fe90aee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings5/9.png b/front/public/images/large/gregtech/gt.blockcasings5/9.png deleted file mode 100644 index 1f1e80b766..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings5/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/0.png b/front/public/images/large/gregtech/gt.blockcasings6/0.png deleted file mode 100644 index 8d9da24622..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/1.png b/front/public/images/large/gregtech/gt.blockcasings6/1.png deleted file mode 100644 index 7d37ac1696..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/10.png b/front/public/images/large/gregtech/gt.blockcasings6/10.png deleted file mode 100644 index b57d24831b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/11.png b/front/public/images/large/gregtech/gt.blockcasings6/11.png deleted file mode 100644 index 43089799ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/12.png b/front/public/images/large/gregtech/gt.blockcasings6/12.png deleted file mode 100644 index fc5f411924..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/13.png b/front/public/images/large/gregtech/gt.blockcasings6/13.png deleted file mode 100644 index c53cbdfc22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/14.png b/front/public/images/large/gregtech/gt.blockcasings6/14.png deleted file mode 100644 index 52ab85e92f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/2.png b/front/public/images/large/gregtech/gt.blockcasings6/2.png deleted file mode 100644 index 9b77c2646e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/3.png b/front/public/images/large/gregtech/gt.blockcasings6/3.png deleted file mode 100644 index 7a100ddd88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/4.png b/front/public/images/large/gregtech/gt.blockcasings6/4.png deleted file mode 100644 index e64f441b40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/5.png b/front/public/images/large/gregtech/gt.blockcasings6/5.png deleted file mode 100644 index 836b78fc70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/6.png b/front/public/images/large/gregtech/gt.blockcasings6/6.png deleted file mode 100644 index 307addd101..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/7.png b/front/public/images/large/gregtech/gt.blockcasings6/7.png deleted file mode 100644 index 48f7b57fdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/8.png b/front/public/images/large/gregtech/gt.blockcasings6/8.png deleted file mode 100644 index 7b264203d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings6/9.png b/front/public/images/large/gregtech/gt.blockcasings6/9.png deleted file mode 100644 index 42b00d0934..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings6/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/0.png b/front/public/images/large/gregtech/gt.blockcasings8/0.png deleted file mode 100644 index 6b5eec1f02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/1.png b/front/public/images/large/gregtech/gt.blockcasings8/1.png deleted file mode 100644 index 09f327f4fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/10.png b/front/public/images/large/gregtech/gt.blockcasings8/10.png deleted file mode 100644 index 3502f94a13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/11.png b/front/public/images/large/gregtech/gt.blockcasings8/11.png deleted file mode 100644 index 0a53114d9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/12.png b/front/public/images/large/gregtech/gt.blockcasings8/12.png deleted file mode 100644 index f37b4b8af6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/13.png b/front/public/images/large/gregtech/gt.blockcasings8/13.png deleted file mode 100644 index 1e73d678b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/14.png b/front/public/images/large/gregtech/gt.blockcasings8/14.png deleted file mode 100644 index 51645a17cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/2.png b/front/public/images/large/gregtech/gt.blockcasings8/2.png deleted file mode 100644 index 00211c60b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/3.png b/front/public/images/large/gregtech/gt.blockcasings8/3.png deleted file mode 100644 index cee2a6eacd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/4.png b/front/public/images/large/gregtech/gt.blockcasings8/4.png deleted file mode 100644 index 002ac39c4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/5.png b/front/public/images/large/gregtech/gt.blockcasings8/5.png deleted file mode 100644 index ab0712ef15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/6.png b/front/public/images/large/gregtech/gt.blockcasings8/6.png deleted file mode 100644 index 0273d294f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/7.png b/front/public/images/large/gregtech/gt.blockcasings8/7.png deleted file mode 100644 index d010103bce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/8.png b/front/public/images/large/gregtech/gt.blockcasings8/8.png deleted file mode 100644 index 43edc996f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings8/9.png b/front/public/images/large/gregtech/gt.blockcasings8/9.png deleted file mode 100644 index c2bf6b6e25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings8/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings9/0.png b/front/public/images/large/gregtech/gt.blockcasings9/0.png deleted file mode 100644 index 3d7b100ad8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings9/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockcasings9/1.png b/front/public/images/large/gregtech/gt.blockcasings9/1.png deleted file mode 100644 index 5ffebf03c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockcasings9/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/0.png b/front/public/images/large/gregtech/gt.blockconcretes/0.png deleted file mode 100644 index 16d7e1bf07..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/1.png b/front/public/images/large/gregtech/gt.blockconcretes/1.png deleted file mode 100644 index f548afd43f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/10.png b/front/public/images/large/gregtech/gt.blockconcretes/10.png deleted file mode 100644 index 6b6823ff1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/11.png b/front/public/images/large/gregtech/gt.blockconcretes/11.png deleted file mode 100644 index a2e6efcca5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/12.png b/front/public/images/large/gregtech/gt.blockconcretes/12.png deleted file mode 100644 index 634179362c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/13.png b/front/public/images/large/gregtech/gt.blockconcretes/13.png deleted file mode 100644 index 0857ecd077..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/14.png b/front/public/images/large/gregtech/gt.blockconcretes/14.png deleted file mode 100644 index fd63d82495..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/15.png b/front/public/images/large/gregtech/gt.blockconcretes/15.png deleted file mode 100644 index 8a63618f24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/2.png b/front/public/images/large/gregtech/gt.blockconcretes/2.png deleted file mode 100644 index e5deccdd73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/3.png b/front/public/images/large/gregtech/gt.blockconcretes/3.png deleted file mode 100644 index c947db0e7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/4.png b/front/public/images/large/gregtech/gt.blockconcretes/4.png deleted file mode 100644 index d59f2a11e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/5.png b/front/public/images/large/gregtech/gt.blockconcretes/5.png deleted file mode 100644 index 15ed1e00ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/6.png b/front/public/images/large/gregtech/gt.blockconcretes/6.png deleted file mode 100644 index 293450c99b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/7.png b/front/public/images/large/gregtech/gt.blockconcretes/7.png deleted file mode 100644 index 4baa4d43f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/8.png b/front/public/images/large/gregtech/gt.blockconcretes/8.png deleted file mode 100644 index 5f4ced6d45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockconcretes/9.png b/front/public/images/large/gregtech/gt.blockconcretes/9.png deleted file mode 100644 index 245e5d86b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockconcretes/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/0.png b/front/public/images/large/gregtech/gt.blockgem1/0.png deleted file mode 100644 index c3eb5d35bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/1.png b/front/public/images/large/gregtech/gt.blockgem1/1.png deleted file mode 100644 index 8c1d9a8568..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/10.png b/front/public/images/large/gregtech/gt.blockgem1/10.png deleted file mode 100644 index d4c556f63d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/11.png b/front/public/images/large/gregtech/gt.blockgem1/11.png deleted file mode 100644 index 76ae86fa88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/12.png b/front/public/images/large/gregtech/gt.blockgem1/12.png deleted file mode 100644 index 76ae86fa88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/13.png b/front/public/images/large/gregtech/gt.blockgem1/13.png deleted file mode 100644 index ff5d4ccfb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/14.png b/front/public/images/large/gregtech/gt.blockgem1/14.png deleted file mode 100644 index 79ca3a3691..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/15.png b/front/public/images/large/gregtech/gt.blockgem1/15.png deleted file mode 100644 index dabe82295e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/2.png b/front/public/images/large/gregtech/gt.blockgem1/2.png deleted file mode 100644 index af9e427c60..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/3.png b/front/public/images/large/gregtech/gt.blockgem1/3.png deleted file mode 100644 index 650c502ac1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/4.png b/front/public/images/large/gregtech/gt.blockgem1/4.png deleted file mode 100644 index e2362f59b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/5.png b/front/public/images/large/gregtech/gt.blockgem1/5.png deleted file mode 100644 index 0ab3fb297e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/6.png b/front/public/images/large/gregtech/gt.blockgem1/6.png deleted file mode 100644 index 055baa9f39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/7.png b/front/public/images/large/gregtech/gt.blockgem1/7.png deleted file mode 100644 index 67f82ca44c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/8.png b/front/public/images/large/gregtech/gt.blockgem1/8.png deleted file mode 100644 index f1ed564d27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem1/9.png b/front/public/images/large/gregtech/gt.blockgem1/9.png deleted file mode 100644 index fc481634c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem1/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/0.png b/front/public/images/large/gregtech/gt.blockgem2/0.png deleted file mode 100644 index 5120edaaac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/1.png b/front/public/images/large/gregtech/gt.blockgem2/1.png deleted file mode 100644 index f9e720c261..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/10.png b/front/public/images/large/gregtech/gt.blockgem2/10.png deleted file mode 100644 index dabe82295e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/11.png b/front/public/images/large/gregtech/gt.blockgem2/11.png deleted file mode 100644 index fc481634c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/12.png b/front/public/images/large/gregtech/gt.blockgem2/12.png deleted file mode 100644 index 1414258c2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/13.png b/front/public/images/large/gregtech/gt.blockgem2/13.png deleted file mode 100644 index 6efa7e98c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/14.png b/front/public/images/large/gregtech/gt.blockgem2/14.png deleted file mode 100644 index 4e1e341819..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/15.png b/front/public/images/large/gregtech/gt.blockgem2/15.png deleted file mode 100644 index 058fa02558..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/2.png b/front/public/images/large/gregtech/gt.blockgem2/2.png deleted file mode 100644 index 8e77bbeb36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/3.png b/front/public/images/large/gregtech/gt.blockgem2/3.png deleted file mode 100644 index 6e589f574b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/4.png b/front/public/images/large/gregtech/gt.blockgem2/4.png deleted file mode 100644 index a9a407f698..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/5.png b/front/public/images/large/gregtech/gt.blockgem2/5.png deleted file mode 100644 index e2362f59b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/6.png b/front/public/images/large/gregtech/gt.blockgem2/6.png deleted file mode 100644 index 055baa9f39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/7.png b/front/public/images/large/gregtech/gt.blockgem2/7.png deleted file mode 100644 index 296f138da5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/8.png b/front/public/images/large/gregtech/gt.blockgem2/8.png deleted file mode 100644 index 25c54eb3d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem2/9.png b/front/public/images/large/gregtech/gt.blockgem2/9.png deleted file mode 100644 index 6ce9980a6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem2/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem3/0.png b/front/public/images/large/gregtech/gt.blockgem3/0.png deleted file mode 100644 index a3f7ecc995..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem3/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem3/1.png b/front/public/images/large/gregtech/gt.blockgem3/1.png deleted file mode 100644 index fffed0c23d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem3/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem3/2.png b/front/public/images/large/gregtech/gt.blockgem3/2.png deleted file mode 100644 index ed91fcfbe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem3/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem3/3.png b/front/public/images/large/gregtech/gt.blockgem3/3.png deleted file mode 100644 index 055baa9f39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem3/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem3/4.png b/front/public/images/large/gregtech/gt.blockgem3/4.png deleted file mode 100644 index f9e720c261..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem3/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgem3/5.png b/front/public/images/large/gregtech/gt.blockgem3/5.png deleted file mode 100644 index 6d4746b14e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgem3/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/0.png b/front/public/images/large/gregtech/gt.blockgranites/0.png deleted file mode 100644 index c1e3217e03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/1.png b/front/public/images/large/gregtech/gt.blockgranites/1.png deleted file mode 100644 index cfc46e74f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/10.png b/front/public/images/large/gregtech/gt.blockgranites/10.png deleted file mode 100644 index 3aa5f72014..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/11.png b/front/public/images/large/gregtech/gt.blockgranites/11.png deleted file mode 100644 index e15d1fec6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/12.png b/front/public/images/large/gregtech/gt.blockgranites/12.png deleted file mode 100644 index cec89a594b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/13.png b/front/public/images/large/gregtech/gt.blockgranites/13.png deleted file mode 100644 index 650169c0b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/14.png b/front/public/images/large/gregtech/gt.blockgranites/14.png deleted file mode 100644 index ea0bdd5d17..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/15.png b/front/public/images/large/gregtech/gt.blockgranites/15.png deleted file mode 100644 index cbe932bdcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/2.png b/front/public/images/large/gregtech/gt.blockgranites/2.png deleted file mode 100644 index eb15e758c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/3.png b/front/public/images/large/gregtech/gt.blockgranites/3.png deleted file mode 100644 index 29c61ae708..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/4.png b/front/public/images/large/gregtech/gt.blockgranites/4.png deleted file mode 100644 index e5d60f13e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/5.png b/front/public/images/large/gregtech/gt.blockgranites/5.png deleted file mode 100644 index 0ebc03bc4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/6.png b/front/public/images/large/gregtech/gt.blockgranites/6.png deleted file mode 100644 index 15a2023643..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/7.png b/front/public/images/large/gregtech/gt.blockgranites/7.png deleted file mode 100644 index 3d319e2639..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/8.png b/front/public/images/large/gregtech/gt.blockgranites/8.png deleted file mode 100644 index 190ee31fcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockgranites/9.png b/front/public/images/large/gregtech/gt.blockgranites/9.png deleted file mode 100644 index 73d93937e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockgranites/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1.png b/front/public/images/large/gregtech/gt.blockmachines/1.png deleted file mode 100644 index e753b478d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/10.png b/front/public/images/large/gregtech/gt.blockmachines/10.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/100.png b/front/public/images/large/gregtech/gt.blockmachines/100.png deleted file mode 100644 index 54c72d6d9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1000.png b/front/public/images/large/gregtech/gt.blockmachines/1000.png deleted file mode 100644 index b739442cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1000.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1001.png b/front/public/images/large/gregtech/gt.blockmachines/1001.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1002.png b/front/public/images/large/gregtech/gt.blockmachines/1002.png deleted file mode 100644 index 1a35cb76eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1003.png b/front/public/images/large/gregtech/gt.blockmachines/1003.png deleted file mode 100644 index b739442cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1004.png b/front/public/images/large/gregtech/gt.blockmachines/1004.png deleted file mode 100644 index d3eb376e6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1005.png b/front/public/images/large/gregtech/gt.blockmachines/1005.png deleted file mode 100644 index 2f0f373129..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1006.png b/front/public/images/large/gregtech/gt.blockmachines/1006.png deleted file mode 100644 index 86e2aa7e09..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/101.png b/front/public/images/large/gregtech/gt.blockmachines/101.png deleted file mode 100644 index 4361d72f43..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/102.png b/front/public/images/large/gregtech/gt.blockmachines/102.png deleted file mode 100644 index c045d9f30a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1020.png b/front/public/images/large/gregtech/gt.blockmachines/1020.png deleted file mode 100644 index 33d2289737..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1021.png b/front/public/images/large/gregtech/gt.blockmachines/1021.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1022.png b/front/public/images/large/gregtech/gt.blockmachines/1022.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1023.png b/front/public/images/large/gregtech/gt.blockmachines/1023.png deleted file mode 100644 index f15ea13597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/103.png b/front/public/images/large/gregtech/gt.blockmachines/103.png deleted file mode 100644 index a5390211ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/104.png b/front/public/images/large/gregtech/gt.blockmachines/104.png deleted file mode 100644 index 42738f8523..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/105.png b/front/public/images/large/gregtech/gt.blockmachines/105.png deleted file mode 100644 index 4a0abc6e2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/105.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/10500.png b/front/public/images/large/gregtech/gt.blockmachines/10500.png deleted file mode 100644 index 5588dd6233..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/10500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/10501.png b/front/public/images/large/gregtech/gt.blockmachines/10501.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/10501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/106.png b/front/public/images/large/gregtech/gt.blockmachines/106.png deleted file mode 100644 index a6f943725c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/107.png b/front/public/images/large/gregtech/gt.blockmachines/107.png deleted file mode 100644 index b11149e066..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/107.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/109.png b/front/public/images/large/gregtech/gt.blockmachines/109.png deleted file mode 100644 index 97929c8911..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/109.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/11.png b/front/public/images/large/gregtech/gt.blockmachines/11.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/110.png b/front/public/images/large/gregtech/gt.blockmachines/110.png deleted file mode 100644 index 6dbc83c40f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/111.png b/front/public/images/large/gregtech/gt.blockmachines/111.png deleted file mode 100644 index 11827c2fc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1110.png b/front/public/images/large/gregtech/gt.blockmachines/1110.png deleted file mode 100644 index 8ed879803a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1111.png b/front/public/images/large/gregtech/gt.blockmachines/1111.png deleted file mode 100644 index 8baffb47cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1112.png b/front/public/images/large/gregtech/gt.blockmachines/1112.png deleted file mode 100644 index 3bbef6effa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1113.png b/front/public/images/large/gregtech/gt.blockmachines/1113.png deleted file mode 100644 index 5103f81eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1113.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1114.png b/front/public/images/large/gregtech/gt.blockmachines/1114.png deleted file mode 100644 index 0ce3b79a5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1115.png b/front/public/images/large/gregtech/gt.blockmachines/1115.png deleted file mode 100644 index f19126dbde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1115.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1116.png b/front/public/images/large/gregtech/gt.blockmachines/1116.png deleted file mode 100644 index c9722432a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1116.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1117.png b/front/public/images/large/gregtech/gt.blockmachines/1117.png deleted file mode 100644 index 330a5797e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1117.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1118.png b/front/public/images/large/gregtech/gt.blockmachines/1118.png deleted file mode 100644 index 30ff070a61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1118.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1119.png b/front/public/images/large/gregtech/gt.blockmachines/1119.png deleted file mode 100644 index 5b744eb4da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1119.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/112.png b/front/public/images/large/gregtech/gt.blockmachines/112.png deleted file mode 100644 index 6ad080e7c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1120.png b/front/public/images/large/gregtech/gt.blockmachines/1120.png deleted file mode 100644 index f19126dbde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1120.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1121.png b/front/public/images/large/gregtech/gt.blockmachines/1121.png deleted file mode 100644 index c9722432a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1121.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1122.png b/front/public/images/large/gregtech/gt.blockmachines/1122.png deleted file mode 100644 index 330a5797e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1122.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1123.png b/front/public/images/large/gregtech/gt.blockmachines/1123.png deleted file mode 100644 index 23bdb15dd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1123.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1124.png b/front/public/images/large/gregtech/gt.blockmachines/1124.png deleted file mode 100644 index 0cf0198530..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1124.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1125.png b/front/public/images/large/gregtech/gt.blockmachines/1125.png deleted file mode 100644 index bf446725cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1125.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1126.png b/front/public/images/large/gregtech/gt.blockmachines/1126.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1126.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1127.png b/front/public/images/large/gregtech/gt.blockmachines/1127.png deleted file mode 100644 index 407e841c2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1127.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1128.png b/front/public/images/large/gregtech/gt.blockmachines/1128.png deleted file mode 100644 index 737dce50a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1128.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1129.png b/front/public/images/large/gregtech/gt.blockmachines/1129.png deleted file mode 100644 index be5d4c13f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/113.png b/front/public/images/large/gregtech/gt.blockmachines/113.png deleted file mode 100644 index 5d7fa4e28f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/113.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1130.png b/front/public/images/large/gregtech/gt.blockmachines/1130.png deleted file mode 100644 index a23492b080..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1131.png b/front/public/images/large/gregtech/gt.blockmachines/1131.png deleted file mode 100644 index a23405e76e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1132.png b/front/public/images/large/gregtech/gt.blockmachines/1132.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1132.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1135.png b/front/public/images/large/gregtech/gt.blockmachines/1135.png deleted file mode 100644 index d9185ddffa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1135.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1136.png b/front/public/images/large/gregtech/gt.blockmachines/1136.png deleted file mode 100644 index 94bcc12587..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1136.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1137.png b/front/public/images/large/gregtech/gt.blockmachines/1137.png deleted file mode 100644 index f3b83bd44a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1137.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/114.png b/front/public/images/large/gregtech/gt.blockmachines/114.png deleted file mode 100644 index e6b0e350d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1140.png b/front/public/images/large/gregtech/gt.blockmachines/1140.png deleted file mode 100644 index 9ce9ee082a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1140.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1141.png b/front/public/images/large/gregtech/gt.blockmachines/1141.png deleted file mode 100644 index 25367755bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1142.png b/front/public/images/large/gregtech/gt.blockmachines/1142.png deleted file mode 100644 index 55afb56cac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1142.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1143.png b/front/public/images/large/gregtech/gt.blockmachines/1143.png deleted file mode 100644 index 0371bf622e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1144.png b/front/public/images/large/gregtech/gt.blockmachines/1144.png deleted file mode 100644 index 5b53ff512e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1145.png b/front/public/images/large/gregtech/gt.blockmachines/1145.png deleted file mode 100644 index 0965dba62b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1145.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1146.png b/front/public/images/large/gregtech/gt.blockmachines/1146.png deleted file mode 100644 index 0a32f49b70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1146.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1147.png b/front/public/images/large/gregtech/gt.blockmachines/1147.png deleted file mode 100644 index f4262a0e57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1147.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1148.png b/front/public/images/large/gregtech/gt.blockmachines/1148.png deleted file mode 100644 index 0be84339a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1148.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1149.png b/front/public/images/large/gregtech/gt.blockmachines/1149.png deleted file mode 100644 index f42375e12d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1149.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/115.png b/front/public/images/large/gregtech/gt.blockmachines/115.png deleted file mode 100644 index 47fe1cb493..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/115.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1150.png b/front/public/images/large/gregtech/gt.blockmachines/1150.png deleted file mode 100644 index 23add563f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1151.png b/front/public/images/large/gregtech/gt.blockmachines/1151.png deleted file mode 100644 index eeb12111ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1151.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1152.png b/front/public/images/large/gregtech/gt.blockmachines/1152.png deleted file mode 100644 index a3304f3a13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1152.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1153.png b/front/public/images/large/gregtech/gt.blockmachines/1153.png deleted file mode 100644 index 5de6b55d02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1153.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1154.png b/front/public/images/large/gregtech/gt.blockmachines/1154.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1154.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1155.png b/front/public/images/large/gregtech/gt.blockmachines/1155.png deleted file mode 100644 index d754445ce5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1155.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1157.png b/front/public/images/large/gregtech/gt.blockmachines/1157.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1157.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1158.png b/front/public/images/large/gregtech/gt.blockmachines/1158.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1158.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1159.png b/front/public/images/large/gregtech/gt.blockmachines/1159.png deleted file mode 100644 index 82eb3bd2f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1159.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/116.png b/front/public/images/large/gregtech/gt.blockmachines/116.png deleted file mode 100644 index d348515125..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/116.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1160.png b/front/public/images/large/gregtech/gt.blockmachines/1160.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1160.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1161.png b/front/public/images/large/gregtech/gt.blockmachines/1161.png deleted file mode 100644 index 5539a9b6e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1161.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1162.png b/front/public/images/large/gregtech/gt.blockmachines/1162.png deleted file mode 100644 index 5539a9b6e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1162.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1163.png b/front/public/images/large/gregtech/gt.blockmachines/1163.png deleted file mode 100644 index 3eaf59b131..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1163.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1164.png b/front/public/images/large/gregtech/gt.blockmachines/1164.png deleted file mode 100644 index dfec2d4b7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1164.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1165.png b/front/public/images/large/gregtech/gt.blockmachines/1165.png deleted file mode 100644 index b4949bd787..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1165.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1166.png b/front/public/images/large/gregtech/gt.blockmachines/1166.png deleted file mode 100644 index b4949bd787..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1166.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1169.png b/front/public/images/large/gregtech/gt.blockmachines/1169.png deleted file mode 100644 index 8b1995d604..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1169.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1170.png b/front/public/images/large/gregtech/gt.blockmachines/1170.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1170.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1171.png b/front/public/images/large/gregtech/gt.blockmachines/1171.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1171.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1172.png b/front/public/images/large/gregtech/gt.blockmachines/1172.png deleted file mode 100644 index a32942a186..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1172.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1173.png b/front/public/images/large/gregtech/gt.blockmachines/1173.png deleted file mode 100644 index 60880858d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1173.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1174.png b/front/public/images/large/gregtech/gt.blockmachines/1174.png deleted file mode 100644 index 9d390c6210..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1174.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1175.png b/front/public/images/large/gregtech/gt.blockmachines/1175.png deleted file mode 100644 index 7fb8d49fb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1175.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1176.png b/front/public/images/large/gregtech/gt.blockmachines/1176.png deleted file mode 100644 index e7543fe9f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1176.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1177.png b/front/public/images/large/gregtech/gt.blockmachines/1177.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1177.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1178.png b/front/public/images/large/gregtech/gt.blockmachines/1178.png deleted file mode 100644 index f15ea13597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1178.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1179.png b/front/public/images/large/gregtech/gt.blockmachines/1179.png deleted file mode 100644 index 5dd77dbbcc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1179.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/118.png b/front/public/images/large/gregtech/gt.blockmachines/118.png deleted file mode 100644 index 6290595c33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/118.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1188.png b/front/public/images/large/gregtech/gt.blockmachines/1188.png deleted file mode 100644 index 60499d6908..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1188.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1189.png b/front/public/images/large/gregtech/gt.blockmachines/1189.png deleted file mode 100644 index e3a68c4f01..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1189.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/119.png b/front/public/images/large/gregtech/gt.blockmachines/119.png deleted file mode 100644 index 98f834022f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/119.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1190.png b/front/public/images/large/gregtech/gt.blockmachines/1190.png deleted file mode 100644 index ffb01ca1ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1190.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1191.png b/front/public/images/large/gregtech/gt.blockmachines/1191.png deleted file mode 100644 index 668394e160..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1191.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1192.png b/front/public/images/large/gregtech/gt.blockmachines/1192.png deleted file mode 100644 index 1fedb7c500..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1192.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1193.png b/front/public/images/large/gregtech/gt.blockmachines/1193.png deleted file mode 100644 index 13d878e0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1193.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1194.png b/front/public/images/large/gregtech/gt.blockmachines/1194.png deleted file mode 100644 index 13d878e0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1194.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1195.png b/front/public/images/large/gregtech/gt.blockmachines/1195.png deleted file mode 100644 index 13d878e0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1195.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1196.png b/front/public/images/large/gregtech/gt.blockmachines/1196.png deleted file mode 100644 index 71793dd451..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1196.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1197.png b/front/public/images/large/gregtech/gt.blockmachines/1197.png deleted file mode 100644 index 054c92c35c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1197.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1198.png b/front/public/images/large/gregtech/gt.blockmachines/1198.png deleted file mode 100644 index 65c99021f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1198.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1199.png b/front/public/images/large/gregtech/gt.blockmachines/1199.png deleted file mode 100644 index f15ea13597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1199.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12.png b/front/public/images/large/gregtech/gt.blockmachines/12.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/120.png b/front/public/images/large/gregtech/gt.blockmachines/120.png deleted file mode 100644 index f83b91add9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/120.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1200.png b/front/public/images/large/gregtech/gt.blockmachines/1200.png deleted file mode 100644 index 48802ff7df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1201.png b/front/public/images/large/gregtech/gt.blockmachines/1201.png deleted file mode 100644 index 15ce64842f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1202.png b/front/public/images/large/gregtech/gt.blockmachines/1202.png deleted file mode 100644 index b99eb12f5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1203.png b/front/public/images/large/gregtech/gt.blockmachines/1203.png deleted file mode 100644 index c56654ebb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1204.png b/front/public/images/large/gregtech/gt.blockmachines/1204.png deleted file mode 100644 index 2df824ce35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1205.png b/front/public/images/large/gregtech/gt.blockmachines/1205.png deleted file mode 100644 index 3baa6f88ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1206.png b/front/public/images/large/gregtech/gt.blockmachines/1206.png deleted file mode 100644 index 73b3946ca6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1207.png b/front/public/images/large/gregtech/gt.blockmachines/1207.png deleted file mode 100644 index 78da46d7f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1208.png b/front/public/images/large/gregtech/gt.blockmachines/1208.png deleted file mode 100644 index 9f274ef6d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1209.png b/front/public/images/large/gregtech/gt.blockmachines/1209.png deleted file mode 100644 index cc6ca56af8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/121.png b/front/public/images/large/gregtech/gt.blockmachines/121.png deleted file mode 100644 index 389641b521..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/121.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1210.png b/front/public/images/large/gregtech/gt.blockmachines/1210.png deleted file mode 100644 index ebe210a356..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1210.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1211.png b/front/public/images/large/gregtech/gt.blockmachines/1211.png deleted file mode 100644 index 27c6a1eb29..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1211.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/122.png b/front/public/images/large/gregtech/gt.blockmachines/122.png deleted file mode 100644 index 13d38cc781..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/122.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1220.png b/front/public/images/large/gregtech/gt.blockmachines/1220.png deleted file mode 100644 index cc4ab76a64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1220.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1221.png b/front/public/images/large/gregtech/gt.blockmachines/1221.png deleted file mode 100644 index 630517183d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1221.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1222.png b/front/public/images/large/gregtech/gt.blockmachines/1222.png deleted file mode 100644 index c43fb47ffd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1222.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1223.png b/front/public/images/large/gregtech/gt.blockmachines/1223.png deleted file mode 100644 index 0e1822b597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1223.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1224.png b/front/public/images/large/gregtech/gt.blockmachines/1224.png deleted file mode 100644 index 9433d14eaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1224.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1225.png b/front/public/images/large/gregtech/gt.blockmachines/1225.png deleted file mode 100644 index 5140c8bc9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1225.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1226.png b/front/public/images/large/gregtech/gt.blockmachines/1226.png deleted file mode 100644 index f0ada3901f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1226.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1227.png b/front/public/images/large/gregtech/gt.blockmachines/1227.png deleted file mode 100644 index 29b0e31d64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1227.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1228.png b/front/public/images/large/gregtech/gt.blockmachines/1228.png deleted file mode 100644 index 1ab126de00..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1228.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1229.png b/front/public/images/large/gregtech/gt.blockmachines/1229.png deleted file mode 100644 index 9093354028..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1229.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/123.png b/front/public/images/large/gregtech/gt.blockmachines/123.png deleted file mode 100644 index dd0d9322fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/123.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1230.png b/front/public/images/large/gregtech/gt.blockmachines/1230.png deleted file mode 100644 index 89dbecf3b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1231.png b/front/public/images/large/gregtech/gt.blockmachines/1231.png deleted file mode 100644 index dff1459061..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1231.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/124.png b/front/public/images/large/gregtech/gt.blockmachines/124.png deleted file mode 100644 index 0d735dbc3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/124.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1240.png b/front/public/images/large/gregtech/gt.blockmachines/1240.png deleted file mode 100644 index d9d093dd64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1240.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1241.png b/front/public/images/large/gregtech/gt.blockmachines/1241.png deleted file mode 100644 index fca46525d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1241.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1242.png b/front/public/images/large/gregtech/gt.blockmachines/1242.png deleted file mode 100644 index e12720b2d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1242.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1243.png b/front/public/images/large/gregtech/gt.blockmachines/1243.png deleted file mode 100644 index ec70899848..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1243.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1244.png b/front/public/images/large/gregtech/gt.blockmachines/1244.png deleted file mode 100644 index 3d184b9b05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1244.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1245.png b/front/public/images/large/gregtech/gt.blockmachines/1245.png deleted file mode 100644 index 324f93d77c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1245.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1246.png b/front/public/images/large/gregtech/gt.blockmachines/1246.png deleted file mode 100644 index e312554703..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1246.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1247.png b/front/public/images/large/gregtech/gt.blockmachines/1247.png deleted file mode 100644 index 4f97c10488..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1247.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1248.png b/front/public/images/large/gregtech/gt.blockmachines/1248.png deleted file mode 100644 index 4f7dfe970b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1248.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1249.png b/front/public/images/large/gregtech/gt.blockmachines/1249.png deleted file mode 100644 index 2dd857d11d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1249.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/125.png b/front/public/images/large/gregtech/gt.blockmachines/125.png deleted file mode 100644 index 97410f9a27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/125.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1250.png b/front/public/images/large/gregtech/gt.blockmachines/1250.png deleted file mode 100644 index 818e4e5405..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1250.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12501.png b/front/public/images/large/gregtech/gt.blockmachines/12501.png deleted file mode 100644 index a74b95b66e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12502.png b/front/public/images/large/gregtech/gt.blockmachines/12502.png deleted file mode 100644 index 181ad6e6d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12503.png b/front/public/images/large/gregtech/gt.blockmachines/12503.png deleted file mode 100644 index ff0118b367..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12504.png b/front/public/images/large/gregtech/gt.blockmachines/12504.png deleted file mode 100644 index ab27543a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12505.png b/front/public/images/large/gregtech/gt.blockmachines/12505.png deleted file mode 100644 index e2a0352662..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12506.png b/front/public/images/large/gregtech/gt.blockmachines/12506.png deleted file mode 100644 index bc8454a4d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12507.png b/front/public/images/large/gregtech/gt.blockmachines/12507.png deleted file mode 100644 index 39227cefdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12508.png b/front/public/images/large/gregtech/gt.blockmachines/12508.png deleted file mode 100644 index 1488ae94b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12509.png b/front/public/images/large/gregtech/gt.blockmachines/12509.png deleted file mode 100644 index d00d85ace7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1251.png b/front/public/images/large/gregtech/gt.blockmachines/1251.png deleted file mode 100644 index 47edfed797..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1251.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12510.png b/front/public/images/large/gregtech/gt.blockmachines/12510.png deleted file mode 100644 index a74b95b66e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12511.png b/front/public/images/large/gregtech/gt.blockmachines/12511.png deleted file mode 100644 index 181ad6e6d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12512.png b/front/public/images/large/gregtech/gt.blockmachines/12512.png deleted file mode 100644 index ff0118b367..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12513.png b/front/public/images/large/gregtech/gt.blockmachines/12513.png deleted file mode 100644 index ab27543a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12514.png b/front/public/images/large/gregtech/gt.blockmachines/12514.png deleted file mode 100644 index e2a0352662..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12515.png b/front/public/images/large/gregtech/gt.blockmachines/12515.png deleted file mode 100644 index bc8454a4d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12516.png b/front/public/images/large/gregtech/gt.blockmachines/12516.png deleted file mode 100644 index 39227cefdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12517.png b/front/public/images/large/gregtech/gt.blockmachines/12517.png deleted file mode 100644 index 1488ae94b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12518.png b/front/public/images/large/gregtech/gt.blockmachines/12518.png deleted file mode 100644 index d00d85ace7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12519.png b/front/public/images/large/gregtech/gt.blockmachines/12519.png deleted file mode 100644 index a74b95b66e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12520.png b/front/public/images/large/gregtech/gt.blockmachines/12520.png deleted file mode 100644 index 181ad6e6d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12521.png b/front/public/images/large/gregtech/gt.blockmachines/12521.png deleted file mode 100644 index ff0118b367..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12522.png b/front/public/images/large/gregtech/gt.blockmachines/12522.png deleted file mode 100644 index ab27543a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12523.png b/front/public/images/large/gregtech/gt.blockmachines/12523.png deleted file mode 100644 index e2a0352662..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12524.png b/front/public/images/large/gregtech/gt.blockmachines/12524.png deleted file mode 100644 index bc8454a4d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12525.png b/front/public/images/large/gregtech/gt.blockmachines/12525.png deleted file mode 100644 index 39227cefdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12526.png b/front/public/images/large/gregtech/gt.blockmachines/12526.png deleted file mode 100644 index 1488ae94b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12527.png b/front/public/images/large/gregtech/gt.blockmachines/12527.png deleted file mode 100644 index d00d85ace7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12528.png b/front/public/images/large/gregtech/gt.blockmachines/12528.png deleted file mode 100644 index 4c66f35739..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/126.png b/front/public/images/large/gregtech/gt.blockmachines/126.png deleted file mode 100644 index 04df2a4581..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/126.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1260.png b/front/public/images/large/gregtech/gt.blockmachines/1260.png deleted file mode 100644 index 9fcb84350a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1260.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12601.png b/front/public/images/large/gregtech/gt.blockmachines/12601.png deleted file mode 100644 index 61d16bf6cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12601.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12602.png b/front/public/images/large/gregtech/gt.blockmachines/12602.png deleted file mode 100644 index 564897a028..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12602.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12603.png b/front/public/images/large/gregtech/gt.blockmachines/12603.png deleted file mode 100644 index 37112e85a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12603.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12604.png b/front/public/images/large/gregtech/gt.blockmachines/12604.png deleted file mode 100644 index fc7c77d0fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12604.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12605.png b/front/public/images/large/gregtech/gt.blockmachines/12605.png deleted file mode 100644 index a9865ee304..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12605.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12606.png b/front/public/images/large/gregtech/gt.blockmachines/12606.png deleted file mode 100644 index 8b81fd6d8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12606.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12607.png b/front/public/images/large/gregtech/gt.blockmachines/12607.png deleted file mode 100644 index 51e74d9335..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12608.png b/front/public/images/large/gregtech/gt.blockmachines/12608.png deleted file mode 100644 index 1b72a9aa24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12608.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12609.png b/front/public/images/large/gregtech/gt.blockmachines/12609.png deleted file mode 100644 index d149713393..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12609.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1261.png b/front/public/images/large/gregtech/gt.blockmachines/1261.png deleted file mode 100644 index ee1ef23135..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1261.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12610.png b/front/public/images/large/gregtech/gt.blockmachines/12610.png deleted file mode 100644 index ba35dbe7f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12611.png b/front/public/images/large/gregtech/gt.blockmachines/12611.png deleted file mode 100644 index 2b48a8d7da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12612.png b/front/public/images/large/gregtech/gt.blockmachines/12612.png deleted file mode 100644 index 590521c751..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12612.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12613.png b/front/public/images/large/gregtech/gt.blockmachines/12613.png deleted file mode 100644 index ebf4610055..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12614.png b/front/public/images/large/gregtech/gt.blockmachines/12614.png deleted file mode 100644 index fe97c10cff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12614.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12615.png b/front/public/images/large/gregtech/gt.blockmachines/12615.png deleted file mode 100644 index a6b8240b0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12615.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12617.png b/front/public/images/large/gregtech/gt.blockmachines/12617.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12617.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12618.png b/front/public/images/large/gregtech/gt.blockmachines/12618.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12618.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12619.png b/front/public/images/large/gregtech/gt.blockmachines/12619.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12619.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1262.png b/front/public/images/large/gregtech/gt.blockmachines/1262.png deleted file mode 100644 index b0d6f89272..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1262.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12620.png b/front/public/images/large/gregtech/gt.blockmachines/12620.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12620.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12621.png b/front/public/images/large/gregtech/gt.blockmachines/12621.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12621.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12622.png b/front/public/images/large/gregtech/gt.blockmachines/12622.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12622.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12623.png b/front/public/images/large/gregtech/gt.blockmachines/12623.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12623.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12624.png b/front/public/images/large/gregtech/gt.blockmachines/12624.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12624.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12625.png b/front/public/images/large/gregtech/gt.blockmachines/12625.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12625.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12626.png b/front/public/images/large/gregtech/gt.blockmachines/12626.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12626.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12627.png b/front/public/images/large/gregtech/gt.blockmachines/12627.png deleted file mode 100644 index 5c6d315652..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12627.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12628.png b/front/public/images/large/gregtech/gt.blockmachines/12628.png deleted file mode 100644 index 281552fe45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12628.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12629.png b/front/public/images/large/gregtech/gt.blockmachines/12629.png deleted file mode 100644 index bd9cd60fbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12629.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1263.png b/front/public/images/large/gregtech/gt.blockmachines/1263.png deleted file mode 100644 index 070f5a51bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1263.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12630.png b/front/public/images/large/gregtech/gt.blockmachines/12630.png deleted file mode 100644 index ba5cd3b81d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12630.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12631.png b/front/public/images/large/gregtech/gt.blockmachines/12631.png deleted file mode 100644 index d994defb88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12633.png b/front/public/images/large/gregtech/gt.blockmachines/12633.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12633.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12634.png b/front/public/images/large/gregtech/gt.blockmachines/12634.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12634.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12635.png b/front/public/images/large/gregtech/gt.blockmachines/12635.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12636.png b/front/public/images/large/gregtech/gt.blockmachines/12636.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12637.png b/front/public/images/large/gregtech/gt.blockmachines/12637.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12637.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12638.png b/front/public/images/large/gregtech/gt.blockmachines/12638.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12638.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12639.png b/front/public/images/large/gregtech/gt.blockmachines/12639.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12639.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1264.png b/front/public/images/large/gregtech/gt.blockmachines/1264.png deleted file mode 100644 index e6c095e635..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1264.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12640.png b/front/public/images/large/gregtech/gt.blockmachines/12640.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12640.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12641.png b/front/public/images/large/gregtech/gt.blockmachines/12641.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12641.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12642.png b/front/public/images/large/gregtech/gt.blockmachines/12642.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12643.png b/front/public/images/large/gregtech/gt.blockmachines/12643.png deleted file mode 100644 index 5c6d315652..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12644.png b/front/public/images/large/gregtech/gt.blockmachines/12644.png deleted file mode 100644 index 281552fe45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12645.png b/front/public/images/large/gregtech/gt.blockmachines/12645.png deleted file mode 100644 index bd9cd60fbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12646.png b/front/public/images/large/gregtech/gt.blockmachines/12646.png deleted file mode 100644 index ba5cd3b81d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12647.png b/front/public/images/large/gregtech/gt.blockmachines/12647.png deleted file mode 100644 index d994defb88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12647.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12649.png b/front/public/images/large/gregtech/gt.blockmachines/12649.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1265.png b/front/public/images/large/gregtech/gt.blockmachines/1265.png deleted file mode 100644 index dc6bb25e3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1265.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12650.png b/front/public/images/large/gregtech/gt.blockmachines/12650.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12650.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12651.png b/front/public/images/large/gregtech/gt.blockmachines/12651.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12651.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12652.png b/front/public/images/large/gregtech/gt.blockmachines/12652.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12652.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12653.png b/front/public/images/large/gregtech/gt.blockmachines/12653.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12653.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12654.png b/front/public/images/large/gregtech/gt.blockmachines/12654.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12654.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12655.png b/front/public/images/large/gregtech/gt.blockmachines/12655.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12655.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12656.png b/front/public/images/large/gregtech/gt.blockmachines/12656.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12656.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12657.png b/front/public/images/large/gregtech/gt.blockmachines/12657.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12657.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12658.png b/front/public/images/large/gregtech/gt.blockmachines/12658.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12658.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12659.png b/front/public/images/large/gregtech/gt.blockmachines/12659.png deleted file mode 100644 index 5c6d315652..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12659.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1266.png b/front/public/images/large/gregtech/gt.blockmachines/1266.png deleted file mode 100644 index d577434b9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1266.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12660.png b/front/public/images/large/gregtech/gt.blockmachines/12660.png deleted file mode 100644 index 281552fe45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12660.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12661.png b/front/public/images/large/gregtech/gt.blockmachines/12661.png deleted file mode 100644 index bd9cd60fbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12661.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12662.png b/front/public/images/large/gregtech/gt.blockmachines/12662.png deleted file mode 100644 index ba5cd3b81d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12662.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12663.png b/front/public/images/large/gregtech/gt.blockmachines/12663.png deleted file mode 100644 index d994defb88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12663.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12665.png b/front/public/images/large/gregtech/gt.blockmachines/12665.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12665.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12666.png b/front/public/images/large/gregtech/gt.blockmachines/12666.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12666.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12667.png b/front/public/images/large/gregtech/gt.blockmachines/12667.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12667.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12668.png b/front/public/images/large/gregtech/gt.blockmachines/12668.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12668.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12669.png b/front/public/images/large/gregtech/gt.blockmachines/12669.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12669.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1267.png b/front/public/images/large/gregtech/gt.blockmachines/1267.png deleted file mode 100644 index 508d964179..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1267.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12670.png b/front/public/images/large/gregtech/gt.blockmachines/12670.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12670.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12671.png b/front/public/images/large/gregtech/gt.blockmachines/12671.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12671.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12672.png b/front/public/images/large/gregtech/gt.blockmachines/12672.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12672.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12673.png b/front/public/images/large/gregtech/gt.blockmachines/12673.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12673.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12674.png b/front/public/images/large/gregtech/gt.blockmachines/12674.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12674.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12675.png b/front/public/images/large/gregtech/gt.blockmachines/12675.png deleted file mode 100644 index 5c6d315652..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12675.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12676.png b/front/public/images/large/gregtech/gt.blockmachines/12676.png deleted file mode 100644 index 281552fe45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12676.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12677.png b/front/public/images/large/gregtech/gt.blockmachines/12677.png deleted file mode 100644 index bd9cd60fbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12678.png b/front/public/images/large/gregtech/gt.blockmachines/12678.png deleted file mode 100644 index ba5cd3b81d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12679.png b/front/public/images/large/gregtech/gt.blockmachines/12679.png deleted file mode 100644 index d994defb88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12679.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1268.png b/front/public/images/large/gregtech/gt.blockmachines/1268.png deleted file mode 100644 index a5f21bccb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1268.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12681.png b/front/public/images/large/gregtech/gt.blockmachines/12681.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12681.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12682.png b/front/public/images/large/gregtech/gt.blockmachines/12682.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12682.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12683.png b/front/public/images/large/gregtech/gt.blockmachines/12683.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12683.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12684.png b/front/public/images/large/gregtech/gt.blockmachines/12684.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12684.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12685.png b/front/public/images/large/gregtech/gt.blockmachines/12685.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12685.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12686.png b/front/public/images/large/gregtech/gt.blockmachines/12686.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12686.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12687.png b/front/public/images/large/gregtech/gt.blockmachines/12687.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12687.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12688.png b/front/public/images/large/gregtech/gt.blockmachines/12688.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12688.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12689.png b/front/public/images/large/gregtech/gt.blockmachines/12689.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12689.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1269.png b/front/public/images/large/gregtech/gt.blockmachines/1269.png deleted file mode 100644 index c59e5c9b1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1269.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12690.png b/front/public/images/large/gregtech/gt.blockmachines/12690.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12690.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12691.png b/front/public/images/large/gregtech/gt.blockmachines/12691.png deleted file mode 100644 index 5c6d315652..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12691.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12692.png b/front/public/images/large/gregtech/gt.blockmachines/12692.png deleted file mode 100644 index 281552fe45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12692.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12693.png b/front/public/images/large/gregtech/gt.blockmachines/12693.png deleted file mode 100644 index bd9cd60fbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12693.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12694.png b/front/public/images/large/gregtech/gt.blockmachines/12694.png deleted file mode 100644 index ba5cd3b81d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12694.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12695.png b/front/public/images/large/gregtech/gt.blockmachines/12695.png deleted file mode 100644 index d994defb88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12695.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/127.png b/front/public/images/large/gregtech/gt.blockmachines/127.png deleted file mode 100644 index 5b66511436..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/127.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1270.png b/front/public/images/large/gregtech/gt.blockmachines/1270.png deleted file mode 100644 index e8ba01e273..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1270.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1271.png b/front/public/images/large/gregtech/gt.blockmachines/1271.png deleted file mode 100644 index d5bdb3cbc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1271.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12726.png b/front/public/images/large/gregtech/gt.blockmachines/12726.png deleted file mode 100644 index 34d8a49fe8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12726.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12727.png b/front/public/images/large/gregtech/gt.blockmachines/12727.png deleted file mode 100644 index 7976b9b8b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12727.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12728.png b/front/public/images/large/gregtech/gt.blockmachines/12728.png deleted file mode 100644 index 57c557ba74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12728.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12729.png b/front/public/images/large/gregtech/gt.blockmachines/12729.png deleted file mode 100644 index b739442cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12729.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12730.png b/front/public/images/large/gregtech/gt.blockmachines/12730.png deleted file mode 100644 index b739442cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12730.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12731.png b/front/public/images/large/gregtech/gt.blockmachines/12731.png deleted file mode 100644 index 1a35cb76eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12731.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12732.png b/front/public/images/large/gregtech/gt.blockmachines/12732.png deleted file mode 100644 index cf1c7aa7f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12732.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12733.png b/front/public/images/large/gregtech/gt.blockmachines/12733.png deleted file mode 100644 index 7f02b6d992..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12733.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12734.png b/front/public/images/large/gregtech/gt.blockmachines/12734.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12734.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12735.png b/front/public/images/large/gregtech/gt.blockmachines/12735.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12736.png b/front/public/images/large/gregtech/gt.blockmachines/12736.png deleted file mode 100644 index 57c1b51cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12736.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12737.png b/front/public/images/large/gregtech/gt.blockmachines/12737.png deleted file mode 100644 index a4b41f11bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12737.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12738.png b/front/public/images/large/gregtech/gt.blockmachines/12738.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12738.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12739.png b/front/public/images/large/gregtech/gt.blockmachines/12739.png deleted file mode 100644 index 086629dc31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12740.png b/front/public/images/large/gregtech/gt.blockmachines/12740.png deleted file mode 100644 index b63585c141..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12741.png b/front/public/images/large/gregtech/gt.blockmachines/12741.png deleted file mode 100644 index 387904af6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12742.png b/front/public/images/large/gregtech/gt.blockmachines/12742.png deleted file mode 100644 index 8167016dc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12742.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12743.png b/front/public/images/large/gregtech/gt.blockmachines/12743.png deleted file mode 100644 index 496d5f6332..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12743.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12744.png b/front/public/images/large/gregtech/gt.blockmachines/12744.png deleted file mode 100644 index c3b550015c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12744.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12745.png b/front/public/images/large/gregtech/gt.blockmachines/12745.png deleted file mode 100644 index f22e9c1f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12746.png b/front/public/images/large/gregtech/gt.blockmachines/12746.png deleted file mode 100644 index 3eebe8e4a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12746.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12747.png b/front/public/images/large/gregtech/gt.blockmachines/12747.png deleted file mode 100644 index 496d5f6332..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12747.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12748.png b/front/public/images/large/gregtech/gt.blockmachines/12748.png deleted file mode 100644 index c3b550015c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12748.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12749.png b/front/public/images/large/gregtech/gt.blockmachines/12749.png deleted file mode 100644 index f22e9c1f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12750.png b/front/public/images/large/gregtech/gt.blockmachines/12750.png deleted file mode 100644 index 3eebe8e4a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12750.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12751.png b/front/public/images/large/gregtech/gt.blockmachines/12751.png deleted file mode 100644 index 496d5f6332..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12752.png b/front/public/images/large/gregtech/gt.blockmachines/12752.png deleted file mode 100644 index c3b550015c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12752.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12753.png b/front/public/images/large/gregtech/gt.blockmachines/12753.png deleted file mode 100644 index f22e9c1f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12753.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12754.png b/front/public/images/large/gregtech/gt.blockmachines/12754.png deleted file mode 100644 index 3eebe8e4a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12754.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12755.png b/front/public/images/large/gregtech/gt.blockmachines/12755.png deleted file mode 100644 index 496d5f6332..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12755.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12756.png b/front/public/images/large/gregtech/gt.blockmachines/12756.png deleted file mode 100644 index c3b550015c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12756.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12757.png b/front/public/images/large/gregtech/gt.blockmachines/12757.png deleted file mode 100644 index f22e9c1f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12757.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12758.png b/front/public/images/large/gregtech/gt.blockmachines/12758.png deleted file mode 100644 index 3eebe8e4a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12758.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12759.png b/front/public/images/large/gregtech/gt.blockmachines/12759.png deleted file mode 100644 index 4f41da047c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12759.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12760.png b/front/public/images/large/gregtech/gt.blockmachines/12760.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12761.png b/front/public/images/large/gregtech/gt.blockmachines/12761.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12761.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12762.png b/front/public/images/large/gregtech/gt.blockmachines/12762.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12762.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12763.png b/front/public/images/large/gregtech/gt.blockmachines/12763.png deleted file mode 100644 index 4f41da047c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12763.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12764.png b/front/public/images/large/gregtech/gt.blockmachines/12764.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12764.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12765.png b/front/public/images/large/gregtech/gt.blockmachines/12765.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12766.png b/front/public/images/large/gregtech/gt.blockmachines/12766.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12766.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12767.png b/front/public/images/large/gregtech/gt.blockmachines/12767.png deleted file mode 100644 index 4f41da047c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12767.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12768.png b/front/public/images/large/gregtech/gt.blockmachines/12768.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12768.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12769.png b/front/public/images/large/gregtech/gt.blockmachines/12769.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12769.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12770.png b/front/public/images/large/gregtech/gt.blockmachines/12770.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12771.png b/front/public/images/large/gregtech/gt.blockmachines/12771.png deleted file mode 100644 index 4f41da047c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12771.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12772.png b/front/public/images/large/gregtech/gt.blockmachines/12772.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12773.png b/front/public/images/large/gregtech/gt.blockmachines/12773.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12773.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12774.png b/front/public/images/large/gregtech/gt.blockmachines/12774.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12774.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12775.png b/front/public/images/large/gregtech/gt.blockmachines/12775.png deleted file mode 100644 index 54e306bd3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12775.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12776.png b/front/public/images/large/gregtech/gt.blockmachines/12776.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12776.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12777.png b/front/public/images/large/gregtech/gt.blockmachines/12777.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12777.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12778.png b/front/public/images/large/gregtech/gt.blockmachines/12778.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12778.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12779.png b/front/public/images/large/gregtech/gt.blockmachines/12779.png deleted file mode 100644 index 54e306bd3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12779.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12780.png b/front/public/images/large/gregtech/gt.blockmachines/12780.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12780.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12781.png b/front/public/images/large/gregtech/gt.blockmachines/12781.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12781.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12782.png b/front/public/images/large/gregtech/gt.blockmachines/12782.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12782.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12783.png b/front/public/images/large/gregtech/gt.blockmachines/12783.png deleted file mode 100644 index 54e306bd3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12783.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12784.png b/front/public/images/large/gregtech/gt.blockmachines/12784.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12784.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12785.png b/front/public/images/large/gregtech/gt.blockmachines/12785.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12785.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12786.png b/front/public/images/large/gregtech/gt.blockmachines/12786.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12786.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12787.png b/front/public/images/large/gregtech/gt.blockmachines/12787.png deleted file mode 100644 index 54e306bd3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12787.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12788.png b/front/public/images/large/gregtech/gt.blockmachines/12788.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12788.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12789.png b/front/public/images/large/gregtech/gt.blockmachines/12789.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12789.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12790.png b/front/public/images/large/gregtech/gt.blockmachines/12790.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12790.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12791.png b/front/public/images/large/gregtech/gt.blockmachines/12791.png deleted file mode 100644 index b16c7175c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12791.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12793.png b/front/public/images/large/gregtech/gt.blockmachines/12793.png deleted file mode 100644 index 62899604f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12793.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/12799.png b/front/public/images/large/gregtech/gt.blockmachines/12799.png deleted file mode 100644 index 5f8ea6561b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/12799.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/128.png b/front/public/images/large/gregtech/gt.blockmachines/128.png deleted file mode 100644 index b024960f6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/128.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1280.png b/front/public/images/large/gregtech/gt.blockmachines/1280.png deleted file mode 100644 index e1ebbef912..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1280.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1281.png b/front/public/images/large/gregtech/gt.blockmachines/1281.png deleted file mode 100644 index 23dda6913c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1281.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1282.png b/front/public/images/large/gregtech/gt.blockmachines/1282.png deleted file mode 100644 index b4775c468d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1282.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1283.png b/front/public/images/large/gregtech/gt.blockmachines/1283.png deleted file mode 100644 index b2f9b590ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1283.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1284.png b/front/public/images/large/gregtech/gt.blockmachines/1284.png deleted file mode 100644 index dea3fe5588..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1284.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1285.png b/front/public/images/large/gregtech/gt.blockmachines/1285.png deleted file mode 100644 index 0efa25b3ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1285.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1286.png b/front/public/images/large/gregtech/gt.blockmachines/1286.png deleted file mode 100644 index 46f9960c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1286.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1287.png b/front/public/images/large/gregtech/gt.blockmachines/1287.png deleted file mode 100644 index 54cc389b02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1287.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1288.png b/front/public/images/large/gregtech/gt.blockmachines/1288.png deleted file mode 100644 index d9e888ce28..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1288.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1289.png b/front/public/images/large/gregtech/gt.blockmachines/1289.png deleted file mode 100644 index 55d0901896..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1289.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/129.png b/front/public/images/large/gregtech/gt.blockmachines/129.png deleted file mode 100644 index 94fb77b0a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1290.png b/front/public/images/large/gregtech/gt.blockmachines/1290.png deleted file mode 100644 index c01f51d669..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1290.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1291.png b/front/public/images/large/gregtech/gt.blockmachines/1291.png deleted file mode 100644 index d517f70a40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1291.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13.png b/front/public/images/large/gregtech/gt.blockmachines/13.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/130.png b/front/public/images/large/gregtech/gt.blockmachines/130.png deleted file mode 100644 index 6cb040ced8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1300.png b/front/public/images/large/gregtech/gt.blockmachines/1300.png deleted file mode 100644 index 48b9e9dc71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13001.png b/front/public/images/large/gregtech/gt.blockmachines/13001.png deleted file mode 100644 index 3738470d7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1301.png b/front/public/images/large/gregtech/gt.blockmachines/1301.png deleted file mode 100644 index 27e46e9df3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1302.png b/front/public/images/large/gregtech/gt.blockmachines/1302.png deleted file mode 100644 index 2253d59925..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1303.png b/front/public/images/large/gregtech/gt.blockmachines/1303.png deleted file mode 100644 index ddabf40c05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1304.png b/front/public/images/large/gregtech/gt.blockmachines/1304.png deleted file mode 100644 index 543a79fd00..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1305.png b/front/public/images/large/gregtech/gt.blockmachines/1305.png deleted file mode 100644 index 3673d7e13d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1306.png b/front/public/images/large/gregtech/gt.blockmachines/1306.png deleted file mode 100644 index 041ccdf3ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1307.png b/front/public/images/large/gregtech/gt.blockmachines/1307.png deleted file mode 100644 index 5ddb4fd042..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1308.png b/front/public/images/large/gregtech/gt.blockmachines/1308.png deleted file mode 100644 index 7ab97240ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1309.png b/front/public/images/large/gregtech/gt.blockmachines/1309.png deleted file mode 100644 index a9d86f525d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/131.png b/front/public/images/large/gregtech/gt.blockmachines/131.png deleted file mode 100644 index 58f922fca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1310.png b/front/public/images/large/gregtech/gt.blockmachines/1310.png deleted file mode 100644 index b21573a92b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1311.png b/front/public/images/large/gregtech/gt.blockmachines/1311.png deleted file mode 100644 index 08d711b1e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/132.png b/front/public/images/large/gregtech/gt.blockmachines/132.png deleted file mode 100644 index 44147d7aa5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/132.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1320.png b/front/public/images/large/gregtech/gt.blockmachines/1320.png deleted file mode 100644 index 3bc42f0a98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1321.png b/front/public/images/large/gregtech/gt.blockmachines/1321.png deleted file mode 100644 index 50e09b053e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1322.png b/front/public/images/large/gregtech/gt.blockmachines/1322.png deleted file mode 100644 index aca9fd5e4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1322.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1323.png b/front/public/images/large/gregtech/gt.blockmachines/1323.png deleted file mode 100644 index 3c6eec492d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1324.png b/front/public/images/large/gregtech/gt.blockmachines/1324.png deleted file mode 100644 index 08589fedbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1325.png b/front/public/images/large/gregtech/gt.blockmachines/1325.png deleted file mode 100644 index 1da6ec6707..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1326.png b/front/public/images/large/gregtech/gt.blockmachines/1326.png deleted file mode 100644 index 02efd3099f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1327.png b/front/public/images/large/gregtech/gt.blockmachines/1327.png deleted file mode 100644 index d2b537bdbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1328.png b/front/public/images/large/gregtech/gt.blockmachines/1328.png deleted file mode 100644 index 280920e5b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1329.png b/front/public/images/large/gregtech/gt.blockmachines/1329.png deleted file mode 100644 index 2e255ea556..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/133.png b/front/public/images/large/gregtech/gt.blockmachines/133.png deleted file mode 100644 index 10fd4524b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/133.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1330.png b/front/public/images/large/gregtech/gt.blockmachines/1330.png deleted file mode 100644 index 1c05cfd4cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1331.png b/front/public/images/large/gregtech/gt.blockmachines/1331.png deleted file mode 100644 index ff2862933d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13366.png b/front/public/images/large/gregtech/gt.blockmachines/13366.png deleted file mode 100644 index 8b1995d604..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13367.png b/front/public/images/large/gregtech/gt.blockmachines/13367.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/134.png b/front/public/images/large/gregtech/gt.blockmachines/134.png deleted file mode 100644 index 87fdbc3758..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1340.png b/front/public/images/large/gregtech/gt.blockmachines/1340.png deleted file mode 100644 index 47d3f4889b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1341.png b/front/public/images/large/gregtech/gt.blockmachines/1341.png deleted file mode 100644 index ca49a94ca9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1342.png b/front/public/images/large/gregtech/gt.blockmachines/1342.png deleted file mode 100644 index 112d658b68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1343.png b/front/public/images/large/gregtech/gt.blockmachines/1343.png deleted file mode 100644 index 1ae453520d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1344.png b/front/public/images/large/gregtech/gt.blockmachines/1344.png deleted file mode 100644 index 3325df98a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1345.png b/front/public/images/large/gregtech/gt.blockmachines/1345.png deleted file mode 100644 index e4ca2ba5ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1346.png b/front/public/images/large/gregtech/gt.blockmachines/1346.png deleted file mode 100644 index 4689d00531..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1347.png b/front/public/images/large/gregtech/gt.blockmachines/1347.png deleted file mode 100644 index 9a832e33a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1348.png b/front/public/images/large/gregtech/gt.blockmachines/1348.png deleted file mode 100644 index 02690ca850..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1349.png b/front/public/images/large/gregtech/gt.blockmachines/1349.png deleted file mode 100644 index fd92968c92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/135.png b/front/public/images/large/gregtech/gt.blockmachines/135.png deleted file mode 100644 index 2165fb586e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/135.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1350.png b/front/public/images/large/gregtech/gt.blockmachines/1350.png deleted file mode 100644 index af942c15c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1351.png b/front/public/images/large/gregtech/gt.blockmachines/1351.png deleted file mode 100644 index 972e73b3a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13532.png b/front/public/images/large/gregtech/gt.blockmachines/13532.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13533.png b/front/public/images/large/gregtech/gt.blockmachines/13533.png deleted file mode 100644 index 0853a85113..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13534.png b/front/public/images/large/gregtech/gt.blockmachines/13534.png deleted file mode 100644 index 0014ca51d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13535.png b/front/public/images/large/gregtech/gt.blockmachines/13535.png deleted file mode 100644 index 5f4f81db3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/13536.png b/front/public/images/large/gregtech/gt.blockmachines/13536.png deleted file mode 100644 index cfdebdacd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/13536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/136.png b/front/public/images/large/gregtech/gt.blockmachines/136.png deleted file mode 100644 index 801a09d06c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/136.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1360.png b/front/public/images/large/gregtech/gt.blockmachines/1360.png deleted file mode 100644 index 3c4fbd3026..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1361.png b/front/public/images/large/gregtech/gt.blockmachines/1361.png deleted file mode 100644 index 690a81e2b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1362.png b/front/public/images/large/gregtech/gt.blockmachines/1362.png deleted file mode 100644 index b81b52c69f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1363.png b/front/public/images/large/gregtech/gt.blockmachines/1363.png deleted file mode 100644 index d49416c179..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1364.png b/front/public/images/large/gregtech/gt.blockmachines/1364.png deleted file mode 100644 index 3c54704747..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1365.png b/front/public/images/large/gregtech/gt.blockmachines/1365.png deleted file mode 100644 index 3adea44099..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1366.png b/front/public/images/large/gregtech/gt.blockmachines/1366.png deleted file mode 100644 index d57b3681c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1367.png b/front/public/images/large/gregtech/gt.blockmachines/1367.png deleted file mode 100644 index 37048f1569..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1368.png b/front/public/images/large/gregtech/gt.blockmachines/1368.png deleted file mode 100644 index e6068f0250..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1369.png b/front/public/images/large/gregtech/gt.blockmachines/1369.png deleted file mode 100644 index ef60fd30c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/137.png b/front/public/images/large/gregtech/gt.blockmachines/137.png deleted file mode 100644 index 0701a92915..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/137.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1370.png b/front/public/images/large/gregtech/gt.blockmachines/1370.png deleted file mode 100644 index c470d55af9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1371.png b/front/public/images/large/gregtech/gt.blockmachines/1371.png deleted file mode 100644 index 17ee30db9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/138.png b/front/public/images/large/gregtech/gt.blockmachines/138.png deleted file mode 100644 index 670217f68a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/138.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1380.png b/front/public/images/large/gregtech/gt.blockmachines/1380.png deleted file mode 100644 index 6e03d4d05c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1381.png b/front/public/images/large/gregtech/gt.blockmachines/1381.png deleted file mode 100644 index 09fa6e302f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1382.png b/front/public/images/large/gregtech/gt.blockmachines/1382.png deleted file mode 100644 index c994cda855..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1383.png b/front/public/images/large/gregtech/gt.blockmachines/1383.png deleted file mode 100644 index 3722cc6a41..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1384.png b/front/public/images/large/gregtech/gt.blockmachines/1384.png deleted file mode 100644 index 1d02aab013..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1385.png b/front/public/images/large/gregtech/gt.blockmachines/1385.png deleted file mode 100644 index 6104888ed7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1386.png b/front/public/images/large/gregtech/gt.blockmachines/1386.png deleted file mode 100644 index 9e60edc01b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1387.png b/front/public/images/large/gregtech/gt.blockmachines/1387.png deleted file mode 100644 index 3f7289daa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1388.png b/front/public/images/large/gregtech/gt.blockmachines/1388.png deleted file mode 100644 index 8a35d77ff2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1389.png b/front/public/images/large/gregtech/gt.blockmachines/1389.png deleted file mode 100644 index 27eada9d09..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/139.png b/front/public/images/large/gregtech/gt.blockmachines/139.png deleted file mode 100644 index e28db7f2cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1390.png b/front/public/images/large/gregtech/gt.blockmachines/1390.png deleted file mode 100644 index bc677e875c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1391.png b/front/public/images/large/gregtech/gt.blockmachines/1391.png deleted file mode 100644 index 732b265387..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14.png b/front/public/images/large/gregtech/gt.blockmachines/14.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/140.png b/front/public/images/large/gregtech/gt.blockmachines/140.png deleted file mode 100644 index 2823edc1e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/140.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1400.png b/front/public/images/large/gregtech/gt.blockmachines/1400.png deleted file mode 100644 index 7b38f57bdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14001.png b/front/public/images/large/gregtech/gt.blockmachines/14001.png deleted file mode 100644 index 6162a68022..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14002.png b/front/public/images/large/gregtech/gt.blockmachines/14002.png deleted file mode 100644 index 1c45ca12e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14003.png b/front/public/images/large/gregtech/gt.blockmachines/14003.png deleted file mode 100644 index e5da1a0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14004.png b/front/public/images/large/gregtech/gt.blockmachines/14004.png deleted file mode 100644 index 66d818a2dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14005.png b/front/public/images/large/gregtech/gt.blockmachines/14005.png deleted file mode 100644 index 66d818a2dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14006.png b/front/public/images/large/gregtech/gt.blockmachines/14006.png deleted file mode 100644 index 66d818a2dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14007.png b/front/public/images/large/gregtech/gt.blockmachines/14007.png deleted file mode 100644 index 674269ad37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14008.png b/front/public/images/large/gregtech/gt.blockmachines/14008.png deleted file mode 100644 index 674269ad37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14009.png b/front/public/images/large/gregtech/gt.blockmachines/14009.png deleted file mode 100644 index 674269ad37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1401.png b/front/public/images/large/gregtech/gt.blockmachines/1401.png deleted file mode 100644 index 960750f49d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14010.png b/front/public/images/large/gregtech/gt.blockmachines/14010.png deleted file mode 100644 index 40d842d89b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14011.png b/front/public/images/large/gregtech/gt.blockmachines/14011.png deleted file mode 100644 index 40d842d89b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14011.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14012.png b/front/public/images/large/gregtech/gt.blockmachines/14012.png deleted file mode 100644 index e5da1a0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14012.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14013.png b/front/public/images/large/gregtech/gt.blockmachines/14013.png deleted file mode 100644 index e5da1a0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14013.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/14014.png b/front/public/images/large/gregtech/gt.blockmachines/14014.png deleted file mode 100644 index 40d842d89b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/14014.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1402.png b/front/public/images/large/gregtech/gt.blockmachines/1402.png deleted file mode 100644 index 209aceaded..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1403.png b/front/public/images/large/gregtech/gt.blockmachines/1403.png deleted file mode 100644 index 9202c4f2a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1404.png b/front/public/images/large/gregtech/gt.blockmachines/1404.png deleted file mode 100644 index 3822cf63cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1405.png b/front/public/images/large/gregtech/gt.blockmachines/1405.png deleted file mode 100644 index 7df8b7ca0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1406.png b/front/public/images/large/gregtech/gt.blockmachines/1406.png deleted file mode 100644 index ad341f77dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1407.png b/front/public/images/large/gregtech/gt.blockmachines/1407.png deleted file mode 100644 index 6c0f43a028..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1408.png b/front/public/images/large/gregtech/gt.blockmachines/1408.png deleted file mode 100644 index acbbf2b565..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1409.png b/front/public/images/large/gregtech/gt.blockmachines/1409.png deleted file mode 100644 index 5d55e1daf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1409.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/141.png b/front/public/images/large/gregtech/gt.blockmachines/141.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1410.png b/front/public/images/large/gregtech/gt.blockmachines/1410.png deleted file mode 100644 index f35e600650..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1410.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1411.png b/front/public/images/large/gregtech/gt.blockmachines/1411.png deleted file mode 100644 index 1f77ebde97..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1411.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/142.png b/front/public/images/large/gregtech/gt.blockmachines/142.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/142.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1420.png b/front/public/images/large/gregtech/gt.blockmachines/1420.png deleted file mode 100644 index 527f24c979..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1420.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1421.png b/front/public/images/large/gregtech/gt.blockmachines/1421.png deleted file mode 100644 index 8f14e0219b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1421.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1422.png b/front/public/images/large/gregtech/gt.blockmachines/1422.png deleted file mode 100644 index 898d0a8ca9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1422.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1423.png b/front/public/images/large/gregtech/gt.blockmachines/1423.png deleted file mode 100644 index 41455d6dd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1423.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1424.png b/front/public/images/large/gregtech/gt.blockmachines/1424.png deleted file mode 100644 index c9b749cfc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1424.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1425.png b/front/public/images/large/gregtech/gt.blockmachines/1425.png deleted file mode 100644 index c0b71991df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1425.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1426.png b/front/public/images/large/gregtech/gt.blockmachines/1426.png deleted file mode 100644 index 3f39e1e600..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1426.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1427.png b/front/public/images/large/gregtech/gt.blockmachines/1427.png deleted file mode 100644 index b971964e53..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1427.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1428.png b/front/public/images/large/gregtech/gt.blockmachines/1428.png deleted file mode 100644 index 5f565b42f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1428.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1429.png b/front/public/images/large/gregtech/gt.blockmachines/1429.png deleted file mode 100644 index f7e0554c71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1429.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/143.png b/front/public/images/large/gregtech/gt.blockmachines/143.png deleted file mode 100644 index cba5fc727a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1430.png b/front/public/images/large/gregtech/gt.blockmachines/1430.png deleted file mode 100644 index 5d4fa32a29..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1430.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1431.png b/front/public/images/large/gregtech/gt.blockmachines/1431.png deleted file mode 100644 index b63f4d8f1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1431.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/144.png b/front/public/images/large/gregtech/gt.blockmachines/144.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1440.png b/front/public/images/large/gregtech/gt.blockmachines/1440.png deleted file mode 100644 index 560e9b8231..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1440.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1441.png b/front/public/images/large/gregtech/gt.blockmachines/1441.png deleted file mode 100644 index ad0ae89167..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1441.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1442.png b/front/public/images/large/gregtech/gt.blockmachines/1442.png deleted file mode 100644 index b15b5ed2d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1442.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1443.png b/front/public/images/large/gregtech/gt.blockmachines/1443.png deleted file mode 100644 index 5b91e79db1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1443.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1444.png b/front/public/images/large/gregtech/gt.blockmachines/1444.png deleted file mode 100644 index ff7e1e92e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1444.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1445.png b/front/public/images/large/gregtech/gt.blockmachines/1445.png deleted file mode 100644 index a705abde41..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1445.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1446.png b/front/public/images/large/gregtech/gt.blockmachines/1446.png deleted file mode 100644 index f09ae64f1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1446.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1447.png b/front/public/images/large/gregtech/gt.blockmachines/1447.png deleted file mode 100644 index da358a34c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1447.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1448.png b/front/public/images/large/gregtech/gt.blockmachines/1448.png deleted file mode 100644 index 2517a78189..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1448.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1449.png b/front/public/images/large/gregtech/gt.blockmachines/1449.png deleted file mode 100644 index 81e744c02d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1449.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/145.png b/front/public/images/large/gregtech/gt.blockmachines/145.png deleted file mode 100644 index 1a038abe17..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/145.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1450.png b/front/public/images/large/gregtech/gt.blockmachines/1450.png deleted file mode 100644 index e80e4d31da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1450.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1451.png b/front/public/images/large/gregtech/gt.blockmachines/1451.png deleted file mode 100644 index 00a3507cfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1451.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/146.png b/front/public/images/large/gregtech/gt.blockmachines/146.png deleted file mode 100644 index d7b98ee7ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/146.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1460.png b/front/public/images/large/gregtech/gt.blockmachines/1460.png deleted file mode 100644 index bc3b39e662..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1460.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1461.png b/front/public/images/large/gregtech/gt.blockmachines/1461.png deleted file mode 100644 index b5f43b9a1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1461.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1462.png b/front/public/images/large/gregtech/gt.blockmachines/1462.png deleted file mode 100644 index 2b1b9bd596..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1462.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1463.png b/front/public/images/large/gregtech/gt.blockmachines/1463.png deleted file mode 100644 index c4f9424e7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1463.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1464.png b/front/public/images/large/gregtech/gt.blockmachines/1464.png deleted file mode 100644 index bd6e704c01..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1464.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1465.png b/front/public/images/large/gregtech/gt.blockmachines/1465.png deleted file mode 100644 index d65c26a767..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1465.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1466.png b/front/public/images/large/gregtech/gt.blockmachines/1466.png deleted file mode 100644 index 2f8822f55d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1466.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1467.png b/front/public/images/large/gregtech/gt.blockmachines/1467.png deleted file mode 100644 index 1bae4cce16..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1467.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1468.png b/front/public/images/large/gregtech/gt.blockmachines/1468.png deleted file mode 100644 index 0deb8488a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1468.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1469.png b/front/public/images/large/gregtech/gt.blockmachines/1469.png deleted file mode 100644 index 6c2e5823bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1469.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/147.png b/front/public/images/large/gregtech/gt.blockmachines/147.png deleted file mode 100644 index e7ced182ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/147.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1470.png b/front/public/images/large/gregtech/gt.blockmachines/1470.png deleted file mode 100644 index 752e84ae20..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1471.png b/front/public/images/large/gregtech/gt.blockmachines/1471.png deleted file mode 100644 index 273f417c8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/148.png b/front/public/images/large/gregtech/gt.blockmachines/148.png deleted file mode 100644 index 086629dc31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/148.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1480.png b/front/public/images/large/gregtech/gt.blockmachines/1480.png deleted file mode 100644 index ad4ce07fd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1480.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1481.png b/front/public/images/large/gregtech/gt.blockmachines/1481.png deleted file mode 100644 index b817e0e575..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1481.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1482.png b/front/public/images/large/gregtech/gt.blockmachines/1482.png deleted file mode 100644 index cfae431b59..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1482.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1483.png b/front/public/images/large/gregtech/gt.blockmachines/1483.png deleted file mode 100644 index 751d1cd402..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1483.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1484.png b/front/public/images/large/gregtech/gt.blockmachines/1484.png deleted file mode 100644 index ad5165aafe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1484.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1485.png b/front/public/images/large/gregtech/gt.blockmachines/1485.png deleted file mode 100644 index 50fbd95481..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1486.png b/front/public/images/large/gregtech/gt.blockmachines/1486.png deleted file mode 100644 index 7406b0f269..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1486.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1487.png b/front/public/images/large/gregtech/gt.blockmachines/1487.png deleted file mode 100644 index 87b80fd55e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1487.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1488.png b/front/public/images/large/gregtech/gt.blockmachines/1488.png deleted file mode 100644 index 4a53e2c6f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1489.png b/front/public/images/large/gregtech/gt.blockmachines/1489.png deleted file mode 100644 index f230eb35e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/149.png b/front/public/images/large/gregtech/gt.blockmachines/149.png deleted file mode 100644 index f15ea13597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/149.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1490.png b/front/public/images/large/gregtech/gt.blockmachines/1490.png deleted file mode 100644 index 8c98c3cc44..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1490.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1491.png b/front/public/images/large/gregtech/gt.blockmachines/1491.png deleted file mode 100644 index 39675ae546..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1491.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15.png b/front/public/images/large/gregtech/gt.blockmachines/15.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/150.png b/front/public/images/large/gregtech/gt.blockmachines/150.png deleted file mode 100644 index 242a3fd37b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1500.png b/front/public/images/large/gregtech/gt.blockmachines/1500.png deleted file mode 100644 index 86ecf83871..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1501.png b/front/public/images/large/gregtech/gt.blockmachines/1501.png deleted file mode 100644 index 078fc3843a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1502.png b/front/public/images/large/gregtech/gt.blockmachines/1502.png deleted file mode 100644 index 4789af8fb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1503.png b/front/public/images/large/gregtech/gt.blockmachines/1503.png deleted file mode 100644 index 68a5374598..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1504.png b/front/public/images/large/gregtech/gt.blockmachines/1504.png deleted file mode 100644 index e1f0013e91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1505.png b/front/public/images/large/gregtech/gt.blockmachines/1505.png deleted file mode 100644 index 9f03411e24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1506.png b/front/public/images/large/gregtech/gt.blockmachines/1506.png deleted file mode 100644 index 9c3cbd253e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15065.png b/front/public/images/large/gregtech/gt.blockmachines/15065.png deleted file mode 100644 index 99cace203c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15066.png b/front/public/images/large/gregtech/gt.blockmachines/15066.png deleted file mode 100644 index a2dac01535..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15067.png b/front/public/images/large/gregtech/gt.blockmachines/15067.png deleted file mode 100644 index ac798bc6e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15068.png b/front/public/images/large/gregtech/gt.blockmachines/15068.png deleted file mode 100644 index f430ce5cac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15069.png b/front/public/images/large/gregtech/gt.blockmachines/15069.png deleted file mode 100644 index 9279f00335..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1507.png b/front/public/images/large/gregtech/gt.blockmachines/1507.png deleted file mode 100644 index ae32500bfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15070.png b/front/public/images/large/gregtech/gt.blockmachines/15070.png deleted file mode 100644 index 6ee34f1ee7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15071.png b/front/public/images/large/gregtech/gt.blockmachines/15071.png deleted file mode 100644 index bb99b2e0cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15072.png b/front/public/images/large/gregtech/gt.blockmachines/15072.png deleted file mode 100644 index 608e2d1ae9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15073.png b/front/public/images/large/gregtech/gt.blockmachines/15073.png deleted file mode 100644 index e901705aa5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15074.png b/front/public/images/large/gregtech/gt.blockmachines/15074.png deleted file mode 100644 index 70b7a13429..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15075.png b/front/public/images/large/gregtech/gt.blockmachines/15075.png deleted file mode 100644 index a62fa9f5ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15076.png b/front/public/images/large/gregtech/gt.blockmachines/15076.png deleted file mode 100644 index ff8d9262d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15077.png b/front/public/images/large/gregtech/gt.blockmachines/15077.png deleted file mode 100644 index 0cb7b2b889..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15078.png b/front/public/images/large/gregtech/gt.blockmachines/15078.png deleted file mode 100644 index b67fe5b134..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15079.png b/front/public/images/large/gregtech/gt.blockmachines/15079.png deleted file mode 100644 index dcaf84f619..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15079.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1508.png b/front/public/images/large/gregtech/gt.blockmachines/1508.png deleted file mode 100644 index 7ec0283a7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15080.png b/front/public/images/large/gregtech/gt.blockmachines/15080.png deleted file mode 100644 index d2abb54a0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15081.png b/front/public/images/large/gregtech/gt.blockmachines/15081.png deleted file mode 100644 index 33c2c6e597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15082.png b/front/public/images/large/gregtech/gt.blockmachines/15082.png deleted file mode 100644 index dcab491359..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15082.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15083.png b/front/public/images/large/gregtech/gt.blockmachines/15083.png deleted file mode 100644 index 0e12c701a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15084.png b/front/public/images/large/gregtech/gt.blockmachines/15084.png deleted file mode 100644 index 77dcac5caf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15085.png b/front/public/images/large/gregtech/gt.blockmachines/15085.png deleted file mode 100644 index 9677eab327..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15086.png b/front/public/images/large/gregtech/gt.blockmachines/15086.png deleted file mode 100644 index 1f98215489..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15087.png b/front/public/images/large/gregtech/gt.blockmachines/15087.png deleted file mode 100644 index 974f95bf32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15087.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15088.png b/front/public/images/large/gregtech/gt.blockmachines/15088.png deleted file mode 100644 index a00cb75f18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15088.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15089.png b/front/public/images/large/gregtech/gt.blockmachines/15089.png deleted file mode 100644 index 1a0bfc9f79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1509.png b/front/public/images/large/gregtech/gt.blockmachines/1509.png deleted file mode 100644 index d46d235835..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15090.png b/front/public/images/large/gregtech/gt.blockmachines/15090.png deleted file mode 100644 index 7ded3a9bb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15091.png b/front/public/images/large/gregtech/gt.blockmachines/15091.png deleted file mode 100644 index 394a0c59d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15091.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15092.png b/front/public/images/large/gregtech/gt.blockmachines/15092.png deleted file mode 100644 index dc26a23817..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15092.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15093.png b/front/public/images/large/gregtech/gt.blockmachines/15093.png deleted file mode 100644 index efa1c87963..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15093.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15094.png b/front/public/images/large/gregtech/gt.blockmachines/15094.png deleted file mode 100644 index dc8a53b77a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15094.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15095.png b/front/public/images/large/gregtech/gt.blockmachines/15095.png deleted file mode 100644 index f2d413619d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15095.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15096.png b/front/public/images/large/gregtech/gt.blockmachines/15096.png deleted file mode 100644 index e09ca0eb6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15097.png b/front/public/images/large/gregtech/gt.blockmachines/15097.png deleted file mode 100644 index 2c54db761b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/151.png b/front/public/images/large/gregtech/gt.blockmachines/151.png deleted file mode 100644 index 2d8b8eca54..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/151.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1510.png b/front/public/images/large/gregtech/gt.blockmachines/1510.png deleted file mode 100644 index 59fe043755..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15100.png b/front/public/images/large/gregtech/gt.blockmachines/15100.png deleted file mode 100644 index bd7d8277ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15101.png b/front/public/images/large/gregtech/gt.blockmachines/15101.png deleted file mode 100644 index 8755ef1fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15102.png b/front/public/images/large/gregtech/gt.blockmachines/15102.png deleted file mode 100644 index 9a531ab567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15103.png b/front/public/images/large/gregtech/gt.blockmachines/15103.png deleted file mode 100644 index 7fb95d9b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15104.png b/front/public/images/large/gregtech/gt.blockmachines/15104.png deleted file mode 100644 index ecbb523ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15105.png b/front/public/images/large/gregtech/gt.blockmachines/15105.png deleted file mode 100644 index 85674b5a5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15105.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15106.png b/front/public/images/large/gregtech/gt.blockmachines/15106.png deleted file mode 100644 index 13f9f5be88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15107.png b/front/public/images/large/gregtech/gt.blockmachines/15107.png deleted file mode 100644 index 9450562207..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15107.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15108.png b/front/public/images/large/gregtech/gt.blockmachines/15108.png deleted file mode 100644 index de426a7c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15108.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15109.png b/front/public/images/large/gregtech/gt.blockmachines/15109.png deleted file mode 100644 index 90c085d4f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15109.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1511.png b/front/public/images/large/gregtech/gt.blockmachines/1511.png deleted file mode 100644 index 96c53147f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15110.png b/front/public/images/large/gregtech/gt.blockmachines/15110.png deleted file mode 100644 index bd7d8277ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15111.png b/front/public/images/large/gregtech/gt.blockmachines/15111.png deleted file mode 100644 index 8755ef1fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15112.png b/front/public/images/large/gregtech/gt.blockmachines/15112.png deleted file mode 100644 index 9a531ab567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15113.png b/front/public/images/large/gregtech/gt.blockmachines/15113.png deleted file mode 100644 index 7fb95d9b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15113.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15114.png b/front/public/images/large/gregtech/gt.blockmachines/15114.png deleted file mode 100644 index ecbb523ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15115.png b/front/public/images/large/gregtech/gt.blockmachines/15115.png deleted file mode 100644 index 85674b5a5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15115.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15116.png b/front/public/images/large/gregtech/gt.blockmachines/15116.png deleted file mode 100644 index 13f9f5be88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15116.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15117.png b/front/public/images/large/gregtech/gt.blockmachines/15117.png deleted file mode 100644 index 9450562207..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15117.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15118.png b/front/public/images/large/gregtech/gt.blockmachines/15118.png deleted file mode 100644 index de426a7c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15118.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15119.png b/front/public/images/large/gregtech/gt.blockmachines/15119.png deleted file mode 100644 index 90c085d4f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15119.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15120.png b/front/public/images/large/gregtech/gt.blockmachines/15120.png deleted file mode 100644 index bd7d8277ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15120.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15121.png b/front/public/images/large/gregtech/gt.blockmachines/15121.png deleted file mode 100644 index 8755ef1fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15121.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15122.png b/front/public/images/large/gregtech/gt.blockmachines/15122.png deleted file mode 100644 index 9a531ab567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15122.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15123.png b/front/public/images/large/gregtech/gt.blockmachines/15123.png deleted file mode 100644 index 7fb95d9b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15123.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15124.png b/front/public/images/large/gregtech/gt.blockmachines/15124.png deleted file mode 100644 index ecbb523ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15124.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15125.png b/front/public/images/large/gregtech/gt.blockmachines/15125.png deleted file mode 100644 index 85674b5a5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15125.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15126.png b/front/public/images/large/gregtech/gt.blockmachines/15126.png deleted file mode 100644 index 13f9f5be88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15126.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15127.png b/front/public/images/large/gregtech/gt.blockmachines/15127.png deleted file mode 100644 index 9450562207..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15127.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15128.png b/front/public/images/large/gregtech/gt.blockmachines/15128.png deleted file mode 100644 index de426a7c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15128.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15129.png b/front/public/images/large/gregtech/gt.blockmachines/15129.png deleted file mode 100644 index 90c085d4f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15130.png b/front/public/images/large/gregtech/gt.blockmachines/15130.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15131.png b/front/public/images/large/gregtech/gt.blockmachines/15131.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15132.png b/front/public/images/large/gregtech/gt.blockmachines/15132.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15132.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15133.png b/front/public/images/large/gregtech/gt.blockmachines/15133.png deleted file mode 100644 index 2b507f7008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15133.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15134.png b/front/public/images/large/gregtech/gt.blockmachines/15134.png deleted file mode 100644 index 2d7c19f1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15135.png b/front/public/images/large/gregtech/gt.blockmachines/15135.png deleted file mode 100644 index 489d182a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15135.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15136.png b/front/public/images/large/gregtech/gt.blockmachines/15136.png deleted file mode 100644 index 34eaa25566..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15136.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15137.png b/front/public/images/large/gregtech/gt.blockmachines/15137.png deleted file mode 100644 index e8c68b7c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15137.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15138.png b/front/public/images/large/gregtech/gt.blockmachines/15138.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15138.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15140.png b/front/public/images/large/gregtech/gt.blockmachines/15140.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15140.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15141.png b/front/public/images/large/gregtech/gt.blockmachines/15141.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15142.png b/front/public/images/large/gregtech/gt.blockmachines/15142.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15142.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15143.png b/front/public/images/large/gregtech/gt.blockmachines/15143.png deleted file mode 100644 index 2b507f7008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15144.png b/front/public/images/large/gregtech/gt.blockmachines/15144.png deleted file mode 100644 index 2d7c19f1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15145.png b/front/public/images/large/gregtech/gt.blockmachines/15145.png deleted file mode 100644 index 489d182a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15145.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15146.png b/front/public/images/large/gregtech/gt.blockmachines/15146.png deleted file mode 100644 index 34eaa25566..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15146.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15147.png b/front/public/images/large/gregtech/gt.blockmachines/15147.png deleted file mode 100644 index e8c68b7c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15147.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15148.png b/front/public/images/large/gregtech/gt.blockmachines/15148.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15148.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15150.png b/front/public/images/large/gregtech/gt.blockmachines/15150.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15151.png b/front/public/images/large/gregtech/gt.blockmachines/15151.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15151.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15152.png b/front/public/images/large/gregtech/gt.blockmachines/15152.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15152.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15153.png b/front/public/images/large/gregtech/gt.blockmachines/15153.png deleted file mode 100644 index 2b507f7008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15153.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15154.png b/front/public/images/large/gregtech/gt.blockmachines/15154.png deleted file mode 100644 index 2d7c19f1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15154.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15155.png b/front/public/images/large/gregtech/gt.blockmachines/15155.png deleted file mode 100644 index 489d182a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15155.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15156.png b/front/public/images/large/gregtech/gt.blockmachines/15156.png deleted file mode 100644 index 34eaa25566..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15156.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15157.png b/front/public/images/large/gregtech/gt.blockmachines/15157.png deleted file mode 100644 index e8c68b7c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15157.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15158.png b/front/public/images/large/gregtech/gt.blockmachines/15158.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15158.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15160.png b/front/public/images/large/gregtech/gt.blockmachines/15160.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15160.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15161.png b/front/public/images/large/gregtech/gt.blockmachines/15161.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15161.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15162.png b/front/public/images/large/gregtech/gt.blockmachines/15162.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15162.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15163.png b/front/public/images/large/gregtech/gt.blockmachines/15163.png deleted file mode 100644 index 2b507f7008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15163.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15164.png b/front/public/images/large/gregtech/gt.blockmachines/15164.png deleted file mode 100644 index 2d7c19f1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15164.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15165.png b/front/public/images/large/gregtech/gt.blockmachines/15165.png deleted file mode 100644 index 489d182a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15165.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15166.png b/front/public/images/large/gregtech/gt.blockmachines/15166.png deleted file mode 100644 index 34eaa25566..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15166.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15167.png b/front/public/images/large/gregtech/gt.blockmachines/15167.png deleted file mode 100644 index e8c68b7c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15167.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15168.png b/front/public/images/large/gregtech/gt.blockmachines/15168.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15168.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15170.png b/front/public/images/large/gregtech/gt.blockmachines/15170.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15170.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15171.png b/front/public/images/large/gregtech/gt.blockmachines/15171.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15171.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15172.png b/front/public/images/large/gregtech/gt.blockmachines/15172.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15172.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15173.png b/front/public/images/large/gregtech/gt.blockmachines/15173.png deleted file mode 100644 index 2b507f7008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15173.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15174.png b/front/public/images/large/gregtech/gt.blockmachines/15174.png deleted file mode 100644 index 2d7c19f1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15174.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15175.png b/front/public/images/large/gregtech/gt.blockmachines/15175.png deleted file mode 100644 index 489d182a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15175.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15176.png b/front/public/images/large/gregtech/gt.blockmachines/15176.png deleted file mode 100644 index 34eaa25566..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15176.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15177.png b/front/public/images/large/gregtech/gt.blockmachines/15177.png deleted file mode 100644 index e8c68b7c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15177.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15178.png b/front/public/images/large/gregtech/gt.blockmachines/15178.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15178.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15180.png b/front/public/images/large/gregtech/gt.blockmachines/15180.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15180.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15181.png b/front/public/images/large/gregtech/gt.blockmachines/15181.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15181.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15182.png b/front/public/images/large/gregtech/gt.blockmachines/15182.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15182.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15183.png b/front/public/images/large/gregtech/gt.blockmachines/15183.png deleted file mode 100644 index 2b507f7008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15183.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15184.png b/front/public/images/large/gregtech/gt.blockmachines/15184.png deleted file mode 100644 index 2d7c19f1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15184.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15185.png b/front/public/images/large/gregtech/gt.blockmachines/15185.png deleted file mode 100644 index 489d182a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15185.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15186.png b/front/public/images/large/gregtech/gt.blockmachines/15186.png deleted file mode 100644 index 34eaa25566..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15186.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15187.png b/front/public/images/large/gregtech/gt.blockmachines/15187.png deleted file mode 100644 index e8c68b7c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15187.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15188.png b/front/public/images/large/gregtech/gt.blockmachines/15188.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15188.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15190.png b/front/public/images/large/gregtech/gt.blockmachines/15190.png deleted file mode 100644 index 0ddd4f0259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15190.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15191.png b/front/public/images/large/gregtech/gt.blockmachines/15191.png deleted file mode 100644 index d0b72840b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15191.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15192.png b/front/public/images/large/gregtech/gt.blockmachines/15192.png deleted file mode 100644 index de32f7f6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15192.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15193.png b/front/public/images/large/gregtech/gt.blockmachines/15193.png deleted file mode 100644 index 2b507f7008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15193.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15194.png b/front/public/images/large/gregtech/gt.blockmachines/15194.png deleted file mode 100644 index 2d7c19f1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15194.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15195.png b/front/public/images/large/gregtech/gt.blockmachines/15195.png deleted file mode 100644 index 489d182a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15195.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15196.png b/front/public/images/large/gregtech/gt.blockmachines/15196.png deleted file mode 100644 index 34eaa25566..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15196.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15197.png b/front/public/images/large/gregtech/gt.blockmachines/15197.png deleted file mode 100644 index e8c68b7c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15197.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15198.png b/front/public/images/large/gregtech/gt.blockmachines/15198.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15198.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15199.png b/front/public/images/large/gregtech/gt.blockmachines/15199.png deleted file mode 100644 index 272bd9f378..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15199.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/152.png b/front/public/images/large/gregtech/gt.blockmachines/152.png deleted file mode 100644 index 480aeab8aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/152.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1520.png b/front/public/images/large/gregtech/gt.blockmachines/1520.png deleted file mode 100644 index 38440bb237..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15200.png b/front/public/images/large/gregtech/gt.blockmachines/15200.png deleted file mode 100644 index bd7d8277ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15201.png b/front/public/images/large/gregtech/gt.blockmachines/15201.png deleted file mode 100644 index 8755ef1fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15202.png b/front/public/images/large/gregtech/gt.blockmachines/15202.png deleted file mode 100644 index 9a531ab567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15203.png b/front/public/images/large/gregtech/gt.blockmachines/15203.png deleted file mode 100644 index 7fb95d9b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15204.png b/front/public/images/large/gregtech/gt.blockmachines/15204.png deleted file mode 100644 index ecbb523ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15205.png b/front/public/images/large/gregtech/gt.blockmachines/15205.png deleted file mode 100644 index 85674b5a5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15206.png b/front/public/images/large/gregtech/gt.blockmachines/15206.png deleted file mode 100644 index 13f9f5be88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15207.png b/front/public/images/large/gregtech/gt.blockmachines/15207.png deleted file mode 100644 index 9450562207..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15208.png b/front/public/images/large/gregtech/gt.blockmachines/15208.png deleted file mode 100644 index de426a7c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15209.png b/front/public/images/large/gregtech/gt.blockmachines/15209.png deleted file mode 100644 index 90c085d4f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1521.png b/front/public/images/large/gregtech/gt.blockmachines/1521.png deleted file mode 100644 index 281955fef1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15210.png b/front/public/images/large/gregtech/gt.blockmachines/15210.png deleted file mode 100644 index bd7d8277ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15210.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15211.png b/front/public/images/large/gregtech/gt.blockmachines/15211.png deleted file mode 100644 index 8755ef1fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15211.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15212.png b/front/public/images/large/gregtech/gt.blockmachines/15212.png deleted file mode 100644 index 9a531ab567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15212.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15213.png b/front/public/images/large/gregtech/gt.blockmachines/15213.png deleted file mode 100644 index 7fb95d9b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15213.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15214.png b/front/public/images/large/gregtech/gt.blockmachines/15214.png deleted file mode 100644 index ecbb523ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15214.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15215.png b/front/public/images/large/gregtech/gt.blockmachines/15215.png deleted file mode 100644 index 85674b5a5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15215.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15216.png b/front/public/images/large/gregtech/gt.blockmachines/15216.png deleted file mode 100644 index 13f9f5be88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15216.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15217.png b/front/public/images/large/gregtech/gt.blockmachines/15217.png deleted file mode 100644 index 9450562207..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15217.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15218.png b/front/public/images/large/gregtech/gt.blockmachines/15218.png deleted file mode 100644 index de426a7c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15218.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15219.png b/front/public/images/large/gregtech/gt.blockmachines/15219.png deleted file mode 100644 index 90c085d4f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15219.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1522.png b/front/public/images/large/gregtech/gt.blockmachines/1522.png deleted file mode 100644 index b76cb43874..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15220.png b/front/public/images/large/gregtech/gt.blockmachines/15220.png deleted file mode 100644 index bd7d8277ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15220.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15221.png b/front/public/images/large/gregtech/gt.blockmachines/15221.png deleted file mode 100644 index 8755ef1fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15221.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15222.png b/front/public/images/large/gregtech/gt.blockmachines/15222.png deleted file mode 100644 index 9a531ab567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15222.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15223.png b/front/public/images/large/gregtech/gt.blockmachines/15223.png deleted file mode 100644 index 7fb95d9b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15223.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15224.png b/front/public/images/large/gregtech/gt.blockmachines/15224.png deleted file mode 100644 index ecbb523ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15224.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15225.png b/front/public/images/large/gregtech/gt.blockmachines/15225.png deleted file mode 100644 index 85674b5a5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15225.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15226.png b/front/public/images/large/gregtech/gt.blockmachines/15226.png deleted file mode 100644 index 13f9f5be88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15226.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15227.png b/front/public/images/large/gregtech/gt.blockmachines/15227.png deleted file mode 100644 index 9450562207..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15227.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15228.png b/front/public/images/large/gregtech/gt.blockmachines/15228.png deleted file mode 100644 index de426a7c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15228.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15229.png b/front/public/images/large/gregtech/gt.blockmachines/15229.png deleted file mode 100644 index 90c085d4f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15229.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1523.png b/front/public/images/large/gregtech/gt.blockmachines/1523.png deleted file mode 100644 index 0ff60e0f35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15230.png b/front/public/images/large/gregtech/gt.blockmachines/15230.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15231.png b/front/public/images/large/gregtech/gt.blockmachines/15231.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15231.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15232.png b/front/public/images/large/gregtech/gt.blockmachines/15232.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15232.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15233.png b/front/public/images/large/gregtech/gt.blockmachines/15233.png deleted file mode 100644 index d0435ad2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15233.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15234.png b/front/public/images/large/gregtech/gt.blockmachines/15234.png deleted file mode 100644 index 251191c4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15234.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15235.png b/front/public/images/large/gregtech/gt.blockmachines/15235.png deleted file mode 100644 index 74212037fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15235.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15236.png b/front/public/images/large/gregtech/gt.blockmachines/15236.png deleted file mode 100644 index b071fec9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15236.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15237.png b/front/public/images/large/gregtech/gt.blockmachines/15237.png deleted file mode 100644 index 9cdb362b2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15237.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15238.png b/front/public/images/large/gregtech/gt.blockmachines/15238.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15238.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1524.png b/front/public/images/large/gregtech/gt.blockmachines/1524.png deleted file mode 100644 index 59131e8212..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15240.png b/front/public/images/large/gregtech/gt.blockmachines/15240.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15240.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15241.png b/front/public/images/large/gregtech/gt.blockmachines/15241.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15241.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15242.png b/front/public/images/large/gregtech/gt.blockmachines/15242.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15242.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15243.png b/front/public/images/large/gregtech/gt.blockmachines/15243.png deleted file mode 100644 index d0435ad2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15243.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15244.png b/front/public/images/large/gregtech/gt.blockmachines/15244.png deleted file mode 100644 index 251191c4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15244.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15245.png b/front/public/images/large/gregtech/gt.blockmachines/15245.png deleted file mode 100644 index 74212037fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15245.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15246.png b/front/public/images/large/gregtech/gt.blockmachines/15246.png deleted file mode 100644 index b071fec9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15246.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15247.png b/front/public/images/large/gregtech/gt.blockmachines/15247.png deleted file mode 100644 index 9cdb362b2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15247.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15248.png b/front/public/images/large/gregtech/gt.blockmachines/15248.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15248.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1525.png b/front/public/images/large/gregtech/gt.blockmachines/1525.png deleted file mode 100644 index 8f86bb36e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15250.png b/front/public/images/large/gregtech/gt.blockmachines/15250.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15250.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15251.png b/front/public/images/large/gregtech/gt.blockmachines/15251.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15251.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15252.png b/front/public/images/large/gregtech/gt.blockmachines/15252.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15252.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15253.png b/front/public/images/large/gregtech/gt.blockmachines/15253.png deleted file mode 100644 index d0435ad2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15253.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15254.png b/front/public/images/large/gregtech/gt.blockmachines/15254.png deleted file mode 100644 index 251191c4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15254.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15255.png b/front/public/images/large/gregtech/gt.blockmachines/15255.png deleted file mode 100644 index 74212037fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15255.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15256.png b/front/public/images/large/gregtech/gt.blockmachines/15256.png deleted file mode 100644 index b071fec9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15256.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15257.png b/front/public/images/large/gregtech/gt.blockmachines/15257.png deleted file mode 100644 index 9cdb362b2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15257.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15258.png b/front/public/images/large/gregtech/gt.blockmachines/15258.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15258.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1526.png b/front/public/images/large/gregtech/gt.blockmachines/1526.png deleted file mode 100644 index 602b5c650c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15260.png b/front/public/images/large/gregtech/gt.blockmachines/15260.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15260.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15261.png b/front/public/images/large/gregtech/gt.blockmachines/15261.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15261.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15262.png b/front/public/images/large/gregtech/gt.blockmachines/15262.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15262.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15263.png b/front/public/images/large/gregtech/gt.blockmachines/15263.png deleted file mode 100644 index d0435ad2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15263.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15264.png b/front/public/images/large/gregtech/gt.blockmachines/15264.png deleted file mode 100644 index 251191c4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15264.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15265.png b/front/public/images/large/gregtech/gt.blockmachines/15265.png deleted file mode 100644 index 74212037fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15265.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15266.png b/front/public/images/large/gregtech/gt.blockmachines/15266.png deleted file mode 100644 index b071fec9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15266.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15267.png b/front/public/images/large/gregtech/gt.blockmachines/15267.png deleted file mode 100644 index 9cdb362b2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15267.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15268.png b/front/public/images/large/gregtech/gt.blockmachines/15268.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15268.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1527.png b/front/public/images/large/gregtech/gt.blockmachines/1527.png deleted file mode 100644 index d6178b8c56..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15270.png b/front/public/images/large/gregtech/gt.blockmachines/15270.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15270.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15271.png b/front/public/images/large/gregtech/gt.blockmachines/15271.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15271.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15272.png b/front/public/images/large/gregtech/gt.blockmachines/15272.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15272.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15273.png b/front/public/images/large/gregtech/gt.blockmachines/15273.png deleted file mode 100644 index d0435ad2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15273.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15274.png b/front/public/images/large/gregtech/gt.blockmachines/15274.png deleted file mode 100644 index 251191c4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15274.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15275.png b/front/public/images/large/gregtech/gt.blockmachines/15275.png deleted file mode 100644 index 74212037fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15275.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15276.png b/front/public/images/large/gregtech/gt.blockmachines/15276.png deleted file mode 100644 index b071fec9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15276.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15277.png b/front/public/images/large/gregtech/gt.blockmachines/15277.png deleted file mode 100644 index 9cdb362b2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15277.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15278.png b/front/public/images/large/gregtech/gt.blockmachines/15278.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15278.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1528.png b/front/public/images/large/gregtech/gt.blockmachines/1528.png deleted file mode 100644 index 0627d8ed8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15280.png b/front/public/images/large/gregtech/gt.blockmachines/15280.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15280.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15281.png b/front/public/images/large/gregtech/gt.blockmachines/15281.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15281.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15282.png b/front/public/images/large/gregtech/gt.blockmachines/15282.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15282.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15283.png b/front/public/images/large/gregtech/gt.blockmachines/15283.png deleted file mode 100644 index d0435ad2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15283.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15284.png b/front/public/images/large/gregtech/gt.blockmachines/15284.png deleted file mode 100644 index 251191c4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15284.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15285.png b/front/public/images/large/gregtech/gt.blockmachines/15285.png deleted file mode 100644 index 74212037fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15285.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15286.png b/front/public/images/large/gregtech/gt.blockmachines/15286.png deleted file mode 100644 index b071fec9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15286.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15287.png b/front/public/images/large/gregtech/gt.blockmachines/15287.png deleted file mode 100644 index 9cdb362b2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15287.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15288.png b/front/public/images/large/gregtech/gt.blockmachines/15288.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15288.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1529.png b/front/public/images/large/gregtech/gt.blockmachines/1529.png deleted file mode 100644 index 8115ea8504..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15290.png b/front/public/images/large/gregtech/gt.blockmachines/15290.png deleted file mode 100644 index 1b48a55610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15290.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15291.png b/front/public/images/large/gregtech/gt.blockmachines/15291.png deleted file mode 100644 index 2165e7b23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15291.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15292.png b/front/public/images/large/gregtech/gt.blockmachines/15292.png deleted file mode 100644 index f8e19a5016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15292.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15293.png b/front/public/images/large/gregtech/gt.blockmachines/15293.png deleted file mode 100644 index d0435ad2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15293.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15294.png b/front/public/images/large/gregtech/gt.blockmachines/15294.png deleted file mode 100644 index 251191c4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15294.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15295.png b/front/public/images/large/gregtech/gt.blockmachines/15295.png deleted file mode 100644 index 74212037fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15295.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15296.png b/front/public/images/large/gregtech/gt.blockmachines/15296.png deleted file mode 100644 index b071fec9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15296.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15297.png b/front/public/images/large/gregtech/gt.blockmachines/15297.png deleted file mode 100644 index 9cdb362b2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15297.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15298.png b/front/public/images/large/gregtech/gt.blockmachines/15298.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15298.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15299.png b/front/public/images/large/gregtech/gt.blockmachines/15299.png deleted file mode 100644 index 8008f5a08c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/153.png b/front/public/images/large/gregtech/gt.blockmachines/153.png deleted file mode 100644 index f3865190f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/153.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1530.png b/front/public/images/large/gregtech/gt.blockmachines/1530.png deleted file mode 100644 index 3104a65d44..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15300.png b/front/public/images/large/gregtech/gt.blockmachines/15300.png deleted file mode 100644 index dc0df0bde9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1531.png b/front/public/images/large/gregtech/gt.blockmachines/1531.png deleted file mode 100644 index 01c0d376df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15310.png b/front/public/images/large/gregtech/gt.blockmachines/15310.png deleted file mode 100644 index 103346699e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15311.png b/front/public/images/large/gregtech/gt.blockmachines/15311.png deleted file mode 100644 index b849306d45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15312.png b/front/public/images/large/gregtech/gt.blockmachines/15312.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15313.png b/front/public/images/large/gregtech/gt.blockmachines/15313.png deleted file mode 100644 index 103346699e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15314.png b/front/public/images/large/gregtech/gt.blockmachines/15314.png deleted file mode 100644 index 59ea4c2e39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15331.png b/front/public/images/large/gregtech/gt.blockmachines/15331.png deleted file mode 100644 index d63a26bd8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15350.png b/front/public/images/large/gregtech/gt.blockmachines/15350.png deleted file mode 100644 index 1c302340c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/154.png b/front/public/images/large/gregtech/gt.blockmachines/154.png deleted file mode 100644 index 77566425b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/154.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1540.png b/front/public/images/large/gregtech/gt.blockmachines/1540.png deleted file mode 100644 index f3e2fce464..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1541.png b/front/public/images/large/gregtech/gt.blockmachines/1541.png deleted file mode 100644 index 7d27d8817f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15410.png b/front/public/images/large/gregtech/gt.blockmachines/15410.png deleted file mode 100644 index 6b7a025d26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15410.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1542.png b/front/public/images/large/gregtech/gt.blockmachines/1542.png deleted file mode 100644 index 176480eb5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15420.png b/front/public/images/large/gregtech/gt.blockmachines/15420.png deleted file mode 100644 index c914529f79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15420.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15421.png b/front/public/images/large/gregtech/gt.blockmachines/15421.png deleted file mode 100644 index 6747f5b916..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15421.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15422.png b/front/public/images/large/gregtech/gt.blockmachines/15422.png deleted file mode 100644 index 50497b1fdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15422.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1543.png b/front/public/images/large/gregtech/gt.blockmachines/1543.png deleted file mode 100644 index 976cabea6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15430.png b/front/public/images/large/gregtech/gt.blockmachines/15430.png deleted file mode 100644 index bf109b103a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15430.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15431.png b/front/public/images/large/gregtech/gt.blockmachines/15431.png deleted file mode 100644 index dff8fa31ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15431.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1544.png b/front/public/images/large/gregtech/gt.blockmachines/1544.png deleted file mode 100644 index b5ec89129c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15440.png b/front/public/images/large/gregtech/gt.blockmachines/15440.png deleted file mode 100644 index d486deff55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15440.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15441.png b/front/public/images/large/gregtech/gt.blockmachines/15441.png deleted file mode 100644 index d486deff55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15441.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15442.png b/front/public/images/large/gregtech/gt.blockmachines/15442.png deleted file mode 100644 index d486deff55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15442.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15443.png b/front/public/images/large/gregtech/gt.blockmachines/15443.png deleted file mode 100644 index d486deff55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15443.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1545.png b/front/public/images/large/gregtech/gt.blockmachines/1545.png deleted file mode 100644 index 3d5b04e0ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15450.png b/front/public/images/large/gregtech/gt.blockmachines/15450.png deleted file mode 100644 index 0906dfc23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15450.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15451.png b/front/public/images/large/gregtech/gt.blockmachines/15451.png deleted file mode 100644 index 415d6f6093..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15451.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15452.png b/front/public/images/large/gregtech/gt.blockmachines/15452.png deleted file mode 100644 index 1e9ca04886..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15452.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1546.png b/front/public/images/large/gregtech/gt.blockmachines/1546.png deleted file mode 100644 index f256428be9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1546.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15465.png b/front/public/images/large/gregtech/gt.blockmachines/15465.png deleted file mode 100644 index 73ebf7c97a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15465.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1547.png b/front/public/images/large/gregtech/gt.blockmachines/1547.png deleted file mode 100644 index 2988526a65..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1547.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15470.png b/front/public/images/large/gregtech/gt.blockmachines/15470.png deleted file mode 100644 index 6a62065c39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15472.png b/front/public/images/large/gregtech/gt.blockmachines/15472.png deleted file mode 100644 index 65121e8f40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15473.png b/front/public/images/large/gregtech/gt.blockmachines/15473.png deleted file mode 100644 index 505dd8f346..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1548.png b/front/public/images/large/gregtech/gt.blockmachines/1548.png deleted file mode 100644 index b542774c78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15480.png b/front/public/images/large/gregtech/gt.blockmachines/15480.png deleted file mode 100644 index 083998e0b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15480.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15485.png b/front/public/images/large/gregtech/gt.blockmachines/15485.png deleted file mode 100644 index fec6b44def..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15486.png b/front/public/images/large/gregtech/gt.blockmachines/15486.png deleted file mode 100644 index 526b44afeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15486.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15487.png b/front/public/images/large/gregtech/gt.blockmachines/15487.png deleted file mode 100644 index 94e6428740..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15487.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15488.png b/front/public/images/large/gregtech/gt.blockmachines/15488.png deleted file mode 100644 index 55e3cb75a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15489.png b/front/public/images/large/gregtech/gt.blockmachines/15489.png deleted file mode 100644 index 0e3cd2cee3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1549.png b/front/public/images/large/gregtech/gt.blockmachines/1549.png deleted file mode 100644 index 0586c50c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15490.png b/front/public/images/large/gregtech/gt.blockmachines/15490.png deleted file mode 100644 index b4998854d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15490.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15491.png b/front/public/images/large/gregtech/gt.blockmachines/15491.png deleted file mode 100644 index 413853fc19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15491.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15492.png b/front/public/images/large/gregtech/gt.blockmachines/15492.png deleted file mode 100644 index b47242b65d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15492.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15493.png b/front/public/images/large/gregtech/gt.blockmachines/15493.png deleted file mode 100644 index fdffa3e7b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15493.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15495.png b/front/public/images/large/gregtech/gt.blockmachines/15495.png deleted file mode 100644 index ea4160c2b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15495.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15496.png b/front/public/images/large/gregtech/gt.blockmachines/15496.png deleted file mode 100644 index d8b19847c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15496.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15497.png b/front/public/images/large/gregtech/gt.blockmachines/15497.png deleted file mode 100644 index d4325c27c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15497.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15498.png b/front/public/images/large/gregtech/gt.blockmachines/15498.png deleted file mode 100644 index e817d864e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15498.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15499.png b/front/public/images/large/gregtech/gt.blockmachines/15499.png deleted file mode 100644 index 9a63107905..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15499.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/155.png b/front/public/images/large/gregtech/gt.blockmachines/155.png deleted file mode 100644 index 30d477b861..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/155.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1550.png b/front/public/images/large/gregtech/gt.blockmachines/1550.png deleted file mode 100644 index d9085cb475..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1550.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15500.png b/front/public/images/large/gregtech/gt.blockmachines/15500.png deleted file mode 100644 index c0c37e5b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15501.png b/front/public/images/large/gregtech/gt.blockmachines/15501.png deleted file mode 100644 index c0c37e5b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15502.png b/front/public/images/large/gregtech/gt.blockmachines/15502.png deleted file mode 100644 index c0c37e5b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15503.png b/front/public/images/large/gregtech/gt.blockmachines/15503.png deleted file mode 100644 index c0c37e5b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15504.png b/front/public/images/large/gregtech/gt.blockmachines/15504.png deleted file mode 100644 index c0c37e5b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15505.png b/front/public/images/large/gregtech/gt.blockmachines/15505.png deleted file mode 100644 index c0c37e5b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15506.png b/front/public/images/large/gregtech/gt.blockmachines/15506.png deleted file mode 100644 index c0c37e5b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1551.png b/front/public/images/large/gregtech/gt.blockmachines/1551.png deleted file mode 100644 index d058511741..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1551.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/15510.png b/front/public/images/large/gregtech/gt.blockmachines/15510.png deleted file mode 100644 index e87e8b921e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/15510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/156.png b/front/public/images/large/gregtech/gt.blockmachines/156.png deleted file mode 100644 index e710f8d1b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/156.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1560.png b/front/public/images/large/gregtech/gt.blockmachines/1560.png deleted file mode 100644 index 0eddf12bdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1560.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1561.png b/front/public/images/large/gregtech/gt.blockmachines/1561.png deleted file mode 100644 index c7b6e6fddf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1561.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1562.png b/front/public/images/large/gregtech/gt.blockmachines/1562.png deleted file mode 100644 index a7296c7c66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1562.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1563.png b/front/public/images/large/gregtech/gt.blockmachines/1563.png deleted file mode 100644 index d767128a7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1563.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1564.png b/front/public/images/large/gregtech/gt.blockmachines/1564.png deleted file mode 100644 index 9f2daa489c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1564.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1565.png b/front/public/images/large/gregtech/gt.blockmachines/1565.png deleted file mode 100644 index 98c3d1c3aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1565.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1566.png b/front/public/images/large/gregtech/gt.blockmachines/1566.png deleted file mode 100644 index 76bfd82733..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1566.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1567.png b/front/public/images/large/gregtech/gt.blockmachines/1567.png deleted file mode 100644 index 9b562a22f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1567.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1568.png b/front/public/images/large/gregtech/gt.blockmachines/1568.png deleted file mode 100644 index 488401f086..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1568.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1569.png b/front/public/images/large/gregtech/gt.blockmachines/1569.png deleted file mode 100644 index 359da14960..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1569.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/157.png b/front/public/images/large/gregtech/gt.blockmachines/157.png deleted file mode 100644 index 8371607509..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/157.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1570.png b/front/public/images/large/gregtech/gt.blockmachines/1570.png deleted file mode 100644 index 27be627d57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1570.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1571.png b/front/public/images/large/gregtech/gt.blockmachines/1571.png deleted file mode 100644 index 14cfb6c063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1571.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/158.png b/front/public/images/large/gregtech/gt.blockmachines/158.png deleted file mode 100644 index cc86ca2d68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/158.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1580.png b/front/public/images/large/gregtech/gt.blockmachines/1580.png deleted file mode 100644 index eef201376c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1580.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1581.png b/front/public/images/large/gregtech/gt.blockmachines/1581.png deleted file mode 100644 index 8d05ee910c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1582.png b/front/public/images/large/gregtech/gt.blockmachines/1582.png deleted file mode 100644 index 010c1c1c3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1583.png b/front/public/images/large/gregtech/gt.blockmachines/1583.png deleted file mode 100644 index 90123a8943..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1584.png b/front/public/images/large/gregtech/gt.blockmachines/1584.png deleted file mode 100644 index 4e274a28b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1584.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1585.png b/front/public/images/large/gregtech/gt.blockmachines/1585.png deleted file mode 100644 index 81cb96ea71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1586.png b/front/public/images/large/gregtech/gt.blockmachines/1586.png deleted file mode 100644 index 79050d2d76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1587.png b/front/public/images/large/gregtech/gt.blockmachines/1587.png deleted file mode 100644 index 6a4d65bb32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1587.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1588.png b/front/public/images/large/gregtech/gt.blockmachines/1588.png deleted file mode 100644 index ea94123d2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1589.png b/front/public/images/large/gregtech/gt.blockmachines/1589.png deleted file mode 100644 index 757016370c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1589.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/159.png b/front/public/images/large/gregtech/gt.blockmachines/159.png deleted file mode 100644 index 9041e612a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/159.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1590.png b/front/public/images/large/gregtech/gt.blockmachines/1590.png deleted file mode 100644 index e7a26f1b28..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1590.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1591.png b/front/public/images/large/gregtech/gt.blockmachines/1591.png deleted file mode 100644 index 825193386e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1591.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16.png b/front/public/images/large/gregtech/gt.blockmachines/16.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/160.png b/front/public/images/large/gregtech/gt.blockmachines/160.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/160.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1600.png b/front/public/images/large/gregtech/gt.blockmachines/1600.png deleted file mode 100644 index 38440bb237..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1600.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16000.png b/front/public/images/large/gregtech/gt.blockmachines/16000.png deleted file mode 100644 index 7d6ff4c90f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16000.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16001.png b/front/public/images/large/gregtech/gt.blockmachines/16001.png deleted file mode 100644 index cf7885cfe6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16002.png b/front/public/images/large/gregtech/gt.blockmachines/16002.png deleted file mode 100644 index 8b8317e639..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16003.png b/front/public/images/large/gregtech/gt.blockmachines/16003.png deleted file mode 100644 index 1f24f8ede5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16004.png b/front/public/images/large/gregtech/gt.blockmachines/16004.png deleted file mode 100644 index fcac669c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16005.png b/front/public/images/large/gregtech/gt.blockmachines/16005.png deleted file mode 100644 index 7d6ff4c90f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16006.png b/front/public/images/large/gregtech/gt.blockmachines/16006.png deleted file mode 100644 index cf7885cfe6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16007.png b/front/public/images/large/gregtech/gt.blockmachines/16007.png deleted file mode 100644 index 8b8317e639..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16008.png b/front/public/images/large/gregtech/gt.blockmachines/16008.png deleted file mode 100644 index 1f24f8ede5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16009.png b/front/public/images/large/gregtech/gt.blockmachines/16009.png deleted file mode 100644 index fcac669c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1601.png b/front/public/images/large/gregtech/gt.blockmachines/1601.png deleted file mode 100644 index 281955fef1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1601.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16010.png b/front/public/images/large/gregtech/gt.blockmachines/16010.png deleted file mode 100644 index 4ff140377e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16011.png b/front/public/images/large/gregtech/gt.blockmachines/16011.png deleted file mode 100644 index cf59d663ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16011.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16012.png b/front/public/images/large/gregtech/gt.blockmachines/16012.png deleted file mode 100644 index bc74e8df7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16012.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16013.png b/front/public/images/large/gregtech/gt.blockmachines/16013.png deleted file mode 100644 index c5f26e39f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16013.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16014.png b/front/public/images/large/gregtech/gt.blockmachines/16014.png deleted file mode 100644 index 10549b5f6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16014.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16015.png b/front/public/images/large/gregtech/gt.blockmachines/16015.png deleted file mode 100644 index 2cac5b486d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16015.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16016.png b/front/public/images/large/gregtech/gt.blockmachines/16016.png deleted file mode 100644 index 8babc6e48d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16016.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16017.png b/front/public/images/large/gregtech/gt.blockmachines/16017.png deleted file mode 100644 index d8e3029601..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16017.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16018.png b/front/public/images/large/gregtech/gt.blockmachines/16018.png deleted file mode 100644 index 6758b33522..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16019.png b/front/public/images/large/gregtech/gt.blockmachines/16019.png deleted file mode 100644 index 4131a1f810..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1602.png b/front/public/images/large/gregtech/gt.blockmachines/1602.png deleted file mode 100644 index b76cb43874..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1602.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1603.png b/front/public/images/large/gregtech/gt.blockmachines/1603.png deleted file mode 100644 index 0ff60e0f35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1603.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1604.png b/front/public/images/large/gregtech/gt.blockmachines/1604.png deleted file mode 100644 index 59131e8212..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1604.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1605.png b/front/public/images/large/gregtech/gt.blockmachines/1605.png deleted file mode 100644 index 8f86bb36e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1605.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/161.png b/front/public/images/large/gregtech/gt.blockmachines/161.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/161.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/162.png b/front/public/images/large/gregtech/gt.blockmachines/162.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/162.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1620.png b/front/public/images/large/gregtech/gt.blockmachines/1620.png deleted file mode 100644 index e2e00015e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1620.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1621.png b/front/public/images/large/gregtech/gt.blockmachines/1621.png deleted file mode 100644 index e21a8ec239..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1621.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1622.png b/front/public/images/large/gregtech/gt.blockmachines/1622.png deleted file mode 100644 index 18a292cac2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1622.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1623.png b/front/public/images/large/gregtech/gt.blockmachines/1623.png deleted file mode 100644 index 4c1fca3b7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1623.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1624.png b/front/public/images/large/gregtech/gt.blockmachines/1624.png deleted file mode 100644 index 971e38876e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1624.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1625.png b/front/public/images/large/gregtech/gt.blockmachines/1625.png deleted file mode 100644 index 7c1c4397a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1625.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1626.png b/front/public/images/large/gregtech/gt.blockmachines/1626.png deleted file mode 100644 index ea7b215e14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1626.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1627.png b/front/public/images/large/gregtech/gt.blockmachines/1627.png deleted file mode 100644 index dcf80b317f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1627.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1628.png b/front/public/images/large/gregtech/gt.blockmachines/1628.png deleted file mode 100644 index 2e608d9954..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1628.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1629.png b/front/public/images/large/gregtech/gt.blockmachines/1629.png deleted file mode 100644 index c5197e7da1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1629.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/163.png b/front/public/images/large/gregtech/gt.blockmachines/163.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/163.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1630.png b/front/public/images/large/gregtech/gt.blockmachines/1630.png deleted file mode 100644 index 8e1215bf25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1630.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1631.png b/front/public/images/large/gregtech/gt.blockmachines/1631.png deleted file mode 100644 index f59a589ff7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/164.png b/front/public/images/large/gregtech/gt.blockmachines/164.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/164.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1640.png b/front/public/images/large/gregtech/gt.blockmachines/1640.png deleted file mode 100644 index cb7a173f8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1640.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1641.png b/front/public/images/large/gregtech/gt.blockmachines/1641.png deleted file mode 100644 index ff9cc3f2a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1641.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1642.png b/front/public/images/large/gregtech/gt.blockmachines/1642.png deleted file mode 100644 index a1dbf8cdb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1643.png b/front/public/images/large/gregtech/gt.blockmachines/1643.png deleted file mode 100644 index 31a79cd250..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1644.png b/front/public/images/large/gregtech/gt.blockmachines/1644.png deleted file mode 100644 index affd8f4972..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1645.png b/front/public/images/large/gregtech/gt.blockmachines/1645.png deleted file mode 100644 index 27cdc8247c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1646.png b/front/public/images/large/gregtech/gt.blockmachines/1646.png deleted file mode 100644 index eeca4fe8c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1647.png b/front/public/images/large/gregtech/gt.blockmachines/1647.png deleted file mode 100644 index 2a085cd12e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1647.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1648.png b/front/public/images/large/gregtech/gt.blockmachines/1648.png deleted file mode 100644 index bee81e5a2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1648.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1649.png b/front/public/images/large/gregtech/gt.blockmachines/1649.png deleted file mode 100644 index d284e4b3bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/165.png b/front/public/images/large/gregtech/gt.blockmachines/165.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/165.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1650.png b/front/public/images/large/gregtech/gt.blockmachines/1650.png deleted file mode 100644 index 6b5ce153f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1650.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1651.png b/front/public/images/large/gregtech/gt.blockmachines/1651.png deleted file mode 100644 index 7279123564..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1651.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/166.png b/front/public/images/large/gregtech/gt.blockmachines/166.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/166.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1660.png b/front/public/images/large/gregtech/gt.blockmachines/1660.png deleted file mode 100644 index 63ab1baa19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1660.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1661.png b/front/public/images/large/gregtech/gt.blockmachines/1661.png deleted file mode 100644 index 527b083e1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1661.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1662.png b/front/public/images/large/gregtech/gt.blockmachines/1662.png deleted file mode 100644 index cad848fcca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1662.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1663.png b/front/public/images/large/gregtech/gt.blockmachines/1663.png deleted file mode 100644 index 9d9e458d21..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1663.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1664.png b/front/public/images/large/gregtech/gt.blockmachines/1664.png deleted file mode 100644 index 058ec16b1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1664.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1665.png b/front/public/images/large/gregtech/gt.blockmachines/1665.png deleted file mode 100644 index cc0f350104..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1665.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1666.png b/front/public/images/large/gregtech/gt.blockmachines/1666.png deleted file mode 100644 index a43e2fb53d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1666.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1667.png b/front/public/images/large/gregtech/gt.blockmachines/1667.png deleted file mode 100644 index d877bcc3ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1667.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1668.png b/front/public/images/large/gregtech/gt.blockmachines/1668.png deleted file mode 100644 index c2a395f9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1668.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1669.png b/front/public/images/large/gregtech/gt.blockmachines/1669.png deleted file mode 100644 index 51c9050ee0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1669.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/167.png b/front/public/images/large/gregtech/gt.blockmachines/167.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/167.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1670.png b/front/public/images/large/gregtech/gt.blockmachines/1670.png deleted file mode 100644 index ffcb1c632e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1670.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1671.png b/front/public/images/large/gregtech/gt.blockmachines/1671.png deleted file mode 100644 index 665286593d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1671.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/168.png b/front/public/images/large/gregtech/gt.blockmachines/168.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/168.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1680.png b/front/public/images/large/gregtech/gt.blockmachines/1680.png deleted file mode 100644 index 3e7c75d0c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1680.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1681.png b/front/public/images/large/gregtech/gt.blockmachines/1681.png deleted file mode 100644 index e99e69741f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1681.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1682.png b/front/public/images/large/gregtech/gt.blockmachines/1682.png deleted file mode 100644 index 5c8d5ad12a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1682.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1683.png b/front/public/images/large/gregtech/gt.blockmachines/1683.png deleted file mode 100644 index c9502155a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1683.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1684.png b/front/public/images/large/gregtech/gt.blockmachines/1684.png deleted file mode 100644 index 9b7afe869a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1684.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1685.png b/front/public/images/large/gregtech/gt.blockmachines/1685.png deleted file mode 100644 index 71b1239407..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1685.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1686.png b/front/public/images/large/gregtech/gt.blockmachines/1686.png deleted file mode 100644 index 2174409c7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1686.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1687.png b/front/public/images/large/gregtech/gt.blockmachines/1687.png deleted file mode 100644 index 48d51631fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1687.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1688.png b/front/public/images/large/gregtech/gt.blockmachines/1688.png deleted file mode 100644 index e8073dfc72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1688.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1689.png b/front/public/images/large/gregtech/gt.blockmachines/1689.png deleted file mode 100644 index 6a74fe0f4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1689.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/169.png b/front/public/images/large/gregtech/gt.blockmachines/169.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/169.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1690.png b/front/public/images/large/gregtech/gt.blockmachines/1690.png deleted file mode 100644 index 47db034f91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1690.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1691.png b/front/public/images/large/gregtech/gt.blockmachines/1691.png deleted file mode 100644 index 90c971ef95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1691.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/16999.png b/front/public/images/large/gregtech/gt.blockmachines/16999.png deleted file mode 100644 index b63585c141..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/16999.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17.png b/front/public/images/large/gregtech/gt.blockmachines/17.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/170.png b/front/public/images/large/gregtech/gt.blockmachines/170.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/170.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1700.png b/front/public/images/large/gregtech/gt.blockmachines/1700.png deleted file mode 100644 index dbc6ef73c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1700.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17000.png b/front/public/images/large/gregtech/gt.blockmachines/17000.png deleted file mode 100644 index 2ee2572f33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17000.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17002.png b/front/public/images/large/gregtech/gt.blockmachines/17002.png deleted file mode 100644 index 8d32d22b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17003.png b/front/public/images/large/gregtech/gt.blockmachines/17003.png deleted file mode 100644 index de9383cfb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17004.png b/front/public/images/large/gregtech/gt.blockmachines/17004.png deleted file mode 100644 index b94fa9466e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17005.png b/front/public/images/large/gregtech/gt.blockmachines/17005.png deleted file mode 100644 index b0ba2f7964..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17006.png b/front/public/images/large/gregtech/gt.blockmachines/17006.png deleted file mode 100644 index 1b7bcb2e29..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17007.png b/front/public/images/large/gregtech/gt.blockmachines/17007.png deleted file mode 100644 index 2ea7c1dd46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17008.png b/front/public/images/large/gregtech/gt.blockmachines/17008.png deleted file mode 100644 index 099afd289c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17009.png b/front/public/images/large/gregtech/gt.blockmachines/17009.png deleted file mode 100644 index 4393c3433a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1701.png b/front/public/images/large/gregtech/gt.blockmachines/1701.png deleted file mode 100644 index 6b645a88e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1701.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17010.png b/front/public/images/large/gregtech/gt.blockmachines/17010.png deleted file mode 100644 index 16ca7a8d95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17011.png b/front/public/images/large/gregtech/gt.blockmachines/17011.png deleted file mode 100644 index 8d32d22b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17011.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17012.png b/front/public/images/large/gregtech/gt.blockmachines/17012.png deleted file mode 100644 index 4066f2d1d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17012.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17013.png b/front/public/images/large/gregtech/gt.blockmachines/17013.png deleted file mode 100644 index 8d32d22b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17013.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17014.png b/front/public/images/large/gregtech/gt.blockmachines/17014.png deleted file mode 100644 index 8d32d22b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17014.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17015.png b/front/public/images/large/gregtech/gt.blockmachines/17015.png deleted file mode 100644 index 8d32d22b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17015.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17018.png b/front/public/images/large/gregtech/gt.blockmachines/17018.png deleted file mode 100644 index 94c3bdcbc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17019.png b/front/public/images/large/gregtech/gt.blockmachines/17019.png deleted file mode 100644 index 139d29ce9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1702.png b/front/public/images/large/gregtech/gt.blockmachines/1702.png deleted file mode 100644 index 3e334f25ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1702.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17020.png b/front/public/images/large/gregtech/gt.blockmachines/17020.png deleted file mode 100644 index 9b2c7c4839..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17021.png b/front/public/images/large/gregtech/gt.blockmachines/17021.png deleted file mode 100644 index c89d56d108..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17022.png b/front/public/images/large/gregtech/gt.blockmachines/17022.png deleted file mode 100644 index 573ec281aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17023.png b/front/public/images/large/gregtech/gt.blockmachines/17023.png deleted file mode 100644 index 639b7d88a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17024.png b/front/public/images/large/gregtech/gt.blockmachines/17024.png deleted file mode 100644 index d89338bcde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17024.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17025.png b/front/public/images/large/gregtech/gt.blockmachines/17025.png deleted file mode 100644 index 00bb84a23e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17026.png b/front/public/images/large/gregtech/gt.blockmachines/17026.png deleted file mode 100644 index 39e3ca18ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17027.png b/front/public/images/large/gregtech/gt.blockmachines/17027.png deleted file mode 100644 index 94c3bdcbc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17028.png b/front/public/images/large/gregtech/gt.blockmachines/17028.png deleted file mode 100644 index 69f308aa1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17029.png b/front/public/images/large/gregtech/gt.blockmachines/17029.png deleted file mode 100644 index 94c3bdcbc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1703.png b/front/public/images/large/gregtech/gt.blockmachines/1703.png deleted file mode 100644 index 5b5370295e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1703.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17030.png b/front/public/images/large/gregtech/gt.blockmachines/17030.png deleted file mode 100644 index 94c3bdcbc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/17031.png b/front/public/images/large/gregtech/gt.blockmachines/17031.png deleted file mode 100644 index 94c3bdcbc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/17031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1704.png b/front/public/images/large/gregtech/gt.blockmachines/1704.png deleted file mode 100644 index aef40b92dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1704.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1705.png b/front/public/images/large/gregtech/gt.blockmachines/1705.png deleted file mode 100644 index 7d5c150cd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1705.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1706.png b/front/public/images/large/gregtech/gt.blockmachines/1706.png deleted file mode 100644 index 21e4aaad9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1706.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1707.png b/front/public/images/large/gregtech/gt.blockmachines/1707.png deleted file mode 100644 index 1dbd45073f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1707.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1708.png b/front/public/images/large/gregtech/gt.blockmachines/1708.png deleted file mode 100644 index 3ec55b60e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1708.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1709.png b/front/public/images/large/gregtech/gt.blockmachines/1709.png deleted file mode 100644 index f0a2a79ad4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1709.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/171.png b/front/public/images/large/gregtech/gt.blockmachines/171.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/171.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1710.png b/front/public/images/large/gregtech/gt.blockmachines/1710.png deleted file mode 100644 index 33ba010d49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1710.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1711.png b/front/public/images/large/gregtech/gt.blockmachines/1711.png deleted file mode 100644 index a810ea2d6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1711.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/172.png b/front/public/images/large/gregtech/gt.blockmachines/172.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/172.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1720.png b/front/public/images/large/gregtech/gt.blockmachines/1720.png deleted file mode 100644 index 03badecbf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1720.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1721.png b/front/public/images/large/gregtech/gt.blockmachines/1721.png deleted file mode 100644 index 81e2e7c4b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1721.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1722.png b/front/public/images/large/gregtech/gt.blockmachines/1722.png deleted file mode 100644 index 44ab3cd7fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1722.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1723.png b/front/public/images/large/gregtech/gt.blockmachines/1723.png deleted file mode 100644 index b805e7ca63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1723.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1724.png b/front/public/images/large/gregtech/gt.blockmachines/1724.png deleted file mode 100644 index ba22a5422f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1724.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1725.png b/front/public/images/large/gregtech/gt.blockmachines/1725.png deleted file mode 100644 index d233e3d02b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1725.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1726.png b/front/public/images/large/gregtech/gt.blockmachines/1726.png deleted file mode 100644 index 122eaa831e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1726.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1727.png b/front/public/images/large/gregtech/gt.blockmachines/1727.png deleted file mode 100644 index f7d2ee37e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1727.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1728.png b/front/public/images/large/gregtech/gt.blockmachines/1728.png deleted file mode 100644 index 5dad8abe22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1728.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1729.png b/front/public/images/large/gregtech/gt.blockmachines/1729.png deleted file mode 100644 index cebd299b91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1729.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/173.png b/front/public/images/large/gregtech/gt.blockmachines/173.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/173.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1730.png b/front/public/images/large/gregtech/gt.blockmachines/1730.png deleted file mode 100644 index 843ccda674..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1730.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1731.png b/front/public/images/large/gregtech/gt.blockmachines/1731.png deleted file mode 100644 index 7102deb2eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1731.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/174.png b/front/public/images/large/gregtech/gt.blockmachines/174.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/174.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1740.png b/front/public/images/large/gregtech/gt.blockmachines/1740.png deleted file mode 100644 index 0d1cc9ea32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1741.png b/front/public/images/large/gregtech/gt.blockmachines/1741.png deleted file mode 100644 index 203ac549a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1742.png b/front/public/images/large/gregtech/gt.blockmachines/1742.png deleted file mode 100644 index bd80da4815..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1742.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1743.png b/front/public/images/large/gregtech/gt.blockmachines/1743.png deleted file mode 100644 index d5fc05ef31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1743.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1744.png b/front/public/images/large/gregtech/gt.blockmachines/1744.png deleted file mode 100644 index c7250f7b21..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1744.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1745.png b/front/public/images/large/gregtech/gt.blockmachines/1745.png deleted file mode 100644 index d5006e428a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1746.png b/front/public/images/large/gregtech/gt.blockmachines/1746.png deleted file mode 100644 index 9b7234bdb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1746.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1747.png b/front/public/images/large/gregtech/gt.blockmachines/1747.png deleted file mode 100644 index 09576c2979..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1747.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1748.png b/front/public/images/large/gregtech/gt.blockmachines/1748.png deleted file mode 100644 index eef53c8371..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1748.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1749.png b/front/public/images/large/gregtech/gt.blockmachines/1749.png deleted file mode 100644 index 30aa593252..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/175.png b/front/public/images/large/gregtech/gt.blockmachines/175.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/175.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1750.png b/front/public/images/large/gregtech/gt.blockmachines/1750.png deleted file mode 100644 index 0704442df4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1750.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1751.png b/front/public/images/large/gregtech/gt.blockmachines/1751.png deleted file mode 100644 index a1dcf0fd14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/176.png b/front/public/images/large/gregtech/gt.blockmachines/176.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/176.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1760.png b/front/public/images/large/gregtech/gt.blockmachines/1760.png deleted file mode 100644 index b12eda7af1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1761.png b/front/public/images/large/gregtech/gt.blockmachines/1761.png deleted file mode 100644 index 2920426763..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1761.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1762.png b/front/public/images/large/gregtech/gt.blockmachines/1762.png deleted file mode 100644 index cbb060da0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1762.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1763.png b/front/public/images/large/gregtech/gt.blockmachines/1763.png deleted file mode 100644 index 46f90227e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1763.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1764.png b/front/public/images/large/gregtech/gt.blockmachines/1764.png deleted file mode 100644 index 4b1aaefd8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1764.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1765.png b/front/public/images/large/gregtech/gt.blockmachines/1765.png deleted file mode 100644 index 234ce0648e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1766.png b/front/public/images/large/gregtech/gt.blockmachines/1766.png deleted file mode 100644 index 82e7d66113..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1766.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1767.png b/front/public/images/large/gregtech/gt.blockmachines/1767.png deleted file mode 100644 index c00add49f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1767.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1768.png b/front/public/images/large/gregtech/gt.blockmachines/1768.png deleted file mode 100644 index 443151a809..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1768.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1769.png b/front/public/images/large/gregtech/gt.blockmachines/1769.png deleted file mode 100644 index bf790dfc71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1769.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/177.png b/front/public/images/large/gregtech/gt.blockmachines/177.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/177.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1770.png b/front/public/images/large/gregtech/gt.blockmachines/1770.png deleted file mode 100644 index 9f09342934..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1771.png b/front/public/images/large/gregtech/gt.blockmachines/1771.png deleted file mode 100644 index 8e2a298a0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1771.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/178.png b/front/public/images/large/gregtech/gt.blockmachines/178.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/178.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1780.png b/front/public/images/large/gregtech/gt.blockmachines/1780.png deleted file mode 100644 index 3e7c75d0c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1780.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1781.png b/front/public/images/large/gregtech/gt.blockmachines/1781.png deleted file mode 100644 index e99e69741f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1781.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1782.png b/front/public/images/large/gregtech/gt.blockmachines/1782.png deleted file mode 100644 index 5c8d5ad12a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1782.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1783.png b/front/public/images/large/gregtech/gt.blockmachines/1783.png deleted file mode 100644 index c9502155a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1783.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1784.png b/front/public/images/large/gregtech/gt.blockmachines/1784.png deleted file mode 100644 index 9b7afe869a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1784.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1785.png b/front/public/images/large/gregtech/gt.blockmachines/1785.png deleted file mode 100644 index 71b1239407..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1785.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1786.png b/front/public/images/large/gregtech/gt.blockmachines/1786.png deleted file mode 100644 index 2174409c7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1786.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1787.png b/front/public/images/large/gregtech/gt.blockmachines/1787.png deleted file mode 100644 index 48d51631fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1787.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1788.png b/front/public/images/large/gregtech/gt.blockmachines/1788.png deleted file mode 100644 index e8073dfc72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1788.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1789.png b/front/public/images/large/gregtech/gt.blockmachines/1789.png deleted file mode 100644 index 6a74fe0f4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1789.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/179.png b/front/public/images/large/gregtech/gt.blockmachines/179.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/179.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1790.png b/front/public/images/large/gregtech/gt.blockmachines/1790.png deleted file mode 100644 index 47db034f91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1790.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1791.png b/front/public/images/large/gregtech/gt.blockmachines/1791.png deleted file mode 100644 index 90c971ef95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1791.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/18.png b/front/public/images/large/gregtech/gt.blockmachines/18.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/18.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/180.png b/front/public/images/large/gregtech/gt.blockmachines/180.png deleted file mode 100644 index fb5731acf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/180.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1800.png b/front/public/images/large/gregtech/gt.blockmachines/1800.png deleted file mode 100644 index 5b59740f87..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1800.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1801.png b/front/public/images/large/gregtech/gt.blockmachines/1801.png deleted file mode 100644 index 02a1b42d71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1801.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1802.png b/front/public/images/large/gregtech/gt.blockmachines/1802.png deleted file mode 100644 index 09f9beb95d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1802.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1803.png b/front/public/images/large/gregtech/gt.blockmachines/1803.png deleted file mode 100644 index 27b3802e93..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1803.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1804.png b/front/public/images/large/gregtech/gt.blockmachines/1804.png deleted file mode 100644 index 870c8406d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1805.png b/front/public/images/large/gregtech/gt.blockmachines/1805.png deleted file mode 100644 index 49392b3af6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1805.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1806.png b/front/public/images/large/gregtech/gt.blockmachines/1806.png deleted file mode 100644 index dc4b8ee5ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1806.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1807.png b/front/public/images/large/gregtech/gt.blockmachines/1807.png deleted file mode 100644 index efa406bfee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1807.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1808.png b/front/public/images/large/gregtech/gt.blockmachines/1808.png deleted file mode 100644 index 472350c04c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1808.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1809.png b/front/public/images/large/gregtech/gt.blockmachines/1809.png deleted file mode 100644 index 426826c5eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/181.png b/front/public/images/large/gregtech/gt.blockmachines/181.png deleted file mode 100644 index 984cfbc04b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/181.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1810.png b/front/public/images/large/gregtech/gt.blockmachines/1810.png deleted file mode 100644 index 525c86615e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1811.png b/front/public/images/large/gregtech/gt.blockmachines/1811.png deleted file mode 100644 index 23a3916ba4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1811.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/182.png b/front/public/images/large/gregtech/gt.blockmachines/182.png deleted file mode 100644 index a07da1b96c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/182.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1820.png b/front/public/images/large/gregtech/gt.blockmachines/1820.png deleted file mode 100644 index f5fc5ff12e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1821.png b/front/public/images/large/gregtech/gt.blockmachines/1821.png deleted file mode 100644 index 8a68faef51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1822.png b/front/public/images/large/gregtech/gt.blockmachines/1822.png deleted file mode 100644 index d28035d862..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1823.png b/front/public/images/large/gregtech/gt.blockmachines/1823.png deleted file mode 100644 index 2259817529..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1824.png b/front/public/images/large/gregtech/gt.blockmachines/1824.png deleted file mode 100644 index 2f8ae62b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1825.png b/front/public/images/large/gregtech/gt.blockmachines/1825.png deleted file mode 100644 index 7a4de1565a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1826.png b/front/public/images/large/gregtech/gt.blockmachines/1826.png deleted file mode 100644 index 0cd4c8bc6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1827.png b/front/public/images/large/gregtech/gt.blockmachines/1827.png deleted file mode 100644 index bdddb196f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1828.png b/front/public/images/large/gregtech/gt.blockmachines/1828.png deleted file mode 100644 index 4107526694..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1829.png b/front/public/images/large/gregtech/gt.blockmachines/1829.png deleted file mode 100644 index bc9a5d804a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/183.png b/front/public/images/large/gregtech/gt.blockmachines/183.png deleted file mode 100644 index f14cb04096..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/183.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1830.png b/front/public/images/large/gregtech/gt.blockmachines/1830.png deleted file mode 100644 index 3d9acad58d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1831.png b/front/public/images/large/gregtech/gt.blockmachines/1831.png deleted file mode 100644 index 0bf3fb6278..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/184.png b/front/public/images/large/gregtech/gt.blockmachines/184.png deleted file mode 100644 index 1c7a73aae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/184.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1840.png b/front/public/images/large/gregtech/gt.blockmachines/1840.png deleted file mode 100644 index eb3e1e3e1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1841.png b/front/public/images/large/gregtech/gt.blockmachines/1841.png deleted file mode 100644 index 9dd4f791f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1842.png b/front/public/images/large/gregtech/gt.blockmachines/1842.png deleted file mode 100644 index 7052c47db6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1843.png b/front/public/images/large/gregtech/gt.blockmachines/1843.png deleted file mode 100644 index de09e21346..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1843.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1844.png b/front/public/images/large/gregtech/gt.blockmachines/1844.png deleted file mode 100644 index dbd263a3be..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1844.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1845.png b/front/public/images/large/gregtech/gt.blockmachines/1845.png deleted file mode 100644 index 612c045c43..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1845.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1846.png b/front/public/images/large/gregtech/gt.blockmachines/1846.png deleted file mode 100644 index 40f30de2c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1846.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1847.png b/front/public/images/large/gregtech/gt.blockmachines/1847.png deleted file mode 100644 index 885482e7e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1847.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1848.png b/front/public/images/large/gregtech/gt.blockmachines/1848.png deleted file mode 100644 index 09509a98e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1848.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1849.png b/front/public/images/large/gregtech/gt.blockmachines/1849.png deleted file mode 100644 index 0f7ad082c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/185.png b/front/public/images/large/gregtech/gt.blockmachines/185.png deleted file mode 100644 index f39476cf5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/185.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1850.png b/front/public/images/large/gregtech/gt.blockmachines/1850.png deleted file mode 100644 index 8c18129fbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/1851.png b/front/public/images/large/gregtech/gt.blockmachines/1851.png deleted file mode 100644 index f8fd84fab0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/1851.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/186.png b/front/public/images/large/gregtech/gt.blockmachines/186.png deleted file mode 100644 index fbaaa822e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/186.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/187.png b/front/public/images/large/gregtech/gt.blockmachines/187.png deleted file mode 100644 index 834eda85e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/187.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/188.png b/front/public/images/large/gregtech/gt.blockmachines/188.png deleted file mode 100644 index 72ecb9e345..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/188.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/189.png b/front/public/images/large/gregtech/gt.blockmachines/189.png deleted file mode 100644 index 045c2a1037..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/189.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/19.png b/front/public/images/large/gregtech/gt.blockmachines/19.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/19.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/190.png b/front/public/images/large/gregtech/gt.blockmachines/190.png deleted file mode 100644 index 5e194621d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/190.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/191.png b/front/public/images/large/gregtech/gt.blockmachines/191.png deleted file mode 100644 index daaa16113f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/191.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/192.png b/front/public/images/large/gregtech/gt.blockmachines/192.png deleted file mode 100644 index b7024c592e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/192.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/193.png b/front/public/images/large/gregtech/gt.blockmachines/193.png deleted file mode 100644 index 98b59588e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/193.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/194.png b/front/public/images/large/gregtech/gt.blockmachines/194.png deleted file mode 100644 index d7201d59d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/194.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/195.png b/front/public/images/large/gregtech/gt.blockmachines/195.png deleted file mode 100644 index 49d1b956a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/195.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/196.png b/front/public/images/large/gregtech/gt.blockmachines/196.png deleted file mode 100644 index e41dcf678b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/196.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/197.png b/front/public/images/large/gregtech/gt.blockmachines/197.png deleted file mode 100644 index ebe6f35a7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/197.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/198.png b/front/public/images/large/gregtech/gt.blockmachines/198.png deleted file mode 100644 index deecc0a3b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/198.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/199.png b/front/public/images/large/gregtech/gt.blockmachines/199.png deleted file mode 100644 index a76624e9f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/199.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2.png b/front/public/images/large/gregtech/gt.blockmachines/2.png deleted file mode 100644 index d828d4c6af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/20.png b/front/public/images/large/gregtech/gt.blockmachines/20.png deleted file mode 100644 index 61d16bf6cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/20.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/200.png b/front/public/images/large/gregtech/gt.blockmachines/200.png deleted file mode 100644 index 0a9dda2327..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2000.png b/front/public/images/large/gregtech/gt.blockmachines/2000.png deleted file mode 100644 index fee22b53dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2000.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2001.png b/front/public/images/large/gregtech/gt.blockmachines/2001.png deleted file mode 100644 index bee936c21b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2002.png b/front/public/images/large/gregtech/gt.blockmachines/2002.png deleted file mode 100644 index ea3cd46d10..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2003.png b/front/public/images/large/gregtech/gt.blockmachines/2003.png deleted file mode 100644 index 52b0b8cddf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2004.png b/front/public/images/large/gregtech/gt.blockmachines/2004.png deleted file mode 100644 index 750612e445..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2005.png b/front/public/images/large/gregtech/gt.blockmachines/2005.png deleted file mode 100644 index 776b4fc35c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2006.png b/front/public/images/large/gregtech/gt.blockmachines/2006.png deleted file mode 100644 index db500d9efd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2007.png b/front/public/images/large/gregtech/gt.blockmachines/2007.png deleted file mode 100644 index eb7b48fda0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2008.png b/front/public/images/large/gregtech/gt.blockmachines/2008.png deleted file mode 100644 index e9db3af0fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2009.png b/front/public/images/large/gregtech/gt.blockmachines/2009.png deleted file mode 100644 index d4f7903d33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2010.png b/front/public/images/large/gregtech/gt.blockmachines/2010.png deleted file mode 100644 index 0815d2d60a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2011.png b/front/public/images/large/gregtech/gt.blockmachines/2011.png deleted file mode 100644 index 765c5ff782..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2011.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2020.png b/front/public/images/large/gregtech/gt.blockmachines/2020.png deleted file mode 100644 index 94d283baaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2021.png b/front/public/images/large/gregtech/gt.blockmachines/2021.png deleted file mode 100644 index dc95561806..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2022.png b/front/public/images/large/gregtech/gt.blockmachines/2022.png deleted file mode 100644 index 471eabd5a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2023.png b/front/public/images/large/gregtech/gt.blockmachines/2023.png deleted file mode 100644 index 8e6b7eff0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2024.png b/front/public/images/large/gregtech/gt.blockmachines/2024.png deleted file mode 100644 index 5343bcc413..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2024.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2025.png b/front/public/images/large/gregtech/gt.blockmachines/2025.png deleted file mode 100644 index ba97ecdf89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2026.png b/front/public/images/large/gregtech/gt.blockmachines/2026.png deleted file mode 100644 index c31364b567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2027.png b/front/public/images/large/gregtech/gt.blockmachines/2027.png deleted file mode 100644 index e32c3b79e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2028.png b/front/public/images/large/gregtech/gt.blockmachines/2028.png deleted file mode 100644 index 348fdaf1c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2029.png b/front/public/images/large/gregtech/gt.blockmachines/2029.png deleted file mode 100644 index ce91f761c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2030.png b/front/public/images/large/gregtech/gt.blockmachines/2030.png deleted file mode 100644 index 5663924e33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2031.png b/front/public/images/large/gregtech/gt.blockmachines/2031.png deleted file mode 100644 index 2efa3d953e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2032.png b/front/public/images/large/gregtech/gt.blockmachines/2032.png deleted file mode 100644 index c31364b567..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2033.png b/front/public/images/large/gregtech/gt.blockmachines/2033.png deleted file mode 100644 index e32c3b79e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2034.png b/front/public/images/large/gregtech/gt.blockmachines/2034.png deleted file mode 100644 index 348fdaf1c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2035.png b/front/public/images/large/gregtech/gt.blockmachines/2035.png deleted file mode 100644 index ce91f761c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2036.png b/front/public/images/large/gregtech/gt.blockmachines/2036.png deleted file mode 100644 index 5663924e33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2037.png b/front/public/images/large/gregtech/gt.blockmachines/2037.png deleted file mode 100644 index 2efa3d953e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2052.png b/front/public/images/large/gregtech/gt.blockmachines/2052.png deleted file mode 100644 index d03bf152cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2053.png b/front/public/images/large/gregtech/gt.blockmachines/2053.png deleted file mode 100644 index 238da353fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2053.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2054.png b/front/public/images/large/gregtech/gt.blockmachines/2054.png deleted file mode 100644 index 694ee00259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2055.png b/front/public/images/large/gregtech/gt.blockmachines/2055.png deleted file mode 100644 index 48065e95b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2056.png b/front/public/images/large/gregtech/gt.blockmachines/2056.png deleted file mode 100644 index fd407defbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2057.png b/front/public/images/large/gregtech/gt.blockmachines/2057.png deleted file mode 100644 index c9042cb4c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/206.png b/front/public/images/large/gregtech/gt.blockmachines/206.png deleted file mode 100644 index 1821db2499..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/207.png b/front/public/images/large/gregtech/gt.blockmachines/207.png deleted file mode 100644 index aa0dc4646f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2072.png b/front/public/images/large/gregtech/gt.blockmachines/2072.png deleted file mode 100644 index d632727861..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2073.png b/front/public/images/large/gregtech/gt.blockmachines/2073.png deleted file mode 100644 index ec6659a51b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2074.png b/front/public/images/large/gregtech/gt.blockmachines/2074.png deleted file mode 100644 index 27fd54c284..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2075.png b/front/public/images/large/gregtech/gt.blockmachines/2075.png deleted file mode 100644 index 3ab6f8a426..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2076.png b/front/public/images/large/gregtech/gt.blockmachines/2076.png deleted file mode 100644 index eff278be12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2077.png b/front/public/images/large/gregtech/gt.blockmachines/2077.png deleted file mode 100644 index cdb5a9ea9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/208.png b/front/public/images/large/gregtech/gt.blockmachines/208.png deleted file mode 100644 index 9b215d8fb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2081.png b/front/public/images/large/gregtech/gt.blockmachines/2081.png deleted file mode 100644 index d03bf152cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2082.png b/front/public/images/large/gregtech/gt.blockmachines/2082.png deleted file mode 100644 index 238da353fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2082.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2083.png b/front/public/images/large/gregtech/gt.blockmachines/2083.png deleted file mode 100644 index 694ee00259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2084.png b/front/public/images/large/gregtech/gt.blockmachines/2084.png deleted file mode 100644 index 48065e95b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2085.png b/front/public/images/large/gregtech/gt.blockmachines/2085.png deleted file mode 100644 index fd407defbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2086.png b/front/public/images/large/gregtech/gt.blockmachines/2086.png deleted file mode 100644 index c9042cb4c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2089.png b/front/public/images/large/gregtech/gt.blockmachines/2089.png deleted file mode 100644 index d632727861..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/209.png b/front/public/images/large/gregtech/gt.blockmachines/209.png deleted file mode 100644 index 7914320b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2090.png b/front/public/images/large/gregtech/gt.blockmachines/2090.png deleted file mode 100644 index ec6659a51b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2091.png b/front/public/images/large/gregtech/gt.blockmachines/2091.png deleted file mode 100644 index 27fd54c284..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2091.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2092.png b/front/public/images/large/gregtech/gt.blockmachines/2092.png deleted file mode 100644 index 3ab6f8a426..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2092.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2093.png b/front/public/images/large/gregtech/gt.blockmachines/2093.png deleted file mode 100644 index eff278be12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2093.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2094.png b/front/public/images/large/gregtech/gt.blockmachines/2094.png deleted file mode 100644 index cdb5a9ea9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2094.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/21.png b/front/public/images/large/gregtech/gt.blockmachines/21.png deleted file mode 100644 index 564897a028..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/21.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2102.png b/front/public/images/large/gregtech/gt.blockmachines/2102.png deleted file mode 100644 index e7e8a2f785..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2103.png b/front/public/images/large/gregtech/gt.blockmachines/2103.png deleted file mode 100644 index 371cc463c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2104.png b/front/public/images/large/gregtech/gt.blockmachines/2104.png deleted file mode 100644 index 6612aae937..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2105.png b/front/public/images/large/gregtech/gt.blockmachines/2105.png deleted file mode 100644 index f15ea13597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2105.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/216.png b/front/public/images/large/gregtech/gt.blockmachines/216.png deleted file mode 100644 index 25ca0e176b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/216.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/217.png b/front/public/images/large/gregtech/gt.blockmachines/217.png deleted file mode 100644 index 7a7be86db2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/217.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/218.png b/front/public/images/large/gregtech/gt.blockmachines/218.png deleted file mode 100644 index 828b6504b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/218.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/219.png b/front/public/images/large/gregtech/gt.blockmachines/219.png deleted file mode 100644 index 130d6945e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/219.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/22.png b/front/public/images/large/gregtech/gt.blockmachines/22.png deleted file mode 100644 index 37112e85a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/22.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2200.png b/front/public/images/large/gregtech/gt.blockmachines/2200.png deleted file mode 100644 index 8c51cd54f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2201.png b/front/public/images/large/gregtech/gt.blockmachines/2201.png deleted file mode 100644 index 2d9186bb5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2202.png b/front/public/images/large/gregtech/gt.blockmachines/2202.png deleted file mode 100644 index 8276d7574e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2203.png b/front/public/images/large/gregtech/gt.blockmachines/2203.png deleted file mode 100644 index a500378500..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2204.png b/front/public/images/large/gregtech/gt.blockmachines/2204.png deleted file mode 100644 index 02b55b3966..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2205.png b/front/public/images/large/gregtech/gt.blockmachines/2205.png deleted file mode 100644 index fe47db2c6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2220.png b/front/public/images/large/gregtech/gt.blockmachines/2220.png deleted file mode 100644 index 84a46a3629..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2220.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2221.png b/front/public/images/large/gregtech/gt.blockmachines/2221.png deleted file mode 100644 index 8cfa346bd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2221.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2222.png b/front/public/images/large/gregtech/gt.blockmachines/2222.png deleted file mode 100644 index 8144bd4948..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2222.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2223.png b/front/public/images/large/gregtech/gt.blockmachines/2223.png deleted file mode 100644 index 1d3360ff15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2223.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2224.png b/front/public/images/large/gregtech/gt.blockmachines/2224.png deleted file mode 100644 index da7e98d52f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2224.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2225.png b/front/public/images/large/gregtech/gt.blockmachines/2225.png deleted file mode 100644 index 02b9468211..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2225.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2240.png b/front/public/images/large/gregtech/gt.blockmachines/2240.png deleted file mode 100644 index d53d08d734..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2240.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2241.png b/front/public/images/large/gregtech/gt.blockmachines/2241.png deleted file mode 100644 index c085149159..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2241.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2242.png b/front/public/images/large/gregtech/gt.blockmachines/2242.png deleted file mode 100644 index 6b5f5859ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2242.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2243.png b/front/public/images/large/gregtech/gt.blockmachines/2243.png deleted file mode 100644 index 1eaa709aed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2243.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2244.png b/front/public/images/large/gregtech/gt.blockmachines/2244.png deleted file mode 100644 index aa8d7b9f8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2244.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2245.png b/front/public/images/large/gregtech/gt.blockmachines/2245.png deleted file mode 100644 index 5cbafc0b4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2245.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2260.png b/front/public/images/large/gregtech/gt.blockmachines/2260.png deleted file mode 100644 index f378ef1b2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2260.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2261.png b/front/public/images/large/gregtech/gt.blockmachines/2261.png deleted file mode 100644 index 2841426f63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2261.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2262.png b/front/public/images/large/gregtech/gt.blockmachines/2262.png deleted file mode 100644 index 90bd4d8ac6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2262.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2263.png b/front/public/images/large/gregtech/gt.blockmachines/2263.png deleted file mode 100644 index ca7a5d20ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2263.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2264.png b/front/public/images/large/gregtech/gt.blockmachines/2264.png deleted file mode 100644 index 3564809203..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2264.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2265.png b/front/public/images/large/gregtech/gt.blockmachines/2265.png deleted file mode 100644 index e6e91c013e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2265.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/227.png b/front/public/images/large/gregtech/gt.blockmachines/227.png deleted file mode 100644 index dca7a6d44e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/227.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2280.png b/front/public/images/large/gregtech/gt.blockmachines/2280.png deleted file mode 100644 index d085a0d023..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2280.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2281.png b/front/public/images/large/gregtech/gt.blockmachines/2281.png deleted file mode 100644 index 5f73b554b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2281.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2282.png b/front/public/images/large/gregtech/gt.blockmachines/2282.png deleted file mode 100644 index 3a2178af73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2282.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2283.png b/front/public/images/large/gregtech/gt.blockmachines/2283.png deleted file mode 100644 index af537013f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2283.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2284.png b/front/public/images/large/gregtech/gt.blockmachines/2284.png deleted file mode 100644 index ac618c5743..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2284.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2285.png b/front/public/images/large/gregtech/gt.blockmachines/2285.png deleted file mode 100644 index cfe4c5df72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2285.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/229.png b/front/public/images/large/gregtech/gt.blockmachines/229.png deleted file mode 100644 index af8d0aa16c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/229.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/23.png b/front/public/images/large/gregtech/gt.blockmachines/23.png deleted file mode 100644 index fc7c77d0fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/23.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2300.png b/front/public/images/large/gregtech/gt.blockmachines/2300.png deleted file mode 100644 index 93c48c9865..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2301.png b/front/public/images/large/gregtech/gt.blockmachines/2301.png deleted file mode 100644 index bbf8f52f26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2302.png b/front/public/images/large/gregtech/gt.blockmachines/2302.png deleted file mode 100644 index 66187bb3bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2303.png b/front/public/images/large/gregtech/gt.blockmachines/2303.png deleted file mode 100644 index 130721e069..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2304.png b/front/public/images/large/gregtech/gt.blockmachines/2304.png deleted file mode 100644 index 0309321532..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2305.png b/front/public/images/large/gregtech/gt.blockmachines/2305.png deleted file mode 100644 index 8a58231831..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2320.png b/front/public/images/large/gregtech/gt.blockmachines/2320.png deleted file mode 100644 index 8c51cd54f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2321.png b/front/public/images/large/gregtech/gt.blockmachines/2321.png deleted file mode 100644 index 2d9186bb5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2322.png b/front/public/images/large/gregtech/gt.blockmachines/2322.png deleted file mode 100644 index 8276d7574e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2322.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2323.png b/front/public/images/large/gregtech/gt.blockmachines/2323.png deleted file mode 100644 index a500378500..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2324.png b/front/public/images/large/gregtech/gt.blockmachines/2324.png deleted file mode 100644 index 02b55b3966..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2325.png b/front/public/images/large/gregtech/gt.blockmachines/2325.png deleted file mode 100644 index fe47db2c6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2340.png b/front/public/images/large/gregtech/gt.blockmachines/2340.png deleted file mode 100644 index 84a46a3629..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2341.png b/front/public/images/large/gregtech/gt.blockmachines/2341.png deleted file mode 100644 index 8cfa346bd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2342.png b/front/public/images/large/gregtech/gt.blockmachines/2342.png deleted file mode 100644 index 8144bd4948..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2343.png b/front/public/images/large/gregtech/gt.blockmachines/2343.png deleted file mode 100644 index 1d3360ff15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2344.png b/front/public/images/large/gregtech/gt.blockmachines/2344.png deleted file mode 100644 index da7e98d52f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2345.png b/front/public/images/large/gregtech/gt.blockmachines/2345.png deleted file mode 100644 index 02b9468211..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2360.png b/front/public/images/large/gregtech/gt.blockmachines/2360.png deleted file mode 100644 index d53d08d734..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2361.png b/front/public/images/large/gregtech/gt.blockmachines/2361.png deleted file mode 100644 index c085149159..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2362.png b/front/public/images/large/gregtech/gt.blockmachines/2362.png deleted file mode 100644 index 6b5f5859ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2363.png b/front/public/images/large/gregtech/gt.blockmachines/2363.png deleted file mode 100644 index 1eaa709aed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2364.png b/front/public/images/large/gregtech/gt.blockmachines/2364.png deleted file mode 100644 index aa8d7b9f8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2365.png b/front/public/images/large/gregtech/gt.blockmachines/2365.png deleted file mode 100644 index 5cbafc0b4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2380.png b/front/public/images/large/gregtech/gt.blockmachines/2380.png deleted file mode 100644 index f378ef1b2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2381.png b/front/public/images/large/gregtech/gt.blockmachines/2381.png deleted file mode 100644 index 2841426f63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2382.png b/front/public/images/large/gregtech/gt.blockmachines/2382.png deleted file mode 100644 index 90bd4d8ac6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2383.png b/front/public/images/large/gregtech/gt.blockmachines/2383.png deleted file mode 100644 index ca7a5d20ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2384.png b/front/public/images/large/gregtech/gt.blockmachines/2384.png deleted file mode 100644 index 3564809203..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2385.png b/front/public/images/large/gregtech/gt.blockmachines/2385.png deleted file mode 100644 index e6e91c013e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/24.png b/front/public/images/large/gregtech/gt.blockmachines/24.png deleted file mode 100644 index a9865ee304..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/24.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2400.png b/front/public/images/large/gregtech/gt.blockmachines/2400.png deleted file mode 100644 index d085a0d023..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2401.png b/front/public/images/large/gregtech/gt.blockmachines/2401.png deleted file mode 100644 index 5f73b554b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2402.png b/front/public/images/large/gregtech/gt.blockmachines/2402.png deleted file mode 100644 index 3a2178af73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2403.png b/front/public/images/large/gregtech/gt.blockmachines/2403.png deleted file mode 100644 index af537013f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2404.png b/front/public/images/large/gregtech/gt.blockmachines/2404.png deleted file mode 100644 index ac618c5743..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2405.png b/front/public/images/large/gregtech/gt.blockmachines/2405.png deleted file mode 100644 index cfe4c5df72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2420.png b/front/public/images/large/gregtech/gt.blockmachines/2420.png deleted file mode 100644 index 93c48c9865..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2420.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2421.png b/front/public/images/large/gregtech/gt.blockmachines/2421.png deleted file mode 100644 index bbf8f52f26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2421.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2422.png b/front/public/images/large/gregtech/gt.blockmachines/2422.png deleted file mode 100644 index 66187bb3bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2422.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2423.png b/front/public/images/large/gregtech/gt.blockmachines/2423.png deleted file mode 100644 index 130721e069..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2423.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2424.png b/front/public/images/large/gregtech/gt.blockmachines/2424.png deleted file mode 100644 index 0309321532..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2424.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2425.png b/front/public/images/large/gregtech/gt.blockmachines/2425.png deleted file mode 100644 index 8a58231831..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2425.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2440.png b/front/public/images/large/gregtech/gt.blockmachines/2440.png deleted file mode 100644 index 6173468e1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2440.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2441.png b/front/public/images/large/gregtech/gt.blockmachines/2441.png deleted file mode 100644 index 65a7626591..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2441.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2442.png b/front/public/images/large/gregtech/gt.blockmachines/2442.png deleted file mode 100644 index acaefb4ae8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2442.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2443.png b/front/public/images/large/gregtech/gt.blockmachines/2443.png deleted file mode 100644 index 69111032b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2443.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2444.png b/front/public/images/large/gregtech/gt.blockmachines/2444.png deleted file mode 100644 index 6f023f6d02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2444.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2445.png b/front/public/images/large/gregtech/gt.blockmachines/2445.png deleted file mode 100644 index d617b6a2da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2445.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/25.png b/front/public/images/large/gregtech/gt.blockmachines/25.png deleted file mode 100644 index 8b81fd6d8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/25.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2500.png b/front/public/images/large/gregtech/gt.blockmachines/2500.png deleted file mode 100644 index 6173468e1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2501.png b/front/public/images/large/gregtech/gt.blockmachines/2501.png deleted file mode 100644 index 65a7626591..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2502.png b/front/public/images/large/gregtech/gt.blockmachines/2502.png deleted file mode 100644 index acaefb4ae8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2503.png b/front/public/images/large/gregtech/gt.blockmachines/2503.png deleted file mode 100644 index 69111032b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2504.png b/front/public/images/large/gregtech/gt.blockmachines/2504.png deleted file mode 100644 index 6f023f6d02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2505.png b/front/public/images/large/gregtech/gt.blockmachines/2505.png deleted file mode 100644 index d617b6a2da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2520.png b/front/public/images/large/gregtech/gt.blockmachines/2520.png deleted file mode 100644 index 94d283baaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2521.png b/front/public/images/large/gregtech/gt.blockmachines/2521.png deleted file mode 100644 index dc95561806..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2522.png b/front/public/images/large/gregtech/gt.blockmachines/2522.png deleted file mode 100644 index 471eabd5a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2523.png b/front/public/images/large/gregtech/gt.blockmachines/2523.png deleted file mode 100644 index 8e6b7eff0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2524.png b/front/public/images/large/gregtech/gt.blockmachines/2524.png deleted file mode 100644 index 5343bcc413..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2525.png b/front/public/images/large/gregtech/gt.blockmachines/2525.png deleted file mode 100644 index ba97ecdf89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/26.png b/front/public/images/large/gregtech/gt.blockmachines/26.png deleted file mode 100644 index 51e74d9335..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/26.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2600.png b/front/public/images/large/gregtech/gt.blockmachines/2600.png deleted file mode 100644 index 5b57d2c5b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2600.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2601.png b/front/public/images/large/gregtech/gt.blockmachines/2601.png deleted file mode 100644 index d38d9e9bbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2601.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2602.png b/front/public/images/large/gregtech/gt.blockmachines/2602.png deleted file mode 100644 index fa4213c8b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2602.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2603.png b/front/public/images/large/gregtech/gt.blockmachines/2603.png deleted file mode 100644 index 633557e6ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2603.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2604.png b/front/public/images/large/gregtech/gt.blockmachines/2604.png deleted file mode 100644 index d541c628c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2604.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2605.png b/front/public/images/large/gregtech/gt.blockmachines/2605.png deleted file mode 100644 index 5ab0b49a5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2605.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2606.png b/front/public/images/large/gregtech/gt.blockmachines/2606.png deleted file mode 100644 index 76eb25688f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2606.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2607.png b/front/public/images/large/gregtech/gt.blockmachines/2607.png deleted file mode 100644 index 12292f87d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2608.png b/front/public/images/large/gregtech/gt.blockmachines/2608.png deleted file mode 100644 index 52dfceaf71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2608.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2609.png b/front/public/images/large/gregtech/gt.blockmachines/2609.png deleted file mode 100644 index edaa5f5f7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2609.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2610.png b/front/public/images/large/gregtech/gt.blockmachines/2610.png deleted file mode 100644 index b00cbecf7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2611.png b/front/public/images/large/gregtech/gt.blockmachines/2611.png deleted file mode 100644 index 92d1a71320..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/266.png b/front/public/images/large/gregtech/gt.blockmachines/266.png deleted file mode 100644 index 9f8968684f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/266.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/267.png b/front/public/images/large/gregtech/gt.blockmachines/267.png deleted file mode 100644 index f4c2915e7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/267.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/268.png b/front/public/images/large/gregtech/gt.blockmachines/268.png deleted file mode 100644 index 935fe6d255..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/268.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/269.png b/front/public/images/large/gregtech/gt.blockmachines/269.png deleted file mode 100644 index ffdf6f6c57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/269.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/27.png b/front/public/images/large/gregtech/gt.blockmachines/27.png deleted file mode 100644 index 1b72a9aa24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/27.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2700.png b/front/public/images/large/gregtech/gt.blockmachines/2700.png deleted file mode 100644 index ddb6061063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2700.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2701.png b/front/public/images/large/gregtech/gt.blockmachines/2701.png deleted file mode 100644 index a7637420b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2701.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2710.png b/front/public/images/large/gregtech/gt.blockmachines/2710.png deleted file mode 100644 index d30c4e271a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2710.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2711.png b/front/public/images/large/gregtech/gt.blockmachines/2711.png deleted file mode 100644 index f1aa9acb09..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2711.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2712.png b/front/public/images/large/gregtech/gt.blockmachines/2712.png deleted file mode 100644 index c8f7a89dde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2712.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2713.png b/front/public/images/large/gregtech/gt.blockmachines/2713.png deleted file mode 100644 index 9d2bec51b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2713.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2714.png b/front/public/images/large/gregtech/gt.blockmachines/2714.png deleted file mode 100644 index e0066816ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2714.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2715.png b/front/public/images/large/gregtech/gt.blockmachines/2715.png deleted file mode 100644 index 020d650b07..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2715.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2716.png b/front/public/images/large/gregtech/gt.blockmachines/2716.png deleted file mode 100644 index 6482cfe6b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2716.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2717.png b/front/public/images/large/gregtech/gt.blockmachines/2717.png deleted file mode 100644 index 946796d106..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2717.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/2718.png b/front/public/images/large/gregtech/gt.blockmachines/2718.png deleted file mode 100644 index 7371132452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/2718.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/28.png b/front/public/images/large/gregtech/gt.blockmachines/28.png deleted file mode 100644 index d149713393..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/28.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/286.png b/front/public/images/large/gregtech/gt.blockmachines/286.png deleted file mode 100644 index 73cd4a6ac2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/286.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/287.png b/front/public/images/large/gregtech/gt.blockmachines/287.png deleted file mode 100644 index 1821db2499..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/287.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/288.png b/front/public/images/large/gregtech/gt.blockmachines/288.png deleted file mode 100644 index aa0dc4646f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/288.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/289.png b/front/public/images/large/gregtech/gt.blockmachines/289.png deleted file mode 100644 index 9b215d8fb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/289.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/296.png b/front/public/images/large/gregtech/gt.blockmachines/296.png deleted file mode 100644 index 7914320b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/296.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/297.png b/front/public/images/large/gregtech/gt.blockmachines/297.png deleted file mode 100644 index 25ca0e176b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/297.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/298.png b/front/public/images/large/gregtech/gt.blockmachines/298.png deleted file mode 100644 index 7a7be86db2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/298.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/299.png b/front/public/images/large/gregtech/gt.blockmachines/299.png deleted file mode 100644 index 828b6504b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/3.png b/front/public/images/large/gregtech/gt.blockmachines/3.png deleted file mode 100644 index 8449a94649..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30.png b/front/public/images/large/gregtech/gt.blockmachines/30.png deleted file mode 100644 index fb5731acf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30001.png b/front/public/images/large/gregtech/gt.blockmachines/30001.png deleted file mode 100644 index 7071833ae4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30002.png b/front/public/images/large/gregtech/gt.blockmachines/30002.png deleted file mode 100644 index b54a3a2fe1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30003.png b/front/public/images/large/gregtech/gt.blockmachines/30003.png deleted file mode 100644 index de01e9e56c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30004.png b/front/public/images/large/gregtech/gt.blockmachines/30004.png deleted file mode 100644 index ff5e6daa20..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30005.png b/front/public/images/large/gregtech/gt.blockmachines/30005.png deleted file mode 100644 index 254149f8b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30006.png b/front/public/images/large/gregtech/gt.blockmachines/30006.png deleted file mode 100644 index 31bde06209..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30007.png b/front/public/images/large/gregtech/gt.blockmachines/30007.png deleted file mode 100644 index 35822cb136..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30008.png b/front/public/images/large/gregtech/gt.blockmachines/30008.png deleted file mode 100644 index edd3aa6230..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30009.png b/front/public/images/large/gregtech/gt.blockmachines/30009.png deleted file mode 100644 index 46d3a3c380..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30010.png b/front/public/images/large/gregtech/gt.blockmachines/30010.png deleted file mode 100644 index 90c20129f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30022.png b/front/public/images/large/gregtech/gt.blockmachines/30022.png deleted file mode 100644 index 3c5116d4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30023.png b/front/public/images/large/gregtech/gt.blockmachines/30023.png deleted file mode 100644 index a462cb1202..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30024.png b/front/public/images/large/gregtech/gt.blockmachines/30024.png deleted file mode 100644 index 6c701b2884..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30024.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30025.png b/front/public/images/large/gregtech/gt.blockmachines/30025.png deleted file mode 100644 index 469291cefd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30026.png b/front/public/images/large/gregtech/gt.blockmachines/30026.png deleted file mode 100644 index 0853a85113..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30027.png b/front/public/images/large/gregtech/gt.blockmachines/30027.png deleted file mode 100644 index 57dc2a3060..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30028.png b/front/public/images/large/gregtech/gt.blockmachines/30028.png deleted file mode 100644 index d7c48b2045..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30029.png b/front/public/images/large/gregtech/gt.blockmachines/30029.png deleted file mode 100644 index 163c997383..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30030.png b/front/public/images/large/gregtech/gt.blockmachines/30030.png deleted file mode 100644 index f9360309bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30032.png b/front/public/images/large/gregtech/gt.blockmachines/30032.png deleted file mode 100644 index c39e1175f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30033.png b/front/public/images/large/gregtech/gt.blockmachines/30033.png deleted file mode 100644 index 91df037122..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30034.png b/front/public/images/large/gregtech/gt.blockmachines/30034.png deleted file mode 100644 index e75c319b61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30035.png b/front/public/images/large/gregtech/gt.blockmachines/30035.png deleted file mode 100644 index 6a9fdcee9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30036.png b/front/public/images/large/gregtech/gt.blockmachines/30036.png deleted file mode 100644 index 7ad62c9cfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30037.png b/front/public/images/large/gregtech/gt.blockmachines/30037.png deleted file mode 100644 index b174d5eaad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30038.png b/front/public/images/large/gregtech/gt.blockmachines/30038.png deleted file mode 100644 index 860e984eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30038.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30039.png b/front/public/images/large/gregtech/gt.blockmachines/30039.png deleted file mode 100644 index af1280be78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30040.png b/front/public/images/large/gregtech/gt.blockmachines/30040.png deleted file mode 100644 index 88b326b69d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30040.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30100.png b/front/public/images/large/gregtech/gt.blockmachines/30100.png deleted file mode 100644 index d6bcbe51c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30101.png b/front/public/images/large/gregtech/gt.blockmachines/30101.png deleted file mode 100644 index 0c3acf3a5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30102.png b/front/public/images/large/gregtech/gt.blockmachines/30102.png deleted file mode 100644 index 8854c5edec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30103.png b/front/public/images/large/gregtech/gt.blockmachines/30103.png deleted file mode 100644 index 60c9bb4996..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30104.png b/front/public/images/large/gregtech/gt.blockmachines/30104.png deleted file mode 100644 index 57e1ea01f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30105.png b/front/public/images/large/gregtech/gt.blockmachines/30105.png deleted file mode 100644 index 14bc002d7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30105.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30106.png b/front/public/images/large/gregtech/gt.blockmachines/30106.png deleted file mode 100644 index aa376d1c74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30107.png b/front/public/images/large/gregtech/gt.blockmachines/30107.png deleted file mode 100644 index e4bf4981e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30107.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30500.png b/front/public/images/large/gregtech/gt.blockmachines/30500.png deleted file mode 100644 index 259f7a1605..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30501.png b/front/public/images/large/gregtech/gt.blockmachines/30501.png deleted file mode 100644 index 7905fa1b7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30502.png b/front/public/images/large/gregtech/gt.blockmachines/30502.png deleted file mode 100644 index 68a3dbd672..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30503.png b/front/public/images/large/gregtech/gt.blockmachines/30503.png deleted file mode 100644 index 3eb4e5c97e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30504.png b/front/public/images/large/gregtech/gt.blockmachines/30504.png deleted file mode 100644 index f4f2d09301..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30585.png b/front/public/images/large/gregtech/gt.blockmachines/30585.png deleted file mode 100644 index 365dad540a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30586.png b/front/public/images/large/gregtech/gt.blockmachines/30586.png deleted file mode 100644 index efaaf4758b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30587.png b/front/public/images/large/gregtech/gt.blockmachines/30587.png deleted file mode 100644 index 989380e40f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30587.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30588.png b/front/public/images/large/gregtech/gt.blockmachines/30588.png deleted file mode 100644 index 13cd36c128..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30589.png b/front/public/images/large/gregtech/gt.blockmachines/30589.png deleted file mode 100644 index fbbe3d0992..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30589.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30590.png b/front/public/images/large/gregtech/gt.blockmachines/30590.png deleted file mode 100644 index 6bd0a033b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30590.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30645.png b/front/public/images/large/gregtech/gt.blockmachines/30645.png deleted file mode 100644 index 88c983fca1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30646.png b/front/public/images/large/gregtech/gt.blockmachines/30646.png deleted file mode 100644 index 5fc4d2d159..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30647.png b/front/public/images/large/gregtech/gt.blockmachines/30647.png deleted file mode 100644 index 4b88a88da2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30647.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30648.png b/front/public/images/large/gregtech/gt.blockmachines/30648.png deleted file mode 100644 index 6977b14062..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30648.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30649.png b/front/public/images/large/gregtech/gt.blockmachines/30649.png deleted file mode 100644 index d7fa427c4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30650.png b/front/public/images/large/gregtech/gt.blockmachines/30650.png deleted file mode 100644 index fb2e581785..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30650.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30651.png b/front/public/images/large/gregtech/gt.blockmachines/30651.png deleted file mode 100644 index 31b0f9869d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30651.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30652.png b/front/public/images/large/gregtech/gt.blockmachines/30652.png deleted file mode 100644 index 56e592f3f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30652.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30653.png b/front/public/images/large/gregtech/gt.blockmachines/30653.png deleted file mode 100644 index 42d940815a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30653.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30654.png b/front/public/images/large/gregtech/gt.blockmachines/30654.png deleted file mode 100644 index eafd51e60e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30654.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30655.png b/front/public/images/large/gregtech/gt.blockmachines/30655.png deleted file mode 100644 index 27842b338b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30655.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30656.png b/front/public/images/large/gregtech/gt.blockmachines/30656.png deleted file mode 100644 index b7c48443c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30656.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30700.png b/front/public/images/large/gregtech/gt.blockmachines/30700.png deleted file mode 100644 index 27a0d304d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30700.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30701.png b/front/public/images/large/gregtech/gt.blockmachines/30701.png deleted file mode 100644 index f572aa7b6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30701.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30702.png b/front/public/images/large/gregtech/gt.blockmachines/30702.png deleted file mode 100644 index 305d0efe6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30702.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30703.png b/front/public/images/large/gregtech/gt.blockmachines/30703.png deleted file mode 100644 index aa2c562e8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30703.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30704.png b/front/public/images/large/gregtech/gt.blockmachines/30704.png deleted file mode 100644 index 15f0c74fe6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30704.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30705.png b/front/public/images/large/gregtech/gt.blockmachines/30705.png deleted file mode 100644 index 9309c2d98c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30705.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30706.png b/front/public/images/large/gregtech/gt.blockmachines/30706.png deleted file mode 100644 index cc448ed12b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30706.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30707.png b/front/public/images/large/gregtech/gt.blockmachines/30707.png deleted file mode 100644 index 2468ff1c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30707.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30708.png b/front/public/images/large/gregtech/gt.blockmachines/30708.png deleted file mode 100644 index 82a4ff64e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30708.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30709.png b/front/public/images/large/gregtech/gt.blockmachines/30709.png deleted file mode 100644 index 41ad55dda4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30709.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30710.png b/front/public/images/large/gregtech/gt.blockmachines/30710.png deleted file mode 100644 index 5fd9c935f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30710.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30711.png b/front/public/images/large/gregtech/gt.blockmachines/30711.png deleted file mode 100644 index 892077adf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30711.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30712.png b/front/public/images/large/gregtech/gt.blockmachines/30712.png deleted file mode 100644 index 5112eeefd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30712.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30713.png b/front/public/images/large/gregtech/gt.blockmachines/30713.png deleted file mode 100644 index 42cf67a4e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30713.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30714.png b/front/public/images/large/gregtech/gt.blockmachines/30714.png deleted file mode 100644 index 2929167442..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30714.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30715.png b/front/public/images/large/gregtech/gt.blockmachines/30715.png deleted file mode 100644 index 33618ec382..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30715.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30716.png b/front/public/images/large/gregtech/gt.blockmachines/30716.png deleted file mode 100644 index 5c8e59283b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30716.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30717.png b/front/public/images/large/gregtech/gt.blockmachines/30717.png deleted file mode 100644 index 1672d3c28e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30717.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30718.png b/front/public/images/large/gregtech/gt.blockmachines/30718.png deleted file mode 100644 index b2f11860b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30718.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30719.png b/front/public/images/large/gregtech/gt.blockmachines/30719.png deleted file mode 100644 index d55b9eba52..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30719.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30720.png b/front/public/images/large/gregtech/gt.blockmachines/30720.png deleted file mode 100644 index ff45a3c16f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30720.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30721.png b/front/public/images/large/gregtech/gt.blockmachines/30721.png deleted file mode 100644 index 8278d2532d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30721.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30722.png b/front/public/images/large/gregtech/gt.blockmachines/30722.png deleted file mode 100644 index 5b43a0f9a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30722.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30723.png b/front/public/images/large/gregtech/gt.blockmachines/30723.png deleted file mode 100644 index 96e87fdc32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30723.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30724.png b/front/public/images/large/gregtech/gt.blockmachines/30724.png deleted file mode 100644 index 874b238775..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30724.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30725.png b/front/public/images/large/gregtech/gt.blockmachines/30725.png deleted file mode 100644 index 23fb5dee76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30725.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30726.png b/front/public/images/large/gregtech/gt.blockmachines/30726.png deleted file mode 100644 index 56d49fced4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30726.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30727.png b/front/public/images/large/gregtech/gt.blockmachines/30727.png deleted file mode 100644 index 1224a4b013..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30727.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30728.png b/front/public/images/large/gregtech/gt.blockmachines/30728.png deleted file mode 100644 index f4cc233cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30728.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30729.png b/front/public/images/large/gregtech/gt.blockmachines/30729.png deleted file mode 100644 index e3277423e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30729.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30730.png b/front/public/images/large/gregtech/gt.blockmachines/30730.png deleted file mode 100644 index 0e1dbd30e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30730.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30731.png b/front/public/images/large/gregtech/gt.blockmachines/30731.png deleted file mode 100644 index 71ea358369..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30731.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30732.png b/front/public/images/large/gregtech/gt.blockmachines/30732.png deleted file mode 100644 index c602096b03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30732.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30733.png b/front/public/images/large/gregtech/gt.blockmachines/30733.png deleted file mode 100644 index 07e41c8ffc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30733.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30734.png b/front/public/images/large/gregtech/gt.blockmachines/30734.png deleted file mode 100644 index 4372ac7ed0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30734.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30735.png b/front/public/images/large/gregtech/gt.blockmachines/30735.png deleted file mode 100644 index c27d54e747..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30736.png b/front/public/images/large/gregtech/gt.blockmachines/30736.png deleted file mode 100644 index 826c310458..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30736.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30737.png b/front/public/images/large/gregtech/gt.blockmachines/30737.png deleted file mode 100644 index a7139c2adc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30737.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30738.png b/front/public/images/large/gregtech/gt.blockmachines/30738.png deleted file mode 100644 index c81963e799..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30738.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30739.png b/front/public/images/large/gregtech/gt.blockmachines/30739.png deleted file mode 100644 index 8413efe4c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30740.png b/front/public/images/large/gregtech/gt.blockmachines/30740.png deleted file mode 100644 index ebd6b76f5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30741.png b/front/public/images/large/gregtech/gt.blockmachines/30741.png deleted file mode 100644 index 97f3ffc2cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30742.png b/front/public/images/large/gregtech/gt.blockmachines/30742.png deleted file mode 100644 index 2a50fcab3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30742.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30743.png b/front/public/images/large/gregtech/gt.blockmachines/30743.png deleted file mode 100644 index c6332a2534..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30743.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30744.png b/front/public/images/large/gregtech/gt.blockmachines/30744.png deleted file mode 100644 index 53974c5d81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30744.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30745.png b/front/public/images/large/gregtech/gt.blockmachines/30745.png deleted file mode 100644 index 52c38d94c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30746.png b/front/public/images/large/gregtech/gt.blockmachines/30746.png deleted file mode 100644 index 3b24b59a35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30746.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30747.png b/front/public/images/large/gregtech/gt.blockmachines/30747.png deleted file mode 100644 index 5c1f3ae172..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30747.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30748.png b/front/public/images/large/gregtech/gt.blockmachines/30748.png deleted file mode 100644 index 1447d5c8b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30748.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30749.png b/front/public/images/large/gregtech/gt.blockmachines/30749.png deleted file mode 100644 index 5c60310ce8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30750.png b/front/public/images/large/gregtech/gt.blockmachines/30750.png deleted file mode 100644 index 0fa863ea95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30750.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30751.png b/front/public/images/large/gregtech/gt.blockmachines/30751.png deleted file mode 100644 index 0a2487a104..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30752.png b/front/public/images/large/gregtech/gt.blockmachines/30752.png deleted file mode 100644 index bc1b22d6a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30752.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30753.png b/front/public/images/large/gregtech/gt.blockmachines/30753.png deleted file mode 100644 index 4553bee1ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30753.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30754.png b/front/public/images/large/gregtech/gt.blockmachines/30754.png deleted file mode 100644 index fb84ff9af5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30754.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30755.png b/front/public/images/large/gregtech/gt.blockmachines/30755.png deleted file mode 100644 index 0e52e605fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30755.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30756.png b/front/public/images/large/gregtech/gt.blockmachines/30756.png deleted file mode 100644 index 84dca5a137..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30756.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30757.png b/front/public/images/large/gregtech/gt.blockmachines/30757.png deleted file mode 100644 index a0399be833..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30757.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30758.png b/front/public/images/large/gregtech/gt.blockmachines/30758.png deleted file mode 100644 index 6d7de9bb51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30758.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30759.png b/front/public/images/large/gregtech/gt.blockmachines/30759.png deleted file mode 100644 index fa14b8aabc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30759.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30760.png b/front/public/images/large/gregtech/gt.blockmachines/30760.png deleted file mode 100644 index 102e334812..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30761.png b/front/public/images/large/gregtech/gt.blockmachines/30761.png deleted file mode 100644 index 57f3478483..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30761.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30762.png b/front/public/images/large/gregtech/gt.blockmachines/30762.png deleted file mode 100644 index d2278a056e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30762.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30763.png b/front/public/images/large/gregtech/gt.blockmachines/30763.png deleted file mode 100644 index 8ad7349018..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30763.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30764.png b/front/public/images/large/gregtech/gt.blockmachines/30764.png deleted file mode 100644 index d0b2c6a12c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30764.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30765.png b/front/public/images/large/gregtech/gt.blockmachines/30765.png deleted file mode 100644 index 9f3e93511e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30766.png b/front/public/images/large/gregtech/gt.blockmachines/30766.png deleted file mode 100644 index a7589b3270..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30766.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30767.png b/front/public/images/large/gregtech/gt.blockmachines/30767.png deleted file mode 100644 index 5cf0cce1db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30767.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30768.png b/front/public/images/large/gregtech/gt.blockmachines/30768.png deleted file mode 100644 index a312913d35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30768.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30769.png b/front/public/images/large/gregtech/gt.blockmachines/30769.png deleted file mode 100644 index ac4c4cf774..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30769.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30770.png b/front/public/images/large/gregtech/gt.blockmachines/30770.png deleted file mode 100644 index 8ed35b3c51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30771.png b/front/public/images/large/gregtech/gt.blockmachines/30771.png deleted file mode 100644 index 7d29aa7201..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30771.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30772.png b/front/public/images/large/gregtech/gt.blockmachines/30772.png deleted file mode 100644 index 4001cb01f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30773.png b/front/public/images/large/gregtech/gt.blockmachines/30773.png deleted file mode 100644 index eba4511948..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30773.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30774.png b/front/public/images/large/gregtech/gt.blockmachines/30774.png deleted file mode 100644 index c95e530ad8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30774.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30995.png b/front/public/images/large/gregtech/gt.blockmachines/30995.png deleted file mode 100644 index 5e0a4fbe7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30995.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30996.png b/front/public/images/large/gregtech/gt.blockmachines/30996.png deleted file mode 100644 index cc48069026..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30996.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30997.png b/front/public/images/large/gregtech/gt.blockmachines/30997.png deleted file mode 100644 index e0456aee3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30997.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30998.png b/front/public/images/large/gregtech/gt.blockmachines/30998.png deleted file mode 100644 index 8061e3649a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30998.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/30999.png b/front/public/images/large/gregtech/gt.blockmachines/30999.png deleted file mode 100644 index 4124404856..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/30999.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31.png b/front/public/images/large/gregtech/gt.blockmachines/31.png deleted file mode 100644 index 984cfbc04b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/310.png b/front/public/images/large/gregtech/gt.blockmachines/310.png deleted file mode 100644 index 130d6945e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31010.png b/front/public/images/large/gregtech/gt.blockmachines/31010.png deleted file mode 100644 index 2165fb586e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31017.png b/front/public/images/large/gregtech/gt.blockmachines/31017.png deleted file mode 100644 index 5b2a4302d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31017.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31018.png b/front/public/images/large/gregtech/gt.blockmachines/31018.png deleted file mode 100644 index d879bf56fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31019.png b/front/public/images/large/gregtech/gt.blockmachines/31019.png deleted file mode 100644 index fb0373c545..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31020.png b/front/public/images/large/gregtech/gt.blockmachines/31020.png deleted file mode 100644 index 531cdaede5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31021.png b/front/public/images/large/gregtech/gt.blockmachines/31021.png deleted file mode 100644 index bd63614eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31023.png b/front/public/images/large/gregtech/gt.blockmachines/31023.png deleted file mode 100644 index 5ac5d5be19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31025.png b/front/public/images/large/gregtech/gt.blockmachines/31025.png deleted file mode 100644 index 163c997383..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31026.png b/front/public/images/large/gregtech/gt.blockmachines/31026.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31027.png b/front/public/images/large/gregtech/gt.blockmachines/31027.png deleted file mode 100644 index 4e8640c998..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31028.png b/front/public/images/large/gregtech/gt.blockmachines/31028.png deleted file mode 100644 index 47e40c0dee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31029.png b/front/public/images/large/gregtech/gt.blockmachines/31029.png deleted file mode 100644 index ad7551b02b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31030.png b/front/public/images/large/gregtech/gt.blockmachines/31030.png deleted file mode 100644 index 53357ee364..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31031.png b/front/public/images/large/gregtech/gt.blockmachines/31031.png deleted file mode 100644 index bf91b0e495..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31032.png b/front/public/images/large/gregtech/gt.blockmachines/31032.png deleted file mode 100644 index 116a992216..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31033.png b/front/public/images/large/gregtech/gt.blockmachines/31033.png deleted file mode 100644 index 4b400b4204..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31034.png b/front/public/images/large/gregtech/gt.blockmachines/31034.png deleted file mode 100644 index f4b96b0fe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31035.png b/front/public/images/large/gregtech/gt.blockmachines/31035.png deleted file mode 100644 index 1ee582fc82..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31040.png b/front/public/images/large/gregtech/gt.blockmachines/31040.png deleted file mode 100644 index fddcdd8e92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31040.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31041.png b/front/public/images/large/gregtech/gt.blockmachines/31041.png deleted file mode 100644 index 6abc457421..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31041.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31046.png b/front/public/images/large/gregtech/gt.blockmachines/31046.png deleted file mode 100644 index 31c80a1d7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31046.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31047.png b/front/public/images/large/gregtech/gt.blockmachines/31047.png deleted file mode 100644 index d07458945e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31050.png b/front/public/images/large/gregtech/gt.blockmachines/31050.png deleted file mode 100644 index 1c9cccc345..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31050.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31051.png b/front/public/images/large/gregtech/gt.blockmachines/31051.png deleted file mode 100644 index cd0ca1766e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31051.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31065.png b/front/public/images/large/gregtech/gt.blockmachines/31065.png deleted file mode 100644 index 975ddb45e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31066.png b/front/public/images/large/gregtech/gt.blockmachines/31066.png deleted file mode 100644 index 10463b8b92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31067.png b/front/public/images/large/gregtech/gt.blockmachines/31067.png deleted file mode 100644 index ab92778551..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31068.png b/front/public/images/large/gregtech/gt.blockmachines/31068.png deleted file mode 100644 index 4549cf2877..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31069.png b/front/public/images/large/gregtech/gt.blockmachines/31069.png deleted file mode 100644 index be299214b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31070.png b/front/public/images/large/gregtech/gt.blockmachines/31070.png deleted file mode 100644 index 6cbd74578c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31071.png b/front/public/images/large/gregtech/gt.blockmachines/31071.png deleted file mode 100644 index 70a71b5bd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31072.png b/front/public/images/large/gregtech/gt.blockmachines/31072.png deleted file mode 100644 index f426fc1b9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31073.png b/front/public/images/large/gregtech/gt.blockmachines/31073.png deleted file mode 100644 index 90997d1d0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31074.png b/front/public/images/large/gregtech/gt.blockmachines/31074.png deleted file mode 100644 index 8504336111..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31075.png b/front/public/images/large/gregtech/gt.blockmachines/31075.png deleted file mode 100644 index e10fa9e858..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31076.png b/front/public/images/large/gregtech/gt.blockmachines/31076.png deleted file mode 100644 index 5846ed3cbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31077.png b/front/public/images/large/gregtech/gt.blockmachines/31077.png deleted file mode 100644 index 578e8b887f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31078.png b/front/public/images/large/gregtech/gt.blockmachines/31078.png deleted file mode 100644 index cb69fdfe2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31079.png b/front/public/images/large/gregtech/gt.blockmachines/31079.png deleted file mode 100644 index 2aad592aad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31079.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31091.png b/front/public/images/large/gregtech/gt.blockmachines/31091.png deleted file mode 100644 index be1dd212cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31091.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31092.png b/front/public/images/large/gregtech/gt.blockmachines/31092.png deleted file mode 100644 index e3f57c46d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31092.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31093.png b/front/public/images/large/gregtech/gt.blockmachines/31093.png deleted file mode 100644 index 8c9a2eb47a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31093.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31094.png b/front/public/images/large/gregtech/gt.blockmachines/31094.png deleted file mode 100644 index d090c7d587..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31094.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31095.png b/front/public/images/large/gregtech/gt.blockmachines/31095.png deleted file mode 100644 index 4f26ba35f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31095.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31096.png b/front/public/images/large/gregtech/gt.blockmachines/31096.png deleted file mode 100644 index 08137d8d54..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31097.png b/front/public/images/large/gregtech/gt.blockmachines/31097.png deleted file mode 100644 index df8b1b2658..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31098.png b/front/public/images/large/gregtech/gt.blockmachines/31098.png deleted file mode 100644 index 16732727b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31111.png b/front/public/images/large/gregtech/gt.blockmachines/31111.png deleted file mode 100644 index 456d97a725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31112.png b/front/public/images/large/gregtech/gt.blockmachines/31112.png deleted file mode 100644 index 961e6491dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31113.png b/front/public/images/large/gregtech/gt.blockmachines/31113.png deleted file mode 100644 index 21805400ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31113.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31114.png b/front/public/images/large/gregtech/gt.blockmachines/31114.png deleted file mode 100644 index 23fe09bae0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31115.png b/front/public/images/large/gregtech/gt.blockmachines/31115.png deleted file mode 100644 index a28f6922a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31115.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31116.png b/front/public/images/large/gregtech/gt.blockmachines/31116.png deleted file mode 100644 index 625d000023..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31116.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31117.png b/front/public/images/large/gregtech/gt.blockmachines/31117.png deleted file mode 100644 index 76df0ba116..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31117.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31118.png b/front/public/images/large/gregtech/gt.blockmachines/31118.png deleted file mode 100644 index 348abac8a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31118.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31150.png b/front/public/images/large/gregtech/gt.blockmachines/31150.png deleted file mode 100644 index f58b7d5772..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31151.png b/front/public/images/large/gregtech/gt.blockmachines/31151.png deleted file mode 100644 index bb24c83460..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31151.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/316.png b/front/public/images/large/gregtech/gt.blockmachines/316.png deleted file mode 100644 index dca7a6d44e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/317.png b/front/public/images/large/gregtech/gt.blockmachines/317.png deleted file mode 100644 index af8d0aa16c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31778.png b/front/public/images/large/gregtech/gt.blockmachines/31778.png deleted file mode 100644 index 3c5116d4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31778.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31779.png b/front/public/images/large/gregtech/gt.blockmachines/31779.png deleted file mode 100644 index a462cb1202..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31779.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31780.png b/front/public/images/large/gregtech/gt.blockmachines/31780.png deleted file mode 100644 index 6c701b2884..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31780.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31781.png b/front/public/images/large/gregtech/gt.blockmachines/31781.png deleted file mode 100644 index fbf3d017b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31781.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31782.png b/front/public/images/large/gregtech/gt.blockmachines/31782.png deleted file mode 100644 index fddcdd8e92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31782.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31783.png b/front/public/images/large/gregtech/gt.blockmachines/31783.png deleted file mode 100644 index ccd2cd1400..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31783.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31784.png b/front/public/images/large/gregtech/gt.blockmachines/31784.png deleted file mode 100644 index b7a4d43f04..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31784.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31790.png b/front/public/images/large/gregtech/gt.blockmachines/31790.png deleted file mode 100644 index d26be23457..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31790.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31791.png b/front/public/images/large/gregtech/gt.blockmachines/31791.png deleted file mode 100644 index b5b5e965a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31791.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31792.png b/front/public/images/large/gregtech/gt.blockmachines/31792.png deleted file mode 100644 index 6f8fdc0af5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31792.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/31793.png b/front/public/images/large/gregtech/gt.blockmachines/31793.png deleted file mode 100644 index 5e34f8382b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/31793.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/318.png b/front/public/images/large/gregtech/gt.blockmachines/318.png deleted file mode 100644 index 9f8968684f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/319.png b/front/public/images/large/gregtech/gt.blockmachines/319.png deleted file mode 100644 index f4c2915e7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32.png b/front/public/images/large/gregtech/gt.blockmachines/32.png deleted file mode 100644 index a07da1b96c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32001.png b/front/public/images/large/gregtech/gt.blockmachines/32001.png deleted file mode 100644 index 9c7b6e1de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32002.png b/front/public/images/large/gregtech/gt.blockmachines/32002.png deleted file mode 100644 index 92bea5a452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32003.png b/front/public/images/large/gregtech/gt.blockmachines/32003.png deleted file mode 100644 index ad5dfae49e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32004.png b/front/public/images/large/gregtech/gt.blockmachines/32004.png deleted file mode 100644 index 5aebd37608..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32005.png b/front/public/images/large/gregtech/gt.blockmachines/32005.png deleted file mode 100644 index 5d6569f3b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32006.png b/front/public/images/large/gregtech/gt.blockmachines/32006.png deleted file mode 100644 index 656922ca6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32007.png b/front/public/images/large/gregtech/gt.blockmachines/32007.png deleted file mode 100644 index ba5d207a7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32008.png b/front/public/images/large/gregtech/gt.blockmachines/32008.png deleted file mode 100644 index 85251bdfb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32009.png b/front/public/images/large/gregtech/gt.blockmachines/32009.png deleted file mode 100644 index 3abc93da92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32010.png b/front/public/images/large/gregtech/gt.blockmachines/32010.png deleted file mode 100644 index 78e190cc61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32011.png b/front/public/images/large/gregtech/gt.blockmachines/32011.png deleted file mode 100644 index d12892ecf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32011.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32012.png b/front/public/images/large/gregtech/gt.blockmachines/32012.png deleted file mode 100644 index 18251cce7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32012.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32013.png b/front/public/images/large/gregtech/gt.blockmachines/32013.png deleted file mode 100644 index 07fd767766..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32013.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32014.png b/front/public/images/large/gregtech/gt.blockmachines/32014.png deleted file mode 100644 index 405959956e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32014.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32015.png b/front/public/images/large/gregtech/gt.blockmachines/32015.png deleted file mode 100644 index c1a5fffd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32015.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32016.png b/front/public/images/large/gregtech/gt.blockmachines/32016.png deleted file mode 100644 index 4a3f573407..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32016.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32017.png b/front/public/images/large/gregtech/gt.blockmachines/32017.png deleted file mode 100644 index f15ea13597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32017.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32018.png b/front/public/images/large/gregtech/gt.blockmachines/32018.png deleted file mode 100644 index 77ad3ba065..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32019.png b/front/public/images/large/gregtech/gt.blockmachines/32019.png deleted file mode 100644 index 13d878e0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32020.png b/front/public/images/large/gregtech/gt.blockmachines/32020.png deleted file mode 100644 index 13d878e0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32021.png b/front/public/images/large/gregtech/gt.blockmachines/32021.png deleted file mode 100644 index 13d878e0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32022.png b/front/public/images/large/gregtech/gt.blockmachines/32022.png deleted file mode 100644 index 18d6bf5807..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32023.png b/front/public/images/large/gregtech/gt.blockmachines/32023.png deleted file mode 100644 index 2733652416..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32024.png b/front/public/images/large/gregtech/gt.blockmachines/32024.png deleted file mode 100644 index 27c4fd8ed3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32024.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32025.png b/front/public/images/large/gregtech/gt.blockmachines/32025.png deleted file mode 100644 index 9e02f0abd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32026.png b/front/public/images/large/gregtech/gt.blockmachines/32026.png deleted file mode 100644 index 5e6fd73c66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32737.png b/front/public/images/large/gregtech/gt.blockmachines/32737.png deleted file mode 100644 index fdad612a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32737.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32738.png b/front/public/images/large/gregtech/gt.blockmachines/32738.png deleted file mode 100644 index 241e263788..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32738.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32739.png b/front/public/images/large/gregtech/gt.blockmachines/32739.png deleted file mode 100644 index 172e1af127..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32740.png b/front/public/images/large/gregtech/gt.blockmachines/32740.png deleted file mode 100644 index 7391c487a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32741.png b/front/public/images/large/gregtech/gt.blockmachines/32741.png deleted file mode 100644 index 676dfd0b90..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32742.png b/front/public/images/large/gregtech/gt.blockmachines/32742.png deleted file mode 100644 index f519a00a12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32742.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32743.png b/front/public/images/large/gregtech/gt.blockmachines/32743.png deleted file mode 100644 index 401c64ccd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32743.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32744.png b/front/public/images/large/gregtech/gt.blockmachines/32744.png deleted file mode 100644 index 1d1c15a862..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32744.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32745.png b/front/public/images/large/gregtech/gt.blockmachines/32745.png deleted file mode 100644 index 8685a4aec5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32746.png b/front/public/images/large/gregtech/gt.blockmachines/32746.png deleted file mode 100644 index e5cf88e7ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32746.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32747.png b/front/public/images/large/gregtech/gt.blockmachines/32747.png deleted file mode 100644 index 474d50dc9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32747.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32748.png b/front/public/images/large/gregtech/gt.blockmachines/32748.png deleted file mode 100644 index fe02cb7a46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32748.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32749.png b/front/public/images/large/gregtech/gt.blockmachines/32749.png deleted file mode 100644 index 28b1797ec3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32750.png b/front/public/images/large/gregtech/gt.blockmachines/32750.png deleted file mode 100644 index 541cf43395..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32750.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32751.png b/front/public/images/large/gregtech/gt.blockmachines/32751.png deleted file mode 100644 index f4a1582712..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32752.png b/front/public/images/large/gregtech/gt.blockmachines/32752.png deleted file mode 100644 index ff433d39b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32752.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32753.png b/front/public/images/large/gregtech/gt.blockmachines/32753.png deleted file mode 100644 index f28a466edf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32753.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32754.png b/front/public/images/large/gregtech/gt.blockmachines/32754.png deleted file mode 100644 index d62d38684d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32754.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32755.png b/front/public/images/large/gregtech/gt.blockmachines/32755.png deleted file mode 100644 index 49a7e03c3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32755.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32756.png b/front/public/images/large/gregtech/gt.blockmachines/32756.png deleted file mode 100644 index d2485d3c5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32756.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32757.png b/front/public/images/large/gregtech/gt.blockmachines/32757.png deleted file mode 100644 index 62b6686e03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32757.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32758.png b/front/public/images/large/gregtech/gt.blockmachines/32758.png deleted file mode 100644 index bf0ae825a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32758.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32759.png b/front/public/images/large/gregtech/gt.blockmachines/32759.png deleted file mode 100644 index 96ccd2cc2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32759.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/32760.png b/front/public/images/large/gregtech/gt.blockmachines/32760.png deleted file mode 100644 index 12eb4163fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/32760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/33.png b/front/public/images/large/gregtech/gt.blockmachines/33.png deleted file mode 100644 index f14cb04096..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/33.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/34.png b/front/public/images/large/gregtech/gt.blockmachines/34.png deleted file mode 100644 index 1c7a73aae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/34.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/341.png b/front/public/images/large/gregtech/gt.blockmachines/341.png deleted file mode 100644 index a74b95b66e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/342.png b/front/public/images/large/gregtech/gt.blockmachines/342.png deleted file mode 100644 index 181ad6e6d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/343.png b/front/public/images/large/gregtech/gt.blockmachines/343.png deleted file mode 100644 index ff0118b367..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/344.png b/front/public/images/large/gregtech/gt.blockmachines/344.png deleted file mode 100644 index ab27543a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/345.png b/front/public/images/large/gregtech/gt.blockmachines/345.png deleted file mode 100644 index e2a0352662..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/346.png b/front/public/images/large/gregtech/gt.blockmachines/346.png deleted file mode 100644 index 935fe6d255..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/347.png b/front/public/images/large/gregtech/gt.blockmachines/347.png deleted file mode 100644 index ffdf6f6c57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/348.png b/front/public/images/large/gregtech/gt.blockmachines/348.png deleted file mode 100644 index 73cd4a6ac2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/349.png b/front/public/images/large/gregtech/gt.blockmachines/349.png deleted file mode 100644 index 988b0c5a1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/35.png b/front/public/images/large/gregtech/gt.blockmachines/35.png deleted file mode 100644 index f39476cf5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/35.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/356.png b/front/public/images/large/gregtech/gt.blockmachines/356.png deleted file mode 100644 index 9792493e63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/357.png b/front/public/images/large/gregtech/gt.blockmachines/357.png deleted file mode 100644 index 1b64c1dda3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/36.png b/front/public/images/large/gregtech/gt.blockmachines/36.png deleted file mode 100644 index fbaaa822e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/36.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/37.png b/front/public/images/large/gregtech/gt.blockmachines/37.png deleted file mode 100644 index 834eda85e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/37.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/38.png b/front/public/images/large/gregtech/gt.blockmachines/38.png deleted file mode 100644 index 72ecb9e345..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/38.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/39.png b/front/public/images/large/gregtech/gt.blockmachines/39.png deleted file mode 100644 index 045c2a1037..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/39.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4.png b/front/public/images/large/gregtech/gt.blockmachines/4.png deleted file mode 100644 index f757e0c739..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/40.png b/front/public/images/large/gregtech/gt.blockmachines/40.png deleted file mode 100644 index ad5dfae49e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/40.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/401.png b/front/public/images/large/gregtech/gt.blockmachines/401.png deleted file mode 100644 index 920d113840..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/402.png b/front/public/images/large/gregtech/gt.blockmachines/402.png deleted file mode 100644 index f426ef30bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/403.png b/front/public/images/large/gregtech/gt.blockmachines/403.png deleted file mode 100644 index 08efb6142b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/404.png b/front/public/images/large/gregtech/gt.blockmachines/404.png deleted file mode 100644 index 3e36c8ca14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/405.png b/front/public/images/large/gregtech/gt.blockmachines/405.png deleted file mode 100644 index d0c9dec2ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/406.png b/front/public/images/large/gregtech/gt.blockmachines/406.png deleted file mode 100644 index 9f8a880a7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/407.png b/front/public/images/large/gregtech/gt.blockmachines/407.png deleted file mode 100644 index 24e5992b4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/408.png b/front/public/images/large/gregtech/gt.blockmachines/408.png deleted file mode 100644 index ccfd872034..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/41.png b/front/public/images/large/gregtech/gt.blockmachines/41.png deleted file mode 100644 index 5aebd37608..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/41.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4102.png b/front/public/images/large/gregtech/gt.blockmachines/4102.png deleted file mode 100644 index e640809ff7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4104.png b/front/public/images/large/gregtech/gt.blockmachines/4104.png deleted file mode 100644 index 7e0ce04e6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4106.png b/front/public/images/large/gregtech/gt.blockmachines/4106.png deleted file mode 100644 index 088f41569a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4114.png b/front/public/images/large/gregtech/gt.blockmachines/4114.png deleted file mode 100644 index 618a6d07c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4115.png b/front/public/images/large/gregtech/gt.blockmachines/4115.png deleted file mode 100644 index 06909b3f5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4115.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4116.png b/front/public/images/large/gregtech/gt.blockmachines/4116.png deleted file mode 100644 index 9124c6effa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4116.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4121.png b/front/public/images/large/gregtech/gt.blockmachines/4121.png deleted file mode 100644 index cb656fbed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4121.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4123.png b/front/public/images/large/gregtech/gt.blockmachines/4123.png deleted file mode 100644 index af3f303cee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4123.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4124.png b/front/public/images/large/gregtech/gt.blockmachines/4124.png deleted file mode 100644 index 421110163c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4124.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4125.png b/front/public/images/large/gregtech/gt.blockmachines/4125.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4125.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4126.png b/front/public/images/large/gregtech/gt.blockmachines/4126.png deleted file mode 100644 index 62804e021f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4126.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4127.png b/front/public/images/large/gregtech/gt.blockmachines/4127.png deleted file mode 100644 index ef6e4a3cdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4127.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4128.png b/front/public/images/large/gregtech/gt.blockmachines/4128.png deleted file mode 100644 index 173a5fd94a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4128.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4129.png b/front/public/images/large/gregtech/gt.blockmachines/4129.png deleted file mode 100644 index 40c9782b99..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4130.png b/front/public/images/large/gregtech/gt.blockmachines/4130.png deleted file mode 100644 index 962705d9a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4131.png b/front/public/images/large/gregtech/gt.blockmachines/4131.png deleted file mode 100644 index 795c2b2e03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4132.png b/front/public/images/large/gregtech/gt.blockmachines/4132.png deleted file mode 100644 index 715ecbf75f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4132.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4133.png b/front/public/images/large/gregtech/gt.blockmachines/4133.png deleted file mode 100644 index 26f566cb6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4133.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4135.png b/front/public/images/large/gregtech/gt.blockmachines/4135.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4135.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4139.png b/front/public/images/large/gregtech/gt.blockmachines/4139.png deleted file mode 100644 index 235ff6fd79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4141.png b/front/public/images/large/gregtech/gt.blockmachines/4141.png deleted file mode 100644 index 143a928cc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4143.png b/front/public/images/large/gregtech/gt.blockmachines/4143.png deleted file mode 100644 index e1a2cf2134..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4144.png b/front/public/images/large/gregtech/gt.blockmachines/4144.png deleted file mode 100644 index 80ec998b82..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4148.png b/front/public/images/large/gregtech/gt.blockmachines/4148.png deleted file mode 100644 index 002609db80..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4148.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4150.png b/front/public/images/large/gregtech/gt.blockmachines/4150.png deleted file mode 100644 index 26f566cb6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4152.png b/front/public/images/large/gregtech/gt.blockmachines/4152.png deleted file mode 100644 index 4aa005e7ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4152.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4153.png b/front/public/images/large/gregtech/gt.blockmachines/4153.png deleted file mode 100644 index 7b9a5b21fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4153.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4154.png b/front/public/images/large/gregtech/gt.blockmachines/4154.png deleted file mode 100644 index b0dba12197..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4154.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4155.png b/front/public/images/large/gregtech/gt.blockmachines/4155.png deleted file mode 100644 index 33bb24cadb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4155.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4158.png b/front/public/images/large/gregtech/gt.blockmachines/4158.png deleted file mode 100644 index 564605fb91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4158.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4159.png b/front/public/images/large/gregtech/gt.blockmachines/4159.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4159.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4160.png b/front/public/images/large/gregtech/gt.blockmachines/4160.png deleted file mode 100644 index 0cfbfdd055..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4160.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4161.png b/front/public/images/large/gregtech/gt.blockmachines/4161.png deleted file mode 100644 index fdd999890a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4161.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4162.png b/front/public/images/large/gregtech/gt.blockmachines/4162.png deleted file mode 100644 index 139722e7c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4162.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4163.png b/front/public/images/large/gregtech/gt.blockmachines/4163.png deleted file mode 100644 index 2c6b6d5139..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4163.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4164.png b/front/public/images/large/gregtech/gt.blockmachines/4164.png deleted file mode 100644 index 96ef6e858b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4164.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4165.png b/front/public/images/large/gregtech/gt.blockmachines/4165.png deleted file mode 100644 index a2db5c9af5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4165.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4166.png b/front/public/images/large/gregtech/gt.blockmachines/4166.png deleted file mode 100644 index 1c588ba515..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4166.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4167.png b/front/public/images/large/gregtech/gt.blockmachines/4167.png deleted file mode 100644 index f48045b9a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4167.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4168.png b/front/public/images/large/gregtech/gt.blockmachines/4168.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4168.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4169.png b/front/public/images/large/gregtech/gt.blockmachines/4169.png deleted file mode 100644 index 9f3ecc7346..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4169.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4170.png b/front/public/images/large/gregtech/gt.blockmachines/4170.png deleted file mode 100644 index 4ca29af5a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4170.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4171.png b/front/public/images/large/gregtech/gt.blockmachines/4171.png deleted file mode 100644 index aa667cc4ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4171.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4172.png b/front/public/images/large/gregtech/gt.blockmachines/4172.png deleted file mode 100644 index c30bb99a22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4172.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4173.png b/front/public/images/large/gregtech/gt.blockmachines/4173.png deleted file mode 100644 index adec291c8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4173.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4174.png b/front/public/images/large/gregtech/gt.blockmachines/4174.png deleted file mode 100644 index bee3c909fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4174.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4176.png b/front/public/images/large/gregtech/gt.blockmachines/4176.png deleted file mode 100644 index d068600c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4176.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4177.png b/front/public/images/large/gregtech/gt.blockmachines/4177.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4177.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4179.png b/front/public/images/large/gregtech/gt.blockmachines/4179.png deleted file mode 100644 index 49158a4cae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4179.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4180.png b/front/public/images/large/gregtech/gt.blockmachines/4180.png deleted file mode 100644 index 1f58f775b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4180.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4181.png b/front/public/images/large/gregtech/gt.blockmachines/4181.png deleted file mode 100644 index 4d02e4727d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4181.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4182.png b/front/public/images/large/gregtech/gt.blockmachines/4182.png deleted file mode 100644 index d45844f776..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4182.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4185.png b/front/public/images/large/gregtech/gt.blockmachines/4185.png deleted file mode 100644 index a044ec1de0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4185.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4186.png b/front/public/images/large/gregtech/gt.blockmachines/4186.png deleted file mode 100644 index 118c7b592a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4186.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4192.png b/front/public/images/large/gregtech/gt.blockmachines/4192.png deleted file mode 100644 index 1e3dc2430f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4192.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4193.png b/front/public/images/large/gregtech/gt.blockmachines/4193.png deleted file mode 100644 index 4bc1e3686c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4193.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4194.png b/front/public/images/large/gregtech/gt.blockmachines/4194.png deleted file mode 100644 index cbc03016ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4194.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4196.png b/front/public/images/large/gregtech/gt.blockmachines/4196.png deleted file mode 100644 index 94683fc7e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4196.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4197.png b/front/public/images/large/gregtech/gt.blockmachines/4197.png deleted file mode 100644 index f60b65dcca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4197.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4199.png b/front/public/images/large/gregtech/gt.blockmachines/4199.png deleted file mode 100644 index 173a5fd94a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4199.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/42.png b/front/public/images/large/gregtech/gt.blockmachines/42.png deleted file mode 100644 index 5d6569f3b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/42.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4207.png b/front/public/images/large/gregtech/gt.blockmachines/4207.png deleted file mode 100644 index 3d22e54511..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4208.png b/front/public/images/large/gregtech/gt.blockmachines/4208.png deleted file mode 100644 index 4a4760c27f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4225.png b/front/public/images/large/gregtech/gt.blockmachines/4225.png deleted file mode 100644 index ef6e4a3cdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4225.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4227.png b/front/public/images/large/gregtech/gt.blockmachines/4227.png deleted file mode 100644 index 6547bd09f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4227.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4230.png b/front/public/images/large/gregtech/gt.blockmachines/4230.png deleted file mode 100644 index 84ad9a6b02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4235.png b/front/public/images/large/gregtech/gt.blockmachines/4235.png deleted file mode 100644 index 8b6dbd10b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4235.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4237.png b/front/public/images/large/gregtech/gt.blockmachines/4237.png deleted file mode 100644 index 43a900eb42..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4237.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4239.png b/front/public/images/large/gregtech/gt.blockmachines/4239.png deleted file mode 100644 index ba6e441ed3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4239.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4297.png b/front/public/images/large/gregtech/gt.blockmachines/4297.png deleted file mode 100644 index b3a897bc17..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4297.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4298.png b/front/public/images/large/gregtech/gt.blockmachines/4298.png deleted file mode 100644 index 339e4ab164..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4298.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4299.png b/front/public/images/large/gregtech/gt.blockmachines/4299.png deleted file mode 100644 index eb13bc0325..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/43.png b/front/public/images/large/gregtech/gt.blockmachines/43.png deleted file mode 100644 index 656922ca6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/43.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4301.png b/front/public/images/large/gregtech/gt.blockmachines/4301.png deleted file mode 100644 index 9b4e570096..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4302.png b/front/public/images/large/gregtech/gt.blockmachines/4302.png deleted file mode 100644 index 685c545f2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4303.png b/front/public/images/large/gregtech/gt.blockmachines/4303.png deleted file mode 100644 index a69167507f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4396.png b/front/public/images/large/gregtech/gt.blockmachines/4396.png deleted file mode 100644 index 456e0b26c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4396.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4397.png b/front/public/images/large/gregtech/gt.blockmachines/4397.png deleted file mode 100644 index 9dc5197a11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4398.png b/front/public/images/large/gregtech/gt.blockmachines/4398.png deleted file mode 100644 index aaa915d6dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4399.png b/front/public/images/large/gregtech/gt.blockmachines/4399.png deleted file mode 100644 index 1d6a8db9a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/44.png b/front/public/images/large/gregtech/gt.blockmachines/44.png deleted file mode 100644 index ba5d207a7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/44.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4400.png b/front/public/images/large/gregtech/gt.blockmachines/4400.png deleted file mode 100644 index dd448618c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4401.png b/front/public/images/large/gregtech/gt.blockmachines/4401.png deleted file mode 100644 index 002609db80..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4402.png b/front/public/images/large/gregtech/gt.blockmachines/4402.png deleted file mode 100644 index d1438dec27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4403.png b/front/public/images/large/gregtech/gt.blockmachines/4403.png deleted file mode 100644 index dd448618c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4404.png b/front/public/images/large/gregtech/gt.blockmachines/4404.png deleted file mode 100644 index 15b2ea4385..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4405.png b/front/public/images/large/gregtech/gt.blockmachines/4405.png deleted file mode 100644 index b8a631447b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4406.png b/front/public/images/large/gregtech/gt.blockmachines/4406.png deleted file mode 100644 index 91df8b72c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4407.png b/front/public/images/large/gregtech/gt.blockmachines/4407.png deleted file mode 100644 index f70a266b0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4408.png b/front/public/images/large/gregtech/gt.blockmachines/4408.png deleted file mode 100644 index b822b16487..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4409.png b/front/public/images/large/gregtech/gt.blockmachines/4409.png deleted file mode 100644 index 8879c5bd9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4409.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/441.png b/front/public/images/large/gregtech/gt.blockmachines/441.png deleted file mode 100644 index a6f213e5cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/441.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4410.png b/front/public/images/large/gregtech/gt.blockmachines/4410.png deleted file mode 100644 index 8d5b9af050..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4410.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4411.png b/front/public/images/large/gregtech/gt.blockmachines/4411.png deleted file mode 100644 index be783f2238..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4411.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4412.png b/front/public/images/large/gregtech/gt.blockmachines/4412.png deleted file mode 100644 index 0fef46de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4412.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4413.png b/front/public/images/large/gregtech/gt.blockmachines/4413.png deleted file mode 100644 index 1f2ee37212..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4413.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4414.png b/front/public/images/large/gregtech/gt.blockmachines/4414.png deleted file mode 100644 index 9ac9ff3517..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4414.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4415.png b/front/public/images/large/gregtech/gt.blockmachines/4415.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4415.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4416.png b/front/public/images/large/gregtech/gt.blockmachines/4416.png deleted file mode 100644 index 590595de15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4416.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4417.png b/front/public/images/large/gregtech/gt.blockmachines/4417.png deleted file mode 100644 index 6fbbebb59b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4417.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4419.png b/front/public/images/large/gregtech/gt.blockmachines/4419.png deleted file mode 100644 index 93934568bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4419.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/442.png b/front/public/images/large/gregtech/gt.blockmachines/442.png deleted file mode 100644 index eb763ccc10..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/442.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4420.png b/front/public/images/large/gregtech/gt.blockmachines/4420.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4420.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4421.png b/front/public/images/large/gregtech/gt.blockmachines/4421.png deleted file mode 100644 index 6492be9502..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4421.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4422.png b/front/public/images/large/gregtech/gt.blockmachines/4422.png deleted file mode 100644 index a05459c875..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4422.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4423.png b/front/public/images/large/gregtech/gt.blockmachines/4423.png deleted file mode 100644 index 60ed14a6a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4423.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4424.png b/front/public/images/large/gregtech/gt.blockmachines/4424.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4424.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4425.png b/front/public/images/large/gregtech/gt.blockmachines/4425.png deleted file mode 100644 index f9ba8740aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4425.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4426.png b/front/public/images/large/gregtech/gt.blockmachines/4426.png deleted file mode 100644 index 474a3fde86..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4426.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4427.png b/front/public/images/large/gregtech/gt.blockmachines/4427.png deleted file mode 100644 index a84433c289..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4427.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4429.png b/front/public/images/large/gregtech/gt.blockmachines/4429.png deleted file mode 100644 index 42bed9e6a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4429.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/443.png b/front/public/images/large/gregtech/gt.blockmachines/443.png deleted file mode 100644 index ca86c38559..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/443.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4430.png b/front/public/images/large/gregtech/gt.blockmachines/4430.png deleted file mode 100644 index 2c6b6d5139..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4430.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4431.png b/front/public/images/large/gregtech/gt.blockmachines/4431.png deleted file mode 100644 index 824855b5ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4431.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4432.png b/front/public/images/large/gregtech/gt.blockmachines/4432.png deleted file mode 100644 index 3ea912d271..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4432.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4433.png b/front/public/images/large/gregtech/gt.blockmachines/4433.png deleted file mode 100644 index df4d11213f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4433.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4434.png b/front/public/images/large/gregtech/gt.blockmachines/4434.png deleted file mode 100644 index 4dcd61ffd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4434.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4435.png b/front/public/images/large/gregtech/gt.blockmachines/4435.png deleted file mode 100644 index fea017e102..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4435.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4436.png b/front/public/images/large/gregtech/gt.blockmachines/4436.png deleted file mode 100644 index 269410bcf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4436.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4437.png b/front/public/images/large/gregtech/gt.blockmachines/4437.png deleted file mode 100644 index 121ae29bd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4437.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4438.png b/front/public/images/large/gregtech/gt.blockmachines/4438.png deleted file mode 100644 index 5fe7f14512..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4438.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4439.png b/front/public/images/large/gregtech/gt.blockmachines/4439.png deleted file mode 100644 index a05c210bce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4439.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/444.png b/front/public/images/large/gregtech/gt.blockmachines/444.png deleted file mode 100644 index 24cc856b78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/444.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4440.png b/front/public/images/large/gregtech/gt.blockmachines/4440.png deleted file mode 100644 index 6105dc1fae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4440.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4441.png b/front/public/images/large/gregtech/gt.blockmachines/4441.png deleted file mode 100644 index b2f771c89c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4441.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4442.png b/front/public/images/large/gregtech/gt.blockmachines/4442.png deleted file mode 100644 index 944e602a4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4442.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4444.png b/front/public/images/large/gregtech/gt.blockmachines/4444.png deleted file mode 100644 index 4e270a1cb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4444.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4445.png b/front/public/images/large/gregtech/gt.blockmachines/4445.png deleted file mode 100644 index b8724081c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4445.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4446.png b/front/public/images/large/gregtech/gt.blockmachines/4446.png deleted file mode 100644 index 451c8d28d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4446.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4447.png b/front/public/images/large/gregtech/gt.blockmachines/4447.png deleted file mode 100644 index 078acb3982..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4447.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4448.png b/front/public/images/large/gregtech/gt.blockmachines/4448.png deleted file mode 100644 index 7614330c16..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4448.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4449.png b/front/public/images/large/gregtech/gt.blockmachines/4449.png deleted file mode 100644 index 4d3dcc07fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4449.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/445.png b/front/public/images/large/gregtech/gt.blockmachines/445.png deleted file mode 100644 index d21e13887a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/445.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4450.png b/front/public/images/large/gregtech/gt.blockmachines/4450.png deleted file mode 100644 index 173a5fd94a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4450.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4451.png b/front/public/images/large/gregtech/gt.blockmachines/4451.png deleted file mode 100644 index 002609db80..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4451.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4452.png b/front/public/images/large/gregtech/gt.blockmachines/4452.png deleted file mode 100644 index 2c6b6d5139..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4452.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4453.png b/front/public/images/large/gregtech/gt.blockmachines/4453.png deleted file mode 100644 index ab2611f310..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4453.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4454.png b/front/public/images/large/gregtech/gt.blockmachines/4454.png deleted file mode 100644 index be9e6f1f23..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4454.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4455.png b/front/public/images/large/gregtech/gt.blockmachines/4455.png deleted file mode 100644 index 7c8996f507..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4455.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4456.png b/front/public/images/large/gregtech/gt.blockmachines/4456.png deleted file mode 100644 index 5cac014baf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4456.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4457.png b/front/public/images/large/gregtech/gt.blockmachines/4457.png deleted file mode 100644 index 1f319ca533..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4457.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4458.png b/front/public/images/large/gregtech/gt.blockmachines/4458.png deleted file mode 100644 index 929b3eafcc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4458.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4459.png b/front/public/images/large/gregtech/gt.blockmachines/4459.png deleted file mode 100644 index 173a5fd94a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4459.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4460.png b/front/public/images/large/gregtech/gt.blockmachines/4460.png deleted file mode 100644 index 6bccd0d11b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4460.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4461.png b/front/public/images/large/gregtech/gt.blockmachines/4461.png deleted file mode 100644 index d15f503546..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4461.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4462.png b/front/public/images/large/gregtech/gt.blockmachines/4462.png deleted file mode 100644 index 9565575ca6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4462.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4463.png b/front/public/images/large/gregtech/gt.blockmachines/4463.png deleted file mode 100644 index 9aab2abc8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4463.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4464.png b/front/public/images/large/gregtech/gt.blockmachines/4464.png deleted file mode 100644 index a0f0c52c15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4464.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4465.png b/front/public/images/large/gregtech/gt.blockmachines/4465.png deleted file mode 100644 index b072278f3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4465.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4466.png b/front/public/images/large/gregtech/gt.blockmachines/4466.png deleted file mode 100644 index 1b674bda0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4466.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4467.png b/front/public/images/large/gregtech/gt.blockmachines/4467.png deleted file mode 100644 index ec09de8712..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4467.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4468.png b/front/public/images/large/gregtech/gt.blockmachines/4468.png deleted file mode 100644 index 56b0c95220..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4468.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4469.png b/front/public/images/large/gregtech/gt.blockmachines/4469.png deleted file mode 100644 index 19bdbcb267..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4469.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4470.png b/front/public/images/large/gregtech/gt.blockmachines/4470.png deleted file mode 100644 index 51d06387d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4474.png b/front/public/images/large/gregtech/gt.blockmachines/4474.png deleted file mode 100644 index d1ce08d4e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4474.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4475.png b/front/public/images/large/gregtech/gt.blockmachines/4475.png deleted file mode 100644 index f8d776c390..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4475.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4476.png b/front/public/images/large/gregtech/gt.blockmachines/4476.png deleted file mode 100644 index 961cb46560..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4476.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4477.png b/front/public/images/large/gregtech/gt.blockmachines/4477.png deleted file mode 100644 index a65a0a16f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4477.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4478.png b/front/public/images/large/gregtech/gt.blockmachines/4478.png deleted file mode 100644 index c80d1bee50..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4478.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4479.png b/front/public/images/large/gregtech/gt.blockmachines/4479.png deleted file mode 100644 index 6d804cb885..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4479.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4480.png b/front/public/images/large/gregtech/gt.blockmachines/4480.png deleted file mode 100644 index aec05dd81f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4480.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4481.png b/front/public/images/large/gregtech/gt.blockmachines/4481.png deleted file mode 100644 index 0cba8e6194..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4481.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4482.png b/front/public/images/large/gregtech/gt.blockmachines/4482.png deleted file mode 100644 index 353083ebc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4482.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4483.png b/front/public/images/large/gregtech/gt.blockmachines/4483.png deleted file mode 100644 index d5235b8e32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4483.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4484.png b/front/public/images/large/gregtech/gt.blockmachines/4484.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4484.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4485.png b/front/public/images/large/gregtech/gt.blockmachines/4485.png deleted file mode 100644 index 2dc11ebcaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4486.png b/front/public/images/large/gregtech/gt.blockmachines/4486.png deleted file mode 100644 index 74b2dbed75..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4486.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4487.png b/front/public/images/large/gregtech/gt.blockmachines/4487.png deleted file mode 100644 index 6a272d711f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4487.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4488.png b/front/public/images/large/gregtech/gt.blockmachines/4488.png deleted file mode 100644 index 0eb10295a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4489.png b/front/public/images/large/gregtech/gt.blockmachines/4489.png deleted file mode 100644 index 5bfa5b9423..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4490.png b/front/public/images/large/gregtech/gt.blockmachines/4490.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4490.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4491.png b/front/public/images/large/gregtech/gt.blockmachines/4491.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4491.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4493.png b/front/public/images/large/gregtech/gt.blockmachines/4493.png deleted file mode 100644 index 903e3cf6af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4493.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4494.png b/front/public/images/large/gregtech/gt.blockmachines/4494.png deleted file mode 100644 index 22939e52b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4494.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4495.png b/front/public/images/large/gregtech/gt.blockmachines/4495.png deleted file mode 100644 index a2db5c9af5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4495.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4496.png b/front/public/images/large/gregtech/gt.blockmachines/4496.png deleted file mode 100644 index 8123b1c113..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4496.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4497.png b/front/public/images/large/gregtech/gt.blockmachines/4497.png deleted file mode 100644 index 475073c4d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4497.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4498.png b/front/public/images/large/gregtech/gt.blockmachines/4498.png deleted file mode 100644 index 80d3eaaa72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4498.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4499.png b/front/public/images/large/gregtech/gt.blockmachines/4499.png deleted file mode 100644 index 2f9e076724..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4499.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/45.png b/front/public/images/large/gregtech/gt.blockmachines/45.png deleted file mode 100644 index 85251bdfb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/45.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4500.png b/front/public/images/large/gregtech/gt.blockmachines/4500.png deleted file mode 100644 index 884b63ddc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4501.png b/front/public/images/large/gregtech/gt.blockmachines/4501.png deleted file mode 100644 index b88f5c0bce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4502.png b/front/public/images/large/gregtech/gt.blockmachines/4502.png deleted file mode 100644 index 6123ea7e7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4503.png b/front/public/images/large/gregtech/gt.blockmachines/4503.png deleted file mode 100644 index ec5b557831..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4504.png b/front/public/images/large/gregtech/gt.blockmachines/4504.png deleted file mode 100644 index b31ac5f827..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4566.png b/front/public/images/large/gregtech/gt.blockmachines/4566.png deleted file mode 100644 index 676b94ddfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4566.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4567.png b/front/public/images/large/gregtech/gt.blockmachines/4567.png deleted file mode 100644 index 7b9a5b21fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4567.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4568.png b/front/public/images/large/gregtech/gt.blockmachines/4568.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4568.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4569.png b/front/public/images/large/gregtech/gt.blockmachines/4569.png deleted file mode 100644 index 2c6b6d5139..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4569.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4581.png b/front/public/images/large/gregtech/gt.blockmachines/4581.png deleted file mode 100644 index 5b4cc61e1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4584.png b/front/public/images/large/gregtech/gt.blockmachines/4584.png deleted file mode 100644 index 1972f9192f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4584.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4585.png b/front/public/images/large/gregtech/gt.blockmachines/4585.png deleted file mode 100644 index ae57cbad73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/46.png b/front/public/images/large/gregtech/gt.blockmachines/46.png deleted file mode 100644 index 3abc93da92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/46.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/461.png b/front/public/images/large/gregtech/gt.blockmachines/461.png deleted file mode 100644 index 0812a4b32b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/461.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4617.png b/front/public/images/large/gregtech/gt.blockmachines/4617.png deleted file mode 100644 index 9ac9ff3517..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4617.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/462.png b/front/public/images/large/gregtech/gt.blockmachines/462.png deleted file mode 100644 index 4ca5c9a838..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/462.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4625.png b/front/public/images/large/gregtech/gt.blockmachines/4625.png deleted file mode 100644 index d37ac8cdc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4625.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/463.png b/front/public/images/large/gregtech/gt.blockmachines/463.png deleted file mode 100644 index 8337a69ad8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/463.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/464.png b/front/public/images/large/gregtech/gt.blockmachines/464.png deleted file mode 100644 index 7e222d6b16..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/464.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/465.png b/front/public/images/large/gregtech/gt.blockmachines/465.png deleted file mode 100644 index c180bb92f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/465.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4672.png b/front/public/images/large/gregtech/gt.blockmachines/4672.png deleted file mode 100644 index 55b72938a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4672.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4677.png b/front/public/images/large/gregtech/gt.blockmachines/4677.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4678.png b/front/public/images/large/gregtech/gt.blockmachines/4678.png deleted file mode 100644 index bb47bb674f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4679.png b/front/public/images/large/gregtech/gt.blockmachines/4679.png deleted file mode 100644 index e3201788dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4679.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4681.png b/front/public/images/large/gregtech/gt.blockmachines/4681.png deleted file mode 100644 index 57dd1a1b61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4681.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4682.png b/front/public/images/large/gregtech/gt.blockmachines/4682.png deleted file mode 100644 index ed907774c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4682.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4684.png b/front/public/images/large/gregtech/gt.blockmachines/4684.png deleted file mode 100644 index 2f22d28d94..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4684.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4695.png b/front/public/images/large/gregtech/gt.blockmachines/4695.png deleted file mode 100644 index d75b329b2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4695.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/47.png b/front/public/images/large/gregtech/gt.blockmachines/47.png deleted file mode 100644 index 78e190cc61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/47.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4706.png b/front/public/images/large/gregtech/gt.blockmachines/4706.png deleted file mode 100644 index f93ec4ca38..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4706.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4707.png b/front/public/images/large/gregtech/gt.blockmachines/4707.png deleted file mode 100644 index c8d6a762d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4707.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4709.png b/front/public/images/large/gregtech/gt.blockmachines/4709.png deleted file mode 100644 index b7cec45b62..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4709.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4727.png b/front/public/images/large/gregtech/gt.blockmachines/4727.png deleted file mode 100644 index d6acae8731..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4727.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4731.png b/front/public/images/large/gregtech/gt.blockmachines/4731.png deleted file mode 100644 index 03c508ef8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4731.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4732.png b/front/public/images/large/gregtech/gt.blockmachines/4732.png deleted file mode 100644 index 059cadea1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4732.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4745.png b/front/public/images/large/gregtech/gt.blockmachines/4745.png deleted file mode 100644 index 9fbf783e4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/48.png b/front/public/images/large/gregtech/gt.blockmachines/48.png deleted file mode 100644 index d12892ecf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/48.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/481.png b/front/public/images/large/gregtech/gt.blockmachines/481.png deleted file mode 100644 index 1426381883..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/481.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/482.png b/front/public/images/large/gregtech/gt.blockmachines/482.png deleted file mode 100644 index 577c455071..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/482.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/483.png b/front/public/images/large/gregtech/gt.blockmachines/483.png deleted file mode 100644 index b62aceeb32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/483.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/484.png b/front/public/images/large/gregtech/gt.blockmachines/484.png deleted file mode 100644 index 59886eac0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/484.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/485.png b/front/public/images/large/gregtech/gt.blockmachines/485.png deleted file mode 100644 index dfd0d1dda9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4861.png b/front/public/images/large/gregtech/gt.blockmachines/4861.png deleted file mode 100644 index 14574b5d69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4866.png b/front/public/images/large/gregtech/gt.blockmachines/4866.png deleted file mode 100644 index 89391615fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4866.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4868.png b/front/public/images/large/gregtech/gt.blockmachines/4868.png deleted file mode 100644 index bf4abec4c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/49.png b/front/public/images/large/gregtech/gt.blockmachines/49.png deleted file mode 100644 index ea1103a8f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/49.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4900.png b/front/public/images/large/gregtech/gt.blockmachines/4900.png deleted file mode 100644 index 3f98e16386..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4905.png b/front/public/images/large/gregtech/gt.blockmachines/4905.png deleted file mode 100644 index a3bf66466d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/491.png b/front/public/images/large/gregtech/gt.blockmachines/491.png deleted file mode 100644 index 2b43b5803a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/491.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/492.png b/front/public/images/large/gregtech/gt.blockmachines/492.png deleted file mode 100644 index 462fcf8005..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/492.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4925.png b/front/public/images/large/gregtech/gt.blockmachines/4925.png deleted file mode 100644 index 3f51a8d05e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/493.png b/front/public/images/large/gregtech/gt.blockmachines/493.png deleted file mode 100644 index f0eb907d7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/493.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/494.png b/front/public/images/large/gregtech/gt.blockmachines/494.png deleted file mode 100644 index 48f95e5369..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/494.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/495.png b/front/public/images/large/gregtech/gt.blockmachines/495.png deleted file mode 100644 index e2a91f23c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/495.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4952.png b/front/public/images/large/gregtech/gt.blockmachines/4952.png deleted file mode 100644 index 84209464dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4964.png b/front/public/images/large/gregtech/gt.blockmachines/4964.png deleted file mode 100644 index b34b677255..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4964.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4970.png b/front/public/images/large/gregtech/gt.blockmachines/4970.png deleted file mode 100644 index 173a5fd94a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4976.png b/front/public/images/large/gregtech/gt.blockmachines/4976.png deleted file mode 100644 index ed907774c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4980.png b/front/public/images/large/gregtech/gt.blockmachines/4980.png deleted file mode 100644 index 6492be9502..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/4985.png b/front/public/images/large/gregtech/gt.blockmachines/4985.png deleted file mode 100644 index cdef2f1d72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/4985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/50.png b/front/public/images/large/gregtech/gt.blockmachines/50.png deleted file mode 100644 index 57c1b51cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/50.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5008.png b/front/public/images/large/gregtech/gt.blockmachines/5008.png deleted file mode 100644 index 7699b67f82..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5009.png b/front/public/images/large/gregtech/gt.blockmachines/5009.png deleted file mode 100644 index 4e270a1cb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5047.png b/front/public/images/large/gregtech/gt.blockmachines/5047.png deleted file mode 100644 index 09f92434fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5048.png b/front/public/images/large/gregtech/gt.blockmachines/5048.png deleted file mode 100644 index dbc1184dbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5052.png b/front/public/images/large/gregtech/gt.blockmachines/5052.png deleted file mode 100644 index 07f87f2628..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5062.png b/front/public/images/large/gregtech/gt.blockmachines/5062.png deleted file mode 100644 index 2730cb0444..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5066.png b/front/public/images/large/gregtech/gt.blockmachines/5066.png deleted file mode 100644 index d057398adc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5070.png b/front/public/images/large/gregtech/gt.blockmachines/5070.png deleted file mode 100644 index 6a82336d8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5071.png b/front/public/images/large/gregtech/gt.blockmachines/5071.png deleted file mode 100644 index 017588f3d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5072.png b/front/public/images/large/gregtech/gt.blockmachines/5072.png deleted file mode 100644 index 19592277a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5073.png b/front/public/images/large/gregtech/gt.blockmachines/5073.png deleted file mode 100644 index 70e9aaca7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5074.png b/front/public/images/large/gregtech/gt.blockmachines/5074.png deleted file mode 100644 index 5946fc230a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5075.png b/front/public/images/large/gregtech/gt.blockmachines/5075.png deleted file mode 100644 index effe3a680f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5076.png b/front/public/images/large/gregtech/gt.blockmachines/5076.png deleted file mode 100644 index 6a5c1309ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5077.png b/front/public/images/large/gregtech/gt.blockmachines/5077.png deleted file mode 100644 index 796574c922..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5078.png b/front/public/images/large/gregtech/gt.blockmachines/5078.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5080.png b/front/public/images/large/gregtech/gt.blockmachines/5080.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5081.png b/front/public/images/large/gregtech/gt.blockmachines/5081.png deleted file mode 100644 index 30850578d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5082.png b/front/public/images/large/gregtech/gt.blockmachines/5082.png deleted file mode 100644 index a3780cda59..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5082.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5083.png b/front/public/images/large/gregtech/gt.blockmachines/5083.png deleted file mode 100644 index a866dc1359..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5084.png b/front/public/images/large/gregtech/gt.blockmachines/5084.png deleted file mode 100644 index d8f68b70f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5085.png b/front/public/images/large/gregtech/gt.blockmachines/5085.png deleted file mode 100644 index 65163b017e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5086.png b/front/public/images/large/gregtech/gt.blockmachines/5086.png deleted file mode 100644 index 4eb38d1e1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5087.png b/front/public/images/large/gregtech/gt.blockmachines/5087.png deleted file mode 100644 index 1371ebaa91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5087.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5088.png b/front/public/images/large/gregtech/gt.blockmachines/5088.png deleted file mode 100644 index e29c206e90..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5088.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/51.png b/front/public/images/large/gregtech/gt.blockmachines/51.png deleted file mode 100644 index f33437ea45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/51.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5101.png b/front/public/images/large/gregtech/gt.blockmachines/5101.png deleted file mode 100644 index 463b8c18dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5102.png b/front/public/images/large/gregtech/gt.blockmachines/5102.png deleted file mode 100644 index 16356e1ef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5103.png b/front/public/images/large/gregtech/gt.blockmachines/5103.png deleted file mode 100644 index 3d36718494..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5110.png b/front/public/images/large/gregtech/gt.blockmachines/5110.png deleted file mode 100644 index 10693ef2ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5111.png b/front/public/images/large/gregtech/gt.blockmachines/5111.png deleted file mode 100644 index 27cbdd1429..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5112.png b/front/public/images/large/gregtech/gt.blockmachines/5112.png deleted file mode 100644 index c80dfbb4f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5113.png b/front/public/images/large/gregtech/gt.blockmachines/5113.png deleted file mode 100644 index a981301f51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5113.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5114.png b/front/public/images/large/gregtech/gt.blockmachines/5114.png deleted file mode 100644 index 8ff648ec93..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5115.png b/front/public/images/large/gregtech/gt.blockmachines/5115.png deleted file mode 100644 index 2995b548f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5115.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5116.png b/front/public/images/large/gregtech/gt.blockmachines/5116.png deleted file mode 100644 index d6bcbe51c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5116.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5120.png b/front/public/images/large/gregtech/gt.blockmachines/5120.png deleted file mode 100644 index 4c7989f595..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5120.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5121.png b/front/public/images/large/gregtech/gt.blockmachines/5121.png deleted file mode 100644 index 8ea4d95468..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5121.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5122.png b/front/public/images/large/gregtech/gt.blockmachines/5122.png deleted file mode 100644 index 639844ed3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5122.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5123.png b/front/public/images/large/gregtech/gt.blockmachines/5123.png deleted file mode 100644 index b8f70bb1f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5123.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5124.png b/front/public/images/large/gregtech/gt.blockmachines/5124.png deleted file mode 100644 index 623f49e6d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5124.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5125.png b/front/public/images/large/gregtech/gt.blockmachines/5125.png deleted file mode 100644 index e17eb8eff8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5125.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5126.png b/front/public/images/large/gregtech/gt.blockmachines/5126.png deleted file mode 100644 index 0c3acf3a5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5126.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5130.png b/front/public/images/large/gregtech/gt.blockmachines/5130.png deleted file mode 100644 index 186de598ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5131.png b/front/public/images/large/gregtech/gt.blockmachines/5131.png deleted file mode 100644 index 09336f5b99..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5132.png b/front/public/images/large/gregtech/gt.blockmachines/5132.png deleted file mode 100644 index a028690ec0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5132.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5133.png b/front/public/images/large/gregtech/gt.blockmachines/5133.png deleted file mode 100644 index 65257e7029..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5133.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5134.png b/front/public/images/large/gregtech/gt.blockmachines/5134.png deleted file mode 100644 index 574c5ec171..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5135.png b/front/public/images/large/gregtech/gt.blockmachines/5135.png deleted file mode 100644 index 183af7d2d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5135.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5136.png b/front/public/images/large/gregtech/gt.blockmachines/5136.png deleted file mode 100644 index 8854c5edec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5136.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5140.png b/front/public/images/large/gregtech/gt.blockmachines/5140.png deleted file mode 100644 index 9f3e93511e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5140.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5141.png b/front/public/images/large/gregtech/gt.blockmachines/5141.png deleted file mode 100644 index a7589b3270..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5142.png b/front/public/images/large/gregtech/gt.blockmachines/5142.png deleted file mode 100644 index 5cf0cce1db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5142.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5143.png b/front/public/images/large/gregtech/gt.blockmachines/5143.png deleted file mode 100644 index a312913d35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5144.png b/front/public/images/large/gregtech/gt.blockmachines/5144.png deleted file mode 100644 index ac4c4cf774..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5145.png b/front/public/images/large/gregtech/gt.blockmachines/5145.png deleted file mode 100644 index 42d9c1cf82..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5145.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5146.png b/front/public/images/large/gregtech/gt.blockmachines/5146.png deleted file mode 100644 index 60c9bb4996..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5146.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5150.png b/front/public/images/large/gregtech/gt.blockmachines/5150.png deleted file mode 100644 index aab03fab7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5151.png b/front/public/images/large/gregtech/gt.blockmachines/5151.png deleted file mode 100644 index 27ddd85de1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5151.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5152.png b/front/public/images/large/gregtech/gt.blockmachines/5152.png deleted file mode 100644 index f11813080a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5152.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5153.png b/front/public/images/large/gregtech/gt.blockmachines/5153.png deleted file mode 100644 index 50862751ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5153.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5154.png b/front/public/images/large/gregtech/gt.blockmachines/5154.png deleted file mode 100644 index 0ae50a49f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5154.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5155.png b/front/public/images/large/gregtech/gt.blockmachines/5155.png deleted file mode 100644 index 9697893d22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5155.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5156.png b/front/public/images/large/gregtech/gt.blockmachines/5156.png deleted file mode 100644 index 57e1ea01f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5156.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5160.png b/front/public/images/large/gregtech/gt.blockmachines/5160.png deleted file mode 100644 index c155c251fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5160.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5161.png b/front/public/images/large/gregtech/gt.blockmachines/5161.png deleted file mode 100644 index 5a3dcb6a6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5161.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5162.png b/front/public/images/large/gregtech/gt.blockmachines/5162.png deleted file mode 100644 index a140d817fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5162.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5163.png b/front/public/images/large/gregtech/gt.blockmachines/5163.png deleted file mode 100644 index aaf81697e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5163.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5164.png b/front/public/images/large/gregtech/gt.blockmachines/5164.png deleted file mode 100644 index 2cf59a3c3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5164.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5165.png b/front/public/images/large/gregtech/gt.blockmachines/5165.png deleted file mode 100644 index d4a32f1bf0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5165.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5166.png b/front/public/images/large/gregtech/gt.blockmachines/5166.png deleted file mode 100644 index 2db3958f78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5166.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5167.png b/front/public/images/large/gregtech/gt.blockmachines/5167.png deleted file mode 100644 index b32fa9f1bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5167.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5170.png b/front/public/images/large/gregtech/gt.blockmachines/5170.png deleted file mode 100644 index 188e690f71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5170.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5171.png b/front/public/images/large/gregtech/gt.blockmachines/5171.png deleted file mode 100644 index ba27c6de84..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5171.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5172.png b/front/public/images/large/gregtech/gt.blockmachines/5172.png deleted file mode 100644 index f1d4eda418..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5172.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5173.png b/front/public/images/large/gregtech/gt.blockmachines/5173.png deleted file mode 100644 index e30d6af44e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5173.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5174.png b/front/public/images/large/gregtech/gt.blockmachines/5174.png deleted file mode 100644 index 1586b3e4ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5174.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5175.png b/front/public/images/large/gregtech/gt.blockmachines/5175.png deleted file mode 100644 index 8712e75940..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5175.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5176.png b/front/public/images/large/gregtech/gt.blockmachines/5176.png deleted file mode 100644 index aa376d1c74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5176.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5180.png b/front/public/images/large/gregtech/gt.blockmachines/5180.png deleted file mode 100644 index 7e379c44b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5180.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5181.png b/front/public/images/large/gregtech/gt.blockmachines/5181.png deleted file mode 100644 index 25dc3fdc23..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5181.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5182.png b/front/public/images/large/gregtech/gt.blockmachines/5182.png deleted file mode 100644 index ce723a142a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5182.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5183.png b/front/public/images/large/gregtech/gt.blockmachines/5183.png deleted file mode 100644 index 03788c5422..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5183.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5184.png b/front/public/images/large/gregtech/gt.blockmachines/5184.png deleted file mode 100644 index fc6e2e5f85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5184.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5185.png b/front/public/images/large/gregtech/gt.blockmachines/5185.png deleted file mode 100644 index bbc22e817b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5185.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5186.png b/front/public/images/large/gregtech/gt.blockmachines/5186.png deleted file mode 100644 index 36910407c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5186.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5190.png b/front/public/images/large/gregtech/gt.blockmachines/5190.png deleted file mode 100644 index 2ac4236fa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5190.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5191.png b/front/public/images/large/gregtech/gt.blockmachines/5191.png deleted file mode 100644 index 148b5a5d23..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5191.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5192.png b/front/public/images/large/gregtech/gt.blockmachines/5192.png deleted file mode 100644 index 6d12632b0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5192.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5193.png b/front/public/images/large/gregtech/gt.blockmachines/5193.png deleted file mode 100644 index c5bb64cab0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5193.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5194.png b/front/public/images/large/gregtech/gt.blockmachines/5194.png deleted file mode 100644 index c4fc2ebecd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5194.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5195.png b/front/public/images/large/gregtech/gt.blockmachines/5195.png deleted file mode 100644 index 8d911abba8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5195.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5196.png b/front/public/images/large/gregtech/gt.blockmachines/5196.png deleted file mode 100644 index 1edc621ddd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5196.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/52.png b/front/public/images/large/gregtech/gt.blockmachines/52.png deleted file mode 100644 index ba59719fe6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/52.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5200.png b/front/public/images/large/gregtech/gt.blockmachines/5200.png deleted file mode 100644 index 0e52e605fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5201.png b/front/public/images/large/gregtech/gt.blockmachines/5201.png deleted file mode 100644 index 84dca5a137..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5202.png b/front/public/images/large/gregtech/gt.blockmachines/5202.png deleted file mode 100644 index a0399be833..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5203.png b/front/public/images/large/gregtech/gt.blockmachines/5203.png deleted file mode 100644 index 6d7de9bb51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5204.png b/front/public/images/large/gregtech/gt.blockmachines/5204.png deleted file mode 100644 index fa14b8aabc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5205.png b/front/public/images/large/gregtech/gt.blockmachines/5205.png deleted file mode 100644 index 5bf6791e0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5206.png b/front/public/images/large/gregtech/gt.blockmachines/5206.png deleted file mode 100644 index d5fe747219..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5210.png b/front/public/images/large/gregtech/gt.blockmachines/5210.png deleted file mode 100644 index e6055741a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5210.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5211.png b/front/public/images/large/gregtech/gt.blockmachines/5211.png deleted file mode 100644 index df845a4da4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5211.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5212.png b/front/public/images/large/gregtech/gt.blockmachines/5212.png deleted file mode 100644 index 5d8175b3c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5212.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5213.png b/front/public/images/large/gregtech/gt.blockmachines/5213.png deleted file mode 100644 index eadb923915..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5213.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5214.png b/front/public/images/large/gregtech/gt.blockmachines/5214.png deleted file mode 100644 index a31a52e4bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5214.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5215.png b/front/public/images/large/gregtech/gt.blockmachines/5215.png deleted file mode 100644 index 26ff504842..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5215.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5216.png b/front/public/images/large/gregtech/gt.blockmachines/5216.png deleted file mode 100644 index e6a882e226..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5216.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5220.png b/front/public/images/large/gregtech/gt.blockmachines/5220.png deleted file mode 100644 index e6055741a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5220.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5221.png b/front/public/images/large/gregtech/gt.blockmachines/5221.png deleted file mode 100644 index df845a4da4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5221.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5222.png b/front/public/images/large/gregtech/gt.blockmachines/5222.png deleted file mode 100644 index 5d8175b3c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5222.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5223.png b/front/public/images/large/gregtech/gt.blockmachines/5223.png deleted file mode 100644 index eadb923915..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5223.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5224.png b/front/public/images/large/gregtech/gt.blockmachines/5224.png deleted file mode 100644 index a31a52e4bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5224.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5225.png b/front/public/images/large/gregtech/gt.blockmachines/5225.png deleted file mode 100644 index 26ff504842..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5225.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5226.png b/front/public/images/large/gregtech/gt.blockmachines/5226.png deleted file mode 100644 index e6a882e226..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5226.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5230.png b/front/public/images/large/gregtech/gt.blockmachines/5230.png deleted file mode 100644 index 1b7688c37f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5231.png b/front/public/images/large/gregtech/gt.blockmachines/5231.png deleted file mode 100644 index 6bcbe2cee4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5231.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5232.png b/front/public/images/large/gregtech/gt.blockmachines/5232.png deleted file mode 100644 index 084b6d6b36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5232.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5233.png b/front/public/images/large/gregtech/gt.blockmachines/5233.png deleted file mode 100644 index d3ca23e1b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5233.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5234.png b/front/public/images/large/gregtech/gt.blockmachines/5234.png deleted file mode 100644 index f40fe87fba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5234.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5235.png b/front/public/images/large/gregtech/gt.blockmachines/5235.png deleted file mode 100644 index b2e9e98817..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5235.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5236.png b/front/public/images/large/gregtech/gt.blockmachines/5236.png deleted file mode 100644 index 60172edf9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5236.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5240.png b/front/public/images/large/gregtech/gt.blockmachines/5240.png deleted file mode 100644 index dd7458436e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5240.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5241.png b/front/public/images/large/gregtech/gt.blockmachines/5241.png deleted file mode 100644 index 48d98274c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5241.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5242.png b/front/public/images/large/gregtech/gt.blockmachines/5242.png deleted file mode 100644 index b0d772ae50..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5242.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5243.png b/front/public/images/large/gregtech/gt.blockmachines/5243.png deleted file mode 100644 index b0e5a45280..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5243.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5244.png b/front/public/images/large/gregtech/gt.blockmachines/5244.png deleted file mode 100644 index 01a7ddef8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5244.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5245.png b/front/public/images/large/gregtech/gt.blockmachines/5245.png deleted file mode 100644 index f30995ba67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5245.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5246.png b/front/public/images/large/gregtech/gt.blockmachines/5246.png deleted file mode 100644 index 8ce6e07ca8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5246.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5250.png b/front/public/images/large/gregtech/gt.blockmachines/5250.png deleted file mode 100644 index 94e1b3e8a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5250.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5251.png b/front/public/images/large/gregtech/gt.blockmachines/5251.png deleted file mode 100644 index 5c10b210c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5251.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5252.png b/front/public/images/large/gregtech/gt.blockmachines/5252.png deleted file mode 100644 index c8598b106f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5252.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5253.png b/front/public/images/large/gregtech/gt.blockmachines/5253.png deleted file mode 100644 index 6fad3ad2cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5253.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5254.png b/front/public/images/large/gregtech/gt.blockmachines/5254.png deleted file mode 100644 index 64a3f7f3d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5254.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5255.png b/front/public/images/large/gregtech/gt.blockmachines/5255.png deleted file mode 100644 index fbc5992e15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5255.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5256.png b/front/public/images/large/gregtech/gt.blockmachines/5256.png deleted file mode 100644 index e66bc62f18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5256.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5260.png b/front/public/images/large/gregtech/gt.blockmachines/5260.png deleted file mode 100644 index d43a06277e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5260.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5261.png b/front/public/images/large/gregtech/gt.blockmachines/5261.png deleted file mode 100644 index 0ae80a74e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5261.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5262.png b/front/public/images/large/gregtech/gt.blockmachines/5262.png deleted file mode 100644 index 7fa2d81492..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5262.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5263.png b/front/public/images/large/gregtech/gt.blockmachines/5263.png deleted file mode 100644 index 85f912d99d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5263.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5264.png b/front/public/images/large/gregtech/gt.blockmachines/5264.png deleted file mode 100644 index 0609940f13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5264.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5265.png b/front/public/images/large/gregtech/gt.blockmachines/5265.png deleted file mode 100644 index 3d97be7bd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5265.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5266.png b/front/public/images/large/gregtech/gt.blockmachines/5266.png deleted file mode 100644 index 75c789d0f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5266.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5270.png b/front/public/images/large/gregtech/gt.blockmachines/5270.png deleted file mode 100644 index 1474ec0091..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5270.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5271.png b/front/public/images/large/gregtech/gt.blockmachines/5271.png deleted file mode 100644 index 14bc002d7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5271.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5280.png b/front/public/images/large/gregtech/gt.blockmachines/5280.png deleted file mode 100644 index b91e402a5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5280.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5281.png b/front/public/images/large/gregtech/gt.blockmachines/5281.png deleted file mode 100644 index 21e9e23498..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5281.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5282.png b/front/public/images/large/gregtech/gt.blockmachines/5282.png deleted file mode 100644 index d0fa32e713..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5282.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5283.png b/front/public/images/large/gregtech/gt.blockmachines/5283.png deleted file mode 100644 index 8ac75c4a86..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5283.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5284.png b/front/public/images/large/gregtech/gt.blockmachines/5284.png deleted file mode 100644 index d155048050..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5284.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5290.png b/front/public/images/large/gregtech/gt.blockmachines/5290.png deleted file mode 100644 index 9880f4792d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5290.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5291.png b/front/public/images/large/gregtech/gt.blockmachines/5291.png deleted file mode 100644 index 01cb3573da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5291.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/53.png b/front/public/images/large/gregtech/gt.blockmachines/53.png deleted file mode 100644 index e2d86a1588..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/53.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5300.png b/front/public/images/large/gregtech/gt.blockmachines/5300.png deleted file mode 100644 index 4deec11bd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5301.png b/front/public/images/large/gregtech/gt.blockmachines/5301.png deleted file mode 100644 index 18f0f63fc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5302.png b/front/public/images/large/gregtech/gt.blockmachines/5302.png deleted file mode 100644 index 8fe31b4464..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5303.png b/front/public/images/large/gregtech/gt.blockmachines/5303.png deleted file mode 100644 index d321526e88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5304.png b/front/public/images/large/gregtech/gt.blockmachines/5304.png deleted file mode 100644 index a79b895c0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5305.png b/front/public/images/large/gregtech/gt.blockmachines/5305.png deleted file mode 100644 index 653521cfe5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5306.png b/front/public/images/large/gregtech/gt.blockmachines/5306.png deleted file mode 100644 index 4c10ee919c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5310.png b/front/public/images/large/gregtech/gt.blockmachines/5310.png deleted file mode 100644 index 0e52e605fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5311.png b/front/public/images/large/gregtech/gt.blockmachines/5311.png deleted file mode 100644 index 84dca5a137..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5312.png b/front/public/images/large/gregtech/gt.blockmachines/5312.png deleted file mode 100644 index a0399be833..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5313.png b/front/public/images/large/gregtech/gt.blockmachines/5313.png deleted file mode 100644 index 6d7de9bb51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5314.png b/front/public/images/large/gregtech/gt.blockmachines/5314.png deleted file mode 100644 index fa14b8aabc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5315.png b/front/public/images/large/gregtech/gt.blockmachines/5315.png deleted file mode 100644 index 5bf6791e0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5316.png b/front/public/images/large/gregtech/gt.blockmachines/5316.png deleted file mode 100644 index d5fe747219..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/54.png b/front/public/images/large/gregtech/gt.blockmachines/54.png deleted file mode 100644 index e267f04262..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/54.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/55.png b/front/public/images/large/gregtech/gt.blockmachines/55.png deleted file mode 100644 index fbf3d017b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/55.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/56.png b/front/public/images/large/gregtech/gt.blockmachines/56.png deleted file mode 100644 index fddcdd8e92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/56.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5602.png b/front/public/images/large/gregtech/gt.blockmachines/5602.png deleted file mode 100644 index a9d2d9d704..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5602.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5603.png b/front/public/images/large/gregtech/gt.blockmachines/5603.png deleted file mode 100644 index 04f3270a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5603.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5604.png b/front/public/images/large/gregtech/gt.blockmachines/5604.png deleted file mode 100644 index 53a0c8495d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5604.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5605.png b/front/public/images/large/gregtech/gt.blockmachines/5605.png deleted file mode 100644 index 1c25c92cdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5605.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5606.png b/front/public/images/large/gregtech/gt.blockmachines/5606.png deleted file mode 100644 index b59534be29..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5606.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5607.png b/front/public/images/large/gregtech/gt.blockmachines/5607.png deleted file mode 100644 index d3741ce2df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5612.png b/front/public/images/large/gregtech/gt.blockmachines/5612.png deleted file mode 100644 index 2dd43ba0b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5612.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5613.png b/front/public/images/large/gregtech/gt.blockmachines/5613.png deleted file mode 100644 index 1fbb532ce3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5614.png b/front/public/images/large/gregtech/gt.blockmachines/5614.png deleted file mode 100644 index 75d8e0f3a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5614.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5615.png b/front/public/images/large/gregtech/gt.blockmachines/5615.png deleted file mode 100644 index ecfcd628a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5615.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5616.png b/front/public/images/large/gregtech/gt.blockmachines/5616.png deleted file mode 100644 index 828368199e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5616.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5617.png b/front/public/images/large/gregtech/gt.blockmachines/5617.png deleted file mode 100644 index 76574f2be1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5617.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5622.png b/front/public/images/large/gregtech/gt.blockmachines/5622.png deleted file mode 100644 index 5eb21a4b7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5622.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5623.png b/front/public/images/large/gregtech/gt.blockmachines/5623.png deleted file mode 100644 index fe51f8f88e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5623.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5624.png b/front/public/images/large/gregtech/gt.blockmachines/5624.png deleted file mode 100644 index d99b84c932..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5624.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5625.png b/front/public/images/large/gregtech/gt.blockmachines/5625.png deleted file mode 100644 index e0844b17b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5625.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5626.png b/front/public/images/large/gregtech/gt.blockmachines/5626.png deleted file mode 100644 index 7a86a16bf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5626.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5627.png b/front/public/images/large/gregtech/gt.blockmachines/5627.png deleted file mode 100644 index ae8e13bad1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5627.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5632.png b/front/public/images/large/gregtech/gt.blockmachines/5632.png deleted file mode 100644 index ebccb07483..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5632.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5633.png b/front/public/images/large/gregtech/gt.blockmachines/5633.png deleted file mode 100644 index cb2c8b6b4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5633.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5634.png b/front/public/images/large/gregtech/gt.blockmachines/5634.png deleted file mode 100644 index 8933a2b74f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5634.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5635.png b/front/public/images/large/gregtech/gt.blockmachines/5635.png deleted file mode 100644 index 5a1f3a1eed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5636.png b/front/public/images/large/gregtech/gt.blockmachines/5636.png deleted file mode 100644 index dc7d1cdb90..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5637.png b/front/public/images/large/gregtech/gt.blockmachines/5637.png deleted file mode 100644 index 0ef039fbef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5637.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5680.png b/front/public/images/large/gregtech/gt.blockmachines/5680.png deleted file mode 100644 index bea259bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5680.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5681.png b/front/public/images/large/gregtech/gt.blockmachines/5681.png deleted file mode 100644 index f5c535243d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5681.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5682.png b/front/public/images/large/gregtech/gt.blockmachines/5682.png deleted file mode 100644 index 4dbd2d2980..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5682.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5683.png b/front/public/images/large/gregtech/gt.blockmachines/5683.png deleted file mode 100644 index 58e2ee8a78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5683.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5684.png b/front/public/images/large/gregtech/gt.blockmachines/5684.png deleted file mode 100644 index 2ff08005ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5684.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5685.png b/front/public/images/large/gregtech/gt.blockmachines/5685.png deleted file mode 100644 index aec5ee536c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5685.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5686.png b/front/public/images/large/gregtech/gt.blockmachines/5686.png deleted file mode 100644 index e4bf4981e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5686.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5690.png b/front/public/images/large/gregtech/gt.blockmachines/5690.png deleted file mode 100644 index 5c63e486b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5690.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5691.png b/front/public/images/large/gregtech/gt.blockmachines/5691.png deleted file mode 100644 index 9e28b8c8b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5691.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5692.png b/front/public/images/large/gregtech/gt.blockmachines/5692.png deleted file mode 100644 index 7a508206c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5692.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5693.png b/front/public/images/large/gregtech/gt.blockmachines/5693.png deleted file mode 100644 index 407bf39308..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5693.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5694.png b/front/public/images/large/gregtech/gt.blockmachines/5694.png deleted file mode 100644 index db4be639df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5694.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5695.png b/front/public/images/large/gregtech/gt.blockmachines/5695.png deleted file mode 100644 index 963c83abc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5695.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/57.png b/front/public/images/large/gregtech/gt.blockmachines/57.png deleted file mode 100644 index ccd2cd1400..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/57.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5700.png b/front/public/images/large/gregtech/gt.blockmachines/5700.png deleted file mode 100644 index fda6df9cfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5700.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5701.png b/front/public/images/large/gregtech/gt.blockmachines/5701.png deleted file mode 100644 index 7e9c77a10d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5701.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5702.png b/front/public/images/large/gregtech/gt.blockmachines/5702.png deleted file mode 100644 index 3ebea375f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5702.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5703.png b/front/public/images/large/gregtech/gt.blockmachines/5703.png deleted file mode 100644 index 4e78354e1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5703.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5704.png b/front/public/images/large/gregtech/gt.blockmachines/5704.png deleted file mode 100644 index 032de32c64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5704.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5705.png b/front/public/images/large/gregtech/gt.blockmachines/5705.png deleted file mode 100644 index 3e153aca75..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5705.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5710.png b/front/public/images/large/gregtech/gt.blockmachines/5710.png deleted file mode 100644 index 59d22ef195..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5710.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5711.png b/front/public/images/large/gregtech/gt.blockmachines/5711.png deleted file mode 100644 index dfac0af6a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5711.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5712.png b/front/public/images/large/gregtech/gt.blockmachines/5712.png deleted file mode 100644 index eb8ba384ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5712.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5713.png b/front/public/images/large/gregtech/gt.blockmachines/5713.png deleted file mode 100644 index 886f28500c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5713.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5714.png b/front/public/images/large/gregtech/gt.blockmachines/5714.png deleted file mode 100644 index 02882d6a53..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5714.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5715.png b/front/public/images/large/gregtech/gt.blockmachines/5715.png deleted file mode 100644 index d6fafb55ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5715.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5720.png b/front/public/images/large/gregtech/gt.blockmachines/5720.png deleted file mode 100644 index fae373557e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5720.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5721.png b/front/public/images/large/gregtech/gt.blockmachines/5721.png deleted file mode 100644 index 3be28a4e18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5721.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5722.png b/front/public/images/large/gregtech/gt.blockmachines/5722.png deleted file mode 100644 index 50f943454f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5722.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5723.png b/front/public/images/large/gregtech/gt.blockmachines/5723.png deleted file mode 100644 index e97512563c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5723.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5724.png b/front/public/images/large/gregtech/gt.blockmachines/5724.png deleted file mode 100644 index b157eafac3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5724.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5725.png b/front/public/images/large/gregtech/gt.blockmachines/5725.png deleted file mode 100644 index 2e1c7a3132..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5725.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5760.png b/front/public/images/large/gregtech/gt.blockmachines/5760.png deleted file mode 100644 index bb32350209..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5761.png b/front/public/images/large/gregtech/gt.blockmachines/5761.png deleted file mode 100644 index db2eafa233..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5761.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5762.png b/front/public/images/large/gregtech/gt.blockmachines/5762.png deleted file mode 100644 index 493582f293..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5762.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5763.png b/front/public/images/large/gregtech/gt.blockmachines/5763.png deleted file mode 100644 index f937feeaee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5763.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/5764.png b/front/public/images/large/gregtech/gt.blockmachines/5764.png deleted file mode 100644 index c028241a7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/5764.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/58.png b/front/public/images/large/gregtech/gt.blockmachines/58.png deleted file mode 100644 index b7a4d43f04..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/58.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/59.png b/front/public/images/large/gregtech/gt.blockmachines/59.png deleted file mode 100644 index ec61170963..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/59.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/60.png b/front/public/images/large/gregtech/gt.blockmachines/60.png deleted file mode 100644 index a4b41f11bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/60.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/61.png b/front/public/images/large/gregtech/gt.blockmachines/61.png deleted file mode 100644 index d80352f210..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/61.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/62.png b/front/public/images/large/gregtech/gt.blockmachines/62.png deleted file mode 100644 index 9471170b06..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/62.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/63.png b/front/public/images/large/gregtech/gt.blockmachines/63.png deleted file mode 100644 index 343f73216f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/63.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/64.png b/front/public/images/large/gregtech/gt.blockmachines/64.png deleted file mode 100644 index 9e801a8e6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/64.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/65.png b/front/public/images/large/gregtech/gt.blockmachines/65.png deleted file mode 100644 index bcdc782e06..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/65.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/66.png b/front/public/images/large/gregtech/gt.blockmachines/66.png deleted file mode 100644 index 0ec0137c5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/66.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/67.png b/front/public/images/large/gregtech/gt.blockmachines/67.png deleted file mode 100644 index b510143cca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/67.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/679.png b/front/public/images/large/gregtech/gt.blockmachines/679.png deleted file mode 100644 index f92446788f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/679.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/68.png b/front/public/images/large/gregtech/gt.blockmachines/68.png deleted file mode 100644 index edc624cb4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/68.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/680.png b/front/public/images/large/gregtech/gt.blockmachines/680.png deleted file mode 100644 index dedf26faeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/680.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/681.png b/front/public/images/large/gregtech/gt.blockmachines/681.png deleted file mode 100644 index 414bbf5d7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/681.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/69.png b/front/public/images/large/gregtech/gt.blockmachines/69.png deleted file mode 100644 index 0d1ed48e0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/69.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/690.png b/front/public/images/large/gregtech/gt.blockmachines/690.png deleted file mode 100644 index 3c926be360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/690.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/691.png b/front/public/images/large/gregtech/gt.blockmachines/691.png deleted file mode 100644 index 6dbd4dfc27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/691.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/692.png b/front/public/images/large/gregtech/gt.blockmachines/692.png deleted file mode 100644 index 3d0a3f2e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/692.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/693.png b/front/public/images/large/gregtech/gt.blockmachines/693.png deleted file mode 100644 index c7f1d3afa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/693.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/694.png b/front/public/images/large/gregtech/gt.blockmachines/694.png deleted file mode 100644 index fd233ff30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/694.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/695.png b/front/public/images/large/gregtech/gt.blockmachines/695.png deleted file mode 100644 index 447bd9d35e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/695.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/696.png b/front/public/images/large/gregtech/gt.blockmachines/696.png deleted file mode 100644 index 9d21ea15df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/696.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/697.png b/front/public/images/large/gregtech/gt.blockmachines/697.png deleted file mode 100644 index d1abb9fea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/697.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/698.png b/front/public/images/large/gregtech/gt.blockmachines/698.png deleted file mode 100644 index adc7ca2efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/698.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/699.png b/front/public/images/large/gregtech/gt.blockmachines/699.png deleted file mode 100644 index 7c0aeeaffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/70.png b/front/public/images/large/gregtech/gt.blockmachines/70.png deleted file mode 100644 index 31c80a1d7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/70.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/71.png b/front/public/images/large/gregtech/gt.blockmachines/71.png deleted file mode 100644 index 3c5116d4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/71.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/710.png b/front/public/images/large/gregtech/gt.blockmachines/710.png deleted file mode 100644 index 27c02ddaa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/710.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/711.png b/front/public/images/large/gregtech/gt.blockmachines/711.png deleted file mode 100644 index c27b801259..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/711.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/712.png b/front/public/images/large/gregtech/gt.blockmachines/712.png deleted file mode 100644 index 07f8fd8b7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/712.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/713.png b/front/public/images/large/gregtech/gt.blockmachines/713.png deleted file mode 100644 index 2c2102e571..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/713.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/714.png b/front/public/images/large/gregtech/gt.blockmachines/714.png deleted file mode 100644 index aa81248bfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/714.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/715.png b/front/public/images/large/gregtech/gt.blockmachines/715.png deleted file mode 100644 index f112849370..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/715.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/716.png b/front/public/images/large/gregtech/gt.blockmachines/716.png deleted file mode 100644 index 5426b66186..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/716.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/717.png b/front/public/images/large/gregtech/gt.blockmachines/717.png deleted file mode 100644 index b09590d72a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/717.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/718.png b/front/public/images/large/gregtech/gt.blockmachines/718.png deleted file mode 100644 index 4fddcce5b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/718.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/719.png b/front/public/images/large/gregtech/gt.blockmachines/719.png deleted file mode 100644 index 4fddcce5b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/719.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/72.png b/front/public/images/large/gregtech/gt.blockmachines/72.png deleted file mode 100644 index a462cb1202..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/72.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/73.png b/front/public/images/large/gregtech/gt.blockmachines/73.png deleted file mode 100644 index 6c701b2884..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/73.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/74.png b/front/public/images/large/gregtech/gt.blockmachines/74.png deleted file mode 100644 index 469291cefd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/74.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/749.png b/front/public/images/large/gregtech/gt.blockmachines/749.png deleted file mode 100644 index 02fb2bfef6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/75.png b/front/public/images/large/gregtech/gt.blockmachines/75.png deleted file mode 100644 index 0853a85113..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/75.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/751.png b/front/public/images/large/gregtech/gt.blockmachines/751.png deleted file mode 100644 index 55787956fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/752.png b/front/public/images/large/gregtech/gt.blockmachines/752.png deleted file mode 100644 index 1f0aa182e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/752.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/753.png b/front/public/images/large/gregtech/gt.blockmachines/753.png deleted file mode 100644 index 5ee6fecfb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/753.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/754.png b/front/public/images/large/gregtech/gt.blockmachines/754.png deleted file mode 100644 index d8236ff7d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/754.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/755.png b/front/public/images/large/gregtech/gt.blockmachines/755.png deleted file mode 100644 index bda71d1a67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/755.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/756.png b/front/public/images/large/gregtech/gt.blockmachines/756.png deleted file mode 100644 index 195868fc77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/756.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/758.png b/front/public/images/large/gregtech/gt.blockmachines/758.png deleted file mode 100644 index df0d115481..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/758.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/759.png b/front/public/images/large/gregtech/gt.blockmachines/759.png deleted file mode 100644 index cd9673684e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/759.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/76.png b/front/public/images/large/gregtech/gt.blockmachines/76.png deleted file mode 100644 index 57dc2a3060..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/76.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/760.png b/front/public/images/large/gregtech/gt.blockmachines/760.png deleted file mode 100644 index b0db3d883c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/761.png b/front/public/images/large/gregtech/gt.blockmachines/761.png deleted file mode 100644 index 8b088c3cff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/761.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/762.png b/front/public/images/large/gregtech/gt.blockmachines/762.png deleted file mode 100644 index 897d5ab162..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/762.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/763.png b/front/public/images/large/gregtech/gt.blockmachines/763.png deleted file mode 100644 index 343ed6645a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/763.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/764.png b/front/public/images/large/gregtech/gt.blockmachines/764.png deleted file mode 100644 index 108e327c97..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/764.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/765.png b/front/public/images/large/gregtech/gt.blockmachines/765.png deleted file mode 100644 index 5baf3e0bbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/766.png b/front/public/images/large/gregtech/gt.blockmachines/766.png deleted file mode 100644 index bc2dcf5bb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/766.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/767.png b/front/public/images/large/gregtech/gt.blockmachines/767.png deleted file mode 100644 index 7fdba41466..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/767.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/77.png b/front/public/images/large/gregtech/gt.blockmachines/77.png deleted file mode 100644 index d7c48b2045..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/77.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/770.png b/front/public/images/large/gregtech/gt.blockmachines/770.png deleted file mode 100644 index b47aea440f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/771.png b/front/public/images/large/gregtech/gt.blockmachines/771.png deleted file mode 100644 index 6bb6b1701e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/771.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/772.png b/front/public/images/large/gregtech/gt.blockmachines/772.png deleted file mode 100644 index 7cccad8208..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/773.png b/front/public/images/large/gregtech/gt.blockmachines/773.png deleted file mode 100644 index 9e9a6e480c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/773.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/774.png b/front/public/images/large/gregtech/gt.blockmachines/774.png deleted file mode 100644 index b8bbe28150..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/774.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/775.png b/front/public/images/large/gregtech/gt.blockmachines/775.png deleted file mode 100644 index bbd8a0e15e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/775.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/776.png b/front/public/images/large/gregtech/gt.blockmachines/776.png deleted file mode 100644 index cd429f4b19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/776.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/777.png b/front/public/images/large/gregtech/gt.blockmachines/777.png deleted file mode 100644 index 8b1b7be373..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/777.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/778.png b/front/public/images/large/gregtech/gt.blockmachines/778.png deleted file mode 100644 index f9b320e22c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/778.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/779.png b/front/public/images/large/gregtech/gt.blockmachines/779.png deleted file mode 100644 index b05eaf9c64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/779.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/78.png b/front/public/images/large/gregtech/gt.blockmachines/78.png deleted file mode 100644 index 163c997383..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/78.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/79.png b/front/public/images/large/gregtech/gt.blockmachines/79.png deleted file mode 100644 index f9360309bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/79.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/790.png b/front/public/images/large/gregtech/gt.blockmachines/790.png deleted file mode 100644 index 8ee5f0df0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/790.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/791.png b/front/public/images/large/gregtech/gt.blockmachines/791.png deleted file mode 100644 index 578e8b887f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/791.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/792.png b/front/public/images/large/gregtech/gt.blockmachines/792.png deleted file mode 100644 index 2ee64c1b5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/792.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/793.png b/front/public/images/large/gregtech/gt.blockmachines/793.png deleted file mode 100644 index 77863814d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/793.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/794.png b/front/public/images/large/gregtech/gt.blockmachines/794.png deleted file mode 100644 index 037a742c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/794.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/795.png b/front/public/images/large/gregtech/gt.blockmachines/795.png deleted file mode 100644 index 8982ae224b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/795.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/796.png b/front/public/images/large/gregtech/gt.blockmachines/796.png deleted file mode 100644 index e6e9dd8599..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/796.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/797.png b/front/public/images/large/gregtech/gt.blockmachines/797.png deleted file mode 100644 index 183aea7b60..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/798.png b/front/public/images/large/gregtech/gt.blockmachines/798.png deleted file mode 100644 index 13793dd003..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/798.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/799.png b/front/public/images/large/gregtech/gt.blockmachines/799.png deleted file mode 100644 index 8cd01bf216..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/799.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/80.png b/front/public/images/large/gregtech/gt.blockmachines/80.png deleted file mode 100644 index d07458945e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/80.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/81.png b/front/public/images/large/gregtech/gt.blockmachines/81.png deleted file mode 100644 index c39e1175f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/81.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/810.png b/front/public/images/large/gregtech/gt.blockmachines/810.png deleted file mode 100644 index f58b7d5772..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/811.png b/front/public/images/large/gregtech/gt.blockmachines/811.png deleted file mode 100644 index 25a1851ee6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/811.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/812.png b/front/public/images/large/gregtech/gt.blockmachines/812.png deleted file mode 100644 index 0e227df926..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/813.png b/front/public/images/large/gregtech/gt.blockmachines/813.png deleted file mode 100644 index 0b4b9a2aaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/813.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/814.png b/front/public/images/large/gregtech/gt.blockmachines/814.png deleted file mode 100644 index da9d7208fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/814.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/815.png b/front/public/images/large/gregtech/gt.blockmachines/815.png deleted file mode 100644 index 245d6c1254..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/815.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/816.png b/front/public/images/large/gregtech/gt.blockmachines/816.png deleted file mode 100644 index 13759624ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/816.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/817.png b/front/public/images/large/gregtech/gt.blockmachines/817.png deleted file mode 100644 index 30c23181ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/818.png b/front/public/images/large/gregtech/gt.blockmachines/818.png deleted file mode 100644 index 82bdff1054..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/818.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/819.png b/front/public/images/large/gregtech/gt.blockmachines/819.png deleted file mode 100644 index 59a7fba9ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/819.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/82.png b/front/public/images/large/gregtech/gt.blockmachines/82.png deleted file mode 100644 index 91df037122..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/82.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/820.png b/front/public/images/large/gregtech/gt.blockmachines/820.png deleted file mode 100644 index f005bf6d87..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/828.png b/front/public/images/large/gregtech/gt.blockmachines/828.png deleted file mode 100644 index 4b8789a1db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/829.png b/front/public/images/large/gregtech/gt.blockmachines/829.png deleted file mode 100644 index beb314b371..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/83.png b/front/public/images/large/gregtech/gt.blockmachines/83.png deleted file mode 100644 index e75c319b61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/83.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/830.png b/front/public/images/large/gregtech/gt.blockmachines/830.png deleted file mode 100644 index 9d5d643712..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/831.png b/front/public/images/large/gregtech/gt.blockmachines/831.png deleted file mode 100644 index b888cc1344..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/832.png b/front/public/images/large/gregtech/gt.blockmachines/832.png deleted file mode 100644 index 37c5d9f8f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/832.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/833.png b/front/public/images/large/gregtech/gt.blockmachines/833.png deleted file mode 100644 index 195868fc77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/834.png b/front/public/images/large/gregtech/gt.blockmachines/834.png deleted file mode 100644 index 195868fc77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/835.png b/front/public/images/large/gregtech/gt.blockmachines/835.png deleted file mode 100644 index 05f6d7134f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/836.png b/front/public/images/large/gregtech/gt.blockmachines/836.png deleted file mode 100644 index 8d839054ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/837.png b/front/public/images/large/gregtech/gt.blockmachines/837.png deleted file mode 100644 index ce22d7b98f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/837.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/838.png b/front/public/images/large/gregtech/gt.blockmachines/838.png deleted file mode 100644 index d5458f8944..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/839.png b/front/public/images/large/gregtech/gt.blockmachines/839.png deleted file mode 100644 index 0ef03c2474..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/84.png b/front/public/images/large/gregtech/gt.blockmachines/84.png deleted file mode 100644 index 6a9fdcee9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/84.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/840.png b/front/public/images/large/gregtech/gt.blockmachines/840.png deleted file mode 100644 index 8552428f55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/849.png b/front/public/images/large/gregtech/gt.blockmachines/849.png deleted file mode 100644 index ca5df06380..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/85.png b/front/public/images/large/gregtech/gt.blockmachines/85.png deleted file mode 100644 index 7ad62c9cfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/85.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/850.png b/front/public/images/large/gregtech/gt.blockmachines/850.png deleted file mode 100644 index ea5bc0f108..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/859.png b/front/public/images/large/gregtech/gt.blockmachines/859.png deleted file mode 100644 index 47e40c0dee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/859.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/86.png b/front/public/images/large/gregtech/gt.blockmachines/86.png deleted file mode 100644 index b174d5eaad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/86.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/860.png b/front/public/images/large/gregtech/gt.blockmachines/860.png deleted file mode 100644 index 3029862780..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/860.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/861.png b/front/public/images/large/gregtech/gt.blockmachines/861.png deleted file mode 100644 index ad6c2e4753..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/862.png b/front/public/images/large/gregtech/gt.blockmachines/862.png deleted file mode 100644 index e0252f9fd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/862.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/863.png b/front/public/images/large/gregtech/gt.blockmachines/863.png deleted file mode 100644 index 5276a671df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/863.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/864.png b/front/public/images/large/gregtech/gt.blockmachines/864.png deleted file mode 100644 index af734155db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/864.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/865.png b/front/public/images/large/gregtech/gt.blockmachines/865.png deleted file mode 100644 index 092e57e610..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/866.png b/front/public/images/large/gregtech/gt.blockmachines/866.png deleted file mode 100644 index 89671fb957..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/866.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/869.png b/front/public/images/large/gregtech/gt.blockmachines/869.png deleted file mode 100644 index 871d99b168..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/869.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/87.png b/front/public/images/large/gregtech/gt.blockmachines/87.png deleted file mode 100644 index 860e984eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/87.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/875.png b/front/public/images/large/gregtech/gt.blockmachines/875.png deleted file mode 100644 index 578e8b887f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/875.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/876.png b/front/public/images/large/gregtech/gt.blockmachines/876.png deleted file mode 100644 index 02fb2bfef6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/876.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/877.png b/front/public/images/large/gregtech/gt.blockmachines/877.png deleted file mode 100644 index 4a9984370e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/878.png b/front/public/images/large/gregtech/gt.blockmachines/878.png deleted file mode 100644 index 9256f70601..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/879.png b/front/public/images/large/gregtech/gt.blockmachines/879.png deleted file mode 100644 index 896f4f211a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/879.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/88.png b/front/public/images/large/gregtech/gt.blockmachines/88.png deleted file mode 100644 index af1280be78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/88.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/880.png b/front/public/images/large/gregtech/gt.blockmachines/880.png deleted file mode 100644 index 630b419892..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/881.png b/front/public/images/large/gregtech/gt.blockmachines/881.png deleted file mode 100644 index fa7ac9a01a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/881.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/882.png b/front/public/images/large/gregtech/gt.blockmachines/882.png deleted file mode 100644 index d307635be6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/883.png b/front/public/images/large/gregtech/gt.blockmachines/883.png deleted file mode 100644 index 9cb099e9d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/884.png b/front/public/images/large/gregtech/gt.blockmachines/884.png deleted file mode 100644 index 3796b42f04..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/885.png b/front/public/images/large/gregtech/gt.blockmachines/885.png deleted file mode 100644 index cfec3dfe5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/885.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/886.png b/front/public/images/large/gregtech/gt.blockmachines/886.png deleted file mode 100644 index df81e71613..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/886.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/887.png b/front/public/images/large/gregtech/gt.blockmachines/887.png deleted file mode 100644 index b76d2bee73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/887.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/888.png b/front/public/images/large/gregtech/gt.blockmachines/888.png deleted file mode 100644 index 15b9421116..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/888.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/889.png b/front/public/images/large/gregtech/gt.blockmachines/889.png deleted file mode 100644 index 3f5a82298c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/89.png b/front/public/images/large/gregtech/gt.blockmachines/89.png deleted file mode 100644 index 88b326b69d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/89.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/890.png b/front/public/images/large/gregtech/gt.blockmachines/890.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/891.png b/front/public/images/large/gregtech/gt.blockmachines/891.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/891.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/892.png b/front/public/images/large/gregtech/gt.blockmachines/892.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/892.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/893.png b/front/public/images/large/gregtech/gt.blockmachines/893.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/893.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/894.png b/front/public/images/large/gregtech/gt.blockmachines/894.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/895.png b/front/public/images/large/gregtech/gt.blockmachines/895.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/895.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/896.png b/front/public/images/large/gregtech/gt.blockmachines/896.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/896.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/897.png b/front/public/images/large/gregtech/gt.blockmachines/897.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/897.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/898.png b/front/public/images/large/gregtech/gt.blockmachines/898.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/898.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/899.png b/front/public/images/large/gregtech/gt.blockmachines/899.png deleted file mode 100644 index 0dfdf3a9d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/899.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/90.png b/front/public/images/large/gregtech/gt.blockmachines/90.png deleted file mode 100644 index d1fcb73aaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/90.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/900.png b/front/public/images/large/gregtech/gt.blockmachines/900.png deleted file mode 100644 index 04da715ae9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/901.png b/front/public/images/large/gregtech/gt.blockmachines/901.png deleted file mode 100644 index 7557a9bd8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/902.png b/front/public/images/large/gregtech/gt.blockmachines/902.png deleted file mode 100644 index 8e050f94bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/903.png b/front/public/images/large/gregtech/gt.blockmachines/903.png deleted file mode 100644 index 57a9f749a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/904.png b/front/public/images/large/gregtech/gt.blockmachines/904.png deleted file mode 100644 index f221c5f0e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/905.png b/front/public/images/large/gregtech/gt.blockmachines/905.png deleted file mode 100644 index 08a0292814..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/906.png b/front/public/images/large/gregtech/gt.blockmachines/906.png deleted file mode 100644 index 8bc7735824..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/907.png b/front/public/images/large/gregtech/gt.blockmachines/907.png deleted file mode 100644 index 09d9d360d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/908.png b/front/public/images/large/gregtech/gt.blockmachines/908.png deleted file mode 100644 index 4abadb62d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/91.png b/front/public/images/large/gregtech/gt.blockmachines/91.png deleted file mode 100644 index 672432c038..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/91.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/910.png b/front/public/images/large/gregtech/gt.blockmachines/910.png deleted file mode 100644 index 03e09da05c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/911.png b/front/public/images/large/gregtech/gt.blockmachines/911.png deleted file mode 100644 index 671aae0111..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/912.png b/front/public/images/large/gregtech/gt.blockmachines/912.png deleted file mode 100644 index 0f9a6e820b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/92.png b/front/public/images/large/gregtech/gt.blockmachines/92.png deleted file mode 100644 index d588fd1c46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/92.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9230.png b/front/public/images/large/gregtech/gt.blockmachines/9230.png deleted file mode 100644 index dd6b23f007..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9231.png b/front/public/images/large/gregtech/gt.blockmachines/9231.png deleted file mode 100644 index 26c5306def..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9231.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9232.png b/front/public/images/large/gregtech/gt.blockmachines/9232.png deleted file mode 100644 index 30a5e20140..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9232.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9233.png b/front/public/images/large/gregtech/gt.blockmachines/9233.png deleted file mode 100644 index 5d481185db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9233.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9234.png b/front/public/images/large/gregtech/gt.blockmachines/9234.png deleted file mode 100644 index 1f664e8d6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9234.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9235.png b/front/public/images/large/gregtech/gt.blockmachines/9235.png deleted file mode 100644 index 50936a18ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9235.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9236.png b/front/public/images/large/gregtech/gt.blockmachines/9236.png deleted file mode 100644 index 2137c4d159..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9236.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9237.png b/front/public/images/large/gregtech/gt.blockmachines/9237.png deleted file mode 100644 index 189439def5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9237.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9238.png b/front/public/images/large/gregtech/gt.blockmachines/9238.png deleted file mode 100644 index 4321bdab27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9238.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9239.png b/front/public/images/large/gregtech/gt.blockmachines/9239.png deleted file mode 100644 index 9cf28f1b9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9239.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9240.png b/front/public/images/large/gregtech/gt.blockmachines/9240.png deleted file mode 100644 index 064357a9df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9240.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9241.png b/front/public/images/large/gregtech/gt.blockmachines/9241.png deleted file mode 100644 index bf194bf16f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9241.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9242.png b/front/public/images/large/gregtech/gt.blockmachines/9242.png deleted file mode 100644 index f2d57e94cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9242.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9243.png b/front/public/images/large/gregtech/gt.blockmachines/9243.png deleted file mode 100644 index 5f206292a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9243.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9244.png b/front/public/images/large/gregtech/gt.blockmachines/9244.png deleted file mode 100644 index 3d47c1d784..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9244.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9245.png b/front/public/images/large/gregtech/gt.blockmachines/9245.png deleted file mode 100644 index 1ab543e652..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9245.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9246.png b/front/public/images/large/gregtech/gt.blockmachines/9246.png deleted file mode 100644 index 4c9bcd2ee2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9246.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9247.png b/front/public/images/large/gregtech/gt.blockmachines/9247.png deleted file mode 100644 index 5cc886b2cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9247.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9248.png b/front/public/images/large/gregtech/gt.blockmachines/9248.png deleted file mode 100644 index e0baed7990..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9248.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9249.png b/front/public/images/large/gregtech/gt.blockmachines/9249.png deleted file mode 100644 index 785e96b4c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9249.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9250.png b/front/public/images/large/gregtech/gt.blockmachines/9250.png deleted file mode 100644 index 064357a9df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9250.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9251.png b/front/public/images/large/gregtech/gt.blockmachines/9251.png deleted file mode 100644 index bf194bf16f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9251.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9252.png b/front/public/images/large/gregtech/gt.blockmachines/9252.png deleted file mode 100644 index f2d57e94cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9252.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9253.png b/front/public/images/large/gregtech/gt.blockmachines/9253.png deleted file mode 100644 index 5f206292a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9253.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9254.png b/front/public/images/large/gregtech/gt.blockmachines/9254.png deleted file mode 100644 index 3d47c1d784..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9254.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9255.png b/front/public/images/large/gregtech/gt.blockmachines/9255.png deleted file mode 100644 index 1ab543e652..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9255.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9256.png b/front/public/images/large/gregtech/gt.blockmachines/9256.png deleted file mode 100644 index 4c9bcd2ee2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9256.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9257.png b/front/public/images/large/gregtech/gt.blockmachines/9257.png deleted file mode 100644 index 5cc886b2cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9257.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9258.png b/front/public/images/large/gregtech/gt.blockmachines/9258.png deleted file mode 100644 index e0baed7990..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9258.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9259.png b/front/public/images/large/gregtech/gt.blockmachines/9259.png deleted file mode 100644 index 785e96b4c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9259.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9270.png b/front/public/images/large/gregtech/gt.blockmachines/9270.png deleted file mode 100644 index 0d648c947c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9270.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9271.png b/front/public/images/large/gregtech/gt.blockmachines/9271.png deleted file mode 100644 index d2031a7a9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9271.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9272.png b/front/public/images/large/gregtech/gt.blockmachines/9272.png deleted file mode 100644 index bc86315b3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9272.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9273.png b/front/public/images/large/gregtech/gt.blockmachines/9273.png deleted file mode 100644 index f5b21bb17b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9273.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9274.png b/front/public/images/large/gregtech/gt.blockmachines/9274.png deleted file mode 100644 index b7067bc970..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9274.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9275.png b/front/public/images/large/gregtech/gt.blockmachines/9275.png deleted file mode 100644 index 2ae63d4354..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9275.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9276.png b/front/public/images/large/gregtech/gt.blockmachines/9276.png deleted file mode 100644 index bfe2c70b16..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9276.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9277.png b/front/public/images/large/gregtech/gt.blockmachines/9277.png deleted file mode 100644 index 99e23d5725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9277.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9278.png b/front/public/images/large/gregtech/gt.blockmachines/9278.png deleted file mode 100644 index 99e1dfcc70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9278.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9279.png b/front/public/images/large/gregtech/gt.blockmachines/9279.png deleted file mode 100644 index 4493128285..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9279.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/93.png b/front/public/images/large/gregtech/gt.blockmachines/93.png deleted file mode 100644 index 3046a10ae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/93.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9300.png b/front/public/images/large/gregtech/gt.blockmachines/9300.png deleted file mode 100644 index 1c0686cee0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9301.png b/front/public/images/large/gregtech/gt.blockmachines/9301.png deleted file mode 100644 index de8052b15c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9302.png b/front/public/images/large/gregtech/gt.blockmachines/9302.png deleted file mode 100644 index 2135851b5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9303.png b/front/public/images/large/gregtech/gt.blockmachines/9303.png deleted file mode 100644 index fb50afa96f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9304.png b/front/public/images/large/gregtech/gt.blockmachines/9304.png deleted file mode 100644 index b2e5371f32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9305.png b/front/public/images/large/gregtech/gt.blockmachines/9305.png deleted file mode 100644 index 00cb0946b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9306.png b/front/public/images/large/gregtech/gt.blockmachines/9306.png deleted file mode 100644 index e39b35e3db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9307.png b/front/public/images/large/gregtech/gt.blockmachines/9307.png deleted file mode 100644 index 9c31e1e082..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9308.png b/front/public/images/large/gregtech/gt.blockmachines/9308.png deleted file mode 100644 index 5e53907eb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9309.png b/front/public/images/large/gregtech/gt.blockmachines/9309.png deleted file mode 100644 index 0c15df5835..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9320.png b/front/public/images/large/gregtech/gt.blockmachines/9320.png deleted file mode 100644 index e9de43dae3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9321.png b/front/public/images/large/gregtech/gt.blockmachines/9321.png deleted file mode 100644 index 8341e0ca52..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9322.png b/front/public/images/large/gregtech/gt.blockmachines/9322.png deleted file mode 100644 index f2b34cdebf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9322.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9323.png b/front/public/images/large/gregtech/gt.blockmachines/9323.png deleted file mode 100644 index 5bf63cbfaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9324.png b/front/public/images/large/gregtech/gt.blockmachines/9324.png deleted file mode 100644 index 40521c4e0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9325.png b/front/public/images/large/gregtech/gt.blockmachines/9325.png deleted file mode 100644 index 353a0cfe20..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9326.png b/front/public/images/large/gregtech/gt.blockmachines/9326.png deleted file mode 100644 index c5d7fb6ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9327.png b/front/public/images/large/gregtech/gt.blockmachines/9327.png deleted file mode 100644 index be3e91def6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9328.png b/front/public/images/large/gregtech/gt.blockmachines/9328.png deleted file mode 100644 index dffa675e3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9329.png b/front/public/images/large/gregtech/gt.blockmachines/9329.png deleted file mode 100644 index b433948080..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9330.png b/front/public/images/large/gregtech/gt.blockmachines/9330.png deleted file mode 100644 index bae05649b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9331.png b/front/public/images/large/gregtech/gt.blockmachines/9331.png deleted file mode 100644 index ed7773b512..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9332.png b/front/public/images/large/gregtech/gt.blockmachines/9332.png deleted file mode 100644 index 860de935c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9332.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9333.png b/front/public/images/large/gregtech/gt.blockmachines/9333.png deleted file mode 100644 index 793a5bfa1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9334.png b/front/public/images/large/gregtech/gt.blockmachines/9334.png deleted file mode 100644 index 3b4bfe1896..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9335.png b/front/public/images/large/gregtech/gt.blockmachines/9335.png deleted file mode 100644 index c4d6b7f17a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9336.png b/front/public/images/large/gregtech/gt.blockmachines/9336.png deleted file mode 100644 index a201bdd913..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9337.png b/front/public/images/large/gregtech/gt.blockmachines/9337.png deleted file mode 100644 index c9c1f0b161..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9338.png b/front/public/images/large/gregtech/gt.blockmachines/9338.png deleted file mode 100644 index 5a425eb518..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9339.png b/front/public/images/large/gregtech/gt.blockmachines/9339.png deleted file mode 100644 index 255644e6ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9399.png b/front/public/images/large/gregtech/gt.blockmachines/9399.png deleted file mode 100644 index 9960590a11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/94.png b/front/public/images/large/gregtech/gt.blockmachines/94.png deleted file mode 100644 index c4f5530a1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/94.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9400.png b/front/public/images/large/gregtech/gt.blockmachines/9400.png deleted file mode 100644 index bed267e3a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/9401.png b/front/public/images/large/gregtech/gt.blockmachines/9401.png deleted file mode 100644 index 84650dce79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/9401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/942.png b/front/public/images/large/gregtech/gt.blockmachines/942.png deleted file mode 100644 index 12feb9f109..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/946.png b/front/public/images/large/gregtech/gt.blockmachines/946.png deleted file mode 100644 index 2165fb586e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/947.png b/front/public/images/large/gregtech/gt.blockmachines/947.png deleted file mode 100644 index 801a09d06c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/947.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/948.png b/front/public/images/large/gregtech/gt.blockmachines/948.png deleted file mode 100644 index 0701a92915..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/949.png b/front/public/images/large/gregtech/gt.blockmachines/949.png deleted file mode 100644 index 670217f68a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/95.png b/front/public/images/large/gregtech/gt.blockmachines/95.png deleted file mode 100644 index ad6c2e4753..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/95.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/950.png b/front/public/images/large/gregtech/gt.blockmachines/950.png deleted file mode 100644 index e28db7f2cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/950.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/951.png b/front/public/images/large/gregtech/gt.blockmachines/951.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/956.png b/front/public/images/large/gregtech/gt.blockmachines/956.png deleted file mode 100644 index a6946f0a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/96.png b/front/public/images/large/gregtech/gt.blockmachines/96.png deleted file mode 100644 index 6cbd74578c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/96.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/963.png b/front/public/images/large/gregtech/gt.blockmachines/963.png deleted file mode 100644 index 7c4604b0e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/963.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/964.png b/front/public/images/large/gregtech/gt.blockmachines/964.png deleted file mode 100644 index 25c47e9e09..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/964.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/965.png b/front/public/images/large/gregtech/gt.blockmachines/965.png deleted file mode 100644 index 18d6bf5807..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/965.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/967.png b/front/public/images/large/gregtech/gt.blockmachines/967.png deleted file mode 100644 index fddcdd8e92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/967.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/968.png b/front/public/images/large/gregtech/gt.blockmachines/968.png deleted file mode 100644 index fddcdd8e92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/968.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/969.png b/front/public/images/large/gregtech/gt.blockmachines/969.png deleted file mode 100644 index 566ea3b2a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/97.png b/front/public/images/large/gregtech/gt.blockmachines/97.png deleted file mode 100644 index 5b71667e37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/97.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/975.png b/front/public/images/large/gregtech/gt.blockmachines/975.png deleted file mode 100644 index 2733652416..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/98.png b/front/public/images/large/gregtech/gt.blockmachines/98.png deleted file mode 100644 index 14d589804c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/98.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/99.png b/front/public/images/large/gregtech/gt.blockmachines/99.png deleted file mode 100644 index 1e9ca488e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/99.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/992.png b/front/public/images/large/gregtech/gt.blockmachines/992.png deleted file mode 100644 index 3eccca2345..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/993.png b/front/public/images/large/gregtech/gt.blockmachines/993.png deleted file mode 100644 index 8c5616917f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/993.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/994.png b/front/public/images/large/gregtech/gt.blockmachines/994.png deleted file mode 100644 index d711f55507..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/994.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/995.png b/front/public/images/large/gregtech/gt.blockmachines/995.png deleted file mode 100644 index 3025e50295..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/995.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/996.png b/front/public/images/large/gregtech/gt.blockmachines/996.png deleted file mode 100644 index e8b456e625..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/996.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/997.png b/front/public/images/large/gregtech/gt.blockmachines/997.png deleted file mode 100644 index f5677b859f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/997.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmachines/998.png b/front/public/images/large/gregtech/gt.blockmachines/998.png deleted file mode 100644 index 93be45cd74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmachines/998.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/0.png b/front/public/images/large/gregtech/gt.blockmetal1/0.png deleted file mode 100644 index 11d4f736af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/1.png b/front/public/images/large/gregtech/gt.blockmetal1/1.png deleted file mode 100644 index 53048821f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/10.png b/front/public/images/large/gregtech/gt.blockmetal1/10.png deleted file mode 100644 index ad284fa8d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/11.png b/front/public/images/large/gregtech/gt.blockmetal1/11.png deleted file mode 100644 index 6be8ae815c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/12.png b/front/public/images/large/gregtech/gt.blockmetal1/12.png deleted file mode 100644 index 48e19f15cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/13.png b/front/public/images/large/gregtech/gt.blockmetal1/13.png deleted file mode 100644 index 6ed0e4d0cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/14.png b/front/public/images/large/gregtech/gt.blockmetal1/14.png deleted file mode 100644 index 1ea7a78f65..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/15.png b/front/public/images/large/gregtech/gt.blockmetal1/15.png deleted file mode 100644 index 10e3c2b596..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/2.png b/front/public/images/large/gregtech/gt.blockmetal1/2.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/3.png b/front/public/images/large/gregtech/gt.blockmetal1/3.png deleted file mode 100644 index 3a65057c48..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/4.png b/front/public/images/large/gregtech/gt.blockmetal1/4.png deleted file mode 100644 index 3577954274..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/5.png b/front/public/images/large/gregtech/gt.blockmetal1/5.png deleted file mode 100644 index 6bc5579665..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/6.png b/front/public/images/large/gregtech/gt.blockmetal1/6.png deleted file mode 100644 index 7d061c1126..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/7.png b/front/public/images/large/gregtech/gt.blockmetal1/7.png deleted file mode 100644 index d30a2dc2cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/8.png b/front/public/images/large/gregtech/gt.blockmetal1/8.png deleted file mode 100644 index bfb396db98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal1/9.png b/front/public/images/large/gregtech/gt.blockmetal1/9.png deleted file mode 100644 index 53882bbd57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal1/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/0.png b/front/public/images/large/gregtech/gt.blockmetal2/0.png deleted file mode 100644 index bf621bbb54..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/1.png b/front/public/images/large/gregtech/gt.blockmetal2/1.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/10.png b/front/public/images/large/gregtech/gt.blockmetal2/10.png deleted file mode 100644 index 81cbb7f01c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/11.png b/front/public/images/large/gregtech/gt.blockmetal2/11.png deleted file mode 100644 index 707b5ee591..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/12.png b/front/public/images/large/gregtech/gt.blockmetal2/12.png deleted file mode 100644 index 2e315d8ba4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/13.png b/front/public/images/large/gregtech/gt.blockmetal2/13.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/14.png b/front/public/images/large/gregtech/gt.blockmetal2/14.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/15.png b/front/public/images/large/gregtech/gt.blockmetal2/15.png deleted file mode 100644 index 89bdf0278d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/2.png b/front/public/images/large/gregtech/gt.blockmetal2/2.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/3.png b/front/public/images/large/gregtech/gt.blockmetal2/3.png deleted file mode 100644 index 25392eacab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/4.png b/front/public/images/large/gregtech/gt.blockmetal2/4.png deleted file mode 100644 index ee7f0396fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/5.png b/front/public/images/large/gregtech/gt.blockmetal2/5.png deleted file mode 100644 index b5e5937eeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/6.png b/front/public/images/large/gregtech/gt.blockmetal2/6.png deleted file mode 100644 index 3ca787cbd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/7.png b/front/public/images/large/gregtech/gt.blockmetal2/7.png deleted file mode 100644 index d28c303efa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/8.png b/front/public/images/large/gregtech/gt.blockmetal2/8.png deleted file mode 100644 index 2f069ff7e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal2/9.png b/front/public/images/large/gregtech/gt.blockmetal2/9.png deleted file mode 100644 index e53e238e79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal2/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/0.png b/front/public/images/large/gregtech/gt.blockmetal3/0.png deleted file mode 100644 index 89bdf0278d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/1.png b/front/public/images/large/gregtech/gt.blockmetal3/1.png deleted file mode 100644 index 657bd7afa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/10.png b/front/public/images/large/gregtech/gt.blockmetal3/10.png deleted file mode 100644 index e040ab43a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/11.png b/front/public/images/large/gregtech/gt.blockmetal3/11.png deleted file mode 100644 index 86dc8be052..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/12.png b/front/public/images/large/gregtech/gt.blockmetal3/12.png deleted file mode 100644 index 990fa8e78c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/13.png b/front/public/images/large/gregtech/gt.blockmetal3/13.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/14.png b/front/public/images/large/gregtech/gt.blockmetal3/14.png deleted file mode 100644 index 5080f70202..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/15.png b/front/public/images/large/gregtech/gt.blockmetal3/15.png deleted file mode 100644 index 616dd6d467..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/2.png b/front/public/images/large/gregtech/gt.blockmetal3/2.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/3.png b/front/public/images/large/gregtech/gt.blockmetal3/3.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/4.png b/front/public/images/large/gregtech/gt.blockmetal3/4.png deleted file mode 100644 index 2f019c09b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/5.png b/front/public/images/large/gregtech/gt.blockmetal3/5.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/6.png b/front/public/images/large/gregtech/gt.blockmetal3/6.png deleted file mode 100644 index adfea4446a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/7.png b/front/public/images/large/gregtech/gt.blockmetal3/7.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal3/9.png b/front/public/images/large/gregtech/gt.blockmetal3/9.png deleted file mode 100644 index 34bad86645..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal3/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/0.png b/front/public/images/large/gregtech/gt.blockmetal4/0.png deleted file mode 100644 index 1165262f0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/1.png b/front/public/images/large/gregtech/gt.blockmetal4/1.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/10.png b/front/public/images/large/gregtech/gt.blockmetal4/10.png deleted file mode 100644 index 3f0271b71c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/11.png b/front/public/images/large/gregtech/gt.blockmetal4/11.png deleted file mode 100644 index fbb9ee8cd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/12.png b/front/public/images/large/gregtech/gt.blockmetal4/12.png deleted file mode 100644 index 59f4f6ecb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/13.png b/front/public/images/large/gregtech/gt.blockmetal4/13.png deleted file mode 100644 index 59f4f6ecb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/14.png b/front/public/images/large/gregtech/gt.blockmetal4/14.png deleted file mode 100644 index a283283269..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/15.png b/front/public/images/large/gregtech/gt.blockmetal4/15.png deleted file mode 100644 index f6f835843e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/2.png b/front/public/images/large/gregtech/gt.blockmetal4/2.png deleted file mode 100644 index 578f6288b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/3.png b/front/public/images/large/gregtech/gt.blockmetal4/3.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/4.png b/front/public/images/large/gregtech/gt.blockmetal4/4.png deleted file mode 100644 index bdbe3e7b30..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/5.png b/front/public/images/large/gregtech/gt.blockmetal4/5.png deleted file mode 100644 index 0747eae1bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/6.png b/front/public/images/large/gregtech/gt.blockmetal4/6.png deleted file mode 100644 index 0246c47f47..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/7.png b/front/public/images/large/gregtech/gt.blockmetal4/7.png deleted file mode 100644 index f0f5c574bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/8.png b/front/public/images/large/gregtech/gt.blockmetal4/8.png deleted file mode 100644 index 0a9f7cfb71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal4/9.png b/front/public/images/large/gregtech/gt.blockmetal4/9.png deleted file mode 100644 index 23bacf680d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal4/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/0.png b/front/public/images/large/gregtech/gt.blockmetal5/0.png deleted file mode 100644 index 685dc2c40c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/1.png b/front/public/images/large/gregtech/gt.blockmetal5/1.png deleted file mode 100644 index 685dc2c40c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/10.png b/front/public/images/large/gregtech/gt.blockmetal5/10.png deleted file mode 100644 index 06c52b1ab7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/11.png b/front/public/images/large/gregtech/gt.blockmetal5/11.png deleted file mode 100644 index 9db6eee402..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/12.png b/front/public/images/large/gregtech/gt.blockmetal5/12.png deleted file mode 100644 index 78f5118a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/13.png b/front/public/images/large/gregtech/gt.blockmetal5/13.png deleted file mode 100644 index ca552e8bac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/14.png b/front/public/images/large/gregtech/gt.blockmetal5/14.png deleted file mode 100644 index ee832ac69d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/15.png b/front/public/images/large/gregtech/gt.blockmetal5/15.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/2.png b/front/public/images/large/gregtech/gt.blockmetal5/2.png deleted file mode 100644 index 990fa8e78c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/3.png b/front/public/images/large/gregtech/gt.blockmetal5/3.png deleted file mode 100644 index 2ff84255c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/4.png b/front/public/images/large/gregtech/gt.blockmetal5/4.png deleted file mode 100644 index 2ff84255c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/5.png b/front/public/images/large/gregtech/gt.blockmetal5/5.png deleted file mode 100644 index 08d18d10fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/6.png b/front/public/images/large/gregtech/gt.blockmetal5/6.png deleted file mode 100644 index c1c4ae0082..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/7.png b/front/public/images/large/gregtech/gt.blockmetal5/7.png deleted file mode 100644 index a1102449d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/8.png b/front/public/images/large/gregtech/gt.blockmetal5/8.png deleted file mode 100644 index 548e5bea91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal5/9.png b/front/public/images/large/gregtech/gt.blockmetal5/9.png deleted file mode 100644 index 1efa0148a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal5/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/0.png b/front/public/images/large/gregtech/gt.blockmetal6/0.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/1.png b/front/public/images/large/gregtech/gt.blockmetal6/1.png deleted file mode 100644 index 464f3d5fdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/10.png b/front/public/images/large/gregtech/gt.blockmetal6/10.png deleted file mode 100644 index 8f25780034..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/11.png b/front/public/images/large/gregtech/gt.blockmetal6/11.png deleted file mode 100644 index 7997ce07d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/12.png b/front/public/images/large/gregtech/gt.blockmetal6/12.png deleted file mode 100644 index 75f7b6d2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/13.png b/front/public/images/large/gregtech/gt.blockmetal6/13.png deleted file mode 100644 index e3dc42d971..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/14.png b/front/public/images/large/gregtech/gt.blockmetal6/14.png deleted file mode 100644 index e3dc42d971..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/15.png b/front/public/images/large/gregtech/gt.blockmetal6/15.png deleted file mode 100644 index 24909b4cfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/2.png b/front/public/images/large/gregtech/gt.blockmetal6/2.png deleted file mode 100644 index 1967283fcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/3.png b/front/public/images/large/gregtech/gt.blockmetal6/3.png deleted file mode 100644 index 8c303f7f5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/4.png b/front/public/images/large/gregtech/gt.blockmetal6/4.png deleted file mode 100644 index aa865a06f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/5.png b/front/public/images/large/gregtech/gt.blockmetal6/5.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/6.png b/front/public/images/large/gregtech/gt.blockmetal6/6.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/7.png b/front/public/images/large/gregtech/gt.blockmetal6/7.png deleted file mode 100644 index 9f76ac54e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/8.png b/front/public/images/large/gregtech/gt.blockmetal6/8.png deleted file mode 100644 index 36449b6ec9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal6/9.png b/front/public/images/large/gregtech/gt.blockmetal6/9.png deleted file mode 100644 index 09463d8620..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal6/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/0.png b/front/public/images/large/gregtech/gt.blockmetal7/0.png deleted file mode 100644 index c7a8aa6a81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/1.png b/front/public/images/large/gregtech/gt.blockmetal7/1.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/10.png b/front/public/images/large/gregtech/gt.blockmetal7/10.png deleted file mode 100644 index 4e411561d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/11.png b/front/public/images/large/gregtech/gt.blockmetal7/11.png deleted file mode 100644 index 59f4f6ecb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/12.png b/front/public/images/large/gregtech/gt.blockmetal7/12.png deleted file mode 100644 index a49076203c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/13.png b/front/public/images/large/gregtech/gt.blockmetal7/13.png deleted file mode 100644 index fbb9ee8cd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/14.png b/front/public/images/large/gregtech/gt.blockmetal7/14.png deleted file mode 100644 index 924f2028f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/15.png b/front/public/images/large/gregtech/gt.blockmetal7/15.png deleted file mode 100644 index 9a93f966b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/2.png b/front/public/images/large/gregtech/gt.blockmetal7/2.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/3.png b/front/public/images/large/gregtech/gt.blockmetal7/3.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/4.png b/front/public/images/large/gregtech/gt.blockmetal7/4.png deleted file mode 100644 index 29b83d4f1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/5.png b/front/public/images/large/gregtech/gt.blockmetal7/5.png deleted file mode 100644 index 0db46b5e4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/6.png b/front/public/images/large/gregtech/gt.blockmetal7/6.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/7.png b/front/public/images/large/gregtech/gt.blockmetal7/7.png deleted file mode 100644 index 4e2838d65b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/8.png b/front/public/images/large/gregtech/gt.blockmetal7/8.png deleted file mode 100644 index 3216c4ba9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal7/9.png b/front/public/images/large/gregtech/gt.blockmetal7/9.png deleted file mode 100644 index cebd7b9364..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal7/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/0.png b/front/public/images/large/gregtech/gt.blockmetal8/0.png deleted file mode 100644 index 808426c07c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/1.png b/front/public/images/large/gregtech/gt.blockmetal8/1.png deleted file mode 100644 index 6e7462eb44..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/10.png b/front/public/images/large/gregtech/gt.blockmetal8/10.png deleted file mode 100644 index bfb396db98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/11.png b/front/public/images/large/gregtech/gt.blockmetal8/11.png deleted file mode 100644 index 464f3d5fdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/12.png b/front/public/images/large/gregtech/gt.blockmetal8/12.png deleted file mode 100644 index 6fc123248d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/13.png b/front/public/images/large/gregtech/gt.blockmetal8/13.png deleted file mode 100644 index 57af612a9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/14.png b/front/public/images/large/gregtech/gt.blockmetal8/14.png deleted file mode 100644 index f08e259aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/15.png b/front/public/images/large/gregtech/gt.blockmetal8/15.png deleted file mode 100644 index a283283269..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/2.png b/front/public/images/large/gregtech/gt.blockmetal8/2.png deleted file mode 100644 index 9db6eee402..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/3.png b/front/public/images/large/gregtech/gt.blockmetal8/3.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/4.png b/front/public/images/large/gregtech/gt.blockmetal8/4.png deleted file mode 100644 index 07a1b2e75e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/5.png b/front/public/images/large/gregtech/gt.blockmetal8/5.png deleted file mode 100644 index 8695f6e2bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/6.png b/front/public/images/large/gregtech/gt.blockmetal8/6.png deleted file mode 100644 index f98701b0fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/7.png b/front/public/images/large/gregtech/gt.blockmetal8/7.png deleted file mode 100644 index 34bad86645..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/8.png b/front/public/images/large/gregtech/gt.blockmetal8/8.png deleted file mode 100644 index 06c52b1ab7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal8/9.png b/front/public/images/large/gregtech/gt.blockmetal8/9.png deleted file mode 100644 index 8c303f7f5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal8/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/0.png b/front/public/images/large/gregtech/gt.blockmetal9/0.png deleted file mode 100644 index 9ae5c53fae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/1.png b/front/public/images/large/gregtech/gt.blockmetal9/1.png deleted file mode 100644 index 272d808618..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/10.png b/front/public/images/large/gregtech/gt.blockmetal9/10.png deleted file mode 100644 index 8f0b8257d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/2.png b/front/public/images/large/gregtech/gt.blockmetal9/2.png deleted file mode 100644 index af850be864..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/3.png b/front/public/images/large/gregtech/gt.blockmetal9/3.png deleted file mode 100644 index 9012bcaf21..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/4.png b/front/public/images/large/gregtech/gt.blockmetal9/4.png deleted file mode 100644 index f6f835843e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/5.png b/front/public/images/large/gregtech/gt.blockmetal9/5.png deleted file mode 100644 index d67095a558..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/6.png b/front/public/images/large/gregtech/gt.blockmetal9/6.png deleted file mode 100644 index 1f2199d9a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/7.png b/front/public/images/large/gregtech/gt.blockmetal9/7.png deleted file mode 100644 index b58dd457ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/8.png b/front/public/images/large/gregtech/gt.blockmetal9/8.png deleted file mode 100644 index 994c69e430..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockmetal9/9.png b/front/public/images/large/gregtech/gt.blockmetal9/9.png deleted file mode 100644 index fd1710e5b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockmetal9/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/100.png b/front/public/images/large/gregtech/gt.blockores/100.png deleted file mode 100644 index 2d4d458d6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1006.png b/front/public/images/large/gregtech/gt.blockores/1006.png deleted file mode 100644 index f9b2421b6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1008.png b/front/public/images/large/gregtech/gt.blockores/1008.png deleted file mode 100644 index 76d6c1355c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/101.png b/front/public/images/large/gregtech/gt.blockores/101.png deleted file mode 100644 index ee1e70d651..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1018.png b/front/public/images/large/gregtech/gt.blockores/1018.png deleted file mode 100644 index 41d8c6cd40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1019.png b/front/public/images/large/gregtech/gt.blockores/1019.png deleted file mode 100644 index 20af30957b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1020.png b/front/public/images/large/gregtech/gt.blockores/1020.png deleted file mode 100644 index 812cc6727b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1022.png b/front/public/images/large/gregtech/gt.blockores/1022.png deleted file mode 100644 index b352c2e5db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1027.png b/front/public/images/large/gregtech/gt.blockores/1027.png deleted file mode 100644 index 57503972c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1028.png b/front/public/images/large/gregtech/gt.blockores/1028.png deleted file mode 100644 index 5247ce9625..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1029.png b/front/public/images/large/gregtech/gt.blockores/1029.png deleted file mode 100644 index b15ccab6a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/103.png b/front/public/images/large/gregtech/gt.blockores/103.png deleted file mode 100644 index a201a3e25a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1030.png b/front/public/images/large/gregtech/gt.blockores/1030.png deleted file mode 100644 index 28db94d809..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1031.png b/front/public/images/large/gregtech/gt.blockores/1031.png deleted file mode 100644 index 2a68eb3365..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1032.png b/front/public/images/large/gregtech/gt.blockores/1032.png deleted file mode 100644 index 303021829d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1033.png b/front/public/images/large/gregtech/gt.blockores/1033.png deleted file mode 100644 index c9ac116fc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1034.png b/front/public/images/large/gregtech/gt.blockores/1034.png deleted file mode 100644 index 35b0f47c05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1035.png b/front/public/images/large/gregtech/gt.blockores/1035.png deleted file mode 100644 index 32b427cfee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1036.png b/front/public/images/large/gregtech/gt.blockores/1036.png deleted file mode 100644 index 19ffe64c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1037.png b/front/public/images/large/gregtech/gt.blockores/1037.png deleted file mode 100644 index 621758967d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1039.png b/front/public/images/large/gregtech/gt.blockores/1039.png deleted file mode 100644 index 30722183db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1043.png b/front/public/images/large/gregtech/gt.blockores/1043.png deleted file mode 100644 index 1f5496078a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1044.png b/front/public/images/large/gregtech/gt.blockores/1044.png deleted file mode 100644 index 303021829d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1045.png b/front/public/images/large/gregtech/gt.blockores/1045.png deleted file mode 100644 index 0206f55fa3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1047.png b/front/public/images/large/gregtech/gt.blockores/1047.png deleted file mode 100644 index 405efa96cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1048.png b/front/public/images/large/gregtech/gt.blockores/1048.png deleted file mode 100644 index 608a0a52e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1052.png b/front/public/images/large/gregtech/gt.blockores/1052.png deleted file mode 100644 index 91fc9a8daa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1054.png b/front/public/images/large/gregtech/gt.blockores/1054.png deleted file mode 100644 index 621758967d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1055.png b/front/public/images/large/gregtech/gt.blockores/1055.png deleted file mode 100644 index 53f2de73de..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1056.png b/front/public/images/large/gregtech/gt.blockores/1056.png deleted file mode 100644 index 9b2c9a09ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1057.png b/front/public/images/large/gregtech/gt.blockores/1057.png deleted file mode 100644 index 3a27b4edc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1058.png b/front/public/images/large/gregtech/gt.blockores/1058.png deleted file mode 100644 index 5e72151360..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1059.png b/front/public/images/large/gregtech/gt.blockores/1059.png deleted file mode 100644 index b087635346..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1062.png b/front/public/images/large/gregtech/gt.blockores/1062.png deleted file mode 100644 index 997eac72f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1063.png b/front/public/images/large/gregtech/gt.blockores/1063.png deleted file mode 100644 index 30722183db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1064.png b/front/public/images/large/gregtech/gt.blockores/1064.png deleted file mode 100644 index f04f00fa6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1065.png b/front/public/images/large/gregtech/gt.blockores/1065.png deleted file mode 100644 index 2ffdd7a904..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1066.png b/front/public/images/large/gregtech/gt.blockores/1066.png deleted file mode 100644 index 053bddfd55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1067.png b/front/public/images/large/gregtech/gt.blockores/1067.png deleted file mode 100644 index 3ab13aa7d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1068.png b/front/public/images/large/gregtech/gt.blockores/1068.png deleted file mode 100644 index df87592e39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1069.png b/front/public/images/large/gregtech/gt.blockores/1069.png deleted file mode 100644 index 42437038f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1070.png b/front/public/images/large/gregtech/gt.blockores/1070.png deleted file mode 100644 index fb6ee910c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1071.png b/front/public/images/large/gregtech/gt.blockores/1071.png deleted file mode 100644 index 071c6e3f4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1072.png b/front/public/images/large/gregtech/gt.blockores/1072.png deleted file mode 100644 index 30722183db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1073.png b/front/public/images/large/gregtech/gt.blockores/1073.png deleted file mode 100644 index a8186986b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1074.png b/front/public/images/large/gregtech/gt.blockores/1074.png deleted file mode 100644 index c95b9f38fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1075.png b/front/public/images/large/gregtech/gt.blockores/1075.png deleted file mode 100644 index 41b2efc690..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1076.png b/front/public/images/large/gregtech/gt.blockores/1076.png deleted file mode 100644 index 56b72f9fc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1077.png b/front/public/images/large/gregtech/gt.blockores/1077.png deleted file mode 100644 index ab85d2860d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1078.png b/front/public/images/large/gregtech/gt.blockores/1078.png deleted file mode 100644 index b764904c7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1080.png b/front/public/images/large/gregtech/gt.blockores/1080.png deleted file mode 100644 index 23ee003eed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1081.png b/front/public/images/large/gregtech/gt.blockores/1081.png deleted file mode 100644 index b15ccab6a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1083.png b/front/public/images/large/gregtech/gt.blockores/1083.png deleted file mode 100644 index c4c4a2d1a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1084.png b/front/public/images/large/gregtech/gt.blockores/1084.png deleted file mode 100644 index b4494135f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1085.png b/front/public/images/large/gregtech/gt.blockores/1085.png deleted file mode 100644 index 1852659ecb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1086.png b/front/public/images/large/gregtech/gt.blockores/1086.png deleted file mode 100644 index 5b0349ae28..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1089.png b/front/public/images/large/gregtech/gt.blockores/1089.png deleted file mode 100644 index 26bfe45f36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1090.png b/front/public/images/large/gregtech/gt.blockores/1090.png deleted file mode 100644 index 6017d05276..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1096.png b/front/public/images/large/gregtech/gt.blockores/1096.png deleted file mode 100644 index a0c5959ba1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1097.png b/front/public/images/large/gregtech/gt.blockores/1097.png deleted file mode 100644 index 5f89fd51ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1098.png b/front/public/images/large/gregtech/gt.blockores/1098.png deleted file mode 100644 index 2f268b1f5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/110.png b/front/public/images/large/gregtech/gt.blockores/110.png deleted file mode 100644 index 42be8ee40c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1100.png b/front/public/images/large/gregtech/gt.blockores/1100.png deleted file mode 100644 index 3413927cbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1101.png b/front/public/images/large/gregtech/gt.blockores/1101.png deleted file mode 100644 index d55b41a984..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1103.png b/front/public/images/large/gregtech/gt.blockores/1103.png deleted file mode 100644 index 303021829d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1110.png b/front/public/images/large/gregtech/gt.blockores/1110.png deleted file mode 100644 index bdcfd074b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1129.png b/front/public/images/large/gregtech/gt.blockores/1129.png deleted file mode 100644 index 2a68eb3365..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/129.png b/front/public/images/large/gregtech/gt.blockores/129.png deleted file mode 100644 index 2c9e33d4d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1303.png b/front/public/images/large/gregtech/gt.blockores/1303.png deleted file mode 100644 index f9b17c1a49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1307.png b/front/public/images/large/gregtech/gt.blockores/1307.png deleted file mode 100644 index 581102f9bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1319.png b/front/public/images/large/gregtech/gt.blockores/1319.png deleted file mode 100644 index 5225db2526..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1320.png b/front/public/images/large/gregtech/gt.blockores/1320.png deleted file mode 100644 index b1bebc4f7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1323.png b/front/public/images/large/gregtech/gt.blockores/1323.png deleted file mode 100644 index 032a8e878c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1324.png b/front/public/images/large/gregtech/gt.blockores/1324.png deleted file mode 100644 index b15ccab6a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1326.png b/front/public/images/large/gregtech/gt.blockores/1326.png deleted file mode 100644 index ec4c76b867..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1327.png b/front/public/images/large/gregtech/gt.blockores/1327.png deleted file mode 100644 index 0898ba7d12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1329.png b/front/public/images/large/gregtech/gt.blockores/1329.png deleted file mode 100644 index 742db0ffcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1331.png b/front/public/images/large/gregtech/gt.blockores/1331.png deleted file mode 100644 index b75f5270cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1336.png b/front/public/images/large/gregtech/gt.blockores/1336.png deleted file mode 100644 index d68e86d748..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1340.png b/front/public/images/large/gregtech/gt.blockores/1340.png deleted file mode 100644 index 8b8d24f5f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1342.png b/front/public/images/large/gregtech/gt.blockores/1342.png deleted file mode 100644 index f5ce0eba51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1347.png b/front/public/images/large/gregtech/gt.blockores/1347.png deleted file mode 100644 index 679760cfa0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1368.png b/front/public/images/large/gregtech/gt.blockores/1368.png deleted file mode 100644 index 12b61644e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1375.png b/front/public/images/large/gregtech/gt.blockores/1375.png deleted file mode 100644 index a6a9c55751..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1382.png b/front/public/images/large/gregtech/gt.blockores/1382.png deleted file mode 100644 index 622d1d5d4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1386.png b/front/public/images/large/gregtech/gt.blockores/1386.png deleted file mode 100644 index 874875f8cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1387.png b/front/public/images/large/gregtech/gt.blockores/1387.png deleted file mode 100644 index 6aad48e706..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1388.png b/front/public/images/large/gregtech/gt.blockores/1388.png deleted file mode 100644 index b15ccab6a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1389.png b/front/public/images/large/gregtech/gt.blockores/1389.png deleted file mode 100644 index 640d25dc15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1390.png b/front/public/images/large/gregtech/gt.blockores/1390.png deleted file mode 100644 index ecd87c79c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1391.png b/front/public/images/large/gregtech/gt.blockores/1391.png deleted file mode 100644 index ca34abde56..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1392.png b/front/public/images/large/gregtech/gt.blockores/1392.png deleted file mode 100644 index 5f6b287c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1393.png b/front/public/images/large/gregtech/gt.blockores/1393.png deleted file mode 100644 index 07b6ad65a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1394.png b/front/public/images/large/gregtech/gt.blockores/1394.png deleted file mode 100644 index 5225db2526..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1395.png b/front/public/images/large/gregtech/gt.blockores/1395.png deleted file mode 100644 index b15ccab6a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1398.png b/front/public/images/large/gregtech/gt.blockores/1398.png deleted file mode 100644 index 2880348369..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1485.png b/front/public/images/large/gregtech/gt.blockores/1485.png deleted file mode 100644 index a84d01794f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1488.png b/front/public/images/large/gregtech/gt.blockores/1488.png deleted file mode 100644 index 3108283b7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1489.png b/front/public/images/large/gregtech/gt.blockores/1489.png deleted file mode 100644 index aad55db262..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1500.png b/front/public/images/large/gregtech/gt.blockores/1500.png deleted file mode 100644 index 4e7fb4c19f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1501.png b/front/public/images/large/gregtech/gt.blockores/1501.png deleted file mode 100644 index 4378f2c7fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1502.png b/front/public/images/large/gregtech/gt.blockores/1502.png deleted file mode 100644 index 6a2480680d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1503.png b/front/public/images/large/gregtech/gt.blockores/1503.png deleted file mode 100644 index 151e776316..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1504.png b/front/public/images/large/gregtech/gt.blockores/1504.png deleted file mode 100644 index 4084823301..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1505.png b/front/public/images/large/gregtech/gt.blockores/1505.png deleted file mode 100644 index b28cbc5418..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1506.png b/front/public/images/large/gregtech/gt.blockores/1506.png deleted file mode 100644 index 9f846bccb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1507.png b/front/public/images/large/gregtech/gt.blockores/1507.png deleted file mode 100644 index 2111a30586..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1508.png b/front/public/images/large/gregtech/gt.blockores/1508.png deleted file mode 100644 index ea2c37691e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1509.png b/front/public/images/large/gregtech/gt.blockores/1509.png deleted file mode 100644 index 2103dea2e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1510.png b/front/public/images/large/gregtech/gt.blockores/1510.png deleted file mode 100644 index c224c0e186..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1511.png b/front/public/images/large/gregtech/gt.blockores/1511.png deleted file mode 100644 index 3748ee1e91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1512.png b/front/public/images/large/gregtech/gt.blockores/1512.png deleted file mode 100644 index 6a2480680d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1513.png b/front/public/images/large/gregtech/gt.blockores/1513.png deleted file mode 100644 index c224c0e186..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1514.png b/front/public/images/large/gregtech/gt.blockores/1514.png deleted file mode 100644 index 2111a30586..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1515.png b/front/public/images/large/gregtech/gt.blockores/1515.png deleted file mode 100644 index c257d768de..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1516.png b/front/public/images/large/gregtech/gt.blockores/1516.png deleted file mode 100644 index 3e4cfbaebf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1517.png b/front/public/images/large/gregtech/gt.blockores/1517.png deleted file mode 100644 index 7f8c1825d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1518.png b/front/public/images/large/gregtech/gt.blockores/1518.png deleted file mode 100644 index a20d76b82e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1519.png b/front/public/images/large/gregtech/gt.blockores/1519.png deleted file mode 100644 index a20d76b82e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1520.png b/front/public/images/large/gregtech/gt.blockores/1520.png deleted file mode 100644 index 06310c3877..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1521.png b/front/public/images/large/gregtech/gt.blockores/1521.png deleted file mode 100644 index 6c45b1aeb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1522.png b/front/public/images/large/gregtech/gt.blockores/1522.png deleted file mode 100644 index 689143a739..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1523.png b/front/public/images/large/gregtech/gt.blockores/1523.png deleted file mode 100644 index ae06a958f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1524.png b/front/public/images/large/gregtech/gt.blockores/1524.png deleted file mode 100644 index fbab586c52..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1525.png b/front/public/images/large/gregtech/gt.blockores/1525.png deleted file mode 100644 index 16cf5201ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1526.png b/front/public/images/large/gregtech/gt.blockores/1526.png deleted file mode 100644 index ba5c63fd71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1527.png b/front/public/images/large/gregtech/gt.blockores/1527.png deleted file mode 100644 index 3748ee1e91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1528.png b/front/public/images/large/gregtech/gt.blockores/1528.png deleted file mode 100644 index 5e85386cbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1529.png b/front/public/images/large/gregtech/gt.blockores/1529.png deleted file mode 100644 index 3a72a465e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1530.png b/front/public/images/large/gregtech/gt.blockores/1530.png deleted file mode 100644 index 93d3c7d61e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1531.png b/front/public/images/large/gregtech/gt.blockores/1531.png deleted file mode 100644 index 51cae4cd16..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1534.png b/front/public/images/large/gregtech/gt.blockores/1534.png deleted file mode 100644 index e876ca47db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1535.png b/front/public/images/large/gregtech/gt.blockores/1535.png deleted file mode 100644 index 9db313ab22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1537.png b/front/public/images/large/gregtech/gt.blockores/1537.png deleted file mode 100644 index dbe0d5cdc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1538.png b/front/public/images/large/gregtech/gt.blockores/1538.png deleted file mode 100644 index 7415399a40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1540.png b/front/public/images/large/gregtech/gt.blockores/1540.png deleted file mode 100644 index dbd8e41e24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1541.png b/front/public/images/large/gregtech/gt.blockores/1541.png deleted file mode 100644 index aba16e28b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1542.png b/front/public/images/large/gregtech/gt.blockores/1542.png deleted file mode 100644 index 7f895cfeba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1543.png b/front/public/images/large/gregtech/gt.blockores/1543.png deleted file mode 100644 index bee20b8776..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1544.png b/front/public/images/large/gregtech/gt.blockores/1544.png deleted file mode 100644 index 3a66203183..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1545.png b/front/public/images/large/gregtech/gt.blockores/1545.png deleted file mode 100644 index 72646f3242..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1548.png b/front/public/images/large/gregtech/gt.blockores/1548.png deleted file mode 100644 index 27c47bb48e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1549.png b/front/public/images/large/gregtech/gt.blockores/1549.png deleted file mode 100644 index 7caf6f92aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16006.png b/front/public/images/large/gregtech/gt.blockores/16006.png deleted file mode 100644 index ef86d6a12f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16008.png b/front/public/images/large/gregtech/gt.blockores/16008.png deleted file mode 100644 index a2c8e0e6a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16018.png b/front/public/images/large/gregtech/gt.blockores/16018.png deleted file mode 100644 index 0248b4bdb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16019.png b/front/public/images/large/gregtech/gt.blockores/16019.png deleted file mode 100644 index c8f415d0bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16020.png b/front/public/images/large/gregtech/gt.blockores/16020.png deleted file mode 100644 index 333371f4c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16022.png b/front/public/images/large/gregtech/gt.blockores/16022.png deleted file mode 100644 index 6cc68f6205..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16027.png b/front/public/images/large/gregtech/gt.blockores/16027.png deleted file mode 100644 index dec9d77177..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16028.png b/front/public/images/large/gregtech/gt.blockores/16028.png deleted file mode 100644 index a7ac54eb81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16029.png b/front/public/images/large/gregtech/gt.blockores/16029.png deleted file mode 100644 index 8eeba6e8b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16030.png b/front/public/images/large/gregtech/gt.blockores/16030.png deleted file mode 100644 index 52905c4850..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16031.png b/front/public/images/large/gregtech/gt.blockores/16031.png deleted file mode 100644 index 09ed1c393b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16032.png b/front/public/images/large/gregtech/gt.blockores/16032.png deleted file mode 100644 index 39951689f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16033.png b/front/public/images/large/gregtech/gt.blockores/16033.png deleted file mode 100644 index 774a3d4cca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16034.png b/front/public/images/large/gregtech/gt.blockores/16034.png deleted file mode 100644 index 6eb408fbd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16035.png b/front/public/images/large/gregtech/gt.blockores/16035.png deleted file mode 100644 index aa098ad54a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16036.png b/front/public/images/large/gregtech/gt.blockores/16036.png deleted file mode 100644 index 928a02c3df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16037.png b/front/public/images/large/gregtech/gt.blockores/16037.png deleted file mode 100644 index 42efcdc55e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16039.png b/front/public/images/large/gregtech/gt.blockores/16039.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16043.png b/front/public/images/large/gregtech/gt.blockores/16043.png deleted file mode 100644 index 9a433282cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16044.png b/front/public/images/large/gregtech/gt.blockores/16044.png deleted file mode 100644 index 39951689f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16045.png b/front/public/images/large/gregtech/gt.blockores/16045.png deleted file mode 100644 index 1e1ce978c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16047.png b/front/public/images/large/gregtech/gt.blockores/16047.png deleted file mode 100644 index beaa8cc792..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16048.png b/front/public/images/large/gregtech/gt.blockores/16048.png deleted file mode 100644 index f127469a8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16052.png b/front/public/images/large/gregtech/gt.blockores/16052.png deleted file mode 100644 index d933a907b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16054.png b/front/public/images/large/gregtech/gt.blockores/16054.png deleted file mode 100644 index 42efcdc55e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16055.png b/front/public/images/large/gregtech/gt.blockores/16055.png deleted file mode 100644 index c93eae93c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16056.png b/front/public/images/large/gregtech/gt.blockores/16056.png deleted file mode 100644 index 730373426a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16057.png b/front/public/images/large/gregtech/gt.blockores/16057.png deleted file mode 100644 index ff6484575d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16058.png b/front/public/images/large/gregtech/gt.blockores/16058.png deleted file mode 100644 index 770f219c03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16059.png b/front/public/images/large/gregtech/gt.blockores/16059.png deleted file mode 100644 index dc01d4fcb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16062.png b/front/public/images/large/gregtech/gt.blockores/16062.png deleted file mode 100644 index 300537aa0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16063.png b/front/public/images/large/gregtech/gt.blockores/16063.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16064.png b/front/public/images/large/gregtech/gt.blockores/16064.png deleted file mode 100644 index d0bfec1624..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16065.png b/front/public/images/large/gregtech/gt.blockores/16065.png deleted file mode 100644 index dd84d140fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16066.png b/front/public/images/large/gregtech/gt.blockores/16066.png deleted file mode 100644 index 2c31471145..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16067.png b/front/public/images/large/gregtech/gt.blockores/16067.png deleted file mode 100644 index a96d36be16..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16068.png b/front/public/images/large/gregtech/gt.blockores/16068.png deleted file mode 100644 index 7f372e30ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16069.png b/front/public/images/large/gregtech/gt.blockores/16069.png deleted file mode 100644 index 46eed70562..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1607.png b/front/public/images/large/gregtech/gt.blockores/1607.png deleted file mode 100644 index 4b5777534f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16070.png b/front/public/images/large/gregtech/gt.blockores/16070.png deleted file mode 100644 index 30ecd12873..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16071.png b/front/public/images/large/gregtech/gt.blockores/16071.png deleted file mode 100644 index 9eb95950cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16072.png b/front/public/images/large/gregtech/gt.blockores/16072.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16073.png b/front/public/images/large/gregtech/gt.blockores/16073.png deleted file mode 100644 index 113ec407d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16074.png b/front/public/images/large/gregtech/gt.blockores/16074.png deleted file mode 100644 index 29f270bccd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16075.png b/front/public/images/large/gregtech/gt.blockores/16075.png deleted file mode 100644 index 6ee20c0b0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16076.png b/front/public/images/large/gregtech/gt.blockores/16076.png deleted file mode 100644 index 1fe3178fba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16077.png b/front/public/images/large/gregtech/gt.blockores/16077.png deleted file mode 100644 index a07eb1c965..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16078.png b/front/public/images/large/gregtech/gt.blockores/16078.png deleted file mode 100644 index 55f54859e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16080.png b/front/public/images/large/gregtech/gt.blockores/16080.png deleted file mode 100644 index c43140563a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16081.png b/front/public/images/large/gregtech/gt.blockores/16081.png deleted file mode 100644 index 8eeba6e8b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16083.png b/front/public/images/large/gregtech/gt.blockores/16083.png deleted file mode 100644 index 0cfccbb77a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16084.png b/front/public/images/large/gregtech/gt.blockores/16084.png deleted file mode 100644 index 9bd28da05f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16085.png b/front/public/images/large/gregtech/gt.blockores/16085.png deleted file mode 100644 index 6957eaaebe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16086.png b/front/public/images/large/gregtech/gt.blockores/16086.png deleted file mode 100644 index b7512f931e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16089.png b/front/public/images/large/gregtech/gt.blockores/16089.png deleted file mode 100644 index b0fa188da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16090.png b/front/public/images/large/gregtech/gt.blockores/16090.png deleted file mode 100644 index 4306330222..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16096.png b/front/public/images/large/gregtech/gt.blockores/16096.png deleted file mode 100644 index c18f88e762..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16097.png b/front/public/images/large/gregtech/gt.blockores/16097.png deleted file mode 100644 index f1532d3385..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16098.png b/front/public/images/large/gregtech/gt.blockores/16098.png deleted file mode 100644 index 64e5dcb6f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16100.png b/front/public/images/large/gregtech/gt.blockores/16100.png deleted file mode 100644 index 06c06c2c7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16101.png b/front/public/images/large/gregtech/gt.blockores/16101.png deleted file mode 100644 index 020a4afb11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16103.png b/front/public/images/large/gregtech/gt.blockores/16103.png deleted file mode 100644 index 39951689f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16110.png b/front/public/images/large/gregtech/gt.blockores/16110.png deleted file mode 100644 index 9193156119..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16129.png b/front/public/images/large/gregtech/gt.blockores/16129.png deleted file mode 100644 index 09ed1c393b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16303.png b/front/public/images/large/gregtech/gt.blockores/16303.png deleted file mode 100644 index 8c401eadf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16307.png b/front/public/images/large/gregtech/gt.blockores/16307.png deleted file mode 100644 index 713aeae73d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16319.png b/front/public/images/large/gregtech/gt.blockores/16319.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16320.png b/front/public/images/large/gregtech/gt.blockores/16320.png deleted file mode 100644 index 759365e516..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16323.png b/front/public/images/large/gregtech/gt.blockores/16323.png deleted file mode 100644 index bff0ba7a72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16324.png b/front/public/images/large/gregtech/gt.blockores/16324.png deleted file mode 100644 index 8eeba6e8b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16326.png b/front/public/images/large/gregtech/gt.blockores/16326.png deleted file mode 100644 index fa21670692..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16327.png b/front/public/images/large/gregtech/gt.blockores/16327.png deleted file mode 100644 index 3bf9a1e07f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16329.png b/front/public/images/large/gregtech/gt.blockores/16329.png deleted file mode 100644 index 0d7be25eaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16331.png b/front/public/images/large/gregtech/gt.blockores/16331.png deleted file mode 100644 index 7c418d6e89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16336.png b/front/public/images/large/gregtech/gt.blockores/16336.png deleted file mode 100644 index 9deb8760c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16340.png b/front/public/images/large/gregtech/gt.blockores/16340.png deleted file mode 100644 index c7b779db92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16342.png b/front/public/images/large/gregtech/gt.blockores/16342.png deleted file mode 100644 index 92cbf24d9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16347.png b/front/public/images/large/gregtech/gt.blockores/16347.png deleted file mode 100644 index bdc4d8524a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16368.png b/front/public/images/large/gregtech/gt.blockores/16368.png deleted file mode 100644 index 49954eb552..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16375.png b/front/public/images/large/gregtech/gt.blockores/16375.png deleted file mode 100644 index cd70b8e6e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16382.png b/front/public/images/large/gregtech/gt.blockores/16382.png deleted file mode 100644 index b7d97920a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16386.png b/front/public/images/large/gregtech/gt.blockores/16386.png deleted file mode 100644 index 5c518cae89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16387.png b/front/public/images/large/gregtech/gt.blockores/16387.png deleted file mode 100644 index 8ca072a6af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16388.png b/front/public/images/large/gregtech/gt.blockores/16388.png deleted file mode 100644 index 8eeba6e8b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16389.png b/front/public/images/large/gregtech/gt.blockores/16389.png deleted file mode 100644 index c1f9677f0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16390.png b/front/public/images/large/gregtech/gt.blockores/16390.png deleted file mode 100644 index 7f4a3b190a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16391.png b/front/public/images/large/gregtech/gt.blockores/16391.png deleted file mode 100644 index 107fbf7726..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16392.png b/front/public/images/large/gregtech/gt.blockores/16392.png deleted file mode 100644 index d205758931..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16393.png b/front/public/images/large/gregtech/gt.blockores/16393.png deleted file mode 100644 index 3977a72a70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16394.png b/front/public/images/large/gregtech/gt.blockores/16394.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16395.png b/front/public/images/large/gregtech/gt.blockores/16395.png deleted file mode 100644 index 8eeba6e8b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16398.png b/front/public/images/large/gregtech/gt.blockores/16398.png deleted file mode 100644 index f6ae5fe9e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16485.png b/front/public/images/large/gregtech/gt.blockores/16485.png deleted file mode 100644 index 02dfc758ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16488.png b/front/public/images/large/gregtech/gt.blockores/16488.png deleted file mode 100644 index 092da31036..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16489.png b/front/public/images/large/gregtech/gt.blockores/16489.png deleted file mode 100644 index 75df35f25c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16500.png b/front/public/images/large/gregtech/gt.blockores/16500.png deleted file mode 100644 index bd148e2d88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16501.png b/front/public/images/large/gregtech/gt.blockores/16501.png deleted file mode 100644 index 368ccb21b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16502.png b/front/public/images/large/gregtech/gt.blockores/16502.png deleted file mode 100644 index 9d93027e40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16503.png b/front/public/images/large/gregtech/gt.blockores/16503.png deleted file mode 100644 index 2c836bfd70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16504.png b/front/public/images/large/gregtech/gt.blockores/16504.png deleted file mode 100644 index a6aa6a98a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16505.png b/front/public/images/large/gregtech/gt.blockores/16505.png deleted file mode 100644 index 19940c2c24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16506.png b/front/public/images/large/gregtech/gt.blockores/16506.png deleted file mode 100644 index 09ed1c393b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16507.png b/front/public/images/large/gregtech/gt.blockores/16507.png deleted file mode 100644 index 5556f230a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16508.png b/front/public/images/large/gregtech/gt.blockores/16508.png deleted file mode 100644 index d33fac3264..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16509.png b/front/public/images/large/gregtech/gt.blockores/16509.png deleted file mode 100644 index 859f15933d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16510.png b/front/public/images/large/gregtech/gt.blockores/16510.png deleted file mode 100644 index 70ddb987d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16511.png b/front/public/images/large/gregtech/gt.blockores/16511.png deleted file mode 100644 index eb8a8de286..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16512.png b/front/public/images/large/gregtech/gt.blockores/16512.png deleted file mode 100644 index 9d93027e40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16513.png b/front/public/images/large/gregtech/gt.blockores/16513.png deleted file mode 100644 index 70ddb987d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16514.png b/front/public/images/large/gregtech/gt.blockores/16514.png deleted file mode 100644 index 5556f230a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16515.png b/front/public/images/large/gregtech/gt.blockores/16515.png deleted file mode 100644 index 5bdc899ef8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16516.png b/front/public/images/large/gregtech/gt.blockores/16516.png deleted file mode 100644 index dfe577b643..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16517.png b/front/public/images/large/gregtech/gt.blockores/16517.png deleted file mode 100644 index bc38b3716a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16518.png b/front/public/images/large/gregtech/gt.blockores/16518.png deleted file mode 100644 index 33e24ef45b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16519.png b/front/public/images/large/gregtech/gt.blockores/16519.png deleted file mode 100644 index 33e24ef45b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16520.png b/front/public/images/large/gregtech/gt.blockores/16520.png deleted file mode 100644 index d30abf367a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16521.png b/front/public/images/large/gregtech/gt.blockores/16521.png deleted file mode 100644 index 3e26fe2810..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16522.png b/front/public/images/large/gregtech/gt.blockores/16522.png deleted file mode 100644 index 89d3748388..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16523.png b/front/public/images/large/gregtech/gt.blockores/16523.png deleted file mode 100644 index bac80cab02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16524.png b/front/public/images/large/gregtech/gt.blockores/16524.png deleted file mode 100644 index a32b8eef73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16525.png b/front/public/images/large/gregtech/gt.blockores/16525.png deleted file mode 100644 index b448e6c2f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16526.png b/front/public/images/large/gregtech/gt.blockores/16526.png deleted file mode 100644 index c0b25caed9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16527.png b/front/public/images/large/gregtech/gt.blockores/16527.png deleted file mode 100644 index eb8a8de286..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16528.png b/front/public/images/large/gregtech/gt.blockores/16528.png deleted file mode 100644 index 8560f3059a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16529.png b/front/public/images/large/gregtech/gt.blockores/16529.png deleted file mode 100644 index e6259fcaf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16530.png b/front/public/images/large/gregtech/gt.blockores/16530.png deleted file mode 100644 index 2ae2c831be..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16531.png b/front/public/images/large/gregtech/gt.blockores/16531.png deleted file mode 100644 index 0248b4bdb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16534.png b/front/public/images/large/gregtech/gt.blockores/16534.png deleted file mode 100644 index 03372898bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16535.png b/front/public/images/large/gregtech/gt.blockores/16535.png deleted file mode 100644 index f481dcb672..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16537.png b/front/public/images/large/gregtech/gt.blockores/16537.png deleted file mode 100644 index 816226b4f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16538.png b/front/public/images/large/gregtech/gt.blockores/16538.png deleted file mode 100644 index 042afbd0c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16540.png b/front/public/images/large/gregtech/gt.blockores/16540.png deleted file mode 100644 index 3e26fe2810..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16541.png b/front/public/images/large/gregtech/gt.blockores/16541.png deleted file mode 100644 index 3b5a1aa5a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16542.png b/front/public/images/large/gregtech/gt.blockores/16542.png deleted file mode 100644 index 1437586bd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16543.png b/front/public/images/large/gregtech/gt.blockores/16543.png deleted file mode 100644 index aa3fdc5d63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16544.png b/front/public/images/large/gregtech/gt.blockores/16544.png deleted file mode 100644 index 804054278c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16545.png b/front/public/images/large/gregtech/gt.blockores/16545.png deleted file mode 100644 index 595df1deed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16548.png b/front/public/images/large/gregtech/gt.blockores/16548.png deleted file mode 100644 index f2617a1ab6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16549.png b/front/public/images/large/gregtech/gt.blockores/16549.png deleted file mode 100644 index d1ef2d73a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16607.png b/front/public/images/large/gregtech/gt.blockores/16607.png deleted file mode 100644 index 0e4cd11a50..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16699.png b/front/public/images/large/gregtech/gt.blockores/16699.png deleted file mode 100644 index d1fff26183..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16770.png b/front/public/images/large/gregtech/gt.blockores/16770.png deleted file mode 100644 index 7da1322148..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16797.png b/front/public/images/large/gregtech/gt.blockores/16797.png deleted file mode 100644 index ff6484575d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16810.png b/front/public/images/large/gregtech/gt.blockores/16810.png deleted file mode 100644 index 2087bc60fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16812.png b/front/public/images/large/gregtech/gt.blockores/16812.png deleted file mode 100644 index 729f36f91d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16817.png b/front/public/images/large/gregtech/gt.blockores/16817.png deleted file mode 100644 index 09ed1c393b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16820.png b/front/public/images/large/gregtech/gt.blockores/16820.png deleted file mode 100644 index fc2d22e114..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16821.png b/front/public/images/large/gregtech/gt.blockores/16821.png deleted file mode 100644 index 8472ea908b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16822.png b/front/public/images/large/gregtech/gt.blockores/16822.png deleted file mode 100644 index ccbb2295c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16823.png b/front/public/images/large/gregtech/gt.blockores/16823.png deleted file mode 100644 index a2330bba56..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16824.png b/front/public/images/large/gregtech/gt.blockores/16824.png deleted file mode 100644 index ff6484575d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16825.png b/front/public/images/large/gregtech/gt.blockores/16825.png deleted file mode 100644 index df397ea6db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16826.png b/front/public/images/large/gregtech/gt.blockores/16826.png deleted file mode 100644 index aaefa99ec0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16827.png b/front/public/images/large/gregtech/gt.blockores/16827.png deleted file mode 100644 index 774a3d4cca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16828.png b/front/public/images/large/gregtech/gt.blockores/16828.png deleted file mode 100644 index 6957eaaebe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16829.png b/front/public/images/large/gregtech/gt.blockores/16829.png deleted file mode 100644 index 71fc936fe3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16830.png b/front/public/images/large/gregtech/gt.blockores/16830.png deleted file mode 100644 index 13a9684b01..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16831.png b/front/public/images/large/gregtech/gt.blockores/16831.png deleted file mode 100644 index ccbb2295c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16833.png b/front/public/images/large/gregtech/gt.blockores/16833.png deleted file mode 100644 index 03372898bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16834.png b/front/public/images/large/gregtech/gt.blockores/16834.png deleted file mode 100644 index 3dba7b6abb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16835.png b/front/public/images/large/gregtech/gt.blockores/16835.png deleted file mode 100644 index dec260748b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16836.png b/front/public/images/large/gregtech/gt.blockores/16836.png deleted file mode 100644 index c70d5bf47d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16838.png b/front/public/images/large/gregtech/gt.blockores/16838.png deleted file mode 100644 index 9d93027e40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16839.png b/front/public/images/large/gregtech/gt.blockores/16839.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16840.png b/front/public/images/large/gregtech/gt.blockores/16840.png deleted file mode 100644 index c255497be0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16841.png b/front/public/images/large/gregtech/gt.blockores/16841.png deleted file mode 100644 index 7fe9b000c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16842.png b/front/public/images/large/gregtech/gt.blockores/16842.png deleted file mode 100644 index ae3e608cde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16855.png b/front/public/images/large/gregtech/gt.blockores/16855.png deleted file mode 100644 index 36f1417f57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16856.png b/front/public/images/large/gregtech/gt.blockores/16856.png deleted file mode 100644 index e0a37a8f1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16861.png b/front/public/images/large/gregtech/gt.blockores/16861.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16865.png b/front/public/images/large/gregtech/gt.blockores/16865.png deleted file mode 100644 index d933a907b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16868.png b/front/public/images/large/gregtech/gt.blockores/16868.png deleted file mode 100644 index ccf215561c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16870.png b/front/public/images/large/gregtech/gt.blockores/16870.png deleted file mode 100644 index 13303cfb80..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16871.png b/front/public/images/large/gregtech/gt.blockores/16871.png deleted file mode 100644 index 52b3060d22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16873.png b/front/public/images/large/gregtech/gt.blockores/16873.png deleted file mode 100644 index 0a9bcb1782..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16877.png b/front/public/images/large/gregtech/gt.blockores/16877.png deleted file mode 100644 index b6656692fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16878.png b/front/public/images/large/gregtech/gt.blockores/16878.png deleted file mode 100644 index 3ac704d923..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16882.png b/front/public/images/large/gregtech/gt.blockores/16882.png deleted file mode 100644 index 5556f230a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16883.png b/front/public/images/large/gregtech/gt.blockores/16883.png deleted file mode 100644 index 03372898bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16884.png b/front/public/images/large/gregtech/gt.blockores/16884.png deleted file mode 100644 index 31926b97f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16894.png b/front/public/images/large/gregtech/gt.blockores/16894.png deleted file mode 100644 index 03372898bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16900.png b/front/public/images/large/gregtech/gt.blockores/16900.png deleted file mode 100644 index fb40e12ff8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16901.png b/front/public/images/large/gregtech/gt.blockores/16901.png deleted file mode 100644 index 1b9b06c5b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16902.png b/front/public/images/large/gregtech/gt.blockores/16902.png deleted file mode 100644 index 6360c8ece3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16903.png b/front/public/images/large/gregtech/gt.blockores/16903.png deleted file mode 100644 index d3d9f85c81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16904.png b/front/public/images/large/gregtech/gt.blockores/16904.png deleted file mode 100644 index a461e7a991..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16905.png b/front/public/images/large/gregtech/gt.blockores/16905.png deleted file mode 100644 index 5a7ca0736b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16906.png b/front/public/images/large/gregtech/gt.blockores/16906.png deleted file mode 100644 index c93fbcc4ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16907.png b/front/public/images/large/gregtech/gt.blockores/16907.png deleted file mode 100644 index 306f6637a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16908.png b/front/public/images/large/gregtech/gt.blockores/16908.png deleted file mode 100644 index 86183a9116..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16909.png b/front/public/images/large/gregtech/gt.blockores/16909.png deleted file mode 100644 index 690e2425fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16910.png b/front/public/images/large/gregtech/gt.blockores/16910.png deleted file mode 100644 index 8957b55224..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16911.png b/front/public/images/large/gregtech/gt.blockores/16911.png deleted file mode 100644 index 8534fdbf68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16912.png b/front/public/images/large/gregtech/gt.blockores/16912.png deleted file mode 100644 index a396d3d363..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16913.png b/front/public/images/large/gregtech/gt.blockores/16913.png deleted file mode 100644 index 8d7cb78b7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16914.png b/front/public/images/large/gregtech/gt.blockores/16914.png deleted file mode 100644 index d7ceed8df1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16915.png b/front/public/images/large/gregtech/gt.blockores/16915.png deleted file mode 100644 index 6400348398..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16916.png b/front/public/images/large/gregtech/gt.blockores/16916.png deleted file mode 100644 index 3c27496470..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16917.png b/front/public/images/large/gregtech/gt.blockores/16917.png deleted file mode 100644 index f69aa827c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16918.png b/front/public/images/large/gregtech/gt.blockores/16918.png deleted file mode 100644 index a453f5359d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16919.png b/front/public/images/large/gregtech/gt.blockores/16919.png deleted file mode 100644 index 063c0ce340..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16920.png b/front/public/images/large/gregtech/gt.blockores/16920.png deleted file mode 100644 index 43dfb709e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16921.png b/front/public/images/large/gregtech/gt.blockores/16921.png deleted file mode 100644 index eab4e99301..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16922.png b/front/public/images/large/gregtech/gt.blockores/16922.png deleted file mode 100644 index d6fb90fef4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16923.png b/front/public/images/large/gregtech/gt.blockores/16923.png deleted file mode 100644 index f509be0319..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16924.png b/front/public/images/large/gregtech/gt.blockores/16924.png deleted file mode 100644 index 427dd43f81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16925.png b/front/public/images/large/gregtech/gt.blockores/16925.png deleted file mode 100644 index 7a1d55133c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16926.png b/front/public/images/large/gregtech/gt.blockores/16926.png deleted file mode 100644 index 0889e6f9d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16927.png b/front/public/images/large/gregtech/gt.blockores/16927.png deleted file mode 100644 index a003c00517..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16928.png b/front/public/images/large/gregtech/gt.blockores/16928.png deleted file mode 100644 index 6ce8853beb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16929.png b/front/public/images/large/gregtech/gt.blockores/16929.png deleted file mode 100644 index efc0280cfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16930.png b/front/public/images/large/gregtech/gt.blockores/16930.png deleted file mode 100644 index ccbb2295c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16931.png b/front/public/images/large/gregtech/gt.blockores/16931.png deleted file mode 100644 index 6cc68f6205..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16932.png b/front/public/images/large/gregtech/gt.blockores/16932.png deleted file mode 100644 index a733bf7141..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16933.png b/front/public/images/large/gregtech/gt.blockores/16933.png deleted file mode 100644 index 928438272d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16934.png b/front/public/images/large/gregtech/gt.blockores/16934.png deleted file mode 100644 index d365072c06..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16935.png b/front/public/images/large/gregtech/gt.blockores/16935.png deleted file mode 100644 index 4e2e9dc0de..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16936.png b/front/public/images/large/gregtech/gt.blockores/16936.png deleted file mode 100644 index db72864d63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16937.png b/front/public/images/large/gregtech/gt.blockores/16937.png deleted file mode 100644 index ff6484575d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16938.png b/front/public/images/large/gregtech/gt.blockores/16938.png deleted file mode 100644 index ccbb2295c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16939.png b/front/public/images/large/gregtech/gt.blockores/16939.png deleted file mode 100644 index 2ddd13b140..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16941.png b/front/public/images/large/gregtech/gt.blockores/16941.png deleted file mode 100644 index 09ed1c393b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16942.png b/front/public/images/large/gregtech/gt.blockores/16942.png deleted file mode 100644 index e0196f0bae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16943.png b/front/public/images/large/gregtech/gt.blockores/16943.png deleted file mode 100644 index a7813decc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16944.png b/front/public/images/large/gregtech/gt.blockores/16944.png deleted file mode 100644 index 4d7cfbe61f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16945.png b/front/public/images/large/gregtech/gt.blockores/16945.png deleted file mode 100644 index f481dcb672..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16946.png b/front/public/images/large/gregtech/gt.blockores/16946.png deleted file mode 100644 index c70d5bf47d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16948.png b/front/public/images/large/gregtech/gt.blockores/16948.png deleted file mode 100644 index 35bc3d1e7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16949.png b/front/public/images/large/gregtech/gt.blockores/16949.png deleted file mode 100644 index 928438272d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16951.png b/front/public/images/large/gregtech/gt.blockores/16951.png deleted file mode 100644 index 54e210b191..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16952.png b/front/public/images/large/gregtech/gt.blockores/16952.png deleted file mode 100644 index 4862f69d71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16956.png b/front/public/images/large/gregtech/gt.blockores/16956.png deleted file mode 100644 index 267d24567a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16966.png b/front/public/images/large/gregtech/gt.blockores/16966.png deleted file mode 100644 index fcc96e5cd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16969.png b/front/public/images/large/gregtech/gt.blockores/16969.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16971.png b/front/public/images/large/gregtech/gt.blockores/16971.png deleted file mode 100644 index 85a0b58c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16975.png b/front/public/images/large/gregtech/gt.blockores/16975.png deleted file mode 100644 index b07d9c25c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16976.png b/front/public/images/large/gregtech/gt.blockores/16976.png deleted file mode 100644 index e96ecfc562..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16978.png b/front/public/images/large/gregtech/gt.blockores/16978.png deleted file mode 100644 index 2130c1436d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16982.png b/front/public/images/large/gregtech/gt.blockores/16982.png deleted file mode 100644 index 8eeba6e8b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/16984.png b/front/public/images/large/gregtech/gt.blockores/16984.png deleted file mode 100644 index f07967ecfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/16984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1699.png b/front/public/images/large/gregtech/gt.blockores/1699.png deleted file mode 100644 index 8dd168ad66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17006.png b/front/public/images/large/gregtech/gt.blockores/17006.png deleted file mode 100644 index 415ade589b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17008.png b/front/public/images/large/gregtech/gt.blockores/17008.png deleted file mode 100644 index 966bcaedd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17018.png b/front/public/images/large/gregtech/gt.blockores/17018.png deleted file mode 100644 index 14f9e032ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17019.png b/front/public/images/large/gregtech/gt.blockores/17019.png deleted file mode 100644 index f9ef00d212..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17020.png b/front/public/images/large/gregtech/gt.blockores/17020.png deleted file mode 100644 index 8a66d1fc42..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17022.png b/front/public/images/large/gregtech/gt.blockores/17022.png deleted file mode 100644 index d438801a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17027.png b/front/public/images/large/gregtech/gt.blockores/17027.png deleted file mode 100644 index 855c4afab1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17028.png b/front/public/images/large/gregtech/gt.blockores/17028.png deleted file mode 100644 index 90bf0f4f2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17029.png b/front/public/images/large/gregtech/gt.blockores/17029.png deleted file mode 100644 index ad4b292452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17030.png b/front/public/images/large/gregtech/gt.blockores/17030.png deleted file mode 100644 index c6f085fe28..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17031.png b/front/public/images/large/gregtech/gt.blockores/17031.png deleted file mode 100644 index 74f5df1fbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17032.png b/front/public/images/large/gregtech/gt.blockores/17032.png deleted file mode 100644 index 3c30cf5171..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17033.png b/front/public/images/large/gregtech/gt.blockores/17033.png deleted file mode 100644 index 674e4adca1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17034.png b/front/public/images/large/gregtech/gt.blockores/17034.png deleted file mode 100644 index e95be14d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17035.png b/front/public/images/large/gregtech/gt.blockores/17035.png deleted file mode 100644 index 80a9e68aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17036.png b/front/public/images/large/gregtech/gt.blockores/17036.png deleted file mode 100644 index 5c9c58b3b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17037.png b/front/public/images/large/gregtech/gt.blockores/17037.png deleted file mode 100644 index 926a607714..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17039.png b/front/public/images/large/gregtech/gt.blockores/17039.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17043.png b/front/public/images/large/gregtech/gt.blockores/17043.png deleted file mode 100644 index 3c5adb922d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17044.png b/front/public/images/large/gregtech/gt.blockores/17044.png deleted file mode 100644 index 3c30cf5171..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17045.png b/front/public/images/large/gregtech/gt.blockores/17045.png deleted file mode 100644 index 60b506c706..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17047.png b/front/public/images/large/gregtech/gt.blockores/17047.png deleted file mode 100644 index 8ec58ba7e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17048.png b/front/public/images/large/gregtech/gt.blockores/17048.png deleted file mode 100644 index e681a5ffb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17052.png b/front/public/images/large/gregtech/gt.blockores/17052.png deleted file mode 100644 index 2601376e11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17054.png b/front/public/images/large/gregtech/gt.blockores/17054.png deleted file mode 100644 index 926a607714..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17055.png b/front/public/images/large/gregtech/gt.blockores/17055.png deleted file mode 100644 index 7ab2b26a9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17056.png b/front/public/images/large/gregtech/gt.blockores/17056.png deleted file mode 100644 index d6ce021b8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17057.png b/front/public/images/large/gregtech/gt.blockores/17057.png deleted file mode 100644 index 5f91e86224..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17058.png b/front/public/images/large/gregtech/gt.blockores/17058.png deleted file mode 100644 index f19625e42f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17059.png b/front/public/images/large/gregtech/gt.blockores/17059.png deleted file mode 100644 index 83b49f99b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17062.png b/front/public/images/large/gregtech/gt.blockores/17062.png deleted file mode 100644 index b92ba9956f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17063.png b/front/public/images/large/gregtech/gt.blockores/17063.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17064.png b/front/public/images/large/gregtech/gt.blockores/17064.png deleted file mode 100644 index 5b374ba270..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17065.png b/front/public/images/large/gregtech/gt.blockores/17065.png deleted file mode 100644 index 446862b44d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17066.png b/front/public/images/large/gregtech/gt.blockores/17066.png deleted file mode 100644 index 80d8faf12e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17067.png b/front/public/images/large/gregtech/gt.blockores/17067.png deleted file mode 100644 index b71afb8a5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17068.png b/front/public/images/large/gregtech/gt.blockores/17068.png deleted file mode 100644 index 30e9be27ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17069.png b/front/public/images/large/gregtech/gt.blockores/17069.png deleted file mode 100644 index e560413954..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17070.png b/front/public/images/large/gregtech/gt.blockores/17070.png deleted file mode 100644 index a382633117..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17071.png b/front/public/images/large/gregtech/gt.blockores/17071.png deleted file mode 100644 index 3fdc9e4fee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17072.png b/front/public/images/large/gregtech/gt.blockores/17072.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17073.png b/front/public/images/large/gregtech/gt.blockores/17073.png deleted file mode 100644 index dcddb9f343..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17074.png b/front/public/images/large/gregtech/gt.blockores/17074.png deleted file mode 100644 index 566266313b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17075.png b/front/public/images/large/gregtech/gt.blockores/17075.png deleted file mode 100644 index 49fbcb4f6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17076.png b/front/public/images/large/gregtech/gt.blockores/17076.png deleted file mode 100644 index 1676c070b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17077.png b/front/public/images/large/gregtech/gt.blockores/17077.png deleted file mode 100644 index 179f358e51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17078.png b/front/public/images/large/gregtech/gt.blockores/17078.png deleted file mode 100644 index ef6ed82e85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17080.png b/front/public/images/large/gregtech/gt.blockores/17080.png deleted file mode 100644 index d6904c2b02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17081.png b/front/public/images/large/gregtech/gt.blockores/17081.png deleted file mode 100644 index ad4b292452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17083.png b/front/public/images/large/gregtech/gt.blockores/17083.png deleted file mode 100644 index 446caa194c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17084.png b/front/public/images/large/gregtech/gt.blockores/17084.png deleted file mode 100644 index 3a868eb32b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17085.png b/front/public/images/large/gregtech/gt.blockores/17085.png deleted file mode 100644 index 686345d405..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17086.png b/front/public/images/large/gregtech/gt.blockores/17086.png deleted file mode 100644 index 078e207063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17089.png b/front/public/images/large/gregtech/gt.blockores/17089.png deleted file mode 100644 index 524af3d906..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17090.png b/front/public/images/large/gregtech/gt.blockores/17090.png deleted file mode 100644 index 3e0bcba880..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17096.png b/front/public/images/large/gregtech/gt.blockores/17096.png deleted file mode 100644 index 4179923002..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17097.png b/front/public/images/large/gregtech/gt.blockores/17097.png deleted file mode 100644 index 05f9054b32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17098.png b/front/public/images/large/gregtech/gt.blockores/17098.png deleted file mode 100644 index 65b232f5ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17100.png b/front/public/images/large/gregtech/gt.blockores/17100.png deleted file mode 100644 index 6738616c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17101.png b/front/public/images/large/gregtech/gt.blockores/17101.png deleted file mode 100644 index 9844399170..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17103.png b/front/public/images/large/gregtech/gt.blockores/17103.png deleted file mode 100644 index 3c30cf5171..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17110.png b/front/public/images/large/gregtech/gt.blockores/17110.png deleted file mode 100644 index c42255ccad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17129.png b/front/public/images/large/gregtech/gt.blockores/17129.png deleted file mode 100644 index 74f5df1fbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17303.png b/front/public/images/large/gregtech/gt.blockores/17303.png deleted file mode 100644 index b5487012d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17307.png b/front/public/images/large/gregtech/gt.blockores/17307.png deleted file mode 100644 index 7d3a708fbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17319.png b/front/public/images/large/gregtech/gt.blockores/17319.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17320.png b/front/public/images/large/gregtech/gt.blockores/17320.png deleted file mode 100644 index 34311a11d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17323.png b/front/public/images/large/gregtech/gt.blockores/17323.png deleted file mode 100644 index fcd8491a6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17324.png b/front/public/images/large/gregtech/gt.blockores/17324.png deleted file mode 100644 index ad4b292452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17326.png b/front/public/images/large/gregtech/gt.blockores/17326.png deleted file mode 100644 index ed8ee4dde4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17327.png b/front/public/images/large/gregtech/gt.blockores/17327.png deleted file mode 100644 index cc246be380..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17329.png b/front/public/images/large/gregtech/gt.blockores/17329.png deleted file mode 100644 index 90f3347f7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17331.png b/front/public/images/large/gregtech/gt.blockores/17331.png deleted file mode 100644 index 46cc53e930..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17336.png b/front/public/images/large/gregtech/gt.blockores/17336.png deleted file mode 100644 index 24d3ddeee5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17340.png b/front/public/images/large/gregtech/gt.blockores/17340.png deleted file mode 100644 index 89efb81827..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17342.png b/front/public/images/large/gregtech/gt.blockores/17342.png deleted file mode 100644 index 3a604333a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17347.png b/front/public/images/large/gregtech/gt.blockores/17347.png deleted file mode 100644 index 1cb8791501..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17368.png b/front/public/images/large/gregtech/gt.blockores/17368.png deleted file mode 100644 index c9062536f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17375.png b/front/public/images/large/gregtech/gt.blockores/17375.png deleted file mode 100644 index b47560a615..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17382.png b/front/public/images/large/gregtech/gt.blockores/17382.png deleted file mode 100644 index d42c5bacf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17386.png b/front/public/images/large/gregtech/gt.blockores/17386.png deleted file mode 100644 index b4eedb2091..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17387.png b/front/public/images/large/gregtech/gt.blockores/17387.png deleted file mode 100644 index 0570b541a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17388.png b/front/public/images/large/gregtech/gt.blockores/17388.png deleted file mode 100644 index ad4b292452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17389.png b/front/public/images/large/gregtech/gt.blockores/17389.png deleted file mode 100644 index 5dffefd0d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17390.png b/front/public/images/large/gregtech/gt.blockores/17390.png deleted file mode 100644 index 7cfda7e7c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17391.png b/front/public/images/large/gregtech/gt.blockores/17391.png deleted file mode 100644 index ffa7c350b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17392.png b/front/public/images/large/gregtech/gt.blockores/17392.png deleted file mode 100644 index a2611a418c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17393.png b/front/public/images/large/gregtech/gt.blockores/17393.png deleted file mode 100644 index 7f50708625..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17394.png b/front/public/images/large/gregtech/gt.blockores/17394.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17395.png b/front/public/images/large/gregtech/gt.blockores/17395.png deleted file mode 100644 index ad4b292452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17398.png b/front/public/images/large/gregtech/gt.blockores/17398.png deleted file mode 100644 index f44c8adf6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17485.png b/front/public/images/large/gregtech/gt.blockores/17485.png deleted file mode 100644 index b5f40050d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17488.png b/front/public/images/large/gregtech/gt.blockores/17488.png deleted file mode 100644 index 535f6d6cf1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17489.png b/front/public/images/large/gregtech/gt.blockores/17489.png deleted file mode 100644 index a52039d07f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17500.png b/front/public/images/large/gregtech/gt.blockores/17500.png deleted file mode 100644 index 037d492815..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17501.png b/front/public/images/large/gregtech/gt.blockores/17501.png deleted file mode 100644 index 98334d8bec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17502.png b/front/public/images/large/gregtech/gt.blockores/17502.png deleted file mode 100644 index cbddba257d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17503.png b/front/public/images/large/gregtech/gt.blockores/17503.png deleted file mode 100644 index ccb57ec368..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17504.png b/front/public/images/large/gregtech/gt.blockores/17504.png deleted file mode 100644 index 2619880b4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17505.png b/front/public/images/large/gregtech/gt.blockores/17505.png deleted file mode 100644 index 89b0a79e9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17506.png b/front/public/images/large/gregtech/gt.blockores/17506.png deleted file mode 100644 index 74f5df1fbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17507.png b/front/public/images/large/gregtech/gt.blockores/17507.png deleted file mode 100644 index fc2e8a18c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17508.png b/front/public/images/large/gregtech/gt.blockores/17508.png deleted file mode 100644 index d5137ff196..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17509.png b/front/public/images/large/gregtech/gt.blockores/17509.png deleted file mode 100644 index 52ddabda7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17510.png b/front/public/images/large/gregtech/gt.blockores/17510.png deleted file mode 100644 index 13256acdc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17511.png b/front/public/images/large/gregtech/gt.blockores/17511.png deleted file mode 100644 index 50bcd4fe2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17512.png b/front/public/images/large/gregtech/gt.blockores/17512.png deleted file mode 100644 index cbddba257d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17513.png b/front/public/images/large/gregtech/gt.blockores/17513.png deleted file mode 100644 index 13256acdc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17514.png b/front/public/images/large/gregtech/gt.blockores/17514.png deleted file mode 100644 index fc2e8a18c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17515.png b/front/public/images/large/gregtech/gt.blockores/17515.png deleted file mode 100644 index 2a602f905f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17516.png b/front/public/images/large/gregtech/gt.blockores/17516.png deleted file mode 100644 index f41688c758..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17517.png b/front/public/images/large/gregtech/gt.blockores/17517.png deleted file mode 100644 index a4470b2a01..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17518.png b/front/public/images/large/gregtech/gt.blockores/17518.png deleted file mode 100644 index 4f81758ebd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17519.png b/front/public/images/large/gregtech/gt.blockores/17519.png deleted file mode 100644 index 4f81758ebd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17520.png b/front/public/images/large/gregtech/gt.blockores/17520.png deleted file mode 100644 index 4581db19c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17521.png b/front/public/images/large/gregtech/gt.blockores/17521.png deleted file mode 100644 index a471fec780..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17522.png b/front/public/images/large/gregtech/gt.blockores/17522.png deleted file mode 100644 index 748cea7c46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17523.png b/front/public/images/large/gregtech/gt.blockores/17523.png deleted file mode 100644 index 22593242bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17524.png b/front/public/images/large/gregtech/gt.blockores/17524.png deleted file mode 100644 index 79a2e6d507..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17525.png b/front/public/images/large/gregtech/gt.blockores/17525.png deleted file mode 100644 index 6dfbee2c63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17526.png b/front/public/images/large/gregtech/gt.blockores/17526.png deleted file mode 100644 index f6ff4d5d50..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17527.png b/front/public/images/large/gregtech/gt.blockores/17527.png deleted file mode 100644 index 50bcd4fe2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17528.png b/front/public/images/large/gregtech/gt.blockores/17528.png deleted file mode 100644 index f4d92e0ed6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17529.png b/front/public/images/large/gregtech/gt.blockores/17529.png deleted file mode 100644 index 98ee0dd894..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17530.png b/front/public/images/large/gregtech/gt.blockores/17530.png deleted file mode 100644 index d1eee6ddc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17531.png b/front/public/images/large/gregtech/gt.blockores/17531.png deleted file mode 100644 index 14f9e032ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17534.png b/front/public/images/large/gregtech/gt.blockores/17534.png deleted file mode 100644 index a49add9da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17535.png b/front/public/images/large/gregtech/gt.blockores/17535.png deleted file mode 100644 index f7de32058c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17537.png b/front/public/images/large/gregtech/gt.blockores/17537.png deleted file mode 100644 index 1299ddddab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17538.png b/front/public/images/large/gregtech/gt.blockores/17538.png deleted file mode 100644 index dd77821fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17540.png b/front/public/images/large/gregtech/gt.blockores/17540.png deleted file mode 100644 index a471fec780..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17541.png b/front/public/images/large/gregtech/gt.blockores/17541.png deleted file mode 100644 index b727498b2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17542.png b/front/public/images/large/gregtech/gt.blockores/17542.png deleted file mode 100644 index cf80199270..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17543.png b/front/public/images/large/gregtech/gt.blockores/17543.png deleted file mode 100644 index 9cf0c420b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17544.png b/front/public/images/large/gregtech/gt.blockores/17544.png deleted file mode 100644 index 52106a3252..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17545.png b/front/public/images/large/gregtech/gt.blockores/17545.png deleted file mode 100644 index dca80226be..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17548.png b/front/public/images/large/gregtech/gt.blockores/17548.png deleted file mode 100644 index 1472729819..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17549.png b/front/public/images/large/gregtech/gt.blockores/17549.png deleted file mode 100644 index 31f09cf05a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17607.png b/front/public/images/large/gregtech/gt.blockores/17607.png deleted file mode 100644 index ad416737db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17699.png b/front/public/images/large/gregtech/gt.blockores/17699.png deleted file mode 100644 index 6eeb253016..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1770.png b/front/public/images/large/gregtech/gt.blockores/1770.png deleted file mode 100644 index b31fcbe545..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17770.png b/front/public/images/large/gregtech/gt.blockores/17770.png deleted file mode 100644 index 86431ccf92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17797.png b/front/public/images/large/gregtech/gt.blockores/17797.png deleted file mode 100644 index 5f91e86224..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17810.png b/front/public/images/large/gregtech/gt.blockores/17810.png deleted file mode 100644 index 9d19271ecb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17812.png b/front/public/images/large/gregtech/gt.blockores/17812.png deleted file mode 100644 index 9e15c46fbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17817.png b/front/public/images/large/gregtech/gt.blockores/17817.png deleted file mode 100644 index 74f5df1fbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17820.png b/front/public/images/large/gregtech/gt.blockores/17820.png deleted file mode 100644 index 43ed79fae2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17821.png b/front/public/images/large/gregtech/gt.blockores/17821.png deleted file mode 100644 index 9a476c9977..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17822.png b/front/public/images/large/gregtech/gt.blockores/17822.png deleted file mode 100644 index a3efb0004a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17823.png b/front/public/images/large/gregtech/gt.blockores/17823.png deleted file mode 100644 index 06d1498fba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17824.png b/front/public/images/large/gregtech/gt.blockores/17824.png deleted file mode 100644 index 5f91e86224..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17825.png b/front/public/images/large/gregtech/gt.blockores/17825.png deleted file mode 100644 index 915469fa13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17826.png b/front/public/images/large/gregtech/gt.blockores/17826.png deleted file mode 100644 index c8b913932f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17827.png b/front/public/images/large/gregtech/gt.blockores/17827.png deleted file mode 100644 index 674e4adca1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17828.png b/front/public/images/large/gregtech/gt.blockores/17828.png deleted file mode 100644 index 686345d405..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17829.png b/front/public/images/large/gregtech/gt.blockores/17829.png deleted file mode 100644 index 81b65702e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17830.png b/front/public/images/large/gregtech/gt.blockores/17830.png deleted file mode 100644 index 920fe0fc24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17831.png b/front/public/images/large/gregtech/gt.blockores/17831.png deleted file mode 100644 index a3efb0004a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17833.png b/front/public/images/large/gregtech/gt.blockores/17833.png deleted file mode 100644 index a49add9da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17834.png b/front/public/images/large/gregtech/gt.blockores/17834.png deleted file mode 100644 index d9544c5e81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17835.png b/front/public/images/large/gregtech/gt.blockores/17835.png deleted file mode 100644 index 2bb94316e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17836.png b/front/public/images/large/gregtech/gt.blockores/17836.png deleted file mode 100644 index dcc8e75866..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17838.png b/front/public/images/large/gregtech/gt.blockores/17838.png deleted file mode 100644 index cbddba257d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17839.png b/front/public/images/large/gregtech/gt.blockores/17839.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17840.png b/front/public/images/large/gregtech/gt.blockores/17840.png deleted file mode 100644 index b46b4f6d62..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17841.png b/front/public/images/large/gregtech/gt.blockores/17841.png deleted file mode 100644 index d186fa1cb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17842.png b/front/public/images/large/gregtech/gt.blockores/17842.png deleted file mode 100644 index aa8e913e48..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17855.png b/front/public/images/large/gregtech/gt.blockores/17855.png deleted file mode 100644 index b74d7fb8ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17856.png b/front/public/images/large/gregtech/gt.blockores/17856.png deleted file mode 100644 index ca4e12ad1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17861.png b/front/public/images/large/gregtech/gt.blockores/17861.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17865.png b/front/public/images/large/gregtech/gt.blockores/17865.png deleted file mode 100644 index 2601376e11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17868.png b/front/public/images/large/gregtech/gt.blockores/17868.png deleted file mode 100644 index a5b8fb270c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17870.png b/front/public/images/large/gregtech/gt.blockores/17870.png deleted file mode 100644 index 88e7f02f08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17871.png b/front/public/images/large/gregtech/gt.blockores/17871.png deleted file mode 100644 index 7ae35ca9c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17873.png b/front/public/images/large/gregtech/gt.blockores/17873.png deleted file mode 100644 index 6c016f01a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17877.png b/front/public/images/large/gregtech/gt.blockores/17877.png deleted file mode 100644 index 5351214104..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17878.png b/front/public/images/large/gregtech/gt.blockores/17878.png deleted file mode 100644 index ad6ca3cb57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17882.png b/front/public/images/large/gregtech/gt.blockores/17882.png deleted file mode 100644 index fc2e8a18c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17883.png b/front/public/images/large/gregtech/gt.blockores/17883.png deleted file mode 100644 index a49add9da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17884.png b/front/public/images/large/gregtech/gt.blockores/17884.png deleted file mode 100644 index 20ae7db3ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17894.png b/front/public/images/large/gregtech/gt.blockores/17894.png deleted file mode 100644 index a49add9da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17900.png b/front/public/images/large/gregtech/gt.blockores/17900.png deleted file mode 100644 index 6cf09800a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17901.png b/front/public/images/large/gregtech/gt.blockores/17901.png deleted file mode 100644 index 7f4759c5d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17902.png b/front/public/images/large/gregtech/gt.blockores/17902.png deleted file mode 100644 index 9d524d8c5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17903.png b/front/public/images/large/gregtech/gt.blockores/17903.png deleted file mode 100644 index b9be644b40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17904.png b/front/public/images/large/gregtech/gt.blockores/17904.png deleted file mode 100644 index 4987f55695..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17905.png b/front/public/images/large/gregtech/gt.blockores/17905.png deleted file mode 100644 index c8d793009a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17906.png b/front/public/images/large/gregtech/gt.blockores/17906.png deleted file mode 100644 index 45bef0aa67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17907.png b/front/public/images/large/gregtech/gt.blockores/17907.png deleted file mode 100644 index 06c99b857c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17908.png b/front/public/images/large/gregtech/gt.blockores/17908.png deleted file mode 100644 index 6193d7aac0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17909.png b/front/public/images/large/gregtech/gt.blockores/17909.png deleted file mode 100644 index 4033b3c076..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17910.png b/front/public/images/large/gregtech/gt.blockores/17910.png deleted file mode 100644 index 3f2053ab98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17911.png b/front/public/images/large/gregtech/gt.blockores/17911.png deleted file mode 100644 index de4fd53997..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17912.png b/front/public/images/large/gregtech/gt.blockores/17912.png deleted file mode 100644 index f8927f193b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17913.png b/front/public/images/large/gregtech/gt.blockores/17913.png deleted file mode 100644 index 48c90d3a22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17914.png b/front/public/images/large/gregtech/gt.blockores/17914.png deleted file mode 100644 index a8e1974174..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17915.png b/front/public/images/large/gregtech/gt.blockores/17915.png deleted file mode 100644 index c32e6075ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17916.png b/front/public/images/large/gregtech/gt.blockores/17916.png deleted file mode 100644 index aa7aefc4a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17917.png b/front/public/images/large/gregtech/gt.blockores/17917.png deleted file mode 100644 index d4bdff3b33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17918.png b/front/public/images/large/gregtech/gt.blockores/17918.png deleted file mode 100644 index 419c5290f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17919.png b/front/public/images/large/gregtech/gt.blockores/17919.png deleted file mode 100644 index 540d2d1ba0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17920.png b/front/public/images/large/gregtech/gt.blockores/17920.png deleted file mode 100644 index 4a2a7fc29e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17921.png b/front/public/images/large/gregtech/gt.blockores/17921.png deleted file mode 100644 index 99d4a7222a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17922.png b/front/public/images/large/gregtech/gt.blockores/17922.png deleted file mode 100644 index 8afd8b198b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17923.png b/front/public/images/large/gregtech/gt.blockores/17923.png deleted file mode 100644 index 06623a9263..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17924.png b/front/public/images/large/gregtech/gt.blockores/17924.png deleted file mode 100644 index d3acc119ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17925.png b/front/public/images/large/gregtech/gt.blockores/17925.png deleted file mode 100644 index c680da52bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17926.png b/front/public/images/large/gregtech/gt.blockores/17926.png deleted file mode 100644 index a170c0895c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17927.png b/front/public/images/large/gregtech/gt.blockores/17927.png deleted file mode 100644 index 059d3d399e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17928.png b/front/public/images/large/gregtech/gt.blockores/17928.png deleted file mode 100644 index 75464739c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17929.png b/front/public/images/large/gregtech/gt.blockores/17929.png deleted file mode 100644 index 1c62a2094d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17930.png b/front/public/images/large/gregtech/gt.blockores/17930.png deleted file mode 100644 index a3efb0004a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17931.png b/front/public/images/large/gregtech/gt.blockores/17931.png deleted file mode 100644 index d438801a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17932.png b/front/public/images/large/gregtech/gt.blockores/17932.png deleted file mode 100644 index ef13e1d9fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17933.png b/front/public/images/large/gregtech/gt.blockores/17933.png deleted file mode 100644 index c67fdecdb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17934.png b/front/public/images/large/gregtech/gt.blockores/17934.png deleted file mode 100644 index f82680669a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17935.png b/front/public/images/large/gregtech/gt.blockores/17935.png deleted file mode 100644 index 087333fd4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17936.png b/front/public/images/large/gregtech/gt.blockores/17936.png deleted file mode 100644 index 6465f4e6ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17937.png b/front/public/images/large/gregtech/gt.blockores/17937.png deleted file mode 100644 index 5f91e86224..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17938.png b/front/public/images/large/gregtech/gt.blockores/17938.png deleted file mode 100644 index a3efb0004a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17939.png b/front/public/images/large/gregtech/gt.blockores/17939.png deleted file mode 100644 index 75c0768c19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17941.png b/front/public/images/large/gregtech/gt.blockores/17941.png deleted file mode 100644 index 74f5df1fbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17942.png b/front/public/images/large/gregtech/gt.blockores/17942.png deleted file mode 100644 index f6a62024ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17943.png b/front/public/images/large/gregtech/gt.blockores/17943.png deleted file mode 100644 index 210d080907..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17944.png b/front/public/images/large/gregtech/gt.blockores/17944.png deleted file mode 100644 index d89e91262e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17945.png b/front/public/images/large/gregtech/gt.blockores/17945.png deleted file mode 100644 index f7de32058c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17946.png b/front/public/images/large/gregtech/gt.blockores/17946.png deleted file mode 100644 index dcc8e75866..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17948.png b/front/public/images/large/gregtech/gt.blockores/17948.png deleted file mode 100644 index 4d0c678766..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17949.png b/front/public/images/large/gregtech/gt.blockores/17949.png deleted file mode 100644 index c67fdecdb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17951.png b/front/public/images/large/gregtech/gt.blockores/17951.png deleted file mode 100644 index 755c67fdf5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17952.png b/front/public/images/large/gregtech/gt.blockores/17952.png deleted file mode 100644 index a97c93f65a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17956.png b/front/public/images/large/gregtech/gt.blockores/17956.png deleted file mode 100644 index d76dd38cdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17966.png b/front/public/images/large/gregtech/gt.blockores/17966.png deleted file mode 100644 index 45f7269ae1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17969.png b/front/public/images/large/gregtech/gt.blockores/17969.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1797.png b/front/public/images/large/gregtech/gt.blockores/1797.png deleted file mode 100644 index 3a27b4edc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17971.png b/front/public/images/large/gregtech/gt.blockores/17971.png deleted file mode 100644 index 4b1655db91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17975.png b/front/public/images/large/gregtech/gt.blockores/17975.png deleted file mode 100644 index 22a238a475..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17976.png b/front/public/images/large/gregtech/gt.blockores/17976.png deleted file mode 100644 index ed7dcee5c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17978.png b/front/public/images/large/gregtech/gt.blockores/17978.png deleted file mode 100644 index 4dcd4d92d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17982.png b/front/public/images/large/gregtech/gt.blockores/17982.png deleted file mode 100644 index ad4b292452..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/17984.png b/front/public/images/large/gregtech/gt.blockores/17984.png deleted file mode 100644 index 994618874b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/17984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18.png b/front/public/images/large/gregtech/gt.blockores/18.png deleted file mode 100644 index 61c0ba80a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18006.png b/front/public/images/large/gregtech/gt.blockores/18006.png deleted file mode 100644 index 6b1be24fde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18008.png b/front/public/images/large/gregtech/gt.blockores/18008.png deleted file mode 100644 index ab1933e70f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18018.png b/front/public/images/large/gregtech/gt.blockores/18018.png deleted file mode 100644 index 32c20e77dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18019.png b/front/public/images/large/gregtech/gt.blockores/18019.png deleted file mode 100644 index ea2ba893e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18020.png b/front/public/images/large/gregtech/gt.blockores/18020.png deleted file mode 100644 index 4d41a5ef4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18022.png b/front/public/images/large/gregtech/gt.blockores/18022.png deleted file mode 100644 index 5aa3b8dc23..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18027.png b/front/public/images/large/gregtech/gt.blockores/18027.png deleted file mode 100644 index fcca995696..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18028.png b/front/public/images/large/gregtech/gt.blockores/18028.png deleted file mode 100644 index 9994510186..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18029.png b/front/public/images/large/gregtech/gt.blockores/18029.png deleted file mode 100644 index eb80923063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18030.png b/front/public/images/large/gregtech/gt.blockores/18030.png deleted file mode 100644 index 1e3013b89e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18031.png b/front/public/images/large/gregtech/gt.blockores/18031.png deleted file mode 100644 index f198e0f8ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18032.png b/front/public/images/large/gregtech/gt.blockores/18032.png deleted file mode 100644 index 6d87df9b60..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18033.png b/front/public/images/large/gregtech/gt.blockores/18033.png deleted file mode 100644 index 5fd1af2d03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18034.png b/front/public/images/large/gregtech/gt.blockores/18034.png deleted file mode 100644 index 5d4a17c9e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18035.png b/front/public/images/large/gregtech/gt.blockores/18035.png deleted file mode 100644 index 60a089faf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18036.png b/front/public/images/large/gregtech/gt.blockores/18036.png deleted file mode 100644 index 48178fc302..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18037.png b/front/public/images/large/gregtech/gt.blockores/18037.png deleted file mode 100644 index eb343cccbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18039.png b/front/public/images/large/gregtech/gt.blockores/18039.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18043.png b/front/public/images/large/gregtech/gt.blockores/18043.png deleted file mode 100644 index ea52b9e994..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18044.png b/front/public/images/large/gregtech/gt.blockores/18044.png deleted file mode 100644 index 6d87df9b60..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18045.png b/front/public/images/large/gregtech/gt.blockores/18045.png deleted file mode 100644 index f628fa6380..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18047.png b/front/public/images/large/gregtech/gt.blockores/18047.png deleted file mode 100644 index 820451f333..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18048.png b/front/public/images/large/gregtech/gt.blockores/18048.png deleted file mode 100644 index 4f39a2861f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18052.png b/front/public/images/large/gregtech/gt.blockores/18052.png deleted file mode 100644 index 7048d16908..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18054.png b/front/public/images/large/gregtech/gt.blockores/18054.png deleted file mode 100644 index eb343cccbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18055.png b/front/public/images/large/gregtech/gt.blockores/18055.png deleted file mode 100644 index a98582bde8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18056.png b/front/public/images/large/gregtech/gt.blockores/18056.png deleted file mode 100644 index fe9b158eaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18057.png b/front/public/images/large/gregtech/gt.blockores/18057.png deleted file mode 100644 index 685d0be3cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18058.png b/front/public/images/large/gregtech/gt.blockores/18058.png deleted file mode 100644 index 758c28359d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18059.png b/front/public/images/large/gregtech/gt.blockores/18059.png deleted file mode 100644 index 92c73b5d0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18062.png b/front/public/images/large/gregtech/gt.blockores/18062.png deleted file mode 100644 index 74e693e31f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18063.png b/front/public/images/large/gregtech/gt.blockores/18063.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18064.png b/front/public/images/large/gregtech/gt.blockores/18064.png deleted file mode 100644 index 442a5586bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18065.png b/front/public/images/large/gregtech/gt.blockores/18065.png deleted file mode 100644 index 4679b4a33c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18066.png b/front/public/images/large/gregtech/gt.blockores/18066.png deleted file mode 100644 index ade4a071f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18067.png b/front/public/images/large/gregtech/gt.blockores/18067.png deleted file mode 100644 index 18a1b30c71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18068.png b/front/public/images/large/gregtech/gt.blockores/18068.png deleted file mode 100644 index 9bb43f567e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18069.png b/front/public/images/large/gregtech/gt.blockores/18069.png deleted file mode 100644 index 56586ce592..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18070.png b/front/public/images/large/gregtech/gt.blockores/18070.png deleted file mode 100644 index 7be85b02a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18071.png b/front/public/images/large/gregtech/gt.blockores/18071.png deleted file mode 100644 index 4ab1f92bfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18072.png b/front/public/images/large/gregtech/gt.blockores/18072.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18073.png b/front/public/images/large/gregtech/gt.blockores/18073.png deleted file mode 100644 index 6f9209d621..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18074.png b/front/public/images/large/gregtech/gt.blockores/18074.png deleted file mode 100644 index 735a5a8568..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18075.png b/front/public/images/large/gregtech/gt.blockores/18075.png deleted file mode 100644 index c938848c2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18076.png b/front/public/images/large/gregtech/gt.blockores/18076.png deleted file mode 100644 index 9b05905f4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18077.png b/front/public/images/large/gregtech/gt.blockores/18077.png deleted file mode 100644 index 45b25fa08b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18078.png b/front/public/images/large/gregtech/gt.blockores/18078.png deleted file mode 100644 index dddc9b8441..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18080.png b/front/public/images/large/gregtech/gt.blockores/18080.png deleted file mode 100644 index f7239cb29c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18081.png b/front/public/images/large/gregtech/gt.blockores/18081.png deleted file mode 100644 index eb80923063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18083.png b/front/public/images/large/gregtech/gt.blockores/18083.png deleted file mode 100644 index 0c5ed19470..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18084.png b/front/public/images/large/gregtech/gt.blockores/18084.png deleted file mode 100644 index 3d8cda3d9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18085.png b/front/public/images/large/gregtech/gt.blockores/18085.png deleted file mode 100644 index 902d3b02dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18086.png b/front/public/images/large/gregtech/gt.blockores/18086.png deleted file mode 100644 index a9139504f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18089.png b/front/public/images/large/gregtech/gt.blockores/18089.png deleted file mode 100644 index 7eaf05079b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18090.png b/front/public/images/large/gregtech/gt.blockores/18090.png deleted file mode 100644 index c813b927e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18096.png b/front/public/images/large/gregtech/gt.blockores/18096.png deleted file mode 100644 index 013745aaee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18097.png b/front/public/images/large/gregtech/gt.blockores/18097.png deleted file mode 100644 index 99d3084e6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18098.png b/front/public/images/large/gregtech/gt.blockores/18098.png deleted file mode 100644 index 65d71dfe96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1810.png b/front/public/images/large/gregtech/gt.blockores/1810.png deleted file mode 100644 index a556f95d27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18100.png b/front/public/images/large/gregtech/gt.blockores/18100.png deleted file mode 100644 index 98c94d4e15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18101.png b/front/public/images/large/gregtech/gt.blockores/18101.png deleted file mode 100644 index e8fe5bde58..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18103.png b/front/public/images/large/gregtech/gt.blockores/18103.png deleted file mode 100644 index 6d87df9b60..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18110.png b/front/public/images/large/gregtech/gt.blockores/18110.png deleted file mode 100644 index f28a5b1832..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1812.png b/front/public/images/large/gregtech/gt.blockores/1812.png deleted file mode 100644 index ee0c5f8b72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18129.png b/front/public/images/large/gregtech/gt.blockores/18129.png deleted file mode 100644 index f198e0f8ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1817.png b/front/public/images/large/gregtech/gt.blockores/1817.png deleted file mode 100644 index 7efa1926a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1820.png b/front/public/images/large/gregtech/gt.blockores/1820.png deleted file mode 100644 index a4f2821235..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1821.png b/front/public/images/large/gregtech/gt.blockores/1821.png deleted file mode 100644 index f1dc69d0ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1822.png b/front/public/images/large/gregtech/gt.blockores/1822.png deleted file mode 100644 index bc6ef0a727..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1823.png b/front/public/images/large/gregtech/gt.blockores/1823.png deleted file mode 100644 index ad9a93c0fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1824.png b/front/public/images/large/gregtech/gt.blockores/1824.png deleted file mode 100644 index 3a27b4edc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1825.png b/front/public/images/large/gregtech/gt.blockores/1825.png deleted file mode 100644 index bd476db03d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1826.png b/front/public/images/large/gregtech/gt.blockores/1826.png deleted file mode 100644 index 6708ad2b83..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1827.png b/front/public/images/large/gregtech/gt.blockores/1827.png deleted file mode 100644 index c9ac116fc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1828.png b/front/public/images/large/gregtech/gt.blockores/1828.png deleted file mode 100644 index a287f354c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1829.png b/front/public/images/large/gregtech/gt.blockores/1829.png deleted file mode 100644 index 839c653b96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1830.png b/front/public/images/large/gregtech/gt.blockores/1830.png deleted file mode 100644 index 8903e4bedb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18303.png b/front/public/images/large/gregtech/gt.blockores/18303.png deleted file mode 100644 index 03774a9f1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18307.png b/front/public/images/large/gregtech/gt.blockores/18307.png deleted file mode 100644 index b883e70c81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1831.png b/front/public/images/large/gregtech/gt.blockores/1831.png deleted file mode 100644 index bc6ef0a727..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18319.png b/front/public/images/large/gregtech/gt.blockores/18319.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18320.png b/front/public/images/large/gregtech/gt.blockores/18320.png deleted file mode 100644 index df7a73ed28..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18323.png b/front/public/images/large/gregtech/gt.blockores/18323.png deleted file mode 100644 index c05e9cf969..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18324.png b/front/public/images/large/gregtech/gt.blockores/18324.png deleted file mode 100644 index eb80923063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18326.png b/front/public/images/large/gregtech/gt.blockores/18326.png deleted file mode 100644 index 1fb40f21fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18327.png b/front/public/images/large/gregtech/gt.blockores/18327.png deleted file mode 100644 index e7f5b8594a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18329.png b/front/public/images/large/gregtech/gt.blockores/18329.png deleted file mode 100644 index 8189abe436..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1833.png b/front/public/images/large/gregtech/gt.blockores/1833.png deleted file mode 100644 index d3eb5ced1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18331.png b/front/public/images/large/gregtech/gt.blockores/18331.png deleted file mode 100644 index c357f59361..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18336.png b/front/public/images/large/gregtech/gt.blockores/18336.png deleted file mode 100644 index 9eb07e95eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1834.png b/front/public/images/large/gregtech/gt.blockores/1834.png deleted file mode 100644 index 3b845f7cb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18340.png b/front/public/images/large/gregtech/gt.blockores/18340.png deleted file mode 100644 index 6cf23b20c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18342.png b/front/public/images/large/gregtech/gt.blockores/18342.png deleted file mode 100644 index a933b42505..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18347.png b/front/public/images/large/gregtech/gt.blockores/18347.png deleted file mode 100644 index dff9c3f64f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1835.png b/front/public/images/large/gregtech/gt.blockores/1835.png deleted file mode 100644 index 14ada39d74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1836.png b/front/public/images/large/gregtech/gt.blockores/1836.png deleted file mode 100644 index df81180e51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18368.png b/front/public/images/large/gregtech/gt.blockores/18368.png deleted file mode 100644 index 56f5e45fd0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18375.png b/front/public/images/large/gregtech/gt.blockores/18375.png deleted file mode 100644 index 1ae6c45db2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1838.png b/front/public/images/large/gregtech/gt.blockores/1838.png deleted file mode 100644 index f15c50699c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18382.png b/front/public/images/large/gregtech/gt.blockores/18382.png deleted file mode 100644 index 0f2bab9928..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18386.png b/front/public/images/large/gregtech/gt.blockores/18386.png deleted file mode 100644 index 5693371a79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18387.png b/front/public/images/large/gregtech/gt.blockores/18387.png deleted file mode 100644 index 0c2cfd81ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18388.png b/front/public/images/large/gregtech/gt.blockores/18388.png deleted file mode 100644 index eb80923063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18389.png b/front/public/images/large/gregtech/gt.blockores/18389.png deleted file mode 100644 index 13b74f6002..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1839.png b/front/public/images/large/gregtech/gt.blockores/1839.png deleted file mode 100644 index 30722183db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18390.png b/front/public/images/large/gregtech/gt.blockores/18390.png deleted file mode 100644 index 47d1ff6ef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18391.png b/front/public/images/large/gregtech/gt.blockores/18391.png deleted file mode 100644 index c8221fa693..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18392.png b/front/public/images/large/gregtech/gt.blockores/18392.png deleted file mode 100644 index f91c510dec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18393.png b/front/public/images/large/gregtech/gt.blockores/18393.png deleted file mode 100644 index aa35822706..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18394.png b/front/public/images/large/gregtech/gt.blockores/18394.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18395.png b/front/public/images/large/gregtech/gt.blockores/18395.png deleted file mode 100644 index eb80923063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18398.png b/front/public/images/large/gregtech/gt.blockores/18398.png deleted file mode 100644 index 562fd69fff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1840.png b/front/public/images/large/gregtech/gt.blockores/1840.png deleted file mode 100644 index 78f470b0ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1841.png b/front/public/images/large/gregtech/gt.blockores/1841.png deleted file mode 100644 index 45aea3cd89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1842.png b/front/public/images/large/gregtech/gt.blockores/1842.png deleted file mode 100644 index be131c455b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18485.png b/front/public/images/large/gregtech/gt.blockores/18485.png deleted file mode 100644 index c64a1bd619..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18488.png b/front/public/images/large/gregtech/gt.blockores/18488.png deleted file mode 100644 index a4b9b2682f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18489.png b/front/public/images/large/gregtech/gt.blockores/18489.png deleted file mode 100644 index b950bd9f3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18500.png b/front/public/images/large/gregtech/gt.blockores/18500.png deleted file mode 100644 index 557565190f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18501.png b/front/public/images/large/gregtech/gt.blockores/18501.png deleted file mode 100644 index 4ec09ec606..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18502.png b/front/public/images/large/gregtech/gt.blockores/18502.png deleted file mode 100644 index 8caed680ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18503.png b/front/public/images/large/gregtech/gt.blockores/18503.png deleted file mode 100644 index 4ee242073d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18504.png b/front/public/images/large/gregtech/gt.blockores/18504.png deleted file mode 100644 index 960fcd87bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18505.png b/front/public/images/large/gregtech/gt.blockores/18505.png deleted file mode 100644 index ef1fb479e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18506.png b/front/public/images/large/gregtech/gt.blockores/18506.png deleted file mode 100644 index f198e0f8ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18507.png b/front/public/images/large/gregtech/gt.blockores/18507.png deleted file mode 100644 index c9c6ebacab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18508.png b/front/public/images/large/gregtech/gt.blockores/18508.png deleted file mode 100644 index 9d8698ea79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18509.png b/front/public/images/large/gregtech/gt.blockores/18509.png deleted file mode 100644 index fd068eab81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18510.png b/front/public/images/large/gregtech/gt.blockores/18510.png deleted file mode 100644 index 5546e7a2db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18511.png b/front/public/images/large/gregtech/gt.blockores/18511.png deleted file mode 100644 index 814a1d9c96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18512.png b/front/public/images/large/gregtech/gt.blockores/18512.png deleted file mode 100644 index 8caed680ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18513.png b/front/public/images/large/gregtech/gt.blockores/18513.png deleted file mode 100644 index 5546e7a2db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18514.png b/front/public/images/large/gregtech/gt.blockores/18514.png deleted file mode 100644 index c9c6ebacab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18515.png b/front/public/images/large/gregtech/gt.blockores/18515.png deleted file mode 100644 index adbe393a61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18516.png b/front/public/images/large/gregtech/gt.blockores/18516.png deleted file mode 100644 index 5ac36eeb7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18517.png b/front/public/images/large/gregtech/gt.blockores/18517.png deleted file mode 100644 index 15a5fe394d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18518.png b/front/public/images/large/gregtech/gt.blockores/18518.png deleted file mode 100644 index 88c6eadeb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18519.png b/front/public/images/large/gregtech/gt.blockores/18519.png deleted file mode 100644 index 88c6eadeb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18520.png b/front/public/images/large/gregtech/gt.blockores/18520.png deleted file mode 100644 index ae5da32ba6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18521.png b/front/public/images/large/gregtech/gt.blockores/18521.png deleted file mode 100644 index cfc056a2b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18522.png b/front/public/images/large/gregtech/gt.blockores/18522.png deleted file mode 100644 index 77858fa849..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18523.png b/front/public/images/large/gregtech/gt.blockores/18523.png deleted file mode 100644 index 0213cae22d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18524.png b/front/public/images/large/gregtech/gt.blockores/18524.png deleted file mode 100644 index 74b248d84e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18525.png b/front/public/images/large/gregtech/gt.blockores/18525.png deleted file mode 100644 index 10f6f8e651..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18526.png b/front/public/images/large/gregtech/gt.blockores/18526.png deleted file mode 100644 index 22237b7246..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18527.png b/front/public/images/large/gregtech/gt.blockores/18527.png deleted file mode 100644 index 814a1d9c96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18528.png b/front/public/images/large/gregtech/gt.blockores/18528.png deleted file mode 100644 index 1bda3d7a0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18529.png b/front/public/images/large/gregtech/gt.blockores/18529.png deleted file mode 100644 index cf20d2ef2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18530.png b/front/public/images/large/gregtech/gt.blockores/18530.png deleted file mode 100644 index 7dac5a429d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18531.png b/front/public/images/large/gregtech/gt.blockores/18531.png deleted file mode 100644 index 32c20e77dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18534.png b/front/public/images/large/gregtech/gt.blockores/18534.png deleted file mode 100644 index cc307dad45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18535.png b/front/public/images/large/gregtech/gt.blockores/18535.png deleted file mode 100644 index 74a33d4f6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18537.png b/front/public/images/large/gregtech/gt.blockores/18537.png deleted file mode 100644 index 0f069174cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18538.png b/front/public/images/large/gregtech/gt.blockores/18538.png deleted file mode 100644 index 796a1a6b30..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18540.png b/front/public/images/large/gregtech/gt.blockores/18540.png deleted file mode 100644 index cfc056a2b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18541.png b/front/public/images/large/gregtech/gt.blockores/18541.png deleted file mode 100644 index e4afca6d27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18542.png b/front/public/images/large/gregtech/gt.blockores/18542.png deleted file mode 100644 index a81a51071f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18543.png b/front/public/images/large/gregtech/gt.blockores/18543.png deleted file mode 100644 index 86e69ca5a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18544.png b/front/public/images/large/gregtech/gt.blockores/18544.png deleted file mode 100644 index 9a0a981d08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18545.png b/front/public/images/large/gregtech/gt.blockores/18545.png deleted file mode 100644 index 4a6c2ba8b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18548.png b/front/public/images/large/gregtech/gt.blockores/18548.png deleted file mode 100644 index d169fbbe03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18549.png b/front/public/images/large/gregtech/gt.blockores/18549.png deleted file mode 100644 index 46af74aa48..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1855.png b/front/public/images/large/gregtech/gt.blockores/1855.png deleted file mode 100644 index 25ebc36636..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1856.png b/front/public/images/large/gregtech/gt.blockores/1856.png deleted file mode 100644 index 95981478d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18607.png b/front/public/images/large/gregtech/gt.blockores/18607.png deleted file mode 100644 index 7d946eeab9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1861.png b/front/public/images/large/gregtech/gt.blockores/1861.png deleted file mode 100644 index 30722183db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1865.png b/front/public/images/large/gregtech/gt.blockores/1865.png deleted file mode 100644 index 3fda4fae73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1868.png b/front/public/images/large/gregtech/gt.blockores/1868.png deleted file mode 100644 index 77bdf16b58..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18699.png b/front/public/images/large/gregtech/gt.blockores/18699.png deleted file mode 100644 index c0d0f77d3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1870.png b/front/public/images/large/gregtech/gt.blockores/1870.png deleted file mode 100644 index d55083cbfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1871.png b/front/public/images/large/gregtech/gt.blockores/1871.png deleted file mode 100644 index 186bbd73df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1873.png b/front/public/images/large/gregtech/gt.blockores/1873.png deleted file mode 100644 index d68552f21b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1877.png b/front/public/images/large/gregtech/gt.blockores/1877.png deleted file mode 100644 index a3c15ec423..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18770.png b/front/public/images/large/gregtech/gt.blockores/18770.png deleted file mode 100644 index 6ea7cd48aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1878.png b/front/public/images/large/gregtech/gt.blockores/1878.png deleted file mode 100644 index 1e7bf524ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18797.png b/front/public/images/large/gregtech/gt.blockores/18797.png deleted file mode 100644 index 685d0be3cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18810.png b/front/public/images/large/gregtech/gt.blockores/18810.png deleted file mode 100644 index ac53e99785..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18812.png b/front/public/images/large/gregtech/gt.blockores/18812.png deleted file mode 100644 index b6cc8cdeb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18817.png b/front/public/images/large/gregtech/gt.blockores/18817.png deleted file mode 100644 index f198e0f8ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1882.png b/front/public/images/large/gregtech/gt.blockores/1882.png deleted file mode 100644 index 6a21d1f6e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18820.png b/front/public/images/large/gregtech/gt.blockores/18820.png deleted file mode 100644 index 077879d66f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18821.png b/front/public/images/large/gregtech/gt.blockores/18821.png deleted file mode 100644 index 02484b485d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18822.png b/front/public/images/large/gregtech/gt.blockores/18822.png deleted file mode 100644 index 103bb72d66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18823.png b/front/public/images/large/gregtech/gt.blockores/18823.png deleted file mode 100644 index fcbaf74fb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18824.png b/front/public/images/large/gregtech/gt.blockores/18824.png deleted file mode 100644 index 685d0be3cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18825.png b/front/public/images/large/gregtech/gt.blockores/18825.png deleted file mode 100644 index 30239ae91f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18826.png b/front/public/images/large/gregtech/gt.blockores/18826.png deleted file mode 100644 index c1b411d7f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18827.png b/front/public/images/large/gregtech/gt.blockores/18827.png deleted file mode 100644 index 5fd1af2d03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18828.png b/front/public/images/large/gregtech/gt.blockores/18828.png deleted file mode 100644 index 902d3b02dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18829.png b/front/public/images/large/gregtech/gt.blockores/18829.png deleted file mode 100644 index 9e6ffd06ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1883.png b/front/public/images/large/gregtech/gt.blockores/1883.png deleted file mode 100644 index d3eb5ced1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18830.png b/front/public/images/large/gregtech/gt.blockores/18830.png deleted file mode 100644 index 55b047685f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18831.png b/front/public/images/large/gregtech/gt.blockores/18831.png deleted file mode 100644 index 103bb72d66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18833.png b/front/public/images/large/gregtech/gt.blockores/18833.png deleted file mode 100644 index cc307dad45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18834.png b/front/public/images/large/gregtech/gt.blockores/18834.png deleted file mode 100644 index ac80784a1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18835.png b/front/public/images/large/gregtech/gt.blockores/18835.png deleted file mode 100644 index f4e9f1b906..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18836.png b/front/public/images/large/gregtech/gt.blockores/18836.png deleted file mode 100644 index ad0231eebf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18838.png b/front/public/images/large/gregtech/gt.blockores/18838.png deleted file mode 100644 index 8caed680ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18839.png b/front/public/images/large/gregtech/gt.blockores/18839.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1884.png b/front/public/images/large/gregtech/gt.blockores/1884.png deleted file mode 100644 index 9b698070e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18840.png b/front/public/images/large/gregtech/gt.blockores/18840.png deleted file mode 100644 index 049888d72e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18841.png b/front/public/images/large/gregtech/gt.blockores/18841.png deleted file mode 100644 index 7e12b3ddf5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18842.png b/front/public/images/large/gregtech/gt.blockores/18842.png deleted file mode 100644 index 111c2aefd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18855.png b/front/public/images/large/gregtech/gt.blockores/18855.png deleted file mode 100644 index 973b585a1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18856.png b/front/public/images/large/gregtech/gt.blockores/18856.png deleted file mode 100644 index fb246a09cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18861.png b/front/public/images/large/gregtech/gt.blockores/18861.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18865.png b/front/public/images/large/gregtech/gt.blockores/18865.png deleted file mode 100644 index 7048d16908..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18868.png b/front/public/images/large/gregtech/gt.blockores/18868.png deleted file mode 100644 index 7222b3ef74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18870.png b/front/public/images/large/gregtech/gt.blockores/18870.png deleted file mode 100644 index 993f666af0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18871.png b/front/public/images/large/gregtech/gt.blockores/18871.png deleted file mode 100644 index fcb51bc95e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18873.png b/front/public/images/large/gregtech/gt.blockores/18873.png deleted file mode 100644 index 02ec8b59b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18877.png b/front/public/images/large/gregtech/gt.blockores/18877.png deleted file mode 100644 index fa4b6efc59..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18878.png b/front/public/images/large/gregtech/gt.blockores/18878.png deleted file mode 100644 index d851364e81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18882.png b/front/public/images/large/gregtech/gt.blockores/18882.png deleted file mode 100644 index c9c6ebacab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18883.png b/front/public/images/large/gregtech/gt.blockores/18883.png deleted file mode 100644 index cc307dad45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18884.png b/front/public/images/large/gregtech/gt.blockores/18884.png deleted file mode 100644 index 4ef2a24548..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18894.png b/front/public/images/large/gregtech/gt.blockores/18894.png deleted file mode 100644 index cc307dad45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18900.png b/front/public/images/large/gregtech/gt.blockores/18900.png deleted file mode 100644 index 3f55cb464c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18901.png b/front/public/images/large/gregtech/gt.blockores/18901.png deleted file mode 100644 index 0868f03845..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18902.png b/front/public/images/large/gregtech/gt.blockores/18902.png deleted file mode 100644 index 19cb69aa4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18903.png b/front/public/images/large/gregtech/gt.blockores/18903.png deleted file mode 100644 index 12f8623591..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18904.png b/front/public/images/large/gregtech/gt.blockores/18904.png deleted file mode 100644 index ab726db3c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18905.png b/front/public/images/large/gregtech/gt.blockores/18905.png deleted file mode 100644 index 96b1d7d21f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18906.png b/front/public/images/large/gregtech/gt.blockores/18906.png deleted file mode 100644 index ce0316a397..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18907.png b/front/public/images/large/gregtech/gt.blockores/18907.png deleted file mode 100644 index ebb3625419..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18908.png b/front/public/images/large/gregtech/gt.blockores/18908.png deleted file mode 100644 index 5141fa3da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18909.png b/front/public/images/large/gregtech/gt.blockores/18909.png deleted file mode 100644 index c690d52008..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18910.png b/front/public/images/large/gregtech/gt.blockores/18910.png deleted file mode 100644 index c98ddc0062..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18911.png b/front/public/images/large/gregtech/gt.blockores/18911.png deleted file mode 100644 index 153cafb620..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18912.png b/front/public/images/large/gregtech/gt.blockores/18912.png deleted file mode 100644 index e561cade0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18913.png b/front/public/images/large/gregtech/gt.blockores/18913.png deleted file mode 100644 index 5055edf89d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18914.png b/front/public/images/large/gregtech/gt.blockores/18914.png deleted file mode 100644 index 6970fd048a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18915.png b/front/public/images/large/gregtech/gt.blockores/18915.png deleted file mode 100644 index f4195e1a72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18916.png b/front/public/images/large/gregtech/gt.blockores/18916.png deleted file mode 100644 index 95fe1ff886..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18917.png b/front/public/images/large/gregtech/gt.blockores/18917.png deleted file mode 100644 index d9a3c0fe1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18918.png b/front/public/images/large/gregtech/gt.blockores/18918.png deleted file mode 100644 index aa6fa6d620..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18919.png b/front/public/images/large/gregtech/gt.blockores/18919.png deleted file mode 100644 index ca48994bce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18920.png b/front/public/images/large/gregtech/gt.blockores/18920.png deleted file mode 100644 index 682e9816a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18921.png b/front/public/images/large/gregtech/gt.blockores/18921.png deleted file mode 100644 index a231512bb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18922.png b/front/public/images/large/gregtech/gt.blockores/18922.png deleted file mode 100644 index 1d2253b4a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18923.png b/front/public/images/large/gregtech/gt.blockores/18923.png deleted file mode 100644 index fd4904d682..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18924.png b/front/public/images/large/gregtech/gt.blockores/18924.png deleted file mode 100644 index c5acaff658..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18925.png b/front/public/images/large/gregtech/gt.blockores/18925.png deleted file mode 100644 index 225dd52a56..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18926.png b/front/public/images/large/gregtech/gt.blockores/18926.png deleted file mode 100644 index 0ce0b28064..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18927.png b/front/public/images/large/gregtech/gt.blockores/18927.png deleted file mode 100644 index 0d73ed87d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18928.png b/front/public/images/large/gregtech/gt.blockores/18928.png deleted file mode 100644 index 20c5439ff1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18929.png b/front/public/images/large/gregtech/gt.blockores/18929.png deleted file mode 100644 index 806ae2cb2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18930.png b/front/public/images/large/gregtech/gt.blockores/18930.png deleted file mode 100644 index 103bb72d66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18931.png b/front/public/images/large/gregtech/gt.blockores/18931.png deleted file mode 100644 index 5aa3b8dc23..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18932.png b/front/public/images/large/gregtech/gt.blockores/18932.png deleted file mode 100644 index a36e6492d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18933.png b/front/public/images/large/gregtech/gt.blockores/18933.png deleted file mode 100644 index 65d46c38ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18934.png b/front/public/images/large/gregtech/gt.blockores/18934.png deleted file mode 100644 index 2566f52f98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18935.png b/front/public/images/large/gregtech/gt.blockores/18935.png deleted file mode 100644 index 0747b2a5b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18936.png b/front/public/images/large/gregtech/gt.blockores/18936.png deleted file mode 100644 index f54311b50c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18937.png b/front/public/images/large/gregtech/gt.blockores/18937.png deleted file mode 100644 index 685d0be3cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18938.png b/front/public/images/large/gregtech/gt.blockores/18938.png deleted file mode 100644 index 103bb72d66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18939.png b/front/public/images/large/gregtech/gt.blockores/18939.png deleted file mode 100644 index 8a6dcdc68e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1894.png b/front/public/images/large/gregtech/gt.blockores/1894.png deleted file mode 100644 index 01f86c7141..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18941.png b/front/public/images/large/gregtech/gt.blockores/18941.png deleted file mode 100644 index f198e0f8ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18942.png b/front/public/images/large/gregtech/gt.blockores/18942.png deleted file mode 100644 index c218446b76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18943.png b/front/public/images/large/gregtech/gt.blockores/18943.png deleted file mode 100644 index 78080e2bab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18944.png b/front/public/images/large/gregtech/gt.blockores/18944.png deleted file mode 100644 index 18670a34c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18945.png b/front/public/images/large/gregtech/gt.blockores/18945.png deleted file mode 100644 index 74a33d4f6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18946.png b/front/public/images/large/gregtech/gt.blockores/18946.png deleted file mode 100644 index ad0231eebf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18948.png b/front/public/images/large/gregtech/gt.blockores/18948.png deleted file mode 100644 index 43932e5f00..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18949.png b/front/public/images/large/gregtech/gt.blockores/18949.png deleted file mode 100644 index 65d46c38ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18951.png b/front/public/images/large/gregtech/gt.blockores/18951.png deleted file mode 100644 index 7fdc4f0e94..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18952.png b/front/public/images/large/gregtech/gt.blockores/18952.png deleted file mode 100644 index f810e41b37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18956.png b/front/public/images/large/gregtech/gt.blockores/18956.png deleted file mode 100644 index 4d3c81d642..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18966.png b/front/public/images/large/gregtech/gt.blockores/18966.png deleted file mode 100644 index e9c0661f35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18969.png b/front/public/images/large/gregtech/gt.blockores/18969.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18971.png b/front/public/images/large/gregtech/gt.blockores/18971.png deleted file mode 100644 index be8fb7d9f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18975.png b/front/public/images/large/gregtech/gt.blockores/18975.png deleted file mode 100644 index d00b70ab5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18976.png b/front/public/images/large/gregtech/gt.blockores/18976.png deleted file mode 100644 index b1dc9c01b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18978.png b/front/public/images/large/gregtech/gt.blockores/18978.png deleted file mode 100644 index f778c246f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18982.png b/front/public/images/large/gregtech/gt.blockores/18982.png deleted file mode 100644 index eb80923063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/18984.png b/front/public/images/large/gregtech/gt.blockores/18984.png deleted file mode 100644 index 0aa21709d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/18984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19.png b/front/public/images/large/gregtech/gt.blockores/19.png deleted file mode 100644 index 8d28800c99..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1900.png b/front/public/images/large/gregtech/gt.blockores/1900.png deleted file mode 100644 index 711e09dbf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19006.png b/front/public/images/large/gregtech/gt.blockores/19006.png deleted file mode 100644 index b2655d6511..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19008.png b/front/public/images/large/gregtech/gt.blockores/19008.png deleted file mode 100644 index f0d86fb4a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1901.png b/front/public/images/large/gregtech/gt.blockores/1901.png deleted file mode 100644 index 5c2118bf9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19018.png b/front/public/images/large/gregtech/gt.blockores/19018.png deleted file mode 100644 index 5a332cbc53..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19019.png b/front/public/images/large/gregtech/gt.blockores/19019.png deleted file mode 100644 index 3cafa24ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1902.png b/front/public/images/large/gregtech/gt.blockores/1902.png deleted file mode 100644 index 2ceb6b03df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19020.png b/front/public/images/large/gregtech/gt.blockores/19020.png deleted file mode 100644 index 16a82d18fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19022.png b/front/public/images/large/gregtech/gt.blockores/19022.png deleted file mode 100644 index 9162151432..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19027.png b/front/public/images/large/gregtech/gt.blockores/19027.png deleted file mode 100644 index 6ab6286d53..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19028.png b/front/public/images/large/gregtech/gt.blockores/19028.png deleted file mode 100644 index 88ad88dc6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19029.png b/front/public/images/large/gregtech/gt.blockores/19029.png deleted file mode 100644 index a6cc7c6fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1903.png b/front/public/images/large/gregtech/gt.blockores/1903.png deleted file mode 100644 index f5b97cf397..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19030.png b/front/public/images/large/gregtech/gt.blockores/19030.png deleted file mode 100644 index dbced0de6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19031.png b/front/public/images/large/gregtech/gt.blockores/19031.png deleted file mode 100644 index 407a78337c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19032.png b/front/public/images/large/gregtech/gt.blockores/19032.png deleted file mode 100644 index 391132aaac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19033.png b/front/public/images/large/gregtech/gt.blockores/19033.png deleted file mode 100644 index b7067e60a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19034.png b/front/public/images/large/gregtech/gt.blockores/19034.png deleted file mode 100644 index f71d7c7ffd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19035.png b/front/public/images/large/gregtech/gt.blockores/19035.png deleted file mode 100644 index 9751638b94..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19036.png b/front/public/images/large/gregtech/gt.blockores/19036.png deleted file mode 100644 index 354b174fde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19037.png b/front/public/images/large/gregtech/gt.blockores/19037.png deleted file mode 100644 index 6201304048..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19039.png b/front/public/images/large/gregtech/gt.blockores/19039.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1904.png b/front/public/images/large/gregtech/gt.blockores/1904.png deleted file mode 100644 index add73ff17b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19043.png b/front/public/images/large/gregtech/gt.blockores/19043.png deleted file mode 100644 index 18cc2b6a77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19044.png b/front/public/images/large/gregtech/gt.blockores/19044.png deleted file mode 100644 index 391132aaac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19045.png b/front/public/images/large/gregtech/gt.blockores/19045.png deleted file mode 100644 index d7d35f4c6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19047.png b/front/public/images/large/gregtech/gt.blockores/19047.png deleted file mode 100644 index 9179e711ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19048.png b/front/public/images/large/gregtech/gt.blockores/19048.png deleted file mode 100644 index 17b1e9ff47..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1905.png b/front/public/images/large/gregtech/gt.blockores/1905.png deleted file mode 100644 index 1c83b7b724..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19052.png b/front/public/images/large/gregtech/gt.blockores/19052.png deleted file mode 100644 index bdbb770e40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19054.png b/front/public/images/large/gregtech/gt.blockores/19054.png deleted file mode 100644 index 6201304048..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19055.png b/front/public/images/large/gregtech/gt.blockores/19055.png deleted file mode 100644 index da21689b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19056.png b/front/public/images/large/gregtech/gt.blockores/19056.png deleted file mode 100644 index d32b07f9e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19057.png b/front/public/images/large/gregtech/gt.blockores/19057.png deleted file mode 100644 index 83b0adb0ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19058.png b/front/public/images/large/gregtech/gt.blockores/19058.png deleted file mode 100644 index 99a9d607c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19059.png b/front/public/images/large/gregtech/gt.blockores/19059.png deleted file mode 100644 index 52d1caff48..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1906.png b/front/public/images/large/gregtech/gt.blockores/1906.png deleted file mode 100644 index 0b96b1b5c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19062.png b/front/public/images/large/gregtech/gt.blockores/19062.png deleted file mode 100644 index 04499d6b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19063.png b/front/public/images/large/gregtech/gt.blockores/19063.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19064.png b/front/public/images/large/gregtech/gt.blockores/19064.png deleted file mode 100644 index 4daec68777..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19065.png b/front/public/images/large/gregtech/gt.blockores/19065.png deleted file mode 100644 index 8ca415283c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19066.png b/front/public/images/large/gregtech/gt.blockores/19066.png deleted file mode 100644 index cf526f678f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19067.png b/front/public/images/large/gregtech/gt.blockores/19067.png deleted file mode 100644 index 1506af0922..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19068.png b/front/public/images/large/gregtech/gt.blockores/19068.png deleted file mode 100644 index 4ecf0ac99c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19069.png b/front/public/images/large/gregtech/gt.blockores/19069.png deleted file mode 100644 index 343c2d2077..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1907.png b/front/public/images/large/gregtech/gt.blockores/1907.png deleted file mode 100644 index 207369207e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19070.png b/front/public/images/large/gregtech/gt.blockores/19070.png deleted file mode 100644 index b21bb71486..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19071.png b/front/public/images/large/gregtech/gt.blockores/19071.png deleted file mode 100644 index 7e807d590d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19072.png b/front/public/images/large/gregtech/gt.blockores/19072.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19073.png b/front/public/images/large/gregtech/gt.blockores/19073.png deleted file mode 100644 index 327a7e420a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19074.png b/front/public/images/large/gregtech/gt.blockores/19074.png deleted file mode 100644 index ffb3fb2364..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19075.png b/front/public/images/large/gregtech/gt.blockores/19075.png deleted file mode 100644 index 38ed4e3bb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19076.png b/front/public/images/large/gregtech/gt.blockores/19076.png deleted file mode 100644 index b5ef159191..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19077.png b/front/public/images/large/gregtech/gt.blockores/19077.png deleted file mode 100644 index 0aa4ddc29c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19078.png b/front/public/images/large/gregtech/gt.blockores/19078.png deleted file mode 100644 index b58183c890..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1908.png b/front/public/images/large/gregtech/gt.blockores/1908.png deleted file mode 100644 index e4396be29b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19080.png b/front/public/images/large/gregtech/gt.blockores/19080.png deleted file mode 100644 index 362abb0e9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19081.png b/front/public/images/large/gregtech/gt.blockores/19081.png deleted file mode 100644 index a6cc7c6fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19083.png b/front/public/images/large/gregtech/gt.blockores/19083.png deleted file mode 100644 index 8cab72485e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19084.png b/front/public/images/large/gregtech/gt.blockores/19084.png deleted file mode 100644 index 371bdf8927..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19085.png b/front/public/images/large/gregtech/gt.blockores/19085.png deleted file mode 100644 index f5110361b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19086.png b/front/public/images/large/gregtech/gt.blockores/19086.png deleted file mode 100644 index 6ffcf62536..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19089.png b/front/public/images/large/gregtech/gt.blockores/19089.png deleted file mode 100644 index dd61097e97..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1909.png b/front/public/images/large/gregtech/gt.blockores/1909.png deleted file mode 100644 index c2739d6a57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19090.png b/front/public/images/large/gregtech/gt.blockores/19090.png deleted file mode 100644 index 002dab2a00..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19096.png b/front/public/images/large/gregtech/gt.blockores/19096.png deleted file mode 100644 index d2969e66ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19097.png b/front/public/images/large/gregtech/gt.blockores/19097.png deleted file mode 100644 index 9669f73172..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19098.png b/front/public/images/large/gregtech/gt.blockores/19098.png deleted file mode 100644 index 079641a763..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1910.png b/front/public/images/large/gregtech/gt.blockores/1910.png deleted file mode 100644 index 149327b1b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19100.png b/front/public/images/large/gregtech/gt.blockores/19100.png deleted file mode 100644 index 8c046940fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19101.png b/front/public/images/large/gregtech/gt.blockores/19101.png deleted file mode 100644 index f1c3edd1d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19103.png b/front/public/images/large/gregtech/gt.blockores/19103.png deleted file mode 100644 index 391132aaac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1911.png b/front/public/images/large/gregtech/gt.blockores/1911.png deleted file mode 100644 index 13ec04267e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19110.png b/front/public/images/large/gregtech/gt.blockores/19110.png deleted file mode 100644 index 152e9dd579..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1912.png b/front/public/images/large/gregtech/gt.blockores/1912.png deleted file mode 100644 index 240c400456..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19129.png b/front/public/images/large/gregtech/gt.blockores/19129.png deleted file mode 100644 index 407a78337c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1913.png b/front/public/images/large/gregtech/gt.blockores/1913.png deleted file mode 100644 index 7420583c34..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1914.png b/front/public/images/large/gregtech/gt.blockores/1914.png deleted file mode 100644 index b1c76da9ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1915.png b/front/public/images/large/gregtech/gt.blockores/1915.png deleted file mode 100644 index e02a937c6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1916.png b/front/public/images/large/gregtech/gt.blockores/1916.png deleted file mode 100644 index b2dd0f1594..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1917.png b/front/public/images/large/gregtech/gt.blockores/1917.png deleted file mode 100644 index abd57576e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1918.png b/front/public/images/large/gregtech/gt.blockores/1918.png deleted file mode 100644 index 604d24ad9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1919.png b/front/public/images/large/gregtech/gt.blockores/1919.png deleted file mode 100644 index e7865bd71e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1920.png b/front/public/images/large/gregtech/gt.blockores/1920.png deleted file mode 100644 index 5f21b45a10..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1921.png b/front/public/images/large/gregtech/gt.blockores/1921.png deleted file mode 100644 index 767acc3b1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1922.png b/front/public/images/large/gregtech/gt.blockores/1922.png deleted file mode 100644 index 21bf8aa7cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1923.png b/front/public/images/large/gregtech/gt.blockores/1923.png deleted file mode 100644 index a184bc68ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1924.png b/front/public/images/large/gregtech/gt.blockores/1924.png deleted file mode 100644 index feee72dd22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1925.png b/front/public/images/large/gregtech/gt.blockores/1925.png deleted file mode 100644 index d3da81dd95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1926.png b/front/public/images/large/gregtech/gt.blockores/1926.png deleted file mode 100644 index f5a542bcd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1927.png b/front/public/images/large/gregtech/gt.blockores/1927.png deleted file mode 100644 index de6e5f774b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1928.png b/front/public/images/large/gregtech/gt.blockores/1928.png deleted file mode 100644 index 8e09c18b53..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1929.png b/front/public/images/large/gregtech/gt.blockores/1929.png deleted file mode 100644 index 5fe70e414e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1930.png b/front/public/images/large/gregtech/gt.blockores/1930.png deleted file mode 100644 index bc6ef0a727..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19303.png b/front/public/images/large/gregtech/gt.blockores/19303.png deleted file mode 100644 index 420a1b791a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19307.png b/front/public/images/large/gregtech/gt.blockores/19307.png deleted file mode 100644 index 81d8894981..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1931.png b/front/public/images/large/gregtech/gt.blockores/1931.png deleted file mode 100644 index b352c2e5db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19319.png b/front/public/images/large/gregtech/gt.blockores/19319.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1932.png b/front/public/images/large/gregtech/gt.blockores/1932.png deleted file mode 100644 index bf550f0919..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19320.png b/front/public/images/large/gregtech/gt.blockores/19320.png deleted file mode 100644 index 8b2056f38f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19323.png b/front/public/images/large/gregtech/gt.blockores/19323.png deleted file mode 100644 index 5d3e0a29cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19324.png b/front/public/images/large/gregtech/gt.blockores/19324.png deleted file mode 100644 index a6cc7c6fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19326.png b/front/public/images/large/gregtech/gt.blockores/19326.png deleted file mode 100644 index e1def0b867..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19327.png b/front/public/images/large/gregtech/gt.blockores/19327.png deleted file mode 100644 index 0904f2f60d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19329.png b/front/public/images/large/gregtech/gt.blockores/19329.png deleted file mode 100644 index 01208e6679..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1933.png b/front/public/images/large/gregtech/gt.blockores/1933.png deleted file mode 100644 index eba8d503b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19331.png b/front/public/images/large/gregtech/gt.blockores/19331.png deleted file mode 100644 index 05d146adae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19336.png b/front/public/images/large/gregtech/gt.blockores/19336.png deleted file mode 100644 index bc0d1b95b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1934.png b/front/public/images/large/gregtech/gt.blockores/1934.png deleted file mode 100644 index e614485f3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19340.png b/front/public/images/large/gregtech/gt.blockores/19340.png deleted file mode 100644 index dd41226e45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19342.png b/front/public/images/large/gregtech/gt.blockores/19342.png deleted file mode 100644 index e03c955dbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19347.png b/front/public/images/large/gregtech/gt.blockores/19347.png deleted file mode 100644 index 7f64d2ad59..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1935.png b/front/public/images/large/gregtech/gt.blockores/1935.png deleted file mode 100644 index cacc29e606..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1936.png b/front/public/images/large/gregtech/gt.blockores/1936.png deleted file mode 100644 index 971d1a8c9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19368.png b/front/public/images/large/gregtech/gt.blockores/19368.png deleted file mode 100644 index 282509b0e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1937.png b/front/public/images/large/gregtech/gt.blockores/1937.png deleted file mode 100644 index 6a37b8c6c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19375.png b/front/public/images/large/gregtech/gt.blockores/19375.png deleted file mode 100644 index 871c32b801..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1938.png b/front/public/images/large/gregtech/gt.blockores/1938.png deleted file mode 100644 index 25f989602e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19382.png b/front/public/images/large/gregtech/gt.blockores/19382.png deleted file mode 100644 index 8a471f85fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19386.png b/front/public/images/large/gregtech/gt.blockores/19386.png deleted file mode 100644 index f7be78f228..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19387.png b/front/public/images/large/gregtech/gt.blockores/19387.png deleted file mode 100644 index b6e763b623..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19388.png b/front/public/images/large/gregtech/gt.blockores/19388.png deleted file mode 100644 index a6cc7c6fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19389.png b/front/public/images/large/gregtech/gt.blockores/19389.png deleted file mode 100644 index 0fbc477916..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1939.png b/front/public/images/large/gregtech/gt.blockores/1939.png deleted file mode 100644 index 810b90431f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19390.png b/front/public/images/large/gregtech/gt.blockores/19390.png deleted file mode 100644 index 9fcb3b141f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19391.png b/front/public/images/large/gregtech/gt.blockores/19391.png deleted file mode 100644 index 85144cb037..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19392.png b/front/public/images/large/gregtech/gt.blockores/19392.png deleted file mode 100644 index 6ac1a55c78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19393.png b/front/public/images/large/gregtech/gt.blockores/19393.png deleted file mode 100644 index 6e2520e8e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19394.png b/front/public/images/large/gregtech/gt.blockores/19394.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19395.png b/front/public/images/large/gregtech/gt.blockores/19395.png deleted file mode 100644 index a6cc7c6fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19398.png b/front/public/images/large/gregtech/gt.blockores/19398.png deleted file mode 100644 index 53d0c19d7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1941.png b/front/public/images/large/gregtech/gt.blockores/1941.png deleted file mode 100644 index 7efa1926a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1942.png b/front/public/images/large/gregtech/gt.blockores/1942.png deleted file mode 100644 index 0af5022242..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1943.png b/front/public/images/large/gregtech/gt.blockores/1943.png deleted file mode 100644 index facb120966..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1944.png b/front/public/images/large/gregtech/gt.blockores/1944.png deleted file mode 100644 index 44c688a1eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1945.png b/front/public/images/large/gregtech/gt.blockores/1945.png deleted file mode 100644 index 9db313ab22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1946.png b/front/public/images/large/gregtech/gt.blockores/1946.png deleted file mode 100644 index 105d10b7f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1948.png b/front/public/images/large/gregtech/gt.blockores/1948.png deleted file mode 100644 index 952cafd0d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19485.png b/front/public/images/large/gregtech/gt.blockores/19485.png deleted file mode 100644 index 59849c4f39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19488.png b/front/public/images/large/gregtech/gt.blockores/19488.png deleted file mode 100644 index 173ad8c2d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19489.png b/front/public/images/large/gregtech/gt.blockores/19489.png deleted file mode 100644 index 205e718ee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1949.png b/front/public/images/large/gregtech/gt.blockores/1949.png deleted file mode 100644 index eba8d503b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19500.png b/front/public/images/large/gregtech/gt.blockores/19500.png deleted file mode 100644 index 8cc842b2ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19501.png b/front/public/images/large/gregtech/gt.blockores/19501.png deleted file mode 100644 index d9a62c4983..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19502.png b/front/public/images/large/gregtech/gt.blockores/19502.png deleted file mode 100644 index d9c6cfc731..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19503.png b/front/public/images/large/gregtech/gt.blockores/19503.png deleted file mode 100644 index ec5e5d8e0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19504.png b/front/public/images/large/gregtech/gt.blockores/19504.png deleted file mode 100644 index de4eab7252..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19505.png b/front/public/images/large/gregtech/gt.blockores/19505.png deleted file mode 100644 index 121f246b31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19506.png b/front/public/images/large/gregtech/gt.blockores/19506.png deleted file mode 100644 index 407a78337c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19507.png b/front/public/images/large/gregtech/gt.blockores/19507.png deleted file mode 100644 index 2250b1635c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19508.png b/front/public/images/large/gregtech/gt.blockores/19508.png deleted file mode 100644 index f0e07b70bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19509.png b/front/public/images/large/gregtech/gt.blockores/19509.png deleted file mode 100644 index 5c2f9cf771..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1951.png b/front/public/images/large/gregtech/gt.blockores/1951.png deleted file mode 100644 index dc36317c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19510.png b/front/public/images/large/gregtech/gt.blockores/19510.png deleted file mode 100644 index fdf0a2b685..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19511.png b/front/public/images/large/gregtech/gt.blockores/19511.png deleted file mode 100644 index 18b1640f51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19512.png b/front/public/images/large/gregtech/gt.blockores/19512.png deleted file mode 100644 index d9c6cfc731..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19513.png b/front/public/images/large/gregtech/gt.blockores/19513.png deleted file mode 100644 index fdf0a2b685..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19514.png b/front/public/images/large/gregtech/gt.blockores/19514.png deleted file mode 100644 index 2250b1635c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19515.png b/front/public/images/large/gregtech/gt.blockores/19515.png deleted file mode 100644 index abed389698..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19516.png b/front/public/images/large/gregtech/gt.blockores/19516.png deleted file mode 100644 index e9c9afe5ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19517.png b/front/public/images/large/gregtech/gt.blockores/19517.png deleted file mode 100644 index 612c6849b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19518.png b/front/public/images/large/gregtech/gt.blockores/19518.png deleted file mode 100644 index a521f8b878..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19519.png b/front/public/images/large/gregtech/gt.blockores/19519.png deleted file mode 100644 index a521f8b878..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1952.png b/front/public/images/large/gregtech/gt.blockores/1952.png deleted file mode 100644 index d00a2f05ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19520.png b/front/public/images/large/gregtech/gt.blockores/19520.png deleted file mode 100644 index a06fe39e28..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19521.png b/front/public/images/large/gregtech/gt.blockores/19521.png deleted file mode 100644 index 7ad0409740..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19522.png b/front/public/images/large/gregtech/gt.blockores/19522.png deleted file mode 100644 index 5062360468..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19523.png b/front/public/images/large/gregtech/gt.blockores/19523.png deleted file mode 100644 index 02422df129..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19524.png b/front/public/images/large/gregtech/gt.blockores/19524.png deleted file mode 100644 index ccd4f1ce05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19525.png b/front/public/images/large/gregtech/gt.blockores/19525.png deleted file mode 100644 index 855918cbfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19526.png b/front/public/images/large/gregtech/gt.blockores/19526.png deleted file mode 100644 index 672e9411c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19527.png b/front/public/images/large/gregtech/gt.blockores/19527.png deleted file mode 100644 index 18b1640f51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19528.png b/front/public/images/large/gregtech/gt.blockores/19528.png deleted file mode 100644 index b77b8f9581..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19529.png b/front/public/images/large/gregtech/gt.blockores/19529.png deleted file mode 100644 index bf44047895..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19530.png b/front/public/images/large/gregtech/gt.blockores/19530.png deleted file mode 100644 index 829ae1002a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19531.png b/front/public/images/large/gregtech/gt.blockores/19531.png deleted file mode 100644 index 5a332cbc53..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19534.png b/front/public/images/large/gregtech/gt.blockores/19534.png deleted file mode 100644 index 4ef5eb34dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19535.png b/front/public/images/large/gregtech/gt.blockores/19535.png deleted file mode 100644 index 027f72bea6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19537.png b/front/public/images/large/gregtech/gt.blockores/19537.png deleted file mode 100644 index 3aab959029..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19538.png b/front/public/images/large/gregtech/gt.blockores/19538.png deleted file mode 100644 index 98380e7742..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19540.png b/front/public/images/large/gregtech/gt.blockores/19540.png deleted file mode 100644 index 7ad0409740..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19541.png b/front/public/images/large/gregtech/gt.blockores/19541.png deleted file mode 100644 index d80b026465..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19542.png b/front/public/images/large/gregtech/gt.blockores/19542.png deleted file mode 100644 index 43aafd7e7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19543.png b/front/public/images/large/gregtech/gt.blockores/19543.png deleted file mode 100644 index da79f6fb2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19544.png b/front/public/images/large/gregtech/gt.blockores/19544.png deleted file mode 100644 index 06859bc68d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19545.png b/front/public/images/large/gregtech/gt.blockores/19545.png deleted file mode 100644 index bff1994fca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19548.png b/front/public/images/large/gregtech/gt.blockores/19548.png deleted file mode 100644 index cd6d143556..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19549.png b/front/public/images/large/gregtech/gt.blockores/19549.png deleted file mode 100644 index 4b6bcdb20c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1956.png b/front/public/images/large/gregtech/gt.blockores/1956.png deleted file mode 100644 index 8a3a5e2333..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19607.png b/front/public/images/large/gregtech/gt.blockores/19607.png deleted file mode 100644 index 50c2cb5b67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1966.png b/front/public/images/large/gregtech/gt.blockores/1966.png deleted file mode 100644 index 375da8ca08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1969.png b/front/public/images/large/gregtech/gt.blockores/1969.png deleted file mode 100644 index 30722183db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19699.png b/front/public/images/large/gregtech/gt.blockores/19699.png deleted file mode 100644 index 067425dfff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1971.png b/front/public/images/large/gregtech/gt.blockores/1971.png deleted file mode 100644 index f01e325622..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1975.png b/front/public/images/large/gregtech/gt.blockores/1975.png deleted file mode 100644 index e40066c04a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1976.png b/front/public/images/large/gregtech/gt.blockores/1976.png deleted file mode 100644 index b898c20b93..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19770.png b/front/public/images/large/gregtech/gt.blockores/19770.png deleted file mode 100644 index c39b1b7bf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1978.png b/front/public/images/large/gregtech/gt.blockores/1978.png deleted file mode 100644 index 04cefcff56..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19797.png b/front/public/images/large/gregtech/gt.blockores/19797.png deleted file mode 100644 index 83b0adb0ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19810.png b/front/public/images/large/gregtech/gt.blockores/19810.png deleted file mode 100644 index b02799c73e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19812.png b/front/public/images/large/gregtech/gt.blockores/19812.png deleted file mode 100644 index f91c2f8746..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19817.png b/front/public/images/large/gregtech/gt.blockores/19817.png deleted file mode 100644 index 407a78337c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1982.png b/front/public/images/large/gregtech/gt.blockores/1982.png deleted file mode 100644 index 27e0e3ea49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19820.png b/front/public/images/large/gregtech/gt.blockores/19820.png deleted file mode 100644 index f720c1fbe1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19821.png b/front/public/images/large/gregtech/gt.blockores/19821.png deleted file mode 100644 index 848d8f60ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19822.png b/front/public/images/large/gregtech/gt.blockores/19822.png deleted file mode 100644 index e5db1e3c69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19823.png b/front/public/images/large/gregtech/gt.blockores/19823.png deleted file mode 100644 index 6114130a9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19824.png b/front/public/images/large/gregtech/gt.blockores/19824.png deleted file mode 100644 index 83b0adb0ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19825.png b/front/public/images/large/gregtech/gt.blockores/19825.png deleted file mode 100644 index d1564c8fa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19826.png b/front/public/images/large/gregtech/gt.blockores/19826.png deleted file mode 100644 index 9b0dfd51ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19827.png b/front/public/images/large/gregtech/gt.blockores/19827.png deleted file mode 100644 index b7067e60a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19828.png b/front/public/images/large/gregtech/gt.blockores/19828.png deleted file mode 100644 index f5110361b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19829.png b/front/public/images/large/gregtech/gt.blockores/19829.png deleted file mode 100644 index 26e5184e0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19830.png b/front/public/images/large/gregtech/gt.blockores/19830.png deleted file mode 100644 index ebe59250cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19831.png b/front/public/images/large/gregtech/gt.blockores/19831.png deleted file mode 100644 index e5db1e3c69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19833.png b/front/public/images/large/gregtech/gt.blockores/19833.png deleted file mode 100644 index 4ef5eb34dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19834.png b/front/public/images/large/gregtech/gt.blockores/19834.png deleted file mode 100644 index 9678fa086d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19835.png b/front/public/images/large/gregtech/gt.blockores/19835.png deleted file mode 100644 index 9cdd77e1e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19836.png b/front/public/images/large/gregtech/gt.blockores/19836.png deleted file mode 100644 index 774beeb8f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19838.png b/front/public/images/large/gregtech/gt.blockores/19838.png deleted file mode 100644 index d9c6cfc731..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19839.png b/front/public/images/large/gregtech/gt.blockores/19839.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/1984.png b/front/public/images/large/gregtech/gt.blockores/1984.png deleted file mode 100644 index 5225db2526..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/1984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19840.png b/front/public/images/large/gregtech/gt.blockores/19840.png deleted file mode 100644 index 6ba610c60b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19841.png b/front/public/images/large/gregtech/gt.blockores/19841.png deleted file mode 100644 index 200c6486b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19842.png b/front/public/images/large/gregtech/gt.blockores/19842.png deleted file mode 100644 index f744b54f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19855.png b/front/public/images/large/gregtech/gt.blockores/19855.png deleted file mode 100644 index 8bf92bbaa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19856.png b/front/public/images/large/gregtech/gt.blockores/19856.png deleted file mode 100644 index 82f595d8bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19861.png b/front/public/images/large/gregtech/gt.blockores/19861.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19865.png b/front/public/images/large/gregtech/gt.blockores/19865.png deleted file mode 100644 index bdbb770e40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19868.png b/front/public/images/large/gregtech/gt.blockores/19868.png deleted file mode 100644 index 6370f6bd3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19870.png b/front/public/images/large/gregtech/gt.blockores/19870.png deleted file mode 100644 index 27fa57cf31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19871.png b/front/public/images/large/gregtech/gt.blockores/19871.png deleted file mode 100644 index 8de015154b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19873.png b/front/public/images/large/gregtech/gt.blockores/19873.png deleted file mode 100644 index 8de7ebbe67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19877.png b/front/public/images/large/gregtech/gt.blockores/19877.png deleted file mode 100644 index 3a7b042b20..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19878.png b/front/public/images/large/gregtech/gt.blockores/19878.png deleted file mode 100644 index e95304b46e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19882.png b/front/public/images/large/gregtech/gt.blockores/19882.png deleted file mode 100644 index 2250b1635c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19883.png b/front/public/images/large/gregtech/gt.blockores/19883.png deleted file mode 100644 index 4ef5eb34dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19884.png b/front/public/images/large/gregtech/gt.blockores/19884.png deleted file mode 100644 index d160fd0222..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19894.png b/front/public/images/large/gregtech/gt.blockores/19894.png deleted file mode 100644 index 4ef5eb34dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19900.png b/front/public/images/large/gregtech/gt.blockores/19900.png deleted file mode 100644 index 45d8a92e59..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19901.png b/front/public/images/large/gregtech/gt.blockores/19901.png deleted file mode 100644 index 222cc130ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19902.png b/front/public/images/large/gregtech/gt.blockores/19902.png deleted file mode 100644 index 2045df7513..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19903.png b/front/public/images/large/gregtech/gt.blockores/19903.png deleted file mode 100644 index b8a2cd8a9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19904.png b/front/public/images/large/gregtech/gt.blockores/19904.png deleted file mode 100644 index e2028ecd1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19905.png b/front/public/images/large/gregtech/gt.blockores/19905.png deleted file mode 100644 index 976648e273..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19906.png b/front/public/images/large/gregtech/gt.blockores/19906.png deleted file mode 100644 index f9d329d880..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19907.png b/front/public/images/large/gregtech/gt.blockores/19907.png deleted file mode 100644 index 3bb3c9d6d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19908.png b/front/public/images/large/gregtech/gt.blockores/19908.png deleted file mode 100644 index 09c5bf7734..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19909.png b/front/public/images/large/gregtech/gt.blockores/19909.png deleted file mode 100644 index f339487282..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19910.png b/front/public/images/large/gregtech/gt.blockores/19910.png deleted file mode 100644 index 5397a3c717..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19911.png b/front/public/images/large/gregtech/gt.blockores/19911.png deleted file mode 100644 index a8c9214e3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19912.png b/front/public/images/large/gregtech/gt.blockores/19912.png deleted file mode 100644 index e1b7d8f1e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19913.png b/front/public/images/large/gregtech/gt.blockores/19913.png deleted file mode 100644 index e0d8297119..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19914.png b/front/public/images/large/gregtech/gt.blockores/19914.png deleted file mode 100644 index 72b5911c0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19915.png b/front/public/images/large/gregtech/gt.blockores/19915.png deleted file mode 100644 index 9f307caa08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19916.png b/front/public/images/large/gregtech/gt.blockores/19916.png deleted file mode 100644 index 99c823bf3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19917.png b/front/public/images/large/gregtech/gt.blockores/19917.png deleted file mode 100644 index 97e20464e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19918.png b/front/public/images/large/gregtech/gt.blockores/19918.png deleted file mode 100644 index c7d94a371c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19919.png b/front/public/images/large/gregtech/gt.blockores/19919.png deleted file mode 100644 index ca2ef18e73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19920.png b/front/public/images/large/gregtech/gt.blockores/19920.png deleted file mode 100644 index efc8d996d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19921.png b/front/public/images/large/gregtech/gt.blockores/19921.png deleted file mode 100644 index 842d63164d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19922.png b/front/public/images/large/gregtech/gt.blockores/19922.png deleted file mode 100644 index df0ce209fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19923.png b/front/public/images/large/gregtech/gt.blockores/19923.png deleted file mode 100644 index 704cf77872..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19924.png b/front/public/images/large/gregtech/gt.blockores/19924.png deleted file mode 100644 index df371e3e46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19925.png b/front/public/images/large/gregtech/gt.blockores/19925.png deleted file mode 100644 index bdfde67d64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19926.png b/front/public/images/large/gregtech/gt.blockores/19926.png deleted file mode 100644 index 5811cb1e31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19927.png b/front/public/images/large/gregtech/gt.blockores/19927.png deleted file mode 100644 index 8c7579ee99..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19928.png b/front/public/images/large/gregtech/gt.blockores/19928.png deleted file mode 100644 index 5574ac442a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19929.png b/front/public/images/large/gregtech/gt.blockores/19929.png deleted file mode 100644 index d9933e4505..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19930.png b/front/public/images/large/gregtech/gt.blockores/19930.png deleted file mode 100644 index e5db1e3c69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19931.png b/front/public/images/large/gregtech/gt.blockores/19931.png deleted file mode 100644 index 9162151432..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19932.png b/front/public/images/large/gregtech/gt.blockores/19932.png deleted file mode 100644 index 1ebd5e1466..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19933.png b/front/public/images/large/gregtech/gt.blockores/19933.png deleted file mode 100644 index a43a12dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19934.png b/front/public/images/large/gregtech/gt.blockores/19934.png deleted file mode 100644 index ebaf04e8f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19935.png b/front/public/images/large/gregtech/gt.blockores/19935.png deleted file mode 100644 index bc085a757b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19936.png b/front/public/images/large/gregtech/gt.blockores/19936.png deleted file mode 100644 index 2c8716c135..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19937.png b/front/public/images/large/gregtech/gt.blockores/19937.png deleted file mode 100644 index 83b0adb0ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19938.png b/front/public/images/large/gregtech/gt.blockores/19938.png deleted file mode 100644 index e5db1e3c69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19939.png b/front/public/images/large/gregtech/gt.blockores/19939.png deleted file mode 100644 index 92a855881b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19941.png b/front/public/images/large/gregtech/gt.blockores/19941.png deleted file mode 100644 index 407a78337c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19942.png b/front/public/images/large/gregtech/gt.blockores/19942.png deleted file mode 100644 index 7613f421f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19943.png b/front/public/images/large/gregtech/gt.blockores/19943.png deleted file mode 100644 index a7cab5ac4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19944.png b/front/public/images/large/gregtech/gt.blockores/19944.png deleted file mode 100644 index 7eaf0b265a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19945.png b/front/public/images/large/gregtech/gt.blockores/19945.png deleted file mode 100644 index 027f72bea6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19946.png b/front/public/images/large/gregtech/gt.blockores/19946.png deleted file mode 100644 index 774beeb8f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19948.png b/front/public/images/large/gregtech/gt.blockores/19948.png deleted file mode 100644 index ea79bf0a22..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19949.png b/front/public/images/large/gregtech/gt.blockores/19949.png deleted file mode 100644 index a43a12dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19951.png b/front/public/images/large/gregtech/gt.blockores/19951.png deleted file mode 100644 index d91850a933..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19952.png b/front/public/images/large/gregtech/gt.blockores/19952.png deleted file mode 100644 index 590fbd6e9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19956.png b/front/public/images/large/gregtech/gt.blockores/19956.png deleted file mode 100644 index 72845f3108..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19966.png b/front/public/images/large/gregtech/gt.blockores/19966.png deleted file mode 100644 index afc7f9cf64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19969.png b/front/public/images/large/gregtech/gt.blockores/19969.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19971.png b/front/public/images/large/gregtech/gt.blockores/19971.png deleted file mode 100644 index be2eb0f5e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19975.png b/front/public/images/large/gregtech/gt.blockores/19975.png deleted file mode 100644 index 62652bc8f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19976.png b/front/public/images/large/gregtech/gt.blockores/19976.png deleted file mode 100644 index c79a0e15a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19978.png b/front/public/images/large/gregtech/gt.blockores/19978.png deleted file mode 100644 index af7887f409..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19982.png b/front/public/images/large/gregtech/gt.blockores/19982.png deleted file mode 100644 index a6cc7c6fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/19984.png b/front/public/images/large/gregtech/gt.blockores/19984.png deleted file mode 100644 index ad6f6857f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/19984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20.png b/front/public/images/large/gregtech/gt.blockores/20.png deleted file mode 100644 index d09818a57d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20006.png b/front/public/images/large/gregtech/gt.blockores/20006.png deleted file mode 100644 index 7a5f0e70e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20008.png b/front/public/images/large/gregtech/gt.blockores/20008.png deleted file mode 100644 index 85ad307244..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20018.png b/front/public/images/large/gregtech/gt.blockores/20018.png deleted file mode 100644 index f814058491..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20019.png b/front/public/images/large/gregtech/gt.blockores/20019.png deleted file mode 100644 index b2f8fc2129..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20020.png b/front/public/images/large/gregtech/gt.blockores/20020.png deleted file mode 100644 index c74629a2ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20022.png b/front/public/images/large/gregtech/gt.blockores/20022.png deleted file mode 100644 index 95bd2a8726..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20027.png b/front/public/images/large/gregtech/gt.blockores/20027.png deleted file mode 100644 index 49aa00ddc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20028.png b/front/public/images/large/gregtech/gt.blockores/20028.png deleted file mode 100644 index 63bcfdaa52..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20029.png b/front/public/images/large/gregtech/gt.blockores/20029.png deleted file mode 100644 index eb127a514c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20030.png b/front/public/images/large/gregtech/gt.blockores/20030.png deleted file mode 100644 index cb4ec2364f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20031.png b/front/public/images/large/gregtech/gt.blockores/20031.png deleted file mode 100644 index bed3a26049..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20032.png b/front/public/images/large/gregtech/gt.blockores/20032.png deleted file mode 100644 index c4db9b4fe8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20033.png b/front/public/images/large/gregtech/gt.blockores/20033.png deleted file mode 100644 index 97861ef640..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20034.png b/front/public/images/large/gregtech/gt.blockores/20034.png deleted file mode 100644 index 7e843729c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20035.png b/front/public/images/large/gregtech/gt.blockores/20035.png deleted file mode 100644 index 2f5d422b86..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20036.png b/front/public/images/large/gregtech/gt.blockores/20036.png deleted file mode 100644 index 2aa3a8c873..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20037.png b/front/public/images/large/gregtech/gt.blockores/20037.png deleted file mode 100644 index efd7012502..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20039.png b/front/public/images/large/gregtech/gt.blockores/20039.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20043.png b/front/public/images/large/gregtech/gt.blockores/20043.png deleted file mode 100644 index 15356fe8a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20044.png b/front/public/images/large/gregtech/gt.blockores/20044.png deleted file mode 100644 index c4db9b4fe8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20045.png b/front/public/images/large/gregtech/gt.blockores/20045.png deleted file mode 100644 index 1bf59dac37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20047.png b/front/public/images/large/gregtech/gt.blockores/20047.png deleted file mode 100644 index e7412e237b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20048.png b/front/public/images/large/gregtech/gt.blockores/20048.png deleted file mode 100644 index 15cdfce40b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20052.png b/front/public/images/large/gregtech/gt.blockores/20052.png deleted file mode 100644 index bf6ef5fe24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20054.png b/front/public/images/large/gregtech/gt.blockores/20054.png deleted file mode 100644 index efd7012502..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20055.png b/front/public/images/large/gregtech/gt.blockores/20055.png deleted file mode 100644 index e2a5e2b07a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20056.png b/front/public/images/large/gregtech/gt.blockores/20056.png deleted file mode 100644 index 5c5082fd2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20057.png b/front/public/images/large/gregtech/gt.blockores/20057.png deleted file mode 100644 index 79fee76289..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20058.png b/front/public/images/large/gregtech/gt.blockores/20058.png deleted file mode 100644 index 3e83e0da63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20059.png b/front/public/images/large/gregtech/gt.blockores/20059.png deleted file mode 100644 index b5a861661d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2006.png b/front/public/images/large/gregtech/gt.blockores/2006.png deleted file mode 100644 index 5ddfeab180..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20062.png b/front/public/images/large/gregtech/gt.blockores/20062.png deleted file mode 100644 index 1b97ff062d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20063.png b/front/public/images/large/gregtech/gt.blockores/20063.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20064.png b/front/public/images/large/gregtech/gt.blockores/20064.png deleted file mode 100644 index 8abe893c53..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20065.png b/front/public/images/large/gregtech/gt.blockores/20065.png deleted file mode 100644 index 28273a1606..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20066.png b/front/public/images/large/gregtech/gt.blockores/20066.png deleted file mode 100644 index 0cefe7edbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20067.png b/front/public/images/large/gregtech/gt.blockores/20067.png deleted file mode 100644 index 07ee704ad7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20068.png b/front/public/images/large/gregtech/gt.blockores/20068.png deleted file mode 100644 index 0dd56f31ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20069.png b/front/public/images/large/gregtech/gt.blockores/20069.png deleted file mode 100644 index de6892abaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20070.png b/front/public/images/large/gregtech/gt.blockores/20070.png deleted file mode 100644 index a5d6eb904d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20071.png b/front/public/images/large/gregtech/gt.blockores/20071.png deleted file mode 100644 index 20eee85d36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20072.png b/front/public/images/large/gregtech/gt.blockores/20072.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20073.png b/front/public/images/large/gregtech/gt.blockores/20073.png deleted file mode 100644 index c50bd83271..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20074.png b/front/public/images/large/gregtech/gt.blockores/20074.png deleted file mode 100644 index 8daa0a5253..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20075.png b/front/public/images/large/gregtech/gt.blockores/20075.png deleted file mode 100644 index 663b3eec34..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20076.png b/front/public/images/large/gregtech/gt.blockores/20076.png deleted file mode 100644 index 073d1a89e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20077.png b/front/public/images/large/gregtech/gt.blockores/20077.png deleted file mode 100644 index 5cd50b2625..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20078.png b/front/public/images/large/gregtech/gt.blockores/20078.png deleted file mode 100644 index 5874205a61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2008.png b/front/public/images/large/gregtech/gt.blockores/2008.png deleted file mode 100644 index 84ca9097d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20080.png b/front/public/images/large/gregtech/gt.blockores/20080.png deleted file mode 100644 index 514cd5b91f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20081.png b/front/public/images/large/gregtech/gt.blockores/20081.png deleted file mode 100644 index eb127a514c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20083.png b/front/public/images/large/gregtech/gt.blockores/20083.png deleted file mode 100644 index 4875bc0a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20084.png b/front/public/images/large/gregtech/gt.blockores/20084.png deleted file mode 100644 index ad406c55f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20085.png b/front/public/images/large/gregtech/gt.blockores/20085.png deleted file mode 100644 index 3603d71287..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20086.png b/front/public/images/large/gregtech/gt.blockores/20086.png deleted file mode 100644 index 78e8329ccd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20089.png b/front/public/images/large/gregtech/gt.blockores/20089.png deleted file mode 100644 index 02b9e5e05f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20090.png b/front/public/images/large/gregtech/gt.blockores/20090.png deleted file mode 100644 index f84caca863..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20096.png b/front/public/images/large/gregtech/gt.blockores/20096.png deleted file mode 100644 index c638ec014f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20097.png b/front/public/images/large/gregtech/gt.blockores/20097.png deleted file mode 100644 index baa0c01437..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20098.png b/front/public/images/large/gregtech/gt.blockores/20098.png deleted file mode 100644 index 9ccc506771..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20100.png b/front/public/images/large/gregtech/gt.blockores/20100.png deleted file mode 100644 index c0f170b306..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20101.png b/front/public/images/large/gregtech/gt.blockores/20101.png deleted file mode 100644 index 74409fa146..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20103.png b/front/public/images/large/gregtech/gt.blockores/20103.png deleted file mode 100644 index c4db9b4fe8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20110.png b/front/public/images/large/gregtech/gt.blockores/20110.png deleted file mode 100644 index 644f35e122..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20129.png b/front/public/images/large/gregtech/gt.blockores/20129.png deleted file mode 100644 index bed3a26049..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2018.png b/front/public/images/large/gregtech/gt.blockores/2018.png deleted file mode 100644 index 81d5b4dc39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2019.png b/front/public/images/large/gregtech/gt.blockores/2019.png deleted file mode 100644 index 9972b7b7ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2020.png b/front/public/images/large/gregtech/gt.blockores/2020.png deleted file mode 100644 index 51ce5e6591..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2022.png b/front/public/images/large/gregtech/gt.blockores/2022.png deleted file mode 100644 index 37a3dddc25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2027.png b/front/public/images/large/gregtech/gt.blockores/2027.png deleted file mode 100644 index a8a7000ec0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2028.png b/front/public/images/large/gregtech/gt.blockores/2028.png deleted file mode 100644 index f361ff230c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2029.png b/front/public/images/large/gregtech/gt.blockores/2029.png deleted file mode 100644 index bca3b5e513..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2030.png b/front/public/images/large/gregtech/gt.blockores/2030.png deleted file mode 100644 index f4d2c1addd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20303.png b/front/public/images/large/gregtech/gt.blockores/20303.png deleted file mode 100644 index 58505d1732..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20307.png b/front/public/images/large/gregtech/gt.blockores/20307.png deleted file mode 100644 index 4f875105fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2031.png b/front/public/images/large/gregtech/gt.blockores/2031.png deleted file mode 100644 index 50079f9e82..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20319.png b/front/public/images/large/gregtech/gt.blockores/20319.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2032.png b/front/public/images/large/gregtech/gt.blockores/2032.png deleted file mode 100644 index aad05c9734..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20320.png b/front/public/images/large/gregtech/gt.blockores/20320.png deleted file mode 100644 index 0a7a699f02..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20323.png b/front/public/images/large/gregtech/gt.blockores/20323.png deleted file mode 100644 index 57fe4ea66d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20324.png b/front/public/images/large/gregtech/gt.blockores/20324.png deleted file mode 100644 index eb127a514c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20326.png b/front/public/images/large/gregtech/gt.blockores/20326.png deleted file mode 100644 index d27b3a7bae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20327.png b/front/public/images/large/gregtech/gt.blockores/20327.png deleted file mode 100644 index f3ff2b27b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20329.png b/front/public/images/large/gregtech/gt.blockores/20329.png deleted file mode 100644 index e18b1ed2a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2033.png b/front/public/images/large/gregtech/gt.blockores/2033.png deleted file mode 100644 index 44ece67fb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20331.png b/front/public/images/large/gregtech/gt.blockores/20331.png deleted file mode 100644 index 21f4a7248c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20336.png b/front/public/images/large/gregtech/gt.blockores/20336.png deleted file mode 100644 index 6de8975947..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2034.png b/front/public/images/large/gregtech/gt.blockores/2034.png deleted file mode 100644 index 3f56710587..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20340.png b/front/public/images/large/gregtech/gt.blockores/20340.png deleted file mode 100644 index 9dfcfd02f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20342.png b/front/public/images/large/gregtech/gt.blockores/20342.png deleted file mode 100644 index 143a4a3c89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20347.png b/front/public/images/large/gregtech/gt.blockores/20347.png deleted file mode 100644 index 49881eea64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2035.png b/front/public/images/large/gregtech/gt.blockores/2035.png deleted file mode 100644 index dd365ebcf0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2036.png b/front/public/images/large/gregtech/gt.blockores/2036.png deleted file mode 100644 index e6cf8aca35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20368.png b/front/public/images/large/gregtech/gt.blockores/20368.png deleted file mode 100644 index c846e7ffef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2037.png b/front/public/images/large/gregtech/gt.blockores/2037.png deleted file mode 100644 index 083623c169..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20375.png b/front/public/images/large/gregtech/gt.blockores/20375.png deleted file mode 100644 index b0f8b0b623..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20382.png b/front/public/images/large/gregtech/gt.blockores/20382.png deleted file mode 100644 index 3668e37db7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20386.png b/front/public/images/large/gregtech/gt.blockores/20386.png deleted file mode 100644 index b1a248ce5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20387.png b/front/public/images/large/gregtech/gt.blockores/20387.png deleted file mode 100644 index 4819e2de1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20388.png b/front/public/images/large/gregtech/gt.blockores/20388.png deleted file mode 100644 index eb127a514c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20389.png b/front/public/images/large/gregtech/gt.blockores/20389.png deleted file mode 100644 index 13b889e97c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2039.png b/front/public/images/large/gregtech/gt.blockores/2039.png deleted file mode 100644 index 2fea349e78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20390.png b/front/public/images/large/gregtech/gt.blockores/20390.png deleted file mode 100644 index 6c3c2b6e63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20391.png b/front/public/images/large/gregtech/gt.blockores/20391.png deleted file mode 100644 index 95b1f21b9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20392.png b/front/public/images/large/gregtech/gt.blockores/20392.png deleted file mode 100644 index 27a23bbda9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20393.png b/front/public/images/large/gregtech/gt.blockores/20393.png deleted file mode 100644 index abdf6fa048..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20394.png b/front/public/images/large/gregtech/gt.blockores/20394.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20395.png b/front/public/images/large/gregtech/gt.blockores/20395.png deleted file mode 100644 index eb127a514c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20398.png b/front/public/images/large/gregtech/gt.blockores/20398.png deleted file mode 100644 index 8128063f11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2043.png b/front/public/images/large/gregtech/gt.blockores/2043.png deleted file mode 100644 index b10afa6296..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2044.png b/front/public/images/large/gregtech/gt.blockores/2044.png deleted file mode 100644 index aad05c9734..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2045.png b/front/public/images/large/gregtech/gt.blockores/2045.png deleted file mode 100644 index b01b47daf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2047.png b/front/public/images/large/gregtech/gt.blockores/2047.png deleted file mode 100644 index b83e5ac063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2048.png b/front/public/images/large/gregtech/gt.blockores/2048.png deleted file mode 100644 index 2816e5491b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20485.png b/front/public/images/large/gregtech/gt.blockores/20485.png deleted file mode 100644 index 7c174404e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20488.png b/front/public/images/large/gregtech/gt.blockores/20488.png deleted file mode 100644 index 998cb8bc9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20489.png b/front/public/images/large/gregtech/gt.blockores/20489.png deleted file mode 100644 index 8da00f2bbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20500.png b/front/public/images/large/gregtech/gt.blockores/20500.png deleted file mode 100644 index 4be29fa229..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20501.png b/front/public/images/large/gregtech/gt.blockores/20501.png deleted file mode 100644 index f3c0399acd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20502.png b/front/public/images/large/gregtech/gt.blockores/20502.png deleted file mode 100644 index be2a6b262c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20503.png b/front/public/images/large/gregtech/gt.blockores/20503.png deleted file mode 100644 index e835797a82..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20504.png b/front/public/images/large/gregtech/gt.blockores/20504.png deleted file mode 100644 index f046bea697..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20505.png b/front/public/images/large/gregtech/gt.blockores/20505.png deleted file mode 100644 index 067d5a9bd0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20506.png b/front/public/images/large/gregtech/gt.blockores/20506.png deleted file mode 100644 index bed3a26049..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20507.png b/front/public/images/large/gregtech/gt.blockores/20507.png deleted file mode 100644 index 31ae042c3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20508.png b/front/public/images/large/gregtech/gt.blockores/20508.png deleted file mode 100644 index d580f53719..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20509.png b/front/public/images/large/gregtech/gt.blockores/20509.png deleted file mode 100644 index 2d9e4f9aa2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20510.png b/front/public/images/large/gregtech/gt.blockores/20510.png deleted file mode 100644 index 1f625d5ddb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20511.png b/front/public/images/large/gregtech/gt.blockores/20511.png deleted file mode 100644 index 34d3804d7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20512.png b/front/public/images/large/gregtech/gt.blockores/20512.png deleted file mode 100644 index be2a6b262c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20513.png b/front/public/images/large/gregtech/gt.blockores/20513.png deleted file mode 100644 index 1f625d5ddb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20514.png b/front/public/images/large/gregtech/gt.blockores/20514.png deleted file mode 100644 index 31ae042c3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20515.png b/front/public/images/large/gregtech/gt.blockores/20515.png deleted file mode 100644 index a4a29a79e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20516.png b/front/public/images/large/gregtech/gt.blockores/20516.png deleted file mode 100644 index c338f0e43a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20517.png b/front/public/images/large/gregtech/gt.blockores/20517.png deleted file mode 100644 index b12cfd2fdf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20518.png b/front/public/images/large/gregtech/gt.blockores/20518.png deleted file mode 100644 index 8ce0981b87..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20519.png b/front/public/images/large/gregtech/gt.blockores/20519.png deleted file mode 100644 index 8ce0981b87..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2052.png b/front/public/images/large/gregtech/gt.blockores/2052.png deleted file mode 100644 index a8e5a9ac8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20520.png b/front/public/images/large/gregtech/gt.blockores/20520.png deleted file mode 100644 index d317053434..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20521.png b/front/public/images/large/gregtech/gt.blockores/20521.png deleted file mode 100644 index 2f4ec5ce13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20522.png b/front/public/images/large/gregtech/gt.blockores/20522.png deleted file mode 100644 index 2af06ff326..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20523.png b/front/public/images/large/gregtech/gt.blockores/20523.png deleted file mode 100644 index 2f17c0ef4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20524.png b/front/public/images/large/gregtech/gt.blockores/20524.png deleted file mode 100644 index 83b6e54244..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20525.png b/front/public/images/large/gregtech/gt.blockores/20525.png deleted file mode 100644 index e34172ca46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20526.png b/front/public/images/large/gregtech/gt.blockores/20526.png deleted file mode 100644 index 8abe286052..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20527.png b/front/public/images/large/gregtech/gt.blockores/20527.png deleted file mode 100644 index 34d3804d7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20528.png b/front/public/images/large/gregtech/gt.blockores/20528.png deleted file mode 100644 index ec2ec00fad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20529.png b/front/public/images/large/gregtech/gt.blockores/20529.png deleted file mode 100644 index 78017de298..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20530.png b/front/public/images/large/gregtech/gt.blockores/20530.png deleted file mode 100644 index 6950bc6241..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20531.png b/front/public/images/large/gregtech/gt.blockores/20531.png deleted file mode 100644 index f814058491..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20534.png b/front/public/images/large/gregtech/gt.blockores/20534.png deleted file mode 100644 index 6162f41904..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20535.png b/front/public/images/large/gregtech/gt.blockores/20535.png deleted file mode 100644 index 716af13316..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20537.png b/front/public/images/large/gregtech/gt.blockores/20537.png deleted file mode 100644 index fe874b99ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20538.png b/front/public/images/large/gregtech/gt.blockores/20538.png deleted file mode 100644 index e12b3ce08b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2054.png b/front/public/images/large/gregtech/gt.blockores/2054.png deleted file mode 100644 index 083623c169..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20540.png b/front/public/images/large/gregtech/gt.blockores/20540.png deleted file mode 100644 index 2f4ec5ce13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20541.png b/front/public/images/large/gregtech/gt.blockores/20541.png deleted file mode 100644 index 2941a103e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20542.png b/front/public/images/large/gregtech/gt.blockores/20542.png deleted file mode 100644 index 58a4154aac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20543.png b/front/public/images/large/gregtech/gt.blockores/20543.png deleted file mode 100644 index 811db47050..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20544.png b/front/public/images/large/gregtech/gt.blockores/20544.png deleted file mode 100644 index cc11b66a64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20545.png b/front/public/images/large/gregtech/gt.blockores/20545.png deleted file mode 100644 index 734c5eea05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20548.png b/front/public/images/large/gregtech/gt.blockores/20548.png deleted file mode 100644 index fc36185e2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20549.png b/front/public/images/large/gregtech/gt.blockores/20549.png deleted file mode 100644 index c52bb7b000..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2055.png b/front/public/images/large/gregtech/gt.blockores/2055.png deleted file mode 100644 index bb260816b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2056.png b/front/public/images/large/gregtech/gt.blockores/2056.png deleted file mode 100644 index 78cc5ecdca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2057.png b/front/public/images/large/gregtech/gt.blockores/2057.png deleted file mode 100644 index 975950308b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2058.png b/front/public/images/large/gregtech/gt.blockores/2058.png deleted file mode 100644 index fa6cdf6b68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2059.png b/front/public/images/large/gregtech/gt.blockores/2059.png deleted file mode 100644 index 5ffdc3487a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20607.png b/front/public/images/large/gregtech/gt.blockores/20607.png deleted file mode 100644 index 1b658da03e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2062.png b/front/public/images/large/gregtech/gt.blockores/2062.png deleted file mode 100644 index e3936d7fb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2063.png b/front/public/images/large/gregtech/gt.blockores/2063.png deleted file mode 100644 index 2fea349e78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2064.png b/front/public/images/large/gregtech/gt.blockores/2064.png deleted file mode 100644 index c2d8141f06..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2065.png b/front/public/images/large/gregtech/gt.blockores/2065.png deleted file mode 100644 index d1e850ff35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2066.png b/front/public/images/large/gregtech/gt.blockores/2066.png deleted file mode 100644 index d67f50ef6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2067.png b/front/public/images/large/gregtech/gt.blockores/2067.png deleted file mode 100644 index ea3afbe53a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2068.png b/front/public/images/large/gregtech/gt.blockores/2068.png deleted file mode 100644 index 91b42645af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2069.png b/front/public/images/large/gregtech/gt.blockores/2069.png deleted file mode 100644 index d6b450e6c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20699.png b/front/public/images/large/gregtech/gt.blockores/20699.png deleted file mode 100644 index c94569b146..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2070.png b/front/public/images/large/gregtech/gt.blockores/2070.png deleted file mode 100644 index 11202af400..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2071.png b/front/public/images/large/gregtech/gt.blockores/2071.png deleted file mode 100644 index ad8a16e510..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2072.png b/front/public/images/large/gregtech/gt.blockores/2072.png deleted file mode 100644 index 2fea349e78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2073.png b/front/public/images/large/gregtech/gt.blockores/2073.png deleted file mode 100644 index 668851609b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2074.png b/front/public/images/large/gregtech/gt.blockores/2074.png deleted file mode 100644 index 5bb8c13b3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2075.png b/front/public/images/large/gregtech/gt.blockores/2075.png deleted file mode 100644 index 4f6a887937..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2076.png b/front/public/images/large/gregtech/gt.blockores/2076.png deleted file mode 100644 index e638c44dc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2077.png b/front/public/images/large/gregtech/gt.blockores/2077.png deleted file mode 100644 index 7d6300f096..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20770.png b/front/public/images/large/gregtech/gt.blockores/20770.png deleted file mode 100644 index 98b64adb43..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2078.png b/front/public/images/large/gregtech/gt.blockores/2078.png deleted file mode 100644 index dbcc58aa7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20797.png b/front/public/images/large/gregtech/gt.blockores/20797.png deleted file mode 100644 index 79fee76289..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2080.png b/front/public/images/large/gregtech/gt.blockores/2080.png deleted file mode 100644 index 84592b6b8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2081.png b/front/public/images/large/gregtech/gt.blockores/2081.png deleted file mode 100644 index bca3b5e513..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20810.png b/front/public/images/large/gregtech/gt.blockores/20810.png deleted file mode 100644 index 96e339033c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20812.png b/front/public/images/large/gregtech/gt.blockores/20812.png deleted file mode 100644 index a8e2dc56a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20817.png b/front/public/images/large/gregtech/gt.blockores/20817.png deleted file mode 100644 index bed3a26049..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20820.png b/front/public/images/large/gregtech/gt.blockores/20820.png deleted file mode 100644 index eb5e91bee6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20821.png b/front/public/images/large/gregtech/gt.blockores/20821.png deleted file mode 100644 index 8ff29a7605..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20822.png b/front/public/images/large/gregtech/gt.blockores/20822.png deleted file mode 100644 index 156799e79d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20823.png b/front/public/images/large/gregtech/gt.blockores/20823.png deleted file mode 100644 index e79cc18dea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20824.png b/front/public/images/large/gregtech/gt.blockores/20824.png deleted file mode 100644 index 79fee76289..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20825.png b/front/public/images/large/gregtech/gt.blockores/20825.png deleted file mode 100644 index 8e0b7c4517..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20826.png b/front/public/images/large/gregtech/gt.blockores/20826.png deleted file mode 100644 index 22088a5922..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20827.png b/front/public/images/large/gregtech/gt.blockores/20827.png deleted file mode 100644 index 97861ef640..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20828.png b/front/public/images/large/gregtech/gt.blockores/20828.png deleted file mode 100644 index 3603d71287..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20829.png b/front/public/images/large/gregtech/gt.blockores/20829.png deleted file mode 100644 index 3cb4774c47..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2083.png b/front/public/images/large/gregtech/gt.blockores/2083.png deleted file mode 100644 index 3af7511f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20830.png b/front/public/images/large/gregtech/gt.blockores/20830.png deleted file mode 100644 index 4818954780..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20831.png b/front/public/images/large/gregtech/gt.blockores/20831.png deleted file mode 100644 index 156799e79d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20833.png b/front/public/images/large/gregtech/gt.blockores/20833.png deleted file mode 100644 index 6162f41904..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20834.png b/front/public/images/large/gregtech/gt.blockores/20834.png deleted file mode 100644 index 69f3cbb9a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20835.png b/front/public/images/large/gregtech/gt.blockores/20835.png deleted file mode 100644 index 54ad4a1f8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20836.png b/front/public/images/large/gregtech/gt.blockores/20836.png deleted file mode 100644 index 991b7d1aba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20838.png b/front/public/images/large/gregtech/gt.blockores/20838.png deleted file mode 100644 index be2a6b262c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20839.png b/front/public/images/large/gregtech/gt.blockores/20839.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2084.png b/front/public/images/large/gregtech/gt.blockores/2084.png deleted file mode 100644 index 44ca478dad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20840.png b/front/public/images/large/gregtech/gt.blockores/20840.png deleted file mode 100644 index fba416d943..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20841.png b/front/public/images/large/gregtech/gt.blockores/20841.png deleted file mode 100644 index 3b6b97d580..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20842.png b/front/public/images/large/gregtech/gt.blockores/20842.png deleted file mode 100644 index 6fdd86c51c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2085.png b/front/public/images/large/gregtech/gt.blockores/2085.png deleted file mode 100644 index ac2ca35549..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20855.png b/front/public/images/large/gregtech/gt.blockores/20855.png deleted file mode 100644 index af1a030519..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20856.png b/front/public/images/large/gregtech/gt.blockores/20856.png deleted file mode 100644 index e5d79ed310..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2086.png b/front/public/images/large/gregtech/gt.blockores/2086.png deleted file mode 100644 index 6e3ee861fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20861.png b/front/public/images/large/gregtech/gt.blockores/20861.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20865.png b/front/public/images/large/gregtech/gt.blockores/20865.png deleted file mode 100644 index bf6ef5fe24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20868.png b/front/public/images/large/gregtech/gt.blockores/20868.png deleted file mode 100644 index ce174ea4b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20870.png b/front/public/images/large/gregtech/gt.blockores/20870.png deleted file mode 100644 index a9e40eab4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20871.png b/front/public/images/large/gregtech/gt.blockores/20871.png deleted file mode 100644 index df905c40d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20873.png b/front/public/images/large/gregtech/gt.blockores/20873.png deleted file mode 100644 index 6d569ab053..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20877.png b/front/public/images/large/gregtech/gt.blockores/20877.png deleted file mode 100644 index c753bbdf05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20878.png b/front/public/images/large/gregtech/gt.blockores/20878.png deleted file mode 100644 index 4a10929a48..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20882.png b/front/public/images/large/gregtech/gt.blockores/20882.png deleted file mode 100644 index 31ae042c3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20883.png b/front/public/images/large/gregtech/gt.blockores/20883.png deleted file mode 100644 index 6162f41904..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20884.png b/front/public/images/large/gregtech/gt.blockores/20884.png deleted file mode 100644 index 395c54c7f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2089.png b/front/public/images/large/gregtech/gt.blockores/2089.png deleted file mode 100644 index e7da07abcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20894.png b/front/public/images/large/gregtech/gt.blockores/20894.png deleted file mode 100644 index 6162f41904..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2090.png b/front/public/images/large/gregtech/gt.blockores/2090.png deleted file mode 100644 index 2a650b672c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20900.png b/front/public/images/large/gregtech/gt.blockores/20900.png deleted file mode 100644 index ce986f2e15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20901.png b/front/public/images/large/gregtech/gt.blockores/20901.png deleted file mode 100644 index 3abc540d41..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20902.png b/front/public/images/large/gregtech/gt.blockores/20902.png deleted file mode 100644 index 71f16e69b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20903.png b/front/public/images/large/gregtech/gt.blockores/20903.png deleted file mode 100644 index 1f60096b1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20904.png b/front/public/images/large/gregtech/gt.blockores/20904.png deleted file mode 100644 index 09a6a67400..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20905.png b/front/public/images/large/gregtech/gt.blockores/20905.png deleted file mode 100644 index b6b3e7b423..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20906.png b/front/public/images/large/gregtech/gt.blockores/20906.png deleted file mode 100644 index d095500cbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20907.png b/front/public/images/large/gregtech/gt.blockores/20907.png deleted file mode 100644 index d4421ef195..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20908.png b/front/public/images/large/gregtech/gt.blockores/20908.png deleted file mode 100644 index 942baaf99f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20909.png b/front/public/images/large/gregtech/gt.blockores/20909.png deleted file mode 100644 index dde9739ae2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20910.png b/front/public/images/large/gregtech/gt.blockores/20910.png deleted file mode 100644 index 0a2badd6eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20911.png b/front/public/images/large/gregtech/gt.blockores/20911.png deleted file mode 100644 index b89cc53c26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20912.png b/front/public/images/large/gregtech/gt.blockores/20912.png deleted file mode 100644 index 9367d24a55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20913.png b/front/public/images/large/gregtech/gt.blockores/20913.png deleted file mode 100644 index 3e7ed46cd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20914.png b/front/public/images/large/gregtech/gt.blockores/20914.png deleted file mode 100644 index e2bbf02870..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20915.png b/front/public/images/large/gregtech/gt.blockores/20915.png deleted file mode 100644 index 8b361dfac2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20916.png b/front/public/images/large/gregtech/gt.blockores/20916.png deleted file mode 100644 index 6d7f7f7f1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20917.png b/front/public/images/large/gregtech/gt.blockores/20917.png deleted file mode 100644 index e43205d117..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20918.png b/front/public/images/large/gregtech/gt.blockores/20918.png deleted file mode 100644 index 05480785f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20919.png b/front/public/images/large/gregtech/gt.blockores/20919.png deleted file mode 100644 index b3f18770fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20920.png b/front/public/images/large/gregtech/gt.blockores/20920.png deleted file mode 100644 index 8b453acbe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20921.png b/front/public/images/large/gregtech/gt.blockores/20921.png deleted file mode 100644 index 8661b72142..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20922.png b/front/public/images/large/gregtech/gt.blockores/20922.png deleted file mode 100644 index 31710552f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20923.png b/front/public/images/large/gregtech/gt.blockores/20923.png deleted file mode 100644 index 4c35f2d49f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20924.png b/front/public/images/large/gregtech/gt.blockores/20924.png deleted file mode 100644 index dbcdb0d63f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20925.png b/front/public/images/large/gregtech/gt.blockores/20925.png deleted file mode 100644 index 1a69b38bab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20926.png b/front/public/images/large/gregtech/gt.blockores/20926.png deleted file mode 100644 index 2f07092c8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20927.png b/front/public/images/large/gregtech/gt.blockores/20927.png deleted file mode 100644 index 36323bdf18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20928.png b/front/public/images/large/gregtech/gt.blockores/20928.png deleted file mode 100644 index 0e0dfb97ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20929.png b/front/public/images/large/gregtech/gt.blockores/20929.png deleted file mode 100644 index 5d756b4983..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20930.png b/front/public/images/large/gregtech/gt.blockores/20930.png deleted file mode 100644 index 156799e79d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20931.png b/front/public/images/large/gregtech/gt.blockores/20931.png deleted file mode 100644 index 95bd2a8726..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20932.png b/front/public/images/large/gregtech/gt.blockores/20932.png deleted file mode 100644 index 1d031b0be8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20933.png b/front/public/images/large/gregtech/gt.blockores/20933.png deleted file mode 100644 index f53f42f386..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20934.png b/front/public/images/large/gregtech/gt.blockores/20934.png deleted file mode 100644 index 953c40e670..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20935.png b/front/public/images/large/gregtech/gt.blockores/20935.png deleted file mode 100644 index d5eb919a1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20936.png b/front/public/images/large/gregtech/gt.blockores/20936.png deleted file mode 100644 index 38652612db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20937.png b/front/public/images/large/gregtech/gt.blockores/20937.png deleted file mode 100644 index 79fee76289..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20938.png b/front/public/images/large/gregtech/gt.blockores/20938.png deleted file mode 100644 index 156799e79d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20939.png b/front/public/images/large/gregtech/gt.blockores/20939.png deleted file mode 100644 index 42853f5bbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20941.png b/front/public/images/large/gregtech/gt.blockores/20941.png deleted file mode 100644 index bed3a26049..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20942.png b/front/public/images/large/gregtech/gt.blockores/20942.png deleted file mode 100644 index c425918b78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20943.png b/front/public/images/large/gregtech/gt.blockores/20943.png deleted file mode 100644 index 4eaddc7c15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20944.png b/front/public/images/large/gregtech/gt.blockores/20944.png deleted file mode 100644 index 9805967c38..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20945.png b/front/public/images/large/gregtech/gt.blockores/20945.png deleted file mode 100644 index 716af13316..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20946.png b/front/public/images/large/gregtech/gt.blockores/20946.png deleted file mode 100644 index 991b7d1aba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20948.png b/front/public/images/large/gregtech/gt.blockores/20948.png deleted file mode 100644 index eb1ba5ef0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20949.png b/front/public/images/large/gregtech/gt.blockores/20949.png deleted file mode 100644 index f53f42f386..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20951.png b/front/public/images/large/gregtech/gt.blockores/20951.png deleted file mode 100644 index 7e734c36b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20952.png b/front/public/images/large/gregtech/gt.blockores/20952.png deleted file mode 100644 index 40d3a6042e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20956.png b/front/public/images/large/gregtech/gt.blockores/20956.png deleted file mode 100644 index dda845df61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2096.png b/front/public/images/large/gregtech/gt.blockores/2096.png deleted file mode 100644 index 89bfff8a46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20966.png b/front/public/images/large/gregtech/gt.blockores/20966.png deleted file mode 100644 index 06b9968de8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20969.png b/front/public/images/large/gregtech/gt.blockores/20969.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2097.png b/front/public/images/large/gregtech/gt.blockores/2097.png deleted file mode 100644 index cf31a6bfbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20971.png b/front/public/images/large/gregtech/gt.blockores/20971.png deleted file mode 100644 index 18a006e91b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20975.png b/front/public/images/large/gregtech/gt.blockores/20975.png deleted file mode 100644 index 3cd120063d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20976.png b/front/public/images/large/gregtech/gt.blockores/20976.png deleted file mode 100644 index b37603095d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20978.png b/front/public/images/large/gregtech/gt.blockores/20978.png deleted file mode 100644 index 39deccb5b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2098.png b/front/public/images/large/gregtech/gt.blockores/2098.png deleted file mode 100644 index 9a8653d581..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20982.png b/front/public/images/large/gregtech/gt.blockores/20982.png deleted file mode 100644 index eb127a514c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/20984.png b/front/public/images/large/gregtech/gt.blockores/20984.png deleted file mode 100644 index cad4afc62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/20984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2100.png b/front/public/images/large/gregtech/gt.blockores/2100.png deleted file mode 100644 index 15c29e5c7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21006.png b/front/public/images/large/gregtech/gt.blockores/21006.png deleted file mode 100644 index c8d09a8a27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21008.png b/front/public/images/large/gregtech/gt.blockores/21008.png deleted file mode 100644 index 715328e74d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2101.png b/front/public/images/large/gregtech/gt.blockores/2101.png deleted file mode 100644 index 3b4704238c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21018.png b/front/public/images/large/gregtech/gt.blockores/21018.png deleted file mode 100644 index 7ac3b53257..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21019.png b/front/public/images/large/gregtech/gt.blockores/21019.png deleted file mode 100644 index 9fed3e5402..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21020.png b/front/public/images/large/gregtech/gt.blockores/21020.png deleted file mode 100644 index 75ebd01166..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21022.png b/front/public/images/large/gregtech/gt.blockores/21022.png deleted file mode 100644 index 6753ee1692..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21027.png b/front/public/images/large/gregtech/gt.blockores/21027.png deleted file mode 100644 index f0dbf95122..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21028.png b/front/public/images/large/gregtech/gt.blockores/21028.png deleted file mode 100644 index 47a0c9f5a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21029.png b/front/public/images/large/gregtech/gt.blockores/21029.png deleted file mode 100644 index a6cfa4b1ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2103.png b/front/public/images/large/gregtech/gt.blockores/2103.png deleted file mode 100644 index aad05c9734..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21030.png b/front/public/images/large/gregtech/gt.blockores/21030.png deleted file mode 100644 index 6b002675b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21031.png b/front/public/images/large/gregtech/gt.blockores/21031.png deleted file mode 100644 index fbbe0da577..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21032.png b/front/public/images/large/gregtech/gt.blockores/21032.png deleted file mode 100644 index ecdcd50467..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21033.png b/front/public/images/large/gregtech/gt.blockores/21033.png deleted file mode 100644 index dbf515814e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21034.png b/front/public/images/large/gregtech/gt.blockores/21034.png deleted file mode 100644 index 538c8e231b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21035.png b/front/public/images/large/gregtech/gt.blockores/21035.png deleted file mode 100644 index 4bd15f6cde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21036.png b/front/public/images/large/gregtech/gt.blockores/21036.png deleted file mode 100644 index 086f0f3b3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21037.png b/front/public/images/large/gregtech/gt.blockores/21037.png deleted file mode 100644 index f00c4514e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21039.png b/front/public/images/large/gregtech/gt.blockores/21039.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21043.png b/front/public/images/large/gregtech/gt.blockores/21043.png deleted file mode 100644 index 316db11b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21044.png b/front/public/images/large/gregtech/gt.blockores/21044.png deleted file mode 100644 index ecdcd50467..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21045.png b/front/public/images/large/gregtech/gt.blockores/21045.png deleted file mode 100644 index 3ab3f7bd74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21047.png b/front/public/images/large/gregtech/gt.blockores/21047.png deleted file mode 100644 index 5ef64cf98d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21048.png b/front/public/images/large/gregtech/gt.blockores/21048.png deleted file mode 100644 index 67e2082043..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21052.png b/front/public/images/large/gregtech/gt.blockores/21052.png deleted file mode 100644 index b88ddd8202..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21054.png b/front/public/images/large/gregtech/gt.blockores/21054.png deleted file mode 100644 index f00c4514e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21055.png b/front/public/images/large/gregtech/gt.blockores/21055.png deleted file mode 100644 index 3a4ff782e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21056.png b/front/public/images/large/gregtech/gt.blockores/21056.png deleted file mode 100644 index 0442184169..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21057.png b/front/public/images/large/gregtech/gt.blockores/21057.png deleted file mode 100644 index 4d849a4ca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21058.png b/front/public/images/large/gregtech/gt.blockores/21058.png deleted file mode 100644 index acfb58e60c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21059.png b/front/public/images/large/gregtech/gt.blockores/21059.png deleted file mode 100644 index 6f63c77a3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21062.png b/front/public/images/large/gregtech/gt.blockores/21062.png deleted file mode 100644 index 0ad1ed4e90..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21063.png b/front/public/images/large/gregtech/gt.blockores/21063.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21064.png b/front/public/images/large/gregtech/gt.blockores/21064.png deleted file mode 100644 index b61f13e64c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21065.png b/front/public/images/large/gregtech/gt.blockores/21065.png deleted file mode 100644 index e3ca703f48..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21066.png b/front/public/images/large/gregtech/gt.blockores/21066.png deleted file mode 100644 index dac7bea140..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21067.png b/front/public/images/large/gregtech/gt.blockores/21067.png deleted file mode 100644 index afaf66b299..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21068.png b/front/public/images/large/gregtech/gt.blockores/21068.png deleted file mode 100644 index 065387d609..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21069.png b/front/public/images/large/gregtech/gt.blockores/21069.png deleted file mode 100644 index 0e62b8da04..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21070.png b/front/public/images/large/gregtech/gt.blockores/21070.png deleted file mode 100644 index 5ec52ae4b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21071.png b/front/public/images/large/gregtech/gt.blockores/21071.png deleted file mode 100644 index 8b39a1b89f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21072.png b/front/public/images/large/gregtech/gt.blockores/21072.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21073.png b/front/public/images/large/gregtech/gt.blockores/21073.png deleted file mode 100644 index ebb38d8296..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21074.png b/front/public/images/large/gregtech/gt.blockores/21074.png deleted file mode 100644 index a538ab7034..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21075.png b/front/public/images/large/gregtech/gt.blockores/21075.png deleted file mode 100644 index 61d5bea997..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21076.png b/front/public/images/large/gregtech/gt.blockores/21076.png deleted file mode 100644 index d5c3ec8153..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21077.png b/front/public/images/large/gregtech/gt.blockores/21077.png deleted file mode 100644 index a72a65f344..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21078.png b/front/public/images/large/gregtech/gt.blockores/21078.png deleted file mode 100644 index 6356efd0c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21080.png b/front/public/images/large/gregtech/gt.blockores/21080.png deleted file mode 100644 index 0b96d4d49a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21081.png b/front/public/images/large/gregtech/gt.blockores/21081.png deleted file mode 100644 index a6cfa4b1ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21083.png b/front/public/images/large/gregtech/gt.blockores/21083.png deleted file mode 100644 index 86c330010f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21084.png b/front/public/images/large/gregtech/gt.blockores/21084.png deleted file mode 100644 index 2a71d5a885..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21085.png b/front/public/images/large/gregtech/gt.blockores/21085.png deleted file mode 100644 index f3b1956c26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21086.png b/front/public/images/large/gregtech/gt.blockores/21086.png deleted file mode 100644 index 303f76b10f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21089.png b/front/public/images/large/gregtech/gt.blockores/21089.png deleted file mode 100644 index 562ae6e649..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21090.png b/front/public/images/large/gregtech/gt.blockores/21090.png deleted file mode 100644 index 1ca2654d1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21096.png b/front/public/images/large/gregtech/gt.blockores/21096.png deleted file mode 100644 index 040c8f6127..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21097.png b/front/public/images/large/gregtech/gt.blockores/21097.png deleted file mode 100644 index cbf53925c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21098.png b/front/public/images/large/gregtech/gt.blockores/21098.png deleted file mode 100644 index bf2be077da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2110.png b/front/public/images/large/gregtech/gt.blockores/2110.png deleted file mode 100644 index f14326f605..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21100.png b/front/public/images/large/gregtech/gt.blockores/21100.png deleted file mode 100644 index 659dbd9fea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21101.png b/front/public/images/large/gregtech/gt.blockores/21101.png deleted file mode 100644 index 110d070328..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21103.png b/front/public/images/large/gregtech/gt.blockores/21103.png deleted file mode 100644 index ecdcd50467..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21110.png b/front/public/images/large/gregtech/gt.blockores/21110.png deleted file mode 100644 index e6ae8c480e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21129.png b/front/public/images/large/gregtech/gt.blockores/21129.png deleted file mode 100644 index fbbe0da577..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2129.png b/front/public/images/large/gregtech/gt.blockores/2129.png deleted file mode 100644 index 50079f9e82..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21303.png b/front/public/images/large/gregtech/gt.blockores/21303.png deleted file mode 100644 index 43e8512a9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21307.png b/front/public/images/large/gregtech/gt.blockores/21307.png deleted file mode 100644 index 42417c0448..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21319.png b/front/public/images/large/gregtech/gt.blockores/21319.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21320.png b/front/public/images/large/gregtech/gt.blockores/21320.png deleted file mode 100644 index 0902c46f69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21323.png b/front/public/images/large/gregtech/gt.blockores/21323.png deleted file mode 100644 index 22b889709a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21324.png b/front/public/images/large/gregtech/gt.blockores/21324.png deleted file mode 100644 index a6cfa4b1ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21326.png b/front/public/images/large/gregtech/gt.blockores/21326.png deleted file mode 100644 index 330e60846a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21327.png b/front/public/images/large/gregtech/gt.blockores/21327.png deleted file mode 100644 index ceb03c4ec1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21329.png b/front/public/images/large/gregtech/gt.blockores/21329.png deleted file mode 100644 index e191a32e42..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21331.png b/front/public/images/large/gregtech/gt.blockores/21331.png deleted file mode 100644 index 79cbfa40b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21336.png b/front/public/images/large/gregtech/gt.blockores/21336.png deleted file mode 100644 index 969f6429d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21340.png b/front/public/images/large/gregtech/gt.blockores/21340.png deleted file mode 100644 index 4a29a0dffa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21342.png b/front/public/images/large/gregtech/gt.blockores/21342.png deleted file mode 100644 index aabe83b1a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21347.png b/front/public/images/large/gregtech/gt.blockores/21347.png deleted file mode 100644 index 1972518f2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21368.png b/front/public/images/large/gregtech/gt.blockores/21368.png deleted file mode 100644 index 2895822a26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21375.png b/front/public/images/large/gregtech/gt.blockores/21375.png deleted file mode 100644 index 50bb7fb858..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21382.png b/front/public/images/large/gregtech/gt.blockores/21382.png deleted file mode 100644 index fbe55867c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21386.png b/front/public/images/large/gregtech/gt.blockores/21386.png deleted file mode 100644 index b1ad57e86f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21387.png b/front/public/images/large/gregtech/gt.blockores/21387.png deleted file mode 100644 index 5705df413d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21388.png b/front/public/images/large/gregtech/gt.blockores/21388.png deleted file mode 100644 index a6cfa4b1ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21389.png b/front/public/images/large/gregtech/gt.blockores/21389.png deleted file mode 100644 index e07c1529a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21390.png b/front/public/images/large/gregtech/gt.blockores/21390.png deleted file mode 100644 index 5a5ebb748f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21391.png b/front/public/images/large/gregtech/gt.blockores/21391.png deleted file mode 100644 index 3c238b55d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21392.png b/front/public/images/large/gregtech/gt.blockores/21392.png deleted file mode 100644 index c44297aa55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21393.png b/front/public/images/large/gregtech/gt.blockores/21393.png deleted file mode 100644 index 3f364fe0fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21394.png b/front/public/images/large/gregtech/gt.blockores/21394.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21395.png b/front/public/images/large/gregtech/gt.blockores/21395.png deleted file mode 100644 index a6cfa4b1ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21398.png b/front/public/images/large/gregtech/gt.blockores/21398.png deleted file mode 100644 index a42af78e8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21485.png b/front/public/images/large/gregtech/gt.blockores/21485.png deleted file mode 100644 index 49222a9c19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21488.png b/front/public/images/large/gregtech/gt.blockores/21488.png deleted file mode 100644 index 50996c798c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21489.png b/front/public/images/large/gregtech/gt.blockores/21489.png deleted file mode 100644 index 4d2cc2d157..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21500.png b/front/public/images/large/gregtech/gt.blockores/21500.png deleted file mode 100644 index fe5d4efa8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21501.png b/front/public/images/large/gregtech/gt.blockores/21501.png deleted file mode 100644 index f3209fdac0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21502.png b/front/public/images/large/gregtech/gt.blockores/21502.png deleted file mode 100644 index a0024b135f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21503.png b/front/public/images/large/gregtech/gt.blockores/21503.png deleted file mode 100644 index ae073742ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21504.png b/front/public/images/large/gregtech/gt.blockores/21504.png deleted file mode 100644 index dde031c5c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21505.png b/front/public/images/large/gregtech/gt.blockores/21505.png deleted file mode 100644 index f00e8d4e85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21506.png b/front/public/images/large/gregtech/gt.blockores/21506.png deleted file mode 100644 index fbbe0da577..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21507.png b/front/public/images/large/gregtech/gt.blockores/21507.png deleted file mode 100644 index 6f02fd8eac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21508.png b/front/public/images/large/gregtech/gt.blockores/21508.png deleted file mode 100644 index f3c1f2d142..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21509.png b/front/public/images/large/gregtech/gt.blockores/21509.png deleted file mode 100644 index 59f1ed7b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21510.png b/front/public/images/large/gregtech/gt.blockores/21510.png deleted file mode 100644 index ce87e6af2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21511.png b/front/public/images/large/gregtech/gt.blockores/21511.png deleted file mode 100644 index aaa9e4e361..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21512.png b/front/public/images/large/gregtech/gt.blockores/21512.png deleted file mode 100644 index a0024b135f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21513.png b/front/public/images/large/gregtech/gt.blockores/21513.png deleted file mode 100644 index ce87e6af2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21514.png b/front/public/images/large/gregtech/gt.blockores/21514.png deleted file mode 100644 index 6f02fd8eac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21515.png b/front/public/images/large/gregtech/gt.blockores/21515.png deleted file mode 100644 index 59cb1dfcc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21516.png b/front/public/images/large/gregtech/gt.blockores/21516.png deleted file mode 100644 index f4a7eb3572..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21517.png b/front/public/images/large/gregtech/gt.blockores/21517.png deleted file mode 100644 index b885b95cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21518.png b/front/public/images/large/gregtech/gt.blockores/21518.png deleted file mode 100644 index 3ae8ff3d05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21519.png b/front/public/images/large/gregtech/gt.blockores/21519.png deleted file mode 100644 index 3ae8ff3d05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21520.png b/front/public/images/large/gregtech/gt.blockores/21520.png deleted file mode 100644 index a88c581fa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21521.png b/front/public/images/large/gregtech/gt.blockores/21521.png deleted file mode 100644 index b31e24cb0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21522.png b/front/public/images/large/gregtech/gt.blockores/21522.png deleted file mode 100644 index b7db03df4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21523.png b/front/public/images/large/gregtech/gt.blockores/21523.png deleted file mode 100644 index 90acb20c29..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21524.png b/front/public/images/large/gregtech/gt.blockores/21524.png deleted file mode 100644 index bcff546015..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21525.png b/front/public/images/large/gregtech/gt.blockores/21525.png deleted file mode 100644 index d293a893fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21526.png b/front/public/images/large/gregtech/gt.blockores/21526.png deleted file mode 100644 index 77a1ca724c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21527.png b/front/public/images/large/gregtech/gt.blockores/21527.png deleted file mode 100644 index aaa9e4e361..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21528.png b/front/public/images/large/gregtech/gt.blockores/21528.png deleted file mode 100644 index 3e599e49c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21529.png b/front/public/images/large/gregtech/gt.blockores/21529.png deleted file mode 100644 index faeac90ad3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21530.png b/front/public/images/large/gregtech/gt.blockores/21530.png deleted file mode 100644 index 4fb608c639..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21531.png b/front/public/images/large/gregtech/gt.blockores/21531.png deleted file mode 100644 index 7ac3b53257..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21534.png b/front/public/images/large/gregtech/gt.blockores/21534.png deleted file mode 100644 index f371f4344c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21535.png b/front/public/images/large/gregtech/gt.blockores/21535.png deleted file mode 100644 index 3b2eaef313..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21537.png b/front/public/images/large/gregtech/gt.blockores/21537.png deleted file mode 100644 index 1bdbe6263d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21538.png b/front/public/images/large/gregtech/gt.blockores/21538.png deleted file mode 100644 index 58429aa602..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21540.png b/front/public/images/large/gregtech/gt.blockores/21540.png deleted file mode 100644 index b31e24cb0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21541.png b/front/public/images/large/gregtech/gt.blockores/21541.png deleted file mode 100644 index 49f1662f9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21542.png b/front/public/images/large/gregtech/gt.blockores/21542.png deleted file mode 100644 index f9f6974aa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21543.png b/front/public/images/large/gregtech/gt.blockores/21543.png deleted file mode 100644 index 06cf096c9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21544.png b/front/public/images/large/gregtech/gt.blockores/21544.png deleted file mode 100644 index 77ead79200..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21545.png b/front/public/images/large/gregtech/gt.blockores/21545.png deleted file mode 100644 index 1738b2cb1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21548.png b/front/public/images/large/gregtech/gt.blockores/21548.png deleted file mode 100644 index e9ebbd861e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21549.png b/front/public/images/large/gregtech/gt.blockores/21549.png deleted file mode 100644 index e7327505a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21607.png b/front/public/images/large/gregtech/gt.blockores/21607.png deleted file mode 100644 index eb3672e8d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21699.png b/front/public/images/large/gregtech/gt.blockores/21699.png deleted file mode 100644 index af99aebe3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21770.png b/front/public/images/large/gregtech/gt.blockores/21770.png deleted file mode 100644 index 5cec4de35b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21797.png b/front/public/images/large/gregtech/gt.blockores/21797.png deleted file mode 100644 index 4d849a4ca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21810.png b/front/public/images/large/gregtech/gt.blockores/21810.png deleted file mode 100644 index f21773b817..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21812.png b/front/public/images/large/gregtech/gt.blockores/21812.png deleted file mode 100644 index 9a7d14140f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21817.png b/front/public/images/large/gregtech/gt.blockores/21817.png deleted file mode 100644 index fbbe0da577..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21820.png b/front/public/images/large/gregtech/gt.blockores/21820.png deleted file mode 100644 index 32fdfb82ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21821.png b/front/public/images/large/gregtech/gt.blockores/21821.png deleted file mode 100644 index f0565846c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21822.png b/front/public/images/large/gregtech/gt.blockores/21822.png deleted file mode 100644 index cc12dd2d18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21823.png b/front/public/images/large/gregtech/gt.blockores/21823.png deleted file mode 100644 index 986ebee55d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21824.png b/front/public/images/large/gregtech/gt.blockores/21824.png deleted file mode 100644 index 4d849a4ca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21825.png b/front/public/images/large/gregtech/gt.blockores/21825.png deleted file mode 100644 index f88d922c3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21826.png b/front/public/images/large/gregtech/gt.blockores/21826.png deleted file mode 100644 index 49f3a781fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21827.png b/front/public/images/large/gregtech/gt.blockores/21827.png deleted file mode 100644 index dbf515814e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21828.png b/front/public/images/large/gregtech/gt.blockores/21828.png deleted file mode 100644 index f3b1956c26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21829.png b/front/public/images/large/gregtech/gt.blockores/21829.png deleted file mode 100644 index 0ea7f8e479..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21830.png b/front/public/images/large/gregtech/gt.blockores/21830.png deleted file mode 100644 index aea3d9f081..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21831.png b/front/public/images/large/gregtech/gt.blockores/21831.png deleted file mode 100644 index cc12dd2d18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21833.png b/front/public/images/large/gregtech/gt.blockores/21833.png deleted file mode 100644 index f371f4344c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21834.png b/front/public/images/large/gregtech/gt.blockores/21834.png deleted file mode 100644 index a518282d5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21835.png b/front/public/images/large/gregtech/gt.blockores/21835.png deleted file mode 100644 index ed2745fec3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21836.png b/front/public/images/large/gregtech/gt.blockores/21836.png deleted file mode 100644 index e3570dba8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21838.png b/front/public/images/large/gregtech/gt.blockores/21838.png deleted file mode 100644 index a0024b135f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21839.png b/front/public/images/large/gregtech/gt.blockores/21839.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21840.png b/front/public/images/large/gregtech/gt.blockores/21840.png deleted file mode 100644 index aff06cd44a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21841.png b/front/public/images/large/gregtech/gt.blockores/21841.png deleted file mode 100644 index beb95c2c68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21842.png b/front/public/images/large/gregtech/gt.blockores/21842.png deleted file mode 100644 index 57498a194b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21855.png b/front/public/images/large/gregtech/gt.blockores/21855.png deleted file mode 100644 index 6a5250332e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21856.png b/front/public/images/large/gregtech/gt.blockores/21856.png deleted file mode 100644 index 3ba561f7a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21861.png b/front/public/images/large/gregtech/gt.blockores/21861.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21865.png b/front/public/images/large/gregtech/gt.blockores/21865.png deleted file mode 100644 index b88ddd8202..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21868.png b/front/public/images/large/gregtech/gt.blockores/21868.png deleted file mode 100644 index 078ff45b4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21870.png b/front/public/images/large/gregtech/gt.blockores/21870.png deleted file mode 100644 index b881c54a6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21871.png b/front/public/images/large/gregtech/gt.blockores/21871.png deleted file mode 100644 index b8123253c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21873.png b/front/public/images/large/gregtech/gt.blockores/21873.png deleted file mode 100644 index 5b1079600c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21877.png b/front/public/images/large/gregtech/gt.blockores/21877.png deleted file mode 100644 index 5c7166cfc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21878.png b/front/public/images/large/gregtech/gt.blockores/21878.png deleted file mode 100644 index 042945b0a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21882.png b/front/public/images/large/gregtech/gt.blockores/21882.png deleted file mode 100644 index 6f02fd8eac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21883.png b/front/public/images/large/gregtech/gt.blockores/21883.png deleted file mode 100644 index f371f4344c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21884.png b/front/public/images/large/gregtech/gt.blockores/21884.png deleted file mode 100644 index c1a340ef56..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21894.png b/front/public/images/large/gregtech/gt.blockores/21894.png deleted file mode 100644 index f371f4344c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21900.png b/front/public/images/large/gregtech/gt.blockores/21900.png deleted file mode 100644 index 6df681c15a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21901.png b/front/public/images/large/gregtech/gt.blockores/21901.png deleted file mode 100644 index c3bcd4d3d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21902.png b/front/public/images/large/gregtech/gt.blockores/21902.png deleted file mode 100644 index 736fa0ec9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21903.png b/front/public/images/large/gregtech/gt.blockores/21903.png deleted file mode 100644 index fed6bdd2d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21904.png b/front/public/images/large/gregtech/gt.blockores/21904.png deleted file mode 100644 index eaf36789ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21905.png b/front/public/images/large/gregtech/gt.blockores/21905.png deleted file mode 100644 index 55422a26a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21906.png b/front/public/images/large/gregtech/gt.blockores/21906.png deleted file mode 100644 index 745a05ebea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21907.png b/front/public/images/large/gregtech/gt.blockores/21907.png deleted file mode 100644 index d5d57ac7aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21908.png b/front/public/images/large/gregtech/gt.blockores/21908.png deleted file mode 100644 index c121633ae2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21909.png b/front/public/images/large/gregtech/gt.blockores/21909.png deleted file mode 100644 index 2595c50b64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21910.png b/front/public/images/large/gregtech/gt.blockores/21910.png deleted file mode 100644 index 0d13a0d592..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21911.png b/front/public/images/large/gregtech/gt.blockores/21911.png deleted file mode 100644 index c6116edfb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21912.png b/front/public/images/large/gregtech/gt.blockores/21912.png deleted file mode 100644 index c3c41024f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21913.png b/front/public/images/large/gregtech/gt.blockores/21913.png deleted file mode 100644 index 43d9175a8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21914.png b/front/public/images/large/gregtech/gt.blockores/21914.png deleted file mode 100644 index cbb58a8b88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21915.png b/front/public/images/large/gregtech/gt.blockores/21915.png deleted file mode 100644 index 4f670db671..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21916.png b/front/public/images/large/gregtech/gt.blockores/21916.png deleted file mode 100644 index a70817ea21..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21917.png b/front/public/images/large/gregtech/gt.blockores/21917.png deleted file mode 100644 index 8d72416e15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21918.png b/front/public/images/large/gregtech/gt.blockores/21918.png deleted file mode 100644 index f18b9079c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21919.png b/front/public/images/large/gregtech/gt.blockores/21919.png deleted file mode 100644 index 01b43d419c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21920.png b/front/public/images/large/gregtech/gt.blockores/21920.png deleted file mode 100644 index 922d08a9bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21921.png b/front/public/images/large/gregtech/gt.blockores/21921.png deleted file mode 100644 index 9b1764bbca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21922.png b/front/public/images/large/gregtech/gt.blockores/21922.png deleted file mode 100644 index b7b4060538..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21923.png b/front/public/images/large/gregtech/gt.blockores/21923.png deleted file mode 100644 index 8b8e539d93..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21924.png b/front/public/images/large/gregtech/gt.blockores/21924.png deleted file mode 100644 index 34709e3650..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21925.png b/front/public/images/large/gregtech/gt.blockores/21925.png deleted file mode 100644 index 894378c9ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21926.png b/front/public/images/large/gregtech/gt.blockores/21926.png deleted file mode 100644 index 77755fc7f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21927.png b/front/public/images/large/gregtech/gt.blockores/21927.png deleted file mode 100644 index 362fb91bae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21928.png b/front/public/images/large/gregtech/gt.blockores/21928.png deleted file mode 100644 index d27a75b14f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21929.png b/front/public/images/large/gregtech/gt.blockores/21929.png deleted file mode 100644 index fba3827b7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21930.png b/front/public/images/large/gregtech/gt.blockores/21930.png deleted file mode 100644 index cc12dd2d18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21931.png b/front/public/images/large/gregtech/gt.blockores/21931.png deleted file mode 100644 index 6753ee1692..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21932.png b/front/public/images/large/gregtech/gt.blockores/21932.png deleted file mode 100644 index 87f3dc1abc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21933.png b/front/public/images/large/gregtech/gt.blockores/21933.png deleted file mode 100644 index 9986f54e1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21934.png b/front/public/images/large/gregtech/gt.blockores/21934.png deleted file mode 100644 index 050a19c564..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21935.png b/front/public/images/large/gregtech/gt.blockores/21935.png deleted file mode 100644 index 8d9d768ee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21936.png b/front/public/images/large/gregtech/gt.blockores/21936.png deleted file mode 100644 index 06a2ef25cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21937.png b/front/public/images/large/gregtech/gt.blockores/21937.png deleted file mode 100644 index 4d849a4ca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21938.png b/front/public/images/large/gregtech/gt.blockores/21938.png deleted file mode 100644 index cc12dd2d18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21939.png b/front/public/images/large/gregtech/gt.blockores/21939.png deleted file mode 100644 index 37a6d0aaad..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21941.png b/front/public/images/large/gregtech/gt.blockores/21941.png deleted file mode 100644 index fbbe0da577..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21942.png b/front/public/images/large/gregtech/gt.blockores/21942.png deleted file mode 100644 index 41a61ac0a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21943.png b/front/public/images/large/gregtech/gt.blockores/21943.png deleted file mode 100644 index 59d056f7d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21944.png b/front/public/images/large/gregtech/gt.blockores/21944.png deleted file mode 100644 index 5cb29da14f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21945.png b/front/public/images/large/gregtech/gt.blockores/21945.png deleted file mode 100644 index 3b2eaef313..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21946.png b/front/public/images/large/gregtech/gt.blockores/21946.png deleted file mode 100644 index e3570dba8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21948.png b/front/public/images/large/gregtech/gt.blockores/21948.png deleted file mode 100644 index caa96d1e61..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21949.png b/front/public/images/large/gregtech/gt.blockores/21949.png deleted file mode 100644 index 9986f54e1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21951.png b/front/public/images/large/gregtech/gt.blockores/21951.png deleted file mode 100644 index ae04819a8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21952.png b/front/public/images/large/gregtech/gt.blockores/21952.png deleted file mode 100644 index 5920a56222..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21956.png b/front/public/images/large/gregtech/gt.blockores/21956.png deleted file mode 100644 index a5b9569787..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21966.png b/front/public/images/large/gregtech/gt.blockores/21966.png deleted file mode 100644 index 8f0252aaf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21969.png b/front/public/images/large/gregtech/gt.blockores/21969.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21971.png b/front/public/images/large/gregtech/gt.blockores/21971.png deleted file mode 100644 index 906eb90d57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21975.png b/front/public/images/large/gregtech/gt.blockores/21975.png deleted file mode 100644 index 898d62f1f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21976.png b/front/public/images/large/gregtech/gt.blockores/21976.png deleted file mode 100644 index e04b02b230..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21978.png b/front/public/images/large/gregtech/gt.blockores/21978.png deleted file mode 100644 index 6d9f230f8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21982.png b/front/public/images/large/gregtech/gt.blockores/21982.png deleted file mode 100644 index a6cfa4b1ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/21984.png b/front/public/images/large/gregtech/gt.blockores/21984.png deleted file mode 100644 index b46cdd6c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/21984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22.png b/front/public/images/large/gregtech/gt.blockores/22.png deleted file mode 100644 index 6cb2dcd41e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22006.png b/front/public/images/large/gregtech/gt.blockores/22006.png deleted file mode 100644 index d247df747f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22008.png b/front/public/images/large/gregtech/gt.blockores/22008.png deleted file mode 100644 index 2c78f89377..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22018.png b/front/public/images/large/gregtech/gt.blockores/22018.png deleted file mode 100644 index 93bc99fbeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22019.png b/front/public/images/large/gregtech/gt.blockores/22019.png deleted file mode 100644 index e73c0f2410..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22020.png b/front/public/images/large/gregtech/gt.blockores/22020.png deleted file mode 100644 index 7833bad5d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22022.png b/front/public/images/large/gregtech/gt.blockores/22022.png deleted file mode 100644 index d9baf250b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22027.png b/front/public/images/large/gregtech/gt.blockores/22027.png deleted file mode 100644 index 7e7ad8b640..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22028.png b/front/public/images/large/gregtech/gt.blockores/22028.png deleted file mode 100644 index 19505c43ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22029.png b/front/public/images/large/gregtech/gt.blockores/22029.png deleted file mode 100644 index bd89c29eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22030.png b/front/public/images/large/gregtech/gt.blockores/22030.png deleted file mode 100644 index aa0b3f9150..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22031.png b/front/public/images/large/gregtech/gt.blockores/22031.png deleted file mode 100644 index 93be72c972..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22032.png b/front/public/images/large/gregtech/gt.blockores/22032.png deleted file mode 100644 index 17fe5eaf9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22033.png b/front/public/images/large/gregtech/gt.blockores/22033.png deleted file mode 100644 index 333b714a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22034.png b/front/public/images/large/gregtech/gt.blockores/22034.png deleted file mode 100644 index 4db2327196..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22035.png b/front/public/images/large/gregtech/gt.blockores/22035.png deleted file mode 100644 index bd4c35e7b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22036.png b/front/public/images/large/gregtech/gt.blockores/22036.png deleted file mode 100644 index 147cd6d8c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22037.png b/front/public/images/large/gregtech/gt.blockores/22037.png deleted file mode 100644 index 8757977b2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22039.png b/front/public/images/large/gregtech/gt.blockores/22039.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22043.png b/front/public/images/large/gregtech/gt.blockores/22043.png deleted file mode 100644 index eb8ed7b3b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22044.png b/front/public/images/large/gregtech/gt.blockores/22044.png deleted file mode 100644 index 17fe5eaf9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22045.png b/front/public/images/large/gregtech/gt.blockores/22045.png deleted file mode 100644 index b384ac3517..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22047.png b/front/public/images/large/gregtech/gt.blockores/22047.png deleted file mode 100644 index abe3b3a01e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22048.png b/front/public/images/large/gregtech/gt.blockores/22048.png deleted file mode 100644 index 857e9819d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22052.png b/front/public/images/large/gregtech/gt.blockores/22052.png deleted file mode 100644 index f857d71eef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22054.png b/front/public/images/large/gregtech/gt.blockores/22054.png deleted file mode 100644 index 8757977b2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22055.png b/front/public/images/large/gregtech/gt.blockores/22055.png deleted file mode 100644 index bc2a33cb8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22056.png b/front/public/images/large/gregtech/gt.blockores/22056.png deleted file mode 100644 index 710b90e52f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22057.png b/front/public/images/large/gregtech/gt.blockores/22057.png deleted file mode 100644 index 8431fce65a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22058.png b/front/public/images/large/gregtech/gt.blockores/22058.png deleted file mode 100644 index d6f1cf3711..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22059.png b/front/public/images/large/gregtech/gt.blockores/22059.png deleted file mode 100644 index 9da071bc8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22062.png b/front/public/images/large/gregtech/gt.blockores/22062.png deleted file mode 100644 index fa6705a7f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22063.png b/front/public/images/large/gregtech/gt.blockores/22063.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22064.png b/front/public/images/large/gregtech/gt.blockores/22064.png deleted file mode 100644 index be14ad3144..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22065.png b/front/public/images/large/gregtech/gt.blockores/22065.png deleted file mode 100644 index eac5469aca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22066.png b/front/public/images/large/gregtech/gt.blockores/22066.png deleted file mode 100644 index f6fd054bfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22067.png b/front/public/images/large/gregtech/gt.blockores/22067.png deleted file mode 100644 index 2b245388c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22068.png b/front/public/images/large/gregtech/gt.blockores/22068.png deleted file mode 100644 index 2877003afc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22069.png b/front/public/images/large/gregtech/gt.blockores/22069.png deleted file mode 100644 index 92fcacd49e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22070.png b/front/public/images/large/gregtech/gt.blockores/22070.png deleted file mode 100644 index 09d8d5822a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22071.png b/front/public/images/large/gregtech/gt.blockores/22071.png deleted file mode 100644 index 96ba878590..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22072.png b/front/public/images/large/gregtech/gt.blockores/22072.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22073.png b/front/public/images/large/gregtech/gt.blockores/22073.png deleted file mode 100644 index 8912ae97ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22074.png b/front/public/images/large/gregtech/gt.blockores/22074.png deleted file mode 100644 index 83ab4c450a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22075.png b/front/public/images/large/gregtech/gt.blockores/22075.png deleted file mode 100644 index 9efdf3c042..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22076.png b/front/public/images/large/gregtech/gt.blockores/22076.png deleted file mode 100644 index ab16ebffe4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22077.png b/front/public/images/large/gregtech/gt.blockores/22077.png deleted file mode 100644 index 01fca11be7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22078.png b/front/public/images/large/gregtech/gt.blockores/22078.png deleted file mode 100644 index 6e1d8c39e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22080.png b/front/public/images/large/gregtech/gt.blockores/22080.png deleted file mode 100644 index 82e95b1f26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22081.png b/front/public/images/large/gregtech/gt.blockores/22081.png deleted file mode 100644 index bd89c29eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22083.png b/front/public/images/large/gregtech/gt.blockores/22083.png deleted file mode 100644 index e5cec1b871..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22084.png b/front/public/images/large/gregtech/gt.blockores/22084.png deleted file mode 100644 index c7ce3a49ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22085.png b/front/public/images/large/gregtech/gt.blockores/22085.png deleted file mode 100644 index 440f8904ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22086.png b/front/public/images/large/gregtech/gt.blockores/22086.png deleted file mode 100644 index a55f0b1313..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22089.png b/front/public/images/large/gregtech/gt.blockores/22089.png deleted file mode 100644 index 418fca6180..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22090.png b/front/public/images/large/gregtech/gt.blockores/22090.png deleted file mode 100644 index 641294fef6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22096.png b/front/public/images/large/gregtech/gt.blockores/22096.png deleted file mode 100644 index b1e4640d89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22097.png b/front/public/images/large/gregtech/gt.blockores/22097.png deleted file mode 100644 index cf2ff85316..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22098.png b/front/public/images/large/gregtech/gt.blockores/22098.png deleted file mode 100644 index c08e7b7925..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22100.png b/front/public/images/large/gregtech/gt.blockores/22100.png deleted file mode 100644 index 316a2e45bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22101.png b/front/public/images/large/gregtech/gt.blockores/22101.png deleted file mode 100644 index 82c3673c70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22103.png b/front/public/images/large/gregtech/gt.blockores/22103.png deleted file mode 100644 index 17fe5eaf9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22110.png b/front/public/images/large/gregtech/gt.blockores/22110.png deleted file mode 100644 index b3754d3b20..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22129.png b/front/public/images/large/gregtech/gt.blockores/22129.png deleted file mode 100644 index 93be72c972..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22303.png b/front/public/images/large/gregtech/gt.blockores/22303.png deleted file mode 100644 index c07dff3262..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22307.png b/front/public/images/large/gregtech/gt.blockores/22307.png deleted file mode 100644 index 8aff119cf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22319.png b/front/public/images/large/gregtech/gt.blockores/22319.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22320.png b/front/public/images/large/gregtech/gt.blockores/22320.png deleted file mode 100644 index 3b68410238..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22323.png b/front/public/images/large/gregtech/gt.blockores/22323.png deleted file mode 100644 index c5e8560ba6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22324.png b/front/public/images/large/gregtech/gt.blockores/22324.png deleted file mode 100644 index bd89c29eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22326.png b/front/public/images/large/gregtech/gt.blockores/22326.png deleted file mode 100644 index dd64e8f1e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22327.png b/front/public/images/large/gregtech/gt.blockores/22327.png deleted file mode 100644 index b9534218c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22329.png b/front/public/images/large/gregtech/gt.blockores/22329.png deleted file mode 100644 index edf0070cb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22331.png b/front/public/images/large/gregtech/gt.blockores/22331.png deleted file mode 100644 index 89c3508ab9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22336.png b/front/public/images/large/gregtech/gt.blockores/22336.png deleted file mode 100644 index b5bff9faf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22340.png b/front/public/images/large/gregtech/gt.blockores/22340.png deleted file mode 100644 index 60380a68c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22342.png b/front/public/images/large/gregtech/gt.blockores/22342.png deleted file mode 100644 index 4b3adb970c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22347.png b/front/public/images/large/gregtech/gt.blockores/22347.png deleted file mode 100644 index e1f74a6cca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22368.png b/front/public/images/large/gregtech/gt.blockores/22368.png deleted file mode 100644 index 13cca3645f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22375.png b/front/public/images/large/gregtech/gt.blockores/22375.png deleted file mode 100644 index 83e900dcf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22382.png b/front/public/images/large/gregtech/gt.blockores/22382.png deleted file mode 100644 index 821a75685f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22386.png b/front/public/images/large/gregtech/gt.blockores/22386.png deleted file mode 100644 index a0f5ee232a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22387.png b/front/public/images/large/gregtech/gt.blockores/22387.png deleted file mode 100644 index a1056ae322..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22388.png b/front/public/images/large/gregtech/gt.blockores/22388.png deleted file mode 100644 index bd89c29eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22389.png b/front/public/images/large/gregtech/gt.blockores/22389.png deleted file mode 100644 index a3a2b88b9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22390.png b/front/public/images/large/gregtech/gt.blockores/22390.png deleted file mode 100644 index 127c92b826..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22391.png b/front/public/images/large/gregtech/gt.blockores/22391.png deleted file mode 100644 index 1f395984eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22392.png b/front/public/images/large/gregtech/gt.blockores/22392.png deleted file mode 100644 index 23859ff18e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22393.png b/front/public/images/large/gregtech/gt.blockores/22393.png deleted file mode 100644 index 1b90de9817..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22394.png b/front/public/images/large/gregtech/gt.blockores/22394.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22395.png b/front/public/images/large/gregtech/gt.blockores/22395.png deleted file mode 100644 index bd89c29eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22398.png b/front/public/images/large/gregtech/gt.blockores/22398.png deleted file mode 100644 index c0c99bb668..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22485.png b/front/public/images/large/gregtech/gt.blockores/22485.png deleted file mode 100644 index 35fc66dd7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22488.png b/front/public/images/large/gregtech/gt.blockores/22488.png deleted file mode 100644 index 7c85a3e5f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22489.png b/front/public/images/large/gregtech/gt.blockores/22489.png deleted file mode 100644 index 4613e214f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22500.png b/front/public/images/large/gregtech/gt.blockores/22500.png deleted file mode 100644 index c07bee9480..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22501.png b/front/public/images/large/gregtech/gt.blockores/22501.png deleted file mode 100644 index ae1b6d839a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22502.png b/front/public/images/large/gregtech/gt.blockores/22502.png deleted file mode 100644 index 695b16ca66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22503.png b/front/public/images/large/gregtech/gt.blockores/22503.png deleted file mode 100644 index ee95e7aa36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22504.png b/front/public/images/large/gregtech/gt.blockores/22504.png deleted file mode 100644 index 920f6eef11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22505.png b/front/public/images/large/gregtech/gt.blockores/22505.png deleted file mode 100644 index 8f42aede36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22506.png b/front/public/images/large/gregtech/gt.blockores/22506.png deleted file mode 100644 index 93be72c972..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22507.png b/front/public/images/large/gregtech/gt.blockores/22507.png deleted file mode 100644 index 79e90e7dd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22508.png b/front/public/images/large/gregtech/gt.blockores/22508.png deleted file mode 100644 index 1542dddd95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22509.png b/front/public/images/large/gregtech/gt.blockores/22509.png deleted file mode 100644 index fc9386c9c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22510.png b/front/public/images/large/gregtech/gt.blockores/22510.png deleted file mode 100644 index b20fe2f264..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22511.png b/front/public/images/large/gregtech/gt.blockores/22511.png deleted file mode 100644 index cc235d145b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22512.png b/front/public/images/large/gregtech/gt.blockores/22512.png deleted file mode 100644 index 695b16ca66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22513.png b/front/public/images/large/gregtech/gt.blockores/22513.png deleted file mode 100644 index b20fe2f264..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22514.png b/front/public/images/large/gregtech/gt.blockores/22514.png deleted file mode 100644 index 79e90e7dd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22515.png b/front/public/images/large/gregtech/gt.blockores/22515.png deleted file mode 100644 index 754eef26f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22516.png b/front/public/images/large/gregtech/gt.blockores/22516.png deleted file mode 100644 index 6a1e39f8dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22517.png b/front/public/images/large/gregtech/gt.blockores/22517.png deleted file mode 100644 index d7d06df0d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22518.png b/front/public/images/large/gregtech/gt.blockores/22518.png deleted file mode 100644 index 23c7cdde30..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22519.png b/front/public/images/large/gregtech/gt.blockores/22519.png deleted file mode 100644 index 23c7cdde30..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22520.png b/front/public/images/large/gregtech/gt.blockores/22520.png deleted file mode 100644 index 1f29524654..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22521.png b/front/public/images/large/gregtech/gt.blockores/22521.png deleted file mode 100644 index 284a1c09b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22522.png b/front/public/images/large/gregtech/gt.blockores/22522.png deleted file mode 100644 index 99c4202231..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22523.png b/front/public/images/large/gregtech/gt.blockores/22523.png deleted file mode 100644 index bc1f4455f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22524.png b/front/public/images/large/gregtech/gt.blockores/22524.png deleted file mode 100644 index 5a5efb48dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22525.png b/front/public/images/large/gregtech/gt.blockores/22525.png deleted file mode 100644 index 66e1e2d9ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22526.png b/front/public/images/large/gregtech/gt.blockores/22526.png deleted file mode 100644 index e90735deca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22527.png b/front/public/images/large/gregtech/gt.blockores/22527.png deleted file mode 100644 index cc235d145b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22528.png b/front/public/images/large/gregtech/gt.blockores/22528.png deleted file mode 100644 index cfdedfc82f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22529.png b/front/public/images/large/gregtech/gt.blockores/22529.png deleted file mode 100644 index e0afffc5a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22530.png b/front/public/images/large/gregtech/gt.blockores/22530.png deleted file mode 100644 index 2927e3f98a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22531.png b/front/public/images/large/gregtech/gt.blockores/22531.png deleted file mode 100644 index 93bc99fbeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22534.png b/front/public/images/large/gregtech/gt.blockores/22534.png deleted file mode 100644 index 9330c4a3df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22535.png b/front/public/images/large/gregtech/gt.blockores/22535.png deleted file mode 100644 index e48a05700f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22537.png b/front/public/images/large/gregtech/gt.blockores/22537.png deleted file mode 100644 index ddc725559c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22538.png b/front/public/images/large/gregtech/gt.blockores/22538.png deleted file mode 100644 index 9884399833..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22540.png b/front/public/images/large/gregtech/gt.blockores/22540.png deleted file mode 100644 index 284a1c09b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22541.png b/front/public/images/large/gregtech/gt.blockores/22541.png deleted file mode 100644 index 948f4c5b0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22542.png b/front/public/images/large/gregtech/gt.blockores/22542.png deleted file mode 100644 index d16f604eb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22543.png b/front/public/images/large/gregtech/gt.blockores/22543.png deleted file mode 100644 index c015494113..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22544.png b/front/public/images/large/gregtech/gt.blockores/22544.png deleted file mode 100644 index 2cf51eb89f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22545.png b/front/public/images/large/gregtech/gt.blockores/22545.png deleted file mode 100644 index 12a1d60f04..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22548.png b/front/public/images/large/gregtech/gt.blockores/22548.png deleted file mode 100644 index 56181ed15d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22549.png b/front/public/images/large/gregtech/gt.blockores/22549.png deleted file mode 100644 index 7ea63a39ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22607.png b/front/public/images/large/gregtech/gt.blockores/22607.png deleted file mode 100644 index 8b2005f966..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22699.png b/front/public/images/large/gregtech/gt.blockores/22699.png deleted file mode 100644 index b4ffe3ebe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22770.png b/front/public/images/large/gregtech/gt.blockores/22770.png deleted file mode 100644 index b3da10f6ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22797.png b/front/public/images/large/gregtech/gt.blockores/22797.png deleted file mode 100644 index 8431fce65a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22810.png b/front/public/images/large/gregtech/gt.blockores/22810.png deleted file mode 100644 index 6faba3a35c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22812.png b/front/public/images/large/gregtech/gt.blockores/22812.png deleted file mode 100644 index ee7c2d5221..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22817.png b/front/public/images/large/gregtech/gt.blockores/22817.png deleted file mode 100644 index 93be72c972..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22820.png b/front/public/images/large/gregtech/gt.blockores/22820.png deleted file mode 100644 index cffbdcdf8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22821.png b/front/public/images/large/gregtech/gt.blockores/22821.png deleted file mode 100644 index 164ea8d078..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22822.png b/front/public/images/large/gregtech/gt.blockores/22822.png deleted file mode 100644 index 3a7c9ac847..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22823.png b/front/public/images/large/gregtech/gt.blockores/22823.png deleted file mode 100644 index b3f9ac745d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22824.png b/front/public/images/large/gregtech/gt.blockores/22824.png deleted file mode 100644 index 8431fce65a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22825.png b/front/public/images/large/gregtech/gt.blockores/22825.png deleted file mode 100644 index fbead4d6c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22826.png b/front/public/images/large/gregtech/gt.blockores/22826.png deleted file mode 100644 index f8436c3d86..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22827.png b/front/public/images/large/gregtech/gt.blockores/22827.png deleted file mode 100644 index 333b714a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22828.png b/front/public/images/large/gregtech/gt.blockores/22828.png deleted file mode 100644 index 440f8904ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22829.png b/front/public/images/large/gregtech/gt.blockores/22829.png deleted file mode 100644 index d797102217..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22830.png b/front/public/images/large/gregtech/gt.blockores/22830.png deleted file mode 100644 index 0471efc7ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22831.png b/front/public/images/large/gregtech/gt.blockores/22831.png deleted file mode 100644 index 3a7c9ac847..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22833.png b/front/public/images/large/gregtech/gt.blockores/22833.png deleted file mode 100644 index 9330c4a3df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22834.png b/front/public/images/large/gregtech/gt.blockores/22834.png deleted file mode 100644 index 67037f7e99..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22835.png b/front/public/images/large/gregtech/gt.blockores/22835.png deleted file mode 100644 index 41ad6c95e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22836.png b/front/public/images/large/gregtech/gt.blockores/22836.png deleted file mode 100644 index b3feb75a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22838.png b/front/public/images/large/gregtech/gt.blockores/22838.png deleted file mode 100644 index 695b16ca66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22839.png b/front/public/images/large/gregtech/gt.blockores/22839.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22840.png b/front/public/images/large/gregtech/gt.blockores/22840.png deleted file mode 100644 index b956a2fc72..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22841.png b/front/public/images/large/gregtech/gt.blockores/22841.png deleted file mode 100644 index dfdd174de6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22842.png b/front/public/images/large/gregtech/gt.blockores/22842.png deleted file mode 100644 index 0ad2acb536..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22855.png b/front/public/images/large/gregtech/gt.blockores/22855.png deleted file mode 100644 index 7cc1ae3fd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22856.png b/front/public/images/large/gregtech/gt.blockores/22856.png deleted file mode 100644 index b12071561d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22861.png b/front/public/images/large/gregtech/gt.blockores/22861.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22865.png b/front/public/images/large/gregtech/gt.blockores/22865.png deleted file mode 100644 index f857d71eef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22868.png b/front/public/images/large/gregtech/gt.blockores/22868.png deleted file mode 100644 index ff5c10df28..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22870.png b/front/public/images/large/gregtech/gt.blockores/22870.png deleted file mode 100644 index f33d5f4806..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22871.png b/front/public/images/large/gregtech/gt.blockores/22871.png deleted file mode 100644 index 8055144bc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22873.png b/front/public/images/large/gregtech/gt.blockores/22873.png deleted file mode 100644 index f3f9b65a92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22877.png b/front/public/images/large/gregtech/gt.blockores/22877.png deleted file mode 100644 index 81799b6b30..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22878.png b/front/public/images/large/gregtech/gt.blockores/22878.png deleted file mode 100644 index e1d4cfb480..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22882.png b/front/public/images/large/gregtech/gt.blockores/22882.png deleted file mode 100644 index 79e90e7dd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22883.png b/front/public/images/large/gregtech/gt.blockores/22883.png deleted file mode 100644 index 9330c4a3df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22884.png b/front/public/images/large/gregtech/gt.blockores/22884.png deleted file mode 100644 index a7663e6bf0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22894.png b/front/public/images/large/gregtech/gt.blockores/22894.png deleted file mode 100644 index 9330c4a3df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22900.png b/front/public/images/large/gregtech/gt.blockores/22900.png deleted file mode 100644 index cf73f57640..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22901.png b/front/public/images/large/gregtech/gt.blockores/22901.png deleted file mode 100644 index 38f5e716df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22902.png b/front/public/images/large/gregtech/gt.blockores/22902.png deleted file mode 100644 index 9ea6d29548..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22903.png b/front/public/images/large/gregtech/gt.blockores/22903.png deleted file mode 100644 index 7a5ce9c2cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22904.png b/front/public/images/large/gregtech/gt.blockores/22904.png deleted file mode 100644 index e79df699e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22905.png b/front/public/images/large/gregtech/gt.blockores/22905.png deleted file mode 100644 index a24f1ada2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22906.png b/front/public/images/large/gregtech/gt.blockores/22906.png deleted file mode 100644 index 4830b4bae8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22907.png b/front/public/images/large/gregtech/gt.blockores/22907.png deleted file mode 100644 index e34a5f35cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22908.png b/front/public/images/large/gregtech/gt.blockores/22908.png deleted file mode 100644 index 5ffa960aa3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22909.png b/front/public/images/large/gregtech/gt.blockores/22909.png deleted file mode 100644 index 7c997ba89c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22910.png b/front/public/images/large/gregtech/gt.blockores/22910.png deleted file mode 100644 index c28e413981..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22911.png b/front/public/images/large/gregtech/gt.blockores/22911.png deleted file mode 100644 index 42c096d66d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22912.png b/front/public/images/large/gregtech/gt.blockores/22912.png deleted file mode 100644 index 724d8d4066..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22913.png b/front/public/images/large/gregtech/gt.blockores/22913.png deleted file mode 100644 index 18b43eb5c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22914.png b/front/public/images/large/gregtech/gt.blockores/22914.png deleted file mode 100644 index 57b3269559..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22915.png b/front/public/images/large/gregtech/gt.blockores/22915.png deleted file mode 100644 index 1f4f78d140..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22916.png b/front/public/images/large/gregtech/gt.blockores/22916.png deleted file mode 100644 index c87536e926..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22917.png b/front/public/images/large/gregtech/gt.blockores/22917.png deleted file mode 100644 index 9a605d8299..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22918.png b/front/public/images/large/gregtech/gt.blockores/22918.png deleted file mode 100644 index a71c5e217c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22919.png b/front/public/images/large/gregtech/gt.blockores/22919.png deleted file mode 100644 index e590c02be4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22920.png b/front/public/images/large/gregtech/gt.blockores/22920.png deleted file mode 100644 index e3b55b8f68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22921.png b/front/public/images/large/gregtech/gt.blockores/22921.png deleted file mode 100644 index 2fbe0dc708..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22922.png b/front/public/images/large/gregtech/gt.blockores/22922.png deleted file mode 100644 index 31fc7d7e64..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22923.png b/front/public/images/large/gregtech/gt.blockores/22923.png deleted file mode 100644 index 05984de457..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22924.png b/front/public/images/large/gregtech/gt.blockores/22924.png deleted file mode 100644 index 56a29199a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22925.png b/front/public/images/large/gregtech/gt.blockores/22925.png deleted file mode 100644 index 02256c641a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22926.png b/front/public/images/large/gregtech/gt.blockores/22926.png deleted file mode 100644 index 1d59c1cce2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22927.png b/front/public/images/large/gregtech/gt.blockores/22927.png deleted file mode 100644 index 9f60120450..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22928.png b/front/public/images/large/gregtech/gt.blockores/22928.png deleted file mode 100644 index ea142a9082..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22929.png b/front/public/images/large/gregtech/gt.blockores/22929.png deleted file mode 100644 index 785421c510..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22930.png b/front/public/images/large/gregtech/gt.blockores/22930.png deleted file mode 100644 index 3a7c9ac847..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22931.png b/front/public/images/large/gregtech/gt.blockores/22931.png deleted file mode 100644 index d9baf250b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22932.png b/front/public/images/large/gregtech/gt.blockores/22932.png deleted file mode 100644 index dbd3fa32a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22933.png b/front/public/images/large/gregtech/gt.blockores/22933.png deleted file mode 100644 index b5f49f54a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22934.png b/front/public/images/large/gregtech/gt.blockores/22934.png deleted file mode 100644 index 9564b6189e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22935.png b/front/public/images/large/gregtech/gt.blockores/22935.png deleted file mode 100644 index eba5e69794..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22936.png b/front/public/images/large/gregtech/gt.blockores/22936.png deleted file mode 100644 index 2fd583ea29..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22937.png b/front/public/images/large/gregtech/gt.blockores/22937.png deleted file mode 100644 index 8431fce65a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22938.png b/front/public/images/large/gregtech/gt.blockores/22938.png deleted file mode 100644 index 3a7c9ac847..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22939.png b/front/public/images/large/gregtech/gt.blockores/22939.png deleted file mode 100644 index 6e219665e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22941.png b/front/public/images/large/gregtech/gt.blockores/22941.png deleted file mode 100644 index 93be72c972..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22942.png b/front/public/images/large/gregtech/gt.blockores/22942.png deleted file mode 100644 index 7c7de463b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22943.png b/front/public/images/large/gregtech/gt.blockores/22943.png deleted file mode 100644 index 2fb70c0a4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22944.png b/front/public/images/large/gregtech/gt.blockores/22944.png deleted file mode 100644 index 1fa8c1d3dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22945.png b/front/public/images/large/gregtech/gt.blockores/22945.png deleted file mode 100644 index e48a05700f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22946.png b/front/public/images/large/gregtech/gt.blockores/22946.png deleted file mode 100644 index b3feb75a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22948.png b/front/public/images/large/gregtech/gt.blockores/22948.png deleted file mode 100644 index 9d5a378d9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22949.png b/front/public/images/large/gregtech/gt.blockores/22949.png deleted file mode 100644 index b5f49f54a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22951.png b/front/public/images/large/gregtech/gt.blockores/22951.png deleted file mode 100644 index 83f180469c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22952.png b/front/public/images/large/gregtech/gt.blockores/22952.png deleted file mode 100644 index 4a0bf867e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22956.png b/front/public/images/large/gregtech/gt.blockores/22956.png deleted file mode 100644 index fffa840ab2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22966.png b/front/public/images/large/gregtech/gt.blockores/22966.png deleted file mode 100644 index c74ae34956..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22969.png b/front/public/images/large/gregtech/gt.blockores/22969.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22971.png b/front/public/images/large/gregtech/gt.blockores/22971.png deleted file mode 100644 index fa3d5abf77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22975.png b/front/public/images/large/gregtech/gt.blockores/22975.png deleted file mode 100644 index cca431fadb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22976.png b/front/public/images/large/gregtech/gt.blockores/22976.png deleted file mode 100644 index 8c5c59c7ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22978.png b/front/public/images/large/gregtech/gt.blockores/22978.png deleted file mode 100644 index cca7bd0962..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22982.png b/front/public/images/large/gregtech/gt.blockores/22982.png deleted file mode 100644 index bd89c29eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/22984.png b/front/public/images/large/gregtech/gt.blockores/22984.png deleted file mode 100644 index 14495c79cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/22984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2303.png b/front/public/images/large/gregtech/gt.blockores/2303.png deleted file mode 100644 index 2784242398..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2307.png b/front/public/images/large/gregtech/gt.blockores/2307.png deleted file mode 100644 index aea569c4fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2319.png b/front/public/images/large/gregtech/gt.blockores/2319.png deleted file mode 100644 index afbe7388e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2320.png b/front/public/images/large/gregtech/gt.blockores/2320.png deleted file mode 100644 index 7a2823d069..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2323.png b/front/public/images/large/gregtech/gt.blockores/2323.png deleted file mode 100644 index 942903dd91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2324.png b/front/public/images/large/gregtech/gt.blockores/2324.png deleted file mode 100644 index bca3b5e513..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2326.png b/front/public/images/large/gregtech/gt.blockores/2326.png deleted file mode 100644 index e63ad675f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2327.png b/front/public/images/large/gregtech/gt.blockores/2327.png deleted file mode 100644 index d16b931e36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2329.png b/front/public/images/large/gregtech/gt.blockores/2329.png deleted file mode 100644 index 167836cd38..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2331.png b/front/public/images/large/gregtech/gt.blockores/2331.png deleted file mode 100644 index e78fe0998a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2336.png b/front/public/images/large/gregtech/gt.blockores/2336.png deleted file mode 100644 index 3e4f8c9f35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2340.png b/front/public/images/large/gregtech/gt.blockores/2340.png deleted file mode 100644 index 644b41437d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2342.png b/front/public/images/large/gregtech/gt.blockores/2342.png deleted file mode 100644 index 638a78ce7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2347.png b/front/public/images/large/gregtech/gt.blockores/2347.png deleted file mode 100644 index d0f6870720..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2368.png b/front/public/images/large/gregtech/gt.blockores/2368.png deleted file mode 100644 index 287d0bdd63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2375.png b/front/public/images/large/gregtech/gt.blockores/2375.png deleted file mode 100644 index 565c1ef651..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2382.png b/front/public/images/large/gregtech/gt.blockores/2382.png deleted file mode 100644 index 9df7d6fc2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2386.png b/front/public/images/large/gregtech/gt.blockores/2386.png deleted file mode 100644 index 22b92cfcdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2387.png b/front/public/images/large/gregtech/gt.blockores/2387.png deleted file mode 100644 index 502d53df99..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2388.png b/front/public/images/large/gregtech/gt.blockores/2388.png deleted file mode 100644 index bca3b5e513..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2389.png b/front/public/images/large/gregtech/gt.blockores/2389.png deleted file mode 100644 index 8e7f0ddd4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2390.png b/front/public/images/large/gregtech/gt.blockores/2390.png deleted file mode 100644 index 8f3667c9f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2391.png b/front/public/images/large/gregtech/gt.blockores/2391.png deleted file mode 100644 index 4e3cb3e20f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2392.png b/front/public/images/large/gregtech/gt.blockores/2392.png deleted file mode 100644 index b933c92dbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2393.png b/front/public/images/large/gregtech/gt.blockores/2393.png deleted file mode 100644 index 3ad2c173bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2394.png b/front/public/images/large/gregtech/gt.blockores/2394.png deleted file mode 100644 index afbe7388e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2395.png b/front/public/images/large/gregtech/gt.blockores/2395.png deleted file mode 100644 index bca3b5e513..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2398.png b/front/public/images/large/gregtech/gt.blockores/2398.png deleted file mode 100644 index 028d1e92b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2485.png b/front/public/images/large/gregtech/gt.blockores/2485.png deleted file mode 100644 index 64f5ba542b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2488.png b/front/public/images/large/gregtech/gt.blockores/2488.png deleted file mode 100644 index 686885c6dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2489.png b/front/public/images/large/gregtech/gt.blockores/2489.png deleted file mode 100644 index 2860641275..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2500.png b/front/public/images/large/gregtech/gt.blockores/2500.png deleted file mode 100644 index 7682a6df50..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2501.png b/front/public/images/large/gregtech/gt.blockores/2501.png deleted file mode 100644 index 911cdd5b39..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2502.png b/front/public/images/large/gregtech/gt.blockores/2502.png deleted file mode 100644 index 2f0bf16762..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2503.png b/front/public/images/large/gregtech/gt.blockores/2503.png deleted file mode 100644 index f86cfb2876..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2504.png b/front/public/images/large/gregtech/gt.blockores/2504.png deleted file mode 100644 index 5dead24f9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2505.png b/front/public/images/large/gregtech/gt.blockores/2505.png deleted file mode 100644 index f6611929f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2506.png b/front/public/images/large/gregtech/gt.blockores/2506.png deleted file mode 100644 index 4d98501cdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2507.png b/front/public/images/large/gregtech/gt.blockores/2507.png deleted file mode 100644 index eaaea68943..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2508.png b/front/public/images/large/gregtech/gt.blockores/2508.png deleted file mode 100644 index 8848a06a00..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2509.png b/front/public/images/large/gregtech/gt.blockores/2509.png deleted file mode 100644 index 87a0c4f577..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2510.png b/front/public/images/large/gregtech/gt.blockores/2510.png deleted file mode 100644 index c9a01d4eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2511.png b/front/public/images/large/gregtech/gt.blockores/2511.png deleted file mode 100644 index c035d393e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2512.png b/front/public/images/large/gregtech/gt.blockores/2512.png deleted file mode 100644 index 2f0bf16762..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2513.png b/front/public/images/large/gregtech/gt.blockores/2513.png deleted file mode 100644 index c9a01d4eaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2514.png b/front/public/images/large/gregtech/gt.blockores/2514.png deleted file mode 100644 index eaaea68943..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2515.png b/front/public/images/large/gregtech/gt.blockores/2515.png deleted file mode 100644 index 81cd4f4006..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2516.png b/front/public/images/large/gregtech/gt.blockores/2516.png deleted file mode 100644 index ad08a2d3da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2517.png b/front/public/images/large/gregtech/gt.blockores/2517.png deleted file mode 100644 index 8a6da0eea1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2518.png b/front/public/images/large/gregtech/gt.blockores/2518.png deleted file mode 100644 index 9c3de9e880..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2519.png b/front/public/images/large/gregtech/gt.blockores/2519.png deleted file mode 100644 index 9c3de9e880..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2520.png b/front/public/images/large/gregtech/gt.blockores/2520.png deleted file mode 100644 index a392add2b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2521.png b/front/public/images/large/gregtech/gt.blockores/2521.png deleted file mode 100644 index cc5e139ec5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2522.png b/front/public/images/large/gregtech/gt.blockores/2522.png deleted file mode 100644 index 7a52f9ebe8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2523.png b/front/public/images/large/gregtech/gt.blockores/2523.png deleted file mode 100644 index e69b2ac46e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2524.png b/front/public/images/large/gregtech/gt.blockores/2524.png deleted file mode 100644 index 17061fedd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2525.png b/front/public/images/large/gregtech/gt.blockores/2525.png deleted file mode 100644 index 66bd745969..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2526.png b/front/public/images/large/gregtech/gt.blockores/2526.png deleted file mode 100644 index ea6e4ae00d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2527.png b/front/public/images/large/gregtech/gt.blockores/2527.png deleted file mode 100644 index c035d393e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2528.png b/front/public/images/large/gregtech/gt.blockores/2528.png deleted file mode 100644 index 6cf4f1a20f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2529.png b/front/public/images/large/gregtech/gt.blockores/2529.png deleted file mode 100644 index 2ac236fcf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2530.png b/front/public/images/large/gregtech/gt.blockores/2530.png deleted file mode 100644 index 2ae89c44f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2531.png b/front/public/images/large/gregtech/gt.blockores/2531.png deleted file mode 100644 index 3d85e82dde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2534.png b/front/public/images/large/gregtech/gt.blockores/2534.png deleted file mode 100644 index e453731043..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2535.png b/front/public/images/large/gregtech/gt.blockores/2535.png deleted file mode 100644 index 4c3ad4ddf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2537.png b/front/public/images/large/gregtech/gt.blockores/2537.png deleted file mode 100644 index e2deedd7e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2538.png b/front/public/images/large/gregtech/gt.blockores/2538.png deleted file mode 100644 index 1ab4fe9d24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2540.png b/front/public/images/large/gregtech/gt.blockores/2540.png deleted file mode 100644 index 77f005651b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2541.png b/front/public/images/large/gregtech/gt.blockores/2541.png deleted file mode 100644 index 5a89cf4a66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2542.png b/front/public/images/large/gregtech/gt.blockores/2542.png deleted file mode 100644 index e66db6f95f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2543.png b/front/public/images/large/gregtech/gt.blockores/2543.png deleted file mode 100644 index 3feeca7d40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2544.png b/front/public/images/large/gregtech/gt.blockores/2544.png deleted file mode 100644 index 4135daa207..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2545.png b/front/public/images/large/gregtech/gt.blockores/2545.png deleted file mode 100644 index 3524c59da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2548.png b/front/public/images/large/gregtech/gt.blockores/2548.png deleted file mode 100644 index 9b5ca4a493..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2549.png b/front/public/images/large/gregtech/gt.blockores/2549.png deleted file mode 100644 index e1d007fbbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2607.png b/front/public/images/large/gregtech/gt.blockores/2607.png deleted file mode 100644 index 0dda8937d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2699.png b/front/public/images/large/gregtech/gt.blockores/2699.png deleted file mode 100644 index 2de6a8e096..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/27.png b/front/public/images/large/gregtech/gt.blockores/27.png deleted file mode 100644 index b0a8b0011d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/27.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2770.png b/front/public/images/large/gregtech/gt.blockores/2770.png deleted file mode 100644 index ea5491b3fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2797.png b/front/public/images/large/gregtech/gt.blockores/2797.png deleted file mode 100644 index 975950308b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/28.png b/front/public/images/large/gregtech/gt.blockores/28.png deleted file mode 100644 index 56cc8b2684..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/28.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2810.png b/front/public/images/large/gregtech/gt.blockores/2810.png deleted file mode 100644 index 9b4bf7a625..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2812.png b/front/public/images/large/gregtech/gt.blockores/2812.png deleted file mode 100644 index 0b5b317942..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2817.png b/front/public/images/large/gregtech/gt.blockores/2817.png deleted file mode 100644 index ede3b9e675..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2820.png b/front/public/images/large/gregtech/gt.blockores/2820.png deleted file mode 100644 index b6cb90e6b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2821.png b/front/public/images/large/gregtech/gt.blockores/2821.png deleted file mode 100644 index cfe9cf2ed9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2822.png b/front/public/images/large/gregtech/gt.blockores/2822.png deleted file mode 100644 index f69cd573ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2823.png b/front/public/images/large/gregtech/gt.blockores/2823.png deleted file mode 100644 index cfbe0c6f49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2824.png b/front/public/images/large/gregtech/gt.blockores/2824.png deleted file mode 100644 index 975950308b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2825.png b/front/public/images/large/gregtech/gt.blockores/2825.png deleted file mode 100644 index e0d0edac70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2826.png b/front/public/images/large/gregtech/gt.blockores/2826.png deleted file mode 100644 index b2e52adfb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2827.png b/front/public/images/large/gregtech/gt.blockores/2827.png deleted file mode 100644 index 44ece67fb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2828.png b/front/public/images/large/gregtech/gt.blockores/2828.png deleted file mode 100644 index c27da7bde0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2829.png b/front/public/images/large/gregtech/gt.blockores/2829.png deleted file mode 100644 index cc20fd0e9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2830.png b/front/public/images/large/gregtech/gt.blockores/2830.png deleted file mode 100644 index 505c7a8d25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2831.png b/front/public/images/large/gregtech/gt.blockores/2831.png deleted file mode 100644 index f69cd573ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2833.png b/front/public/images/large/gregtech/gt.blockores/2833.png deleted file mode 100644 index 4cb0d825e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2834.png b/front/public/images/large/gregtech/gt.blockores/2834.png deleted file mode 100644 index 83be53cce0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2835.png b/front/public/images/large/gregtech/gt.blockores/2835.png deleted file mode 100644 index 94380f57fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2836.png b/front/public/images/large/gregtech/gt.blockores/2836.png deleted file mode 100644 index ff557e42e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2838.png b/front/public/images/large/gregtech/gt.blockores/2838.png deleted file mode 100644 index 73613f1138..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2839.png b/front/public/images/large/gregtech/gt.blockores/2839.png deleted file mode 100644 index 2fea349e78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2840.png b/front/public/images/large/gregtech/gt.blockores/2840.png deleted file mode 100644 index d4b9ae5aa5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2841.png b/front/public/images/large/gregtech/gt.blockores/2841.png deleted file mode 100644 index 5d12c157ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2842.png b/front/public/images/large/gregtech/gt.blockores/2842.png deleted file mode 100644 index 4217db68cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2855.png b/front/public/images/large/gregtech/gt.blockores/2855.png deleted file mode 100644 index a5bff62e93..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2856.png b/front/public/images/large/gregtech/gt.blockores/2856.png deleted file mode 100644 index f633b42f1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2861.png b/front/public/images/large/gregtech/gt.blockores/2861.png deleted file mode 100644 index 2fea349e78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2865.png b/front/public/images/large/gregtech/gt.blockores/2865.png deleted file mode 100644 index 28b6431ff8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2868.png b/front/public/images/large/gregtech/gt.blockores/2868.png deleted file mode 100644 index 7e90f6c211..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2870.png b/front/public/images/large/gregtech/gt.blockores/2870.png deleted file mode 100644 index f1c7a7147f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2871.png b/front/public/images/large/gregtech/gt.blockores/2871.png deleted file mode 100644 index 13c678cb58..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2873.png b/front/public/images/large/gregtech/gt.blockores/2873.png deleted file mode 100644 index 68d4eb77e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2877.png b/front/public/images/large/gregtech/gt.blockores/2877.png deleted file mode 100644 index 130c720975..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2878.png b/front/public/images/large/gregtech/gt.blockores/2878.png deleted file mode 100644 index 5f50b8fc7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2882.png b/front/public/images/large/gregtech/gt.blockores/2882.png deleted file mode 100644 index 964840a747..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2883.png b/front/public/images/large/gregtech/gt.blockores/2883.png deleted file mode 100644 index 4cb0d825e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2884.png b/front/public/images/large/gregtech/gt.blockores/2884.png deleted file mode 100644 index aecd6f5cf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2894.png b/front/public/images/large/gregtech/gt.blockores/2894.png deleted file mode 100644 index a6d9e146a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/29.png b/front/public/images/large/gregtech/gt.blockores/29.png deleted file mode 100644 index f6f1bd920a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/29.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2900.png b/front/public/images/large/gregtech/gt.blockores/2900.png deleted file mode 100644 index d709b36aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2901.png b/front/public/images/large/gregtech/gt.blockores/2901.png deleted file mode 100644 index 1e2209ad43..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2902.png b/front/public/images/large/gregtech/gt.blockores/2902.png deleted file mode 100644 index 3da3780779..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2903.png b/front/public/images/large/gregtech/gt.blockores/2903.png deleted file mode 100644 index cec37a5efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2904.png b/front/public/images/large/gregtech/gt.blockores/2904.png deleted file mode 100644 index 2ce32b33a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2905.png b/front/public/images/large/gregtech/gt.blockores/2905.png deleted file mode 100644 index e535eddd6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2906.png b/front/public/images/large/gregtech/gt.blockores/2906.png deleted file mode 100644 index 1729493328..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2907.png b/front/public/images/large/gregtech/gt.blockores/2907.png deleted file mode 100644 index 19f78f2e2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2908.png b/front/public/images/large/gregtech/gt.blockores/2908.png deleted file mode 100644 index 6ad073e7cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2909.png b/front/public/images/large/gregtech/gt.blockores/2909.png deleted file mode 100644 index c1d3b17319..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2910.png b/front/public/images/large/gregtech/gt.blockores/2910.png deleted file mode 100644 index 72c15e7563..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2911.png b/front/public/images/large/gregtech/gt.blockores/2911.png deleted file mode 100644 index bc29abf70a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2912.png b/front/public/images/large/gregtech/gt.blockores/2912.png deleted file mode 100644 index 68b8e30a41..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2913.png b/front/public/images/large/gregtech/gt.blockores/2913.png deleted file mode 100644 index 3e9d38e2ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2914.png b/front/public/images/large/gregtech/gt.blockores/2914.png deleted file mode 100644 index 4c32a1f4f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2915.png b/front/public/images/large/gregtech/gt.blockores/2915.png deleted file mode 100644 index 6b2ef1ffe1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2916.png b/front/public/images/large/gregtech/gt.blockores/2916.png deleted file mode 100644 index a690ac1b7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2917.png b/front/public/images/large/gregtech/gt.blockores/2917.png deleted file mode 100644 index 0586b5172d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2918.png b/front/public/images/large/gregtech/gt.blockores/2918.png deleted file mode 100644 index f572a994db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2919.png b/front/public/images/large/gregtech/gt.blockores/2919.png deleted file mode 100644 index 3040b4e3d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2920.png b/front/public/images/large/gregtech/gt.blockores/2920.png deleted file mode 100644 index c00f6896e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2921.png b/front/public/images/large/gregtech/gt.blockores/2921.png deleted file mode 100644 index aa7ae07899..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2922.png b/front/public/images/large/gregtech/gt.blockores/2922.png deleted file mode 100644 index d792f00e7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2923.png b/front/public/images/large/gregtech/gt.blockores/2923.png deleted file mode 100644 index fb1d3b911e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2924.png b/front/public/images/large/gregtech/gt.blockores/2924.png deleted file mode 100644 index 27acfb0e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2925.png b/front/public/images/large/gregtech/gt.blockores/2925.png deleted file mode 100644 index 5cb52caa70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2926.png b/front/public/images/large/gregtech/gt.blockores/2926.png deleted file mode 100644 index 0023f6d0ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2927.png b/front/public/images/large/gregtech/gt.blockores/2927.png deleted file mode 100644 index 01c6b8ebfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2928.png b/front/public/images/large/gregtech/gt.blockores/2928.png deleted file mode 100644 index e4ab0d6c6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2929.png b/front/public/images/large/gregtech/gt.blockores/2929.png deleted file mode 100644 index 1799e622e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2930.png b/front/public/images/large/gregtech/gt.blockores/2930.png deleted file mode 100644 index f69cd573ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2931.png b/front/public/images/large/gregtech/gt.blockores/2931.png deleted file mode 100644 index 37a3dddc25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2932.png b/front/public/images/large/gregtech/gt.blockores/2932.png deleted file mode 100644 index db6ba1f460..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2933.png b/front/public/images/large/gregtech/gt.blockores/2933.png deleted file mode 100644 index 8dc28c5fa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2934.png b/front/public/images/large/gregtech/gt.blockores/2934.png deleted file mode 100644 index c5aee77363..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2935.png b/front/public/images/large/gregtech/gt.blockores/2935.png deleted file mode 100644 index bbcf96adb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2936.png b/front/public/images/large/gregtech/gt.blockores/2936.png deleted file mode 100644 index 13bff15dd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2937.png b/front/public/images/large/gregtech/gt.blockores/2937.png deleted file mode 100644 index c56451d770..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2938.png b/front/public/images/large/gregtech/gt.blockores/2938.png deleted file mode 100644 index 1ac4bbdf91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2939.png b/front/public/images/large/gregtech/gt.blockores/2939.png deleted file mode 100644 index 71c3b5f76e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2941.png b/front/public/images/large/gregtech/gt.blockores/2941.png deleted file mode 100644 index ede3b9e675..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2942.png b/front/public/images/large/gregtech/gt.blockores/2942.png deleted file mode 100644 index 1a225c112a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2943.png b/front/public/images/large/gregtech/gt.blockores/2943.png deleted file mode 100644 index 85f8584e60..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2944.png b/front/public/images/large/gregtech/gt.blockores/2944.png deleted file mode 100644 index efb66d6de1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2945.png b/front/public/images/large/gregtech/gt.blockores/2945.png deleted file mode 100644 index 4c3ad4ddf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2946.png b/front/public/images/large/gregtech/gt.blockores/2946.png deleted file mode 100644 index f0d2508147..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2948.png b/front/public/images/large/gregtech/gt.blockores/2948.png deleted file mode 100644 index b1e108ce47..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2949.png b/front/public/images/large/gregtech/gt.blockores/2949.png deleted file mode 100644 index 8dc28c5fa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2951.png b/front/public/images/large/gregtech/gt.blockores/2951.png deleted file mode 100644 index cbe18ff67b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2952.png b/front/public/images/large/gregtech/gt.blockores/2952.png deleted file mode 100644 index bf4c506a94..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2956.png b/front/public/images/large/gregtech/gt.blockores/2956.png deleted file mode 100644 index 04f0304ba9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2966.png b/front/public/images/large/gregtech/gt.blockores/2966.png deleted file mode 100644 index 0b7e164342..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2969.png b/front/public/images/large/gregtech/gt.blockores/2969.png deleted file mode 100644 index 2fea349e78..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2971.png b/front/public/images/large/gregtech/gt.blockores/2971.png deleted file mode 100644 index 54d893d6d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2975.png b/front/public/images/large/gregtech/gt.blockores/2975.png deleted file mode 100644 index 6f7a4f1986..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2976.png b/front/public/images/large/gregtech/gt.blockores/2976.png deleted file mode 100644 index 5c9ad573b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2978.png b/front/public/images/large/gregtech/gt.blockores/2978.png deleted file mode 100644 index 6a9391ddc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2982.png b/front/public/images/large/gregtech/gt.blockores/2982.png deleted file mode 100644 index a9c9130d6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/2984.png b/front/public/images/large/gregtech/gt.blockores/2984.png deleted file mode 100644 index afbe7388e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/2984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/30.png b/front/public/images/large/gregtech/gt.blockores/30.png deleted file mode 100644 index 328153970b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/30.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3006.png b/front/public/images/large/gregtech/gt.blockores/3006.png deleted file mode 100644 index e17291c4f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3008.png b/front/public/images/large/gregtech/gt.blockores/3008.png deleted file mode 100644 index fc1518d325..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3018.png b/front/public/images/large/gregtech/gt.blockores/3018.png deleted file mode 100644 index 845b8fc03f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3019.png b/front/public/images/large/gregtech/gt.blockores/3019.png deleted file mode 100644 index 6073705934..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3020.png b/front/public/images/large/gregtech/gt.blockores/3020.png deleted file mode 100644 index 25ce654025..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3022.png b/front/public/images/large/gregtech/gt.blockores/3022.png deleted file mode 100644 index 41ac0d94a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3027.png b/front/public/images/large/gregtech/gt.blockores/3027.png deleted file mode 100644 index 8b4443825f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3028.png b/front/public/images/large/gregtech/gt.blockores/3028.png deleted file mode 100644 index a4c5e5fb0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3029.png b/front/public/images/large/gregtech/gt.blockores/3029.png deleted file mode 100644 index dce444366a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/303.png b/front/public/images/large/gregtech/gt.blockores/303.png deleted file mode 100644 index 28af00b52c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3030.png b/front/public/images/large/gregtech/gt.blockores/3030.png deleted file mode 100644 index 758f2c1936..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3031.png b/front/public/images/large/gregtech/gt.blockores/3031.png deleted file mode 100644 index 0129186206..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3032.png b/front/public/images/large/gregtech/gt.blockores/3032.png deleted file mode 100644 index 67a9de8d76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3033.png b/front/public/images/large/gregtech/gt.blockores/3033.png deleted file mode 100644 index 672486ae07..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3034.png b/front/public/images/large/gregtech/gt.blockores/3034.png deleted file mode 100644 index b220e91147..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3035.png b/front/public/images/large/gregtech/gt.blockores/3035.png deleted file mode 100644 index 77b945579c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3036.png b/front/public/images/large/gregtech/gt.blockores/3036.png deleted file mode 100644 index 6aa4f9ef80..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3037.png b/front/public/images/large/gregtech/gt.blockores/3037.png deleted file mode 100644 index c042c243bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3039.png b/front/public/images/large/gregtech/gt.blockores/3039.png deleted file mode 100644 index 8288f47b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3043.png b/front/public/images/large/gregtech/gt.blockores/3043.png deleted file mode 100644 index 9fd4f6d6b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3044.png b/front/public/images/large/gregtech/gt.blockores/3044.png deleted file mode 100644 index 67a9de8d76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3045.png b/front/public/images/large/gregtech/gt.blockores/3045.png deleted file mode 100644 index 54b3581547..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3047.png b/front/public/images/large/gregtech/gt.blockores/3047.png deleted file mode 100644 index 7fb6c940da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3048.png b/front/public/images/large/gregtech/gt.blockores/3048.png deleted file mode 100644 index 57e026c982..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3052.png b/front/public/images/large/gregtech/gt.blockores/3052.png deleted file mode 100644 index 9cc75956d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3054.png b/front/public/images/large/gregtech/gt.blockores/3054.png deleted file mode 100644 index c042c243bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3055.png b/front/public/images/large/gregtech/gt.blockores/3055.png deleted file mode 100644 index a9a6aa06c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3056.png b/front/public/images/large/gregtech/gt.blockores/3056.png deleted file mode 100644 index b1235c8576..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3057.png b/front/public/images/large/gregtech/gt.blockores/3057.png deleted file mode 100644 index 80639d317c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3058.png b/front/public/images/large/gregtech/gt.blockores/3058.png deleted file mode 100644 index 8ba027e4af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3059.png b/front/public/images/large/gregtech/gt.blockores/3059.png deleted file mode 100644 index 4ed72fa0c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3062.png b/front/public/images/large/gregtech/gt.blockores/3062.png deleted file mode 100644 index 06385002b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3063.png b/front/public/images/large/gregtech/gt.blockores/3063.png deleted file mode 100644 index 8288f47b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3064.png b/front/public/images/large/gregtech/gt.blockores/3064.png deleted file mode 100644 index 59a1b2051b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3065.png b/front/public/images/large/gregtech/gt.blockores/3065.png deleted file mode 100644 index 6c8df98166..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3066.png b/front/public/images/large/gregtech/gt.blockores/3066.png deleted file mode 100644 index 524b665584..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3067.png b/front/public/images/large/gregtech/gt.blockores/3067.png deleted file mode 100644 index fe62ee8e07..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3068.png b/front/public/images/large/gregtech/gt.blockores/3068.png deleted file mode 100644 index 28a10b352b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3069.png b/front/public/images/large/gregtech/gt.blockores/3069.png deleted file mode 100644 index dd3d524602..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/307.png b/front/public/images/large/gregtech/gt.blockores/307.png deleted file mode 100644 index 41da191939..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3070.png b/front/public/images/large/gregtech/gt.blockores/3070.png deleted file mode 100644 index 3cb0ad9e45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3071.png b/front/public/images/large/gregtech/gt.blockores/3071.png deleted file mode 100644 index 0b2bdbc1c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3072.png b/front/public/images/large/gregtech/gt.blockores/3072.png deleted file mode 100644 index 8288f47b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3073.png b/front/public/images/large/gregtech/gt.blockores/3073.png deleted file mode 100644 index b5f307bc5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3074.png b/front/public/images/large/gregtech/gt.blockores/3074.png deleted file mode 100644 index 14cc6d94c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3075.png b/front/public/images/large/gregtech/gt.blockores/3075.png deleted file mode 100644 index 77a57c63c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3076.png b/front/public/images/large/gregtech/gt.blockores/3076.png deleted file mode 100644 index 425916fc05..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3077.png b/front/public/images/large/gregtech/gt.blockores/3077.png deleted file mode 100644 index 60c9b5df0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3078.png b/front/public/images/large/gregtech/gt.blockores/3078.png deleted file mode 100644 index 037cae8a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3080.png b/front/public/images/large/gregtech/gt.blockores/3080.png deleted file mode 100644 index 00e8e46d46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3081.png b/front/public/images/large/gregtech/gt.blockores/3081.png deleted file mode 100644 index dce444366a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3083.png b/front/public/images/large/gregtech/gt.blockores/3083.png deleted file mode 100644 index 5d580daa96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3084.png b/front/public/images/large/gregtech/gt.blockores/3084.png deleted file mode 100644 index c9069bea12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3085.png b/front/public/images/large/gregtech/gt.blockores/3085.png deleted file mode 100644 index 4aec2f1676..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3086.png b/front/public/images/large/gregtech/gt.blockores/3086.png deleted file mode 100644 index f5326d9c32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3089.png b/front/public/images/large/gregtech/gt.blockores/3089.png deleted file mode 100644 index 566a5655c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3090.png b/front/public/images/large/gregtech/gt.blockores/3090.png deleted file mode 100644 index c9cdee845a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3096.png b/front/public/images/large/gregtech/gt.blockores/3096.png deleted file mode 100644 index 57ac28fcab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3097.png b/front/public/images/large/gregtech/gt.blockores/3097.png deleted file mode 100644 index 7cab442f2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3098.png b/front/public/images/large/gregtech/gt.blockores/3098.png deleted file mode 100644 index f065731883..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/31.png b/front/public/images/large/gregtech/gt.blockores/31.png deleted file mode 100644 index 2c9e33d4d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/31.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3100.png b/front/public/images/large/gregtech/gt.blockores/3100.png deleted file mode 100644 index dfa784cc1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3101.png b/front/public/images/large/gregtech/gt.blockores/3101.png deleted file mode 100644 index f2c0673037..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3103.png b/front/public/images/large/gregtech/gt.blockores/3103.png deleted file mode 100644 index 67a9de8d76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3110.png b/front/public/images/large/gregtech/gt.blockores/3110.png deleted file mode 100644 index ecc4e28704..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3129.png b/front/public/images/large/gregtech/gt.blockores/3129.png deleted file mode 100644 index 0129186206..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/319.png b/front/public/images/large/gregtech/gt.blockores/319.png deleted file mode 100644 index 08ca838f86..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/32.png b/front/public/images/large/gregtech/gt.blockores/32.png deleted file mode 100644 index a201a3e25a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/32.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/320.png b/front/public/images/large/gregtech/gt.blockores/320.png deleted file mode 100644 index 55d51dd77a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/323.png b/front/public/images/large/gregtech/gt.blockores/323.png deleted file mode 100644 index fabf077be9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/324.png b/front/public/images/large/gregtech/gt.blockores/324.png deleted file mode 100644 index f6f1bd920a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/326.png b/front/public/images/large/gregtech/gt.blockores/326.png deleted file mode 100644 index 4a18b38d5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/327.png b/front/public/images/large/gregtech/gt.blockores/327.png deleted file mode 100644 index db4acc9ac6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/329.png b/front/public/images/large/gregtech/gt.blockores/329.png deleted file mode 100644 index 34bea86121..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/33.png b/front/public/images/large/gregtech/gt.blockores/33.png deleted file mode 100644 index c792800b68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/33.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3303.png b/front/public/images/large/gregtech/gt.blockores/3303.png deleted file mode 100644 index 1e7fb5763f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3307.png b/front/public/images/large/gregtech/gt.blockores/3307.png deleted file mode 100644 index 2e15f7b619..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/331.png b/front/public/images/large/gregtech/gt.blockores/331.png deleted file mode 100644 index 43dff68cae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3319.png b/front/public/images/large/gregtech/gt.blockores/3319.png deleted file mode 100644 index 290426faca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3320.png b/front/public/images/large/gregtech/gt.blockores/3320.png deleted file mode 100644 index 391170c4c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3323.png b/front/public/images/large/gregtech/gt.blockores/3323.png deleted file mode 100644 index 863ae894d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3324.png b/front/public/images/large/gregtech/gt.blockores/3324.png deleted file mode 100644 index dce444366a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3326.png b/front/public/images/large/gregtech/gt.blockores/3326.png deleted file mode 100644 index a5fc453912..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3327.png b/front/public/images/large/gregtech/gt.blockores/3327.png deleted file mode 100644 index af39ec920a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3329.png b/front/public/images/large/gregtech/gt.blockores/3329.png deleted file mode 100644 index ed26fa8586..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3331.png b/front/public/images/large/gregtech/gt.blockores/3331.png deleted file mode 100644 index 14f89db0e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3336.png b/front/public/images/large/gregtech/gt.blockores/3336.png deleted file mode 100644 index 69722828ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3340.png b/front/public/images/large/gregtech/gt.blockores/3340.png deleted file mode 100644 index d3c25ed2fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3342.png b/front/public/images/large/gregtech/gt.blockores/3342.png deleted file mode 100644 index 7dbd8e7b4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3347.png b/front/public/images/large/gregtech/gt.blockores/3347.png deleted file mode 100644 index fb0cb7cdde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/336.png b/front/public/images/large/gregtech/gt.blockores/336.png deleted file mode 100644 index 0dfcc2eefc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3368.png b/front/public/images/large/gregtech/gt.blockores/3368.png deleted file mode 100644 index 6499df43b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3375.png b/front/public/images/large/gregtech/gt.blockores/3375.png deleted file mode 100644 index 71a6bc5327..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3382.png b/front/public/images/large/gregtech/gt.blockores/3382.png deleted file mode 100644 index 9109f19e4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3386.png b/front/public/images/large/gregtech/gt.blockores/3386.png deleted file mode 100644 index 49faad4ed2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3387.png b/front/public/images/large/gregtech/gt.blockores/3387.png deleted file mode 100644 index 118708bee2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3388.png b/front/public/images/large/gregtech/gt.blockores/3388.png deleted file mode 100644 index dce444366a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3389.png b/front/public/images/large/gregtech/gt.blockores/3389.png deleted file mode 100644 index f538eba4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3390.png b/front/public/images/large/gregtech/gt.blockores/3390.png deleted file mode 100644 index f35ddcc177..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3391.png b/front/public/images/large/gregtech/gt.blockores/3391.png deleted file mode 100644 index 6ca34657b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3392.png b/front/public/images/large/gregtech/gt.blockores/3392.png deleted file mode 100644 index 3f9039c1fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3393.png b/front/public/images/large/gregtech/gt.blockores/3393.png deleted file mode 100644 index c3a05e4a50..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3394.png b/front/public/images/large/gregtech/gt.blockores/3394.png deleted file mode 100644 index 290426faca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3395.png b/front/public/images/large/gregtech/gt.blockores/3395.png deleted file mode 100644 index dce444366a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3398.png b/front/public/images/large/gregtech/gt.blockores/3398.png deleted file mode 100644 index fdbda7dc81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/34.png b/front/public/images/large/gregtech/gt.blockores/34.png deleted file mode 100644 index 26006a366d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/34.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/340.png b/front/public/images/large/gregtech/gt.blockores/340.png deleted file mode 100644 index 9800a88ab4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/342.png b/front/public/images/large/gregtech/gt.blockores/342.png deleted file mode 100644 index 4532b7b20f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/347.png b/front/public/images/large/gregtech/gt.blockores/347.png deleted file mode 100644 index 26eec6d87d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3485.png b/front/public/images/large/gregtech/gt.blockores/3485.png deleted file mode 100644 index f8a1cc1a4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3488.png b/front/public/images/large/gregtech/gt.blockores/3488.png deleted file mode 100644 index 9dc7f12b85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3489.png b/front/public/images/large/gregtech/gt.blockores/3489.png deleted file mode 100644 index 5ea1cd42e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/35.png b/front/public/images/large/gregtech/gt.blockores/35.png deleted file mode 100644 index 4b4c1469d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/35.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3500.png b/front/public/images/large/gregtech/gt.blockores/3500.png deleted file mode 100644 index 1f51c4c4d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3501.png b/front/public/images/large/gregtech/gt.blockores/3501.png deleted file mode 100644 index dbd68985d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3502.png b/front/public/images/large/gregtech/gt.blockores/3502.png deleted file mode 100644 index 07b0322d2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3503.png b/front/public/images/large/gregtech/gt.blockores/3503.png deleted file mode 100644 index d58ae0ead1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3504.png b/front/public/images/large/gregtech/gt.blockores/3504.png deleted file mode 100644 index 67aaac1b83..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3505.png b/front/public/images/large/gregtech/gt.blockores/3505.png deleted file mode 100644 index 116c67a7b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3506.png b/front/public/images/large/gregtech/gt.blockores/3506.png deleted file mode 100644 index 30defdfb44..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3507.png b/front/public/images/large/gregtech/gt.blockores/3507.png deleted file mode 100644 index ba937641f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3508.png b/front/public/images/large/gregtech/gt.blockores/3508.png deleted file mode 100644 index abd47c7a96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3509.png b/front/public/images/large/gregtech/gt.blockores/3509.png deleted file mode 100644 index d27d6d8180..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3510.png b/front/public/images/large/gregtech/gt.blockores/3510.png deleted file mode 100644 index f6cea6e697..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3511.png b/front/public/images/large/gregtech/gt.blockores/3511.png deleted file mode 100644 index a613e1678a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3512.png b/front/public/images/large/gregtech/gt.blockores/3512.png deleted file mode 100644 index 07b0322d2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3513.png b/front/public/images/large/gregtech/gt.blockores/3513.png deleted file mode 100644 index f6cea6e697..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3514.png b/front/public/images/large/gregtech/gt.blockores/3514.png deleted file mode 100644 index ba937641f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3515.png b/front/public/images/large/gregtech/gt.blockores/3515.png deleted file mode 100644 index ec316aca70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3516.png b/front/public/images/large/gregtech/gt.blockores/3516.png deleted file mode 100644 index aa5b541860..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3517.png b/front/public/images/large/gregtech/gt.blockores/3517.png deleted file mode 100644 index 245adf23d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3518.png b/front/public/images/large/gregtech/gt.blockores/3518.png deleted file mode 100644 index 8609dc709c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3519.png b/front/public/images/large/gregtech/gt.blockores/3519.png deleted file mode 100644 index 8609dc709c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3520.png b/front/public/images/large/gregtech/gt.blockores/3520.png deleted file mode 100644 index 5cd80bf6d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3521.png b/front/public/images/large/gregtech/gt.blockores/3521.png deleted file mode 100644 index 74385c9f9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3522.png b/front/public/images/large/gregtech/gt.blockores/3522.png deleted file mode 100644 index 618cd4a027..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3523.png b/front/public/images/large/gregtech/gt.blockores/3523.png deleted file mode 100644 index ce640f93af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3524.png b/front/public/images/large/gregtech/gt.blockores/3524.png deleted file mode 100644 index 84f248f21d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3525.png b/front/public/images/large/gregtech/gt.blockores/3525.png deleted file mode 100644 index 471ee92bb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3526.png b/front/public/images/large/gregtech/gt.blockores/3526.png deleted file mode 100644 index d640a93bde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3527.png b/front/public/images/large/gregtech/gt.blockores/3527.png deleted file mode 100644 index a613e1678a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3528.png b/front/public/images/large/gregtech/gt.blockores/3528.png deleted file mode 100644 index b428c3c47e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3529.png b/front/public/images/large/gregtech/gt.blockores/3529.png deleted file mode 100644 index 6986653a2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3530.png b/front/public/images/large/gregtech/gt.blockores/3530.png deleted file mode 100644 index edc81b48e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3531.png b/front/public/images/large/gregtech/gt.blockores/3531.png deleted file mode 100644 index 4e53dddde7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3534.png b/front/public/images/large/gregtech/gt.blockores/3534.png deleted file mode 100644 index 76468d9d6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3535.png b/front/public/images/large/gregtech/gt.blockores/3535.png deleted file mode 100644 index 818677b796..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3537.png b/front/public/images/large/gregtech/gt.blockores/3537.png deleted file mode 100644 index 6452951fe3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3538.png b/front/public/images/large/gregtech/gt.blockores/3538.png deleted file mode 100644 index deb613d4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3540.png b/front/public/images/large/gregtech/gt.blockores/3540.png deleted file mode 100644 index 5b25217e6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3541.png b/front/public/images/large/gregtech/gt.blockores/3541.png deleted file mode 100644 index 2ba6cf7133..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3542.png b/front/public/images/large/gregtech/gt.blockores/3542.png deleted file mode 100644 index fdc5bb78eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3543.png b/front/public/images/large/gregtech/gt.blockores/3543.png deleted file mode 100644 index c0af8fafdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3544.png b/front/public/images/large/gregtech/gt.blockores/3544.png deleted file mode 100644 index e1e5a4da80..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3545.png b/front/public/images/large/gregtech/gt.blockores/3545.png deleted file mode 100644 index cfa4238b33..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3548.png b/front/public/images/large/gregtech/gt.blockores/3548.png deleted file mode 100644 index 41e3775cf1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3549.png b/front/public/images/large/gregtech/gt.blockores/3549.png deleted file mode 100644 index 38b3ee14e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/36.png b/front/public/images/large/gregtech/gt.blockores/36.png deleted file mode 100644 index 000cebddf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/36.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3607.png b/front/public/images/large/gregtech/gt.blockores/3607.png deleted file mode 100644 index c61eeeb138..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/368.png b/front/public/images/large/gregtech/gt.blockores/368.png deleted file mode 100644 index 8c71a184fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3699.png b/front/public/images/large/gregtech/gt.blockores/3699.png deleted file mode 100644 index 7300f506b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/37.png b/front/public/images/large/gregtech/gt.blockores/37.png deleted file mode 100644 index 7a047f289a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/37.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/375.png b/front/public/images/large/gregtech/gt.blockores/375.png deleted file mode 100644 index 8f4fbcdbaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3770.png b/front/public/images/large/gregtech/gt.blockores/3770.png deleted file mode 100644 index 2b5a4e3a5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3797.png b/front/public/images/large/gregtech/gt.blockores/3797.png deleted file mode 100644 index 80639d317c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3810.png b/front/public/images/large/gregtech/gt.blockores/3810.png deleted file mode 100644 index 32b778c3a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3812.png b/front/public/images/large/gregtech/gt.blockores/3812.png deleted file mode 100644 index fbdbf369f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3817.png b/front/public/images/large/gregtech/gt.blockores/3817.png deleted file mode 100644 index 63f5855615..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/382.png b/front/public/images/large/gregtech/gt.blockores/382.png deleted file mode 100644 index 4e83ee5c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3820.png b/front/public/images/large/gregtech/gt.blockores/3820.png deleted file mode 100644 index 68cb5ff14d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3821.png b/front/public/images/large/gregtech/gt.blockores/3821.png deleted file mode 100644 index 8ad0ba782c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3822.png b/front/public/images/large/gregtech/gt.blockores/3822.png deleted file mode 100644 index 83033d07ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3823.png b/front/public/images/large/gregtech/gt.blockores/3823.png deleted file mode 100644 index 6b80a3a930..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3824.png b/front/public/images/large/gregtech/gt.blockores/3824.png deleted file mode 100644 index 80639d317c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3825.png b/front/public/images/large/gregtech/gt.blockores/3825.png deleted file mode 100644 index 9cdb3ffc1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3826.png b/front/public/images/large/gregtech/gt.blockores/3826.png deleted file mode 100644 index 93e2f48c4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3827.png b/front/public/images/large/gregtech/gt.blockores/3827.png deleted file mode 100644 index 672486ae07..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3828.png b/front/public/images/large/gregtech/gt.blockores/3828.png deleted file mode 100644 index 0dbedc2257..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3829.png b/front/public/images/large/gregtech/gt.blockores/3829.png deleted file mode 100644 index 91e325529c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3830.png b/front/public/images/large/gregtech/gt.blockores/3830.png deleted file mode 100644 index a8367eadb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3831.png b/front/public/images/large/gregtech/gt.blockores/3831.png deleted file mode 100644 index 83033d07ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3833.png b/front/public/images/large/gregtech/gt.blockores/3833.png deleted file mode 100644 index 7db272ac0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3834.png b/front/public/images/large/gregtech/gt.blockores/3834.png deleted file mode 100644 index b933560a75..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3835.png b/front/public/images/large/gregtech/gt.blockores/3835.png deleted file mode 100644 index dc198fe250..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3836.png b/front/public/images/large/gregtech/gt.blockores/3836.png deleted file mode 100644 index dd23af877c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3838.png b/front/public/images/large/gregtech/gt.blockores/3838.png deleted file mode 100644 index c6f5e1c4d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3839.png b/front/public/images/large/gregtech/gt.blockores/3839.png deleted file mode 100644 index 8288f47b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3840.png b/front/public/images/large/gregtech/gt.blockores/3840.png deleted file mode 100644 index a8ba6447a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3841.png b/front/public/images/large/gregtech/gt.blockores/3841.png deleted file mode 100644 index 10be4c7162..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3842.png b/front/public/images/large/gregtech/gt.blockores/3842.png deleted file mode 100644 index 13f3c5ac46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3855.png b/front/public/images/large/gregtech/gt.blockores/3855.png deleted file mode 100644 index b393ac4c0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3856.png b/front/public/images/large/gregtech/gt.blockores/3856.png deleted file mode 100644 index 2812045273..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/386.png b/front/public/images/large/gregtech/gt.blockores/386.png deleted file mode 100644 index 2d34248efd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3861.png b/front/public/images/large/gregtech/gt.blockores/3861.png deleted file mode 100644 index 8288f47b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3865.png b/front/public/images/large/gregtech/gt.blockores/3865.png deleted file mode 100644 index e1b21dc3c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3868.png b/front/public/images/large/gregtech/gt.blockores/3868.png deleted file mode 100644 index 86f632ef3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/387.png b/front/public/images/large/gregtech/gt.blockores/387.png deleted file mode 100644 index 8ed74720b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3870.png b/front/public/images/large/gregtech/gt.blockores/3870.png deleted file mode 100644 index 83783b8d6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3871.png b/front/public/images/large/gregtech/gt.blockores/3871.png deleted file mode 100644 index 5551fd5584..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3873.png b/front/public/images/large/gregtech/gt.blockores/3873.png deleted file mode 100644 index 8261b449f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3877.png b/front/public/images/large/gregtech/gt.blockores/3877.png deleted file mode 100644 index 18bd3d5d12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3878.png b/front/public/images/large/gregtech/gt.blockores/3878.png deleted file mode 100644 index 2eca4c2505..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/388.png b/front/public/images/large/gregtech/gt.blockores/388.png deleted file mode 100644 index f6f1bd920a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3882.png b/front/public/images/large/gregtech/gt.blockores/3882.png deleted file mode 100644 index 05145e786e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3883.png b/front/public/images/large/gregtech/gt.blockores/3883.png deleted file mode 100644 index 7db272ac0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3884.png b/front/public/images/large/gregtech/gt.blockores/3884.png deleted file mode 100644 index cce7551e5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/389.png b/front/public/images/large/gregtech/gt.blockores/389.png deleted file mode 100644 index af0a1adc38..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3894.png b/front/public/images/large/gregtech/gt.blockores/3894.png deleted file mode 100644 index 234cd9dd81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/39.png b/front/public/images/large/gregtech/gt.blockores/39.png deleted file mode 100644 index 6face00725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/39.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/390.png b/front/public/images/large/gregtech/gt.blockores/390.png deleted file mode 100644 index e8f0e207a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3900.png b/front/public/images/large/gregtech/gt.blockores/3900.png deleted file mode 100644 index 870a3d15f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3901.png b/front/public/images/large/gregtech/gt.blockores/3901.png deleted file mode 100644 index 78eb5631df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3902.png b/front/public/images/large/gregtech/gt.blockores/3902.png deleted file mode 100644 index 9a9091eee7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3903.png b/front/public/images/large/gregtech/gt.blockores/3903.png deleted file mode 100644 index 6b58de320c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3904.png b/front/public/images/large/gregtech/gt.blockores/3904.png deleted file mode 100644 index 446ef8c946..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3905.png b/front/public/images/large/gregtech/gt.blockores/3905.png deleted file mode 100644 index b6e2a5a828..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3906.png b/front/public/images/large/gregtech/gt.blockores/3906.png deleted file mode 100644 index ca38b31ca9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3907.png b/front/public/images/large/gregtech/gt.blockores/3907.png deleted file mode 100644 index 080fcdd328..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3908.png b/front/public/images/large/gregtech/gt.blockores/3908.png deleted file mode 100644 index 53bca4d303..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3909.png b/front/public/images/large/gregtech/gt.blockores/3909.png deleted file mode 100644 index ec62b3c085..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/391.png b/front/public/images/large/gregtech/gt.blockores/391.png deleted file mode 100644 index 3245faa47b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3910.png b/front/public/images/large/gregtech/gt.blockores/3910.png deleted file mode 100644 index 117b4bad90..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3911.png b/front/public/images/large/gregtech/gt.blockores/3911.png deleted file mode 100644 index ef9dd4a1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3912.png b/front/public/images/large/gregtech/gt.blockores/3912.png deleted file mode 100644 index 4f25dd15b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3913.png b/front/public/images/large/gregtech/gt.blockores/3913.png deleted file mode 100644 index be9c4deea3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3914.png b/front/public/images/large/gregtech/gt.blockores/3914.png deleted file mode 100644 index a776c1191f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3915.png b/front/public/images/large/gregtech/gt.blockores/3915.png deleted file mode 100644 index dd35f4dd4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3916.png b/front/public/images/large/gregtech/gt.blockores/3916.png deleted file mode 100644 index 6e4bbd5b7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3917.png b/front/public/images/large/gregtech/gt.blockores/3917.png deleted file mode 100644 index d2e7bb9dd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3918.png b/front/public/images/large/gregtech/gt.blockores/3918.png deleted file mode 100644 index 56544278ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3919.png b/front/public/images/large/gregtech/gt.blockores/3919.png deleted file mode 100644 index 131feed2f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/392.png b/front/public/images/large/gregtech/gt.blockores/392.png deleted file mode 100644 index 35b09644a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3920.png b/front/public/images/large/gregtech/gt.blockores/3920.png deleted file mode 100644 index b37d0ff0a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3921.png b/front/public/images/large/gregtech/gt.blockores/3921.png deleted file mode 100644 index 62bde9a412..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3922.png b/front/public/images/large/gregtech/gt.blockores/3922.png deleted file mode 100644 index bd9e47f17f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3923.png b/front/public/images/large/gregtech/gt.blockores/3923.png deleted file mode 100644 index 60e1314af6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3924.png b/front/public/images/large/gregtech/gt.blockores/3924.png deleted file mode 100644 index 85bd4d7077..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3925.png b/front/public/images/large/gregtech/gt.blockores/3925.png deleted file mode 100644 index 18178ba020..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3926.png b/front/public/images/large/gregtech/gt.blockores/3926.png deleted file mode 100644 index c982a5f46d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3927.png b/front/public/images/large/gregtech/gt.blockores/3927.png deleted file mode 100644 index 730fc8b111..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3928.png b/front/public/images/large/gregtech/gt.blockores/3928.png deleted file mode 100644 index d95ec32297..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3929.png b/front/public/images/large/gregtech/gt.blockores/3929.png deleted file mode 100644 index 3967322300..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/393.png b/front/public/images/large/gregtech/gt.blockores/393.png deleted file mode 100644 index 3e6bf82650..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3930.png b/front/public/images/large/gregtech/gt.blockores/3930.png deleted file mode 100644 index 83033d07ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3931.png b/front/public/images/large/gregtech/gt.blockores/3931.png deleted file mode 100644 index 41ac0d94a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3932.png b/front/public/images/large/gregtech/gt.blockores/3932.png deleted file mode 100644 index 1a33c39081..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3933.png b/front/public/images/large/gregtech/gt.blockores/3933.png deleted file mode 100644 index ecfb366089..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3934.png b/front/public/images/large/gregtech/gt.blockores/3934.png deleted file mode 100644 index 9f767208a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3935.png b/front/public/images/large/gregtech/gt.blockores/3935.png deleted file mode 100644 index 53f6fd1d95..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3936.png b/front/public/images/large/gregtech/gt.blockores/3936.png deleted file mode 100644 index 68610f67d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3937.png b/front/public/images/large/gregtech/gt.blockores/3937.png deleted file mode 100644 index 589d90d018..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3938.png b/front/public/images/large/gregtech/gt.blockores/3938.png deleted file mode 100644 index 2a929a89f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3939.png b/front/public/images/large/gregtech/gt.blockores/3939.png deleted file mode 100644 index f007c5abb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/394.png b/front/public/images/large/gregtech/gt.blockores/394.png deleted file mode 100644 index 08ca838f86..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3941.png b/front/public/images/large/gregtech/gt.blockores/3941.png deleted file mode 100644 index 63f5855615..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3942.png b/front/public/images/large/gregtech/gt.blockores/3942.png deleted file mode 100644 index 3a1cb03ca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3943.png b/front/public/images/large/gregtech/gt.blockores/3943.png deleted file mode 100644 index 8ee6921805..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3944.png b/front/public/images/large/gregtech/gt.blockores/3944.png deleted file mode 100644 index d3ec1eb182..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3945.png b/front/public/images/large/gregtech/gt.blockores/3945.png deleted file mode 100644 index 818677b796..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3946.png b/front/public/images/large/gregtech/gt.blockores/3946.png deleted file mode 100644 index 921cb1e34f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3948.png b/front/public/images/large/gregtech/gt.blockores/3948.png deleted file mode 100644 index c3fca4be21..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3949.png b/front/public/images/large/gregtech/gt.blockores/3949.png deleted file mode 100644 index ecfb366089..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/395.png b/front/public/images/large/gregtech/gt.blockores/395.png deleted file mode 100644 index f6f1bd920a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3951.png b/front/public/images/large/gregtech/gt.blockores/3951.png deleted file mode 100644 index 91b8fb3369..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3952.png b/front/public/images/large/gregtech/gt.blockores/3952.png deleted file mode 100644 index c96dda3d32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3956.png b/front/public/images/large/gregtech/gt.blockores/3956.png deleted file mode 100644 index 3820bd1a03..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3966.png b/front/public/images/large/gregtech/gt.blockores/3966.png deleted file mode 100644 index 90c8951d08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3969.png b/front/public/images/large/gregtech/gt.blockores/3969.png deleted file mode 100644 index 8288f47b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3971.png b/front/public/images/large/gregtech/gt.blockores/3971.png deleted file mode 100644 index a9d0f1f771..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3975.png b/front/public/images/large/gregtech/gt.blockores/3975.png deleted file mode 100644 index e9314eea43..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3976.png b/front/public/images/large/gregtech/gt.blockores/3976.png deleted file mode 100644 index 9039101477..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3978.png b/front/public/images/large/gregtech/gt.blockores/3978.png deleted file mode 100644 index 091820dd9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/398.png b/front/public/images/large/gregtech/gt.blockores/398.png deleted file mode 100644 index 9712af0317..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3982.png b/front/public/images/large/gregtech/gt.blockores/3982.png deleted file mode 100644 index 6f5bb871ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/3984.png b/front/public/images/large/gregtech/gt.blockores/3984.png deleted file mode 100644 index 290426faca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/3984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4006.png b/front/public/images/large/gregtech/gt.blockores/4006.png deleted file mode 100644 index 35ee2c1902..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4008.png b/front/public/images/large/gregtech/gt.blockores/4008.png deleted file mode 100644 index 0c5117b410..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4018.png b/front/public/images/large/gregtech/gt.blockores/4018.png deleted file mode 100644 index 75f6ecb6ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4019.png b/front/public/images/large/gregtech/gt.blockores/4019.png deleted file mode 100644 index b318d1a37b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4020.png b/front/public/images/large/gregtech/gt.blockores/4020.png deleted file mode 100644 index 86816adbde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4022.png b/front/public/images/large/gregtech/gt.blockores/4022.png deleted file mode 100644 index 71ae089bf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4027.png b/front/public/images/large/gregtech/gt.blockores/4027.png deleted file mode 100644 index 4b64397caf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4028.png b/front/public/images/large/gregtech/gt.blockores/4028.png deleted file mode 100644 index e368f53f43..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4029.png b/front/public/images/large/gregtech/gt.blockores/4029.png deleted file mode 100644 index 1f756861ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4030.png b/front/public/images/large/gregtech/gt.blockores/4030.png deleted file mode 100644 index 2191657795..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4031.png b/front/public/images/large/gregtech/gt.blockores/4031.png deleted file mode 100644 index 8ff0c7c043..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4032.png b/front/public/images/large/gregtech/gt.blockores/4032.png deleted file mode 100644 index ed5b3a9c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4033.png b/front/public/images/large/gregtech/gt.blockores/4033.png deleted file mode 100644 index 0f049d2f8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4034.png b/front/public/images/large/gregtech/gt.blockores/4034.png deleted file mode 100644 index 6411e9a292..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4035.png b/front/public/images/large/gregtech/gt.blockores/4035.png deleted file mode 100644 index b2fb1e3085..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4036.png b/front/public/images/large/gregtech/gt.blockores/4036.png deleted file mode 100644 index e7af9de22b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4037.png b/front/public/images/large/gregtech/gt.blockores/4037.png deleted file mode 100644 index 4fda9d6e25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4039.png b/front/public/images/large/gregtech/gt.blockores/4039.png deleted file mode 100644 index 1c13aa0733..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4043.png b/front/public/images/large/gregtech/gt.blockores/4043.png deleted file mode 100644 index 0e94c71852..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4044.png b/front/public/images/large/gregtech/gt.blockores/4044.png deleted file mode 100644 index ed5b3a9c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4045.png b/front/public/images/large/gregtech/gt.blockores/4045.png deleted file mode 100644 index 346dee519d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4047.png b/front/public/images/large/gregtech/gt.blockores/4047.png deleted file mode 100644 index ef3f9c59a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4048.png b/front/public/images/large/gregtech/gt.blockores/4048.png deleted file mode 100644 index 9cd87fcc3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4052.png b/front/public/images/large/gregtech/gt.blockores/4052.png deleted file mode 100644 index fb4c1661ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4054.png b/front/public/images/large/gregtech/gt.blockores/4054.png deleted file mode 100644 index 4fda9d6e25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4055.png b/front/public/images/large/gregtech/gt.blockores/4055.png deleted file mode 100644 index 8342975faa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4056.png b/front/public/images/large/gregtech/gt.blockores/4056.png deleted file mode 100644 index 2ef49ed15f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4057.png b/front/public/images/large/gregtech/gt.blockores/4057.png deleted file mode 100644 index a87c9f2c13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4058.png b/front/public/images/large/gregtech/gt.blockores/4058.png deleted file mode 100644 index 79b348a55f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4059.png b/front/public/images/large/gregtech/gt.blockores/4059.png deleted file mode 100644 index 0734555e7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4062.png b/front/public/images/large/gregtech/gt.blockores/4062.png deleted file mode 100644 index 9e9a01e419..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4063.png b/front/public/images/large/gregtech/gt.blockores/4063.png deleted file mode 100644 index 1c13aa0733..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4064.png b/front/public/images/large/gregtech/gt.blockores/4064.png deleted file mode 100644 index 8347e4d78e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4065.png b/front/public/images/large/gregtech/gt.blockores/4065.png deleted file mode 100644 index ab014d49d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4066.png b/front/public/images/large/gregtech/gt.blockores/4066.png deleted file mode 100644 index 94f8b4fe88..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4067.png b/front/public/images/large/gregtech/gt.blockores/4067.png deleted file mode 100644 index b8d4e94015..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4068.png b/front/public/images/large/gregtech/gt.blockores/4068.png deleted file mode 100644 index 72eadf6d7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4069.png b/front/public/images/large/gregtech/gt.blockores/4069.png deleted file mode 100644 index 66ab58f6d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4070.png b/front/public/images/large/gregtech/gt.blockores/4070.png deleted file mode 100644 index dac3550800..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4071.png b/front/public/images/large/gregtech/gt.blockores/4071.png deleted file mode 100644 index 50ca8637b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4072.png b/front/public/images/large/gregtech/gt.blockores/4072.png deleted file mode 100644 index 1c13aa0733..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4073.png b/front/public/images/large/gregtech/gt.blockores/4073.png deleted file mode 100644 index dc3c186bf5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4074.png b/front/public/images/large/gregtech/gt.blockores/4074.png deleted file mode 100644 index 1fba2d46c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4075.png b/front/public/images/large/gregtech/gt.blockores/4075.png deleted file mode 100644 index f984ac1efd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4076.png b/front/public/images/large/gregtech/gt.blockores/4076.png deleted file mode 100644 index e19a5ddc3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4077.png b/front/public/images/large/gregtech/gt.blockores/4077.png deleted file mode 100644 index 1ed690012a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4078.png b/front/public/images/large/gregtech/gt.blockores/4078.png deleted file mode 100644 index 172e065cc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4080.png b/front/public/images/large/gregtech/gt.blockores/4080.png deleted file mode 100644 index 3706b741ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4081.png b/front/public/images/large/gregtech/gt.blockores/4081.png deleted file mode 100644 index 1f756861ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4083.png b/front/public/images/large/gregtech/gt.blockores/4083.png deleted file mode 100644 index 63dfef511c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4084.png b/front/public/images/large/gregtech/gt.blockores/4084.png deleted file mode 100644 index 76427731be..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4085.png b/front/public/images/large/gregtech/gt.blockores/4085.png deleted file mode 100644 index 135c4c7085..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4086.png b/front/public/images/large/gregtech/gt.blockores/4086.png deleted file mode 100644 index a2acc5be2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4089.png b/front/public/images/large/gregtech/gt.blockores/4089.png deleted file mode 100644 index 2c416b73ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4090.png b/front/public/images/large/gregtech/gt.blockores/4090.png deleted file mode 100644 index 27c3c2ca55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4096.png b/front/public/images/large/gregtech/gt.blockores/4096.png deleted file mode 100644 index 849db80ff6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4097.png b/front/public/images/large/gregtech/gt.blockores/4097.png deleted file mode 100644 index bb4d7a5485..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4098.png b/front/public/images/large/gregtech/gt.blockores/4098.png deleted file mode 100644 index 7a0e847796..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4100.png b/front/public/images/large/gregtech/gt.blockores/4100.png deleted file mode 100644 index 51e32f966b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4101.png b/front/public/images/large/gregtech/gt.blockores/4101.png deleted file mode 100644 index 29fcca5b0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4103.png b/front/public/images/large/gregtech/gt.blockores/4103.png deleted file mode 100644 index ed5b3a9c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4110.png b/front/public/images/large/gregtech/gt.blockores/4110.png deleted file mode 100644 index 848e3ff128..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4129.png b/front/public/images/large/gregtech/gt.blockores/4129.png deleted file mode 100644 index 8ff0c7c043..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/43.png b/front/public/images/large/gregtech/gt.blockores/43.png deleted file mode 100644 index c4c3a7bedd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/43.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4303.png b/front/public/images/large/gregtech/gt.blockores/4303.png deleted file mode 100644 index eec693fbce..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4307.png b/front/public/images/large/gregtech/gt.blockores/4307.png deleted file mode 100644 index a24a667440..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4319.png b/front/public/images/large/gregtech/gt.blockores/4319.png deleted file mode 100644 index f2b38e7fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4320.png b/front/public/images/large/gregtech/gt.blockores/4320.png deleted file mode 100644 index b1f7fc0b65..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4323.png b/front/public/images/large/gregtech/gt.blockores/4323.png deleted file mode 100644 index 2a48db516a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4324.png b/front/public/images/large/gregtech/gt.blockores/4324.png deleted file mode 100644 index 1f756861ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4326.png b/front/public/images/large/gregtech/gt.blockores/4326.png deleted file mode 100644 index 1108533385..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4327.png b/front/public/images/large/gregtech/gt.blockores/4327.png deleted file mode 100644 index c285fc913b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4329.png b/front/public/images/large/gregtech/gt.blockores/4329.png deleted file mode 100644 index a921900d4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4331.png b/front/public/images/large/gregtech/gt.blockores/4331.png deleted file mode 100644 index 0d730ce635..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4336.png b/front/public/images/large/gregtech/gt.blockores/4336.png deleted file mode 100644 index 4118322282..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4340.png b/front/public/images/large/gregtech/gt.blockores/4340.png deleted file mode 100644 index 6ee5cbf5db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4342.png b/front/public/images/large/gregtech/gt.blockores/4342.png deleted file mode 100644 index f75c2349c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4347.png b/front/public/images/large/gregtech/gt.blockores/4347.png deleted file mode 100644 index 67b2619675..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4368.png b/front/public/images/large/gregtech/gt.blockores/4368.png deleted file mode 100644 index 9618ae28e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4375.png b/front/public/images/large/gregtech/gt.blockores/4375.png deleted file mode 100644 index 3f3cc19a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4382.png b/front/public/images/large/gregtech/gt.blockores/4382.png deleted file mode 100644 index c8b37969af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4386.png b/front/public/images/large/gregtech/gt.blockores/4386.png deleted file mode 100644 index 1fd85ebfe1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4387.png b/front/public/images/large/gregtech/gt.blockores/4387.png deleted file mode 100644 index ec159477f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4388.png b/front/public/images/large/gregtech/gt.blockores/4388.png deleted file mode 100644 index 1f756861ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4389.png b/front/public/images/large/gregtech/gt.blockores/4389.png deleted file mode 100644 index d5e5c48d43..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4390.png b/front/public/images/large/gregtech/gt.blockores/4390.png deleted file mode 100644 index 12d35c77bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4391.png b/front/public/images/large/gregtech/gt.blockores/4391.png deleted file mode 100644 index 90bf2c4cec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4392.png b/front/public/images/large/gregtech/gt.blockores/4392.png deleted file mode 100644 index c4d9e6eda2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4393.png b/front/public/images/large/gregtech/gt.blockores/4393.png deleted file mode 100644 index a388616036..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4394.png b/front/public/images/large/gregtech/gt.blockores/4394.png deleted file mode 100644 index f2b38e7fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4395.png b/front/public/images/large/gregtech/gt.blockores/4395.png deleted file mode 100644 index 1f756861ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4398.png b/front/public/images/large/gregtech/gt.blockores/4398.png deleted file mode 100644 index c783fb3e32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/44.png b/front/public/images/large/gregtech/gt.blockores/44.png deleted file mode 100644 index a201a3e25a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/44.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4485.png b/front/public/images/large/gregtech/gt.blockores/4485.png deleted file mode 100644 index 9d55b4fda5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4488.png b/front/public/images/large/gregtech/gt.blockores/4488.png deleted file mode 100644 index 50e0f5d253..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4489.png b/front/public/images/large/gregtech/gt.blockores/4489.png deleted file mode 100644 index d398204bf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/45.png b/front/public/images/large/gregtech/gt.blockores/45.png deleted file mode 100644 index 93bd7af79c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/45.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4500.png b/front/public/images/large/gregtech/gt.blockores/4500.png deleted file mode 100644 index 2ce355b1ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4501.png b/front/public/images/large/gregtech/gt.blockores/4501.png deleted file mode 100644 index fdfaeef974..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4502.png b/front/public/images/large/gregtech/gt.blockores/4502.png deleted file mode 100644 index 29816ee402..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4503.png b/front/public/images/large/gregtech/gt.blockores/4503.png deleted file mode 100644 index eb48148c7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4504.png b/front/public/images/large/gregtech/gt.blockores/4504.png deleted file mode 100644 index ed9c2b4be1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4505.png b/front/public/images/large/gregtech/gt.blockores/4505.png deleted file mode 100644 index 1daa627e96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4506.png b/front/public/images/large/gregtech/gt.blockores/4506.png deleted file mode 100644 index 59e13e109f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4507.png b/front/public/images/large/gregtech/gt.blockores/4507.png deleted file mode 100644 index 040c2f1fa2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4508.png b/front/public/images/large/gregtech/gt.blockores/4508.png deleted file mode 100644 index 11cd872445..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4509.png b/front/public/images/large/gregtech/gt.blockores/4509.png deleted file mode 100644 index 8eadec0c42..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4510.png b/front/public/images/large/gregtech/gt.blockores/4510.png deleted file mode 100644 index 0901f49f45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4511.png b/front/public/images/large/gregtech/gt.blockores/4511.png deleted file mode 100644 index 3eb4ef0c4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4512.png b/front/public/images/large/gregtech/gt.blockores/4512.png deleted file mode 100644 index 29816ee402..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4513.png b/front/public/images/large/gregtech/gt.blockores/4513.png deleted file mode 100644 index 0901f49f45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4514.png b/front/public/images/large/gregtech/gt.blockores/4514.png deleted file mode 100644 index 040c2f1fa2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4515.png b/front/public/images/large/gregtech/gt.blockores/4515.png deleted file mode 100644 index 78e10c1597..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4516.png b/front/public/images/large/gregtech/gt.blockores/4516.png deleted file mode 100644 index f26341ea8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4517.png b/front/public/images/large/gregtech/gt.blockores/4517.png deleted file mode 100644 index 0f5977b6c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4518.png b/front/public/images/large/gregtech/gt.blockores/4518.png deleted file mode 100644 index db28d42ffd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4519.png b/front/public/images/large/gregtech/gt.blockores/4519.png deleted file mode 100644 index db28d42ffd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4520.png b/front/public/images/large/gregtech/gt.blockores/4520.png deleted file mode 100644 index bc431d59bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4521.png b/front/public/images/large/gregtech/gt.blockores/4521.png deleted file mode 100644 index 0fdfdb8f76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4522.png b/front/public/images/large/gregtech/gt.blockores/4522.png deleted file mode 100644 index ac3bd87c15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4523.png b/front/public/images/large/gregtech/gt.blockores/4523.png deleted file mode 100644 index ec0b7892aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4524.png b/front/public/images/large/gregtech/gt.blockores/4524.png deleted file mode 100644 index 216d2a9d4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4525.png b/front/public/images/large/gregtech/gt.blockores/4525.png deleted file mode 100644 index c7f6100850..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4526.png b/front/public/images/large/gregtech/gt.blockores/4526.png deleted file mode 100644 index 0fa0641bb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4527.png b/front/public/images/large/gregtech/gt.blockores/4527.png deleted file mode 100644 index 3eb4ef0c4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4528.png b/front/public/images/large/gregtech/gt.blockores/4528.png deleted file mode 100644 index b643644f73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4529.png b/front/public/images/large/gregtech/gt.blockores/4529.png deleted file mode 100644 index a90638d063..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4530.png b/front/public/images/large/gregtech/gt.blockores/4530.png deleted file mode 100644 index a574ce513d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4531.png b/front/public/images/large/gregtech/gt.blockores/4531.png deleted file mode 100644 index c91b3212c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4534.png b/front/public/images/large/gregtech/gt.blockores/4534.png deleted file mode 100644 index f6a2fc7efb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4535.png b/front/public/images/large/gregtech/gt.blockores/4535.png deleted file mode 100644 index 67e2334eac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4537.png b/front/public/images/large/gregtech/gt.blockores/4537.png deleted file mode 100644 index 6e7a6125b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4538.png b/front/public/images/large/gregtech/gt.blockores/4538.png deleted file mode 100644 index 3ecb55c0d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4540.png b/front/public/images/large/gregtech/gt.blockores/4540.png deleted file mode 100644 index 62cfab4753..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4541.png b/front/public/images/large/gregtech/gt.blockores/4541.png deleted file mode 100644 index 75263a8358..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4542.png b/front/public/images/large/gregtech/gt.blockores/4542.png deleted file mode 100644 index ee9ddaaa2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4543.png b/front/public/images/large/gregtech/gt.blockores/4543.png deleted file mode 100644 index 4f0824d28e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4544.png b/front/public/images/large/gregtech/gt.blockores/4544.png deleted file mode 100644 index 137b3de41c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4545.png b/front/public/images/large/gregtech/gt.blockores/4545.png deleted file mode 100644 index 6117eb75cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4548.png b/front/public/images/large/gregtech/gt.blockores/4548.png deleted file mode 100644 index d7329d22be..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4549.png b/front/public/images/large/gregtech/gt.blockores/4549.png deleted file mode 100644 index b255b96d66..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4607.png b/front/public/images/large/gregtech/gt.blockores/4607.png deleted file mode 100644 index 8ca23da9c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4699.png b/front/public/images/large/gregtech/gt.blockores/4699.png deleted file mode 100644 index 0a8158e755..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/47.png b/front/public/images/large/gregtech/gt.blockores/47.png deleted file mode 100644 index 0451e63268..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/47.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4770.png b/front/public/images/large/gregtech/gt.blockores/4770.png deleted file mode 100644 index 4067b22aec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4797.png b/front/public/images/large/gregtech/gt.blockores/4797.png deleted file mode 100644 index a87c9f2c13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/48.png b/front/public/images/large/gregtech/gt.blockores/48.png deleted file mode 100644 index d900bcbed8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/48.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4810.png b/front/public/images/large/gregtech/gt.blockores/4810.png deleted file mode 100644 index 1b5d758dde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4812.png b/front/public/images/large/gregtech/gt.blockores/4812.png deleted file mode 100644 index 6393916a21..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4817.png b/front/public/images/large/gregtech/gt.blockores/4817.png deleted file mode 100644 index b31ba0b896..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4820.png b/front/public/images/large/gregtech/gt.blockores/4820.png deleted file mode 100644 index 699e0017bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4821.png b/front/public/images/large/gregtech/gt.blockores/4821.png deleted file mode 100644 index c0d6f8deb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4822.png b/front/public/images/large/gregtech/gt.blockores/4822.png deleted file mode 100644 index e2f62af3ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4823.png b/front/public/images/large/gregtech/gt.blockores/4823.png deleted file mode 100644 index 11e47025a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4824.png b/front/public/images/large/gregtech/gt.blockores/4824.png deleted file mode 100644 index a87c9f2c13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4825.png b/front/public/images/large/gregtech/gt.blockores/4825.png deleted file mode 100644 index a20864047e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4826.png b/front/public/images/large/gregtech/gt.blockores/4826.png deleted file mode 100644 index 4fa3906692..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4827.png b/front/public/images/large/gregtech/gt.blockores/4827.png deleted file mode 100644 index 0f049d2f8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4828.png b/front/public/images/large/gregtech/gt.blockores/4828.png deleted file mode 100644 index 855d072ddf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4829.png b/front/public/images/large/gregtech/gt.blockores/4829.png deleted file mode 100644 index 56d8f9a822..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4830.png b/front/public/images/large/gregtech/gt.blockores/4830.png deleted file mode 100644 index 43fa362ac7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4831.png b/front/public/images/large/gregtech/gt.blockores/4831.png deleted file mode 100644 index e2f62af3ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4833.png b/front/public/images/large/gregtech/gt.blockores/4833.png deleted file mode 100644 index 73586d916a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4834.png b/front/public/images/large/gregtech/gt.blockores/4834.png deleted file mode 100644 index 996c0bebec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4835.png b/front/public/images/large/gregtech/gt.blockores/4835.png deleted file mode 100644 index 95ae4aa56f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4836.png b/front/public/images/large/gregtech/gt.blockores/4836.png deleted file mode 100644 index 6ebae948de..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4838.png b/front/public/images/large/gregtech/gt.blockores/4838.png deleted file mode 100644 index 89a4631102..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4839.png b/front/public/images/large/gregtech/gt.blockores/4839.png deleted file mode 100644 index 1c13aa0733..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4840.png b/front/public/images/large/gregtech/gt.blockores/4840.png deleted file mode 100644 index 720aaf1913..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4841.png b/front/public/images/large/gregtech/gt.blockores/4841.png deleted file mode 100644 index c0ebedc104..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4842.png b/front/public/images/large/gregtech/gt.blockores/4842.png deleted file mode 100644 index 7eae079e58..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/485.png b/front/public/images/large/gregtech/gt.blockores/485.png deleted file mode 100644 index 33e8ba2de5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4855.png b/front/public/images/large/gregtech/gt.blockores/4855.png deleted file mode 100644 index fb5f5ef8fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4856.png b/front/public/images/large/gregtech/gt.blockores/4856.png deleted file mode 100644 index a890602181..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4861.png b/front/public/images/large/gregtech/gt.blockores/4861.png deleted file mode 100644 index 1c13aa0733..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4865.png b/front/public/images/large/gregtech/gt.blockores/4865.png deleted file mode 100644 index 084cfa7002..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4868.png b/front/public/images/large/gregtech/gt.blockores/4868.png deleted file mode 100644 index 39beaf017e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4870.png b/front/public/images/large/gregtech/gt.blockores/4870.png deleted file mode 100644 index 998f5f53f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4871.png b/front/public/images/large/gregtech/gt.blockores/4871.png deleted file mode 100644 index 57b4ce5401..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4873.png b/front/public/images/large/gregtech/gt.blockores/4873.png deleted file mode 100644 index 88946a5202..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4877.png b/front/public/images/large/gregtech/gt.blockores/4877.png deleted file mode 100644 index 21e0fa1753..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4878.png b/front/public/images/large/gregtech/gt.blockores/4878.png deleted file mode 100644 index 21deb9eebc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/488.png b/front/public/images/large/gregtech/gt.blockores/488.png deleted file mode 100644 index f883b3ab20..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4882.png b/front/public/images/large/gregtech/gt.blockores/4882.png deleted file mode 100644 index 3996515b34..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4883.png b/front/public/images/large/gregtech/gt.blockores/4883.png deleted file mode 100644 index 73586d916a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4884.png b/front/public/images/large/gregtech/gt.blockores/4884.png deleted file mode 100644 index 9e80c563fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/489.png b/front/public/images/large/gregtech/gt.blockores/489.png deleted file mode 100644 index 118a1f791c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4894.png b/front/public/images/large/gregtech/gt.blockores/4894.png deleted file mode 100644 index 16f6eba21d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4900.png b/front/public/images/large/gregtech/gt.blockores/4900.png deleted file mode 100644 index 2056e6ba44..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4901.png b/front/public/images/large/gregtech/gt.blockores/4901.png deleted file mode 100644 index 18a4ced593..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4902.png b/front/public/images/large/gregtech/gt.blockores/4902.png deleted file mode 100644 index a42f7ef43b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4903.png b/front/public/images/large/gregtech/gt.blockores/4903.png deleted file mode 100644 index fcdc4762df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4904.png b/front/public/images/large/gregtech/gt.blockores/4904.png deleted file mode 100644 index 7b20899d27..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4905.png b/front/public/images/large/gregtech/gt.blockores/4905.png deleted file mode 100644 index e182526f57..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4906.png b/front/public/images/large/gregtech/gt.blockores/4906.png deleted file mode 100644 index 72bd44dc97..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4907.png b/front/public/images/large/gregtech/gt.blockores/4907.png deleted file mode 100644 index 2fd31a4f98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4908.png b/front/public/images/large/gregtech/gt.blockores/4908.png deleted file mode 100644 index b8ccb96cc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4909.png b/front/public/images/large/gregtech/gt.blockores/4909.png deleted file mode 100644 index 8f6266c4b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4910.png b/front/public/images/large/gregtech/gt.blockores/4910.png deleted file mode 100644 index 12da188dae..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4911.png b/front/public/images/large/gregtech/gt.blockores/4911.png deleted file mode 100644 index e18cc04aee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4912.png b/front/public/images/large/gregtech/gt.blockores/4912.png deleted file mode 100644 index 10c2b826a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4913.png b/front/public/images/large/gregtech/gt.blockores/4913.png deleted file mode 100644 index c0e4a5592d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4914.png b/front/public/images/large/gregtech/gt.blockores/4914.png deleted file mode 100644 index 015cc3deea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4915.png b/front/public/images/large/gregtech/gt.blockores/4915.png deleted file mode 100644 index 34d90745f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4916.png b/front/public/images/large/gregtech/gt.blockores/4916.png deleted file mode 100644 index 38326e4ed6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4917.png b/front/public/images/large/gregtech/gt.blockores/4917.png deleted file mode 100644 index f84e3f60f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4918.png b/front/public/images/large/gregtech/gt.blockores/4918.png deleted file mode 100644 index 2ec28d4ce1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4919.png b/front/public/images/large/gregtech/gt.blockores/4919.png deleted file mode 100644 index 1338bf5442..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4920.png b/front/public/images/large/gregtech/gt.blockores/4920.png deleted file mode 100644 index 24bd894e73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4921.png b/front/public/images/large/gregtech/gt.blockores/4921.png deleted file mode 100644 index 596411e069..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4922.png b/front/public/images/large/gregtech/gt.blockores/4922.png deleted file mode 100644 index fc02b6d453..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4923.png b/front/public/images/large/gregtech/gt.blockores/4923.png deleted file mode 100644 index 94a4cd7c63..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4924.png b/front/public/images/large/gregtech/gt.blockores/4924.png deleted file mode 100644 index 3111e537f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4925.png b/front/public/images/large/gregtech/gt.blockores/4925.png deleted file mode 100644 index 27c94b5b97..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4926.png b/front/public/images/large/gregtech/gt.blockores/4926.png deleted file mode 100644 index eddfa33f06..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4927.png b/front/public/images/large/gregtech/gt.blockores/4927.png deleted file mode 100644 index dbbdb949b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4928.png b/front/public/images/large/gregtech/gt.blockores/4928.png deleted file mode 100644 index c29f73e05e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4929.png b/front/public/images/large/gregtech/gt.blockores/4929.png deleted file mode 100644 index 0a017cc85c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4930.png b/front/public/images/large/gregtech/gt.blockores/4930.png deleted file mode 100644 index e2f62af3ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4931.png b/front/public/images/large/gregtech/gt.blockores/4931.png deleted file mode 100644 index 71ae089bf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4932.png b/front/public/images/large/gregtech/gt.blockores/4932.png deleted file mode 100644 index b6a84c5b18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4933.png b/front/public/images/large/gregtech/gt.blockores/4933.png deleted file mode 100644 index 691d036e4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4934.png b/front/public/images/large/gregtech/gt.blockores/4934.png deleted file mode 100644 index 53823244da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4935.png b/front/public/images/large/gregtech/gt.blockores/4935.png deleted file mode 100644 index 5e418bd357..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4936.png b/front/public/images/large/gregtech/gt.blockores/4936.png deleted file mode 100644 index ffd010dd44..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4937.png b/front/public/images/large/gregtech/gt.blockores/4937.png deleted file mode 100644 index 7b32da1c51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4938.png b/front/public/images/large/gregtech/gt.blockores/4938.png deleted file mode 100644 index 7ba1d2467e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4939.png b/front/public/images/large/gregtech/gt.blockores/4939.png deleted file mode 100644 index 26b61eb7c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4941.png b/front/public/images/large/gregtech/gt.blockores/4941.png deleted file mode 100644 index b31ba0b896..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4942.png b/front/public/images/large/gregtech/gt.blockores/4942.png deleted file mode 100644 index 75483a7520..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4943.png b/front/public/images/large/gregtech/gt.blockores/4943.png deleted file mode 100644 index d3372e46c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4944.png b/front/public/images/large/gregtech/gt.blockores/4944.png deleted file mode 100644 index acd32b458e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4945.png b/front/public/images/large/gregtech/gt.blockores/4945.png deleted file mode 100644 index 67e2334eac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4946.png b/front/public/images/large/gregtech/gt.blockores/4946.png deleted file mode 100644 index 6853bc1642..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4948.png b/front/public/images/large/gregtech/gt.blockores/4948.png deleted file mode 100644 index 716daca96d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4949.png b/front/public/images/large/gregtech/gt.blockores/4949.png deleted file mode 100644 index 691d036e4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4951.png b/front/public/images/large/gregtech/gt.blockores/4951.png deleted file mode 100644 index cae968e98d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4952.png b/front/public/images/large/gregtech/gt.blockores/4952.png deleted file mode 100644 index d3656ed23c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4956.png b/front/public/images/large/gregtech/gt.blockores/4956.png deleted file mode 100644 index 737db17a00..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4966.png b/front/public/images/large/gregtech/gt.blockores/4966.png deleted file mode 100644 index 1212f0e552..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4969.png b/front/public/images/large/gregtech/gt.blockores/4969.png deleted file mode 100644 index 1c13aa0733..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4971.png b/front/public/images/large/gregtech/gt.blockores/4971.png deleted file mode 100644 index 6b4881d082..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4975.png b/front/public/images/large/gregtech/gt.blockores/4975.png deleted file mode 100644 index f2f7b38f93..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4976.png b/front/public/images/large/gregtech/gt.blockores/4976.png deleted file mode 100644 index 17fcc49ac3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4978.png b/front/public/images/large/gregtech/gt.blockores/4978.png deleted file mode 100644 index 46016801f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4982.png b/front/public/images/large/gregtech/gt.blockores/4982.png deleted file mode 100644 index de5b7278b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/4984.png b/front/public/images/large/gregtech/gt.blockores/4984.png deleted file mode 100644 index f2b38e7fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/4984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/500.png b/front/public/images/large/gregtech/gt.blockores/500.png deleted file mode 100644 index edc7f48f5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5006.png b/front/public/images/large/gregtech/gt.blockores/5006.png deleted file mode 100644 index e7163d104e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5008.png b/front/public/images/large/gregtech/gt.blockores/5008.png deleted file mode 100644 index 2da233baac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/501.png b/front/public/images/large/gregtech/gt.blockores/501.png deleted file mode 100644 index e0d86fb0e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5018.png b/front/public/images/large/gregtech/gt.blockores/5018.png deleted file mode 100644 index e2b9ea8a8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5019.png b/front/public/images/large/gregtech/gt.blockores/5019.png deleted file mode 100644 index 41c2de269a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/502.png b/front/public/images/large/gregtech/gt.blockores/502.png deleted file mode 100644 index 8f5d7d549f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5020.png b/front/public/images/large/gregtech/gt.blockores/5020.png deleted file mode 100644 index b51c2eb02c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5022.png b/front/public/images/large/gregtech/gt.blockores/5022.png deleted file mode 100644 index 3e41f029a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5027.png b/front/public/images/large/gregtech/gt.blockores/5027.png deleted file mode 100644 index 1dce0ee353..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5028.png b/front/public/images/large/gregtech/gt.blockores/5028.png deleted file mode 100644 index 2139d3ecfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5029.png b/front/public/images/large/gregtech/gt.blockores/5029.png deleted file mode 100644 index 8c441e1136..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/503.png b/front/public/images/large/gregtech/gt.blockores/503.png deleted file mode 100644 index 2351d8e6ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5030.png b/front/public/images/large/gregtech/gt.blockores/5030.png deleted file mode 100644 index bc28945a04..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5031.png b/front/public/images/large/gregtech/gt.blockores/5031.png deleted file mode 100644 index 79b9a4fac6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5032.png b/front/public/images/large/gregtech/gt.blockores/5032.png deleted file mode 100644 index 2ae1a79421..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5033.png b/front/public/images/large/gregtech/gt.blockores/5033.png deleted file mode 100644 index 523b418f92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5034.png b/front/public/images/large/gregtech/gt.blockores/5034.png deleted file mode 100644 index 310c8c03b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5035.png b/front/public/images/large/gregtech/gt.blockores/5035.png deleted file mode 100644 index d7db6eb114..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5036.png b/front/public/images/large/gregtech/gt.blockores/5036.png deleted file mode 100644 index adf81b590d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5037.png b/front/public/images/large/gregtech/gt.blockores/5037.png deleted file mode 100644 index e6a94012a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5039.png b/front/public/images/large/gregtech/gt.blockores/5039.png deleted file mode 100644 index 82ba6bf220..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/504.png b/front/public/images/large/gregtech/gt.blockores/504.png deleted file mode 100644 index 9e9356a499..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5043.png b/front/public/images/large/gregtech/gt.blockores/5043.png deleted file mode 100644 index 181481944e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5044.png b/front/public/images/large/gregtech/gt.blockores/5044.png deleted file mode 100644 index 2ae1a79421..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5045.png b/front/public/images/large/gregtech/gt.blockores/5045.png deleted file mode 100644 index 779468a96d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5047.png b/front/public/images/large/gregtech/gt.blockores/5047.png deleted file mode 100644 index 60cabb30f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5048.png b/front/public/images/large/gregtech/gt.blockores/5048.png deleted file mode 100644 index 0d4d2d7a3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/505.png b/front/public/images/large/gregtech/gt.blockores/505.png deleted file mode 100644 index 180ab93902..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5052.png b/front/public/images/large/gregtech/gt.blockores/5052.png deleted file mode 100644 index 944a7d4060..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5054.png b/front/public/images/large/gregtech/gt.blockores/5054.png deleted file mode 100644 index e6a94012a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5055.png b/front/public/images/large/gregtech/gt.blockores/5055.png deleted file mode 100644 index ebea216709..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5056.png b/front/public/images/large/gregtech/gt.blockores/5056.png deleted file mode 100644 index de72a8afc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5057.png b/front/public/images/large/gregtech/gt.blockores/5057.png deleted file mode 100644 index a039b686e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5058.png b/front/public/images/large/gregtech/gt.blockores/5058.png deleted file mode 100644 index 2e09da8a7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5059.png b/front/public/images/large/gregtech/gt.blockores/5059.png deleted file mode 100644 index c67499bd1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/506.png b/front/public/images/large/gregtech/gt.blockores/506.png deleted file mode 100644 index ee8c95bab9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5062.png b/front/public/images/large/gregtech/gt.blockores/5062.png deleted file mode 100644 index 4e50e7b723..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5063.png b/front/public/images/large/gregtech/gt.blockores/5063.png deleted file mode 100644 index 82ba6bf220..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5064.png b/front/public/images/large/gregtech/gt.blockores/5064.png deleted file mode 100644 index 38a1de1871..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5065.png b/front/public/images/large/gregtech/gt.blockores/5065.png deleted file mode 100644 index a3c5be92a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5066.png b/front/public/images/large/gregtech/gt.blockores/5066.png deleted file mode 100644 index 4d1162f136..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5067.png b/front/public/images/large/gregtech/gt.blockores/5067.png deleted file mode 100644 index 809205879a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5068.png b/front/public/images/large/gregtech/gt.blockores/5068.png deleted file mode 100644 index e0782c2860..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5069.png b/front/public/images/large/gregtech/gt.blockores/5069.png deleted file mode 100644 index c417d41464..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/507.png b/front/public/images/large/gregtech/gt.blockores/507.png deleted file mode 100644 index a244acb82e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5070.png b/front/public/images/large/gregtech/gt.blockores/5070.png deleted file mode 100644 index 8b83f6f21b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5071.png b/front/public/images/large/gregtech/gt.blockores/5071.png deleted file mode 100644 index e5c5ca4f2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5072.png b/front/public/images/large/gregtech/gt.blockores/5072.png deleted file mode 100644 index 82ba6bf220..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5073.png b/front/public/images/large/gregtech/gt.blockores/5073.png deleted file mode 100644 index 08335a1ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5074.png b/front/public/images/large/gregtech/gt.blockores/5074.png deleted file mode 100644 index 1e570facd0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5075.png b/front/public/images/large/gregtech/gt.blockores/5075.png deleted file mode 100644 index 5523d23958..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5076.png b/front/public/images/large/gregtech/gt.blockores/5076.png deleted file mode 100644 index d2a0026dfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5077.png b/front/public/images/large/gregtech/gt.blockores/5077.png deleted file mode 100644 index 0450a8e949..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5078.png b/front/public/images/large/gregtech/gt.blockores/5078.png deleted file mode 100644 index 7a063664a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/508.png b/front/public/images/large/gregtech/gt.blockores/508.png deleted file mode 100644 index 82121ceaf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5080.png b/front/public/images/large/gregtech/gt.blockores/5080.png deleted file mode 100644 index 78af0fd075..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5081.png b/front/public/images/large/gregtech/gt.blockores/5081.png deleted file mode 100644 index 8c441e1136..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5083.png b/front/public/images/large/gregtech/gt.blockores/5083.png deleted file mode 100644 index 5ed27892c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5084.png b/front/public/images/large/gregtech/gt.blockores/5084.png deleted file mode 100644 index b0924b7e3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5085.png b/front/public/images/large/gregtech/gt.blockores/5085.png deleted file mode 100644 index 436c02b969..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5086.png b/front/public/images/large/gregtech/gt.blockores/5086.png deleted file mode 100644 index 1408d21d00..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5089.png b/front/public/images/large/gregtech/gt.blockores/5089.png deleted file mode 100644 index 495f8969a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/509.png b/front/public/images/large/gregtech/gt.blockores/509.png deleted file mode 100644 index e5b54e7b58..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5090.png b/front/public/images/large/gregtech/gt.blockores/5090.png deleted file mode 100644 index 0e8be3b564..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5096.png b/front/public/images/large/gregtech/gt.blockores/5096.png deleted file mode 100644 index 740d9d9919..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5097.png b/front/public/images/large/gregtech/gt.blockores/5097.png deleted file mode 100644 index 041be936da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5098.png b/front/public/images/large/gregtech/gt.blockores/5098.png deleted file mode 100644 index 803d522aa2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/510.png b/front/public/images/large/gregtech/gt.blockores/510.png deleted file mode 100644 index e8b7ec0f4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5100.png b/front/public/images/large/gregtech/gt.blockores/5100.png deleted file mode 100644 index b11257658f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5101.png b/front/public/images/large/gregtech/gt.blockores/5101.png deleted file mode 100644 index 03ebe00738..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5103.png b/front/public/images/large/gregtech/gt.blockores/5103.png deleted file mode 100644 index 2ae1a79421..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/511.png b/front/public/images/large/gregtech/gt.blockores/511.png deleted file mode 100644 index 9167eefde5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5110.png b/front/public/images/large/gregtech/gt.blockores/5110.png deleted file mode 100644 index aeb5c782a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/512.png b/front/public/images/large/gregtech/gt.blockores/512.png deleted file mode 100644 index 8f5d7d549f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5129.png b/front/public/images/large/gregtech/gt.blockores/5129.png deleted file mode 100644 index 79b9a4fac6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/513.png b/front/public/images/large/gregtech/gt.blockores/513.png deleted file mode 100644 index e8b7ec0f4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/514.png b/front/public/images/large/gregtech/gt.blockores/514.png deleted file mode 100644 index a244acb82e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/515.png b/front/public/images/large/gregtech/gt.blockores/515.png deleted file mode 100644 index f1d316ac09..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/516.png b/front/public/images/large/gregtech/gt.blockores/516.png deleted file mode 100644 index 43841d034f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/517.png b/front/public/images/large/gregtech/gt.blockores/517.png deleted file mode 100644 index fd3b187051..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/518.png b/front/public/images/large/gregtech/gt.blockores/518.png deleted file mode 100644 index dae55bfa67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/519.png b/front/public/images/large/gregtech/gt.blockores/519.png deleted file mode 100644 index dae55bfa67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/52.png b/front/public/images/large/gregtech/gt.blockores/52.png deleted file mode 100644 index 11abae1147..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/52.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/520.png b/front/public/images/large/gregtech/gt.blockores/520.png deleted file mode 100644 index 4d30e1f18e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/521.png b/front/public/images/large/gregtech/gt.blockores/521.png deleted file mode 100644 index 34b73abca9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/522.png b/front/public/images/large/gregtech/gt.blockores/522.png deleted file mode 100644 index 7b3fb6cf18..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/523.png b/front/public/images/large/gregtech/gt.blockores/523.png deleted file mode 100644 index 4b31419b4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/524.png b/front/public/images/large/gregtech/gt.blockores/524.png deleted file mode 100644 index ff71213ef7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/525.png b/front/public/images/large/gregtech/gt.blockores/525.png deleted file mode 100644 index 833caa2a7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/526.png b/front/public/images/large/gregtech/gt.blockores/526.png deleted file mode 100644 index be52b6fe3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/527.png b/front/public/images/large/gregtech/gt.blockores/527.png deleted file mode 100644 index 9167eefde5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/528.png b/front/public/images/large/gregtech/gt.blockores/528.png deleted file mode 100644 index 63a1ef46fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/529.png b/front/public/images/large/gregtech/gt.blockores/529.png deleted file mode 100644 index 6db134c4a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/530.png b/front/public/images/large/gregtech/gt.blockores/530.png deleted file mode 100644 index 0fdc1ee349..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5303.png b/front/public/images/large/gregtech/gt.blockores/5303.png deleted file mode 100644 index 8f04f47526..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5307.png b/front/public/images/large/gregtech/gt.blockores/5307.png deleted file mode 100644 index 3e77f42b19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/531.png b/front/public/images/large/gregtech/gt.blockores/531.png deleted file mode 100644 index 921e90edd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5319.png b/front/public/images/large/gregtech/gt.blockores/5319.png deleted file mode 100644 index 0a435dab14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5320.png b/front/public/images/large/gregtech/gt.blockores/5320.png deleted file mode 100644 index 875f9c62af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5323.png b/front/public/images/large/gregtech/gt.blockores/5323.png deleted file mode 100644 index b7af963d67..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5324.png b/front/public/images/large/gregtech/gt.blockores/5324.png deleted file mode 100644 index 8c441e1136..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5326.png b/front/public/images/large/gregtech/gt.blockores/5326.png deleted file mode 100644 index ad9ec750c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5327.png b/front/public/images/large/gregtech/gt.blockores/5327.png deleted file mode 100644 index 04ee853ead..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5329.png b/front/public/images/large/gregtech/gt.blockores/5329.png deleted file mode 100644 index f22f85dfda..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5331.png b/front/public/images/large/gregtech/gt.blockores/5331.png deleted file mode 100644 index d8fead9731..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5336.png b/front/public/images/large/gregtech/gt.blockores/5336.png deleted file mode 100644 index 3c77b660a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/534.png b/front/public/images/large/gregtech/gt.blockores/534.png deleted file mode 100644 index bc4a02d411..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5340.png b/front/public/images/large/gregtech/gt.blockores/5340.png deleted file mode 100644 index 77d481f8f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5342.png b/front/public/images/large/gregtech/gt.blockores/5342.png deleted file mode 100644 index c759031f8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5347.png b/front/public/images/large/gregtech/gt.blockores/5347.png deleted file mode 100644 index ffbe78cec7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/535.png b/front/public/images/large/gregtech/gt.blockores/535.png deleted file mode 100644 index 7b27883d4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5368.png b/front/public/images/large/gregtech/gt.blockores/5368.png deleted file mode 100644 index 83a4b59927..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/537.png b/front/public/images/large/gregtech/gt.blockores/537.png deleted file mode 100644 index c735d5c293..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5375.png b/front/public/images/large/gregtech/gt.blockores/5375.png deleted file mode 100644 index 5c8faaf8bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/538.png b/front/public/images/large/gregtech/gt.blockores/538.png deleted file mode 100644 index 55a7ba543e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5382.png b/front/public/images/large/gregtech/gt.blockores/5382.png deleted file mode 100644 index 9e4e780d45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5386.png b/front/public/images/large/gregtech/gt.blockores/5386.png deleted file mode 100644 index c18fa2ad51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5387.png b/front/public/images/large/gregtech/gt.blockores/5387.png deleted file mode 100644 index b0c89bba08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5388.png b/front/public/images/large/gregtech/gt.blockores/5388.png deleted file mode 100644 index 8c441e1136..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5389.png b/front/public/images/large/gregtech/gt.blockores/5389.png deleted file mode 100644 index d7183d7b21..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5390.png b/front/public/images/large/gregtech/gt.blockores/5390.png deleted file mode 100644 index 5f348d864d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5391.png b/front/public/images/large/gregtech/gt.blockores/5391.png deleted file mode 100644 index 0662b9ae98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5392.png b/front/public/images/large/gregtech/gt.blockores/5392.png deleted file mode 100644 index 5dec999904..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5393.png b/front/public/images/large/gregtech/gt.blockores/5393.png deleted file mode 100644 index 900b51f19c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5394.png b/front/public/images/large/gregtech/gt.blockores/5394.png deleted file mode 100644 index 0a435dab14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5395.png b/front/public/images/large/gregtech/gt.blockores/5395.png deleted file mode 100644 index 8c441e1136..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5398.png b/front/public/images/large/gregtech/gt.blockores/5398.png deleted file mode 100644 index 3587e9cfd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/54.png b/front/public/images/large/gregtech/gt.blockores/54.png deleted file mode 100644 index 7a047f289a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/54.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/540.png b/front/public/images/large/gregtech/gt.blockores/540.png deleted file mode 100644 index 6aff59f410..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/541.png b/front/public/images/large/gregtech/gt.blockores/541.png deleted file mode 100644 index 2cdfa458a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/542.png b/front/public/images/large/gregtech/gt.blockores/542.png deleted file mode 100644 index 75daefb81e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/543.png b/front/public/images/large/gregtech/gt.blockores/543.png deleted file mode 100644 index 8912516b96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/544.png b/front/public/images/large/gregtech/gt.blockores/544.png deleted file mode 100644 index 51ec80490e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/545.png b/front/public/images/large/gregtech/gt.blockores/545.png deleted file mode 100644 index aa46c362fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/548.png b/front/public/images/large/gregtech/gt.blockores/548.png deleted file mode 100644 index 4925506843..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5485.png b/front/public/images/large/gregtech/gt.blockores/5485.png deleted file mode 100644 index 144ecb2bb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5488.png b/front/public/images/large/gregtech/gt.blockores/5488.png deleted file mode 100644 index 7bb163fa4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5489.png b/front/public/images/large/gregtech/gt.blockores/5489.png deleted file mode 100644 index 11349f4d74..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/549.png b/front/public/images/large/gregtech/gt.blockores/549.png deleted file mode 100644 index 438757ad7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/55.png b/front/public/images/large/gregtech/gt.blockores/55.png deleted file mode 100644 index a3a9d61a40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/55.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5500.png b/front/public/images/large/gregtech/gt.blockores/5500.png deleted file mode 100644 index 575d39b882..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5501.png b/front/public/images/large/gregtech/gt.blockores/5501.png deleted file mode 100644 index b4e6792434..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5502.png b/front/public/images/large/gregtech/gt.blockores/5502.png deleted file mode 100644 index 9203b547ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5503.png b/front/public/images/large/gregtech/gt.blockores/5503.png deleted file mode 100644 index 14ab0e55b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5504.png b/front/public/images/large/gregtech/gt.blockores/5504.png deleted file mode 100644 index 405c42b035..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5505.png b/front/public/images/large/gregtech/gt.blockores/5505.png deleted file mode 100644 index 04979248f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5506.png b/front/public/images/large/gregtech/gt.blockores/5506.png deleted file mode 100644 index 2dbd1f908e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5507.png b/front/public/images/large/gregtech/gt.blockores/5507.png deleted file mode 100644 index 6cb5673b06..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5508.png b/front/public/images/large/gregtech/gt.blockores/5508.png deleted file mode 100644 index b4fea9e4e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5509.png b/front/public/images/large/gregtech/gt.blockores/5509.png deleted file mode 100644 index d3f914f46e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5510.png b/front/public/images/large/gregtech/gt.blockores/5510.png deleted file mode 100644 index 93adb489ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5511.png b/front/public/images/large/gregtech/gt.blockores/5511.png deleted file mode 100644 index cf1ad54c91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5512.png b/front/public/images/large/gregtech/gt.blockores/5512.png deleted file mode 100644 index 9203b547ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5513.png b/front/public/images/large/gregtech/gt.blockores/5513.png deleted file mode 100644 index 93adb489ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5514.png b/front/public/images/large/gregtech/gt.blockores/5514.png deleted file mode 100644 index 6cb5673b06..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5515.png b/front/public/images/large/gregtech/gt.blockores/5515.png deleted file mode 100644 index dcb3c58799..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5516.png b/front/public/images/large/gregtech/gt.blockores/5516.png deleted file mode 100644 index 107e71b98f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5517.png b/front/public/images/large/gregtech/gt.blockores/5517.png deleted file mode 100644 index a0f4cc5a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5518.png b/front/public/images/large/gregtech/gt.blockores/5518.png deleted file mode 100644 index a6df731280..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5519.png b/front/public/images/large/gregtech/gt.blockores/5519.png deleted file mode 100644 index a6df731280..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5520.png b/front/public/images/large/gregtech/gt.blockores/5520.png deleted file mode 100644 index 929abac396..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5521.png b/front/public/images/large/gregtech/gt.blockores/5521.png deleted file mode 100644 index 749618133d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5522.png b/front/public/images/large/gregtech/gt.blockores/5522.png deleted file mode 100644 index 482166fbcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5523.png b/front/public/images/large/gregtech/gt.blockores/5523.png deleted file mode 100644 index 39a6b85994..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5524.png b/front/public/images/large/gregtech/gt.blockores/5524.png deleted file mode 100644 index 6e98dab56c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5525.png b/front/public/images/large/gregtech/gt.blockores/5525.png deleted file mode 100644 index 918cd613f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5526.png b/front/public/images/large/gregtech/gt.blockores/5526.png deleted file mode 100644 index 49210d36ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5527.png b/front/public/images/large/gregtech/gt.blockores/5527.png deleted file mode 100644 index cf1ad54c91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5528.png b/front/public/images/large/gregtech/gt.blockores/5528.png deleted file mode 100644 index 6e0b19c563..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5529.png b/front/public/images/large/gregtech/gt.blockores/5529.png deleted file mode 100644 index 263cd1334b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5530.png b/front/public/images/large/gregtech/gt.blockores/5530.png deleted file mode 100644 index e8c56b8c77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5531.png b/front/public/images/large/gregtech/gt.blockores/5531.png deleted file mode 100644 index b678e141ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5534.png b/front/public/images/large/gregtech/gt.blockores/5534.png deleted file mode 100644 index dc8f34e69b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5535.png b/front/public/images/large/gregtech/gt.blockores/5535.png deleted file mode 100644 index 01afd0993b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5537.png b/front/public/images/large/gregtech/gt.blockores/5537.png deleted file mode 100644 index 86757360a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5538.png b/front/public/images/large/gregtech/gt.blockores/5538.png deleted file mode 100644 index 3d53858b70..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5540.png b/front/public/images/large/gregtech/gt.blockores/5540.png deleted file mode 100644 index 789d6811da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5541.png b/front/public/images/large/gregtech/gt.blockores/5541.png deleted file mode 100644 index 3e078f1a9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5542.png b/front/public/images/large/gregtech/gt.blockores/5542.png deleted file mode 100644 index 4a28323bf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5543.png b/front/public/images/large/gregtech/gt.blockores/5543.png deleted file mode 100644 index cef75d3584..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5544.png b/front/public/images/large/gregtech/gt.blockores/5544.png deleted file mode 100644 index 6ddf36118a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5545.png b/front/public/images/large/gregtech/gt.blockores/5545.png deleted file mode 100644 index 69cc19ffc8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5548.png b/front/public/images/large/gregtech/gt.blockores/5548.png deleted file mode 100644 index deaa13c617..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5549.png b/front/public/images/large/gregtech/gt.blockores/5549.png deleted file mode 100644 index 27c22edd2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/56.png b/front/public/images/large/gregtech/gt.blockores/56.png deleted file mode 100644 index a6269313c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/56.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5607.png b/front/public/images/large/gregtech/gt.blockores/5607.png deleted file mode 100644 index 4603b5ea34..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5699.png b/front/public/images/large/gregtech/gt.blockores/5699.png deleted file mode 100644 index 337278806a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/57.png b/front/public/images/large/gregtech/gt.blockores/57.png deleted file mode 100644 index a91d238a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/57.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5770.png b/front/public/images/large/gregtech/gt.blockores/5770.png deleted file mode 100644 index 9c95b59175..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5797.png b/front/public/images/large/gregtech/gt.blockores/5797.png deleted file mode 100644 index a039b686e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/58.png b/front/public/images/large/gregtech/gt.blockores/58.png deleted file mode 100644 index 3adb6916ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/58.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5810.png b/front/public/images/large/gregtech/gt.blockores/5810.png deleted file mode 100644 index 1823a4fd12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5812.png b/front/public/images/large/gregtech/gt.blockores/5812.png deleted file mode 100644 index af8cea2190..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5817.png b/front/public/images/large/gregtech/gt.blockores/5817.png deleted file mode 100644 index 007cf001cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5820.png b/front/public/images/large/gregtech/gt.blockores/5820.png deleted file mode 100644 index 5c643fcb2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5821.png b/front/public/images/large/gregtech/gt.blockores/5821.png deleted file mode 100644 index f61a8d8203..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5822.png b/front/public/images/large/gregtech/gt.blockores/5822.png deleted file mode 100644 index 3c951e6f5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5823.png b/front/public/images/large/gregtech/gt.blockores/5823.png deleted file mode 100644 index 6e15cd689a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5824.png b/front/public/images/large/gregtech/gt.blockores/5824.png deleted file mode 100644 index a039b686e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5825.png b/front/public/images/large/gregtech/gt.blockores/5825.png deleted file mode 100644 index 006d880269..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5826.png b/front/public/images/large/gregtech/gt.blockores/5826.png deleted file mode 100644 index c7cc32b845..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5827.png b/front/public/images/large/gregtech/gt.blockores/5827.png deleted file mode 100644 index 523b418f92..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5828.png b/front/public/images/large/gregtech/gt.blockores/5828.png deleted file mode 100644 index e39162f796..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5829.png b/front/public/images/large/gregtech/gt.blockores/5829.png deleted file mode 100644 index 4a45b2d2ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5830.png b/front/public/images/large/gregtech/gt.blockores/5830.png deleted file mode 100644 index dde22827d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5831.png b/front/public/images/large/gregtech/gt.blockores/5831.png deleted file mode 100644 index 3c951e6f5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5833.png b/front/public/images/large/gregtech/gt.blockores/5833.png deleted file mode 100644 index 8c91394547..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5834.png b/front/public/images/large/gregtech/gt.blockores/5834.png deleted file mode 100644 index 22df8dedef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5835.png b/front/public/images/large/gregtech/gt.blockores/5835.png deleted file mode 100644 index 9653420660..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5836.png b/front/public/images/large/gregtech/gt.blockores/5836.png deleted file mode 100644 index 2e009705dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5838.png b/front/public/images/large/gregtech/gt.blockores/5838.png deleted file mode 100644 index f78fa4e7b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5839.png b/front/public/images/large/gregtech/gt.blockores/5839.png deleted file mode 100644 index 82ba6bf220..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5840.png b/front/public/images/large/gregtech/gt.blockores/5840.png deleted file mode 100644 index a3274754d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5841.png b/front/public/images/large/gregtech/gt.blockores/5841.png deleted file mode 100644 index f8e6c74a1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5842.png b/front/public/images/large/gregtech/gt.blockores/5842.png deleted file mode 100644 index 07c1c19f32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5855.png b/front/public/images/large/gregtech/gt.blockores/5855.png deleted file mode 100644 index 9645afb37f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5856.png b/front/public/images/large/gregtech/gt.blockores/5856.png deleted file mode 100644 index c88e203389..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5861.png b/front/public/images/large/gregtech/gt.blockores/5861.png deleted file mode 100644 index 82ba6bf220..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5865.png b/front/public/images/large/gregtech/gt.blockores/5865.png deleted file mode 100644 index 0a05ba358b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5868.png b/front/public/images/large/gregtech/gt.blockores/5868.png deleted file mode 100644 index 2031609ed6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5870.png b/front/public/images/large/gregtech/gt.blockores/5870.png deleted file mode 100644 index 7ba141c143..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5871.png b/front/public/images/large/gregtech/gt.blockores/5871.png deleted file mode 100644 index 1753bb8109..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5873.png b/front/public/images/large/gregtech/gt.blockores/5873.png deleted file mode 100644 index 0709b86bd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5877.png b/front/public/images/large/gregtech/gt.blockores/5877.png deleted file mode 100644 index a19df0af10..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5878.png b/front/public/images/large/gregtech/gt.blockores/5878.png deleted file mode 100644 index f8360205ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5882.png b/front/public/images/large/gregtech/gt.blockores/5882.png deleted file mode 100644 index 1cfe5453d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5883.png b/front/public/images/large/gregtech/gt.blockores/5883.png deleted file mode 100644 index 8c91394547..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5884.png b/front/public/images/large/gregtech/gt.blockores/5884.png deleted file mode 100644 index 0cc6cd3fcc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5894.png b/front/public/images/large/gregtech/gt.blockores/5894.png deleted file mode 100644 index 740401768c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/59.png b/front/public/images/large/gregtech/gt.blockores/59.png deleted file mode 100644 index 5522fa6c42..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/59.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5900.png b/front/public/images/large/gregtech/gt.blockores/5900.png deleted file mode 100644 index 189f044b55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5901.png b/front/public/images/large/gregtech/gt.blockores/5901.png deleted file mode 100644 index 4c1ccfbb09..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5902.png b/front/public/images/large/gregtech/gt.blockores/5902.png deleted file mode 100644 index ea6c602db8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5903.png b/front/public/images/large/gregtech/gt.blockores/5903.png deleted file mode 100644 index bd85607070..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5904.png b/front/public/images/large/gregtech/gt.blockores/5904.png deleted file mode 100644 index 86ac3c7b46..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5905.png b/front/public/images/large/gregtech/gt.blockores/5905.png deleted file mode 100644 index 8bbd7a100a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5906.png b/front/public/images/large/gregtech/gt.blockores/5906.png deleted file mode 100644 index 884870ce31..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5907.png b/front/public/images/large/gregtech/gt.blockores/5907.png deleted file mode 100644 index bdd9a0c388..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5908.png b/front/public/images/large/gregtech/gt.blockores/5908.png deleted file mode 100644 index 671d8c587f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5909.png b/front/public/images/large/gregtech/gt.blockores/5909.png deleted file mode 100644 index 5e7f43616f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5910.png b/front/public/images/large/gregtech/gt.blockores/5910.png deleted file mode 100644 index 1db58ea815..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5911.png b/front/public/images/large/gregtech/gt.blockores/5911.png deleted file mode 100644 index 777efa5279..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5912.png b/front/public/images/large/gregtech/gt.blockores/5912.png deleted file mode 100644 index 580b8d84aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5913.png b/front/public/images/large/gregtech/gt.blockores/5913.png deleted file mode 100644 index 342e968149..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5914.png b/front/public/images/large/gregtech/gt.blockores/5914.png deleted file mode 100644 index 7bc92073e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5915.png b/front/public/images/large/gregtech/gt.blockores/5915.png deleted file mode 100644 index 02c67fc1c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5916.png b/front/public/images/large/gregtech/gt.blockores/5916.png deleted file mode 100644 index 437623addd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5917.png b/front/public/images/large/gregtech/gt.blockores/5917.png deleted file mode 100644 index 295b20cd9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5918.png b/front/public/images/large/gregtech/gt.blockores/5918.png deleted file mode 100644 index ce22d60f8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5919.png b/front/public/images/large/gregtech/gt.blockores/5919.png deleted file mode 100644 index 838cf3ea0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5920.png b/front/public/images/large/gregtech/gt.blockores/5920.png deleted file mode 100644 index 4dbf8f8d8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5921.png b/front/public/images/large/gregtech/gt.blockores/5921.png deleted file mode 100644 index 704a00d9d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5922.png b/front/public/images/large/gregtech/gt.blockores/5922.png deleted file mode 100644 index a2ab310849..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5923.png b/front/public/images/large/gregtech/gt.blockores/5923.png deleted file mode 100644 index 01fc84cb85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5924.png b/front/public/images/large/gregtech/gt.blockores/5924.png deleted file mode 100644 index aeb1c1e8db..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5925.png b/front/public/images/large/gregtech/gt.blockores/5925.png deleted file mode 100644 index 0a39bc6247..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5926.png b/front/public/images/large/gregtech/gt.blockores/5926.png deleted file mode 100644 index e10086559e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5927.png b/front/public/images/large/gregtech/gt.blockores/5927.png deleted file mode 100644 index b641519532..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5928.png b/front/public/images/large/gregtech/gt.blockores/5928.png deleted file mode 100644 index 046657432e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5929.png b/front/public/images/large/gregtech/gt.blockores/5929.png deleted file mode 100644 index 3d1c6a18f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5930.png b/front/public/images/large/gregtech/gt.blockores/5930.png deleted file mode 100644 index 3c951e6f5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5931.png b/front/public/images/large/gregtech/gt.blockores/5931.png deleted file mode 100644 index 3e41f029a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5932.png b/front/public/images/large/gregtech/gt.blockores/5932.png deleted file mode 100644 index 3456f5befc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5933.png b/front/public/images/large/gregtech/gt.blockores/5933.png deleted file mode 100644 index b2df257a51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5934.png b/front/public/images/large/gregtech/gt.blockores/5934.png deleted file mode 100644 index 64aa72d6c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5935.png b/front/public/images/large/gregtech/gt.blockores/5935.png deleted file mode 100644 index a44eb64795..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5936.png b/front/public/images/large/gregtech/gt.blockores/5936.png deleted file mode 100644 index 52602ed1cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5937.png b/front/public/images/large/gregtech/gt.blockores/5937.png deleted file mode 100644 index 5efe3c7b0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5938.png b/front/public/images/large/gregtech/gt.blockores/5938.png deleted file mode 100644 index c64ccc12da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5939.png b/front/public/images/large/gregtech/gt.blockores/5939.png deleted file mode 100644 index 67ffee2de5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5941.png b/front/public/images/large/gregtech/gt.blockores/5941.png deleted file mode 100644 index 007cf001cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5942.png b/front/public/images/large/gregtech/gt.blockores/5942.png deleted file mode 100644 index e57f10eae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5943.png b/front/public/images/large/gregtech/gt.blockores/5943.png deleted file mode 100644 index 9df943e0fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5944.png b/front/public/images/large/gregtech/gt.blockores/5944.png deleted file mode 100644 index c8e83ba89d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5945.png b/front/public/images/large/gregtech/gt.blockores/5945.png deleted file mode 100644 index 01afd0993b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5946.png b/front/public/images/large/gregtech/gt.blockores/5946.png deleted file mode 100644 index 58129467b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5948.png b/front/public/images/large/gregtech/gt.blockores/5948.png deleted file mode 100644 index 5fecc85b2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5949.png b/front/public/images/large/gregtech/gt.blockores/5949.png deleted file mode 100644 index b2df257a51..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5951.png b/front/public/images/large/gregtech/gt.blockores/5951.png deleted file mode 100644 index b2e68a6ad9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5952.png b/front/public/images/large/gregtech/gt.blockores/5952.png deleted file mode 100644 index dd1286a488..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5956.png b/front/public/images/large/gregtech/gt.blockores/5956.png deleted file mode 100644 index 82d5612057..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5966.png b/front/public/images/large/gregtech/gt.blockores/5966.png deleted file mode 100644 index 2f06e64454..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5969.png b/front/public/images/large/gregtech/gt.blockores/5969.png deleted file mode 100644 index 82ba6bf220..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5971.png b/front/public/images/large/gregtech/gt.blockores/5971.png deleted file mode 100644 index 8bb7b3262a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5975.png b/front/public/images/large/gregtech/gt.blockores/5975.png deleted file mode 100644 index 850de50405..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5976.png b/front/public/images/large/gregtech/gt.blockores/5976.png deleted file mode 100644 index b0def771f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5978.png b/front/public/images/large/gregtech/gt.blockores/5978.png deleted file mode 100644 index b4616623d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5982.png b/front/public/images/large/gregtech/gt.blockores/5982.png deleted file mode 100644 index 3b708053e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/5984.png b/front/public/images/large/gregtech/gt.blockores/5984.png deleted file mode 100644 index 0a435dab14..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/5984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6.png b/front/public/images/large/gregtech/gt.blockores/6.png deleted file mode 100644 index 1ebf434a9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6006.png b/front/public/images/large/gregtech/gt.blockores/6006.png deleted file mode 100644 index 5f7f552c79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6008.png b/front/public/images/large/gregtech/gt.blockores/6008.png deleted file mode 100644 index 1bab506adf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6018.png b/front/public/images/large/gregtech/gt.blockores/6018.png deleted file mode 100644 index 848a816e9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6019.png b/front/public/images/large/gregtech/gt.blockores/6019.png deleted file mode 100644 index be9e20a56b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6020.png b/front/public/images/large/gregtech/gt.blockores/6020.png deleted file mode 100644 index a1f1f31a98..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6022.png b/front/public/images/large/gregtech/gt.blockores/6022.png deleted file mode 100644 index f31546b051..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6027.png b/front/public/images/large/gregtech/gt.blockores/6027.png deleted file mode 100644 index cd76cf2b75..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6028.png b/front/public/images/large/gregtech/gt.blockores/6028.png deleted file mode 100644 index c31888e53c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6029.png b/front/public/images/large/gregtech/gt.blockores/6029.png deleted file mode 100644 index 09c5b620e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6030.png b/front/public/images/large/gregtech/gt.blockores/6030.png deleted file mode 100644 index c1c0f662d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6031.png b/front/public/images/large/gregtech/gt.blockores/6031.png deleted file mode 100644 index 28a8681f77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6032.png b/front/public/images/large/gregtech/gt.blockores/6032.png deleted file mode 100644 index 85cd06ac3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6033.png b/front/public/images/large/gregtech/gt.blockores/6033.png deleted file mode 100644 index 26f56b28ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6034.png b/front/public/images/large/gregtech/gt.blockores/6034.png deleted file mode 100644 index e62aa09ecf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6035.png b/front/public/images/large/gregtech/gt.blockores/6035.png deleted file mode 100644 index 59269548c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6036.png b/front/public/images/large/gregtech/gt.blockores/6036.png deleted file mode 100644 index 6d9aea7e8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6037.png b/front/public/images/large/gregtech/gt.blockores/6037.png deleted file mode 100644 index 0b43dedced..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6039.png b/front/public/images/large/gregtech/gt.blockores/6039.png deleted file mode 100644 index 9acc539d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6043.png b/front/public/images/large/gregtech/gt.blockores/6043.png deleted file mode 100644 index 252b6b6ea2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6044.png b/front/public/images/large/gregtech/gt.blockores/6044.png deleted file mode 100644 index 85cd06ac3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6045.png b/front/public/images/large/gregtech/gt.blockores/6045.png deleted file mode 100644 index d1304d867c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6047.png b/front/public/images/large/gregtech/gt.blockores/6047.png deleted file mode 100644 index 976b54c4c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6048.png b/front/public/images/large/gregtech/gt.blockores/6048.png deleted file mode 100644 index a1ffd89f0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6052.png b/front/public/images/large/gregtech/gt.blockores/6052.png deleted file mode 100644 index 9d5bdb5edd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6054.png b/front/public/images/large/gregtech/gt.blockores/6054.png deleted file mode 100644 index 0b43dedced..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6055.png b/front/public/images/large/gregtech/gt.blockores/6055.png deleted file mode 100644 index cdfd655d0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6056.png b/front/public/images/large/gregtech/gt.blockores/6056.png deleted file mode 100644 index ac9432f875..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6057.png b/front/public/images/large/gregtech/gt.blockores/6057.png deleted file mode 100644 index 7fe47c910f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6058.png b/front/public/images/large/gregtech/gt.blockores/6058.png deleted file mode 100644 index bd1980398e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6059.png b/front/public/images/large/gregtech/gt.blockores/6059.png deleted file mode 100644 index 7e5dd537dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6062.png b/front/public/images/large/gregtech/gt.blockores/6062.png deleted file mode 100644 index 7c6671a842..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6063.png b/front/public/images/large/gregtech/gt.blockores/6063.png deleted file mode 100644 index 9acc539d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6064.png b/front/public/images/large/gregtech/gt.blockores/6064.png deleted file mode 100644 index c7450d5a5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6065.png b/front/public/images/large/gregtech/gt.blockores/6065.png deleted file mode 100644 index 294bd658a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6066.png b/front/public/images/large/gregtech/gt.blockores/6066.png deleted file mode 100644 index fed9cdfe4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6067.png b/front/public/images/large/gregtech/gt.blockores/6067.png deleted file mode 100644 index 17893a7431..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6068.png b/front/public/images/large/gregtech/gt.blockores/6068.png deleted file mode 100644 index 96ebed693e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6069.png b/front/public/images/large/gregtech/gt.blockores/6069.png deleted file mode 100644 index b962300b76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/607.png b/front/public/images/large/gregtech/gt.blockores/607.png deleted file mode 100644 index 8b6ab1dc19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6070.png b/front/public/images/large/gregtech/gt.blockores/6070.png deleted file mode 100644 index 66a356f085..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6071.png b/front/public/images/large/gregtech/gt.blockores/6071.png deleted file mode 100644 index 21e56eaec5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6072.png b/front/public/images/large/gregtech/gt.blockores/6072.png deleted file mode 100644 index 9acc539d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6073.png b/front/public/images/large/gregtech/gt.blockores/6073.png deleted file mode 100644 index c5e0b85aa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6074.png b/front/public/images/large/gregtech/gt.blockores/6074.png deleted file mode 100644 index e742a90efe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6075.png b/front/public/images/large/gregtech/gt.blockores/6075.png deleted file mode 100644 index 8b1c7635c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6076.png b/front/public/images/large/gregtech/gt.blockores/6076.png deleted file mode 100644 index fcbd1dfe0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6077.png b/front/public/images/large/gregtech/gt.blockores/6077.png deleted file mode 100644 index 65d0ff4d36..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6078.png b/front/public/images/large/gregtech/gt.blockores/6078.png deleted file mode 100644 index 9224fb7409..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6080.png b/front/public/images/large/gregtech/gt.blockores/6080.png deleted file mode 100644 index a66b622421..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6081.png b/front/public/images/large/gregtech/gt.blockores/6081.png deleted file mode 100644 index 09c5b620e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6083.png b/front/public/images/large/gregtech/gt.blockores/6083.png deleted file mode 100644 index 3886b359b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6084.png b/front/public/images/large/gregtech/gt.blockores/6084.png deleted file mode 100644 index b7604cb722..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6085.png b/front/public/images/large/gregtech/gt.blockores/6085.png deleted file mode 100644 index 84113bce25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6086.png b/front/public/images/large/gregtech/gt.blockores/6086.png deleted file mode 100644 index 6ef9afb301..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6089.png b/front/public/images/large/gregtech/gt.blockores/6089.png deleted file mode 100644 index 817575b7a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6090.png b/front/public/images/large/gregtech/gt.blockores/6090.png deleted file mode 100644 index abc2c6f3da..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6096.png b/front/public/images/large/gregtech/gt.blockores/6096.png deleted file mode 100644 index b3e6429563..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6097.png b/front/public/images/large/gregtech/gt.blockores/6097.png deleted file mode 100644 index 4f9ed5d5f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6098.png b/front/public/images/large/gregtech/gt.blockores/6098.png deleted file mode 100644 index e80a44e01b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6100.png b/front/public/images/large/gregtech/gt.blockores/6100.png deleted file mode 100644 index b79c4aaeaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6101.png b/front/public/images/large/gregtech/gt.blockores/6101.png deleted file mode 100644 index 31ae2ae135..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6103.png b/front/public/images/large/gregtech/gt.blockores/6103.png deleted file mode 100644 index 85cd06ac3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6110.png b/front/public/images/large/gregtech/gt.blockores/6110.png deleted file mode 100644 index 6a545f5287..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6129.png b/front/public/images/large/gregtech/gt.blockores/6129.png deleted file mode 100644 index 28a8681f77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/62.png b/front/public/images/large/gregtech/gt.blockores/62.png deleted file mode 100644 index 57c101da9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/62.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/63.png b/front/public/images/large/gregtech/gt.blockores/63.png deleted file mode 100644 index 6face00725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/63.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6303.png b/front/public/images/large/gregtech/gt.blockores/6303.png deleted file mode 100644 index 006c3ada77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6307.png b/front/public/images/large/gregtech/gt.blockores/6307.png deleted file mode 100644 index 6ee8540ad2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6319.png b/front/public/images/large/gregtech/gt.blockores/6319.png deleted file mode 100644 index cbd3086d1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6320.png b/front/public/images/large/gregtech/gt.blockores/6320.png deleted file mode 100644 index 2671752bfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6323.png b/front/public/images/large/gregtech/gt.blockores/6323.png deleted file mode 100644 index a6841ea53f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6324.png b/front/public/images/large/gregtech/gt.blockores/6324.png deleted file mode 100644 index 09c5b620e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6326.png b/front/public/images/large/gregtech/gt.blockores/6326.png deleted file mode 100644 index 740070b54b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6327.png b/front/public/images/large/gregtech/gt.blockores/6327.png deleted file mode 100644 index b40dc33c35..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6329.png b/front/public/images/large/gregtech/gt.blockores/6329.png deleted file mode 100644 index e3513b8eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6331.png b/front/public/images/large/gregtech/gt.blockores/6331.png deleted file mode 100644 index 36ca1f81c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6336.png b/front/public/images/large/gregtech/gt.blockores/6336.png deleted file mode 100644 index 88de1ddb2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6340.png b/front/public/images/large/gregtech/gt.blockores/6340.png deleted file mode 100644 index d21522592f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6342.png b/front/public/images/large/gregtech/gt.blockores/6342.png deleted file mode 100644 index e382f3608b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6347.png b/front/public/images/large/gregtech/gt.blockores/6347.png deleted file mode 100644 index a4c3e8142c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6368.png b/front/public/images/large/gregtech/gt.blockores/6368.png deleted file mode 100644 index a524a614cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6375.png b/front/public/images/large/gregtech/gt.blockores/6375.png deleted file mode 100644 index 538a0080d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6382.png b/front/public/images/large/gregtech/gt.blockores/6382.png deleted file mode 100644 index 3f810b474a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6386.png b/front/public/images/large/gregtech/gt.blockores/6386.png deleted file mode 100644 index 87873f81be..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6387.png b/front/public/images/large/gregtech/gt.blockores/6387.png deleted file mode 100644 index 616c7e4bb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6388.png b/front/public/images/large/gregtech/gt.blockores/6388.png deleted file mode 100644 index 09c5b620e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6389.png b/front/public/images/large/gregtech/gt.blockores/6389.png deleted file mode 100644 index 29e1c5ae45..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6390.png b/front/public/images/large/gregtech/gt.blockores/6390.png deleted file mode 100644 index 09d12efcfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6391.png b/front/public/images/large/gregtech/gt.blockores/6391.png deleted file mode 100644 index d8872f59f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6392.png b/front/public/images/large/gregtech/gt.blockores/6392.png deleted file mode 100644 index 8857d21049..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6393.png b/front/public/images/large/gregtech/gt.blockores/6393.png deleted file mode 100644 index b9acc61cb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6394.png b/front/public/images/large/gregtech/gt.blockores/6394.png deleted file mode 100644 index cbd3086d1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6395.png b/front/public/images/large/gregtech/gt.blockores/6395.png deleted file mode 100644 index 09c5b620e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6398.png b/front/public/images/large/gregtech/gt.blockores/6398.png deleted file mode 100644 index 089c65e0e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/64.png b/front/public/images/large/gregtech/gt.blockores/64.png deleted file mode 100644 index 8cb66c7eab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/64.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6485.png b/front/public/images/large/gregtech/gt.blockores/6485.png deleted file mode 100644 index a0123f9076..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6488.png b/front/public/images/large/gregtech/gt.blockores/6488.png deleted file mode 100644 index 08000ed1ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6489.png b/front/public/images/large/gregtech/gt.blockores/6489.png deleted file mode 100644 index a86b70c26f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/65.png b/front/public/images/large/gregtech/gt.blockores/65.png deleted file mode 100644 index 551a73d6e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/65.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6500.png b/front/public/images/large/gregtech/gt.blockores/6500.png deleted file mode 100644 index 2d14df4341..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6501.png b/front/public/images/large/gregtech/gt.blockores/6501.png deleted file mode 100644 index 478fa4d54b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6502.png b/front/public/images/large/gregtech/gt.blockores/6502.png deleted file mode 100644 index 09af7af9e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6503.png b/front/public/images/large/gregtech/gt.blockores/6503.png deleted file mode 100644 index c3c5d0ce2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6504.png b/front/public/images/large/gregtech/gt.blockores/6504.png deleted file mode 100644 index 2561f9cfd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6505.png b/front/public/images/large/gregtech/gt.blockores/6505.png deleted file mode 100644 index f569b496a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6506.png b/front/public/images/large/gregtech/gt.blockores/6506.png deleted file mode 100644 index 3fc608f303..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6507.png b/front/public/images/large/gregtech/gt.blockores/6507.png deleted file mode 100644 index a77b77637e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6508.png b/front/public/images/large/gregtech/gt.blockores/6508.png deleted file mode 100644 index 2c5e20d660..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6509.png b/front/public/images/large/gregtech/gt.blockores/6509.png deleted file mode 100644 index 56a50b1d99..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6510.png b/front/public/images/large/gregtech/gt.blockores/6510.png deleted file mode 100644 index 76b176394e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6511.png b/front/public/images/large/gregtech/gt.blockores/6511.png deleted file mode 100644 index e5a9275fc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6512.png b/front/public/images/large/gregtech/gt.blockores/6512.png deleted file mode 100644 index 09af7af9e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6513.png b/front/public/images/large/gregtech/gt.blockores/6513.png deleted file mode 100644 index 76b176394e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6514.png b/front/public/images/large/gregtech/gt.blockores/6514.png deleted file mode 100644 index a77b77637e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6515.png b/front/public/images/large/gregtech/gt.blockores/6515.png deleted file mode 100644 index a02baf7247..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6516.png b/front/public/images/large/gregtech/gt.blockores/6516.png deleted file mode 100644 index 047b35260b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6517.png b/front/public/images/large/gregtech/gt.blockores/6517.png deleted file mode 100644 index 42770b7d6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6518.png b/front/public/images/large/gregtech/gt.blockores/6518.png deleted file mode 100644 index 6804d5ac8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6519.png b/front/public/images/large/gregtech/gt.blockores/6519.png deleted file mode 100644 index 6804d5ac8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6520.png b/front/public/images/large/gregtech/gt.blockores/6520.png deleted file mode 100644 index 4e234fd915..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6521.png b/front/public/images/large/gregtech/gt.blockores/6521.png deleted file mode 100644 index c7c4413fd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6522.png b/front/public/images/large/gregtech/gt.blockores/6522.png deleted file mode 100644 index e610d75436..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6523.png b/front/public/images/large/gregtech/gt.blockores/6523.png deleted file mode 100644 index 179213f232..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6524.png b/front/public/images/large/gregtech/gt.blockores/6524.png deleted file mode 100644 index a692effee3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6525.png b/front/public/images/large/gregtech/gt.blockores/6525.png deleted file mode 100644 index fa73a10493..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6526.png b/front/public/images/large/gregtech/gt.blockores/6526.png deleted file mode 100644 index 220153ba8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6527.png b/front/public/images/large/gregtech/gt.blockores/6527.png deleted file mode 100644 index e5a9275fc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6528.png b/front/public/images/large/gregtech/gt.blockores/6528.png deleted file mode 100644 index 1317c2e150..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6529.png b/front/public/images/large/gregtech/gt.blockores/6529.png deleted file mode 100644 index 33ad7a8933..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6530.png b/front/public/images/large/gregtech/gt.blockores/6530.png deleted file mode 100644 index afe7ccc09a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6531.png b/front/public/images/large/gregtech/gt.blockores/6531.png deleted file mode 100644 index 0b5d502c24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6534.png b/front/public/images/large/gregtech/gt.blockores/6534.png deleted file mode 100644 index f1b0c4428f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6535.png b/front/public/images/large/gregtech/gt.blockores/6535.png deleted file mode 100644 index 481dd86e89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6537.png b/front/public/images/large/gregtech/gt.blockores/6537.png deleted file mode 100644 index 5e2e83abf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6538.png b/front/public/images/large/gregtech/gt.blockores/6538.png deleted file mode 100644 index c41845e273..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6540.png b/front/public/images/large/gregtech/gt.blockores/6540.png deleted file mode 100644 index 89643c9173..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6541.png b/front/public/images/large/gregtech/gt.blockores/6541.png deleted file mode 100644 index f81166bc2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6542.png b/front/public/images/large/gregtech/gt.blockores/6542.png deleted file mode 100644 index fec9c53b8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6543.png b/front/public/images/large/gregtech/gt.blockores/6543.png deleted file mode 100644 index 614eebf0d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6544.png b/front/public/images/large/gregtech/gt.blockores/6544.png deleted file mode 100644 index c4f135a829..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6545.png b/front/public/images/large/gregtech/gt.blockores/6545.png deleted file mode 100644 index 233e25125c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6548.png b/front/public/images/large/gregtech/gt.blockores/6548.png deleted file mode 100644 index a626ec3561..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6549.png b/front/public/images/large/gregtech/gt.blockores/6549.png deleted file mode 100644 index 7e50e8686c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/66.png b/front/public/images/large/gregtech/gt.blockores/66.png deleted file mode 100644 index 7b81504572..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/66.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6607.png b/front/public/images/large/gregtech/gt.blockores/6607.png deleted file mode 100644 index 2fdb696ef5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6699.png b/front/public/images/large/gregtech/gt.blockores/6699.png deleted file mode 100644 index 765b1f26bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/67.png b/front/public/images/large/gregtech/gt.blockores/67.png deleted file mode 100644 index 97d433a83b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/67.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6770.png b/front/public/images/large/gregtech/gt.blockores/6770.png deleted file mode 100644 index 0c778dbb5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6797.png b/front/public/images/large/gregtech/gt.blockores/6797.png deleted file mode 100644 index 7fe47c910f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/68.png b/front/public/images/large/gregtech/gt.blockores/68.png deleted file mode 100644 index 6f9865041f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/68.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6810.png b/front/public/images/large/gregtech/gt.blockores/6810.png deleted file mode 100644 index c3cf542663..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6812.png b/front/public/images/large/gregtech/gt.blockores/6812.png deleted file mode 100644 index fb09e8e69b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6817.png b/front/public/images/large/gregtech/gt.blockores/6817.png deleted file mode 100644 index 9a348a3cf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6820.png b/front/public/images/large/gregtech/gt.blockores/6820.png deleted file mode 100644 index d8bfe586e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6821.png b/front/public/images/large/gregtech/gt.blockores/6821.png deleted file mode 100644 index 1a50ff8a15..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6822.png b/front/public/images/large/gregtech/gt.blockores/6822.png deleted file mode 100644 index e2f85f9351..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6823.png b/front/public/images/large/gregtech/gt.blockores/6823.png deleted file mode 100644 index 9a37cd9481..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6824.png b/front/public/images/large/gregtech/gt.blockores/6824.png deleted file mode 100644 index 7fe47c910f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6825.png b/front/public/images/large/gregtech/gt.blockores/6825.png deleted file mode 100644 index b19ebe0436..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6826.png b/front/public/images/large/gregtech/gt.blockores/6826.png deleted file mode 100644 index 49d9db176e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6827.png b/front/public/images/large/gregtech/gt.blockores/6827.png deleted file mode 100644 index 26f56b28ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6828.png b/front/public/images/large/gregtech/gt.blockores/6828.png deleted file mode 100644 index c089990ee1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6829.png b/front/public/images/large/gregtech/gt.blockores/6829.png deleted file mode 100644 index 746137a9dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6830.png b/front/public/images/large/gregtech/gt.blockores/6830.png deleted file mode 100644 index 8e8517fcaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6831.png b/front/public/images/large/gregtech/gt.blockores/6831.png deleted file mode 100644 index e2f85f9351..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6833.png b/front/public/images/large/gregtech/gt.blockores/6833.png deleted file mode 100644 index e745a3b18f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6834.png b/front/public/images/large/gregtech/gt.blockores/6834.png deleted file mode 100644 index 633be6f3ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6835.png b/front/public/images/large/gregtech/gt.blockores/6835.png deleted file mode 100644 index 1f0fe9ae80..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6836.png b/front/public/images/large/gregtech/gt.blockores/6836.png deleted file mode 100644 index 8e7b003108..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6838.png b/front/public/images/large/gregtech/gt.blockores/6838.png deleted file mode 100644 index 256c269014..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6839.png b/front/public/images/large/gregtech/gt.blockores/6839.png deleted file mode 100644 index 9acc539d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6840.png b/front/public/images/large/gregtech/gt.blockores/6840.png deleted file mode 100644 index e8aadd93c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6841.png b/front/public/images/large/gregtech/gt.blockores/6841.png deleted file mode 100644 index 40090eb8f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6842.png b/front/public/images/large/gregtech/gt.blockores/6842.png deleted file mode 100644 index 98b878c407..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6855.png b/front/public/images/large/gregtech/gt.blockores/6855.png deleted file mode 100644 index 99ba226f32..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6856.png b/front/public/images/large/gregtech/gt.blockores/6856.png deleted file mode 100644 index 5b90495f25..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6861.png b/front/public/images/large/gregtech/gt.blockores/6861.png deleted file mode 100644 index 9acc539d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6865.png b/front/public/images/large/gregtech/gt.blockores/6865.png deleted file mode 100644 index 624df1169e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6868.png b/front/public/images/large/gregtech/gt.blockores/6868.png deleted file mode 100644 index ae74d9beb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6870.png b/front/public/images/large/gregtech/gt.blockores/6870.png deleted file mode 100644 index 0e64b0add1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6871.png b/front/public/images/large/gregtech/gt.blockores/6871.png deleted file mode 100644 index 43b2e498e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6873.png b/front/public/images/large/gregtech/gt.blockores/6873.png deleted file mode 100644 index 2123199d8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6877.png b/front/public/images/large/gregtech/gt.blockores/6877.png deleted file mode 100644 index b30e9cf7af..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6878.png b/front/public/images/large/gregtech/gt.blockores/6878.png deleted file mode 100644 index 7b1829d9cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6882.png b/front/public/images/large/gregtech/gt.blockores/6882.png deleted file mode 100644 index f0c7cd3939..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6883.png b/front/public/images/large/gregtech/gt.blockores/6883.png deleted file mode 100644 index e745a3b18f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6884.png b/front/public/images/large/gregtech/gt.blockores/6884.png deleted file mode 100644 index 0733236bde..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6894.png b/front/public/images/large/gregtech/gt.blockores/6894.png deleted file mode 100644 index e7eb70fa50..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/69.png b/front/public/images/large/gregtech/gt.blockores/69.png deleted file mode 100644 index f883d3c3aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/69.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6900.png b/front/public/images/large/gregtech/gt.blockores/6900.png deleted file mode 100644 index 749212ed96..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6901.png b/front/public/images/large/gregtech/gt.blockores/6901.png deleted file mode 100644 index 1d114955d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6902.png b/front/public/images/large/gregtech/gt.blockores/6902.png deleted file mode 100644 index d19b0b0309..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6903.png b/front/public/images/large/gregtech/gt.blockores/6903.png deleted file mode 100644 index e8c43afd9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6904.png b/front/public/images/large/gregtech/gt.blockores/6904.png deleted file mode 100644 index 0b47720416..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6905.png b/front/public/images/large/gregtech/gt.blockores/6905.png deleted file mode 100644 index ff2438cfe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6906.png b/front/public/images/large/gregtech/gt.blockores/6906.png deleted file mode 100644 index 7ccec98426..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6907.png b/front/public/images/large/gregtech/gt.blockores/6907.png deleted file mode 100644 index 5120a99b3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6908.png b/front/public/images/large/gregtech/gt.blockores/6908.png deleted file mode 100644 index f952a4b13b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6909.png b/front/public/images/large/gregtech/gt.blockores/6909.png deleted file mode 100644 index 389c737a2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6910.png b/front/public/images/large/gregtech/gt.blockores/6910.png deleted file mode 100644 index a8d63050d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6911.png b/front/public/images/large/gregtech/gt.blockores/6911.png deleted file mode 100644 index 87e3dfac19..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6912.png b/front/public/images/large/gregtech/gt.blockores/6912.png deleted file mode 100644 index 9649f77c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6913.png b/front/public/images/large/gregtech/gt.blockores/6913.png deleted file mode 100644 index 7a2a7b1118..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6914.png b/front/public/images/large/gregtech/gt.blockores/6914.png deleted file mode 100644 index 11265b15c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6915.png b/front/public/images/large/gregtech/gt.blockores/6915.png deleted file mode 100644 index 1ed33cf06e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6916.png b/front/public/images/large/gregtech/gt.blockores/6916.png deleted file mode 100644 index f362e3c009..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6917.png b/front/public/images/large/gregtech/gt.blockores/6917.png deleted file mode 100644 index a63b729646..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6918.png b/front/public/images/large/gregtech/gt.blockores/6918.png deleted file mode 100644 index 792de4c492..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6919.png b/front/public/images/large/gregtech/gt.blockores/6919.png deleted file mode 100644 index 552e301f81..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6920.png b/front/public/images/large/gregtech/gt.blockores/6920.png deleted file mode 100644 index d144a73292..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6921.png b/front/public/images/large/gregtech/gt.blockores/6921.png deleted file mode 100644 index d4beb36950..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6922.png b/front/public/images/large/gregtech/gt.blockores/6922.png deleted file mode 100644 index 740fac987f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6923.png b/front/public/images/large/gregtech/gt.blockores/6923.png deleted file mode 100644 index aa0cf524e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6924.png b/front/public/images/large/gregtech/gt.blockores/6924.png deleted file mode 100644 index 9cdf4f73cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6925.png b/front/public/images/large/gregtech/gt.blockores/6925.png deleted file mode 100644 index d3b0da7996..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6926.png b/front/public/images/large/gregtech/gt.blockores/6926.png deleted file mode 100644 index 494ebf17e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6927.png b/front/public/images/large/gregtech/gt.blockores/6927.png deleted file mode 100644 index c90c114de1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6928.png b/front/public/images/large/gregtech/gt.blockores/6928.png deleted file mode 100644 index 92da304034..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6929.png b/front/public/images/large/gregtech/gt.blockores/6929.png deleted file mode 100644 index fca6d6b1a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6930.png b/front/public/images/large/gregtech/gt.blockores/6930.png deleted file mode 100644 index e2f85f9351..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6931.png b/front/public/images/large/gregtech/gt.blockores/6931.png deleted file mode 100644 index f31546b051..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6932.png b/front/public/images/large/gregtech/gt.blockores/6932.png deleted file mode 100644 index f871daa818..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6933.png b/front/public/images/large/gregtech/gt.blockores/6933.png deleted file mode 100644 index 4a1f97a9cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6934.png b/front/public/images/large/gregtech/gt.blockores/6934.png deleted file mode 100644 index 709ce5eb90..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6935.png b/front/public/images/large/gregtech/gt.blockores/6935.png deleted file mode 100644 index 643bb250d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6936.png b/front/public/images/large/gregtech/gt.blockores/6936.png deleted file mode 100644 index df1cc5eeca..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6937.png b/front/public/images/large/gregtech/gt.blockores/6937.png deleted file mode 100644 index 41ea976498..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6938.png b/front/public/images/large/gregtech/gt.blockores/6938.png deleted file mode 100644 index 2cb7fa66c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6939.png b/front/public/images/large/gregtech/gt.blockores/6939.png deleted file mode 100644 index ee50707b76..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6941.png b/front/public/images/large/gregtech/gt.blockores/6941.png deleted file mode 100644 index 9a348a3cf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6942.png b/front/public/images/large/gregtech/gt.blockores/6942.png deleted file mode 100644 index 1b17045d26..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6943.png b/front/public/images/large/gregtech/gt.blockores/6943.png deleted file mode 100644 index 30baa17ec0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6944.png b/front/public/images/large/gregtech/gt.blockores/6944.png deleted file mode 100644 index 8ff2435a8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6945.png b/front/public/images/large/gregtech/gt.blockores/6945.png deleted file mode 100644 index 481dd86e89..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6946.png b/front/public/images/large/gregtech/gt.blockores/6946.png deleted file mode 100644 index 6220878e24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6948.png b/front/public/images/large/gregtech/gt.blockores/6948.png deleted file mode 100644 index 23c609df5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6949.png b/front/public/images/large/gregtech/gt.blockores/6949.png deleted file mode 100644 index 4a1f97a9cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6951.png b/front/public/images/large/gregtech/gt.blockores/6951.png deleted file mode 100644 index 68ac7cdce0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6952.png b/front/public/images/large/gregtech/gt.blockores/6952.png deleted file mode 100644 index 6509041a10..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6956.png b/front/public/images/large/gregtech/gt.blockores/6956.png deleted file mode 100644 index d5a3c1ef38..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6966.png b/front/public/images/large/gregtech/gt.blockores/6966.png deleted file mode 100644 index 88ca94c627..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6969.png b/front/public/images/large/gregtech/gt.blockores/6969.png deleted file mode 100644 index 9acc539d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6971.png b/front/public/images/large/gregtech/gt.blockores/6971.png deleted file mode 100644 index b4a3a45df3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6975.png b/front/public/images/large/gregtech/gt.blockores/6975.png deleted file mode 100644 index 69ffb5daa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6976.png b/front/public/images/large/gregtech/gt.blockores/6976.png deleted file mode 100644 index 0d4fffcc71..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6978.png b/front/public/images/large/gregtech/gt.blockores/6978.png deleted file mode 100644 index 4fa077ba2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6982.png b/front/public/images/large/gregtech/gt.blockores/6982.png deleted file mode 100644 index f62fc9d9ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/6984.png b/front/public/images/large/gregtech/gt.blockores/6984.png deleted file mode 100644 index cbd3086d1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/6984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/699.png b/front/public/images/large/gregtech/gt.blockores/699.png deleted file mode 100644 index 53ac4505ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/70.png b/front/public/images/large/gregtech/gt.blockores/70.png deleted file mode 100644 index 7a69c0b51a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/70.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/71.png b/front/public/images/large/gregtech/gt.blockores/71.png deleted file mode 100644 index 8033c060e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/71.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/72.png b/front/public/images/large/gregtech/gt.blockores/72.png deleted file mode 100644 index 6face00725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/72.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/73.png b/front/public/images/large/gregtech/gt.blockores/73.png deleted file mode 100644 index ca2cb3eb08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/73.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/74.png b/front/public/images/large/gregtech/gt.blockores/74.png deleted file mode 100644 index 0275d85ba9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/74.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/75.png b/front/public/images/large/gregtech/gt.blockores/75.png deleted file mode 100644 index c9e5a48cf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/75.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/76.png b/front/public/images/large/gregtech/gt.blockores/76.png deleted file mode 100644 index 7359f118a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/76.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/77.png b/front/public/images/large/gregtech/gt.blockores/77.png deleted file mode 100644 index cd3f77462c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/77.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/770.png b/front/public/images/large/gregtech/gt.blockores/770.png deleted file mode 100644 index c86c0127df..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/78.png b/front/public/images/large/gregtech/gt.blockores/78.png deleted file mode 100644 index e2a37a85bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/78.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/797.png b/front/public/images/large/gregtech/gt.blockores/797.png deleted file mode 100644 index a91d238a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/8.png b/front/public/images/large/gregtech/gt.blockores/8.png deleted file mode 100644 index e75591b484..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/80.png b/front/public/images/large/gregtech/gt.blockores/80.png deleted file mode 100644 index 651a32d5aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/80.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/81.png b/front/public/images/large/gregtech/gt.blockores/81.png deleted file mode 100644 index f6f1bd920a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/81.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/810.png b/front/public/images/large/gregtech/gt.blockores/810.png deleted file mode 100644 index 5af7c2254b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/812.png b/front/public/images/large/gregtech/gt.blockores/812.png deleted file mode 100644 index 79d1420c62..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/817.png b/front/public/images/large/gregtech/gt.blockores/817.png deleted file mode 100644 index 54fa75b588..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/820.png b/front/public/images/large/gregtech/gt.blockores/820.png deleted file mode 100644 index f9899e141c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/821.png b/front/public/images/large/gregtech/gt.blockores/821.png deleted file mode 100644 index 9d8cd8debd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/822.png b/front/public/images/large/gregtech/gt.blockores/822.png deleted file mode 100644 index de5d516bdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/823.png b/front/public/images/large/gregtech/gt.blockores/823.png deleted file mode 100644 index b4c57d27bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/824.png b/front/public/images/large/gregtech/gt.blockores/824.png deleted file mode 100644 index a91d238a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/825.png b/front/public/images/large/gregtech/gt.blockores/825.png deleted file mode 100644 index 3db7bd034c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/826.png b/front/public/images/large/gregtech/gt.blockores/826.png deleted file mode 100644 index 68c240161c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/827.png b/front/public/images/large/gregtech/gt.blockores/827.png deleted file mode 100644 index c792800b68..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/828.png b/front/public/images/large/gregtech/gt.blockores/828.png deleted file mode 100644 index 44e23287dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/829.png b/front/public/images/large/gregtech/gt.blockores/829.png deleted file mode 100644 index dcae73e7bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/83.png b/front/public/images/large/gregtech/gt.blockores/83.png deleted file mode 100644 index 464f3296a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/83.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/830.png b/front/public/images/large/gregtech/gt.blockores/830.png deleted file mode 100644 index 1112c7da20..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/831.png b/front/public/images/large/gregtech/gt.blockores/831.png deleted file mode 100644 index de5d516bdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/833.png b/front/public/images/large/gregtech/gt.blockores/833.png deleted file mode 100644 index 82af38b34b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/834.png b/front/public/images/large/gregtech/gt.blockores/834.png deleted file mode 100644 index eea3a0ca40..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/835.png b/front/public/images/large/gregtech/gt.blockores/835.png deleted file mode 100644 index b8bd1395a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/836.png b/front/public/images/large/gregtech/gt.blockores/836.png deleted file mode 100644 index 706752aec1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/838.png b/front/public/images/large/gregtech/gt.blockores/838.png deleted file mode 100644 index df2f11c876..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/839.png b/front/public/images/large/gregtech/gt.blockores/839.png deleted file mode 100644 index 6face00725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/84.png b/front/public/images/large/gregtech/gt.blockores/84.png deleted file mode 100644 index af1dc59480..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/84.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/840.png b/front/public/images/large/gregtech/gt.blockores/840.png deleted file mode 100644 index 6397eb0a13..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/841.png b/front/public/images/large/gregtech/gt.blockores/841.png deleted file mode 100644 index 06e29f2678..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/842.png b/front/public/images/large/gregtech/gt.blockores/842.png deleted file mode 100644 index f7f2b3e751..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/85.png b/front/public/images/large/gregtech/gt.blockores/85.png deleted file mode 100644 index 548863c2a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/85.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/855.png b/front/public/images/large/gregtech/gt.blockores/855.png deleted file mode 100644 index 16720b199c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/856.png b/front/public/images/large/gregtech/gt.blockores/856.png deleted file mode 100644 index 1c9eb945a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/86.png b/front/public/images/large/gregtech/gt.blockores/86.png deleted file mode 100644 index 5d502db018..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/86.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/861.png b/front/public/images/large/gregtech/gt.blockores/861.png deleted file mode 100644 index 6face00725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/865.png b/front/public/images/large/gregtech/gt.blockores/865.png deleted file mode 100644 index d54bda6bf1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/868.png b/front/public/images/large/gregtech/gt.blockores/868.png deleted file mode 100644 index 601d47d526..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/870.png b/front/public/images/large/gregtech/gt.blockores/870.png deleted file mode 100644 index 1c6e7bbd9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/871.png b/front/public/images/large/gregtech/gt.blockores/871.png deleted file mode 100644 index 46682387e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/873.png b/front/public/images/large/gregtech/gt.blockores/873.png deleted file mode 100644 index ecb8ed2683..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/877.png b/front/public/images/large/gregtech/gt.blockores/877.png deleted file mode 100644 index 975a98b47d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/878.png b/front/public/images/large/gregtech/gt.blockores/878.png deleted file mode 100644 index d11ff5432b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/882.png b/front/public/images/large/gregtech/gt.blockores/882.png deleted file mode 100644 index 45550205bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/883.png b/front/public/images/large/gregtech/gt.blockores/883.png deleted file mode 100644 index 82af38b34b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/884.png b/front/public/images/large/gregtech/gt.blockores/884.png deleted file mode 100644 index 0b3fb0337a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/89.png b/front/public/images/large/gregtech/gt.blockores/89.png deleted file mode 100644 index 550157dd79..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/89.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/894.png b/front/public/images/large/gregtech/gt.blockores/894.png deleted file mode 100644 index 42c4c5b478..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/90.png b/front/public/images/large/gregtech/gt.blockores/90.png deleted file mode 100644 index 5d54145479..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/90.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/900.png b/front/public/images/large/gregtech/gt.blockores/900.png deleted file mode 100644 index 993f819c55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/901.png b/front/public/images/large/gregtech/gt.blockores/901.png deleted file mode 100644 index 87b88adee3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/902.png b/front/public/images/large/gregtech/gt.blockores/902.png deleted file mode 100644 index 2b6b0c18ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/903.png b/front/public/images/large/gregtech/gt.blockores/903.png deleted file mode 100644 index dbe4a03ad0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/904.png b/front/public/images/large/gregtech/gt.blockores/904.png deleted file mode 100644 index 0a9df30a12..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/905.png b/front/public/images/large/gregtech/gt.blockores/905.png deleted file mode 100644 index 02535a41c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/906.png b/front/public/images/large/gregtech/gt.blockores/906.png deleted file mode 100644 index c6eed1030e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/907.png b/front/public/images/large/gregtech/gt.blockores/907.png deleted file mode 100644 index ee6bbfbe24..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/908.png b/front/public/images/large/gregtech/gt.blockores/908.png deleted file mode 100644 index b6e9c44279..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/909.png b/front/public/images/large/gregtech/gt.blockores/909.png deleted file mode 100644 index 6d919f59e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/910.png b/front/public/images/large/gregtech/gt.blockores/910.png deleted file mode 100644 index 8ffec7b62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/911.png b/front/public/images/large/gregtech/gt.blockores/911.png deleted file mode 100644 index 1dca5afbda..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/912.png b/front/public/images/large/gregtech/gt.blockores/912.png deleted file mode 100644 index 99bd0a2778..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/913.png b/front/public/images/large/gregtech/gt.blockores/913.png deleted file mode 100644 index c0fede2d85..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/914.png b/front/public/images/large/gregtech/gt.blockores/914.png deleted file mode 100644 index a5c6fc98ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/915.png b/front/public/images/large/gregtech/gt.blockores/915.png deleted file mode 100644 index 67472ad34a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/916.png b/front/public/images/large/gregtech/gt.blockores/916.png deleted file mode 100644 index ccfae9fe4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/917.png b/front/public/images/large/gregtech/gt.blockores/917.png deleted file mode 100644 index 177de58fc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/918.png b/front/public/images/large/gregtech/gt.blockores/918.png deleted file mode 100644 index 867ef718b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/919.png b/front/public/images/large/gregtech/gt.blockores/919.png deleted file mode 100644 index 70f50ae75c..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/920.png b/front/public/images/large/gregtech/gt.blockores/920.png deleted file mode 100644 index dab7f2f6c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/921.png b/front/public/images/large/gregtech/gt.blockores/921.png deleted file mode 100644 index 9b74c73ebf..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/922.png b/front/public/images/large/gregtech/gt.blockores/922.png deleted file mode 100644 index 9823f98723..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/923.png b/front/public/images/large/gregtech/gt.blockores/923.png deleted file mode 100644 index a99d066803..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/924.png b/front/public/images/large/gregtech/gt.blockores/924.png deleted file mode 100644 index 2f892f6fc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/925.png b/front/public/images/large/gregtech/gt.blockores/925.png deleted file mode 100644 index 7767f77feb..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/926.png b/front/public/images/large/gregtech/gt.blockores/926.png deleted file mode 100644 index b4df24024b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/927.png b/front/public/images/large/gregtech/gt.blockores/927.png deleted file mode 100644 index a6b41fc318..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/928.png b/front/public/images/large/gregtech/gt.blockores/928.png deleted file mode 100644 index ac517786a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/929.png b/front/public/images/large/gregtech/gt.blockores/929.png deleted file mode 100644 index 7a6a6180c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/930.png b/front/public/images/large/gregtech/gt.blockores/930.png deleted file mode 100644 index de5d516bdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/931.png b/front/public/images/large/gregtech/gt.blockores/931.png deleted file mode 100644 index 6cb2dcd41e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/932.png b/front/public/images/large/gregtech/gt.blockores/932.png deleted file mode 100644 index a8a712bffd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/933.png b/front/public/images/large/gregtech/gt.blockores/933.png deleted file mode 100644 index ea19b2d442..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/934.png b/front/public/images/large/gregtech/gt.blockores/934.png deleted file mode 100644 index b8e43e1f11..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/935.png b/front/public/images/large/gregtech/gt.blockores/935.png deleted file mode 100644 index db7b373ce9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/936.png b/front/public/images/large/gregtech/gt.blockores/936.png deleted file mode 100644 index 173cf32e0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/937.png b/front/public/images/large/gregtech/gt.blockores/937.png deleted file mode 100644 index 367f259233..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/938.png b/front/public/images/large/gregtech/gt.blockores/938.png deleted file mode 100644 index 98ecbe001e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/939.png b/front/public/images/large/gregtech/gt.blockores/939.png deleted file mode 100644 index 962d5074b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/941.png b/front/public/images/large/gregtech/gt.blockores/941.png deleted file mode 100644 index 54fa75b588..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/942.png b/front/public/images/large/gregtech/gt.blockores/942.png deleted file mode 100644 index e31d73db97..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/943.png b/front/public/images/large/gregtech/gt.blockores/943.png deleted file mode 100644 index 8fac872371..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/944.png b/front/public/images/large/gregtech/gt.blockores/944.png deleted file mode 100644 index d18fd9bf5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/945.png b/front/public/images/large/gregtech/gt.blockores/945.png deleted file mode 100644 index 7b27883d4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/946.png b/front/public/images/large/gregtech/gt.blockores/946.png deleted file mode 100644 index e9a598ef30..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/948.png b/front/public/images/large/gregtech/gt.blockores/948.png deleted file mode 100644 index 3344b443dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/949.png b/front/public/images/large/gregtech/gt.blockores/949.png deleted file mode 100644 index ea19b2d442..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/951.png b/front/public/images/large/gregtech/gt.blockores/951.png deleted file mode 100644 index 66e1baab62..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/952.png b/front/public/images/large/gregtech/gt.blockores/952.png deleted file mode 100644 index 3bef61a80b..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/956.png b/front/public/images/large/gregtech/gt.blockores/956.png deleted file mode 100644 index bdb5310e84..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/96.png b/front/public/images/large/gregtech/gt.blockores/96.png deleted file mode 100644 index c2d4051933..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/96.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/966.png b/front/public/images/large/gregtech/gt.blockores/966.png deleted file mode 100644 index 2161fab530..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/969.png b/front/public/images/large/gregtech/gt.blockores/969.png deleted file mode 100644 index 6face00725..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/97.png b/front/public/images/large/gregtech/gt.blockores/97.png deleted file mode 100644 index f312345b08..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/97.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/971.png b/front/public/images/large/gregtech/gt.blockores/971.png deleted file mode 100644 index cf7430a315..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/975.png b/front/public/images/large/gregtech/gt.blockores/975.png deleted file mode 100644 index 31d8f66302..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/976.png b/front/public/images/large/gregtech/gt.blockores/976.png deleted file mode 100644 index e7d8da0936..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/978.png b/front/public/images/large/gregtech/gt.blockores/978.png deleted file mode 100644 index fb477b2ef4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/98.png b/front/public/images/large/gregtech/gt.blockores/98.png deleted file mode 100644 index 909874e78a..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/98.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/982.png b/front/public/images/large/gregtech/gt.blockores/982.png deleted file mode 100644 index 91a746b48d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockores/984.png b/front/public/images/large/gregtech/gt.blockores/984.png deleted file mode 100644 index 08ca838f86..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockores/984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/0.png b/front/public/images/large/gregtech/gt.blockreinforced/0.png deleted file mode 100644 index 043ae87e73..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/1.png b/front/public/images/large/gregtech/gt.blockreinforced/1.png deleted file mode 100644 index 9f47d048e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/10.png b/front/public/images/large/gregtech/gt.blockreinforced/10.png deleted file mode 100644 index 4d20509ca8..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/11.png b/front/public/images/large/gregtech/gt.blockreinforced/11.png deleted file mode 100644 index 5c61c55a6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/12.png b/front/public/images/large/gregtech/gt.blockreinforced/12.png deleted file mode 100644 index f31ad1c91e..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/2.png b/front/public/images/large/gregtech/gt.blockreinforced/2.png deleted file mode 100644 index 1c94b727d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/3.png b/front/public/images/large/gregtech/gt.blockreinforced/3.png deleted file mode 100644 index 8c79bdd7c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/4.png b/front/public/images/large/gregtech/gt.blockreinforced/4.png deleted file mode 100644 index 2b2330fcfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/5.png b/front/public/images/large/gregtech/gt.blockreinforced/5.png deleted file mode 100644 index fb98053025..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/6.png b/front/public/images/large/gregtech/gt.blockreinforced/6.png deleted file mode 100644 index 2b2330fcfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/7.png b/front/public/images/large/gregtech/gt.blockreinforced/7.png deleted file mode 100644 index 2b2330fcfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/8.png b/front/public/images/large/gregtech/gt.blockreinforced/8.png deleted file mode 100644 index 5eca0373e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockreinforced/9.png b/front/public/images/large/gregtech/gt.blockreinforced/9.png deleted file mode 100644 index 1afc34846f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockreinforced/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/0.png b/front/public/images/large/gregtech/gt.blockstones/0.png deleted file mode 100644 index 7f365ad8e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/1.png b/front/public/images/large/gregtech/gt.blockstones/1.png deleted file mode 100644 index 6b44a59a84..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/10.png b/front/public/images/large/gregtech/gt.blockstones/10.png deleted file mode 100644 index b25c218893..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/11.png b/front/public/images/large/gregtech/gt.blockstones/11.png deleted file mode 100644 index dfeffb25ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/12.png b/front/public/images/large/gregtech/gt.blockstones/12.png deleted file mode 100644 index 196faeef83..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/13.png b/front/public/images/large/gregtech/gt.blockstones/13.png deleted file mode 100644 index 0185845f3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/14.png b/front/public/images/large/gregtech/gt.blockstones/14.png deleted file mode 100644 index 3a08603f55..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/15.png b/front/public/images/large/gregtech/gt.blockstones/15.png deleted file mode 100644 index 7a71daa931..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/2.png b/front/public/images/large/gregtech/gt.blockstones/2.png deleted file mode 100644 index 41c6bf4808..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/3.png b/front/public/images/large/gregtech/gt.blockstones/3.png deleted file mode 100644 index 5c7e708b77..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/4.png b/front/public/images/large/gregtech/gt.blockstones/4.png deleted file mode 100644 index fb4f5ba085..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/5.png b/front/public/images/large/gregtech/gt.blockstones/5.png deleted file mode 100644 index c7448fc830..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/6.png b/front/public/images/large/gregtech/gt.blockstones/6.png deleted file mode 100644 index 3eb7acd6ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/7.png b/front/public/images/large/gregtech/gt.blockstones/7.png deleted file mode 100644 index 25f5296011..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/7.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/8.png b/front/public/images/large/gregtech/gt.blockstones/8.png deleted file mode 100644 index 91462d5d9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.blockstones/9.png b/front/public/images/large/gregtech/gt.blockstones/9.png deleted file mode 100644 index b3395adac4..0000000000 Binary files a/front/public/images/large/gregtech/gt.blockstones/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/0.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/0.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/10.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/10.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/100.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/100.png deleted file mode 100644 index e3f5ba50e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/102.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/102.png deleted file mode 100644 index d7821ad09b..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/104.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/104.png deleted file mode 100644 index 0af7701a66..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/106.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/106.png deleted file mode 100644 index 95ce2d978c..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/12.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/12.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/14.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/14.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/16.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/16.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/16.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/18.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/18.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/18.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/2.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/2.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/4.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/4.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/6.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/6.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.detrav.metatool.01/8.png b/front/public/images/large/gregtech/gt.detrav.metatool.01/8.png deleted file mode 100644 index 7e9eede718..0000000000 Binary files a/front/public/images/large/gregtech/gt.detrav.metatool.01/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.glowstoneCell/0.png b/front/public/images/large/gregtech/gt.glowstoneCell/0.png deleted file mode 100644 index 769ace2d76..0000000000 Binary files a/front/public/images/large/gregtech/gt.glowstoneCell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.integrated_circuit/0.png b/front/public/images/large/gregtech/gt.integrated_circuit/0.png deleted file mode 100644 index 1e977f5881..0000000000 Binary files a/front/public/images/large/gregtech/gt.integrated_circuit/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11006.png b/front/public/images/large/gregtech/gt.metaitem.01/11006.png deleted file mode 100644 index 4b7e4ec297..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11008.png b/front/public/images/large/gregtech/gt.metaitem.01/11008.png deleted file mode 100644 index 6f8afd1412..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11010.png b/front/public/images/large/gregtech/gt.metaitem.01/11010.png deleted file mode 100644 index 56d75b30d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11018.png b/front/public/images/large/gregtech/gt.metaitem.01/11018.png deleted file mode 100644 index 7e2477abf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11019.png b/front/public/images/large/gregtech/gt.metaitem.01/11019.png deleted file mode 100644 index b07687b72a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11020.png b/front/public/images/large/gregtech/gt.metaitem.01/11020.png deleted file mode 100644 index 0beb75590c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11025.png b/front/public/images/large/gregtech/gt.metaitem.01/11025.png deleted file mode 100644 index 8fc403a56e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11027.png b/front/public/images/large/gregtech/gt.metaitem.01/11027.png deleted file mode 100644 index a5f94d1db8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11028.png b/front/public/images/large/gregtech/gt.metaitem.01/11028.png deleted file mode 100644 index ec90e73340..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11029.png b/front/public/images/large/gregtech/gt.metaitem.01/11029.png deleted file mode 100644 index 5bd6a79de6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11030.png b/front/public/images/large/gregtech/gt.metaitem.01/11030.png deleted file mode 100644 index ce5b4377d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11031.png b/front/public/images/large/gregtech/gt.metaitem.01/11031.png deleted file mode 100644 index 8c77959741..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11033.png b/front/public/images/large/gregtech/gt.metaitem.01/11033.png deleted file mode 100644 index e6c84ebb60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11034.png b/front/public/images/large/gregtech/gt.metaitem.01/11034.png deleted file mode 100644 index 681cc289a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11035.png b/front/public/images/large/gregtech/gt.metaitem.01/11035.png deleted file mode 100644 index e7b8ac8682..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11036.png b/front/public/images/large/gregtech/gt.metaitem.01/11036.png deleted file mode 100644 index 469859c82d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11037.png b/front/public/images/large/gregtech/gt.metaitem.01/11037.png deleted file mode 100644 index 442ab0c8ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11039.png b/front/public/images/large/gregtech/gt.metaitem.01/11039.png deleted file mode 100644 index 0e6d7e3d31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11043.png b/front/public/images/large/gregtech/gt.metaitem.01/11043.png deleted file mode 100644 index 08e3a136c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11045.png b/front/public/images/large/gregtech/gt.metaitem.01/11045.png deleted file mode 100644 index 02bbf9b869..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11047.png b/front/public/images/large/gregtech/gt.metaitem.01/11047.png deleted file mode 100644 index 41b4c67efc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11048.png b/front/public/images/large/gregtech/gt.metaitem.01/11048.png deleted file mode 100644 index 2b4d34c6cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11052.png b/front/public/images/large/gregtech/gt.metaitem.01/11052.png deleted file mode 100644 index 30223bd42a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11054.png b/front/public/images/large/gregtech/gt.metaitem.01/11054.png deleted file mode 100644 index 442ab0c8ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11056.png b/front/public/images/large/gregtech/gt.metaitem.01/11056.png deleted file mode 100644 index 5619c5b6ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11057.png b/front/public/images/large/gregtech/gt.metaitem.01/11057.png deleted file mode 100644 index 762e09cccd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11058.png b/front/public/images/large/gregtech/gt.metaitem.01/11058.png deleted file mode 100644 index 62d0794ed7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11059.png b/front/public/images/large/gregtech/gt.metaitem.01/11059.png deleted file mode 100644 index ff4db3d131..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11062.png b/front/public/images/large/gregtech/gt.metaitem.01/11062.png deleted file mode 100644 index 7d6c40e669..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11063.png b/front/public/images/large/gregtech/gt.metaitem.01/11063.png deleted file mode 100644 index b3657f0381..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11064.png b/front/public/images/large/gregtech/gt.metaitem.01/11064.png deleted file mode 100644 index 32a5315a6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11065.png b/front/public/images/large/gregtech/gt.metaitem.01/11065.png deleted file mode 100644 index e91210f086..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11066.png b/front/public/images/large/gregtech/gt.metaitem.01/11066.png deleted file mode 100644 index bb6949851d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11067.png b/front/public/images/large/gregtech/gt.metaitem.01/11067.png deleted file mode 100644 index 168e20d721..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11068.png b/front/public/images/large/gregtech/gt.metaitem.01/11068.png deleted file mode 100644 index d810c8d6ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11069.png b/front/public/images/large/gregtech/gt.metaitem.01/11069.png deleted file mode 100644 index 95b204457a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11070.png b/front/public/images/large/gregtech/gt.metaitem.01/11070.png deleted file mode 100644 index 329b30fc46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11071.png b/front/public/images/large/gregtech/gt.metaitem.01/11071.png deleted file mode 100644 index 5c9e18935a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11072.png b/front/public/images/large/gregtech/gt.metaitem.01/11072.png deleted file mode 100644 index b3657f0381..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11073.png b/front/public/images/large/gregtech/gt.metaitem.01/11073.png deleted file mode 100644 index 4dfa9c551d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11074.png b/front/public/images/large/gregtech/gt.metaitem.01/11074.png deleted file mode 100644 index 7eabf82702..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11075.png b/front/public/images/large/gregtech/gt.metaitem.01/11075.png deleted file mode 100644 index 9f4800370c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11076.png b/front/public/images/large/gregtech/gt.metaitem.01/11076.png deleted file mode 100644 index e1038132b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11077.png b/front/public/images/large/gregtech/gt.metaitem.01/11077.png deleted file mode 100644 index acae0c855e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11078.png b/front/public/images/large/gregtech/gt.metaitem.01/11078.png deleted file mode 100644 index 1dad1d8d0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11080.png b/front/public/images/large/gregtech/gt.metaitem.01/11080.png deleted file mode 100644 index 3454ae6a77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11081.png b/front/public/images/large/gregtech/gt.metaitem.01/11081.png deleted file mode 100644 index 5bd6a79de6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11083.png b/front/public/images/large/gregtech/gt.metaitem.01/11083.png deleted file mode 100644 index 9f4adf4c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11084.png b/front/public/images/large/gregtech/gt.metaitem.01/11084.png deleted file mode 100644 index 4a00952519..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11085.png b/front/public/images/large/gregtech/gt.metaitem.01/11085.png deleted file mode 100644 index 09d91a37ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11089.png b/front/public/images/large/gregtech/gt.metaitem.01/11089.png deleted file mode 100644 index 81540eace2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11090.png b/front/public/images/large/gregtech/gt.metaitem.01/11090.png deleted file mode 100644 index fc2fd296ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11096.png b/front/public/images/large/gregtech/gt.metaitem.01/11096.png deleted file mode 100644 index 6ddfa4365c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11097.png b/front/public/images/large/gregtech/gt.metaitem.01/11097.png deleted file mode 100644 index cdd9b1fd97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11098.png b/front/public/images/large/gregtech/gt.metaitem.01/11098.png deleted file mode 100644 index c2b54d2fb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11100.png b/front/public/images/large/gregtech/gt.metaitem.01/11100.png deleted file mode 100644 index 73efa2d94e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11101.png b/front/public/images/large/gregtech/gt.metaitem.01/11101.png deleted file mode 100644 index fc44c14bb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11103.png b/front/public/images/large/gregtech/gt.metaitem.01/11103.png deleted file mode 100644 index c8e6d82337..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11111.png b/front/public/images/large/gregtech/gt.metaitem.01/11111.png deleted file mode 100644 index 829856456a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11112.png b/front/public/images/large/gregtech/gt.metaitem.01/11112.png deleted file mode 100644 index eaaff50d1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11129.png b/front/public/images/large/gregtech/gt.metaitem.01/11129.png deleted file mode 100644 index 8c77959741..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11131.png b/front/public/images/large/gregtech/gt.metaitem.01/11131.png deleted file mode 100644 index 1bec1c1c56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11134.png b/front/public/images/large/gregtech/gt.metaitem.01/11134.png deleted file mode 100644 index cf42a50b1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11139.png b/front/public/images/large/gregtech/gt.metaitem.01/11139.png deleted file mode 100644 index 8d570ec9d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11141.png b/front/public/images/large/gregtech/gt.metaitem.01/11141.png deleted file mode 100644 index a9a9a5b341..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11143.png b/front/public/images/large/gregtech/gt.metaitem.01/11143.png deleted file mode 100644 index 66838b0d7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11300.png b/front/public/images/large/gregtech/gt.metaitem.01/11300.png deleted file mode 100644 index 672be49f8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11301.png b/front/public/images/large/gregtech/gt.metaitem.01/11301.png deleted file mode 100644 index 5159ad67db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11302.png b/front/public/images/large/gregtech/gt.metaitem.01/11302.png deleted file mode 100644 index 4234a265dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11303.png b/front/public/images/large/gregtech/gt.metaitem.01/11303.png deleted file mode 100644 index e234f95c9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11304.png b/front/public/images/large/gregtech/gt.metaitem.01/11304.png deleted file mode 100644 index 9beed35b9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11305.png b/front/public/images/large/gregtech/gt.metaitem.01/11305.png deleted file mode 100644 index c35e9271fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11306.png b/front/public/images/large/gregtech/gt.metaitem.01/11306.png deleted file mode 100644 index 986e4b596b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11307.png b/front/public/images/large/gregtech/gt.metaitem.01/11307.png deleted file mode 100644 index 9beed35b9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11308.png b/front/public/images/large/gregtech/gt.metaitem.01/11308.png deleted file mode 100644 index 75b8198574..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11309.png b/front/public/images/large/gregtech/gt.metaitem.01/11309.png deleted file mode 100644 index 9deddc25cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11310.png b/front/public/images/large/gregtech/gt.metaitem.01/11310.png deleted file mode 100644 index d8647cb046..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11311.png b/front/public/images/large/gregtech/gt.metaitem.01/11311.png deleted file mode 100644 index 497ebd04bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11312.png b/front/public/images/large/gregtech/gt.metaitem.01/11312.png deleted file mode 100644 index d01af9005b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11313.png b/front/public/images/large/gregtech/gt.metaitem.01/11313.png deleted file mode 100644 index 97be430839..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11314.png b/front/public/images/large/gregtech/gt.metaitem.01/11314.png deleted file mode 100644 index e9f706e172..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11315.png b/front/public/images/large/gregtech/gt.metaitem.01/11315.png deleted file mode 100644 index 182d49e64d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11316.png b/front/public/images/large/gregtech/gt.metaitem.01/11316.png deleted file mode 100644 index 1d0ccd1c16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11317.png b/front/public/images/large/gregtech/gt.metaitem.01/11317.png deleted file mode 100644 index 90a3d379a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11318.png b/front/public/images/large/gregtech/gt.metaitem.01/11318.png deleted file mode 100644 index 0826a49f6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11319.png b/front/public/images/large/gregtech/gt.metaitem.01/11319.png deleted file mode 100644 index d4dd4f120e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11320.png b/front/public/images/large/gregtech/gt.metaitem.01/11320.png deleted file mode 100644 index b517d1950e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11321.png b/front/public/images/large/gregtech/gt.metaitem.01/11321.png deleted file mode 100644 index 24def13793..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11323.png b/front/public/images/large/gregtech/gt.metaitem.01/11323.png deleted file mode 100644 index 2398de322e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11324.png b/front/public/images/large/gregtech/gt.metaitem.01/11324.png deleted file mode 100644 index 5bd6a79de6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11325.png b/front/public/images/large/gregtech/gt.metaitem.01/11325.png deleted file mode 100644 index c0752c59c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11326.png b/front/public/images/large/gregtech/gt.metaitem.01/11326.png deleted file mode 100644 index 9ec7d4735a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11327.png b/front/public/images/large/gregtech/gt.metaitem.01/11327.png deleted file mode 100644 index 9b4f8d30be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11328.png b/front/public/images/large/gregtech/gt.metaitem.01/11328.png deleted file mode 100644 index b3657f0381..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11329.png b/front/public/images/large/gregtech/gt.metaitem.01/11329.png deleted file mode 100644 index b8799b3d7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11330.png b/front/public/images/large/gregtech/gt.metaitem.01/11330.png deleted file mode 100644 index 4df41bb8c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11331.png b/front/public/images/large/gregtech/gt.metaitem.01/11331.png deleted file mode 100644 index 2d9d7acb9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11333.png b/front/public/images/large/gregtech/gt.metaitem.01/11333.png deleted file mode 100644 index 58bd2dae52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11334.png b/front/public/images/large/gregtech/gt.metaitem.01/11334.png deleted file mode 100644 index 168e20d721..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11335.png b/front/public/images/large/gregtech/gt.metaitem.01/11335.png deleted file mode 100644 index 41157c06b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11336.png b/front/public/images/large/gregtech/gt.metaitem.01/11336.png deleted file mode 100644 index e72b75e802..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11337.png b/front/public/images/large/gregtech/gt.metaitem.01/11337.png deleted file mode 100644 index 24dfe2dbcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11338.png b/front/public/images/large/gregtech/gt.metaitem.01/11338.png deleted file mode 100644 index 5885f0c522..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11339.png b/front/public/images/large/gregtech/gt.metaitem.01/11339.png deleted file mode 100644 index de2de1d4dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11340.png b/front/public/images/large/gregtech/gt.metaitem.01/11340.png deleted file mode 100644 index 00dddf57d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11341.png b/front/public/images/large/gregtech/gt.metaitem.01/11341.png deleted file mode 100644 index 1a042f5c12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11342.png b/front/public/images/large/gregtech/gt.metaitem.01/11342.png deleted file mode 100644 index b3781e0f8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11343.png b/front/public/images/large/gregtech/gt.metaitem.01/11343.png deleted file mode 100644 index c7711c5fed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11344.png b/front/public/images/large/gregtech/gt.metaitem.01/11344.png deleted file mode 100644 index 89428a5589..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11345.png b/front/public/images/large/gregtech/gt.metaitem.01/11345.png deleted file mode 100644 index 609e542b8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11346.png b/front/public/images/large/gregtech/gt.metaitem.01/11346.png deleted file mode 100644 index 82a0196886..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11348.png b/front/public/images/large/gregtech/gt.metaitem.01/11348.png deleted file mode 100644 index eae928d9cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11349.png b/front/public/images/large/gregtech/gt.metaitem.01/11349.png deleted file mode 100644 index 343dc764e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11350.png b/front/public/images/large/gregtech/gt.metaitem.01/11350.png deleted file mode 100644 index 89de69ab81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11351.png b/front/public/images/large/gregtech/gt.metaitem.01/11351.png deleted file mode 100644 index 3b9e2c0639..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11352.png b/front/public/images/large/gregtech/gt.metaitem.01/11352.png deleted file mode 100644 index 7e0f3b43ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11353.png b/front/public/images/large/gregtech/gt.metaitem.01/11353.png deleted file mode 100644 index e7f8c8fe6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11354.png b/front/public/images/large/gregtech/gt.metaitem.01/11354.png deleted file mode 100644 index 9c12fc5195..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11355.png b/front/public/images/large/gregtech/gt.metaitem.01/11355.png deleted file mode 100644 index e9278fb6ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11356.png b/front/public/images/large/gregtech/gt.metaitem.01/11356.png deleted file mode 100644 index cdbc9b0071..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11357.png b/front/public/images/large/gregtech/gt.metaitem.01/11357.png deleted file mode 100644 index f383e84e36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11358.png b/front/public/images/large/gregtech/gt.metaitem.01/11358.png deleted file mode 100644 index 0ecf26e6d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11359.png b/front/public/images/large/gregtech/gt.metaitem.01/11359.png deleted file mode 100644 index ae67383fbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11360.png b/front/public/images/large/gregtech/gt.metaitem.01/11360.png deleted file mode 100644 index 338b329e9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11361.png b/front/public/images/large/gregtech/gt.metaitem.01/11361.png deleted file mode 100644 index 1497b9abdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11362.png b/front/public/images/large/gregtech/gt.metaitem.01/11362.png deleted file mode 100644 index 031f2fe078..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11363.png b/front/public/images/large/gregtech/gt.metaitem.01/11363.png deleted file mode 100644 index c8e6d82337..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11364.png b/front/public/images/large/gregtech/gt.metaitem.01/11364.png deleted file mode 100644 index efaa649d23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11365.png b/front/public/images/large/gregtech/gt.metaitem.01/11365.png deleted file mode 100644 index 5838f38293..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11366.png b/front/public/images/large/gregtech/gt.metaitem.01/11366.png deleted file mode 100644 index 39dfd14340..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11367.png b/front/public/images/large/gregtech/gt.metaitem.01/11367.png deleted file mode 100644 index 8cf4e65d83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11368.png b/front/public/images/large/gregtech/gt.metaitem.01/11368.png deleted file mode 100644 index 678d475847..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11369.png b/front/public/images/large/gregtech/gt.metaitem.01/11369.png deleted file mode 100644 index 10da2b3455..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11370.png b/front/public/images/large/gregtech/gt.metaitem.01/11370.png deleted file mode 100644 index 2f4b9fe512..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11371.png b/front/public/images/large/gregtech/gt.metaitem.01/11371.png deleted file mode 100644 index eed050dc08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11372.png b/front/public/images/large/gregtech/gt.metaitem.01/11372.png deleted file mode 100644 index 6bd433f1d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11373.png b/front/public/images/large/gregtech/gt.metaitem.01/11373.png deleted file mode 100644 index 9e94dfdd8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11374.png b/front/public/images/large/gregtech/gt.metaitem.01/11374.png deleted file mode 100644 index fce32f2ebc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11378.png b/front/public/images/large/gregtech/gt.metaitem.01/11378.png deleted file mode 100644 index 6013730975..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11379.png b/front/public/images/large/gregtech/gt.metaitem.01/11379.png deleted file mode 100644 index ea997d0fb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11380.png b/front/public/images/large/gregtech/gt.metaitem.01/11380.png deleted file mode 100644 index 3e5339e84f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11381.png b/front/public/images/large/gregtech/gt.metaitem.01/11381.png deleted file mode 100644 index b4da2b4e07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11382.png b/front/public/images/large/gregtech/gt.metaitem.01/11382.png deleted file mode 100644 index 0d440e2f77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11383.png b/front/public/images/large/gregtech/gt.metaitem.01/11383.png deleted file mode 100644 index 6afb9fdada..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11384.png b/front/public/images/large/gregtech/gt.metaitem.01/11384.png deleted file mode 100644 index ea54a9ead7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11385.png b/front/public/images/large/gregtech/gt.metaitem.01/11385.png deleted file mode 100644 index a53070f0f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11386.png b/front/public/images/large/gregtech/gt.metaitem.01/11386.png deleted file mode 100644 index bd9ff0004e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11387.png b/front/public/images/large/gregtech/gt.metaitem.01/11387.png deleted file mode 100644 index d4f8a716ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11388.png b/front/public/images/large/gregtech/gt.metaitem.01/11388.png deleted file mode 100644 index 0394b76b5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11389.png b/front/public/images/large/gregtech/gt.metaitem.01/11389.png deleted file mode 100644 index 36f24c7ae3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11390.png b/front/public/images/large/gregtech/gt.metaitem.01/11390.png deleted file mode 100644 index a901a81a94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11391.png b/front/public/images/large/gregtech/gt.metaitem.01/11391.png deleted file mode 100644 index 2cc8d450ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11392.png b/front/public/images/large/gregtech/gt.metaitem.01/11392.png deleted file mode 100644 index 20d11e59cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11393.png b/front/public/images/large/gregtech/gt.metaitem.01/11393.png deleted file mode 100644 index a0f989d18e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11394.png b/front/public/images/large/gregtech/gt.metaitem.01/11394.png deleted file mode 100644 index d4dd4f120e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11395.png b/front/public/images/large/gregtech/gt.metaitem.01/11395.png deleted file mode 100644 index 0394b76b5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11397.png b/front/public/images/large/gregtech/gt.metaitem.01/11397.png deleted file mode 100644 index 9d81e7e655..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11398.png b/front/public/images/large/gregtech/gt.metaitem.01/11398.png deleted file mode 100644 index ec05722183..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11399.png b/front/public/images/large/gregtech/gt.metaitem.01/11399.png deleted file mode 100644 index d0666776df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11400.png b/front/public/images/large/gregtech/gt.metaitem.01/11400.png deleted file mode 100644 index a0c8b914f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11401.png b/front/public/images/large/gregtech/gt.metaitem.01/11401.png deleted file mode 100644 index 9db53a0de1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11402.png b/front/public/images/large/gregtech/gt.metaitem.01/11402.png deleted file mode 100644 index 1efd914dc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11403.png b/front/public/images/large/gregtech/gt.metaitem.01/11403.png deleted file mode 100644 index e0e8360137..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11404.png b/front/public/images/large/gregtech/gt.metaitem.01/11404.png deleted file mode 100644 index 66321cfc96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11405.png b/front/public/images/large/gregtech/gt.metaitem.01/11405.png deleted file mode 100644 index caddf2e695..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11406.png b/front/public/images/large/gregtech/gt.metaitem.01/11406.png deleted file mode 100644 index b6ff5876bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11407.png b/front/public/images/large/gregtech/gt.metaitem.01/11407.png deleted file mode 100644 index 1b3d24faa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11408.png b/front/public/images/large/gregtech/gt.metaitem.01/11408.png deleted file mode 100644 index a901b3535a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11470.png b/front/public/images/large/gregtech/gt.metaitem.01/11470.png deleted file mode 100644 index b93be5b7a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11471.png b/front/public/images/large/gregtech/gt.metaitem.01/11471.png deleted file mode 100644 index 762e09cccd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11472.png b/front/public/images/large/gregtech/gt.metaitem.01/11472.png deleted file mode 100644 index 0394b76b5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11473.png b/front/public/images/large/gregtech/gt.metaitem.01/11473.png deleted file mode 100644 index ca110e3716..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11485.png b/front/public/images/large/gregtech/gt.metaitem.01/11485.png deleted file mode 100644 index be490e2348..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11488.png b/front/public/images/large/gregtech/gt.metaitem.01/11488.png deleted file mode 100644 index bdd3b07a04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11489.png b/front/public/images/large/gregtech/gt.metaitem.01/11489.png deleted file mode 100644 index 8f5e20c8ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11521.png b/front/public/images/large/gregtech/gt.metaitem.01/11521.png deleted file mode 100644 index 0826a49f6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11529.png b/front/public/images/large/gregtech/gt.metaitem.01/11529.png deleted file mode 100644 index d8bd978eb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11576.png b/front/public/images/large/gregtech/gt.metaitem.01/11576.png deleted file mode 100644 index f4c3225eaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11581.png b/front/public/images/large/gregtech/gt.metaitem.01/11581.png deleted file mode 100644 index e808b8528c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11582.png b/front/public/images/large/gregtech/gt.metaitem.01/11582.png deleted file mode 100644 index 7b3ffad13f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11583.png b/front/public/images/large/gregtech/gt.metaitem.01/11583.png deleted file mode 100644 index 06ba02f8f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11585.png b/front/public/images/large/gregtech/gt.metaitem.01/11585.png deleted file mode 100644 index 1b26647ff3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11586.png b/front/public/images/large/gregtech/gt.metaitem.01/11586.png deleted file mode 100644 index fe2c5d90eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11588.png b/front/public/images/large/gregtech/gt.metaitem.01/11588.png deleted file mode 100644 index 95b6c10f7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11599.png b/front/public/images/large/gregtech/gt.metaitem.01/11599.png deleted file mode 100644 index a1a54c0b65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11610.png b/front/public/images/large/gregtech/gt.metaitem.01/11610.png deleted file mode 100644 index 9392ac3048..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11611.png b/front/public/images/large/gregtech/gt.metaitem.01/11611.png deleted file mode 100644 index f589f2cfad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11613.png b/front/public/images/large/gregtech/gt.metaitem.01/11613.png deleted file mode 100644 index d156cc68cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11631.png b/front/public/images/large/gregtech/gt.metaitem.01/11631.png deleted file mode 100644 index b9a094b2da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11635.png b/front/public/images/large/gregtech/gt.metaitem.01/11635.png deleted file mode 100644 index 4448e8ab31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11636.png b/front/public/images/large/gregtech/gt.metaitem.01/11636.png deleted file mode 100644 index dcfa06ce61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11649.png b/front/public/images/large/gregtech/gt.metaitem.01/11649.png deleted file mode 100644 index 92cb6d0cf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11765.png b/front/public/images/large/gregtech/gt.metaitem.01/11765.png deleted file mode 100644 index 75014941d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11770.png b/front/public/images/large/gregtech/gt.metaitem.01/11770.png deleted file mode 100644 index a2690ded73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11772.png b/front/public/images/large/gregtech/gt.metaitem.01/11772.png deleted file mode 100644 index d9b28e8d9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11804.png b/front/public/images/large/gregtech/gt.metaitem.01/11804.png deleted file mode 100644 index 569e0f0966..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11829.png b/front/public/images/large/gregtech/gt.metaitem.01/11829.png deleted file mode 100644 index da6b9cefbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11856.png b/front/public/images/large/gregtech/gt.metaitem.01/11856.png deleted file mode 100644 index 6fdebe1ced..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11868.png b/front/public/images/large/gregtech/gt.metaitem.01/11868.png deleted file mode 100644 index 790ce9a76f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11874.png b/front/public/images/large/gregtech/gt.metaitem.01/11874.png deleted file mode 100644 index e61ef4f763..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11880.png b/front/public/images/large/gregtech/gt.metaitem.01/11880.png deleted file mode 100644 index 1ec93f3a97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11884.png b/front/public/images/large/gregtech/gt.metaitem.01/11884.png deleted file mode 100644 index 4cf20f5ccc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11912.png b/front/public/images/large/gregtech/gt.metaitem.01/11912.png deleted file mode 100644 index 7054349d0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11913.png b/front/public/images/large/gregtech/gt.metaitem.01/11913.png deleted file mode 100644 index f5cde7559e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11951.png b/front/public/images/large/gregtech/gt.metaitem.01/11951.png deleted file mode 100644 index cd158c37d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11952.png b/front/public/images/large/gregtech/gt.metaitem.01/11952.png deleted file mode 100644 index 24cd3cdbf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11956.png b/front/public/images/large/gregtech/gt.metaitem.01/11956.png deleted file mode 100644 index 4702b5b1e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11966.png b/front/public/images/large/gregtech/gt.metaitem.01/11966.png deleted file mode 100644 index ec273856cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11970.png b/front/public/images/large/gregtech/gt.metaitem.01/11970.png deleted file mode 100644 index 679008bfcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11974.png b/front/public/images/large/gregtech/gt.metaitem.01/11974.png deleted file mode 100644 index cc4fb7ba8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11975.png b/front/public/images/large/gregtech/gt.metaitem.01/11975.png deleted file mode 100644 index d209827940..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11976.png b/front/public/images/large/gregtech/gt.metaitem.01/11976.png deleted file mode 100644 index fb3e25103c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11977.png b/front/public/images/large/gregtech/gt.metaitem.01/11977.png deleted file mode 100644 index f7d606551d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11978.png b/front/public/images/large/gregtech/gt.metaitem.01/11978.png deleted file mode 100644 index 3f083dedbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11979.png b/front/public/images/large/gregtech/gt.metaitem.01/11979.png deleted file mode 100644 index f7cfca6997..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11980.png b/front/public/images/large/gregtech/gt.metaitem.01/11980.png deleted file mode 100644 index 14d72c9240..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11981.png b/front/public/images/large/gregtech/gt.metaitem.01/11981.png deleted file mode 100644 index 15d8ea7dcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11982.png b/front/public/images/large/gregtech/gt.metaitem.01/11982.png deleted file mode 100644 index 71da280c01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11984.png b/front/public/images/large/gregtech/gt.metaitem.01/11984.png deleted file mode 100644 index d4dd4f120e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11985.png b/front/public/images/large/gregtech/gt.metaitem.01/11985.png deleted file mode 100644 index 6b5460a1ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11986.png b/front/public/images/large/gregtech/gt.metaitem.01/11986.png deleted file mode 100644 index 4c2f776b40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11987.png b/front/public/images/large/gregtech/gt.metaitem.01/11987.png deleted file mode 100644 index c2da773eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11988.png b/front/public/images/large/gregtech/gt.metaitem.01/11988.png deleted file mode 100644 index a9b0a6272f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11989.png b/front/public/images/large/gregtech/gt.metaitem.01/11989.png deleted file mode 100644 index 7925813a08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11990.png b/front/public/images/large/gregtech/gt.metaitem.01/11990.png deleted file mode 100644 index 6883c3f20e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11991.png b/front/public/images/large/gregtech/gt.metaitem.01/11991.png deleted file mode 100644 index ee4a52635a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/11992.png b/front/public/images/large/gregtech/gt.metaitem.01/11992.png deleted file mode 100644 index 12ef860f64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/11992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13006.png b/front/public/images/large/gregtech/gt.metaitem.01/13006.png deleted file mode 100644 index eecdf49407..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13008.png b/front/public/images/large/gregtech/gt.metaitem.01/13008.png deleted file mode 100644 index 1b20b0dea1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13010.png b/front/public/images/large/gregtech/gt.metaitem.01/13010.png deleted file mode 100644 index b39d2c07f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13018.png b/front/public/images/large/gregtech/gt.metaitem.01/13018.png deleted file mode 100644 index 8682ffa6b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13019.png b/front/public/images/large/gregtech/gt.metaitem.01/13019.png deleted file mode 100644 index f82e4495a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13020.png b/front/public/images/large/gregtech/gt.metaitem.01/13020.png deleted file mode 100644 index 84647cdeac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13025.png b/front/public/images/large/gregtech/gt.metaitem.01/13025.png deleted file mode 100644 index 450cf5aa41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13027.png b/front/public/images/large/gregtech/gt.metaitem.01/13027.png deleted file mode 100644 index 88d237e392..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13028.png b/front/public/images/large/gregtech/gt.metaitem.01/13028.png deleted file mode 100644 index 015d7ff3b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13029.png b/front/public/images/large/gregtech/gt.metaitem.01/13029.png deleted file mode 100644 index 9b64c8429b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13030.png b/front/public/images/large/gregtech/gt.metaitem.01/13030.png deleted file mode 100644 index c2fa727b86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13031.png b/front/public/images/large/gregtech/gt.metaitem.01/13031.png deleted file mode 100644 index c13c30f897..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13032.png b/front/public/images/large/gregtech/gt.metaitem.01/13032.png deleted file mode 100644 index 17cda2bf6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13033.png b/front/public/images/large/gregtech/gt.metaitem.01/13033.png deleted file mode 100644 index bac6fd263e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13034.png b/front/public/images/large/gregtech/gt.metaitem.01/13034.png deleted file mode 100644 index 38db03b115..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13035.png b/front/public/images/large/gregtech/gt.metaitem.01/13035.png deleted file mode 100644 index d8a0f71759..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13036.png b/front/public/images/large/gregtech/gt.metaitem.01/13036.png deleted file mode 100644 index 8be031577f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13037.png b/front/public/images/large/gregtech/gt.metaitem.01/13037.png deleted file mode 100644 index d0d6abb6dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13039.png b/front/public/images/large/gregtech/gt.metaitem.01/13039.png deleted file mode 100644 index bc41177ad1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13043.png b/front/public/images/large/gregtech/gt.metaitem.01/13043.png deleted file mode 100644 index 67fbf600f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13045.png b/front/public/images/large/gregtech/gt.metaitem.01/13045.png deleted file mode 100644 index a127d12601..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13047.png b/front/public/images/large/gregtech/gt.metaitem.01/13047.png deleted file mode 100644 index 729bfb5306..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13048.png b/front/public/images/large/gregtech/gt.metaitem.01/13048.png deleted file mode 100644 index 2fa44f25d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13052.png b/front/public/images/large/gregtech/gt.metaitem.01/13052.png deleted file mode 100644 index 8f260281bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13054.png b/front/public/images/large/gregtech/gt.metaitem.01/13054.png deleted file mode 100644 index d0d6abb6dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13056.png b/front/public/images/large/gregtech/gt.metaitem.01/13056.png deleted file mode 100644 index 2cf6d24a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13057.png b/front/public/images/large/gregtech/gt.metaitem.01/13057.png deleted file mode 100644 index 81065763ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13058.png b/front/public/images/large/gregtech/gt.metaitem.01/13058.png deleted file mode 100644 index 2fc7fac036..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13059.png b/front/public/images/large/gregtech/gt.metaitem.01/13059.png deleted file mode 100644 index 67ac2c978b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13062.png b/front/public/images/large/gregtech/gt.metaitem.01/13062.png deleted file mode 100644 index 63879d4a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13063.png b/front/public/images/large/gregtech/gt.metaitem.01/13063.png deleted file mode 100644 index 6e6f91362f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13064.png b/front/public/images/large/gregtech/gt.metaitem.01/13064.png deleted file mode 100644 index a1a121597e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13065.png b/front/public/images/large/gregtech/gt.metaitem.01/13065.png deleted file mode 100644 index 78dc2581cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13066.png b/front/public/images/large/gregtech/gt.metaitem.01/13066.png deleted file mode 100644 index 995b6389ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13067.png b/front/public/images/large/gregtech/gt.metaitem.01/13067.png deleted file mode 100644 index 623dcda38a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13068.png b/front/public/images/large/gregtech/gt.metaitem.01/13068.png deleted file mode 100644 index 77eca073a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13069.png b/front/public/images/large/gregtech/gt.metaitem.01/13069.png deleted file mode 100644 index 27d5b90847..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13070.png b/front/public/images/large/gregtech/gt.metaitem.01/13070.png deleted file mode 100644 index 3d6580266a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13071.png b/front/public/images/large/gregtech/gt.metaitem.01/13071.png deleted file mode 100644 index d6bc151f49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13072.png b/front/public/images/large/gregtech/gt.metaitem.01/13072.png deleted file mode 100644 index 6e6f91362f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13073.png b/front/public/images/large/gregtech/gt.metaitem.01/13073.png deleted file mode 100644 index cb63fcae6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13074.png b/front/public/images/large/gregtech/gt.metaitem.01/13074.png deleted file mode 100644 index 4714363202..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13075.png b/front/public/images/large/gregtech/gt.metaitem.01/13075.png deleted file mode 100644 index 005e17fbd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13076.png b/front/public/images/large/gregtech/gt.metaitem.01/13076.png deleted file mode 100644 index d1d8390201..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13077.png b/front/public/images/large/gregtech/gt.metaitem.01/13077.png deleted file mode 100644 index 3da88c12ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13078.png b/front/public/images/large/gregtech/gt.metaitem.01/13078.png deleted file mode 100644 index 8bd62fe8cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13080.png b/front/public/images/large/gregtech/gt.metaitem.01/13080.png deleted file mode 100644 index f9173a177a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13081.png b/front/public/images/large/gregtech/gt.metaitem.01/13081.png deleted file mode 100644 index 9b64c8429b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13083.png b/front/public/images/large/gregtech/gt.metaitem.01/13083.png deleted file mode 100644 index 9fa4a68b96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13084.png b/front/public/images/large/gregtech/gt.metaitem.01/13084.png deleted file mode 100644 index 7c057d3512..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13085.png b/front/public/images/large/gregtech/gt.metaitem.01/13085.png deleted file mode 100644 index 4896d94332..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13086.png b/front/public/images/large/gregtech/gt.metaitem.01/13086.png deleted file mode 100644 index 6d0ba88b54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13089.png b/front/public/images/large/gregtech/gt.metaitem.01/13089.png deleted file mode 100644 index 97721097c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13090.png b/front/public/images/large/gregtech/gt.metaitem.01/13090.png deleted file mode 100644 index 35fdc63528..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13096.png b/front/public/images/large/gregtech/gt.metaitem.01/13096.png deleted file mode 100644 index 08d10532fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13097.png b/front/public/images/large/gregtech/gt.metaitem.01/13097.png deleted file mode 100644 index 8faed88835..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13098.png b/front/public/images/large/gregtech/gt.metaitem.01/13098.png deleted file mode 100644 index 616140ea20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13100.png b/front/public/images/large/gregtech/gt.metaitem.01/13100.png deleted file mode 100644 index 49541a653b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13101.png b/front/public/images/large/gregtech/gt.metaitem.01/13101.png deleted file mode 100644 index 1c8abb341a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13103.png b/front/public/images/large/gregtech/gt.metaitem.01/13103.png deleted file mode 100644 index 17cda2bf6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13111.png b/front/public/images/large/gregtech/gt.metaitem.01/13111.png deleted file mode 100644 index 8b94ad7493..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13112.png b/front/public/images/large/gregtech/gt.metaitem.01/13112.png deleted file mode 100644 index a69babfce3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13129.png b/front/public/images/large/gregtech/gt.metaitem.01/13129.png deleted file mode 100644 index c13c30f897..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13131.png b/front/public/images/large/gregtech/gt.metaitem.01/13131.png deleted file mode 100644 index d582266d94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13134.png b/front/public/images/large/gregtech/gt.metaitem.01/13134.png deleted file mode 100644 index 44cc57faa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13139.png b/front/public/images/large/gregtech/gt.metaitem.01/13139.png deleted file mode 100644 index e99f6e131b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13141.png b/front/public/images/large/gregtech/gt.metaitem.01/13141.png deleted file mode 100644 index fa42b24842..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13143.png b/front/public/images/large/gregtech/gt.metaitem.01/13143.png deleted file mode 100644 index 3ac57be844..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13201.png b/front/public/images/large/gregtech/gt.metaitem.01/13201.png deleted file mode 100644 index 895cf7fac9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13202.png b/front/public/images/large/gregtech/gt.metaitem.01/13202.png deleted file mode 100644 index d57d5d7c83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13203.png b/front/public/images/large/gregtech/gt.metaitem.01/13203.png deleted file mode 100644 index e601823c14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13205.png b/front/public/images/large/gregtech/gt.metaitem.01/13205.png deleted file mode 100644 index 3d9293fa45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13300.png b/front/public/images/large/gregtech/gt.metaitem.01/13300.png deleted file mode 100644 index c13dbcb1d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13301.png b/front/public/images/large/gregtech/gt.metaitem.01/13301.png deleted file mode 100644 index 50afcfdc6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13302.png b/front/public/images/large/gregtech/gt.metaitem.01/13302.png deleted file mode 100644 index aaa5482e15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13303.png b/front/public/images/large/gregtech/gt.metaitem.01/13303.png deleted file mode 100644 index adaff376af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13304.png b/front/public/images/large/gregtech/gt.metaitem.01/13304.png deleted file mode 100644 index fd66203e2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13305.png b/front/public/images/large/gregtech/gt.metaitem.01/13305.png deleted file mode 100644 index 8f260281bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13306.png b/front/public/images/large/gregtech/gt.metaitem.01/13306.png deleted file mode 100644 index 48abd0d2a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13307.png b/front/public/images/large/gregtech/gt.metaitem.01/13307.png deleted file mode 100644 index fd66203e2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13308.png b/front/public/images/large/gregtech/gt.metaitem.01/13308.png deleted file mode 100644 index 545ac44ffe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13309.png b/front/public/images/large/gregtech/gt.metaitem.01/13309.png deleted file mode 100644 index 5f4ed61cde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13310.png b/front/public/images/large/gregtech/gt.metaitem.01/13310.png deleted file mode 100644 index 92c2d0990e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13311.png b/front/public/images/large/gregtech/gt.metaitem.01/13311.png deleted file mode 100644 index 894b6d3e21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13312.png b/front/public/images/large/gregtech/gt.metaitem.01/13312.png deleted file mode 100644 index 38974187db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13313.png b/front/public/images/large/gregtech/gt.metaitem.01/13313.png deleted file mode 100644 index 504de2133d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13314.png b/front/public/images/large/gregtech/gt.metaitem.01/13314.png deleted file mode 100644 index b78a8cb615..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13315.png b/front/public/images/large/gregtech/gt.metaitem.01/13315.png deleted file mode 100644 index 6d6e2ed97e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13316.png b/front/public/images/large/gregtech/gt.metaitem.01/13316.png deleted file mode 100644 index c135b57c2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13317.png b/front/public/images/large/gregtech/gt.metaitem.01/13317.png deleted file mode 100644 index 06787e158a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13318.png b/front/public/images/large/gregtech/gt.metaitem.01/13318.png deleted file mode 100644 index 76342fa4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13319.png b/front/public/images/large/gregtech/gt.metaitem.01/13319.png deleted file mode 100644 index 6e6f91362f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13320.png b/front/public/images/large/gregtech/gt.metaitem.01/13320.png deleted file mode 100644 index 619f9db42b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13321.png b/front/public/images/large/gregtech/gt.metaitem.01/13321.png deleted file mode 100644 index ecd0d733b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13323.png b/front/public/images/large/gregtech/gt.metaitem.01/13323.png deleted file mode 100644 index 795137bca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13324.png b/front/public/images/large/gregtech/gt.metaitem.01/13324.png deleted file mode 100644 index 9b64c8429b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13325.png b/front/public/images/large/gregtech/gt.metaitem.01/13325.png deleted file mode 100644 index b751618023..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13326.png b/front/public/images/large/gregtech/gt.metaitem.01/13326.png deleted file mode 100644 index 44f1bcff2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13327.png b/front/public/images/large/gregtech/gt.metaitem.01/13327.png deleted file mode 100644 index 9e737c5c19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13328.png b/front/public/images/large/gregtech/gt.metaitem.01/13328.png deleted file mode 100644 index 6e6f91362f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13329.png b/front/public/images/large/gregtech/gt.metaitem.01/13329.png deleted file mode 100644 index 1cc1c17d50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13330.png b/front/public/images/large/gregtech/gt.metaitem.01/13330.png deleted file mode 100644 index 8d7f0583b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13331.png b/front/public/images/large/gregtech/gt.metaitem.01/13331.png deleted file mode 100644 index 04e253d16d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13333.png b/front/public/images/large/gregtech/gt.metaitem.01/13333.png deleted file mode 100644 index 26caa526d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13334.png b/front/public/images/large/gregtech/gt.metaitem.01/13334.png deleted file mode 100644 index 623dcda38a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13335.png b/front/public/images/large/gregtech/gt.metaitem.01/13335.png deleted file mode 100644 index c1dc06af41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13336.png b/front/public/images/large/gregtech/gt.metaitem.01/13336.png deleted file mode 100644 index 48c4208477..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13337.png b/front/public/images/large/gregtech/gt.metaitem.01/13337.png deleted file mode 100644 index 627f7e286b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13338.png b/front/public/images/large/gregtech/gt.metaitem.01/13338.png deleted file mode 100644 index f6678553b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13339.png b/front/public/images/large/gregtech/gt.metaitem.01/13339.png deleted file mode 100644 index 305865ae5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13340.png b/front/public/images/large/gregtech/gt.metaitem.01/13340.png deleted file mode 100644 index 3fa7f6572e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13341.png b/front/public/images/large/gregtech/gt.metaitem.01/13341.png deleted file mode 100644 index c0beea2603..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13342.png b/front/public/images/large/gregtech/gt.metaitem.01/13342.png deleted file mode 100644 index 94f53c4cb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13343.png b/front/public/images/large/gregtech/gt.metaitem.01/13343.png deleted file mode 100644 index cf358af75f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13344.png b/front/public/images/large/gregtech/gt.metaitem.01/13344.png deleted file mode 100644 index f2ace47df1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13345.png b/front/public/images/large/gregtech/gt.metaitem.01/13345.png deleted file mode 100644 index 2ea4272f0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13346.png b/front/public/images/large/gregtech/gt.metaitem.01/13346.png deleted file mode 100644 index 879bb4431d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13348.png b/front/public/images/large/gregtech/gt.metaitem.01/13348.png deleted file mode 100644 index 4fe613dc2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13349.png b/front/public/images/large/gregtech/gt.metaitem.01/13349.png deleted file mode 100644 index b0086488e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13350.png b/front/public/images/large/gregtech/gt.metaitem.01/13350.png deleted file mode 100644 index 58525ee06a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13351.png b/front/public/images/large/gregtech/gt.metaitem.01/13351.png deleted file mode 100644 index e79a391052..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13352.png b/front/public/images/large/gregtech/gt.metaitem.01/13352.png deleted file mode 100644 index 612ecd1c04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13353.png b/front/public/images/large/gregtech/gt.metaitem.01/13353.png deleted file mode 100644 index 924bc41df0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13354.png b/front/public/images/large/gregtech/gt.metaitem.01/13354.png deleted file mode 100644 index 70b5c2c23b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13355.png b/front/public/images/large/gregtech/gt.metaitem.01/13355.png deleted file mode 100644 index cb48c43aaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13356.png b/front/public/images/large/gregtech/gt.metaitem.01/13356.png deleted file mode 100644 index 731e29a11f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13357.png b/front/public/images/large/gregtech/gt.metaitem.01/13357.png deleted file mode 100644 index d796c62eb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13358.png b/front/public/images/large/gregtech/gt.metaitem.01/13358.png deleted file mode 100644 index b2f2c54212..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13359.png b/front/public/images/large/gregtech/gt.metaitem.01/13359.png deleted file mode 100644 index 05410fe918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13360.png b/front/public/images/large/gregtech/gt.metaitem.01/13360.png deleted file mode 100644 index 70652fab5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13361.png b/front/public/images/large/gregtech/gt.metaitem.01/13361.png deleted file mode 100644 index 3acbe8db44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13362.png b/front/public/images/large/gregtech/gt.metaitem.01/13362.png deleted file mode 100644 index 3d06bb66a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13363.png b/front/public/images/large/gregtech/gt.metaitem.01/13363.png deleted file mode 100644 index 17cda2bf6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13364.png b/front/public/images/large/gregtech/gt.metaitem.01/13364.png deleted file mode 100644 index b6ba13d390..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13365.png b/front/public/images/large/gregtech/gt.metaitem.01/13365.png deleted file mode 100644 index 9a239080d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13366.png b/front/public/images/large/gregtech/gt.metaitem.01/13366.png deleted file mode 100644 index db95d0eaf0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13367.png b/front/public/images/large/gregtech/gt.metaitem.01/13367.png deleted file mode 100644 index 9e25a33cb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13368.png b/front/public/images/large/gregtech/gt.metaitem.01/13368.png deleted file mode 100644 index 17bec2f465..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13369.png b/front/public/images/large/gregtech/gt.metaitem.01/13369.png deleted file mode 100644 index 8f34227da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13370.png b/front/public/images/large/gregtech/gt.metaitem.01/13370.png deleted file mode 100644 index 709acc24fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13371.png b/front/public/images/large/gregtech/gt.metaitem.01/13371.png deleted file mode 100644 index c3a83c4e0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13372.png b/front/public/images/large/gregtech/gt.metaitem.01/13372.png deleted file mode 100644 index f42f41c468..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13373.png b/front/public/images/large/gregtech/gt.metaitem.01/13373.png deleted file mode 100644 index 553826d0ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13374.png b/front/public/images/large/gregtech/gt.metaitem.01/13374.png deleted file mode 100644 index 52b13437f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13378.png b/front/public/images/large/gregtech/gt.metaitem.01/13378.png deleted file mode 100644 index f1d9f77a70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13379.png b/front/public/images/large/gregtech/gt.metaitem.01/13379.png deleted file mode 100644 index 92326128a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13380.png b/front/public/images/large/gregtech/gt.metaitem.01/13380.png deleted file mode 100644 index 4f9cce9f2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13381.png b/front/public/images/large/gregtech/gt.metaitem.01/13381.png deleted file mode 100644 index 7149593549..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13382.png b/front/public/images/large/gregtech/gt.metaitem.01/13382.png deleted file mode 100644 index 7bd4d69491..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13383.png b/front/public/images/large/gregtech/gt.metaitem.01/13383.png deleted file mode 100644 index e9368c2567..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13384.png b/front/public/images/large/gregtech/gt.metaitem.01/13384.png deleted file mode 100644 index 56f39657f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13385.png b/front/public/images/large/gregtech/gt.metaitem.01/13385.png deleted file mode 100644 index a0bb9d0a4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13386.png b/front/public/images/large/gregtech/gt.metaitem.01/13386.png deleted file mode 100644 index c65f24600a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13387.png b/front/public/images/large/gregtech/gt.metaitem.01/13387.png deleted file mode 100644 index ca5185b270..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13388.png b/front/public/images/large/gregtech/gt.metaitem.01/13388.png deleted file mode 100644 index 62625cb3a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13389.png b/front/public/images/large/gregtech/gt.metaitem.01/13389.png deleted file mode 100644 index 2726f3be91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13390.png b/front/public/images/large/gregtech/gt.metaitem.01/13390.png deleted file mode 100644 index 592f7f78c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13391.png b/front/public/images/large/gregtech/gt.metaitem.01/13391.png deleted file mode 100644 index 4bdf2ddecb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13392.png b/front/public/images/large/gregtech/gt.metaitem.01/13392.png deleted file mode 100644 index c535651421..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13393.png b/front/public/images/large/gregtech/gt.metaitem.01/13393.png deleted file mode 100644 index fdb246142a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13394.png b/front/public/images/large/gregtech/gt.metaitem.01/13394.png deleted file mode 100644 index 6e6f91362f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13395.png b/front/public/images/large/gregtech/gt.metaitem.01/13395.png deleted file mode 100644 index 62625cb3a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13397.png b/front/public/images/large/gregtech/gt.metaitem.01/13397.png deleted file mode 100644 index 7084d02ff2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13398.png b/front/public/images/large/gregtech/gt.metaitem.01/13398.png deleted file mode 100644 index 83cba4a2fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13399.png b/front/public/images/large/gregtech/gt.metaitem.01/13399.png deleted file mode 100644 index 1d87a96319..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13400.png b/front/public/images/large/gregtech/gt.metaitem.01/13400.png deleted file mode 100644 index f9009b11d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13401.png b/front/public/images/large/gregtech/gt.metaitem.01/13401.png deleted file mode 100644 index eb8e4e2039..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13402.png b/front/public/images/large/gregtech/gt.metaitem.01/13402.png deleted file mode 100644 index 76ec677357..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13403.png b/front/public/images/large/gregtech/gt.metaitem.01/13403.png deleted file mode 100644 index 419aec15e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13404.png b/front/public/images/large/gregtech/gt.metaitem.01/13404.png deleted file mode 100644 index d2c9b737d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13405.png b/front/public/images/large/gregtech/gt.metaitem.01/13405.png deleted file mode 100644 index e48a2f7ef2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13406.png b/front/public/images/large/gregtech/gt.metaitem.01/13406.png deleted file mode 100644 index 726da0b49c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13407.png b/front/public/images/large/gregtech/gt.metaitem.01/13407.png deleted file mode 100644 index bfd3477a08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13408.png b/front/public/images/large/gregtech/gt.metaitem.01/13408.png deleted file mode 100644 index d285bc2ef4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13470.png b/front/public/images/large/gregtech/gt.metaitem.01/13470.png deleted file mode 100644 index b9232808de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13471.png b/front/public/images/large/gregtech/gt.metaitem.01/13471.png deleted file mode 100644 index 81065763ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13472.png b/front/public/images/large/gregtech/gt.metaitem.01/13472.png deleted file mode 100644 index 62625cb3a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13473.png b/front/public/images/large/gregtech/gt.metaitem.01/13473.png deleted file mode 100644 index b5bc82d057..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13485.png b/front/public/images/large/gregtech/gt.metaitem.01/13485.png deleted file mode 100644 index 643aa2b5ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13488.png b/front/public/images/large/gregtech/gt.metaitem.01/13488.png deleted file mode 100644 index 9b3664839d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13489.png b/front/public/images/large/gregtech/gt.metaitem.01/13489.png deleted file mode 100644 index d7f33f9f2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13521.png b/front/public/images/large/gregtech/gt.metaitem.01/13521.png deleted file mode 100644 index 76342fa4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13529.png b/front/public/images/large/gregtech/gt.metaitem.01/13529.png deleted file mode 100644 index 45768269dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13576.png b/front/public/images/large/gregtech/gt.metaitem.01/13576.png deleted file mode 100644 index 987490f806..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13581.png b/front/public/images/large/gregtech/gt.metaitem.01/13581.png deleted file mode 100644 index 1d6957e370..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13582.png b/front/public/images/large/gregtech/gt.metaitem.01/13582.png deleted file mode 100644 index 2fc9507495..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13585.png b/front/public/images/large/gregtech/gt.metaitem.01/13585.png deleted file mode 100644 index 638ff69ee2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13586.png b/front/public/images/large/gregtech/gt.metaitem.01/13586.png deleted file mode 100644 index 3f440c67e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13588.png b/front/public/images/large/gregtech/gt.metaitem.01/13588.png deleted file mode 100644 index bd6e7751a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13599.png b/front/public/images/large/gregtech/gt.metaitem.01/13599.png deleted file mode 100644 index ada536016f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13610.png b/front/public/images/large/gregtech/gt.metaitem.01/13610.png deleted file mode 100644 index 6bd0dbdfe3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13613.png b/front/public/images/large/gregtech/gt.metaitem.01/13613.png deleted file mode 100644 index bdf7d8ddc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13631.png b/front/public/images/large/gregtech/gt.metaitem.01/13631.png deleted file mode 100644 index 6bcf312766..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13635.png b/front/public/images/large/gregtech/gt.metaitem.01/13635.png deleted file mode 100644 index 1ed7773dea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13636.png b/front/public/images/large/gregtech/gt.metaitem.01/13636.png deleted file mode 100644 index 6972411ebb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13649.png b/front/public/images/large/gregtech/gt.metaitem.01/13649.png deleted file mode 100644 index b05531d75b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13765.png b/front/public/images/large/gregtech/gt.metaitem.01/13765.png deleted file mode 100644 index 34a142c7fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13770.png b/front/public/images/large/gregtech/gt.metaitem.01/13770.png deleted file mode 100644 index c9d970de33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13772.png b/front/public/images/large/gregtech/gt.metaitem.01/13772.png deleted file mode 100644 index 607fcce337..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13829.png b/front/public/images/large/gregtech/gt.metaitem.01/13829.png deleted file mode 100644 index 363c6457ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13856.png b/front/public/images/large/gregtech/gt.metaitem.01/13856.png deleted file mode 100644 index 682870bc40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13868.png b/front/public/images/large/gregtech/gt.metaitem.01/13868.png deleted file mode 100644 index cccd17252d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13874.png b/front/public/images/large/gregtech/gt.metaitem.01/13874.png deleted file mode 100644 index 36b165f2d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13880.png b/front/public/images/large/gregtech/gt.metaitem.01/13880.png deleted file mode 100644 index 3f440c67e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13884.png b/front/public/images/large/gregtech/gt.metaitem.01/13884.png deleted file mode 100644 index a5cd7582ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13912.png b/front/public/images/large/gregtech/gt.metaitem.01/13912.png deleted file mode 100644 index cd07607879..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13913.png b/front/public/images/large/gregtech/gt.metaitem.01/13913.png deleted file mode 100644 index 03fd57b944..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13951.png b/front/public/images/large/gregtech/gt.metaitem.01/13951.png deleted file mode 100644 index 911aefe64f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13952.png b/front/public/images/large/gregtech/gt.metaitem.01/13952.png deleted file mode 100644 index c3a69586c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13956.png b/front/public/images/large/gregtech/gt.metaitem.01/13956.png deleted file mode 100644 index 43d2c5e4db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13966.png b/front/public/images/large/gregtech/gt.metaitem.01/13966.png deleted file mode 100644 index 00c6eb7e60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13970.png b/front/public/images/large/gregtech/gt.metaitem.01/13970.png deleted file mode 100644 index a032f5300f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13974.png b/front/public/images/large/gregtech/gt.metaitem.01/13974.png deleted file mode 100644 index 532322324d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13975.png b/front/public/images/large/gregtech/gt.metaitem.01/13975.png deleted file mode 100644 index e65401ae9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13976.png b/front/public/images/large/gregtech/gt.metaitem.01/13976.png deleted file mode 100644 index 086ae89ed4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13977.png b/front/public/images/large/gregtech/gt.metaitem.01/13977.png deleted file mode 100644 index 400486bd28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13978.png b/front/public/images/large/gregtech/gt.metaitem.01/13978.png deleted file mode 100644 index a342ebdb26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13979.png b/front/public/images/large/gregtech/gt.metaitem.01/13979.png deleted file mode 100644 index 6038a0a81a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13980.png b/front/public/images/large/gregtech/gt.metaitem.01/13980.png deleted file mode 100644 index 0bf45a9d52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13981.png b/front/public/images/large/gregtech/gt.metaitem.01/13981.png deleted file mode 100644 index b2cac634a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13982.png b/front/public/images/large/gregtech/gt.metaitem.01/13982.png deleted file mode 100644 index 0554b3355f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13984.png b/front/public/images/large/gregtech/gt.metaitem.01/13984.png deleted file mode 100644 index 6e6f91362f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13985.png b/front/public/images/large/gregtech/gt.metaitem.01/13985.png deleted file mode 100644 index b4ff9d3504..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13986.png b/front/public/images/large/gregtech/gt.metaitem.01/13986.png deleted file mode 100644 index 1ffd52d105..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13987.png b/front/public/images/large/gregtech/gt.metaitem.01/13987.png deleted file mode 100644 index 57522459d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13988.png b/front/public/images/large/gregtech/gt.metaitem.01/13988.png deleted file mode 100644 index f0a4e45f20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13989.png b/front/public/images/large/gregtech/gt.metaitem.01/13989.png deleted file mode 100644 index cc0c19c327..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13990.png b/front/public/images/large/gregtech/gt.metaitem.01/13990.png deleted file mode 100644 index de68ca1f68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13991.png b/front/public/images/large/gregtech/gt.metaitem.01/13991.png deleted file mode 100644 index 1ed8014afa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/13992.png b/front/public/images/large/gregtech/gt.metaitem.01/13992.png deleted file mode 100644 index 2b3dcd5ba5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/13992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14006.png b/front/public/images/large/gregtech/gt.metaitem.01/14006.png deleted file mode 100644 index deb8fbed1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14008.png b/front/public/images/large/gregtech/gt.metaitem.01/14008.png deleted file mode 100644 index 16c59a0a20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14010.png b/front/public/images/large/gregtech/gt.metaitem.01/14010.png deleted file mode 100644 index 350ef2ec38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14018.png b/front/public/images/large/gregtech/gt.metaitem.01/14018.png deleted file mode 100644 index 77ecbcfaea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14019.png b/front/public/images/large/gregtech/gt.metaitem.01/14019.png deleted file mode 100644 index 2ec9ed9f5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14020.png b/front/public/images/large/gregtech/gt.metaitem.01/14020.png deleted file mode 100644 index 9bd72484e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14025.png b/front/public/images/large/gregtech/gt.metaitem.01/14025.png deleted file mode 100644 index bb951acff8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14027.png b/front/public/images/large/gregtech/gt.metaitem.01/14027.png deleted file mode 100644 index 81ba7768c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14028.png b/front/public/images/large/gregtech/gt.metaitem.01/14028.png deleted file mode 100644 index a7ad2edfa4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14029.png b/front/public/images/large/gregtech/gt.metaitem.01/14029.png deleted file mode 100644 index a7cb9c09c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14030.png b/front/public/images/large/gregtech/gt.metaitem.01/14030.png deleted file mode 100644 index 28ccc20fcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14031.png b/front/public/images/large/gregtech/gt.metaitem.01/14031.png deleted file mode 100644 index 4a58ec72f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14032.png b/front/public/images/large/gregtech/gt.metaitem.01/14032.png deleted file mode 100644 index a16ea7527f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14033.png b/front/public/images/large/gregtech/gt.metaitem.01/14033.png deleted file mode 100644 index 286c6cf183..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14034.png b/front/public/images/large/gregtech/gt.metaitem.01/14034.png deleted file mode 100644 index 25f24b7294..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14035.png b/front/public/images/large/gregtech/gt.metaitem.01/14035.png deleted file mode 100644 index 4d86593e41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14036.png b/front/public/images/large/gregtech/gt.metaitem.01/14036.png deleted file mode 100644 index e645e8ae15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14037.png b/front/public/images/large/gregtech/gt.metaitem.01/14037.png deleted file mode 100644 index 965ce5d9fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14039.png b/front/public/images/large/gregtech/gt.metaitem.01/14039.png deleted file mode 100644 index efd36b8a78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14043.png b/front/public/images/large/gregtech/gt.metaitem.01/14043.png deleted file mode 100644 index a53cb125ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14045.png b/front/public/images/large/gregtech/gt.metaitem.01/14045.png deleted file mode 100644 index 33feb69c4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14047.png b/front/public/images/large/gregtech/gt.metaitem.01/14047.png deleted file mode 100644 index d863e486ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14048.png b/front/public/images/large/gregtech/gt.metaitem.01/14048.png deleted file mode 100644 index 995d1ad628..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14052.png b/front/public/images/large/gregtech/gt.metaitem.01/14052.png deleted file mode 100644 index 210975522a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14054.png b/front/public/images/large/gregtech/gt.metaitem.01/14054.png deleted file mode 100644 index 965ce5d9fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14056.png b/front/public/images/large/gregtech/gt.metaitem.01/14056.png deleted file mode 100644 index ada3140572..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14057.png b/front/public/images/large/gregtech/gt.metaitem.01/14057.png deleted file mode 100644 index 4820351ead..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14058.png b/front/public/images/large/gregtech/gt.metaitem.01/14058.png deleted file mode 100644 index 5773f8cda2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14059.png b/front/public/images/large/gregtech/gt.metaitem.01/14059.png deleted file mode 100644 index 7d540f9976..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14062.png b/front/public/images/large/gregtech/gt.metaitem.01/14062.png deleted file mode 100644 index 40a6494f5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14063.png b/front/public/images/large/gregtech/gt.metaitem.01/14063.png deleted file mode 100644 index d91a044d97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14064.png b/front/public/images/large/gregtech/gt.metaitem.01/14064.png deleted file mode 100644 index 4e263c4f15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14065.png b/front/public/images/large/gregtech/gt.metaitem.01/14065.png deleted file mode 100644 index 8cd2ea67f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14066.png b/front/public/images/large/gregtech/gt.metaitem.01/14066.png deleted file mode 100644 index 43d8e93fe7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14067.png b/front/public/images/large/gregtech/gt.metaitem.01/14067.png deleted file mode 100644 index 37cd742143..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14068.png b/front/public/images/large/gregtech/gt.metaitem.01/14068.png deleted file mode 100644 index 9146744dec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14069.png b/front/public/images/large/gregtech/gt.metaitem.01/14069.png deleted file mode 100644 index dbf6683215..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14070.png b/front/public/images/large/gregtech/gt.metaitem.01/14070.png deleted file mode 100644 index e0cd2465cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14071.png b/front/public/images/large/gregtech/gt.metaitem.01/14071.png deleted file mode 100644 index 5134e81b92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14072.png b/front/public/images/large/gregtech/gt.metaitem.01/14072.png deleted file mode 100644 index d91a044d97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14073.png b/front/public/images/large/gregtech/gt.metaitem.01/14073.png deleted file mode 100644 index 3a78c89004..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14074.png b/front/public/images/large/gregtech/gt.metaitem.01/14074.png deleted file mode 100644 index 46478dd4ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14075.png b/front/public/images/large/gregtech/gt.metaitem.01/14075.png deleted file mode 100644 index d228d4568a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14076.png b/front/public/images/large/gregtech/gt.metaitem.01/14076.png deleted file mode 100644 index 3a3fabe5ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14077.png b/front/public/images/large/gregtech/gt.metaitem.01/14077.png deleted file mode 100644 index 2ee3659907..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14078.png b/front/public/images/large/gregtech/gt.metaitem.01/14078.png deleted file mode 100644 index 7296470cc8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14080.png b/front/public/images/large/gregtech/gt.metaitem.01/14080.png deleted file mode 100644 index 852e3d70b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14081.png b/front/public/images/large/gregtech/gt.metaitem.01/14081.png deleted file mode 100644 index a7cb9c09c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14083.png b/front/public/images/large/gregtech/gt.metaitem.01/14083.png deleted file mode 100644 index 861164e793..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14084.png b/front/public/images/large/gregtech/gt.metaitem.01/14084.png deleted file mode 100644 index 857c19459b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14085.png b/front/public/images/large/gregtech/gt.metaitem.01/14085.png deleted file mode 100644 index 5dc8dd3df1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14086.png b/front/public/images/large/gregtech/gt.metaitem.01/14086.png deleted file mode 100644 index 141adca6ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14089.png b/front/public/images/large/gregtech/gt.metaitem.01/14089.png deleted file mode 100644 index 43d2eaeb2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14090.png b/front/public/images/large/gregtech/gt.metaitem.01/14090.png deleted file mode 100644 index 0a77a753ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14096.png b/front/public/images/large/gregtech/gt.metaitem.01/14096.png deleted file mode 100644 index 21f4d40581..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14097.png b/front/public/images/large/gregtech/gt.metaitem.01/14097.png deleted file mode 100644 index 1448fc7189..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14098.png b/front/public/images/large/gregtech/gt.metaitem.01/14098.png deleted file mode 100644 index 32d658bc61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14100.png b/front/public/images/large/gregtech/gt.metaitem.01/14100.png deleted file mode 100644 index ba09508b50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14101.png b/front/public/images/large/gregtech/gt.metaitem.01/14101.png deleted file mode 100644 index 75b6cdc571..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14103.png b/front/public/images/large/gregtech/gt.metaitem.01/14103.png deleted file mode 100644 index a16ea7527f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14111.png b/front/public/images/large/gregtech/gt.metaitem.01/14111.png deleted file mode 100644 index 6fdfadea0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14112.png b/front/public/images/large/gregtech/gt.metaitem.01/14112.png deleted file mode 100644 index fe0b847c2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14129.png b/front/public/images/large/gregtech/gt.metaitem.01/14129.png deleted file mode 100644 index 4a58ec72f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14131.png b/front/public/images/large/gregtech/gt.metaitem.01/14131.png deleted file mode 100644 index 5a15943e82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14134.png b/front/public/images/large/gregtech/gt.metaitem.01/14134.png deleted file mode 100644 index 69aa0d0991..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14139.png b/front/public/images/large/gregtech/gt.metaitem.01/14139.png deleted file mode 100644 index 6f03219fd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14141.png b/front/public/images/large/gregtech/gt.metaitem.01/14141.png deleted file mode 100644 index 76e00a131c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14143.png b/front/public/images/large/gregtech/gt.metaitem.01/14143.png deleted file mode 100644 index 2a8b10ef0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14201.png b/front/public/images/large/gregtech/gt.metaitem.01/14201.png deleted file mode 100644 index 5bc0f05d73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14202.png b/front/public/images/large/gregtech/gt.metaitem.01/14202.png deleted file mode 100644 index eb9837a2bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14203.png b/front/public/images/large/gregtech/gt.metaitem.01/14203.png deleted file mode 100644 index 5cf12c9588..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14205.png b/front/public/images/large/gregtech/gt.metaitem.01/14205.png deleted file mode 100644 index 29c5c7c84e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14300.png b/front/public/images/large/gregtech/gt.metaitem.01/14300.png deleted file mode 100644 index f50ce0818b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14301.png b/front/public/images/large/gregtech/gt.metaitem.01/14301.png deleted file mode 100644 index d94cd7e871..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14302.png b/front/public/images/large/gregtech/gt.metaitem.01/14302.png deleted file mode 100644 index 6731a1f2f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14303.png b/front/public/images/large/gregtech/gt.metaitem.01/14303.png deleted file mode 100644 index 5651f5587a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14304.png b/front/public/images/large/gregtech/gt.metaitem.01/14304.png deleted file mode 100644 index 6364c7d33f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14305.png b/front/public/images/large/gregtech/gt.metaitem.01/14305.png deleted file mode 100644 index 210975522a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14306.png b/front/public/images/large/gregtech/gt.metaitem.01/14306.png deleted file mode 100644 index e5451da980..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14307.png b/front/public/images/large/gregtech/gt.metaitem.01/14307.png deleted file mode 100644 index 6364c7d33f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14308.png b/front/public/images/large/gregtech/gt.metaitem.01/14308.png deleted file mode 100644 index 5de165b01a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14309.png b/front/public/images/large/gregtech/gt.metaitem.01/14309.png deleted file mode 100644 index c4e70e9727..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14310.png b/front/public/images/large/gregtech/gt.metaitem.01/14310.png deleted file mode 100644 index fc2779d8d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14311.png b/front/public/images/large/gregtech/gt.metaitem.01/14311.png deleted file mode 100644 index e449ac13e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14312.png b/front/public/images/large/gregtech/gt.metaitem.01/14312.png deleted file mode 100644 index 144203929d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14313.png b/front/public/images/large/gregtech/gt.metaitem.01/14313.png deleted file mode 100644 index ea496c7064..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14314.png b/front/public/images/large/gregtech/gt.metaitem.01/14314.png deleted file mode 100644 index c58ba41106..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14315.png b/front/public/images/large/gregtech/gt.metaitem.01/14315.png deleted file mode 100644 index 365781763e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14316.png b/front/public/images/large/gregtech/gt.metaitem.01/14316.png deleted file mode 100644 index be1b305e19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14317.png b/front/public/images/large/gregtech/gt.metaitem.01/14317.png deleted file mode 100644 index 5a6705779d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14318.png b/front/public/images/large/gregtech/gt.metaitem.01/14318.png deleted file mode 100644 index 29621ab760..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14319.png b/front/public/images/large/gregtech/gt.metaitem.01/14319.png deleted file mode 100644 index d91a044d97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14320.png b/front/public/images/large/gregtech/gt.metaitem.01/14320.png deleted file mode 100644 index cc457df788..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14321.png b/front/public/images/large/gregtech/gt.metaitem.01/14321.png deleted file mode 100644 index cfd5221387..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14323.png b/front/public/images/large/gregtech/gt.metaitem.01/14323.png deleted file mode 100644 index 8f17b5f514..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14324.png b/front/public/images/large/gregtech/gt.metaitem.01/14324.png deleted file mode 100644 index a7cb9c09c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14325.png b/front/public/images/large/gregtech/gt.metaitem.01/14325.png deleted file mode 100644 index c7a38070c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14326.png b/front/public/images/large/gregtech/gt.metaitem.01/14326.png deleted file mode 100644 index a1df2fe7a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14327.png b/front/public/images/large/gregtech/gt.metaitem.01/14327.png deleted file mode 100644 index d09c8b012a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14328.png b/front/public/images/large/gregtech/gt.metaitem.01/14328.png deleted file mode 100644 index d91a044d97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14329.png b/front/public/images/large/gregtech/gt.metaitem.01/14329.png deleted file mode 100644 index f124db9a7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14330.png b/front/public/images/large/gregtech/gt.metaitem.01/14330.png deleted file mode 100644 index 9413ef0aa3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14331.png b/front/public/images/large/gregtech/gt.metaitem.01/14331.png deleted file mode 100644 index 39bbaf1e26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14333.png b/front/public/images/large/gregtech/gt.metaitem.01/14333.png deleted file mode 100644 index efc5cb8cf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14334.png b/front/public/images/large/gregtech/gt.metaitem.01/14334.png deleted file mode 100644 index 37cd742143..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14335.png b/front/public/images/large/gregtech/gt.metaitem.01/14335.png deleted file mode 100644 index b2244c516d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14336.png b/front/public/images/large/gregtech/gt.metaitem.01/14336.png deleted file mode 100644 index b705394a53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14337.png b/front/public/images/large/gregtech/gt.metaitem.01/14337.png deleted file mode 100644 index 77a8058914..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14338.png b/front/public/images/large/gregtech/gt.metaitem.01/14338.png deleted file mode 100644 index 6c2291f1d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14339.png b/front/public/images/large/gregtech/gt.metaitem.01/14339.png deleted file mode 100644 index fd30b79269..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14340.png b/front/public/images/large/gregtech/gt.metaitem.01/14340.png deleted file mode 100644 index c5934bdaef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14341.png b/front/public/images/large/gregtech/gt.metaitem.01/14341.png deleted file mode 100644 index 6e23cba004..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14342.png b/front/public/images/large/gregtech/gt.metaitem.01/14342.png deleted file mode 100644 index 6234dd1150..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14343.png b/front/public/images/large/gregtech/gt.metaitem.01/14343.png deleted file mode 100644 index b757280c54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14344.png b/front/public/images/large/gregtech/gt.metaitem.01/14344.png deleted file mode 100644 index b143f2764b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14345.png b/front/public/images/large/gregtech/gt.metaitem.01/14345.png deleted file mode 100644 index 8b87e0872a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14346.png b/front/public/images/large/gregtech/gt.metaitem.01/14346.png deleted file mode 100644 index 17bb1f33e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14348.png b/front/public/images/large/gregtech/gt.metaitem.01/14348.png deleted file mode 100644 index c5b3d15b13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14349.png b/front/public/images/large/gregtech/gt.metaitem.01/14349.png deleted file mode 100644 index 9f92da5529..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14350.png b/front/public/images/large/gregtech/gt.metaitem.01/14350.png deleted file mode 100644 index c391a8d08e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14351.png b/front/public/images/large/gregtech/gt.metaitem.01/14351.png deleted file mode 100644 index 379d46a9a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14352.png b/front/public/images/large/gregtech/gt.metaitem.01/14352.png deleted file mode 100644 index d39c9ef5ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14353.png b/front/public/images/large/gregtech/gt.metaitem.01/14353.png deleted file mode 100644 index a2614e0b5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14354.png b/front/public/images/large/gregtech/gt.metaitem.01/14354.png deleted file mode 100644 index d32d24e84a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14355.png b/front/public/images/large/gregtech/gt.metaitem.01/14355.png deleted file mode 100644 index 7fd84e1c1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14356.png b/front/public/images/large/gregtech/gt.metaitem.01/14356.png deleted file mode 100644 index dd07ad6a3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14357.png b/front/public/images/large/gregtech/gt.metaitem.01/14357.png deleted file mode 100644 index 27b941ab06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14358.png b/front/public/images/large/gregtech/gt.metaitem.01/14358.png deleted file mode 100644 index ad3520817c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14359.png b/front/public/images/large/gregtech/gt.metaitem.01/14359.png deleted file mode 100644 index a34cd2df5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14360.png b/front/public/images/large/gregtech/gt.metaitem.01/14360.png deleted file mode 100644 index 3eea091a57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14361.png b/front/public/images/large/gregtech/gt.metaitem.01/14361.png deleted file mode 100644 index 2a49ae743c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14362.png b/front/public/images/large/gregtech/gt.metaitem.01/14362.png deleted file mode 100644 index a9b41cbdc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14363.png b/front/public/images/large/gregtech/gt.metaitem.01/14363.png deleted file mode 100644 index a16ea7527f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14364.png b/front/public/images/large/gregtech/gt.metaitem.01/14364.png deleted file mode 100644 index 9c7ad8c9ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14365.png b/front/public/images/large/gregtech/gt.metaitem.01/14365.png deleted file mode 100644 index 7fb6b5bdc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14366.png b/front/public/images/large/gregtech/gt.metaitem.01/14366.png deleted file mode 100644 index d0bb7f3b3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14367.png b/front/public/images/large/gregtech/gt.metaitem.01/14367.png deleted file mode 100644 index eab9d7db19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14368.png b/front/public/images/large/gregtech/gt.metaitem.01/14368.png deleted file mode 100644 index 9ab0301e74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14369.png b/front/public/images/large/gregtech/gt.metaitem.01/14369.png deleted file mode 100644 index db9c1eab8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14370.png b/front/public/images/large/gregtech/gt.metaitem.01/14370.png deleted file mode 100644 index c1ac5f33d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14371.png b/front/public/images/large/gregtech/gt.metaitem.01/14371.png deleted file mode 100644 index 5d7bad33b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14372.png b/front/public/images/large/gregtech/gt.metaitem.01/14372.png deleted file mode 100644 index 7e6f650cf1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14373.png b/front/public/images/large/gregtech/gt.metaitem.01/14373.png deleted file mode 100644 index a9a62dd8fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14374.png b/front/public/images/large/gregtech/gt.metaitem.01/14374.png deleted file mode 100644 index 3c70d62bcc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14378.png b/front/public/images/large/gregtech/gt.metaitem.01/14378.png deleted file mode 100644 index 09f31f54f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14379.png b/front/public/images/large/gregtech/gt.metaitem.01/14379.png deleted file mode 100644 index 3f89da28cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14380.png b/front/public/images/large/gregtech/gt.metaitem.01/14380.png deleted file mode 100644 index eda0116aa3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14381.png b/front/public/images/large/gregtech/gt.metaitem.01/14381.png deleted file mode 100644 index f4b8f083ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14382.png b/front/public/images/large/gregtech/gt.metaitem.01/14382.png deleted file mode 100644 index c17ab03749..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14383.png b/front/public/images/large/gregtech/gt.metaitem.01/14383.png deleted file mode 100644 index 0050417c65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14384.png b/front/public/images/large/gregtech/gt.metaitem.01/14384.png deleted file mode 100644 index 2369515eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14385.png b/front/public/images/large/gregtech/gt.metaitem.01/14385.png deleted file mode 100644 index ccb564c7d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14386.png b/front/public/images/large/gregtech/gt.metaitem.01/14386.png deleted file mode 100644 index db731ae7b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14387.png b/front/public/images/large/gregtech/gt.metaitem.01/14387.png deleted file mode 100644 index 0940dd2292..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14388.png b/front/public/images/large/gregtech/gt.metaitem.01/14388.png deleted file mode 100644 index 33985baa4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14389.png b/front/public/images/large/gregtech/gt.metaitem.01/14389.png deleted file mode 100644 index 630281c965..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14390.png b/front/public/images/large/gregtech/gt.metaitem.01/14390.png deleted file mode 100644 index 4b302ec579..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14391.png b/front/public/images/large/gregtech/gt.metaitem.01/14391.png deleted file mode 100644 index d1f90f6f66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14392.png b/front/public/images/large/gregtech/gt.metaitem.01/14392.png deleted file mode 100644 index 159871f40d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14393.png b/front/public/images/large/gregtech/gt.metaitem.01/14393.png deleted file mode 100644 index 14b6dd243d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14394.png b/front/public/images/large/gregtech/gt.metaitem.01/14394.png deleted file mode 100644 index d91a044d97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14395.png b/front/public/images/large/gregtech/gt.metaitem.01/14395.png deleted file mode 100644 index 33985baa4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14397.png b/front/public/images/large/gregtech/gt.metaitem.01/14397.png deleted file mode 100644 index ab7a246d5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14398.png b/front/public/images/large/gregtech/gt.metaitem.01/14398.png deleted file mode 100644 index 6e5b59a3c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14399.png b/front/public/images/large/gregtech/gt.metaitem.01/14399.png deleted file mode 100644 index 22a03c79ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14400.png b/front/public/images/large/gregtech/gt.metaitem.01/14400.png deleted file mode 100644 index c07e038c48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14401.png b/front/public/images/large/gregtech/gt.metaitem.01/14401.png deleted file mode 100644 index dd9e94367a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14402.png b/front/public/images/large/gregtech/gt.metaitem.01/14402.png deleted file mode 100644 index fbd18e12d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14403.png b/front/public/images/large/gregtech/gt.metaitem.01/14403.png deleted file mode 100644 index 15f314cf47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14404.png b/front/public/images/large/gregtech/gt.metaitem.01/14404.png deleted file mode 100644 index a4111fb97f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14405.png b/front/public/images/large/gregtech/gt.metaitem.01/14405.png deleted file mode 100644 index 61d4155cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14406.png b/front/public/images/large/gregtech/gt.metaitem.01/14406.png deleted file mode 100644 index 6ba3cef175..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14407.png b/front/public/images/large/gregtech/gt.metaitem.01/14407.png deleted file mode 100644 index deb03240dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14408.png b/front/public/images/large/gregtech/gt.metaitem.01/14408.png deleted file mode 100644 index d5af51cfe1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14470.png b/front/public/images/large/gregtech/gt.metaitem.01/14470.png deleted file mode 100644 index 3a8cecc717..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14471.png b/front/public/images/large/gregtech/gt.metaitem.01/14471.png deleted file mode 100644 index 4820351ead..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14472.png b/front/public/images/large/gregtech/gt.metaitem.01/14472.png deleted file mode 100644 index 33985baa4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14473.png b/front/public/images/large/gregtech/gt.metaitem.01/14473.png deleted file mode 100644 index 8704ab80b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14485.png b/front/public/images/large/gregtech/gt.metaitem.01/14485.png deleted file mode 100644 index 07894a4d5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14488.png b/front/public/images/large/gregtech/gt.metaitem.01/14488.png deleted file mode 100644 index 191c72664e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14489.png b/front/public/images/large/gregtech/gt.metaitem.01/14489.png deleted file mode 100644 index 96e83aa591..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14521.png b/front/public/images/large/gregtech/gt.metaitem.01/14521.png deleted file mode 100644 index 29621ab760..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14529.png b/front/public/images/large/gregtech/gt.metaitem.01/14529.png deleted file mode 100644 index 03fab834ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14576.png b/front/public/images/large/gregtech/gt.metaitem.01/14576.png deleted file mode 100644 index 8cd3cf0505..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14581.png b/front/public/images/large/gregtech/gt.metaitem.01/14581.png deleted file mode 100644 index 8c22d71891..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14582.png b/front/public/images/large/gregtech/gt.metaitem.01/14582.png deleted file mode 100644 index bbef5496f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14585.png b/front/public/images/large/gregtech/gt.metaitem.01/14585.png deleted file mode 100644 index 2cb947959a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14586.png b/front/public/images/large/gregtech/gt.metaitem.01/14586.png deleted file mode 100644 index 1dbcf19ef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14588.png b/front/public/images/large/gregtech/gt.metaitem.01/14588.png deleted file mode 100644 index 67b93ff789..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14599.png b/front/public/images/large/gregtech/gt.metaitem.01/14599.png deleted file mode 100644 index 40cbdae292..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14610.png b/front/public/images/large/gregtech/gt.metaitem.01/14610.png deleted file mode 100644 index 8c6e93f818..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14613.png b/front/public/images/large/gregtech/gt.metaitem.01/14613.png deleted file mode 100644 index be1b11469d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14631.png b/front/public/images/large/gregtech/gt.metaitem.01/14631.png deleted file mode 100644 index de3a9e4dca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14635.png b/front/public/images/large/gregtech/gt.metaitem.01/14635.png deleted file mode 100644 index 8927ce9f2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14636.png b/front/public/images/large/gregtech/gt.metaitem.01/14636.png deleted file mode 100644 index d3868df02d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14649.png b/front/public/images/large/gregtech/gt.metaitem.01/14649.png deleted file mode 100644 index 977067ddce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14765.png b/front/public/images/large/gregtech/gt.metaitem.01/14765.png deleted file mode 100644 index ca699e8e2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14770.png b/front/public/images/large/gregtech/gt.metaitem.01/14770.png deleted file mode 100644 index f38da3b7a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14772.png b/front/public/images/large/gregtech/gt.metaitem.01/14772.png deleted file mode 100644 index 586c7c7fc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14829.png b/front/public/images/large/gregtech/gt.metaitem.01/14829.png deleted file mode 100644 index 78e1e6ffbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14856.png b/front/public/images/large/gregtech/gt.metaitem.01/14856.png deleted file mode 100644 index 5435df472e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14868.png b/front/public/images/large/gregtech/gt.metaitem.01/14868.png deleted file mode 100644 index 35c368a005..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14874.png b/front/public/images/large/gregtech/gt.metaitem.01/14874.png deleted file mode 100644 index cda09e525e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14880.png b/front/public/images/large/gregtech/gt.metaitem.01/14880.png deleted file mode 100644 index 1dbcf19ef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14884.png b/front/public/images/large/gregtech/gt.metaitem.01/14884.png deleted file mode 100644 index 5b29fbde09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14912.png b/front/public/images/large/gregtech/gt.metaitem.01/14912.png deleted file mode 100644 index 8d27db7a54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14913.png b/front/public/images/large/gregtech/gt.metaitem.01/14913.png deleted file mode 100644 index 063effb754..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14951.png b/front/public/images/large/gregtech/gt.metaitem.01/14951.png deleted file mode 100644 index b0be4dd4ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14952.png b/front/public/images/large/gregtech/gt.metaitem.01/14952.png deleted file mode 100644 index 91fc5b33a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14956.png b/front/public/images/large/gregtech/gt.metaitem.01/14956.png deleted file mode 100644 index c4b623ff23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14966.png b/front/public/images/large/gregtech/gt.metaitem.01/14966.png deleted file mode 100644 index 68086a546e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14970.png b/front/public/images/large/gregtech/gt.metaitem.01/14970.png deleted file mode 100644 index 400955f1bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14974.png b/front/public/images/large/gregtech/gt.metaitem.01/14974.png deleted file mode 100644 index 08d56c1a4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14975.png b/front/public/images/large/gregtech/gt.metaitem.01/14975.png deleted file mode 100644 index 6385508b7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14976.png b/front/public/images/large/gregtech/gt.metaitem.01/14976.png deleted file mode 100644 index 7928ee346f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14977.png b/front/public/images/large/gregtech/gt.metaitem.01/14977.png deleted file mode 100644 index 265069434a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14978.png b/front/public/images/large/gregtech/gt.metaitem.01/14978.png deleted file mode 100644 index 1d842d9912..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14979.png b/front/public/images/large/gregtech/gt.metaitem.01/14979.png deleted file mode 100644 index a379ff8a71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14980.png b/front/public/images/large/gregtech/gt.metaitem.01/14980.png deleted file mode 100644 index 0c535c7b73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14981.png b/front/public/images/large/gregtech/gt.metaitem.01/14981.png deleted file mode 100644 index 9fc864eb1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14982.png b/front/public/images/large/gregtech/gt.metaitem.01/14982.png deleted file mode 100644 index b3172c77a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14984.png b/front/public/images/large/gregtech/gt.metaitem.01/14984.png deleted file mode 100644 index d91a044d97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14985.png b/front/public/images/large/gregtech/gt.metaitem.01/14985.png deleted file mode 100644 index c285db7070..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14986.png b/front/public/images/large/gregtech/gt.metaitem.01/14986.png deleted file mode 100644 index 77ef701724..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14987.png b/front/public/images/large/gregtech/gt.metaitem.01/14987.png deleted file mode 100644 index 84c431e401..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14988.png b/front/public/images/large/gregtech/gt.metaitem.01/14988.png deleted file mode 100644 index 796f004c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14989.png b/front/public/images/large/gregtech/gt.metaitem.01/14989.png deleted file mode 100644 index db24025823..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14990.png b/front/public/images/large/gregtech/gt.metaitem.01/14990.png deleted file mode 100644 index 03f5237a47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14991.png b/front/public/images/large/gregtech/gt.metaitem.01/14991.png deleted file mode 100644 index e9b182b85e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/14992.png b/front/public/images/large/gregtech/gt.metaitem.01/14992.png deleted file mode 100644 index d1e9c6ae14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/14992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15006.png b/front/public/images/large/gregtech/gt.metaitem.01/15006.png deleted file mode 100644 index ba08c6516d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15008.png b/front/public/images/large/gregtech/gt.metaitem.01/15008.png deleted file mode 100644 index 33588d95bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15010.png b/front/public/images/large/gregtech/gt.metaitem.01/15010.png deleted file mode 100644 index 6951187a32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15018.png b/front/public/images/large/gregtech/gt.metaitem.01/15018.png deleted file mode 100644 index 36c5a5ce6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15019.png b/front/public/images/large/gregtech/gt.metaitem.01/15019.png deleted file mode 100644 index 0a13eb72e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15020.png b/front/public/images/large/gregtech/gt.metaitem.01/15020.png deleted file mode 100644 index ad6d4b76a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15025.png b/front/public/images/large/gregtech/gt.metaitem.01/15025.png deleted file mode 100644 index 01f0f818a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15027.png b/front/public/images/large/gregtech/gt.metaitem.01/15027.png deleted file mode 100644 index cb17526391..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15028.png b/front/public/images/large/gregtech/gt.metaitem.01/15028.png deleted file mode 100644 index 089209719d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15029.png b/front/public/images/large/gregtech/gt.metaitem.01/15029.png deleted file mode 100644 index 4dd28fb568..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15030.png b/front/public/images/large/gregtech/gt.metaitem.01/15030.png deleted file mode 100644 index b678c90445..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15031.png b/front/public/images/large/gregtech/gt.metaitem.01/15031.png deleted file mode 100644 index dd8d63327c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15032.png b/front/public/images/large/gregtech/gt.metaitem.01/15032.png deleted file mode 100644 index f860da7d9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15033.png b/front/public/images/large/gregtech/gt.metaitem.01/15033.png deleted file mode 100644 index 961f3cd6c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15034.png b/front/public/images/large/gregtech/gt.metaitem.01/15034.png deleted file mode 100644 index cf111503dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15035.png b/front/public/images/large/gregtech/gt.metaitem.01/15035.png deleted file mode 100644 index 82c03c617c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15036.png b/front/public/images/large/gregtech/gt.metaitem.01/15036.png deleted file mode 100644 index 5c8be82195..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15037.png b/front/public/images/large/gregtech/gt.metaitem.01/15037.png deleted file mode 100644 index a42704deaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15039.png b/front/public/images/large/gregtech/gt.metaitem.01/15039.png deleted file mode 100644 index 5628a8fa5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15043.png b/front/public/images/large/gregtech/gt.metaitem.01/15043.png deleted file mode 100644 index 3c1b0bc47c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15045.png b/front/public/images/large/gregtech/gt.metaitem.01/15045.png deleted file mode 100644 index 4cb24fa09a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15047.png b/front/public/images/large/gregtech/gt.metaitem.01/15047.png deleted file mode 100644 index f6e5276bd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15048.png b/front/public/images/large/gregtech/gt.metaitem.01/15048.png deleted file mode 100644 index e1331b1987..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15052.png b/front/public/images/large/gregtech/gt.metaitem.01/15052.png deleted file mode 100644 index c7ea44f09b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15054.png b/front/public/images/large/gregtech/gt.metaitem.01/15054.png deleted file mode 100644 index a42704deaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15056.png b/front/public/images/large/gregtech/gt.metaitem.01/15056.png deleted file mode 100644 index ca415b0cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15057.png b/front/public/images/large/gregtech/gt.metaitem.01/15057.png deleted file mode 100644 index 9d7d8765e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15058.png b/front/public/images/large/gregtech/gt.metaitem.01/15058.png deleted file mode 100644 index 84a1df439d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15059.png b/front/public/images/large/gregtech/gt.metaitem.01/15059.png deleted file mode 100644 index 7bf4e29f74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15062.png b/front/public/images/large/gregtech/gt.metaitem.01/15062.png deleted file mode 100644 index f63a7e5934..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15063.png b/front/public/images/large/gregtech/gt.metaitem.01/15063.png deleted file mode 100644 index 1cf35fb6f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15064.png b/front/public/images/large/gregtech/gt.metaitem.01/15064.png deleted file mode 100644 index a2c9776812..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15065.png b/front/public/images/large/gregtech/gt.metaitem.01/15065.png deleted file mode 100644 index 8729a575dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15066.png b/front/public/images/large/gregtech/gt.metaitem.01/15066.png deleted file mode 100644 index 24c89b3706..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15067.png b/front/public/images/large/gregtech/gt.metaitem.01/15067.png deleted file mode 100644 index 9e88194210..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15068.png b/front/public/images/large/gregtech/gt.metaitem.01/15068.png deleted file mode 100644 index f6b8916eae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15069.png b/front/public/images/large/gregtech/gt.metaitem.01/15069.png deleted file mode 100644 index 8d29320064..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15070.png b/front/public/images/large/gregtech/gt.metaitem.01/15070.png deleted file mode 100644 index 5829e3aff7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15071.png b/front/public/images/large/gregtech/gt.metaitem.01/15071.png deleted file mode 100644 index 950870993b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15072.png b/front/public/images/large/gregtech/gt.metaitem.01/15072.png deleted file mode 100644 index 1cf35fb6f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15073.png b/front/public/images/large/gregtech/gt.metaitem.01/15073.png deleted file mode 100644 index 01f645226c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15074.png b/front/public/images/large/gregtech/gt.metaitem.01/15074.png deleted file mode 100644 index 75993f424b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15075.png b/front/public/images/large/gregtech/gt.metaitem.01/15075.png deleted file mode 100644 index 251f94c8a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15076.png b/front/public/images/large/gregtech/gt.metaitem.01/15076.png deleted file mode 100644 index 94c421be80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15077.png b/front/public/images/large/gregtech/gt.metaitem.01/15077.png deleted file mode 100644 index 408514de0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15078.png b/front/public/images/large/gregtech/gt.metaitem.01/15078.png deleted file mode 100644 index 5f70c923b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15080.png b/front/public/images/large/gregtech/gt.metaitem.01/15080.png deleted file mode 100644 index 218bb29927..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15081.png b/front/public/images/large/gregtech/gt.metaitem.01/15081.png deleted file mode 100644 index 4dd28fb568..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15083.png b/front/public/images/large/gregtech/gt.metaitem.01/15083.png deleted file mode 100644 index dd78185bd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15084.png b/front/public/images/large/gregtech/gt.metaitem.01/15084.png deleted file mode 100644 index 08a11dd337..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15085.png b/front/public/images/large/gregtech/gt.metaitem.01/15085.png deleted file mode 100644 index 288919125d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15086.png b/front/public/images/large/gregtech/gt.metaitem.01/15086.png deleted file mode 100644 index ad51796992..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15089.png b/front/public/images/large/gregtech/gt.metaitem.01/15089.png deleted file mode 100644 index 6fc7a14719..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15090.png b/front/public/images/large/gregtech/gt.metaitem.01/15090.png deleted file mode 100644 index d71a89d939..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15096.png b/front/public/images/large/gregtech/gt.metaitem.01/15096.png deleted file mode 100644 index ab34960e1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15097.png b/front/public/images/large/gregtech/gt.metaitem.01/15097.png deleted file mode 100644 index a7c4d25e4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15098.png b/front/public/images/large/gregtech/gt.metaitem.01/15098.png deleted file mode 100644 index 8dfb2ea6e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15100.png b/front/public/images/large/gregtech/gt.metaitem.01/15100.png deleted file mode 100644 index 36c34cc415..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15101.png b/front/public/images/large/gregtech/gt.metaitem.01/15101.png deleted file mode 100644 index 8ff677a3e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15103.png b/front/public/images/large/gregtech/gt.metaitem.01/15103.png deleted file mode 100644 index f860da7d9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15111.png b/front/public/images/large/gregtech/gt.metaitem.01/15111.png deleted file mode 100644 index 66b25cec96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15112.png b/front/public/images/large/gregtech/gt.metaitem.01/15112.png deleted file mode 100644 index 361856e92d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15129.png b/front/public/images/large/gregtech/gt.metaitem.01/15129.png deleted file mode 100644 index dd8d63327c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15131.png b/front/public/images/large/gregtech/gt.metaitem.01/15131.png deleted file mode 100644 index ffc75ffb4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15134.png b/front/public/images/large/gregtech/gt.metaitem.01/15134.png deleted file mode 100644 index 2f94d216fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15139.png b/front/public/images/large/gregtech/gt.metaitem.01/15139.png deleted file mode 100644 index 5c51c06ee1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15141.png b/front/public/images/large/gregtech/gt.metaitem.01/15141.png deleted file mode 100644 index 55f5f05df6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15143.png b/front/public/images/large/gregtech/gt.metaitem.01/15143.png deleted file mode 100644 index 115fd6bf39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15201.png b/front/public/images/large/gregtech/gt.metaitem.01/15201.png deleted file mode 100644 index c32e3e01f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15202.png b/front/public/images/large/gregtech/gt.metaitem.01/15202.png deleted file mode 100644 index c00404da03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15203.png b/front/public/images/large/gregtech/gt.metaitem.01/15203.png deleted file mode 100644 index c5e1282f23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15205.png b/front/public/images/large/gregtech/gt.metaitem.01/15205.png deleted file mode 100644 index 64a402cc03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15300.png b/front/public/images/large/gregtech/gt.metaitem.01/15300.png deleted file mode 100644 index 5cffd31281..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15301.png b/front/public/images/large/gregtech/gt.metaitem.01/15301.png deleted file mode 100644 index c820a3d17e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15302.png b/front/public/images/large/gregtech/gt.metaitem.01/15302.png deleted file mode 100644 index 422c83148b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15303.png b/front/public/images/large/gregtech/gt.metaitem.01/15303.png deleted file mode 100644 index 36bf230e35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15304.png b/front/public/images/large/gregtech/gt.metaitem.01/15304.png deleted file mode 100644 index 873641d441..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15305.png b/front/public/images/large/gregtech/gt.metaitem.01/15305.png deleted file mode 100644 index c7ea44f09b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15306.png b/front/public/images/large/gregtech/gt.metaitem.01/15306.png deleted file mode 100644 index 34ef5665dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15307.png b/front/public/images/large/gregtech/gt.metaitem.01/15307.png deleted file mode 100644 index 873641d441..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15308.png b/front/public/images/large/gregtech/gt.metaitem.01/15308.png deleted file mode 100644 index 2bfe2a6540..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15309.png b/front/public/images/large/gregtech/gt.metaitem.01/15309.png deleted file mode 100644 index ab144ca19c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15310.png b/front/public/images/large/gregtech/gt.metaitem.01/15310.png deleted file mode 100644 index 079aaabee3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15311.png b/front/public/images/large/gregtech/gt.metaitem.01/15311.png deleted file mode 100644 index ba5be155a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15312.png b/front/public/images/large/gregtech/gt.metaitem.01/15312.png deleted file mode 100644 index d5e43f4b17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15313.png b/front/public/images/large/gregtech/gt.metaitem.01/15313.png deleted file mode 100644 index 1a71a5a442..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15314.png b/front/public/images/large/gregtech/gt.metaitem.01/15314.png deleted file mode 100644 index 64aaa706f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15315.png b/front/public/images/large/gregtech/gt.metaitem.01/15315.png deleted file mode 100644 index 09674f6561..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15316.png b/front/public/images/large/gregtech/gt.metaitem.01/15316.png deleted file mode 100644 index 2185790e0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15317.png b/front/public/images/large/gregtech/gt.metaitem.01/15317.png deleted file mode 100644 index 53410c906b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15318.png b/front/public/images/large/gregtech/gt.metaitem.01/15318.png deleted file mode 100644 index 3d6735c306..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15319.png b/front/public/images/large/gregtech/gt.metaitem.01/15319.png deleted file mode 100644 index 1cf35fb6f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15320.png b/front/public/images/large/gregtech/gt.metaitem.01/15320.png deleted file mode 100644 index 9a0e077eec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15321.png b/front/public/images/large/gregtech/gt.metaitem.01/15321.png deleted file mode 100644 index 1abe2878fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15323.png b/front/public/images/large/gregtech/gt.metaitem.01/15323.png deleted file mode 100644 index 4aabd073aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15324.png b/front/public/images/large/gregtech/gt.metaitem.01/15324.png deleted file mode 100644 index 4dd28fb568..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15325.png b/front/public/images/large/gregtech/gt.metaitem.01/15325.png deleted file mode 100644 index 33d15a2109..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15326.png b/front/public/images/large/gregtech/gt.metaitem.01/15326.png deleted file mode 100644 index fc09e4f20b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15327.png b/front/public/images/large/gregtech/gt.metaitem.01/15327.png deleted file mode 100644 index 2e37f45bf0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15328.png b/front/public/images/large/gregtech/gt.metaitem.01/15328.png deleted file mode 100644 index 1cf35fb6f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15329.png b/front/public/images/large/gregtech/gt.metaitem.01/15329.png deleted file mode 100644 index 8bdfc0bdd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15330.png b/front/public/images/large/gregtech/gt.metaitem.01/15330.png deleted file mode 100644 index 91c5589513..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15331.png b/front/public/images/large/gregtech/gt.metaitem.01/15331.png deleted file mode 100644 index 0d38f03149..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15333.png b/front/public/images/large/gregtech/gt.metaitem.01/15333.png deleted file mode 100644 index 441c46c1b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15334.png b/front/public/images/large/gregtech/gt.metaitem.01/15334.png deleted file mode 100644 index 9e88194210..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15335.png b/front/public/images/large/gregtech/gt.metaitem.01/15335.png deleted file mode 100644 index d2f1add298..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15336.png b/front/public/images/large/gregtech/gt.metaitem.01/15336.png deleted file mode 100644 index c0d36b6b7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15337.png b/front/public/images/large/gregtech/gt.metaitem.01/15337.png deleted file mode 100644 index 3d7c85d3e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15338.png b/front/public/images/large/gregtech/gt.metaitem.01/15338.png deleted file mode 100644 index ebd4386a70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15339.png b/front/public/images/large/gregtech/gt.metaitem.01/15339.png deleted file mode 100644 index cd82d36307..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15340.png b/front/public/images/large/gregtech/gt.metaitem.01/15340.png deleted file mode 100644 index 467e764ddd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15341.png b/front/public/images/large/gregtech/gt.metaitem.01/15341.png deleted file mode 100644 index 5b31da41ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15342.png b/front/public/images/large/gregtech/gt.metaitem.01/15342.png deleted file mode 100644 index 48c864808e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15343.png b/front/public/images/large/gregtech/gt.metaitem.01/15343.png deleted file mode 100644 index 6fbb5d0a5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15344.png b/front/public/images/large/gregtech/gt.metaitem.01/15344.png deleted file mode 100644 index 6ba9fe8035..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15345.png b/front/public/images/large/gregtech/gt.metaitem.01/15345.png deleted file mode 100644 index d0b777ddfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15346.png b/front/public/images/large/gregtech/gt.metaitem.01/15346.png deleted file mode 100644 index 1f9c41b7a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15348.png b/front/public/images/large/gregtech/gt.metaitem.01/15348.png deleted file mode 100644 index a2a11df039..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15349.png b/front/public/images/large/gregtech/gt.metaitem.01/15349.png deleted file mode 100644 index 7e8610ba1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15350.png b/front/public/images/large/gregtech/gt.metaitem.01/15350.png deleted file mode 100644 index be716d64ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15351.png b/front/public/images/large/gregtech/gt.metaitem.01/15351.png deleted file mode 100644 index 8a2a19b859..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15352.png b/front/public/images/large/gregtech/gt.metaitem.01/15352.png deleted file mode 100644 index 302be38f37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15353.png b/front/public/images/large/gregtech/gt.metaitem.01/15353.png deleted file mode 100644 index 88eec0d5cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15354.png b/front/public/images/large/gregtech/gt.metaitem.01/15354.png deleted file mode 100644 index 0e98c2aa4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15355.png b/front/public/images/large/gregtech/gt.metaitem.01/15355.png deleted file mode 100644 index b3e28efd3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15356.png b/front/public/images/large/gregtech/gt.metaitem.01/15356.png deleted file mode 100644 index f9535a5134..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15357.png b/front/public/images/large/gregtech/gt.metaitem.01/15357.png deleted file mode 100644 index 5b825ad518..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15358.png b/front/public/images/large/gregtech/gt.metaitem.01/15358.png deleted file mode 100644 index 9299d5a7ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15359.png b/front/public/images/large/gregtech/gt.metaitem.01/15359.png deleted file mode 100644 index 89cc38f8ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15360.png b/front/public/images/large/gregtech/gt.metaitem.01/15360.png deleted file mode 100644 index 1ee4e27442..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15361.png b/front/public/images/large/gregtech/gt.metaitem.01/15361.png deleted file mode 100644 index 45bc48c3ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15362.png b/front/public/images/large/gregtech/gt.metaitem.01/15362.png deleted file mode 100644 index e77e46be57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15363.png b/front/public/images/large/gregtech/gt.metaitem.01/15363.png deleted file mode 100644 index f860da7d9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15364.png b/front/public/images/large/gregtech/gt.metaitem.01/15364.png deleted file mode 100644 index 7c122cbcfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15365.png b/front/public/images/large/gregtech/gt.metaitem.01/15365.png deleted file mode 100644 index 85aca0927f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15366.png b/front/public/images/large/gregtech/gt.metaitem.01/15366.png deleted file mode 100644 index 7de664c928..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15367.png b/front/public/images/large/gregtech/gt.metaitem.01/15367.png deleted file mode 100644 index a021c6912f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15368.png b/front/public/images/large/gregtech/gt.metaitem.01/15368.png deleted file mode 100644 index d98977a5cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15369.png b/front/public/images/large/gregtech/gt.metaitem.01/15369.png deleted file mode 100644 index 6d6698b102..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15370.png b/front/public/images/large/gregtech/gt.metaitem.01/15370.png deleted file mode 100644 index c472498817..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15371.png b/front/public/images/large/gregtech/gt.metaitem.01/15371.png deleted file mode 100644 index 797856bc54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15372.png b/front/public/images/large/gregtech/gt.metaitem.01/15372.png deleted file mode 100644 index fe52ab7d28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15373.png b/front/public/images/large/gregtech/gt.metaitem.01/15373.png deleted file mode 100644 index a5632600b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15374.png b/front/public/images/large/gregtech/gt.metaitem.01/15374.png deleted file mode 100644 index 49714e46b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15378.png b/front/public/images/large/gregtech/gt.metaitem.01/15378.png deleted file mode 100644 index 8744f1e6cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15379.png b/front/public/images/large/gregtech/gt.metaitem.01/15379.png deleted file mode 100644 index ec18d9e7f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15380.png b/front/public/images/large/gregtech/gt.metaitem.01/15380.png deleted file mode 100644 index edba97489e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15381.png b/front/public/images/large/gregtech/gt.metaitem.01/15381.png deleted file mode 100644 index 2ee579b39d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15382.png b/front/public/images/large/gregtech/gt.metaitem.01/15382.png deleted file mode 100644 index cc4e39f97f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15383.png b/front/public/images/large/gregtech/gt.metaitem.01/15383.png deleted file mode 100644 index 7eddf89d72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15384.png b/front/public/images/large/gregtech/gt.metaitem.01/15384.png deleted file mode 100644 index 61975cb78a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15385.png b/front/public/images/large/gregtech/gt.metaitem.01/15385.png deleted file mode 100644 index bedea6bd11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15386.png b/front/public/images/large/gregtech/gt.metaitem.01/15386.png deleted file mode 100644 index 5f4f09dc85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15387.png b/front/public/images/large/gregtech/gt.metaitem.01/15387.png deleted file mode 100644 index 11a0b5ba75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15388.png b/front/public/images/large/gregtech/gt.metaitem.01/15388.png deleted file mode 100644 index a4c4a818c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15389.png b/front/public/images/large/gregtech/gt.metaitem.01/15389.png deleted file mode 100644 index 8e6bc925a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15390.png b/front/public/images/large/gregtech/gt.metaitem.01/15390.png deleted file mode 100644 index 1f377c5dc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15391.png b/front/public/images/large/gregtech/gt.metaitem.01/15391.png deleted file mode 100644 index 2038505071..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15392.png b/front/public/images/large/gregtech/gt.metaitem.01/15392.png deleted file mode 100644 index 9648242c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15393.png b/front/public/images/large/gregtech/gt.metaitem.01/15393.png deleted file mode 100644 index 5b3f229c11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15394.png b/front/public/images/large/gregtech/gt.metaitem.01/15394.png deleted file mode 100644 index 1cf35fb6f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15395.png b/front/public/images/large/gregtech/gt.metaitem.01/15395.png deleted file mode 100644 index a4c4a818c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15397.png b/front/public/images/large/gregtech/gt.metaitem.01/15397.png deleted file mode 100644 index 3df338fce6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15398.png b/front/public/images/large/gregtech/gt.metaitem.01/15398.png deleted file mode 100644 index 1afd43a9da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15399.png b/front/public/images/large/gregtech/gt.metaitem.01/15399.png deleted file mode 100644 index b10d8b01b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15400.png b/front/public/images/large/gregtech/gt.metaitem.01/15400.png deleted file mode 100644 index d9d5f29105..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15401.png b/front/public/images/large/gregtech/gt.metaitem.01/15401.png deleted file mode 100644 index 9004a7f980..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15402.png b/front/public/images/large/gregtech/gt.metaitem.01/15402.png deleted file mode 100644 index 8f81a26828..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15403.png b/front/public/images/large/gregtech/gt.metaitem.01/15403.png deleted file mode 100644 index 79a7dfbfd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15404.png b/front/public/images/large/gregtech/gt.metaitem.01/15404.png deleted file mode 100644 index d49d66a041..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15405.png b/front/public/images/large/gregtech/gt.metaitem.01/15405.png deleted file mode 100644 index dbe659a210..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15406.png b/front/public/images/large/gregtech/gt.metaitem.01/15406.png deleted file mode 100644 index ebcc96b460..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15407.png b/front/public/images/large/gregtech/gt.metaitem.01/15407.png deleted file mode 100644 index 6aa442aab7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15408.png b/front/public/images/large/gregtech/gt.metaitem.01/15408.png deleted file mode 100644 index b3403ba7be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15470.png b/front/public/images/large/gregtech/gt.metaitem.01/15470.png deleted file mode 100644 index 3333c3c86d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15471.png b/front/public/images/large/gregtech/gt.metaitem.01/15471.png deleted file mode 100644 index 9d7d8765e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15472.png b/front/public/images/large/gregtech/gt.metaitem.01/15472.png deleted file mode 100644 index a4c4a818c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15473.png b/front/public/images/large/gregtech/gt.metaitem.01/15473.png deleted file mode 100644 index ddba1a7bd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15485.png b/front/public/images/large/gregtech/gt.metaitem.01/15485.png deleted file mode 100644 index 92bd6783d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15488.png b/front/public/images/large/gregtech/gt.metaitem.01/15488.png deleted file mode 100644 index 698543139c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15489.png b/front/public/images/large/gregtech/gt.metaitem.01/15489.png deleted file mode 100644 index 0a553a44de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15521.png b/front/public/images/large/gregtech/gt.metaitem.01/15521.png deleted file mode 100644 index 3d6735c306..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15529.png b/front/public/images/large/gregtech/gt.metaitem.01/15529.png deleted file mode 100644 index 9c5d2f05b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15576.png b/front/public/images/large/gregtech/gt.metaitem.01/15576.png deleted file mode 100644 index ee15fbaa09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15581.png b/front/public/images/large/gregtech/gt.metaitem.01/15581.png deleted file mode 100644 index 059b345118..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15582.png b/front/public/images/large/gregtech/gt.metaitem.01/15582.png deleted file mode 100644 index a2bd2631ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15585.png b/front/public/images/large/gregtech/gt.metaitem.01/15585.png deleted file mode 100644 index 7b11096876..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15586.png b/front/public/images/large/gregtech/gt.metaitem.01/15586.png deleted file mode 100644 index 2ef05f7b8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15588.png b/front/public/images/large/gregtech/gt.metaitem.01/15588.png deleted file mode 100644 index f230b54201..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15599.png b/front/public/images/large/gregtech/gt.metaitem.01/15599.png deleted file mode 100644 index 46762c0204..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15610.png b/front/public/images/large/gregtech/gt.metaitem.01/15610.png deleted file mode 100644 index 5122cd366c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15613.png b/front/public/images/large/gregtech/gt.metaitem.01/15613.png deleted file mode 100644 index 184cc8f20a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15631.png b/front/public/images/large/gregtech/gt.metaitem.01/15631.png deleted file mode 100644 index 8b287b6814..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15635.png b/front/public/images/large/gregtech/gt.metaitem.01/15635.png deleted file mode 100644 index afcf12ab3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15636.png b/front/public/images/large/gregtech/gt.metaitem.01/15636.png deleted file mode 100644 index 4ac02391ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15649.png b/front/public/images/large/gregtech/gt.metaitem.01/15649.png deleted file mode 100644 index 1650485599..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15765.png b/front/public/images/large/gregtech/gt.metaitem.01/15765.png deleted file mode 100644 index 2be40aabe8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15770.png b/front/public/images/large/gregtech/gt.metaitem.01/15770.png deleted file mode 100644 index f614f3fc1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15772.png b/front/public/images/large/gregtech/gt.metaitem.01/15772.png deleted file mode 100644 index a30de2b7d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15829.png b/front/public/images/large/gregtech/gt.metaitem.01/15829.png deleted file mode 100644 index 7d6dce8381..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15856.png b/front/public/images/large/gregtech/gt.metaitem.01/15856.png deleted file mode 100644 index cde1a383cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15868.png b/front/public/images/large/gregtech/gt.metaitem.01/15868.png deleted file mode 100644 index 1db91ce411..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15874.png b/front/public/images/large/gregtech/gt.metaitem.01/15874.png deleted file mode 100644 index 01500cffcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15880.png b/front/public/images/large/gregtech/gt.metaitem.01/15880.png deleted file mode 100644 index 2ef05f7b8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15884.png b/front/public/images/large/gregtech/gt.metaitem.01/15884.png deleted file mode 100644 index 8340db1deb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15912.png b/front/public/images/large/gregtech/gt.metaitem.01/15912.png deleted file mode 100644 index e9c1315826..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15913.png b/front/public/images/large/gregtech/gt.metaitem.01/15913.png deleted file mode 100644 index 2f40048328..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15951.png b/front/public/images/large/gregtech/gt.metaitem.01/15951.png deleted file mode 100644 index a66292886f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15952.png b/front/public/images/large/gregtech/gt.metaitem.01/15952.png deleted file mode 100644 index 4208813b63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15956.png b/front/public/images/large/gregtech/gt.metaitem.01/15956.png deleted file mode 100644 index 2d88c1ec4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15966.png b/front/public/images/large/gregtech/gt.metaitem.01/15966.png deleted file mode 100644 index ce91bfbb38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15970.png b/front/public/images/large/gregtech/gt.metaitem.01/15970.png deleted file mode 100644 index 795a375683..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15974.png b/front/public/images/large/gregtech/gt.metaitem.01/15974.png deleted file mode 100644 index e040eabd49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15975.png b/front/public/images/large/gregtech/gt.metaitem.01/15975.png deleted file mode 100644 index 1e68798151..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15976.png b/front/public/images/large/gregtech/gt.metaitem.01/15976.png deleted file mode 100644 index 39fe6f360c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15977.png b/front/public/images/large/gregtech/gt.metaitem.01/15977.png deleted file mode 100644 index 3dafc959b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15978.png b/front/public/images/large/gregtech/gt.metaitem.01/15978.png deleted file mode 100644 index 7b6515cf33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15979.png b/front/public/images/large/gregtech/gt.metaitem.01/15979.png deleted file mode 100644 index 7eee266a88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15980.png b/front/public/images/large/gregtech/gt.metaitem.01/15980.png deleted file mode 100644 index 72e40aedb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15981.png b/front/public/images/large/gregtech/gt.metaitem.01/15981.png deleted file mode 100644 index 41bc0dd3d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15982.png b/front/public/images/large/gregtech/gt.metaitem.01/15982.png deleted file mode 100644 index 39b322767e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15984.png b/front/public/images/large/gregtech/gt.metaitem.01/15984.png deleted file mode 100644 index 1cf35fb6f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15985.png b/front/public/images/large/gregtech/gt.metaitem.01/15985.png deleted file mode 100644 index 1f399c2ff1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15986.png b/front/public/images/large/gregtech/gt.metaitem.01/15986.png deleted file mode 100644 index 1c607e1cd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15987.png b/front/public/images/large/gregtech/gt.metaitem.01/15987.png deleted file mode 100644 index bb14a6162e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15988.png b/front/public/images/large/gregtech/gt.metaitem.01/15988.png deleted file mode 100644 index e0505f2502..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15989.png b/front/public/images/large/gregtech/gt.metaitem.01/15989.png deleted file mode 100644 index 1ea30a1201..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15990.png b/front/public/images/large/gregtech/gt.metaitem.01/15990.png deleted file mode 100644 index 1771676ad5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15991.png b/front/public/images/large/gregtech/gt.metaitem.01/15991.png deleted file mode 100644 index 5826109a6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/15992.png b/front/public/images/large/gregtech/gt.metaitem.01/15992.png deleted file mode 100644 index 5d05818262..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/15992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16006.png b/front/public/images/large/gregtech/gt.metaitem.01/16006.png deleted file mode 100644 index 6f8bc484f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16008.png b/front/public/images/large/gregtech/gt.metaitem.01/16008.png deleted file mode 100644 index a54c19d4f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16010.png b/front/public/images/large/gregtech/gt.metaitem.01/16010.png deleted file mode 100644 index 175b2ac0af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16018.png b/front/public/images/large/gregtech/gt.metaitem.01/16018.png deleted file mode 100644 index 1cbcc94838..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16019.png b/front/public/images/large/gregtech/gt.metaitem.01/16019.png deleted file mode 100644 index 30afe51827..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16020.png b/front/public/images/large/gregtech/gt.metaitem.01/16020.png deleted file mode 100644 index 010d5953c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16025.png b/front/public/images/large/gregtech/gt.metaitem.01/16025.png deleted file mode 100644 index c37c52c5ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16027.png b/front/public/images/large/gregtech/gt.metaitem.01/16027.png deleted file mode 100644 index b68465f986..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16028.png b/front/public/images/large/gregtech/gt.metaitem.01/16028.png deleted file mode 100644 index 40fb4d5b06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16029.png b/front/public/images/large/gregtech/gt.metaitem.01/16029.png deleted file mode 100644 index 2f86c76445..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16030.png b/front/public/images/large/gregtech/gt.metaitem.01/16030.png deleted file mode 100644 index 31db9be4a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16031.png b/front/public/images/large/gregtech/gt.metaitem.01/16031.png deleted file mode 100644 index 1592fd87de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16032.png b/front/public/images/large/gregtech/gt.metaitem.01/16032.png deleted file mode 100644 index 107d8df98a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16033.png b/front/public/images/large/gregtech/gt.metaitem.01/16033.png deleted file mode 100644 index 6b929026a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16034.png b/front/public/images/large/gregtech/gt.metaitem.01/16034.png deleted file mode 100644 index 5faa8be44d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16035.png b/front/public/images/large/gregtech/gt.metaitem.01/16035.png deleted file mode 100644 index 735a30573f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16036.png b/front/public/images/large/gregtech/gt.metaitem.01/16036.png deleted file mode 100644 index 62998f73ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16037.png b/front/public/images/large/gregtech/gt.metaitem.01/16037.png deleted file mode 100644 index 0447b086a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16039.png b/front/public/images/large/gregtech/gt.metaitem.01/16039.png deleted file mode 100644 index 189f781d4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16043.png b/front/public/images/large/gregtech/gt.metaitem.01/16043.png deleted file mode 100644 index 7f407967ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16045.png b/front/public/images/large/gregtech/gt.metaitem.01/16045.png deleted file mode 100644 index b1e6af82aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16047.png b/front/public/images/large/gregtech/gt.metaitem.01/16047.png deleted file mode 100644 index a682443503..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16048.png b/front/public/images/large/gregtech/gt.metaitem.01/16048.png deleted file mode 100644 index 970baa11fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16052.png b/front/public/images/large/gregtech/gt.metaitem.01/16052.png deleted file mode 100644 index 158dd3e677..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16054.png b/front/public/images/large/gregtech/gt.metaitem.01/16054.png deleted file mode 100644 index 0447b086a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16056.png b/front/public/images/large/gregtech/gt.metaitem.01/16056.png deleted file mode 100644 index b286f7c8ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16057.png b/front/public/images/large/gregtech/gt.metaitem.01/16057.png deleted file mode 100644 index 5f56fe6fc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16058.png b/front/public/images/large/gregtech/gt.metaitem.01/16058.png deleted file mode 100644 index 953665c038..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16059.png b/front/public/images/large/gregtech/gt.metaitem.01/16059.png deleted file mode 100644 index 1d8806342d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16062.png b/front/public/images/large/gregtech/gt.metaitem.01/16062.png deleted file mode 100644 index fd4432f4bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16063.png b/front/public/images/large/gregtech/gt.metaitem.01/16063.png deleted file mode 100644 index 961eabbdbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16064.png b/front/public/images/large/gregtech/gt.metaitem.01/16064.png deleted file mode 100644 index 423b918fc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16065.png b/front/public/images/large/gregtech/gt.metaitem.01/16065.png deleted file mode 100644 index 2e69abbb89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16066.png b/front/public/images/large/gregtech/gt.metaitem.01/16066.png deleted file mode 100644 index 8e88289faa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16067.png b/front/public/images/large/gregtech/gt.metaitem.01/16067.png deleted file mode 100644 index 2d29cab4ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16068.png b/front/public/images/large/gregtech/gt.metaitem.01/16068.png deleted file mode 100644 index 0907d8b76f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16069.png b/front/public/images/large/gregtech/gt.metaitem.01/16069.png deleted file mode 100644 index fb703ba06a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16070.png b/front/public/images/large/gregtech/gt.metaitem.01/16070.png deleted file mode 100644 index 345bfc63ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16071.png b/front/public/images/large/gregtech/gt.metaitem.01/16071.png deleted file mode 100644 index 6501e9dc7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16072.png b/front/public/images/large/gregtech/gt.metaitem.01/16072.png deleted file mode 100644 index 961eabbdbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16073.png b/front/public/images/large/gregtech/gt.metaitem.01/16073.png deleted file mode 100644 index 811b902bba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16074.png b/front/public/images/large/gregtech/gt.metaitem.01/16074.png deleted file mode 100644 index 76850fe5d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16075.png b/front/public/images/large/gregtech/gt.metaitem.01/16075.png deleted file mode 100644 index 434ae8592d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16076.png b/front/public/images/large/gregtech/gt.metaitem.01/16076.png deleted file mode 100644 index 923f5e8043..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16077.png b/front/public/images/large/gregtech/gt.metaitem.01/16077.png deleted file mode 100644 index 0d6304f9ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16078.png b/front/public/images/large/gregtech/gt.metaitem.01/16078.png deleted file mode 100644 index 7e2f3c0599..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16080.png b/front/public/images/large/gregtech/gt.metaitem.01/16080.png deleted file mode 100644 index a6ae5d17c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16081.png b/front/public/images/large/gregtech/gt.metaitem.01/16081.png deleted file mode 100644 index 2f86c76445..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16083.png b/front/public/images/large/gregtech/gt.metaitem.01/16083.png deleted file mode 100644 index 46e4715756..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16084.png b/front/public/images/large/gregtech/gt.metaitem.01/16084.png deleted file mode 100644 index e49218a8a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16085.png b/front/public/images/large/gregtech/gt.metaitem.01/16085.png deleted file mode 100644 index 1932cb6a88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16086.png b/front/public/images/large/gregtech/gt.metaitem.01/16086.png deleted file mode 100644 index c70145e783..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16089.png b/front/public/images/large/gregtech/gt.metaitem.01/16089.png deleted file mode 100644 index 9ce517e1c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16090.png b/front/public/images/large/gregtech/gt.metaitem.01/16090.png deleted file mode 100644 index dac2a1d541..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16096.png b/front/public/images/large/gregtech/gt.metaitem.01/16096.png deleted file mode 100644 index b29eb655bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16097.png b/front/public/images/large/gregtech/gt.metaitem.01/16097.png deleted file mode 100644 index 8c92fb472f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16098.png b/front/public/images/large/gregtech/gt.metaitem.01/16098.png deleted file mode 100644 index 22ce5e157e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16100.png b/front/public/images/large/gregtech/gt.metaitem.01/16100.png deleted file mode 100644 index 92a8cd25a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16101.png b/front/public/images/large/gregtech/gt.metaitem.01/16101.png deleted file mode 100644 index 6d1f3c3dbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16103.png b/front/public/images/large/gregtech/gt.metaitem.01/16103.png deleted file mode 100644 index 107d8df98a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16111.png b/front/public/images/large/gregtech/gt.metaitem.01/16111.png deleted file mode 100644 index a84a2a7586..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16112.png b/front/public/images/large/gregtech/gt.metaitem.01/16112.png deleted file mode 100644 index 63cd73ec29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16129.png b/front/public/images/large/gregtech/gt.metaitem.01/16129.png deleted file mode 100644 index 1592fd87de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16131.png b/front/public/images/large/gregtech/gt.metaitem.01/16131.png deleted file mode 100644 index e76cf01aa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16134.png b/front/public/images/large/gregtech/gt.metaitem.01/16134.png deleted file mode 100644 index 8659c137ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16139.png b/front/public/images/large/gregtech/gt.metaitem.01/16139.png deleted file mode 100644 index 17847fa7b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16141.png b/front/public/images/large/gregtech/gt.metaitem.01/16141.png deleted file mode 100644 index e0599d1d0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16143.png b/front/public/images/large/gregtech/gt.metaitem.01/16143.png deleted file mode 100644 index 5c09c6065f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16201.png b/front/public/images/large/gregtech/gt.metaitem.01/16201.png deleted file mode 100644 index 0b30552767..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16202.png b/front/public/images/large/gregtech/gt.metaitem.01/16202.png deleted file mode 100644 index 28ef77a073..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16203.png b/front/public/images/large/gregtech/gt.metaitem.01/16203.png deleted file mode 100644 index 820f734e6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16205.png b/front/public/images/large/gregtech/gt.metaitem.01/16205.png deleted file mode 100644 index 176fbd7c9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16300.png b/front/public/images/large/gregtech/gt.metaitem.01/16300.png deleted file mode 100644 index 03fe80084e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16301.png b/front/public/images/large/gregtech/gt.metaitem.01/16301.png deleted file mode 100644 index 4277ffdedb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16302.png b/front/public/images/large/gregtech/gt.metaitem.01/16302.png deleted file mode 100644 index 9bf474c873..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16303.png b/front/public/images/large/gregtech/gt.metaitem.01/16303.png deleted file mode 100644 index 5dd9471bb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16304.png b/front/public/images/large/gregtech/gt.metaitem.01/16304.png deleted file mode 100644 index 7adcfc2f1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16305.png b/front/public/images/large/gregtech/gt.metaitem.01/16305.png deleted file mode 100644 index 158dd3e677..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16306.png b/front/public/images/large/gregtech/gt.metaitem.01/16306.png deleted file mode 100644 index a68f95d042..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16307.png b/front/public/images/large/gregtech/gt.metaitem.01/16307.png deleted file mode 100644 index 7adcfc2f1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16308.png b/front/public/images/large/gregtech/gt.metaitem.01/16308.png deleted file mode 100644 index 8d8eacc5b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16309.png b/front/public/images/large/gregtech/gt.metaitem.01/16309.png deleted file mode 100644 index c1362b99cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16310.png b/front/public/images/large/gregtech/gt.metaitem.01/16310.png deleted file mode 100644 index 99b89fa376..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16311.png b/front/public/images/large/gregtech/gt.metaitem.01/16311.png deleted file mode 100644 index a3a74aefdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16312.png b/front/public/images/large/gregtech/gt.metaitem.01/16312.png deleted file mode 100644 index d798e797fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16313.png b/front/public/images/large/gregtech/gt.metaitem.01/16313.png deleted file mode 100644 index 7fcda8c128..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16314.png b/front/public/images/large/gregtech/gt.metaitem.01/16314.png deleted file mode 100644 index 00b52621f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16315.png b/front/public/images/large/gregtech/gt.metaitem.01/16315.png deleted file mode 100644 index a3aa995e51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16316.png b/front/public/images/large/gregtech/gt.metaitem.01/16316.png deleted file mode 100644 index 55f5fd5aea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16317.png b/front/public/images/large/gregtech/gt.metaitem.01/16317.png deleted file mode 100644 index 978260dfa0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16318.png b/front/public/images/large/gregtech/gt.metaitem.01/16318.png deleted file mode 100644 index f74628cc0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16319.png b/front/public/images/large/gregtech/gt.metaitem.01/16319.png deleted file mode 100644 index 961eabbdbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16320.png b/front/public/images/large/gregtech/gt.metaitem.01/16320.png deleted file mode 100644 index 51ea547b74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16321.png b/front/public/images/large/gregtech/gt.metaitem.01/16321.png deleted file mode 100644 index befc3c388c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16323.png b/front/public/images/large/gregtech/gt.metaitem.01/16323.png deleted file mode 100644 index 260aebe76a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16324.png b/front/public/images/large/gregtech/gt.metaitem.01/16324.png deleted file mode 100644 index 2f86c76445..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16325.png b/front/public/images/large/gregtech/gt.metaitem.01/16325.png deleted file mode 100644 index c047443c43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16326.png b/front/public/images/large/gregtech/gt.metaitem.01/16326.png deleted file mode 100644 index 2c1e5ee92d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16327.png b/front/public/images/large/gregtech/gt.metaitem.01/16327.png deleted file mode 100644 index 1d5754873d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16328.png b/front/public/images/large/gregtech/gt.metaitem.01/16328.png deleted file mode 100644 index 961eabbdbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16329.png b/front/public/images/large/gregtech/gt.metaitem.01/16329.png deleted file mode 100644 index bd283d6604..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16330.png b/front/public/images/large/gregtech/gt.metaitem.01/16330.png deleted file mode 100644 index ecdff69f10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16331.png b/front/public/images/large/gregtech/gt.metaitem.01/16331.png deleted file mode 100644 index 9eb7533186..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16333.png b/front/public/images/large/gregtech/gt.metaitem.01/16333.png deleted file mode 100644 index 34704e1b23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16334.png b/front/public/images/large/gregtech/gt.metaitem.01/16334.png deleted file mode 100644 index 2d29cab4ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16335.png b/front/public/images/large/gregtech/gt.metaitem.01/16335.png deleted file mode 100644 index 2b903778df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16336.png b/front/public/images/large/gregtech/gt.metaitem.01/16336.png deleted file mode 100644 index 49a8776f2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16337.png b/front/public/images/large/gregtech/gt.metaitem.01/16337.png deleted file mode 100644 index d99d5f5d1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16338.png b/front/public/images/large/gregtech/gt.metaitem.01/16338.png deleted file mode 100644 index 5ad0ed0302..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16339.png b/front/public/images/large/gregtech/gt.metaitem.01/16339.png deleted file mode 100644 index c98adce93a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16340.png b/front/public/images/large/gregtech/gt.metaitem.01/16340.png deleted file mode 100644 index b2fc99a56e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16341.png b/front/public/images/large/gregtech/gt.metaitem.01/16341.png deleted file mode 100644 index 125375af7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16342.png b/front/public/images/large/gregtech/gt.metaitem.01/16342.png deleted file mode 100644 index d65ca51459..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16343.png b/front/public/images/large/gregtech/gt.metaitem.01/16343.png deleted file mode 100644 index 8616d6636b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16344.png b/front/public/images/large/gregtech/gt.metaitem.01/16344.png deleted file mode 100644 index 1568353fe5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16345.png b/front/public/images/large/gregtech/gt.metaitem.01/16345.png deleted file mode 100644 index ad0defed45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16346.png b/front/public/images/large/gregtech/gt.metaitem.01/16346.png deleted file mode 100644 index 6a83d840ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16348.png b/front/public/images/large/gregtech/gt.metaitem.01/16348.png deleted file mode 100644 index 359004e9e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16349.png b/front/public/images/large/gregtech/gt.metaitem.01/16349.png deleted file mode 100644 index c2adec2c11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16350.png b/front/public/images/large/gregtech/gt.metaitem.01/16350.png deleted file mode 100644 index eda9399207..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16351.png b/front/public/images/large/gregtech/gt.metaitem.01/16351.png deleted file mode 100644 index 5ec8666ced..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16352.png b/front/public/images/large/gregtech/gt.metaitem.01/16352.png deleted file mode 100644 index e99d10117e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16353.png b/front/public/images/large/gregtech/gt.metaitem.01/16353.png deleted file mode 100644 index a294c487cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16354.png b/front/public/images/large/gregtech/gt.metaitem.01/16354.png deleted file mode 100644 index dcfa1769a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16355.png b/front/public/images/large/gregtech/gt.metaitem.01/16355.png deleted file mode 100644 index b64381ab5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16356.png b/front/public/images/large/gregtech/gt.metaitem.01/16356.png deleted file mode 100644 index f4466fe139..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16357.png b/front/public/images/large/gregtech/gt.metaitem.01/16357.png deleted file mode 100644 index f0a8c64176..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16358.png b/front/public/images/large/gregtech/gt.metaitem.01/16358.png deleted file mode 100644 index 67e68d2932..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16359.png b/front/public/images/large/gregtech/gt.metaitem.01/16359.png deleted file mode 100644 index 0b257ec26b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16360.png b/front/public/images/large/gregtech/gt.metaitem.01/16360.png deleted file mode 100644 index 8fdffdc425..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16361.png b/front/public/images/large/gregtech/gt.metaitem.01/16361.png deleted file mode 100644 index 12c4de8618..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16362.png b/front/public/images/large/gregtech/gt.metaitem.01/16362.png deleted file mode 100644 index 8712c2f283..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16363.png b/front/public/images/large/gregtech/gt.metaitem.01/16363.png deleted file mode 100644 index 107d8df98a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16364.png b/front/public/images/large/gregtech/gt.metaitem.01/16364.png deleted file mode 100644 index fc65ef0344..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16365.png b/front/public/images/large/gregtech/gt.metaitem.01/16365.png deleted file mode 100644 index ff0ede13fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16366.png b/front/public/images/large/gregtech/gt.metaitem.01/16366.png deleted file mode 100644 index 9d6b0ecfdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16367.png b/front/public/images/large/gregtech/gt.metaitem.01/16367.png deleted file mode 100644 index 1a5e0fb256..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16368.png b/front/public/images/large/gregtech/gt.metaitem.01/16368.png deleted file mode 100644 index 5fba56f1a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16369.png b/front/public/images/large/gregtech/gt.metaitem.01/16369.png deleted file mode 100644 index f6d6ed2182..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16370.png b/front/public/images/large/gregtech/gt.metaitem.01/16370.png deleted file mode 100644 index bb202a33c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16371.png b/front/public/images/large/gregtech/gt.metaitem.01/16371.png deleted file mode 100644 index e6e3a8c1d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16372.png b/front/public/images/large/gregtech/gt.metaitem.01/16372.png deleted file mode 100644 index a5751f7e89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16373.png b/front/public/images/large/gregtech/gt.metaitem.01/16373.png deleted file mode 100644 index 64cd9cbe2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16374.png b/front/public/images/large/gregtech/gt.metaitem.01/16374.png deleted file mode 100644 index 83385aae55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16378.png b/front/public/images/large/gregtech/gt.metaitem.01/16378.png deleted file mode 100644 index 167b902316..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16379.png b/front/public/images/large/gregtech/gt.metaitem.01/16379.png deleted file mode 100644 index 7e735aabb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16380.png b/front/public/images/large/gregtech/gt.metaitem.01/16380.png deleted file mode 100644 index b2ceb1fe0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16381.png b/front/public/images/large/gregtech/gt.metaitem.01/16381.png deleted file mode 100644 index 65dfeba98c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16382.png b/front/public/images/large/gregtech/gt.metaitem.01/16382.png deleted file mode 100644 index ae481e6675..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16383.png b/front/public/images/large/gregtech/gt.metaitem.01/16383.png deleted file mode 100644 index 459514d560..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16384.png b/front/public/images/large/gregtech/gt.metaitem.01/16384.png deleted file mode 100644 index ac0cdd68ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16385.png b/front/public/images/large/gregtech/gt.metaitem.01/16385.png deleted file mode 100644 index 5a44fe283e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16386.png b/front/public/images/large/gregtech/gt.metaitem.01/16386.png deleted file mode 100644 index 0e5c78b127..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16387.png b/front/public/images/large/gregtech/gt.metaitem.01/16387.png deleted file mode 100644 index d40fdeb21a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16388.png b/front/public/images/large/gregtech/gt.metaitem.01/16388.png deleted file mode 100644 index e139c935bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16389.png b/front/public/images/large/gregtech/gt.metaitem.01/16389.png deleted file mode 100644 index e43818102a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16390.png b/front/public/images/large/gregtech/gt.metaitem.01/16390.png deleted file mode 100644 index 655e7582a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16391.png b/front/public/images/large/gregtech/gt.metaitem.01/16391.png deleted file mode 100644 index 3ecfc7b853..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16392.png b/front/public/images/large/gregtech/gt.metaitem.01/16392.png deleted file mode 100644 index e7565c0d40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16393.png b/front/public/images/large/gregtech/gt.metaitem.01/16393.png deleted file mode 100644 index 508315b2e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16394.png b/front/public/images/large/gregtech/gt.metaitem.01/16394.png deleted file mode 100644 index 961eabbdbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16395.png b/front/public/images/large/gregtech/gt.metaitem.01/16395.png deleted file mode 100644 index e139c935bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16397.png b/front/public/images/large/gregtech/gt.metaitem.01/16397.png deleted file mode 100644 index 771a7ec4a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16398.png b/front/public/images/large/gregtech/gt.metaitem.01/16398.png deleted file mode 100644 index 96cd68f7e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16399.png b/front/public/images/large/gregtech/gt.metaitem.01/16399.png deleted file mode 100644 index 91d4e776b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16400.png b/front/public/images/large/gregtech/gt.metaitem.01/16400.png deleted file mode 100644 index 094b050d61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16401.png b/front/public/images/large/gregtech/gt.metaitem.01/16401.png deleted file mode 100644 index 3d3bb9d786..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16402.png b/front/public/images/large/gregtech/gt.metaitem.01/16402.png deleted file mode 100644 index 0dc85a9273..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16403.png b/front/public/images/large/gregtech/gt.metaitem.01/16403.png deleted file mode 100644 index bb11b66943..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16404.png b/front/public/images/large/gregtech/gt.metaitem.01/16404.png deleted file mode 100644 index b28d02a5bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16405.png b/front/public/images/large/gregtech/gt.metaitem.01/16405.png deleted file mode 100644 index 405d70e3b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16406.png b/front/public/images/large/gregtech/gt.metaitem.01/16406.png deleted file mode 100644 index 1352bac17f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16407.png b/front/public/images/large/gregtech/gt.metaitem.01/16407.png deleted file mode 100644 index 7a4969f131..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16408.png b/front/public/images/large/gregtech/gt.metaitem.01/16408.png deleted file mode 100644 index 067dab75ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16470.png b/front/public/images/large/gregtech/gt.metaitem.01/16470.png deleted file mode 100644 index efd9421a9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16471.png b/front/public/images/large/gregtech/gt.metaitem.01/16471.png deleted file mode 100644 index 5f56fe6fc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16472.png b/front/public/images/large/gregtech/gt.metaitem.01/16472.png deleted file mode 100644 index e139c935bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16473.png b/front/public/images/large/gregtech/gt.metaitem.01/16473.png deleted file mode 100644 index 8e3392f7ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16485.png b/front/public/images/large/gregtech/gt.metaitem.01/16485.png deleted file mode 100644 index f46492c60f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16488.png b/front/public/images/large/gregtech/gt.metaitem.01/16488.png deleted file mode 100644 index 6cacb91047..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16489.png b/front/public/images/large/gregtech/gt.metaitem.01/16489.png deleted file mode 100644 index 6963c8d434..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16521.png b/front/public/images/large/gregtech/gt.metaitem.01/16521.png deleted file mode 100644 index f74628cc0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16529.png b/front/public/images/large/gregtech/gt.metaitem.01/16529.png deleted file mode 100644 index a9d2378dd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16576.png b/front/public/images/large/gregtech/gt.metaitem.01/16576.png deleted file mode 100644 index 6c1c02a428..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16581.png b/front/public/images/large/gregtech/gt.metaitem.01/16581.png deleted file mode 100644 index f0213ecb46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16582.png b/front/public/images/large/gregtech/gt.metaitem.01/16582.png deleted file mode 100644 index 2445615d3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16585.png b/front/public/images/large/gregtech/gt.metaitem.01/16585.png deleted file mode 100644 index 68ea8cd8f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16586.png b/front/public/images/large/gregtech/gt.metaitem.01/16586.png deleted file mode 100644 index 458840d6cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16588.png b/front/public/images/large/gregtech/gt.metaitem.01/16588.png deleted file mode 100644 index 70e8582e1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16599.png b/front/public/images/large/gregtech/gt.metaitem.01/16599.png deleted file mode 100644 index 3e2b63b2f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16610.png b/front/public/images/large/gregtech/gt.metaitem.01/16610.png deleted file mode 100644 index c617043fa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16613.png b/front/public/images/large/gregtech/gt.metaitem.01/16613.png deleted file mode 100644 index 49b7aadc4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16631.png b/front/public/images/large/gregtech/gt.metaitem.01/16631.png deleted file mode 100644 index 5d747b4263..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16635.png b/front/public/images/large/gregtech/gt.metaitem.01/16635.png deleted file mode 100644 index 529ede386c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16636.png b/front/public/images/large/gregtech/gt.metaitem.01/16636.png deleted file mode 100644 index 4dc0d4c556..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16649.png b/front/public/images/large/gregtech/gt.metaitem.01/16649.png deleted file mode 100644 index 18e20be429..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16765.png b/front/public/images/large/gregtech/gt.metaitem.01/16765.png deleted file mode 100644 index 37e4239631..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16770.png b/front/public/images/large/gregtech/gt.metaitem.01/16770.png deleted file mode 100644 index 8e0c0819b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16772.png b/front/public/images/large/gregtech/gt.metaitem.01/16772.png deleted file mode 100644 index 6ace08b630..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16829.png b/front/public/images/large/gregtech/gt.metaitem.01/16829.png deleted file mode 100644 index dfa9506d04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16856.png b/front/public/images/large/gregtech/gt.metaitem.01/16856.png deleted file mode 100644 index 361e77d6cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16868.png b/front/public/images/large/gregtech/gt.metaitem.01/16868.png deleted file mode 100644 index 104e6e8119..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16874.png b/front/public/images/large/gregtech/gt.metaitem.01/16874.png deleted file mode 100644 index 90a39e4b20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16880.png b/front/public/images/large/gregtech/gt.metaitem.01/16880.png deleted file mode 100644 index 458840d6cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16884.png b/front/public/images/large/gregtech/gt.metaitem.01/16884.png deleted file mode 100644 index 03e076aec2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16912.png b/front/public/images/large/gregtech/gt.metaitem.01/16912.png deleted file mode 100644 index fb7a0bfd9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16913.png b/front/public/images/large/gregtech/gt.metaitem.01/16913.png deleted file mode 100644 index c64c540e82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16951.png b/front/public/images/large/gregtech/gt.metaitem.01/16951.png deleted file mode 100644 index 9278dcd31e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16952.png b/front/public/images/large/gregtech/gt.metaitem.01/16952.png deleted file mode 100644 index 6d6510bdd0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16956.png b/front/public/images/large/gregtech/gt.metaitem.01/16956.png deleted file mode 100644 index 6101b07cdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16966.png b/front/public/images/large/gregtech/gt.metaitem.01/16966.png deleted file mode 100644 index 3dda8f90c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16970.png b/front/public/images/large/gregtech/gt.metaitem.01/16970.png deleted file mode 100644 index 3e721727d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16974.png b/front/public/images/large/gregtech/gt.metaitem.01/16974.png deleted file mode 100644 index a241db19bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16975.png b/front/public/images/large/gregtech/gt.metaitem.01/16975.png deleted file mode 100644 index 01a5b94c9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16976.png b/front/public/images/large/gregtech/gt.metaitem.01/16976.png deleted file mode 100644 index 4ffa058e20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16977.png b/front/public/images/large/gregtech/gt.metaitem.01/16977.png deleted file mode 100644 index 8603048def..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16978.png b/front/public/images/large/gregtech/gt.metaitem.01/16978.png deleted file mode 100644 index a8aaf35a4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16979.png b/front/public/images/large/gregtech/gt.metaitem.01/16979.png deleted file mode 100644 index 8551d955fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16980.png b/front/public/images/large/gregtech/gt.metaitem.01/16980.png deleted file mode 100644 index 17001bfe1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16981.png b/front/public/images/large/gregtech/gt.metaitem.01/16981.png deleted file mode 100644 index 4cc82a6c30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16982.png b/front/public/images/large/gregtech/gt.metaitem.01/16982.png deleted file mode 100644 index 792af6e051..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16984.png b/front/public/images/large/gregtech/gt.metaitem.01/16984.png deleted file mode 100644 index 961eabbdbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16985.png b/front/public/images/large/gregtech/gt.metaitem.01/16985.png deleted file mode 100644 index 55978c79db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16986.png b/front/public/images/large/gregtech/gt.metaitem.01/16986.png deleted file mode 100644 index 9b78fc287b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16987.png b/front/public/images/large/gregtech/gt.metaitem.01/16987.png deleted file mode 100644 index b2bfe9267d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16988.png b/front/public/images/large/gregtech/gt.metaitem.01/16988.png deleted file mode 100644 index ae705048e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16989.png b/front/public/images/large/gregtech/gt.metaitem.01/16989.png deleted file mode 100644 index c6f581102c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16990.png b/front/public/images/large/gregtech/gt.metaitem.01/16990.png deleted file mode 100644 index e72a863233..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16991.png b/front/public/images/large/gregtech/gt.metaitem.01/16991.png deleted file mode 100644 index e66c1b0703..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/16992.png b/front/public/images/large/gregtech/gt.metaitem.01/16992.png deleted file mode 100644 index d649f7d421..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/16992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17006.png b/front/public/images/large/gregtech/gt.metaitem.01/17006.png deleted file mode 100644 index 401b512f64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17008.png b/front/public/images/large/gregtech/gt.metaitem.01/17008.png deleted file mode 100644 index dd9a607ab5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17010.png b/front/public/images/large/gregtech/gt.metaitem.01/17010.png deleted file mode 100644 index b387f47373..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17018.png b/front/public/images/large/gregtech/gt.metaitem.01/17018.png deleted file mode 100644 index 1d4ef02c97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17019.png b/front/public/images/large/gregtech/gt.metaitem.01/17019.png deleted file mode 100644 index 94bf51327d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17020.png b/front/public/images/large/gregtech/gt.metaitem.01/17020.png deleted file mode 100644 index d641499236..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17025.png b/front/public/images/large/gregtech/gt.metaitem.01/17025.png deleted file mode 100644 index 47a894c9b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17027.png b/front/public/images/large/gregtech/gt.metaitem.01/17027.png deleted file mode 100644 index 3dd934c618..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17028.png b/front/public/images/large/gregtech/gt.metaitem.01/17028.png deleted file mode 100644 index 6f4926469e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17029.png b/front/public/images/large/gregtech/gt.metaitem.01/17029.png deleted file mode 100644 index 83cc8f04ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17030.png b/front/public/images/large/gregtech/gt.metaitem.01/17030.png deleted file mode 100644 index 46c351d243..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17031.png b/front/public/images/large/gregtech/gt.metaitem.01/17031.png deleted file mode 100644 index 4dda744e17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17032.png b/front/public/images/large/gregtech/gt.metaitem.01/17032.png deleted file mode 100644 index 0deb50ff05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17033.png b/front/public/images/large/gregtech/gt.metaitem.01/17033.png deleted file mode 100644 index b5006f8af8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17034.png b/front/public/images/large/gregtech/gt.metaitem.01/17034.png deleted file mode 100644 index 639a6e314c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17035.png b/front/public/images/large/gregtech/gt.metaitem.01/17035.png deleted file mode 100644 index 3c9b0bc9d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17036.png b/front/public/images/large/gregtech/gt.metaitem.01/17036.png deleted file mode 100644 index 9c3e6b03ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17037.png b/front/public/images/large/gregtech/gt.metaitem.01/17037.png deleted file mode 100644 index 1b9cc5d521..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17039.png b/front/public/images/large/gregtech/gt.metaitem.01/17039.png deleted file mode 100644 index 01b5b7a731..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17043.png b/front/public/images/large/gregtech/gt.metaitem.01/17043.png deleted file mode 100644 index 930e75b532..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17045.png b/front/public/images/large/gregtech/gt.metaitem.01/17045.png deleted file mode 100644 index b3e27dfabd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17047.png b/front/public/images/large/gregtech/gt.metaitem.01/17047.png deleted file mode 100644 index 4a0cf6c6cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17048.png b/front/public/images/large/gregtech/gt.metaitem.01/17048.png deleted file mode 100644 index 9fec61d8b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17052.png b/front/public/images/large/gregtech/gt.metaitem.01/17052.png deleted file mode 100644 index f052ddc40c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17054.png b/front/public/images/large/gregtech/gt.metaitem.01/17054.png deleted file mode 100644 index 1b9cc5d521..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17056.png b/front/public/images/large/gregtech/gt.metaitem.01/17056.png deleted file mode 100644 index 61d15f2823..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17057.png b/front/public/images/large/gregtech/gt.metaitem.01/17057.png deleted file mode 100644 index 4e214b6ed7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17058.png b/front/public/images/large/gregtech/gt.metaitem.01/17058.png deleted file mode 100644 index 9400e2e27b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17059.png b/front/public/images/large/gregtech/gt.metaitem.01/17059.png deleted file mode 100644 index 67e19265a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17062.png b/front/public/images/large/gregtech/gt.metaitem.01/17062.png deleted file mode 100644 index 3311168a92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17063.png b/front/public/images/large/gregtech/gt.metaitem.01/17063.png deleted file mode 100644 index ce93d82bcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17064.png b/front/public/images/large/gregtech/gt.metaitem.01/17064.png deleted file mode 100644 index 2b68b7f57d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17065.png b/front/public/images/large/gregtech/gt.metaitem.01/17065.png deleted file mode 100644 index 621220b15e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17066.png b/front/public/images/large/gregtech/gt.metaitem.01/17066.png deleted file mode 100644 index ad66f1b83a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17067.png b/front/public/images/large/gregtech/gt.metaitem.01/17067.png deleted file mode 100644 index 1ee7145c78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17068.png b/front/public/images/large/gregtech/gt.metaitem.01/17068.png deleted file mode 100644 index e0ef489183..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17069.png b/front/public/images/large/gregtech/gt.metaitem.01/17069.png deleted file mode 100644 index 587cd3f696..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17070.png b/front/public/images/large/gregtech/gt.metaitem.01/17070.png deleted file mode 100644 index 06789524f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17071.png b/front/public/images/large/gregtech/gt.metaitem.01/17071.png deleted file mode 100644 index 2e17f1e997..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17072.png b/front/public/images/large/gregtech/gt.metaitem.01/17072.png deleted file mode 100644 index ce93d82bcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17073.png b/front/public/images/large/gregtech/gt.metaitem.01/17073.png deleted file mode 100644 index b6193c218a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17074.png b/front/public/images/large/gregtech/gt.metaitem.01/17074.png deleted file mode 100644 index b5f3fd1021..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17075.png b/front/public/images/large/gregtech/gt.metaitem.01/17075.png deleted file mode 100644 index a2e42778ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17076.png b/front/public/images/large/gregtech/gt.metaitem.01/17076.png deleted file mode 100644 index 4d7af55ccb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17077.png b/front/public/images/large/gregtech/gt.metaitem.01/17077.png deleted file mode 100644 index 5c7c7e6b90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17078.png b/front/public/images/large/gregtech/gt.metaitem.01/17078.png deleted file mode 100644 index c26805c753..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17080.png b/front/public/images/large/gregtech/gt.metaitem.01/17080.png deleted file mode 100644 index f99c94a5d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17081.png b/front/public/images/large/gregtech/gt.metaitem.01/17081.png deleted file mode 100644 index 83cc8f04ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17083.png b/front/public/images/large/gregtech/gt.metaitem.01/17083.png deleted file mode 100644 index 04bc3f8597..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17084.png b/front/public/images/large/gregtech/gt.metaitem.01/17084.png deleted file mode 100644 index f2c1c129ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17085.png b/front/public/images/large/gregtech/gt.metaitem.01/17085.png deleted file mode 100644 index 2e074ce372..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17086.png b/front/public/images/large/gregtech/gt.metaitem.01/17086.png deleted file mode 100644 index 7651a8b875..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17089.png b/front/public/images/large/gregtech/gt.metaitem.01/17089.png deleted file mode 100644 index 27ef7f0a3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17090.png b/front/public/images/large/gregtech/gt.metaitem.01/17090.png deleted file mode 100644 index 160e28d327..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17096.png b/front/public/images/large/gregtech/gt.metaitem.01/17096.png deleted file mode 100644 index 2e3755fca0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17097.png b/front/public/images/large/gregtech/gt.metaitem.01/17097.png deleted file mode 100644 index c86463aeb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17098.png b/front/public/images/large/gregtech/gt.metaitem.01/17098.png deleted file mode 100644 index b39b8e0eba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17100.png b/front/public/images/large/gregtech/gt.metaitem.01/17100.png deleted file mode 100644 index 9b172e5a83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17101.png b/front/public/images/large/gregtech/gt.metaitem.01/17101.png deleted file mode 100644 index 949d80f631..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17103.png b/front/public/images/large/gregtech/gt.metaitem.01/17103.png deleted file mode 100644 index 0deb50ff05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17111.png b/front/public/images/large/gregtech/gt.metaitem.01/17111.png deleted file mode 100644 index 811121bc30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17112.png b/front/public/images/large/gregtech/gt.metaitem.01/17112.png deleted file mode 100644 index c50004ed97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17129.png b/front/public/images/large/gregtech/gt.metaitem.01/17129.png deleted file mode 100644 index 4dda744e17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17131.png b/front/public/images/large/gregtech/gt.metaitem.01/17131.png deleted file mode 100644 index a0f52534cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17134.png b/front/public/images/large/gregtech/gt.metaitem.01/17134.png deleted file mode 100644 index 4473588897..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17139.png b/front/public/images/large/gregtech/gt.metaitem.01/17139.png deleted file mode 100644 index 1558674c23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17141.png b/front/public/images/large/gregtech/gt.metaitem.01/17141.png deleted file mode 100644 index 9ddfc867fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17143.png b/front/public/images/large/gregtech/gt.metaitem.01/17143.png deleted file mode 100644 index 9a991718b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17201.png b/front/public/images/large/gregtech/gt.metaitem.01/17201.png deleted file mode 100644 index 78bdda5a76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17202.png b/front/public/images/large/gregtech/gt.metaitem.01/17202.png deleted file mode 100644 index de7bb23788..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17203.png b/front/public/images/large/gregtech/gt.metaitem.01/17203.png deleted file mode 100644 index 0885050a7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17204.png b/front/public/images/large/gregtech/gt.metaitem.01/17204.png deleted file mode 100644 index bb0a65205a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17205.png b/front/public/images/large/gregtech/gt.metaitem.01/17205.png deleted file mode 100644 index 83d03855ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17206.png b/front/public/images/large/gregtech/gt.metaitem.01/17206.png deleted file mode 100644 index ed63a5f39a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17207.png b/front/public/images/large/gregtech/gt.metaitem.01/17207.png deleted file mode 100644 index 6387950b92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17208.png b/front/public/images/large/gregtech/gt.metaitem.01/17208.png deleted file mode 100644 index 5e26d6fe31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17209.png b/front/public/images/large/gregtech/gt.metaitem.01/17209.png deleted file mode 100644 index 4511783fe7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17300.png b/front/public/images/large/gregtech/gt.metaitem.01/17300.png deleted file mode 100644 index 0c8505e507..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17301.png b/front/public/images/large/gregtech/gt.metaitem.01/17301.png deleted file mode 100644 index 974ea00a11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17302.png b/front/public/images/large/gregtech/gt.metaitem.01/17302.png deleted file mode 100644 index a30ba78241..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17303.png b/front/public/images/large/gregtech/gt.metaitem.01/17303.png deleted file mode 100644 index 746612d9cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17304.png b/front/public/images/large/gregtech/gt.metaitem.01/17304.png deleted file mode 100644 index 8efbedac3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17305.png b/front/public/images/large/gregtech/gt.metaitem.01/17305.png deleted file mode 100644 index b75903d015..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17306.png b/front/public/images/large/gregtech/gt.metaitem.01/17306.png deleted file mode 100644 index 86b318fd3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17307.png b/front/public/images/large/gregtech/gt.metaitem.01/17307.png deleted file mode 100644 index 8efbedac3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17308.png b/front/public/images/large/gregtech/gt.metaitem.01/17308.png deleted file mode 100644 index 0b8eef941b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17309.png b/front/public/images/large/gregtech/gt.metaitem.01/17309.png deleted file mode 100644 index af66a91c16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17310.png b/front/public/images/large/gregtech/gt.metaitem.01/17310.png deleted file mode 100644 index 3618043cfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17311.png b/front/public/images/large/gregtech/gt.metaitem.01/17311.png deleted file mode 100644 index 22b76a078e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17312.png b/front/public/images/large/gregtech/gt.metaitem.01/17312.png deleted file mode 100644 index 9b25848e8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17313.png b/front/public/images/large/gregtech/gt.metaitem.01/17313.png deleted file mode 100644 index 39e6270c4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17314.png b/front/public/images/large/gregtech/gt.metaitem.01/17314.png deleted file mode 100644 index 00ee1121a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17315.png b/front/public/images/large/gregtech/gt.metaitem.01/17315.png deleted file mode 100644 index 9b5d985d3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17316.png b/front/public/images/large/gregtech/gt.metaitem.01/17316.png deleted file mode 100644 index 4ffd862d03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17317.png b/front/public/images/large/gregtech/gt.metaitem.01/17317.png deleted file mode 100644 index bcf4cdd9f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17318.png b/front/public/images/large/gregtech/gt.metaitem.01/17318.png deleted file mode 100644 index 7b5e0f26cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17319.png b/front/public/images/large/gregtech/gt.metaitem.01/17319.png deleted file mode 100644 index 9020a11593..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17320.png b/front/public/images/large/gregtech/gt.metaitem.01/17320.png deleted file mode 100644 index 33539bc269..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17321.png b/front/public/images/large/gregtech/gt.metaitem.01/17321.png deleted file mode 100644 index 64de7c15be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17323.png b/front/public/images/large/gregtech/gt.metaitem.01/17323.png deleted file mode 100644 index 0cfa1c7adc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17324.png b/front/public/images/large/gregtech/gt.metaitem.01/17324.png deleted file mode 100644 index 83cc8f04ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17325.png b/front/public/images/large/gregtech/gt.metaitem.01/17325.png deleted file mode 100644 index 493414e34f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17326.png b/front/public/images/large/gregtech/gt.metaitem.01/17326.png deleted file mode 100644 index 9d9e118d07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17327.png b/front/public/images/large/gregtech/gt.metaitem.01/17327.png deleted file mode 100644 index cb27bfe648..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17328.png b/front/public/images/large/gregtech/gt.metaitem.01/17328.png deleted file mode 100644 index ce93d82bcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17329.png b/front/public/images/large/gregtech/gt.metaitem.01/17329.png deleted file mode 100644 index 9d99a8d1ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17330.png b/front/public/images/large/gregtech/gt.metaitem.01/17330.png deleted file mode 100644 index bc0a331f10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17331.png b/front/public/images/large/gregtech/gt.metaitem.01/17331.png deleted file mode 100644 index 7d401dd891..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17333.png b/front/public/images/large/gregtech/gt.metaitem.01/17333.png deleted file mode 100644 index 25f19db4d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17334.png b/front/public/images/large/gregtech/gt.metaitem.01/17334.png deleted file mode 100644 index 1ee7145c78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17335.png b/front/public/images/large/gregtech/gt.metaitem.01/17335.png deleted file mode 100644 index d72ca8a7ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17336.png b/front/public/images/large/gregtech/gt.metaitem.01/17336.png deleted file mode 100644 index 42a8d886ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17337.png b/front/public/images/large/gregtech/gt.metaitem.01/17337.png deleted file mode 100644 index 465c6f31ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17338.png b/front/public/images/large/gregtech/gt.metaitem.01/17338.png deleted file mode 100644 index f3722b9b6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17339.png b/front/public/images/large/gregtech/gt.metaitem.01/17339.png deleted file mode 100644 index a20c436677..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17340.png b/front/public/images/large/gregtech/gt.metaitem.01/17340.png deleted file mode 100644 index f0a8502cbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17341.png b/front/public/images/large/gregtech/gt.metaitem.01/17341.png deleted file mode 100644 index cf630d074f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17342.png b/front/public/images/large/gregtech/gt.metaitem.01/17342.png deleted file mode 100644 index b2a5843d77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17343.png b/front/public/images/large/gregtech/gt.metaitem.01/17343.png deleted file mode 100644 index 0960f68bd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17344.png b/front/public/images/large/gregtech/gt.metaitem.01/17344.png deleted file mode 100644 index 37e231cd64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17345.png b/front/public/images/large/gregtech/gt.metaitem.01/17345.png deleted file mode 100644 index 234e3b9ce7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17346.png b/front/public/images/large/gregtech/gt.metaitem.01/17346.png deleted file mode 100644 index 6e9ac6513b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17347.png b/front/public/images/large/gregtech/gt.metaitem.01/17347.png deleted file mode 100644 index 6103a5cee5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17348.png b/front/public/images/large/gregtech/gt.metaitem.01/17348.png deleted file mode 100644 index 1dd011941a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17349.png b/front/public/images/large/gregtech/gt.metaitem.01/17349.png deleted file mode 100644 index 2e11d1ce04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17350.png b/front/public/images/large/gregtech/gt.metaitem.01/17350.png deleted file mode 100644 index 5a44746413..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17351.png b/front/public/images/large/gregtech/gt.metaitem.01/17351.png deleted file mode 100644 index 2f72e6fd6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17352.png b/front/public/images/large/gregtech/gt.metaitem.01/17352.png deleted file mode 100644 index 0c1fefa029..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17353.png b/front/public/images/large/gregtech/gt.metaitem.01/17353.png deleted file mode 100644 index 06e9f6bf99..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17354.png b/front/public/images/large/gregtech/gt.metaitem.01/17354.png deleted file mode 100644 index 67db430109..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17355.png b/front/public/images/large/gregtech/gt.metaitem.01/17355.png deleted file mode 100644 index ae898c3a61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17356.png b/front/public/images/large/gregtech/gt.metaitem.01/17356.png deleted file mode 100644 index 9f637bd030..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17357.png b/front/public/images/large/gregtech/gt.metaitem.01/17357.png deleted file mode 100644 index 8e90c700a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17358.png b/front/public/images/large/gregtech/gt.metaitem.01/17358.png deleted file mode 100644 index ed5ab436d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17359.png b/front/public/images/large/gregtech/gt.metaitem.01/17359.png deleted file mode 100644 index ab503c21b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17360.png b/front/public/images/large/gregtech/gt.metaitem.01/17360.png deleted file mode 100644 index 40f3472203..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17361.png b/front/public/images/large/gregtech/gt.metaitem.01/17361.png deleted file mode 100644 index 978f6ff108..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17362.png b/front/public/images/large/gregtech/gt.metaitem.01/17362.png deleted file mode 100644 index 5a16980d3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17363.png b/front/public/images/large/gregtech/gt.metaitem.01/17363.png deleted file mode 100644 index 0deb50ff05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17364.png b/front/public/images/large/gregtech/gt.metaitem.01/17364.png deleted file mode 100644 index 4ca93073cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17365.png b/front/public/images/large/gregtech/gt.metaitem.01/17365.png deleted file mode 100644 index 219928e32b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17366.png b/front/public/images/large/gregtech/gt.metaitem.01/17366.png deleted file mode 100644 index 33adcc51ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17367.png b/front/public/images/large/gregtech/gt.metaitem.01/17367.png deleted file mode 100644 index 5447a2c2e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17368.png b/front/public/images/large/gregtech/gt.metaitem.01/17368.png deleted file mode 100644 index 90d04ce8c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17369.png b/front/public/images/large/gregtech/gt.metaitem.01/17369.png deleted file mode 100644 index 118e9f2457..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17370.png b/front/public/images/large/gregtech/gt.metaitem.01/17370.png deleted file mode 100644 index 897c2d1a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17371.png b/front/public/images/large/gregtech/gt.metaitem.01/17371.png deleted file mode 100644 index fb4aa5ad57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17372.png b/front/public/images/large/gregtech/gt.metaitem.01/17372.png deleted file mode 100644 index 64ca41802a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17373.png b/front/public/images/large/gregtech/gt.metaitem.01/17373.png deleted file mode 100644 index 1140bb7d7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17374.png b/front/public/images/large/gregtech/gt.metaitem.01/17374.png deleted file mode 100644 index 41a5f6e0ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17378.png b/front/public/images/large/gregtech/gt.metaitem.01/17378.png deleted file mode 100644 index 1eb7cda953..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17379.png b/front/public/images/large/gregtech/gt.metaitem.01/17379.png deleted file mode 100644 index 38ee68d9b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17380.png b/front/public/images/large/gregtech/gt.metaitem.01/17380.png deleted file mode 100644 index 03e1d71d44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17381.png b/front/public/images/large/gregtech/gt.metaitem.01/17381.png deleted file mode 100644 index 7117684496..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17382.png b/front/public/images/large/gregtech/gt.metaitem.01/17382.png deleted file mode 100644 index 64795f343b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17383.png b/front/public/images/large/gregtech/gt.metaitem.01/17383.png deleted file mode 100644 index 0a90bb37cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17384.png b/front/public/images/large/gregtech/gt.metaitem.01/17384.png deleted file mode 100644 index d5b75cf738..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17385.png b/front/public/images/large/gregtech/gt.metaitem.01/17385.png deleted file mode 100644 index bbb99ac0e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17386.png b/front/public/images/large/gregtech/gt.metaitem.01/17386.png deleted file mode 100644 index 3f113e7eba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17387.png b/front/public/images/large/gregtech/gt.metaitem.01/17387.png deleted file mode 100644 index 9acf1ffee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17388.png b/front/public/images/large/gregtech/gt.metaitem.01/17388.png deleted file mode 100644 index c22847ef45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17389.png b/front/public/images/large/gregtech/gt.metaitem.01/17389.png deleted file mode 100644 index 5f9872a4f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17390.png b/front/public/images/large/gregtech/gt.metaitem.01/17390.png deleted file mode 100644 index fe27567ad2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17391.png b/front/public/images/large/gregtech/gt.metaitem.01/17391.png deleted file mode 100644 index 02e5b96bc8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17392.png b/front/public/images/large/gregtech/gt.metaitem.01/17392.png deleted file mode 100644 index 5200685867..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17393.png b/front/public/images/large/gregtech/gt.metaitem.01/17393.png deleted file mode 100644 index 70bf33f59c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17394.png b/front/public/images/large/gregtech/gt.metaitem.01/17394.png deleted file mode 100644 index 9020a11593..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17395.png b/front/public/images/large/gregtech/gt.metaitem.01/17395.png deleted file mode 100644 index c22847ef45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17397.png b/front/public/images/large/gregtech/gt.metaitem.01/17397.png deleted file mode 100644 index 7bbf1b6e87..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17398.png b/front/public/images/large/gregtech/gt.metaitem.01/17398.png deleted file mode 100644 index 786951c96f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17399.png b/front/public/images/large/gregtech/gt.metaitem.01/17399.png deleted file mode 100644 index 2c27845216..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17400.png b/front/public/images/large/gregtech/gt.metaitem.01/17400.png deleted file mode 100644 index 38342e628a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17401.png b/front/public/images/large/gregtech/gt.metaitem.01/17401.png deleted file mode 100644 index c1f5ba1113..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17402.png b/front/public/images/large/gregtech/gt.metaitem.01/17402.png deleted file mode 100644 index eb0374fcdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17403.png b/front/public/images/large/gregtech/gt.metaitem.01/17403.png deleted file mode 100644 index b365163e4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17404.png b/front/public/images/large/gregtech/gt.metaitem.01/17404.png deleted file mode 100644 index f0e5749e4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17405.png b/front/public/images/large/gregtech/gt.metaitem.01/17405.png deleted file mode 100644 index 41d65e010e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17406.png b/front/public/images/large/gregtech/gt.metaitem.01/17406.png deleted file mode 100644 index 6db35450ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17407.png b/front/public/images/large/gregtech/gt.metaitem.01/17407.png deleted file mode 100644 index 58074cbcb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17408.png b/front/public/images/large/gregtech/gt.metaitem.01/17408.png deleted file mode 100644 index d01800f11e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17470.png b/front/public/images/large/gregtech/gt.metaitem.01/17470.png deleted file mode 100644 index 7cb0f19383..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17471.png b/front/public/images/large/gregtech/gt.metaitem.01/17471.png deleted file mode 100644 index 4e214b6ed7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17472.png b/front/public/images/large/gregtech/gt.metaitem.01/17472.png deleted file mode 100644 index c22847ef45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17473.png b/front/public/images/large/gregtech/gt.metaitem.01/17473.png deleted file mode 100644 index f0ea7cb283..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17485.png b/front/public/images/large/gregtech/gt.metaitem.01/17485.png deleted file mode 100644 index f6100a159e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17488.png b/front/public/images/large/gregtech/gt.metaitem.01/17488.png deleted file mode 100644 index 35138a852e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17489.png b/front/public/images/large/gregtech/gt.metaitem.01/17489.png deleted file mode 100644 index 9553bed0e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17500.png b/front/public/images/large/gregtech/gt.metaitem.01/17500.png deleted file mode 100644 index 3b8719db93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17501.png b/front/public/images/large/gregtech/gt.metaitem.01/17501.png deleted file mode 100644 index c1d6ac4132..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17502.png b/front/public/images/large/gregtech/gt.metaitem.01/17502.png deleted file mode 100644 index 1b6172ad37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17503.png b/front/public/images/large/gregtech/gt.metaitem.01/17503.png deleted file mode 100644 index cdc59f0f82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17504.png b/front/public/images/large/gregtech/gt.metaitem.01/17504.png deleted file mode 100644 index 0e53889e0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17505.png b/front/public/images/large/gregtech/gt.metaitem.01/17505.png deleted file mode 100644 index 113dbb395f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17506.png b/front/public/images/large/gregtech/gt.metaitem.01/17506.png deleted file mode 100644 index 542a826856..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17507.png b/front/public/images/large/gregtech/gt.metaitem.01/17507.png deleted file mode 100644 index 465efcb213..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17508.png b/front/public/images/large/gregtech/gt.metaitem.01/17508.png deleted file mode 100644 index 34442f806f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17509.png b/front/public/images/large/gregtech/gt.metaitem.01/17509.png deleted file mode 100644 index 7138d36e45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17510.png b/front/public/images/large/gregtech/gt.metaitem.01/17510.png deleted file mode 100644 index 585f347b91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17511.png b/front/public/images/large/gregtech/gt.metaitem.01/17511.png deleted file mode 100644 index c6c0292711..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17512.png b/front/public/images/large/gregtech/gt.metaitem.01/17512.png deleted file mode 100644 index 1b6172ad37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17513.png b/front/public/images/large/gregtech/gt.metaitem.01/17513.png deleted file mode 100644 index 585f347b91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17514.png b/front/public/images/large/gregtech/gt.metaitem.01/17514.png deleted file mode 100644 index 465efcb213..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17515.png b/front/public/images/large/gregtech/gt.metaitem.01/17515.png deleted file mode 100644 index 10cc49ad7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17516.png b/front/public/images/large/gregtech/gt.metaitem.01/17516.png deleted file mode 100644 index 15c08995c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17518.png b/front/public/images/large/gregtech/gt.metaitem.01/17518.png deleted file mode 100644 index f20b488c71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17519.png b/front/public/images/large/gregtech/gt.metaitem.01/17519.png deleted file mode 100644 index f20b488c71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17520.png b/front/public/images/large/gregtech/gt.metaitem.01/17520.png deleted file mode 100644 index 51186825b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17521.png b/front/public/images/large/gregtech/gt.metaitem.01/17521.png deleted file mode 100644 index 7b5e0f26cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17522.png b/front/public/images/large/gregtech/gt.metaitem.01/17522.png deleted file mode 100644 index ba06cf724e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17523.png b/front/public/images/large/gregtech/gt.metaitem.01/17523.png deleted file mode 100644 index 3dadbd6fe6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17524.png b/front/public/images/large/gregtech/gt.metaitem.01/17524.png deleted file mode 100644 index cc71125e4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17525.png b/front/public/images/large/gregtech/gt.metaitem.01/17525.png deleted file mode 100644 index f948219c10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17526.png b/front/public/images/large/gregtech/gt.metaitem.01/17526.png deleted file mode 100644 index c6a092626a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17527.png b/front/public/images/large/gregtech/gt.metaitem.01/17527.png deleted file mode 100644 index c6c0292711..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17528.png b/front/public/images/large/gregtech/gt.metaitem.01/17528.png deleted file mode 100644 index 2be314c304..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17529.png b/front/public/images/large/gregtech/gt.metaitem.01/17529.png deleted file mode 100644 index d8bdbb22cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17530.png b/front/public/images/large/gregtech/gt.metaitem.01/17530.png deleted file mode 100644 index 4bae0fd2c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17531.png b/front/public/images/large/gregtech/gt.metaitem.01/17531.png deleted file mode 100644 index 041c12ad66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17532.png b/front/public/images/large/gregtech/gt.metaitem.01/17532.png deleted file mode 100644 index efa1f7e994..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17533.png b/front/public/images/large/gregtech/gt.metaitem.01/17533.png deleted file mode 100644 index e5e602873f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17534.png b/front/public/images/large/gregtech/gt.metaitem.01/17534.png deleted file mode 100644 index b809b48dd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17535.png b/front/public/images/large/gregtech/gt.metaitem.01/17535.png deleted file mode 100644 index 0a1a3a6f6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17536.png b/front/public/images/large/gregtech/gt.metaitem.01/17536.png deleted file mode 100644 index d29b30d785..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17537.png b/front/public/images/large/gregtech/gt.metaitem.01/17537.png deleted file mode 100644 index 779ae85e6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17538.png b/front/public/images/large/gregtech/gt.metaitem.01/17538.png deleted file mode 100644 index d29b30d785..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17540.png b/front/public/images/large/gregtech/gt.metaitem.01/17540.png deleted file mode 100644 index 7b5e0f26cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17541.png b/front/public/images/large/gregtech/gt.metaitem.01/17541.png deleted file mode 100644 index 2d4fdc90bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17542.png b/front/public/images/large/gregtech/gt.metaitem.01/17542.png deleted file mode 100644 index 37e1691cfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17543.png b/front/public/images/large/gregtech/gt.metaitem.01/17543.png deleted file mode 100644 index 70fa0300e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17544.png b/front/public/images/large/gregtech/gt.metaitem.01/17544.png deleted file mode 100644 index dd3c96405d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17545.png b/front/public/images/large/gregtech/gt.metaitem.01/17545.png deleted file mode 100644 index 128a2dd5fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17576.png b/front/public/images/large/gregtech/gt.metaitem.01/17576.png deleted file mode 100644 index dd02421ef3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17581.png b/front/public/images/large/gregtech/gt.metaitem.01/17581.png deleted file mode 100644 index b6a63a7fea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17582.png b/front/public/images/large/gregtech/gt.metaitem.01/17582.png deleted file mode 100644 index 21fbb66aee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17583.png b/front/public/images/large/gregtech/gt.metaitem.01/17583.png deleted file mode 100644 index 8c992ee9fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17585.png b/front/public/images/large/gregtech/gt.metaitem.01/17585.png deleted file mode 100644 index d52ce071d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17586.png b/front/public/images/large/gregtech/gt.metaitem.01/17586.png deleted file mode 100644 index 8052e1825f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17588.png b/front/public/images/large/gregtech/gt.metaitem.01/17588.png deleted file mode 100644 index 0c951c14c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17599.png b/front/public/images/large/gregtech/gt.metaitem.01/17599.png deleted file mode 100644 index bdb0c8c08b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17610.png b/front/public/images/large/gregtech/gt.metaitem.01/17610.png deleted file mode 100644 index 4949ca7563..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17611.png b/front/public/images/large/gregtech/gt.metaitem.01/17611.png deleted file mode 100644 index a5a8fda7c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17613.png b/front/public/images/large/gregtech/gt.metaitem.01/17613.png deleted file mode 100644 index 80b7afde98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17631.png b/front/public/images/large/gregtech/gt.metaitem.01/17631.png deleted file mode 100644 index 7cc7a81a1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17635.png b/front/public/images/large/gregtech/gt.metaitem.01/17635.png deleted file mode 100644 index aa9d8f8eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17636.png b/front/public/images/large/gregtech/gt.metaitem.01/17636.png deleted file mode 100644 index 1658b536cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17649.png b/front/public/images/large/gregtech/gt.metaitem.01/17649.png deleted file mode 100644 index 4bf3e5b506..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17765.png b/front/public/images/large/gregtech/gt.metaitem.01/17765.png deleted file mode 100644 index 6d79630afe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17770.png b/front/public/images/large/gregtech/gt.metaitem.01/17770.png deleted file mode 100644 index f5e054b89a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17772.png b/front/public/images/large/gregtech/gt.metaitem.01/17772.png deleted file mode 100644 index e2b1c50e5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17804.png b/front/public/images/large/gregtech/gt.metaitem.01/17804.png deleted file mode 100644 index 22b87864bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17809.png b/front/public/images/large/gregtech/gt.metaitem.01/17809.png deleted file mode 100644 index a5393e0a34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17810.png b/front/public/images/large/gregtech/gt.metaitem.01/17810.png deleted file mode 100644 index fdfccfb565..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17811.png b/front/public/images/large/gregtech/gt.metaitem.01/17811.png deleted file mode 100644 index 7b5e0f26cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17811.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17812.png b/front/public/images/large/gregtech/gt.metaitem.01/17812.png deleted file mode 100644 index 74bfa815d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17829.png b/front/public/images/large/gregtech/gt.metaitem.01/17829.png deleted file mode 100644 index f5399002c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17844.png b/front/public/images/large/gregtech/gt.metaitem.01/17844.png deleted file mode 100644 index 19d3da71c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17844.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17845.png b/front/public/images/large/gregtech/gt.metaitem.01/17845.png deleted file mode 100644 index 785dd2a9a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17845.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17849.png b/front/public/images/large/gregtech/gt.metaitem.01/17849.png deleted file mode 100644 index 5d8bed4098..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17850.png b/front/public/images/large/gregtech/gt.metaitem.01/17850.png deleted file mode 100644 index f6a4288414..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17856.png b/front/public/images/large/gregtech/gt.metaitem.01/17856.png deleted file mode 100644 index 6ec2beaa1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17868.png b/front/public/images/large/gregtech/gt.metaitem.01/17868.png deleted file mode 100644 index 5f62d94d7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17874.png b/front/public/images/large/gregtech/gt.metaitem.01/17874.png deleted file mode 100644 index 3a17665b18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17880.png b/front/public/images/large/gregtech/gt.metaitem.01/17880.png deleted file mode 100644 index cbade154d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17884.png b/front/public/images/large/gregtech/gt.metaitem.01/17884.png deleted file mode 100644 index 74fb5367e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17889.png b/front/public/images/large/gregtech/gt.metaitem.01/17889.png deleted file mode 100644 index 74315a4f8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17890.png b/front/public/images/large/gregtech/gt.metaitem.01/17890.png deleted file mode 100644 index 542a826856..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17912.png b/front/public/images/large/gregtech/gt.metaitem.01/17912.png deleted file mode 100644 index 8a54b42e60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17913.png b/front/public/images/large/gregtech/gt.metaitem.01/17913.png deleted file mode 100644 index 3e64a39ad2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17947.png b/front/public/images/large/gregtech/gt.metaitem.01/17947.png deleted file mode 100644 index 82b139a2d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17947.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17951.png b/front/public/images/large/gregtech/gt.metaitem.01/17951.png deleted file mode 100644 index ea19b2c2a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17952.png b/front/public/images/large/gregtech/gt.metaitem.01/17952.png deleted file mode 100644 index b8c1846762..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17956.png b/front/public/images/large/gregtech/gt.metaitem.01/17956.png deleted file mode 100644 index 36cf3daed0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17966.png b/front/public/images/large/gregtech/gt.metaitem.01/17966.png deleted file mode 100644 index 81b7fbc108..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17970.png b/front/public/images/large/gregtech/gt.metaitem.01/17970.png deleted file mode 100644 index ebe67eac0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17974.png b/front/public/images/large/gregtech/gt.metaitem.01/17974.png deleted file mode 100644 index fac43d10bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17975.png b/front/public/images/large/gregtech/gt.metaitem.01/17975.png deleted file mode 100644 index a70d8f1437..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17976.png b/front/public/images/large/gregtech/gt.metaitem.01/17976.png deleted file mode 100644 index edc425eb7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17977.png b/front/public/images/large/gregtech/gt.metaitem.01/17977.png deleted file mode 100644 index 99313da985..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17978.png b/front/public/images/large/gregtech/gt.metaitem.01/17978.png deleted file mode 100644 index 54f4c6d25b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17979.png b/front/public/images/large/gregtech/gt.metaitem.01/17979.png deleted file mode 100644 index 6aedd52597..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17980.png b/front/public/images/large/gregtech/gt.metaitem.01/17980.png deleted file mode 100644 index fe020571dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17981.png b/front/public/images/large/gregtech/gt.metaitem.01/17981.png deleted file mode 100644 index 5d6e135ee3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17982.png b/front/public/images/large/gregtech/gt.metaitem.01/17982.png deleted file mode 100644 index c19923ae4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17984.png b/front/public/images/large/gregtech/gt.metaitem.01/17984.png deleted file mode 100644 index 9020a11593..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17985.png b/front/public/images/large/gregtech/gt.metaitem.01/17985.png deleted file mode 100644 index bcc065a402..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17986.png b/front/public/images/large/gregtech/gt.metaitem.01/17986.png deleted file mode 100644 index 1cd7e72921..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17987.png b/front/public/images/large/gregtech/gt.metaitem.01/17987.png deleted file mode 100644 index f1260e2c0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17988.png b/front/public/images/large/gregtech/gt.metaitem.01/17988.png deleted file mode 100644 index 0f7093d9b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17989.png b/front/public/images/large/gregtech/gt.metaitem.01/17989.png deleted file mode 100644 index 16863232c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17990.png b/front/public/images/large/gregtech/gt.metaitem.01/17990.png deleted file mode 100644 index e0d7c798e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17991.png b/front/public/images/large/gregtech/gt.metaitem.01/17991.png deleted file mode 100644 index 365e917011..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/17992.png b/front/public/images/large/gregtech/gt.metaitem.01/17992.png deleted file mode 100644 index 1fa8b42cf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/17992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18006.png b/front/public/images/large/gregtech/gt.metaitem.01/18006.png deleted file mode 100644 index 4fc4869444..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18008.png b/front/public/images/large/gregtech/gt.metaitem.01/18008.png deleted file mode 100644 index 040d07b447..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18010.png b/front/public/images/large/gregtech/gt.metaitem.01/18010.png deleted file mode 100644 index 85b652c795..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18018.png b/front/public/images/large/gregtech/gt.metaitem.01/18018.png deleted file mode 100644 index 27674b591f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18019.png b/front/public/images/large/gregtech/gt.metaitem.01/18019.png deleted file mode 100644 index db14285588..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18020.png b/front/public/images/large/gregtech/gt.metaitem.01/18020.png deleted file mode 100644 index 030a2acfd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18025.png b/front/public/images/large/gregtech/gt.metaitem.01/18025.png deleted file mode 100644 index c140727b23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18027.png b/front/public/images/large/gregtech/gt.metaitem.01/18027.png deleted file mode 100644 index 44450b9038..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18028.png b/front/public/images/large/gregtech/gt.metaitem.01/18028.png deleted file mode 100644 index 2e4dcb2f68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18029.png b/front/public/images/large/gregtech/gt.metaitem.01/18029.png deleted file mode 100644 index b0d97d4b32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18030.png b/front/public/images/large/gregtech/gt.metaitem.01/18030.png deleted file mode 100644 index 3403ff1158..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18031.png b/front/public/images/large/gregtech/gt.metaitem.01/18031.png deleted file mode 100644 index 02848f1dad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18032.png b/front/public/images/large/gregtech/gt.metaitem.01/18032.png deleted file mode 100644 index f77ab091d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18033.png b/front/public/images/large/gregtech/gt.metaitem.01/18033.png deleted file mode 100644 index b5010c8098..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18034.png b/front/public/images/large/gregtech/gt.metaitem.01/18034.png deleted file mode 100644 index a69509047d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18035.png b/front/public/images/large/gregtech/gt.metaitem.01/18035.png deleted file mode 100644 index 0f07288180..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18036.png b/front/public/images/large/gregtech/gt.metaitem.01/18036.png deleted file mode 100644 index 530e026cf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18037.png b/front/public/images/large/gregtech/gt.metaitem.01/18037.png deleted file mode 100644 index 3d3f5c0e6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18039.png b/front/public/images/large/gregtech/gt.metaitem.01/18039.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18043.png b/front/public/images/large/gregtech/gt.metaitem.01/18043.png deleted file mode 100644 index 2b2cce1c03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18045.png b/front/public/images/large/gregtech/gt.metaitem.01/18045.png deleted file mode 100644 index 9c9dc3abad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18047.png b/front/public/images/large/gregtech/gt.metaitem.01/18047.png deleted file mode 100644 index 1f5f9a9eba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18048.png b/front/public/images/large/gregtech/gt.metaitem.01/18048.png deleted file mode 100644 index eb85b10072..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18052.png b/front/public/images/large/gregtech/gt.metaitem.01/18052.png deleted file mode 100644 index bc75834acf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18054.png b/front/public/images/large/gregtech/gt.metaitem.01/18054.png deleted file mode 100644 index 3d3f5c0e6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18056.png b/front/public/images/large/gregtech/gt.metaitem.01/18056.png deleted file mode 100644 index 1d1b2a0473..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18057.png b/front/public/images/large/gregtech/gt.metaitem.01/18057.png deleted file mode 100644 index 1b71680c1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18058.png b/front/public/images/large/gregtech/gt.metaitem.01/18058.png deleted file mode 100644 index 24387a177d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18059.png b/front/public/images/large/gregtech/gt.metaitem.01/18059.png deleted file mode 100644 index 7e6b0296f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18062.png b/front/public/images/large/gregtech/gt.metaitem.01/18062.png deleted file mode 100644 index 966097b8f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18063.png b/front/public/images/large/gregtech/gt.metaitem.01/18063.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18064.png b/front/public/images/large/gregtech/gt.metaitem.01/18064.png deleted file mode 100644 index df9f5f6ddf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18065.png b/front/public/images/large/gregtech/gt.metaitem.01/18065.png deleted file mode 100644 index ba3cb1d622..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18066.png b/front/public/images/large/gregtech/gt.metaitem.01/18066.png deleted file mode 100644 index 682eb7af08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18067.png b/front/public/images/large/gregtech/gt.metaitem.01/18067.png deleted file mode 100644 index 60fbd5b0fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18068.png b/front/public/images/large/gregtech/gt.metaitem.01/18068.png deleted file mode 100644 index d72e62b54b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18069.png b/front/public/images/large/gregtech/gt.metaitem.01/18069.png deleted file mode 100644 index 65d8de0785..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18070.png b/front/public/images/large/gregtech/gt.metaitem.01/18070.png deleted file mode 100644 index 002407c0c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18071.png b/front/public/images/large/gregtech/gt.metaitem.01/18071.png deleted file mode 100644 index 5e234413d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18072.png b/front/public/images/large/gregtech/gt.metaitem.01/18072.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18073.png b/front/public/images/large/gregtech/gt.metaitem.01/18073.png deleted file mode 100644 index cba9a890e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18074.png b/front/public/images/large/gregtech/gt.metaitem.01/18074.png deleted file mode 100644 index e95d3abea1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18075.png b/front/public/images/large/gregtech/gt.metaitem.01/18075.png deleted file mode 100644 index cab744d640..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18076.png b/front/public/images/large/gregtech/gt.metaitem.01/18076.png deleted file mode 100644 index eadb1271f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18077.png b/front/public/images/large/gregtech/gt.metaitem.01/18077.png deleted file mode 100644 index 01d0fc1523..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18078.png b/front/public/images/large/gregtech/gt.metaitem.01/18078.png deleted file mode 100644 index 8a7251c5be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18080.png b/front/public/images/large/gregtech/gt.metaitem.01/18080.png deleted file mode 100644 index 34cfc9614c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18081.png b/front/public/images/large/gregtech/gt.metaitem.01/18081.png deleted file mode 100644 index b0d97d4b32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18083.png b/front/public/images/large/gregtech/gt.metaitem.01/18083.png deleted file mode 100644 index 07019b0869..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18084.png b/front/public/images/large/gregtech/gt.metaitem.01/18084.png deleted file mode 100644 index 554975ac16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18085.png b/front/public/images/large/gregtech/gt.metaitem.01/18085.png deleted file mode 100644 index 5455abbd18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18086.png b/front/public/images/large/gregtech/gt.metaitem.01/18086.png deleted file mode 100644 index fac49608b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18089.png b/front/public/images/large/gregtech/gt.metaitem.01/18089.png deleted file mode 100644 index 85e02eb246..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18090.png b/front/public/images/large/gregtech/gt.metaitem.01/18090.png deleted file mode 100644 index 5f9863ee0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18096.png b/front/public/images/large/gregtech/gt.metaitem.01/18096.png deleted file mode 100644 index 36caf58ca5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18097.png b/front/public/images/large/gregtech/gt.metaitem.01/18097.png deleted file mode 100644 index f9e7cf5171..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18098.png b/front/public/images/large/gregtech/gt.metaitem.01/18098.png deleted file mode 100644 index eb93ad4258..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18100.png b/front/public/images/large/gregtech/gt.metaitem.01/18100.png deleted file mode 100644 index 785516723f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18101.png b/front/public/images/large/gregtech/gt.metaitem.01/18101.png deleted file mode 100644 index f762da7dd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18103.png b/front/public/images/large/gregtech/gt.metaitem.01/18103.png deleted file mode 100644 index f77ab091d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18111.png b/front/public/images/large/gregtech/gt.metaitem.01/18111.png deleted file mode 100644 index f7fa28a04d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18112.png b/front/public/images/large/gregtech/gt.metaitem.01/18112.png deleted file mode 100644 index 433598aa2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18129.png b/front/public/images/large/gregtech/gt.metaitem.01/18129.png deleted file mode 100644 index 02848f1dad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18131.png b/front/public/images/large/gregtech/gt.metaitem.01/18131.png deleted file mode 100644 index 0c4911ceaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18134.png b/front/public/images/large/gregtech/gt.metaitem.01/18134.png deleted file mode 100644 index 85f19de2bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18139.png b/front/public/images/large/gregtech/gt.metaitem.01/18139.png deleted file mode 100644 index fe5a403c11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18141.png b/front/public/images/large/gregtech/gt.metaitem.01/18141.png deleted file mode 100644 index 746d5372c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18143.png b/front/public/images/large/gregtech/gt.metaitem.01/18143.png deleted file mode 100644 index 1cf87f4688..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18201.png b/front/public/images/large/gregtech/gt.metaitem.01/18201.png deleted file mode 100644 index d19b3dadfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18202.png b/front/public/images/large/gregtech/gt.metaitem.01/18202.png deleted file mode 100644 index c6ac95b7d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18203.png b/front/public/images/large/gregtech/gt.metaitem.01/18203.png deleted file mode 100644 index fca75ad6c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18205.png b/front/public/images/large/gregtech/gt.metaitem.01/18205.png deleted file mode 100644 index be5f597389..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18300.png b/front/public/images/large/gregtech/gt.metaitem.01/18300.png deleted file mode 100644 index 97921e151b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18301.png b/front/public/images/large/gregtech/gt.metaitem.01/18301.png deleted file mode 100644 index a9f72a0180..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18302.png b/front/public/images/large/gregtech/gt.metaitem.01/18302.png deleted file mode 100644 index bdbc5dec53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18303.png b/front/public/images/large/gregtech/gt.metaitem.01/18303.png deleted file mode 100644 index 03e1a5718f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18304.png b/front/public/images/large/gregtech/gt.metaitem.01/18304.png deleted file mode 100644 index b0fa0c251b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18305.png b/front/public/images/large/gregtech/gt.metaitem.01/18305.png deleted file mode 100644 index bc75834acf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18306.png b/front/public/images/large/gregtech/gt.metaitem.01/18306.png deleted file mode 100644 index 9a708f071c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18307.png b/front/public/images/large/gregtech/gt.metaitem.01/18307.png deleted file mode 100644 index b0fa0c251b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18308.png b/front/public/images/large/gregtech/gt.metaitem.01/18308.png deleted file mode 100644 index 3f7d5a8980..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18309.png b/front/public/images/large/gregtech/gt.metaitem.01/18309.png deleted file mode 100644 index b0b46ef277..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18310.png b/front/public/images/large/gregtech/gt.metaitem.01/18310.png deleted file mode 100644 index 341d4df4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18311.png b/front/public/images/large/gregtech/gt.metaitem.01/18311.png deleted file mode 100644 index 4a746cb503..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18312.png b/front/public/images/large/gregtech/gt.metaitem.01/18312.png deleted file mode 100644 index 4531dd39cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18313.png b/front/public/images/large/gregtech/gt.metaitem.01/18313.png deleted file mode 100644 index c0a0d96e15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18314.png b/front/public/images/large/gregtech/gt.metaitem.01/18314.png deleted file mode 100644 index 98872dd9ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18315.png b/front/public/images/large/gregtech/gt.metaitem.01/18315.png deleted file mode 100644 index 0bb938a923..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18316.png b/front/public/images/large/gregtech/gt.metaitem.01/18316.png deleted file mode 100644 index 8af9077015..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18317.png b/front/public/images/large/gregtech/gt.metaitem.01/18317.png deleted file mode 100644 index 46bf0dd4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18318.png b/front/public/images/large/gregtech/gt.metaitem.01/18318.png deleted file mode 100644 index 5ee9458b39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18319.png b/front/public/images/large/gregtech/gt.metaitem.01/18319.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18320.png b/front/public/images/large/gregtech/gt.metaitem.01/18320.png deleted file mode 100644 index 3669ee5e83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18321.png b/front/public/images/large/gregtech/gt.metaitem.01/18321.png deleted file mode 100644 index 2b1ccbabaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18323.png b/front/public/images/large/gregtech/gt.metaitem.01/18323.png deleted file mode 100644 index 12562498f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18324.png b/front/public/images/large/gregtech/gt.metaitem.01/18324.png deleted file mode 100644 index b0d97d4b32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18325.png b/front/public/images/large/gregtech/gt.metaitem.01/18325.png deleted file mode 100644 index 2c73146696..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18326.png b/front/public/images/large/gregtech/gt.metaitem.01/18326.png deleted file mode 100644 index f7376e4930..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18327.png b/front/public/images/large/gregtech/gt.metaitem.01/18327.png deleted file mode 100644 index b190853008..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18328.png b/front/public/images/large/gregtech/gt.metaitem.01/18328.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18329.png b/front/public/images/large/gregtech/gt.metaitem.01/18329.png deleted file mode 100644 index c287552e42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18330.png b/front/public/images/large/gregtech/gt.metaitem.01/18330.png deleted file mode 100644 index f60311e052..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18331.png b/front/public/images/large/gregtech/gt.metaitem.01/18331.png deleted file mode 100644 index 28ab7744c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18333.png b/front/public/images/large/gregtech/gt.metaitem.01/18333.png deleted file mode 100644 index e10881933d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18334.png b/front/public/images/large/gregtech/gt.metaitem.01/18334.png deleted file mode 100644 index 60fbd5b0fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18335.png b/front/public/images/large/gregtech/gt.metaitem.01/18335.png deleted file mode 100644 index d55aa45df9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18336.png b/front/public/images/large/gregtech/gt.metaitem.01/18336.png deleted file mode 100644 index 1659951d11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18337.png b/front/public/images/large/gregtech/gt.metaitem.01/18337.png deleted file mode 100644 index 7b9c728f2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18338.png b/front/public/images/large/gregtech/gt.metaitem.01/18338.png deleted file mode 100644 index db3733f96e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18339.png b/front/public/images/large/gregtech/gt.metaitem.01/18339.png deleted file mode 100644 index edc3a8733e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18340.png b/front/public/images/large/gregtech/gt.metaitem.01/18340.png deleted file mode 100644 index f59619caeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18341.png b/front/public/images/large/gregtech/gt.metaitem.01/18341.png deleted file mode 100644 index f3e5c25d82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18342.png b/front/public/images/large/gregtech/gt.metaitem.01/18342.png deleted file mode 100644 index 38b918f2fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18343.png b/front/public/images/large/gregtech/gt.metaitem.01/18343.png deleted file mode 100644 index 6509e50b39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18344.png b/front/public/images/large/gregtech/gt.metaitem.01/18344.png deleted file mode 100644 index be1f5e3da1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18345.png b/front/public/images/large/gregtech/gt.metaitem.01/18345.png deleted file mode 100644 index b784e1bb8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18346.png b/front/public/images/large/gregtech/gt.metaitem.01/18346.png deleted file mode 100644 index 2c43ed9e6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18348.png b/front/public/images/large/gregtech/gt.metaitem.01/18348.png deleted file mode 100644 index f7944e3671..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18349.png b/front/public/images/large/gregtech/gt.metaitem.01/18349.png deleted file mode 100644 index 4f17c67173..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18350.png b/front/public/images/large/gregtech/gt.metaitem.01/18350.png deleted file mode 100644 index d7f73fa71c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18351.png b/front/public/images/large/gregtech/gt.metaitem.01/18351.png deleted file mode 100644 index 400277a958..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18352.png b/front/public/images/large/gregtech/gt.metaitem.01/18352.png deleted file mode 100644 index 822da84cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18353.png b/front/public/images/large/gregtech/gt.metaitem.01/18353.png deleted file mode 100644 index a7bcc7cc86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18354.png b/front/public/images/large/gregtech/gt.metaitem.01/18354.png deleted file mode 100644 index 57dfb36dd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18355.png b/front/public/images/large/gregtech/gt.metaitem.01/18355.png deleted file mode 100644 index cc14ed9008..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18356.png b/front/public/images/large/gregtech/gt.metaitem.01/18356.png deleted file mode 100644 index 1230bb0df4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18357.png b/front/public/images/large/gregtech/gt.metaitem.01/18357.png deleted file mode 100644 index bce2449ffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18358.png b/front/public/images/large/gregtech/gt.metaitem.01/18358.png deleted file mode 100644 index 6f2938760b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18359.png b/front/public/images/large/gregtech/gt.metaitem.01/18359.png deleted file mode 100644 index fc6b6fe94c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18360.png b/front/public/images/large/gregtech/gt.metaitem.01/18360.png deleted file mode 100644 index b8c04d94e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18361.png b/front/public/images/large/gregtech/gt.metaitem.01/18361.png deleted file mode 100644 index e177342a70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18362.png b/front/public/images/large/gregtech/gt.metaitem.01/18362.png deleted file mode 100644 index 150a17e4b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18363.png b/front/public/images/large/gregtech/gt.metaitem.01/18363.png deleted file mode 100644 index f77ab091d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18364.png b/front/public/images/large/gregtech/gt.metaitem.01/18364.png deleted file mode 100644 index 4dc9d5c074..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18365.png b/front/public/images/large/gregtech/gt.metaitem.01/18365.png deleted file mode 100644 index c642667a5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18366.png b/front/public/images/large/gregtech/gt.metaitem.01/18366.png deleted file mode 100644 index be03c25194..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18367.png b/front/public/images/large/gregtech/gt.metaitem.01/18367.png deleted file mode 100644 index a28d169b8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18368.png b/front/public/images/large/gregtech/gt.metaitem.01/18368.png deleted file mode 100644 index 3151d2c8a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18369.png b/front/public/images/large/gregtech/gt.metaitem.01/18369.png deleted file mode 100644 index 5847a8baab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18370.png b/front/public/images/large/gregtech/gt.metaitem.01/18370.png deleted file mode 100644 index 84db02075f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18371.png b/front/public/images/large/gregtech/gt.metaitem.01/18371.png deleted file mode 100644 index e203a256ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18372.png b/front/public/images/large/gregtech/gt.metaitem.01/18372.png deleted file mode 100644 index 59bdd36aca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18373.png b/front/public/images/large/gregtech/gt.metaitem.01/18373.png deleted file mode 100644 index 30cfb5d2dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18374.png b/front/public/images/large/gregtech/gt.metaitem.01/18374.png deleted file mode 100644 index 3334b3ca68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18378.png b/front/public/images/large/gregtech/gt.metaitem.01/18378.png deleted file mode 100644 index 1d08f10a56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18379.png b/front/public/images/large/gregtech/gt.metaitem.01/18379.png deleted file mode 100644 index 59dad910a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18380.png b/front/public/images/large/gregtech/gt.metaitem.01/18380.png deleted file mode 100644 index e332bb5c9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18381.png b/front/public/images/large/gregtech/gt.metaitem.01/18381.png deleted file mode 100644 index 20a6947988..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18382.png b/front/public/images/large/gregtech/gt.metaitem.01/18382.png deleted file mode 100644 index a6a48e4827..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18383.png b/front/public/images/large/gregtech/gt.metaitem.01/18383.png deleted file mode 100644 index 6d9581379c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18384.png b/front/public/images/large/gregtech/gt.metaitem.01/18384.png deleted file mode 100644 index b80c54f0be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18385.png b/front/public/images/large/gregtech/gt.metaitem.01/18385.png deleted file mode 100644 index 94dad7a1c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18386.png b/front/public/images/large/gregtech/gt.metaitem.01/18386.png deleted file mode 100644 index 4770fc17ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18387.png b/front/public/images/large/gregtech/gt.metaitem.01/18387.png deleted file mode 100644 index d6a8deac82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18388.png b/front/public/images/large/gregtech/gt.metaitem.01/18388.png deleted file mode 100644 index b0d97d4b32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18389.png b/front/public/images/large/gregtech/gt.metaitem.01/18389.png deleted file mode 100644 index 21f65ba577..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18390.png b/front/public/images/large/gregtech/gt.metaitem.01/18390.png deleted file mode 100644 index c8fb9ca220..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18391.png b/front/public/images/large/gregtech/gt.metaitem.01/18391.png deleted file mode 100644 index d4b60d2c1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18392.png b/front/public/images/large/gregtech/gt.metaitem.01/18392.png deleted file mode 100644 index da976d3f7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18393.png b/front/public/images/large/gregtech/gt.metaitem.01/18393.png deleted file mode 100644 index b08e9549d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18394.png b/front/public/images/large/gregtech/gt.metaitem.01/18394.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18395.png b/front/public/images/large/gregtech/gt.metaitem.01/18395.png deleted file mode 100644 index b0d97d4b32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18397.png b/front/public/images/large/gregtech/gt.metaitem.01/18397.png deleted file mode 100644 index ae74684128..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18398.png b/front/public/images/large/gregtech/gt.metaitem.01/18398.png deleted file mode 100644 index e6877caa2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18399.png b/front/public/images/large/gregtech/gt.metaitem.01/18399.png deleted file mode 100644 index 6b5dbc891a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18400.png b/front/public/images/large/gregtech/gt.metaitem.01/18400.png deleted file mode 100644 index e5c894859d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18401.png b/front/public/images/large/gregtech/gt.metaitem.01/18401.png deleted file mode 100644 index 231888b59b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18402.png b/front/public/images/large/gregtech/gt.metaitem.01/18402.png deleted file mode 100644 index 0779651968..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18403.png b/front/public/images/large/gregtech/gt.metaitem.01/18403.png deleted file mode 100644 index 93f95e841f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18404.png b/front/public/images/large/gregtech/gt.metaitem.01/18404.png deleted file mode 100644 index 77d3cb333a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18405.png b/front/public/images/large/gregtech/gt.metaitem.01/18405.png deleted file mode 100644 index 1e707ff9aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18406.png b/front/public/images/large/gregtech/gt.metaitem.01/18406.png deleted file mode 100644 index 084fc4da3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18407.png b/front/public/images/large/gregtech/gt.metaitem.01/18407.png deleted file mode 100644 index 77a04a46ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18408.png b/front/public/images/large/gregtech/gt.metaitem.01/18408.png deleted file mode 100644 index 9f34904fa3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18470.png b/front/public/images/large/gregtech/gt.metaitem.01/18470.png deleted file mode 100644 index f804104fbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18471.png b/front/public/images/large/gregtech/gt.metaitem.01/18471.png deleted file mode 100644 index 1b71680c1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18472.png b/front/public/images/large/gregtech/gt.metaitem.01/18472.png deleted file mode 100644 index b0d97d4b32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18473.png b/front/public/images/large/gregtech/gt.metaitem.01/18473.png deleted file mode 100644 index 60fbd5b0fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18485.png b/front/public/images/large/gregtech/gt.metaitem.01/18485.png deleted file mode 100644 index 7ebc523409..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18488.png b/front/public/images/large/gregtech/gt.metaitem.01/18488.png deleted file mode 100644 index 4c57597d64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18489.png b/front/public/images/large/gregtech/gt.metaitem.01/18489.png deleted file mode 100644 index 67744c637d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18521.png b/front/public/images/large/gregtech/gt.metaitem.01/18521.png deleted file mode 100644 index 5ee9458b39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18529.png b/front/public/images/large/gregtech/gt.metaitem.01/18529.png deleted file mode 100644 index 7fb85da59b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18576.png b/front/public/images/large/gregtech/gt.metaitem.01/18576.png deleted file mode 100644 index 9d8aed9bc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18581.png b/front/public/images/large/gregtech/gt.metaitem.01/18581.png deleted file mode 100644 index 2c27e6a9a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18582.png b/front/public/images/large/gregtech/gt.metaitem.01/18582.png deleted file mode 100644 index 41f6c61180..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18585.png b/front/public/images/large/gregtech/gt.metaitem.01/18585.png deleted file mode 100644 index de30e915ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18586.png b/front/public/images/large/gregtech/gt.metaitem.01/18586.png deleted file mode 100644 index 2977ccc6b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18588.png b/front/public/images/large/gregtech/gt.metaitem.01/18588.png deleted file mode 100644 index fab614a42a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18599.png b/front/public/images/large/gregtech/gt.metaitem.01/18599.png deleted file mode 100644 index f0e01d6686..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18610.png b/front/public/images/large/gregtech/gt.metaitem.01/18610.png deleted file mode 100644 index ef87cae52c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18613.png b/front/public/images/large/gregtech/gt.metaitem.01/18613.png deleted file mode 100644 index f81a47bbcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18631.png b/front/public/images/large/gregtech/gt.metaitem.01/18631.png deleted file mode 100644 index c9b424bb2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18635.png b/front/public/images/large/gregtech/gt.metaitem.01/18635.png deleted file mode 100644 index cf54a69441..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18636.png b/front/public/images/large/gregtech/gt.metaitem.01/18636.png deleted file mode 100644 index 832532b98b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18649.png b/front/public/images/large/gregtech/gt.metaitem.01/18649.png deleted file mode 100644 index ac6aed4f86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18765.png b/front/public/images/large/gregtech/gt.metaitem.01/18765.png deleted file mode 100644 index 30f304bec2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18770.png b/front/public/images/large/gregtech/gt.metaitem.01/18770.png deleted file mode 100644 index 4755ce592a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18772.png b/front/public/images/large/gregtech/gt.metaitem.01/18772.png deleted file mode 100644 index 1c0d382720..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18829.png b/front/public/images/large/gregtech/gt.metaitem.01/18829.png deleted file mode 100644 index 16bda47f8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18856.png b/front/public/images/large/gregtech/gt.metaitem.01/18856.png deleted file mode 100644 index 8a4f7de4b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18868.png b/front/public/images/large/gregtech/gt.metaitem.01/18868.png deleted file mode 100644 index fc88dfd524..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18874.png b/front/public/images/large/gregtech/gt.metaitem.01/18874.png deleted file mode 100644 index f77ab091d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18879.png b/front/public/images/large/gregtech/gt.metaitem.01/18879.png deleted file mode 100644 index 3f33de3bd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18879.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18880.png b/front/public/images/large/gregtech/gt.metaitem.01/18880.png deleted file mode 100644 index 2977ccc6b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18884.png b/front/public/images/large/gregtech/gt.metaitem.01/18884.png deleted file mode 100644 index 2c73146696..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18912.png b/front/public/images/large/gregtech/gt.metaitem.01/18912.png deleted file mode 100644 index eef011bd06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18913.png b/front/public/images/large/gregtech/gt.metaitem.01/18913.png deleted file mode 100644 index f7944e3671..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18951.png b/front/public/images/large/gregtech/gt.metaitem.01/18951.png deleted file mode 100644 index 4eff164bf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18952.png b/front/public/images/large/gregtech/gt.metaitem.01/18952.png deleted file mode 100644 index cda6c1487e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18956.png b/front/public/images/large/gregtech/gt.metaitem.01/18956.png deleted file mode 100644 index d597695fff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18966.png b/front/public/images/large/gregtech/gt.metaitem.01/18966.png deleted file mode 100644 index ea09d888b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18970.png b/front/public/images/large/gregtech/gt.metaitem.01/18970.png deleted file mode 100644 index a554005caf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18974.png b/front/public/images/large/gregtech/gt.metaitem.01/18974.png deleted file mode 100644 index 06d4a0ea86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18975.png b/front/public/images/large/gregtech/gt.metaitem.01/18975.png deleted file mode 100644 index aa86bf833d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18976.png b/front/public/images/large/gregtech/gt.metaitem.01/18976.png deleted file mode 100644 index c5982440f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18977.png b/front/public/images/large/gregtech/gt.metaitem.01/18977.png deleted file mode 100644 index 88088a675e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18978.png b/front/public/images/large/gregtech/gt.metaitem.01/18978.png deleted file mode 100644 index 748085c3dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18979.png b/front/public/images/large/gregtech/gt.metaitem.01/18979.png deleted file mode 100644 index 5973f12858..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18980.png b/front/public/images/large/gregtech/gt.metaitem.01/18980.png deleted file mode 100644 index 471137aba9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18981.png b/front/public/images/large/gregtech/gt.metaitem.01/18981.png deleted file mode 100644 index b3358d1e0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18982.png b/front/public/images/large/gregtech/gt.metaitem.01/18982.png deleted file mode 100644 index 34777a27b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18984.png b/front/public/images/large/gregtech/gt.metaitem.01/18984.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18985.png b/front/public/images/large/gregtech/gt.metaitem.01/18985.png deleted file mode 100644 index e67b7d58ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18986.png b/front/public/images/large/gregtech/gt.metaitem.01/18986.png deleted file mode 100644 index a808b11b9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18987.png b/front/public/images/large/gregtech/gt.metaitem.01/18987.png deleted file mode 100644 index e09a59937f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18988.png b/front/public/images/large/gregtech/gt.metaitem.01/18988.png deleted file mode 100644 index babcda20f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18989.png b/front/public/images/large/gregtech/gt.metaitem.01/18989.png deleted file mode 100644 index f91b83535e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18990.png b/front/public/images/large/gregtech/gt.metaitem.01/18990.png deleted file mode 100644 index cbd9042a42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18991.png b/front/public/images/large/gregtech/gt.metaitem.01/18991.png deleted file mode 100644 index c544fa4f73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/18992.png b/front/public/images/large/gregtech/gt.metaitem.01/18992.png deleted file mode 100644 index 1a1fcdeed7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/18992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19006.png b/front/public/images/large/gregtech/gt.metaitem.01/19006.png deleted file mode 100644 index 8fccbbe27d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19008.png b/front/public/images/large/gregtech/gt.metaitem.01/19008.png deleted file mode 100644 index 316b1c0df1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19010.png b/front/public/images/large/gregtech/gt.metaitem.01/19010.png deleted file mode 100644 index bccc12f68f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19018.png b/front/public/images/large/gregtech/gt.metaitem.01/19018.png deleted file mode 100644 index db37b921b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19019.png b/front/public/images/large/gregtech/gt.metaitem.01/19019.png deleted file mode 100644 index ddded6c413..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19020.png b/front/public/images/large/gregtech/gt.metaitem.01/19020.png deleted file mode 100644 index c8cfd8179f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19025.png b/front/public/images/large/gregtech/gt.metaitem.01/19025.png deleted file mode 100644 index 35f343f216..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19027.png b/front/public/images/large/gregtech/gt.metaitem.01/19027.png deleted file mode 100644 index 3e8f48d24d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19028.png b/front/public/images/large/gregtech/gt.metaitem.01/19028.png deleted file mode 100644 index 296749584d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19029.png b/front/public/images/large/gregtech/gt.metaitem.01/19029.png deleted file mode 100644 index c0de123ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19030.png b/front/public/images/large/gregtech/gt.metaitem.01/19030.png deleted file mode 100644 index fe1659949d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19031.png b/front/public/images/large/gregtech/gt.metaitem.01/19031.png deleted file mode 100644 index 16a93b6a83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19032.png b/front/public/images/large/gregtech/gt.metaitem.01/19032.png deleted file mode 100644 index 8214f21b74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19033.png b/front/public/images/large/gregtech/gt.metaitem.01/19033.png deleted file mode 100644 index ad69ed6730..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19034.png b/front/public/images/large/gregtech/gt.metaitem.01/19034.png deleted file mode 100644 index c7d187eb02..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19035.png b/front/public/images/large/gregtech/gt.metaitem.01/19035.png deleted file mode 100644 index 8c0efab723..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19036.png b/front/public/images/large/gregtech/gt.metaitem.01/19036.png deleted file mode 100644 index 30a520b767..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19037.png b/front/public/images/large/gregtech/gt.metaitem.01/19037.png deleted file mode 100644 index 5e69c1f716..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19039.png b/front/public/images/large/gregtech/gt.metaitem.01/19039.png deleted file mode 100644 index fa95520bbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19043.png b/front/public/images/large/gregtech/gt.metaitem.01/19043.png deleted file mode 100644 index 6428fab554..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19045.png b/front/public/images/large/gregtech/gt.metaitem.01/19045.png deleted file mode 100644 index e8b5a7baba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19047.png b/front/public/images/large/gregtech/gt.metaitem.01/19047.png deleted file mode 100644 index 9632d51040..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19048.png b/front/public/images/large/gregtech/gt.metaitem.01/19048.png deleted file mode 100644 index 5f452b8262..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19052.png b/front/public/images/large/gregtech/gt.metaitem.01/19052.png deleted file mode 100644 index 8d8a857a39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19054.png b/front/public/images/large/gregtech/gt.metaitem.01/19054.png deleted file mode 100644 index 5e69c1f716..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19056.png b/front/public/images/large/gregtech/gt.metaitem.01/19056.png deleted file mode 100644 index 10a8b90853..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19057.png b/front/public/images/large/gregtech/gt.metaitem.01/19057.png deleted file mode 100644 index 51b3620658..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19058.png b/front/public/images/large/gregtech/gt.metaitem.01/19058.png deleted file mode 100644 index e1308c96d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19059.png b/front/public/images/large/gregtech/gt.metaitem.01/19059.png deleted file mode 100644 index 78bb4f3509..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19062.png b/front/public/images/large/gregtech/gt.metaitem.01/19062.png deleted file mode 100644 index 71c62461e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19063.png b/front/public/images/large/gregtech/gt.metaitem.01/19063.png deleted file mode 100644 index fa95520bbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19064.png b/front/public/images/large/gregtech/gt.metaitem.01/19064.png deleted file mode 100644 index 065cb8d4b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19065.png b/front/public/images/large/gregtech/gt.metaitem.01/19065.png deleted file mode 100644 index c15ecbe9bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19066.png b/front/public/images/large/gregtech/gt.metaitem.01/19066.png deleted file mode 100644 index ded8ebb0b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19067.png b/front/public/images/large/gregtech/gt.metaitem.01/19067.png deleted file mode 100644 index 9218e18eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19068.png b/front/public/images/large/gregtech/gt.metaitem.01/19068.png deleted file mode 100644 index 649d06132d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19069.png b/front/public/images/large/gregtech/gt.metaitem.01/19069.png deleted file mode 100644 index 80d52b26a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19070.png b/front/public/images/large/gregtech/gt.metaitem.01/19070.png deleted file mode 100644 index 6cc138c0e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19071.png b/front/public/images/large/gregtech/gt.metaitem.01/19071.png deleted file mode 100644 index 6b4c4e0772..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19072.png b/front/public/images/large/gregtech/gt.metaitem.01/19072.png deleted file mode 100644 index fa95520bbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19073.png b/front/public/images/large/gregtech/gt.metaitem.01/19073.png deleted file mode 100644 index 855b90136f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19074.png b/front/public/images/large/gregtech/gt.metaitem.01/19074.png deleted file mode 100644 index 2aa1d243cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19075.png b/front/public/images/large/gregtech/gt.metaitem.01/19075.png deleted file mode 100644 index f278de8379..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19076.png b/front/public/images/large/gregtech/gt.metaitem.01/19076.png deleted file mode 100644 index ce1ffcf8ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19077.png b/front/public/images/large/gregtech/gt.metaitem.01/19077.png deleted file mode 100644 index 2ce5d0f738..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19078.png b/front/public/images/large/gregtech/gt.metaitem.01/19078.png deleted file mode 100644 index 5cf21aa05f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19080.png b/front/public/images/large/gregtech/gt.metaitem.01/19080.png deleted file mode 100644 index f5047f4d09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19081.png b/front/public/images/large/gregtech/gt.metaitem.01/19081.png deleted file mode 100644 index c0de123ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19083.png b/front/public/images/large/gregtech/gt.metaitem.01/19083.png deleted file mode 100644 index 4546b9eb11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19084.png b/front/public/images/large/gregtech/gt.metaitem.01/19084.png deleted file mode 100644 index 8ada7af9f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19085.png b/front/public/images/large/gregtech/gt.metaitem.01/19085.png deleted file mode 100644 index dc9f6336b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19086.png b/front/public/images/large/gregtech/gt.metaitem.01/19086.png deleted file mode 100644 index a236b3bf22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19089.png b/front/public/images/large/gregtech/gt.metaitem.01/19089.png deleted file mode 100644 index 43de2ce87e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19090.png b/front/public/images/large/gregtech/gt.metaitem.01/19090.png deleted file mode 100644 index 9192bbede2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19096.png b/front/public/images/large/gregtech/gt.metaitem.01/19096.png deleted file mode 100644 index 909067e31c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19097.png b/front/public/images/large/gregtech/gt.metaitem.01/19097.png deleted file mode 100644 index 8287681ca7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19098.png b/front/public/images/large/gregtech/gt.metaitem.01/19098.png deleted file mode 100644 index c3e5377701..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19100.png b/front/public/images/large/gregtech/gt.metaitem.01/19100.png deleted file mode 100644 index af4dce9bab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19101.png b/front/public/images/large/gregtech/gt.metaitem.01/19101.png deleted file mode 100644 index 06021938ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19103.png b/front/public/images/large/gregtech/gt.metaitem.01/19103.png deleted file mode 100644 index 8214f21b74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19111.png b/front/public/images/large/gregtech/gt.metaitem.01/19111.png deleted file mode 100644 index ba71cb2371..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19112.png b/front/public/images/large/gregtech/gt.metaitem.01/19112.png deleted file mode 100644 index d6b4627a20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19129.png b/front/public/images/large/gregtech/gt.metaitem.01/19129.png deleted file mode 100644 index 16a93b6a83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19131.png b/front/public/images/large/gregtech/gt.metaitem.01/19131.png deleted file mode 100644 index 014d6da866..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19134.png b/front/public/images/large/gregtech/gt.metaitem.01/19134.png deleted file mode 100644 index 538f2a60f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19139.png b/front/public/images/large/gregtech/gt.metaitem.01/19139.png deleted file mode 100644 index 9fa889f823..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19141.png b/front/public/images/large/gregtech/gt.metaitem.01/19141.png deleted file mode 100644 index ccfc82d520..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19143.png b/front/public/images/large/gregtech/gt.metaitem.01/19143.png deleted file mode 100644 index b68243c6e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19201.png b/front/public/images/large/gregtech/gt.metaitem.01/19201.png deleted file mode 100644 index a77226ab3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19202.png b/front/public/images/large/gregtech/gt.metaitem.01/19202.png deleted file mode 100644 index 0ee675e10e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19203.png b/front/public/images/large/gregtech/gt.metaitem.01/19203.png deleted file mode 100644 index 6bb4a0c90c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19205.png b/front/public/images/large/gregtech/gt.metaitem.01/19205.png deleted file mode 100644 index 5850fe707d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19300.png b/front/public/images/large/gregtech/gt.metaitem.01/19300.png deleted file mode 100644 index e3e463b374..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19301.png b/front/public/images/large/gregtech/gt.metaitem.01/19301.png deleted file mode 100644 index de1cd5f7c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19302.png b/front/public/images/large/gregtech/gt.metaitem.01/19302.png deleted file mode 100644 index 1f6c6e4c64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19303.png b/front/public/images/large/gregtech/gt.metaitem.01/19303.png deleted file mode 100644 index 02fecafff0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19304.png b/front/public/images/large/gregtech/gt.metaitem.01/19304.png deleted file mode 100644 index c61ed19888..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19305.png b/front/public/images/large/gregtech/gt.metaitem.01/19305.png deleted file mode 100644 index 8d8a857a39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19306.png b/front/public/images/large/gregtech/gt.metaitem.01/19306.png deleted file mode 100644 index 0ce9578ae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19307.png b/front/public/images/large/gregtech/gt.metaitem.01/19307.png deleted file mode 100644 index c61ed19888..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19308.png b/front/public/images/large/gregtech/gt.metaitem.01/19308.png deleted file mode 100644 index 027f8d78a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19309.png b/front/public/images/large/gregtech/gt.metaitem.01/19309.png deleted file mode 100644 index 88373801af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19310.png b/front/public/images/large/gregtech/gt.metaitem.01/19310.png deleted file mode 100644 index d68ed3781c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19311.png b/front/public/images/large/gregtech/gt.metaitem.01/19311.png deleted file mode 100644 index 1be1d7f39b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19312.png b/front/public/images/large/gregtech/gt.metaitem.01/19312.png deleted file mode 100644 index 6ee7a4ae4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19313.png b/front/public/images/large/gregtech/gt.metaitem.01/19313.png deleted file mode 100644 index 58b8fecae1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19314.png b/front/public/images/large/gregtech/gt.metaitem.01/19314.png deleted file mode 100644 index e31449878d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19315.png b/front/public/images/large/gregtech/gt.metaitem.01/19315.png deleted file mode 100644 index 124944da47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19316.png b/front/public/images/large/gregtech/gt.metaitem.01/19316.png deleted file mode 100644 index 345aa7bb30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19317.png b/front/public/images/large/gregtech/gt.metaitem.01/19317.png deleted file mode 100644 index 3578008ecc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19318.png b/front/public/images/large/gregtech/gt.metaitem.01/19318.png deleted file mode 100644 index 195d54508a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19319.png b/front/public/images/large/gregtech/gt.metaitem.01/19319.png deleted file mode 100644 index fa95520bbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19320.png b/front/public/images/large/gregtech/gt.metaitem.01/19320.png deleted file mode 100644 index 320990882c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19321.png b/front/public/images/large/gregtech/gt.metaitem.01/19321.png deleted file mode 100644 index 7a70b0c822..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19323.png b/front/public/images/large/gregtech/gt.metaitem.01/19323.png deleted file mode 100644 index 6ac334b8e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19324.png b/front/public/images/large/gregtech/gt.metaitem.01/19324.png deleted file mode 100644 index c0de123ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19325.png b/front/public/images/large/gregtech/gt.metaitem.01/19325.png deleted file mode 100644 index c802afecc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19326.png b/front/public/images/large/gregtech/gt.metaitem.01/19326.png deleted file mode 100644 index 76959bee0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19327.png b/front/public/images/large/gregtech/gt.metaitem.01/19327.png deleted file mode 100644 index b8c7ffc840..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19328.png b/front/public/images/large/gregtech/gt.metaitem.01/19328.png deleted file mode 100644 index fa95520bbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19329.png b/front/public/images/large/gregtech/gt.metaitem.01/19329.png deleted file mode 100644 index 6149adb2b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19330.png b/front/public/images/large/gregtech/gt.metaitem.01/19330.png deleted file mode 100644 index 6f85079925..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19331.png b/front/public/images/large/gregtech/gt.metaitem.01/19331.png deleted file mode 100644 index ac4243e27d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19333.png b/front/public/images/large/gregtech/gt.metaitem.01/19333.png deleted file mode 100644 index 378ac1920f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19334.png b/front/public/images/large/gregtech/gt.metaitem.01/19334.png deleted file mode 100644 index 9218e18eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19335.png b/front/public/images/large/gregtech/gt.metaitem.01/19335.png deleted file mode 100644 index df8ed35576..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19336.png b/front/public/images/large/gregtech/gt.metaitem.01/19336.png deleted file mode 100644 index a06c8a2735..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19337.png b/front/public/images/large/gregtech/gt.metaitem.01/19337.png deleted file mode 100644 index 3178d5701f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19338.png b/front/public/images/large/gregtech/gt.metaitem.01/19338.png deleted file mode 100644 index 1b6e25945f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19339.png b/front/public/images/large/gregtech/gt.metaitem.01/19339.png deleted file mode 100644 index f3f1a3fcc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19340.png b/front/public/images/large/gregtech/gt.metaitem.01/19340.png deleted file mode 100644 index 937a8e933b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19341.png b/front/public/images/large/gregtech/gt.metaitem.01/19341.png deleted file mode 100644 index 5416143eb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19342.png b/front/public/images/large/gregtech/gt.metaitem.01/19342.png deleted file mode 100644 index edccaa90f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19343.png b/front/public/images/large/gregtech/gt.metaitem.01/19343.png deleted file mode 100644 index 5e9c01b3da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19344.png b/front/public/images/large/gregtech/gt.metaitem.01/19344.png deleted file mode 100644 index c4ffcfa5a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19345.png b/front/public/images/large/gregtech/gt.metaitem.01/19345.png deleted file mode 100644 index 7125c7acf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19346.png b/front/public/images/large/gregtech/gt.metaitem.01/19346.png deleted file mode 100644 index 6784212ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19348.png b/front/public/images/large/gregtech/gt.metaitem.01/19348.png deleted file mode 100644 index 35a73dbfa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19349.png b/front/public/images/large/gregtech/gt.metaitem.01/19349.png deleted file mode 100644 index 769685511a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19350.png b/front/public/images/large/gregtech/gt.metaitem.01/19350.png deleted file mode 100644 index b9195ac9c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19351.png b/front/public/images/large/gregtech/gt.metaitem.01/19351.png deleted file mode 100644 index 91f0dd5554..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19352.png b/front/public/images/large/gregtech/gt.metaitem.01/19352.png deleted file mode 100644 index 9cf0373b20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19353.png b/front/public/images/large/gregtech/gt.metaitem.01/19353.png deleted file mode 100644 index 594eb22873..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19354.png b/front/public/images/large/gregtech/gt.metaitem.01/19354.png deleted file mode 100644 index e136198b19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19355.png b/front/public/images/large/gregtech/gt.metaitem.01/19355.png deleted file mode 100644 index 37aab9543e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19356.png b/front/public/images/large/gregtech/gt.metaitem.01/19356.png deleted file mode 100644 index 004f99cf07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19357.png b/front/public/images/large/gregtech/gt.metaitem.01/19357.png deleted file mode 100644 index c3ac0c1dbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19358.png b/front/public/images/large/gregtech/gt.metaitem.01/19358.png deleted file mode 100644 index 9a3dc9e129..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19359.png b/front/public/images/large/gregtech/gt.metaitem.01/19359.png deleted file mode 100644 index 03b448b96e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19360.png b/front/public/images/large/gregtech/gt.metaitem.01/19360.png deleted file mode 100644 index 38b209a5e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19361.png b/front/public/images/large/gregtech/gt.metaitem.01/19361.png deleted file mode 100644 index e83a19dba5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19362.png b/front/public/images/large/gregtech/gt.metaitem.01/19362.png deleted file mode 100644 index 0b41080b94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19363.png b/front/public/images/large/gregtech/gt.metaitem.01/19363.png deleted file mode 100644 index 8214f21b74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19364.png b/front/public/images/large/gregtech/gt.metaitem.01/19364.png deleted file mode 100644 index 2e2f50697f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19365.png b/front/public/images/large/gregtech/gt.metaitem.01/19365.png deleted file mode 100644 index cb728e9aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19366.png b/front/public/images/large/gregtech/gt.metaitem.01/19366.png deleted file mode 100644 index f1d7ed913b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19367.png b/front/public/images/large/gregtech/gt.metaitem.01/19367.png deleted file mode 100644 index 8023932f2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19368.png b/front/public/images/large/gregtech/gt.metaitem.01/19368.png deleted file mode 100644 index dc6cc53c3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19369.png b/front/public/images/large/gregtech/gt.metaitem.01/19369.png deleted file mode 100644 index 2b690c5b10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19370.png b/front/public/images/large/gregtech/gt.metaitem.01/19370.png deleted file mode 100644 index 61754ba6d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19371.png b/front/public/images/large/gregtech/gt.metaitem.01/19371.png deleted file mode 100644 index 8d17b0adb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19372.png b/front/public/images/large/gregtech/gt.metaitem.01/19372.png deleted file mode 100644 index 1f6fa50794..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19373.png b/front/public/images/large/gregtech/gt.metaitem.01/19373.png deleted file mode 100644 index 639c4eae9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19374.png b/front/public/images/large/gregtech/gt.metaitem.01/19374.png deleted file mode 100644 index 90bb02ce89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19378.png b/front/public/images/large/gregtech/gt.metaitem.01/19378.png deleted file mode 100644 index 9d39636e7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19379.png b/front/public/images/large/gregtech/gt.metaitem.01/19379.png deleted file mode 100644 index 41bb674ea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19380.png b/front/public/images/large/gregtech/gt.metaitem.01/19380.png deleted file mode 100644 index 959e601023..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19381.png b/front/public/images/large/gregtech/gt.metaitem.01/19381.png deleted file mode 100644 index c67e3ba2fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19382.png b/front/public/images/large/gregtech/gt.metaitem.01/19382.png deleted file mode 100644 index 9c6b8f0de1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19383.png b/front/public/images/large/gregtech/gt.metaitem.01/19383.png deleted file mode 100644 index e85aa81e61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19384.png b/front/public/images/large/gregtech/gt.metaitem.01/19384.png deleted file mode 100644 index 727394a842..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19385.png b/front/public/images/large/gregtech/gt.metaitem.01/19385.png deleted file mode 100644 index 5f3a3193c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19386.png b/front/public/images/large/gregtech/gt.metaitem.01/19386.png deleted file mode 100644 index 48935f24ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19387.png b/front/public/images/large/gregtech/gt.metaitem.01/19387.png deleted file mode 100644 index 767f07a27a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19388.png b/front/public/images/large/gregtech/gt.metaitem.01/19388.png deleted file mode 100644 index c0de123ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19389.png b/front/public/images/large/gregtech/gt.metaitem.01/19389.png deleted file mode 100644 index 87e4e970ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19390.png b/front/public/images/large/gregtech/gt.metaitem.01/19390.png deleted file mode 100644 index f31561b0cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19391.png b/front/public/images/large/gregtech/gt.metaitem.01/19391.png deleted file mode 100644 index d90da81c40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19392.png b/front/public/images/large/gregtech/gt.metaitem.01/19392.png deleted file mode 100644 index 19316404f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19393.png b/front/public/images/large/gregtech/gt.metaitem.01/19393.png deleted file mode 100644 index 5125bc47c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19394.png b/front/public/images/large/gregtech/gt.metaitem.01/19394.png deleted file mode 100644 index fa95520bbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19395.png b/front/public/images/large/gregtech/gt.metaitem.01/19395.png deleted file mode 100644 index c0de123ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19397.png b/front/public/images/large/gregtech/gt.metaitem.01/19397.png deleted file mode 100644 index ec77a234be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19398.png b/front/public/images/large/gregtech/gt.metaitem.01/19398.png deleted file mode 100644 index 89226fd14d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19399.png b/front/public/images/large/gregtech/gt.metaitem.01/19399.png deleted file mode 100644 index 63e241196e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19400.png b/front/public/images/large/gregtech/gt.metaitem.01/19400.png deleted file mode 100644 index a4a9e6d3aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19401.png b/front/public/images/large/gregtech/gt.metaitem.01/19401.png deleted file mode 100644 index 5bfdb8cc37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19402.png b/front/public/images/large/gregtech/gt.metaitem.01/19402.png deleted file mode 100644 index 75539978fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19403.png b/front/public/images/large/gregtech/gt.metaitem.01/19403.png deleted file mode 100644 index 02223d535a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19404.png b/front/public/images/large/gregtech/gt.metaitem.01/19404.png deleted file mode 100644 index 410e8f7dbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19405.png b/front/public/images/large/gregtech/gt.metaitem.01/19405.png deleted file mode 100644 index c64719f4d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19406.png b/front/public/images/large/gregtech/gt.metaitem.01/19406.png deleted file mode 100644 index 772b0f124d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19407.png b/front/public/images/large/gregtech/gt.metaitem.01/19407.png deleted file mode 100644 index 84309411b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19408.png b/front/public/images/large/gregtech/gt.metaitem.01/19408.png deleted file mode 100644 index 59acfa6092..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19470.png b/front/public/images/large/gregtech/gt.metaitem.01/19470.png deleted file mode 100644 index d932b9e3f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19471.png b/front/public/images/large/gregtech/gt.metaitem.01/19471.png deleted file mode 100644 index 51b3620658..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19472.png b/front/public/images/large/gregtech/gt.metaitem.01/19472.png deleted file mode 100644 index c0de123ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19473.png b/front/public/images/large/gregtech/gt.metaitem.01/19473.png deleted file mode 100644 index 9218e18eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19485.png b/front/public/images/large/gregtech/gt.metaitem.01/19485.png deleted file mode 100644 index e27420f935..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19488.png b/front/public/images/large/gregtech/gt.metaitem.01/19488.png deleted file mode 100644 index 78cc862475..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19489.png b/front/public/images/large/gregtech/gt.metaitem.01/19489.png deleted file mode 100644 index 0cac75e782..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19521.png b/front/public/images/large/gregtech/gt.metaitem.01/19521.png deleted file mode 100644 index 195d54508a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19529.png b/front/public/images/large/gregtech/gt.metaitem.01/19529.png deleted file mode 100644 index 06188ed9a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19576.png b/front/public/images/large/gregtech/gt.metaitem.01/19576.png deleted file mode 100644 index a084052116..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19581.png b/front/public/images/large/gregtech/gt.metaitem.01/19581.png deleted file mode 100644 index 820b54af69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19582.png b/front/public/images/large/gregtech/gt.metaitem.01/19582.png deleted file mode 100644 index ee88f5f66f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19585.png b/front/public/images/large/gregtech/gt.metaitem.01/19585.png deleted file mode 100644 index 9bfc87fa61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19586.png b/front/public/images/large/gregtech/gt.metaitem.01/19586.png deleted file mode 100644 index 991d14a2c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19588.png b/front/public/images/large/gregtech/gt.metaitem.01/19588.png deleted file mode 100644 index dec44c2087..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19599.png b/front/public/images/large/gregtech/gt.metaitem.01/19599.png deleted file mode 100644 index 24b763070e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19610.png b/front/public/images/large/gregtech/gt.metaitem.01/19610.png deleted file mode 100644 index b446b62074..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19613.png b/front/public/images/large/gregtech/gt.metaitem.01/19613.png deleted file mode 100644 index 04012177ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19631.png b/front/public/images/large/gregtech/gt.metaitem.01/19631.png deleted file mode 100644 index 076ed40e30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19635.png b/front/public/images/large/gregtech/gt.metaitem.01/19635.png deleted file mode 100644 index f31ce5c5b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19636.png b/front/public/images/large/gregtech/gt.metaitem.01/19636.png deleted file mode 100644 index a750406a97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19649.png b/front/public/images/large/gregtech/gt.metaitem.01/19649.png deleted file mode 100644 index 1e20faad2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19765.png b/front/public/images/large/gregtech/gt.metaitem.01/19765.png deleted file mode 100644 index 22c1032fa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19770.png b/front/public/images/large/gregtech/gt.metaitem.01/19770.png deleted file mode 100644 index fad68612f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19772.png b/front/public/images/large/gregtech/gt.metaitem.01/19772.png deleted file mode 100644 index cffd0d7060..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19829.png b/front/public/images/large/gregtech/gt.metaitem.01/19829.png deleted file mode 100644 index 008dd47af1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19856.png b/front/public/images/large/gregtech/gt.metaitem.01/19856.png deleted file mode 100644 index 3bf1dda744..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19868.png b/front/public/images/large/gregtech/gt.metaitem.01/19868.png deleted file mode 100644 index e30252465c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19874.png b/front/public/images/large/gregtech/gt.metaitem.01/19874.png deleted file mode 100644 index 8214f21b74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19879.png b/front/public/images/large/gregtech/gt.metaitem.01/19879.png deleted file mode 100644 index 8f7d8a30ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19879.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19880.png b/front/public/images/large/gregtech/gt.metaitem.01/19880.png deleted file mode 100644 index 991d14a2c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19884.png b/front/public/images/large/gregtech/gt.metaitem.01/19884.png deleted file mode 100644 index c802afecc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19912.png b/front/public/images/large/gregtech/gt.metaitem.01/19912.png deleted file mode 100644 index 8cd0e252a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19913.png b/front/public/images/large/gregtech/gt.metaitem.01/19913.png deleted file mode 100644 index 35a73dbfa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19951.png b/front/public/images/large/gregtech/gt.metaitem.01/19951.png deleted file mode 100644 index 37c176acfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19952.png b/front/public/images/large/gregtech/gt.metaitem.01/19952.png deleted file mode 100644 index 547a97630d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19956.png b/front/public/images/large/gregtech/gt.metaitem.01/19956.png deleted file mode 100644 index 85cf0ca0ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19966.png b/front/public/images/large/gregtech/gt.metaitem.01/19966.png deleted file mode 100644 index dca7049ff0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19970.png b/front/public/images/large/gregtech/gt.metaitem.01/19970.png deleted file mode 100644 index 3acc258071..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19974.png b/front/public/images/large/gregtech/gt.metaitem.01/19974.png deleted file mode 100644 index 9b14c84de5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19975.png b/front/public/images/large/gregtech/gt.metaitem.01/19975.png deleted file mode 100644 index 472f71ebec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19976.png b/front/public/images/large/gregtech/gt.metaitem.01/19976.png deleted file mode 100644 index e2d35a376b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19977.png b/front/public/images/large/gregtech/gt.metaitem.01/19977.png deleted file mode 100644 index b19701c57f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19978.png b/front/public/images/large/gregtech/gt.metaitem.01/19978.png deleted file mode 100644 index 8116786cf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19979.png b/front/public/images/large/gregtech/gt.metaitem.01/19979.png deleted file mode 100644 index a5fbe45415..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19980.png b/front/public/images/large/gregtech/gt.metaitem.01/19980.png deleted file mode 100644 index 55c9998af6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19981.png b/front/public/images/large/gregtech/gt.metaitem.01/19981.png deleted file mode 100644 index 3eb98f08bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19982.png b/front/public/images/large/gregtech/gt.metaitem.01/19982.png deleted file mode 100644 index 033445c81a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19984.png b/front/public/images/large/gregtech/gt.metaitem.01/19984.png deleted file mode 100644 index fa95520bbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19985.png b/front/public/images/large/gregtech/gt.metaitem.01/19985.png deleted file mode 100644 index 074d5715f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19986.png b/front/public/images/large/gregtech/gt.metaitem.01/19986.png deleted file mode 100644 index 6c3f5e3753..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19987.png b/front/public/images/large/gregtech/gt.metaitem.01/19987.png deleted file mode 100644 index 1b830b5ca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19988.png b/front/public/images/large/gregtech/gt.metaitem.01/19988.png deleted file mode 100644 index 708e38ce32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19989.png b/front/public/images/large/gregtech/gt.metaitem.01/19989.png deleted file mode 100644 index 1268595051..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19990.png b/front/public/images/large/gregtech/gt.metaitem.01/19990.png deleted file mode 100644 index 721d51c050..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19991.png b/front/public/images/large/gregtech/gt.metaitem.01/19991.png deleted file mode 100644 index 9a810519a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/19992.png b/front/public/images/large/gregtech/gt.metaitem.01/19992.png deleted file mode 100644 index f303d82d56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/19992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20006.png b/front/public/images/large/gregtech/gt.metaitem.01/20006.png deleted file mode 100644 index 45da54289f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20008.png b/front/public/images/large/gregtech/gt.metaitem.01/20008.png deleted file mode 100644 index daf1f8030c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20010.png b/front/public/images/large/gregtech/gt.metaitem.01/20010.png deleted file mode 100644 index d85baff04a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20018.png b/front/public/images/large/gregtech/gt.metaitem.01/20018.png deleted file mode 100644 index 90bb3d807b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20019.png b/front/public/images/large/gregtech/gt.metaitem.01/20019.png deleted file mode 100644 index 0e471f4e73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20020.png b/front/public/images/large/gregtech/gt.metaitem.01/20020.png deleted file mode 100644 index 24715c925d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20025.png b/front/public/images/large/gregtech/gt.metaitem.01/20025.png deleted file mode 100644 index cb8bfb0764..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20027.png b/front/public/images/large/gregtech/gt.metaitem.01/20027.png deleted file mode 100644 index 632b409199..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20028.png b/front/public/images/large/gregtech/gt.metaitem.01/20028.png deleted file mode 100644 index c1223baa67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20029.png b/front/public/images/large/gregtech/gt.metaitem.01/20029.png deleted file mode 100644 index c80c61b1c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20030.png b/front/public/images/large/gregtech/gt.metaitem.01/20030.png deleted file mode 100644 index fb610a1da7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20031.png b/front/public/images/large/gregtech/gt.metaitem.01/20031.png deleted file mode 100644 index 6662db0daa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20032.png b/front/public/images/large/gregtech/gt.metaitem.01/20032.png deleted file mode 100644 index 79975da132..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20033.png b/front/public/images/large/gregtech/gt.metaitem.01/20033.png deleted file mode 100644 index 11b270c5b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20034.png b/front/public/images/large/gregtech/gt.metaitem.01/20034.png deleted file mode 100644 index 12498fc232..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20035.png b/front/public/images/large/gregtech/gt.metaitem.01/20035.png deleted file mode 100644 index 2f29591cba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20036.png b/front/public/images/large/gregtech/gt.metaitem.01/20036.png deleted file mode 100644 index aade0537bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20037.png b/front/public/images/large/gregtech/gt.metaitem.01/20037.png deleted file mode 100644 index 925982ed47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20039.png b/front/public/images/large/gregtech/gt.metaitem.01/20039.png deleted file mode 100644 index 8e30e6a517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20043.png b/front/public/images/large/gregtech/gt.metaitem.01/20043.png deleted file mode 100644 index e90977c0ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20045.png b/front/public/images/large/gregtech/gt.metaitem.01/20045.png deleted file mode 100644 index e38efa5580..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20047.png b/front/public/images/large/gregtech/gt.metaitem.01/20047.png deleted file mode 100644 index 3b615511b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20048.png b/front/public/images/large/gregtech/gt.metaitem.01/20048.png deleted file mode 100644 index e91690aae7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20052.png b/front/public/images/large/gregtech/gt.metaitem.01/20052.png deleted file mode 100644 index 9cfc62f1f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20054.png b/front/public/images/large/gregtech/gt.metaitem.01/20054.png deleted file mode 100644 index 925982ed47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20056.png b/front/public/images/large/gregtech/gt.metaitem.01/20056.png deleted file mode 100644 index f2d0c4e67d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20057.png b/front/public/images/large/gregtech/gt.metaitem.01/20057.png deleted file mode 100644 index 256254b989..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20058.png b/front/public/images/large/gregtech/gt.metaitem.01/20058.png deleted file mode 100644 index f6154c1a4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20059.png b/front/public/images/large/gregtech/gt.metaitem.01/20059.png deleted file mode 100644 index 225f87edb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2006.png b/front/public/images/large/gregtech/gt.metaitem.01/2006.png deleted file mode 100644 index db93e87557..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20062.png b/front/public/images/large/gregtech/gt.metaitem.01/20062.png deleted file mode 100644 index 888c3f030a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20063.png b/front/public/images/large/gregtech/gt.metaitem.01/20063.png deleted file mode 100644 index 8e30e6a517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20064.png b/front/public/images/large/gregtech/gt.metaitem.01/20064.png deleted file mode 100644 index 4f37ccc392..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20065.png b/front/public/images/large/gregtech/gt.metaitem.01/20065.png deleted file mode 100644 index 12327d2d79..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20066.png b/front/public/images/large/gregtech/gt.metaitem.01/20066.png deleted file mode 100644 index 861329cf73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20067.png b/front/public/images/large/gregtech/gt.metaitem.01/20067.png deleted file mode 100644 index 1db7037311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20068.png b/front/public/images/large/gregtech/gt.metaitem.01/20068.png deleted file mode 100644 index 3415a58ed6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20069.png b/front/public/images/large/gregtech/gt.metaitem.01/20069.png deleted file mode 100644 index 128dbbd12b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20070.png b/front/public/images/large/gregtech/gt.metaitem.01/20070.png deleted file mode 100644 index d94940c6f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20071.png b/front/public/images/large/gregtech/gt.metaitem.01/20071.png deleted file mode 100644 index 444657f9fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20072.png b/front/public/images/large/gregtech/gt.metaitem.01/20072.png deleted file mode 100644 index 8e30e6a517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20073.png b/front/public/images/large/gregtech/gt.metaitem.01/20073.png deleted file mode 100644 index ef1f6bbf93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20074.png b/front/public/images/large/gregtech/gt.metaitem.01/20074.png deleted file mode 100644 index 0c7954c0b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20075.png b/front/public/images/large/gregtech/gt.metaitem.01/20075.png deleted file mode 100644 index 8ed0637f39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20076.png b/front/public/images/large/gregtech/gt.metaitem.01/20076.png deleted file mode 100644 index f43e9cdc61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20077.png b/front/public/images/large/gregtech/gt.metaitem.01/20077.png deleted file mode 100644 index 25d8480e76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20078.png b/front/public/images/large/gregtech/gt.metaitem.01/20078.png deleted file mode 100644 index c49840a4a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2008.png b/front/public/images/large/gregtech/gt.metaitem.01/2008.png deleted file mode 100644 index 3275b7c5f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20080.png b/front/public/images/large/gregtech/gt.metaitem.01/20080.png deleted file mode 100644 index 26877bd047..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20081.png b/front/public/images/large/gregtech/gt.metaitem.01/20081.png deleted file mode 100644 index c80c61b1c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20083.png b/front/public/images/large/gregtech/gt.metaitem.01/20083.png deleted file mode 100644 index 5ad604e3db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20084.png b/front/public/images/large/gregtech/gt.metaitem.01/20084.png deleted file mode 100644 index baa3b8a26f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20085.png b/front/public/images/large/gregtech/gt.metaitem.01/20085.png deleted file mode 100644 index fd8e8e0fee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20086.png b/front/public/images/large/gregtech/gt.metaitem.01/20086.png deleted file mode 100644 index cf327e2ec6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20089.png b/front/public/images/large/gregtech/gt.metaitem.01/20089.png deleted file mode 100644 index f4702a0524..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2009.png b/front/public/images/large/gregtech/gt.metaitem.01/2009.png deleted file mode 100644 index d82f6e481f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20090.png b/front/public/images/large/gregtech/gt.metaitem.01/20090.png deleted file mode 100644 index eb4c2f5413..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20096.png b/front/public/images/large/gregtech/gt.metaitem.01/20096.png deleted file mode 100644 index 72cb9cf3a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20097.png b/front/public/images/large/gregtech/gt.metaitem.01/20097.png deleted file mode 100644 index 408cdd8d4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20098.png b/front/public/images/large/gregtech/gt.metaitem.01/20098.png deleted file mode 100644 index 4de90d9629..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2010.png b/front/public/images/large/gregtech/gt.metaitem.01/2010.png deleted file mode 100644 index b4a995c1dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20100.png b/front/public/images/large/gregtech/gt.metaitem.01/20100.png deleted file mode 100644 index 8da176aa82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20101.png b/front/public/images/large/gregtech/gt.metaitem.01/20101.png deleted file mode 100644 index d511496fa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20103.png b/front/public/images/large/gregtech/gt.metaitem.01/20103.png deleted file mode 100644 index 79975da132..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20111.png b/front/public/images/large/gregtech/gt.metaitem.01/20111.png deleted file mode 100644 index 566fa25a06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20112.png b/front/public/images/large/gregtech/gt.metaitem.01/20112.png deleted file mode 100644 index 82397e334e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20129.png b/front/public/images/large/gregtech/gt.metaitem.01/20129.png deleted file mode 100644 index 6662db0daa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20131.png b/front/public/images/large/gregtech/gt.metaitem.01/20131.png deleted file mode 100644 index 13dbcbd803..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20134.png b/front/public/images/large/gregtech/gt.metaitem.01/20134.png deleted file mode 100644 index 0e12fc3652..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20139.png b/front/public/images/large/gregtech/gt.metaitem.01/20139.png deleted file mode 100644 index 75e22bfc6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20141.png b/front/public/images/large/gregtech/gt.metaitem.01/20141.png deleted file mode 100644 index a281622999..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20143.png b/front/public/images/large/gregtech/gt.metaitem.01/20143.png deleted file mode 100644 index c4fa405c41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2017.png b/front/public/images/large/gregtech/gt.metaitem.01/2017.png deleted file mode 100644 index 2c91b4b90c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2017.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2018.png b/front/public/images/large/gregtech/gt.metaitem.01/2018.png deleted file mode 100644 index e58d49ab40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2019.png b/front/public/images/large/gregtech/gt.metaitem.01/2019.png deleted file mode 100644 index f50ea423f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2020.png b/front/public/images/large/gregtech/gt.metaitem.01/2020.png deleted file mode 100644 index a6de869f45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20201.png b/front/public/images/large/gregtech/gt.metaitem.01/20201.png deleted file mode 100644 index b4027e093c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20202.png b/front/public/images/large/gregtech/gt.metaitem.01/20202.png deleted file mode 100644 index fd6ac4287d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20203.png b/front/public/images/large/gregtech/gt.metaitem.01/20203.png deleted file mode 100644 index 7f9364cae9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20205.png b/front/public/images/large/gregtech/gt.metaitem.01/20205.png deleted file mode 100644 index c916d56dff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2021.png b/front/public/images/large/gregtech/gt.metaitem.01/2021.png deleted file mode 100644 index 6cdf4361cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2022.png b/front/public/images/large/gregtech/gt.metaitem.01/2022.png deleted file mode 100644 index dbe87c12d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2025.png b/front/public/images/large/gregtech/gt.metaitem.01/2025.png deleted file mode 100644 index 0c9b3b63fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2026.png b/front/public/images/large/gregtech/gt.metaitem.01/2026.png deleted file mode 100644 index 77262c8fce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2027.png b/front/public/images/large/gregtech/gt.metaitem.01/2027.png deleted file mode 100644 index f0017f60f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2028.png b/front/public/images/large/gregtech/gt.metaitem.01/2028.png deleted file mode 100644 index 2a04537302..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2029.png b/front/public/images/large/gregtech/gt.metaitem.01/2029.png deleted file mode 100644 index 8a6b2e45fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2030.png b/front/public/images/large/gregtech/gt.metaitem.01/2030.png deleted file mode 100644 index e4ca3132f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20300.png b/front/public/images/large/gregtech/gt.metaitem.01/20300.png deleted file mode 100644 index 23f757a7a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20301.png b/front/public/images/large/gregtech/gt.metaitem.01/20301.png deleted file mode 100644 index 9abd395162..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20302.png b/front/public/images/large/gregtech/gt.metaitem.01/20302.png deleted file mode 100644 index 2c6c96fe1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20303.png b/front/public/images/large/gregtech/gt.metaitem.01/20303.png deleted file mode 100644 index 3ed51a0298..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20304.png b/front/public/images/large/gregtech/gt.metaitem.01/20304.png deleted file mode 100644 index 1c3ba0da5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20305.png b/front/public/images/large/gregtech/gt.metaitem.01/20305.png deleted file mode 100644 index 9cfc62f1f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20306.png b/front/public/images/large/gregtech/gt.metaitem.01/20306.png deleted file mode 100644 index 3c1bec679d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20307.png b/front/public/images/large/gregtech/gt.metaitem.01/20307.png deleted file mode 100644 index 1c3ba0da5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20308.png b/front/public/images/large/gregtech/gt.metaitem.01/20308.png deleted file mode 100644 index d58783728a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20309.png b/front/public/images/large/gregtech/gt.metaitem.01/20309.png deleted file mode 100644 index 40f8c216c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2031.png b/front/public/images/large/gregtech/gt.metaitem.01/2031.png deleted file mode 100644 index e00997e7a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20310.png b/front/public/images/large/gregtech/gt.metaitem.01/20310.png deleted file mode 100644 index 93477a3a28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20311.png b/front/public/images/large/gregtech/gt.metaitem.01/20311.png deleted file mode 100644 index caab92913b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20312.png b/front/public/images/large/gregtech/gt.metaitem.01/20312.png deleted file mode 100644 index 051dc5390f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20313.png b/front/public/images/large/gregtech/gt.metaitem.01/20313.png deleted file mode 100644 index efaf9c1667..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20314.png b/front/public/images/large/gregtech/gt.metaitem.01/20314.png deleted file mode 100644 index adea50b977..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20315.png b/front/public/images/large/gregtech/gt.metaitem.01/20315.png deleted file mode 100644 index 856b43129e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20316.png b/front/public/images/large/gregtech/gt.metaitem.01/20316.png deleted file mode 100644 index 1bba7551ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20317.png b/front/public/images/large/gregtech/gt.metaitem.01/20317.png deleted file mode 100644 index b49c3dacb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20318.png b/front/public/images/large/gregtech/gt.metaitem.01/20318.png deleted file mode 100644 index 8fb3e352e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20319.png b/front/public/images/large/gregtech/gt.metaitem.01/20319.png deleted file mode 100644 index 8e30e6a517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2032.png b/front/public/images/large/gregtech/gt.metaitem.01/2032.png deleted file mode 100644 index 57bea47417..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20320.png b/front/public/images/large/gregtech/gt.metaitem.01/20320.png deleted file mode 100644 index 590db9c35d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20321.png b/front/public/images/large/gregtech/gt.metaitem.01/20321.png deleted file mode 100644 index f8fa3c124f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20323.png b/front/public/images/large/gregtech/gt.metaitem.01/20323.png deleted file mode 100644 index 32f5b4ee64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20324.png b/front/public/images/large/gregtech/gt.metaitem.01/20324.png deleted file mode 100644 index c80c61b1c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20325.png b/front/public/images/large/gregtech/gt.metaitem.01/20325.png deleted file mode 100644 index a146c3a72f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20326.png b/front/public/images/large/gregtech/gt.metaitem.01/20326.png deleted file mode 100644 index 2a090cdb9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20327.png b/front/public/images/large/gregtech/gt.metaitem.01/20327.png deleted file mode 100644 index 2ebd7a7fe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20328.png b/front/public/images/large/gregtech/gt.metaitem.01/20328.png deleted file mode 100644 index 8e30e6a517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20329.png b/front/public/images/large/gregtech/gt.metaitem.01/20329.png deleted file mode 100644 index d59be879db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2033.png b/front/public/images/large/gregtech/gt.metaitem.01/2033.png deleted file mode 100644 index 48b223232c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20330.png b/front/public/images/large/gregtech/gt.metaitem.01/20330.png deleted file mode 100644 index 019c250429..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20331.png b/front/public/images/large/gregtech/gt.metaitem.01/20331.png deleted file mode 100644 index 7eafb180e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20333.png b/front/public/images/large/gregtech/gt.metaitem.01/20333.png deleted file mode 100644 index ce79554503..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20334.png b/front/public/images/large/gregtech/gt.metaitem.01/20334.png deleted file mode 100644 index 1db7037311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20335.png b/front/public/images/large/gregtech/gt.metaitem.01/20335.png deleted file mode 100644 index 2d45cd779a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20336.png b/front/public/images/large/gregtech/gt.metaitem.01/20336.png deleted file mode 100644 index 88d2a90b72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20337.png b/front/public/images/large/gregtech/gt.metaitem.01/20337.png deleted file mode 100644 index 8248173cf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20338.png b/front/public/images/large/gregtech/gt.metaitem.01/20338.png deleted file mode 100644 index 789ef84969..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20339.png b/front/public/images/large/gregtech/gt.metaitem.01/20339.png deleted file mode 100644 index 9c60516e62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2034.png b/front/public/images/large/gregtech/gt.metaitem.01/2034.png deleted file mode 100644 index 3ce09c01e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20340.png b/front/public/images/large/gregtech/gt.metaitem.01/20340.png deleted file mode 100644 index 4d689e9587..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20341.png b/front/public/images/large/gregtech/gt.metaitem.01/20341.png deleted file mode 100644 index b3f0153e87..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20342.png b/front/public/images/large/gregtech/gt.metaitem.01/20342.png deleted file mode 100644 index 7d915e2768..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20343.png b/front/public/images/large/gregtech/gt.metaitem.01/20343.png deleted file mode 100644 index cb839f368e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20344.png b/front/public/images/large/gregtech/gt.metaitem.01/20344.png deleted file mode 100644 index c3ff43d002..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20345.png b/front/public/images/large/gregtech/gt.metaitem.01/20345.png deleted file mode 100644 index 5892ea94df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20346.png b/front/public/images/large/gregtech/gt.metaitem.01/20346.png deleted file mode 100644 index 545dc5d27b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20348.png b/front/public/images/large/gregtech/gt.metaitem.01/20348.png deleted file mode 100644 index 51bbd79006..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20349.png b/front/public/images/large/gregtech/gt.metaitem.01/20349.png deleted file mode 100644 index fccd344e05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2035.png b/front/public/images/large/gregtech/gt.metaitem.01/2035.png deleted file mode 100644 index a8ad03b5a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20350.png b/front/public/images/large/gregtech/gt.metaitem.01/20350.png deleted file mode 100644 index 83a63dbd2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20351.png b/front/public/images/large/gregtech/gt.metaitem.01/20351.png deleted file mode 100644 index a33340fce4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20352.png b/front/public/images/large/gregtech/gt.metaitem.01/20352.png deleted file mode 100644 index 4ea456ec2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20353.png b/front/public/images/large/gregtech/gt.metaitem.01/20353.png deleted file mode 100644 index 6359db9e94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20354.png b/front/public/images/large/gregtech/gt.metaitem.01/20354.png deleted file mode 100644 index feda657a1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20355.png b/front/public/images/large/gregtech/gt.metaitem.01/20355.png deleted file mode 100644 index d703358f28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20356.png b/front/public/images/large/gregtech/gt.metaitem.01/20356.png deleted file mode 100644 index 397628d854..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20357.png b/front/public/images/large/gregtech/gt.metaitem.01/20357.png deleted file mode 100644 index acb380f0f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20358.png b/front/public/images/large/gregtech/gt.metaitem.01/20358.png deleted file mode 100644 index 393c0cf181..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20359.png b/front/public/images/large/gregtech/gt.metaitem.01/20359.png deleted file mode 100644 index 54cc8c8235..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2036.png b/front/public/images/large/gregtech/gt.metaitem.01/2036.png deleted file mode 100644 index 4567c6366e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20360.png b/front/public/images/large/gregtech/gt.metaitem.01/20360.png deleted file mode 100644 index e4114e99e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20361.png b/front/public/images/large/gregtech/gt.metaitem.01/20361.png deleted file mode 100644 index be301d5af9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20362.png b/front/public/images/large/gregtech/gt.metaitem.01/20362.png deleted file mode 100644 index 83b05e1c50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20363.png b/front/public/images/large/gregtech/gt.metaitem.01/20363.png deleted file mode 100644 index 79975da132..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20364.png b/front/public/images/large/gregtech/gt.metaitem.01/20364.png deleted file mode 100644 index 80692caf95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20365.png b/front/public/images/large/gregtech/gt.metaitem.01/20365.png deleted file mode 100644 index 3b51f026f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20366.png b/front/public/images/large/gregtech/gt.metaitem.01/20366.png deleted file mode 100644 index 92cc1caa9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20367.png b/front/public/images/large/gregtech/gt.metaitem.01/20367.png deleted file mode 100644 index d8f1cea650..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20368.png b/front/public/images/large/gregtech/gt.metaitem.01/20368.png deleted file mode 100644 index 8bbae5beae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20369.png b/front/public/images/large/gregtech/gt.metaitem.01/20369.png deleted file mode 100644 index 5b1d114856..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2037.png b/front/public/images/large/gregtech/gt.metaitem.01/2037.png deleted file mode 100644 index 1c46a3e2c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20370.png b/front/public/images/large/gregtech/gt.metaitem.01/20370.png deleted file mode 100644 index c1528dc9e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20371.png b/front/public/images/large/gregtech/gt.metaitem.01/20371.png deleted file mode 100644 index a57ebd09c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20372.png b/front/public/images/large/gregtech/gt.metaitem.01/20372.png deleted file mode 100644 index 56e5c206d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20373.png b/front/public/images/large/gregtech/gt.metaitem.01/20373.png deleted file mode 100644 index 85e9ad1400..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20374.png b/front/public/images/large/gregtech/gt.metaitem.01/20374.png deleted file mode 100644 index fd21dd10a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20378.png b/front/public/images/large/gregtech/gt.metaitem.01/20378.png deleted file mode 100644 index 3aea071651..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20379.png b/front/public/images/large/gregtech/gt.metaitem.01/20379.png deleted file mode 100644 index 5e7adef1da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20380.png b/front/public/images/large/gregtech/gt.metaitem.01/20380.png deleted file mode 100644 index c458428ae7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20381.png b/front/public/images/large/gregtech/gt.metaitem.01/20381.png deleted file mode 100644 index 66078ab4fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20382.png b/front/public/images/large/gregtech/gt.metaitem.01/20382.png deleted file mode 100644 index cceeeed71b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20383.png b/front/public/images/large/gregtech/gt.metaitem.01/20383.png deleted file mode 100644 index 03b41d3b77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20384.png b/front/public/images/large/gregtech/gt.metaitem.01/20384.png deleted file mode 100644 index a097175890..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20385.png b/front/public/images/large/gregtech/gt.metaitem.01/20385.png deleted file mode 100644 index 93d4133d02..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20386.png b/front/public/images/large/gregtech/gt.metaitem.01/20386.png deleted file mode 100644 index 2c9144fc2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20387.png b/front/public/images/large/gregtech/gt.metaitem.01/20387.png deleted file mode 100644 index fc168db5bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20388.png b/front/public/images/large/gregtech/gt.metaitem.01/20388.png deleted file mode 100644 index c80c61b1c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20389.png b/front/public/images/large/gregtech/gt.metaitem.01/20389.png deleted file mode 100644 index c01eacc3cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2039.png b/front/public/images/large/gregtech/gt.metaitem.01/2039.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20390.png b/front/public/images/large/gregtech/gt.metaitem.01/20390.png deleted file mode 100644 index 574c4797b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20391.png b/front/public/images/large/gregtech/gt.metaitem.01/20391.png deleted file mode 100644 index 9c8e133b79..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20392.png b/front/public/images/large/gregtech/gt.metaitem.01/20392.png deleted file mode 100644 index 943b63a54d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20393.png b/front/public/images/large/gregtech/gt.metaitem.01/20393.png deleted file mode 100644 index 464252f9b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20394.png b/front/public/images/large/gregtech/gt.metaitem.01/20394.png deleted file mode 100644 index 8e30e6a517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20395.png b/front/public/images/large/gregtech/gt.metaitem.01/20395.png deleted file mode 100644 index c80c61b1c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20397.png b/front/public/images/large/gregtech/gt.metaitem.01/20397.png deleted file mode 100644 index 0092e1d1cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20398.png b/front/public/images/large/gregtech/gt.metaitem.01/20398.png deleted file mode 100644 index 24f1e883b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20399.png b/front/public/images/large/gregtech/gt.metaitem.01/20399.png deleted file mode 100644 index d15cc3859f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20400.png b/front/public/images/large/gregtech/gt.metaitem.01/20400.png deleted file mode 100644 index 7788066e08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20401.png b/front/public/images/large/gregtech/gt.metaitem.01/20401.png deleted file mode 100644 index 3483e1b9e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20402.png b/front/public/images/large/gregtech/gt.metaitem.01/20402.png deleted file mode 100644 index b8ad9e9323..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20403.png b/front/public/images/large/gregtech/gt.metaitem.01/20403.png deleted file mode 100644 index 376340d5f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20404.png b/front/public/images/large/gregtech/gt.metaitem.01/20404.png deleted file mode 100644 index 5c907c3733..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20405.png b/front/public/images/large/gregtech/gt.metaitem.01/20405.png deleted file mode 100644 index cb71b51595..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20406.png b/front/public/images/large/gregtech/gt.metaitem.01/20406.png deleted file mode 100644 index fb23cdd558..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20407.png b/front/public/images/large/gregtech/gt.metaitem.01/20407.png deleted file mode 100644 index 8d778586a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20408.png b/front/public/images/large/gregtech/gt.metaitem.01/20408.png deleted file mode 100644 index 1cff28ff51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2043.png b/front/public/images/large/gregtech/gt.metaitem.01/2043.png deleted file mode 100644 index 40ddd8f2ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2044.png b/front/public/images/large/gregtech/gt.metaitem.01/2044.png deleted file mode 100644 index 57bea47417..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2045.png b/front/public/images/large/gregtech/gt.metaitem.01/2045.png deleted file mode 100644 index a998c1c747..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2047.png b/front/public/images/large/gregtech/gt.metaitem.01/2047.png deleted file mode 100644 index 29b1769813..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20470.png b/front/public/images/large/gregtech/gt.metaitem.01/20470.png deleted file mode 100644 index de48959b31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20471.png b/front/public/images/large/gregtech/gt.metaitem.01/20471.png deleted file mode 100644 index 256254b989..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20472.png b/front/public/images/large/gregtech/gt.metaitem.01/20472.png deleted file mode 100644 index c80c61b1c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20473.png b/front/public/images/large/gregtech/gt.metaitem.01/20473.png deleted file mode 100644 index 1db7037311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2048.png b/front/public/images/large/gregtech/gt.metaitem.01/2048.png deleted file mode 100644 index b1eb485143..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20485.png b/front/public/images/large/gregtech/gt.metaitem.01/20485.png deleted file mode 100644 index 7e72f3d0a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20488.png b/front/public/images/large/gregtech/gt.metaitem.01/20488.png deleted file mode 100644 index 812cdb542f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20489.png b/front/public/images/large/gregtech/gt.metaitem.01/20489.png deleted file mode 100644 index d0bfff13f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2052.png b/front/public/images/large/gregtech/gt.metaitem.01/2052.png deleted file mode 100644 index 67c5d583f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20521.png b/front/public/images/large/gregtech/gt.metaitem.01/20521.png deleted file mode 100644 index 8fb3e352e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20529.png b/front/public/images/large/gregtech/gt.metaitem.01/20529.png deleted file mode 100644 index fccd3c552f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2054.png b/front/public/images/large/gregtech/gt.metaitem.01/2054.png deleted file mode 100644 index 1c46a3e2c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2055.png b/front/public/images/large/gregtech/gt.metaitem.01/2055.png deleted file mode 100644 index 85cd526d8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2056.png b/front/public/images/large/gregtech/gt.metaitem.01/2056.png deleted file mode 100644 index 40a2dc8e9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2057.png b/front/public/images/large/gregtech/gt.metaitem.01/2057.png deleted file mode 100644 index 88f980e5ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20576.png b/front/public/images/large/gregtech/gt.metaitem.01/20576.png deleted file mode 100644 index 5d692085b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2058.png b/front/public/images/large/gregtech/gt.metaitem.01/2058.png deleted file mode 100644 index 48c5e6b6a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20581.png b/front/public/images/large/gregtech/gt.metaitem.01/20581.png deleted file mode 100644 index c2dbb32e8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20582.png b/front/public/images/large/gregtech/gt.metaitem.01/20582.png deleted file mode 100644 index 3bd1efbe31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20585.png b/front/public/images/large/gregtech/gt.metaitem.01/20585.png deleted file mode 100644 index 6d30e2c044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20586.png b/front/public/images/large/gregtech/gt.metaitem.01/20586.png deleted file mode 100644 index 04fda40add..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20588.png b/front/public/images/large/gregtech/gt.metaitem.01/20588.png deleted file mode 100644 index 6021b7f299..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2059.png b/front/public/images/large/gregtech/gt.metaitem.01/2059.png deleted file mode 100644 index 346272a84e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20599.png b/front/public/images/large/gregtech/gt.metaitem.01/20599.png deleted file mode 100644 index 1801a8b3c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20610.png b/front/public/images/large/gregtech/gt.metaitem.01/20610.png deleted file mode 100644 index c1aca0a5a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20613.png b/front/public/images/large/gregtech/gt.metaitem.01/20613.png deleted file mode 100644 index c600ed0b9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2062.png b/front/public/images/large/gregtech/gt.metaitem.01/2062.png deleted file mode 100644 index 31b7aa4f5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2063.png b/front/public/images/large/gregtech/gt.metaitem.01/2063.png deleted file mode 100644 index 32db608954..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20631.png b/front/public/images/large/gregtech/gt.metaitem.01/20631.png deleted file mode 100644 index d5141fbc5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20635.png b/front/public/images/large/gregtech/gt.metaitem.01/20635.png deleted file mode 100644 index 6bf34ec16f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20636.png b/front/public/images/large/gregtech/gt.metaitem.01/20636.png deleted file mode 100644 index 7ae457c6ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2064.png b/front/public/images/large/gregtech/gt.metaitem.01/2064.png deleted file mode 100644 index 25580d5628..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20649.png b/front/public/images/large/gregtech/gt.metaitem.01/20649.png deleted file mode 100644 index ca9b78b827..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2065.png b/front/public/images/large/gregtech/gt.metaitem.01/2065.png deleted file mode 100644 index b6eadcd926..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2066.png b/front/public/images/large/gregtech/gt.metaitem.01/2066.png deleted file mode 100644 index b03c8965e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2067.png b/front/public/images/large/gregtech/gt.metaitem.01/2067.png deleted file mode 100644 index 0ea7698948..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2068.png b/front/public/images/large/gregtech/gt.metaitem.01/2068.png deleted file mode 100644 index e488f5476a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2069.png b/front/public/images/large/gregtech/gt.metaitem.01/2069.png deleted file mode 100644 index 9a5aa74371..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2070.png b/front/public/images/large/gregtech/gt.metaitem.01/2070.png deleted file mode 100644 index 633df8932c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2071.png b/front/public/images/large/gregtech/gt.metaitem.01/2071.png deleted file mode 100644 index 8319baf350..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2072.png b/front/public/images/large/gregtech/gt.metaitem.01/2072.png deleted file mode 100644 index 32db608954..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2073.png b/front/public/images/large/gregtech/gt.metaitem.01/2073.png deleted file mode 100644 index 33e3816a89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2074.png b/front/public/images/large/gregtech/gt.metaitem.01/2074.png deleted file mode 100644 index 7ec0a1e37e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2075.png b/front/public/images/large/gregtech/gt.metaitem.01/2075.png deleted file mode 100644 index 60aa8aa71e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2076.png b/front/public/images/large/gregtech/gt.metaitem.01/2076.png deleted file mode 100644 index 5bfd432ca3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20765.png b/front/public/images/large/gregtech/gt.metaitem.01/20765.png deleted file mode 100644 index 948958a83a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2077.png b/front/public/images/large/gregtech/gt.metaitem.01/2077.png deleted file mode 100644 index 4d12b4d6de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20770.png b/front/public/images/large/gregtech/gt.metaitem.01/20770.png deleted file mode 100644 index dcb8de4914..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20772.png b/front/public/images/large/gregtech/gt.metaitem.01/20772.png deleted file mode 100644 index 826cbfbe0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2078.png b/front/public/images/large/gregtech/gt.metaitem.01/2078.png deleted file mode 100644 index b015a4fe36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2080.png b/front/public/images/large/gregtech/gt.metaitem.01/2080.png deleted file mode 100644 index dd8db0e15e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2081.png b/front/public/images/large/gregtech/gt.metaitem.01/2081.png deleted file mode 100644 index 8a6b2e45fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20829.png b/front/public/images/large/gregtech/gt.metaitem.01/20829.png deleted file mode 100644 index 4022584875..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2083.png b/front/public/images/large/gregtech/gt.metaitem.01/2083.png deleted file mode 100644 index cdfb5f7570..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2084.png b/front/public/images/large/gregtech/gt.metaitem.01/2084.png deleted file mode 100644 index 95b3203481..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2085.png b/front/public/images/large/gregtech/gt.metaitem.01/2085.png deleted file mode 100644 index 968460ee67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20856.png b/front/public/images/large/gregtech/gt.metaitem.01/20856.png deleted file mode 100644 index 647afe2978..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2086.png b/front/public/images/large/gregtech/gt.metaitem.01/2086.png deleted file mode 100644 index a825422a09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20868.png b/front/public/images/large/gregtech/gt.metaitem.01/20868.png deleted file mode 100644 index 0a3941ceac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20874.png b/front/public/images/large/gregtech/gt.metaitem.01/20874.png deleted file mode 100644 index 79975da132..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20879.png b/front/public/images/large/gregtech/gt.metaitem.01/20879.png deleted file mode 100644 index 6c0506a17d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20879.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20880.png b/front/public/images/large/gregtech/gt.metaitem.01/20880.png deleted file mode 100644 index 04fda40add..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20884.png b/front/public/images/large/gregtech/gt.metaitem.01/20884.png deleted file mode 100644 index a146c3a72f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2089.png b/front/public/images/large/gregtech/gt.metaitem.01/2089.png deleted file mode 100644 index 1249c1398a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2090.png b/front/public/images/large/gregtech/gt.metaitem.01/2090.png deleted file mode 100644 index 7002ca53a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20912.png b/front/public/images/large/gregtech/gt.metaitem.01/20912.png deleted file mode 100644 index ae71ac4c82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20913.png b/front/public/images/large/gregtech/gt.metaitem.01/20913.png deleted file mode 100644 index 51bbd79006..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20951.png b/front/public/images/large/gregtech/gt.metaitem.01/20951.png deleted file mode 100644 index ab0e8b57fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20952.png b/front/public/images/large/gregtech/gt.metaitem.01/20952.png deleted file mode 100644 index 45bee57bd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20956.png b/front/public/images/large/gregtech/gt.metaitem.01/20956.png deleted file mode 100644 index 899f7221b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2096.png b/front/public/images/large/gregtech/gt.metaitem.01/2096.png deleted file mode 100644 index 8f9b7c8154..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20966.png b/front/public/images/large/gregtech/gt.metaitem.01/20966.png deleted file mode 100644 index d104403710..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2097.png b/front/public/images/large/gregtech/gt.metaitem.01/2097.png deleted file mode 100644 index 0e41586c93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20970.png b/front/public/images/large/gregtech/gt.metaitem.01/20970.png deleted file mode 100644 index 972a66533b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20974.png b/front/public/images/large/gregtech/gt.metaitem.01/20974.png deleted file mode 100644 index af72c584a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20975.png b/front/public/images/large/gregtech/gt.metaitem.01/20975.png deleted file mode 100644 index 31657d6996..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20976.png b/front/public/images/large/gregtech/gt.metaitem.01/20976.png deleted file mode 100644 index d0d04a7176..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20977.png b/front/public/images/large/gregtech/gt.metaitem.01/20977.png deleted file mode 100644 index 15e2b39215..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20978.png b/front/public/images/large/gregtech/gt.metaitem.01/20978.png deleted file mode 100644 index 1a247fdfde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20979.png b/front/public/images/large/gregtech/gt.metaitem.01/20979.png deleted file mode 100644 index 1494eb53b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2098.png b/front/public/images/large/gregtech/gt.metaitem.01/2098.png deleted file mode 100644 index 0eebed2457..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20980.png b/front/public/images/large/gregtech/gt.metaitem.01/20980.png deleted file mode 100644 index c237a25aca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20981.png b/front/public/images/large/gregtech/gt.metaitem.01/20981.png deleted file mode 100644 index 61ff94baaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20982.png b/front/public/images/large/gregtech/gt.metaitem.01/20982.png deleted file mode 100644 index 54e91bbb26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20984.png b/front/public/images/large/gregtech/gt.metaitem.01/20984.png deleted file mode 100644 index 8e30e6a517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20985.png b/front/public/images/large/gregtech/gt.metaitem.01/20985.png deleted file mode 100644 index 2ccc94f86b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20986.png b/front/public/images/large/gregtech/gt.metaitem.01/20986.png deleted file mode 100644 index 592ebef2e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20987.png b/front/public/images/large/gregtech/gt.metaitem.01/20987.png deleted file mode 100644 index f711279d94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20988.png b/front/public/images/large/gregtech/gt.metaitem.01/20988.png deleted file mode 100644 index 003bf705a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20989.png b/front/public/images/large/gregtech/gt.metaitem.01/20989.png deleted file mode 100644 index dcc0cb9dd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20990.png b/front/public/images/large/gregtech/gt.metaitem.01/20990.png deleted file mode 100644 index 07aacaf320..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20991.png b/front/public/images/large/gregtech/gt.metaitem.01/20991.png deleted file mode 100644 index 9687fcbcf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/20992.png b/front/public/images/large/gregtech/gt.metaitem.01/20992.png deleted file mode 100644 index ff29c9754f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/20992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2100.png b/front/public/images/large/gregtech/gt.metaitem.01/2100.png deleted file mode 100644 index 3921a42010..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21006.png b/front/public/images/large/gregtech/gt.metaitem.01/21006.png deleted file mode 100644 index 4f5dbb4c62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21008.png b/front/public/images/large/gregtech/gt.metaitem.01/21008.png deleted file mode 100644 index 43a9a9766d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2101.png b/front/public/images/large/gregtech/gt.metaitem.01/2101.png deleted file mode 100644 index 824c2648d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21010.png b/front/public/images/large/gregtech/gt.metaitem.01/21010.png deleted file mode 100644 index 8cec54a69e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21018.png b/front/public/images/large/gregtech/gt.metaitem.01/21018.png deleted file mode 100644 index b30649aeaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21019.png b/front/public/images/large/gregtech/gt.metaitem.01/21019.png deleted file mode 100644 index 21db08bfff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21020.png b/front/public/images/large/gregtech/gt.metaitem.01/21020.png deleted file mode 100644 index 725ffaf99f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21025.png b/front/public/images/large/gregtech/gt.metaitem.01/21025.png deleted file mode 100644 index 835610aaba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21027.png b/front/public/images/large/gregtech/gt.metaitem.01/21027.png deleted file mode 100644 index 4856a7d727..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21028.png b/front/public/images/large/gregtech/gt.metaitem.01/21028.png deleted file mode 100644 index 1ce6605b21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21029.png b/front/public/images/large/gregtech/gt.metaitem.01/21029.png deleted file mode 100644 index f40d33eaa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2103.png b/front/public/images/large/gregtech/gt.metaitem.01/2103.png deleted file mode 100644 index 57bea47417..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21030.png b/front/public/images/large/gregtech/gt.metaitem.01/21030.png deleted file mode 100644 index 6012d06238..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21031.png b/front/public/images/large/gregtech/gt.metaitem.01/21031.png deleted file mode 100644 index 623b2b1786..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21032.png b/front/public/images/large/gregtech/gt.metaitem.01/21032.png deleted file mode 100644 index 6df2514db6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21033.png b/front/public/images/large/gregtech/gt.metaitem.01/21033.png deleted file mode 100644 index 35a46a847b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21034.png b/front/public/images/large/gregtech/gt.metaitem.01/21034.png deleted file mode 100644 index 0aaaa5acd0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21035.png b/front/public/images/large/gregtech/gt.metaitem.01/21035.png deleted file mode 100644 index 49ffb68e8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21036.png b/front/public/images/large/gregtech/gt.metaitem.01/21036.png deleted file mode 100644 index ca6b7b0e2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21037.png b/front/public/images/large/gregtech/gt.metaitem.01/21037.png deleted file mode 100644 index 4a9200b9f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21039.png b/front/public/images/large/gregtech/gt.metaitem.01/21039.png deleted file mode 100644 index 0fdca70a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21043.png b/front/public/images/large/gregtech/gt.metaitem.01/21043.png deleted file mode 100644 index 99683e17ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21045.png b/front/public/images/large/gregtech/gt.metaitem.01/21045.png deleted file mode 100644 index 3917e6ce6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21047.png b/front/public/images/large/gregtech/gt.metaitem.01/21047.png deleted file mode 100644 index 522ae20c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21048.png b/front/public/images/large/gregtech/gt.metaitem.01/21048.png deleted file mode 100644 index 9c5767dbb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21052.png b/front/public/images/large/gregtech/gt.metaitem.01/21052.png deleted file mode 100644 index 91402fc617..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21054.png b/front/public/images/large/gregtech/gt.metaitem.01/21054.png deleted file mode 100644 index 4a9200b9f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21056.png b/front/public/images/large/gregtech/gt.metaitem.01/21056.png deleted file mode 100644 index ceb95fdf6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21057.png b/front/public/images/large/gregtech/gt.metaitem.01/21057.png deleted file mode 100644 index c43cbb4393..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21058.png b/front/public/images/large/gregtech/gt.metaitem.01/21058.png deleted file mode 100644 index 303b9dd61a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21059.png b/front/public/images/large/gregtech/gt.metaitem.01/21059.png deleted file mode 100644 index a1ebb6e439..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21062.png b/front/public/images/large/gregtech/gt.metaitem.01/21062.png deleted file mode 100644 index 5b977cdc0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21063.png b/front/public/images/large/gregtech/gt.metaitem.01/21063.png deleted file mode 100644 index 0fdca70a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21064.png b/front/public/images/large/gregtech/gt.metaitem.01/21064.png deleted file mode 100644 index b3dbdbdb94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21065.png b/front/public/images/large/gregtech/gt.metaitem.01/21065.png deleted file mode 100644 index 6b71f1f6ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21066.png b/front/public/images/large/gregtech/gt.metaitem.01/21066.png deleted file mode 100644 index 363f64dad2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21067.png b/front/public/images/large/gregtech/gt.metaitem.01/21067.png deleted file mode 100644 index 1055830dfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21068.png b/front/public/images/large/gregtech/gt.metaitem.01/21068.png deleted file mode 100644 index 21287e3abe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21069.png b/front/public/images/large/gregtech/gt.metaitem.01/21069.png deleted file mode 100644 index c5b163a020..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21070.png b/front/public/images/large/gregtech/gt.metaitem.01/21070.png deleted file mode 100644 index c481a86f1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21071.png b/front/public/images/large/gregtech/gt.metaitem.01/21071.png deleted file mode 100644 index 42edea946f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21072.png b/front/public/images/large/gregtech/gt.metaitem.01/21072.png deleted file mode 100644 index 0fdca70a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21073.png b/front/public/images/large/gregtech/gt.metaitem.01/21073.png deleted file mode 100644 index 4138f101ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21074.png b/front/public/images/large/gregtech/gt.metaitem.01/21074.png deleted file mode 100644 index 6ff26a16d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21075.png b/front/public/images/large/gregtech/gt.metaitem.01/21075.png deleted file mode 100644 index 461fca17b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21076.png b/front/public/images/large/gregtech/gt.metaitem.01/21076.png deleted file mode 100644 index e7fdba0cd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21077.png b/front/public/images/large/gregtech/gt.metaitem.01/21077.png deleted file mode 100644 index ac9d443cb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21078.png b/front/public/images/large/gregtech/gt.metaitem.01/21078.png deleted file mode 100644 index c206935c56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21080.png b/front/public/images/large/gregtech/gt.metaitem.01/21080.png deleted file mode 100644 index ed777e2a59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21081.png b/front/public/images/large/gregtech/gt.metaitem.01/21081.png deleted file mode 100644 index f40d33eaa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21083.png b/front/public/images/large/gregtech/gt.metaitem.01/21083.png deleted file mode 100644 index 2a12571376..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21084.png b/front/public/images/large/gregtech/gt.metaitem.01/21084.png deleted file mode 100644 index d2d82d436a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21085.png b/front/public/images/large/gregtech/gt.metaitem.01/21085.png deleted file mode 100644 index 4c6e3d9d4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21086.png b/front/public/images/large/gregtech/gt.metaitem.01/21086.png deleted file mode 100644 index d98c7548fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21089.png b/front/public/images/large/gregtech/gt.metaitem.01/21089.png deleted file mode 100644 index 57a794ae57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21090.png b/front/public/images/large/gregtech/gt.metaitem.01/21090.png deleted file mode 100644 index afa5453959..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21096.png b/front/public/images/large/gregtech/gt.metaitem.01/21096.png deleted file mode 100644 index 281aa42ec3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21097.png b/front/public/images/large/gregtech/gt.metaitem.01/21097.png deleted file mode 100644 index b082156b08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21098.png b/front/public/images/large/gregtech/gt.metaitem.01/21098.png deleted file mode 100644 index 990a26d11d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2110.png b/front/public/images/large/gregtech/gt.metaitem.01/2110.png deleted file mode 100644 index 905b398900..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21100.png b/front/public/images/large/gregtech/gt.metaitem.01/21100.png deleted file mode 100644 index eae62951d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21101.png b/front/public/images/large/gregtech/gt.metaitem.01/21101.png deleted file mode 100644 index ce4b9c9f77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21103.png b/front/public/images/large/gregtech/gt.metaitem.01/21103.png deleted file mode 100644 index 6df2514db6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2111.png b/front/public/images/large/gregtech/gt.metaitem.01/2111.png deleted file mode 100644 index 9ef1b5087a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21111.png b/front/public/images/large/gregtech/gt.metaitem.01/21111.png deleted file mode 100644 index 39e43475d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21112.png b/front/public/images/large/gregtech/gt.metaitem.01/21112.png deleted file mode 100644 index e3c96d9679..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2112.png b/front/public/images/large/gregtech/gt.metaitem.01/2112.png deleted file mode 100644 index b7aae1a6e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21129.png b/front/public/images/large/gregtech/gt.metaitem.01/21129.png deleted file mode 100644 index 623b2b1786..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21131.png b/front/public/images/large/gregtech/gt.metaitem.01/21131.png deleted file mode 100644 index 85585d50b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21134.png b/front/public/images/large/gregtech/gt.metaitem.01/21134.png deleted file mode 100644 index f393b2eed2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21139.png b/front/public/images/large/gregtech/gt.metaitem.01/21139.png deleted file mode 100644 index 0820828669..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21141.png b/front/public/images/large/gregtech/gt.metaitem.01/21141.png deleted file mode 100644 index 12b8dedbc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21143.png b/front/public/images/large/gregtech/gt.metaitem.01/21143.png deleted file mode 100644 index 60a3ef1bed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21201.png b/front/public/images/large/gregtech/gt.metaitem.01/21201.png deleted file mode 100644 index 3cb2da5f12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21202.png b/front/public/images/large/gregtech/gt.metaitem.01/21202.png deleted file mode 100644 index 5d8393ccb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21203.png b/front/public/images/large/gregtech/gt.metaitem.01/21203.png deleted file mode 100644 index a628fb28bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21205.png b/front/public/images/large/gregtech/gt.metaitem.01/21205.png deleted file mode 100644 index b62a9a08a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2129.png b/front/public/images/large/gregtech/gt.metaitem.01/2129.png deleted file mode 100644 index e00997e7a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21300.png b/front/public/images/large/gregtech/gt.metaitem.01/21300.png deleted file mode 100644 index 0cc4ee60fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21301.png b/front/public/images/large/gregtech/gt.metaitem.01/21301.png deleted file mode 100644 index 0c48d79b55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21302.png b/front/public/images/large/gregtech/gt.metaitem.01/21302.png deleted file mode 100644 index 91ac1d697d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21303.png b/front/public/images/large/gregtech/gt.metaitem.01/21303.png deleted file mode 100644 index cff8f3462c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21304.png b/front/public/images/large/gregtech/gt.metaitem.01/21304.png deleted file mode 100644 index dd3bcd109e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21305.png b/front/public/images/large/gregtech/gt.metaitem.01/21305.png deleted file mode 100644 index 91402fc617..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21306.png b/front/public/images/large/gregtech/gt.metaitem.01/21306.png deleted file mode 100644 index ef4677ebd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21307.png b/front/public/images/large/gregtech/gt.metaitem.01/21307.png deleted file mode 100644 index dd3bcd109e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21308.png b/front/public/images/large/gregtech/gt.metaitem.01/21308.png deleted file mode 100644 index 61d859162c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21309.png b/front/public/images/large/gregtech/gt.metaitem.01/21309.png deleted file mode 100644 index 66808bb7cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2131.png b/front/public/images/large/gregtech/gt.metaitem.01/2131.png deleted file mode 100644 index 6bb6660918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21310.png b/front/public/images/large/gregtech/gt.metaitem.01/21310.png deleted file mode 100644 index f244b0225a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21311.png b/front/public/images/large/gregtech/gt.metaitem.01/21311.png deleted file mode 100644 index daf38f786c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21312.png b/front/public/images/large/gregtech/gt.metaitem.01/21312.png deleted file mode 100644 index 36733fdb02..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21313.png b/front/public/images/large/gregtech/gt.metaitem.01/21313.png deleted file mode 100644 index 7d77605f34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21314.png b/front/public/images/large/gregtech/gt.metaitem.01/21314.png deleted file mode 100644 index 7b66d8ba75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21315.png b/front/public/images/large/gregtech/gt.metaitem.01/21315.png deleted file mode 100644 index ce687dc633..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21316.png b/front/public/images/large/gregtech/gt.metaitem.01/21316.png deleted file mode 100644 index 0ff4d59a0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21317.png b/front/public/images/large/gregtech/gt.metaitem.01/21317.png deleted file mode 100644 index 41d346358e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21318.png b/front/public/images/large/gregtech/gt.metaitem.01/21318.png deleted file mode 100644 index 0ac199cbb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21319.png b/front/public/images/large/gregtech/gt.metaitem.01/21319.png deleted file mode 100644 index 0fdca70a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21320.png b/front/public/images/large/gregtech/gt.metaitem.01/21320.png deleted file mode 100644 index dce3a622bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21321.png b/front/public/images/large/gregtech/gt.metaitem.01/21321.png deleted file mode 100644 index 2cd1b97d0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21323.png b/front/public/images/large/gregtech/gt.metaitem.01/21323.png deleted file mode 100644 index a944d2e160..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21324.png b/front/public/images/large/gregtech/gt.metaitem.01/21324.png deleted file mode 100644 index f40d33eaa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21325.png b/front/public/images/large/gregtech/gt.metaitem.01/21325.png deleted file mode 100644 index 69ac5f4614..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21326.png b/front/public/images/large/gregtech/gt.metaitem.01/21326.png deleted file mode 100644 index 887e765162..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21327.png b/front/public/images/large/gregtech/gt.metaitem.01/21327.png deleted file mode 100644 index 4619a1148c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21328.png b/front/public/images/large/gregtech/gt.metaitem.01/21328.png deleted file mode 100644 index 0fdca70a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21329.png b/front/public/images/large/gregtech/gt.metaitem.01/21329.png deleted file mode 100644 index f19c75d46b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21330.png b/front/public/images/large/gregtech/gt.metaitem.01/21330.png deleted file mode 100644 index cc7ce9a1b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21331.png b/front/public/images/large/gregtech/gt.metaitem.01/21331.png deleted file mode 100644 index 18c41b360f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21333.png b/front/public/images/large/gregtech/gt.metaitem.01/21333.png deleted file mode 100644 index 2d47aa4579..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21334.png b/front/public/images/large/gregtech/gt.metaitem.01/21334.png deleted file mode 100644 index 1055830dfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21335.png b/front/public/images/large/gregtech/gt.metaitem.01/21335.png deleted file mode 100644 index 21d3546ebd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21336.png b/front/public/images/large/gregtech/gt.metaitem.01/21336.png deleted file mode 100644 index c3505d9ca0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21337.png b/front/public/images/large/gregtech/gt.metaitem.01/21337.png deleted file mode 100644 index a8389dcf5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21338.png b/front/public/images/large/gregtech/gt.metaitem.01/21338.png deleted file mode 100644 index ad8f92ae83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21339.png b/front/public/images/large/gregtech/gt.metaitem.01/21339.png deleted file mode 100644 index 2e753a14da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2134.png b/front/public/images/large/gregtech/gt.metaitem.01/2134.png deleted file mode 100644 index 5cb8cf5070..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21340.png b/front/public/images/large/gregtech/gt.metaitem.01/21340.png deleted file mode 100644 index 82176171bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21341.png b/front/public/images/large/gregtech/gt.metaitem.01/21341.png deleted file mode 100644 index 700287cf30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21342.png b/front/public/images/large/gregtech/gt.metaitem.01/21342.png deleted file mode 100644 index 3b081b44e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21343.png b/front/public/images/large/gregtech/gt.metaitem.01/21343.png deleted file mode 100644 index e87398c2d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21344.png b/front/public/images/large/gregtech/gt.metaitem.01/21344.png deleted file mode 100644 index 2adcb7fe2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21345.png b/front/public/images/large/gregtech/gt.metaitem.01/21345.png deleted file mode 100644 index 17d06f74d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21346.png b/front/public/images/large/gregtech/gt.metaitem.01/21346.png deleted file mode 100644 index 2857be7c79..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21348.png b/front/public/images/large/gregtech/gt.metaitem.01/21348.png deleted file mode 100644 index 84abef16ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21349.png b/front/public/images/large/gregtech/gt.metaitem.01/21349.png deleted file mode 100644 index 323754640b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21350.png b/front/public/images/large/gregtech/gt.metaitem.01/21350.png deleted file mode 100644 index a84c78fa9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21351.png b/front/public/images/large/gregtech/gt.metaitem.01/21351.png deleted file mode 100644 index 0b7468a830..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21352.png b/front/public/images/large/gregtech/gt.metaitem.01/21352.png deleted file mode 100644 index e1ad99ff95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21353.png b/front/public/images/large/gregtech/gt.metaitem.01/21353.png deleted file mode 100644 index b9e3edb68f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21354.png b/front/public/images/large/gregtech/gt.metaitem.01/21354.png deleted file mode 100644 index 3527d9e6fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21355.png b/front/public/images/large/gregtech/gt.metaitem.01/21355.png deleted file mode 100644 index 5493a748f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21356.png b/front/public/images/large/gregtech/gt.metaitem.01/21356.png deleted file mode 100644 index f9efcc55f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21357.png b/front/public/images/large/gregtech/gt.metaitem.01/21357.png deleted file mode 100644 index c12552a50f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21358.png b/front/public/images/large/gregtech/gt.metaitem.01/21358.png deleted file mode 100644 index d45622a1c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21359.png b/front/public/images/large/gregtech/gt.metaitem.01/21359.png deleted file mode 100644 index 1b1ba5fd72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21360.png b/front/public/images/large/gregtech/gt.metaitem.01/21360.png deleted file mode 100644 index 56eb3fcfa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21361.png b/front/public/images/large/gregtech/gt.metaitem.01/21361.png deleted file mode 100644 index 3fdaec8f35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21362.png b/front/public/images/large/gregtech/gt.metaitem.01/21362.png deleted file mode 100644 index 1b743c4d2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21363.png b/front/public/images/large/gregtech/gt.metaitem.01/21363.png deleted file mode 100644 index 6df2514db6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21364.png b/front/public/images/large/gregtech/gt.metaitem.01/21364.png deleted file mode 100644 index 33af4a347a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21365.png b/front/public/images/large/gregtech/gt.metaitem.01/21365.png deleted file mode 100644 index 61e25bcf52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21366.png b/front/public/images/large/gregtech/gt.metaitem.01/21366.png deleted file mode 100644 index 974e8b9fd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21367.png b/front/public/images/large/gregtech/gt.metaitem.01/21367.png deleted file mode 100644 index 62b053a46a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21368.png b/front/public/images/large/gregtech/gt.metaitem.01/21368.png deleted file mode 100644 index 6793b4d2a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21369.png b/front/public/images/large/gregtech/gt.metaitem.01/21369.png deleted file mode 100644 index 3de7ace502..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21370.png b/front/public/images/large/gregtech/gt.metaitem.01/21370.png deleted file mode 100644 index 8bb8a22096..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21371.png b/front/public/images/large/gregtech/gt.metaitem.01/21371.png deleted file mode 100644 index a0e8aec9ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21372.png b/front/public/images/large/gregtech/gt.metaitem.01/21372.png deleted file mode 100644 index 369d55c520..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21373.png b/front/public/images/large/gregtech/gt.metaitem.01/21373.png deleted file mode 100644 index 3788e64512..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21374.png b/front/public/images/large/gregtech/gt.metaitem.01/21374.png deleted file mode 100644 index 03f37bc7e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21378.png b/front/public/images/large/gregtech/gt.metaitem.01/21378.png deleted file mode 100644 index 2448db11ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21379.png b/front/public/images/large/gregtech/gt.metaitem.01/21379.png deleted file mode 100644 index 3699657de0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21380.png b/front/public/images/large/gregtech/gt.metaitem.01/21380.png deleted file mode 100644 index 05f10fd2ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21381.png b/front/public/images/large/gregtech/gt.metaitem.01/21381.png deleted file mode 100644 index 97259be3ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21382.png b/front/public/images/large/gregtech/gt.metaitem.01/21382.png deleted file mode 100644 index 6bae59a37e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21383.png b/front/public/images/large/gregtech/gt.metaitem.01/21383.png deleted file mode 100644 index 7ce867174c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21384.png b/front/public/images/large/gregtech/gt.metaitem.01/21384.png deleted file mode 100644 index 7afb2c0ff0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21385.png b/front/public/images/large/gregtech/gt.metaitem.01/21385.png deleted file mode 100644 index d8a13eb8ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21386.png b/front/public/images/large/gregtech/gt.metaitem.01/21386.png deleted file mode 100644 index ba38915d1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21387.png b/front/public/images/large/gregtech/gt.metaitem.01/21387.png deleted file mode 100644 index 3558231bfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21388.png b/front/public/images/large/gregtech/gt.metaitem.01/21388.png deleted file mode 100644 index f40d33eaa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21389.png b/front/public/images/large/gregtech/gt.metaitem.01/21389.png deleted file mode 100644 index a36818eca3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2139.png b/front/public/images/large/gregtech/gt.metaitem.01/2139.png deleted file mode 100644 index 5b682461ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21390.png b/front/public/images/large/gregtech/gt.metaitem.01/21390.png deleted file mode 100644 index db13817682..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21391.png b/front/public/images/large/gregtech/gt.metaitem.01/21391.png deleted file mode 100644 index 44bd31f590..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21392.png b/front/public/images/large/gregtech/gt.metaitem.01/21392.png deleted file mode 100644 index 30adce9558..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21393.png b/front/public/images/large/gregtech/gt.metaitem.01/21393.png deleted file mode 100644 index 5e3bdc1534..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21394.png b/front/public/images/large/gregtech/gt.metaitem.01/21394.png deleted file mode 100644 index 0fdca70a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21395.png b/front/public/images/large/gregtech/gt.metaitem.01/21395.png deleted file mode 100644 index f40d33eaa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21397.png b/front/public/images/large/gregtech/gt.metaitem.01/21397.png deleted file mode 100644 index 5cbe6d774b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21398.png b/front/public/images/large/gregtech/gt.metaitem.01/21398.png deleted file mode 100644 index 7fe04e747c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21399.png b/front/public/images/large/gregtech/gt.metaitem.01/21399.png deleted file mode 100644 index 406cb7708f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21400.png b/front/public/images/large/gregtech/gt.metaitem.01/21400.png deleted file mode 100644 index bb8a573aa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21401.png b/front/public/images/large/gregtech/gt.metaitem.01/21401.png deleted file mode 100644 index 2e224cfb45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21402.png b/front/public/images/large/gregtech/gt.metaitem.01/21402.png deleted file mode 100644 index 9b0cbc65b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21403.png b/front/public/images/large/gregtech/gt.metaitem.01/21403.png deleted file mode 100644 index 0e68eb38a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21404.png b/front/public/images/large/gregtech/gt.metaitem.01/21404.png deleted file mode 100644 index 1b9d0ae59a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21405.png b/front/public/images/large/gregtech/gt.metaitem.01/21405.png deleted file mode 100644 index a0bb3e8919..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21406.png b/front/public/images/large/gregtech/gt.metaitem.01/21406.png deleted file mode 100644 index fc2d2db083..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21407.png b/front/public/images/large/gregtech/gt.metaitem.01/21407.png deleted file mode 100644 index 4936525add..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21408.png b/front/public/images/large/gregtech/gt.metaitem.01/21408.png deleted file mode 100644 index b49eb96f5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2141.png b/front/public/images/large/gregtech/gt.metaitem.01/2141.png deleted file mode 100644 index 15b9682f94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2143.png b/front/public/images/large/gregtech/gt.metaitem.01/2143.png deleted file mode 100644 index 518cf233a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21470.png b/front/public/images/large/gregtech/gt.metaitem.01/21470.png deleted file mode 100644 index c6bed8ee6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21471.png b/front/public/images/large/gregtech/gt.metaitem.01/21471.png deleted file mode 100644 index c43cbb4393..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21472.png b/front/public/images/large/gregtech/gt.metaitem.01/21472.png deleted file mode 100644 index f40d33eaa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21473.png b/front/public/images/large/gregtech/gt.metaitem.01/21473.png deleted file mode 100644 index 1055830dfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21485.png b/front/public/images/large/gregtech/gt.metaitem.01/21485.png deleted file mode 100644 index ecf85b35f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21488.png b/front/public/images/large/gregtech/gt.metaitem.01/21488.png deleted file mode 100644 index f76dc84945..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21489.png b/front/public/images/large/gregtech/gt.metaitem.01/21489.png deleted file mode 100644 index 1d0d4843f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21521.png b/front/public/images/large/gregtech/gt.metaitem.01/21521.png deleted file mode 100644 index 0ac199cbb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21529.png b/front/public/images/large/gregtech/gt.metaitem.01/21529.png deleted file mode 100644 index 2ff20a6284..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21576.png b/front/public/images/large/gregtech/gt.metaitem.01/21576.png deleted file mode 100644 index 147169d3fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21581.png b/front/public/images/large/gregtech/gt.metaitem.01/21581.png deleted file mode 100644 index 4b7426c675..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21582.png b/front/public/images/large/gregtech/gt.metaitem.01/21582.png deleted file mode 100644 index ab397f638e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21585.png b/front/public/images/large/gregtech/gt.metaitem.01/21585.png deleted file mode 100644 index df9126eae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21586.png b/front/public/images/large/gregtech/gt.metaitem.01/21586.png deleted file mode 100644 index acd5ecafdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21588.png b/front/public/images/large/gregtech/gt.metaitem.01/21588.png deleted file mode 100644 index d7b9c5d1a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21599.png b/front/public/images/large/gregtech/gt.metaitem.01/21599.png deleted file mode 100644 index 6a7f785a26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21610.png b/front/public/images/large/gregtech/gt.metaitem.01/21610.png deleted file mode 100644 index 9179c03608..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21613.png b/front/public/images/large/gregtech/gt.metaitem.01/21613.png deleted file mode 100644 index da0620129b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21631.png b/front/public/images/large/gregtech/gt.metaitem.01/21631.png deleted file mode 100644 index f9efe31051..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21635.png b/front/public/images/large/gregtech/gt.metaitem.01/21635.png deleted file mode 100644 index f12e6af097..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21636.png b/front/public/images/large/gregtech/gt.metaitem.01/21636.png deleted file mode 100644 index 1dcddff6d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21649.png b/front/public/images/large/gregtech/gt.metaitem.01/21649.png deleted file mode 100644 index ef4ceeaba8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21765.png b/front/public/images/large/gregtech/gt.metaitem.01/21765.png deleted file mode 100644 index d23d0f26cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21770.png b/front/public/images/large/gregtech/gt.metaitem.01/21770.png deleted file mode 100644 index ed508ae150..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21772.png b/front/public/images/large/gregtech/gt.metaitem.01/21772.png deleted file mode 100644 index 07d6d36aea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21829.png b/front/public/images/large/gregtech/gt.metaitem.01/21829.png deleted file mode 100644 index 6f28690e13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21856.png b/front/public/images/large/gregtech/gt.metaitem.01/21856.png deleted file mode 100644 index 5a2953108b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21868.png b/front/public/images/large/gregtech/gt.metaitem.01/21868.png deleted file mode 100644 index 1db9e55191..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21874.png b/front/public/images/large/gregtech/gt.metaitem.01/21874.png deleted file mode 100644 index 6df2514db6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21879.png b/front/public/images/large/gregtech/gt.metaitem.01/21879.png deleted file mode 100644 index f391152f47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21879.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21880.png b/front/public/images/large/gregtech/gt.metaitem.01/21880.png deleted file mode 100644 index acd5ecafdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21884.png b/front/public/images/large/gregtech/gt.metaitem.01/21884.png deleted file mode 100644 index 69ac5f4614..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21912.png b/front/public/images/large/gregtech/gt.metaitem.01/21912.png deleted file mode 100644 index 442f04eb39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21913.png b/front/public/images/large/gregtech/gt.metaitem.01/21913.png deleted file mode 100644 index 84abef16ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21951.png b/front/public/images/large/gregtech/gt.metaitem.01/21951.png deleted file mode 100644 index 2d70f2ed76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21952.png b/front/public/images/large/gregtech/gt.metaitem.01/21952.png deleted file mode 100644 index 0fb7f0203a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21956.png b/front/public/images/large/gregtech/gt.metaitem.01/21956.png deleted file mode 100644 index ac3a8977c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21966.png b/front/public/images/large/gregtech/gt.metaitem.01/21966.png deleted file mode 100644 index 8a564b81f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21970.png b/front/public/images/large/gregtech/gt.metaitem.01/21970.png deleted file mode 100644 index 9a50439d1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21974.png b/front/public/images/large/gregtech/gt.metaitem.01/21974.png deleted file mode 100644 index 8082a07449..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21975.png b/front/public/images/large/gregtech/gt.metaitem.01/21975.png deleted file mode 100644 index b647108987..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21976.png b/front/public/images/large/gregtech/gt.metaitem.01/21976.png deleted file mode 100644 index e528fb9109..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21977.png b/front/public/images/large/gregtech/gt.metaitem.01/21977.png deleted file mode 100644 index 15e2f9b068..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21978.png b/front/public/images/large/gregtech/gt.metaitem.01/21978.png deleted file mode 100644 index 54bffc9ac0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21979.png b/front/public/images/large/gregtech/gt.metaitem.01/21979.png deleted file mode 100644 index 30ee111131..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21980.png b/front/public/images/large/gregtech/gt.metaitem.01/21980.png deleted file mode 100644 index 030a7ea1d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21981.png b/front/public/images/large/gregtech/gt.metaitem.01/21981.png deleted file mode 100644 index c9aa8f1360..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21982.png b/front/public/images/large/gregtech/gt.metaitem.01/21982.png deleted file mode 100644 index 202459cf48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21984.png b/front/public/images/large/gregtech/gt.metaitem.01/21984.png deleted file mode 100644 index 0fdca70a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21985.png b/front/public/images/large/gregtech/gt.metaitem.01/21985.png deleted file mode 100644 index b2b6a52c05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21986.png b/front/public/images/large/gregtech/gt.metaitem.01/21986.png deleted file mode 100644 index dd54bddccb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21987.png b/front/public/images/large/gregtech/gt.metaitem.01/21987.png deleted file mode 100644 index f954892827..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21988.png b/front/public/images/large/gregtech/gt.metaitem.01/21988.png deleted file mode 100644 index 55c756657e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21989.png b/front/public/images/large/gregtech/gt.metaitem.01/21989.png deleted file mode 100644 index 1998e6770c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21990.png b/front/public/images/large/gregtech/gt.metaitem.01/21990.png deleted file mode 100644 index 833078a59c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21991.png b/front/public/images/large/gregtech/gt.metaitem.01/21991.png deleted file mode 100644 index fd84e56b1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/21992.png b/front/public/images/large/gregtech/gt.metaitem.01/21992.png deleted file mode 100644 index 536a23d429..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/21992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22006.png b/front/public/images/large/gregtech/gt.metaitem.01/22006.png deleted file mode 100644 index f5f17fc2ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22008.png b/front/public/images/large/gregtech/gt.metaitem.01/22008.png deleted file mode 100644 index 85ca82b8c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2201.png b/front/public/images/large/gregtech/gt.metaitem.01/2201.png deleted file mode 100644 index 45482fb719..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22010.png b/front/public/images/large/gregtech/gt.metaitem.01/22010.png deleted file mode 100644 index 9e11dad608..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22018.png b/front/public/images/large/gregtech/gt.metaitem.01/22018.png deleted file mode 100644 index 05a8cdda51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22019.png b/front/public/images/large/gregtech/gt.metaitem.01/22019.png deleted file mode 100644 index c93eab413f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2202.png b/front/public/images/large/gregtech/gt.metaitem.01/2202.png deleted file mode 100644 index 3245ad18fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22020.png b/front/public/images/large/gregtech/gt.metaitem.01/22020.png deleted file mode 100644 index a10d395e3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22025.png b/front/public/images/large/gregtech/gt.metaitem.01/22025.png deleted file mode 100644 index 3f87b528ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22027.png b/front/public/images/large/gregtech/gt.metaitem.01/22027.png deleted file mode 100644 index 67be6e8242..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22028.png b/front/public/images/large/gregtech/gt.metaitem.01/22028.png deleted file mode 100644 index 5626f235fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22029.png b/front/public/images/large/gregtech/gt.metaitem.01/22029.png deleted file mode 100644 index a795ecf45d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2203.png b/front/public/images/large/gregtech/gt.metaitem.01/2203.png deleted file mode 100644 index 439078225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22030.png b/front/public/images/large/gregtech/gt.metaitem.01/22030.png deleted file mode 100644 index 5d01d4725a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22031.png b/front/public/images/large/gregtech/gt.metaitem.01/22031.png deleted file mode 100644 index 1d7bb70892..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22032.png b/front/public/images/large/gregtech/gt.metaitem.01/22032.png deleted file mode 100644 index 35b37cec8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22033.png b/front/public/images/large/gregtech/gt.metaitem.01/22033.png deleted file mode 100644 index 4e2e846ee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22034.png b/front/public/images/large/gregtech/gt.metaitem.01/22034.png deleted file mode 100644 index ed92869ad4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22035.png b/front/public/images/large/gregtech/gt.metaitem.01/22035.png deleted file mode 100644 index 4911ad5135..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22036.png b/front/public/images/large/gregtech/gt.metaitem.01/22036.png deleted file mode 100644 index 0a5ede9a24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22037.png b/front/public/images/large/gregtech/gt.metaitem.01/22037.png deleted file mode 100644 index 1400bfb0be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22039.png b/front/public/images/large/gregtech/gt.metaitem.01/22039.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2204.png b/front/public/images/large/gregtech/gt.metaitem.01/2204.png deleted file mode 100644 index 38d3817725..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22043.png b/front/public/images/large/gregtech/gt.metaitem.01/22043.png deleted file mode 100644 index ed5daa7a89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22045.png b/front/public/images/large/gregtech/gt.metaitem.01/22045.png deleted file mode 100644 index 604999fae9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22047.png b/front/public/images/large/gregtech/gt.metaitem.01/22047.png deleted file mode 100644 index 598412c6ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22048.png b/front/public/images/large/gregtech/gt.metaitem.01/22048.png deleted file mode 100644 index 14015139e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2205.png b/front/public/images/large/gregtech/gt.metaitem.01/2205.png deleted file mode 100644 index 07fa92bde7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22052.png b/front/public/images/large/gregtech/gt.metaitem.01/22052.png deleted file mode 100644 index 4e9488ab0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22054.png b/front/public/images/large/gregtech/gt.metaitem.01/22054.png deleted file mode 100644 index 1400bfb0be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22056.png b/front/public/images/large/gregtech/gt.metaitem.01/22056.png deleted file mode 100644 index 1e528819be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22057.png b/front/public/images/large/gregtech/gt.metaitem.01/22057.png deleted file mode 100644 index db5e831c64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22058.png b/front/public/images/large/gregtech/gt.metaitem.01/22058.png deleted file mode 100644 index 49ac8a3c1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22059.png b/front/public/images/large/gregtech/gt.metaitem.01/22059.png deleted file mode 100644 index d8e718756e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2206.png b/front/public/images/large/gregtech/gt.metaitem.01/2206.png deleted file mode 100644 index 90c0b1afa8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22062.png b/front/public/images/large/gregtech/gt.metaitem.01/22062.png deleted file mode 100644 index 3f0602a2df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22063.png b/front/public/images/large/gregtech/gt.metaitem.01/22063.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22064.png b/front/public/images/large/gregtech/gt.metaitem.01/22064.png deleted file mode 100644 index c0236dd13f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22065.png b/front/public/images/large/gregtech/gt.metaitem.01/22065.png deleted file mode 100644 index f328a6a485..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22066.png b/front/public/images/large/gregtech/gt.metaitem.01/22066.png deleted file mode 100644 index c3e167552b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22067.png b/front/public/images/large/gregtech/gt.metaitem.01/22067.png deleted file mode 100644 index 1431b61af2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22068.png b/front/public/images/large/gregtech/gt.metaitem.01/22068.png deleted file mode 100644 index 2a70c0c8ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22069.png b/front/public/images/large/gregtech/gt.metaitem.01/22069.png deleted file mode 100644 index 1b50ed0682..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2207.png b/front/public/images/large/gregtech/gt.metaitem.01/2207.png deleted file mode 100644 index a0c39e753c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22070.png b/front/public/images/large/gregtech/gt.metaitem.01/22070.png deleted file mode 100644 index f6b12a5cb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22071.png b/front/public/images/large/gregtech/gt.metaitem.01/22071.png deleted file mode 100644 index 65e4d0ea1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22072.png b/front/public/images/large/gregtech/gt.metaitem.01/22072.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22073.png b/front/public/images/large/gregtech/gt.metaitem.01/22073.png deleted file mode 100644 index ed1b605946..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22074.png b/front/public/images/large/gregtech/gt.metaitem.01/22074.png deleted file mode 100644 index 480e171d1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22075.png b/front/public/images/large/gregtech/gt.metaitem.01/22075.png deleted file mode 100644 index 4a97f334e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22076.png b/front/public/images/large/gregtech/gt.metaitem.01/22076.png deleted file mode 100644 index 49d27f17e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22077.png b/front/public/images/large/gregtech/gt.metaitem.01/22077.png deleted file mode 100644 index 88f4016cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22078.png b/front/public/images/large/gregtech/gt.metaitem.01/22078.png deleted file mode 100644 index b6e2b300a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2208.png b/front/public/images/large/gregtech/gt.metaitem.01/2208.png deleted file mode 100644 index b525a11045..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22080.png b/front/public/images/large/gregtech/gt.metaitem.01/22080.png deleted file mode 100644 index a1e4ccb778..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22081.png b/front/public/images/large/gregtech/gt.metaitem.01/22081.png deleted file mode 100644 index a795ecf45d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22083.png b/front/public/images/large/gregtech/gt.metaitem.01/22083.png deleted file mode 100644 index 1e3e43cc17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22084.png b/front/public/images/large/gregtech/gt.metaitem.01/22084.png deleted file mode 100644 index 19dd4f2169..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22085.png b/front/public/images/large/gregtech/gt.metaitem.01/22085.png deleted file mode 100644 index beac0ae852..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22086.png b/front/public/images/large/gregtech/gt.metaitem.01/22086.png deleted file mode 100644 index cac205e5f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22089.png b/front/public/images/large/gregtech/gt.metaitem.01/22089.png deleted file mode 100644 index 171284e63a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2209.png b/front/public/images/large/gregtech/gt.metaitem.01/2209.png deleted file mode 100644 index b3161af33c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22090.png b/front/public/images/large/gregtech/gt.metaitem.01/22090.png deleted file mode 100644 index 0b1d7ec58a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22096.png b/front/public/images/large/gregtech/gt.metaitem.01/22096.png deleted file mode 100644 index 4a41b6f256..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22097.png b/front/public/images/large/gregtech/gt.metaitem.01/22097.png deleted file mode 100644 index 037446ff60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22098.png b/front/public/images/large/gregtech/gt.metaitem.01/22098.png deleted file mode 100644 index ba3b0dc101..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22100.png b/front/public/images/large/gregtech/gt.metaitem.01/22100.png deleted file mode 100644 index 0f9a101aa2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22101.png b/front/public/images/large/gregtech/gt.metaitem.01/22101.png deleted file mode 100644 index 7d581ac08b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22103.png b/front/public/images/large/gregtech/gt.metaitem.01/22103.png deleted file mode 100644 index 35b37cec8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22111.png b/front/public/images/large/gregtech/gt.metaitem.01/22111.png deleted file mode 100644 index cf39af2cee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22112.png b/front/public/images/large/gregtech/gt.metaitem.01/22112.png deleted file mode 100644 index 25fefb1851..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22129.png b/front/public/images/large/gregtech/gt.metaitem.01/22129.png deleted file mode 100644 index 1d7bb70892..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22131.png b/front/public/images/large/gregtech/gt.metaitem.01/22131.png deleted file mode 100644 index ef437400cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22134.png b/front/public/images/large/gregtech/gt.metaitem.01/22134.png deleted file mode 100644 index 5c761be567..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22139.png b/front/public/images/large/gregtech/gt.metaitem.01/22139.png deleted file mode 100644 index 43f74a9f4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22141.png b/front/public/images/large/gregtech/gt.metaitem.01/22141.png deleted file mode 100644 index 538edf0a74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22143.png b/front/public/images/large/gregtech/gt.metaitem.01/22143.png deleted file mode 100644 index 23817706ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22201.png b/front/public/images/large/gregtech/gt.metaitem.01/22201.png deleted file mode 100644 index 4d6f0f7830..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22202.png b/front/public/images/large/gregtech/gt.metaitem.01/22202.png deleted file mode 100644 index 93382440d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22203.png b/front/public/images/large/gregtech/gt.metaitem.01/22203.png deleted file mode 100644 index 1851119de8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22205.png b/front/public/images/large/gregtech/gt.metaitem.01/22205.png deleted file mode 100644 index 1d751bc8cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22300.png b/front/public/images/large/gregtech/gt.metaitem.01/22300.png deleted file mode 100644 index 08bea9a4da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22301.png b/front/public/images/large/gregtech/gt.metaitem.01/22301.png deleted file mode 100644 index 3bfa183cc8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22302.png b/front/public/images/large/gregtech/gt.metaitem.01/22302.png deleted file mode 100644 index bba78b75a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22303.png b/front/public/images/large/gregtech/gt.metaitem.01/22303.png deleted file mode 100644 index 2374830b7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22304.png b/front/public/images/large/gregtech/gt.metaitem.01/22304.png deleted file mode 100644 index b017c88742..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22305.png b/front/public/images/large/gregtech/gt.metaitem.01/22305.png deleted file mode 100644 index 4e9488ab0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22306.png b/front/public/images/large/gregtech/gt.metaitem.01/22306.png deleted file mode 100644 index 8ff7ceb2d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22307.png b/front/public/images/large/gregtech/gt.metaitem.01/22307.png deleted file mode 100644 index b017c88742..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22308.png b/front/public/images/large/gregtech/gt.metaitem.01/22308.png deleted file mode 100644 index 284c467f53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22309.png b/front/public/images/large/gregtech/gt.metaitem.01/22309.png deleted file mode 100644 index 2762f50d5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22310.png b/front/public/images/large/gregtech/gt.metaitem.01/22310.png deleted file mode 100644 index 8f285923bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22311.png b/front/public/images/large/gregtech/gt.metaitem.01/22311.png deleted file mode 100644 index 9a37bee580..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22312.png b/front/public/images/large/gregtech/gt.metaitem.01/22312.png deleted file mode 100644 index 963e14dbab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22313.png b/front/public/images/large/gregtech/gt.metaitem.01/22313.png deleted file mode 100644 index 688b4f751f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22314.png b/front/public/images/large/gregtech/gt.metaitem.01/22314.png deleted file mode 100644 index 15aac39eea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22315.png b/front/public/images/large/gregtech/gt.metaitem.01/22315.png deleted file mode 100644 index b74422fc53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22316.png b/front/public/images/large/gregtech/gt.metaitem.01/22316.png deleted file mode 100644 index 6693d806e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22317.png b/front/public/images/large/gregtech/gt.metaitem.01/22317.png deleted file mode 100644 index 7c520dd869..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22318.png b/front/public/images/large/gregtech/gt.metaitem.01/22318.png deleted file mode 100644 index c92cfeac7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22319.png b/front/public/images/large/gregtech/gt.metaitem.01/22319.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22320.png b/front/public/images/large/gregtech/gt.metaitem.01/22320.png deleted file mode 100644 index 8c24ee138c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22321.png b/front/public/images/large/gregtech/gt.metaitem.01/22321.png deleted file mode 100644 index e2095f4ee3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22323.png b/front/public/images/large/gregtech/gt.metaitem.01/22323.png deleted file mode 100644 index 7c16dda278..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22324.png b/front/public/images/large/gregtech/gt.metaitem.01/22324.png deleted file mode 100644 index a795ecf45d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22325.png b/front/public/images/large/gregtech/gt.metaitem.01/22325.png deleted file mode 100644 index ee175dd05a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22326.png b/front/public/images/large/gregtech/gt.metaitem.01/22326.png deleted file mode 100644 index 278be06a60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22327.png b/front/public/images/large/gregtech/gt.metaitem.01/22327.png deleted file mode 100644 index 0bd9a99708..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22328.png b/front/public/images/large/gregtech/gt.metaitem.01/22328.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22329.png b/front/public/images/large/gregtech/gt.metaitem.01/22329.png deleted file mode 100644 index a3b7505553..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22330.png b/front/public/images/large/gregtech/gt.metaitem.01/22330.png deleted file mode 100644 index c946c74953..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22331.png b/front/public/images/large/gregtech/gt.metaitem.01/22331.png deleted file mode 100644 index 81608b0296..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22333.png b/front/public/images/large/gregtech/gt.metaitem.01/22333.png deleted file mode 100644 index a8d555ff0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22334.png b/front/public/images/large/gregtech/gt.metaitem.01/22334.png deleted file mode 100644 index 1431b61af2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22335.png b/front/public/images/large/gregtech/gt.metaitem.01/22335.png deleted file mode 100644 index d19787948e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22336.png b/front/public/images/large/gregtech/gt.metaitem.01/22336.png deleted file mode 100644 index 1d37498519..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22337.png b/front/public/images/large/gregtech/gt.metaitem.01/22337.png deleted file mode 100644 index 17e01c1716..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22338.png b/front/public/images/large/gregtech/gt.metaitem.01/22338.png deleted file mode 100644 index 4333b9daee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22339.png b/front/public/images/large/gregtech/gt.metaitem.01/22339.png deleted file mode 100644 index 3764a96207..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22340.png b/front/public/images/large/gregtech/gt.metaitem.01/22340.png deleted file mode 100644 index 121c604739..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22341.png b/front/public/images/large/gregtech/gt.metaitem.01/22341.png deleted file mode 100644 index 8647f3756a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22342.png b/front/public/images/large/gregtech/gt.metaitem.01/22342.png deleted file mode 100644 index 40f0c07482..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22343.png b/front/public/images/large/gregtech/gt.metaitem.01/22343.png deleted file mode 100644 index c5ea5bf7d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22344.png b/front/public/images/large/gregtech/gt.metaitem.01/22344.png deleted file mode 100644 index 04a06b5291..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22345.png b/front/public/images/large/gregtech/gt.metaitem.01/22345.png deleted file mode 100644 index 6d9465f930..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22346.png b/front/public/images/large/gregtech/gt.metaitem.01/22346.png deleted file mode 100644 index 9585ea5c83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22348.png b/front/public/images/large/gregtech/gt.metaitem.01/22348.png deleted file mode 100644 index 4aecf3f8da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22349.png b/front/public/images/large/gregtech/gt.metaitem.01/22349.png deleted file mode 100644 index 9c7e22c8ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22350.png b/front/public/images/large/gregtech/gt.metaitem.01/22350.png deleted file mode 100644 index 7f52d400a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22351.png b/front/public/images/large/gregtech/gt.metaitem.01/22351.png deleted file mode 100644 index 383b6e3fb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22352.png b/front/public/images/large/gregtech/gt.metaitem.01/22352.png deleted file mode 100644 index bcc9ea3ebb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22353.png b/front/public/images/large/gregtech/gt.metaitem.01/22353.png deleted file mode 100644 index 032a9d1cd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22354.png b/front/public/images/large/gregtech/gt.metaitem.01/22354.png deleted file mode 100644 index 287a81d589..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22355.png b/front/public/images/large/gregtech/gt.metaitem.01/22355.png deleted file mode 100644 index 41cf75a43f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22356.png b/front/public/images/large/gregtech/gt.metaitem.01/22356.png deleted file mode 100644 index a16ba7f710..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22357.png b/front/public/images/large/gregtech/gt.metaitem.01/22357.png deleted file mode 100644 index 576869ec70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22358.png b/front/public/images/large/gregtech/gt.metaitem.01/22358.png deleted file mode 100644 index 0e0ec5774a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22359.png b/front/public/images/large/gregtech/gt.metaitem.01/22359.png deleted file mode 100644 index c95703253c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22360.png b/front/public/images/large/gregtech/gt.metaitem.01/22360.png deleted file mode 100644 index 8b751869f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22361.png b/front/public/images/large/gregtech/gt.metaitem.01/22361.png deleted file mode 100644 index 5e6ceac910..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22362.png b/front/public/images/large/gregtech/gt.metaitem.01/22362.png deleted file mode 100644 index 0f85a21c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22363.png b/front/public/images/large/gregtech/gt.metaitem.01/22363.png deleted file mode 100644 index 35b37cec8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22364.png b/front/public/images/large/gregtech/gt.metaitem.01/22364.png deleted file mode 100644 index cd24b4ca6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22365.png b/front/public/images/large/gregtech/gt.metaitem.01/22365.png deleted file mode 100644 index 8f5d7a35c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22366.png b/front/public/images/large/gregtech/gt.metaitem.01/22366.png deleted file mode 100644 index c1ca0e3534..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22367.png b/front/public/images/large/gregtech/gt.metaitem.01/22367.png deleted file mode 100644 index 4a1dfd846b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22368.png b/front/public/images/large/gregtech/gt.metaitem.01/22368.png deleted file mode 100644 index 6533930a92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22369.png b/front/public/images/large/gregtech/gt.metaitem.01/22369.png deleted file mode 100644 index 7509a67203..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22370.png b/front/public/images/large/gregtech/gt.metaitem.01/22370.png deleted file mode 100644 index 7e673e8f52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22371.png b/front/public/images/large/gregtech/gt.metaitem.01/22371.png deleted file mode 100644 index 6b37846e90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22372.png b/front/public/images/large/gregtech/gt.metaitem.01/22372.png deleted file mode 100644 index 72022599bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22373.png b/front/public/images/large/gregtech/gt.metaitem.01/22373.png deleted file mode 100644 index 44721e7fe1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22374.png b/front/public/images/large/gregtech/gt.metaitem.01/22374.png deleted file mode 100644 index b21277f7fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22378.png b/front/public/images/large/gregtech/gt.metaitem.01/22378.png deleted file mode 100644 index c0eccd8c30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22379.png b/front/public/images/large/gregtech/gt.metaitem.01/22379.png deleted file mode 100644 index f96f337c20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22380.png b/front/public/images/large/gregtech/gt.metaitem.01/22380.png deleted file mode 100644 index 99ee51ac4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22381.png b/front/public/images/large/gregtech/gt.metaitem.01/22381.png deleted file mode 100644 index aee68fc02f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22382.png b/front/public/images/large/gregtech/gt.metaitem.01/22382.png deleted file mode 100644 index 04f043544b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22383.png b/front/public/images/large/gregtech/gt.metaitem.01/22383.png deleted file mode 100644 index f5b6c61143..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22384.png b/front/public/images/large/gregtech/gt.metaitem.01/22384.png deleted file mode 100644 index 78ff30a8db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22385.png b/front/public/images/large/gregtech/gt.metaitem.01/22385.png deleted file mode 100644 index 0b6aef2223..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22386.png b/front/public/images/large/gregtech/gt.metaitem.01/22386.png deleted file mode 100644 index 8a853aa6ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22387.png b/front/public/images/large/gregtech/gt.metaitem.01/22387.png deleted file mode 100644 index 78597b9f75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22388.png b/front/public/images/large/gregtech/gt.metaitem.01/22388.png deleted file mode 100644 index a795ecf45d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22389.png b/front/public/images/large/gregtech/gt.metaitem.01/22389.png deleted file mode 100644 index 7b0c788295..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22390.png b/front/public/images/large/gregtech/gt.metaitem.01/22390.png deleted file mode 100644 index 2d7bb9cd0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22391.png b/front/public/images/large/gregtech/gt.metaitem.01/22391.png deleted file mode 100644 index 0e12e15a27..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22392.png b/front/public/images/large/gregtech/gt.metaitem.01/22392.png deleted file mode 100644 index 7940ca70f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22393.png b/front/public/images/large/gregtech/gt.metaitem.01/22393.png deleted file mode 100644 index f67f675f71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22394.png b/front/public/images/large/gregtech/gt.metaitem.01/22394.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22395.png b/front/public/images/large/gregtech/gt.metaitem.01/22395.png deleted file mode 100644 index a795ecf45d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22397.png b/front/public/images/large/gregtech/gt.metaitem.01/22397.png deleted file mode 100644 index 0ea67ab6b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22398.png b/front/public/images/large/gregtech/gt.metaitem.01/22398.png deleted file mode 100644 index 3bbf265047..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22399.png b/front/public/images/large/gregtech/gt.metaitem.01/22399.png deleted file mode 100644 index 722cfd1ba7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22400.png b/front/public/images/large/gregtech/gt.metaitem.01/22400.png deleted file mode 100644 index a09df495e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22401.png b/front/public/images/large/gregtech/gt.metaitem.01/22401.png deleted file mode 100644 index 3b655c3d5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22402.png b/front/public/images/large/gregtech/gt.metaitem.01/22402.png deleted file mode 100644 index fd27115355..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22403.png b/front/public/images/large/gregtech/gt.metaitem.01/22403.png deleted file mode 100644 index e31d60cd54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22404.png b/front/public/images/large/gregtech/gt.metaitem.01/22404.png deleted file mode 100644 index 49ef6b88ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22405.png b/front/public/images/large/gregtech/gt.metaitem.01/22405.png deleted file mode 100644 index 8177d64d79..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22406.png b/front/public/images/large/gregtech/gt.metaitem.01/22406.png deleted file mode 100644 index b17469233d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22407.png b/front/public/images/large/gregtech/gt.metaitem.01/22407.png deleted file mode 100644 index 8ef6e1aa96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22408.png b/front/public/images/large/gregtech/gt.metaitem.01/22408.png deleted file mode 100644 index ea7bea0ca1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2241.png b/front/public/images/large/gregtech/gt.metaitem.01/2241.png deleted file mode 100644 index 1fd30531d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2241.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22470.png b/front/public/images/large/gregtech/gt.metaitem.01/22470.png deleted file mode 100644 index 147dbd8df6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22471.png b/front/public/images/large/gregtech/gt.metaitem.01/22471.png deleted file mode 100644 index db5e831c64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22472.png b/front/public/images/large/gregtech/gt.metaitem.01/22472.png deleted file mode 100644 index a795ecf45d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22473.png b/front/public/images/large/gregtech/gt.metaitem.01/22473.png deleted file mode 100644 index 1431b61af2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22485.png b/front/public/images/large/gregtech/gt.metaitem.01/22485.png deleted file mode 100644 index 84ffbe0c1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22488.png b/front/public/images/large/gregtech/gt.metaitem.01/22488.png deleted file mode 100644 index 396d16f2af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22489.png b/front/public/images/large/gregtech/gt.metaitem.01/22489.png deleted file mode 100644 index 95f0a3096d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22521.png b/front/public/images/large/gregtech/gt.metaitem.01/22521.png deleted file mode 100644 index c92cfeac7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22529.png b/front/public/images/large/gregtech/gt.metaitem.01/22529.png deleted file mode 100644 index 1aa5ddde2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22576.png b/front/public/images/large/gregtech/gt.metaitem.01/22576.png deleted file mode 100644 index 632c34e6a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22581.png b/front/public/images/large/gregtech/gt.metaitem.01/22581.png deleted file mode 100644 index 2ed88a55a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22582.png b/front/public/images/large/gregtech/gt.metaitem.01/22582.png deleted file mode 100644 index 838166116c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22583.png b/front/public/images/large/gregtech/gt.metaitem.01/22583.png deleted file mode 100644 index 44d58564b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22585.png b/front/public/images/large/gregtech/gt.metaitem.01/22585.png deleted file mode 100644 index 189bfa4d72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22586.png b/front/public/images/large/gregtech/gt.metaitem.01/22586.png deleted file mode 100644 index 928c3d3be5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22588.png b/front/public/images/large/gregtech/gt.metaitem.01/22588.png deleted file mode 100644 index f05bc7ac63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22599.png b/front/public/images/large/gregtech/gt.metaitem.01/22599.png deleted file mode 100644 index d716a61ef4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22610.png b/front/public/images/large/gregtech/gt.metaitem.01/22610.png deleted file mode 100644 index 20156aefb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22613.png b/front/public/images/large/gregtech/gt.metaitem.01/22613.png deleted file mode 100644 index 6e0d5ed0e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22631.png b/front/public/images/large/gregtech/gt.metaitem.01/22631.png deleted file mode 100644 index 8b14a4106c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22635.png b/front/public/images/large/gregtech/gt.metaitem.01/22635.png deleted file mode 100644 index 59a1780155..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22636.png b/front/public/images/large/gregtech/gt.metaitem.01/22636.png deleted file mode 100644 index 6fd8c6c615..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22649.png b/front/public/images/large/gregtech/gt.metaitem.01/22649.png deleted file mode 100644 index 2a24455c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22765.png b/front/public/images/large/gregtech/gt.metaitem.01/22765.png deleted file mode 100644 index 72a23936ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22770.png b/front/public/images/large/gregtech/gt.metaitem.01/22770.png deleted file mode 100644 index 7f8bc9100e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22772.png b/front/public/images/large/gregtech/gt.metaitem.01/22772.png deleted file mode 100644 index 73178ec1df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22829.png b/front/public/images/large/gregtech/gt.metaitem.01/22829.png deleted file mode 100644 index 48a978fbfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22856.png b/front/public/images/large/gregtech/gt.metaitem.01/22856.png deleted file mode 100644 index 1d4d585f75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22868.png b/front/public/images/large/gregtech/gt.metaitem.01/22868.png deleted file mode 100644 index ee726588e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22874.png b/front/public/images/large/gregtech/gt.metaitem.01/22874.png deleted file mode 100644 index 35b37cec8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22880.png b/front/public/images/large/gregtech/gt.metaitem.01/22880.png deleted file mode 100644 index 928c3d3be5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22884.png b/front/public/images/large/gregtech/gt.metaitem.01/22884.png deleted file mode 100644 index ee175dd05a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22912.png b/front/public/images/large/gregtech/gt.metaitem.01/22912.png deleted file mode 100644 index 3fd041a93d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22913.png b/front/public/images/large/gregtech/gt.metaitem.01/22913.png deleted file mode 100644 index 4aecf3f8da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22951.png b/front/public/images/large/gregtech/gt.metaitem.01/22951.png deleted file mode 100644 index 17498f97f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22952.png b/front/public/images/large/gregtech/gt.metaitem.01/22952.png deleted file mode 100644 index ca1b156c9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22956.png b/front/public/images/large/gregtech/gt.metaitem.01/22956.png deleted file mode 100644 index 30fce0baf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22966.png b/front/public/images/large/gregtech/gt.metaitem.01/22966.png deleted file mode 100644 index 4773ea6d7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22970.png b/front/public/images/large/gregtech/gt.metaitem.01/22970.png deleted file mode 100644 index 05defcd54a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22974.png b/front/public/images/large/gregtech/gt.metaitem.01/22974.png deleted file mode 100644 index 2555334fc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22975.png b/front/public/images/large/gregtech/gt.metaitem.01/22975.png deleted file mode 100644 index fa5b96ec8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22976.png b/front/public/images/large/gregtech/gt.metaitem.01/22976.png deleted file mode 100644 index e072870913..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22977.png b/front/public/images/large/gregtech/gt.metaitem.01/22977.png deleted file mode 100644 index b5889385d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22978.png b/front/public/images/large/gregtech/gt.metaitem.01/22978.png deleted file mode 100644 index 56ca429922..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22979.png b/front/public/images/large/gregtech/gt.metaitem.01/22979.png deleted file mode 100644 index dbd7a87203..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22980.png b/front/public/images/large/gregtech/gt.metaitem.01/22980.png deleted file mode 100644 index 6915c6689d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22981.png b/front/public/images/large/gregtech/gt.metaitem.01/22981.png deleted file mode 100644 index c4785055c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22982.png b/front/public/images/large/gregtech/gt.metaitem.01/22982.png deleted file mode 100644 index b2b88714c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22984.png b/front/public/images/large/gregtech/gt.metaitem.01/22984.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22985.png b/front/public/images/large/gregtech/gt.metaitem.01/22985.png deleted file mode 100644 index 6e0fe48169..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22986.png b/front/public/images/large/gregtech/gt.metaitem.01/22986.png deleted file mode 100644 index 1787ca5855..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22987.png b/front/public/images/large/gregtech/gt.metaitem.01/22987.png deleted file mode 100644 index 99086c4793..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22988.png b/front/public/images/large/gregtech/gt.metaitem.01/22988.png deleted file mode 100644 index 47f97e4eeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22989.png b/front/public/images/large/gregtech/gt.metaitem.01/22989.png deleted file mode 100644 index 3d7464a578..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2299.png b/front/public/images/large/gregtech/gt.metaitem.01/2299.png deleted file mode 100644 index e98e1d66cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22990.png b/front/public/images/large/gregtech/gt.metaitem.01/22990.png deleted file mode 100644 index ed34d4cdcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22991.png b/front/public/images/large/gregtech/gt.metaitem.01/22991.png deleted file mode 100644 index 14efe05ecb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/22992.png b/front/public/images/large/gregtech/gt.metaitem.01/22992.png deleted file mode 100644 index e1ceb788ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/22992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2300.png b/front/public/images/large/gregtech/gt.metaitem.01/2300.png deleted file mode 100644 index b65c79d46a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23006.png b/front/public/images/large/gregtech/gt.metaitem.01/23006.png deleted file mode 100644 index 911348b0bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23008.png b/front/public/images/large/gregtech/gt.metaitem.01/23008.png deleted file mode 100644 index 54a2cde215..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2301.png b/front/public/images/large/gregtech/gt.metaitem.01/2301.png deleted file mode 100644 index 385fa4d95d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23010.png b/front/public/images/large/gregtech/gt.metaitem.01/23010.png deleted file mode 100644 index bb2e9b353c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23018.png b/front/public/images/large/gregtech/gt.metaitem.01/23018.png deleted file mode 100644 index 4fc94f632b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23019.png b/front/public/images/large/gregtech/gt.metaitem.01/23019.png deleted file mode 100644 index 61692a6b46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2302.png b/front/public/images/large/gregtech/gt.metaitem.01/2302.png deleted file mode 100644 index 96fb4bcfa4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23020.png b/front/public/images/large/gregtech/gt.metaitem.01/23020.png deleted file mode 100644 index 3050384e28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23025.png b/front/public/images/large/gregtech/gt.metaitem.01/23025.png deleted file mode 100644 index eb0dc2041b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23027.png b/front/public/images/large/gregtech/gt.metaitem.01/23027.png deleted file mode 100644 index cee3b9b17e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23028.png b/front/public/images/large/gregtech/gt.metaitem.01/23028.png deleted file mode 100644 index 7e35332461..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23029.png b/front/public/images/large/gregtech/gt.metaitem.01/23029.png deleted file mode 100644 index 9acfe96bb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2303.png b/front/public/images/large/gregtech/gt.metaitem.01/2303.png deleted file mode 100644 index 793a6a92e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23030.png b/front/public/images/large/gregtech/gt.metaitem.01/23030.png deleted file mode 100644 index b1f713b8a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23031.png b/front/public/images/large/gregtech/gt.metaitem.01/23031.png deleted file mode 100644 index d7cdbb2345..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23032.png b/front/public/images/large/gregtech/gt.metaitem.01/23032.png deleted file mode 100644 index 6cf88250c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23033.png b/front/public/images/large/gregtech/gt.metaitem.01/23033.png deleted file mode 100644 index f34ede1cc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23034.png b/front/public/images/large/gregtech/gt.metaitem.01/23034.png deleted file mode 100644 index 51d88e2136..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23035.png b/front/public/images/large/gregtech/gt.metaitem.01/23035.png deleted file mode 100644 index e0f3175b55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23036.png b/front/public/images/large/gregtech/gt.metaitem.01/23036.png deleted file mode 100644 index 02e6f3a88e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23037.png b/front/public/images/large/gregtech/gt.metaitem.01/23037.png deleted file mode 100644 index 5045f1aa75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23039.png b/front/public/images/large/gregtech/gt.metaitem.01/23039.png deleted file mode 100644 index 79c7dbd347..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2304.png b/front/public/images/large/gregtech/gt.metaitem.01/2304.png deleted file mode 100644 index 6045f1611c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23043.png b/front/public/images/large/gregtech/gt.metaitem.01/23043.png deleted file mode 100644 index b6c58cef2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23045.png b/front/public/images/large/gregtech/gt.metaitem.01/23045.png deleted file mode 100644 index 8d8720fa0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23047.png b/front/public/images/large/gregtech/gt.metaitem.01/23047.png deleted file mode 100644 index 583f0aebbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23048.png b/front/public/images/large/gregtech/gt.metaitem.01/23048.png deleted file mode 100644 index cfb137ee13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2305.png b/front/public/images/large/gregtech/gt.metaitem.01/2305.png deleted file mode 100644 index 723ea56484..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23052.png b/front/public/images/large/gregtech/gt.metaitem.01/23052.png deleted file mode 100644 index dc99cd4f9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23054.png b/front/public/images/large/gregtech/gt.metaitem.01/23054.png deleted file mode 100644 index 5045f1aa75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23056.png b/front/public/images/large/gregtech/gt.metaitem.01/23056.png deleted file mode 100644 index 77bc611c36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23057.png b/front/public/images/large/gregtech/gt.metaitem.01/23057.png deleted file mode 100644 index 712d4a8721..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23058.png b/front/public/images/large/gregtech/gt.metaitem.01/23058.png deleted file mode 100644 index 9a60362294..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23059.png b/front/public/images/large/gregtech/gt.metaitem.01/23059.png deleted file mode 100644 index 5946b05093..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2306.png b/front/public/images/large/gregtech/gt.metaitem.01/2306.png deleted file mode 100644 index 043564eda0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23062.png b/front/public/images/large/gregtech/gt.metaitem.01/23062.png deleted file mode 100644 index ca613343fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23063.png b/front/public/images/large/gregtech/gt.metaitem.01/23063.png deleted file mode 100644 index 3e6e377467..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23064.png b/front/public/images/large/gregtech/gt.metaitem.01/23064.png deleted file mode 100644 index e88d8c2b69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23065.png b/front/public/images/large/gregtech/gt.metaitem.01/23065.png deleted file mode 100644 index 44af9d2b75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23066.png b/front/public/images/large/gregtech/gt.metaitem.01/23066.png deleted file mode 100644 index eb8fd56cdf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23067.png b/front/public/images/large/gregtech/gt.metaitem.01/23067.png deleted file mode 100644 index 663c961f3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23068.png b/front/public/images/large/gregtech/gt.metaitem.01/23068.png deleted file mode 100644 index f30fb9e55f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23069.png b/front/public/images/large/gregtech/gt.metaitem.01/23069.png deleted file mode 100644 index 1c42139b3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2307.png b/front/public/images/large/gregtech/gt.metaitem.01/2307.png deleted file mode 100644 index 6045f1611c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23070.png b/front/public/images/large/gregtech/gt.metaitem.01/23070.png deleted file mode 100644 index d48e8e564c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23071.png b/front/public/images/large/gregtech/gt.metaitem.01/23071.png deleted file mode 100644 index df37cc37e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23072.png b/front/public/images/large/gregtech/gt.metaitem.01/23072.png deleted file mode 100644 index 3e6e377467..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23073.png b/front/public/images/large/gregtech/gt.metaitem.01/23073.png deleted file mode 100644 index 0429cdef6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23074.png b/front/public/images/large/gregtech/gt.metaitem.01/23074.png deleted file mode 100644 index ea20365cb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23075.png b/front/public/images/large/gregtech/gt.metaitem.01/23075.png deleted file mode 100644 index e0ba1a7a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23076.png b/front/public/images/large/gregtech/gt.metaitem.01/23076.png deleted file mode 100644 index d15eb45fab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23077.png b/front/public/images/large/gregtech/gt.metaitem.01/23077.png deleted file mode 100644 index 25069eb98b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23078.png b/front/public/images/large/gregtech/gt.metaitem.01/23078.png deleted file mode 100644 index 006790fdc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2308.png b/front/public/images/large/gregtech/gt.metaitem.01/2308.png deleted file mode 100644 index f06d6135e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23080.png b/front/public/images/large/gregtech/gt.metaitem.01/23080.png deleted file mode 100644 index 01a7e8999a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23081.png b/front/public/images/large/gregtech/gt.metaitem.01/23081.png deleted file mode 100644 index 9acfe96bb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23083.png b/front/public/images/large/gregtech/gt.metaitem.01/23083.png deleted file mode 100644 index 588ef862dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23084.png b/front/public/images/large/gregtech/gt.metaitem.01/23084.png deleted file mode 100644 index 824364d209..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23085.png b/front/public/images/large/gregtech/gt.metaitem.01/23085.png deleted file mode 100644 index 006973341e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23086.png b/front/public/images/large/gregtech/gt.metaitem.01/23086.png deleted file mode 100644 index fe768ade35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23089.png b/front/public/images/large/gregtech/gt.metaitem.01/23089.png deleted file mode 100644 index 57a5d9fcf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2309.png b/front/public/images/large/gregtech/gt.metaitem.01/2309.png deleted file mode 100644 index 15bf54b4bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23090.png b/front/public/images/large/gregtech/gt.metaitem.01/23090.png deleted file mode 100644 index 4a5eeaee4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23096.png b/front/public/images/large/gregtech/gt.metaitem.01/23096.png deleted file mode 100644 index eec78407b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23097.png b/front/public/images/large/gregtech/gt.metaitem.01/23097.png deleted file mode 100644 index f8bdfba8b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23098.png b/front/public/images/large/gregtech/gt.metaitem.01/23098.png deleted file mode 100644 index b1f7a9f198..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2310.png b/front/public/images/large/gregtech/gt.metaitem.01/2310.png deleted file mode 100644 index b607cb43a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23100.png b/front/public/images/large/gregtech/gt.metaitem.01/23100.png deleted file mode 100644 index 101d33ecb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23101.png b/front/public/images/large/gregtech/gt.metaitem.01/23101.png deleted file mode 100644 index b0bf9854f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23103.png b/front/public/images/large/gregtech/gt.metaitem.01/23103.png deleted file mode 100644 index 6cf88250c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2311.png b/front/public/images/large/gregtech/gt.metaitem.01/2311.png deleted file mode 100644 index 610b8233b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23111.png b/front/public/images/large/gregtech/gt.metaitem.01/23111.png deleted file mode 100644 index bb96505608..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23112.png b/front/public/images/large/gregtech/gt.metaitem.01/23112.png deleted file mode 100644 index e2dbf6d18f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2312.png b/front/public/images/large/gregtech/gt.metaitem.01/2312.png deleted file mode 100644 index 1066152a2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23129.png b/front/public/images/large/gregtech/gt.metaitem.01/23129.png deleted file mode 100644 index d7cdbb2345..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2313.png b/front/public/images/large/gregtech/gt.metaitem.01/2313.png deleted file mode 100644 index 0eec8b920f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23131.png b/front/public/images/large/gregtech/gt.metaitem.01/23131.png deleted file mode 100644 index 5c55ee5a8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23134.png b/front/public/images/large/gregtech/gt.metaitem.01/23134.png deleted file mode 100644 index 1fc0cce607..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23139.png b/front/public/images/large/gregtech/gt.metaitem.01/23139.png deleted file mode 100644 index 9bed8e66ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2314.png b/front/public/images/large/gregtech/gt.metaitem.01/2314.png deleted file mode 100644 index 31988a3cd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23141.png b/front/public/images/large/gregtech/gt.metaitem.01/23141.png deleted file mode 100644 index 0c17032cbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23143.png b/front/public/images/large/gregtech/gt.metaitem.01/23143.png deleted file mode 100644 index 1d94bc3839..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2315.png b/front/public/images/large/gregtech/gt.metaitem.01/2315.png deleted file mode 100644 index 925ea24c67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2316.png b/front/public/images/large/gregtech/gt.metaitem.01/2316.png deleted file mode 100644 index bdb27bc0df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2317.png b/front/public/images/large/gregtech/gt.metaitem.01/2317.png deleted file mode 100644 index 58f4e76cf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2318.png b/front/public/images/large/gregtech/gt.metaitem.01/2318.png deleted file mode 100644 index 3ab4c0764b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2319.png b/front/public/images/large/gregtech/gt.metaitem.01/2319.png deleted file mode 100644 index e6ea5f1f0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2320.png b/front/public/images/large/gregtech/gt.metaitem.01/2320.png deleted file mode 100644 index e411d2213c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23201.png b/front/public/images/large/gregtech/gt.metaitem.01/23201.png deleted file mode 100644 index faa7dcd569..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23202.png b/front/public/images/large/gregtech/gt.metaitem.01/23202.png deleted file mode 100644 index e05f11c64f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23203.png b/front/public/images/large/gregtech/gt.metaitem.01/23203.png deleted file mode 100644 index 4b18fef4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23205.png b/front/public/images/large/gregtech/gt.metaitem.01/23205.png deleted file mode 100644 index 7e21cae0d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23206.png b/front/public/images/large/gregtech/gt.metaitem.01/23206.png deleted file mode 100644 index 05791aa969..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23207.png b/front/public/images/large/gregtech/gt.metaitem.01/23207.png deleted file mode 100644 index 6b95f7faf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23208.png b/front/public/images/large/gregtech/gt.metaitem.01/23208.png deleted file mode 100644 index 34f3d89ea1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23209.png b/front/public/images/large/gregtech/gt.metaitem.01/23209.png deleted file mode 100644 index 8773471a7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2321.png b/front/public/images/large/gregtech/gt.metaitem.01/2321.png deleted file mode 100644 index a5526f2385..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2323.png b/front/public/images/large/gregtech/gt.metaitem.01/2323.png deleted file mode 100644 index 4bc096b29d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2324.png b/front/public/images/large/gregtech/gt.metaitem.01/2324.png deleted file mode 100644 index 8a6b2e45fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2325.png b/front/public/images/large/gregtech/gt.metaitem.01/2325.png deleted file mode 100644 index 70625ce1ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2326.png b/front/public/images/large/gregtech/gt.metaitem.01/2326.png deleted file mode 100644 index f752a5426a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2327.png b/front/public/images/large/gregtech/gt.metaitem.01/2327.png deleted file mode 100644 index 90ef39a444..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2328.png b/front/public/images/large/gregtech/gt.metaitem.01/2328.png deleted file mode 100644 index 32db608954..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2329.png b/front/public/images/large/gregtech/gt.metaitem.01/2329.png deleted file mode 100644 index afd05a65fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2330.png b/front/public/images/large/gregtech/gt.metaitem.01/2330.png deleted file mode 100644 index 57324c76d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23300.png b/front/public/images/large/gregtech/gt.metaitem.01/23300.png deleted file mode 100644 index 8e2a51601b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23301.png b/front/public/images/large/gregtech/gt.metaitem.01/23301.png deleted file mode 100644 index edb28c6295..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23302.png b/front/public/images/large/gregtech/gt.metaitem.01/23302.png deleted file mode 100644 index d850601c57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23303.png b/front/public/images/large/gregtech/gt.metaitem.01/23303.png deleted file mode 100644 index ba73b45234..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23304.png b/front/public/images/large/gregtech/gt.metaitem.01/23304.png deleted file mode 100644 index f1c4cfb8e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23305.png b/front/public/images/large/gregtech/gt.metaitem.01/23305.png deleted file mode 100644 index f03f2d43c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23306.png b/front/public/images/large/gregtech/gt.metaitem.01/23306.png deleted file mode 100644 index b27459bc65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23307.png b/front/public/images/large/gregtech/gt.metaitem.01/23307.png deleted file mode 100644 index f1c4cfb8e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23308.png b/front/public/images/large/gregtech/gt.metaitem.01/23308.png deleted file mode 100644 index cfa1de0f29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23309.png b/front/public/images/large/gregtech/gt.metaitem.01/23309.png deleted file mode 100644 index b4da2ada3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2331.png b/front/public/images/large/gregtech/gt.metaitem.01/2331.png deleted file mode 100644 index 4e643e0a9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23310.png b/front/public/images/large/gregtech/gt.metaitem.01/23310.png deleted file mode 100644 index 3f8b244487..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23311.png b/front/public/images/large/gregtech/gt.metaitem.01/23311.png deleted file mode 100644 index a0a925a17e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23312.png b/front/public/images/large/gregtech/gt.metaitem.01/23312.png deleted file mode 100644 index 21a6158b03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23313.png b/front/public/images/large/gregtech/gt.metaitem.01/23313.png deleted file mode 100644 index ba83ce41c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23314.png b/front/public/images/large/gregtech/gt.metaitem.01/23314.png deleted file mode 100644 index cb743cb1ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23315.png b/front/public/images/large/gregtech/gt.metaitem.01/23315.png deleted file mode 100644 index e6acea6a40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23316.png b/front/public/images/large/gregtech/gt.metaitem.01/23316.png deleted file mode 100644 index 59ec41bed9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23317.png b/front/public/images/large/gregtech/gt.metaitem.01/23317.png deleted file mode 100644 index 3971c2b443..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23318.png b/front/public/images/large/gregtech/gt.metaitem.01/23318.png deleted file mode 100644 index 3a8739b2d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23319.png b/front/public/images/large/gregtech/gt.metaitem.01/23319.png deleted file mode 100644 index 5040d02e62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23320.png b/front/public/images/large/gregtech/gt.metaitem.01/23320.png deleted file mode 100644 index 97895a7d48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23321.png b/front/public/images/large/gregtech/gt.metaitem.01/23321.png deleted file mode 100644 index 3cf5104358..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23323.png b/front/public/images/large/gregtech/gt.metaitem.01/23323.png deleted file mode 100644 index 983c57abb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23324.png b/front/public/images/large/gregtech/gt.metaitem.01/23324.png deleted file mode 100644 index 9acfe96bb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23325.png b/front/public/images/large/gregtech/gt.metaitem.01/23325.png deleted file mode 100644 index 3ca0863c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23326.png b/front/public/images/large/gregtech/gt.metaitem.01/23326.png deleted file mode 100644 index ee8f9cd337..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23327.png b/front/public/images/large/gregtech/gt.metaitem.01/23327.png deleted file mode 100644 index f7971bc575..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23328.png b/front/public/images/large/gregtech/gt.metaitem.01/23328.png deleted file mode 100644 index 3e6e377467..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23329.png b/front/public/images/large/gregtech/gt.metaitem.01/23329.png deleted file mode 100644 index e3c597d66d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2333.png b/front/public/images/large/gregtech/gt.metaitem.01/2333.png deleted file mode 100644 index c8dff58da8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23330.png b/front/public/images/large/gregtech/gt.metaitem.01/23330.png deleted file mode 100644 index 6185531053..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23331.png b/front/public/images/large/gregtech/gt.metaitem.01/23331.png deleted file mode 100644 index 1b4b6a786e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23333.png b/front/public/images/large/gregtech/gt.metaitem.01/23333.png deleted file mode 100644 index b3ae69d843..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23334.png b/front/public/images/large/gregtech/gt.metaitem.01/23334.png deleted file mode 100644 index 663c961f3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23335.png b/front/public/images/large/gregtech/gt.metaitem.01/23335.png deleted file mode 100644 index 5d83844a32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23336.png b/front/public/images/large/gregtech/gt.metaitem.01/23336.png deleted file mode 100644 index b15aaac60e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23337.png b/front/public/images/large/gregtech/gt.metaitem.01/23337.png deleted file mode 100644 index 0992424ac8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23338.png b/front/public/images/large/gregtech/gt.metaitem.01/23338.png deleted file mode 100644 index 08fd6e339f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23339.png b/front/public/images/large/gregtech/gt.metaitem.01/23339.png deleted file mode 100644 index 2720ca8ee6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2334.png b/front/public/images/large/gregtech/gt.metaitem.01/2334.png deleted file mode 100644 index 0ea7698948..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23340.png b/front/public/images/large/gregtech/gt.metaitem.01/23340.png deleted file mode 100644 index 6f4ee38d23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23341.png b/front/public/images/large/gregtech/gt.metaitem.01/23341.png deleted file mode 100644 index 4e7531b9a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23342.png b/front/public/images/large/gregtech/gt.metaitem.01/23342.png deleted file mode 100644 index 6ef26d7fe7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23343.png b/front/public/images/large/gregtech/gt.metaitem.01/23343.png deleted file mode 100644 index d5069e28ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23344.png b/front/public/images/large/gregtech/gt.metaitem.01/23344.png deleted file mode 100644 index 80619fa713..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23345.png b/front/public/images/large/gregtech/gt.metaitem.01/23345.png deleted file mode 100644 index 917f2e3f77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23346.png b/front/public/images/large/gregtech/gt.metaitem.01/23346.png deleted file mode 100644 index 5a0511749a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23347.png b/front/public/images/large/gregtech/gt.metaitem.01/23347.png deleted file mode 100644 index 64dca7b94f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23348.png b/front/public/images/large/gregtech/gt.metaitem.01/23348.png deleted file mode 100644 index fc313afa0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23349.png b/front/public/images/large/gregtech/gt.metaitem.01/23349.png deleted file mode 100644 index a2a0a9c7c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2335.png b/front/public/images/large/gregtech/gt.metaitem.01/2335.png deleted file mode 100644 index 5729a12510..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23350.png b/front/public/images/large/gregtech/gt.metaitem.01/23350.png deleted file mode 100644 index 2404b95311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23351.png b/front/public/images/large/gregtech/gt.metaitem.01/23351.png deleted file mode 100644 index 21fede538d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23352.png b/front/public/images/large/gregtech/gt.metaitem.01/23352.png deleted file mode 100644 index 3ed5ee32f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23353.png b/front/public/images/large/gregtech/gt.metaitem.01/23353.png deleted file mode 100644 index aee17dc85e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23354.png b/front/public/images/large/gregtech/gt.metaitem.01/23354.png deleted file mode 100644 index 3cace63174..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23355.png b/front/public/images/large/gregtech/gt.metaitem.01/23355.png deleted file mode 100644 index 8b432df391..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23356.png b/front/public/images/large/gregtech/gt.metaitem.01/23356.png deleted file mode 100644 index aa1d4f7256..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23357.png b/front/public/images/large/gregtech/gt.metaitem.01/23357.png deleted file mode 100644 index 73f9b88484..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23358.png b/front/public/images/large/gregtech/gt.metaitem.01/23358.png deleted file mode 100644 index b1556e7d57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23359.png b/front/public/images/large/gregtech/gt.metaitem.01/23359.png deleted file mode 100644 index 1a61c4a293..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2336.png b/front/public/images/large/gregtech/gt.metaitem.01/2336.png deleted file mode 100644 index acebc5abe6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23360.png b/front/public/images/large/gregtech/gt.metaitem.01/23360.png deleted file mode 100644 index c160820849..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23361.png b/front/public/images/large/gregtech/gt.metaitem.01/23361.png deleted file mode 100644 index 0147730056..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23362.png b/front/public/images/large/gregtech/gt.metaitem.01/23362.png deleted file mode 100644 index 7bd1ad5164..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23363.png b/front/public/images/large/gregtech/gt.metaitem.01/23363.png deleted file mode 100644 index 6cf88250c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23364.png b/front/public/images/large/gregtech/gt.metaitem.01/23364.png deleted file mode 100644 index 778c6d26d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23365.png b/front/public/images/large/gregtech/gt.metaitem.01/23365.png deleted file mode 100644 index 8a8751fd32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23366.png b/front/public/images/large/gregtech/gt.metaitem.01/23366.png deleted file mode 100644 index a7903b6fd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23367.png b/front/public/images/large/gregtech/gt.metaitem.01/23367.png deleted file mode 100644 index f4dcfafe6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23368.png b/front/public/images/large/gregtech/gt.metaitem.01/23368.png deleted file mode 100644 index 99c3bbc659..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23369.png b/front/public/images/large/gregtech/gt.metaitem.01/23369.png deleted file mode 100644 index 76e285f4c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2337.png b/front/public/images/large/gregtech/gt.metaitem.01/2337.png deleted file mode 100644 index ffbb325247..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23370.png b/front/public/images/large/gregtech/gt.metaitem.01/23370.png deleted file mode 100644 index 6d4d55f828..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23371.png b/front/public/images/large/gregtech/gt.metaitem.01/23371.png deleted file mode 100644 index b17a74676c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23372.png b/front/public/images/large/gregtech/gt.metaitem.01/23372.png deleted file mode 100644 index 0ca273761f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23373.png b/front/public/images/large/gregtech/gt.metaitem.01/23373.png deleted file mode 100644 index 804b62311b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23374.png b/front/public/images/large/gregtech/gt.metaitem.01/23374.png deleted file mode 100644 index dc4dee5b97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23378.png b/front/public/images/large/gregtech/gt.metaitem.01/23378.png deleted file mode 100644 index 5639b06579..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23379.png b/front/public/images/large/gregtech/gt.metaitem.01/23379.png deleted file mode 100644 index 667b2d4e2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2338.png b/front/public/images/large/gregtech/gt.metaitem.01/2338.png deleted file mode 100644 index e64fb5c31a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23380.png b/front/public/images/large/gregtech/gt.metaitem.01/23380.png deleted file mode 100644 index 125ef62d94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23381.png b/front/public/images/large/gregtech/gt.metaitem.01/23381.png deleted file mode 100644 index b6853d266d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23382.png b/front/public/images/large/gregtech/gt.metaitem.01/23382.png deleted file mode 100644 index 8f4e642dc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23383.png b/front/public/images/large/gregtech/gt.metaitem.01/23383.png deleted file mode 100644 index b78a78d13a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23384.png b/front/public/images/large/gregtech/gt.metaitem.01/23384.png deleted file mode 100644 index 43a9a02e26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23385.png b/front/public/images/large/gregtech/gt.metaitem.01/23385.png deleted file mode 100644 index 5de8367a65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23386.png b/front/public/images/large/gregtech/gt.metaitem.01/23386.png deleted file mode 100644 index b36c751a7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23387.png b/front/public/images/large/gregtech/gt.metaitem.01/23387.png deleted file mode 100644 index 60c074015b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23388.png b/front/public/images/large/gregtech/gt.metaitem.01/23388.png deleted file mode 100644 index e8af39523b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23389.png b/front/public/images/large/gregtech/gt.metaitem.01/23389.png deleted file mode 100644 index 2e97719380..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2339.png b/front/public/images/large/gregtech/gt.metaitem.01/2339.png deleted file mode 100644 index 4cb55a8850..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23390.png b/front/public/images/large/gregtech/gt.metaitem.01/23390.png deleted file mode 100644 index 8768cab744..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23391.png b/front/public/images/large/gregtech/gt.metaitem.01/23391.png deleted file mode 100644 index a501bfd6dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23392.png b/front/public/images/large/gregtech/gt.metaitem.01/23392.png deleted file mode 100644 index e160e78385..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23393.png b/front/public/images/large/gregtech/gt.metaitem.01/23393.png deleted file mode 100644 index 3feb6772f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23394.png b/front/public/images/large/gregtech/gt.metaitem.01/23394.png deleted file mode 100644 index 5040d02e62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23395.png b/front/public/images/large/gregtech/gt.metaitem.01/23395.png deleted file mode 100644 index e8af39523b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23397.png b/front/public/images/large/gregtech/gt.metaitem.01/23397.png deleted file mode 100644 index 4bf9bcbd64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23398.png b/front/public/images/large/gregtech/gt.metaitem.01/23398.png deleted file mode 100644 index a9110baafc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23399.png b/front/public/images/large/gregtech/gt.metaitem.01/23399.png deleted file mode 100644 index 6331c0e448..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2340.png b/front/public/images/large/gregtech/gt.metaitem.01/2340.png deleted file mode 100644 index cb48fb9414..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23400.png b/front/public/images/large/gregtech/gt.metaitem.01/23400.png deleted file mode 100644 index 475d88f9c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23401.png b/front/public/images/large/gregtech/gt.metaitem.01/23401.png deleted file mode 100644 index 751549a796..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23402.png b/front/public/images/large/gregtech/gt.metaitem.01/23402.png deleted file mode 100644 index 8dfb882f0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23403.png b/front/public/images/large/gregtech/gt.metaitem.01/23403.png deleted file mode 100644 index 8c90a026ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23404.png b/front/public/images/large/gregtech/gt.metaitem.01/23404.png deleted file mode 100644 index d93e3990f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23405.png b/front/public/images/large/gregtech/gt.metaitem.01/23405.png deleted file mode 100644 index 979d99a8ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23406.png b/front/public/images/large/gregtech/gt.metaitem.01/23406.png deleted file mode 100644 index c78de4f59a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23407.png b/front/public/images/large/gregtech/gt.metaitem.01/23407.png deleted file mode 100644 index 00d563b422..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23408.png b/front/public/images/large/gregtech/gt.metaitem.01/23408.png deleted file mode 100644 index 80b977051a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2341.png b/front/public/images/large/gregtech/gt.metaitem.01/2341.png deleted file mode 100644 index dd45b8a144..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2342.png b/front/public/images/large/gregtech/gt.metaitem.01/2342.png deleted file mode 100644 index 1992a4e642..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2343.png b/front/public/images/large/gregtech/gt.metaitem.01/2343.png deleted file mode 100644 index db43eb243f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2344.png b/front/public/images/large/gregtech/gt.metaitem.01/2344.png deleted file mode 100644 index bc8a0303c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2345.png b/front/public/images/large/gregtech/gt.metaitem.01/2345.png deleted file mode 100644 index cdff25c01c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2346.png b/front/public/images/large/gregtech/gt.metaitem.01/2346.png deleted file mode 100644 index 0c12282a35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2347.png b/front/public/images/large/gregtech/gt.metaitem.01/2347.png deleted file mode 100644 index 3bc9457d9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23470.png b/front/public/images/large/gregtech/gt.metaitem.01/23470.png deleted file mode 100644 index 825663d5cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23471.png b/front/public/images/large/gregtech/gt.metaitem.01/23471.png deleted file mode 100644 index 712d4a8721..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23472.png b/front/public/images/large/gregtech/gt.metaitem.01/23472.png deleted file mode 100644 index e8af39523b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23473.png b/front/public/images/large/gregtech/gt.metaitem.01/23473.png deleted file mode 100644 index 81ec84deef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2348.png b/front/public/images/large/gregtech/gt.metaitem.01/2348.png deleted file mode 100644 index a2e1194016..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23485.png b/front/public/images/large/gregtech/gt.metaitem.01/23485.png deleted file mode 100644 index e43181a531..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23488.png b/front/public/images/large/gregtech/gt.metaitem.01/23488.png deleted file mode 100644 index 693c74642d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23489.png b/front/public/images/large/gregtech/gt.metaitem.01/23489.png deleted file mode 100644 index c45ba4541b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2349.png b/front/public/images/large/gregtech/gt.metaitem.01/2349.png deleted file mode 100644 index 3b6bb9f569..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2350.png b/front/public/images/large/gregtech/gt.metaitem.01/2350.png deleted file mode 100644 index 9373e8cbd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23500.png b/front/public/images/large/gregtech/gt.metaitem.01/23500.png deleted file mode 100644 index e201f0efc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23501.png b/front/public/images/large/gregtech/gt.metaitem.01/23501.png deleted file mode 100644 index ce6265936b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23502.png b/front/public/images/large/gregtech/gt.metaitem.01/23502.png deleted file mode 100644 index 963c2006c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23503.png b/front/public/images/large/gregtech/gt.metaitem.01/23503.png deleted file mode 100644 index 9099f42cb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23504.png b/front/public/images/large/gregtech/gt.metaitem.01/23504.png deleted file mode 100644 index 407823a6be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23505.png b/front/public/images/large/gregtech/gt.metaitem.01/23505.png deleted file mode 100644 index 6d81bb0eec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23506.png b/front/public/images/large/gregtech/gt.metaitem.01/23506.png deleted file mode 100644 index d7132457bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23507.png b/front/public/images/large/gregtech/gt.metaitem.01/23507.png deleted file mode 100644 index 301a0042f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23508.png b/front/public/images/large/gregtech/gt.metaitem.01/23508.png deleted file mode 100644 index c3a321fc37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23509.png b/front/public/images/large/gregtech/gt.metaitem.01/23509.png deleted file mode 100644 index 13aea50861..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2351.png b/front/public/images/large/gregtech/gt.metaitem.01/2351.png deleted file mode 100644 index dcc6ab7dd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23510.png b/front/public/images/large/gregtech/gt.metaitem.01/23510.png deleted file mode 100644 index 9033353a6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23511.png b/front/public/images/large/gregtech/gt.metaitem.01/23511.png deleted file mode 100644 index 1f547f09e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23512.png b/front/public/images/large/gregtech/gt.metaitem.01/23512.png deleted file mode 100644 index 963c2006c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23513.png b/front/public/images/large/gregtech/gt.metaitem.01/23513.png deleted file mode 100644 index 9033353a6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23514.png b/front/public/images/large/gregtech/gt.metaitem.01/23514.png deleted file mode 100644 index 301a0042f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23515.png b/front/public/images/large/gregtech/gt.metaitem.01/23515.png deleted file mode 100644 index 8bfe85fa8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23516.png b/front/public/images/large/gregtech/gt.metaitem.01/23516.png deleted file mode 100644 index 1f136535ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23518.png b/front/public/images/large/gregtech/gt.metaitem.01/23518.png deleted file mode 100644 index 96f279de4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23519.png b/front/public/images/large/gregtech/gt.metaitem.01/23519.png deleted file mode 100644 index 96f279de4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2352.png b/front/public/images/large/gregtech/gt.metaitem.01/2352.png deleted file mode 100644 index 1c1c7f34c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23520.png b/front/public/images/large/gregtech/gt.metaitem.01/23520.png deleted file mode 100644 index babcc3fb76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23521.png b/front/public/images/large/gregtech/gt.metaitem.01/23521.png deleted file mode 100644 index 3a8739b2d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23522.png b/front/public/images/large/gregtech/gt.metaitem.01/23522.png deleted file mode 100644 index dcf5f41f73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23523.png b/front/public/images/large/gregtech/gt.metaitem.01/23523.png deleted file mode 100644 index 5fc4a7c190..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23524.png b/front/public/images/large/gregtech/gt.metaitem.01/23524.png deleted file mode 100644 index bf5b4d5f33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23525.png b/front/public/images/large/gregtech/gt.metaitem.01/23525.png deleted file mode 100644 index 500aa96ef0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23526.png b/front/public/images/large/gregtech/gt.metaitem.01/23526.png deleted file mode 100644 index 1d5d209567..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23527.png b/front/public/images/large/gregtech/gt.metaitem.01/23527.png deleted file mode 100644 index 1f547f09e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23528.png b/front/public/images/large/gregtech/gt.metaitem.01/23528.png deleted file mode 100644 index 01bfbd5725..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23529.png b/front/public/images/large/gregtech/gt.metaitem.01/23529.png deleted file mode 100644 index c5194e37da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2353.png b/front/public/images/large/gregtech/gt.metaitem.01/2353.png deleted file mode 100644 index d10d8d59ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23530.png b/front/public/images/large/gregtech/gt.metaitem.01/23530.png deleted file mode 100644 index c275acc4b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23531.png b/front/public/images/large/gregtech/gt.metaitem.01/23531.png deleted file mode 100644 index 4fc94f632b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23532.png b/front/public/images/large/gregtech/gt.metaitem.01/23532.png deleted file mode 100644 index f089c632a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23533.png b/front/public/images/large/gregtech/gt.metaitem.01/23533.png deleted file mode 100644 index 4e9bc0233a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23534.png b/front/public/images/large/gregtech/gt.metaitem.01/23534.png deleted file mode 100644 index e150a85f48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23535.png b/front/public/images/large/gregtech/gt.metaitem.01/23535.png deleted file mode 100644 index c13eb6c546..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23536.png b/front/public/images/large/gregtech/gt.metaitem.01/23536.png deleted file mode 100644 index 6ef84a7a9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23537.png b/front/public/images/large/gregtech/gt.metaitem.01/23537.png deleted file mode 100644 index a4adb54b9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23538.png b/front/public/images/large/gregtech/gt.metaitem.01/23538.png deleted file mode 100644 index b8b53d4285..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2354.png b/front/public/images/large/gregtech/gt.metaitem.01/2354.png deleted file mode 100644 index 218c3b4a36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23540.png b/front/public/images/large/gregtech/gt.metaitem.01/23540.png deleted file mode 100644 index 3a8739b2d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23541.png b/front/public/images/large/gregtech/gt.metaitem.01/23541.png deleted file mode 100644 index 8aeb198be2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23542.png b/front/public/images/large/gregtech/gt.metaitem.01/23542.png deleted file mode 100644 index 03f06daa37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23543.png b/front/public/images/large/gregtech/gt.metaitem.01/23543.png deleted file mode 100644 index 3375833114..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23544.png b/front/public/images/large/gregtech/gt.metaitem.01/23544.png deleted file mode 100644 index 1d9d9c7cb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23545.png b/front/public/images/large/gregtech/gt.metaitem.01/23545.png deleted file mode 100644 index acdf494912..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2355.png b/front/public/images/large/gregtech/gt.metaitem.01/2355.png deleted file mode 100644 index b1a431d217..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2356.png b/front/public/images/large/gregtech/gt.metaitem.01/2356.png deleted file mode 100644 index 83c4c7c35c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2357.png b/front/public/images/large/gregtech/gt.metaitem.01/2357.png deleted file mode 100644 index de9ccc4cff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23576.png b/front/public/images/large/gregtech/gt.metaitem.01/23576.png deleted file mode 100644 index cb99fd6168..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2358.png b/front/public/images/large/gregtech/gt.metaitem.01/2358.png deleted file mode 100644 index b8c7f48cec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23581.png b/front/public/images/large/gregtech/gt.metaitem.01/23581.png deleted file mode 100644 index c32a58f310..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23582.png b/front/public/images/large/gregtech/gt.metaitem.01/23582.png deleted file mode 100644 index af7fe11224..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23583.png b/front/public/images/large/gregtech/gt.metaitem.01/23583.png deleted file mode 100644 index 8b9b69447f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23585.png b/front/public/images/large/gregtech/gt.metaitem.01/23585.png deleted file mode 100644 index 43925bca86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23586.png b/front/public/images/large/gregtech/gt.metaitem.01/23586.png deleted file mode 100644 index 56a132f0d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23588.png b/front/public/images/large/gregtech/gt.metaitem.01/23588.png deleted file mode 100644 index 390c7b829d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2359.png b/front/public/images/large/gregtech/gt.metaitem.01/2359.png deleted file mode 100644 index cf1384bec0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23599.png b/front/public/images/large/gregtech/gt.metaitem.01/23599.png deleted file mode 100644 index 4ad012649e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2360.png b/front/public/images/large/gregtech/gt.metaitem.01/2360.png deleted file mode 100644 index 39e6cee7c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2361.png b/front/public/images/large/gregtech/gt.metaitem.01/2361.png deleted file mode 100644 index 77c5a2463d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23610.png b/front/public/images/large/gregtech/gt.metaitem.01/23610.png deleted file mode 100644 index 6069ceeab8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23611.png b/front/public/images/large/gregtech/gt.metaitem.01/23611.png deleted file mode 100644 index d3cf0bd495..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23613.png b/front/public/images/large/gregtech/gt.metaitem.01/23613.png deleted file mode 100644 index 3f6e571e42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2362.png b/front/public/images/large/gregtech/gt.metaitem.01/2362.png deleted file mode 100644 index 54131fe2d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2363.png b/front/public/images/large/gregtech/gt.metaitem.01/2363.png deleted file mode 100644 index 57bea47417..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23631.png b/front/public/images/large/gregtech/gt.metaitem.01/23631.png deleted file mode 100644 index 564704800a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23635.png b/front/public/images/large/gregtech/gt.metaitem.01/23635.png deleted file mode 100644 index 68ef680cb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23636.png b/front/public/images/large/gregtech/gt.metaitem.01/23636.png deleted file mode 100644 index a786d378d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2364.png b/front/public/images/large/gregtech/gt.metaitem.01/2364.png deleted file mode 100644 index 31d9d37c53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23649.png b/front/public/images/large/gregtech/gt.metaitem.01/23649.png deleted file mode 100644 index 1c6045e154..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2365.png b/front/public/images/large/gregtech/gt.metaitem.01/2365.png deleted file mode 100644 index 66479e007b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2366.png b/front/public/images/large/gregtech/gt.metaitem.01/2366.png deleted file mode 100644 index 4960a5d906..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2367.png b/front/public/images/large/gregtech/gt.metaitem.01/2367.png deleted file mode 100644 index 693db9e92d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2368.png b/front/public/images/large/gregtech/gt.metaitem.01/2368.png deleted file mode 100644 index 99f37a330d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2369.png b/front/public/images/large/gregtech/gt.metaitem.01/2369.png deleted file mode 100644 index 18787b88f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2370.png b/front/public/images/large/gregtech/gt.metaitem.01/2370.png deleted file mode 100644 index 0feabd6069..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2371.png b/front/public/images/large/gregtech/gt.metaitem.01/2371.png deleted file mode 100644 index c19719b47a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2372.png b/front/public/images/large/gregtech/gt.metaitem.01/2372.png deleted file mode 100644 index 2d216e10b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2373.png b/front/public/images/large/gregtech/gt.metaitem.01/2373.png deleted file mode 100644 index ddc306c4dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2374.png b/front/public/images/large/gregtech/gt.metaitem.01/2374.png deleted file mode 100644 index ac58898458..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2375.png b/front/public/images/large/gregtech/gt.metaitem.01/2375.png deleted file mode 100644 index 86fb3fd7ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23765.png b/front/public/images/large/gregtech/gt.metaitem.01/23765.png deleted file mode 100644 index 8b5b05fd3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2377.png b/front/public/images/large/gregtech/gt.metaitem.01/2377.png deleted file mode 100644 index f21f9b8a3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2377.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23770.png b/front/public/images/large/gregtech/gt.metaitem.01/23770.png deleted file mode 100644 index 43877064ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23772.png b/front/public/images/large/gregtech/gt.metaitem.01/23772.png deleted file mode 100644 index c3adae2e9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2378.png b/front/public/images/large/gregtech/gt.metaitem.01/2378.png deleted file mode 100644 index 9387af296f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2379.png b/front/public/images/large/gregtech/gt.metaitem.01/2379.png deleted file mode 100644 index e1301e66ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2380.png b/front/public/images/large/gregtech/gt.metaitem.01/2380.png deleted file mode 100644 index c007067996..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23804.png b/front/public/images/large/gregtech/gt.metaitem.01/23804.png deleted file mode 100644 index a5568dfc23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2381.png b/front/public/images/large/gregtech/gt.metaitem.01/2381.png deleted file mode 100644 index d7252e03ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2382.png b/front/public/images/large/gregtech/gt.metaitem.01/2382.png deleted file mode 100644 index 0493341e0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23829.png b/front/public/images/large/gregtech/gt.metaitem.01/23829.png deleted file mode 100644 index 205ad2fd6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2383.png b/front/public/images/large/gregtech/gt.metaitem.01/2383.png deleted file mode 100644 index 8635babd43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2384.png b/front/public/images/large/gregtech/gt.metaitem.01/2384.png deleted file mode 100644 index 4e66dcb069..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2385.png b/front/public/images/large/gregtech/gt.metaitem.01/2385.png deleted file mode 100644 index 5871bae50d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23856.png b/front/public/images/large/gregtech/gt.metaitem.01/23856.png deleted file mode 100644 index 5f78e48a78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2386.png b/front/public/images/large/gregtech/gt.metaitem.01/2386.png deleted file mode 100644 index b070f558f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23868.png b/front/public/images/large/gregtech/gt.metaitem.01/23868.png deleted file mode 100644 index d11c30d335..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2387.png b/front/public/images/large/gregtech/gt.metaitem.01/2387.png deleted file mode 100644 index 00679a83ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23874.png b/front/public/images/large/gregtech/gt.metaitem.01/23874.png deleted file mode 100644 index cde61c61a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2388.png b/front/public/images/large/gregtech/gt.metaitem.01/2388.png deleted file mode 100644 index 3a612f5152..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23880.png b/front/public/images/large/gregtech/gt.metaitem.01/23880.png deleted file mode 100644 index 9c2180af03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23884.png b/front/public/images/large/gregtech/gt.metaitem.01/23884.png deleted file mode 100644 index 62b813bf39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23889.png b/front/public/images/large/gregtech/gt.metaitem.01/23889.png deleted file mode 100644 index cbf8a86925..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2389.png b/front/public/images/large/gregtech/gt.metaitem.01/2389.png deleted file mode 100644 index 840f001911..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23890.png b/front/public/images/large/gregtech/gt.metaitem.01/23890.png deleted file mode 100644 index d7132457bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2390.png b/front/public/images/large/gregtech/gt.metaitem.01/2390.png deleted file mode 100644 index 1389ef3dfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2391.png b/front/public/images/large/gregtech/gt.metaitem.01/2391.png deleted file mode 100644 index ee77eab631..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23912.png b/front/public/images/large/gregtech/gt.metaitem.01/23912.png deleted file mode 100644 index 426008012e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23913.png b/front/public/images/large/gregtech/gt.metaitem.01/23913.png deleted file mode 100644 index 7a6e29c134..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2392.png b/front/public/images/large/gregtech/gt.metaitem.01/2392.png deleted file mode 100644 index 972b6515b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2393.png b/front/public/images/large/gregtech/gt.metaitem.01/2393.png deleted file mode 100644 index 2def5e23d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2394.png b/front/public/images/large/gregtech/gt.metaitem.01/2394.png deleted file mode 100644 index e6ea5f1f0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2395.png b/front/public/images/large/gregtech/gt.metaitem.01/2395.png deleted file mode 100644 index 3a612f5152..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23951.png b/front/public/images/large/gregtech/gt.metaitem.01/23951.png deleted file mode 100644 index a0b1b6fce2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23952.png b/front/public/images/large/gregtech/gt.metaitem.01/23952.png deleted file mode 100644 index 51d3308ae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23956.png b/front/public/images/large/gregtech/gt.metaitem.01/23956.png deleted file mode 100644 index ac716bc35a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2396.png b/front/public/images/large/gregtech/gt.metaitem.01/2396.png deleted file mode 100644 index c4dea36544..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2396.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23966.png b/front/public/images/large/gregtech/gt.metaitem.01/23966.png deleted file mode 100644 index 332deed030..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2397.png b/front/public/images/large/gregtech/gt.metaitem.01/2397.png deleted file mode 100644 index 50340cf646..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23970.png b/front/public/images/large/gregtech/gt.metaitem.01/23970.png deleted file mode 100644 index 769a833331..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23974.png b/front/public/images/large/gregtech/gt.metaitem.01/23974.png deleted file mode 100644 index 291b08aff5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23975.png b/front/public/images/large/gregtech/gt.metaitem.01/23975.png deleted file mode 100644 index ae418b8eb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23976.png b/front/public/images/large/gregtech/gt.metaitem.01/23976.png deleted file mode 100644 index 45172ffed2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23977.png b/front/public/images/large/gregtech/gt.metaitem.01/23977.png deleted file mode 100644 index a13beb677d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23978.png b/front/public/images/large/gregtech/gt.metaitem.01/23978.png deleted file mode 100644 index fab4b5f5c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23979.png b/front/public/images/large/gregtech/gt.metaitem.01/23979.png deleted file mode 100644 index ba9b01acb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2398.png b/front/public/images/large/gregtech/gt.metaitem.01/2398.png deleted file mode 100644 index 34688ef56e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23980.png b/front/public/images/large/gregtech/gt.metaitem.01/23980.png deleted file mode 100644 index 849d735610..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23981.png b/front/public/images/large/gregtech/gt.metaitem.01/23981.png deleted file mode 100644 index ceee963b41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23982.png b/front/public/images/large/gregtech/gt.metaitem.01/23982.png deleted file mode 100644 index 64eab11c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23984.png b/front/public/images/large/gregtech/gt.metaitem.01/23984.png deleted file mode 100644 index 5040d02e62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23985.png b/front/public/images/large/gregtech/gt.metaitem.01/23985.png deleted file mode 100644 index 69785203ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23986.png b/front/public/images/large/gregtech/gt.metaitem.01/23986.png deleted file mode 100644 index 56d12bf045..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23987.png b/front/public/images/large/gregtech/gt.metaitem.01/23987.png deleted file mode 100644 index 896d72afee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23988.png b/front/public/images/large/gregtech/gt.metaitem.01/23988.png deleted file mode 100644 index 8b878e264e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23989.png b/front/public/images/large/gregtech/gt.metaitem.01/23989.png deleted file mode 100644 index baaf5c3b4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2399.png b/front/public/images/large/gregtech/gt.metaitem.01/2399.png deleted file mode 100644 index ff520a1071..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23990.png b/front/public/images/large/gregtech/gt.metaitem.01/23990.png deleted file mode 100644 index 23627554a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23991.png b/front/public/images/large/gregtech/gt.metaitem.01/23991.png deleted file mode 100644 index 89b9f2ad5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/23992.png b/front/public/images/large/gregtech/gt.metaitem.01/23992.png deleted file mode 100644 index 0ecf82eef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/23992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2400.png b/front/public/images/large/gregtech/gt.metaitem.01/2400.png deleted file mode 100644 index dae1aafae6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2401.png b/front/public/images/large/gregtech/gt.metaitem.01/2401.png deleted file mode 100644 index fa83b5fef5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2402.png b/front/public/images/large/gregtech/gt.metaitem.01/2402.png deleted file mode 100644 index f82e42a3f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2403.png b/front/public/images/large/gregtech/gt.metaitem.01/2403.png deleted file mode 100644 index 6b415e6c32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2404.png b/front/public/images/large/gregtech/gt.metaitem.01/2404.png deleted file mode 100644 index 6cccfece09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2405.png b/front/public/images/large/gregtech/gt.metaitem.01/2405.png deleted file mode 100644 index 6676e13bdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2406.png b/front/public/images/large/gregtech/gt.metaitem.01/2406.png deleted file mode 100644 index f0306e9ac3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2407.png b/front/public/images/large/gregtech/gt.metaitem.01/2407.png deleted file mode 100644 index 6d98abb312..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2408.png b/front/public/images/large/gregtech/gt.metaitem.01/2408.png deleted file mode 100644 index dd56e74eae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2412.png b/front/public/images/large/gregtech/gt.metaitem.01/2412.png deleted file mode 100644 index 326c407467..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2412.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2413.png b/front/public/images/large/gregtech/gt.metaitem.01/2413.png deleted file mode 100644 index 660bcad873..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2413.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2414.png b/front/public/images/large/gregtech/gt.metaitem.01/2414.png deleted file mode 100644 index 77abe2921d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2414.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24208.png b/front/public/images/large/gregtech/gt.metaitem.01/24208.png deleted file mode 100644 index 622059b2f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24209.png b/front/public/images/large/gregtech/gt.metaitem.01/24209.png deleted file mode 100644 index 625053aa1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24347.png b/front/public/images/large/gregtech/gt.metaitem.01/24347.png deleted file mode 100644 index 1f296f3948..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24500.png b/front/public/images/large/gregtech/gt.metaitem.01/24500.png deleted file mode 100644 index 44e4549b7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24501.png b/front/public/images/large/gregtech/gt.metaitem.01/24501.png deleted file mode 100644 index 11bc09f944..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24502.png b/front/public/images/large/gregtech/gt.metaitem.01/24502.png deleted file mode 100644 index e8ad49053b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24503.png b/front/public/images/large/gregtech/gt.metaitem.01/24503.png deleted file mode 100644 index e5cb73c4b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24504.png b/front/public/images/large/gregtech/gt.metaitem.01/24504.png deleted file mode 100644 index 8fcf174e7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24505.png b/front/public/images/large/gregtech/gt.metaitem.01/24505.png deleted file mode 100644 index dcfbbc7f71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24506.png b/front/public/images/large/gregtech/gt.metaitem.01/24506.png deleted file mode 100644 index aaec2ba4ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24507.png b/front/public/images/large/gregtech/gt.metaitem.01/24507.png deleted file mode 100644 index 914948db23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24508.png b/front/public/images/large/gregtech/gt.metaitem.01/24508.png deleted file mode 100644 index d1927549e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24509.png b/front/public/images/large/gregtech/gt.metaitem.01/24509.png deleted file mode 100644 index 480f0d5411..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24510.png b/front/public/images/large/gregtech/gt.metaitem.01/24510.png deleted file mode 100644 index 923d625779..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24511.png b/front/public/images/large/gregtech/gt.metaitem.01/24511.png deleted file mode 100644 index 169d73ce2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24512.png b/front/public/images/large/gregtech/gt.metaitem.01/24512.png deleted file mode 100644 index e8ad49053b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24513.png b/front/public/images/large/gregtech/gt.metaitem.01/24513.png deleted file mode 100644 index 923d625779..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24514.png b/front/public/images/large/gregtech/gt.metaitem.01/24514.png deleted file mode 100644 index 914948db23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24515.png b/front/public/images/large/gregtech/gt.metaitem.01/24515.png deleted file mode 100644 index e41e36743f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24518.png b/front/public/images/large/gregtech/gt.metaitem.01/24518.png deleted file mode 100644 index b370428c36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24519.png b/front/public/images/large/gregtech/gt.metaitem.01/24519.png deleted file mode 100644 index b370428c36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24521.png b/front/public/images/large/gregtech/gt.metaitem.01/24521.png deleted file mode 100644 index c43b02053e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24527.png b/front/public/images/large/gregtech/gt.metaitem.01/24527.png deleted file mode 100644 index 169d73ce2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24528.png b/front/public/images/large/gregtech/gt.metaitem.01/24528.png deleted file mode 100644 index d1bd4a2c25..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24532.png b/front/public/images/large/gregtech/gt.metaitem.01/24532.png deleted file mode 100644 index 52dc72405d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24533.png b/front/public/images/large/gregtech/gt.metaitem.01/24533.png deleted file mode 100644 index 17eacc933d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24540.png b/front/public/images/large/gregtech/gt.metaitem.01/24540.png deleted file mode 100644 index c43b02053e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24541.png b/front/public/images/large/gregtech/gt.metaitem.01/24541.png deleted file mode 100644 index 4d03254e53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24542.png b/front/public/images/large/gregtech/gt.metaitem.01/24542.png deleted file mode 100644 index 8723428c5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24543.png b/front/public/images/large/gregtech/gt.metaitem.01/24543.png deleted file mode 100644 index 29758ec5ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24544.png b/front/public/images/large/gregtech/gt.metaitem.01/24544.png deleted file mode 100644 index 32f5aa6fc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24545.png b/front/public/images/large/gregtech/gt.metaitem.01/24545.png deleted file mode 100644 index 575d6d0ff8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2470.png b/front/public/images/large/gregtech/gt.metaitem.01/2470.png deleted file mode 100644 index 99da34d8e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2471.png b/front/public/images/large/gregtech/gt.metaitem.01/2471.png deleted file mode 100644 index 88f980e5ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2472.png b/front/public/images/large/gregtech/gt.metaitem.01/2472.png deleted file mode 100644 index 3a612f5152..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2473.png b/front/public/images/large/gregtech/gt.metaitem.01/2473.png deleted file mode 100644 index f332f17e17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2485.png b/front/public/images/large/gregtech/gt.metaitem.01/2485.png deleted file mode 100644 index f64c127626..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2488.png b/front/public/images/large/gregtech/gt.metaitem.01/2488.png deleted file mode 100644 index 5a1dbb111f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2489.png b/front/public/images/large/gregtech/gt.metaitem.01/2489.png deleted file mode 100644 index abd7ef2fbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/24890.png b/front/public/images/large/gregtech/gt.metaitem.01/24890.png deleted file mode 100644 index aaec2ba4ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/24890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2500.png b/front/public/images/large/gregtech/gt.metaitem.01/2500.png deleted file mode 100644 index 14eecd3367..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25006.png b/front/public/images/large/gregtech/gt.metaitem.01/25006.png deleted file mode 100644 index a5efc95294..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25008.png b/front/public/images/large/gregtech/gt.metaitem.01/25008.png deleted file mode 100644 index 76ab74a58a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2501.png b/front/public/images/large/gregtech/gt.metaitem.01/2501.png deleted file mode 100644 index 61059cdcf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25010.png b/front/public/images/large/gregtech/gt.metaitem.01/25010.png deleted file mode 100644 index da9ac7581c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25018.png b/front/public/images/large/gregtech/gt.metaitem.01/25018.png deleted file mode 100644 index 0aadaa073a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25019.png b/front/public/images/large/gregtech/gt.metaitem.01/25019.png deleted file mode 100644 index b60980fa56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2502.png b/front/public/images/large/gregtech/gt.metaitem.01/2502.png deleted file mode 100644 index 0ec88e45b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25020.png b/front/public/images/large/gregtech/gt.metaitem.01/25020.png deleted file mode 100644 index a12e0a49af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25025.png b/front/public/images/large/gregtech/gt.metaitem.01/25025.png deleted file mode 100644 index 88d5920364..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25027.png b/front/public/images/large/gregtech/gt.metaitem.01/25027.png deleted file mode 100644 index b1de711a6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25028.png b/front/public/images/large/gregtech/gt.metaitem.01/25028.png deleted file mode 100644 index ad9fcc3a9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25029.png b/front/public/images/large/gregtech/gt.metaitem.01/25029.png deleted file mode 100644 index f84f703cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2503.png b/front/public/images/large/gregtech/gt.metaitem.01/2503.png deleted file mode 100644 index 1bbb2f086d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25030.png b/front/public/images/large/gregtech/gt.metaitem.01/25030.png deleted file mode 100644 index 4daf9fa5f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25031.png b/front/public/images/large/gregtech/gt.metaitem.01/25031.png deleted file mode 100644 index 3ad2a243ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25032.png b/front/public/images/large/gregtech/gt.metaitem.01/25032.png deleted file mode 100644 index aeaf62ce9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25033.png b/front/public/images/large/gregtech/gt.metaitem.01/25033.png deleted file mode 100644 index 01bf2698df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25034.png b/front/public/images/large/gregtech/gt.metaitem.01/25034.png deleted file mode 100644 index 1d75019a00..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25035.png b/front/public/images/large/gregtech/gt.metaitem.01/25035.png deleted file mode 100644 index 7a855cf4c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25036.png b/front/public/images/large/gregtech/gt.metaitem.01/25036.png deleted file mode 100644 index 7c65148047..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25037.png b/front/public/images/large/gregtech/gt.metaitem.01/25037.png deleted file mode 100644 index 835db605fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25039.png b/front/public/images/large/gregtech/gt.metaitem.01/25039.png deleted file mode 100644 index 8dfa195c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2504.png b/front/public/images/large/gregtech/gt.metaitem.01/2504.png deleted file mode 100644 index ccca4a3aac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25043.png b/front/public/images/large/gregtech/gt.metaitem.01/25043.png deleted file mode 100644 index 26a7a2bf7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25045.png b/front/public/images/large/gregtech/gt.metaitem.01/25045.png deleted file mode 100644 index 727bc7c6b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25047.png b/front/public/images/large/gregtech/gt.metaitem.01/25047.png deleted file mode 100644 index e8358e452d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25048.png b/front/public/images/large/gregtech/gt.metaitem.01/25048.png deleted file mode 100644 index 33b8741f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2505.png b/front/public/images/large/gregtech/gt.metaitem.01/2505.png deleted file mode 100644 index b1140cafb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25052.png b/front/public/images/large/gregtech/gt.metaitem.01/25052.png deleted file mode 100644 index af34bfdedb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25054.png b/front/public/images/large/gregtech/gt.metaitem.01/25054.png deleted file mode 100644 index 835db605fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25056.png b/front/public/images/large/gregtech/gt.metaitem.01/25056.png deleted file mode 100644 index d2dcfce47b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25057.png b/front/public/images/large/gregtech/gt.metaitem.01/25057.png deleted file mode 100644 index ba8ebe5ae1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25058.png b/front/public/images/large/gregtech/gt.metaitem.01/25058.png deleted file mode 100644 index 368beee882..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25059.png b/front/public/images/large/gregtech/gt.metaitem.01/25059.png deleted file mode 100644 index afcb0f270c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2506.png b/front/public/images/large/gregtech/gt.metaitem.01/2506.png deleted file mode 100644 index 345afe4c62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25062.png b/front/public/images/large/gregtech/gt.metaitem.01/25062.png deleted file mode 100644 index 51a4bfee77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25063.png b/front/public/images/large/gregtech/gt.metaitem.01/25063.png deleted file mode 100644 index 8dfa195c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25064.png b/front/public/images/large/gregtech/gt.metaitem.01/25064.png deleted file mode 100644 index 5a0076b965..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25065.png b/front/public/images/large/gregtech/gt.metaitem.01/25065.png deleted file mode 100644 index 330ac4a050..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25066.png b/front/public/images/large/gregtech/gt.metaitem.01/25066.png deleted file mode 100644 index cf926069d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25067.png b/front/public/images/large/gregtech/gt.metaitem.01/25067.png deleted file mode 100644 index 2fc176adb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25068.png b/front/public/images/large/gregtech/gt.metaitem.01/25068.png deleted file mode 100644 index c3fb301f8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25069.png b/front/public/images/large/gregtech/gt.metaitem.01/25069.png deleted file mode 100644 index cd0d0d7247..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2507.png b/front/public/images/large/gregtech/gt.metaitem.01/2507.png deleted file mode 100644 index e55ed1ace5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25070.png b/front/public/images/large/gregtech/gt.metaitem.01/25070.png deleted file mode 100644 index 8c4922d272..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25071.png b/front/public/images/large/gregtech/gt.metaitem.01/25071.png deleted file mode 100644 index b87a110286..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25072.png b/front/public/images/large/gregtech/gt.metaitem.01/25072.png deleted file mode 100644 index 8dfa195c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25073.png b/front/public/images/large/gregtech/gt.metaitem.01/25073.png deleted file mode 100644 index b5c84015f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25074.png b/front/public/images/large/gregtech/gt.metaitem.01/25074.png deleted file mode 100644 index 41996957a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25075.png b/front/public/images/large/gregtech/gt.metaitem.01/25075.png deleted file mode 100644 index b9f631415f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25076.png b/front/public/images/large/gregtech/gt.metaitem.01/25076.png deleted file mode 100644 index 4d32fba03d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25077.png b/front/public/images/large/gregtech/gt.metaitem.01/25077.png deleted file mode 100644 index f9f90689a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25078.png b/front/public/images/large/gregtech/gt.metaitem.01/25078.png deleted file mode 100644 index 1f51bec8b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2508.png b/front/public/images/large/gregtech/gt.metaitem.01/2508.png deleted file mode 100644 index d9f8a251d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25080.png b/front/public/images/large/gregtech/gt.metaitem.01/25080.png deleted file mode 100644 index 00842a781d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25081.png b/front/public/images/large/gregtech/gt.metaitem.01/25081.png deleted file mode 100644 index f84f703cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25083.png b/front/public/images/large/gregtech/gt.metaitem.01/25083.png deleted file mode 100644 index d68b8eb717..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25084.png b/front/public/images/large/gregtech/gt.metaitem.01/25084.png deleted file mode 100644 index 619b8e0b6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25085.png b/front/public/images/large/gregtech/gt.metaitem.01/25085.png deleted file mode 100644 index f87fbb92b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25086.png b/front/public/images/large/gregtech/gt.metaitem.01/25086.png deleted file mode 100644 index 736140601a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25089.png b/front/public/images/large/gregtech/gt.metaitem.01/25089.png deleted file mode 100644 index dc23386172..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2509.png b/front/public/images/large/gregtech/gt.metaitem.01/2509.png deleted file mode 100644 index 9b27331235..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25090.png b/front/public/images/large/gregtech/gt.metaitem.01/25090.png deleted file mode 100644 index ead01b7642..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25096.png b/front/public/images/large/gregtech/gt.metaitem.01/25096.png deleted file mode 100644 index 9683bcd54c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25097.png b/front/public/images/large/gregtech/gt.metaitem.01/25097.png deleted file mode 100644 index 4bac784f0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25098.png b/front/public/images/large/gregtech/gt.metaitem.01/25098.png deleted file mode 100644 index 82a6d76849..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2510.png b/front/public/images/large/gregtech/gt.metaitem.01/2510.png deleted file mode 100644 index 8baca2da37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25100.png b/front/public/images/large/gregtech/gt.metaitem.01/25100.png deleted file mode 100644 index ba4027c543..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25101.png b/front/public/images/large/gregtech/gt.metaitem.01/25101.png deleted file mode 100644 index c77fe4db8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25103.png b/front/public/images/large/gregtech/gt.metaitem.01/25103.png deleted file mode 100644 index aeaf62ce9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2511.png b/front/public/images/large/gregtech/gt.metaitem.01/2511.png deleted file mode 100644 index 8a7a4ae6ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25111.png b/front/public/images/large/gregtech/gt.metaitem.01/25111.png deleted file mode 100644 index 995435e67a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25112.png b/front/public/images/large/gregtech/gt.metaitem.01/25112.png deleted file mode 100644 index bcacf982a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2512.png b/front/public/images/large/gregtech/gt.metaitem.01/2512.png deleted file mode 100644 index 0ec88e45b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25129.png b/front/public/images/large/gregtech/gt.metaitem.01/25129.png deleted file mode 100644 index 3ad2a243ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2513.png b/front/public/images/large/gregtech/gt.metaitem.01/2513.png deleted file mode 100644 index 8baca2da37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25131.png b/front/public/images/large/gregtech/gt.metaitem.01/25131.png deleted file mode 100644 index f7ea149b12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25134.png b/front/public/images/large/gregtech/gt.metaitem.01/25134.png deleted file mode 100644 index e07b669b63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25139.png b/front/public/images/large/gregtech/gt.metaitem.01/25139.png deleted file mode 100644 index 320fd2a240..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2514.png b/front/public/images/large/gregtech/gt.metaitem.01/2514.png deleted file mode 100644 index e55ed1ace5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25141.png b/front/public/images/large/gregtech/gt.metaitem.01/25141.png deleted file mode 100644 index 15912e9910..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25143.png b/front/public/images/large/gregtech/gt.metaitem.01/25143.png deleted file mode 100644 index 000304395c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2515.png b/front/public/images/large/gregtech/gt.metaitem.01/2515.png deleted file mode 100644 index 3452fd3154..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2516.png b/front/public/images/large/gregtech/gt.metaitem.01/2516.png deleted file mode 100644 index 9780fee9ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2518.png b/front/public/images/large/gregtech/gt.metaitem.01/2518.png deleted file mode 100644 index d938fb5e07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2519.png b/front/public/images/large/gregtech/gt.metaitem.01/2519.png deleted file mode 100644 index d938fb5e07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2520.png b/front/public/images/large/gregtech/gt.metaitem.01/2520.png deleted file mode 100644 index 8e0264aae3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25201.png b/front/public/images/large/gregtech/gt.metaitem.01/25201.png deleted file mode 100644 index b0f443896d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25202.png b/front/public/images/large/gregtech/gt.metaitem.01/25202.png deleted file mode 100644 index f1735ca892..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25203.png b/front/public/images/large/gregtech/gt.metaitem.01/25203.png deleted file mode 100644 index c1dc616421..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25205.png b/front/public/images/large/gregtech/gt.metaitem.01/25205.png deleted file mode 100644 index 59e29520f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25206.png b/front/public/images/large/gregtech/gt.metaitem.01/25206.png deleted file mode 100644 index 840c9824d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25207.png b/front/public/images/large/gregtech/gt.metaitem.01/25207.png deleted file mode 100644 index 14bd28ce78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2521.png b/front/public/images/large/gregtech/gt.metaitem.01/2521.png deleted file mode 100644 index 3ab4c0764b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2522.png b/front/public/images/large/gregtech/gt.metaitem.01/2522.png deleted file mode 100644 index df1bae57e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2523.png b/front/public/images/large/gregtech/gt.metaitem.01/2523.png deleted file mode 100644 index 44ca21e22d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2524.png b/front/public/images/large/gregtech/gt.metaitem.01/2524.png deleted file mode 100644 index ad82f630d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2525.png b/front/public/images/large/gregtech/gt.metaitem.01/2525.png deleted file mode 100644 index 8787ce4f09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2526.png b/front/public/images/large/gregtech/gt.metaitem.01/2526.png deleted file mode 100644 index 993414ffca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2527.png b/front/public/images/large/gregtech/gt.metaitem.01/2527.png deleted file mode 100644 index 8a7a4ae6ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2528.png b/front/public/images/large/gregtech/gt.metaitem.01/2528.png deleted file mode 100644 index 914c0353e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2529.png b/front/public/images/large/gregtech/gt.metaitem.01/2529.png deleted file mode 100644 index 881db923f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2530.png b/front/public/images/large/gregtech/gt.metaitem.01/2530.png deleted file mode 100644 index 7a5c852952..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25300.png b/front/public/images/large/gregtech/gt.metaitem.01/25300.png deleted file mode 100644 index 17b088cb52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25301.png b/front/public/images/large/gregtech/gt.metaitem.01/25301.png deleted file mode 100644 index d67b67e3d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25302.png b/front/public/images/large/gregtech/gt.metaitem.01/25302.png deleted file mode 100644 index f2ed6c8d38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25303.png b/front/public/images/large/gregtech/gt.metaitem.01/25303.png deleted file mode 100644 index 3558a1d732..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25304.png b/front/public/images/large/gregtech/gt.metaitem.01/25304.png deleted file mode 100644 index d0a56da015..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25305.png b/front/public/images/large/gregtech/gt.metaitem.01/25305.png deleted file mode 100644 index af34bfdedb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25306.png b/front/public/images/large/gregtech/gt.metaitem.01/25306.png deleted file mode 100644 index 77f5b402b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25307.png b/front/public/images/large/gregtech/gt.metaitem.01/25307.png deleted file mode 100644 index d0a56da015..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25308.png b/front/public/images/large/gregtech/gt.metaitem.01/25308.png deleted file mode 100644 index ecc6d62a7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25309.png b/front/public/images/large/gregtech/gt.metaitem.01/25309.png deleted file mode 100644 index a7725cbe6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2531.png b/front/public/images/large/gregtech/gt.metaitem.01/2531.png deleted file mode 100644 index d455a112d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25310.png b/front/public/images/large/gregtech/gt.metaitem.01/25310.png deleted file mode 100644 index acb3924ec7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25311.png b/front/public/images/large/gregtech/gt.metaitem.01/25311.png deleted file mode 100644 index a95d37a0f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25312.png b/front/public/images/large/gregtech/gt.metaitem.01/25312.png deleted file mode 100644 index 28a107743d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25313.png b/front/public/images/large/gregtech/gt.metaitem.01/25313.png deleted file mode 100644 index 7bd412316d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25314.png b/front/public/images/large/gregtech/gt.metaitem.01/25314.png deleted file mode 100644 index 4e06b9ebff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25315.png b/front/public/images/large/gregtech/gt.metaitem.01/25315.png deleted file mode 100644 index 9f4a789af7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25316.png b/front/public/images/large/gregtech/gt.metaitem.01/25316.png deleted file mode 100644 index 2d07cdf45c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25317.png b/front/public/images/large/gregtech/gt.metaitem.01/25317.png deleted file mode 100644 index 83e6649c0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25318.png b/front/public/images/large/gregtech/gt.metaitem.01/25318.png deleted file mode 100644 index a9c2edd2b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25319.png b/front/public/images/large/gregtech/gt.metaitem.01/25319.png deleted file mode 100644 index 8dfa195c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2532.png b/front/public/images/large/gregtech/gt.metaitem.01/2532.png deleted file mode 100644 index 480a0e6752..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25320.png b/front/public/images/large/gregtech/gt.metaitem.01/25320.png deleted file mode 100644 index f9c99d71ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25321.png b/front/public/images/large/gregtech/gt.metaitem.01/25321.png deleted file mode 100644 index 3676cc0421..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25323.png b/front/public/images/large/gregtech/gt.metaitem.01/25323.png deleted file mode 100644 index 314857b345..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25324.png b/front/public/images/large/gregtech/gt.metaitem.01/25324.png deleted file mode 100644 index f84f703cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25325.png b/front/public/images/large/gregtech/gt.metaitem.01/25325.png deleted file mode 100644 index d1e85c598f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25326.png b/front/public/images/large/gregtech/gt.metaitem.01/25326.png deleted file mode 100644 index 8061baca26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25327.png b/front/public/images/large/gregtech/gt.metaitem.01/25327.png deleted file mode 100644 index 9e8cfd550a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25328.png b/front/public/images/large/gregtech/gt.metaitem.01/25328.png deleted file mode 100644 index 8dfa195c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25329.png b/front/public/images/large/gregtech/gt.metaitem.01/25329.png deleted file mode 100644 index cc70867f01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2533.png b/front/public/images/large/gregtech/gt.metaitem.01/2533.png deleted file mode 100644 index 6bea78e713..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25330.png b/front/public/images/large/gregtech/gt.metaitem.01/25330.png deleted file mode 100644 index bf48ce6080..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25331.png b/front/public/images/large/gregtech/gt.metaitem.01/25331.png deleted file mode 100644 index afa0784f72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25333.png b/front/public/images/large/gregtech/gt.metaitem.01/25333.png deleted file mode 100644 index e7beaf73c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25334.png b/front/public/images/large/gregtech/gt.metaitem.01/25334.png deleted file mode 100644 index 2fc176adb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25335.png b/front/public/images/large/gregtech/gt.metaitem.01/25335.png deleted file mode 100644 index 109df2c3fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25336.png b/front/public/images/large/gregtech/gt.metaitem.01/25336.png deleted file mode 100644 index d13aec6721..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25337.png b/front/public/images/large/gregtech/gt.metaitem.01/25337.png deleted file mode 100644 index dd7f3d954c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25338.png b/front/public/images/large/gregtech/gt.metaitem.01/25338.png deleted file mode 100644 index d2efbcef37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25339.png b/front/public/images/large/gregtech/gt.metaitem.01/25339.png deleted file mode 100644 index 91088dcf16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2534.png b/front/public/images/large/gregtech/gt.metaitem.01/2534.png deleted file mode 100644 index 8a632c3b15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25340.png b/front/public/images/large/gregtech/gt.metaitem.01/25340.png deleted file mode 100644 index c7503645f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25341.png b/front/public/images/large/gregtech/gt.metaitem.01/25341.png deleted file mode 100644 index f10a45a3ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25342.png b/front/public/images/large/gregtech/gt.metaitem.01/25342.png deleted file mode 100644 index 745b6ffed5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25343.png b/front/public/images/large/gregtech/gt.metaitem.01/25343.png deleted file mode 100644 index 5631b5706f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25344.png b/front/public/images/large/gregtech/gt.metaitem.01/25344.png deleted file mode 100644 index fcb07a9c1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25345.png b/front/public/images/large/gregtech/gt.metaitem.01/25345.png deleted file mode 100644 index 1f7c4c5c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25346.png b/front/public/images/large/gregtech/gt.metaitem.01/25346.png deleted file mode 100644 index 9508bf20f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25348.png b/front/public/images/large/gregtech/gt.metaitem.01/25348.png deleted file mode 100644 index c11547f2d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25349.png b/front/public/images/large/gregtech/gt.metaitem.01/25349.png deleted file mode 100644 index bfee747836..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2535.png b/front/public/images/large/gregtech/gt.metaitem.01/2535.png deleted file mode 100644 index ce39b0663b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25350.png b/front/public/images/large/gregtech/gt.metaitem.01/25350.png deleted file mode 100644 index bfa75ff600..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25351.png b/front/public/images/large/gregtech/gt.metaitem.01/25351.png deleted file mode 100644 index 981076b7d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25352.png b/front/public/images/large/gregtech/gt.metaitem.01/25352.png deleted file mode 100644 index 37934b41c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25353.png b/front/public/images/large/gregtech/gt.metaitem.01/25353.png deleted file mode 100644 index 11165ff83e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25354.png b/front/public/images/large/gregtech/gt.metaitem.01/25354.png deleted file mode 100644 index ffa45141a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25355.png b/front/public/images/large/gregtech/gt.metaitem.01/25355.png deleted file mode 100644 index f698773a10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25356.png b/front/public/images/large/gregtech/gt.metaitem.01/25356.png deleted file mode 100644 index b2c1235cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25357.png b/front/public/images/large/gregtech/gt.metaitem.01/25357.png deleted file mode 100644 index f73b3c5db8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25358.png b/front/public/images/large/gregtech/gt.metaitem.01/25358.png deleted file mode 100644 index 9af1b31d05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25359.png b/front/public/images/large/gregtech/gt.metaitem.01/25359.png deleted file mode 100644 index e5750052a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2536.png b/front/public/images/large/gregtech/gt.metaitem.01/2536.png deleted file mode 100644 index 14170444fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25360.png b/front/public/images/large/gregtech/gt.metaitem.01/25360.png deleted file mode 100644 index ddfdd5d4d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25361.png b/front/public/images/large/gregtech/gt.metaitem.01/25361.png deleted file mode 100644 index 5583bd12c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25362.png b/front/public/images/large/gregtech/gt.metaitem.01/25362.png deleted file mode 100644 index d589392623..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25363.png b/front/public/images/large/gregtech/gt.metaitem.01/25363.png deleted file mode 100644 index aeaf62ce9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25364.png b/front/public/images/large/gregtech/gt.metaitem.01/25364.png deleted file mode 100644 index a83a0a90fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25365.png b/front/public/images/large/gregtech/gt.metaitem.01/25365.png deleted file mode 100644 index 6be626afec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25366.png b/front/public/images/large/gregtech/gt.metaitem.01/25366.png deleted file mode 100644 index 2a4ebdb8d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25367.png b/front/public/images/large/gregtech/gt.metaitem.01/25367.png deleted file mode 100644 index 948f608695..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25368.png b/front/public/images/large/gregtech/gt.metaitem.01/25368.png deleted file mode 100644 index 3380474810..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25369.png b/front/public/images/large/gregtech/gt.metaitem.01/25369.png deleted file mode 100644 index ea3213b2b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2537.png b/front/public/images/large/gregtech/gt.metaitem.01/2537.png deleted file mode 100644 index 1fd8945d6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25370.png b/front/public/images/large/gregtech/gt.metaitem.01/25370.png deleted file mode 100644 index 96fce15ab4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25371.png b/front/public/images/large/gregtech/gt.metaitem.01/25371.png deleted file mode 100644 index 2c1efb36bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25372.png b/front/public/images/large/gregtech/gt.metaitem.01/25372.png deleted file mode 100644 index 73442f142b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25373.png b/front/public/images/large/gregtech/gt.metaitem.01/25373.png deleted file mode 100644 index 47e045e740..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25374.png b/front/public/images/large/gregtech/gt.metaitem.01/25374.png deleted file mode 100644 index dcc9d5c70b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25378.png b/front/public/images/large/gregtech/gt.metaitem.01/25378.png deleted file mode 100644 index f418352f8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25379.png b/front/public/images/large/gregtech/gt.metaitem.01/25379.png deleted file mode 100644 index 14a655b0d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2538.png b/front/public/images/large/gregtech/gt.metaitem.01/2538.png deleted file mode 100644 index b8d5ed1363..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25380.png b/front/public/images/large/gregtech/gt.metaitem.01/25380.png deleted file mode 100644 index 4a21d521b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25381.png b/front/public/images/large/gregtech/gt.metaitem.01/25381.png deleted file mode 100644 index e8b1f78713..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25382.png b/front/public/images/large/gregtech/gt.metaitem.01/25382.png deleted file mode 100644 index 2a7284a514..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25383.png b/front/public/images/large/gregtech/gt.metaitem.01/25383.png deleted file mode 100644 index 2c2d89f3ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25384.png b/front/public/images/large/gregtech/gt.metaitem.01/25384.png deleted file mode 100644 index 30d6dfd6c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25385.png b/front/public/images/large/gregtech/gt.metaitem.01/25385.png deleted file mode 100644 index 88e24ef7a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25386.png b/front/public/images/large/gregtech/gt.metaitem.01/25386.png deleted file mode 100644 index eed8961be0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25387.png b/front/public/images/large/gregtech/gt.metaitem.01/25387.png deleted file mode 100644 index 27c2766e55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25388.png b/front/public/images/large/gregtech/gt.metaitem.01/25388.png deleted file mode 100644 index f84f703cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25389.png b/front/public/images/large/gregtech/gt.metaitem.01/25389.png deleted file mode 100644 index 2beb467b41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25390.png b/front/public/images/large/gregtech/gt.metaitem.01/25390.png deleted file mode 100644 index 58f0cfc4d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25391.png b/front/public/images/large/gregtech/gt.metaitem.01/25391.png deleted file mode 100644 index 132075a417..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25392.png b/front/public/images/large/gregtech/gt.metaitem.01/25392.png deleted file mode 100644 index 780c52b77d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25393.png b/front/public/images/large/gregtech/gt.metaitem.01/25393.png deleted file mode 100644 index 3d4e82207d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25394.png b/front/public/images/large/gregtech/gt.metaitem.01/25394.png deleted file mode 100644 index 8dfa195c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25395.png b/front/public/images/large/gregtech/gt.metaitem.01/25395.png deleted file mode 100644 index f84f703cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25397.png b/front/public/images/large/gregtech/gt.metaitem.01/25397.png deleted file mode 100644 index 4648d9ba93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25398.png b/front/public/images/large/gregtech/gt.metaitem.01/25398.png deleted file mode 100644 index 192fb77a34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25399.png b/front/public/images/large/gregtech/gt.metaitem.01/25399.png deleted file mode 100644 index daa31ef072..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2540.png b/front/public/images/large/gregtech/gt.metaitem.01/2540.png deleted file mode 100644 index 3ab4c0764b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25400.png b/front/public/images/large/gregtech/gt.metaitem.01/25400.png deleted file mode 100644 index 0dd5b48e99..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25401.png b/front/public/images/large/gregtech/gt.metaitem.01/25401.png deleted file mode 100644 index a3046df2f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25402.png b/front/public/images/large/gregtech/gt.metaitem.01/25402.png deleted file mode 100644 index 1f6ae36dc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25403.png b/front/public/images/large/gregtech/gt.metaitem.01/25403.png deleted file mode 100644 index 220702956d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25404.png b/front/public/images/large/gregtech/gt.metaitem.01/25404.png deleted file mode 100644 index 7b1f65e711..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25405.png b/front/public/images/large/gregtech/gt.metaitem.01/25405.png deleted file mode 100644 index 98b15c2228..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25406.png b/front/public/images/large/gregtech/gt.metaitem.01/25406.png deleted file mode 100644 index 3cc01a0c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25407.png b/front/public/images/large/gregtech/gt.metaitem.01/25407.png deleted file mode 100644 index 8eb9f1de84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25408.png b/front/public/images/large/gregtech/gt.metaitem.01/25408.png deleted file mode 100644 index a60de241cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2541.png b/front/public/images/large/gregtech/gt.metaitem.01/2541.png deleted file mode 100644 index 41ab67a9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2542.png b/front/public/images/large/gregtech/gt.metaitem.01/2542.png deleted file mode 100644 index f606ac249c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2543.png b/front/public/images/large/gregtech/gt.metaitem.01/2543.png deleted file mode 100644 index f3d67063d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2544.png b/front/public/images/large/gregtech/gt.metaitem.01/2544.png deleted file mode 100644 index 4816b9b073..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2545.png b/front/public/images/large/gregtech/gt.metaitem.01/2545.png deleted file mode 100644 index e67d8af18c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2546.png b/front/public/images/large/gregtech/gt.metaitem.01/2546.png deleted file mode 100644 index 12680374e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2546.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2547.png b/front/public/images/large/gregtech/gt.metaitem.01/2547.png deleted file mode 100644 index 631ccb1d02..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2547.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25470.png b/front/public/images/large/gregtech/gt.metaitem.01/25470.png deleted file mode 100644 index 5646489bfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25471.png b/front/public/images/large/gregtech/gt.metaitem.01/25471.png deleted file mode 100644 index ba8ebe5ae1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25472.png b/front/public/images/large/gregtech/gt.metaitem.01/25472.png deleted file mode 100644 index f84f703cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25473.png b/front/public/images/large/gregtech/gt.metaitem.01/25473.png deleted file mode 100644 index 2fc176adb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2548.png b/front/public/images/large/gregtech/gt.metaitem.01/2548.png deleted file mode 100644 index 2661b8669f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2548.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25485.png b/front/public/images/large/gregtech/gt.metaitem.01/25485.png deleted file mode 100644 index 609788b0d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25488.png b/front/public/images/large/gregtech/gt.metaitem.01/25488.png deleted file mode 100644 index 95daa8ac4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25489.png b/front/public/images/large/gregtech/gt.metaitem.01/25489.png deleted file mode 100644 index 9330dc9779..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2549.png b/front/public/images/large/gregtech/gt.metaitem.01/2549.png deleted file mode 100644 index 1cddb34e70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2549.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2550.png b/front/public/images/large/gregtech/gt.metaitem.01/2550.png deleted file mode 100644 index 77e90ecae0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2550.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2551.png b/front/public/images/large/gregtech/gt.metaitem.01/2551.png deleted file mode 100644 index af4baa0168..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2551.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2552.png b/front/public/images/large/gregtech/gt.metaitem.01/2552.png deleted file mode 100644 index 68ca307387..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2552.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25521.png b/front/public/images/large/gregtech/gt.metaitem.01/25521.png deleted file mode 100644 index a9c2edd2b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25529.png b/front/public/images/large/gregtech/gt.metaitem.01/25529.png deleted file mode 100644 index 5bc7874e76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2553.png b/front/public/images/large/gregtech/gt.metaitem.01/2553.png deleted file mode 100644 index 7c089749c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2553.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25576.png b/front/public/images/large/gregtech/gt.metaitem.01/25576.png deleted file mode 100644 index d5f897ac1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25581.png b/front/public/images/large/gregtech/gt.metaitem.01/25581.png deleted file mode 100644 index 0503a35239..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25582.png b/front/public/images/large/gregtech/gt.metaitem.01/25582.png deleted file mode 100644 index 7460a21009..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25583.png b/front/public/images/large/gregtech/gt.metaitem.01/25583.png deleted file mode 100644 index bf8239bea7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25585.png b/front/public/images/large/gregtech/gt.metaitem.01/25585.png deleted file mode 100644 index f5ac2788dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25586.png b/front/public/images/large/gregtech/gt.metaitem.01/25586.png deleted file mode 100644 index 9eefb16be8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25588.png b/front/public/images/large/gregtech/gt.metaitem.01/25588.png deleted file mode 100644 index a56ea9940c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25599.png b/front/public/images/large/gregtech/gt.metaitem.01/25599.png deleted file mode 100644 index 35cca7793c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25610.png b/front/public/images/large/gregtech/gt.metaitem.01/25610.png deleted file mode 100644 index 929ae76982..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25611.png b/front/public/images/large/gregtech/gt.metaitem.01/25611.png deleted file mode 100644 index 9c98af62f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25613.png b/front/public/images/large/gregtech/gt.metaitem.01/25613.png deleted file mode 100644 index 24855ab845..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25631.png b/front/public/images/large/gregtech/gt.metaitem.01/25631.png deleted file mode 100644 index 20938c24a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25635.png b/front/public/images/large/gregtech/gt.metaitem.01/25635.png deleted file mode 100644 index d1c126acde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25636.png b/front/public/images/large/gregtech/gt.metaitem.01/25636.png deleted file mode 100644 index c2983924ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25649.png b/front/public/images/large/gregtech/gt.metaitem.01/25649.png deleted file mode 100644 index fe4a1c9093..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2576.png b/front/public/images/large/gregtech/gt.metaitem.01/2576.png deleted file mode 100644 index 62637954d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25765.png b/front/public/images/large/gregtech/gt.metaitem.01/25765.png deleted file mode 100644 index 4b47ed6e53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25770.png b/front/public/images/large/gregtech/gt.metaitem.01/25770.png deleted file mode 100644 index 3b4aa81a54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25772.png b/front/public/images/large/gregtech/gt.metaitem.01/25772.png deleted file mode 100644 index b263237bc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25804.png b/front/public/images/large/gregtech/gt.metaitem.01/25804.png deleted file mode 100644 index 14ec5cf22b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25809.png b/front/public/images/large/gregtech/gt.metaitem.01/25809.png deleted file mode 100644 index 85a21d82ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2581.png b/front/public/images/large/gregtech/gt.metaitem.01/2581.png deleted file mode 100644 index 481846936e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2582.png b/front/public/images/large/gregtech/gt.metaitem.01/2582.png deleted file mode 100644 index 68f7bacc6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25829.png b/front/public/images/large/gregtech/gt.metaitem.01/25829.png deleted file mode 100644 index 65eb0a6ec4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2585.png b/front/public/images/large/gregtech/gt.metaitem.01/2585.png deleted file mode 100644 index ef5c3286db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25856.png b/front/public/images/large/gregtech/gt.metaitem.01/25856.png deleted file mode 100644 index 6c2698e60b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2586.png b/front/public/images/large/gregtech/gt.metaitem.01/2586.png deleted file mode 100644 index a8e75256a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25868.png b/front/public/images/large/gregtech/gt.metaitem.01/25868.png deleted file mode 100644 index 8f623847de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25874.png b/front/public/images/large/gregtech/gt.metaitem.01/25874.png deleted file mode 100644 index aeaf62ce9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2588.png b/front/public/images/large/gregtech/gt.metaitem.01/2588.png deleted file mode 100644 index ecb2c8bb40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25880.png b/front/public/images/large/gregtech/gt.metaitem.01/25880.png deleted file mode 100644 index 9eefb16be8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25884.png b/front/public/images/large/gregtech/gt.metaitem.01/25884.png deleted file mode 100644 index d1e85c598f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25889.png b/front/public/images/large/gregtech/gt.metaitem.01/25889.png deleted file mode 100644 index cf07712392..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2590.png b/front/public/images/large/gregtech/gt.metaitem.01/2590.png deleted file mode 100644 index f9882b285c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2590.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2591.png b/front/public/images/large/gregtech/gt.metaitem.01/2591.png deleted file mode 100644 index 71a27dfd9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2591.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25912.png b/front/public/images/large/gregtech/gt.metaitem.01/25912.png deleted file mode 100644 index 09a01f9d48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25913.png b/front/public/images/large/gregtech/gt.metaitem.01/25913.png deleted file mode 100644 index c11547f2d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2594.png b/front/public/images/large/gregtech/gt.metaitem.01/2594.png deleted file mode 100644 index dd74ed76c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2594.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25951.png b/front/public/images/large/gregtech/gt.metaitem.01/25951.png deleted file mode 100644 index da0325f79f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25952.png b/front/public/images/large/gregtech/gt.metaitem.01/25952.png deleted file mode 100644 index ffd184b8ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25956.png b/front/public/images/large/gregtech/gt.metaitem.01/25956.png deleted file mode 100644 index a979524581..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25966.png b/front/public/images/large/gregtech/gt.metaitem.01/25966.png deleted file mode 100644 index be64db6b70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25970.png b/front/public/images/large/gregtech/gt.metaitem.01/25970.png deleted file mode 100644 index c8d3947449..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25974.png b/front/public/images/large/gregtech/gt.metaitem.01/25974.png deleted file mode 100644 index 6247e00ffc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25975.png b/front/public/images/large/gregtech/gt.metaitem.01/25975.png deleted file mode 100644 index 63a4e11262..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25976.png b/front/public/images/large/gregtech/gt.metaitem.01/25976.png deleted file mode 100644 index a6111f2be7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25977.png b/front/public/images/large/gregtech/gt.metaitem.01/25977.png deleted file mode 100644 index e424d75969..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25978.png b/front/public/images/large/gregtech/gt.metaitem.01/25978.png deleted file mode 100644 index 2c75d1b349..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25979.png b/front/public/images/large/gregtech/gt.metaitem.01/25979.png deleted file mode 100644 index fed23d51c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25980.png b/front/public/images/large/gregtech/gt.metaitem.01/25980.png deleted file mode 100644 index f9089762aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25981.png b/front/public/images/large/gregtech/gt.metaitem.01/25981.png deleted file mode 100644 index 4df9aeb982..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25982.png b/front/public/images/large/gregtech/gt.metaitem.01/25982.png deleted file mode 100644 index 02e65c6bc8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25984.png b/front/public/images/large/gregtech/gt.metaitem.01/25984.png deleted file mode 100644 index 8dfa195c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25985.png b/front/public/images/large/gregtech/gt.metaitem.01/25985.png deleted file mode 100644 index e9c03bd3ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25986.png b/front/public/images/large/gregtech/gt.metaitem.01/25986.png deleted file mode 100644 index 76c8b2439a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25987.png b/front/public/images/large/gregtech/gt.metaitem.01/25987.png deleted file mode 100644 index 64d97963a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25988.png b/front/public/images/large/gregtech/gt.metaitem.01/25988.png deleted file mode 100644 index c615d866dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25989.png b/front/public/images/large/gregtech/gt.metaitem.01/25989.png deleted file mode 100644 index a50b36f6d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2599.png b/front/public/images/large/gregtech/gt.metaitem.01/2599.png deleted file mode 100644 index d5d78d1e0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25990.png b/front/public/images/large/gregtech/gt.metaitem.01/25990.png deleted file mode 100644 index 0e4b00d5ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25991.png b/front/public/images/large/gregtech/gt.metaitem.01/25991.png deleted file mode 100644 index e82b8d52c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/25992.png b/front/public/images/large/gregtech/gt.metaitem.01/25992.png deleted file mode 100644 index 4ff1d56332..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/25992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26006.png b/front/public/images/large/gregtech/gt.metaitem.01/26006.png deleted file mode 100644 index 897387efe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26008.png b/front/public/images/large/gregtech/gt.metaitem.01/26008.png deleted file mode 100644 index 38c67a8906..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26010.png b/front/public/images/large/gregtech/gt.metaitem.01/26010.png deleted file mode 100644 index 0d11302b95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26018.png b/front/public/images/large/gregtech/gt.metaitem.01/26018.png deleted file mode 100644 index 1888297159..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26019.png b/front/public/images/large/gregtech/gt.metaitem.01/26019.png deleted file mode 100644 index 70b43442d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26020.png b/front/public/images/large/gregtech/gt.metaitem.01/26020.png deleted file mode 100644 index b069aaa097..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26025.png b/front/public/images/large/gregtech/gt.metaitem.01/26025.png deleted file mode 100644 index c6e63b7838..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26027.png b/front/public/images/large/gregtech/gt.metaitem.01/26027.png deleted file mode 100644 index aecff176b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26028.png b/front/public/images/large/gregtech/gt.metaitem.01/26028.png deleted file mode 100644 index 699b7d68a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26029.png b/front/public/images/large/gregtech/gt.metaitem.01/26029.png deleted file mode 100644 index 1659aa37d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26030.png b/front/public/images/large/gregtech/gt.metaitem.01/26030.png deleted file mode 100644 index ea8833e27d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26031.png b/front/public/images/large/gregtech/gt.metaitem.01/26031.png deleted file mode 100644 index e1599be81f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26032.png b/front/public/images/large/gregtech/gt.metaitem.01/26032.png deleted file mode 100644 index 781f6e168e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26033.png b/front/public/images/large/gregtech/gt.metaitem.01/26033.png deleted file mode 100644 index 7e1c86ec6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26034.png b/front/public/images/large/gregtech/gt.metaitem.01/26034.png deleted file mode 100644 index 3fc281941c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26035.png b/front/public/images/large/gregtech/gt.metaitem.01/26035.png deleted file mode 100644 index b9ac5da53f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26036.png b/front/public/images/large/gregtech/gt.metaitem.01/26036.png deleted file mode 100644 index e38f243dd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26037.png b/front/public/images/large/gregtech/gt.metaitem.01/26037.png deleted file mode 100644 index 4c9b5cd945..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26039.png b/front/public/images/large/gregtech/gt.metaitem.01/26039.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26043.png b/front/public/images/large/gregtech/gt.metaitem.01/26043.png deleted file mode 100644 index 0b5e00d1ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26045.png b/front/public/images/large/gregtech/gt.metaitem.01/26045.png deleted file mode 100644 index d38687f2d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26047.png b/front/public/images/large/gregtech/gt.metaitem.01/26047.png deleted file mode 100644 index 0321b847e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26048.png b/front/public/images/large/gregtech/gt.metaitem.01/26048.png deleted file mode 100644 index 6828c6983c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26052.png b/front/public/images/large/gregtech/gt.metaitem.01/26052.png deleted file mode 100644 index c2277569c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26054.png b/front/public/images/large/gregtech/gt.metaitem.01/26054.png deleted file mode 100644 index 4c9b5cd945..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26056.png b/front/public/images/large/gregtech/gt.metaitem.01/26056.png deleted file mode 100644 index b7842590ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26057.png b/front/public/images/large/gregtech/gt.metaitem.01/26057.png deleted file mode 100644 index 607ffe0a29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26058.png b/front/public/images/large/gregtech/gt.metaitem.01/26058.png deleted file mode 100644 index 96ee3efb46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26059.png b/front/public/images/large/gregtech/gt.metaitem.01/26059.png deleted file mode 100644 index a40375ed0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26062.png b/front/public/images/large/gregtech/gt.metaitem.01/26062.png deleted file mode 100644 index a37314cfe4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26063.png b/front/public/images/large/gregtech/gt.metaitem.01/26063.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26064.png b/front/public/images/large/gregtech/gt.metaitem.01/26064.png deleted file mode 100644 index 50d1c331af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26065.png b/front/public/images/large/gregtech/gt.metaitem.01/26065.png deleted file mode 100644 index b0ff48e947..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26066.png b/front/public/images/large/gregtech/gt.metaitem.01/26066.png deleted file mode 100644 index 016251392f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26067.png b/front/public/images/large/gregtech/gt.metaitem.01/26067.png deleted file mode 100644 index 5bf7240831..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26068.png b/front/public/images/large/gregtech/gt.metaitem.01/26068.png deleted file mode 100644 index aacf081a4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26069.png b/front/public/images/large/gregtech/gt.metaitem.01/26069.png deleted file mode 100644 index fe2efbec2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2607.png b/front/public/images/large/gregtech/gt.metaitem.01/2607.png deleted file mode 100644 index 0738ca39c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26070.png b/front/public/images/large/gregtech/gt.metaitem.01/26070.png deleted file mode 100644 index 23339a8cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26071.png b/front/public/images/large/gregtech/gt.metaitem.01/26071.png deleted file mode 100644 index 3c6038c558..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26072.png b/front/public/images/large/gregtech/gt.metaitem.01/26072.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26073.png b/front/public/images/large/gregtech/gt.metaitem.01/26073.png deleted file mode 100644 index dfcd86d1be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26074.png b/front/public/images/large/gregtech/gt.metaitem.01/26074.png deleted file mode 100644 index 66831cdb7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26075.png b/front/public/images/large/gregtech/gt.metaitem.01/26075.png deleted file mode 100644 index 36772141a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26076.png b/front/public/images/large/gregtech/gt.metaitem.01/26076.png deleted file mode 100644 index a63f99adb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26077.png b/front/public/images/large/gregtech/gt.metaitem.01/26077.png deleted file mode 100644 index 08da9ffd5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26078.png b/front/public/images/large/gregtech/gt.metaitem.01/26078.png deleted file mode 100644 index d30662b09d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26080.png b/front/public/images/large/gregtech/gt.metaitem.01/26080.png deleted file mode 100644 index 813c6eec01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26081.png b/front/public/images/large/gregtech/gt.metaitem.01/26081.png deleted file mode 100644 index 1659aa37d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26083.png b/front/public/images/large/gregtech/gt.metaitem.01/26083.png deleted file mode 100644 index 5e2f3eb883..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26084.png b/front/public/images/large/gregtech/gt.metaitem.01/26084.png deleted file mode 100644 index 0ed5c5982d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26085.png b/front/public/images/large/gregtech/gt.metaitem.01/26085.png deleted file mode 100644 index a4824cd6ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26086.png b/front/public/images/large/gregtech/gt.metaitem.01/26086.png deleted file mode 100644 index b80416ec7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26089.png b/front/public/images/large/gregtech/gt.metaitem.01/26089.png deleted file mode 100644 index a4423022ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26090.png b/front/public/images/large/gregtech/gt.metaitem.01/26090.png deleted file mode 100644 index 0d9fe3630d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26096.png b/front/public/images/large/gregtech/gt.metaitem.01/26096.png deleted file mode 100644 index 30d535096f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26097.png b/front/public/images/large/gregtech/gt.metaitem.01/26097.png deleted file mode 100644 index 51bee73ba9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26098.png b/front/public/images/large/gregtech/gt.metaitem.01/26098.png deleted file mode 100644 index 6a9f4c56b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2610.png b/front/public/images/large/gregtech/gt.metaitem.01/2610.png deleted file mode 100644 index 205370b552..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26100.png b/front/public/images/large/gregtech/gt.metaitem.01/26100.png deleted file mode 100644 index d87b43c82b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26101.png b/front/public/images/large/gregtech/gt.metaitem.01/26101.png deleted file mode 100644 index 7aa431e8ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26103.png b/front/public/images/large/gregtech/gt.metaitem.01/26103.png deleted file mode 100644 index 781f6e168e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2611.png b/front/public/images/large/gregtech/gt.metaitem.01/2611.png deleted file mode 100644 index e4e6e13af3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26111.png b/front/public/images/large/gregtech/gt.metaitem.01/26111.png deleted file mode 100644 index 21418c7bd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26112.png b/front/public/images/large/gregtech/gt.metaitem.01/26112.png deleted file mode 100644 index ed9840e7b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2612.png b/front/public/images/large/gregtech/gt.metaitem.01/2612.png deleted file mode 100644 index 86a31f088b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2612.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26129.png b/front/public/images/large/gregtech/gt.metaitem.01/26129.png deleted file mode 100644 index e1599be81f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2613.png b/front/public/images/large/gregtech/gt.metaitem.01/2613.png deleted file mode 100644 index 32dc106e6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26131.png b/front/public/images/large/gregtech/gt.metaitem.01/26131.png deleted file mode 100644 index bb45b46c66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26134.png b/front/public/images/large/gregtech/gt.metaitem.01/26134.png deleted file mode 100644 index f4c055c0c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26139.png b/front/public/images/large/gregtech/gt.metaitem.01/26139.png deleted file mode 100644 index d8a88485d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2614.png b/front/public/images/large/gregtech/gt.metaitem.01/2614.png deleted file mode 100644 index c0c261e312..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2614.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26141.png b/front/public/images/large/gregtech/gt.metaitem.01/26141.png deleted file mode 100644 index 878fefec02..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26143.png b/front/public/images/large/gregtech/gt.metaitem.01/26143.png deleted file mode 100644 index a5c3b61068..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2615.png b/front/public/images/large/gregtech/gt.metaitem.01/2615.png deleted file mode 100644 index e6ea5f1f0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2615.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2616.png b/front/public/images/large/gregtech/gt.metaitem.01/2616.png deleted file mode 100644 index ebc79a2df2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2616.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2617.png b/front/public/images/large/gregtech/gt.metaitem.01/2617.png deleted file mode 100644 index 785438dc43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2617.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2618.png b/front/public/images/large/gregtech/gt.metaitem.01/2618.png deleted file mode 100644 index f089c5f629..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2618.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2619.png b/front/public/images/large/gregtech/gt.metaitem.01/2619.png deleted file mode 100644 index a225f15e98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2619.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2620.png b/front/public/images/large/gregtech/gt.metaitem.01/2620.png deleted file mode 100644 index 437569e31f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2620.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26201.png b/front/public/images/large/gregtech/gt.metaitem.01/26201.png deleted file mode 100644 index 6cd7e82756..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26202.png b/front/public/images/large/gregtech/gt.metaitem.01/26202.png deleted file mode 100644 index a9fb41b47c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26203.png b/front/public/images/large/gregtech/gt.metaitem.01/26203.png deleted file mode 100644 index 9a49dde419..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26205.png b/front/public/images/large/gregtech/gt.metaitem.01/26205.png deleted file mode 100644 index 21d55b6ce1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26206.png b/front/public/images/large/gregtech/gt.metaitem.01/26206.png deleted file mode 100644 index 26d2c5d75e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26207.png b/front/public/images/large/gregtech/gt.metaitem.01/26207.png deleted file mode 100644 index e05a10416b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26208.png b/front/public/images/large/gregtech/gt.metaitem.01/26208.png deleted file mode 100644 index 6119bda893..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26209.png b/front/public/images/large/gregtech/gt.metaitem.01/26209.png deleted file mode 100644 index 780b4fa71e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2621.png b/front/public/images/large/gregtech/gt.metaitem.01/2621.png deleted file mode 100644 index 5eaedcf39c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2621.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2622.png b/front/public/images/large/gregtech/gt.metaitem.01/2622.png deleted file mode 100644 index 90c91b78c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2622.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2623.png b/front/public/images/large/gregtech/gt.metaitem.01/2623.png deleted file mode 100644 index 5c24762447..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2623.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2624.png b/front/public/images/large/gregtech/gt.metaitem.01/2624.png deleted file mode 100644 index a5f34a5b8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2624.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2625.png b/front/public/images/large/gregtech/gt.metaitem.01/2625.png deleted file mode 100644 index 595f5fdf65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2625.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2626.png b/front/public/images/large/gregtech/gt.metaitem.01/2626.png deleted file mode 100644 index 7b9a2f3c06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2626.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2630.png b/front/public/images/large/gregtech/gt.metaitem.01/2630.png deleted file mode 100644 index 71df756dbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2630.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26300.png b/front/public/images/large/gregtech/gt.metaitem.01/26300.png deleted file mode 100644 index 79d635e28f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26301.png b/front/public/images/large/gregtech/gt.metaitem.01/26301.png deleted file mode 100644 index 3411e0e7e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26302.png b/front/public/images/large/gregtech/gt.metaitem.01/26302.png deleted file mode 100644 index 4187fad224..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26303.png b/front/public/images/large/gregtech/gt.metaitem.01/26303.png deleted file mode 100644 index 02589eced3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26304.png b/front/public/images/large/gregtech/gt.metaitem.01/26304.png deleted file mode 100644 index c68c513fbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26305.png b/front/public/images/large/gregtech/gt.metaitem.01/26305.png deleted file mode 100644 index c2277569c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26306.png b/front/public/images/large/gregtech/gt.metaitem.01/26306.png deleted file mode 100644 index 50ab2194af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26307.png b/front/public/images/large/gregtech/gt.metaitem.01/26307.png deleted file mode 100644 index c68c513fbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26308.png b/front/public/images/large/gregtech/gt.metaitem.01/26308.png deleted file mode 100644 index 705ebcabb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26309.png b/front/public/images/large/gregtech/gt.metaitem.01/26309.png deleted file mode 100644 index 9b9bae2e99..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2631.png b/front/public/images/large/gregtech/gt.metaitem.01/2631.png deleted file mode 100644 index 11db24e601..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26310.png b/front/public/images/large/gregtech/gt.metaitem.01/26310.png deleted file mode 100644 index 2212d59079..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26311.png b/front/public/images/large/gregtech/gt.metaitem.01/26311.png deleted file mode 100644 index 880ca57569..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26312.png b/front/public/images/large/gregtech/gt.metaitem.01/26312.png deleted file mode 100644 index 70ff7b0b38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26313.png b/front/public/images/large/gregtech/gt.metaitem.01/26313.png deleted file mode 100644 index e25e5ad807..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26314.png b/front/public/images/large/gregtech/gt.metaitem.01/26314.png deleted file mode 100644 index 17c3b5c251..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26315.png b/front/public/images/large/gregtech/gt.metaitem.01/26315.png deleted file mode 100644 index 14dc6f7729..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26316.png b/front/public/images/large/gregtech/gt.metaitem.01/26316.png deleted file mode 100644 index 7d5ab053ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26317.png b/front/public/images/large/gregtech/gt.metaitem.01/26317.png deleted file mode 100644 index 4906ca53ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26318.png b/front/public/images/large/gregtech/gt.metaitem.01/26318.png deleted file mode 100644 index 73353218ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26319.png b/front/public/images/large/gregtech/gt.metaitem.01/26319.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26320.png b/front/public/images/large/gregtech/gt.metaitem.01/26320.png deleted file mode 100644 index e441261b66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26321.png b/front/public/images/large/gregtech/gt.metaitem.01/26321.png deleted file mode 100644 index 7b863d1206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26323.png b/front/public/images/large/gregtech/gt.metaitem.01/26323.png deleted file mode 100644 index c6d4fdf5f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26324.png b/front/public/images/large/gregtech/gt.metaitem.01/26324.png deleted file mode 100644 index 1659aa37d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26325.png b/front/public/images/large/gregtech/gt.metaitem.01/26325.png deleted file mode 100644 index c2ced22684..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26326.png b/front/public/images/large/gregtech/gt.metaitem.01/26326.png deleted file mode 100644 index 5f81a5d377..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26327.png b/front/public/images/large/gregtech/gt.metaitem.01/26327.png deleted file mode 100644 index 40ecd66f56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26328.png b/front/public/images/large/gregtech/gt.metaitem.01/26328.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26329.png b/front/public/images/large/gregtech/gt.metaitem.01/26329.png deleted file mode 100644 index c48ac6bad5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2633.png b/front/public/images/large/gregtech/gt.metaitem.01/2633.png deleted file mode 100644 index 19e38e68fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2633.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26330.png b/front/public/images/large/gregtech/gt.metaitem.01/26330.png deleted file mode 100644 index 2ad721e588..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26331.png b/front/public/images/large/gregtech/gt.metaitem.01/26331.png deleted file mode 100644 index e6876c16dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26333.png b/front/public/images/large/gregtech/gt.metaitem.01/26333.png deleted file mode 100644 index 9369e335a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26334.png b/front/public/images/large/gregtech/gt.metaitem.01/26334.png deleted file mode 100644 index 5bf7240831..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26335.png b/front/public/images/large/gregtech/gt.metaitem.01/26335.png deleted file mode 100644 index a20c3274e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26336.png b/front/public/images/large/gregtech/gt.metaitem.01/26336.png deleted file mode 100644 index 8d1df15d73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26337.png b/front/public/images/large/gregtech/gt.metaitem.01/26337.png deleted file mode 100644 index eeb07c7c3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26338.png b/front/public/images/large/gregtech/gt.metaitem.01/26338.png deleted file mode 100644 index 17891ad434..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26339.png b/front/public/images/large/gregtech/gt.metaitem.01/26339.png deleted file mode 100644 index d1be4454a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2634.png b/front/public/images/large/gregtech/gt.metaitem.01/2634.png deleted file mode 100644 index 4b345ceedc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2634.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26340.png b/front/public/images/large/gregtech/gt.metaitem.01/26340.png deleted file mode 100644 index 486980f428..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26341.png b/front/public/images/large/gregtech/gt.metaitem.01/26341.png deleted file mode 100644 index 4a33d6fa41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26342.png b/front/public/images/large/gregtech/gt.metaitem.01/26342.png deleted file mode 100644 index e9d4f8364f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26343.png b/front/public/images/large/gregtech/gt.metaitem.01/26343.png deleted file mode 100644 index 9588689791..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26344.png b/front/public/images/large/gregtech/gt.metaitem.01/26344.png deleted file mode 100644 index 6953011ab0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26345.png b/front/public/images/large/gregtech/gt.metaitem.01/26345.png deleted file mode 100644 index f7bb750d3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26346.png b/front/public/images/large/gregtech/gt.metaitem.01/26346.png deleted file mode 100644 index 5ecd97ebb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26347.png b/front/public/images/large/gregtech/gt.metaitem.01/26347.png deleted file mode 100644 index 10bfe6841f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26348.png b/front/public/images/large/gregtech/gt.metaitem.01/26348.png deleted file mode 100644 index 287474b666..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26349.png b/front/public/images/large/gregtech/gt.metaitem.01/26349.png deleted file mode 100644 index eaf4b76551..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2635.png b/front/public/images/large/gregtech/gt.metaitem.01/2635.png deleted file mode 100644 index bcb4763722..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26350.png b/front/public/images/large/gregtech/gt.metaitem.01/26350.png deleted file mode 100644 index f23bb70b2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26351.png b/front/public/images/large/gregtech/gt.metaitem.01/26351.png deleted file mode 100644 index f8b1a155ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26352.png b/front/public/images/large/gregtech/gt.metaitem.01/26352.png deleted file mode 100644 index 925ab2c16c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26353.png b/front/public/images/large/gregtech/gt.metaitem.01/26353.png deleted file mode 100644 index b79ea71c44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26354.png b/front/public/images/large/gregtech/gt.metaitem.01/26354.png deleted file mode 100644 index 94955014bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26355.png b/front/public/images/large/gregtech/gt.metaitem.01/26355.png deleted file mode 100644 index 6e9a72f688..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26356.png b/front/public/images/large/gregtech/gt.metaitem.01/26356.png deleted file mode 100644 index 1b641b6ca2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26357.png b/front/public/images/large/gregtech/gt.metaitem.01/26357.png deleted file mode 100644 index 14faa27f6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26358.png b/front/public/images/large/gregtech/gt.metaitem.01/26358.png deleted file mode 100644 index 29a4cbb60f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26359.png b/front/public/images/large/gregtech/gt.metaitem.01/26359.png deleted file mode 100644 index ccabe358d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2636.png b/front/public/images/large/gregtech/gt.metaitem.01/2636.png deleted file mode 100644 index 508ed23eb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26360.png b/front/public/images/large/gregtech/gt.metaitem.01/26360.png deleted file mode 100644 index 4aaf85bcda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26361.png b/front/public/images/large/gregtech/gt.metaitem.01/26361.png deleted file mode 100644 index c6d7568594..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26362.png b/front/public/images/large/gregtech/gt.metaitem.01/26362.png deleted file mode 100644 index 59a0482e30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26363.png b/front/public/images/large/gregtech/gt.metaitem.01/26363.png deleted file mode 100644 index 781f6e168e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26364.png b/front/public/images/large/gregtech/gt.metaitem.01/26364.png deleted file mode 100644 index 7c76a3e508..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26365.png b/front/public/images/large/gregtech/gt.metaitem.01/26365.png deleted file mode 100644 index 06669d071a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26366.png b/front/public/images/large/gregtech/gt.metaitem.01/26366.png deleted file mode 100644 index 2446e47bf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26367.png b/front/public/images/large/gregtech/gt.metaitem.01/26367.png deleted file mode 100644 index fe3902c9f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26368.png b/front/public/images/large/gregtech/gt.metaitem.01/26368.png deleted file mode 100644 index 3237792d4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26369.png b/front/public/images/large/gregtech/gt.metaitem.01/26369.png deleted file mode 100644 index 7d87cd57fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26370.png b/front/public/images/large/gregtech/gt.metaitem.01/26370.png deleted file mode 100644 index 44bdfe677b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26371.png b/front/public/images/large/gregtech/gt.metaitem.01/26371.png deleted file mode 100644 index 5826b3fe81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26372.png b/front/public/images/large/gregtech/gt.metaitem.01/26372.png deleted file mode 100644 index d883b9b251..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26373.png b/front/public/images/large/gregtech/gt.metaitem.01/26373.png deleted file mode 100644 index 30b08d2417..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26374.png b/front/public/images/large/gregtech/gt.metaitem.01/26374.png deleted file mode 100644 index f500d92367..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26378.png b/front/public/images/large/gregtech/gt.metaitem.01/26378.png deleted file mode 100644 index 4670baace9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26379.png b/front/public/images/large/gregtech/gt.metaitem.01/26379.png deleted file mode 100644 index 89688b3d82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26380.png b/front/public/images/large/gregtech/gt.metaitem.01/26380.png deleted file mode 100644 index f6831861fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26381.png b/front/public/images/large/gregtech/gt.metaitem.01/26381.png deleted file mode 100644 index 4cd982d1b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26382.png b/front/public/images/large/gregtech/gt.metaitem.01/26382.png deleted file mode 100644 index 42211cbec2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26383.png b/front/public/images/large/gregtech/gt.metaitem.01/26383.png deleted file mode 100644 index 22c78d9636..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26384.png b/front/public/images/large/gregtech/gt.metaitem.01/26384.png deleted file mode 100644 index 93800c5295..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26385.png b/front/public/images/large/gregtech/gt.metaitem.01/26385.png deleted file mode 100644 index 69832ae91c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26386.png b/front/public/images/large/gregtech/gt.metaitem.01/26386.png deleted file mode 100644 index 57c3161478..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26387.png b/front/public/images/large/gregtech/gt.metaitem.01/26387.png deleted file mode 100644 index 5f8d5e1ce8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26388.png b/front/public/images/large/gregtech/gt.metaitem.01/26388.png deleted file mode 100644 index 1659aa37d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26389.png b/front/public/images/large/gregtech/gt.metaitem.01/26389.png deleted file mode 100644 index 5e58f5eb87..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26390.png b/front/public/images/large/gregtech/gt.metaitem.01/26390.png deleted file mode 100644 index 2db1dfd4f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26391.png b/front/public/images/large/gregtech/gt.metaitem.01/26391.png deleted file mode 100644 index b9daaa0fe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26392.png b/front/public/images/large/gregtech/gt.metaitem.01/26392.png deleted file mode 100644 index c2a3bdfeba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26393.png b/front/public/images/large/gregtech/gt.metaitem.01/26393.png deleted file mode 100644 index 05f460e029..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26394.png b/front/public/images/large/gregtech/gt.metaitem.01/26394.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26395.png b/front/public/images/large/gregtech/gt.metaitem.01/26395.png deleted file mode 100644 index 1659aa37d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26397.png b/front/public/images/large/gregtech/gt.metaitem.01/26397.png deleted file mode 100644 index f70e46b53e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26398.png b/front/public/images/large/gregtech/gt.metaitem.01/26398.png deleted file mode 100644 index 87b9023b8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26399.png b/front/public/images/large/gregtech/gt.metaitem.01/26399.png deleted file mode 100644 index 77c226219b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26400.png b/front/public/images/large/gregtech/gt.metaitem.01/26400.png deleted file mode 100644 index f6b710de2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26401.png b/front/public/images/large/gregtech/gt.metaitem.01/26401.png deleted file mode 100644 index a360ec370a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26402.png b/front/public/images/large/gregtech/gt.metaitem.01/26402.png deleted file mode 100644 index bfc2cf781b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26403.png b/front/public/images/large/gregtech/gt.metaitem.01/26403.png deleted file mode 100644 index 860bd456ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26404.png b/front/public/images/large/gregtech/gt.metaitem.01/26404.png deleted file mode 100644 index 6b62ec32f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26405.png b/front/public/images/large/gregtech/gt.metaitem.01/26405.png deleted file mode 100644 index 35ea042203..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26406.png b/front/public/images/large/gregtech/gt.metaitem.01/26406.png deleted file mode 100644 index 05f239e3b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26407.png b/front/public/images/large/gregtech/gt.metaitem.01/26407.png deleted file mode 100644 index cc9dadf11d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26408.png b/front/public/images/large/gregtech/gt.metaitem.01/26408.png deleted file mode 100644 index 6a2f395bee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26470.png b/front/public/images/large/gregtech/gt.metaitem.01/26470.png deleted file mode 100644 index 4542417ba8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26471.png b/front/public/images/large/gregtech/gt.metaitem.01/26471.png deleted file mode 100644 index 607ffe0a29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26472.png b/front/public/images/large/gregtech/gt.metaitem.01/26472.png deleted file mode 100644 index 1659aa37d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26473.png b/front/public/images/large/gregtech/gt.metaitem.01/26473.png deleted file mode 100644 index 5bf7240831..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26485.png b/front/public/images/large/gregtech/gt.metaitem.01/26485.png deleted file mode 100644 index dad7c64572..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26488.png b/front/public/images/large/gregtech/gt.metaitem.01/26488.png deleted file mode 100644 index 2716f6dc0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26489.png b/front/public/images/large/gregtech/gt.metaitem.01/26489.png deleted file mode 100644 index 2334e785a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2649.png b/front/public/images/large/gregtech/gt.metaitem.01/2649.png deleted file mode 100644 index 4488defc84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26500.png b/front/public/images/large/gregtech/gt.metaitem.01/26500.png deleted file mode 100644 index 6e6d291227..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26501.png b/front/public/images/large/gregtech/gt.metaitem.01/26501.png deleted file mode 100644 index a5dd15bf1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26502.png b/front/public/images/large/gregtech/gt.metaitem.01/26502.png deleted file mode 100644 index 90b56524cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26503.png b/front/public/images/large/gregtech/gt.metaitem.01/26503.png deleted file mode 100644 index 56dae016db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26504.png b/front/public/images/large/gregtech/gt.metaitem.01/26504.png deleted file mode 100644 index fb811c5485..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26505.png b/front/public/images/large/gregtech/gt.metaitem.01/26505.png deleted file mode 100644 index e1a30e7ea9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26506.png b/front/public/images/large/gregtech/gt.metaitem.01/26506.png deleted file mode 100644 index e1599be81f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26507.png b/front/public/images/large/gregtech/gt.metaitem.01/26507.png deleted file mode 100644 index 79d635e28f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26508.png b/front/public/images/large/gregtech/gt.metaitem.01/26508.png deleted file mode 100644 index 55fce74baf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26509.png b/front/public/images/large/gregtech/gt.metaitem.01/26509.png deleted file mode 100644 index 842f59958a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26510.png b/front/public/images/large/gregtech/gt.metaitem.01/26510.png deleted file mode 100644 index 93e5452cb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26511.png b/front/public/images/large/gregtech/gt.metaitem.01/26511.png deleted file mode 100644 index 9db6682eb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26512.png b/front/public/images/large/gregtech/gt.metaitem.01/26512.png deleted file mode 100644 index 90b56524cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26513.png b/front/public/images/large/gregtech/gt.metaitem.01/26513.png deleted file mode 100644 index 93e5452cb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26514.png b/front/public/images/large/gregtech/gt.metaitem.01/26514.png deleted file mode 100644 index 79d635e28f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26515.png b/front/public/images/large/gregtech/gt.metaitem.01/26515.png deleted file mode 100644 index d7a96046c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26516.png b/front/public/images/large/gregtech/gt.metaitem.01/26516.png deleted file mode 100644 index 7b2c16c40e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26518.png b/front/public/images/large/gregtech/gt.metaitem.01/26518.png deleted file mode 100644 index 10f1ddba1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26519.png b/front/public/images/large/gregtech/gt.metaitem.01/26519.png deleted file mode 100644 index 10f1ddba1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26520.png b/front/public/images/large/gregtech/gt.metaitem.01/26520.png deleted file mode 100644 index ce3bfd95f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26521.png b/front/public/images/large/gregtech/gt.metaitem.01/26521.png deleted file mode 100644 index 73353218ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26522.png b/front/public/images/large/gregtech/gt.metaitem.01/26522.png deleted file mode 100644 index 8d580a6b9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26523.png b/front/public/images/large/gregtech/gt.metaitem.01/26523.png deleted file mode 100644 index 96a2765fe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26524.png b/front/public/images/large/gregtech/gt.metaitem.01/26524.png deleted file mode 100644 index 857f6351ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26525.png b/front/public/images/large/gregtech/gt.metaitem.01/26525.png deleted file mode 100644 index 06c98ce7cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26526.png b/front/public/images/large/gregtech/gt.metaitem.01/26526.png deleted file mode 100644 index e8b3ed75fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26527.png b/front/public/images/large/gregtech/gt.metaitem.01/26527.png deleted file mode 100644 index 9db6682eb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26528.png b/front/public/images/large/gregtech/gt.metaitem.01/26528.png deleted file mode 100644 index 9f24a3c171..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26529.png b/front/public/images/large/gregtech/gt.metaitem.01/26529.png deleted file mode 100644 index 5945a98742..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26530.png b/front/public/images/large/gregtech/gt.metaitem.01/26530.png deleted file mode 100644 index 94774100c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26531.png b/front/public/images/large/gregtech/gt.metaitem.01/26531.png deleted file mode 100644 index 1888297159..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26532.png b/front/public/images/large/gregtech/gt.metaitem.01/26532.png deleted file mode 100644 index dac6d96d95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26533.png b/front/public/images/large/gregtech/gt.metaitem.01/26533.png deleted file mode 100644 index 39651aef3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26534.png b/front/public/images/large/gregtech/gt.metaitem.01/26534.png deleted file mode 100644 index 3654216ac3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26535.png b/front/public/images/large/gregtech/gt.metaitem.01/26535.png deleted file mode 100644 index a78c8615cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26536.png b/front/public/images/large/gregtech/gt.metaitem.01/26536.png deleted file mode 100644 index 48369aacd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26537.png b/front/public/images/large/gregtech/gt.metaitem.01/26537.png deleted file mode 100644 index 133cca0f29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26538.png b/front/public/images/large/gregtech/gt.metaitem.01/26538.png deleted file mode 100644 index 48369aacd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26540.png b/front/public/images/large/gregtech/gt.metaitem.01/26540.png deleted file mode 100644 index 73353218ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26541.png b/front/public/images/large/gregtech/gt.metaitem.01/26541.png deleted file mode 100644 index 6e887fe80d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26542.png b/front/public/images/large/gregtech/gt.metaitem.01/26542.png deleted file mode 100644 index 4245fc6338..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26543.png b/front/public/images/large/gregtech/gt.metaitem.01/26543.png deleted file mode 100644 index 9d9caef87c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26544.png b/front/public/images/large/gregtech/gt.metaitem.01/26544.png deleted file mode 100644 index 8a21072918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26545.png b/front/public/images/large/gregtech/gt.metaitem.01/26545.png deleted file mode 100644 index 99d2a006ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26576.png b/front/public/images/large/gregtech/gt.metaitem.01/26576.png deleted file mode 100644 index 0fdf0dcdb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26581.png b/front/public/images/large/gregtech/gt.metaitem.01/26581.png deleted file mode 100644 index dfbd8d4981..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26582.png b/front/public/images/large/gregtech/gt.metaitem.01/26582.png deleted file mode 100644 index b2867a5f3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26583.png b/front/public/images/large/gregtech/gt.metaitem.01/26583.png deleted file mode 100644 index 362974ecf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26585.png b/front/public/images/large/gregtech/gt.metaitem.01/26585.png deleted file mode 100644 index 6f85173b0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26586.png b/front/public/images/large/gregtech/gt.metaitem.01/26586.png deleted file mode 100644 index 86e4f9ad4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26588.png b/front/public/images/large/gregtech/gt.metaitem.01/26588.png deleted file mode 100644 index 23b37b0772..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26599.png b/front/public/images/large/gregtech/gt.metaitem.01/26599.png deleted file mode 100644 index 89e12730a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26610.png b/front/public/images/large/gregtech/gt.metaitem.01/26610.png deleted file mode 100644 index b405a1128e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26611.png b/front/public/images/large/gregtech/gt.metaitem.01/26611.png deleted file mode 100644 index 92c3fe2ee7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26613.png b/front/public/images/large/gregtech/gt.metaitem.01/26613.png deleted file mode 100644 index bdd53b2f17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26631.png b/front/public/images/large/gregtech/gt.metaitem.01/26631.png deleted file mode 100644 index 816f640370..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26635.png b/front/public/images/large/gregtech/gt.metaitem.01/26635.png deleted file mode 100644 index 24aff2e59b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26636.png b/front/public/images/large/gregtech/gt.metaitem.01/26636.png deleted file mode 100644 index 76d9ca5878..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26649.png b/front/public/images/large/gregtech/gt.metaitem.01/26649.png deleted file mode 100644 index 6f87315e4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2665.png b/front/public/images/large/gregtech/gt.metaitem.01/2665.png deleted file mode 100644 index 5f71f559da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2665.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2676.png b/front/public/images/large/gregtech/gt.metaitem.01/2676.png deleted file mode 100644 index e9d554ec30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2676.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26765.png b/front/public/images/large/gregtech/gt.metaitem.01/26765.png deleted file mode 100644 index 3ed15a182d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26770.png b/front/public/images/large/gregtech/gt.metaitem.01/26770.png deleted file mode 100644 index f497800e76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26772.png b/front/public/images/large/gregtech/gt.metaitem.01/26772.png deleted file mode 100644 index 8ee9fb4c91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26804.png b/front/public/images/large/gregtech/gt.metaitem.01/26804.png deleted file mode 100644 index 9717bf04ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26809.png b/front/public/images/large/gregtech/gt.metaitem.01/26809.png deleted file mode 100644 index ae1cc07657..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26829.png b/front/public/images/large/gregtech/gt.metaitem.01/26829.png deleted file mode 100644 index 68de8d0605..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2685.png b/front/public/images/large/gregtech/gt.metaitem.01/2685.png deleted file mode 100644 index 51b5939f5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2685.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26856.png b/front/public/images/large/gregtech/gt.metaitem.01/26856.png deleted file mode 100644 index 4e0af82214..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26868.png b/front/public/images/large/gregtech/gt.metaitem.01/26868.png deleted file mode 100644 index 6b0859d696..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26874.png b/front/public/images/large/gregtech/gt.metaitem.01/26874.png deleted file mode 100644 index 781f6e168e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26880.png b/front/public/images/large/gregtech/gt.metaitem.01/26880.png deleted file mode 100644 index 86e4f9ad4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26884.png b/front/public/images/large/gregtech/gt.metaitem.01/26884.png deleted file mode 100644 index c2ced22684..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26889.png b/front/public/images/large/gregtech/gt.metaitem.01/26889.png deleted file mode 100644 index 4812ba3291..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26890.png b/front/public/images/large/gregtech/gt.metaitem.01/26890.png deleted file mode 100644 index e1599be81f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26912.png b/front/public/images/large/gregtech/gt.metaitem.01/26912.png deleted file mode 100644 index 0753e3175c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26913.png b/front/public/images/large/gregtech/gt.metaitem.01/26913.png deleted file mode 100644 index 287474b666..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2695.png b/front/public/images/large/gregtech/gt.metaitem.01/2695.png deleted file mode 100644 index 72705c0134..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2695.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26951.png b/front/public/images/large/gregtech/gt.metaitem.01/26951.png deleted file mode 100644 index a641f30724..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26952.png b/front/public/images/large/gregtech/gt.metaitem.01/26952.png deleted file mode 100644 index 6dfe0f2b71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26956.png b/front/public/images/large/gregtech/gt.metaitem.01/26956.png deleted file mode 100644 index c952b3bad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2696.png b/front/public/images/large/gregtech/gt.metaitem.01/2696.png deleted file mode 100644 index 843d5e0f71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2696.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26966.png b/front/public/images/large/gregtech/gt.metaitem.01/26966.png deleted file mode 100644 index c6ac412e91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2697.png b/front/public/images/large/gregtech/gt.metaitem.01/2697.png deleted file mode 100644 index cfac0fcc97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2697.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26970.png b/front/public/images/large/gregtech/gt.metaitem.01/26970.png deleted file mode 100644 index cba3672e91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26974.png b/front/public/images/large/gregtech/gt.metaitem.01/26974.png deleted file mode 100644 index f734e49af8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26975.png b/front/public/images/large/gregtech/gt.metaitem.01/26975.png deleted file mode 100644 index e4216a683d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26976.png b/front/public/images/large/gregtech/gt.metaitem.01/26976.png deleted file mode 100644 index b9b09cca80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26977.png b/front/public/images/large/gregtech/gt.metaitem.01/26977.png deleted file mode 100644 index 6566832b71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26978.png b/front/public/images/large/gregtech/gt.metaitem.01/26978.png deleted file mode 100644 index 2cc6b7b1c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26979.png b/front/public/images/large/gregtech/gt.metaitem.01/26979.png deleted file mode 100644 index da23b194bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2698.png b/front/public/images/large/gregtech/gt.metaitem.01/2698.png deleted file mode 100644 index 2f19dbdc5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2698.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26980.png b/front/public/images/large/gregtech/gt.metaitem.01/26980.png deleted file mode 100644 index 2d14055649..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26981.png b/front/public/images/large/gregtech/gt.metaitem.01/26981.png deleted file mode 100644 index 20ec151e4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26982.png b/front/public/images/large/gregtech/gt.metaitem.01/26982.png deleted file mode 100644 index 462df65f93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26984.png b/front/public/images/large/gregtech/gt.metaitem.01/26984.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26985.png b/front/public/images/large/gregtech/gt.metaitem.01/26985.png deleted file mode 100644 index 97f4463235..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26986.png b/front/public/images/large/gregtech/gt.metaitem.01/26986.png deleted file mode 100644 index a9d2089853..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26987.png b/front/public/images/large/gregtech/gt.metaitem.01/26987.png deleted file mode 100644 index 60181d5fa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26988.png b/front/public/images/large/gregtech/gt.metaitem.01/26988.png deleted file mode 100644 index 843ba050b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26989.png b/front/public/images/large/gregtech/gt.metaitem.01/26989.png deleted file mode 100644 index 252928f6a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2699.png b/front/public/images/large/gregtech/gt.metaitem.01/2699.png deleted file mode 100644 index b1c6540085..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26990.png b/front/public/images/large/gregtech/gt.metaitem.01/26990.png deleted file mode 100644 index 492c8b80e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26991.png b/front/public/images/large/gregtech/gt.metaitem.01/26991.png deleted file mode 100644 index 0bdb4eecfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/26992.png b/front/public/images/large/gregtech/gt.metaitem.01/26992.png deleted file mode 100644 index 45eb81f389..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/26992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27006.png b/front/public/images/large/gregtech/gt.metaitem.01/27006.png deleted file mode 100644 index b2f56b7dbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27008.png b/front/public/images/large/gregtech/gt.metaitem.01/27008.png deleted file mode 100644 index d3d70ce906..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27010.png b/front/public/images/large/gregtech/gt.metaitem.01/27010.png deleted file mode 100644 index f3392c4e1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27018.png b/front/public/images/large/gregtech/gt.metaitem.01/27018.png deleted file mode 100644 index 207e226769..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27019.png b/front/public/images/large/gregtech/gt.metaitem.01/27019.png deleted file mode 100644 index 48104c31ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2702.png b/front/public/images/large/gregtech/gt.metaitem.01/2702.png deleted file mode 100644 index 7a5c852952..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2702.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27020.png b/front/public/images/large/gregtech/gt.metaitem.01/27020.png deleted file mode 100644 index c20c1eee47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27025.png b/front/public/images/large/gregtech/gt.metaitem.01/27025.png deleted file mode 100644 index a290747f59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27027.png b/front/public/images/large/gregtech/gt.metaitem.01/27027.png deleted file mode 100644 index e0fff5ad20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27028.png b/front/public/images/large/gregtech/gt.metaitem.01/27028.png deleted file mode 100644 index 8f18dbd194..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27029.png b/front/public/images/large/gregtech/gt.metaitem.01/27029.png deleted file mode 100644 index 4dd00f2a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27030.png b/front/public/images/large/gregtech/gt.metaitem.01/27030.png deleted file mode 100644 index 8c0110d2da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27031.png b/front/public/images/large/gregtech/gt.metaitem.01/27031.png deleted file mode 100644 index 03b5a7a661..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27032.png b/front/public/images/large/gregtech/gt.metaitem.01/27032.png deleted file mode 100644 index 03b5c48828..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27033.png b/front/public/images/large/gregtech/gt.metaitem.01/27033.png deleted file mode 100644 index b6b6d6618a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27034.png b/front/public/images/large/gregtech/gt.metaitem.01/27034.png deleted file mode 100644 index bf94cb51bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27035.png b/front/public/images/large/gregtech/gt.metaitem.01/27035.png deleted file mode 100644 index 40235a4123..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27036.png b/front/public/images/large/gregtech/gt.metaitem.01/27036.png deleted file mode 100644 index f1f8806955..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27037.png b/front/public/images/large/gregtech/gt.metaitem.01/27037.png deleted file mode 100644 index cff2258761..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27039.png b/front/public/images/large/gregtech/gt.metaitem.01/27039.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27043.png b/front/public/images/large/gregtech/gt.metaitem.01/27043.png deleted file mode 100644 index 6eddd937ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27045.png b/front/public/images/large/gregtech/gt.metaitem.01/27045.png deleted file mode 100644 index 890421ebe7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27047.png b/front/public/images/large/gregtech/gt.metaitem.01/27047.png deleted file mode 100644 index 928200136e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27048.png b/front/public/images/large/gregtech/gt.metaitem.01/27048.png deleted file mode 100644 index 2075b9ba12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27052.png b/front/public/images/large/gregtech/gt.metaitem.01/27052.png deleted file mode 100644 index 2cb670b245..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27054.png b/front/public/images/large/gregtech/gt.metaitem.01/27054.png deleted file mode 100644 index cff2258761..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27056.png b/front/public/images/large/gregtech/gt.metaitem.01/27056.png deleted file mode 100644 index 018aa7bac5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27057.png b/front/public/images/large/gregtech/gt.metaitem.01/27057.png deleted file mode 100644 index ffee7eaa80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27058.png b/front/public/images/large/gregtech/gt.metaitem.01/27058.png deleted file mode 100644 index 14614c9cfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27059.png b/front/public/images/large/gregtech/gt.metaitem.01/27059.png deleted file mode 100644 index 3a85b645e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27062.png b/front/public/images/large/gregtech/gt.metaitem.01/27062.png deleted file mode 100644 index 7fa398d37e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27063.png b/front/public/images/large/gregtech/gt.metaitem.01/27063.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27064.png b/front/public/images/large/gregtech/gt.metaitem.01/27064.png deleted file mode 100644 index 6a9c90b4b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27065.png b/front/public/images/large/gregtech/gt.metaitem.01/27065.png deleted file mode 100644 index aa5421b87b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27066.png b/front/public/images/large/gregtech/gt.metaitem.01/27066.png deleted file mode 100644 index 5a9574b8dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27067.png b/front/public/images/large/gregtech/gt.metaitem.01/27067.png deleted file mode 100644 index d0358a1d71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27068.png b/front/public/images/large/gregtech/gt.metaitem.01/27068.png deleted file mode 100644 index f877636b56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27069.png b/front/public/images/large/gregtech/gt.metaitem.01/27069.png deleted file mode 100644 index 8512ce1928..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27070.png b/front/public/images/large/gregtech/gt.metaitem.01/27070.png deleted file mode 100644 index 4d69e3b996..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27071.png b/front/public/images/large/gregtech/gt.metaitem.01/27071.png deleted file mode 100644 index f4e427994a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27072.png b/front/public/images/large/gregtech/gt.metaitem.01/27072.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27073.png b/front/public/images/large/gregtech/gt.metaitem.01/27073.png deleted file mode 100644 index bbda52feb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27074.png b/front/public/images/large/gregtech/gt.metaitem.01/27074.png deleted file mode 100644 index 597a49a98d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27075.png b/front/public/images/large/gregtech/gt.metaitem.01/27075.png deleted file mode 100644 index d6ff1f3018..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27076.png b/front/public/images/large/gregtech/gt.metaitem.01/27076.png deleted file mode 100644 index e2184d71cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27077.png b/front/public/images/large/gregtech/gt.metaitem.01/27077.png deleted file mode 100644 index ac9d558f19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27078.png b/front/public/images/large/gregtech/gt.metaitem.01/27078.png deleted file mode 100644 index 6bb7391d49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27080.png b/front/public/images/large/gregtech/gt.metaitem.01/27080.png deleted file mode 100644 index 960611401e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27081.png b/front/public/images/large/gregtech/gt.metaitem.01/27081.png deleted file mode 100644 index 4dd00f2a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27083.png b/front/public/images/large/gregtech/gt.metaitem.01/27083.png deleted file mode 100644 index 516b0f28b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27084.png b/front/public/images/large/gregtech/gt.metaitem.01/27084.png deleted file mode 100644 index 7542388d07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27085.png b/front/public/images/large/gregtech/gt.metaitem.01/27085.png deleted file mode 100644 index b600a27f8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27086.png b/front/public/images/large/gregtech/gt.metaitem.01/27086.png deleted file mode 100644 index 4654446e6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27089.png b/front/public/images/large/gregtech/gt.metaitem.01/27089.png deleted file mode 100644 index 99affbd486..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27090.png b/front/public/images/large/gregtech/gt.metaitem.01/27090.png deleted file mode 100644 index fa330c1083..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27096.png b/front/public/images/large/gregtech/gt.metaitem.01/27096.png deleted file mode 100644 index cb95b65fb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27097.png b/front/public/images/large/gregtech/gt.metaitem.01/27097.png deleted file mode 100644 index ce3064a03f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27098.png b/front/public/images/large/gregtech/gt.metaitem.01/27098.png deleted file mode 100644 index fe0676f486..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27100.png b/front/public/images/large/gregtech/gt.metaitem.01/27100.png deleted file mode 100644 index a289a675f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27101.png b/front/public/images/large/gregtech/gt.metaitem.01/27101.png deleted file mode 100644 index 7cd0b85810..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27103.png b/front/public/images/large/gregtech/gt.metaitem.01/27103.png deleted file mode 100644 index 03b5c48828..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27111.png b/front/public/images/large/gregtech/gt.metaitem.01/27111.png deleted file mode 100644 index 41b1aab59e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27112.png b/front/public/images/large/gregtech/gt.metaitem.01/27112.png deleted file mode 100644 index 9182aa5d85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27129.png b/front/public/images/large/gregtech/gt.metaitem.01/27129.png deleted file mode 100644 index 03b5a7a661..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27131.png b/front/public/images/large/gregtech/gt.metaitem.01/27131.png deleted file mode 100644 index 3384bc48f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27134.png b/front/public/images/large/gregtech/gt.metaitem.01/27134.png deleted file mode 100644 index 7172d5f1f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27139.png b/front/public/images/large/gregtech/gt.metaitem.01/27139.png deleted file mode 100644 index cf17842b1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27141.png b/front/public/images/large/gregtech/gt.metaitem.01/27141.png deleted file mode 100644 index 43dbc9875b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27143.png b/front/public/images/large/gregtech/gt.metaitem.01/27143.png deleted file mode 100644 index dadc186a15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2719.png b/front/public/images/large/gregtech/gt.metaitem.01/2719.png deleted file mode 100644 index 927367d5c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2719.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27201.png b/front/public/images/large/gregtech/gt.metaitem.01/27201.png deleted file mode 100644 index 05cfb7c5e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27202.png b/front/public/images/large/gregtech/gt.metaitem.01/27202.png deleted file mode 100644 index f006637677..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27203.png b/front/public/images/large/gregtech/gt.metaitem.01/27203.png deleted file mode 100644 index b5260fc517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27205.png b/front/public/images/large/gregtech/gt.metaitem.01/27205.png deleted file mode 100644 index df0aff1f9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27206.png b/front/public/images/large/gregtech/gt.metaitem.01/27206.png deleted file mode 100644 index 6b8a2c88d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27207.png b/front/public/images/large/gregtech/gt.metaitem.01/27207.png deleted file mode 100644 index 6abad1f067..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27208.png b/front/public/images/large/gregtech/gt.metaitem.01/27208.png deleted file mode 100644 index 6f2278ef65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27209.png b/front/public/images/large/gregtech/gt.metaitem.01/27209.png deleted file mode 100644 index 06828f4229..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2728.png b/front/public/images/large/gregtech/gt.metaitem.01/2728.png deleted file mode 100644 index 4df5d6c1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2728.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27300.png b/front/public/images/large/gregtech/gt.metaitem.01/27300.png deleted file mode 100644 index a9dc4d009b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27301.png b/front/public/images/large/gregtech/gt.metaitem.01/27301.png deleted file mode 100644 index f5b5835be8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27302.png b/front/public/images/large/gregtech/gt.metaitem.01/27302.png deleted file mode 100644 index dadfec25d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27303.png b/front/public/images/large/gregtech/gt.metaitem.01/27303.png deleted file mode 100644 index 2ba109352c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27304.png b/front/public/images/large/gregtech/gt.metaitem.01/27304.png deleted file mode 100644 index b6a277bf9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27305.png b/front/public/images/large/gregtech/gt.metaitem.01/27305.png deleted file mode 100644 index 2cb670b245..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27306.png b/front/public/images/large/gregtech/gt.metaitem.01/27306.png deleted file mode 100644 index 8c35c9b1d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27307.png b/front/public/images/large/gregtech/gt.metaitem.01/27307.png deleted file mode 100644 index b6a277bf9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27308.png b/front/public/images/large/gregtech/gt.metaitem.01/27308.png deleted file mode 100644 index be02b6be0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27309.png b/front/public/images/large/gregtech/gt.metaitem.01/27309.png deleted file mode 100644 index 6d4b4e4166..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27310.png b/front/public/images/large/gregtech/gt.metaitem.01/27310.png deleted file mode 100644 index 1140c5a6b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27311.png b/front/public/images/large/gregtech/gt.metaitem.01/27311.png deleted file mode 100644 index dbdb286e40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27312.png b/front/public/images/large/gregtech/gt.metaitem.01/27312.png deleted file mode 100644 index eef38c5024..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27313.png b/front/public/images/large/gregtech/gt.metaitem.01/27313.png deleted file mode 100644 index 42f7d1ac38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27314.png b/front/public/images/large/gregtech/gt.metaitem.01/27314.png deleted file mode 100644 index b76ca86303..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27315.png b/front/public/images/large/gregtech/gt.metaitem.01/27315.png deleted file mode 100644 index fca3a7dc54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27316.png b/front/public/images/large/gregtech/gt.metaitem.01/27316.png deleted file mode 100644 index 18f867b8f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27317.png b/front/public/images/large/gregtech/gt.metaitem.01/27317.png deleted file mode 100644 index 4d32c8970e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27318.png b/front/public/images/large/gregtech/gt.metaitem.01/27318.png deleted file mode 100644 index 128d3e2c7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27319.png b/front/public/images/large/gregtech/gt.metaitem.01/27319.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27320.png b/front/public/images/large/gregtech/gt.metaitem.01/27320.png deleted file mode 100644 index 24e66d3514..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27321.png b/front/public/images/large/gregtech/gt.metaitem.01/27321.png deleted file mode 100644 index 04a3c9f638..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27323.png b/front/public/images/large/gregtech/gt.metaitem.01/27323.png deleted file mode 100644 index 7543202086..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27324.png b/front/public/images/large/gregtech/gt.metaitem.01/27324.png deleted file mode 100644 index 4dd00f2a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27325.png b/front/public/images/large/gregtech/gt.metaitem.01/27325.png deleted file mode 100644 index 675f3c9caa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27326.png b/front/public/images/large/gregtech/gt.metaitem.01/27326.png deleted file mode 100644 index eb773a3252..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27327.png b/front/public/images/large/gregtech/gt.metaitem.01/27327.png deleted file mode 100644 index 207fd5cabc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27328.png b/front/public/images/large/gregtech/gt.metaitem.01/27328.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27329.png b/front/public/images/large/gregtech/gt.metaitem.01/27329.png deleted file mode 100644 index 1346bdaa64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27330.png b/front/public/images/large/gregtech/gt.metaitem.01/27330.png deleted file mode 100644 index 2ebf33b389..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27331.png b/front/public/images/large/gregtech/gt.metaitem.01/27331.png deleted file mode 100644 index 938c89949a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27333.png b/front/public/images/large/gregtech/gt.metaitem.01/27333.png deleted file mode 100644 index 959b2ceaac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27334.png b/front/public/images/large/gregtech/gt.metaitem.01/27334.png deleted file mode 100644 index d0358a1d71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27335.png b/front/public/images/large/gregtech/gt.metaitem.01/27335.png deleted file mode 100644 index b2d99eb651..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27336.png b/front/public/images/large/gregtech/gt.metaitem.01/27336.png deleted file mode 100644 index 81dacd697f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27337.png b/front/public/images/large/gregtech/gt.metaitem.01/27337.png deleted file mode 100644 index e4de76c6fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27338.png b/front/public/images/large/gregtech/gt.metaitem.01/27338.png deleted file mode 100644 index 40c0d5bd28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27339.png b/front/public/images/large/gregtech/gt.metaitem.01/27339.png deleted file mode 100644 index 37c72d232c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27340.png b/front/public/images/large/gregtech/gt.metaitem.01/27340.png deleted file mode 100644 index 02836e0f38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27341.png b/front/public/images/large/gregtech/gt.metaitem.01/27341.png deleted file mode 100644 index 93feb3bc9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27342.png b/front/public/images/large/gregtech/gt.metaitem.01/27342.png deleted file mode 100644 index 0b83d76ef7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27343.png b/front/public/images/large/gregtech/gt.metaitem.01/27343.png deleted file mode 100644 index 1b55715c37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27344.png b/front/public/images/large/gregtech/gt.metaitem.01/27344.png deleted file mode 100644 index 9c71abbfe4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27345.png b/front/public/images/large/gregtech/gt.metaitem.01/27345.png deleted file mode 100644 index 95aff904e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27346.png b/front/public/images/large/gregtech/gt.metaitem.01/27346.png deleted file mode 100644 index 0d5421e69e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27347.png b/front/public/images/large/gregtech/gt.metaitem.01/27347.png deleted file mode 100644 index 0670db9c71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27348.png b/front/public/images/large/gregtech/gt.metaitem.01/27348.png deleted file mode 100644 index 5e710a70e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27349.png b/front/public/images/large/gregtech/gt.metaitem.01/27349.png deleted file mode 100644 index 90d594af23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27350.png b/front/public/images/large/gregtech/gt.metaitem.01/27350.png deleted file mode 100644 index 3008650913..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27351.png b/front/public/images/large/gregtech/gt.metaitem.01/27351.png deleted file mode 100644 index 4a3a9f1dc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27352.png b/front/public/images/large/gregtech/gt.metaitem.01/27352.png deleted file mode 100644 index 599e077a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27353.png b/front/public/images/large/gregtech/gt.metaitem.01/27353.png deleted file mode 100644 index 6c14e8f099..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27354.png b/front/public/images/large/gregtech/gt.metaitem.01/27354.png deleted file mode 100644 index 5ba2582755..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27355.png b/front/public/images/large/gregtech/gt.metaitem.01/27355.png deleted file mode 100644 index 66ea33704b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27356.png b/front/public/images/large/gregtech/gt.metaitem.01/27356.png deleted file mode 100644 index 6f76381c20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27357.png b/front/public/images/large/gregtech/gt.metaitem.01/27357.png deleted file mode 100644 index a15f29003b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27358.png b/front/public/images/large/gregtech/gt.metaitem.01/27358.png deleted file mode 100644 index c9fb3a8a1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27359.png b/front/public/images/large/gregtech/gt.metaitem.01/27359.png deleted file mode 100644 index 752a5947ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27360.png b/front/public/images/large/gregtech/gt.metaitem.01/27360.png deleted file mode 100644 index 25bf6e4240..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27361.png b/front/public/images/large/gregtech/gt.metaitem.01/27361.png deleted file mode 100644 index 77349d4ae9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27362.png b/front/public/images/large/gregtech/gt.metaitem.01/27362.png deleted file mode 100644 index c6f916139e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27363.png b/front/public/images/large/gregtech/gt.metaitem.01/27363.png deleted file mode 100644 index 03b5c48828..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27364.png b/front/public/images/large/gregtech/gt.metaitem.01/27364.png deleted file mode 100644 index afcd04bc6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27365.png b/front/public/images/large/gregtech/gt.metaitem.01/27365.png deleted file mode 100644 index 291253db83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27366.png b/front/public/images/large/gregtech/gt.metaitem.01/27366.png deleted file mode 100644 index 9b05e88e19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27367.png b/front/public/images/large/gregtech/gt.metaitem.01/27367.png deleted file mode 100644 index d1f4f2ecd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27368.png b/front/public/images/large/gregtech/gt.metaitem.01/27368.png deleted file mode 100644 index 746c39ccb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27369.png b/front/public/images/large/gregtech/gt.metaitem.01/27369.png deleted file mode 100644 index 9ab7a0cc8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27370.png b/front/public/images/large/gregtech/gt.metaitem.01/27370.png deleted file mode 100644 index a82ea3bd65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27371.png b/front/public/images/large/gregtech/gt.metaitem.01/27371.png deleted file mode 100644 index 30c7caf053..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27372.png b/front/public/images/large/gregtech/gt.metaitem.01/27372.png deleted file mode 100644 index 6e38354ed1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27373.png b/front/public/images/large/gregtech/gt.metaitem.01/27373.png deleted file mode 100644 index d9a6980937..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27374.png b/front/public/images/large/gregtech/gt.metaitem.01/27374.png deleted file mode 100644 index cbac9ac53b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27378.png b/front/public/images/large/gregtech/gt.metaitem.01/27378.png deleted file mode 100644 index 43915b6d3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27379.png b/front/public/images/large/gregtech/gt.metaitem.01/27379.png deleted file mode 100644 index 853a05dac8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27380.png b/front/public/images/large/gregtech/gt.metaitem.01/27380.png deleted file mode 100644 index d21927f4ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27381.png b/front/public/images/large/gregtech/gt.metaitem.01/27381.png deleted file mode 100644 index 2527439d5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27382.png b/front/public/images/large/gregtech/gt.metaitem.01/27382.png deleted file mode 100644 index e40c0de614..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27383.png b/front/public/images/large/gregtech/gt.metaitem.01/27383.png deleted file mode 100644 index b17b8f6e69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27384.png b/front/public/images/large/gregtech/gt.metaitem.01/27384.png deleted file mode 100644 index 08088c2191..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27385.png b/front/public/images/large/gregtech/gt.metaitem.01/27385.png deleted file mode 100644 index 6159f52d26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27386.png b/front/public/images/large/gregtech/gt.metaitem.01/27386.png deleted file mode 100644 index 0c7762b3d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27387.png b/front/public/images/large/gregtech/gt.metaitem.01/27387.png deleted file mode 100644 index 20cfdfe17a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27388.png b/front/public/images/large/gregtech/gt.metaitem.01/27388.png deleted file mode 100644 index 4dd00f2a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27389.png b/front/public/images/large/gregtech/gt.metaitem.01/27389.png deleted file mode 100644 index 3872a75747..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27390.png b/front/public/images/large/gregtech/gt.metaitem.01/27390.png deleted file mode 100644 index 931d789025..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27391.png b/front/public/images/large/gregtech/gt.metaitem.01/27391.png deleted file mode 100644 index 93f2d5e605..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27392.png b/front/public/images/large/gregtech/gt.metaitem.01/27392.png deleted file mode 100644 index db0819b7d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27393.png b/front/public/images/large/gregtech/gt.metaitem.01/27393.png deleted file mode 100644 index db69401fac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27394.png b/front/public/images/large/gregtech/gt.metaitem.01/27394.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27395.png b/front/public/images/large/gregtech/gt.metaitem.01/27395.png deleted file mode 100644 index 4dd00f2a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27397.png b/front/public/images/large/gregtech/gt.metaitem.01/27397.png deleted file mode 100644 index ebb83628e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27398.png b/front/public/images/large/gregtech/gt.metaitem.01/27398.png deleted file mode 100644 index 7458a675ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27399.png b/front/public/images/large/gregtech/gt.metaitem.01/27399.png deleted file mode 100644 index 8679aeb8c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27400.png b/front/public/images/large/gregtech/gt.metaitem.01/27400.png deleted file mode 100644 index af335f4cae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27401.png b/front/public/images/large/gregtech/gt.metaitem.01/27401.png deleted file mode 100644 index a2d788e328..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27402.png b/front/public/images/large/gregtech/gt.metaitem.01/27402.png deleted file mode 100644 index 021b288d3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27403.png b/front/public/images/large/gregtech/gt.metaitem.01/27403.png deleted file mode 100644 index 0f8d6cf744..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27404.png b/front/public/images/large/gregtech/gt.metaitem.01/27404.png deleted file mode 100644 index 165a3eb737..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27405.png b/front/public/images/large/gregtech/gt.metaitem.01/27405.png deleted file mode 100644 index f0e107cbc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27406.png b/front/public/images/large/gregtech/gt.metaitem.01/27406.png deleted file mode 100644 index 94cf075b47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27407.png b/front/public/images/large/gregtech/gt.metaitem.01/27407.png deleted file mode 100644 index 14e81222bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27408.png b/front/public/images/large/gregtech/gt.metaitem.01/27408.png deleted file mode 100644 index aab183b1cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2744.png b/front/public/images/large/gregtech/gt.metaitem.01/2744.png deleted file mode 100644 index 5d89d1b9b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2744.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27470.png b/front/public/images/large/gregtech/gt.metaitem.01/27470.png deleted file mode 100644 index 9130ff3989..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27471.png b/front/public/images/large/gregtech/gt.metaitem.01/27471.png deleted file mode 100644 index ffee7eaa80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27472.png b/front/public/images/large/gregtech/gt.metaitem.01/27472.png deleted file mode 100644 index 4dd00f2a37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27473.png b/front/public/images/large/gregtech/gt.metaitem.01/27473.png deleted file mode 100644 index d0358a1d71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27485.png b/front/public/images/large/gregtech/gt.metaitem.01/27485.png deleted file mode 100644 index 3edcbdf439..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27488.png b/front/public/images/large/gregtech/gt.metaitem.01/27488.png deleted file mode 100644 index 857c804c0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27489.png b/front/public/images/large/gregtech/gt.metaitem.01/27489.png deleted file mode 100644 index cce5cf325f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2749.png b/front/public/images/large/gregtech/gt.metaitem.01/2749.png deleted file mode 100644 index 2970cdeda0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27500.png b/front/public/images/large/gregtech/gt.metaitem.01/27500.png deleted file mode 100644 index 5ace8554c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27501.png b/front/public/images/large/gregtech/gt.metaitem.01/27501.png deleted file mode 100644 index bf502dc19a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27502.png b/front/public/images/large/gregtech/gt.metaitem.01/27502.png deleted file mode 100644 index 212d070151..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27503.png b/front/public/images/large/gregtech/gt.metaitem.01/27503.png deleted file mode 100644 index e8e3f3358a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27504.png b/front/public/images/large/gregtech/gt.metaitem.01/27504.png deleted file mode 100644 index c33076d02f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27505.png b/front/public/images/large/gregtech/gt.metaitem.01/27505.png deleted file mode 100644 index 2d5a714e44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27506.png b/front/public/images/large/gregtech/gt.metaitem.01/27506.png deleted file mode 100644 index 03b5a7a661..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27507.png b/front/public/images/large/gregtech/gt.metaitem.01/27507.png deleted file mode 100644 index a9dc4d009b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27508.png b/front/public/images/large/gregtech/gt.metaitem.01/27508.png deleted file mode 100644 index 6688a1a24c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27509.png b/front/public/images/large/gregtech/gt.metaitem.01/27509.png deleted file mode 100644 index a5bf47e1f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2751.png b/front/public/images/large/gregtech/gt.metaitem.01/2751.png deleted file mode 100644 index 8f7dd5cb1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27510.png b/front/public/images/large/gregtech/gt.metaitem.01/27510.png deleted file mode 100644 index f34f456660..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27511.png b/front/public/images/large/gregtech/gt.metaitem.01/27511.png deleted file mode 100644 index 72eaf447ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27512.png b/front/public/images/large/gregtech/gt.metaitem.01/27512.png deleted file mode 100644 index 212d070151..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27513.png b/front/public/images/large/gregtech/gt.metaitem.01/27513.png deleted file mode 100644 index f34f456660..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27514.png b/front/public/images/large/gregtech/gt.metaitem.01/27514.png deleted file mode 100644 index a9dc4d009b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27515.png b/front/public/images/large/gregtech/gt.metaitem.01/27515.png deleted file mode 100644 index 63f2e0fb06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27516.png b/front/public/images/large/gregtech/gt.metaitem.01/27516.png deleted file mode 100644 index 9425242216..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27518.png b/front/public/images/large/gregtech/gt.metaitem.01/27518.png deleted file mode 100644 index d27581b4e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27519.png b/front/public/images/large/gregtech/gt.metaitem.01/27519.png deleted file mode 100644 index d27581b4e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27520.png b/front/public/images/large/gregtech/gt.metaitem.01/27520.png deleted file mode 100644 index 0faaba212d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27521.png b/front/public/images/large/gregtech/gt.metaitem.01/27521.png deleted file mode 100644 index 128d3e2c7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27522.png b/front/public/images/large/gregtech/gt.metaitem.01/27522.png deleted file mode 100644 index d6ac7cf481..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27523.png b/front/public/images/large/gregtech/gt.metaitem.01/27523.png deleted file mode 100644 index c48bdc43a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27524.png b/front/public/images/large/gregtech/gt.metaitem.01/27524.png deleted file mode 100644 index bf32afb371..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27525.png b/front/public/images/large/gregtech/gt.metaitem.01/27525.png deleted file mode 100644 index 5d5e8c3559..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27526.png b/front/public/images/large/gregtech/gt.metaitem.01/27526.png deleted file mode 100644 index 6275d1cc48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27527.png b/front/public/images/large/gregtech/gt.metaitem.01/27527.png deleted file mode 100644 index 72eaf447ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27528.png b/front/public/images/large/gregtech/gt.metaitem.01/27528.png deleted file mode 100644 index 52dc3f468e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27529.png b/front/public/images/large/gregtech/gt.metaitem.01/27529.png deleted file mode 100644 index e62b1e9584..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2753.png b/front/public/images/large/gregtech/gt.metaitem.01/2753.png deleted file mode 100644 index 2970cdeda0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2753.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27530.png b/front/public/images/large/gregtech/gt.metaitem.01/27530.png deleted file mode 100644 index aa1acfeef8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27531.png b/front/public/images/large/gregtech/gt.metaitem.01/27531.png deleted file mode 100644 index 207e226769..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27532.png b/front/public/images/large/gregtech/gt.metaitem.01/27532.png deleted file mode 100644 index 2074570599..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27533.png b/front/public/images/large/gregtech/gt.metaitem.01/27533.png deleted file mode 100644 index a5abc6633f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27534.png b/front/public/images/large/gregtech/gt.metaitem.01/27534.png deleted file mode 100644 index 0b697c3715..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27535.png b/front/public/images/large/gregtech/gt.metaitem.01/27535.png deleted file mode 100644 index 91cc55e768..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27536.png b/front/public/images/large/gregtech/gt.metaitem.01/27536.png deleted file mode 100644 index d75a301723..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27537.png b/front/public/images/large/gregtech/gt.metaitem.01/27537.png deleted file mode 100644 index e93b01c37a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27538.png b/front/public/images/large/gregtech/gt.metaitem.01/27538.png deleted file mode 100644 index d75a301723..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2754.png b/front/public/images/large/gregtech/gt.metaitem.01/2754.png deleted file mode 100644 index 564fdbc542..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2754.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27540.png b/front/public/images/large/gregtech/gt.metaitem.01/27540.png deleted file mode 100644 index 128d3e2c7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27541.png b/front/public/images/large/gregtech/gt.metaitem.01/27541.png deleted file mode 100644 index 97dfda5b71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27542.png b/front/public/images/large/gregtech/gt.metaitem.01/27542.png deleted file mode 100644 index a7c4109a21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27543.png b/front/public/images/large/gregtech/gt.metaitem.01/27543.png deleted file mode 100644 index 97c3f145af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27544.png b/front/public/images/large/gregtech/gt.metaitem.01/27544.png deleted file mode 100644 index b9d371f8e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27545.png b/front/public/images/large/gregtech/gt.metaitem.01/27545.png deleted file mode 100644 index c0576d0ab2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2755.png b/front/public/images/large/gregtech/gt.metaitem.01/2755.png deleted file mode 100644 index 2970cdeda0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2755.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2756.png b/front/public/images/large/gregtech/gt.metaitem.01/2756.png deleted file mode 100644 index f86fe25ca5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2756.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2757.png b/front/public/images/large/gregtech/gt.metaitem.01/2757.png deleted file mode 100644 index f86fe25ca5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2757.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27576.png b/front/public/images/large/gregtech/gt.metaitem.01/27576.png deleted file mode 100644 index 10b7dbae62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2758.png b/front/public/images/large/gregtech/gt.metaitem.01/2758.png deleted file mode 100644 index 1132af2529..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2758.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27581.png b/front/public/images/large/gregtech/gt.metaitem.01/27581.png deleted file mode 100644 index 6178b83534..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27582.png b/front/public/images/large/gregtech/gt.metaitem.01/27582.png deleted file mode 100644 index 4e8c11eadf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27583.png b/front/public/images/large/gregtech/gt.metaitem.01/27583.png deleted file mode 100644 index 916f4b3bb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27585.png b/front/public/images/large/gregtech/gt.metaitem.01/27585.png deleted file mode 100644 index 43a9500135..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27586.png b/front/public/images/large/gregtech/gt.metaitem.01/27586.png deleted file mode 100644 index def8a99de2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27588.png b/front/public/images/large/gregtech/gt.metaitem.01/27588.png deleted file mode 100644 index 8b58c2e9db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2759.png b/front/public/images/large/gregtech/gt.metaitem.01/2759.png deleted file mode 100644 index 7bac3f736a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2759.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27599.png b/front/public/images/large/gregtech/gt.metaitem.01/27599.png deleted file mode 100644 index 9a92dc4652..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2761.png b/front/public/images/large/gregtech/gt.metaitem.01/2761.png deleted file mode 100644 index 73b4d14052..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2761.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27610.png b/front/public/images/large/gregtech/gt.metaitem.01/27610.png deleted file mode 100644 index 4f3fe842ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27611.png b/front/public/images/large/gregtech/gt.metaitem.01/27611.png deleted file mode 100644 index 9060583225..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27613.png b/front/public/images/large/gregtech/gt.metaitem.01/27613.png deleted file mode 100644 index 233124dad3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27631.png b/front/public/images/large/gregtech/gt.metaitem.01/27631.png deleted file mode 100644 index f8262ff2de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27635.png b/front/public/images/large/gregtech/gt.metaitem.01/27635.png deleted file mode 100644 index b3a26f9635..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27636.png b/front/public/images/large/gregtech/gt.metaitem.01/27636.png deleted file mode 100644 index 22cd95bb52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27649.png b/front/public/images/large/gregtech/gt.metaitem.01/27649.png deleted file mode 100644 index eac292a235..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2765.png b/front/public/images/large/gregtech/gt.metaitem.01/2765.png deleted file mode 100644 index 749143fa4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2769.png b/front/public/images/large/gregtech/gt.metaitem.01/2769.png deleted file mode 100644 index 492d0ce6dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2769.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2770.png b/front/public/images/large/gregtech/gt.metaitem.01/2770.png deleted file mode 100644 index e28c39135a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2771.png b/front/public/images/large/gregtech/gt.metaitem.01/2771.png deleted file mode 100644 index 9f9780c491..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2771.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2772.png b/front/public/images/large/gregtech/gt.metaitem.01/2772.png deleted file mode 100644 index a57f841f23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2773.png b/front/public/images/large/gregtech/gt.metaitem.01/2773.png deleted file mode 100644 index 47e4399bde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2773.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2775.png b/front/public/images/large/gregtech/gt.metaitem.01/2775.png deleted file mode 100644 index 229245d0d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2775.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27765.png b/front/public/images/large/gregtech/gt.metaitem.01/27765.png deleted file mode 100644 index c85fccbc30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27770.png b/front/public/images/large/gregtech/gt.metaitem.01/27770.png deleted file mode 100644 index 98ed069f9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27772.png b/front/public/images/large/gregtech/gt.metaitem.01/27772.png deleted file mode 100644 index aec347cc3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2779.png b/front/public/images/large/gregtech/gt.metaitem.01/2779.png deleted file mode 100644 index f50505ac70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2779.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27804.png b/front/public/images/large/gregtech/gt.metaitem.01/27804.png deleted file mode 100644 index 6b310d1c6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27809.png b/front/public/images/large/gregtech/gt.metaitem.01/27809.png deleted file mode 100644 index 78676f52c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2782.png b/front/public/images/large/gregtech/gt.metaitem.01/2782.png deleted file mode 100644 index e1a7c4a8a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2782.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27829.png b/front/public/images/large/gregtech/gt.metaitem.01/27829.png deleted file mode 100644 index da721740ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2785.png b/front/public/images/large/gregtech/gt.metaitem.01/2785.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2785.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27856.png b/front/public/images/large/gregtech/gt.metaitem.01/27856.png deleted file mode 100644 index 80ea2eca06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27868.png b/front/public/images/large/gregtech/gt.metaitem.01/27868.png deleted file mode 100644 index 984f79b268..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27874.png b/front/public/images/large/gregtech/gt.metaitem.01/27874.png deleted file mode 100644 index 03b5c48828..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27880.png b/front/public/images/large/gregtech/gt.metaitem.01/27880.png deleted file mode 100644 index def8a99de2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27884.png b/front/public/images/large/gregtech/gt.metaitem.01/27884.png deleted file mode 100644 index 675f3c9caa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27889.png b/front/public/images/large/gregtech/gt.metaitem.01/27889.png deleted file mode 100644 index b16b9f6433..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27890.png b/front/public/images/large/gregtech/gt.metaitem.01/27890.png deleted file mode 100644 index 03b5a7a661..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2790.png b/front/public/images/large/gregtech/gt.metaitem.01/2790.png deleted file mode 100644 index 3a612f5152..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2790.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27912.png b/front/public/images/large/gregtech/gt.metaitem.01/27912.png deleted file mode 100644 index efb53c6be6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27913.png b/front/public/images/large/gregtech/gt.metaitem.01/27913.png deleted file mode 100644 index 5e710a70e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27951.png b/front/public/images/large/gregtech/gt.metaitem.01/27951.png deleted file mode 100644 index 0a8dd36ff2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27952.png b/front/public/images/large/gregtech/gt.metaitem.01/27952.png deleted file mode 100644 index 1da17195d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27956.png b/front/public/images/large/gregtech/gt.metaitem.01/27956.png deleted file mode 100644 index 6f7b6c32aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2796.png b/front/public/images/large/gregtech/gt.metaitem.01/2796.png deleted file mode 100644 index f2b2783295..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2796.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27966.png b/front/public/images/large/gregtech/gt.metaitem.01/27966.png deleted file mode 100644 index f11b6e3ce2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2797.png b/front/public/images/large/gregtech/gt.metaitem.01/2797.png deleted file mode 100644 index 9a3bc4d1a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2797.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27970.png b/front/public/images/large/gregtech/gt.metaitem.01/27970.png deleted file mode 100644 index 9ca01d9429..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27974.png b/front/public/images/large/gregtech/gt.metaitem.01/27974.png deleted file mode 100644 index 7d646488d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27975.png b/front/public/images/large/gregtech/gt.metaitem.01/27975.png deleted file mode 100644 index e83eb49945..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27976.png b/front/public/images/large/gregtech/gt.metaitem.01/27976.png deleted file mode 100644 index 98bbe61612..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27977.png b/front/public/images/large/gregtech/gt.metaitem.01/27977.png deleted file mode 100644 index 0dcfbd86fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27978.png b/front/public/images/large/gregtech/gt.metaitem.01/27978.png deleted file mode 100644 index 861b15cf37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27979.png b/front/public/images/large/gregtech/gt.metaitem.01/27979.png deleted file mode 100644 index 6dac9fe3f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27980.png b/front/public/images/large/gregtech/gt.metaitem.01/27980.png deleted file mode 100644 index ca6617e364..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27981.png b/front/public/images/large/gregtech/gt.metaitem.01/27981.png deleted file mode 100644 index 00410c49c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27982.png b/front/public/images/large/gregtech/gt.metaitem.01/27982.png deleted file mode 100644 index 40f3c66003..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27984.png b/front/public/images/large/gregtech/gt.metaitem.01/27984.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27985.png b/front/public/images/large/gregtech/gt.metaitem.01/27985.png deleted file mode 100644 index 650ad87eac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27986.png b/front/public/images/large/gregtech/gt.metaitem.01/27986.png deleted file mode 100644 index 4cde253cd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27987.png b/front/public/images/large/gregtech/gt.metaitem.01/27987.png deleted file mode 100644 index 637a3cfbb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27988.png b/front/public/images/large/gregtech/gt.metaitem.01/27988.png deleted file mode 100644 index 36f6b030f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27989.png b/front/public/images/large/gregtech/gt.metaitem.01/27989.png deleted file mode 100644 index b019f8b217..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27990.png b/front/public/images/large/gregtech/gt.metaitem.01/27990.png deleted file mode 100644 index c65f4d62fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27991.png b/front/public/images/large/gregtech/gt.metaitem.01/27991.png deleted file mode 100644 index d9d592c8fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/27992.png b/front/public/images/large/gregtech/gt.metaitem.01/27992.png deleted file mode 100644 index 73561e90ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/27992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28006.png b/front/public/images/large/gregtech/gt.metaitem.01/28006.png deleted file mode 100644 index be111e75b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28008.png b/front/public/images/large/gregtech/gt.metaitem.01/28008.png deleted file mode 100644 index 299b139594..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28010.png b/front/public/images/large/gregtech/gt.metaitem.01/28010.png deleted file mode 100644 index 0cd588dd92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28018.png b/front/public/images/large/gregtech/gt.metaitem.01/28018.png deleted file mode 100644 index 47c8c9fe7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28019.png b/front/public/images/large/gregtech/gt.metaitem.01/28019.png deleted file mode 100644 index 339c44911a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2802.png b/front/public/images/large/gregtech/gt.metaitem.01/2802.png deleted file mode 100644 index 6d62ba40ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2802.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28020.png b/front/public/images/large/gregtech/gt.metaitem.01/28020.png deleted file mode 100644 index 6673e6e62d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28025.png b/front/public/images/large/gregtech/gt.metaitem.01/28025.png deleted file mode 100644 index e18c9a7aba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28027.png b/front/public/images/large/gregtech/gt.metaitem.01/28027.png deleted file mode 100644 index d85ec2bc62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28028.png b/front/public/images/large/gregtech/gt.metaitem.01/28028.png deleted file mode 100644 index db530dfa5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28029.png b/front/public/images/large/gregtech/gt.metaitem.01/28029.png deleted file mode 100644 index 279bfcd9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28030.png b/front/public/images/large/gregtech/gt.metaitem.01/28030.png deleted file mode 100644 index c35a8fe9d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28031.png b/front/public/images/large/gregtech/gt.metaitem.01/28031.png deleted file mode 100644 index 4d46cfc7f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28032.png b/front/public/images/large/gregtech/gt.metaitem.01/28032.png deleted file mode 100644 index 0d6d3f8ecf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28033.png b/front/public/images/large/gregtech/gt.metaitem.01/28033.png deleted file mode 100644 index a8e557a163..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28034.png b/front/public/images/large/gregtech/gt.metaitem.01/28034.png deleted file mode 100644 index 237e8ecec0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28035.png b/front/public/images/large/gregtech/gt.metaitem.01/28035.png deleted file mode 100644 index adc1191189..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28036.png b/front/public/images/large/gregtech/gt.metaitem.01/28036.png deleted file mode 100644 index 32c9fe6a90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28037.png b/front/public/images/large/gregtech/gt.metaitem.01/28037.png deleted file mode 100644 index 3a696bbc35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28039.png b/front/public/images/large/gregtech/gt.metaitem.01/28039.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2804.png b/front/public/images/large/gregtech/gt.metaitem.01/2804.png deleted file mode 100644 index f85ec58323..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28043.png b/front/public/images/large/gregtech/gt.metaitem.01/28043.png deleted file mode 100644 index 944769d553..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28045.png b/front/public/images/large/gregtech/gt.metaitem.01/28045.png deleted file mode 100644 index de8b6b226f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28047.png b/front/public/images/large/gregtech/gt.metaitem.01/28047.png deleted file mode 100644 index 4436b43a3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28048.png b/front/public/images/large/gregtech/gt.metaitem.01/28048.png deleted file mode 100644 index 91e9252506..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2805.png b/front/public/images/large/gregtech/gt.metaitem.01/2805.png deleted file mode 100644 index 3537c9eeeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2805.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28052.png b/front/public/images/large/gregtech/gt.metaitem.01/28052.png deleted file mode 100644 index aeeb72f6b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28054.png b/front/public/images/large/gregtech/gt.metaitem.01/28054.png deleted file mode 100644 index 3a696bbc35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28056.png b/front/public/images/large/gregtech/gt.metaitem.01/28056.png deleted file mode 100644 index df20fedb6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28057.png b/front/public/images/large/gregtech/gt.metaitem.01/28057.png deleted file mode 100644 index a863b97274..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28058.png b/front/public/images/large/gregtech/gt.metaitem.01/28058.png deleted file mode 100644 index acb5f06a4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28059.png b/front/public/images/large/gregtech/gt.metaitem.01/28059.png deleted file mode 100644 index 95fa63e9cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28062.png b/front/public/images/large/gregtech/gt.metaitem.01/28062.png deleted file mode 100644 index 38f9179614..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28063.png b/front/public/images/large/gregtech/gt.metaitem.01/28063.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28064.png b/front/public/images/large/gregtech/gt.metaitem.01/28064.png deleted file mode 100644 index 524f0a525c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28065.png b/front/public/images/large/gregtech/gt.metaitem.01/28065.png deleted file mode 100644 index f946d407b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28066.png b/front/public/images/large/gregtech/gt.metaitem.01/28066.png deleted file mode 100644 index 8770a28685..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28067.png b/front/public/images/large/gregtech/gt.metaitem.01/28067.png deleted file mode 100644 index 3ef5136135..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28068.png b/front/public/images/large/gregtech/gt.metaitem.01/28068.png deleted file mode 100644 index 48169b4686..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28069.png b/front/public/images/large/gregtech/gt.metaitem.01/28069.png deleted file mode 100644 index a827b1d860..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2807.png b/front/public/images/large/gregtech/gt.metaitem.01/2807.png deleted file mode 100644 index f06d6135e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2807.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28070.png b/front/public/images/large/gregtech/gt.metaitem.01/28070.png deleted file mode 100644 index 9820e60999..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28071.png b/front/public/images/large/gregtech/gt.metaitem.01/28071.png deleted file mode 100644 index df29085456..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28072.png b/front/public/images/large/gregtech/gt.metaitem.01/28072.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28073.png b/front/public/images/large/gregtech/gt.metaitem.01/28073.png deleted file mode 100644 index 4333fcf312..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28074.png b/front/public/images/large/gregtech/gt.metaitem.01/28074.png deleted file mode 100644 index 053fb9807a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28075.png b/front/public/images/large/gregtech/gt.metaitem.01/28075.png deleted file mode 100644 index 7769aa9686..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28076.png b/front/public/images/large/gregtech/gt.metaitem.01/28076.png deleted file mode 100644 index 320f3a254f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28077.png b/front/public/images/large/gregtech/gt.metaitem.01/28077.png deleted file mode 100644 index 279f3fd49e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28078.png b/front/public/images/large/gregtech/gt.metaitem.01/28078.png deleted file mode 100644 index ef632fbe91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2808.png b/front/public/images/large/gregtech/gt.metaitem.01/2808.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2808.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28080.png b/front/public/images/large/gregtech/gt.metaitem.01/28080.png deleted file mode 100644 index d58dd98d1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28081.png b/front/public/images/large/gregtech/gt.metaitem.01/28081.png deleted file mode 100644 index 279bfcd9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28083.png b/front/public/images/large/gregtech/gt.metaitem.01/28083.png deleted file mode 100644 index be4ac28440..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28084.png b/front/public/images/large/gregtech/gt.metaitem.01/28084.png deleted file mode 100644 index d2f71f6845..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28085.png b/front/public/images/large/gregtech/gt.metaitem.01/28085.png deleted file mode 100644 index f3dc070e7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28086.png b/front/public/images/large/gregtech/gt.metaitem.01/28086.png deleted file mode 100644 index 147722ac09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28089.png b/front/public/images/large/gregtech/gt.metaitem.01/28089.png deleted file mode 100644 index 3de9d33535..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2809.png b/front/public/images/large/gregtech/gt.metaitem.01/2809.png deleted file mode 100644 index 977dbaa0bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28090.png b/front/public/images/large/gregtech/gt.metaitem.01/28090.png deleted file mode 100644 index 8e69005164..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28096.png b/front/public/images/large/gregtech/gt.metaitem.01/28096.png deleted file mode 100644 index ff3bc336fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28097.png b/front/public/images/large/gregtech/gt.metaitem.01/28097.png deleted file mode 100644 index 0de2ea8bf5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28098.png b/front/public/images/large/gregtech/gt.metaitem.01/28098.png deleted file mode 100644 index 5986ffe6f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28100.png b/front/public/images/large/gregtech/gt.metaitem.01/28100.png deleted file mode 100644 index 082f04ef92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28101.png b/front/public/images/large/gregtech/gt.metaitem.01/28101.png deleted file mode 100644 index 6688aec150..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28103.png b/front/public/images/large/gregtech/gt.metaitem.01/28103.png deleted file mode 100644 index 0d6d3f8ecf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28111.png b/front/public/images/large/gregtech/gt.metaitem.01/28111.png deleted file mode 100644 index 935eedd72f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28112.png b/front/public/images/large/gregtech/gt.metaitem.01/28112.png deleted file mode 100644 index f3bfdc937f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2812.png b/front/public/images/large/gregtech/gt.metaitem.01/2812.png deleted file mode 100644 index 376b793b28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28129.png b/front/public/images/large/gregtech/gt.metaitem.01/28129.png deleted file mode 100644 index 4d46cfc7f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2813.png b/front/public/images/large/gregtech/gt.metaitem.01/2813.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2813.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28131.png b/front/public/images/large/gregtech/gt.metaitem.01/28131.png deleted file mode 100644 index 06f49f3768..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28134.png b/front/public/images/large/gregtech/gt.metaitem.01/28134.png deleted file mode 100644 index 8aede224e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28139.png b/front/public/images/large/gregtech/gt.metaitem.01/28139.png deleted file mode 100644 index 700ce26011..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2814.png b/front/public/images/large/gregtech/gt.metaitem.01/2814.png deleted file mode 100644 index 35a60a1ac7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2814.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28141.png b/front/public/images/large/gregtech/gt.metaitem.01/28141.png deleted file mode 100644 index 04e7357d0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28143.png b/front/public/images/large/gregtech/gt.metaitem.01/28143.png deleted file mode 100644 index a6f04da93a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2815.png b/front/public/images/large/gregtech/gt.metaitem.01/2815.png deleted file mode 100644 index 5dca78fce4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2815.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2816.png b/front/public/images/large/gregtech/gt.metaitem.01/2816.png deleted file mode 100644 index 3a612f5152..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2816.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2817.png b/front/public/images/large/gregtech/gt.metaitem.01/2817.png deleted file mode 100644 index 4df5d6c1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2817.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2818.png b/front/public/images/large/gregtech/gt.metaitem.01/2818.png deleted file mode 100644 index 0614498125..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2818.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2819.png b/front/public/images/large/gregtech/gt.metaitem.01/2819.png deleted file mode 100644 index 789d91d43d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2819.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2820.png b/front/public/images/large/gregtech/gt.metaitem.01/2820.png deleted file mode 100644 index 0d4947b38b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2820.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28201.png b/front/public/images/large/gregtech/gt.metaitem.01/28201.png deleted file mode 100644 index b6bfc4bdab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28202.png b/front/public/images/large/gregtech/gt.metaitem.01/28202.png deleted file mode 100644 index 790eb37a01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28203.png b/front/public/images/large/gregtech/gt.metaitem.01/28203.png deleted file mode 100644 index f19fe7af2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28205.png b/front/public/images/large/gregtech/gt.metaitem.01/28205.png deleted file mode 100644 index af0a5e210a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28206.png b/front/public/images/large/gregtech/gt.metaitem.01/28206.png deleted file mode 100644 index 65a4884833..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28207.png b/front/public/images/large/gregtech/gt.metaitem.01/28207.png deleted file mode 100644 index d7028f9ddf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2821.png b/front/public/images/large/gregtech/gt.metaitem.01/2821.png deleted file mode 100644 index ba4569ca8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2821.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2822.png b/front/public/images/large/gregtech/gt.metaitem.01/2822.png deleted file mode 100644 index 984b9dba7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2822.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2823.png b/front/public/images/large/gregtech/gt.metaitem.01/2823.png deleted file mode 100644 index f82e61e36b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2823.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2824.png b/front/public/images/large/gregtech/gt.metaitem.01/2824.png deleted file mode 100644 index 9a3bc4d1a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2824.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2825.png b/front/public/images/large/gregtech/gt.metaitem.01/2825.png deleted file mode 100644 index afcd604a4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2825.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2826.png b/front/public/images/large/gregtech/gt.metaitem.01/2826.png deleted file mode 100644 index 26344a761b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2826.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2827.png b/front/public/images/large/gregtech/gt.metaitem.01/2827.png deleted file mode 100644 index 48b223232c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2827.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2828.png b/front/public/images/large/gregtech/gt.metaitem.01/2828.png deleted file mode 100644 index 308dd46b60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2828.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2829.png b/front/public/images/large/gregtech/gt.metaitem.01/2829.png deleted file mode 100644 index 1a374cfee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2830.png b/front/public/images/large/gregtech/gt.metaitem.01/2830.png deleted file mode 100644 index f92c22db84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2830.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28300.png b/front/public/images/large/gregtech/gt.metaitem.01/28300.png deleted file mode 100644 index 75c3642492..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28301.png b/front/public/images/large/gregtech/gt.metaitem.01/28301.png deleted file mode 100644 index c5082b207d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28302.png b/front/public/images/large/gregtech/gt.metaitem.01/28302.png deleted file mode 100644 index bee98930d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28303.png b/front/public/images/large/gregtech/gt.metaitem.01/28303.png deleted file mode 100644 index 4941311fab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28304.png b/front/public/images/large/gregtech/gt.metaitem.01/28304.png deleted file mode 100644 index 84984eb0a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28305.png b/front/public/images/large/gregtech/gt.metaitem.01/28305.png deleted file mode 100644 index aeeb72f6b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28306.png b/front/public/images/large/gregtech/gt.metaitem.01/28306.png deleted file mode 100644 index 4d33d16ead..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28307.png b/front/public/images/large/gregtech/gt.metaitem.01/28307.png deleted file mode 100644 index 84984eb0a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28308.png b/front/public/images/large/gregtech/gt.metaitem.01/28308.png deleted file mode 100644 index 3ffd190c17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28309.png b/front/public/images/large/gregtech/gt.metaitem.01/28309.png deleted file mode 100644 index c7a4a9e844..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2831.png b/front/public/images/large/gregtech/gt.metaitem.01/2831.png deleted file mode 100644 index c6cc75c245..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2831.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28310.png b/front/public/images/large/gregtech/gt.metaitem.01/28310.png deleted file mode 100644 index 8349ba1d4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28311.png b/front/public/images/large/gregtech/gt.metaitem.01/28311.png deleted file mode 100644 index 06be9da2a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28312.png b/front/public/images/large/gregtech/gt.metaitem.01/28312.png deleted file mode 100644 index 636a462bfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28313.png b/front/public/images/large/gregtech/gt.metaitem.01/28313.png deleted file mode 100644 index f52f48e5fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28314.png b/front/public/images/large/gregtech/gt.metaitem.01/28314.png deleted file mode 100644 index 5fc6df8e32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28315.png b/front/public/images/large/gregtech/gt.metaitem.01/28315.png deleted file mode 100644 index 99579401a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28316.png b/front/public/images/large/gregtech/gt.metaitem.01/28316.png deleted file mode 100644 index a80a43a1cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28317.png b/front/public/images/large/gregtech/gt.metaitem.01/28317.png deleted file mode 100644 index 1abc257493..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28318.png b/front/public/images/large/gregtech/gt.metaitem.01/28318.png deleted file mode 100644 index c8e93b2e57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28319.png b/front/public/images/large/gregtech/gt.metaitem.01/28319.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2832.png b/front/public/images/large/gregtech/gt.metaitem.01/2832.png deleted file mode 100644 index c32627af91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2832.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28320.png b/front/public/images/large/gregtech/gt.metaitem.01/28320.png deleted file mode 100644 index b6b7fdc0eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28321.png b/front/public/images/large/gregtech/gt.metaitem.01/28321.png deleted file mode 100644 index 4b875c93bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28323.png b/front/public/images/large/gregtech/gt.metaitem.01/28323.png deleted file mode 100644 index da309904ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28324.png b/front/public/images/large/gregtech/gt.metaitem.01/28324.png deleted file mode 100644 index 279bfcd9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28325.png b/front/public/images/large/gregtech/gt.metaitem.01/28325.png deleted file mode 100644 index b96137da69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28326.png b/front/public/images/large/gregtech/gt.metaitem.01/28326.png deleted file mode 100644 index 378c5e18a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28327.png b/front/public/images/large/gregtech/gt.metaitem.01/28327.png deleted file mode 100644 index bb5c6b3fa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28328.png b/front/public/images/large/gregtech/gt.metaitem.01/28328.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28329.png b/front/public/images/large/gregtech/gt.metaitem.01/28329.png deleted file mode 100644 index f230fb44d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2833.png b/front/public/images/large/gregtech/gt.metaitem.01/2833.png deleted file mode 100644 index 6cdf4361cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28330.png b/front/public/images/large/gregtech/gt.metaitem.01/28330.png deleted file mode 100644 index 861b6dfbca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28331.png b/front/public/images/large/gregtech/gt.metaitem.01/28331.png deleted file mode 100644 index c5448e6072..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28333.png b/front/public/images/large/gregtech/gt.metaitem.01/28333.png deleted file mode 100644 index ae81434466..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28334.png b/front/public/images/large/gregtech/gt.metaitem.01/28334.png deleted file mode 100644 index 3ef5136135..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28335.png b/front/public/images/large/gregtech/gt.metaitem.01/28335.png deleted file mode 100644 index a2608ffc65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28336.png b/front/public/images/large/gregtech/gt.metaitem.01/28336.png deleted file mode 100644 index a32e3cd242..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28337.png b/front/public/images/large/gregtech/gt.metaitem.01/28337.png deleted file mode 100644 index c4fb47ce90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28338.png b/front/public/images/large/gregtech/gt.metaitem.01/28338.png deleted file mode 100644 index c10eab9826..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28339.png b/front/public/images/large/gregtech/gt.metaitem.01/28339.png deleted file mode 100644 index 46fd8903b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2834.png b/front/public/images/large/gregtech/gt.metaitem.01/2834.png deleted file mode 100644 index bb5f2b8f49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2834.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28340.png b/front/public/images/large/gregtech/gt.metaitem.01/28340.png deleted file mode 100644 index 0be204499e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28341.png b/front/public/images/large/gregtech/gt.metaitem.01/28341.png deleted file mode 100644 index 0a7220fedc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28342.png b/front/public/images/large/gregtech/gt.metaitem.01/28342.png deleted file mode 100644 index 7f52c2eb62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28343.png b/front/public/images/large/gregtech/gt.metaitem.01/28343.png deleted file mode 100644 index 3878dc7248..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28344.png b/front/public/images/large/gregtech/gt.metaitem.01/28344.png deleted file mode 100644 index 4a5aab787f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28345.png b/front/public/images/large/gregtech/gt.metaitem.01/28345.png deleted file mode 100644 index 170b86e780..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28346.png b/front/public/images/large/gregtech/gt.metaitem.01/28346.png deleted file mode 100644 index 47ad58252f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28348.png b/front/public/images/large/gregtech/gt.metaitem.01/28348.png deleted file mode 100644 index cf06501f6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28349.png b/front/public/images/large/gregtech/gt.metaitem.01/28349.png deleted file mode 100644 index 81a654fbac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2835.png b/front/public/images/large/gregtech/gt.metaitem.01/2835.png deleted file mode 100644 index 776a3b6bc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2835.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28350.png b/front/public/images/large/gregtech/gt.metaitem.01/28350.png deleted file mode 100644 index 6ee8aa931d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28351.png b/front/public/images/large/gregtech/gt.metaitem.01/28351.png deleted file mode 100644 index 8c0f5325ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28352.png b/front/public/images/large/gregtech/gt.metaitem.01/28352.png deleted file mode 100644 index ee58a71747..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28353.png b/front/public/images/large/gregtech/gt.metaitem.01/28353.png deleted file mode 100644 index c2f3df91b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28354.png b/front/public/images/large/gregtech/gt.metaitem.01/28354.png deleted file mode 100644 index 6496f5d8f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28355.png b/front/public/images/large/gregtech/gt.metaitem.01/28355.png deleted file mode 100644 index 058960af75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28356.png b/front/public/images/large/gregtech/gt.metaitem.01/28356.png deleted file mode 100644 index 00ab5f0c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28357.png b/front/public/images/large/gregtech/gt.metaitem.01/28357.png deleted file mode 100644 index a414aafb2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28358.png b/front/public/images/large/gregtech/gt.metaitem.01/28358.png deleted file mode 100644 index 4295e2806a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28359.png b/front/public/images/large/gregtech/gt.metaitem.01/28359.png deleted file mode 100644 index 5fd0e97247..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2836.png b/front/public/images/large/gregtech/gt.metaitem.01/2836.png deleted file mode 100644 index a3d8ce1f33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2836.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28360.png b/front/public/images/large/gregtech/gt.metaitem.01/28360.png deleted file mode 100644 index bbf013d857..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28361.png b/front/public/images/large/gregtech/gt.metaitem.01/28361.png deleted file mode 100644 index ed828f59c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28362.png b/front/public/images/large/gregtech/gt.metaitem.01/28362.png deleted file mode 100644 index 6a98cc9008..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28363.png b/front/public/images/large/gregtech/gt.metaitem.01/28363.png deleted file mode 100644 index 0d6d3f8ecf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28364.png b/front/public/images/large/gregtech/gt.metaitem.01/28364.png deleted file mode 100644 index 37ec51e240..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28365.png b/front/public/images/large/gregtech/gt.metaitem.01/28365.png deleted file mode 100644 index f3f9597508..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28366.png b/front/public/images/large/gregtech/gt.metaitem.01/28366.png deleted file mode 100644 index 5d8de27e76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28367.png b/front/public/images/large/gregtech/gt.metaitem.01/28367.png deleted file mode 100644 index 679674bd86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28368.png b/front/public/images/large/gregtech/gt.metaitem.01/28368.png deleted file mode 100644 index 7a643886fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28369.png b/front/public/images/large/gregtech/gt.metaitem.01/28369.png deleted file mode 100644 index 99cdd3a5e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2837.png b/front/public/images/large/gregtech/gt.metaitem.01/2837.png deleted file mode 100644 index df1d350ddb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2837.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28370.png b/front/public/images/large/gregtech/gt.metaitem.01/28370.png deleted file mode 100644 index ccec17af4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28371.png b/front/public/images/large/gregtech/gt.metaitem.01/28371.png deleted file mode 100644 index 785b0bbe58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28372.png b/front/public/images/large/gregtech/gt.metaitem.01/28372.png deleted file mode 100644 index af9110dfad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28373.png b/front/public/images/large/gregtech/gt.metaitem.01/28373.png deleted file mode 100644 index 5607766a24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28374.png b/front/public/images/large/gregtech/gt.metaitem.01/28374.png deleted file mode 100644 index 82cb5df393..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28378.png b/front/public/images/large/gregtech/gt.metaitem.01/28378.png deleted file mode 100644 index ef225264ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28379.png b/front/public/images/large/gregtech/gt.metaitem.01/28379.png deleted file mode 100644 index d0f656ba96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2838.png b/front/public/images/large/gregtech/gt.metaitem.01/2838.png deleted file mode 100644 index 5fd10ac90a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2838.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28380.png b/front/public/images/large/gregtech/gt.metaitem.01/28380.png deleted file mode 100644 index bccab4a5d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28381.png b/front/public/images/large/gregtech/gt.metaitem.01/28381.png deleted file mode 100644 index e189648c4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28382.png b/front/public/images/large/gregtech/gt.metaitem.01/28382.png deleted file mode 100644 index c5df30f685..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28383.png b/front/public/images/large/gregtech/gt.metaitem.01/28383.png deleted file mode 100644 index aaf701d13c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28384.png b/front/public/images/large/gregtech/gt.metaitem.01/28384.png deleted file mode 100644 index db62d1c0b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28385.png b/front/public/images/large/gregtech/gt.metaitem.01/28385.png deleted file mode 100644 index 87d63e0806..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28386.png b/front/public/images/large/gregtech/gt.metaitem.01/28386.png deleted file mode 100644 index c50cf18324..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28387.png b/front/public/images/large/gregtech/gt.metaitem.01/28387.png deleted file mode 100644 index 68b5f4f40b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28388.png b/front/public/images/large/gregtech/gt.metaitem.01/28388.png deleted file mode 100644 index 279bfcd9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28389.png b/front/public/images/large/gregtech/gt.metaitem.01/28389.png deleted file mode 100644 index 6dbfd64552..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2839.png b/front/public/images/large/gregtech/gt.metaitem.01/2839.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2839.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28390.png b/front/public/images/large/gregtech/gt.metaitem.01/28390.png deleted file mode 100644 index d532fe392e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28391.png b/front/public/images/large/gregtech/gt.metaitem.01/28391.png deleted file mode 100644 index 5a8f1b62f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28392.png b/front/public/images/large/gregtech/gt.metaitem.01/28392.png deleted file mode 100644 index a6df82be18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28393.png b/front/public/images/large/gregtech/gt.metaitem.01/28393.png deleted file mode 100644 index ba8fed8051..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28394.png b/front/public/images/large/gregtech/gt.metaitem.01/28394.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28395.png b/front/public/images/large/gregtech/gt.metaitem.01/28395.png deleted file mode 100644 index 279bfcd9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28397.png b/front/public/images/large/gregtech/gt.metaitem.01/28397.png deleted file mode 100644 index a190633c55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28398.png b/front/public/images/large/gregtech/gt.metaitem.01/28398.png deleted file mode 100644 index d42a7e9274..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28399.png b/front/public/images/large/gregtech/gt.metaitem.01/28399.png deleted file mode 100644 index a038e03eba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2840.png b/front/public/images/large/gregtech/gt.metaitem.01/2840.png deleted file mode 100644 index 4417367c7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2840.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28400.png b/front/public/images/large/gregtech/gt.metaitem.01/28400.png deleted file mode 100644 index e79c19d97a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28401.png b/front/public/images/large/gregtech/gt.metaitem.01/28401.png deleted file mode 100644 index 8d1d0eb287..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28402.png b/front/public/images/large/gregtech/gt.metaitem.01/28402.png deleted file mode 100644 index 343668fb38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28403.png b/front/public/images/large/gregtech/gt.metaitem.01/28403.png deleted file mode 100644 index 9b5223ef5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28404.png b/front/public/images/large/gregtech/gt.metaitem.01/28404.png deleted file mode 100644 index 856133cf07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28405.png b/front/public/images/large/gregtech/gt.metaitem.01/28405.png deleted file mode 100644 index bf29599015..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28406.png b/front/public/images/large/gregtech/gt.metaitem.01/28406.png deleted file mode 100644 index 7de61010de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28407.png b/front/public/images/large/gregtech/gt.metaitem.01/28407.png deleted file mode 100644 index 7583828313..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28408.png b/front/public/images/large/gregtech/gt.metaitem.01/28408.png deleted file mode 100644 index 561be48725..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2841.png b/front/public/images/large/gregtech/gt.metaitem.01/2841.png deleted file mode 100644 index d021a6ad91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2841.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2842.png b/front/public/images/large/gregtech/gt.metaitem.01/2842.png deleted file mode 100644 index 9670aafc5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2842.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2843.png b/front/public/images/large/gregtech/gt.metaitem.01/2843.png deleted file mode 100644 index d26d172372..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2843.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2844.png b/front/public/images/large/gregtech/gt.metaitem.01/2844.png deleted file mode 100644 index 5c52819ce8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2844.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2845.png b/front/public/images/large/gregtech/gt.metaitem.01/2845.png deleted file mode 100644 index 50326b81ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2845.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2846.png b/front/public/images/large/gregtech/gt.metaitem.01/2846.png deleted file mode 100644 index 03560fb696..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2846.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2847.png b/front/public/images/large/gregtech/gt.metaitem.01/2847.png deleted file mode 100644 index b8f0888490..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2847.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28470.png b/front/public/images/large/gregtech/gt.metaitem.01/28470.png deleted file mode 100644 index 974ce40a73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28471.png b/front/public/images/large/gregtech/gt.metaitem.01/28471.png deleted file mode 100644 index a863b97274..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28472.png b/front/public/images/large/gregtech/gt.metaitem.01/28472.png deleted file mode 100644 index 279bfcd9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28473.png b/front/public/images/large/gregtech/gt.metaitem.01/28473.png deleted file mode 100644 index 3ef5136135..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2848.png b/front/public/images/large/gregtech/gt.metaitem.01/2848.png deleted file mode 100644 index 11c831763f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2848.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28485.png b/front/public/images/large/gregtech/gt.metaitem.01/28485.png deleted file mode 100644 index 72b83dbd4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28488.png b/front/public/images/large/gregtech/gt.metaitem.01/28488.png deleted file mode 100644 index 0c08539c4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28489.png b/front/public/images/large/gregtech/gt.metaitem.01/28489.png deleted file mode 100644 index 2e959b459e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2849.png b/front/public/images/large/gregtech/gt.metaitem.01/2849.png deleted file mode 100644 index fc83f91dc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2850.png b/front/public/images/large/gregtech/gt.metaitem.01/2850.png deleted file mode 100644 index 6674fbed5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2851.png b/front/public/images/large/gregtech/gt.metaitem.01/2851.png deleted file mode 100644 index dd20775b6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2851.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28521.png b/front/public/images/large/gregtech/gt.metaitem.01/28521.png deleted file mode 100644 index c8e93b2e57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28529.png b/front/public/images/large/gregtech/gt.metaitem.01/28529.png deleted file mode 100644 index 7c334c5b4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2853.png b/front/public/images/large/gregtech/gt.metaitem.01/2853.png deleted file mode 100644 index 48b223232c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2853.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2854.png b/front/public/images/large/gregtech/gt.metaitem.01/2854.png deleted file mode 100644 index 789d91d43d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2854.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2855.png b/front/public/images/large/gregtech/gt.metaitem.01/2855.png deleted file mode 100644 index 0109be408d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2855.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2856.png b/front/public/images/large/gregtech/gt.metaitem.01/2856.png deleted file mode 100644 index 84311a1439..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28576.png b/front/public/images/large/gregtech/gt.metaitem.01/28576.png deleted file mode 100644 index 817ff38c6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2858.png b/front/public/images/large/gregtech/gt.metaitem.01/2858.png deleted file mode 100644 index 7418dd7509..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2858.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28581.png b/front/public/images/large/gregtech/gt.metaitem.01/28581.png deleted file mode 100644 index 8de9fc438c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28582.png b/front/public/images/large/gregtech/gt.metaitem.01/28582.png deleted file mode 100644 index c867cbb2fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28583.png b/front/public/images/large/gregtech/gt.metaitem.01/28583.png deleted file mode 100644 index cf6e9a266e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28585.png b/front/public/images/large/gregtech/gt.metaitem.01/28585.png deleted file mode 100644 index 3086647f73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28586.png b/front/public/images/large/gregtech/gt.metaitem.01/28586.png deleted file mode 100644 index 2e9a65bb36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28588.png b/front/public/images/large/gregtech/gt.metaitem.01/28588.png deleted file mode 100644 index 55d0460349..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28599.png b/front/public/images/large/gregtech/gt.metaitem.01/28599.png deleted file mode 100644 index 713e456491..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2861.png b/front/public/images/large/gregtech/gt.metaitem.01/2861.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2861.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28610.png b/front/public/images/large/gregtech/gt.metaitem.01/28610.png deleted file mode 100644 index 189237763e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28611.png b/front/public/images/large/gregtech/gt.metaitem.01/28611.png deleted file mode 100644 index 7253eb173f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28613.png b/front/public/images/large/gregtech/gt.metaitem.01/28613.png deleted file mode 100644 index f04eadd211..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2862.png b/front/public/images/large/gregtech/gt.metaitem.01/2862.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2862.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28631.png b/front/public/images/large/gregtech/gt.metaitem.01/28631.png deleted file mode 100644 index 6df571c15e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28635.png b/front/public/images/large/gregtech/gt.metaitem.01/28635.png deleted file mode 100644 index 4c1246995e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28636.png b/front/public/images/large/gregtech/gt.metaitem.01/28636.png deleted file mode 100644 index a926f30264..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28649.png b/front/public/images/large/gregtech/gt.metaitem.01/28649.png deleted file mode 100644 index 026581bd23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2865.png b/front/public/images/large/gregtech/gt.metaitem.01/2865.png deleted file mode 100644 index 789d91d43d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2867.png b/front/public/images/large/gregtech/gt.metaitem.01/2867.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2867.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2868.png b/front/public/images/large/gregtech/gt.metaitem.01/2868.png deleted file mode 100644 index cd210807b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2870.png b/front/public/images/large/gregtech/gt.metaitem.01/2870.png deleted file mode 100644 index 6c2840eec3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2870.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2871.png b/front/public/images/large/gregtech/gt.metaitem.01/2871.png deleted file mode 100644 index 5b1373a22e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2871.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2872.png b/front/public/images/large/gregtech/gt.metaitem.01/2872.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2872.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2873.png b/front/public/images/large/gregtech/gt.metaitem.01/2873.png deleted file mode 100644 index aa1e498988..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2873.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2874.png b/front/public/images/large/gregtech/gt.metaitem.01/2874.png deleted file mode 100644 index ab86cb9421..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2876.png b/front/public/images/large/gregtech/gt.metaitem.01/2876.png deleted file mode 100644 index 09a233225c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2876.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28765.png b/front/public/images/large/gregtech/gt.metaitem.01/28765.png deleted file mode 100644 index ae74b80d03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2877.png b/front/public/images/large/gregtech/gt.metaitem.01/2877.png deleted file mode 100644 index a148bc758c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2877.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28770.png b/front/public/images/large/gregtech/gt.metaitem.01/28770.png deleted file mode 100644 index 5e29d53b1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28772.png b/front/public/images/large/gregtech/gt.metaitem.01/28772.png deleted file mode 100644 index 740e6aaa7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2878.png b/front/public/images/large/gregtech/gt.metaitem.01/2878.png deleted file mode 100644 index 7418dd7509..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2878.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2879.png b/front/public/images/large/gregtech/gt.metaitem.01/2879.png deleted file mode 100644 index 4df5d6c1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2879.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2880.png b/front/public/images/large/gregtech/gt.metaitem.01/2880.png deleted file mode 100644 index 3ab7ca14fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28804.png b/front/public/images/large/gregtech/gt.metaitem.01/28804.png deleted file mode 100644 index c917399d9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28809.png b/front/public/images/large/gregtech/gt.metaitem.01/28809.png deleted file mode 100644 index e6ad374a17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2881.png b/front/public/images/large/gregtech/gt.metaitem.01/2881.png deleted file mode 100644 index 7cfb989e57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2881.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2882.png b/front/public/images/large/gregtech/gt.metaitem.01/2882.png deleted file mode 100644 index 74f790e482..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2882.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28829.png b/front/public/images/large/gregtech/gt.metaitem.01/28829.png deleted file mode 100644 index 1e160cb305..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2883.png b/front/public/images/large/gregtech/gt.metaitem.01/2883.png deleted file mode 100644 index 6cdf4361cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2883.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2884.png b/front/public/images/large/gregtech/gt.metaitem.01/2884.png deleted file mode 100644 index f381e989b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2885.png b/front/public/images/large/gregtech/gt.metaitem.01/2885.png deleted file mode 100644 index 7f3e480a34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2885.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28856.png b/front/public/images/large/gregtech/gt.metaitem.01/28856.png deleted file mode 100644 index 469087a889..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2886.png b/front/public/images/large/gregtech/gt.metaitem.01/2886.png deleted file mode 100644 index 52aa52fbfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2886.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28868.png b/front/public/images/large/gregtech/gt.metaitem.01/28868.png deleted file mode 100644 index ab269e455f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2887.png b/front/public/images/large/gregtech/gt.metaitem.01/2887.png deleted file mode 100644 index 52aa52fbfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2887.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28874.png b/front/public/images/large/gregtech/gt.metaitem.01/28874.png deleted file mode 100644 index 0d6d3f8ecf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28879.png b/front/public/images/large/gregtech/gt.metaitem.01/28879.png deleted file mode 100644 index 4d46cfc7f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28879.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2888.png b/front/public/images/large/gregtech/gt.metaitem.01/2888.png deleted file mode 100644 index 35ba7ecca1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2888.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28880.png b/front/public/images/large/gregtech/gt.metaitem.01/28880.png deleted file mode 100644 index 2e9a65bb36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28884.png b/front/public/images/large/gregtech/gt.metaitem.01/28884.png deleted file mode 100644 index b96137da69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28889.png b/front/public/images/large/gregtech/gt.metaitem.01/28889.png deleted file mode 100644 index 86f9033972..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2889.png b/front/public/images/large/gregtech/gt.metaitem.01/2889.png deleted file mode 100644 index d577dd8aff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2890.png b/front/public/images/large/gregtech/gt.metaitem.01/2890.png deleted file mode 100644 index 345afe4c62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2891.png b/front/public/images/large/gregtech/gt.metaitem.01/2891.png deleted file mode 100644 index b283c286d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2891.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28912.png b/front/public/images/large/gregtech/gt.metaitem.01/28912.png deleted file mode 100644 index 96a7a78a6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28913.png b/front/public/images/large/gregtech/gt.metaitem.01/28913.png deleted file mode 100644 index cf06501f6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2892.png b/front/public/images/large/gregtech/gt.metaitem.01/2892.png deleted file mode 100644 index 89eef70377..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2892.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2893.png b/front/public/images/large/gregtech/gt.metaitem.01/2893.png deleted file mode 100644 index 9859932460..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2893.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2894.png b/front/public/images/large/gregtech/gt.metaitem.01/2894.png deleted file mode 100644 index d7bb324ce7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2895.png b/front/public/images/large/gregtech/gt.metaitem.01/2895.png deleted file mode 100644 index 718bcaaf67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2895.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28951.png b/front/public/images/large/gregtech/gt.metaitem.01/28951.png deleted file mode 100644 index 5f107a0606..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28952.png b/front/public/images/large/gregtech/gt.metaitem.01/28952.png deleted file mode 100644 index a4a77a99ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28956.png b/front/public/images/large/gregtech/gt.metaitem.01/28956.png deleted file mode 100644 index 06ce08d8a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2896.png b/front/public/images/large/gregtech/gt.metaitem.01/2896.png deleted file mode 100644 index 2d399936b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2896.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28966.png b/front/public/images/large/gregtech/gt.metaitem.01/28966.png deleted file mode 100644 index 3d2671632a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28970.png b/front/public/images/large/gregtech/gt.metaitem.01/28970.png deleted file mode 100644 index 8e0fd27991..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28974.png b/front/public/images/large/gregtech/gt.metaitem.01/28974.png deleted file mode 100644 index d1b66d24ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28975.png b/front/public/images/large/gregtech/gt.metaitem.01/28975.png deleted file mode 100644 index a4f40758a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28976.png b/front/public/images/large/gregtech/gt.metaitem.01/28976.png deleted file mode 100644 index fec9f77539..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28977.png b/front/public/images/large/gregtech/gt.metaitem.01/28977.png deleted file mode 100644 index 9f73fc66fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28978.png b/front/public/images/large/gregtech/gt.metaitem.01/28978.png deleted file mode 100644 index a03bf23f5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28979.png b/front/public/images/large/gregtech/gt.metaitem.01/28979.png deleted file mode 100644 index 62870f6458..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2898.png b/front/public/images/large/gregtech/gt.metaitem.01/2898.png deleted file mode 100644 index 9457c1b7a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2898.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28980.png b/front/public/images/large/gregtech/gt.metaitem.01/28980.png deleted file mode 100644 index 9b4c2396df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28981.png b/front/public/images/large/gregtech/gt.metaitem.01/28981.png deleted file mode 100644 index 0ed2403055..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28982.png b/front/public/images/large/gregtech/gt.metaitem.01/28982.png deleted file mode 100644 index 6c286cac99..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28984.png b/front/public/images/large/gregtech/gt.metaitem.01/28984.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28985.png b/front/public/images/large/gregtech/gt.metaitem.01/28985.png deleted file mode 100644 index 3e2327a61a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28986.png b/front/public/images/large/gregtech/gt.metaitem.01/28986.png deleted file mode 100644 index 7fb886c74d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28987.png b/front/public/images/large/gregtech/gt.metaitem.01/28987.png deleted file mode 100644 index e687900bda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28988.png b/front/public/images/large/gregtech/gt.metaitem.01/28988.png deleted file mode 100644 index 5eae912ef0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28989.png b/front/public/images/large/gregtech/gt.metaitem.01/28989.png deleted file mode 100644 index 8430742360..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28990.png b/front/public/images/large/gregtech/gt.metaitem.01/28990.png deleted file mode 100644 index ae58949063..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28991.png b/front/public/images/large/gregtech/gt.metaitem.01/28991.png deleted file mode 100644 index 4a45974d8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/28992.png b/front/public/images/large/gregtech/gt.metaitem.01/28992.png deleted file mode 100644 index 9557fea1cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/28992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2900.png b/front/public/images/large/gregtech/gt.metaitem.01/2900.png deleted file mode 100644 index c46901eee2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2900.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29006.png b/front/public/images/large/gregtech/gt.metaitem.01/29006.png deleted file mode 100644 index 7521c045fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29008.png b/front/public/images/large/gregtech/gt.metaitem.01/29008.png deleted file mode 100644 index ad55f499d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2901.png b/front/public/images/large/gregtech/gt.metaitem.01/2901.png deleted file mode 100644 index a1284e4260..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2901.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29010.png b/front/public/images/large/gregtech/gt.metaitem.01/29010.png deleted file mode 100644 index eadb129299..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29018.png b/front/public/images/large/gregtech/gt.metaitem.01/29018.png deleted file mode 100644 index 5b202c1311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29019.png b/front/public/images/large/gregtech/gt.metaitem.01/29019.png deleted file mode 100644 index ae66d9d12d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2902.png b/front/public/images/large/gregtech/gt.metaitem.01/2902.png deleted file mode 100644 index 3b92b18ce4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2902.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29020.png b/front/public/images/large/gregtech/gt.metaitem.01/29020.png deleted file mode 100644 index 356a0f27f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29025.png b/front/public/images/large/gregtech/gt.metaitem.01/29025.png deleted file mode 100644 index b0093f6fa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29027.png b/front/public/images/large/gregtech/gt.metaitem.01/29027.png deleted file mode 100644 index 0a23ca379f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29028.png b/front/public/images/large/gregtech/gt.metaitem.01/29028.png deleted file mode 100644 index f6482a765f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29029.png b/front/public/images/large/gregtech/gt.metaitem.01/29029.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2903.png b/front/public/images/large/gregtech/gt.metaitem.01/2903.png deleted file mode 100644 index 3ee36ff692..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2903.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29030.png b/front/public/images/large/gregtech/gt.metaitem.01/29030.png deleted file mode 100644 index aaedfd5e17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29031.png b/front/public/images/large/gregtech/gt.metaitem.01/29031.png deleted file mode 100644 index d6a3665422..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29032.png b/front/public/images/large/gregtech/gt.metaitem.01/29032.png deleted file mode 100644 index cb0e71239c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29033.png b/front/public/images/large/gregtech/gt.metaitem.01/29033.png deleted file mode 100644 index ec198519fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29034.png b/front/public/images/large/gregtech/gt.metaitem.01/29034.png deleted file mode 100644 index 8440e61cc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29035.png b/front/public/images/large/gregtech/gt.metaitem.01/29035.png deleted file mode 100644 index 468872198d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29036.png b/front/public/images/large/gregtech/gt.metaitem.01/29036.png deleted file mode 100644 index 36c9a2e5b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29037.png b/front/public/images/large/gregtech/gt.metaitem.01/29037.png deleted file mode 100644 index 9248ca5202..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29039.png b/front/public/images/large/gregtech/gt.metaitem.01/29039.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2904.png b/front/public/images/large/gregtech/gt.metaitem.01/2904.png deleted file mode 100644 index e99d40ea94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2904.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29043.png b/front/public/images/large/gregtech/gt.metaitem.01/29043.png deleted file mode 100644 index b4282e5935..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29045.png b/front/public/images/large/gregtech/gt.metaitem.01/29045.png deleted file mode 100644 index 77fe2c1c36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29047.png b/front/public/images/large/gregtech/gt.metaitem.01/29047.png deleted file mode 100644 index a8a3e4258d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29048.png b/front/public/images/large/gregtech/gt.metaitem.01/29048.png deleted file mode 100644 index 00810d876e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2905.png b/front/public/images/large/gregtech/gt.metaitem.01/2905.png deleted file mode 100644 index 8c33c8d56b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2905.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29052.png b/front/public/images/large/gregtech/gt.metaitem.01/29052.png deleted file mode 100644 index f692872f2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29054.png b/front/public/images/large/gregtech/gt.metaitem.01/29054.png deleted file mode 100644 index 9248ca5202..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29056.png b/front/public/images/large/gregtech/gt.metaitem.01/29056.png deleted file mode 100644 index 5f3ec749ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29057.png b/front/public/images/large/gregtech/gt.metaitem.01/29057.png deleted file mode 100644 index 29238a07f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29058.png b/front/public/images/large/gregtech/gt.metaitem.01/29058.png deleted file mode 100644 index 87b66c2723..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29059.png b/front/public/images/large/gregtech/gt.metaitem.01/29059.png deleted file mode 100644 index d6a8851e63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2906.png b/front/public/images/large/gregtech/gt.metaitem.01/2906.png deleted file mode 100644 index 2f23779ae1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2906.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29062.png b/front/public/images/large/gregtech/gt.metaitem.01/29062.png deleted file mode 100644 index fc31fa3bb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29063.png b/front/public/images/large/gregtech/gt.metaitem.01/29063.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29064.png b/front/public/images/large/gregtech/gt.metaitem.01/29064.png deleted file mode 100644 index 90f8526ccc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29065.png b/front/public/images/large/gregtech/gt.metaitem.01/29065.png deleted file mode 100644 index 601b4bd6b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29066.png b/front/public/images/large/gregtech/gt.metaitem.01/29066.png deleted file mode 100644 index 08fb791329..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29067.png b/front/public/images/large/gregtech/gt.metaitem.01/29067.png deleted file mode 100644 index df40121b5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29068.png b/front/public/images/large/gregtech/gt.metaitem.01/29068.png deleted file mode 100644 index 04638c1cc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29069.png b/front/public/images/large/gregtech/gt.metaitem.01/29069.png deleted file mode 100644 index a3e76d9f42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2907.png b/front/public/images/large/gregtech/gt.metaitem.01/2907.png deleted file mode 100644 index 20b6bbdf63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2907.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29070.png b/front/public/images/large/gregtech/gt.metaitem.01/29070.png deleted file mode 100644 index 15d68c8891..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29071.png b/front/public/images/large/gregtech/gt.metaitem.01/29071.png deleted file mode 100644 index 121d586d98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29072.png b/front/public/images/large/gregtech/gt.metaitem.01/29072.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29073.png b/front/public/images/large/gregtech/gt.metaitem.01/29073.png deleted file mode 100644 index b4fb750c97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29074.png b/front/public/images/large/gregtech/gt.metaitem.01/29074.png deleted file mode 100644 index 3586e04e77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29075.png b/front/public/images/large/gregtech/gt.metaitem.01/29075.png deleted file mode 100644 index 1d36f2f83d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29076.png b/front/public/images/large/gregtech/gt.metaitem.01/29076.png deleted file mode 100644 index b810c4d8c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29077.png b/front/public/images/large/gregtech/gt.metaitem.01/29077.png deleted file mode 100644 index 0f9156bcae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29078.png b/front/public/images/large/gregtech/gt.metaitem.01/29078.png deleted file mode 100644 index 1ef05ad4de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2908.png b/front/public/images/large/gregtech/gt.metaitem.01/2908.png deleted file mode 100644 index 8f357c58fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2908.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29080.png b/front/public/images/large/gregtech/gt.metaitem.01/29080.png deleted file mode 100644 index 7fa317ae11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29081.png b/front/public/images/large/gregtech/gt.metaitem.01/29081.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29083.png b/front/public/images/large/gregtech/gt.metaitem.01/29083.png deleted file mode 100644 index e33d84fe62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29084.png b/front/public/images/large/gregtech/gt.metaitem.01/29084.png deleted file mode 100644 index fc23ac5916..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29085.png b/front/public/images/large/gregtech/gt.metaitem.01/29085.png deleted file mode 100644 index dd0d4f42c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29086.png b/front/public/images/large/gregtech/gt.metaitem.01/29086.png deleted file mode 100644 index aa7e744179..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29089.png b/front/public/images/large/gregtech/gt.metaitem.01/29089.png deleted file mode 100644 index 3a5c70cf65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2909.png b/front/public/images/large/gregtech/gt.metaitem.01/2909.png deleted file mode 100644 index a7dfecf381..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2909.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29090.png b/front/public/images/large/gregtech/gt.metaitem.01/29090.png deleted file mode 100644 index c837738c74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29096.png b/front/public/images/large/gregtech/gt.metaitem.01/29096.png deleted file mode 100644 index df61ea437b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29097.png b/front/public/images/large/gregtech/gt.metaitem.01/29097.png deleted file mode 100644 index a728d5299a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29098.png b/front/public/images/large/gregtech/gt.metaitem.01/29098.png deleted file mode 100644 index 8ddf6751c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2910.png b/front/public/images/large/gregtech/gt.metaitem.01/2910.png deleted file mode 100644 index 99da34d8e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2910.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29100.png b/front/public/images/large/gregtech/gt.metaitem.01/29100.png deleted file mode 100644 index c0c7ed2d92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29101.png b/front/public/images/large/gregtech/gt.metaitem.01/29101.png deleted file mode 100644 index dfe13b6165..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29103.png b/front/public/images/large/gregtech/gt.metaitem.01/29103.png deleted file mode 100644 index cb0e71239c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2911.png b/front/public/images/large/gregtech/gt.metaitem.01/2911.png deleted file mode 100644 index 0e9034aea7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2911.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29111.png b/front/public/images/large/gregtech/gt.metaitem.01/29111.png deleted file mode 100644 index f215d14827..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29112.png b/front/public/images/large/gregtech/gt.metaitem.01/29112.png deleted file mode 100644 index fa84dfcfa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2912.png b/front/public/images/large/gregtech/gt.metaitem.01/2912.png deleted file mode 100644 index 396fef4adb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29129.png b/front/public/images/large/gregtech/gt.metaitem.01/29129.png deleted file mode 100644 index d6a3665422..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2913.png b/front/public/images/large/gregtech/gt.metaitem.01/2913.png deleted file mode 100644 index 43710d5209..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29131.png b/front/public/images/large/gregtech/gt.metaitem.01/29131.png deleted file mode 100644 index 881acb21f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29134.png b/front/public/images/large/gregtech/gt.metaitem.01/29134.png deleted file mode 100644 index 1f1713f49a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29139.png b/front/public/images/large/gregtech/gt.metaitem.01/29139.png deleted file mode 100644 index 43520f9e19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2914.png b/front/public/images/large/gregtech/gt.metaitem.01/2914.png deleted file mode 100644 index 412427b1d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2914.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29141.png b/front/public/images/large/gregtech/gt.metaitem.01/29141.png deleted file mode 100644 index 888627f71d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29143.png b/front/public/images/large/gregtech/gt.metaitem.01/29143.png deleted file mode 100644 index 9fd3f4856e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2915.png b/front/public/images/large/gregtech/gt.metaitem.01/2915.png deleted file mode 100644 index 90c91b78c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2915.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2916.png b/front/public/images/large/gregtech/gt.metaitem.01/2916.png deleted file mode 100644 index 8d5bcd5029..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2916.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2917.png b/front/public/images/large/gregtech/gt.metaitem.01/2917.png deleted file mode 100644 index c8d15c60bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2917.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2918.png b/front/public/images/large/gregtech/gt.metaitem.01/2918.png deleted file mode 100644 index fe6439d4d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2918.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2919.png b/front/public/images/large/gregtech/gt.metaitem.01/2919.png deleted file mode 100644 index 832ad1df01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2919.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2920.png b/front/public/images/large/gregtech/gt.metaitem.01/2920.png deleted file mode 100644 index 4355e58bd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2920.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29201.png b/front/public/images/large/gregtech/gt.metaitem.01/29201.png deleted file mode 100644 index 99f871cdf0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29202.png b/front/public/images/large/gregtech/gt.metaitem.01/29202.png deleted file mode 100644 index 789ce41058..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29203.png b/front/public/images/large/gregtech/gt.metaitem.01/29203.png deleted file mode 100644 index 71ecea838d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29205.png b/front/public/images/large/gregtech/gt.metaitem.01/29205.png deleted file mode 100644 index eec57f52e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29206.png b/front/public/images/large/gregtech/gt.metaitem.01/29206.png deleted file mode 100644 index 44af71a4a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29207.png b/front/public/images/large/gregtech/gt.metaitem.01/29207.png deleted file mode 100644 index f3e66ccd34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2921.png b/front/public/images/large/gregtech/gt.metaitem.01/2921.png deleted file mode 100644 index c093e2cc0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2921.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2922.png b/front/public/images/large/gregtech/gt.metaitem.01/2922.png deleted file mode 100644 index c4410aae72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2922.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2923.png b/front/public/images/large/gregtech/gt.metaitem.01/2923.png deleted file mode 100644 index 825cacd0e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2923.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2924.png b/front/public/images/large/gregtech/gt.metaitem.01/2924.png deleted file mode 100644 index d202c0cfc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2924.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2925.png b/front/public/images/large/gregtech/gt.metaitem.01/2925.png deleted file mode 100644 index 5ed231e4c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2925.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2926.png b/front/public/images/large/gregtech/gt.metaitem.01/2926.png deleted file mode 100644 index 324a935bc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2926.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2927.png b/front/public/images/large/gregtech/gt.metaitem.01/2927.png deleted file mode 100644 index a370ec6347..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2927.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2928.png b/front/public/images/large/gregtech/gt.metaitem.01/2928.png deleted file mode 100644 index a4260be021..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2928.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2929.png b/front/public/images/large/gregtech/gt.metaitem.01/2929.png deleted file mode 100644 index d3ab435e72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2929.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2930.png b/front/public/images/large/gregtech/gt.metaitem.01/2930.png deleted file mode 100644 index fdeea41ab7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2930.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29300.png b/front/public/images/large/gregtech/gt.metaitem.01/29300.png deleted file mode 100644 index 0b87230210..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29301.png b/front/public/images/large/gregtech/gt.metaitem.01/29301.png deleted file mode 100644 index e5f4661acd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29302.png b/front/public/images/large/gregtech/gt.metaitem.01/29302.png deleted file mode 100644 index ecccd9dddc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29303.png b/front/public/images/large/gregtech/gt.metaitem.01/29303.png deleted file mode 100644 index 1a10e76c5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29304.png b/front/public/images/large/gregtech/gt.metaitem.01/29304.png deleted file mode 100644 index 56a9136364..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29305.png b/front/public/images/large/gregtech/gt.metaitem.01/29305.png deleted file mode 100644 index f692872f2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29306.png b/front/public/images/large/gregtech/gt.metaitem.01/29306.png deleted file mode 100644 index b4edf0dae1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29307.png b/front/public/images/large/gregtech/gt.metaitem.01/29307.png deleted file mode 100644 index 56a9136364..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29308.png b/front/public/images/large/gregtech/gt.metaitem.01/29308.png deleted file mode 100644 index 8f364318a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29309.png b/front/public/images/large/gregtech/gt.metaitem.01/29309.png deleted file mode 100644 index b7c766a9bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2931.png b/front/public/images/large/gregtech/gt.metaitem.01/2931.png deleted file mode 100644 index ec497565e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2931.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29310.png b/front/public/images/large/gregtech/gt.metaitem.01/29310.png deleted file mode 100644 index 257efb80d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29311.png b/front/public/images/large/gregtech/gt.metaitem.01/29311.png deleted file mode 100644 index b3d8c5d906..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29312.png b/front/public/images/large/gregtech/gt.metaitem.01/29312.png deleted file mode 100644 index 22f6250ca7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29313.png b/front/public/images/large/gregtech/gt.metaitem.01/29313.png deleted file mode 100644 index 393eaab872..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29314.png b/front/public/images/large/gregtech/gt.metaitem.01/29314.png deleted file mode 100644 index f91c875767..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29315.png b/front/public/images/large/gregtech/gt.metaitem.01/29315.png deleted file mode 100644 index 02772864c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29316.png b/front/public/images/large/gregtech/gt.metaitem.01/29316.png deleted file mode 100644 index e3a88415e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29317.png b/front/public/images/large/gregtech/gt.metaitem.01/29317.png deleted file mode 100644 index 146cfb5364..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29318.png b/front/public/images/large/gregtech/gt.metaitem.01/29318.png deleted file mode 100644 index 4aed92faea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29319.png b/front/public/images/large/gregtech/gt.metaitem.01/29319.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2932.png b/front/public/images/large/gregtech/gt.metaitem.01/2932.png deleted file mode 100644 index 3e5ec93543..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2932.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29320.png b/front/public/images/large/gregtech/gt.metaitem.01/29320.png deleted file mode 100644 index 1e3b22650b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29321.png b/front/public/images/large/gregtech/gt.metaitem.01/29321.png deleted file mode 100644 index 8517b4b71b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29323.png b/front/public/images/large/gregtech/gt.metaitem.01/29323.png deleted file mode 100644 index 0398345438..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29324.png b/front/public/images/large/gregtech/gt.metaitem.01/29324.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29325.png b/front/public/images/large/gregtech/gt.metaitem.01/29325.png deleted file mode 100644 index 074eaea5a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29326.png b/front/public/images/large/gregtech/gt.metaitem.01/29326.png deleted file mode 100644 index f1879ff8b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29327.png b/front/public/images/large/gregtech/gt.metaitem.01/29327.png deleted file mode 100644 index 0c2eb3edcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29328.png b/front/public/images/large/gregtech/gt.metaitem.01/29328.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29329.png b/front/public/images/large/gregtech/gt.metaitem.01/29329.png deleted file mode 100644 index 39ecb7f1ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2933.png b/front/public/images/large/gregtech/gt.metaitem.01/2933.png deleted file mode 100644 index 4ee074b150..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2933.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29330.png b/front/public/images/large/gregtech/gt.metaitem.01/29330.png deleted file mode 100644 index 19ae4b1622..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29331.png b/front/public/images/large/gregtech/gt.metaitem.01/29331.png deleted file mode 100644 index 1042cb9095..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29333.png b/front/public/images/large/gregtech/gt.metaitem.01/29333.png deleted file mode 100644 index 125d250211..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29334.png b/front/public/images/large/gregtech/gt.metaitem.01/29334.png deleted file mode 100644 index df40121b5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29335.png b/front/public/images/large/gregtech/gt.metaitem.01/29335.png deleted file mode 100644 index 4be8e66938..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29336.png b/front/public/images/large/gregtech/gt.metaitem.01/29336.png deleted file mode 100644 index 37708abf98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29337.png b/front/public/images/large/gregtech/gt.metaitem.01/29337.png deleted file mode 100644 index a2fdc40492..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29338.png b/front/public/images/large/gregtech/gt.metaitem.01/29338.png deleted file mode 100644 index 2ab99bcd0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29339.png b/front/public/images/large/gregtech/gt.metaitem.01/29339.png deleted file mode 100644 index 841ffe648f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2934.png b/front/public/images/large/gregtech/gt.metaitem.01/2934.png deleted file mode 100644 index d94d5cd931..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2934.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29340.png b/front/public/images/large/gregtech/gt.metaitem.01/29340.png deleted file mode 100644 index d3540aaf17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29341.png b/front/public/images/large/gregtech/gt.metaitem.01/29341.png deleted file mode 100644 index 35d486558f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29342.png b/front/public/images/large/gregtech/gt.metaitem.01/29342.png deleted file mode 100644 index 8e4bf4fe9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29343.png b/front/public/images/large/gregtech/gt.metaitem.01/29343.png deleted file mode 100644 index 222251300e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29344.png b/front/public/images/large/gregtech/gt.metaitem.01/29344.png deleted file mode 100644 index 4107a4084f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29345.png b/front/public/images/large/gregtech/gt.metaitem.01/29345.png deleted file mode 100644 index 0ce420926d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29346.png b/front/public/images/large/gregtech/gt.metaitem.01/29346.png deleted file mode 100644 index 27da765bf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29348.png b/front/public/images/large/gregtech/gt.metaitem.01/29348.png deleted file mode 100644 index 478a90411c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29349.png b/front/public/images/large/gregtech/gt.metaitem.01/29349.png deleted file mode 100644 index e01ae289eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2935.png b/front/public/images/large/gregtech/gt.metaitem.01/2935.png deleted file mode 100644 index ced2a2f62a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2935.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29350.png b/front/public/images/large/gregtech/gt.metaitem.01/29350.png deleted file mode 100644 index 4642aa7a8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29351.png b/front/public/images/large/gregtech/gt.metaitem.01/29351.png deleted file mode 100644 index 14252a5bc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29352.png b/front/public/images/large/gregtech/gt.metaitem.01/29352.png deleted file mode 100644 index cc6f849ba5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29353.png b/front/public/images/large/gregtech/gt.metaitem.01/29353.png deleted file mode 100644 index ba0c80e2f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29354.png b/front/public/images/large/gregtech/gt.metaitem.01/29354.png deleted file mode 100644 index 0918fe2c0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29355.png b/front/public/images/large/gregtech/gt.metaitem.01/29355.png deleted file mode 100644 index cef2b307ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29356.png b/front/public/images/large/gregtech/gt.metaitem.01/29356.png deleted file mode 100644 index c39b69abe0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29357.png b/front/public/images/large/gregtech/gt.metaitem.01/29357.png deleted file mode 100644 index 1e15a48b90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29358.png b/front/public/images/large/gregtech/gt.metaitem.01/29358.png deleted file mode 100644 index a51e5e57b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29359.png b/front/public/images/large/gregtech/gt.metaitem.01/29359.png deleted file mode 100644 index 0df8630d5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2936.png b/front/public/images/large/gregtech/gt.metaitem.01/2936.png deleted file mode 100644 index af9cb154b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2936.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29360.png b/front/public/images/large/gregtech/gt.metaitem.01/29360.png deleted file mode 100644 index 5d37404b4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29361.png b/front/public/images/large/gregtech/gt.metaitem.01/29361.png deleted file mode 100644 index 1c98e9c677..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29362.png b/front/public/images/large/gregtech/gt.metaitem.01/29362.png deleted file mode 100644 index 260ae6e64a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29363.png b/front/public/images/large/gregtech/gt.metaitem.01/29363.png deleted file mode 100644 index cb0e71239c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29364.png b/front/public/images/large/gregtech/gt.metaitem.01/29364.png deleted file mode 100644 index f2dbcfc810..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29365.png b/front/public/images/large/gregtech/gt.metaitem.01/29365.png deleted file mode 100644 index afdbc92b3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29366.png b/front/public/images/large/gregtech/gt.metaitem.01/29366.png deleted file mode 100644 index e4d17d09c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29367.png b/front/public/images/large/gregtech/gt.metaitem.01/29367.png deleted file mode 100644 index 37c1e19f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29368.png b/front/public/images/large/gregtech/gt.metaitem.01/29368.png deleted file mode 100644 index e3c33c9fbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29369.png b/front/public/images/large/gregtech/gt.metaitem.01/29369.png deleted file mode 100644 index 4d1636c7c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2937.png b/front/public/images/large/gregtech/gt.metaitem.01/2937.png deleted file mode 100644 index c263f6b85f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2937.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29370.png b/front/public/images/large/gregtech/gt.metaitem.01/29370.png deleted file mode 100644 index 71d949d358..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29371.png b/front/public/images/large/gregtech/gt.metaitem.01/29371.png deleted file mode 100644 index 6282f5525f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29372.png b/front/public/images/large/gregtech/gt.metaitem.01/29372.png deleted file mode 100644 index 532aebbfaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29373.png b/front/public/images/large/gregtech/gt.metaitem.01/29373.png deleted file mode 100644 index b1c0a8dd2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29374.png b/front/public/images/large/gregtech/gt.metaitem.01/29374.png deleted file mode 100644 index 577f26217f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29378.png b/front/public/images/large/gregtech/gt.metaitem.01/29378.png deleted file mode 100644 index c71bfe8512..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29379.png b/front/public/images/large/gregtech/gt.metaitem.01/29379.png deleted file mode 100644 index 55f4fe4a39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2938.png b/front/public/images/large/gregtech/gt.metaitem.01/2938.png deleted file mode 100644 index cc3c9b3906..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2938.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29380.png b/front/public/images/large/gregtech/gt.metaitem.01/29380.png deleted file mode 100644 index b35bb2e047..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29381.png b/front/public/images/large/gregtech/gt.metaitem.01/29381.png deleted file mode 100644 index 62e09d0b07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29382.png b/front/public/images/large/gregtech/gt.metaitem.01/29382.png deleted file mode 100644 index e4280557e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29383.png b/front/public/images/large/gregtech/gt.metaitem.01/29383.png deleted file mode 100644 index cde754a97f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29384.png b/front/public/images/large/gregtech/gt.metaitem.01/29384.png deleted file mode 100644 index 66cf424f85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29385.png b/front/public/images/large/gregtech/gt.metaitem.01/29385.png deleted file mode 100644 index 0d92a05c4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29386.png b/front/public/images/large/gregtech/gt.metaitem.01/29386.png deleted file mode 100644 index a26c626e0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29387.png b/front/public/images/large/gregtech/gt.metaitem.01/29387.png deleted file mode 100644 index 0d2db8ca34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29388.png b/front/public/images/large/gregtech/gt.metaitem.01/29388.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29389.png b/front/public/images/large/gregtech/gt.metaitem.01/29389.png deleted file mode 100644 index 33577aa84d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2939.png b/front/public/images/large/gregtech/gt.metaitem.01/2939.png deleted file mode 100644 index 500f7743f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2939.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29390.png b/front/public/images/large/gregtech/gt.metaitem.01/29390.png deleted file mode 100644 index 49fa2aeef5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29391.png b/front/public/images/large/gregtech/gt.metaitem.01/29391.png deleted file mode 100644 index fb75b2d5b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29392.png b/front/public/images/large/gregtech/gt.metaitem.01/29392.png deleted file mode 100644 index 554ab0eecc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29393.png b/front/public/images/large/gregtech/gt.metaitem.01/29393.png deleted file mode 100644 index 2c3ad2f1cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29394.png b/front/public/images/large/gregtech/gt.metaitem.01/29394.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29395.png b/front/public/images/large/gregtech/gt.metaitem.01/29395.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29397.png b/front/public/images/large/gregtech/gt.metaitem.01/29397.png deleted file mode 100644 index 87d9cc8a7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29398.png b/front/public/images/large/gregtech/gt.metaitem.01/29398.png deleted file mode 100644 index 3f4eea09fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29399.png b/front/public/images/large/gregtech/gt.metaitem.01/29399.png deleted file mode 100644 index df5dfe29f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2940.png b/front/public/images/large/gregtech/gt.metaitem.01/2940.png deleted file mode 100644 index 25b3d8e378..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2940.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29400.png b/front/public/images/large/gregtech/gt.metaitem.01/29400.png deleted file mode 100644 index 2d26fde357..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29401.png b/front/public/images/large/gregtech/gt.metaitem.01/29401.png deleted file mode 100644 index 06e25230fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29402.png b/front/public/images/large/gregtech/gt.metaitem.01/29402.png deleted file mode 100644 index a4c5f6ae5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29403.png b/front/public/images/large/gregtech/gt.metaitem.01/29403.png deleted file mode 100644 index 3c1a37df05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29404.png b/front/public/images/large/gregtech/gt.metaitem.01/29404.png deleted file mode 100644 index 4cb904a18b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29405.png b/front/public/images/large/gregtech/gt.metaitem.01/29405.png deleted file mode 100644 index a956c73f10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29406.png b/front/public/images/large/gregtech/gt.metaitem.01/29406.png deleted file mode 100644 index d2b7cd6558..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29407.png b/front/public/images/large/gregtech/gt.metaitem.01/29407.png deleted file mode 100644 index 8e9210ba53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29408.png b/front/public/images/large/gregtech/gt.metaitem.01/29408.png deleted file mode 100644 index aa55f76fe7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2941.png b/front/public/images/large/gregtech/gt.metaitem.01/2941.png deleted file mode 100644 index 4df5d6c1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2941.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2942.png b/front/public/images/large/gregtech/gt.metaitem.01/2942.png deleted file mode 100644 index 519b2a396a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2942.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2943.png b/front/public/images/large/gregtech/gt.metaitem.01/2943.png deleted file mode 100644 index 6ff9bbb55a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2943.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2944.png b/front/public/images/large/gregtech/gt.metaitem.01/2944.png deleted file mode 100644 index 4e043aaaff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2944.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2945.png b/front/public/images/large/gregtech/gt.metaitem.01/2945.png deleted file mode 100644 index 450c936473..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2945.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2946.png b/front/public/images/large/gregtech/gt.metaitem.01/2946.png deleted file mode 100644 index 14bbccdf67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2946.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2947.png b/front/public/images/large/gregtech/gt.metaitem.01/2947.png deleted file mode 100644 index c7588b119b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2947.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29470.png b/front/public/images/large/gregtech/gt.metaitem.01/29470.png deleted file mode 100644 index 11dfbab2ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29471.png b/front/public/images/large/gregtech/gt.metaitem.01/29471.png deleted file mode 100644 index 29238a07f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29472.png b/front/public/images/large/gregtech/gt.metaitem.01/29472.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29473.png b/front/public/images/large/gregtech/gt.metaitem.01/29473.png deleted file mode 100644 index df40121b5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2948.png b/front/public/images/large/gregtech/gt.metaitem.01/2948.png deleted file mode 100644 index c5a1334829..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2948.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29485.png b/front/public/images/large/gregtech/gt.metaitem.01/29485.png deleted file mode 100644 index 16dff74761..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29488.png b/front/public/images/large/gregtech/gt.metaitem.01/29488.png deleted file mode 100644 index cdd522d840..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29489.png b/front/public/images/large/gregtech/gt.metaitem.01/29489.png deleted file mode 100644 index 26e33778de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2949.png b/front/public/images/large/gregtech/gt.metaitem.01/2949.png deleted file mode 100644 index 4ee074b150..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2949.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2951.png b/front/public/images/large/gregtech/gt.metaitem.01/2951.png deleted file mode 100644 index 46a584d1d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2952.png b/front/public/images/large/gregtech/gt.metaitem.01/2952.png deleted file mode 100644 index 2276177548..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29521.png b/front/public/images/large/gregtech/gt.metaitem.01/29521.png deleted file mode 100644 index 4aed92faea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29529.png b/front/public/images/large/gregtech/gt.metaitem.01/29529.png deleted file mode 100644 index c18f936eba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2956.png b/front/public/images/large/gregtech/gt.metaitem.01/2956.png deleted file mode 100644 index f2ecfdd357..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29576.png b/front/public/images/large/gregtech/gt.metaitem.01/29576.png deleted file mode 100644 index f416c85617..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29581.png b/front/public/images/large/gregtech/gt.metaitem.01/29581.png deleted file mode 100644 index 5fd2856ddb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29582.png b/front/public/images/large/gregtech/gt.metaitem.01/29582.png deleted file mode 100644 index 5c9dc1055b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29583.png b/front/public/images/large/gregtech/gt.metaitem.01/29583.png deleted file mode 100644 index 368facbbe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29585.png b/front/public/images/large/gregtech/gt.metaitem.01/29585.png deleted file mode 100644 index 6a6993b7eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29586.png b/front/public/images/large/gregtech/gt.metaitem.01/29586.png deleted file mode 100644 index db9bbff55f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29588.png b/front/public/images/large/gregtech/gt.metaitem.01/29588.png deleted file mode 100644 index 7cd2036fd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29599.png b/front/public/images/large/gregtech/gt.metaitem.01/29599.png deleted file mode 100644 index 4aa37250b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29610.png b/front/public/images/large/gregtech/gt.metaitem.01/29610.png deleted file mode 100644 index 3ef7c5eb83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29611.png b/front/public/images/large/gregtech/gt.metaitem.01/29611.png deleted file mode 100644 index 188c139592..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29613.png b/front/public/images/large/gregtech/gt.metaitem.01/29613.png deleted file mode 100644 index 8cff3d1260..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29631.png b/front/public/images/large/gregtech/gt.metaitem.01/29631.png deleted file mode 100644 index 3515bf86a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29635.png b/front/public/images/large/gregtech/gt.metaitem.01/29635.png deleted file mode 100644 index ff386bf103..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29636.png b/front/public/images/large/gregtech/gt.metaitem.01/29636.png deleted file mode 100644 index 1b65b7e562..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29649.png b/front/public/images/large/gregtech/gt.metaitem.01/29649.png deleted file mode 100644 index 250b619096..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2966.png b/front/public/images/large/gregtech/gt.metaitem.01/2966.png deleted file mode 100644 index 74a8444fce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2969.png b/front/public/images/large/gregtech/gt.metaitem.01/2969.png deleted file mode 100644 index 32db608954..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2969.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2970.png b/front/public/images/large/gregtech/gt.metaitem.01/2970.png deleted file mode 100644 index d74d123d9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2971.png b/front/public/images/large/gregtech/gt.metaitem.01/2971.png deleted file mode 100644 index 86a31f088b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2971.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2974.png b/front/public/images/large/gregtech/gt.metaitem.01/2974.png deleted file mode 100644 index b832237dd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2975.png b/front/public/images/large/gregtech/gt.metaitem.01/2975.png deleted file mode 100644 index 3c57b340ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2976.png b/front/public/images/large/gregtech/gt.metaitem.01/2976.png deleted file mode 100644 index 2d232133b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29765.png b/front/public/images/large/gregtech/gt.metaitem.01/29765.png deleted file mode 100644 index ff0d7cbc80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2977.png b/front/public/images/large/gregtech/gt.metaitem.01/2977.png deleted file mode 100644 index 41ed83a18a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29770.png b/front/public/images/large/gregtech/gt.metaitem.01/29770.png deleted file mode 100644 index 4bdcedfd4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29772.png b/front/public/images/large/gregtech/gt.metaitem.01/29772.png deleted file mode 100644 index 17f9052318..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2978.png b/front/public/images/large/gregtech/gt.metaitem.01/2978.png deleted file mode 100644 index c395c9d63e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2979.png b/front/public/images/large/gregtech/gt.metaitem.01/2979.png deleted file mode 100644 index 43c2617532..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2980.png b/front/public/images/large/gregtech/gt.metaitem.01/2980.png deleted file mode 100644 index a65f39b5c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29804.png b/front/public/images/large/gregtech/gt.metaitem.01/29804.png deleted file mode 100644 index 04808f4919..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29809.png b/front/public/images/large/gregtech/gt.metaitem.01/29809.png deleted file mode 100644 index 7563e53cda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2981.png b/front/public/images/large/gregtech/gt.metaitem.01/2981.png deleted file mode 100644 index f1f082e32a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2982.png b/front/public/images/large/gregtech/gt.metaitem.01/2982.png deleted file mode 100644 index 430615688b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29829.png b/front/public/images/large/gregtech/gt.metaitem.01/29829.png deleted file mode 100644 index 496d65039e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2984.png b/front/public/images/large/gregtech/gt.metaitem.01/2984.png deleted file mode 100644 index e6ea5f1f0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2985.png b/front/public/images/large/gregtech/gt.metaitem.01/2985.png deleted file mode 100644 index 41dab61af1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29856.png b/front/public/images/large/gregtech/gt.metaitem.01/29856.png deleted file mode 100644 index 64653699c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2986.png b/front/public/images/large/gregtech/gt.metaitem.01/2986.png deleted file mode 100644 index 321cad1bb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29868.png b/front/public/images/large/gregtech/gt.metaitem.01/29868.png deleted file mode 100644 index f33f94db19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2987.png b/front/public/images/large/gregtech/gt.metaitem.01/2987.png deleted file mode 100644 index a946c3004f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29874.png b/front/public/images/large/gregtech/gt.metaitem.01/29874.png deleted file mode 100644 index cb0e71239c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2988.png b/front/public/images/large/gregtech/gt.metaitem.01/2988.png deleted file mode 100644 index c43a7c27d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29880.png b/front/public/images/large/gregtech/gt.metaitem.01/29880.png deleted file mode 100644 index db9bbff55f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29884.png b/front/public/images/large/gregtech/gt.metaitem.01/29884.png deleted file mode 100644 index 074eaea5a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29889.png b/front/public/images/large/gregtech/gt.metaitem.01/29889.png deleted file mode 100644 index 67ba9a0ae2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2989.png b/front/public/images/large/gregtech/gt.metaitem.01/2989.png deleted file mode 100644 index 2bee2684f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2990.png b/front/public/images/large/gregtech/gt.metaitem.01/2990.png deleted file mode 100644 index a7a2a82cdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2991.png b/front/public/images/large/gregtech/gt.metaitem.01/2991.png deleted file mode 100644 index 038f13a340..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29912.png b/front/public/images/large/gregtech/gt.metaitem.01/29912.png deleted file mode 100644 index 5f00b07a1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29913.png b/front/public/images/large/gregtech/gt.metaitem.01/29913.png deleted file mode 100644 index 478a90411c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/2992.png b/front/public/images/large/gregtech/gt.metaitem.01/2992.png deleted file mode 100644 index c366cae9d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/2992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29951.png b/front/public/images/large/gregtech/gt.metaitem.01/29951.png deleted file mode 100644 index c425bfcc41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29952.png b/front/public/images/large/gregtech/gt.metaitem.01/29952.png deleted file mode 100644 index dc3c8092db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29956.png b/front/public/images/large/gregtech/gt.metaitem.01/29956.png deleted file mode 100644 index 4670cb167f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29966.png b/front/public/images/large/gregtech/gt.metaitem.01/29966.png deleted file mode 100644 index 5edafa77ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29970.png b/front/public/images/large/gregtech/gt.metaitem.01/29970.png deleted file mode 100644 index 30252c12e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29974.png b/front/public/images/large/gregtech/gt.metaitem.01/29974.png deleted file mode 100644 index 0088694e54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29975.png b/front/public/images/large/gregtech/gt.metaitem.01/29975.png deleted file mode 100644 index 3cd8ddb0f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29976.png b/front/public/images/large/gregtech/gt.metaitem.01/29976.png deleted file mode 100644 index 9a953eb624..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29977.png b/front/public/images/large/gregtech/gt.metaitem.01/29977.png deleted file mode 100644 index 78749782cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29978.png b/front/public/images/large/gregtech/gt.metaitem.01/29978.png deleted file mode 100644 index 450d871f9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29979.png b/front/public/images/large/gregtech/gt.metaitem.01/29979.png deleted file mode 100644 index 4e030bbdf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29980.png b/front/public/images/large/gregtech/gt.metaitem.01/29980.png deleted file mode 100644 index 74d98e9161..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29981.png b/front/public/images/large/gregtech/gt.metaitem.01/29981.png deleted file mode 100644 index 748de2e61b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29982.png b/front/public/images/large/gregtech/gt.metaitem.01/29982.png deleted file mode 100644 index 2576cac52b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29984.png b/front/public/images/large/gregtech/gt.metaitem.01/29984.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29985.png b/front/public/images/large/gregtech/gt.metaitem.01/29985.png deleted file mode 100644 index 4efe9c4492..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29986.png b/front/public/images/large/gregtech/gt.metaitem.01/29986.png deleted file mode 100644 index e45e973e34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29987.png b/front/public/images/large/gregtech/gt.metaitem.01/29987.png deleted file mode 100644 index b53c9d7bae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29988.png b/front/public/images/large/gregtech/gt.metaitem.01/29988.png deleted file mode 100644 index f99eacb3e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29989.png b/front/public/images/large/gregtech/gt.metaitem.01/29989.png deleted file mode 100644 index 8294d49424..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29990.png b/front/public/images/large/gregtech/gt.metaitem.01/29990.png deleted file mode 100644 index e34f968f24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29991.png b/front/public/images/large/gregtech/gt.metaitem.01/29991.png deleted file mode 100644 index 1b02d6f469..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/29992.png b/front/public/images/large/gregtech/gt.metaitem.01/29992.png deleted file mode 100644 index bd6f3a8eed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/29992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30001.png b/front/public/images/large/gregtech/gt.metaitem.01/30001.png deleted file mode 100644 index ab5b7808ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30002.png b/front/public/images/large/gregtech/gt.metaitem.01/30002.png deleted file mode 100644 index 73e055fa1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30003.png b/front/public/images/large/gregtech/gt.metaitem.01/30003.png deleted file mode 100644 index 059957585e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30004.png b/front/public/images/large/gregtech/gt.metaitem.01/30004.png deleted file mode 100644 index df612d57ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30005.png b/front/public/images/large/gregtech/gt.metaitem.01/30005.png deleted file mode 100644 index b0f05859f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30010.png b/front/public/images/large/gregtech/gt.metaitem.01/30010.png deleted file mode 100644 index 43346f8667..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30012.png b/front/public/images/large/gregtech/gt.metaitem.01/30012.png deleted file mode 100644 index eed34c954a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30012.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30013.png b/front/public/images/large/gregtech/gt.metaitem.01/30013.png deleted file mode 100644 index 4eaab7fb14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30013.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30014.png b/front/public/images/large/gregtech/gt.metaitem.01/30014.png deleted file mode 100644 index 1f04ad6e49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30014.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30017.png b/front/public/images/large/gregtech/gt.metaitem.01/30017.png deleted file mode 100644 index a27dcae7da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30017.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30023.png b/front/public/images/large/gregtech/gt.metaitem.01/30023.png deleted file mode 100644 index 56497d6e0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30024.png b/front/public/images/large/gregtech/gt.metaitem.01/30024.png deleted file mode 100644 index 0c3173a30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30024.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30039.png b/front/public/images/large/gregtech/gt.metaitem.01/30039.png deleted file mode 100644 index 814bc365a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30087.png b/front/public/images/large/gregtech/gt.metaitem.01/30087.png deleted file mode 100644 index bd3fde8bb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30087.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30093.png b/front/public/images/large/gregtech/gt.metaitem.01/30093.png deleted file mode 100644 index 0081b85554..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30093.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30106.png b/front/public/images/large/gregtech/gt.metaitem.01/30106.png deleted file mode 100644 index 56e49bf93b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30109.png b/front/public/images/large/gregtech/gt.metaitem.01/30109.png deleted file mode 100644 index 542cd8ee31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30109.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30113.png b/front/public/images/large/gregtech/gt.metaitem.01/30113.png deleted file mode 100644 index 542cd8ee31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30113.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30121.png b/front/public/images/large/gregtech/gt.metaitem.01/30121.png deleted file mode 100644 index 542cd8ee31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30121.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30126.png b/front/public/images/large/gregtech/gt.metaitem.01/30126.png deleted file mode 100644 index 542cd8ee31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30126.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30127.png b/front/public/images/large/gregtech/gt.metaitem.01/30127.png deleted file mode 100644 index b9f9a41f4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30127.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30130.png b/front/public/images/large/gregtech/gt.metaitem.01/30130.png deleted file mode 100644 index 38d941e6fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30140.png b/front/public/images/large/gregtech/gt.metaitem.01/30140.png deleted file mode 100644 index 859b93189a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30140.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30142.png b/front/public/images/large/gregtech/gt.metaitem.01/30142.png deleted file mode 100644 index cf7dd2fb71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30142.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30144.png b/front/public/images/large/gregtech/gt.metaitem.01/30144.png deleted file mode 100644 index 27d4fe1d0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30376.png b/front/public/images/large/gregtech/gt.metaitem.01/30376.png deleted file mode 100644 index 86efe231c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30376.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30377.png b/front/public/images/large/gregtech/gt.metaitem.01/30377.png deleted file mode 100644 index 41f6e12bf1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30377.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30409.png b/front/public/images/large/gregtech/gt.metaitem.01/30409.png deleted file mode 100644 index 25044e9914..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30409.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30410.png b/front/public/images/large/gregtech/gt.metaitem.01/30410.png deleted file mode 100644 index 0911abc42f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30410.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30411.png b/front/public/images/large/gregtech/gt.metaitem.01/30411.png deleted file mode 100644 index 15bdf152ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30411.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30415.png b/front/public/images/large/gregtech/gt.metaitem.01/30415.png deleted file mode 100644 index fe301ee569..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30415.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30416.png b/front/public/images/large/gregtech/gt.metaitem.01/30416.png deleted file mode 100644 index 8c342ef5dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30416.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30417.png b/front/public/images/large/gregtech/gt.metaitem.01/30417.png deleted file mode 100644 index 978676ca3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30417.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30460.png b/front/public/images/large/gregtech/gt.metaitem.01/30460.png deleted file mode 100644 index 952cadc550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30460.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30493.png b/front/public/images/large/gregtech/gt.metaitem.01/30493.png deleted file mode 100644 index f8b06d8bda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30493.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30494.png b/front/public/images/large/gregtech/gt.metaitem.01/30494.png deleted file mode 100644 index c35598d307..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30494.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30495.png b/front/public/images/large/gregtech/gt.metaitem.01/30495.png deleted file mode 100644 index 070487ef54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30495.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30496.png b/front/public/images/large/gregtech/gt.metaitem.01/30496.png deleted file mode 100644 index 679976d6a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30496.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30497.png b/front/public/images/large/gregtech/gt.metaitem.01/30497.png deleted file mode 100644 index dda3ff95d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30497.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30515.png b/front/public/images/large/gregtech/gt.metaitem.01/30515.png deleted file mode 100644 index 9315f1b121..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30518.png b/front/public/images/large/gregtech/gt.metaitem.01/30518.png deleted file mode 100644 index 9cd4fe901d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30519.png b/front/public/images/large/gregtech/gt.metaitem.01/30519.png deleted file mode 100644 index 9cd4fe901d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30534.png b/front/public/images/large/gregtech/gt.metaitem.01/30534.png deleted file mode 100644 index 62dcb8a56e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30554.png b/front/public/images/large/gregtech/gt.metaitem.01/30554.png deleted file mode 100644 index 8015115ff5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30554.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30555.png b/front/public/images/large/gregtech/gt.metaitem.01/30555.png deleted file mode 100644 index 16a37b0588..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30555.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30556.png b/front/public/images/large/gregtech/gt.metaitem.01/30556.png deleted file mode 100644 index ad6bc22d11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30556.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30557.png b/front/public/images/large/gregtech/gt.metaitem.01/30557.png deleted file mode 100644 index 94d3fb11c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30557.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30558.png b/front/public/images/large/gregtech/gt.metaitem.01/30558.png deleted file mode 100644 index 00bd41a41d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30558.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30559.png b/front/public/images/large/gregtech/gt.metaitem.01/30559.png deleted file mode 100644 index 47f1889c6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30559.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30560.png b/front/public/images/large/gregtech/gt.metaitem.01/30560.png deleted file mode 100644 index 894bb9ac0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30560.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30561.png b/front/public/images/large/gregtech/gt.metaitem.01/30561.png deleted file mode 100644 index 2e897347b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30561.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30567.png b/front/public/images/large/gregtech/gt.metaitem.01/30567.png deleted file mode 100644 index 31266365a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30567.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30584.png b/front/public/images/large/gregtech/gt.metaitem.01/30584.png deleted file mode 100644 index c711ff263f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30584.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30587.png b/front/public/images/large/gregtech/gt.metaitem.01/30587.png deleted file mode 100644 index 5de2b83de8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30587.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30589.png b/front/public/images/large/gregtech/gt.metaitem.01/30589.png deleted file mode 100644 index 594cf88e62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30589.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30592.png b/front/public/images/large/gregtech/gt.metaitem.01/30592.png deleted file mode 100644 index 99be5511d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30592.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30593.png b/front/public/images/large/gregtech/gt.metaitem.01/30593.png deleted file mode 100644 index 8c9e69ebb8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30593.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30595.png b/front/public/images/large/gregtech/gt.metaitem.01/30595.png deleted file mode 100644 index ede98bf017..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30595.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30596.png b/front/public/images/large/gregtech/gt.metaitem.01/30596.png deleted file mode 100644 index db141f5557..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30596.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30597.png b/front/public/images/large/gregtech/gt.metaitem.01/30597.png deleted file mode 100644 index 6aab881158..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30597.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30598.png b/front/public/images/large/gregtech/gt.metaitem.01/30598.png deleted file mode 100644 index 112163fc00..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30598.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30600.png b/front/public/images/large/gregtech/gt.metaitem.01/30600.png deleted file mode 100644 index 5e080dac44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30600.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30601.png b/front/public/images/large/gregtech/gt.metaitem.01/30601.png deleted file mode 100644 index 2ab04c86d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30601.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30603.png b/front/public/images/large/gregtech/gt.metaitem.01/30603.png deleted file mode 100644 index e6c6be0c81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30603.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30604.png b/front/public/images/large/gregtech/gt.metaitem.01/30604.png deleted file mode 100644 index 738718d0ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30604.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30605.png b/front/public/images/large/gregtech/gt.metaitem.01/30605.png deleted file mode 100644 index 6239cd3c63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30605.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30606.png b/front/public/images/large/gregtech/gt.metaitem.01/30606.png deleted file mode 100644 index 06048aed98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30606.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30608.png b/front/public/images/large/gregtech/gt.metaitem.01/30608.png deleted file mode 100644 index 86ea940818..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30608.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30609.png b/front/public/images/large/gregtech/gt.metaitem.01/30609.png deleted file mode 100644 index d276320b59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30609.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30627.png b/front/public/images/large/gregtech/gt.metaitem.01/30627.png deleted file mode 100644 index b2874d8d92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30627.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30628.png b/front/public/images/large/gregtech/gt.metaitem.01/30628.png deleted file mode 100644 index 1b27709f48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30628.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30629.png b/front/public/images/large/gregtech/gt.metaitem.01/30629.png deleted file mode 100644 index 2efe5fd87d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30629.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30632.png b/front/public/images/large/gregtech/gt.metaitem.01/30632.png deleted file mode 100644 index d4c11bac20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30632.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30637.png b/front/public/images/large/gregtech/gt.metaitem.01/30637.png deleted file mode 100644 index cab9adedcc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30637.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30638.png b/front/public/images/large/gregtech/gt.metaitem.01/30638.png deleted file mode 100644 index 4bf5e26052..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30638.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30639.png b/front/public/images/large/gregtech/gt.metaitem.01/30639.png deleted file mode 100644 index df2f913a8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30639.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30640.png b/front/public/images/large/gregtech/gt.metaitem.01/30640.png deleted file mode 100644 index d3592c1106..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30640.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30641.png b/front/public/images/large/gregtech/gt.metaitem.01/30641.png deleted file mode 100644 index 65dd2f0752..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30641.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30642.png b/front/public/images/large/gregtech/gt.metaitem.01/30642.png deleted file mode 100644 index 96148533e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30643.png b/front/public/images/large/gregtech/gt.metaitem.01/30643.png deleted file mode 100644 index afb5185a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30644.png b/front/public/images/large/gregtech/gt.metaitem.01/30644.png deleted file mode 100644 index d479558f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30645.png b/front/public/images/large/gregtech/gt.metaitem.01/30645.png deleted file mode 100644 index e42808dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30646.png b/front/public/images/large/gregtech/gt.metaitem.01/30646.png deleted file mode 100644 index 973b94bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30647.png b/front/public/images/large/gregtech/gt.metaitem.01/30647.png deleted file mode 100644 index cc2b5c43cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30647.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30648.png b/front/public/images/large/gregtech/gt.metaitem.01/30648.png deleted file mode 100644 index cc2b5c43cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30648.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30650.png b/front/public/images/large/gregtech/gt.metaitem.01/30650.png deleted file mode 100644 index afdbadd460..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30650.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30651.png b/front/public/images/large/gregtech/gt.metaitem.01/30651.png deleted file mode 100644 index 71acd961e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30651.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30652.png b/front/public/images/large/gregtech/gt.metaitem.01/30652.png deleted file mode 100644 index 9eb22e91a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30652.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30653.png b/front/public/images/large/gregtech/gt.metaitem.01/30653.png deleted file mode 100644 index e6d777f478..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30653.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30654.png b/front/public/images/large/gregtech/gt.metaitem.01/30654.png deleted file mode 100644 index acfcedef12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30654.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30655.png b/front/public/images/large/gregtech/gt.metaitem.01/30655.png deleted file mode 100644 index e5cd5a9c78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30655.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30656.png b/front/public/images/large/gregtech/gt.metaitem.01/30656.png deleted file mode 100644 index 04b29a4674..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30656.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30657.png b/front/public/images/large/gregtech/gt.metaitem.01/30657.png deleted file mode 100644 index 65e7f86366..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30657.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30658.png b/front/public/images/large/gregtech/gt.metaitem.01/30658.png deleted file mode 100644 index b3db489a90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30658.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30659.png b/front/public/images/large/gregtech/gt.metaitem.01/30659.png deleted file mode 100644 index 22e3a8636d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30659.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30660.png b/front/public/images/large/gregtech/gt.metaitem.01/30660.png deleted file mode 100644 index 5da227dc93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30660.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30661.png b/front/public/images/large/gregtech/gt.metaitem.01/30661.png deleted file mode 100644 index 8907818169..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30661.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30662.png b/front/public/images/large/gregtech/gt.metaitem.01/30662.png deleted file mode 100644 index 710cc96fa8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30662.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30663.png b/front/public/images/large/gregtech/gt.metaitem.01/30663.png deleted file mode 100644 index 712c4b0e16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30663.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30664.png b/front/public/images/large/gregtech/gt.metaitem.01/30664.png deleted file mode 100644 index 164970fee2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30664.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30665.png b/front/public/images/large/gregtech/gt.metaitem.01/30665.png deleted file mode 100644 index 8d15c2e6f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30665.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30666.png b/front/public/images/large/gregtech/gt.metaitem.01/30666.png deleted file mode 100644 index 837ae1c3d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30666.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30667.png b/front/public/images/large/gregtech/gt.metaitem.01/30667.png deleted file mode 100644 index 06c29c8b64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30667.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30668.png b/front/public/images/large/gregtech/gt.metaitem.01/30668.png deleted file mode 100644 index 5c62c1d96b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30668.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30669.png b/front/public/images/large/gregtech/gt.metaitem.01/30669.png deleted file mode 100644 index b954f1614e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30669.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30670.png b/front/public/images/large/gregtech/gt.metaitem.01/30670.png deleted file mode 100644 index 43d20da723..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30670.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30671.png b/front/public/images/large/gregtech/gt.metaitem.01/30671.png deleted file mode 100644 index 9ec6b99e59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30671.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30672.png b/front/public/images/large/gregtech/gt.metaitem.01/30672.png deleted file mode 100644 index a8fd3d44f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30672.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30673.png b/front/public/images/large/gregtech/gt.metaitem.01/30673.png deleted file mode 100644 index 4c21864132..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30673.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30674.png b/front/public/images/large/gregtech/gt.metaitem.01/30674.png deleted file mode 100644 index 814f143b1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30674.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30675.png b/front/public/images/large/gregtech/gt.metaitem.01/30675.png deleted file mode 100644 index 2d2bfc1264..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30675.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30677.png b/front/public/images/large/gregtech/gt.metaitem.01/30677.png deleted file mode 100644 index 3d0ced4550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30678.png b/front/public/images/large/gregtech/gt.metaitem.01/30678.png deleted file mode 100644 index 6802a85065..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30679.png b/front/public/images/large/gregtech/gt.metaitem.01/30679.png deleted file mode 100644 index 425e83fd1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30679.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30680.png b/front/public/images/large/gregtech/gt.metaitem.01/30680.png deleted file mode 100644 index b3c343ce1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30680.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30681.png b/front/public/images/large/gregtech/gt.metaitem.01/30681.png deleted file mode 100644 index 70a6880036..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30681.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30682.png b/front/public/images/large/gregtech/gt.metaitem.01/30682.png deleted file mode 100644 index e199fc6d36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30682.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30683.png b/front/public/images/large/gregtech/gt.metaitem.01/30683.png deleted file mode 100644 index a022fa81c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30683.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30684.png b/front/public/images/large/gregtech/gt.metaitem.01/30684.png deleted file mode 100644 index 5fe38ef849..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30684.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30686.png b/front/public/images/large/gregtech/gt.metaitem.01/30686.png deleted file mode 100644 index 47e7776778..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30686.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30687.png b/front/public/images/large/gregtech/gt.metaitem.01/30687.png deleted file mode 100644 index 7407370738..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30687.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30688.png b/front/public/images/large/gregtech/gt.metaitem.01/30688.png deleted file mode 100644 index 8cba1da8b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30688.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30689.png b/front/public/images/large/gregtech/gt.metaitem.01/30689.png deleted file mode 100644 index 0b80d79666..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30689.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30691.png b/front/public/images/large/gregtech/gt.metaitem.01/30691.png deleted file mode 100644 index e00eedb291..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30691.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30692.png b/front/public/images/large/gregtech/gt.metaitem.01/30692.png deleted file mode 100644 index 4c840aeaba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30692.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30693.png b/front/public/images/large/gregtech/gt.metaitem.01/30693.png deleted file mode 100644 index f8ffe55137..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30693.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30694.png b/front/public/images/large/gregtech/gt.metaitem.01/30694.png deleted file mode 100644 index 90e0b3898c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30694.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30702.png b/front/public/images/large/gregtech/gt.metaitem.01/30702.png deleted file mode 100644 index 193be79854..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30702.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30704.png b/front/public/images/large/gregtech/gt.metaitem.01/30704.png deleted file mode 100644 index de0fd60027..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30704.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30705.png b/front/public/images/large/gregtech/gt.metaitem.01/30705.png deleted file mode 100644 index bed0161fdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30705.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30706.png b/front/public/images/large/gregtech/gt.metaitem.01/30706.png deleted file mode 100644 index 4f9d65f106..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30706.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30707.png b/front/public/images/large/gregtech/gt.metaitem.01/30707.png deleted file mode 100644 index 9ebca8a7d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30707.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30708.png b/front/public/images/large/gregtech/gt.metaitem.01/30708.png deleted file mode 100644 index 66ebd01adf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30708.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30709.png b/front/public/images/large/gregtech/gt.metaitem.01/30709.png deleted file mode 100644 index eb86d5e442..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30709.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30711.png b/front/public/images/large/gregtech/gt.metaitem.01/30711.png deleted file mode 100644 index e8c8c8ec48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30711.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30712.png b/front/public/images/large/gregtech/gt.metaitem.01/30712.png deleted file mode 100644 index e1bdd0ef7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30712.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30713.png b/front/public/images/large/gregtech/gt.metaitem.01/30713.png deleted file mode 100644 index 0e2ca2a544..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30713.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30714.png b/front/public/images/large/gregtech/gt.metaitem.01/30714.png deleted file mode 100644 index 8f5ba32707..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30714.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30715.png b/front/public/images/large/gregtech/gt.metaitem.01/30715.png deleted file mode 100644 index 6d8464b552..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30715.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30716.png b/front/public/images/large/gregtech/gt.metaitem.01/30716.png deleted file mode 100644 index 2104db1374..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30716.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30717.png b/front/public/images/large/gregtech/gt.metaitem.01/30717.png deleted file mode 100644 index ac9b9e93a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30717.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30718.png b/front/public/images/large/gregtech/gt.metaitem.01/30718.png deleted file mode 100644 index a3b9859216..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30718.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30720.png b/front/public/images/large/gregtech/gt.metaitem.01/30720.png deleted file mode 100644 index 952cadc550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30720.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30721.png b/front/public/images/large/gregtech/gt.metaitem.01/30721.png deleted file mode 100644 index c70ac0679f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30721.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30722.png b/front/public/images/large/gregtech/gt.metaitem.01/30722.png deleted file mode 100644 index 788b13eef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30722.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30723.png b/front/public/images/large/gregtech/gt.metaitem.01/30723.png deleted file mode 100644 index 788b13eef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30723.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30724.png b/front/public/images/large/gregtech/gt.metaitem.01/30724.png deleted file mode 100644 index 1c7b1aa507..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30724.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30725.png b/front/public/images/large/gregtech/gt.metaitem.01/30725.png deleted file mode 100644 index df8550b376..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30725.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30726.png b/front/public/images/large/gregtech/gt.metaitem.01/30726.png deleted file mode 100644 index 522c4bb5b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30726.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30727.png b/front/public/images/large/gregtech/gt.metaitem.01/30727.png deleted file mode 100644 index e1437e1353..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30727.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30728.png b/front/public/images/large/gregtech/gt.metaitem.01/30728.png deleted file mode 100644 index 0a07280919..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30728.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30729.png b/front/public/images/large/gregtech/gt.metaitem.01/30729.png deleted file mode 100644 index 34bb3875ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30729.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30730.png b/front/public/images/large/gregtech/gt.metaitem.01/30730.png deleted file mode 100644 index 0dd43de270..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30730.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30731.png b/front/public/images/large/gregtech/gt.metaitem.01/30731.png deleted file mode 100644 index 0dd43de270..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30731.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30732.png b/front/public/images/large/gregtech/gt.metaitem.01/30732.png deleted file mode 100644 index 0dd43de270..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30732.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30733.png b/front/public/images/large/gregtech/gt.metaitem.01/30733.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30733.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30734.png b/front/public/images/large/gregtech/gt.metaitem.01/30734.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30734.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30735.png b/front/public/images/large/gregtech/gt.metaitem.01/30735.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30736.png b/front/public/images/large/gregtech/gt.metaitem.01/30736.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30736.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30737.png b/front/public/images/large/gregtech/gt.metaitem.01/30737.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30737.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30738.png b/front/public/images/large/gregtech/gt.metaitem.01/30738.png deleted file mode 100644 index 1c7b1aa507..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30738.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30739.png b/front/public/images/large/gregtech/gt.metaitem.01/30739.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30740.png b/front/public/images/large/gregtech/gt.metaitem.01/30740.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30741.png b/front/public/images/large/gregtech/gt.metaitem.01/30741.png deleted file mode 100644 index 1c7b1aa507..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30742.png b/front/public/images/large/gregtech/gt.metaitem.01/30742.png deleted file mode 100644 index 4985c7ccf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30742.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30743.png b/front/public/images/large/gregtech/gt.metaitem.01/30743.png deleted file mode 100644 index 30adc63e6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30743.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30745.png b/front/public/images/large/gregtech/gt.metaitem.01/30745.png deleted file mode 100644 index 38d941e6fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30746.png b/front/public/images/large/gregtech/gt.metaitem.01/30746.png deleted file mode 100644 index 38d941e6fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30746.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30747.png b/front/public/images/large/gregtech/gt.metaitem.01/30747.png deleted file mode 100644 index 38d941e6fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30747.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30748.png b/front/public/images/large/gregtech/gt.metaitem.01/30748.png deleted file mode 100644 index 38d941e6fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30748.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30750.png b/front/public/images/large/gregtech/gt.metaitem.01/30750.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30750.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30752.png b/front/public/images/large/gregtech/gt.metaitem.01/30752.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30752.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30760.png b/front/public/images/large/gregtech/gt.metaitem.01/30760.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30762.png b/front/public/images/large/gregtech/gt.metaitem.01/30762.png deleted file mode 100644 index fbcb9cc1ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30762.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30763.png b/front/public/images/large/gregtech/gt.metaitem.01/30763.png deleted file mode 100644 index 42183b24c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30763.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30764.png b/front/public/images/large/gregtech/gt.metaitem.01/30764.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30764.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30766.png b/front/public/images/large/gregtech/gt.metaitem.01/30766.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30766.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30767.png b/front/public/images/large/gregtech/gt.metaitem.01/30767.png deleted file mode 100644 index ed4a055fea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30767.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30768.png b/front/public/images/large/gregtech/gt.metaitem.01/30768.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30768.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30774.png b/front/public/images/large/gregtech/gt.metaitem.01/30774.png deleted file mode 100644 index dddf025ace..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30774.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30776.png b/front/public/images/large/gregtech/gt.metaitem.01/30776.png deleted file mode 100644 index 662866adce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30776.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30777.png b/front/public/images/large/gregtech/gt.metaitem.01/30777.png deleted file mode 100644 index 96689403b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30777.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30778.png b/front/public/images/large/gregtech/gt.metaitem.01/30778.png deleted file mode 100644 index d21e6a18ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30778.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30780.png b/front/public/images/large/gregtech/gt.metaitem.01/30780.png deleted file mode 100644 index 74c837ed3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30780.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30781.png b/front/public/images/large/gregtech/gt.metaitem.01/30781.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30781.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30783.png b/front/public/images/large/gregtech/gt.metaitem.01/30783.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30783.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30784.png b/front/public/images/large/gregtech/gt.metaitem.01/30784.png deleted file mode 100644 index 8bc97fdac4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30784.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30786.png b/front/public/images/large/gregtech/gt.metaitem.01/30786.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30786.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30787.png b/front/public/images/large/gregtech/gt.metaitem.01/30787.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30787.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30788.png b/front/public/images/large/gregtech/gt.metaitem.01/30788.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30788.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30789.png b/front/public/images/large/gregtech/gt.metaitem.01/30789.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30789.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30791.png b/front/public/images/large/gregtech/gt.metaitem.01/30791.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30791.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30792.png b/front/public/images/large/gregtech/gt.metaitem.01/30792.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30792.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30793.png b/front/public/images/large/gregtech/gt.metaitem.01/30793.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30793.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30794.png b/front/public/images/large/gregtech/gt.metaitem.01/30794.png deleted file mode 100644 index 8a9d73fa88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30794.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30795.png b/front/public/images/large/gregtech/gt.metaitem.01/30795.png deleted file mode 100644 index 4657ebc514..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30795.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30798.png b/front/public/images/large/gregtech/gt.metaitem.01/30798.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30798.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30799.png b/front/public/images/large/gregtech/gt.metaitem.01/30799.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30799.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30811.png b/front/public/images/large/gregtech/gt.metaitem.01/30811.png deleted file mode 100644 index 5e5aa2fec5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30811.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30833.png b/front/public/images/large/gregtech/gt.metaitem.01/30833.png deleted file mode 100644 index 62dcb8a56e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30833.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30853.png b/front/public/images/large/gregtech/gt.metaitem.01/30853.png deleted file mode 100644 index 52bc9ae525..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30853.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30865.png b/front/public/images/large/gregtech/gt.metaitem.01/30865.png deleted file mode 100644 index 70d41d3936..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30885.png b/front/public/images/large/gregtech/gt.metaitem.01/30885.png deleted file mode 100644 index c589f9f28b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30885.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30967.png b/front/public/images/large/gregtech/gt.metaitem.01/30967.png deleted file mode 100644 index 10101b6895..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30967.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30968.png b/front/public/images/large/gregtech/gt.metaitem.01/30968.png deleted file mode 100644 index 0f4e3f8be5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30968.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30972.png b/front/public/images/large/gregtech/gt.metaitem.01/30972.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30972.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30973.png b/front/public/images/large/gregtech/gt.metaitem.01/30973.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30973.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30979.png b/front/public/images/large/gregtech/gt.metaitem.01/30979.png deleted file mode 100644 index aaaea393b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30983.png b/front/public/images/large/gregtech/gt.metaitem.01/30983.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30983.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30993.png b/front/public/images/large/gregtech/gt.metaitem.01/30993.png deleted file mode 100644 index a2266e694a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30993.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30994.png b/front/public/images/large/gregtech/gt.metaitem.01/30994.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30994.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30995.png b/front/public/images/large/gregtech/gt.metaitem.01/30995.png deleted file mode 100644 index 4add50610d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30995.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30996.png b/front/public/images/large/gregtech/gt.metaitem.01/30996.png deleted file mode 100644 index f7391c2194..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30996.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30997.png b/front/public/images/large/gregtech/gt.metaitem.01/30997.png deleted file mode 100644 index e9c5f0f2ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30997.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30998.png b/front/public/images/large/gregtech/gt.metaitem.01/30998.png deleted file mode 100644 index e9c5f0f2ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30998.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/30999.png b/front/public/images/large/gregtech/gt.metaitem.01/30999.png deleted file mode 100644 index 758ae64075..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/30999.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32000.png b/front/public/images/large/gregtech/gt.metaitem.01/32000.png deleted file mode 100644 index 9494db64bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32000.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32001.png b/front/public/images/large/gregtech/gt.metaitem.01/32001.png deleted file mode 100644 index 95734edbc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32002.png b/front/public/images/large/gregtech/gt.metaitem.01/32002.png deleted file mode 100644 index 121bd1d468..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32003.png b/front/public/images/large/gregtech/gt.metaitem.01/32003.png deleted file mode 100644 index 051ca06ca0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32004.png b/front/public/images/large/gregtech/gt.metaitem.01/32004.png deleted file mode 100644 index 4dab0b26af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32005.png b/front/public/images/large/gregtech/gt.metaitem.01/32005.png deleted file mode 100644 index dabb963f44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32006.png b/front/public/images/large/gregtech/gt.metaitem.01/32006.png deleted file mode 100644 index ca805c4cb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32007.png b/front/public/images/large/gregtech/gt.metaitem.01/32007.png deleted file mode 100644 index 68bd28b210..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32008.png b/front/public/images/large/gregtech/gt.metaitem.01/32008.png deleted file mode 100644 index c9fb5c969d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32009.png b/front/public/images/large/gregtech/gt.metaitem.01/32009.png deleted file mode 100644 index 412f53e22e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32010.png b/front/public/images/large/gregtech/gt.metaitem.01/32010.png deleted file mode 100644 index 1f8c0e36e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32011.png b/front/public/images/large/gregtech/gt.metaitem.01/32011.png deleted file mode 100644 index 3b739c2c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32011.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32013.png b/front/public/images/large/gregtech/gt.metaitem.01/32013.png deleted file mode 100644 index a042979484..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32013.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32014.png b/front/public/images/large/gregtech/gt.metaitem.01/32014.png deleted file mode 100644 index 59a56462b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32014.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32015.png b/front/public/images/large/gregtech/gt.metaitem.01/32015.png deleted file mode 100644 index c02364e749..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32015.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32016.png b/front/public/images/large/gregtech/gt.metaitem.01/32016.png deleted file mode 100644 index 81982a8afa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32016.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32017.png b/front/public/images/large/gregtech/gt.metaitem.01/32017.png deleted file mode 100644 index 9a5b480aec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32017.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32018.png b/front/public/images/large/gregtech/gt.metaitem.01/32018.png deleted file mode 100644 index 6f4a4edd02..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32019.png b/front/public/images/large/gregtech/gt.metaitem.01/32019.png deleted file mode 100644 index 20930abb6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32020.png b/front/public/images/large/gregtech/gt.metaitem.01/32020.png deleted file mode 100644 index 29c7083333..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32021.png b/front/public/images/large/gregtech/gt.metaitem.01/32021.png deleted file mode 100644 index 96920c4c92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32022.png b/front/public/images/large/gregtech/gt.metaitem.01/32022.png deleted file mode 100644 index 3bbfe4d794..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32023.png b/front/public/images/large/gregtech/gt.metaitem.01/32023.png deleted file mode 100644 index bd1e4f8af0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32024.png b/front/public/images/large/gregtech/gt.metaitem.01/32024.png deleted file mode 100644 index b0cbf920c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32024.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32025.png b/front/public/images/large/gregtech/gt.metaitem.01/32025.png deleted file mode 100644 index d00f241c21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32026.png b/front/public/images/large/gregtech/gt.metaitem.01/32026.png deleted file mode 100644 index 63de6e5755..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32027.png b/front/public/images/large/gregtech/gt.metaitem.01/32027.png deleted file mode 100644 index 98f8c4678f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32028.png b/front/public/images/large/gregtech/gt.metaitem.01/32028.png deleted file mode 100644 index 8374523f07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32029.png b/front/public/images/large/gregtech/gt.metaitem.01/32029.png deleted file mode 100644 index dfa67b6690..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32030.png b/front/public/images/large/gregtech/gt.metaitem.01/32030.png deleted file mode 100644 index 7fd19fabcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32031.png b/front/public/images/large/gregtech/gt.metaitem.01/32031.png deleted file mode 100644 index b75e16eca2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32032.png b/front/public/images/large/gregtech/gt.metaitem.01/32032.png deleted file mode 100644 index e21dc8feec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32033.png b/front/public/images/large/gregtech/gt.metaitem.01/32033.png deleted file mode 100644 index 4ae9452024..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32034.png b/front/public/images/large/gregtech/gt.metaitem.01/32034.png deleted file mode 100644 index 6471eb1159..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32035.png b/front/public/images/large/gregtech/gt.metaitem.01/32035.png deleted file mode 100644 index c15e13f5e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32036.png b/front/public/images/large/gregtech/gt.metaitem.01/32036.png deleted file mode 100644 index 226e376512..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32037.png b/front/public/images/large/gregtech/gt.metaitem.01/32037.png deleted file mode 100644 index d5a6a869a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32038.png b/front/public/images/large/gregtech/gt.metaitem.01/32038.png deleted file mode 100644 index 60fd1ebd11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32038.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32039.png b/front/public/images/large/gregtech/gt.metaitem.01/32039.png deleted file mode 100644 index a5a3fa48a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32040.png b/front/public/images/large/gregtech/gt.metaitem.01/32040.png deleted file mode 100644 index e37071f513..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32040.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32041.png b/front/public/images/large/gregtech/gt.metaitem.01/32041.png deleted file mode 100644 index 4d8ff0ed86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32041.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32042.png b/front/public/images/large/gregtech/gt.metaitem.01/32042.png deleted file mode 100644 index 5cd982fdde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32042.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32043.png b/front/public/images/large/gregtech/gt.metaitem.01/32043.png deleted file mode 100644 index bc29bb6ad6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32044.png b/front/public/images/large/gregtech/gt.metaitem.01/32044.png deleted file mode 100644 index 18d8140e1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32045.png b/front/public/images/large/gregtech/gt.metaitem.01/32045.png deleted file mode 100644 index 2f71550748..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32046.png b/front/public/images/large/gregtech/gt.metaitem.01/32046.png deleted file mode 100644 index 2c8e7c15d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32046.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32047.png b/front/public/images/large/gregtech/gt.metaitem.01/32047.png deleted file mode 100644 index 224ff783a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32048.png b/front/public/images/large/gregtech/gt.metaitem.01/32048.png deleted file mode 100644 index c312d5fff6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32100.png b/front/public/images/large/gregtech/gt.metaitem.01/32100.png deleted file mode 100644 index 886ca97171..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32101.png b/front/public/images/large/gregtech/gt.metaitem.01/32101.png deleted file mode 100644 index cf8d8b001f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32110.png b/front/public/images/large/gregtech/gt.metaitem.01/32110.png deleted file mode 100644 index 9ba54692e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32111.png b/front/public/images/large/gregtech/gt.metaitem.01/32111.png deleted file mode 100644 index 8bdcb411f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32145.png b/front/public/images/large/gregtech/gt.metaitem.01/32145.png deleted file mode 100644 index 6f16ab1597..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32145.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32146.png b/front/public/images/large/gregtech/gt.metaitem.01/32146.png deleted file mode 100644 index 51ad8f6615..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32146.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32200.png b/front/public/images/large/gregtech/gt.metaitem.01/32200.png deleted file mode 100644 index 17a3beb161..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32201.png b/front/public/images/large/gregtech/gt.metaitem.01/32201.png deleted file mode 100644 index cfd1812e6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32202.png b/front/public/images/large/gregtech/gt.metaitem.01/32202.png deleted file mode 100644 index cfd1812e6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32203.png b/front/public/images/large/gregtech/gt.metaitem.01/32203.png deleted file mode 100644 index cfd1812e6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32204.png b/front/public/images/large/gregtech/gt.metaitem.01/32204.png deleted file mode 100644 index 177af9c630..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32205.png b/front/public/images/large/gregtech/gt.metaitem.01/32205.png deleted file mode 100644 index 177af9c630..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32206.png b/front/public/images/large/gregtech/gt.metaitem.01/32206.png deleted file mode 100644 index 01707cc6fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32207.png b/front/public/images/large/gregtech/gt.metaitem.01/32207.png deleted file mode 100644 index 01707cc6fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32208.png b/front/public/images/large/gregtech/gt.metaitem.01/32208.png deleted file mode 100644 index 5b2ca88700..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32225.png b/front/public/images/large/gregtech/gt.metaitem.01/32225.png deleted file mode 100644 index 41d175b1b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32225.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32226.png b/front/public/images/large/gregtech/gt.metaitem.01/32226.png deleted file mode 100644 index 0ec22d825c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32226.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32227.png b/front/public/images/large/gregtech/gt.metaitem.01/32227.png deleted file mode 100644 index 0ec22d825c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32227.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32228.png b/front/public/images/large/gregtech/gt.metaitem.01/32228.png deleted file mode 100644 index 0ec22d825c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32228.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32229.png b/front/public/images/large/gregtech/gt.metaitem.01/32229.png deleted file mode 100644 index 4669dfda95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32229.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32230.png b/front/public/images/large/gregtech/gt.metaitem.01/32230.png deleted file mode 100644 index 4669dfda95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32231.png b/front/public/images/large/gregtech/gt.metaitem.01/32231.png deleted file mode 100644 index ad95e91c76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32231.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32232.png b/front/public/images/large/gregtech/gt.metaitem.01/32232.png deleted file mode 100644 index ad95e91c76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32232.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32233.png b/front/public/images/large/gregtech/gt.metaitem.01/32233.png deleted file mode 100644 index 91b8c37967..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32233.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32250.png b/front/public/images/large/gregtech/gt.metaitem.01/32250.png deleted file mode 100644 index 63f365bf69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32250.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32251.png b/front/public/images/large/gregtech/gt.metaitem.01/32251.png deleted file mode 100644 index b784770bc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32251.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32252.png b/front/public/images/large/gregtech/gt.metaitem.01/32252.png deleted file mode 100644 index b784770bc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32252.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32253.png b/front/public/images/large/gregtech/gt.metaitem.01/32253.png deleted file mode 100644 index b784770bc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32253.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32254.png b/front/public/images/large/gregtech/gt.metaitem.01/32254.png deleted file mode 100644 index 62120c6733..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32254.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32255.png b/front/public/images/large/gregtech/gt.metaitem.01/32255.png deleted file mode 100644 index 62120c6733..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32255.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32256.png b/front/public/images/large/gregtech/gt.metaitem.01/32256.png deleted file mode 100644 index a629378c09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32256.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32257.png b/front/public/images/large/gregtech/gt.metaitem.01/32257.png deleted file mode 100644 index a629378c09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32257.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32258.png b/front/public/images/large/gregtech/gt.metaitem.01/32258.png deleted file mode 100644 index 69d2a2845a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32258.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32270.png b/front/public/images/large/gregtech/gt.metaitem.01/32270.png deleted file mode 100644 index abfae8ca8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32270.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32271.png b/front/public/images/large/gregtech/gt.metaitem.01/32271.png deleted file mode 100644 index abfae8ca8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32271.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32272.png b/front/public/images/large/gregtech/gt.metaitem.01/32272.png deleted file mode 100644 index c3ebc8c7da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32272.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32300.png b/front/public/images/large/gregtech/gt.metaitem.01/32300.png deleted file mode 100644 index 0a819e4bba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32301.png b/front/public/images/large/gregtech/gt.metaitem.01/32301.png deleted file mode 100644 index 0a5c06a178..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32302.png b/front/public/images/large/gregtech/gt.metaitem.01/32302.png deleted file mode 100644 index 158629950a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32303.png b/front/public/images/large/gregtech/gt.metaitem.01/32303.png deleted file mode 100644 index ba0f4b2afe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32304.png b/front/public/images/large/gregtech/gt.metaitem.01/32304.png deleted file mode 100644 index ec43c076a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32305.png b/front/public/images/large/gregtech/gt.metaitem.01/32305.png deleted file mode 100644 index d0a29c0634..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32306.png b/front/public/images/large/gregtech/gt.metaitem.01/32306.png deleted file mode 100644 index 7606a4fc86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32307.png b/front/public/images/large/gregtech/gt.metaitem.01/32307.png deleted file mode 100644 index e0a7faa6bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32308.png b/front/public/images/large/gregtech/gt.metaitem.01/32308.png deleted file mode 100644 index 82de57668f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32309.png b/front/public/images/large/gregtech/gt.metaitem.01/32309.png deleted file mode 100644 index a76ce13c52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32310.png b/front/public/images/large/gregtech/gt.metaitem.01/32310.png deleted file mode 100644 index 093a54634f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32311.png b/front/public/images/large/gregtech/gt.metaitem.01/32311.png deleted file mode 100644 index b3216929b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32312.png b/front/public/images/large/gregtech/gt.metaitem.01/32312.png deleted file mode 100644 index b7ecb372a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32313.png b/front/public/images/large/gregtech/gt.metaitem.01/32313.png deleted file mode 100644 index 56c5b649e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32314.png b/front/public/images/large/gregtech/gt.metaitem.01/32314.png deleted file mode 100644 index 77cea292df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32315.png b/front/public/images/large/gregtech/gt.metaitem.01/32315.png deleted file mode 100644 index 5fcba55c9f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32316.png b/front/public/images/large/gregtech/gt.metaitem.01/32316.png deleted file mode 100644 index 356cedbc0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32317.png b/front/public/images/large/gregtech/gt.metaitem.01/32317.png deleted file mode 100644 index 3b2bfe605d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32318.png b/front/public/images/large/gregtech/gt.metaitem.01/32318.png deleted file mode 100644 index 4fa1819946..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32319.png b/front/public/images/large/gregtech/gt.metaitem.01/32319.png deleted file mode 100644 index 5b9ae51bc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32320.png b/front/public/images/large/gregtech/gt.metaitem.01/32320.png deleted file mode 100644 index 418742d825..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32321.png b/front/public/images/large/gregtech/gt.metaitem.01/32321.png deleted file mode 100644 index b723ca3cc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32322.png b/front/public/images/large/gregtech/gt.metaitem.01/32322.png deleted file mode 100644 index 227b9e39ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32322.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32323.png b/front/public/images/large/gregtech/gt.metaitem.01/32323.png deleted file mode 100644 index 104ffd1b20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32324.png b/front/public/images/large/gregtech/gt.metaitem.01/32324.png deleted file mode 100644 index 7021bedd23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32325.png b/front/public/images/large/gregtech/gt.metaitem.01/32325.png deleted file mode 100644 index e23f7181e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32326.png b/front/public/images/large/gregtech/gt.metaitem.01/32326.png deleted file mode 100644 index 7f01019f10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32327.png b/front/public/images/large/gregtech/gt.metaitem.01/32327.png deleted file mode 100644 index ff4d0b764e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32328.png b/front/public/images/large/gregtech/gt.metaitem.01/32328.png deleted file mode 100644 index 63a48f7f9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32329.png b/front/public/images/large/gregtech/gt.metaitem.01/32329.png deleted file mode 100644 index ea888a59b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32330.png b/front/public/images/large/gregtech/gt.metaitem.01/32330.png deleted file mode 100644 index c403b1a14e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32331.png b/front/public/images/large/gregtech/gt.metaitem.01/32331.png deleted file mode 100644 index fb4481f480..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32332.png b/front/public/images/large/gregtech/gt.metaitem.01/32332.png deleted file mode 100644 index 8681cf3842..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32332.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32333.png b/front/public/images/large/gregtech/gt.metaitem.01/32333.png deleted file mode 100644 index 643174fa4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32334.png b/front/public/images/large/gregtech/gt.metaitem.01/32334.png deleted file mode 100644 index 66d158ee76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32335.png b/front/public/images/large/gregtech/gt.metaitem.01/32335.png deleted file mode 100644 index e088a77b23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32336.png b/front/public/images/large/gregtech/gt.metaitem.01/32336.png deleted file mode 100644 index 13fad2d6a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32350.png b/front/public/images/large/gregtech/gt.metaitem.01/32350.png deleted file mode 100644 index cca646b9b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32351.png b/front/public/images/large/gregtech/gt.metaitem.01/32351.png deleted file mode 100644 index 3753c16ace..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32352.png b/front/public/images/large/gregtech/gt.metaitem.01/32352.png deleted file mode 100644 index 9cfb3146d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32353.png b/front/public/images/large/gregtech/gt.metaitem.01/32353.png deleted file mode 100644 index 77b9a0180f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32354.png b/front/public/images/large/gregtech/gt.metaitem.01/32354.png deleted file mode 100644 index 6ad72c956b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32355.png b/front/public/images/large/gregtech/gt.metaitem.01/32355.png deleted file mode 100644 index 210c9e2f92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32356.png b/front/public/images/large/gregtech/gt.metaitem.01/32356.png deleted file mode 100644 index 347cc1f03f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32357.png b/front/public/images/large/gregtech/gt.metaitem.01/32357.png deleted file mode 100644 index db65d73e35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32358.png b/front/public/images/large/gregtech/gt.metaitem.01/32358.png deleted file mode 100644 index 78d79aa984..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32359.png b/front/public/images/large/gregtech/gt.metaitem.01/32359.png deleted file mode 100644 index 7950d56193..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32360.png b/front/public/images/large/gregtech/gt.metaitem.01/32360.png deleted file mode 100644 index aa0c3a15c3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32361.png b/front/public/images/large/gregtech/gt.metaitem.01/32361.png deleted file mode 100644 index 8f44ccec09..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32362.png b/front/public/images/large/gregtech/gt.metaitem.01/32362.png deleted file mode 100644 index c724f62b8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32363.png b/front/public/images/large/gregtech/gt.metaitem.01/32363.png deleted file mode 100644 index 475f5ffd38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32364.png b/front/public/images/large/gregtech/gt.metaitem.01/32364.png deleted file mode 100644 index f227f9c31a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32365.png b/front/public/images/large/gregtech/gt.metaitem.01/32365.png deleted file mode 100644 index 70e7d0f558..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32366.png b/front/public/images/large/gregtech/gt.metaitem.01/32366.png deleted file mode 100644 index 554bf610c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32367.png b/front/public/images/large/gregtech/gt.metaitem.01/32367.png deleted file mode 100644 index e909f7c55a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32368.png b/front/public/images/large/gregtech/gt.metaitem.01/32368.png deleted file mode 100644 index ec9547d786..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32369.png b/front/public/images/large/gregtech/gt.metaitem.01/32369.png deleted file mode 100644 index 602ee24f96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32370.png b/front/public/images/large/gregtech/gt.metaitem.01/32370.png deleted file mode 100644 index 168e68a84c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32371.png b/front/public/images/large/gregtech/gt.metaitem.01/32371.png deleted file mode 100644 index 30fc59adcc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32372.png b/front/public/images/large/gregtech/gt.metaitem.01/32372.png deleted file mode 100644 index 5ff5808465..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32373.png b/front/public/images/large/gregtech/gt.metaitem.01/32373.png deleted file mode 100644 index 0ac74b861f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32374.png b/front/public/images/large/gregtech/gt.metaitem.01/32374.png deleted file mode 100644 index 658580b52c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32375.png b/front/public/images/large/gregtech/gt.metaitem.01/32375.png deleted file mode 100644 index 913365dd21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32375.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32376.png b/front/public/images/large/gregtech/gt.metaitem.01/32376.png deleted file mode 100644 index a039f7f979..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32376.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32377.png b/front/public/images/large/gregtech/gt.metaitem.01/32377.png deleted file mode 100644 index d3be555543..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32377.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32398.png b/front/public/images/large/gregtech/gt.metaitem.01/32398.png deleted file mode 100644 index e8f14a0ef5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32399.png b/front/public/images/large/gregtech/gt.metaitem.01/32399.png deleted file mode 100644 index 2087aa1b8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32400.png b/front/public/images/large/gregtech/gt.metaitem.01/32400.png deleted file mode 100644 index 4cb0a44529..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32401.png b/front/public/images/large/gregtech/gt.metaitem.01/32401.png deleted file mode 100644 index e72b43e487..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32402.png b/front/public/images/large/gregtech/gt.metaitem.01/32402.png deleted file mode 100644 index b76321001e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32403.png b/front/public/images/large/gregtech/gt.metaitem.01/32403.png deleted file mode 100644 index 69c490a2a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32404.png b/front/public/images/large/gregtech/gt.metaitem.01/32404.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32405.png b/front/public/images/large/gregtech/gt.metaitem.01/32405.png deleted file mode 100644 index 069a01494a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32406.png b/front/public/images/large/gregtech/gt.metaitem.01/32406.png deleted file mode 100644 index 444e87494e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32407.png b/front/public/images/large/gregtech/gt.metaitem.01/32407.png deleted file mode 100644 index bd90072e6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32408.png b/front/public/images/large/gregtech/gt.metaitem.01/32408.png deleted file mode 100644 index 5faa5ea130..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32409.png b/front/public/images/large/gregtech/gt.metaitem.01/32409.png deleted file mode 100644 index 8a8a3b20e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32409.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32410.png b/front/public/images/large/gregtech/gt.metaitem.01/32410.png deleted file mode 100644 index 7932c5b3dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32410.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32411.png b/front/public/images/large/gregtech/gt.metaitem.01/32411.png deleted file mode 100644 index d249a56205..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32411.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32412.png b/front/public/images/large/gregtech/gt.metaitem.01/32412.png deleted file mode 100644 index 60e4984be4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32412.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32413.png b/front/public/images/large/gregtech/gt.metaitem.01/32413.png deleted file mode 100644 index 1a20ad17c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32413.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32415.png b/front/public/images/large/gregtech/gt.metaitem.01/32415.png deleted file mode 100644 index fc666e6fb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32415.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32416.png b/front/public/images/large/gregtech/gt.metaitem.01/32416.png deleted file mode 100644 index 43102bae44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32416.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32417.png b/front/public/images/large/gregtech/gt.metaitem.01/32417.png deleted file mode 100644 index 31abdfb86e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32417.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32427.png b/front/public/images/large/gregtech/gt.metaitem.01/32427.png deleted file mode 100644 index eb72c26a17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32427.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32428.png b/front/public/images/large/gregtech/gt.metaitem.01/32428.png deleted file mode 100644 index 1008e84a66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32428.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32429.png b/front/public/images/large/gregtech/gt.metaitem.01/32429.png deleted file mode 100644 index 92d8af3f5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32429.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32430.png b/front/public/images/large/gregtech/gt.metaitem.01/32430.png deleted file mode 100644 index cbda38098d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32430.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32432.png b/front/public/images/large/gregtech/gt.metaitem.01/32432.png deleted file mode 100644 index 1ed764ca66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32432.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32434.png b/front/public/images/large/gregtech/gt.metaitem.01/32434.png deleted file mode 100644 index e621f6351f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32434.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32436.png b/front/public/images/large/gregtech/gt.metaitem.01/32436.png deleted file mode 100644 index 4a73cff32e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32436.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32438.png b/front/public/images/large/gregtech/gt.metaitem.01/32438.png deleted file mode 100644 index de41b38e00..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32438.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32440.png b/front/public/images/large/gregtech/gt.metaitem.01/32440.png deleted file mode 100644 index 8d1589a1f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32440.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32442.png b/front/public/images/large/gregtech/gt.metaitem.01/32442.png deleted file mode 100644 index b16bd49a66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32442.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32444.png b/front/public/images/large/gregtech/gt.metaitem.01/32444.png deleted file mode 100644 index 57b4663cd0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32444.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32446.png b/front/public/images/large/gregtech/gt.metaitem.01/32446.png deleted file mode 100644 index 303cb8810c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32446.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32448.png b/front/public/images/large/gregtech/gt.metaitem.01/32448.png deleted file mode 100644 index aa7cef2107..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32448.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32450.png b/front/public/images/large/gregtech/gt.metaitem.01/32450.png deleted file mode 100644 index 94ddb56a9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32450.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32452.png b/front/public/images/large/gregtech/gt.metaitem.01/32452.png deleted file mode 100644 index 3a8eef3c49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32452.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32454.png b/front/public/images/large/gregtech/gt.metaitem.01/32454.png deleted file mode 100644 index 8041864cad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32454.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32456.png b/front/public/images/large/gregtech/gt.metaitem.01/32456.png deleted file mode 100644 index 946b5a38fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32456.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32458.png b/front/public/images/large/gregtech/gt.metaitem.01/32458.png deleted file mode 100644 index 0a03b2db5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32458.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32460.png b/front/public/images/large/gregtech/gt.metaitem.01/32460.png deleted file mode 100644 index 2bc3500ba5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32460.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32462.png b/front/public/images/large/gregtech/gt.metaitem.01/32462.png deleted file mode 100644 index a28e0ec20c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32462.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32463.png b/front/public/images/large/gregtech/gt.metaitem.01/32463.png deleted file mode 100644 index 2cbb61c817..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32463.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32464.png b/front/public/images/large/gregtech/gt.metaitem.01/32464.png deleted file mode 100644 index 3b7662e098..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32464.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32465.png b/front/public/images/large/gregtech/gt.metaitem.01/32465.png deleted file mode 100644 index 06a9798367..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32465.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32467.png b/front/public/images/large/gregtech/gt.metaitem.01/32467.png deleted file mode 100644 index 2937c6a32c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32467.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32471.png b/front/public/images/large/gregtech/gt.metaitem.01/32471.png deleted file mode 100644 index e6cd90e77f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32473.png b/front/public/images/large/gregtech/gt.metaitem.01/32473.png deleted file mode 100644 index 4fb6e75aa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32474.png b/front/public/images/large/gregtech/gt.metaitem.01/32474.png deleted file mode 100644 index a7883de095..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32474.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32476.png b/front/public/images/large/gregtech/gt.metaitem.01/32476.png deleted file mode 100644 index a7883de095..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32476.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32477.png b/front/public/images/large/gregtech/gt.metaitem.01/32477.png deleted file mode 100644 index dcf66ee825..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32477.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32479.png b/front/public/images/large/gregtech/gt.metaitem.01/32479.png deleted file mode 100644 index dcf66ee825..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32479.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32480.png b/front/public/images/large/gregtech/gt.metaitem.01/32480.png deleted file mode 100644 index a54126998b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32480.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32481.png b/front/public/images/large/gregtech/gt.metaitem.01/32481.png deleted file mode 100644 index ddbe10dcac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32481.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32487.png b/front/public/images/large/gregtech/gt.metaitem.01/32487.png deleted file mode 100644 index 443d698a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32487.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32488.png b/front/public/images/large/gregtech/gt.metaitem.01/32488.png deleted file mode 100644 index dd53b5b779..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32489.png b/front/public/images/large/gregtech/gt.metaitem.01/32489.png deleted file mode 100644 index 2e8d3ece33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32490.png b/front/public/images/large/gregtech/gt.metaitem.01/32490.png deleted file mode 100644 index a7693ca0b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32490.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32491.png b/front/public/images/large/gregtech/gt.metaitem.01/32491.png deleted file mode 100644 index 11de26fc74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32491.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32495.png b/front/public/images/large/gregtech/gt.metaitem.01/32495.png deleted file mode 100644 index febf03ef70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32495.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32496.png b/front/public/images/large/gregtech/gt.metaitem.01/32496.png deleted file mode 100644 index cbe2a02f4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32496.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32497.png b/front/public/images/large/gregtech/gt.metaitem.01/32497.png deleted file mode 100644 index 1b98241eef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32497.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32498.png b/front/public/images/large/gregtech/gt.metaitem.01/32498.png deleted file mode 100644 index 0fc5787bf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32498.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32499.png b/front/public/images/large/gregtech/gt.metaitem.01/32499.png deleted file mode 100644 index ca5fdac6ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32499.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32500.png b/front/public/images/large/gregtech/gt.metaitem.01/32500.png deleted file mode 100644 index 067404dde5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32501.png b/front/public/images/large/gregtech/gt.metaitem.01/32501.png deleted file mode 100644 index 2484840224..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32502.png b/front/public/images/large/gregtech/gt.metaitem.01/32502.png deleted file mode 100644 index abeda9f305..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32510.png b/front/public/images/large/gregtech/gt.metaitem.01/32510.png deleted file mode 100644 index 5754fdfe48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32511.png b/front/public/images/large/gregtech/gt.metaitem.01/32511.png deleted file mode 100644 index b5ced0bf54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32517.png b/front/public/images/large/gregtech/gt.metaitem.01/32517.png deleted file mode 100644 index f26f792a51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32517.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32518.png b/front/public/images/large/gregtech/gt.metaitem.01/32518.png deleted file mode 100644 index f26f792a51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32519.png b/front/public/images/large/gregtech/gt.metaitem.01/32519.png deleted file mode 100644 index f26f792a51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32520.png b/front/public/images/large/gregtech/gt.metaitem.01/32520.png deleted file mode 100644 index e4bd8ebf8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32521.png b/front/public/images/large/gregtech/gt.metaitem.01/32521.png deleted file mode 100644 index eda8888f66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32527.png b/front/public/images/large/gregtech/gt.metaitem.01/32527.png deleted file mode 100644 index f910235aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32528.png b/front/public/images/large/gregtech/gt.metaitem.01/32528.png deleted file mode 100644 index f910235aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32529.png b/front/public/images/large/gregtech/gt.metaitem.01/32529.png deleted file mode 100644 index f910235aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32530.png b/front/public/images/large/gregtech/gt.metaitem.01/32530.png deleted file mode 100644 index 842ddb76b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32531.png b/front/public/images/large/gregtech/gt.metaitem.01/32531.png deleted file mode 100644 index 0544c65d7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32537.png b/front/public/images/large/gregtech/gt.metaitem.01/32537.png deleted file mode 100644 index de9144e9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32538.png b/front/public/images/large/gregtech/gt.metaitem.01/32538.png deleted file mode 100644 index de9144e9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32539.png b/front/public/images/large/gregtech/gt.metaitem.01/32539.png deleted file mode 100644 index de9144e9f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32539.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32577.png b/front/public/images/large/gregtech/gt.metaitem.01/32577.png deleted file mode 100644 index c5b3a62c7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32577.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32594.png b/front/public/images/large/gregtech/gt.metaitem.01/32594.png deleted file mode 100644 index 5784b84404..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32594.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32595.png b/front/public/images/large/gregtech/gt.metaitem.01/32595.png deleted file mode 100644 index 3e0c2b2438..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32595.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32596.png b/front/public/images/large/gregtech/gt.metaitem.01/32596.png deleted file mode 100644 index 62312e5184..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32596.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32597.png b/front/public/images/large/gregtech/gt.metaitem.01/32597.png deleted file mode 100644 index d7f2e4822a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32597.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32598.png b/front/public/images/large/gregtech/gt.metaitem.01/32598.png deleted file mode 100644 index fa7baa85be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32598.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32599.png b/front/public/images/large/gregtech/gt.metaitem.01/32599.png deleted file mode 100644 index e2d0f51ab0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32600.png b/front/public/images/large/gregtech/gt.metaitem.01/32600.png deleted file mode 100644 index 1b76690fea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32600.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32601.png b/front/public/images/large/gregtech/gt.metaitem.01/32601.png deleted file mode 100644 index 64dbd247fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32601.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32602.png b/front/public/images/large/gregtech/gt.metaitem.01/32602.png deleted file mode 100644 index 01153b4602..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32602.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32603.png b/front/public/images/large/gregtech/gt.metaitem.01/32603.png deleted file mode 100644 index 674e923ac1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32603.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32604.png b/front/public/images/large/gregtech/gt.metaitem.01/32604.png deleted file mode 100644 index 257180d154..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32604.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32605.png b/front/public/images/large/gregtech/gt.metaitem.01/32605.png deleted file mode 100644 index 3c83ba58df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32605.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32606.png b/front/public/images/large/gregtech/gt.metaitem.01/32606.png deleted file mode 100644 index 9af7cb0d60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32606.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32607.png b/front/public/images/large/gregtech/gt.metaitem.01/32607.png deleted file mode 100644 index f87d5bf0d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32607.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32608.png b/front/public/images/large/gregtech/gt.metaitem.01/32608.png deleted file mode 100644 index b91e35a6c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32608.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32609.png b/front/public/images/large/gregtech/gt.metaitem.01/32609.png deleted file mode 100644 index 2160520197..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32609.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32610.png b/front/public/images/large/gregtech/gt.metaitem.01/32610.png deleted file mode 100644 index 145ea94e3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32611.png b/front/public/images/large/gregtech/gt.metaitem.01/32611.png deleted file mode 100644 index c6ddbdc21e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32612.png b/front/public/images/large/gregtech/gt.metaitem.01/32612.png deleted file mode 100644 index 06fc4a35ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32612.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32613.png b/front/public/images/large/gregtech/gt.metaitem.01/32613.png deleted file mode 100644 index 39b93774ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32614.png b/front/public/images/large/gregtech/gt.metaitem.01/32614.png deleted file mode 100644 index c4364b3d78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32614.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32615.png b/front/public/images/large/gregtech/gt.metaitem.01/32615.png deleted file mode 100644 index 9b26347a4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32615.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32616.png b/front/public/images/large/gregtech/gt.metaitem.01/32616.png deleted file mode 100644 index 9135ad3891..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32616.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32617.png b/front/public/images/large/gregtech/gt.metaitem.01/32617.png deleted file mode 100644 index 4a300b4a12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32617.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32618.png b/front/public/images/large/gregtech/gt.metaitem.01/32618.png deleted file mode 100644 index 79ab446bdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32618.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32619.png b/front/public/images/large/gregtech/gt.metaitem.01/32619.png deleted file mode 100644 index 1e0817c33d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32619.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32620.png b/front/public/images/large/gregtech/gt.metaitem.01/32620.png deleted file mode 100644 index 140468885c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32620.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32621.png b/front/public/images/large/gregtech/gt.metaitem.01/32621.png deleted file mode 100644 index 109e11cd92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32621.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32622.png b/front/public/images/large/gregtech/gt.metaitem.01/32622.png deleted file mode 100644 index 9db4a18ee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32622.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32623.png b/front/public/images/large/gregtech/gt.metaitem.01/32623.png deleted file mode 100644 index d6317c0967..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32623.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32624.png b/front/public/images/large/gregtech/gt.metaitem.01/32624.png deleted file mode 100644 index 1a58b7d21e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32624.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32630.png b/front/public/images/large/gregtech/gt.metaitem.01/32630.png deleted file mode 100644 index e5ac12d9b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32630.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32631.png b/front/public/images/large/gregtech/gt.metaitem.01/32631.png deleted file mode 100644 index d7e593de54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32632.png b/front/public/images/large/gregtech/gt.metaitem.01/32632.png deleted file mode 100644 index 407134fdc8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32632.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32633.png b/front/public/images/large/gregtech/gt.metaitem.01/32633.png deleted file mode 100644 index 5c86ff1ab1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32633.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32634.png b/front/public/images/large/gregtech/gt.metaitem.01/32634.png deleted file mode 100644 index 80d8c04c45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32634.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32635.png b/front/public/images/large/gregtech/gt.metaitem.01/32635.png deleted file mode 100644 index 07c69ea2c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32636.png b/front/public/images/large/gregtech/gt.metaitem.01/32636.png deleted file mode 100644 index 631934cea4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32637.png b/front/public/images/large/gregtech/gt.metaitem.01/32637.png deleted file mode 100644 index 1e167a3567..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32637.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32638.png b/front/public/images/large/gregtech/gt.metaitem.01/32638.png deleted file mode 100644 index 7cf61d4209..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32638.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32639.png b/front/public/images/large/gregtech/gt.metaitem.01/32639.png deleted file mode 100644 index 5f287080b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32639.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32640.png b/front/public/images/large/gregtech/gt.metaitem.01/32640.png deleted file mode 100644 index b016cb9f22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32640.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32641.png b/front/public/images/large/gregtech/gt.metaitem.01/32641.png deleted file mode 100644 index 64e3fe6ba7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32641.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32642.png b/front/public/images/large/gregtech/gt.metaitem.01/32642.png deleted file mode 100644 index 652fca300d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32643.png b/front/public/images/large/gregtech/gt.metaitem.01/32643.png deleted file mode 100644 index fecd81e84c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32644.png b/front/public/images/large/gregtech/gt.metaitem.01/32644.png deleted file mode 100644 index 06ff7b5e7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32645.png b/front/public/images/large/gregtech/gt.metaitem.01/32645.png deleted file mode 100644 index 5a9cad2bca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32646.png b/front/public/images/large/gregtech/gt.metaitem.01/32646.png deleted file mode 100644 index 20fa1ae51b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32647.png b/front/public/images/large/gregtech/gt.metaitem.01/32647.png deleted file mode 100644 index c634fcf92b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32647.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32648.png b/front/public/images/large/gregtech/gt.metaitem.01/32648.png deleted file mode 100644 index 70c84a13ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32648.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32649.png b/front/public/images/large/gregtech/gt.metaitem.01/32649.png deleted file mode 100644 index e20b0210b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32650.png b/front/public/images/large/gregtech/gt.metaitem.01/32650.png deleted file mode 100644 index 2f7a130631..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32650.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32651.png b/front/public/images/large/gregtech/gt.metaitem.01/32651.png deleted file mode 100644 index 560b7c08e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32651.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32652.png b/front/public/images/large/gregtech/gt.metaitem.01/32652.png deleted file mode 100644 index 2dca6c852c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32652.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32653.png b/front/public/images/large/gregtech/gt.metaitem.01/32653.png deleted file mode 100644 index 6b784ff8ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32653.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32654.png b/front/public/images/large/gregtech/gt.metaitem.01/32654.png deleted file mode 100644 index 5d48a3f1ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32654.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32655.png b/front/public/images/large/gregtech/gt.metaitem.01/32655.png deleted file mode 100644 index 82e2777035..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32655.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32656.png b/front/public/images/large/gregtech/gt.metaitem.01/32656.png deleted file mode 100644 index 6178408597..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32656.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32657.png b/front/public/images/large/gregtech/gt.metaitem.01/32657.png deleted file mode 100644 index c5afb11938..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32657.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32658.png b/front/public/images/large/gregtech/gt.metaitem.01/32658.png deleted file mode 100644 index 6f47469bac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32658.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32659.png b/front/public/images/large/gregtech/gt.metaitem.01/32659.png deleted file mode 100644 index b29bb167d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32659.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32660.png b/front/public/images/large/gregtech/gt.metaitem.01/32660.png deleted file mode 100644 index b161a35bd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32660.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32661.png b/front/public/images/large/gregtech/gt.metaitem.01/32661.png deleted file mode 100644 index c3ba13a308..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32661.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32662.png b/front/public/images/large/gregtech/gt.metaitem.01/32662.png deleted file mode 100644 index 117ebcaec1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32662.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32663.png b/front/public/images/large/gregtech/gt.metaitem.01/32663.png deleted file mode 100644 index a1bdc47fd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32663.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32664.png b/front/public/images/large/gregtech/gt.metaitem.01/32664.png deleted file mode 100644 index 9524c3fcb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32664.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32665.png b/front/public/images/large/gregtech/gt.metaitem.01/32665.png deleted file mode 100644 index 775b8b81c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32665.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32666.png b/front/public/images/large/gregtech/gt.metaitem.01/32666.png deleted file mode 100644 index e827ebdda2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32666.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32667.png b/front/public/images/large/gregtech/gt.metaitem.01/32667.png deleted file mode 100644 index 1056a6e442..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32667.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32668.png b/front/public/images/large/gregtech/gt.metaitem.01/32668.png deleted file mode 100644 index 668953c865..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32668.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32669.png b/front/public/images/large/gregtech/gt.metaitem.01/32669.png deleted file mode 100644 index 3e052bed03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32669.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32670.png b/front/public/images/large/gregtech/gt.metaitem.01/32670.png deleted file mode 100644 index 5207205450..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32670.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32671.png b/front/public/images/large/gregtech/gt.metaitem.01/32671.png deleted file mode 100644 index 1b33031c05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32671.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32672.png b/front/public/images/large/gregtech/gt.metaitem.01/32672.png deleted file mode 100644 index 758b09698c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32672.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32673.png b/front/public/images/large/gregtech/gt.metaitem.01/32673.png deleted file mode 100644 index 329f9dbbd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32673.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32674.png b/front/public/images/large/gregtech/gt.metaitem.01/32674.png deleted file mode 100644 index 215a1b66a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32674.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32675.png b/front/public/images/large/gregtech/gt.metaitem.01/32675.png deleted file mode 100644 index 580abba5e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32675.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32676.png b/front/public/images/large/gregtech/gt.metaitem.01/32676.png deleted file mode 100644 index 25c717cb90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32676.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32677.png b/front/public/images/large/gregtech/gt.metaitem.01/32677.png deleted file mode 100644 index fbefe9c5ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32678.png b/front/public/images/large/gregtech/gt.metaitem.01/32678.png deleted file mode 100644 index b7ef6e7ffc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32679.png b/front/public/images/large/gregtech/gt.metaitem.01/32679.png deleted file mode 100644 index 19b3dfdabf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32679.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32680.png b/front/public/images/large/gregtech/gt.metaitem.01/32680.png deleted file mode 100644 index 8eec202f1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32680.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32681.png b/front/public/images/large/gregtech/gt.metaitem.01/32681.png deleted file mode 100644 index 0dad4e7260..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32681.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32682.png b/front/public/images/large/gregtech/gt.metaitem.01/32682.png deleted file mode 100644 index 555a327ed1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32682.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32683.png b/front/public/images/large/gregtech/gt.metaitem.01/32683.png deleted file mode 100644 index cc9ce8ab38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32683.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32684.png b/front/public/images/large/gregtech/gt.metaitem.01/32684.png deleted file mode 100644 index e1045a4303..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32684.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32685.png b/front/public/images/large/gregtech/gt.metaitem.01/32685.png deleted file mode 100644 index 779a03b4e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32685.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32686.png b/front/public/images/large/gregtech/gt.metaitem.01/32686.png deleted file mode 100644 index abc58c2b39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32686.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32687.png b/front/public/images/large/gregtech/gt.metaitem.01/32687.png deleted file mode 100644 index a818c445c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32687.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32688.png b/front/public/images/large/gregtech/gt.metaitem.01/32688.png deleted file mode 100644 index d433d721a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32688.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32689.png b/front/public/images/large/gregtech/gt.metaitem.01/32689.png deleted file mode 100644 index 737c904e85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32689.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32690.png b/front/public/images/large/gregtech/gt.metaitem.01/32690.png deleted file mode 100644 index da89dae807..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32690.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32691.png b/front/public/images/large/gregtech/gt.metaitem.01/32691.png deleted file mode 100644 index d55d493f72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32691.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32692.png b/front/public/images/large/gregtech/gt.metaitem.01/32692.png deleted file mode 100644 index ec27bc5371..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32692.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32693.png b/front/public/images/large/gregtech/gt.metaitem.01/32693.png deleted file mode 100644 index 7837bd9c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32693.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32694.png b/front/public/images/large/gregtech/gt.metaitem.01/32694.png deleted file mode 100644 index c65c751952..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32694.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32695.png b/front/public/images/large/gregtech/gt.metaitem.01/32695.png deleted file mode 100644 index f8eacd78a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32695.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32696.png b/front/public/images/large/gregtech/gt.metaitem.01/32696.png deleted file mode 100644 index 903b11d101..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32696.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32697.png b/front/public/images/large/gregtech/gt.metaitem.01/32697.png deleted file mode 100644 index fb3c03a034..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32697.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32698.png b/front/public/images/large/gregtech/gt.metaitem.01/32698.png deleted file mode 100644 index de13ea30ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32698.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32699.png b/front/public/images/large/gregtech/gt.metaitem.01/32699.png deleted file mode 100644 index c0c7b2b1e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32699.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32700.png b/front/public/images/large/gregtech/gt.metaitem.01/32700.png deleted file mode 100644 index d82bba567f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32700.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32701.png b/front/public/images/large/gregtech/gt.metaitem.01/32701.png deleted file mode 100644 index c4baaa5f16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32701.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32702.png b/front/public/images/large/gregtech/gt.metaitem.01/32702.png deleted file mode 100644 index 425183ec53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32702.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32703.png b/front/public/images/large/gregtech/gt.metaitem.01/32703.png deleted file mode 100644 index 33b8a763ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32703.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32704.png b/front/public/images/large/gregtech/gt.metaitem.01/32704.png deleted file mode 100644 index 96225b6d6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32704.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32705.png b/front/public/images/large/gregtech/gt.metaitem.01/32705.png deleted file mode 100644 index 8748291c48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32705.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32706.png b/front/public/images/large/gregtech/gt.metaitem.01/32706.png deleted file mode 100644 index fee8e8f81e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32706.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32707.png b/front/public/images/large/gregtech/gt.metaitem.01/32707.png deleted file mode 100644 index fe03b6eb7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32707.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32708.png b/front/public/images/large/gregtech/gt.metaitem.01/32708.png deleted file mode 100644 index 03d4eaf7f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32708.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32709.png b/front/public/images/large/gregtech/gt.metaitem.01/32709.png deleted file mode 100644 index 9aa7dcfc76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32709.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32710.png b/front/public/images/large/gregtech/gt.metaitem.01/32710.png deleted file mode 100644 index d8c2e2c80e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32710.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32711.png b/front/public/images/large/gregtech/gt.metaitem.01/32711.png deleted file mode 100644 index f02bf5c4e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32711.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32712.png b/front/public/images/large/gregtech/gt.metaitem.01/32712.png deleted file mode 100644 index b056830082..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32712.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32713.png b/front/public/images/large/gregtech/gt.metaitem.01/32713.png deleted file mode 100644 index a5f2adbd66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32713.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32714.png b/front/public/images/large/gregtech/gt.metaitem.01/32714.png deleted file mode 100644 index 6dc6cd070f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32714.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32715.png b/front/public/images/large/gregtech/gt.metaitem.01/32715.png deleted file mode 100644 index c2dc7ad4f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32715.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32716.png b/front/public/images/large/gregtech/gt.metaitem.01/32716.png deleted file mode 100644 index e62fdf20d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32716.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32717.png b/front/public/images/large/gregtech/gt.metaitem.01/32717.png deleted file mode 100644 index d191a29224..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32717.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32718.png b/front/public/images/large/gregtech/gt.metaitem.01/32718.png deleted file mode 100644 index f48f68edd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32718.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32719.png b/front/public/images/large/gregtech/gt.metaitem.01/32719.png deleted file mode 100644 index 8db7db8a85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32719.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32720.png b/front/public/images/large/gregtech/gt.metaitem.01/32720.png deleted file mode 100644 index 6a6516f4eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32720.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32721.png b/front/public/images/large/gregtech/gt.metaitem.01/32721.png deleted file mode 100644 index 76cb76e36a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32721.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32722.png b/front/public/images/large/gregtech/gt.metaitem.01/32722.png deleted file mode 100644 index 8d0d8a62b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32722.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32723.png b/front/public/images/large/gregtech/gt.metaitem.01/32723.png deleted file mode 100644 index 9804a0957b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32723.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32724.png b/front/public/images/large/gregtech/gt.metaitem.01/32724.png deleted file mode 100644 index 1087cc1b0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32724.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32725.png b/front/public/images/large/gregtech/gt.metaitem.01/32725.png deleted file mode 100644 index e89f18bd39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32725.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32726.png b/front/public/images/large/gregtech/gt.metaitem.01/32726.png deleted file mode 100644 index 60509225e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32726.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32727.png b/front/public/images/large/gregtech/gt.metaitem.01/32727.png deleted file mode 100644 index 3cfedf9c75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32727.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32728.png b/front/public/images/large/gregtech/gt.metaitem.01/32728.png deleted file mode 100644 index 3defa4c9d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32728.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32729.png b/front/public/images/large/gregtech/gt.metaitem.01/32729.png deleted file mode 100644 index 4c33d5af73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32729.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32730.png b/front/public/images/large/gregtech/gt.metaitem.01/32730.png deleted file mode 100644 index dd1f06e7b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32730.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32731.png b/front/public/images/large/gregtech/gt.metaitem.01/32731.png deleted file mode 100644 index 497b3e809b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32731.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32732.png b/front/public/images/large/gregtech/gt.metaitem.01/32732.png deleted file mode 100644 index 477d6c4c56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32732.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32733.png b/front/public/images/large/gregtech/gt.metaitem.01/32733.png deleted file mode 100644 index f9e7362ca9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32733.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32734.png b/front/public/images/large/gregtech/gt.metaitem.01/32734.png deleted file mode 100644 index 9c9015bae4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32734.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32735.png b/front/public/images/large/gregtech/gt.metaitem.01/32735.png deleted file mode 100644 index 497b3e809b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32736.png b/front/public/images/large/gregtech/gt.metaitem.01/32736.png deleted file mode 100644 index cd75875af4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32736.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32737.png b/front/public/images/large/gregtech/gt.metaitem.01/32737.png deleted file mode 100644 index 2ffa1258bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32737.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32740.png b/front/public/images/large/gregtech/gt.metaitem.01/32740.png deleted file mode 100644 index f4cbc73c53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32741.png b/front/public/images/large/gregtech/gt.metaitem.01/32741.png deleted file mode 100644 index de1b1c03d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32742.png b/front/public/images/large/gregtech/gt.metaitem.01/32742.png deleted file mode 100644 index de1b1c03d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32742.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32744.png b/front/public/images/large/gregtech/gt.metaitem.01/32744.png deleted file mode 100644 index ba1311ce36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32744.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32745.png b/front/public/images/large/gregtech/gt.metaitem.01/32745.png deleted file mode 100644 index 05e205573f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32746.png b/front/public/images/large/gregtech/gt.metaitem.01/32746.png deleted file mode 100644 index 9f04416cfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32746.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32747.png b/front/public/images/large/gregtech/gt.metaitem.01/32747.png deleted file mode 100644 index 9f04416cfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32747.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32748.png b/front/public/images/large/gregtech/gt.metaitem.01/32748.png deleted file mode 100644 index 35c5bb2b81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32748.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32749.png b/front/public/images/large/gregtech/gt.metaitem.01/32749.png deleted file mode 100644 index c3ebc8c7da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32750.png b/front/public/images/large/gregtech/gt.metaitem.01/32750.png deleted file mode 100644 index c08fd0a5f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32750.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32751.png b/front/public/images/large/gregtech/gt.metaitem.01/32751.png deleted file mode 100644 index 352341a788..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32752.png b/front/public/images/large/gregtech/gt.metaitem.01/32752.png deleted file mode 100644 index 7af987ee7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32752.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32753.png b/front/public/images/large/gregtech/gt.metaitem.01/32753.png deleted file mode 100644 index c16343a13f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32753.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32754.png b/front/public/images/large/gregtech/gt.metaitem.01/32754.png deleted file mode 100644 index aad05fbcf6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32754.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32755.png b/front/public/images/large/gregtech/gt.metaitem.01/32755.png deleted file mode 100644 index 076e7abfe0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32755.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32756.png b/front/public/images/large/gregtech/gt.metaitem.01/32756.png deleted file mode 100644 index 97cbb2b18d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32756.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32757.png b/front/public/images/large/gregtech/gt.metaitem.01/32757.png deleted file mode 100644 index 777bd92adb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32757.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32758.png b/front/public/images/large/gregtech/gt.metaitem.01/32758.png deleted file mode 100644 index 8b1538a8a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32758.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32759.png b/front/public/images/large/gregtech/gt.metaitem.01/32759.png deleted file mode 100644 index f847736a2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32759.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32760.png b/front/public/images/large/gregtech/gt.metaitem.01/32760.png deleted file mode 100644 index 66e488d8a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32760.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32761.png b/front/public/images/large/gregtech/gt.metaitem.01/32761.png deleted file mode 100644 index e1ab6d290d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32761.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32762.png b/front/public/images/large/gregtech/gt.metaitem.01/32762.png deleted file mode 100644 index 447050c2b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32762.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32763.png b/front/public/images/large/gregtech/gt.metaitem.01/32763.png deleted file mode 100644 index a80ae3ab76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32763.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32764.png b/front/public/images/large/gregtech/gt.metaitem.01/32764.png deleted file mode 100644 index 8a101617fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32764.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/32765.png b/front/public/images/large/gregtech/gt.metaitem.01/32765.png deleted file mode 100644 index ae3c21899d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/32765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8347.png b/front/public/images/large/gregtech/gt.metaitem.01/8347.png deleted file mode 100644 index 6adecb5094..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8502.png b/front/public/images/large/gregtech/gt.metaitem.01/8502.png deleted file mode 100644 index 56852651b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8503.png b/front/public/images/large/gregtech/gt.metaitem.01/8503.png deleted file mode 100644 index c364ce607c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8504.png b/front/public/images/large/gregtech/gt.metaitem.01/8504.png deleted file mode 100644 index 902626fcda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8505.png b/front/public/images/large/gregtech/gt.metaitem.01/8505.png deleted file mode 100644 index 71913582c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8507.png b/front/public/images/large/gregtech/gt.metaitem.01/8507.png deleted file mode 100644 index c551d23f70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8508.png b/front/public/images/large/gregtech/gt.metaitem.01/8508.png deleted file mode 100644 index acdaaf76da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8509.png b/front/public/images/large/gregtech/gt.metaitem.01/8509.png deleted file mode 100644 index e7b0296ace..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8510.png b/front/public/images/large/gregtech/gt.metaitem.01/8510.png deleted file mode 100644 index 997b4f9d2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8511.png b/front/public/images/large/gregtech/gt.metaitem.01/8511.png deleted file mode 100644 index c4c9127171..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8512.png b/front/public/images/large/gregtech/gt.metaitem.01/8512.png deleted file mode 100644 index 56852651b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8513.png b/front/public/images/large/gregtech/gt.metaitem.01/8513.png deleted file mode 100644 index f8aa4bc2d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8514.png b/front/public/images/large/gregtech/gt.metaitem.01/8514.png deleted file mode 100644 index 204e4d7a08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8515.png b/front/public/images/large/gregtech/gt.metaitem.01/8515.png deleted file mode 100644 index 35252bb292..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8516.png b/front/public/images/large/gregtech/gt.metaitem.01/8516.png deleted file mode 100644 index 778d98caed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8518.png b/front/public/images/large/gregtech/gt.metaitem.01/8518.png deleted file mode 100644 index 0a71f42b67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8519.png b/front/public/images/large/gregtech/gt.metaitem.01/8519.png deleted file mode 100644 index 0a71f42b67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8520.png b/front/public/images/large/gregtech/gt.metaitem.01/8520.png deleted file mode 100644 index b9da0030c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8521.png b/front/public/images/large/gregtech/gt.metaitem.01/8521.png deleted file mode 100644 index 59cb1f8222..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8523.png b/front/public/images/large/gregtech/gt.metaitem.01/8523.png deleted file mode 100644 index f3a69f94ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8524.png b/front/public/images/large/gregtech/gt.metaitem.01/8524.png deleted file mode 100644 index 01aecf0ffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8525.png b/front/public/images/large/gregtech/gt.metaitem.01/8525.png deleted file mode 100644 index 79e4066f55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8527.png b/front/public/images/large/gregtech/gt.metaitem.01/8527.png deleted file mode 100644 index 9e8dc27da4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8528.png b/front/public/images/large/gregtech/gt.metaitem.01/8528.png deleted file mode 100644 index de2c2c0f2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8529.png b/front/public/images/large/gregtech/gt.metaitem.01/8529.png deleted file mode 100644 index 84211fafe3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8530.png b/front/public/images/large/gregtech/gt.metaitem.01/8530.png deleted file mode 100644 index 707d99552f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8531.png b/front/public/images/large/gregtech/gt.metaitem.01/8531.png deleted file mode 100644 index 128e9be52b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8534.png b/front/public/images/large/gregtech/gt.metaitem.01/8534.png deleted file mode 100644 index 3de85a81d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8537.png b/front/public/images/large/gregtech/gt.metaitem.01/8537.png deleted file mode 100644 index 5c06157329..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8538.png b/front/public/images/large/gregtech/gt.metaitem.01/8538.png deleted file mode 100644 index 22871dae59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/8890.png b/front/public/images/large/gregtech/gt.metaitem.01/8890.png deleted file mode 100644 index 0d05b17f94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/8890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9006.png b/front/public/images/large/gregtech/gt.metaitem.01/9006.png deleted file mode 100644 index c33e9d2ea2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9008.png b/front/public/images/large/gregtech/gt.metaitem.01/9008.png deleted file mode 100644 index 9ec86ffa24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9010.png b/front/public/images/large/gregtech/gt.metaitem.01/9010.png deleted file mode 100644 index 875657c872..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9018.png b/front/public/images/large/gregtech/gt.metaitem.01/9018.png deleted file mode 100644 index 2e488b39ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9019.png b/front/public/images/large/gregtech/gt.metaitem.01/9019.png deleted file mode 100644 index e901061cf3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9020.png b/front/public/images/large/gregtech/gt.metaitem.01/9020.png deleted file mode 100644 index a34bcc5336..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9025.png b/front/public/images/large/gregtech/gt.metaitem.01/9025.png deleted file mode 100644 index 90a5e0b25f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9027.png b/front/public/images/large/gregtech/gt.metaitem.01/9027.png deleted file mode 100644 index 86e228667d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9028.png b/front/public/images/large/gregtech/gt.metaitem.01/9028.png deleted file mode 100644 index 68c04bcdfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9029.png b/front/public/images/large/gregtech/gt.metaitem.01/9029.png deleted file mode 100644 index c9c2da997b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9030.png b/front/public/images/large/gregtech/gt.metaitem.01/9030.png deleted file mode 100644 index 4433784d66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9031.png b/front/public/images/large/gregtech/gt.metaitem.01/9031.png deleted file mode 100644 index 7c817b7965..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9032.png b/front/public/images/large/gregtech/gt.metaitem.01/9032.png deleted file mode 100644 index 2395381051..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9033.png b/front/public/images/large/gregtech/gt.metaitem.01/9033.png deleted file mode 100644 index 4f4529ac39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9034.png b/front/public/images/large/gregtech/gt.metaitem.01/9034.png deleted file mode 100644 index 5119e646f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9035.png b/front/public/images/large/gregtech/gt.metaitem.01/9035.png deleted file mode 100644 index 6520b66f87..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9036.png b/front/public/images/large/gregtech/gt.metaitem.01/9036.png deleted file mode 100644 index b41b23ee8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9037.png b/front/public/images/large/gregtech/gt.metaitem.01/9037.png deleted file mode 100644 index 7a28b2afc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9039.png b/front/public/images/large/gregtech/gt.metaitem.01/9039.png deleted file mode 100644 index e2d38d618e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9043.png b/front/public/images/large/gregtech/gt.metaitem.01/9043.png deleted file mode 100644 index 87c9196a9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9045.png b/front/public/images/large/gregtech/gt.metaitem.01/9045.png deleted file mode 100644 index 0af957ac15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9047.png b/front/public/images/large/gregtech/gt.metaitem.01/9047.png deleted file mode 100644 index eea2337b62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9048.png b/front/public/images/large/gregtech/gt.metaitem.01/9048.png deleted file mode 100644 index 79fc892265..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9052.png b/front/public/images/large/gregtech/gt.metaitem.01/9052.png deleted file mode 100644 index f19e7fc659..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9054.png b/front/public/images/large/gregtech/gt.metaitem.01/9054.png deleted file mode 100644 index 7a28b2afc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9056.png b/front/public/images/large/gregtech/gt.metaitem.01/9056.png deleted file mode 100644 index 6ce94918e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9057.png b/front/public/images/large/gregtech/gt.metaitem.01/9057.png deleted file mode 100644 index 9035d8208e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9058.png b/front/public/images/large/gregtech/gt.metaitem.01/9058.png deleted file mode 100644 index c5b7305242..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9059.png b/front/public/images/large/gregtech/gt.metaitem.01/9059.png deleted file mode 100644 index 4c4fd586a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9062.png b/front/public/images/large/gregtech/gt.metaitem.01/9062.png deleted file mode 100644 index 09b86f4512..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9063.png b/front/public/images/large/gregtech/gt.metaitem.01/9063.png deleted file mode 100644 index 8cbe20377a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9064.png b/front/public/images/large/gregtech/gt.metaitem.01/9064.png deleted file mode 100644 index 5f5c0140db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9065.png b/front/public/images/large/gregtech/gt.metaitem.01/9065.png deleted file mode 100644 index c98cb989f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9066.png b/front/public/images/large/gregtech/gt.metaitem.01/9066.png deleted file mode 100644 index a49fbbad3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9067.png b/front/public/images/large/gregtech/gt.metaitem.01/9067.png deleted file mode 100644 index ea5a6d3e42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9068.png b/front/public/images/large/gregtech/gt.metaitem.01/9068.png deleted file mode 100644 index c2ab040114..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9069.png b/front/public/images/large/gregtech/gt.metaitem.01/9069.png deleted file mode 100644 index e676138631..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9070.png b/front/public/images/large/gregtech/gt.metaitem.01/9070.png deleted file mode 100644 index 153814de60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9071.png b/front/public/images/large/gregtech/gt.metaitem.01/9071.png deleted file mode 100644 index d1ab13bce0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9072.png b/front/public/images/large/gregtech/gt.metaitem.01/9072.png deleted file mode 100644 index 8cbe20377a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9073.png b/front/public/images/large/gregtech/gt.metaitem.01/9073.png deleted file mode 100644 index fa5cf3f4f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9074.png b/front/public/images/large/gregtech/gt.metaitem.01/9074.png deleted file mode 100644 index 13817729e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9075.png b/front/public/images/large/gregtech/gt.metaitem.01/9075.png deleted file mode 100644 index 1c47488309..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9076.png b/front/public/images/large/gregtech/gt.metaitem.01/9076.png deleted file mode 100644 index 855b340f4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9077.png b/front/public/images/large/gregtech/gt.metaitem.01/9077.png deleted file mode 100644 index cd83f9d782..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9078.png b/front/public/images/large/gregtech/gt.metaitem.01/9078.png deleted file mode 100644 index 805aa91971..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9080.png b/front/public/images/large/gregtech/gt.metaitem.01/9080.png deleted file mode 100644 index 004c495dc8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9081.png b/front/public/images/large/gregtech/gt.metaitem.01/9081.png deleted file mode 100644 index c9c2da997b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9083.png b/front/public/images/large/gregtech/gt.metaitem.01/9083.png deleted file mode 100644 index 9656c14992..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9084.png b/front/public/images/large/gregtech/gt.metaitem.01/9084.png deleted file mode 100644 index 75a987e9d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9085.png b/front/public/images/large/gregtech/gt.metaitem.01/9085.png deleted file mode 100644 index 744423b0ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9089.png b/front/public/images/large/gregtech/gt.metaitem.01/9089.png deleted file mode 100644 index 2d8128080b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9090.png b/front/public/images/large/gregtech/gt.metaitem.01/9090.png deleted file mode 100644 index b5f765d85a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9096.png b/front/public/images/large/gregtech/gt.metaitem.01/9096.png deleted file mode 100644 index 20278ddc3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9097.png b/front/public/images/large/gregtech/gt.metaitem.01/9097.png deleted file mode 100644 index c711914c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9098.png b/front/public/images/large/gregtech/gt.metaitem.01/9098.png deleted file mode 100644 index 7753856a96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9100.png b/front/public/images/large/gregtech/gt.metaitem.01/9100.png deleted file mode 100644 index f0502de21c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9101.png b/front/public/images/large/gregtech/gt.metaitem.01/9101.png deleted file mode 100644 index a9ee258e45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9103.png b/front/public/images/large/gregtech/gt.metaitem.01/9103.png deleted file mode 100644 index 2395381051..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9111.png b/front/public/images/large/gregtech/gt.metaitem.01/9111.png deleted file mode 100644 index 474b7d10b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9112.png b/front/public/images/large/gregtech/gt.metaitem.01/9112.png deleted file mode 100644 index ce6911bcc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9129.png b/front/public/images/large/gregtech/gt.metaitem.01/9129.png deleted file mode 100644 index 7c817b7965..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9131.png b/front/public/images/large/gregtech/gt.metaitem.01/9131.png deleted file mode 100644 index c822d379e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9134.png b/front/public/images/large/gregtech/gt.metaitem.01/9134.png deleted file mode 100644 index 514716ac39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9139.png b/front/public/images/large/gregtech/gt.metaitem.01/9139.png deleted file mode 100644 index c542e682fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9141.png b/front/public/images/large/gregtech/gt.metaitem.01/9141.png deleted file mode 100644 index 51ad7ead5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9143.png b/front/public/images/large/gregtech/gt.metaitem.01/9143.png deleted file mode 100644 index 0f6982c4a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9205.png b/front/public/images/large/gregtech/gt.metaitem.01/9205.png deleted file mode 100644 index 68faab8cda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9300.png b/front/public/images/large/gregtech/gt.metaitem.01/9300.png deleted file mode 100644 index d655b4a147..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9301.png b/front/public/images/large/gregtech/gt.metaitem.01/9301.png deleted file mode 100644 index 4941bccb35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9302.png b/front/public/images/large/gregtech/gt.metaitem.01/9302.png deleted file mode 100644 index 220c4f4879..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9303.png b/front/public/images/large/gregtech/gt.metaitem.01/9303.png deleted file mode 100644 index 151b1d7e6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9304.png b/front/public/images/large/gregtech/gt.metaitem.01/9304.png deleted file mode 100644 index 3e0f318d36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9305.png b/front/public/images/large/gregtech/gt.metaitem.01/9305.png deleted file mode 100644 index f68b1f34cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9306.png b/front/public/images/large/gregtech/gt.metaitem.01/9306.png deleted file mode 100644 index d52e36ea26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9307.png b/front/public/images/large/gregtech/gt.metaitem.01/9307.png deleted file mode 100644 index 3e0f318d36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9308.png b/front/public/images/large/gregtech/gt.metaitem.01/9308.png deleted file mode 100644 index b52eba7649..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9309.png b/front/public/images/large/gregtech/gt.metaitem.01/9309.png deleted file mode 100644 index b768d2b01e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9310.png b/front/public/images/large/gregtech/gt.metaitem.01/9310.png deleted file mode 100644 index 126ae75087..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9311.png b/front/public/images/large/gregtech/gt.metaitem.01/9311.png deleted file mode 100644 index 626ac979a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9312.png b/front/public/images/large/gregtech/gt.metaitem.01/9312.png deleted file mode 100644 index a5372b60a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9313.png b/front/public/images/large/gregtech/gt.metaitem.01/9313.png deleted file mode 100644 index ab631b2739..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9314.png b/front/public/images/large/gregtech/gt.metaitem.01/9314.png deleted file mode 100644 index fbece257d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9315.png b/front/public/images/large/gregtech/gt.metaitem.01/9315.png deleted file mode 100644 index 072e84c72c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9316.png b/front/public/images/large/gregtech/gt.metaitem.01/9316.png deleted file mode 100644 index 5ce00d2c0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9317.png b/front/public/images/large/gregtech/gt.metaitem.01/9317.png deleted file mode 100644 index a1b47bef60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9318.png b/front/public/images/large/gregtech/gt.metaitem.01/9318.png deleted file mode 100644 index a71cc826f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9319.png b/front/public/images/large/gregtech/gt.metaitem.01/9319.png deleted file mode 100644 index 6bbd0dceda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9320.png b/front/public/images/large/gregtech/gt.metaitem.01/9320.png deleted file mode 100644 index dadb5cd0dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9321.png b/front/public/images/large/gregtech/gt.metaitem.01/9321.png deleted file mode 100644 index 51c03b4101..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9323.png b/front/public/images/large/gregtech/gt.metaitem.01/9323.png deleted file mode 100644 index 096bce5f45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9324.png b/front/public/images/large/gregtech/gt.metaitem.01/9324.png deleted file mode 100644 index c9c2da997b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9325.png b/front/public/images/large/gregtech/gt.metaitem.01/9325.png deleted file mode 100644 index 9b917aca52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9326.png b/front/public/images/large/gregtech/gt.metaitem.01/9326.png deleted file mode 100644 index b9272b0fed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9327.png b/front/public/images/large/gregtech/gt.metaitem.01/9327.png deleted file mode 100644 index d1d5fa63ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9328.png b/front/public/images/large/gregtech/gt.metaitem.01/9328.png deleted file mode 100644 index 8cbe20377a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9329.png b/front/public/images/large/gregtech/gt.metaitem.01/9329.png deleted file mode 100644 index de7dcc5ad0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9330.png b/front/public/images/large/gregtech/gt.metaitem.01/9330.png deleted file mode 100644 index 9dc27ab407..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9331.png b/front/public/images/large/gregtech/gt.metaitem.01/9331.png deleted file mode 100644 index 27edae66a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9333.png b/front/public/images/large/gregtech/gt.metaitem.01/9333.png deleted file mode 100644 index fd9c21ad4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9334.png b/front/public/images/large/gregtech/gt.metaitem.01/9334.png deleted file mode 100644 index ea5a6d3e42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9335.png b/front/public/images/large/gregtech/gt.metaitem.01/9335.png deleted file mode 100644 index 333aa2070a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9336.png b/front/public/images/large/gregtech/gt.metaitem.01/9336.png deleted file mode 100644 index 14219f1413..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9337.png b/front/public/images/large/gregtech/gt.metaitem.01/9337.png deleted file mode 100644 index ced01b5d42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9338.png b/front/public/images/large/gregtech/gt.metaitem.01/9338.png deleted file mode 100644 index 21e1b14534..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9339.png b/front/public/images/large/gregtech/gt.metaitem.01/9339.png deleted file mode 100644 index 0512de3cc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9340.png b/front/public/images/large/gregtech/gt.metaitem.01/9340.png deleted file mode 100644 index 2f976a18e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9341.png b/front/public/images/large/gregtech/gt.metaitem.01/9341.png deleted file mode 100644 index 72f13e2745..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9342.png b/front/public/images/large/gregtech/gt.metaitem.01/9342.png deleted file mode 100644 index d8f40ed677..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9343.png b/front/public/images/large/gregtech/gt.metaitem.01/9343.png deleted file mode 100644 index f198769e01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9344.png b/front/public/images/large/gregtech/gt.metaitem.01/9344.png deleted file mode 100644 index 1409ed1596..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9345.png b/front/public/images/large/gregtech/gt.metaitem.01/9345.png deleted file mode 100644 index 8a98d22c9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9346.png b/front/public/images/large/gregtech/gt.metaitem.01/9346.png deleted file mode 100644 index 3e49b0912e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9348.png b/front/public/images/large/gregtech/gt.metaitem.01/9348.png deleted file mode 100644 index 549b39caba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9349.png b/front/public/images/large/gregtech/gt.metaitem.01/9349.png deleted file mode 100644 index fbf0687c60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9350.png b/front/public/images/large/gregtech/gt.metaitem.01/9350.png deleted file mode 100644 index a4c7a63f7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9351.png b/front/public/images/large/gregtech/gt.metaitem.01/9351.png deleted file mode 100644 index 9726f2c738..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9352.png b/front/public/images/large/gregtech/gt.metaitem.01/9352.png deleted file mode 100644 index 0a7e2f4c28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9353.png b/front/public/images/large/gregtech/gt.metaitem.01/9353.png deleted file mode 100644 index df8818f315..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9354.png b/front/public/images/large/gregtech/gt.metaitem.01/9354.png deleted file mode 100644 index 2e3b5fe6a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9355.png b/front/public/images/large/gregtech/gt.metaitem.01/9355.png deleted file mode 100644 index b13336ec13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9356.png b/front/public/images/large/gregtech/gt.metaitem.01/9356.png deleted file mode 100644 index feb5e61dc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9357.png b/front/public/images/large/gregtech/gt.metaitem.01/9357.png deleted file mode 100644 index 6190c82de0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9358.png b/front/public/images/large/gregtech/gt.metaitem.01/9358.png deleted file mode 100644 index 89fa2c4022..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9359.png b/front/public/images/large/gregtech/gt.metaitem.01/9359.png deleted file mode 100644 index 80119c24c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9360.png b/front/public/images/large/gregtech/gt.metaitem.01/9360.png deleted file mode 100644 index 893b020e8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9361.png b/front/public/images/large/gregtech/gt.metaitem.01/9361.png deleted file mode 100644 index de3de4c663..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9362.png b/front/public/images/large/gregtech/gt.metaitem.01/9362.png deleted file mode 100644 index 8bae70be6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9363.png b/front/public/images/large/gregtech/gt.metaitem.01/9363.png deleted file mode 100644 index 2395381051..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9364.png b/front/public/images/large/gregtech/gt.metaitem.01/9364.png deleted file mode 100644 index 8e853ef5df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9365.png b/front/public/images/large/gregtech/gt.metaitem.01/9365.png deleted file mode 100644 index 37c4bacc66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9366.png b/front/public/images/large/gregtech/gt.metaitem.01/9366.png deleted file mode 100644 index 6a56781758..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9367.png b/front/public/images/large/gregtech/gt.metaitem.01/9367.png deleted file mode 100644 index be8c70d671..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9368.png b/front/public/images/large/gregtech/gt.metaitem.01/9368.png deleted file mode 100644 index e404be7dd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9369.png b/front/public/images/large/gregtech/gt.metaitem.01/9369.png deleted file mode 100644 index 5ec93e8c6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9370.png b/front/public/images/large/gregtech/gt.metaitem.01/9370.png deleted file mode 100644 index 886b93dd85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9371.png b/front/public/images/large/gregtech/gt.metaitem.01/9371.png deleted file mode 100644 index b904555570..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9372.png b/front/public/images/large/gregtech/gt.metaitem.01/9372.png deleted file mode 100644 index b3f2dcff48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9373.png b/front/public/images/large/gregtech/gt.metaitem.01/9373.png deleted file mode 100644 index e292770f4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9374.png b/front/public/images/large/gregtech/gt.metaitem.01/9374.png deleted file mode 100644 index 05d045713b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9378.png b/front/public/images/large/gregtech/gt.metaitem.01/9378.png deleted file mode 100644 index 10d8db4355..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9379.png b/front/public/images/large/gregtech/gt.metaitem.01/9379.png deleted file mode 100644 index 06a9ef0aea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9380.png b/front/public/images/large/gregtech/gt.metaitem.01/9380.png deleted file mode 100644 index f5fb768a72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9381.png b/front/public/images/large/gregtech/gt.metaitem.01/9381.png deleted file mode 100644 index 769f8870cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9382.png b/front/public/images/large/gregtech/gt.metaitem.01/9382.png deleted file mode 100644 index 6e15ad01a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9383.png b/front/public/images/large/gregtech/gt.metaitem.01/9383.png deleted file mode 100644 index f735003e3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9384.png b/front/public/images/large/gregtech/gt.metaitem.01/9384.png deleted file mode 100644 index 8a89a5dd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9385.png b/front/public/images/large/gregtech/gt.metaitem.01/9385.png deleted file mode 100644 index c6f84c03c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9386.png b/front/public/images/large/gregtech/gt.metaitem.01/9386.png deleted file mode 100644 index c984b39e1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9387.png b/front/public/images/large/gregtech/gt.metaitem.01/9387.png deleted file mode 100644 index 51028fc14e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9388.png b/front/public/images/large/gregtech/gt.metaitem.01/9388.png deleted file mode 100644 index 6e0c5abfd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9389.png b/front/public/images/large/gregtech/gt.metaitem.01/9389.png deleted file mode 100644 index c9d5aecb8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9390.png b/front/public/images/large/gregtech/gt.metaitem.01/9390.png deleted file mode 100644 index 160df32107..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9391.png b/front/public/images/large/gregtech/gt.metaitem.01/9391.png deleted file mode 100644 index 9baceb417a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9392.png b/front/public/images/large/gregtech/gt.metaitem.01/9392.png deleted file mode 100644 index 6f126142a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9393.png b/front/public/images/large/gregtech/gt.metaitem.01/9393.png deleted file mode 100644 index 16261d8d91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9394.png b/front/public/images/large/gregtech/gt.metaitem.01/9394.png deleted file mode 100644 index 6bbd0dceda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9395.png b/front/public/images/large/gregtech/gt.metaitem.01/9395.png deleted file mode 100644 index 6e0c5abfd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9397.png b/front/public/images/large/gregtech/gt.metaitem.01/9397.png deleted file mode 100644 index 423866db0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9398.png b/front/public/images/large/gregtech/gt.metaitem.01/9398.png deleted file mode 100644 index f2ab020b2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9399.png b/front/public/images/large/gregtech/gt.metaitem.01/9399.png deleted file mode 100644 index b80883eabc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9400.png b/front/public/images/large/gregtech/gt.metaitem.01/9400.png deleted file mode 100644 index 47eb9f6447..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9401.png b/front/public/images/large/gregtech/gt.metaitem.01/9401.png deleted file mode 100644 index eca364fb15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9402.png b/front/public/images/large/gregtech/gt.metaitem.01/9402.png deleted file mode 100644 index 18cc2bc8b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9403.png b/front/public/images/large/gregtech/gt.metaitem.01/9403.png deleted file mode 100644 index c6ab7f4a3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9404.png b/front/public/images/large/gregtech/gt.metaitem.01/9404.png deleted file mode 100644 index 53e1d483a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9405.png b/front/public/images/large/gregtech/gt.metaitem.01/9405.png deleted file mode 100644 index 052433b25f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9406.png b/front/public/images/large/gregtech/gt.metaitem.01/9406.png deleted file mode 100644 index 328f0eed4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9407.png b/front/public/images/large/gregtech/gt.metaitem.01/9407.png deleted file mode 100644 index 0ded23ceda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9408.png b/front/public/images/large/gregtech/gt.metaitem.01/9408.png deleted file mode 100644 index 3b60eecc9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9470.png b/front/public/images/large/gregtech/gt.metaitem.01/9470.png deleted file mode 100644 index 2e958062fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9471.png b/front/public/images/large/gregtech/gt.metaitem.01/9471.png deleted file mode 100644 index 9035d8208e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9472.png b/front/public/images/large/gregtech/gt.metaitem.01/9472.png deleted file mode 100644 index 6e0c5abfd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9473.png b/front/public/images/large/gregtech/gt.metaitem.01/9473.png deleted file mode 100644 index 7237a3d39d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9485.png b/front/public/images/large/gregtech/gt.metaitem.01/9485.png deleted file mode 100644 index a42671276d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9488.png b/front/public/images/large/gregtech/gt.metaitem.01/9488.png deleted file mode 100644 index ff9b07de21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9489.png b/front/public/images/large/gregtech/gt.metaitem.01/9489.png deleted file mode 100644 index 53dfb242ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9521.png b/front/public/images/large/gregtech/gt.metaitem.01/9521.png deleted file mode 100644 index a71cc826f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9529.png b/front/public/images/large/gregtech/gt.metaitem.01/9529.png deleted file mode 100644 index faa76738b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9576.png b/front/public/images/large/gregtech/gt.metaitem.01/9576.png deleted file mode 100644 index 663bb864c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9581.png b/front/public/images/large/gregtech/gt.metaitem.01/9581.png deleted file mode 100644 index 10544df10f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9582.png b/front/public/images/large/gregtech/gt.metaitem.01/9582.png deleted file mode 100644 index dfef82ee75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9583.png b/front/public/images/large/gregtech/gt.metaitem.01/9583.png deleted file mode 100644 index b49c07d401..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9585.png b/front/public/images/large/gregtech/gt.metaitem.01/9585.png deleted file mode 100644 index 952d44ae18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9586.png b/front/public/images/large/gregtech/gt.metaitem.01/9586.png deleted file mode 100644 index face3f0f48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9588.png b/front/public/images/large/gregtech/gt.metaitem.01/9588.png deleted file mode 100644 index 8eaf3a1baa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9599.png b/front/public/images/large/gregtech/gt.metaitem.01/9599.png deleted file mode 100644 index 3c00524c53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9610.png b/front/public/images/large/gregtech/gt.metaitem.01/9610.png deleted file mode 100644 index fe7483fa59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9611.png b/front/public/images/large/gregtech/gt.metaitem.01/9611.png deleted file mode 100644 index c27b62f4f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9613.png b/front/public/images/large/gregtech/gt.metaitem.01/9613.png deleted file mode 100644 index 27f9c347e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9631.png b/front/public/images/large/gregtech/gt.metaitem.01/9631.png deleted file mode 100644 index f0a402e0b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9635.png b/front/public/images/large/gregtech/gt.metaitem.01/9635.png deleted file mode 100644 index 3dfbef59e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9636.png b/front/public/images/large/gregtech/gt.metaitem.01/9636.png deleted file mode 100644 index 3b6b708119..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9649.png b/front/public/images/large/gregtech/gt.metaitem.01/9649.png deleted file mode 100644 index 46989f899f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9765.png b/front/public/images/large/gregtech/gt.metaitem.01/9765.png deleted file mode 100644 index c421f7c67b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9770.png b/front/public/images/large/gregtech/gt.metaitem.01/9770.png deleted file mode 100644 index de8de72ca5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9772.png b/front/public/images/large/gregtech/gt.metaitem.01/9772.png deleted file mode 100644 index 6b60e04d36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9804.png b/front/public/images/large/gregtech/gt.metaitem.01/9804.png deleted file mode 100644 index 02b6a02373..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9809.png b/front/public/images/large/gregtech/gt.metaitem.01/9809.png deleted file mode 100644 index 19b440ba05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9829.png b/front/public/images/large/gregtech/gt.metaitem.01/9829.png deleted file mode 100644 index 5294dfe0a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9856.png b/front/public/images/large/gregtech/gt.metaitem.01/9856.png deleted file mode 100644 index c262818c64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9868.png b/front/public/images/large/gregtech/gt.metaitem.01/9868.png deleted file mode 100644 index 1e4de088c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9874.png b/front/public/images/large/gregtech/gt.metaitem.01/9874.png deleted file mode 100644 index d013e0e426..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9880.png b/front/public/images/large/gregtech/gt.metaitem.01/9880.png deleted file mode 100644 index 3f8ed15aa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9884.png b/front/public/images/large/gregtech/gt.metaitem.01/9884.png deleted file mode 100644 index f39e5d3fe4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9889.png b/front/public/images/large/gregtech/gt.metaitem.01/9889.png deleted file mode 100644 index 1abfe81a35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9912.png b/front/public/images/large/gregtech/gt.metaitem.01/9912.png deleted file mode 100644 index 4194d9e337..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9913.png b/front/public/images/large/gregtech/gt.metaitem.01/9913.png deleted file mode 100644 index 547c0329f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9951.png b/front/public/images/large/gregtech/gt.metaitem.01/9951.png deleted file mode 100644 index 1f6ebdfae6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9952.png b/front/public/images/large/gregtech/gt.metaitem.01/9952.png deleted file mode 100644 index c6b56a0b55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9956.png b/front/public/images/large/gregtech/gt.metaitem.01/9956.png deleted file mode 100644 index 043767f90f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9966.png b/front/public/images/large/gregtech/gt.metaitem.01/9966.png deleted file mode 100644 index 164caf5e33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9970.png b/front/public/images/large/gregtech/gt.metaitem.01/9970.png deleted file mode 100644 index 11689f4fcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9974.png b/front/public/images/large/gregtech/gt.metaitem.01/9974.png deleted file mode 100644 index c61eaa3a1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9975.png b/front/public/images/large/gregtech/gt.metaitem.01/9975.png deleted file mode 100644 index b179e27ec5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9976.png b/front/public/images/large/gregtech/gt.metaitem.01/9976.png deleted file mode 100644 index 33a97243a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9977.png b/front/public/images/large/gregtech/gt.metaitem.01/9977.png deleted file mode 100644 index 7e4e30039f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9978.png b/front/public/images/large/gregtech/gt.metaitem.01/9978.png deleted file mode 100644 index 7ba3856aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9979.png b/front/public/images/large/gregtech/gt.metaitem.01/9979.png deleted file mode 100644 index 6f33a351b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9980.png b/front/public/images/large/gregtech/gt.metaitem.01/9980.png deleted file mode 100644 index d378de6b8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9981.png b/front/public/images/large/gregtech/gt.metaitem.01/9981.png deleted file mode 100644 index 5deba4edb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9982.png b/front/public/images/large/gregtech/gt.metaitem.01/9982.png deleted file mode 100644 index 719b04a099..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9984.png b/front/public/images/large/gregtech/gt.metaitem.01/9984.png deleted file mode 100644 index 6bbd0dceda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9985.png b/front/public/images/large/gregtech/gt.metaitem.01/9985.png deleted file mode 100644 index 040eb02fba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9986.png b/front/public/images/large/gregtech/gt.metaitem.01/9986.png deleted file mode 100644 index 1fc772d88f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9987.png b/front/public/images/large/gregtech/gt.metaitem.01/9987.png deleted file mode 100644 index 6f68df6bc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9988.png b/front/public/images/large/gregtech/gt.metaitem.01/9988.png deleted file mode 100644 index 8a383f0402..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9989.png b/front/public/images/large/gregtech/gt.metaitem.01/9989.png deleted file mode 100644 index 7cd60abfab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9990.png b/front/public/images/large/gregtech/gt.metaitem.01/9990.png deleted file mode 100644 index dff14cede2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9991.png b/front/public/images/large/gregtech/gt.metaitem.01/9991.png deleted file mode 100644 index 3afb54f1f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.01/9992.png b/front/public/images/large/gregtech/gt.metaitem.01/9992.png deleted file mode 100644 index 8de4f8bec5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.01/9992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16008.png b/front/public/images/large/gregtech/gt.metaitem.02/16008.png deleted file mode 100644 index 8f2b71e03f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16010.png b/front/public/images/large/gregtech/gt.metaitem.02/16010.png deleted file mode 100644 index edafb4d51d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16019.png b/front/public/images/large/gregtech/gt.metaitem.02/16019.png deleted file mode 100644 index 2322175ba8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16028.png b/front/public/images/large/gregtech/gt.metaitem.02/16028.png deleted file mode 100644 index 61d4bee6bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16030.png b/front/public/images/large/gregtech/gt.metaitem.02/16030.png deleted file mode 100644 index 098ea63d73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16031.png b/front/public/images/large/gregtech/gt.metaitem.02/16031.png deleted file mode 100644 index 20b9bb2ddd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16032.png b/front/public/images/large/gregtech/gt.metaitem.02/16032.png deleted file mode 100644 index 94d8991b7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16033.png b/front/public/images/large/gregtech/gt.metaitem.02/16033.png deleted file mode 100644 index b86d55855c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16034.png b/front/public/images/large/gregtech/gt.metaitem.02/16034.png deleted file mode 100644 index 8a8a58c4d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16048.png b/front/public/images/large/gregtech/gt.metaitem.02/16048.png deleted file mode 100644 index 191bd18240..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16052.png b/front/public/images/large/gregtech/gt.metaitem.02/16052.png deleted file mode 100644 index 20ff081243..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16054.png b/front/public/images/large/gregtech/gt.metaitem.02/16054.png deleted file mode 100644 index c9a83df50d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16067.png b/front/public/images/large/gregtech/gt.metaitem.02/16067.png deleted file mode 100644 index 6ccf01a7b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16081.png b/front/public/images/large/gregtech/gt.metaitem.02/16081.png deleted file mode 100644 index 7136075bfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16083.png b/front/public/images/large/gregtech/gt.metaitem.02/16083.png deleted file mode 100644 index 569ea67121..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16084.png b/front/public/images/large/gregtech/gt.metaitem.02/16084.png deleted file mode 100644 index ca2c690aa4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16085.png b/front/public/images/large/gregtech/gt.metaitem.02/16085.png deleted file mode 100644 index 8916d07548..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16086.png b/front/public/images/large/gregtech/gt.metaitem.02/16086.png deleted file mode 100644 index 50f9077969..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16089.png b/front/public/images/large/gregtech/gt.metaitem.02/16089.png deleted file mode 100644 index aa087be262..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16090.png b/front/public/images/large/gregtech/gt.metaitem.02/16090.png deleted file mode 100644 index 3ff5863cb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16096.png b/front/public/images/large/gregtech/gt.metaitem.02/16096.png deleted file mode 100644 index c6e16ba50d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16097.png b/front/public/images/large/gregtech/gt.metaitem.02/16097.png deleted file mode 100644 index 2eedc90d00..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16098.png b/front/public/images/large/gregtech/gt.metaitem.02/16098.png deleted file mode 100644 index 070b008fac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16100.png b/front/public/images/large/gregtech/gt.metaitem.02/16100.png deleted file mode 100644 index 6bb3ee6165..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16101.png b/front/public/images/large/gregtech/gt.metaitem.02/16101.png deleted file mode 100644 index 32df613965..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16111.png b/front/public/images/large/gregtech/gt.metaitem.02/16111.png deleted file mode 100644 index ab7789d5b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16112.png b/front/public/images/large/gregtech/gt.metaitem.02/16112.png deleted file mode 100644 index db63afde65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16129.png b/front/public/images/large/gregtech/gt.metaitem.02/16129.png deleted file mode 100644 index 20b9bb2ddd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16139.png b/front/public/images/large/gregtech/gt.metaitem.02/16139.png deleted file mode 100644 index 03e4c87b16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16141.png b/front/public/images/large/gregtech/gt.metaitem.02/16141.png deleted file mode 100644 index 6a678254e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16143.png b/front/public/images/large/gregtech/gt.metaitem.02/16143.png deleted file mode 100644 index 74d5fb6d2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16201.png b/front/public/images/large/gregtech/gt.metaitem.02/16201.png deleted file mode 100644 index 0c2217d022..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16202.png b/front/public/images/large/gregtech/gt.metaitem.02/16202.png deleted file mode 100644 index 51b379aa18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16203.png b/front/public/images/large/gregtech/gt.metaitem.02/16203.png deleted file mode 100644 index 91d28767ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16205.png b/front/public/images/large/gregtech/gt.metaitem.02/16205.png deleted file mode 100644 index 82f747aeb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16300.png b/front/public/images/large/gregtech/gt.metaitem.02/16300.png deleted file mode 100644 index 3700dfbd21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16301.png b/front/public/images/large/gregtech/gt.metaitem.02/16301.png deleted file mode 100644 index 9fa2f010d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16302.png b/front/public/images/large/gregtech/gt.metaitem.02/16302.png deleted file mode 100644 index fe1ed7660e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16303.png b/front/public/images/large/gregtech/gt.metaitem.02/16303.png deleted file mode 100644 index 23109e41cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16304.png b/front/public/images/large/gregtech/gt.metaitem.02/16304.png deleted file mode 100644 index 591c0a2634..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16305.png b/front/public/images/large/gregtech/gt.metaitem.02/16305.png deleted file mode 100644 index 20ff081243..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16306.png b/front/public/images/large/gregtech/gt.metaitem.02/16306.png deleted file mode 100644 index 576fa548b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16307.png b/front/public/images/large/gregtech/gt.metaitem.02/16307.png deleted file mode 100644 index 591c0a2634..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16310.png b/front/public/images/large/gregtech/gt.metaitem.02/16310.png deleted file mode 100644 index bb90c67d4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16311.png b/front/public/images/large/gregtech/gt.metaitem.02/16311.png deleted file mode 100644 index 5a55d776c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16312.png b/front/public/images/large/gregtech/gt.metaitem.02/16312.png deleted file mode 100644 index bc9976b533..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16313.png b/front/public/images/large/gregtech/gt.metaitem.02/16313.png deleted file mode 100644 index a33ddbde5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16316.png b/front/public/images/large/gregtech/gt.metaitem.02/16316.png deleted file mode 100644 index 619bc71956..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16317.png b/front/public/images/large/gregtech/gt.metaitem.02/16317.png deleted file mode 100644 index 699dae1c1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16318.png b/front/public/images/large/gregtech/gt.metaitem.02/16318.png deleted file mode 100644 index 70c4b682c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16319.png b/front/public/images/large/gregtech/gt.metaitem.02/16319.png deleted file mode 100644 index dca6274032..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16320.png b/front/public/images/large/gregtech/gt.metaitem.02/16320.png deleted file mode 100644 index 147a0f0b9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16321.png b/front/public/images/large/gregtech/gt.metaitem.02/16321.png deleted file mode 100644 index a3b825735e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16323.png b/front/public/images/large/gregtech/gt.metaitem.02/16323.png deleted file mode 100644 index 0a8852a656..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16324.png b/front/public/images/large/gregtech/gt.metaitem.02/16324.png deleted file mode 100644 index 7136075bfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16325.png b/front/public/images/large/gregtech/gt.metaitem.02/16325.png deleted file mode 100644 index 1ce3fe2686..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16326.png b/front/public/images/large/gregtech/gt.metaitem.02/16326.png deleted file mode 100644 index 635143085a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16327.png b/front/public/images/large/gregtech/gt.metaitem.02/16327.png deleted file mode 100644 index eb9501c19f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16328.png b/front/public/images/large/gregtech/gt.metaitem.02/16328.png deleted file mode 100644 index dca6274032..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16329.png b/front/public/images/large/gregtech/gt.metaitem.02/16329.png deleted file mode 100644 index 8751d71113..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16330.png b/front/public/images/large/gregtech/gt.metaitem.02/16330.png deleted file mode 100644 index 1324a989ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16331.png b/front/public/images/large/gregtech/gt.metaitem.02/16331.png deleted file mode 100644 index 0919294fdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16333.png b/front/public/images/large/gregtech/gt.metaitem.02/16333.png deleted file mode 100644 index 8c9050ba74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16334.png b/front/public/images/large/gregtech/gt.metaitem.02/16334.png deleted file mode 100644 index 6ccf01a7b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16335.png b/front/public/images/large/gregtech/gt.metaitem.02/16335.png deleted file mode 100644 index 887dfb32c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16336.png b/front/public/images/large/gregtech/gt.metaitem.02/16336.png deleted file mode 100644 index d51001592f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16337.png b/front/public/images/large/gregtech/gt.metaitem.02/16337.png deleted file mode 100644 index fab31c61cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16338.png b/front/public/images/large/gregtech/gt.metaitem.02/16338.png deleted file mode 100644 index 561867025a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16339.png b/front/public/images/large/gregtech/gt.metaitem.02/16339.png deleted file mode 100644 index eb5b52eeb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16340.png b/front/public/images/large/gregtech/gt.metaitem.02/16340.png deleted file mode 100644 index 452867e0f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16341.png b/front/public/images/large/gregtech/gt.metaitem.02/16341.png deleted file mode 100644 index 44ec13cab8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16342.png b/front/public/images/large/gregtech/gt.metaitem.02/16342.png deleted file mode 100644 index 1df0300490..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16343.png b/front/public/images/large/gregtech/gt.metaitem.02/16343.png deleted file mode 100644 index eb018b4df5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16344.png b/front/public/images/large/gregtech/gt.metaitem.02/16344.png deleted file mode 100644 index 093c7f8ce9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16346.png b/front/public/images/large/gregtech/gt.metaitem.02/16346.png deleted file mode 100644 index f18b473d35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16348.png b/front/public/images/large/gregtech/gt.metaitem.02/16348.png deleted file mode 100644 index 08b8ccde68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16349.png b/front/public/images/large/gregtech/gt.metaitem.02/16349.png deleted file mode 100644 index 6f2dc2b918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16350.png b/front/public/images/large/gregtech/gt.metaitem.02/16350.png deleted file mode 100644 index 93211bef44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16351.png b/front/public/images/large/gregtech/gt.metaitem.02/16351.png deleted file mode 100644 index 2b82ceadea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16352.png b/front/public/images/large/gregtech/gt.metaitem.02/16352.png deleted file mode 100644 index 72086ba8a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16353.png b/front/public/images/large/gregtech/gt.metaitem.02/16353.png deleted file mode 100644 index e482bd3e70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16354.png b/front/public/images/large/gregtech/gt.metaitem.02/16354.png deleted file mode 100644 index 94d8991b7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16355.png b/front/public/images/large/gregtech/gt.metaitem.02/16355.png deleted file mode 100644 index 20ff081243..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16356.png b/front/public/images/large/gregtech/gt.metaitem.02/16356.png deleted file mode 100644 index 6ccf01a7b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16362.png b/front/public/images/large/gregtech/gt.metaitem.02/16362.png deleted file mode 100644 index 7f7db63f7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16363.png b/front/public/images/large/gregtech/gt.metaitem.02/16363.png deleted file mode 100644 index 94d8991b7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16364.png b/front/public/images/large/gregtech/gt.metaitem.02/16364.png deleted file mode 100644 index f75f24d32b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16365.png b/front/public/images/large/gregtech/gt.metaitem.02/16365.png deleted file mode 100644 index e57e1eb138..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16366.png b/front/public/images/large/gregtech/gt.metaitem.02/16366.png deleted file mode 100644 index 7938846db8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16367.png b/front/public/images/large/gregtech/gt.metaitem.02/16367.png deleted file mode 100644 index ea43e42baf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16368.png b/front/public/images/large/gregtech/gt.metaitem.02/16368.png deleted file mode 100644 index 87adc31f39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16369.png b/front/public/images/large/gregtech/gt.metaitem.02/16369.png deleted file mode 100644 index 4391401c80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16370.png b/front/public/images/large/gregtech/gt.metaitem.02/16370.png deleted file mode 100644 index fe9e69f29d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16371.png b/front/public/images/large/gregtech/gt.metaitem.02/16371.png deleted file mode 100644 index 6b8e60312c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16372.png b/front/public/images/large/gregtech/gt.metaitem.02/16372.png deleted file mode 100644 index f5b1dec543..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16373.png b/front/public/images/large/gregtech/gt.metaitem.02/16373.png deleted file mode 100644 index b633fac703..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16374.png b/front/public/images/large/gregtech/gt.metaitem.02/16374.png deleted file mode 100644 index 666adbf953..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16378.png b/front/public/images/large/gregtech/gt.metaitem.02/16378.png deleted file mode 100644 index a7d46a1d06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16379.png b/front/public/images/large/gregtech/gt.metaitem.02/16379.png deleted file mode 100644 index 5186294930..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16380.png b/front/public/images/large/gregtech/gt.metaitem.02/16380.png deleted file mode 100644 index 0f0491971f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16381.png b/front/public/images/large/gregtech/gt.metaitem.02/16381.png deleted file mode 100644 index de7da5ca2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16382.png b/front/public/images/large/gregtech/gt.metaitem.02/16382.png deleted file mode 100644 index feb68d8c22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16383.png b/front/public/images/large/gregtech/gt.metaitem.02/16383.png deleted file mode 100644 index f18588542a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16384.png b/front/public/images/large/gregtech/gt.metaitem.02/16384.png deleted file mode 100644 index f628403ae4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16385.png b/front/public/images/large/gregtech/gt.metaitem.02/16385.png deleted file mode 100644 index fee5384a8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16386.png b/front/public/images/large/gregtech/gt.metaitem.02/16386.png deleted file mode 100644 index 96396eee7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16387.png b/front/public/images/large/gregtech/gt.metaitem.02/16387.png deleted file mode 100644 index 5c320a7ffa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16388.png b/front/public/images/large/gregtech/gt.metaitem.02/16388.png deleted file mode 100644 index 7136075bfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16389.png b/front/public/images/large/gregtech/gt.metaitem.02/16389.png deleted file mode 100644 index 3e60927b42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16390.png b/front/public/images/large/gregtech/gt.metaitem.02/16390.png deleted file mode 100644 index ed3e3b8dff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16391.png b/front/public/images/large/gregtech/gt.metaitem.02/16391.png deleted file mode 100644 index cc5689dc1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16392.png b/front/public/images/large/gregtech/gt.metaitem.02/16392.png deleted file mode 100644 index 0138af322a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16393.png b/front/public/images/large/gregtech/gt.metaitem.02/16393.png deleted file mode 100644 index 393ae9b438..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16394.png b/front/public/images/large/gregtech/gt.metaitem.02/16394.png deleted file mode 100644 index dca6274032..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16397.png b/front/public/images/large/gregtech/gt.metaitem.02/16397.png deleted file mode 100644 index 3f02f9815d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16398.png b/front/public/images/large/gregtech/gt.metaitem.02/16398.png deleted file mode 100644 index 0d47f1c83e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16399.png b/front/public/images/large/gregtech/gt.metaitem.02/16399.png deleted file mode 100644 index 9a88d03245..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16400.png b/front/public/images/large/gregtech/gt.metaitem.02/16400.png deleted file mode 100644 index b9aba6b1a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16401.png b/front/public/images/large/gregtech/gt.metaitem.02/16401.png deleted file mode 100644 index ccb743984e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16402.png b/front/public/images/large/gregtech/gt.metaitem.02/16402.png deleted file mode 100644 index 9615cb3019..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16403.png b/front/public/images/large/gregtech/gt.metaitem.02/16403.png deleted file mode 100644 index f9b1985eb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16404.png b/front/public/images/large/gregtech/gt.metaitem.02/16404.png deleted file mode 100644 index 9edd47905f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16405.png b/front/public/images/large/gregtech/gt.metaitem.02/16405.png deleted file mode 100644 index f8479dd5f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16406.png b/front/public/images/large/gregtech/gt.metaitem.02/16406.png deleted file mode 100644 index aa3e60a229..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16407.png b/front/public/images/large/gregtech/gt.metaitem.02/16407.png deleted file mode 100644 index 5ed1028e73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16408.png b/front/public/images/large/gregtech/gt.metaitem.02/16408.png deleted file mode 100644 index 16d5b1fce5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16470.png b/front/public/images/large/gregtech/gt.metaitem.02/16470.png deleted file mode 100644 index f44902e664..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16472.png b/front/public/images/large/gregtech/gt.metaitem.02/16472.png deleted file mode 100644 index 7136075bfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16485.png b/front/public/images/large/gregtech/gt.metaitem.02/16485.png deleted file mode 100644 index 11c4b65cac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16488.png b/front/public/images/large/gregtech/gt.metaitem.02/16488.png deleted file mode 100644 index b031bd9c63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16489.png b/front/public/images/large/gregtech/gt.metaitem.02/16489.png deleted file mode 100644 index ac6428e587..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16521.png b/front/public/images/large/gregtech/gt.metaitem.02/16521.png deleted file mode 100644 index 70c4b682c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16529.png b/front/public/images/large/gregtech/gt.metaitem.02/16529.png deleted file mode 100644 index 6b12e640b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16537.png b/front/public/images/large/gregtech/gt.metaitem.02/16537.png deleted file mode 100644 index 0c0d605501..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16576.png b/front/public/images/large/gregtech/gt.metaitem.02/16576.png deleted file mode 100644 index 3fcaaaee8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16581.png b/front/public/images/large/gregtech/gt.metaitem.02/16581.png deleted file mode 100644 index 930dee6028..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16585.png b/front/public/images/large/gregtech/gt.metaitem.02/16585.png deleted file mode 100644 index aaa9ae2368..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16586.png b/front/public/images/large/gregtech/gt.metaitem.02/16586.png deleted file mode 100644 index 7bd1f542ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16588.png b/front/public/images/large/gregtech/gt.metaitem.02/16588.png deleted file mode 100644 index 32cdae605e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16610.png b/front/public/images/large/gregtech/gt.metaitem.02/16610.png deleted file mode 100644 index 0e945a9fa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16613.png b/front/public/images/large/gregtech/gt.metaitem.02/16613.png deleted file mode 100644 index c6281bf517..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16770.png b/front/public/images/large/gregtech/gt.metaitem.02/16770.png deleted file mode 100644 index d4951e3f50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16801.png b/front/public/images/large/gregtech/gt.metaitem.02/16801.png deleted file mode 100644 index 4dc1a22dce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16801.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16819.png b/front/public/images/large/gregtech/gt.metaitem.02/16819.png deleted file mode 100644 index 20ff081243..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16819.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16829.png b/front/public/images/large/gregtech/gt.metaitem.02/16829.png deleted file mode 100644 index a163abfad3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16868.png b/front/public/images/large/gregtech/gt.metaitem.02/16868.png deleted file mode 100644 index a2f05a1229..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16884.png b/front/public/images/large/gregtech/gt.metaitem.02/16884.png deleted file mode 100644 index 1ce3fe2686..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16912.png b/front/public/images/large/gregtech/gt.metaitem.02/16912.png deleted file mode 100644 index 16bd0830db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16913.png b/front/public/images/large/gregtech/gt.metaitem.02/16913.png deleted file mode 100644 index 08b8ccde68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16951.png b/front/public/images/large/gregtech/gt.metaitem.02/16951.png deleted file mode 100644 index 9005eabc23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16952.png b/front/public/images/large/gregtech/gt.metaitem.02/16952.png deleted file mode 100644 index eb7767fe15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16966.png b/front/public/images/large/gregtech/gt.metaitem.02/16966.png deleted file mode 100644 index 05e74aa2d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16970.png b/front/public/images/large/gregtech/gt.metaitem.02/16970.png deleted file mode 100644 index cb9fd9ad91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16975.png b/front/public/images/large/gregtech/gt.metaitem.02/16975.png deleted file mode 100644 index 3e8c6ed408..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16976.png b/front/public/images/large/gregtech/gt.metaitem.02/16976.png deleted file mode 100644 index 8f7db8aba5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16977.png b/front/public/images/large/gregtech/gt.metaitem.02/16977.png deleted file mode 100644 index 01a207b213..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16978.png b/front/public/images/large/gregtech/gt.metaitem.02/16978.png deleted file mode 100644 index 82003a14e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16982.png b/front/public/images/large/gregtech/gt.metaitem.02/16982.png deleted file mode 100644 index e7bb56233d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/16984.png b/front/public/images/large/gregtech/gt.metaitem.02/16984.png deleted file mode 100644 index dca6274032..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/16984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18006.png b/front/public/images/large/gregtech/gt.metaitem.02/18006.png deleted file mode 100644 index c64c4cd88a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18008.png b/front/public/images/large/gregtech/gt.metaitem.02/18008.png deleted file mode 100644 index 6907ffdc90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18010.png b/front/public/images/large/gregtech/gt.metaitem.02/18010.png deleted file mode 100644 index ce79f38a63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18018.png b/front/public/images/large/gregtech/gt.metaitem.02/18018.png deleted file mode 100644 index 88b58e351d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18019.png b/front/public/images/large/gregtech/gt.metaitem.02/18019.png deleted file mode 100644 index 4fb158d0d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18020.png b/front/public/images/large/gregtech/gt.metaitem.02/18020.png deleted file mode 100644 index 3098529922..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18025.png b/front/public/images/large/gregtech/gt.metaitem.02/18025.png deleted file mode 100644 index 6a51c80b9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18027.png b/front/public/images/large/gregtech/gt.metaitem.02/18027.png deleted file mode 100644 index 390cb92ffd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18028.png b/front/public/images/large/gregtech/gt.metaitem.02/18028.png deleted file mode 100644 index bc6203de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18029.png b/front/public/images/large/gregtech/gt.metaitem.02/18029.png deleted file mode 100644 index a5cf9a7c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18030.png b/front/public/images/large/gregtech/gt.metaitem.02/18030.png deleted file mode 100644 index a149825c0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18031.png b/front/public/images/large/gregtech/gt.metaitem.02/18031.png deleted file mode 100644 index c7e50f1c5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18032.png b/front/public/images/large/gregtech/gt.metaitem.02/18032.png deleted file mode 100644 index 6092b2c880..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18033.png b/front/public/images/large/gregtech/gt.metaitem.02/18033.png deleted file mode 100644 index 03f36adca3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18034.png b/front/public/images/large/gregtech/gt.metaitem.02/18034.png deleted file mode 100644 index ec9f1ed661..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18035.png b/front/public/images/large/gregtech/gt.metaitem.02/18035.png deleted file mode 100644 index 1017949125..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18036.png b/front/public/images/large/gregtech/gt.metaitem.02/18036.png deleted file mode 100644 index b0e2631819..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18037.png b/front/public/images/large/gregtech/gt.metaitem.02/18037.png deleted file mode 100644 index d53caecfe4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18039.png b/front/public/images/large/gregtech/gt.metaitem.02/18039.png deleted file mode 100644 index a33d65720d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18043.png b/front/public/images/large/gregtech/gt.metaitem.02/18043.png deleted file mode 100644 index 3dc19eea60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18045.png b/front/public/images/large/gregtech/gt.metaitem.02/18045.png deleted file mode 100644 index 4e960c3814..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18047.png b/front/public/images/large/gregtech/gt.metaitem.02/18047.png deleted file mode 100644 index 0be8d65189..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18048.png b/front/public/images/large/gregtech/gt.metaitem.02/18048.png deleted file mode 100644 index 7525c17aa3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18052.png b/front/public/images/large/gregtech/gt.metaitem.02/18052.png deleted file mode 100644 index edeb7da100..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18054.png b/front/public/images/large/gregtech/gt.metaitem.02/18054.png deleted file mode 100644 index d53caecfe4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18056.png b/front/public/images/large/gregtech/gt.metaitem.02/18056.png deleted file mode 100644 index f2f24f8f5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18057.png b/front/public/images/large/gregtech/gt.metaitem.02/18057.png deleted file mode 100644 index a423dbe831..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18058.png b/front/public/images/large/gregtech/gt.metaitem.02/18058.png deleted file mode 100644 index 0a37f6539b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18059.png b/front/public/images/large/gregtech/gt.metaitem.02/18059.png deleted file mode 100644 index e89b4d34e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18062.png b/front/public/images/large/gregtech/gt.metaitem.02/18062.png deleted file mode 100644 index 443461a49c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18063.png b/front/public/images/large/gregtech/gt.metaitem.02/18063.png deleted file mode 100644 index a33d65720d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18064.png b/front/public/images/large/gregtech/gt.metaitem.02/18064.png deleted file mode 100644 index 1eb3f2e588..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18065.png b/front/public/images/large/gregtech/gt.metaitem.02/18065.png deleted file mode 100644 index 85363eba1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18066.png b/front/public/images/large/gregtech/gt.metaitem.02/18066.png deleted file mode 100644 index 6d99d2ec61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18067.png b/front/public/images/large/gregtech/gt.metaitem.02/18067.png deleted file mode 100644 index 55682a3d61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18068.png b/front/public/images/large/gregtech/gt.metaitem.02/18068.png deleted file mode 100644 index df30ff2b51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18069.png b/front/public/images/large/gregtech/gt.metaitem.02/18069.png deleted file mode 100644 index ef1ef9d6bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18070.png b/front/public/images/large/gregtech/gt.metaitem.02/18070.png deleted file mode 100644 index 7625cba035..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18071.png b/front/public/images/large/gregtech/gt.metaitem.02/18071.png deleted file mode 100644 index 21b3a77824..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18072.png b/front/public/images/large/gregtech/gt.metaitem.02/18072.png deleted file mode 100644 index a33d65720d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18073.png b/front/public/images/large/gregtech/gt.metaitem.02/18073.png deleted file mode 100644 index 39b71bea5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18074.png b/front/public/images/large/gregtech/gt.metaitem.02/18074.png deleted file mode 100644 index 50895d80df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18075.png b/front/public/images/large/gregtech/gt.metaitem.02/18075.png deleted file mode 100644 index 74b1e20cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18076.png b/front/public/images/large/gregtech/gt.metaitem.02/18076.png deleted file mode 100644 index bd59a06e84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18077.png b/front/public/images/large/gregtech/gt.metaitem.02/18077.png deleted file mode 100644 index 88366b540e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18078.png b/front/public/images/large/gregtech/gt.metaitem.02/18078.png deleted file mode 100644 index 67192d35d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18080.png b/front/public/images/large/gregtech/gt.metaitem.02/18080.png deleted file mode 100644 index 9363f7c054..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18081.png b/front/public/images/large/gregtech/gt.metaitem.02/18081.png deleted file mode 100644 index a5cf9a7c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18083.png b/front/public/images/large/gregtech/gt.metaitem.02/18083.png deleted file mode 100644 index 3fc27763bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18084.png b/front/public/images/large/gregtech/gt.metaitem.02/18084.png deleted file mode 100644 index f79ec341d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18085.png b/front/public/images/large/gregtech/gt.metaitem.02/18085.png deleted file mode 100644 index 65bf80a19c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18086.png b/front/public/images/large/gregtech/gt.metaitem.02/18086.png deleted file mode 100644 index 725733effe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18089.png b/front/public/images/large/gregtech/gt.metaitem.02/18089.png deleted file mode 100644 index 7e72976c21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18090.png b/front/public/images/large/gregtech/gt.metaitem.02/18090.png deleted file mode 100644 index 1603657e94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18096.png b/front/public/images/large/gregtech/gt.metaitem.02/18096.png deleted file mode 100644 index 4abbba1bd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18097.png b/front/public/images/large/gregtech/gt.metaitem.02/18097.png deleted file mode 100644 index 58d2f674d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18098.png b/front/public/images/large/gregtech/gt.metaitem.02/18098.png deleted file mode 100644 index a5f91edcd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18100.png b/front/public/images/large/gregtech/gt.metaitem.02/18100.png deleted file mode 100644 index a21916747e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18101.png b/front/public/images/large/gregtech/gt.metaitem.02/18101.png deleted file mode 100644 index c392a9c76b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18103.png b/front/public/images/large/gregtech/gt.metaitem.02/18103.png deleted file mode 100644 index 6092b2c880..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18111.png b/front/public/images/large/gregtech/gt.metaitem.02/18111.png deleted file mode 100644 index bddb470f6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18112.png b/front/public/images/large/gregtech/gt.metaitem.02/18112.png deleted file mode 100644 index 62e58aedd2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18129.png b/front/public/images/large/gregtech/gt.metaitem.02/18129.png deleted file mode 100644 index c7e50f1c5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18131.png b/front/public/images/large/gregtech/gt.metaitem.02/18131.png deleted file mode 100644 index d7ee2ceaad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18134.png b/front/public/images/large/gregtech/gt.metaitem.02/18134.png deleted file mode 100644 index 2fdb84afc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18139.png b/front/public/images/large/gregtech/gt.metaitem.02/18139.png deleted file mode 100644 index 2c2794114b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18141.png b/front/public/images/large/gregtech/gt.metaitem.02/18141.png deleted file mode 100644 index 3c3cb10ac7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18143.png b/front/public/images/large/gregtech/gt.metaitem.02/18143.png deleted file mode 100644 index 3023417fdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18201.png b/front/public/images/large/gregtech/gt.metaitem.02/18201.png deleted file mode 100644 index 062f789d6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18202.png b/front/public/images/large/gregtech/gt.metaitem.02/18202.png deleted file mode 100644 index 5381241dd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18203.png b/front/public/images/large/gregtech/gt.metaitem.02/18203.png deleted file mode 100644 index 34e81e7b06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18205.png b/front/public/images/large/gregtech/gt.metaitem.02/18205.png deleted file mode 100644 index ed2cdfefed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18206.png b/front/public/images/large/gregtech/gt.metaitem.02/18206.png deleted file mode 100644 index 3ecce9904f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18207.png b/front/public/images/large/gregtech/gt.metaitem.02/18207.png deleted file mode 100644 index b509077921..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18208.png b/front/public/images/large/gregtech/gt.metaitem.02/18208.png deleted file mode 100644 index 96881f2694..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18209.png b/front/public/images/large/gregtech/gt.metaitem.02/18209.png deleted file mode 100644 index 3467969289..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18300.png b/front/public/images/large/gregtech/gt.metaitem.02/18300.png deleted file mode 100644 index dbc811a9b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18301.png b/front/public/images/large/gregtech/gt.metaitem.02/18301.png deleted file mode 100644 index 2a7f7bbedc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18302.png b/front/public/images/large/gregtech/gt.metaitem.02/18302.png deleted file mode 100644 index dcc855be64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18303.png b/front/public/images/large/gregtech/gt.metaitem.02/18303.png deleted file mode 100644 index a848e0bbaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18304.png b/front/public/images/large/gregtech/gt.metaitem.02/18304.png deleted file mode 100644 index ce8ed21d43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18305.png b/front/public/images/large/gregtech/gt.metaitem.02/18305.png deleted file mode 100644 index edeb7da100..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18306.png b/front/public/images/large/gregtech/gt.metaitem.02/18306.png deleted file mode 100644 index c580a2d54a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18307.png b/front/public/images/large/gregtech/gt.metaitem.02/18307.png deleted file mode 100644 index ce8ed21d43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18308.png b/front/public/images/large/gregtech/gt.metaitem.02/18308.png deleted file mode 100644 index f93695e5ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18309.png b/front/public/images/large/gregtech/gt.metaitem.02/18309.png deleted file mode 100644 index 052b06d65c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18310.png b/front/public/images/large/gregtech/gt.metaitem.02/18310.png deleted file mode 100644 index bb787be45a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18311.png b/front/public/images/large/gregtech/gt.metaitem.02/18311.png deleted file mode 100644 index 5c104d822c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18312.png b/front/public/images/large/gregtech/gt.metaitem.02/18312.png deleted file mode 100644 index 81a43e9943..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18313.png b/front/public/images/large/gregtech/gt.metaitem.02/18313.png deleted file mode 100644 index ce0cf67f93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18314.png b/front/public/images/large/gregtech/gt.metaitem.02/18314.png deleted file mode 100644 index 22a29bd47d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18315.png b/front/public/images/large/gregtech/gt.metaitem.02/18315.png deleted file mode 100644 index a5a25abae8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18316.png b/front/public/images/large/gregtech/gt.metaitem.02/18316.png deleted file mode 100644 index 804e0181df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18317.png b/front/public/images/large/gregtech/gt.metaitem.02/18317.png deleted file mode 100644 index 5d49ae8d86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18318.png b/front/public/images/large/gregtech/gt.metaitem.02/18318.png deleted file mode 100644 index 4f3a445070..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18319.png b/front/public/images/large/gregtech/gt.metaitem.02/18319.png deleted file mode 100644 index a33d65720d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18320.png b/front/public/images/large/gregtech/gt.metaitem.02/18320.png deleted file mode 100644 index 01fe758e70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18321.png b/front/public/images/large/gregtech/gt.metaitem.02/18321.png deleted file mode 100644 index 1fd7fa40fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18323.png b/front/public/images/large/gregtech/gt.metaitem.02/18323.png deleted file mode 100644 index 51424750ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18324.png b/front/public/images/large/gregtech/gt.metaitem.02/18324.png deleted file mode 100644 index a5cf9a7c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18325.png b/front/public/images/large/gregtech/gt.metaitem.02/18325.png deleted file mode 100644 index 9bc8b797a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18326.png b/front/public/images/large/gregtech/gt.metaitem.02/18326.png deleted file mode 100644 index 4e4ee623b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18327.png b/front/public/images/large/gregtech/gt.metaitem.02/18327.png deleted file mode 100644 index 86699f8683..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18328.png b/front/public/images/large/gregtech/gt.metaitem.02/18328.png deleted file mode 100644 index a33d65720d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18329.png b/front/public/images/large/gregtech/gt.metaitem.02/18329.png deleted file mode 100644 index fce5785497..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18330.png b/front/public/images/large/gregtech/gt.metaitem.02/18330.png deleted file mode 100644 index 33c83e7eb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18331.png b/front/public/images/large/gregtech/gt.metaitem.02/18331.png deleted file mode 100644 index e1f2df210e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18333.png b/front/public/images/large/gregtech/gt.metaitem.02/18333.png deleted file mode 100644 index 9cb2f39998..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18334.png b/front/public/images/large/gregtech/gt.metaitem.02/18334.png deleted file mode 100644 index 55682a3d61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18335.png b/front/public/images/large/gregtech/gt.metaitem.02/18335.png deleted file mode 100644 index 57c3c21857..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18336.png b/front/public/images/large/gregtech/gt.metaitem.02/18336.png deleted file mode 100644 index 94dbf32191..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18337.png b/front/public/images/large/gregtech/gt.metaitem.02/18337.png deleted file mode 100644 index b2dc38b25b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18338.png b/front/public/images/large/gregtech/gt.metaitem.02/18338.png deleted file mode 100644 index a9fcc27d50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18339.png b/front/public/images/large/gregtech/gt.metaitem.02/18339.png deleted file mode 100644 index 0c45fa5d2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18340.png b/front/public/images/large/gregtech/gt.metaitem.02/18340.png deleted file mode 100644 index a87ca43fdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18341.png b/front/public/images/large/gregtech/gt.metaitem.02/18341.png deleted file mode 100644 index 24d5594896..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18342.png b/front/public/images/large/gregtech/gt.metaitem.02/18342.png deleted file mode 100644 index 5e0439ba8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18343.png b/front/public/images/large/gregtech/gt.metaitem.02/18343.png deleted file mode 100644 index 193b3fadd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18344.png b/front/public/images/large/gregtech/gt.metaitem.02/18344.png deleted file mode 100644 index 7f3ce70ec3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18345.png b/front/public/images/large/gregtech/gt.metaitem.02/18345.png deleted file mode 100644 index 04b86f6861..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18346.png b/front/public/images/large/gregtech/gt.metaitem.02/18346.png deleted file mode 100644 index 256f35406e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18347.png b/front/public/images/large/gregtech/gt.metaitem.02/18347.png deleted file mode 100644 index fcd2912a0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18348.png b/front/public/images/large/gregtech/gt.metaitem.02/18348.png deleted file mode 100644 index 83dadfeb81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18349.png b/front/public/images/large/gregtech/gt.metaitem.02/18349.png deleted file mode 100644 index b4a3effc19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18350.png b/front/public/images/large/gregtech/gt.metaitem.02/18350.png deleted file mode 100644 index b6098bf0b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18351.png b/front/public/images/large/gregtech/gt.metaitem.02/18351.png deleted file mode 100644 index f84b01f2e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18352.png b/front/public/images/large/gregtech/gt.metaitem.02/18352.png deleted file mode 100644 index 01e7aaf7a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18353.png b/front/public/images/large/gregtech/gt.metaitem.02/18353.png deleted file mode 100644 index 7c92243f35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18354.png b/front/public/images/large/gregtech/gt.metaitem.02/18354.png deleted file mode 100644 index 6092b2c880..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18355.png b/front/public/images/large/gregtech/gt.metaitem.02/18355.png deleted file mode 100644 index edeb7da100..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18356.png b/front/public/images/large/gregtech/gt.metaitem.02/18356.png deleted file mode 100644 index 55682a3d61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18357.png b/front/public/images/large/gregtech/gt.metaitem.02/18357.png deleted file mode 100644 index 67fe808ae7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18358.png b/front/public/images/large/gregtech/gt.metaitem.02/18358.png deleted file mode 100644 index 31d71525b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18359.png b/front/public/images/large/gregtech/gt.metaitem.02/18359.png deleted file mode 100644 index c2dcd559a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18360.png b/front/public/images/large/gregtech/gt.metaitem.02/18360.png deleted file mode 100644 index 43d638ada1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18361.png b/front/public/images/large/gregtech/gt.metaitem.02/18361.png deleted file mode 100644 index ae22b46fe3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18362.png b/front/public/images/large/gregtech/gt.metaitem.02/18362.png deleted file mode 100644 index 5bb5665702..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18363.png b/front/public/images/large/gregtech/gt.metaitem.02/18363.png deleted file mode 100644 index 6092b2c880..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18364.png b/front/public/images/large/gregtech/gt.metaitem.02/18364.png deleted file mode 100644 index 8eafca0972..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18365.png b/front/public/images/large/gregtech/gt.metaitem.02/18365.png deleted file mode 100644 index e283baa492..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18366.png b/front/public/images/large/gregtech/gt.metaitem.02/18366.png deleted file mode 100644 index ff185cf30c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18367.png b/front/public/images/large/gregtech/gt.metaitem.02/18367.png deleted file mode 100644 index a11f519e34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18368.png b/front/public/images/large/gregtech/gt.metaitem.02/18368.png deleted file mode 100644 index 7bff9b1f3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18369.png b/front/public/images/large/gregtech/gt.metaitem.02/18369.png deleted file mode 100644 index 16479325fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18370.png b/front/public/images/large/gregtech/gt.metaitem.02/18370.png deleted file mode 100644 index 647587363c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18371.png b/front/public/images/large/gregtech/gt.metaitem.02/18371.png deleted file mode 100644 index 03d422a335..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18372.png b/front/public/images/large/gregtech/gt.metaitem.02/18372.png deleted file mode 100644 index 5a01e25f26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18373.png b/front/public/images/large/gregtech/gt.metaitem.02/18373.png deleted file mode 100644 index edcd925df2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18374.png b/front/public/images/large/gregtech/gt.metaitem.02/18374.png deleted file mode 100644 index 5f8adb0eee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18378.png b/front/public/images/large/gregtech/gt.metaitem.02/18378.png deleted file mode 100644 index 33f4e5cc34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18379.png b/front/public/images/large/gregtech/gt.metaitem.02/18379.png deleted file mode 100644 index d0f1aeba22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18380.png b/front/public/images/large/gregtech/gt.metaitem.02/18380.png deleted file mode 100644 index 32ff30a238..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18381.png b/front/public/images/large/gregtech/gt.metaitem.02/18381.png deleted file mode 100644 index 6b1040c8ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18382.png b/front/public/images/large/gregtech/gt.metaitem.02/18382.png deleted file mode 100644 index ee49af0015..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18383.png b/front/public/images/large/gregtech/gt.metaitem.02/18383.png deleted file mode 100644 index 64de485800..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18384.png b/front/public/images/large/gregtech/gt.metaitem.02/18384.png deleted file mode 100644 index fcd5832212..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18385.png b/front/public/images/large/gregtech/gt.metaitem.02/18385.png deleted file mode 100644 index 8620199c5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18386.png b/front/public/images/large/gregtech/gt.metaitem.02/18386.png deleted file mode 100644 index e746f76779..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18387.png b/front/public/images/large/gregtech/gt.metaitem.02/18387.png deleted file mode 100644 index 87365d1314..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18388.png b/front/public/images/large/gregtech/gt.metaitem.02/18388.png deleted file mode 100644 index a5cf9a7c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18389.png b/front/public/images/large/gregtech/gt.metaitem.02/18389.png deleted file mode 100644 index f7e0660c90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18390.png b/front/public/images/large/gregtech/gt.metaitem.02/18390.png deleted file mode 100644 index 93c6efd958..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18391.png b/front/public/images/large/gregtech/gt.metaitem.02/18391.png deleted file mode 100644 index f562c2bf77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18392.png b/front/public/images/large/gregtech/gt.metaitem.02/18392.png deleted file mode 100644 index 5166499eec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18393.png b/front/public/images/large/gregtech/gt.metaitem.02/18393.png deleted file mode 100644 index 266ba8f0f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18394.png b/front/public/images/large/gregtech/gt.metaitem.02/18394.png deleted file mode 100644 index a33d65720d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18395.png b/front/public/images/large/gregtech/gt.metaitem.02/18395.png deleted file mode 100644 index a5cf9a7c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18397.png b/front/public/images/large/gregtech/gt.metaitem.02/18397.png deleted file mode 100644 index 8b2b53ec43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18398.png b/front/public/images/large/gregtech/gt.metaitem.02/18398.png deleted file mode 100644 index 88deb21001..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18399.png b/front/public/images/large/gregtech/gt.metaitem.02/18399.png deleted file mode 100644 index ef1ef9d6bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18400.png b/front/public/images/large/gregtech/gt.metaitem.02/18400.png deleted file mode 100644 index b0b2509d18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18401.png b/front/public/images/large/gregtech/gt.metaitem.02/18401.png deleted file mode 100644 index 96abf36c88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18402.png b/front/public/images/large/gregtech/gt.metaitem.02/18402.png deleted file mode 100644 index 791facdffe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18403.png b/front/public/images/large/gregtech/gt.metaitem.02/18403.png deleted file mode 100644 index 1d0ff4dee4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18404.png b/front/public/images/large/gregtech/gt.metaitem.02/18404.png deleted file mode 100644 index b29f8b6234..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18405.png b/front/public/images/large/gregtech/gt.metaitem.02/18405.png deleted file mode 100644 index 1176b508f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18406.png b/front/public/images/large/gregtech/gt.metaitem.02/18406.png deleted file mode 100644 index f5da4991dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18407.png b/front/public/images/large/gregtech/gt.metaitem.02/18407.png deleted file mode 100644 index 2ddcf4d121..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18408.png b/front/public/images/large/gregtech/gt.metaitem.02/18408.png deleted file mode 100644 index 53ea8950cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18470.png b/front/public/images/large/gregtech/gt.metaitem.02/18470.png deleted file mode 100644 index ad7a55f8f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18471.png b/front/public/images/large/gregtech/gt.metaitem.02/18471.png deleted file mode 100644 index a423dbe831..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18472.png b/front/public/images/large/gregtech/gt.metaitem.02/18472.png deleted file mode 100644 index a5cf9a7c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18473.png b/front/public/images/large/gregtech/gt.metaitem.02/18473.png deleted file mode 100644 index 55682a3d61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18485.png b/front/public/images/large/gregtech/gt.metaitem.02/18485.png deleted file mode 100644 index 0438e0f630..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18488.png b/front/public/images/large/gregtech/gt.metaitem.02/18488.png deleted file mode 100644 index 4feaed5858..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18489.png b/front/public/images/large/gregtech/gt.metaitem.02/18489.png deleted file mode 100644 index dfa20189db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18500.png b/front/public/images/large/gregtech/gt.metaitem.02/18500.png deleted file mode 100644 index 573a39ce1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18501.png b/front/public/images/large/gregtech/gt.metaitem.02/18501.png deleted file mode 100644 index 536c2aff06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18502.png b/front/public/images/large/gregtech/gt.metaitem.02/18502.png deleted file mode 100644 index 13b4414369..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18503.png b/front/public/images/large/gregtech/gt.metaitem.02/18503.png deleted file mode 100644 index 352db5892f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18504.png b/front/public/images/large/gregtech/gt.metaitem.02/18504.png deleted file mode 100644 index d4cf798011..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18505.png b/front/public/images/large/gregtech/gt.metaitem.02/18505.png deleted file mode 100644 index a0a31406b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18506.png b/front/public/images/large/gregtech/gt.metaitem.02/18506.png deleted file mode 100644 index c7e50f1c5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18507.png b/front/public/images/large/gregtech/gt.metaitem.02/18507.png deleted file mode 100644 index dbc811a9b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18508.png b/front/public/images/large/gregtech/gt.metaitem.02/18508.png deleted file mode 100644 index 74032215a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18509.png b/front/public/images/large/gregtech/gt.metaitem.02/18509.png deleted file mode 100644 index f683aac5fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18510.png b/front/public/images/large/gregtech/gt.metaitem.02/18510.png deleted file mode 100644 index d46f17b95e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18511.png b/front/public/images/large/gregtech/gt.metaitem.02/18511.png deleted file mode 100644 index 7494085d2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18512.png b/front/public/images/large/gregtech/gt.metaitem.02/18512.png deleted file mode 100644 index 13b4414369..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18513.png b/front/public/images/large/gregtech/gt.metaitem.02/18513.png deleted file mode 100644 index d46f17b95e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18514.png b/front/public/images/large/gregtech/gt.metaitem.02/18514.png deleted file mode 100644 index dbc811a9b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18515.png b/front/public/images/large/gregtech/gt.metaitem.02/18515.png deleted file mode 100644 index 88953aa63c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18516.png b/front/public/images/large/gregtech/gt.metaitem.02/18516.png deleted file mode 100644 index 0d89fc7728..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18518.png b/front/public/images/large/gregtech/gt.metaitem.02/18518.png deleted file mode 100644 index 027932e11f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18519.png b/front/public/images/large/gregtech/gt.metaitem.02/18519.png deleted file mode 100644 index 027932e11f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18520.png b/front/public/images/large/gregtech/gt.metaitem.02/18520.png deleted file mode 100644 index bab973f553..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18521.png b/front/public/images/large/gregtech/gt.metaitem.02/18521.png deleted file mode 100644 index 4f3a445070..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18522.png b/front/public/images/large/gregtech/gt.metaitem.02/18522.png deleted file mode 100644 index 817a228a73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18523.png b/front/public/images/large/gregtech/gt.metaitem.02/18523.png deleted file mode 100644 index 1c59d0a1d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18524.png b/front/public/images/large/gregtech/gt.metaitem.02/18524.png deleted file mode 100644 index 51edc25c2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18525.png b/front/public/images/large/gregtech/gt.metaitem.02/18525.png deleted file mode 100644 index 36cdb48537..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18526.png b/front/public/images/large/gregtech/gt.metaitem.02/18526.png deleted file mode 100644 index 7293172306..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18527.png b/front/public/images/large/gregtech/gt.metaitem.02/18527.png deleted file mode 100644 index 7494085d2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18528.png b/front/public/images/large/gregtech/gt.metaitem.02/18528.png deleted file mode 100644 index d23757980e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18529.png b/front/public/images/large/gregtech/gt.metaitem.02/18529.png deleted file mode 100644 index b5575ab97c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18530.png b/front/public/images/large/gregtech/gt.metaitem.02/18530.png deleted file mode 100644 index e03cee0c35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18531.png b/front/public/images/large/gregtech/gt.metaitem.02/18531.png deleted file mode 100644 index 88b58e351d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18532.png b/front/public/images/large/gregtech/gt.metaitem.02/18532.png deleted file mode 100644 index 1bd84d9088..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18533.png b/front/public/images/large/gregtech/gt.metaitem.02/18533.png deleted file mode 100644 index efa7c6eff6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18534.png b/front/public/images/large/gregtech/gt.metaitem.02/18534.png deleted file mode 100644 index 5885cc13aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18535.png b/front/public/images/large/gregtech/gt.metaitem.02/18535.png deleted file mode 100644 index f46334d2f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18536.png b/front/public/images/large/gregtech/gt.metaitem.02/18536.png deleted file mode 100644 index 8228042ee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18537.png b/front/public/images/large/gregtech/gt.metaitem.02/18537.png deleted file mode 100644 index dc9283ab91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18538.png b/front/public/images/large/gregtech/gt.metaitem.02/18538.png deleted file mode 100644 index 8228042ee9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18540.png b/front/public/images/large/gregtech/gt.metaitem.02/18540.png deleted file mode 100644 index 4f3a445070..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18541.png b/front/public/images/large/gregtech/gt.metaitem.02/18541.png deleted file mode 100644 index de490f6a95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18542.png b/front/public/images/large/gregtech/gt.metaitem.02/18542.png deleted file mode 100644 index a8dab56a50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18543.png b/front/public/images/large/gregtech/gt.metaitem.02/18543.png deleted file mode 100644 index 6e6b90b9b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18544.png b/front/public/images/large/gregtech/gt.metaitem.02/18544.png deleted file mode 100644 index 8ae8a9c04f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18545.png b/front/public/images/large/gregtech/gt.metaitem.02/18545.png deleted file mode 100644 index f362c75276..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18576.png b/front/public/images/large/gregtech/gt.metaitem.02/18576.png deleted file mode 100644 index 1b2c8d8b20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18581.png b/front/public/images/large/gregtech/gt.metaitem.02/18581.png deleted file mode 100644 index a2fe91d444..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18582.png b/front/public/images/large/gregtech/gt.metaitem.02/18582.png deleted file mode 100644 index ee9aebf5cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18583.png b/front/public/images/large/gregtech/gt.metaitem.02/18583.png deleted file mode 100644 index a2afcbfe8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18585.png b/front/public/images/large/gregtech/gt.metaitem.02/18585.png deleted file mode 100644 index 44c58d738e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18586.png b/front/public/images/large/gregtech/gt.metaitem.02/18586.png deleted file mode 100644 index 69315e644e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18588.png b/front/public/images/large/gregtech/gt.metaitem.02/18588.png deleted file mode 100644 index 0168eebdb4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18599.png b/front/public/images/large/gregtech/gt.metaitem.02/18599.png deleted file mode 100644 index 55fdc13ecf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18610.png b/front/public/images/large/gregtech/gt.metaitem.02/18610.png deleted file mode 100644 index 0eb53d5341..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18611.png b/front/public/images/large/gregtech/gt.metaitem.02/18611.png deleted file mode 100644 index 91ddc3a651..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18613.png b/front/public/images/large/gregtech/gt.metaitem.02/18613.png deleted file mode 100644 index 872a03f76c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18631.png b/front/public/images/large/gregtech/gt.metaitem.02/18631.png deleted file mode 100644 index c786cadb64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18635.png b/front/public/images/large/gregtech/gt.metaitem.02/18635.png deleted file mode 100644 index ae39cf240d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18636.png b/front/public/images/large/gregtech/gt.metaitem.02/18636.png deleted file mode 100644 index 638d0aad72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18649.png b/front/public/images/large/gregtech/gt.metaitem.02/18649.png deleted file mode 100644 index 2168863918..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18765.png b/front/public/images/large/gregtech/gt.metaitem.02/18765.png deleted file mode 100644 index 4002d1f95d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18770.png b/front/public/images/large/gregtech/gt.metaitem.02/18770.png deleted file mode 100644 index 4971cc5fab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18772.png b/front/public/images/large/gregtech/gt.metaitem.02/18772.png deleted file mode 100644 index 838d08e37b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18804.png b/front/public/images/large/gregtech/gt.metaitem.02/18804.png deleted file mode 100644 index 6e1f422982..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18809.png b/front/public/images/large/gregtech/gt.metaitem.02/18809.png deleted file mode 100644 index 2c1e35e9df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18829.png b/front/public/images/large/gregtech/gt.metaitem.02/18829.png deleted file mode 100644 index f3f8e8767d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18856.png b/front/public/images/large/gregtech/gt.metaitem.02/18856.png deleted file mode 100644 index fac0432676..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18868.png b/front/public/images/large/gregtech/gt.metaitem.02/18868.png deleted file mode 100644 index 260000df7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18874.png b/front/public/images/large/gregtech/gt.metaitem.02/18874.png deleted file mode 100644 index 6092b2c880..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18880.png b/front/public/images/large/gregtech/gt.metaitem.02/18880.png deleted file mode 100644 index 69315e644e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18884.png b/front/public/images/large/gregtech/gt.metaitem.02/18884.png deleted file mode 100644 index 9bc8b797a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18889.png b/front/public/images/large/gregtech/gt.metaitem.02/18889.png deleted file mode 100644 index 9b51b10357..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18890.png b/front/public/images/large/gregtech/gt.metaitem.02/18890.png deleted file mode 100644 index c7e50f1c5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18912.png b/front/public/images/large/gregtech/gt.metaitem.02/18912.png deleted file mode 100644 index 847c10d0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18913.png b/front/public/images/large/gregtech/gt.metaitem.02/18913.png deleted file mode 100644 index 83dadfeb81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18951.png b/front/public/images/large/gregtech/gt.metaitem.02/18951.png deleted file mode 100644 index de0ed528dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18952.png b/front/public/images/large/gregtech/gt.metaitem.02/18952.png deleted file mode 100644 index 51f20774f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18956.png b/front/public/images/large/gregtech/gt.metaitem.02/18956.png deleted file mode 100644 index ffa058c07f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18966.png b/front/public/images/large/gregtech/gt.metaitem.02/18966.png deleted file mode 100644 index bd152fa03a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18970.png b/front/public/images/large/gregtech/gt.metaitem.02/18970.png deleted file mode 100644 index c8a52bb9f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18974.png b/front/public/images/large/gregtech/gt.metaitem.02/18974.png deleted file mode 100644 index 9bd5438fee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18975.png b/front/public/images/large/gregtech/gt.metaitem.02/18975.png deleted file mode 100644 index de698affc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18976.png b/front/public/images/large/gregtech/gt.metaitem.02/18976.png deleted file mode 100644 index e4d2cb9e74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18977.png b/front/public/images/large/gregtech/gt.metaitem.02/18977.png deleted file mode 100644 index aa6efcb1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18978.png b/front/public/images/large/gregtech/gt.metaitem.02/18978.png deleted file mode 100644 index b200436525..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18979.png b/front/public/images/large/gregtech/gt.metaitem.02/18979.png deleted file mode 100644 index ee9d3d2363..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18980.png b/front/public/images/large/gregtech/gt.metaitem.02/18980.png deleted file mode 100644 index 85ef4f80e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18981.png b/front/public/images/large/gregtech/gt.metaitem.02/18981.png deleted file mode 100644 index 1632b8db21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18982.png b/front/public/images/large/gregtech/gt.metaitem.02/18982.png deleted file mode 100644 index 53d4dce1d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18984.png b/front/public/images/large/gregtech/gt.metaitem.02/18984.png deleted file mode 100644 index a33d65720d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18985.png b/front/public/images/large/gregtech/gt.metaitem.02/18985.png deleted file mode 100644 index 7716db2db1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18986.png b/front/public/images/large/gregtech/gt.metaitem.02/18986.png deleted file mode 100644 index fd54c5d60e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18987.png b/front/public/images/large/gregtech/gt.metaitem.02/18987.png deleted file mode 100644 index 306cdfe560..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18988.png b/front/public/images/large/gregtech/gt.metaitem.02/18988.png deleted file mode 100644 index db6606637e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18989.png b/front/public/images/large/gregtech/gt.metaitem.02/18989.png deleted file mode 100644 index 9fd34de46e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18990.png b/front/public/images/large/gregtech/gt.metaitem.02/18990.png deleted file mode 100644 index 0b3bf9d5f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18991.png b/front/public/images/large/gregtech/gt.metaitem.02/18991.png deleted file mode 100644 index 4c56df5ce2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/18992.png b/front/public/images/large/gregtech/gt.metaitem.02/18992.png deleted file mode 100644 index fd49fef1aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/18992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19008.png b/front/public/images/large/gregtech/gt.metaitem.02/19008.png deleted file mode 100644 index adfe8072be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19018.png b/front/public/images/large/gregtech/gt.metaitem.02/19018.png deleted file mode 100644 index eff60674d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19019.png b/front/public/images/large/gregtech/gt.metaitem.02/19019.png deleted file mode 100644 index a46039fd43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19020.png b/front/public/images/large/gregtech/gt.metaitem.02/19020.png deleted file mode 100644 index 28d0059004..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19027.png b/front/public/images/large/gregtech/gt.metaitem.02/19027.png deleted file mode 100644 index 0cfaee048b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19028.png b/front/public/images/large/gregtech/gt.metaitem.02/19028.png deleted file mode 100644 index 5869800e6e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19029.png b/front/public/images/large/gregtech/gt.metaitem.02/19029.png deleted file mode 100644 index cf256f2646..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19030.png b/front/public/images/large/gregtech/gt.metaitem.02/19030.png deleted file mode 100644 index 539971d192..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19031.png b/front/public/images/large/gregtech/gt.metaitem.02/19031.png deleted file mode 100644 index 9b95b3324b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19032.png b/front/public/images/large/gregtech/gt.metaitem.02/19032.png deleted file mode 100644 index 04ea48a69e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19033.png b/front/public/images/large/gregtech/gt.metaitem.02/19033.png deleted file mode 100644 index 82225649c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19034.png b/front/public/images/large/gregtech/gt.metaitem.02/19034.png deleted file mode 100644 index 09ce5d18c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19035.png b/front/public/images/large/gregtech/gt.metaitem.02/19035.png deleted file mode 100644 index 3a8b919883..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19036.png b/front/public/images/large/gregtech/gt.metaitem.02/19036.png deleted file mode 100644 index 77e55bd063..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19037.png b/front/public/images/large/gregtech/gt.metaitem.02/19037.png deleted file mode 100644 index fefb04a047..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19043.png b/front/public/images/large/gregtech/gt.metaitem.02/19043.png deleted file mode 100644 index 928719d827..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19045.png b/front/public/images/large/gregtech/gt.metaitem.02/19045.png deleted file mode 100644 index f4f4b22a06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19047.png b/front/public/images/large/gregtech/gt.metaitem.02/19047.png deleted file mode 100644 index 93d45d43e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19048.png b/front/public/images/large/gregtech/gt.metaitem.02/19048.png deleted file mode 100644 index eab56cb732..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19052.png b/front/public/images/large/gregtech/gt.metaitem.02/19052.png deleted file mode 100644 index 926abae00e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19054.png b/front/public/images/large/gregtech/gt.metaitem.02/19054.png deleted file mode 100644 index fefb04a047..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19056.png b/front/public/images/large/gregtech/gt.metaitem.02/19056.png deleted file mode 100644 index 5ee0e473b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19057.png b/front/public/images/large/gregtech/gt.metaitem.02/19057.png deleted file mode 100644 index 2d968bea0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19058.png b/front/public/images/large/gregtech/gt.metaitem.02/19058.png deleted file mode 100644 index d22baa64a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19059.png b/front/public/images/large/gregtech/gt.metaitem.02/19059.png deleted file mode 100644 index bb1823ccec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19062.png b/front/public/images/large/gregtech/gt.metaitem.02/19062.png deleted file mode 100644 index c5de8a4864..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19064.png b/front/public/images/large/gregtech/gt.metaitem.02/19064.png deleted file mode 100644 index b098d8be1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19065.png b/front/public/images/large/gregtech/gt.metaitem.02/19065.png deleted file mode 100644 index 9f24529669..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19066.png b/front/public/images/large/gregtech/gt.metaitem.02/19066.png deleted file mode 100644 index edfc107508..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19067.png b/front/public/images/large/gregtech/gt.metaitem.02/19067.png deleted file mode 100644 index 08392b1e07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19068.png b/front/public/images/large/gregtech/gt.metaitem.02/19068.png deleted file mode 100644 index c32b825bb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19069.png b/front/public/images/large/gregtech/gt.metaitem.02/19069.png deleted file mode 100644 index b6447189b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19070.png b/front/public/images/large/gregtech/gt.metaitem.02/19070.png deleted file mode 100644 index a235143840..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19071.png b/front/public/images/large/gregtech/gt.metaitem.02/19071.png deleted file mode 100644 index d46a456bcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19072.png b/front/public/images/large/gregtech/gt.metaitem.02/19072.png deleted file mode 100644 index 2d18d07559..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19073.png b/front/public/images/large/gregtech/gt.metaitem.02/19073.png deleted file mode 100644 index e61b76c961..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19074.png b/front/public/images/large/gregtech/gt.metaitem.02/19074.png deleted file mode 100644 index 23880090c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19075.png b/front/public/images/large/gregtech/gt.metaitem.02/19075.png deleted file mode 100644 index e6e94499f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19076.png b/front/public/images/large/gregtech/gt.metaitem.02/19076.png deleted file mode 100644 index feeb104db2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19077.png b/front/public/images/large/gregtech/gt.metaitem.02/19077.png deleted file mode 100644 index 5f364a9df2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19078.png b/front/public/images/large/gregtech/gt.metaitem.02/19078.png deleted file mode 100644 index 4d7e112b6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19080.png b/front/public/images/large/gregtech/gt.metaitem.02/19080.png deleted file mode 100644 index b16506ebe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19081.png b/front/public/images/large/gregtech/gt.metaitem.02/19081.png deleted file mode 100644 index cf256f2646..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19083.png b/front/public/images/large/gregtech/gt.metaitem.02/19083.png deleted file mode 100644 index 9a78f09b9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19084.png b/front/public/images/large/gregtech/gt.metaitem.02/19084.png deleted file mode 100644 index e74ffd4edb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19085.png b/front/public/images/large/gregtech/gt.metaitem.02/19085.png deleted file mode 100644 index f341940141..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19086.png b/front/public/images/large/gregtech/gt.metaitem.02/19086.png deleted file mode 100644 index 9ec45e5202..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19089.png b/front/public/images/large/gregtech/gt.metaitem.02/19089.png deleted file mode 100644 index bd38a0316c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19090.png b/front/public/images/large/gregtech/gt.metaitem.02/19090.png deleted file mode 100644 index 211bc9a5d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19096.png b/front/public/images/large/gregtech/gt.metaitem.02/19096.png deleted file mode 100644 index dbc4f124fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19097.png b/front/public/images/large/gregtech/gt.metaitem.02/19097.png deleted file mode 100644 index 16da6e440c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19098.png b/front/public/images/large/gregtech/gt.metaitem.02/19098.png deleted file mode 100644 index 66b3b41ddb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19100.png b/front/public/images/large/gregtech/gt.metaitem.02/19100.png deleted file mode 100644 index 36d1243420..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19101.png b/front/public/images/large/gregtech/gt.metaitem.02/19101.png deleted file mode 100644 index 22faf63bc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19103.png b/front/public/images/large/gregtech/gt.metaitem.02/19103.png deleted file mode 100644 index 04ea48a69e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19111.png b/front/public/images/large/gregtech/gt.metaitem.02/19111.png deleted file mode 100644 index 020d955901..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19112.png b/front/public/images/large/gregtech/gt.metaitem.02/19112.png deleted file mode 100644 index 8a7fed7b0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19129.png b/front/public/images/large/gregtech/gt.metaitem.02/19129.png deleted file mode 100644 index 9b95b3324b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19131.png b/front/public/images/large/gregtech/gt.metaitem.02/19131.png deleted file mode 100644 index 71b1c67da6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19134.png b/front/public/images/large/gregtech/gt.metaitem.02/19134.png deleted file mode 100644 index f1a9bfab7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19139.png b/front/public/images/large/gregtech/gt.metaitem.02/19139.png deleted file mode 100644 index 742d51717e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19141.png b/front/public/images/large/gregtech/gt.metaitem.02/19141.png deleted file mode 100644 index 01186f36a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19143.png b/front/public/images/large/gregtech/gt.metaitem.02/19143.png deleted file mode 100644 index f67c65edc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19300.png b/front/public/images/large/gregtech/gt.metaitem.02/19300.png deleted file mode 100644 index 597e2a0322..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19301.png b/front/public/images/large/gregtech/gt.metaitem.02/19301.png deleted file mode 100644 index 7861cb23a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19302.png b/front/public/images/large/gregtech/gt.metaitem.02/19302.png deleted file mode 100644 index ecb1b5894b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19303.png b/front/public/images/large/gregtech/gt.metaitem.02/19303.png deleted file mode 100644 index 001b022fb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19304.png b/front/public/images/large/gregtech/gt.metaitem.02/19304.png deleted file mode 100644 index 82962f04ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19305.png b/front/public/images/large/gregtech/gt.metaitem.02/19305.png deleted file mode 100644 index 926abae00e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19306.png b/front/public/images/large/gregtech/gt.metaitem.02/19306.png deleted file mode 100644 index e017b4afb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19307.png b/front/public/images/large/gregtech/gt.metaitem.02/19307.png deleted file mode 100644 index 82962f04ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19308.png b/front/public/images/large/gregtech/gt.metaitem.02/19308.png deleted file mode 100644 index 1dc650a2d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19309.png b/front/public/images/large/gregtech/gt.metaitem.02/19309.png deleted file mode 100644 index 951c1eafc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19310.png b/front/public/images/large/gregtech/gt.metaitem.02/19310.png deleted file mode 100644 index 20868a76a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19311.png b/front/public/images/large/gregtech/gt.metaitem.02/19311.png deleted file mode 100644 index ba716e5817..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19312.png b/front/public/images/large/gregtech/gt.metaitem.02/19312.png deleted file mode 100644 index 18b6380720..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19313.png b/front/public/images/large/gregtech/gt.metaitem.02/19313.png deleted file mode 100644 index bad99f4b82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19314.png b/front/public/images/large/gregtech/gt.metaitem.02/19314.png deleted file mode 100644 index 8014f4cd03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19315.png b/front/public/images/large/gregtech/gt.metaitem.02/19315.png deleted file mode 100644 index da8c457a9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19316.png b/front/public/images/large/gregtech/gt.metaitem.02/19316.png deleted file mode 100644 index 8ae8759a89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19317.png b/front/public/images/large/gregtech/gt.metaitem.02/19317.png deleted file mode 100644 index bb90da754a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19318.png b/front/public/images/large/gregtech/gt.metaitem.02/19318.png deleted file mode 100644 index 79781a4d0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19319.png b/front/public/images/large/gregtech/gt.metaitem.02/19319.png deleted file mode 100644 index 2d18d07559..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19320.png b/front/public/images/large/gregtech/gt.metaitem.02/19320.png deleted file mode 100644 index fdeee94536..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19321.png b/front/public/images/large/gregtech/gt.metaitem.02/19321.png deleted file mode 100644 index 7d94fa20a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19323.png b/front/public/images/large/gregtech/gt.metaitem.02/19323.png deleted file mode 100644 index 70a6938fd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19324.png b/front/public/images/large/gregtech/gt.metaitem.02/19324.png deleted file mode 100644 index cf256f2646..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19325.png b/front/public/images/large/gregtech/gt.metaitem.02/19325.png deleted file mode 100644 index 78ba4078c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19326.png b/front/public/images/large/gregtech/gt.metaitem.02/19326.png deleted file mode 100644 index 477c116ed5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19327.png b/front/public/images/large/gregtech/gt.metaitem.02/19327.png deleted file mode 100644 index 3b7136ecfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19328.png b/front/public/images/large/gregtech/gt.metaitem.02/19328.png deleted file mode 100644 index 2d18d07559..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19329.png b/front/public/images/large/gregtech/gt.metaitem.02/19329.png deleted file mode 100644 index b5c45c718a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19330.png b/front/public/images/large/gregtech/gt.metaitem.02/19330.png deleted file mode 100644 index 0e86fae38b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19331.png b/front/public/images/large/gregtech/gt.metaitem.02/19331.png deleted file mode 100644 index 297a1a5e1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19333.png b/front/public/images/large/gregtech/gt.metaitem.02/19333.png deleted file mode 100644 index 5fb0f6b9e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19334.png b/front/public/images/large/gregtech/gt.metaitem.02/19334.png deleted file mode 100644 index 08392b1e07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19335.png b/front/public/images/large/gregtech/gt.metaitem.02/19335.png deleted file mode 100644 index 17d690b2e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19336.png b/front/public/images/large/gregtech/gt.metaitem.02/19336.png deleted file mode 100644 index d7bf436707..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19337.png b/front/public/images/large/gregtech/gt.metaitem.02/19337.png deleted file mode 100644 index 57efe89cbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19338.png b/front/public/images/large/gregtech/gt.metaitem.02/19338.png deleted file mode 100644 index 888f43890f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19339.png b/front/public/images/large/gregtech/gt.metaitem.02/19339.png deleted file mode 100644 index f22af7ba44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19340.png b/front/public/images/large/gregtech/gt.metaitem.02/19340.png deleted file mode 100644 index 8f3bb50400..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19341.png b/front/public/images/large/gregtech/gt.metaitem.02/19341.png deleted file mode 100644 index eecd1fa08b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19342.png b/front/public/images/large/gregtech/gt.metaitem.02/19342.png deleted file mode 100644 index ba7c2caed6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19343.png b/front/public/images/large/gregtech/gt.metaitem.02/19343.png deleted file mode 100644 index fcf6c9a64f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19344.png b/front/public/images/large/gregtech/gt.metaitem.02/19344.png deleted file mode 100644 index d2b55f2c32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19345.png b/front/public/images/large/gregtech/gt.metaitem.02/19345.png deleted file mode 100644 index 84e8d3353a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19346.png b/front/public/images/large/gregtech/gt.metaitem.02/19346.png deleted file mode 100644 index e40f5cbbfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19348.png b/front/public/images/large/gregtech/gt.metaitem.02/19348.png deleted file mode 100644 index fe56318c10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19349.png b/front/public/images/large/gregtech/gt.metaitem.02/19349.png deleted file mode 100644 index e7f33475f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19350.png b/front/public/images/large/gregtech/gt.metaitem.02/19350.png deleted file mode 100644 index 871e1ef6f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19351.png b/front/public/images/large/gregtech/gt.metaitem.02/19351.png deleted file mode 100644 index 253ac76e8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19352.png b/front/public/images/large/gregtech/gt.metaitem.02/19352.png deleted file mode 100644 index 0c40f96c90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19353.png b/front/public/images/large/gregtech/gt.metaitem.02/19353.png deleted file mode 100644 index a0f949c60e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19354.png b/front/public/images/large/gregtech/gt.metaitem.02/19354.png deleted file mode 100644 index 1bb56f0ea5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19355.png b/front/public/images/large/gregtech/gt.metaitem.02/19355.png deleted file mode 100644 index 1a64712e91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19356.png b/front/public/images/large/gregtech/gt.metaitem.02/19356.png deleted file mode 100644 index c6c6b2a61d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19357.png b/front/public/images/large/gregtech/gt.metaitem.02/19357.png deleted file mode 100644 index 0fdcb3d464..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19358.png b/front/public/images/large/gregtech/gt.metaitem.02/19358.png deleted file mode 100644 index 299efcad49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19359.png b/front/public/images/large/gregtech/gt.metaitem.02/19359.png deleted file mode 100644 index c3699ff932..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19360.png b/front/public/images/large/gregtech/gt.metaitem.02/19360.png deleted file mode 100644 index 65cbb660ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19361.png b/front/public/images/large/gregtech/gt.metaitem.02/19361.png deleted file mode 100644 index 105deb1e95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19362.png b/front/public/images/large/gregtech/gt.metaitem.02/19362.png deleted file mode 100644 index 694d34a0b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19363.png b/front/public/images/large/gregtech/gt.metaitem.02/19363.png deleted file mode 100644 index 04ea48a69e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19364.png b/front/public/images/large/gregtech/gt.metaitem.02/19364.png deleted file mode 100644 index 9c224236a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19365.png b/front/public/images/large/gregtech/gt.metaitem.02/19365.png deleted file mode 100644 index 0073360048..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19366.png b/front/public/images/large/gregtech/gt.metaitem.02/19366.png deleted file mode 100644 index 291691832e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19367.png b/front/public/images/large/gregtech/gt.metaitem.02/19367.png deleted file mode 100644 index 0f570f4e85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19368.png b/front/public/images/large/gregtech/gt.metaitem.02/19368.png deleted file mode 100644 index bef61f41b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19369.png b/front/public/images/large/gregtech/gt.metaitem.02/19369.png deleted file mode 100644 index 90de654638..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19370.png b/front/public/images/large/gregtech/gt.metaitem.02/19370.png deleted file mode 100644 index 8834d1a6bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19371.png b/front/public/images/large/gregtech/gt.metaitem.02/19371.png deleted file mode 100644 index bf231bef97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19372.png b/front/public/images/large/gregtech/gt.metaitem.02/19372.png deleted file mode 100644 index b34b693651..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19373.png b/front/public/images/large/gregtech/gt.metaitem.02/19373.png deleted file mode 100644 index eba3e9f620..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19374.png b/front/public/images/large/gregtech/gt.metaitem.02/19374.png deleted file mode 100644 index 7e0419aa64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19378.png b/front/public/images/large/gregtech/gt.metaitem.02/19378.png deleted file mode 100644 index ed86e4bb7a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19380.png b/front/public/images/large/gregtech/gt.metaitem.02/19380.png deleted file mode 100644 index 17883c55aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19381.png b/front/public/images/large/gregtech/gt.metaitem.02/19381.png deleted file mode 100644 index be557227fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19382.png b/front/public/images/large/gregtech/gt.metaitem.02/19382.png deleted file mode 100644 index b32ee20548..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19386.png b/front/public/images/large/gregtech/gt.metaitem.02/19386.png deleted file mode 100644 index 418ef4f929..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19388.png b/front/public/images/large/gregtech/gt.metaitem.02/19388.png deleted file mode 100644 index cf256f2646..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19391.png b/front/public/images/large/gregtech/gt.metaitem.02/19391.png deleted file mode 100644 index dcdfa0ab31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19394.png b/front/public/images/large/gregtech/gt.metaitem.02/19394.png deleted file mode 100644 index 2d18d07559..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19395.png b/front/public/images/large/gregtech/gt.metaitem.02/19395.png deleted file mode 100644 index cf256f2646..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19397.png b/front/public/images/large/gregtech/gt.metaitem.02/19397.png deleted file mode 100644 index 8b84fb33d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19399.png b/front/public/images/large/gregtech/gt.metaitem.02/19399.png deleted file mode 100644 index a7db1feacd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19400.png b/front/public/images/large/gregtech/gt.metaitem.02/19400.png deleted file mode 100644 index 233be139ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19401.png b/front/public/images/large/gregtech/gt.metaitem.02/19401.png deleted file mode 100644 index a9e32d992c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19402.png b/front/public/images/large/gregtech/gt.metaitem.02/19402.png deleted file mode 100644 index b45dda704d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19403.png b/front/public/images/large/gregtech/gt.metaitem.02/19403.png deleted file mode 100644 index f9f5ce31bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19404.png b/front/public/images/large/gregtech/gt.metaitem.02/19404.png deleted file mode 100644 index 4f9dc3fee7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19405.png b/front/public/images/large/gregtech/gt.metaitem.02/19405.png deleted file mode 100644 index 94808ca2b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19406.png b/front/public/images/large/gregtech/gt.metaitem.02/19406.png deleted file mode 100644 index 481cd00a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19407.png b/front/public/images/large/gregtech/gt.metaitem.02/19407.png deleted file mode 100644 index 6ba82879aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19408.png b/front/public/images/large/gregtech/gt.metaitem.02/19408.png deleted file mode 100644 index 9c8ae64052..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19485.png b/front/public/images/large/gregtech/gt.metaitem.02/19485.png deleted file mode 100644 index 852d97ef6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19488.png b/front/public/images/large/gregtech/gt.metaitem.02/19488.png deleted file mode 100644 index 22dad70b52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19489.png b/front/public/images/large/gregtech/gt.metaitem.02/19489.png deleted file mode 100644 index 1e7558e062..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19521.png b/front/public/images/large/gregtech/gt.metaitem.02/19521.png deleted file mode 100644 index 79781a4d0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19529.png b/front/public/images/large/gregtech/gt.metaitem.02/19529.png deleted file mode 100644 index 534a421a0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19576.png b/front/public/images/large/gregtech/gt.metaitem.02/19576.png deleted file mode 100644 index 4d39612e67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19582.png b/front/public/images/large/gregtech/gt.metaitem.02/19582.png deleted file mode 100644 index 58c3aa19a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19583.png b/front/public/images/large/gregtech/gt.metaitem.02/19583.png deleted file mode 100644 index 3b778f825f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19770.png b/front/public/images/large/gregtech/gt.metaitem.02/19770.png deleted file mode 100644 index 5bc4817df3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19829.png b/front/public/images/large/gregtech/gt.metaitem.02/19829.png deleted file mode 100644 index ed80799c40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19868.png b/front/public/images/large/gregtech/gt.metaitem.02/19868.png deleted file mode 100644 index 03fd691bda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19884.png b/front/public/images/large/gregtech/gt.metaitem.02/19884.png deleted file mode 100644 index 78ba4078c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19912.png b/front/public/images/large/gregtech/gt.metaitem.02/19912.png deleted file mode 100644 index db19fa8516..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19913.png b/front/public/images/large/gregtech/gt.metaitem.02/19913.png deleted file mode 100644 index fe56318c10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19951.png b/front/public/images/large/gregtech/gt.metaitem.02/19951.png deleted file mode 100644 index 4b4933f2e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19952.png b/front/public/images/large/gregtech/gt.metaitem.02/19952.png deleted file mode 100644 index f2387fb298..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19956.png b/front/public/images/large/gregtech/gt.metaitem.02/19956.png deleted file mode 100644 index 1cdcc3d2c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19966.png b/front/public/images/large/gregtech/gt.metaitem.02/19966.png deleted file mode 100644 index c6c957ee78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19970.png b/front/public/images/large/gregtech/gt.metaitem.02/19970.png deleted file mode 100644 index 61f7f65818..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19974.png b/front/public/images/large/gregtech/gt.metaitem.02/19974.png deleted file mode 100644 index 7bfaf08c8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19975.png b/front/public/images/large/gregtech/gt.metaitem.02/19975.png deleted file mode 100644 index 19902d7015..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19976.png b/front/public/images/large/gregtech/gt.metaitem.02/19976.png deleted file mode 100644 index 35f9066e28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19977.png b/front/public/images/large/gregtech/gt.metaitem.02/19977.png deleted file mode 100644 index 640306addb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19978.png b/front/public/images/large/gregtech/gt.metaitem.02/19978.png deleted file mode 100644 index 4ac0c2095d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19982.png b/front/public/images/large/gregtech/gt.metaitem.02/19982.png deleted file mode 100644 index a891dda2c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19984.png b/front/public/images/large/gregtech/gt.metaitem.02/19984.png deleted file mode 100644 index 2d18d07559..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19985.png b/front/public/images/large/gregtech/gt.metaitem.02/19985.png deleted file mode 100644 index 39346b0e81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19986.png b/front/public/images/large/gregtech/gt.metaitem.02/19986.png deleted file mode 100644 index 3a99903262..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19987.png b/front/public/images/large/gregtech/gt.metaitem.02/19987.png deleted file mode 100644 index b4a5582cf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19988.png b/front/public/images/large/gregtech/gt.metaitem.02/19988.png deleted file mode 100644 index d89edb51e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19989.png b/front/public/images/large/gregtech/gt.metaitem.02/19989.png deleted file mode 100644 index 7d189ba46c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19990.png b/front/public/images/large/gregtech/gt.metaitem.02/19990.png deleted file mode 100644 index 61c00972bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19991.png b/front/public/images/large/gregtech/gt.metaitem.02/19991.png deleted file mode 100644 index e605e7f2a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/19992.png b/front/public/images/large/gregtech/gt.metaitem.02/19992.png deleted file mode 100644 index 6e7db0bb85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/19992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20010.png b/front/public/images/large/gregtech/gt.metaitem.02/20010.png deleted file mode 100644 index 00d71dc9d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20019.png b/front/public/images/large/gregtech/gt.metaitem.02/20019.png deleted file mode 100644 index 2b179dbc29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20028.png b/front/public/images/large/gregtech/gt.metaitem.02/20028.png deleted file mode 100644 index 7754d7db42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20030.png b/front/public/images/large/gregtech/gt.metaitem.02/20030.png deleted file mode 100644 index a21f01c7ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20032.png b/front/public/images/large/gregtech/gt.metaitem.02/20032.png deleted file mode 100644 index 528a151a4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20033.png b/front/public/images/large/gregtech/gt.metaitem.02/20033.png deleted file mode 100644 index 1793005883..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20034.png b/front/public/images/large/gregtech/gt.metaitem.02/20034.png deleted file mode 100644 index de148d4582..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20035.png b/front/public/images/large/gregtech/gt.metaitem.02/20035.png deleted file mode 100644 index 0722408f90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20052.png b/front/public/images/large/gregtech/gt.metaitem.02/20052.png deleted file mode 100644 index 2154075bdd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20054.png b/front/public/images/large/gregtech/gt.metaitem.02/20054.png deleted file mode 100644 index a309e2a818..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20057.png b/front/public/images/large/gregtech/gt.metaitem.02/20057.png deleted file mode 100644 index f1adfc26a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20067.png b/front/public/images/large/gregtech/gt.metaitem.02/20067.png deleted file mode 100644 index b850be0785..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20081.png b/front/public/images/large/gregtech/gt.metaitem.02/20081.png deleted file mode 100644 index bf4690df21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20083.png b/front/public/images/large/gregtech/gt.metaitem.02/20083.png deleted file mode 100644 index c2c4d4f39c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20084.png b/front/public/images/large/gregtech/gt.metaitem.02/20084.png deleted file mode 100644 index 069a8bdd6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20085.png b/front/public/images/large/gregtech/gt.metaitem.02/20085.png deleted file mode 100644 index bad5550592..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20086.png b/front/public/images/large/gregtech/gt.metaitem.02/20086.png deleted file mode 100644 index f55bafaa2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20089.png b/front/public/images/large/gregtech/gt.metaitem.02/20089.png deleted file mode 100644 index 80e11d5d5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20090.png b/front/public/images/large/gregtech/gt.metaitem.02/20090.png deleted file mode 100644 index 3b98134379..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20111.png b/front/public/images/large/gregtech/gt.metaitem.02/20111.png deleted file mode 100644 index d968ab2f4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20112.png b/front/public/images/large/gregtech/gt.metaitem.02/20112.png deleted file mode 100644 index 77b04d1875..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20129.png b/front/public/images/large/gregtech/gt.metaitem.02/20129.png deleted file mode 100644 index dec9c72808..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20139.png b/front/public/images/large/gregtech/gt.metaitem.02/20139.png deleted file mode 100644 index b9f605d733..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20141.png b/front/public/images/large/gregtech/gt.metaitem.02/20141.png deleted file mode 100644 index ff597f986f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20143.png b/front/public/images/large/gregtech/gt.metaitem.02/20143.png deleted file mode 100644 index 2fc2e234c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20201.png b/front/public/images/large/gregtech/gt.metaitem.02/20201.png deleted file mode 100644 index b6aba0f7e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20202.png b/front/public/images/large/gregtech/gt.metaitem.02/20202.png deleted file mode 100644 index 31db07b039..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20203.png b/front/public/images/large/gregtech/gt.metaitem.02/20203.png deleted file mode 100644 index 3c0a074ce1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20204.png b/front/public/images/large/gregtech/gt.metaitem.02/20204.png deleted file mode 100644 index a90f29c4d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20205.png b/front/public/images/large/gregtech/gt.metaitem.02/20205.png deleted file mode 100644 index 08395a486a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20206.png b/front/public/images/large/gregtech/gt.metaitem.02/20206.png deleted file mode 100644 index 7c4869bdee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20207.png b/front/public/images/large/gregtech/gt.metaitem.02/20207.png deleted file mode 100644 index 12d26e627e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20299.png b/front/public/images/large/gregtech/gt.metaitem.02/20299.png deleted file mode 100644 index 37341c6d48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20300.png b/front/public/images/large/gregtech/gt.metaitem.02/20300.png deleted file mode 100644 index d9ceeb3f9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20301.png b/front/public/images/large/gregtech/gt.metaitem.02/20301.png deleted file mode 100644 index c02ce59a85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20302.png b/front/public/images/large/gregtech/gt.metaitem.02/20302.png deleted file mode 100644 index edca404e3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20303.png b/front/public/images/large/gregtech/gt.metaitem.02/20303.png deleted file mode 100644 index 7537f170f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20304.png b/front/public/images/large/gregtech/gt.metaitem.02/20304.png deleted file mode 100644 index 1f4a2038eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20305.png b/front/public/images/large/gregtech/gt.metaitem.02/20305.png deleted file mode 100644 index 44183e707a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20306.png b/front/public/images/large/gregtech/gt.metaitem.02/20306.png deleted file mode 100644 index 0f6167a545..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20313.png b/front/public/images/large/gregtech/gt.metaitem.02/20313.png deleted file mode 100644 index e78b6dbc87..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20316.png b/front/public/images/large/gregtech/gt.metaitem.02/20316.png deleted file mode 100644 index 9636a3f8fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20317.png b/front/public/images/large/gregtech/gt.metaitem.02/20317.png deleted file mode 100644 index abdd3336b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20318.png b/front/public/images/large/gregtech/gt.metaitem.02/20318.png deleted file mode 100644 index 2b32e0e7e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20319.png b/front/public/images/large/gregtech/gt.metaitem.02/20319.png deleted file mode 100644 index 01bf2a8b83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20320.png b/front/public/images/large/gregtech/gt.metaitem.02/20320.png deleted file mode 100644 index e4f070715d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20321.png b/front/public/images/large/gregtech/gt.metaitem.02/20321.png deleted file mode 100644 index 170fe15346..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20323.png b/front/public/images/large/gregtech/gt.metaitem.02/20323.png deleted file mode 100644 index 1c16fbc6f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20324.png b/front/public/images/large/gregtech/gt.metaitem.02/20324.png deleted file mode 100644 index bf4690df21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20325.png b/front/public/images/large/gregtech/gt.metaitem.02/20325.png deleted file mode 100644 index 23d210ef0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20330.png b/front/public/images/large/gregtech/gt.metaitem.02/20330.png deleted file mode 100644 index 6609f9e43e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20334.png b/front/public/images/large/gregtech/gt.metaitem.02/20334.png deleted file mode 100644 index b850be0785..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20335.png b/front/public/images/large/gregtech/gt.metaitem.02/20335.png deleted file mode 100644 index e88236e29b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20338.png b/front/public/images/large/gregtech/gt.metaitem.02/20338.png deleted file mode 100644 index 8b736e1527..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20339.png b/front/public/images/large/gregtech/gt.metaitem.02/20339.png deleted file mode 100644 index d3728e7880..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20343.png b/front/public/images/large/gregtech/gt.metaitem.02/20343.png deleted file mode 100644 index b59e64fb5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20344.png b/front/public/images/large/gregtech/gt.metaitem.02/20344.png deleted file mode 100644 index 27315dca4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20345.png b/front/public/images/large/gregtech/gt.metaitem.02/20345.png deleted file mode 100644 index 6cdc9a1899..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20346.png b/front/public/images/large/gregtech/gt.metaitem.02/20346.png deleted file mode 100644 index 486c6b5c23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20348.png b/front/public/images/large/gregtech/gt.metaitem.02/20348.png deleted file mode 100644 index bdc87de7fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20349.png b/front/public/images/large/gregtech/gt.metaitem.02/20349.png deleted file mode 100644 index d549afca85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20350.png b/front/public/images/large/gregtech/gt.metaitem.02/20350.png deleted file mode 100644 index 64ec011515..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20351.png b/front/public/images/large/gregtech/gt.metaitem.02/20351.png deleted file mode 100644 index 8c359e04ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20352.png b/front/public/images/large/gregtech/gt.metaitem.02/20352.png deleted file mode 100644 index 0be0921db8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20353.png b/front/public/images/large/gregtech/gt.metaitem.02/20353.png deleted file mode 100644 index 3ef521d9d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20354.png b/front/public/images/large/gregtech/gt.metaitem.02/20354.png deleted file mode 100644 index cea7ec5ef8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20355.png b/front/public/images/large/gregtech/gt.metaitem.02/20355.png deleted file mode 100644 index b730f1a3f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20356.png b/front/public/images/large/gregtech/gt.metaitem.02/20356.png deleted file mode 100644 index c97fb80b30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20357.png b/front/public/images/large/gregtech/gt.metaitem.02/20357.png deleted file mode 100644 index 283b4f454f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20362.png b/front/public/images/large/gregtech/gt.metaitem.02/20362.png deleted file mode 100644 index 0837e724ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20363.png b/front/public/images/large/gregtech/gt.metaitem.02/20363.png deleted file mode 100644 index 528a151a4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20364.png b/front/public/images/large/gregtech/gt.metaitem.02/20364.png deleted file mode 100644 index 20cc3be557..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20365.png b/front/public/images/large/gregtech/gt.metaitem.02/20365.png deleted file mode 100644 index 9af348013f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20366.png b/front/public/images/large/gregtech/gt.metaitem.02/20366.png deleted file mode 100644 index 2ab5f11164..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20367.png b/front/public/images/large/gregtech/gt.metaitem.02/20367.png deleted file mode 100644 index e93d34ae38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20368.png b/front/public/images/large/gregtech/gt.metaitem.02/20368.png deleted file mode 100644 index be3fc6c6b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20369.png b/front/public/images/large/gregtech/gt.metaitem.02/20369.png deleted file mode 100644 index de7be29f5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20370.png b/front/public/images/large/gregtech/gt.metaitem.02/20370.png deleted file mode 100644 index f685fe0797..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20371.png b/front/public/images/large/gregtech/gt.metaitem.02/20371.png deleted file mode 100644 index 79ab235021..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20372.png b/front/public/images/large/gregtech/gt.metaitem.02/20372.png deleted file mode 100644 index 55088e98ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20373.png b/front/public/images/large/gregtech/gt.metaitem.02/20373.png deleted file mode 100644 index c161048bd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20374.png b/front/public/images/large/gregtech/gt.metaitem.02/20374.png deleted file mode 100644 index 3a98fc5b08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20378.png b/front/public/images/large/gregtech/gt.metaitem.02/20378.png deleted file mode 100644 index 70f64f81b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20379.png b/front/public/images/large/gregtech/gt.metaitem.02/20379.png deleted file mode 100644 index 162ace3387..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20380.png b/front/public/images/large/gregtech/gt.metaitem.02/20380.png deleted file mode 100644 index 077e3c8245..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20381.png b/front/public/images/large/gregtech/gt.metaitem.02/20381.png deleted file mode 100644 index fe52b0fbf5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20382.png b/front/public/images/large/gregtech/gt.metaitem.02/20382.png deleted file mode 100644 index b7b6b5cc8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20383.png b/front/public/images/large/gregtech/gt.metaitem.02/20383.png deleted file mode 100644 index 3c847cf112..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20384.png b/front/public/images/large/gregtech/gt.metaitem.02/20384.png deleted file mode 100644 index dc01252d7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20385.png b/front/public/images/large/gregtech/gt.metaitem.02/20385.png deleted file mode 100644 index 936cdc67ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20386.png b/front/public/images/large/gregtech/gt.metaitem.02/20386.png deleted file mode 100644 index 4554a1ee77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20387.png b/front/public/images/large/gregtech/gt.metaitem.02/20387.png deleted file mode 100644 index 134c5b1581..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20388.png b/front/public/images/large/gregtech/gt.metaitem.02/20388.png deleted file mode 100644 index bf4690df21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20389.png b/front/public/images/large/gregtech/gt.metaitem.02/20389.png deleted file mode 100644 index 4ed8d8b105..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20390.png b/front/public/images/large/gregtech/gt.metaitem.02/20390.png deleted file mode 100644 index 961d6794fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20391.png b/front/public/images/large/gregtech/gt.metaitem.02/20391.png deleted file mode 100644 index c593877b42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20392.png b/front/public/images/large/gregtech/gt.metaitem.02/20392.png deleted file mode 100644 index f4bf4e6bdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20393.png b/front/public/images/large/gregtech/gt.metaitem.02/20393.png deleted file mode 100644 index 2af043a4cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20394.png b/front/public/images/large/gregtech/gt.metaitem.02/20394.png deleted file mode 100644 index 01bf2a8b83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20397.png b/front/public/images/large/gregtech/gt.metaitem.02/20397.png deleted file mode 100644 index 2839124b43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20398.png b/front/public/images/large/gregtech/gt.metaitem.02/20398.png deleted file mode 100644 index 25f2f993a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20399.png b/front/public/images/large/gregtech/gt.metaitem.02/20399.png deleted file mode 100644 index 318b52082e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20400.png b/front/public/images/large/gregtech/gt.metaitem.02/20400.png deleted file mode 100644 index 5ff84a71fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20401.png b/front/public/images/large/gregtech/gt.metaitem.02/20401.png deleted file mode 100644 index e3981690dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20402.png b/front/public/images/large/gregtech/gt.metaitem.02/20402.png deleted file mode 100644 index f02bee3600..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20403.png b/front/public/images/large/gregtech/gt.metaitem.02/20403.png deleted file mode 100644 index 1945938e34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20404.png b/front/public/images/large/gregtech/gt.metaitem.02/20404.png deleted file mode 100644 index 8e4839d297..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20405.png b/front/public/images/large/gregtech/gt.metaitem.02/20405.png deleted file mode 100644 index 76083f32a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20406.png b/front/public/images/large/gregtech/gt.metaitem.02/20406.png deleted file mode 100644 index 67a3d7c57b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20407.png b/front/public/images/large/gregtech/gt.metaitem.02/20407.png deleted file mode 100644 index 5737a6a448..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20408.png b/front/public/images/large/gregtech/gt.metaitem.02/20408.png deleted file mode 100644 index 2f26ab2fad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20470.png b/front/public/images/large/gregtech/gt.metaitem.02/20470.png deleted file mode 100644 index 57cb99d1bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20471.png b/front/public/images/large/gregtech/gt.metaitem.02/20471.png deleted file mode 100644 index f1adfc26a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20472.png b/front/public/images/large/gregtech/gt.metaitem.02/20472.png deleted file mode 100644 index bf4690df21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20473.png b/front/public/images/large/gregtech/gt.metaitem.02/20473.png deleted file mode 100644 index b850be0785..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20485.png b/front/public/images/large/gregtech/gt.metaitem.02/20485.png deleted file mode 100644 index 44566205a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20488.png b/front/public/images/large/gregtech/gt.metaitem.02/20488.png deleted file mode 100644 index 461f21b8ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20489.png b/front/public/images/large/gregtech/gt.metaitem.02/20489.png deleted file mode 100644 index 71b4913493..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20500.png b/front/public/images/large/gregtech/gt.metaitem.02/20500.png deleted file mode 100644 index e22d13f52e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20521.png b/front/public/images/large/gregtech/gt.metaitem.02/20521.png deleted file mode 100644 index 2b32e0e7e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20529.png b/front/public/images/large/gregtech/gt.metaitem.02/20529.png deleted file mode 100644 index 97126cd1cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20540.png b/front/public/images/large/gregtech/gt.metaitem.02/20540.png deleted file mode 100644 index 2b32e0e7e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20541.png b/front/public/images/large/gregtech/gt.metaitem.02/20541.png deleted file mode 100644 index 0fb29d90f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20542.png b/front/public/images/large/gregtech/gt.metaitem.02/20542.png deleted file mode 100644 index ed58cd3bdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20543.png b/front/public/images/large/gregtech/gt.metaitem.02/20543.png deleted file mode 100644 index 4f391e07c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20544.png b/front/public/images/large/gregtech/gt.metaitem.02/20544.png deleted file mode 100644 index b5796e014b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20545.png b/front/public/images/large/gregtech/gt.metaitem.02/20545.png deleted file mode 100644 index 0be1883ae5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20576.png b/front/public/images/large/gregtech/gt.metaitem.02/20576.png deleted file mode 100644 index e91f551b93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20581.png b/front/public/images/large/gregtech/gt.metaitem.02/20581.png deleted file mode 100644 index 733caee3f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20583.png b/front/public/images/large/gregtech/gt.metaitem.02/20583.png deleted file mode 100644 index d7e2560ecc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20585.png b/front/public/images/large/gregtech/gt.metaitem.02/20585.png deleted file mode 100644 index d5337e3142..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20586.png b/front/public/images/large/gregtech/gt.metaitem.02/20586.png deleted file mode 100644 index 38b3e5f26d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20588.png b/front/public/images/large/gregtech/gt.metaitem.02/20588.png deleted file mode 100644 index 29797e5163..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20599.png b/front/public/images/large/gregtech/gt.metaitem.02/20599.png deleted file mode 100644 index cc7cab5ea7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20610.png b/front/public/images/large/gregtech/gt.metaitem.02/20610.png deleted file mode 100644 index ba75451ba5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20613.png b/front/public/images/large/gregtech/gt.metaitem.02/20613.png deleted file mode 100644 index dbedabffda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20631.png b/front/public/images/large/gregtech/gt.metaitem.02/20631.png deleted file mode 100644 index 18911b8794..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20635.png b/front/public/images/large/gregtech/gt.metaitem.02/20635.png deleted file mode 100644 index 9e6b3f9fc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20636.png b/front/public/images/large/gregtech/gt.metaitem.02/20636.png deleted file mode 100644 index 44a510780a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20649.png b/front/public/images/large/gregtech/gt.metaitem.02/20649.png deleted file mode 100644 index d4c43bcd0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20765.png b/front/public/images/large/gregtech/gt.metaitem.02/20765.png deleted file mode 100644 index 9f90af6f58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20770.png b/front/public/images/large/gregtech/gt.metaitem.02/20770.png deleted file mode 100644 index 6a98caef0d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20809.png b/front/public/images/large/gregtech/gt.metaitem.02/20809.png deleted file mode 100644 index b79713430d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20844.png b/front/public/images/large/gregtech/gt.metaitem.02/20844.png deleted file mode 100644 index efe7af12c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20844.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20845.png b/front/public/images/large/gregtech/gt.metaitem.02/20845.png deleted file mode 100644 index 528a151a4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20845.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20849.png b/front/public/images/large/gregtech/gt.metaitem.02/20849.png deleted file mode 100644 index b7055d8f13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20850.png b/front/public/images/large/gregtech/gt.metaitem.02/20850.png deleted file mode 100644 index b7772f7888..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20854.png b/front/public/images/large/gregtech/gt.metaitem.02/20854.png deleted file mode 100644 index 44183e707a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20854.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20868.png b/front/public/images/large/gregtech/gt.metaitem.02/20868.png deleted file mode 100644 index 1f35f6aeed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20874.png b/front/public/images/large/gregtech/gt.metaitem.02/20874.png deleted file mode 100644 index 528a151a4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20880.png b/front/public/images/large/gregtech/gt.metaitem.02/20880.png deleted file mode 100644 index dcd835b8e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20884.png b/front/public/images/large/gregtech/gt.metaitem.02/20884.png deleted file mode 100644 index 23d210ef0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20889.png b/front/public/images/large/gregtech/gt.metaitem.02/20889.png deleted file mode 100644 index 7e73b820f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20912.png b/front/public/images/large/gregtech/gt.metaitem.02/20912.png deleted file mode 100644 index a16b88d25b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20913.png b/front/public/images/large/gregtech/gt.metaitem.02/20913.png deleted file mode 100644 index bdc87de7fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20952.png b/front/public/images/large/gregtech/gt.metaitem.02/20952.png deleted file mode 100644 index 55edd65067..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20966.png b/front/public/images/large/gregtech/gt.metaitem.02/20966.png deleted file mode 100644 index 8eb5bab3ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20970.png b/front/public/images/large/gregtech/gt.metaitem.02/20970.png deleted file mode 100644 index effffb15a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20975.png b/front/public/images/large/gregtech/gt.metaitem.02/20975.png deleted file mode 100644 index e39107622d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20976.png b/front/public/images/large/gregtech/gt.metaitem.02/20976.png deleted file mode 100644 index c1801ebc3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20977.png b/front/public/images/large/gregtech/gt.metaitem.02/20977.png deleted file mode 100644 index 234242eb49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20978.png b/front/public/images/large/gregtech/gt.metaitem.02/20978.png deleted file mode 100644 index 7579af2353..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20982.png b/front/public/images/large/gregtech/gt.metaitem.02/20982.png deleted file mode 100644 index 0df2e2d564..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/20984.png b/front/public/images/large/gregtech/gt.metaitem.02/20984.png deleted file mode 100644 index 01bf2a8b83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/20984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21010.png b/front/public/images/large/gregtech/gt.metaitem.02/21010.png deleted file mode 100644 index 2343f4fa24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21019.png b/front/public/images/large/gregtech/gt.metaitem.02/21019.png deleted file mode 100644 index 35a7cf8f43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21028.png b/front/public/images/large/gregtech/gt.metaitem.02/21028.png deleted file mode 100644 index 28f145676f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21030.png b/front/public/images/large/gregtech/gt.metaitem.02/21030.png deleted file mode 100644 index b50dc8bb37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21032.png b/front/public/images/large/gregtech/gt.metaitem.02/21032.png deleted file mode 100644 index a4f1c01095..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21033.png b/front/public/images/large/gregtech/gt.metaitem.02/21033.png deleted file mode 100644 index e62bc250f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21034.png b/front/public/images/large/gregtech/gt.metaitem.02/21034.png deleted file mode 100644 index 9cc2f49e38..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21035.png b/front/public/images/large/gregtech/gt.metaitem.02/21035.png deleted file mode 100644 index d4a15f48b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21052.png b/front/public/images/large/gregtech/gt.metaitem.02/21052.png deleted file mode 100644 index 72ac530a74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21054.png b/front/public/images/large/gregtech/gt.metaitem.02/21054.png deleted file mode 100644 index bc2e0342c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21057.png b/front/public/images/large/gregtech/gt.metaitem.02/21057.png deleted file mode 100644 index ad209b3d67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21067.png b/front/public/images/large/gregtech/gt.metaitem.02/21067.png deleted file mode 100644 index 3d3e7f4a30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21081.png b/front/public/images/large/gregtech/gt.metaitem.02/21081.png deleted file mode 100644 index c054fed19a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21083.png b/front/public/images/large/gregtech/gt.metaitem.02/21083.png deleted file mode 100644 index dc87a5db0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21084.png b/front/public/images/large/gregtech/gt.metaitem.02/21084.png deleted file mode 100644 index e5de5c7004..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21085.png b/front/public/images/large/gregtech/gt.metaitem.02/21085.png deleted file mode 100644 index fee76e5b88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21086.png b/front/public/images/large/gregtech/gt.metaitem.02/21086.png deleted file mode 100644 index 4de91730fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21089.png b/front/public/images/large/gregtech/gt.metaitem.02/21089.png deleted file mode 100644 index ac074b49de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21090.png b/front/public/images/large/gregtech/gt.metaitem.02/21090.png deleted file mode 100644 index a6a9b3b4d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21111.png b/front/public/images/large/gregtech/gt.metaitem.02/21111.png deleted file mode 100644 index 3d4ab59c5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21112.png b/front/public/images/large/gregtech/gt.metaitem.02/21112.png deleted file mode 100644 index f65fe3215f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21129.png b/front/public/images/large/gregtech/gt.metaitem.02/21129.png deleted file mode 100644 index 844ccb34f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21139.png b/front/public/images/large/gregtech/gt.metaitem.02/21139.png deleted file mode 100644 index fbe0c8c73e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21141.png b/front/public/images/large/gregtech/gt.metaitem.02/21141.png deleted file mode 100644 index 6920417d13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21143.png b/front/public/images/large/gregtech/gt.metaitem.02/21143.png deleted file mode 100644 index ce1ee24fce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21201.png b/front/public/images/large/gregtech/gt.metaitem.02/21201.png deleted file mode 100644 index 7d7fd5940a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21202.png b/front/public/images/large/gregtech/gt.metaitem.02/21202.png deleted file mode 100644 index 357db944af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21203.png b/front/public/images/large/gregtech/gt.metaitem.02/21203.png deleted file mode 100644 index a462fca9fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21205.png b/front/public/images/large/gregtech/gt.metaitem.02/21205.png deleted file mode 100644 index bf09434c01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21206.png b/front/public/images/large/gregtech/gt.metaitem.02/21206.png deleted file mode 100644 index 5f2ba32d97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21207.png b/front/public/images/large/gregtech/gt.metaitem.02/21207.png deleted file mode 100644 index 786cd1f2ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21300.png b/front/public/images/large/gregtech/gt.metaitem.02/21300.png deleted file mode 100644 index bb9dd5299e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21301.png b/front/public/images/large/gregtech/gt.metaitem.02/21301.png deleted file mode 100644 index 2128c9fc94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21302.png b/front/public/images/large/gregtech/gt.metaitem.02/21302.png deleted file mode 100644 index 492d8466f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21303.png b/front/public/images/large/gregtech/gt.metaitem.02/21303.png deleted file mode 100644 index d2a29485e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21304.png b/front/public/images/large/gregtech/gt.metaitem.02/21304.png deleted file mode 100644 index b0629ef493..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21305.png b/front/public/images/large/gregtech/gt.metaitem.02/21305.png deleted file mode 100644 index 72ac530a74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21306.png b/front/public/images/large/gregtech/gt.metaitem.02/21306.png deleted file mode 100644 index 60e9ca02cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21313.png b/front/public/images/large/gregtech/gt.metaitem.02/21313.png deleted file mode 100644 index 4f6c6736d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21316.png b/front/public/images/large/gregtech/gt.metaitem.02/21316.png deleted file mode 100644 index fd564dc0ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21317.png b/front/public/images/large/gregtech/gt.metaitem.02/21317.png deleted file mode 100644 index 8bb29200db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21318.png b/front/public/images/large/gregtech/gt.metaitem.02/21318.png deleted file mode 100644 index 36c45cc7bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21319.png b/front/public/images/large/gregtech/gt.metaitem.02/21319.png deleted file mode 100644 index 8d4a6a7594..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21320.png b/front/public/images/large/gregtech/gt.metaitem.02/21320.png deleted file mode 100644 index 735a240962..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21321.png b/front/public/images/large/gregtech/gt.metaitem.02/21321.png deleted file mode 100644 index a00ebd166e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21323.png b/front/public/images/large/gregtech/gt.metaitem.02/21323.png deleted file mode 100644 index 76cdd9b590..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21324.png b/front/public/images/large/gregtech/gt.metaitem.02/21324.png deleted file mode 100644 index c054fed19a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21325.png b/front/public/images/large/gregtech/gt.metaitem.02/21325.png deleted file mode 100644 index 1a16442eb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21330.png b/front/public/images/large/gregtech/gt.metaitem.02/21330.png deleted file mode 100644 index 1b47f94cca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21334.png b/front/public/images/large/gregtech/gt.metaitem.02/21334.png deleted file mode 100644 index 3d3e7f4a30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21335.png b/front/public/images/large/gregtech/gt.metaitem.02/21335.png deleted file mode 100644 index 509f1d1f5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21338.png b/front/public/images/large/gregtech/gt.metaitem.02/21338.png deleted file mode 100644 index 8e8a343819..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21339.png b/front/public/images/large/gregtech/gt.metaitem.02/21339.png deleted file mode 100644 index acf7573cd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21343.png b/front/public/images/large/gregtech/gt.metaitem.02/21343.png deleted file mode 100644 index 909e23696e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21344.png b/front/public/images/large/gregtech/gt.metaitem.02/21344.png deleted file mode 100644 index f889ecfc90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21345.png b/front/public/images/large/gregtech/gt.metaitem.02/21345.png deleted file mode 100644 index 7dd1c922e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21346.png b/front/public/images/large/gregtech/gt.metaitem.02/21346.png deleted file mode 100644 index f44ea3ffe6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21348.png b/front/public/images/large/gregtech/gt.metaitem.02/21348.png deleted file mode 100644 index baebb2ce91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21349.png b/front/public/images/large/gregtech/gt.metaitem.02/21349.png deleted file mode 100644 index 1c3135b613..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21350.png b/front/public/images/large/gregtech/gt.metaitem.02/21350.png deleted file mode 100644 index 763b692c9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21351.png b/front/public/images/large/gregtech/gt.metaitem.02/21351.png deleted file mode 100644 index fad677c545..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21352.png b/front/public/images/large/gregtech/gt.metaitem.02/21352.png deleted file mode 100644 index 61b8743f37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21353.png b/front/public/images/large/gregtech/gt.metaitem.02/21353.png deleted file mode 100644 index c4b3ff20a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21354.png b/front/public/images/large/gregtech/gt.metaitem.02/21354.png deleted file mode 100644 index 283593fe54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21355.png b/front/public/images/large/gregtech/gt.metaitem.02/21355.png deleted file mode 100644 index e7ddea5267..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21356.png b/front/public/images/large/gregtech/gt.metaitem.02/21356.png deleted file mode 100644 index cdc11bc548..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21357.png b/front/public/images/large/gregtech/gt.metaitem.02/21357.png deleted file mode 100644 index 670b3fa3c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21362.png b/front/public/images/large/gregtech/gt.metaitem.02/21362.png deleted file mode 100644 index 4d691e9336..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21363.png b/front/public/images/large/gregtech/gt.metaitem.02/21363.png deleted file mode 100644 index a4f1c01095..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21364.png b/front/public/images/large/gregtech/gt.metaitem.02/21364.png deleted file mode 100644 index 6556a6fb3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21365.png b/front/public/images/large/gregtech/gt.metaitem.02/21365.png deleted file mode 100644 index 03e85a299a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21366.png b/front/public/images/large/gregtech/gt.metaitem.02/21366.png deleted file mode 100644 index f161e48dbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21367.png b/front/public/images/large/gregtech/gt.metaitem.02/21367.png deleted file mode 100644 index 9994330a31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21368.png b/front/public/images/large/gregtech/gt.metaitem.02/21368.png deleted file mode 100644 index e3288fdac9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21369.png b/front/public/images/large/gregtech/gt.metaitem.02/21369.png deleted file mode 100644 index 5aaab35691..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21370.png b/front/public/images/large/gregtech/gt.metaitem.02/21370.png deleted file mode 100644 index 06db572262..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21371.png b/front/public/images/large/gregtech/gt.metaitem.02/21371.png deleted file mode 100644 index a5bfd9ea1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21372.png b/front/public/images/large/gregtech/gt.metaitem.02/21372.png deleted file mode 100644 index fa6ac588e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21373.png b/front/public/images/large/gregtech/gt.metaitem.02/21373.png deleted file mode 100644 index c32c40bf51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21374.png b/front/public/images/large/gregtech/gt.metaitem.02/21374.png deleted file mode 100644 index 394369ddff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21378.png b/front/public/images/large/gregtech/gt.metaitem.02/21378.png deleted file mode 100644 index 214069dc1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21379.png b/front/public/images/large/gregtech/gt.metaitem.02/21379.png deleted file mode 100644 index 82fb386d82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21380.png b/front/public/images/large/gregtech/gt.metaitem.02/21380.png deleted file mode 100644 index 4d8cc8c71f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21381.png b/front/public/images/large/gregtech/gt.metaitem.02/21381.png deleted file mode 100644 index 5c8dbe7fae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21382.png b/front/public/images/large/gregtech/gt.metaitem.02/21382.png deleted file mode 100644 index e39074c20e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21383.png b/front/public/images/large/gregtech/gt.metaitem.02/21383.png deleted file mode 100644 index eb7b17f13d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21384.png b/front/public/images/large/gregtech/gt.metaitem.02/21384.png deleted file mode 100644 index 6d2053fc01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21385.png b/front/public/images/large/gregtech/gt.metaitem.02/21385.png deleted file mode 100644 index f524cb7aa5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21386.png b/front/public/images/large/gregtech/gt.metaitem.02/21386.png deleted file mode 100644 index 5cdaac9a21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21387.png b/front/public/images/large/gregtech/gt.metaitem.02/21387.png deleted file mode 100644 index da208290e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21388.png b/front/public/images/large/gregtech/gt.metaitem.02/21388.png deleted file mode 100644 index c054fed19a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21389.png b/front/public/images/large/gregtech/gt.metaitem.02/21389.png deleted file mode 100644 index f8f2a66d6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21390.png b/front/public/images/large/gregtech/gt.metaitem.02/21390.png deleted file mode 100644 index b3031faa1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21391.png b/front/public/images/large/gregtech/gt.metaitem.02/21391.png deleted file mode 100644 index 8c23d9394f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21392.png b/front/public/images/large/gregtech/gt.metaitem.02/21392.png deleted file mode 100644 index da30698aaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21393.png b/front/public/images/large/gregtech/gt.metaitem.02/21393.png deleted file mode 100644 index 1fb5864526..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21394.png b/front/public/images/large/gregtech/gt.metaitem.02/21394.png deleted file mode 100644 index 8d4a6a7594..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21397.png b/front/public/images/large/gregtech/gt.metaitem.02/21397.png deleted file mode 100644 index b92571d322..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21398.png b/front/public/images/large/gregtech/gt.metaitem.02/21398.png deleted file mode 100644 index ae2df11792..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21399.png b/front/public/images/large/gregtech/gt.metaitem.02/21399.png deleted file mode 100644 index c30b7c2436..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21400.png b/front/public/images/large/gregtech/gt.metaitem.02/21400.png deleted file mode 100644 index a78b11bef9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21401.png b/front/public/images/large/gregtech/gt.metaitem.02/21401.png deleted file mode 100644 index 7b65bf295d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21402.png b/front/public/images/large/gregtech/gt.metaitem.02/21402.png deleted file mode 100644 index 4130e90f33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21403.png b/front/public/images/large/gregtech/gt.metaitem.02/21403.png deleted file mode 100644 index aa7472d05e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21404.png b/front/public/images/large/gregtech/gt.metaitem.02/21404.png deleted file mode 100644 index e8fdcd95b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21405.png b/front/public/images/large/gregtech/gt.metaitem.02/21405.png deleted file mode 100644 index 308c781060..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21406.png b/front/public/images/large/gregtech/gt.metaitem.02/21406.png deleted file mode 100644 index 7ce566ded1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21407.png b/front/public/images/large/gregtech/gt.metaitem.02/21407.png deleted file mode 100644 index 7a2ae019db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21408.png b/front/public/images/large/gregtech/gt.metaitem.02/21408.png deleted file mode 100644 index de87b81222..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21470.png b/front/public/images/large/gregtech/gt.metaitem.02/21470.png deleted file mode 100644 index 61048218b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21472.png b/front/public/images/large/gregtech/gt.metaitem.02/21472.png deleted file mode 100644 index c054fed19a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21473.png b/front/public/images/large/gregtech/gt.metaitem.02/21473.png deleted file mode 100644 index 3d3e7f4a30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21485.png b/front/public/images/large/gregtech/gt.metaitem.02/21485.png deleted file mode 100644 index 3daf5d3273..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21488.png b/front/public/images/large/gregtech/gt.metaitem.02/21488.png deleted file mode 100644 index f4ac42ec4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21489.png b/front/public/images/large/gregtech/gt.metaitem.02/21489.png deleted file mode 100644 index 860c2e9c45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21529.png b/front/public/images/large/gregtech/gt.metaitem.02/21529.png deleted file mode 100644 index 18d449a78b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21576.png b/front/public/images/large/gregtech/gt.metaitem.02/21576.png deleted file mode 100644 index 9bbf79517c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21581.png b/front/public/images/large/gregtech/gt.metaitem.02/21581.png deleted file mode 100644 index 489835ccb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21583.png b/front/public/images/large/gregtech/gt.metaitem.02/21583.png deleted file mode 100644 index 19b82f5993..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21585.png b/front/public/images/large/gregtech/gt.metaitem.02/21585.png deleted file mode 100644 index 877483e8b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21586.png b/front/public/images/large/gregtech/gt.metaitem.02/21586.png deleted file mode 100644 index 973da7beff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21588.png b/front/public/images/large/gregtech/gt.metaitem.02/21588.png deleted file mode 100644 index 788a427aed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21599.png b/front/public/images/large/gregtech/gt.metaitem.02/21599.png deleted file mode 100644 index 178c1d706b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21610.png b/front/public/images/large/gregtech/gt.metaitem.02/21610.png deleted file mode 100644 index 4b62306fe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21613.png b/front/public/images/large/gregtech/gt.metaitem.02/21613.png deleted file mode 100644 index ea6bec7ee5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21631.png b/front/public/images/large/gregtech/gt.metaitem.02/21631.png deleted file mode 100644 index 02d4efcc01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21765.png b/front/public/images/large/gregtech/gt.metaitem.02/21765.png deleted file mode 100644 index 0eda24873b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21770.png b/front/public/images/large/gregtech/gt.metaitem.02/21770.png deleted file mode 100644 index 01a75e92d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21809.png b/front/public/images/large/gregtech/gt.metaitem.02/21809.png deleted file mode 100644 index c1709ca967..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21868.png b/front/public/images/large/gregtech/gt.metaitem.02/21868.png deleted file mode 100644 index 457a9f9f6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21884.png b/front/public/images/large/gregtech/gt.metaitem.02/21884.png deleted file mode 100644 index 1a16442eb1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21889.png b/front/public/images/large/gregtech/gt.metaitem.02/21889.png deleted file mode 100644 index 9d72e7a28d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21912.png b/front/public/images/large/gregtech/gt.metaitem.02/21912.png deleted file mode 100644 index 305d2efc58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21913.png b/front/public/images/large/gregtech/gt.metaitem.02/21913.png deleted file mode 100644 index baebb2ce91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21952.png b/front/public/images/large/gregtech/gt.metaitem.02/21952.png deleted file mode 100644 index 7441d5b0bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21966.png b/front/public/images/large/gregtech/gt.metaitem.02/21966.png deleted file mode 100644 index cec1afd6eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21970.png b/front/public/images/large/gregtech/gt.metaitem.02/21970.png deleted file mode 100644 index c71e49159e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21975.png b/front/public/images/large/gregtech/gt.metaitem.02/21975.png deleted file mode 100644 index 1c509a2ae7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21976.png b/front/public/images/large/gregtech/gt.metaitem.02/21976.png deleted file mode 100644 index 4d8156d69a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21977.png b/front/public/images/large/gregtech/gt.metaitem.02/21977.png deleted file mode 100644 index 890c14527d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21978.png b/front/public/images/large/gregtech/gt.metaitem.02/21978.png deleted file mode 100644 index 03cee8add0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21982.png b/front/public/images/large/gregtech/gt.metaitem.02/21982.png deleted file mode 100644 index 0969ff0e01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/21984.png b/front/public/images/large/gregtech/gt.metaitem.02/21984.png deleted file mode 100644 index 8d4a6a7594..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/21984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22006.png b/front/public/images/large/gregtech/gt.metaitem.02/22006.png deleted file mode 100644 index 0f12fb9e3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22008.png b/front/public/images/large/gregtech/gt.metaitem.02/22008.png deleted file mode 100644 index 5138c4010e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22010.png b/front/public/images/large/gregtech/gt.metaitem.02/22010.png deleted file mode 100644 index 61792c0713..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22018.png b/front/public/images/large/gregtech/gt.metaitem.02/22018.png deleted file mode 100644 index 68be189ce6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22019.png b/front/public/images/large/gregtech/gt.metaitem.02/22019.png deleted file mode 100644 index a5d4bdadab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22020.png b/front/public/images/large/gregtech/gt.metaitem.02/22020.png deleted file mode 100644 index 8e118b00d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22025.png b/front/public/images/large/gregtech/gt.metaitem.02/22025.png deleted file mode 100644 index 88a1118534..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22027.png b/front/public/images/large/gregtech/gt.metaitem.02/22027.png deleted file mode 100644 index a6b6537fdf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22028.png b/front/public/images/large/gregtech/gt.metaitem.02/22028.png deleted file mode 100644 index 36cca6a66b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22029.png b/front/public/images/large/gregtech/gt.metaitem.02/22029.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22030.png b/front/public/images/large/gregtech/gt.metaitem.02/22030.png deleted file mode 100644 index c218e745e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22031.png b/front/public/images/large/gregtech/gt.metaitem.02/22031.png deleted file mode 100644 index 8ebb0167ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22032.png b/front/public/images/large/gregtech/gt.metaitem.02/22032.png deleted file mode 100644 index a359f50d4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22033.png b/front/public/images/large/gregtech/gt.metaitem.02/22033.png deleted file mode 100644 index 70f9461120..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22034.png b/front/public/images/large/gregtech/gt.metaitem.02/22034.png deleted file mode 100644 index d1270851d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22035.png b/front/public/images/large/gregtech/gt.metaitem.02/22035.png deleted file mode 100644 index 7d1656347f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22036.png b/front/public/images/large/gregtech/gt.metaitem.02/22036.png deleted file mode 100644 index e70b880747..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22037.png b/front/public/images/large/gregtech/gt.metaitem.02/22037.png deleted file mode 100644 index 547883cc73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22039.png b/front/public/images/large/gregtech/gt.metaitem.02/22039.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22043.png b/front/public/images/large/gregtech/gt.metaitem.02/22043.png deleted file mode 100644 index 257a3ed5cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22045.png b/front/public/images/large/gregtech/gt.metaitem.02/22045.png deleted file mode 100644 index 17dd357911..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22047.png b/front/public/images/large/gregtech/gt.metaitem.02/22047.png deleted file mode 100644 index a423db843a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22048.png b/front/public/images/large/gregtech/gt.metaitem.02/22048.png deleted file mode 100644 index 95c4aa9b98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22052.png b/front/public/images/large/gregtech/gt.metaitem.02/22052.png deleted file mode 100644 index fc061e4e2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22054.png b/front/public/images/large/gregtech/gt.metaitem.02/22054.png deleted file mode 100644 index 547883cc73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22056.png b/front/public/images/large/gregtech/gt.metaitem.02/22056.png deleted file mode 100644 index d872b7ed21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22057.png b/front/public/images/large/gregtech/gt.metaitem.02/22057.png deleted file mode 100644 index ab94a98ec2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22058.png b/front/public/images/large/gregtech/gt.metaitem.02/22058.png deleted file mode 100644 index 165d4ae1d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22059.png b/front/public/images/large/gregtech/gt.metaitem.02/22059.png deleted file mode 100644 index 3d3346431c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22062.png b/front/public/images/large/gregtech/gt.metaitem.02/22062.png deleted file mode 100644 index 49fa09108d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22063.png b/front/public/images/large/gregtech/gt.metaitem.02/22063.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22064.png b/front/public/images/large/gregtech/gt.metaitem.02/22064.png deleted file mode 100644 index cdd16b5a4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22065.png b/front/public/images/large/gregtech/gt.metaitem.02/22065.png deleted file mode 100644 index 4910b58ae1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22066.png b/front/public/images/large/gregtech/gt.metaitem.02/22066.png deleted file mode 100644 index 61e5b67876..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22067.png b/front/public/images/large/gregtech/gt.metaitem.02/22067.png deleted file mode 100644 index 6730e7c271..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22068.png b/front/public/images/large/gregtech/gt.metaitem.02/22068.png deleted file mode 100644 index 9c815b2521..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22069.png b/front/public/images/large/gregtech/gt.metaitem.02/22069.png deleted file mode 100644 index c50b2e127e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22070.png b/front/public/images/large/gregtech/gt.metaitem.02/22070.png deleted file mode 100644 index cffcddac6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22071.png b/front/public/images/large/gregtech/gt.metaitem.02/22071.png deleted file mode 100644 index cc9f558401..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22072.png b/front/public/images/large/gregtech/gt.metaitem.02/22072.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22073.png b/front/public/images/large/gregtech/gt.metaitem.02/22073.png deleted file mode 100644 index 5802128f10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22074.png b/front/public/images/large/gregtech/gt.metaitem.02/22074.png deleted file mode 100644 index fdb82a76cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22075.png b/front/public/images/large/gregtech/gt.metaitem.02/22075.png deleted file mode 100644 index edf9a8dfce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22076.png b/front/public/images/large/gregtech/gt.metaitem.02/22076.png deleted file mode 100644 index 99dc4fa51c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22077.png b/front/public/images/large/gregtech/gt.metaitem.02/22077.png deleted file mode 100644 index 04fcb28c44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22078.png b/front/public/images/large/gregtech/gt.metaitem.02/22078.png deleted file mode 100644 index c019826988..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22080.png b/front/public/images/large/gregtech/gt.metaitem.02/22080.png deleted file mode 100644 index 220f46d64c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22081.png b/front/public/images/large/gregtech/gt.metaitem.02/22081.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22083.png b/front/public/images/large/gregtech/gt.metaitem.02/22083.png deleted file mode 100644 index a72bc50713..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22084.png b/front/public/images/large/gregtech/gt.metaitem.02/22084.png deleted file mode 100644 index 9a12ff2061..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22085.png b/front/public/images/large/gregtech/gt.metaitem.02/22085.png deleted file mode 100644 index f9fbcaebbb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22086.png b/front/public/images/large/gregtech/gt.metaitem.02/22086.png deleted file mode 100644 index a392fbde56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22089.png b/front/public/images/large/gregtech/gt.metaitem.02/22089.png deleted file mode 100644 index 937dfed2e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22090.png b/front/public/images/large/gregtech/gt.metaitem.02/22090.png deleted file mode 100644 index 600560e286..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22096.png b/front/public/images/large/gregtech/gt.metaitem.02/22096.png deleted file mode 100644 index 3d927f723f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22097.png b/front/public/images/large/gregtech/gt.metaitem.02/22097.png deleted file mode 100644 index 9689775476..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22098.png b/front/public/images/large/gregtech/gt.metaitem.02/22098.png deleted file mode 100644 index 205d739af4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22100.png b/front/public/images/large/gregtech/gt.metaitem.02/22100.png deleted file mode 100644 index 63abbd2830..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22101.png b/front/public/images/large/gregtech/gt.metaitem.02/22101.png deleted file mode 100644 index 35935643bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22103.png b/front/public/images/large/gregtech/gt.metaitem.02/22103.png deleted file mode 100644 index a359f50d4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22111.png b/front/public/images/large/gregtech/gt.metaitem.02/22111.png deleted file mode 100644 index dfe56c046b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22112.png b/front/public/images/large/gregtech/gt.metaitem.02/22112.png deleted file mode 100644 index 7c51904477..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22129.png b/front/public/images/large/gregtech/gt.metaitem.02/22129.png deleted file mode 100644 index 8ebb0167ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22131.png b/front/public/images/large/gregtech/gt.metaitem.02/22131.png deleted file mode 100644 index 9d43d63161..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22134.png b/front/public/images/large/gregtech/gt.metaitem.02/22134.png deleted file mode 100644 index 372d01ef84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22139.png b/front/public/images/large/gregtech/gt.metaitem.02/22139.png deleted file mode 100644 index 043d6e1723..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22141.png b/front/public/images/large/gregtech/gt.metaitem.02/22141.png deleted file mode 100644 index fc3b3d2e83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22143.png b/front/public/images/large/gregtech/gt.metaitem.02/22143.png deleted file mode 100644 index 90d1fe99a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22201.png b/front/public/images/large/gregtech/gt.metaitem.02/22201.png deleted file mode 100644 index 39c9b2362a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22202.png b/front/public/images/large/gregtech/gt.metaitem.02/22202.png deleted file mode 100644 index 1458b57fa5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22203.png b/front/public/images/large/gregtech/gt.metaitem.02/22203.png deleted file mode 100644 index b0b3f6b1f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22205.png b/front/public/images/large/gregtech/gt.metaitem.02/22205.png deleted file mode 100644 index 5425a3e82c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22206.png b/front/public/images/large/gregtech/gt.metaitem.02/22206.png deleted file mode 100644 index a1fea4b886..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22207.png b/front/public/images/large/gregtech/gt.metaitem.02/22207.png deleted file mode 100644 index 5064b8a123..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22208.png b/front/public/images/large/gregtech/gt.metaitem.02/22208.png deleted file mode 100644 index f793956fa0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22209.png b/front/public/images/large/gregtech/gt.metaitem.02/22209.png deleted file mode 100644 index b48c3caa29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22300.png b/front/public/images/large/gregtech/gt.metaitem.02/22300.png deleted file mode 100644 index 7759909022..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22301.png b/front/public/images/large/gregtech/gt.metaitem.02/22301.png deleted file mode 100644 index 5b5d73bf5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22302.png b/front/public/images/large/gregtech/gt.metaitem.02/22302.png deleted file mode 100644 index 0c3a2b403c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22303.png b/front/public/images/large/gregtech/gt.metaitem.02/22303.png deleted file mode 100644 index 27e8f895d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22304.png b/front/public/images/large/gregtech/gt.metaitem.02/22304.png deleted file mode 100644 index 23a3adab7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22305.png b/front/public/images/large/gregtech/gt.metaitem.02/22305.png deleted file mode 100644 index fc061e4e2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22306.png b/front/public/images/large/gregtech/gt.metaitem.02/22306.png deleted file mode 100644 index 9c5d053665..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22307.png b/front/public/images/large/gregtech/gt.metaitem.02/22307.png deleted file mode 100644 index 23a3adab7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22308.png b/front/public/images/large/gregtech/gt.metaitem.02/22308.png deleted file mode 100644 index 79adc2e674..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22309.png b/front/public/images/large/gregtech/gt.metaitem.02/22309.png deleted file mode 100644 index 71266de5fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22310.png b/front/public/images/large/gregtech/gt.metaitem.02/22310.png deleted file mode 100644 index 0746527cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22311.png b/front/public/images/large/gregtech/gt.metaitem.02/22311.png deleted file mode 100644 index db4a4ba7e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22312.png b/front/public/images/large/gregtech/gt.metaitem.02/22312.png deleted file mode 100644 index ebd1c505f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22313.png b/front/public/images/large/gregtech/gt.metaitem.02/22313.png deleted file mode 100644 index 3385c8abbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22314.png b/front/public/images/large/gregtech/gt.metaitem.02/22314.png deleted file mode 100644 index d0d21bd577..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22315.png b/front/public/images/large/gregtech/gt.metaitem.02/22315.png deleted file mode 100644 index ff32d7068a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22316.png b/front/public/images/large/gregtech/gt.metaitem.02/22316.png deleted file mode 100644 index 2830e67aeb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22317.png b/front/public/images/large/gregtech/gt.metaitem.02/22317.png deleted file mode 100644 index fae2c4404f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22318.png b/front/public/images/large/gregtech/gt.metaitem.02/22318.png deleted file mode 100644 index ed5f1ad0df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22319.png b/front/public/images/large/gregtech/gt.metaitem.02/22319.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22320.png b/front/public/images/large/gregtech/gt.metaitem.02/22320.png deleted file mode 100644 index f330585c31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22321.png b/front/public/images/large/gregtech/gt.metaitem.02/22321.png deleted file mode 100644 index 09f2b38dbd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22323.png b/front/public/images/large/gregtech/gt.metaitem.02/22323.png deleted file mode 100644 index 90183542e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22324.png b/front/public/images/large/gregtech/gt.metaitem.02/22324.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22325.png b/front/public/images/large/gregtech/gt.metaitem.02/22325.png deleted file mode 100644 index dabe6ce2f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22326.png b/front/public/images/large/gregtech/gt.metaitem.02/22326.png deleted file mode 100644 index 6acb41e294..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22327.png b/front/public/images/large/gregtech/gt.metaitem.02/22327.png deleted file mode 100644 index ccd8bd28d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22328.png b/front/public/images/large/gregtech/gt.metaitem.02/22328.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22329.png b/front/public/images/large/gregtech/gt.metaitem.02/22329.png deleted file mode 100644 index b84445f1ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22330.png b/front/public/images/large/gregtech/gt.metaitem.02/22330.png deleted file mode 100644 index ac1e069a69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22331.png b/front/public/images/large/gregtech/gt.metaitem.02/22331.png deleted file mode 100644 index 48cf9081d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22333.png b/front/public/images/large/gregtech/gt.metaitem.02/22333.png deleted file mode 100644 index 8f9543c7af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22334.png b/front/public/images/large/gregtech/gt.metaitem.02/22334.png deleted file mode 100644 index 6730e7c271..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22335.png b/front/public/images/large/gregtech/gt.metaitem.02/22335.png deleted file mode 100644 index 0255e5cf7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22336.png b/front/public/images/large/gregtech/gt.metaitem.02/22336.png deleted file mode 100644 index 627d0207f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22337.png b/front/public/images/large/gregtech/gt.metaitem.02/22337.png deleted file mode 100644 index 0c3f0b89a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22338.png b/front/public/images/large/gregtech/gt.metaitem.02/22338.png deleted file mode 100644 index 04b1dccdd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22339.png b/front/public/images/large/gregtech/gt.metaitem.02/22339.png deleted file mode 100644 index f567c5c1fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22340.png b/front/public/images/large/gregtech/gt.metaitem.02/22340.png deleted file mode 100644 index 9e8125678f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22341.png b/front/public/images/large/gregtech/gt.metaitem.02/22341.png deleted file mode 100644 index 2454567e55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22342.png b/front/public/images/large/gregtech/gt.metaitem.02/22342.png deleted file mode 100644 index 397d1da2f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22343.png b/front/public/images/large/gregtech/gt.metaitem.02/22343.png deleted file mode 100644 index c717a23548..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22344.png b/front/public/images/large/gregtech/gt.metaitem.02/22344.png deleted file mode 100644 index 89e2e86128..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22345.png b/front/public/images/large/gregtech/gt.metaitem.02/22345.png deleted file mode 100644 index 69ea13f70a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22346.png b/front/public/images/large/gregtech/gt.metaitem.02/22346.png deleted file mode 100644 index e7ceabd32e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22347.png b/front/public/images/large/gregtech/gt.metaitem.02/22347.png deleted file mode 100644 index ff778bf073..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22348.png b/front/public/images/large/gregtech/gt.metaitem.02/22348.png deleted file mode 100644 index 754abbdf46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22349.png b/front/public/images/large/gregtech/gt.metaitem.02/22349.png deleted file mode 100644 index e1556db7d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22350.png b/front/public/images/large/gregtech/gt.metaitem.02/22350.png deleted file mode 100644 index f4eec13a2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22351.png b/front/public/images/large/gregtech/gt.metaitem.02/22351.png deleted file mode 100644 index 178e7a6738..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22352.png b/front/public/images/large/gregtech/gt.metaitem.02/22352.png deleted file mode 100644 index 1faef158de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22353.png b/front/public/images/large/gregtech/gt.metaitem.02/22353.png deleted file mode 100644 index 3ae3d38074..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22354.png b/front/public/images/large/gregtech/gt.metaitem.02/22354.png deleted file mode 100644 index a20f38e863..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22355.png b/front/public/images/large/gregtech/gt.metaitem.02/22355.png deleted file mode 100644 index 7c619e4a76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22356.png b/front/public/images/large/gregtech/gt.metaitem.02/22356.png deleted file mode 100644 index ef593a61a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22357.png b/front/public/images/large/gregtech/gt.metaitem.02/22357.png deleted file mode 100644 index 246b61fea6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22358.png b/front/public/images/large/gregtech/gt.metaitem.02/22358.png deleted file mode 100644 index 6f05a4f751..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22359.png b/front/public/images/large/gregtech/gt.metaitem.02/22359.png deleted file mode 100644 index c407251217..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22360.png b/front/public/images/large/gregtech/gt.metaitem.02/22360.png deleted file mode 100644 index 89bb66f088..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22361.png b/front/public/images/large/gregtech/gt.metaitem.02/22361.png deleted file mode 100644 index 7643c78680..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22362.png b/front/public/images/large/gregtech/gt.metaitem.02/22362.png deleted file mode 100644 index f51f132ba7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22363.png b/front/public/images/large/gregtech/gt.metaitem.02/22363.png deleted file mode 100644 index a359f50d4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22364.png b/front/public/images/large/gregtech/gt.metaitem.02/22364.png deleted file mode 100644 index 5eecfceef4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22365.png b/front/public/images/large/gregtech/gt.metaitem.02/22365.png deleted file mode 100644 index c80d50ab89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22366.png b/front/public/images/large/gregtech/gt.metaitem.02/22366.png deleted file mode 100644 index d4b40d282e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22367.png b/front/public/images/large/gregtech/gt.metaitem.02/22367.png deleted file mode 100644 index c3673fe060..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22368.png b/front/public/images/large/gregtech/gt.metaitem.02/22368.png deleted file mode 100644 index d12b14d15e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22369.png b/front/public/images/large/gregtech/gt.metaitem.02/22369.png deleted file mode 100644 index 85a65fc1db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22370.png b/front/public/images/large/gregtech/gt.metaitem.02/22370.png deleted file mode 100644 index 7ccf0fa6e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22371.png b/front/public/images/large/gregtech/gt.metaitem.02/22371.png deleted file mode 100644 index 9a7af2ce7d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22372.png b/front/public/images/large/gregtech/gt.metaitem.02/22372.png deleted file mode 100644 index 33dda93682..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22373.png b/front/public/images/large/gregtech/gt.metaitem.02/22373.png deleted file mode 100644 index 2079a61b24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22374.png b/front/public/images/large/gregtech/gt.metaitem.02/22374.png deleted file mode 100644 index ee2b761373..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22378.png b/front/public/images/large/gregtech/gt.metaitem.02/22378.png deleted file mode 100644 index 9da59a2244..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22379.png b/front/public/images/large/gregtech/gt.metaitem.02/22379.png deleted file mode 100644 index b7b6e377f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22380.png b/front/public/images/large/gregtech/gt.metaitem.02/22380.png deleted file mode 100644 index 067b589aa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22381.png b/front/public/images/large/gregtech/gt.metaitem.02/22381.png deleted file mode 100644 index 2938719e5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22382.png b/front/public/images/large/gregtech/gt.metaitem.02/22382.png deleted file mode 100644 index f60a2d3e15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22383.png b/front/public/images/large/gregtech/gt.metaitem.02/22383.png deleted file mode 100644 index 9333ebf605..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22384.png b/front/public/images/large/gregtech/gt.metaitem.02/22384.png deleted file mode 100644 index 15405dbd8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22385.png b/front/public/images/large/gregtech/gt.metaitem.02/22385.png deleted file mode 100644 index 7c097e131d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22386.png b/front/public/images/large/gregtech/gt.metaitem.02/22386.png deleted file mode 100644 index bbcac4a3fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22387.png b/front/public/images/large/gregtech/gt.metaitem.02/22387.png deleted file mode 100644 index 71bce9a61f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22388.png b/front/public/images/large/gregtech/gt.metaitem.02/22388.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22389.png b/front/public/images/large/gregtech/gt.metaitem.02/22389.png deleted file mode 100644 index 89494cc502..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22390.png b/front/public/images/large/gregtech/gt.metaitem.02/22390.png deleted file mode 100644 index 474ac841e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22391.png b/front/public/images/large/gregtech/gt.metaitem.02/22391.png deleted file mode 100644 index 539396382e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22392.png b/front/public/images/large/gregtech/gt.metaitem.02/22392.png deleted file mode 100644 index 56b35cf742..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22393.png b/front/public/images/large/gregtech/gt.metaitem.02/22393.png deleted file mode 100644 index be8b8c8fce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22394.png b/front/public/images/large/gregtech/gt.metaitem.02/22394.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22395.png b/front/public/images/large/gregtech/gt.metaitem.02/22395.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22397.png b/front/public/images/large/gregtech/gt.metaitem.02/22397.png deleted file mode 100644 index a05154373e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22398.png b/front/public/images/large/gregtech/gt.metaitem.02/22398.png deleted file mode 100644 index 7a22a91d5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22399.png b/front/public/images/large/gregtech/gt.metaitem.02/22399.png deleted file mode 100644 index c23cd70253..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22400.png b/front/public/images/large/gregtech/gt.metaitem.02/22400.png deleted file mode 100644 index 80ac2ea866..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22401.png b/front/public/images/large/gregtech/gt.metaitem.02/22401.png deleted file mode 100644 index ff57a3b5f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22402.png b/front/public/images/large/gregtech/gt.metaitem.02/22402.png deleted file mode 100644 index 5cd0b7985d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22403.png b/front/public/images/large/gregtech/gt.metaitem.02/22403.png deleted file mode 100644 index bfa33036d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22404.png b/front/public/images/large/gregtech/gt.metaitem.02/22404.png deleted file mode 100644 index 57912fbcf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22405.png b/front/public/images/large/gregtech/gt.metaitem.02/22405.png deleted file mode 100644 index 0143c0a34f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22406.png b/front/public/images/large/gregtech/gt.metaitem.02/22406.png deleted file mode 100644 index 7376610dd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22407.png b/front/public/images/large/gregtech/gt.metaitem.02/22407.png deleted file mode 100644 index 5411d2c747..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22408.png b/front/public/images/large/gregtech/gt.metaitem.02/22408.png deleted file mode 100644 index d237392bbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22470.png b/front/public/images/large/gregtech/gt.metaitem.02/22470.png deleted file mode 100644 index f1324b683b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22471.png b/front/public/images/large/gregtech/gt.metaitem.02/22471.png deleted file mode 100644 index ab94a98ec2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22472.png b/front/public/images/large/gregtech/gt.metaitem.02/22472.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22473.png b/front/public/images/large/gregtech/gt.metaitem.02/22473.png deleted file mode 100644 index 6730e7c271..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22485.png b/front/public/images/large/gregtech/gt.metaitem.02/22485.png deleted file mode 100644 index 7427b014ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22488.png b/front/public/images/large/gregtech/gt.metaitem.02/22488.png deleted file mode 100644 index 2cfdf8e96e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22489.png b/front/public/images/large/gregtech/gt.metaitem.02/22489.png deleted file mode 100644 index 927c891498..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22500.png b/front/public/images/large/gregtech/gt.metaitem.02/22500.png deleted file mode 100644 index a486fa8cf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22501.png b/front/public/images/large/gregtech/gt.metaitem.02/22501.png deleted file mode 100644 index 5cbd58573d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22502.png b/front/public/images/large/gregtech/gt.metaitem.02/22502.png deleted file mode 100644 index 2ac1c890f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22503.png b/front/public/images/large/gregtech/gt.metaitem.02/22503.png deleted file mode 100644 index 269e6d5b4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22504.png b/front/public/images/large/gregtech/gt.metaitem.02/22504.png deleted file mode 100644 index 2e0db03ae3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22505.png b/front/public/images/large/gregtech/gt.metaitem.02/22505.png deleted file mode 100644 index 1f3348b185..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22506.png b/front/public/images/large/gregtech/gt.metaitem.02/22506.png deleted file mode 100644 index 8ebb0167ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22507.png b/front/public/images/large/gregtech/gt.metaitem.02/22507.png deleted file mode 100644 index 7759909022..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22508.png b/front/public/images/large/gregtech/gt.metaitem.02/22508.png deleted file mode 100644 index 35e4057d64..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22509.png b/front/public/images/large/gregtech/gt.metaitem.02/22509.png deleted file mode 100644 index 3fe97891e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22510.png b/front/public/images/large/gregtech/gt.metaitem.02/22510.png deleted file mode 100644 index 41ddab68cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22511.png b/front/public/images/large/gregtech/gt.metaitem.02/22511.png deleted file mode 100644 index d9e24e6e8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22512.png b/front/public/images/large/gregtech/gt.metaitem.02/22512.png deleted file mode 100644 index 2ac1c890f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22513.png b/front/public/images/large/gregtech/gt.metaitem.02/22513.png deleted file mode 100644 index 41ddab68cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22514.png b/front/public/images/large/gregtech/gt.metaitem.02/22514.png deleted file mode 100644 index 7759909022..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22515.png b/front/public/images/large/gregtech/gt.metaitem.02/22515.png deleted file mode 100644 index f489ccd95b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22515.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22516.png b/front/public/images/large/gregtech/gt.metaitem.02/22516.png deleted file mode 100644 index 6efffc8cb5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22518.png b/front/public/images/large/gregtech/gt.metaitem.02/22518.png deleted file mode 100644 index 4de44915b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22518.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22519.png b/front/public/images/large/gregtech/gt.metaitem.02/22519.png deleted file mode 100644 index 4de44915b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22519.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22520.png b/front/public/images/large/gregtech/gt.metaitem.02/22520.png deleted file mode 100644 index 486a0b8a91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22521.png b/front/public/images/large/gregtech/gt.metaitem.02/22521.png deleted file mode 100644 index ed5f1ad0df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22522.png b/front/public/images/large/gregtech/gt.metaitem.02/22522.png deleted file mode 100644 index 8672ef50ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22523.png b/front/public/images/large/gregtech/gt.metaitem.02/22523.png deleted file mode 100644 index 339cf5a3a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22524.png b/front/public/images/large/gregtech/gt.metaitem.02/22524.png deleted file mode 100644 index 814f2eac7b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22525.png b/front/public/images/large/gregtech/gt.metaitem.02/22525.png deleted file mode 100644 index 8991d6bdf9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22525.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22526.png b/front/public/images/large/gregtech/gt.metaitem.02/22526.png deleted file mode 100644 index c279bc47a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22527.png b/front/public/images/large/gregtech/gt.metaitem.02/22527.png deleted file mode 100644 index d9e24e6e8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22528.png b/front/public/images/large/gregtech/gt.metaitem.02/22528.png deleted file mode 100644 index 8c745b67b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22529.png b/front/public/images/large/gregtech/gt.metaitem.02/22529.png deleted file mode 100644 index be38d6fa42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22530.png b/front/public/images/large/gregtech/gt.metaitem.02/22530.png deleted file mode 100644 index 862d68118a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22531.png b/front/public/images/large/gregtech/gt.metaitem.02/22531.png deleted file mode 100644 index 68be189ce6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22532.png b/front/public/images/large/gregtech/gt.metaitem.02/22532.png deleted file mode 100644 index 5ae077b4f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22533.png b/front/public/images/large/gregtech/gt.metaitem.02/22533.png deleted file mode 100644 index ee830d0d5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22534.png b/front/public/images/large/gregtech/gt.metaitem.02/22534.png deleted file mode 100644 index a6a39b1c59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22535.png b/front/public/images/large/gregtech/gt.metaitem.02/22535.png deleted file mode 100644 index 902e30c1b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22536.png b/front/public/images/large/gregtech/gt.metaitem.02/22536.png deleted file mode 100644 index 03fda9996c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22536.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22537.png b/front/public/images/large/gregtech/gt.metaitem.02/22537.png deleted file mode 100644 index 02d99cb314..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22538.png b/front/public/images/large/gregtech/gt.metaitem.02/22538.png deleted file mode 100644 index 03fda9996c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22540.png b/front/public/images/large/gregtech/gt.metaitem.02/22540.png deleted file mode 100644 index ed5f1ad0df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22541.png b/front/public/images/large/gregtech/gt.metaitem.02/22541.png deleted file mode 100644 index 9ea18df230..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22542.png b/front/public/images/large/gregtech/gt.metaitem.02/22542.png deleted file mode 100644 index 775594d957..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22543.png b/front/public/images/large/gregtech/gt.metaitem.02/22543.png deleted file mode 100644 index fbd8d72e8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22544.png b/front/public/images/large/gregtech/gt.metaitem.02/22544.png deleted file mode 100644 index 7921aad546..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22545.png b/front/public/images/large/gregtech/gt.metaitem.02/22545.png deleted file mode 100644 index c9ff60aa62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22576.png b/front/public/images/large/gregtech/gt.metaitem.02/22576.png deleted file mode 100644 index ffbff15481..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22581.png b/front/public/images/large/gregtech/gt.metaitem.02/22581.png deleted file mode 100644 index 223f68c0ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22582.png b/front/public/images/large/gregtech/gt.metaitem.02/22582.png deleted file mode 100644 index 19c855886a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22583.png b/front/public/images/large/gregtech/gt.metaitem.02/22583.png deleted file mode 100644 index a62526d186..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22585.png b/front/public/images/large/gregtech/gt.metaitem.02/22585.png deleted file mode 100644 index 368f47bf63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22586.png b/front/public/images/large/gregtech/gt.metaitem.02/22586.png deleted file mode 100644 index d27357f932..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22588.png b/front/public/images/large/gregtech/gt.metaitem.02/22588.png deleted file mode 100644 index 290aea54b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22599.png b/front/public/images/large/gregtech/gt.metaitem.02/22599.png deleted file mode 100644 index eb5c41c979..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22610.png b/front/public/images/large/gregtech/gt.metaitem.02/22610.png deleted file mode 100644 index 610e770a73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22611.png b/front/public/images/large/gregtech/gt.metaitem.02/22611.png deleted file mode 100644 index a8b1fe01b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22613.png b/front/public/images/large/gregtech/gt.metaitem.02/22613.png deleted file mode 100644 index d55c31cca8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22631.png b/front/public/images/large/gregtech/gt.metaitem.02/22631.png deleted file mode 100644 index 56ed7e3481..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22635.png b/front/public/images/large/gregtech/gt.metaitem.02/22635.png deleted file mode 100644 index aee213b308..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22636.png b/front/public/images/large/gregtech/gt.metaitem.02/22636.png deleted file mode 100644 index b22ace2a16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22649.png b/front/public/images/large/gregtech/gt.metaitem.02/22649.png deleted file mode 100644 index 2aa6445cc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22765.png b/front/public/images/large/gregtech/gt.metaitem.02/22765.png deleted file mode 100644 index ed782fec52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22770.png b/front/public/images/large/gregtech/gt.metaitem.02/22770.png deleted file mode 100644 index 9559388d85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22772.png b/front/public/images/large/gregtech/gt.metaitem.02/22772.png deleted file mode 100644 index 22d5b403d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22801.png b/front/public/images/large/gregtech/gt.metaitem.02/22801.png deleted file mode 100644 index c2ab048b10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22801.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22809.png b/front/public/images/large/gregtech/gt.metaitem.02/22809.png deleted file mode 100644 index bbb4fab3e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22829.png b/front/public/images/large/gregtech/gt.metaitem.02/22829.png deleted file mode 100644 index 9062cd7eec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22856.png b/front/public/images/large/gregtech/gt.metaitem.02/22856.png deleted file mode 100644 index 111a17d300..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22868.png b/front/public/images/large/gregtech/gt.metaitem.02/22868.png deleted file mode 100644 index 791450ec35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22874.png b/front/public/images/large/gregtech/gt.metaitem.02/22874.png deleted file mode 100644 index a359f50d4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22880.png b/front/public/images/large/gregtech/gt.metaitem.02/22880.png deleted file mode 100644 index d27357f932..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22884.png b/front/public/images/large/gregtech/gt.metaitem.02/22884.png deleted file mode 100644 index dabe6ce2f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22889.png b/front/public/images/large/gregtech/gt.metaitem.02/22889.png deleted file mode 100644 index 6cba6c70af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22890.png b/front/public/images/large/gregtech/gt.metaitem.02/22890.png deleted file mode 100644 index 8ebb0167ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22912.png b/front/public/images/large/gregtech/gt.metaitem.02/22912.png deleted file mode 100644 index 830f9bf9b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22913.png b/front/public/images/large/gregtech/gt.metaitem.02/22913.png deleted file mode 100644 index 754abbdf46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22951.png b/front/public/images/large/gregtech/gt.metaitem.02/22951.png deleted file mode 100644 index 861f1f081b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22952.png b/front/public/images/large/gregtech/gt.metaitem.02/22952.png deleted file mode 100644 index ec45855e49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22956.png b/front/public/images/large/gregtech/gt.metaitem.02/22956.png deleted file mode 100644 index 9bfbd7f619..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22966.png b/front/public/images/large/gregtech/gt.metaitem.02/22966.png deleted file mode 100644 index 0704bf69fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22970.png b/front/public/images/large/gregtech/gt.metaitem.02/22970.png deleted file mode 100644 index 6c7a9dae0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22974.png b/front/public/images/large/gregtech/gt.metaitem.02/22974.png deleted file mode 100644 index 2cd38d535a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22975.png b/front/public/images/large/gregtech/gt.metaitem.02/22975.png deleted file mode 100644 index 76ebcfa07f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22976.png b/front/public/images/large/gregtech/gt.metaitem.02/22976.png deleted file mode 100644 index fe71520357..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22977.png b/front/public/images/large/gregtech/gt.metaitem.02/22977.png deleted file mode 100644 index 2bba804245..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22978.png b/front/public/images/large/gregtech/gt.metaitem.02/22978.png deleted file mode 100644 index cf54369546..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22979.png b/front/public/images/large/gregtech/gt.metaitem.02/22979.png deleted file mode 100644 index c95c19d0aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22980.png b/front/public/images/large/gregtech/gt.metaitem.02/22980.png deleted file mode 100644 index 7a9ea41924..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22981.png b/front/public/images/large/gregtech/gt.metaitem.02/22981.png deleted file mode 100644 index a8694a656d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22982.png b/front/public/images/large/gregtech/gt.metaitem.02/22982.png deleted file mode 100644 index 1a7aa15c0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22984.png b/front/public/images/large/gregtech/gt.metaitem.02/22984.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22985.png b/front/public/images/large/gregtech/gt.metaitem.02/22985.png deleted file mode 100644 index b52633b2b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22986.png b/front/public/images/large/gregtech/gt.metaitem.02/22986.png deleted file mode 100644 index b112e12674..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22987.png b/front/public/images/large/gregtech/gt.metaitem.02/22987.png deleted file mode 100644 index d645786068..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22988.png b/front/public/images/large/gregtech/gt.metaitem.02/22988.png deleted file mode 100644 index 7f4d65c744..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22989.png b/front/public/images/large/gregtech/gt.metaitem.02/22989.png deleted file mode 100644 index a75f626066..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22990.png b/front/public/images/large/gregtech/gt.metaitem.02/22990.png deleted file mode 100644 index a21c0308c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22991.png b/front/public/images/large/gregtech/gt.metaitem.02/22991.png deleted file mode 100644 index 942c5a2633..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/22992.png b/front/public/images/large/gregtech/gt.metaitem.02/22992.png deleted file mode 100644 index 7bf0b9827c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/22992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23006.png b/front/public/images/large/gregtech/gt.metaitem.02/23006.png deleted file mode 100644 index 6baec0d8a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23008.png b/front/public/images/large/gregtech/gt.metaitem.02/23008.png deleted file mode 100644 index 581f30d0c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23010.png b/front/public/images/large/gregtech/gt.metaitem.02/23010.png deleted file mode 100644 index 0f57ba7fd1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23018.png b/front/public/images/large/gregtech/gt.metaitem.02/23018.png deleted file mode 100644 index 736f22d335..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23019.png b/front/public/images/large/gregtech/gt.metaitem.02/23019.png deleted file mode 100644 index 68e04c6c29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23020.png b/front/public/images/large/gregtech/gt.metaitem.02/23020.png deleted file mode 100644 index 427224065a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23025.png b/front/public/images/large/gregtech/gt.metaitem.02/23025.png deleted file mode 100644 index 73fa399a9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23027.png b/front/public/images/large/gregtech/gt.metaitem.02/23027.png deleted file mode 100644 index 38f8114525..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23028.png b/front/public/images/large/gregtech/gt.metaitem.02/23028.png deleted file mode 100644 index 557a72833c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23029.png b/front/public/images/large/gregtech/gt.metaitem.02/23029.png deleted file mode 100644 index cbf59f4c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23030.png b/front/public/images/large/gregtech/gt.metaitem.02/23030.png deleted file mode 100644 index 5515707ddd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23031.png b/front/public/images/large/gregtech/gt.metaitem.02/23031.png deleted file mode 100644 index 1b35bcc89d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23032.png b/front/public/images/large/gregtech/gt.metaitem.02/23032.png deleted file mode 100644 index 146e362c18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23033.png b/front/public/images/large/gregtech/gt.metaitem.02/23033.png deleted file mode 100644 index a2e8b19f41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23034.png b/front/public/images/large/gregtech/gt.metaitem.02/23034.png deleted file mode 100644 index 9d286fd9ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23035.png b/front/public/images/large/gregtech/gt.metaitem.02/23035.png deleted file mode 100644 index 3ab477209c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23036.png b/front/public/images/large/gregtech/gt.metaitem.02/23036.png deleted file mode 100644 index 446d313eab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23037.png b/front/public/images/large/gregtech/gt.metaitem.02/23037.png deleted file mode 100644 index 0249b602a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23039.png b/front/public/images/large/gregtech/gt.metaitem.02/23039.png deleted file mode 100644 index 57358c8bea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23043.png b/front/public/images/large/gregtech/gt.metaitem.02/23043.png deleted file mode 100644 index 9ae902cc8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23045.png b/front/public/images/large/gregtech/gt.metaitem.02/23045.png deleted file mode 100644 index a55738bf0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23047.png b/front/public/images/large/gregtech/gt.metaitem.02/23047.png deleted file mode 100644 index 994bdfdbaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23048.png b/front/public/images/large/gregtech/gt.metaitem.02/23048.png deleted file mode 100644 index 0cd706ebd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23052.png b/front/public/images/large/gregtech/gt.metaitem.02/23052.png deleted file mode 100644 index a8a656fe8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23054.png b/front/public/images/large/gregtech/gt.metaitem.02/23054.png deleted file mode 100644 index 0249b602a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23056.png b/front/public/images/large/gregtech/gt.metaitem.02/23056.png deleted file mode 100644 index 73b2e84b23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23057.png b/front/public/images/large/gregtech/gt.metaitem.02/23057.png deleted file mode 100644 index 13e1b4144b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23058.png b/front/public/images/large/gregtech/gt.metaitem.02/23058.png deleted file mode 100644 index 8121ad2c69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23059.png b/front/public/images/large/gregtech/gt.metaitem.02/23059.png deleted file mode 100644 index c321f34214..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23062.png b/front/public/images/large/gregtech/gt.metaitem.02/23062.png deleted file mode 100644 index 031f6ecb2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23063.png b/front/public/images/large/gregtech/gt.metaitem.02/23063.png deleted file mode 100644 index 57358c8bea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23064.png b/front/public/images/large/gregtech/gt.metaitem.02/23064.png deleted file mode 100644 index 08a6953fa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23065.png b/front/public/images/large/gregtech/gt.metaitem.02/23065.png deleted file mode 100644 index 8e327d1f30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23066.png b/front/public/images/large/gregtech/gt.metaitem.02/23066.png deleted file mode 100644 index edadba94c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23067.png b/front/public/images/large/gregtech/gt.metaitem.02/23067.png deleted file mode 100644 index 83aa064bf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23068.png b/front/public/images/large/gregtech/gt.metaitem.02/23068.png deleted file mode 100644 index 3389a222db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23069.png b/front/public/images/large/gregtech/gt.metaitem.02/23069.png deleted file mode 100644 index 8db73d85d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23070.png b/front/public/images/large/gregtech/gt.metaitem.02/23070.png deleted file mode 100644 index 95b2954a1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23071.png b/front/public/images/large/gregtech/gt.metaitem.02/23071.png deleted file mode 100644 index 4bcbd9e28f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23072.png b/front/public/images/large/gregtech/gt.metaitem.02/23072.png deleted file mode 100644 index 57358c8bea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23073.png b/front/public/images/large/gregtech/gt.metaitem.02/23073.png deleted file mode 100644 index ede27c1900..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23074.png b/front/public/images/large/gregtech/gt.metaitem.02/23074.png deleted file mode 100644 index cddc1da6e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23075.png b/front/public/images/large/gregtech/gt.metaitem.02/23075.png deleted file mode 100644 index be1602949e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23076.png b/front/public/images/large/gregtech/gt.metaitem.02/23076.png deleted file mode 100644 index b78545891f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23077.png b/front/public/images/large/gregtech/gt.metaitem.02/23077.png deleted file mode 100644 index 67d71d34a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23078.png b/front/public/images/large/gregtech/gt.metaitem.02/23078.png deleted file mode 100644 index cea8da5284..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23080.png b/front/public/images/large/gregtech/gt.metaitem.02/23080.png deleted file mode 100644 index 8e6df0ca45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23081.png b/front/public/images/large/gregtech/gt.metaitem.02/23081.png deleted file mode 100644 index cbf59f4c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23083.png b/front/public/images/large/gregtech/gt.metaitem.02/23083.png deleted file mode 100644 index dbe6b198cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23084.png b/front/public/images/large/gregtech/gt.metaitem.02/23084.png deleted file mode 100644 index ae47c13f5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23085.png b/front/public/images/large/gregtech/gt.metaitem.02/23085.png deleted file mode 100644 index 87c27ed9f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23086.png b/front/public/images/large/gregtech/gt.metaitem.02/23086.png deleted file mode 100644 index bcaafe23d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23089.png b/front/public/images/large/gregtech/gt.metaitem.02/23089.png deleted file mode 100644 index df6abd68d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23090.png b/front/public/images/large/gregtech/gt.metaitem.02/23090.png deleted file mode 100644 index 9ac358fc8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23096.png b/front/public/images/large/gregtech/gt.metaitem.02/23096.png deleted file mode 100644 index 83bf2f2fe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23097.png b/front/public/images/large/gregtech/gt.metaitem.02/23097.png deleted file mode 100644 index fb01d7720f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23098.png b/front/public/images/large/gregtech/gt.metaitem.02/23098.png deleted file mode 100644 index cecde83035..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23100.png b/front/public/images/large/gregtech/gt.metaitem.02/23100.png deleted file mode 100644 index 643d88cc67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23101.png b/front/public/images/large/gregtech/gt.metaitem.02/23101.png deleted file mode 100644 index c4b5e5cdd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23103.png b/front/public/images/large/gregtech/gt.metaitem.02/23103.png deleted file mode 100644 index 146e362c18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23111.png b/front/public/images/large/gregtech/gt.metaitem.02/23111.png deleted file mode 100644 index ef2ef90cfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23112.png b/front/public/images/large/gregtech/gt.metaitem.02/23112.png deleted file mode 100644 index c726bdaf87..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23129.png b/front/public/images/large/gregtech/gt.metaitem.02/23129.png deleted file mode 100644 index 1b35bcc89d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23131.png b/front/public/images/large/gregtech/gt.metaitem.02/23131.png deleted file mode 100644 index 4fd2f489c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23134.png b/front/public/images/large/gregtech/gt.metaitem.02/23134.png deleted file mode 100644 index be7c8beb6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23139.png b/front/public/images/large/gregtech/gt.metaitem.02/23139.png deleted file mode 100644 index 75c2fa22b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23141.png b/front/public/images/large/gregtech/gt.metaitem.02/23141.png deleted file mode 100644 index a36a9fb161..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23143.png b/front/public/images/large/gregtech/gt.metaitem.02/23143.png deleted file mode 100644 index 5ae31a256b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23201.png b/front/public/images/large/gregtech/gt.metaitem.02/23201.png deleted file mode 100644 index 13d13e7d35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23202.png b/front/public/images/large/gregtech/gt.metaitem.02/23202.png deleted file mode 100644 index 19ac54fab8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23203.png b/front/public/images/large/gregtech/gt.metaitem.02/23203.png deleted file mode 100644 index d6b6d0b068..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23205.png b/front/public/images/large/gregtech/gt.metaitem.02/23205.png deleted file mode 100644 index dca52a7c96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23300.png b/front/public/images/large/gregtech/gt.metaitem.02/23300.png deleted file mode 100644 index c2fe20b705..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23301.png b/front/public/images/large/gregtech/gt.metaitem.02/23301.png deleted file mode 100644 index baea31d81d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23302.png b/front/public/images/large/gregtech/gt.metaitem.02/23302.png deleted file mode 100644 index e579c4cbc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23303.png b/front/public/images/large/gregtech/gt.metaitem.02/23303.png deleted file mode 100644 index 360caf1864..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23304.png b/front/public/images/large/gregtech/gt.metaitem.02/23304.png deleted file mode 100644 index 4223c9c39f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23305.png b/front/public/images/large/gregtech/gt.metaitem.02/23305.png deleted file mode 100644 index a8a656fe8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23306.png b/front/public/images/large/gregtech/gt.metaitem.02/23306.png deleted file mode 100644 index 408a849b33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23307.png b/front/public/images/large/gregtech/gt.metaitem.02/23307.png deleted file mode 100644 index 4223c9c39f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23308.png b/front/public/images/large/gregtech/gt.metaitem.02/23308.png deleted file mode 100644 index 2ce9397579..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23309.png b/front/public/images/large/gregtech/gt.metaitem.02/23309.png deleted file mode 100644 index 3c0741eb4f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23310.png b/front/public/images/large/gregtech/gt.metaitem.02/23310.png deleted file mode 100644 index 2df8cf076f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23311.png b/front/public/images/large/gregtech/gt.metaitem.02/23311.png deleted file mode 100644 index 773c2f4abd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23312.png b/front/public/images/large/gregtech/gt.metaitem.02/23312.png deleted file mode 100644 index 25a343617e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23313.png b/front/public/images/large/gregtech/gt.metaitem.02/23313.png deleted file mode 100644 index e8d009f257..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23314.png b/front/public/images/large/gregtech/gt.metaitem.02/23314.png deleted file mode 100644 index 3572a9ffe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23315.png b/front/public/images/large/gregtech/gt.metaitem.02/23315.png deleted file mode 100644 index a8565ad0e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23316.png b/front/public/images/large/gregtech/gt.metaitem.02/23316.png deleted file mode 100644 index f2010d8cce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23317.png b/front/public/images/large/gregtech/gt.metaitem.02/23317.png deleted file mode 100644 index 58b8c9b7ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23318.png b/front/public/images/large/gregtech/gt.metaitem.02/23318.png deleted file mode 100644 index 603b62d17d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23319.png b/front/public/images/large/gregtech/gt.metaitem.02/23319.png deleted file mode 100644 index 57358c8bea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23320.png b/front/public/images/large/gregtech/gt.metaitem.02/23320.png deleted file mode 100644 index 4a82fe2a77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23321.png b/front/public/images/large/gregtech/gt.metaitem.02/23321.png deleted file mode 100644 index 056092298d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23323.png b/front/public/images/large/gregtech/gt.metaitem.02/23323.png deleted file mode 100644 index 07cf572058..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23324.png b/front/public/images/large/gregtech/gt.metaitem.02/23324.png deleted file mode 100644 index cbf59f4c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23325.png b/front/public/images/large/gregtech/gt.metaitem.02/23325.png deleted file mode 100644 index 77ec803e9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23326.png b/front/public/images/large/gregtech/gt.metaitem.02/23326.png deleted file mode 100644 index 586646d788..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23327.png b/front/public/images/large/gregtech/gt.metaitem.02/23327.png deleted file mode 100644 index 1614a5e5e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23328.png b/front/public/images/large/gregtech/gt.metaitem.02/23328.png deleted file mode 100644 index 57358c8bea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23329.png b/front/public/images/large/gregtech/gt.metaitem.02/23329.png deleted file mode 100644 index a89a3c8d71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23330.png b/front/public/images/large/gregtech/gt.metaitem.02/23330.png deleted file mode 100644 index eb306888a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23331.png b/front/public/images/large/gregtech/gt.metaitem.02/23331.png deleted file mode 100644 index 52424a00db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23333.png b/front/public/images/large/gregtech/gt.metaitem.02/23333.png deleted file mode 100644 index dae82d971c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23334.png b/front/public/images/large/gregtech/gt.metaitem.02/23334.png deleted file mode 100644 index 83aa064bf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23335.png b/front/public/images/large/gregtech/gt.metaitem.02/23335.png deleted file mode 100644 index 1786464aa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23336.png b/front/public/images/large/gregtech/gt.metaitem.02/23336.png deleted file mode 100644 index bce4497ac9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23337.png b/front/public/images/large/gregtech/gt.metaitem.02/23337.png deleted file mode 100644 index 6ad4c3575c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23338.png b/front/public/images/large/gregtech/gt.metaitem.02/23338.png deleted file mode 100644 index 9840b1bad7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23339.png b/front/public/images/large/gregtech/gt.metaitem.02/23339.png deleted file mode 100644 index 3608c026b0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23340.png b/front/public/images/large/gregtech/gt.metaitem.02/23340.png deleted file mode 100644 index 27bac29c5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23341.png b/front/public/images/large/gregtech/gt.metaitem.02/23341.png deleted file mode 100644 index 6fe848f14b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23342.png b/front/public/images/large/gregtech/gt.metaitem.02/23342.png deleted file mode 100644 index 0b0934ec40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23343.png b/front/public/images/large/gregtech/gt.metaitem.02/23343.png deleted file mode 100644 index 2513e1e51c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23344.png b/front/public/images/large/gregtech/gt.metaitem.02/23344.png deleted file mode 100644 index 7ba9966470..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23345.png b/front/public/images/large/gregtech/gt.metaitem.02/23345.png deleted file mode 100644 index d3b54419f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23346.png b/front/public/images/large/gregtech/gt.metaitem.02/23346.png deleted file mode 100644 index 69b5d6529f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23348.png b/front/public/images/large/gregtech/gt.metaitem.02/23348.png deleted file mode 100644 index a0250c97b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23349.png b/front/public/images/large/gregtech/gt.metaitem.02/23349.png deleted file mode 100644 index d4ad84975e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23350.png b/front/public/images/large/gregtech/gt.metaitem.02/23350.png deleted file mode 100644 index 39ec72163a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23351.png b/front/public/images/large/gregtech/gt.metaitem.02/23351.png deleted file mode 100644 index ad45e6dfc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23352.png b/front/public/images/large/gregtech/gt.metaitem.02/23352.png deleted file mode 100644 index 2ade2a6628..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23353.png b/front/public/images/large/gregtech/gt.metaitem.02/23353.png deleted file mode 100644 index 7f35329407..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23354.png b/front/public/images/large/gregtech/gt.metaitem.02/23354.png deleted file mode 100644 index 04ea1ab205..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23355.png b/front/public/images/large/gregtech/gt.metaitem.02/23355.png deleted file mode 100644 index 1dfd8b87df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23356.png b/front/public/images/large/gregtech/gt.metaitem.02/23356.png deleted file mode 100644 index a3e982452e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23357.png b/front/public/images/large/gregtech/gt.metaitem.02/23357.png deleted file mode 100644 index 5bdfa1560f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23358.png b/front/public/images/large/gregtech/gt.metaitem.02/23358.png deleted file mode 100644 index dc4effc569..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23359.png b/front/public/images/large/gregtech/gt.metaitem.02/23359.png deleted file mode 100644 index 20c3b342e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23360.png b/front/public/images/large/gregtech/gt.metaitem.02/23360.png deleted file mode 100644 index 6069c21581..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23361.png b/front/public/images/large/gregtech/gt.metaitem.02/23361.png deleted file mode 100644 index ce019dbd44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23362.png b/front/public/images/large/gregtech/gt.metaitem.02/23362.png deleted file mode 100644 index 6c873ea46d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23363.png b/front/public/images/large/gregtech/gt.metaitem.02/23363.png deleted file mode 100644 index 146e362c18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23364.png b/front/public/images/large/gregtech/gt.metaitem.02/23364.png deleted file mode 100644 index 5a1a164b3e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23365.png b/front/public/images/large/gregtech/gt.metaitem.02/23365.png deleted file mode 100644 index f4f4d48f7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23366.png b/front/public/images/large/gregtech/gt.metaitem.02/23366.png deleted file mode 100644 index 4c66a14b65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23367.png b/front/public/images/large/gregtech/gt.metaitem.02/23367.png deleted file mode 100644 index 7223e86e31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23368.png b/front/public/images/large/gregtech/gt.metaitem.02/23368.png deleted file mode 100644 index cb2cb51b01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23369.png b/front/public/images/large/gregtech/gt.metaitem.02/23369.png deleted file mode 100644 index e305255fc3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23370.png b/front/public/images/large/gregtech/gt.metaitem.02/23370.png deleted file mode 100644 index 4cff6a538c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23371.png b/front/public/images/large/gregtech/gt.metaitem.02/23371.png deleted file mode 100644 index 35c6581617..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23372.png b/front/public/images/large/gregtech/gt.metaitem.02/23372.png deleted file mode 100644 index bf3be49d2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23373.png b/front/public/images/large/gregtech/gt.metaitem.02/23373.png deleted file mode 100644 index b520a92c1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23374.png b/front/public/images/large/gregtech/gt.metaitem.02/23374.png deleted file mode 100644 index 4c1dc1ba08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23378.png b/front/public/images/large/gregtech/gt.metaitem.02/23378.png deleted file mode 100644 index a634b26f9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23379.png b/front/public/images/large/gregtech/gt.metaitem.02/23379.png deleted file mode 100644 index 92656d7e10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23380.png b/front/public/images/large/gregtech/gt.metaitem.02/23380.png deleted file mode 100644 index 04e763e0a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23381.png b/front/public/images/large/gregtech/gt.metaitem.02/23381.png deleted file mode 100644 index dc9bd7a974..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23382.png b/front/public/images/large/gregtech/gt.metaitem.02/23382.png deleted file mode 100644 index cf30c5698f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23383.png b/front/public/images/large/gregtech/gt.metaitem.02/23383.png deleted file mode 100644 index 67dd97a79a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23384.png b/front/public/images/large/gregtech/gt.metaitem.02/23384.png deleted file mode 100644 index 99a3e6cca9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23385.png b/front/public/images/large/gregtech/gt.metaitem.02/23385.png deleted file mode 100644 index 432d9ed405..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23386.png b/front/public/images/large/gregtech/gt.metaitem.02/23386.png deleted file mode 100644 index ce3d46b5d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23387.png b/front/public/images/large/gregtech/gt.metaitem.02/23387.png deleted file mode 100644 index d75094802c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23388.png b/front/public/images/large/gregtech/gt.metaitem.02/23388.png deleted file mode 100644 index cbf59f4c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23389.png b/front/public/images/large/gregtech/gt.metaitem.02/23389.png deleted file mode 100644 index a993df7c07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23390.png b/front/public/images/large/gregtech/gt.metaitem.02/23390.png deleted file mode 100644 index 6c0915d1c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23391.png b/front/public/images/large/gregtech/gt.metaitem.02/23391.png deleted file mode 100644 index c1b17020c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23392.png b/front/public/images/large/gregtech/gt.metaitem.02/23392.png deleted file mode 100644 index ec5caafd7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23393.png b/front/public/images/large/gregtech/gt.metaitem.02/23393.png deleted file mode 100644 index 20323856c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23394.png b/front/public/images/large/gregtech/gt.metaitem.02/23394.png deleted file mode 100644 index 57358c8bea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23395.png b/front/public/images/large/gregtech/gt.metaitem.02/23395.png deleted file mode 100644 index cbf59f4c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23397.png b/front/public/images/large/gregtech/gt.metaitem.02/23397.png deleted file mode 100644 index 785a85fd0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23398.png b/front/public/images/large/gregtech/gt.metaitem.02/23398.png deleted file mode 100644 index cb87ee21f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23399.png b/front/public/images/large/gregtech/gt.metaitem.02/23399.png deleted file mode 100644 index 284f46c2ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23400.png b/front/public/images/large/gregtech/gt.metaitem.02/23400.png deleted file mode 100644 index 313aa5aca2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23401.png b/front/public/images/large/gregtech/gt.metaitem.02/23401.png deleted file mode 100644 index c86b7ac8ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23402.png b/front/public/images/large/gregtech/gt.metaitem.02/23402.png deleted file mode 100644 index 6375d09f1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23403.png b/front/public/images/large/gregtech/gt.metaitem.02/23403.png deleted file mode 100644 index ecf535dff7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23404.png b/front/public/images/large/gregtech/gt.metaitem.02/23404.png deleted file mode 100644 index f9656fa0b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23405.png b/front/public/images/large/gregtech/gt.metaitem.02/23405.png deleted file mode 100644 index 6d1524314b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23406.png b/front/public/images/large/gregtech/gt.metaitem.02/23406.png deleted file mode 100644 index 0dfc964a0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23407.png b/front/public/images/large/gregtech/gt.metaitem.02/23407.png deleted file mode 100644 index 60bba47957..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23408.png b/front/public/images/large/gregtech/gt.metaitem.02/23408.png deleted file mode 100644 index 1c5354aa23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23470.png b/front/public/images/large/gregtech/gt.metaitem.02/23470.png deleted file mode 100644 index be001bb6bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23471.png b/front/public/images/large/gregtech/gt.metaitem.02/23471.png deleted file mode 100644 index 13e1b4144b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23472.png b/front/public/images/large/gregtech/gt.metaitem.02/23472.png deleted file mode 100644 index cbf59f4c85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23473.png b/front/public/images/large/gregtech/gt.metaitem.02/23473.png deleted file mode 100644 index 83aa064bf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23485.png b/front/public/images/large/gregtech/gt.metaitem.02/23485.png deleted file mode 100644 index b92712ca5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23488.png b/front/public/images/large/gregtech/gt.metaitem.02/23488.png deleted file mode 100644 index 780850d490..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23489.png b/front/public/images/large/gregtech/gt.metaitem.02/23489.png deleted file mode 100644 index 2db03b165c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23521.png b/front/public/images/large/gregtech/gt.metaitem.02/23521.png deleted file mode 100644 index 603b62d17d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23529.png b/front/public/images/large/gregtech/gt.metaitem.02/23529.png deleted file mode 100644 index 4638b65aa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23576.png b/front/public/images/large/gregtech/gt.metaitem.02/23576.png deleted file mode 100644 index fd8dedd3b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23581.png b/front/public/images/large/gregtech/gt.metaitem.02/23581.png deleted file mode 100644 index d3b6c0432a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23582.png b/front/public/images/large/gregtech/gt.metaitem.02/23582.png deleted file mode 100644 index c97611efb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23583.png b/front/public/images/large/gregtech/gt.metaitem.02/23583.png deleted file mode 100644 index a166e2cd58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23585.png b/front/public/images/large/gregtech/gt.metaitem.02/23585.png deleted file mode 100644 index 67f34c06e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23586.png b/front/public/images/large/gregtech/gt.metaitem.02/23586.png deleted file mode 100644 index 9153329e19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23588.png b/front/public/images/large/gregtech/gt.metaitem.02/23588.png deleted file mode 100644 index deacff81ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23599.png b/front/public/images/large/gregtech/gt.metaitem.02/23599.png deleted file mode 100644 index ce2916b865..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23610.png b/front/public/images/large/gregtech/gt.metaitem.02/23610.png deleted file mode 100644 index 12a90e44de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23613.png b/front/public/images/large/gregtech/gt.metaitem.02/23613.png deleted file mode 100644 index a35d4eabae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23631.png b/front/public/images/large/gregtech/gt.metaitem.02/23631.png deleted file mode 100644 index df6c014a47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23635.png b/front/public/images/large/gregtech/gt.metaitem.02/23635.png deleted file mode 100644 index eaf86ea809..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23636.png b/front/public/images/large/gregtech/gt.metaitem.02/23636.png deleted file mode 100644 index 6a0f5f28a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23649.png b/front/public/images/large/gregtech/gt.metaitem.02/23649.png deleted file mode 100644 index ec810b1d8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23765.png b/front/public/images/large/gregtech/gt.metaitem.02/23765.png deleted file mode 100644 index 7b17eefc43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23770.png b/front/public/images/large/gregtech/gt.metaitem.02/23770.png deleted file mode 100644 index 4e136186ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23772.png b/front/public/images/large/gregtech/gt.metaitem.02/23772.png deleted file mode 100644 index c8a5cd9a49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23829.png b/front/public/images/large/gregtech/gt.metaitem.02/23829.png deleted file mode 100644 index b215a838af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23856.png b/front/public/images/large/gregtech/gt.metaitem.02/23856.png deleted file mode 100644 index 6d93943683..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23868.png b/front/public/images/large/gregtech/gt.metaitem.02/23868.png deleted file mode 100644 index cea52c2045..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23874.png b/front/public/images/large/gregtech/gt.metaitem.02/23874.png deleted file mode 100644 index 146e362c18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23880.png b/front/public/images/large/gregtech/gt.metaitem.02/23880.png deleted file mode 100644 index 9153329e19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23884.png b/front/public/images/large/gregtech/gt.metaitem.02/23884.png deleted file mode 100644 index 77ec803e9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23912.png b/front/public/images/large/gregtech/gt.metaitem.02/23912.png deleted file mode 100644 index fe16a1ce58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23913.png b/front/public/images/large/gregtech/gt.metaitem.02/23913.png deleted file mode 100644 index a0250c97b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23951.png b/front/public/images/large/gregtech/gt.metaitem.02/23951.png deleted file mode 100644 index f2fff0a380..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23952.png b/front/public/images/large/gregtech/gt.metaitem.02/23952.png deleted file mode 100644 index ad8a2139ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23956.png b/front/public/images/large/gregtech/gt.metaitem.02/23956.png deleted file mode 100644 index bee90882e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23966.png b/front/public/images/large/gregtech/gt.metaitem.02/23966.png deleted file mode 100644 index 7c01e5b122..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23970.png b/front/public/images/large/gregtech/gt.metaitem.02/23970.png deleted file mode 100644 index 9efcd598ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23974.png b/front/public/images/large/gregtech/gt.metaitem.02/23974.png deleted file mode 100644 index ad19424556..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23975.png b/front/public/images/large/gregtech/gt.metaitem.02/23975.png deleted file mode 100644 index a3ff128cd3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23976.png b/front/public/images/large/gregtech/gt.metaitem.02/23976.png deleted file mode 100644 index 3844ae526f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23977.png b/front/public/images/large/gregtech/gt.metaitem.02/23977.png deleted file mode 100644 index 7abb826f0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23978.png b/front/public/images/large/gregtech/gt.metaitem.02/23978.png deleted file mode 100644 index 04cdc012f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23979.png b/front/public/images/large/gregtech/gt.metaitem.02/23979.png deleted file mode 100644 index 158a253376..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23980.png b/front/public/images/large/gregtech/gt.metaitem.02/23980.png deleted file mode 100644 index 7346e09866..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23981.png b/front/public/images/large/gregtech/gt.metaitem.02/23981.png deleted file mode 100644 index 6d22e3a438..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23982.png b/front/public/images/large/gregtech/gt.metaitem.02/23982.png deleted file mode 100644 index 66cbeafc9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23984.png b/front/public/images/large/gregtech/gt.metaitem.02/23984.png deleted file mode 100644 index 57358c8bea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23985.png b/front/public/images/large/gregtech/gt.metaitem.02/23985.png deleted file mode 100644 index b35c0eb71c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23986.png b/front/public/images/large/gregtech/gt.metaitem.02/23986.png deleted file mode 100644 index 63a71046b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23987.png b/front/public/images/large/gregtech/gt.metaitem.02/23987.png deleted file mode 100644 index c88cf1b9d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23988.png b/front/public/images/large/gregtech/gt.metaitem.02/23988.png deleted file mode 100644 index c98e5ad7fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23989.png b/front/public/images/large/gregtech/gt.metaitem.02/23989.png deleted file mode 100644 index 554e040bdb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23990.png b/front/public/images/large/gregtech/gt.metaitem.02/23990.png deleted file mode 100644 index 64cee8e074..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23991.png b/front/public/images/large/gregtech/gt.metaitem.02/23991.png deleted file mode 100644 index 2ddd7668f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/23992.png b/front/public/images/large/gregtech/gt.metaitem.02/23992.png deleted file mode 100644 index 08d0a4b205..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/23992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24006.png b/front/public/images/large/gregtech/gt.metaitem.02/24006.png deleted file mode 100644 index 962cb0ca57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24008.png b/front/public/images/large/gregtech/gt.metaitem.02/24008.png deleted file mode 100644 index bf5283f6ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24010.png b/front/public/images/large/gregtech/gt.metaitem.02/24010.png deleted file mode 100644 index 6b0aa422e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24018.png b/front/public/images/large/gregtech/gt.metaitem.02/24018.png deleted file mode 100644 index eb74d522cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24019.png b/front/public/images/large/gregtech/gt.metaitem.02/24019.png deleted file mode 100644 index c53486ab7f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24020.png b/front/public/images/large/gregtech/gt.metaitem.02/24020.png deleted file mode 100644 index c7349e5fdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24025.png b/front/public/images/large/gregtech/gt.metaitem.02/24025.png deleted file mode 100644 index 90ecd75e28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24027.png b/front/public/images/large/gregtech/gt.metaitem.02/24027.png deleted file mode 100644 index 717a46bcc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24028.png b/front/public/images/large/gregtech/gt.metaitem.02/24028.png deleted file mode 100644 index 64f7c9f3a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24029.png b/front/public/images/large/gregtech/gt.metaitem.02/24029.png deleted file mode 100644 index 574c961206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24029.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24030.png b/front/public/images/large/gregtech/gt.metaitem.02/24030.png deleted file mode 100644 index 9bf79ce91f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24031.png b/front/public/images/large/gregtech/gt.metaitem.02/24031.png deleted file mode 100644 index ce209657fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24032.png b/front/public/images/large/gregtech/gt.metaitem.02/24032.png deleted file mode 100644 index 7168e021d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24033.png b/front/public/images/large/gregtech/gt.metaitem.02/24033.png deleted file mode 100644 index d8bb83de76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24034.png b/front/public/images/large/gregtech/gt.metaitem.02/24034.png deleted file mode 100644 index 13016ed855..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24035.png b/front/public/images/large/gregtech/gt.metaitem.02/24035.png deleted file mode 100644 index 3de2843e22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24036.png b/front/public/images/large/gregtech/gt.metaitem.02/24036.png deleted file mode 100644 index 8041b1cdcb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24037.png b/front/public/images/large/gregtech/gt.metaitem.02/24037.png deleted file mode 100644 index dd459c5c1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24039.png b/front/public/images/large/gregtech/gt.metaitem.02/24039.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24043.png b/front/public/images/large/gregtech/gt.metaitem.02/24043.png deleted file mode 100644 index 3ad7e1d6df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24045.png b/front/public/images/large/gregtech/gt.metaitem.02/24045.png deleted file mode 100644 index 20e19fabfd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24047.png b/front/public/images/large/gregtech/gt.metaitem.02/24047.png deleted file mode 100644 index 6920dee897..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24048.png b/front/public/images/large/gregtech/gt.metaitem.02/24048.png deleted file mode 100644 index a4cdd329cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24052.png b/front/public/images/large/gregtech/gt.metaitem.02/24052.png deleted file mode 100644 index 6d9c121d61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24054.png b/front/public/images/large/gregtech/gt.metaitem.02/24054.png deleted file mode 100644 index dd459c5c1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24056.png b/front/public/images/large/gregtech/gt.metaitem.02/24056.png deleted file mode 100644 index 70034a088c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24057.png b/front/public/images/large/gregtech/gt.metaitem.02/24057.png deleted file mode 100644 index 3d445cc3ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24058.png b/front/public/images/large/gregtech/gt.metaitem.02/24058.png deleted file mode 100644 index 9b639d64c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24059.png b/front/public/images/large/gregtech/gt.metaitem.02/24059.png deleted file mode 100644 index 4393dec868..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24062.png b/front/public/images/large/gregtech/gt.metaitem.02/24062.png deleted file mode 100644 index 8c0c9b9b41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24063.png b/front/public/images/large/gregtech/gt.metaitem.02/24063.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24064.png b/front/public/images/large/gregtech/gt.metaitem.02/24064.png deleted file mode 100644 index 0af6cb3e71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24065.png b/front/public/images/large/gregtech/gt.metaitem.02/24065.png deleted file mode 100644 index 880a4f3989..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24066.png b/front/public/images/large/gregtech/gt.metaitem.02/24066.png deleted file mode 100644 index ac68374f6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24066.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24067.png b/front/public/images/large/gregtech/gt.metaitem.02/24067.png deleted file mode 100644 index 04d24d5b6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24068.png b/front/public/images/large/gregtech/gt.metaitem.02/24068.png deleted file mode 100644 index 451813ffcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24069.png b/front/public/images/large/gregtech/gt.metaitem.02/24069.png deleted file mode 100644 index 0544c592db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24070.png b/front/public/images/large/gregtech/gt.metaitem.02/24070.png deleted file mode 100644 index 75488c9121..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24071.png b/front/public/images/large/gregtech/gt.metaitem.02/24071.png deleted file mode 100644 index 3cb8b7c4e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24072.png b/front/public/images/large/gregtech/gt.metaitem.02/24072.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24073.png b/front/public/images/large/gregtech/gt.metaitem.02/24073.png deleted file mode 100644 index 3f71703220..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24074.png b/front/public/images/large/gregtech/gt.metaitem.02/24074.png deleted file mode 100644 index ff6efb0787..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24075.png b/front/public/images/large/gregtech/gt.metaitem.02/24075.png deleted file mode 100644 index c6bee5fa42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24076.png b/front/public/images/large/gregtech/gt.metaitem.02/24076.png deleted file mode 100644 index 47c800b8fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24077.png b/front/public/images/large/gregtech/gt.metaitem.02/24077.png deleted file mode 100644 index 6f135e978b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24078.png b/front/public/images/large/gregtech/gt.metaitem.02/24078.png deleted file mode 100644 index e386a9cb12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24080.png b/front/public/images/large/gregtech/gt.metaitem.02/24080.png deleted file mode 100644 index 979d3b745a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24081.png b/front/public/images/large/gregtech/gt.metaitem.02/24081.png deleted file mode 100644 index 574c961206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24083.png b/front/public/images/large/gregtech/gt.metaitem.02/24083.png deleted file mode 100644 index 6c26079d79..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24084.png b/front/public/images/large/gregtech/gt.metaitem.02/24084.png deleted file mode 100644 index 56db72ee27..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24085.png b/front/public/images/large/gregtech/gt.metaitem.02/24085.png deleted file mode 100644 index 1c05a020de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24086.png b/front/public/images/large/gregtech/gt.metaitem.02/24086.png deleted file mode 100644 index 6b6b3eea61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24089.png b/front/public/images/large/gregtech/gt.metaitem.02/24089.png deleted file mode 100644 index bdc8352804..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24090.png b/front/public/images/large/gregtech/gt.metaitem.02/24090.png deleted file mode 100644 index 5acdb6dc9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24096.png b/front/public/images/large/gregtech/gt.metaitem.02/24096.png deleted file mode 100644 index 00dfdb3f21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24097.png b/front/public/images/large/gregtech/gt.metaitem.02/24097.png deleted file mode 100644 index b5ca8db5a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24098.png b/front/public/images/large/gregtech/gt.metaitem.02/24098.png deleted file mode 100644 index 25d3f77de3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24100.png b/front/public/images/large/gregtech/gt.metaitem.02/24100.png deleted file mode 100644 index 4d871f1d34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24101.png b/front/public/images/large/gregtech/gt.metaitem.02/24101.png deleted file mode 100644 index 063690044a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24103.png b/front/public/images/large/gregtech/gt.metaitem.02/24103.png deleted file mode 100644 index 7168e021d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24111.png b/front/public/images/large/gregtech/gt.metaitem.02/24111.png deleted file mode 100644 index 4c7055abf0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24112.png b/front/public/images/large/gregtech/gt.metaitem.02/24112.png deleted file mode 100644 index b97dff7e6b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24129.png b/front/public/images/large/gregtech/gt.metaitem.02/24129.png deleted file mode 100644 index ce209657fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24131.png b/front/public/images/large/gregtech/gt.metaitem.02/24131.png deleted file mode 100644 index 5b7054e12e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24134.png b/front/public/images/large/gregtech/gt.metaitem.02/24134.png deleted file mode 100644 index 462c7671c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24139.png b/front/public/images/large/gregtech/gt.metaitem.02/24139.png deleted file mode 100644 index 1e63abdeb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24141.png b/front/public/images/large/gregtech/gt.metaitem.02/24141.png deleted file mode 100644 index 333fbbae47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24143.png b/front/public/images/large/gregtech/gt.metaitem.02/24143.png deleted file mode 100644 index ebe00c2850..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24201.png b/front/public/images/large/gregtech/gt.metaitem.02/24201.png deleted file mode 100644 index b8d369042d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24202.png b/front/public/images/large/gregtech/gt.metaitem.02/24202.png deleted file mode 100644 index 75d33654d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24203.png b/front/public/images/large/gregtech/gt.metaitem.02/24203.png deleted file mode 100644 index 563d484c43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24205.png b/front/public/images/large/gregtech/gt.metaitem.02/24205.png deleted file mode 100644 index da5dbce89e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24300.png b/front/public/images/large/gregtech/gt.metaitem.02/24300.png deleted file mode 100644 index d620cc3cd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24301.png b/front/public/images/large/gregtech/gt.metaitem.02/24301.png deleted file mode 100644 index d343a78ab6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24302.png b/front/public/images/large/gregtech/gt.metaitem.02/24302.png deleted file mode 100644 index 264b0a4040..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24303.png b/front/public/images/large/gregtech/gt.metaitem.02/24303.png deleted file mode 100644 index 4e185ea1b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24304.png b/front/public/images/large/gregtech/gt.metaitem.02/24304.png deleted file mode 100644 index 1e08c72086..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24305.png b/front/public/images/large/gregtech/gt.metaitem.02/24305.png deleted file mode 100644 index 6d9c121d61..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24306.png b/front/public/images/large/gregtech/gt.metaitem.02/24306.png deleted file mode 100644 index 9de53c6aa7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24307.png b/front/public/images/large/gregtech/gt.metaitem.02/24307.png deleted file mode 100644 index 1e08c72086..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24308.png b/front/public/images/large/gregtech/gt.metaitem.02/24308.png deleted file mode 100644 index 200d75a48a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24309.png b/front/public/images/large/gregtech/gt.metaitem.02/24309.png deleted file mode 100644 index c7df71103f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24310.png b/front/public/images/large/gregtech/gt.metaitem.02/24310.png deleted file mode 100644 index ad77a074e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24311.png b/front/public/images/large/gregtech/gt.metaitem.02/24311.png deleted file mode 100644 index 0e6ea7f992..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24312.png b/front/public/images/large/gregtech/gt.metaitem.02/24312.png deleted file mode 100644 index d428e535e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24313.png b/front/public/images/large/gregtech/gt.metaitem.02/24313.png deleted file mode 100644 index 512371c8ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24314.png b/front/public/images/large/gregtech/gt.metaitem.02/24314.png deleted file mode 100644 index dbd1f298fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24315.png b/front/public/images/large/gregtech/gt.metaitem.02/24315.png deleted file mode 100644 index 84691e0917..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24316.png b/front/public/images/large/gregtech/gt.metaitem.02/24316.png deleted file mode 100644 index 586284eec0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24317.png b/front/public/images/large/gregtech/gt.metaitem.02/24317.png deleted file mode 100644 index ae07e2c98b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24318.png b/front/public/images/large/gregtech/gt.metaitem.02/24318.png deleted file mode 100644 index 754c1aee32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24319.png b/front/public/images/large/gregtech/gt.metaitem.02/24319.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24320.png b/front/public/images/large/gregtech/gt.metaitem.02/24320.png deleted file mode 100644 index 8d38204d9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24321.png b/front/public/images/large/gregtech/gt.metaitem.02/24321.png deleted file mode 100644 index f966e3d9b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24323.png b/front/public/images/large/gregtech/gt.metaitem.02/24323.png deleted file mode 100644 index 707ed83f07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24324.png b/front/public/images/large/gregtech/gt.metaitem.02/24324.png deleted file mode 100644 index 574c961206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24325.png b/front/public/images/large/gregtech/gt.metaitem.02/24325.png deleted file mode 100644 index 56a326cf84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24326.png b/front/public/images/large/gregtech/gt.metaitem.02/24326.png deleted file mode 100644 index 5ad938143b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24327.png b/front/public/images/large/gregtech/gt.metaitem.02/24327.png deleted file mode 100644 index b0a88fd3ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24328.png b/front/public/images/large/gregtech/gt.metaitem.02/24328.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24329.png b/front/public/images/large/gregtech/gt.metaitem.02/24329.png deleted file mode 100644 index 4d96c9f263..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24330.png b/front/public/images/large/gregtech/gt.metaitem.02/24330.png deleted file mode 100644 index f445ad61ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24331.png b/front/public/images/large/gregtech/gt.metaitem.02/24331.png deleted file mode 100644 index 113cb99f3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24333.png b/front/public/images/large/gregtech/gt.metaitem.02/24333.png deleted file mode 100644 index c2058048f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24334.png b/front/public/images/large/gregtech/gt.metaitem.02/24334.png deleted file mode 100644 index 04d24d5b6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24335.png b/front/public/images/large/gregtech/gt.metaitem.02/24335.png deleted file mode 100644 index c1ad4e61ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24336.png b/front/public/images/large/gregtech/gt.metaitem.02/24336.png deleted file mode 100644 index d6199844c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24337.png b/front/public/images/large/gregtech/gt.metaitem.02/24337.png deleted file mode 100644 index e2a7d4142b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24338.png b/front/public/images/large/gregtech/gt.metaitem.02/24338.png deleted file mode 100644 index b798fe7ae4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24339.png b/front/public/images/large/gregtech/gt.metaitem.02/24339.png deleted file mode 100644 index 9e3b729805..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24340.png b/front/public/images/large/gregtech/gt.metaitem.02/24340.png deleted file mode 100644 index 3726900a83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24341.png b/front/public/images/large/gregtech/gt.metaitem.02/24341.png deleted file mode 100644 index 34ef395e6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24342.png b/front/public/images/large/gregtech/gt.metaitem.02/24342.png deleted file mode 100644 index 2ab2463187..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24343.png b/front/public/images/large/gregtech/gt.metaitem.02/24343.png deleted file mode 100644 index d60f5923f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24344.png b/front/public/images/large/gregtech/gt.metaitem.02/24344.png deleted file mode 100644 index 65bef8dab1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24345.png b/front/public/images/large/gregtech/gt.metaitem.02/24345.png deleted file mode 100644 index ad1ac24689..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24346.png b/front/public/images/large/gregtech/gt.metaitem.02/24346.png deleted file mode 100644 index 5c83bf068e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24348.png b/front/public/images/large/gregtech/gt.metaitem.02/24348.png deleted file mode 100644 index b697eefa4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24349.png b/front/public/images/large/gregtech/gt.metaitem.02/24349.png deleted file mode 100644 index 24c7e21cab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24350.png b/front/public/images/large/gregtech/gt.metaitem.02/24350.png deleted file mode 100644 index efd279cf5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24351.png b/front/public/images/large/gregtech/gt.metaitem.02/24351.png deleted file mode 100644 index 0b3d321e21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24352.png b/front/public/images/large/gregtech/gt.metaitem.02/24352.png deleted file mode 100644 index 233fc5ae82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24353.png b/front/public/images/large/gregtech/gt.metaitem.02/24353.png deleted file mode 100644 index a66f44d10e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24354.png b/front/public/images/large/gregtech/gt.metaitem.02/24354.png deleted file mode 100644 index 6e88ef85c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24355.png b/front/public/images/large/gregtech/gt.metaitem.02/24355.png deleted file mode 100644 index 6a3dd54707..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24356.png b/front/public/images/large/gregtech/gt.metaitem.02/24356.png deleted file mode 100644 index 61f57ff096..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24357.png b/front/public/images/large/gregtech/gt.metaitem.02/24357.png deleted file mode 100644 index f0d7b2cf1e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24358.png b/front/public/images/large/gregtech/gt.metaitem.02/24358.png deleted file mode 100644 index 55b7629048..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24359.png b/front/public/images/large/gregtech/gt.metaitem.02/24359.png deleted file mode 100644 index 4855bc8ba4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24360.png b/front/public/images/large/gregtech/gt.metaitem.02/24360.png deleted file mode 100644 index 541ce6c0ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24361.png b/front/public/images/large/gregtech/gt.metaitem.02/24361.png deleted file mode 100644 index 5a7a2d672b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24362.png b/front/public/images/large/gregtech/gt.metaitem.02/24362.png deleted file mode 100644 index 61baafb09a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24363.png b/front/public/images/large/gregtech/gt.metaitem.02/24363.png deleted file mode 100644 index 7168e021d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24364.png b/front/public/images/large/gregtech/gt.metaitem.02/24364.png deleted file mode 100644 index 4afc4ab22f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24365.png b/front/public/images/large/gregtech/gt.metaitem.02/24365.png deleted file mode 100644 index e6c36ea2bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24366.png b/front/public/images/large/gregtech/gt.metaitem.02/24366.png deleted file mode 100644 index 327c8c21b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24367.png b/front/public/images/large/gregtech/gt.metaitem.02/24367.png deleted file mode 100644 index 6c6473b3b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24368.png b/front/public/images/large/gregtech/gt.metaitem.02/24368.png deleted file mode 100644 index cfd7659fca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24369.png b/front/public/images/large/gregtech/gt.metaitem.02/24369.png deleted file mode 100644 index a0c826e353..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24370.png b/front/public/images/large/gregtech/gt.metaitem.02/24370.png deleted file mode 100644 index 5f22155a5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24371.png b/front/public/images/large/gregtech/gt.metaitem.02/24371.png deleted file mode 100644 index 49858be15a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24372.png b/front/public/images/large/gregtech/gt.metaitem.02/24372.png deleted file mode 100644 index 4a7ab6f858..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24373.png b/front/public/images/large/gregtech/gt.metaitem.02/24373.png deleted file mode 100644 index c1a9b94f98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24374.png b/front/public/images/large/gregtech/gt.metaitem.02/24374.png deleted file mode 100644 index 04b3d1ea32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24378.png b/front/public/images/large/gregtech/gt.metaitem.02/24378.png deleted file mode 100644 index 3657055851..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24379.png b/front/public/images/large/gregtech/gt.metaitem.02/24379.png deleted file mode 100644 index 64f9d7ba28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24380.png b/front/public/images/large/gregtech/gt.metaitem.02/24380.png deleted file mode 100644 index be14b6d91b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24381.png b/front/public/images/large/gregtech/gt.metaitem.02/24381.png deleted file mode 100644 index 1818eb1eba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24382.png b/front/public/images/large/gregtech/gt.metaitem.02/24382.png deleted file mode 100644 index 2b0795029a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24383.png b/front/public/images/large/gregtech/gt.metaitem.02/24383.png deleted file mode 100644 index 574216ec53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24384.png b/front/public/images/large/gregtech/gt.metaitem.02/24384.png deleted file mode 100644 index e1aa157c58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24385.png b/front/public/images/large/gregtech/gt.metaitem.02/24385.png deleted file mode 100644 index c446f9b482..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24386.png b/front/public/images/large/gregtech/gt.metaitem.02/24386.png deleted file mode 100644 index 05e182da6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24387.png b/front/public/images/large/gregtech/gt.metaitem.02/24387.png deleted file mode 100644 index 80ed944b94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24388.png b/front/public/images/large/gregtech/gt.metaitem.02/24388.png deleted file mode 100644 index 574c961206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24389.png b/front/public/images/large/gregtech/gt.metaitem.02/24389.png deleted file mode 100644 index 1a341b6584..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24390.png b/front/public/images/large/gregtech/gt.metaitem.02/24390.png deleted file mode 100644 index da400ba040..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24391.png b/front/public/images/large/gregtech/gt.metaitem.02/24391.png deleted file mode 100644 index 53f6e18a42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24392.png b/front/public/images/large/gregtech/gt.metaitem.02/24392.png deleted file mode 100644 index f2cedc420b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24393.png b/front/public/images/large/gregtech/gt.metaitem.02/24393.png deleted file mode 100644 index 5413f1f99b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24394.png b/front/public/images/large/gregtech/gt.metaitem.02/24394.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24395.png b/front/public/images/large/gregtech/gt.metaitem.02/24395.png deleted file mode 100644 index 574c961206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24397.png b/front/public/images/large/gregtech/gt.metaitem.02/24397.png deleted file mode 100644 index c8e05ca655..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24398.png b/front/public/images/large/gregtech/gt.metaitem.02/24398.png deleted file mode 100644 index 11cb5268ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24399.png b/front/public/images/large/gregtech/gt.metaitem.02/24399.png deleted file mode 100644 index 6b8e697f85..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24400.png b/front/public/images/large/gregtech/gt.metaitem.02/24400.png deleted file mode 100644 index cc20e936ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24401.png b/front/public/images/large/gregtech/gt.metaitem.02/24401.png deleted file mode 100644 index a87b1abf5d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24402.png b/front/public/images/large/gregtech/gt.metaitem.02/24402.png deleted file mode 100644 index 547d6aed0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24403.png b/front/public/images/large/gregtech/gt.metaitem.02/24403.png deleted file mode 100644 index aabe812733..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24404.png b/front/public/images/large/gregtech/gt.metaitem.02/24404.png deleted file mode 100644 index a37f28f78b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24405.png b/front/public/images/large/gregtech/gt.metaitem.02/24405.png deleted file mode 100644 index 2e287ea435..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24406.png b/front/public/images/large/gregtech/gt.metaitem.02/24406.png deleted file mode 100644 index 5c5b0a8865..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24407.png b/front/public/images/large/gregtech/gt.metaitem.02/24407.png deleted file mode 100644 index 6274785584..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24408.png b/front/public/images/large/gregtech/gt.metaitem.02/24408.png deleted file mode 100644 index f4fb0bcc55..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24470.png b/front/public/images/large/gregtech/gt.metaitem.02/24470.png deleted file mode 100644 index d300d80fa9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24471.png b/front/public/images/large/gregtech/gt.metaitem.02/24471.png deleted file mode 100644 index 3d445cc3ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24472.png b/front/public/images/large/gregtech/gt.metaitem.02/24472.png deleted file mode 100644 index 574c961206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24473.png b/front/public/images/large/gregtech/gt.metaitem.02/24473.png deleted file mode 100644 index 04d24d5b6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24485.png b/front/public/images/large/gregtech/gt.metaitem.02/24485.png deleted file mode 100644 index 5a251cc14d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24488.png b/front/public/images/large/gregtech/gt.metaitem.02/24488.png deleted file mode 100644 index b62eac2a20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24489.png b/front/public/images/large/gregtech/gt.metaitem.02/24489.png deleted file mode 100644 index 2e9ca23aac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24521.png b/front/public/images/large/gregtech/gt.metaitem.02/24521.png deleted file mode 100644 index 754c1aee32..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24529.png b/front/public/images/large/gregtech/gt.metaitem.02/24529.png deleted file mode 100644 index 0e0c288238..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24576.png b/front/public/images/large/gregtech/gt.metaitem.02/24576.png deleted file mode 100644 index f593e5ffa8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24581.png b/front/public/images/large/gregtech/gt.metaitem.02/24581.png deleted file mode 100644 index 5b7a1f6e69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24582.png b/front/public/images/large/gregtech/gt.metaitem.02/24582.png deleted file mode 100644 index bf7a6e691d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24583.png b/front/public/images/large/gregtech/gt.metaitem.02/24583.png deleted file mode 100644 index 1b187c012f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24585.png b/front/public/images/large/gregtech/gt.metaitem.02/24585.png deleted file mode 100644 index d3ac0b6b53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24586.png b/front/public/images/large/gregtech/gt.metaitem.02/24586.png deleted file mode 100644 index 1bd3e0da24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24588.png b/front/public/images/large/gregtech/gt.metaitem.02/24588.png deleted file mode 100644 index 668553296e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24599.png b/front/public/images/large/gregtech/gt.metaitem.02/24599.png deleted file mode 100644 index 6c80a0db96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24610.png b/front/public/images/large/gregtech/gt.metaitem.02/24610.png deleted file mode 100644 index 6de03f70d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24613.png b/front/public/images/large/gregtech/gt.metaitem.02/24613.png deleted file mode 100644 index 8f269e3442..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24631.png b/front/public/images/large/gregtech/gt.metaitem.02/24631.png deleted file mode 100644 index 5ef0fcc9e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24635.png b/front/public/images/large/gregtech/gt.metaitem.02/24635.png deleted file mode 100644 index 5ed5d6c76c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24636.png b/front/public/images/large/gregtech/gt.metaitem.02/24636.png deleted file mode 100644 index 2abba7381a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24649.png b/front/public/images/large/gregtech/gt.metaitem.02/24649.png deleted file mode 100644 index 6e24c292d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24765.png b/front/public/images/large/gregtech/gt.metaitem.02/24765.png deleted file mode 100644 index 403c6f7076..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24770.png b/front/public/images/large/gregtech/gt.metaitem.02/24770.png deleted file mode 100644 index 4f54588221..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24772.png b/front/public/images/large/gregtech/gt.metaitem.02/24772.png deleted file mode 100644 index 7bb637cbe3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24829.png b/front/public/images/large/gregtech/gt.metaitem.02/24829.png deleted file mode 100644 index 10032fa95d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24856.png b/front/public/images/large/gregtech/gt.metaitem.02/24856.png deleted file mode 100644 index 686ec3c7f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24868.png b/front/public/images/large/gregtech/gt.metaitem.02/24868.png deleted file mode 100644 index 1068979c35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24874.png b/front/public/images/large/gregtech/gt.metaitem.02/24874.png deleted file mode 100644 index 7168e021d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24880.png b/front/public/images/large/gregtech/gt.metaitem.02/24880.png deleted file mode 100644 index 1bd3e0da24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24884.png b/front/public/images/large/gregtech/gt.metaitem.02/24884.png deleted file mode 100644 index 56a326cf84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24912.png b/front/public/images/large/gregtech/gt.metaitem.02/24912.png deleted file mode 100644 index b1e636f913..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24913.png b/front/public/images/large/gregtech/gt.metaitem.02/24913.png deleted file mode 100644 index b697eefa4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24951.png b/front/public/images/large/gregtech/gt.metaitem.02/24951.png deleted file mode 100644 index 5ee98e3cef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24952.png b/front/public/images/large/gregtech/gt.metaitem.02/24952.png deleted file mode 100644 index aa63321409..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24956.png b/front/public/images/large/gregtech/gt.metaitem.02/24956.png deleted file mode 100644 index 0a6527e382..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24966.png b/front/public/images/large/gregtech/gt.metaitem.02/24966.png deleted file mode 100644 index 9926570374..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24970.png b/front/public/images/large/gregtech/gt.metaitem.02/24970.png deleted file mode 100644 index 85a9ddc6d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24974.png b/front/public/images/large/gregtech/gt.metaitem.02/24974.png deleted file mode 100644 index bb2defebf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24975.png b/front/public/images/large/gregtech/gt.metaitem.02/24975.png deleted file mode 100644 index 2008eef2ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24976.png b/front/public/images/large/gregtech/gt.metaitem.02/24976.png deleted file mode 100644 index 14e76d2cf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24977.png b/front/public/images/large/gregtech/gt.metaitem.02/24977.png deleted file mode 100644 index 9fcbe2b8d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24978.png b/front/public/images/large/gregtech/gt.metaitem.02/24978.png deleted file mode 100644 index a4bea1885b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24979.png b/front/public/images/large/gregtech/gt.metaitem.02/24979.png deleted file mode 100644 index b01071ba9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24980.png b/front/public/images/large/gregtech/gt.metaitem.02/24980.png deleted file mode 100644 index e06632cb68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24981.png b/front/public/images/large/gregtech/gt.metaitem.02/24981.png deleted file mode 100644 index ba6dbf7bb6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24982.png b/front/public/images/large/gregtech/gt.metaitem.02/24982.png deleted file mode 100644 index 78738d9f10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24984.png b/front/public/images/large/gregtech/gt.metaitem.02/24984.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24985.png b/front/public/images/large/gregtech/gt.metaitem.02/24985.png deleted file mode 100644 index 6447160f47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24986.png b/front/public/images/large/gregtech/gt.metaitem.02/24986.png deleted file mode 100644 index 58af51cb50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24987.png b/front/public/images/large/gregtech/gt.metaitem.02/24987.png deleted file mode 100644 index 4fc91d7810..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24988.png b/front/public/images/large/gregtech/gt.metaitem.02/24988.png deleted file mode 100644 index 22840e051a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24989.png b/front/public/images/large/gregtech/gt.metaitem.02/24989.png deleted file mode 100644 index dbf385c786..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24990.png b/front/public/images/large/gregtech/gt.metaitem.02/24990.png deleted file mode 100644 index 46c2326c4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24991.png b/front/public/images/large/gregtech/gt.metaitem.02/24991.png deleted file mode 100644 index 079289cc95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/24992.png b/front/public/images/large/gregtech/gt.metaitem.02/24992.png deleted file mode 100644 index b2b6646949..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/24992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25008.png b/front/public/images/large/gregtech/gt.metaitem.02/25008.png deleted file mode 100644 index 0cc2ce130e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25010.png b/front/public/images/large/gregtech/gt.metaitem.02/25010.png deleted file mode 100644 index 4030b04973..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25019.png b/front/public/images/large/gregtech/gt.metaitem.02/25019.png deleted file mode 100644 index e1100e8b5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25028.png b/front/public/images/large/gregtech/gt.metaitem.02/25028.png deleted file mode 100644 index 2091fbc9e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25030.png b/front/public/images/large/gregtech/gt.metaitem.02/25030.png deleted file mode 100644 index c87b3d8ff3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25031.png b/front/public/images/large/gregtech/gt.metaitem.02/25031.png deleted file mode 100644 index 776d044c58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25032.png b/front/public/images/large/gregtech/gt.metaitem.02/25032.png deleted file mode 100644 index bc66981bde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25033.png b/front/public/images/large/gregtech/gt.metaitem.02/25033.png deleted file mode 100644 index 2c4118935c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25034.png b/front/public/images/large/gregtech/gt.metaitem.02/25034.png deleted file mode 100644 index 1fc32986c5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25048.png b/front/public/images/large/gregtech/gt.metaitem.02/25048.png deleted file mode 100644 index 2c3dc2506b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25052.png b/front/public/images/large/gregtech/gt.metaitem.02/25052.png deleted file mode 100644 index ecf62b04e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25054.png b/front/public/images/large/gregtech/gt.metaitem.02/25054.png deleted file mode 100644 index ca813fa2ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25067.png b/front/public/images/large/gregtech/gt.metaitem.02/25067.png deleted file mode 100644 index c6d0b8fe98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25081.png b/front/public/images/large/gregtech/gt.metaitem.02/25081.png deleted file mode 100644 index ce7db0ca04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25083.png b/front/public/images/large/gregtech/gt.metaitem.02/25083.png deleted file mode 100644 index 7b0afe4397..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25084.png b/front/public/images/large/gregtech/gt.metaitem.02/25084.png deleted file mode 100644 index 0f5f6e4fbe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25085.png b/front/public/images/large/gregtech/gt.metaitem.02/25085.png deleted file mode 100644 index 9fb625dbe4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25086.png b/front/public/images/large/gregtech/gt.metaitem.02/25086.png deleted file mode 100644 index e530e6c68f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25089.png b/front/public/images/large/gregtech/gt.metaitem.02/25089.png deleted file mode 100644 index 9219ce6501..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25090.png b/front/public/images/large/gregtech/gt.metaitem.02/25090.png deleted file mode 100644 index 88ad80a036..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25096.png b/front/public/images/large/gregtech/gt.metaitem.02/25096.png deleted file mode 100644 index a6054d8762..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25097.png b/front/public/images/large/gregtech/gt.metaitem.02/25097.png deleted file mode 100644 index 2946b67236..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25098.png b/front/public/images/large/gregtech/gt.metaitem.02/25098.png deleted file mode 100644 index 68526d08d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25100.png b/front/public/images/large/gregtech/gt.metaitem.02/25100.png deleted file mode 100644 index 933bbfebf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25101.png b/front/public/images/large/gregtech/gt.metaitem.02/25101.png deleted file mode 100644 index 5eb0de381f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25111.png b/front/public/images/large/gregtech/gt.metaitem.02/25111.png deleted file mode 100644 index cd2e524d48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25112.png b/front/public/images/large/gregtech/gt.metaitem.02/25112.png deleted file mode 100644 index bc7bad8ecd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25129.png b/front/public/images/large/gregtech/gt.metaitem.02/25129.png deleted file mode 100644 index 776d044c58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25139.png b/front/public/images/large/gregtech/gt.metaitem.02/25139.png deleted file mode 100644 index 1c910b01ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25141.png b/front/public/images/large/gregtech/gt.metaitem.02/25141.png deleted file mode 100644 index 5b4127756b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25143.png b/front/public/images/large/gregtech/gt.metaitem.02/25143.png deleted file mode 100644 index 01a47cb4a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25201.png b/front/public/images/large/gregtech/gt.metaitem.02/25201.png deleted file mode 100644 index 56f3ff68b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25202.png b/front/public/images/large/gregtech/gt.metaitem.02/25202.png deleted file mode 100644 index 32b117060e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25203.png b/front/public/images/large/gregtech/gt.metaitem.02/25203.png deleted file mode 100644 index 2f62c9a352..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25204.png b/front/public/images/large/gregtech/gt.metaitem.02/25204.png deleted file mode 100644 index c21446116d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25205.png b/front/public/images/large/gregtech/gt.metaitem.02/25205.png deleted file mode 100644 index bd6acbca6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25206.png b/front/public/images/large/gregtech/gt.metaitem.02/25206.png deleted file mode 100644 index ecf12e70ea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25207.png b/front/public/images/large/gregtech/gt.metaitem.02/25207.png deleted file mode 100644 index 4084b75aac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25299.png b/front/public/images/large/gregtech/gt.metaitem.02/25299.png deleted file mode 100644 index 6c805e0ea5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25300.png b/front/public/images/large/gregtech/gt.metaitem.02/25300.png deleted file mode 100644 index 3e96c93b29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25301.png b/front/public/images/large/gregtech/gt.metaitem.02/25301.png deleted file mode 100644 index 12e8b2f472..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25302.png b/front/public/images/large/gregtech/gt.metaitem.02/25302.png deleted file mode 100644 index ac97d90651..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25303.png b/front/public/images/large/gregtech/gt.metaitem.02/25303.png deleted file mode 100644 index 31518ec4f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25304.png b/front/public/images/large/gregtech/gt.metaitem.02/25304.png deleted file mode 100644 index ef8656b26c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25305.png b/front/public/images/large/gregtech/gt.metaitem.02/25305.png deleted file mode 100644 index ecf62b04e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25306.png b/front/public/images/large/gregtech/gt.metaitem.02/25306.png deleted file mode 100644 index 8d28f417bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25307.png b/front/public/images/large/gregtech/gt.metaitem.02/25307.png deleted file mode 100644 index ef8656b26c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25310.png b/front/public/images/large/gregtech/gt.metaitem.02/25310.png deleted file mode 100644 index db01f9c841..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25311.png b/front/public/images/large/gregtech/gt.metaitem.02/25311.png deleted file mode 100644 index ec49ce9fb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25312.png b/front/public/images/large/gregtech/gt.metaitem.02/25312.png deleted file mode 100644 index 1f8ab3ff6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25313.png b/front/public/images/large/gregtech/gt.metaitem.02/25313.png deleted file mode 100644 index f3146158b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25316.png b/front/public/images/large/gregtech/gt.metaitem.02/25316.png deleted file mode 100644 index 924bb23efa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25317.png b/front/public/images/large/gregtech/gt.metaitem.02/25317.png deleted file mode 100644 index 69da07e323..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25318.png b/front/public/images/large/gregtech/gt.metaitem.02/25318.png deleted file mode 100644 index 79d1e0e7ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25319.png b/front/public/images/large/gregtech/gt.metaitem.02/25319.png deleted file mode 100644 index df1d817e9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25320.png b/front/public/images/large/gregtech/gt.metaitem.02/25320.png deleted file mode 100644 index 4b0bb0d0f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25321.png b/front/public/images/large/gregtech/gt.metaitem.02/25321.png deleted file mode 100644 index d69a06f88d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25323.png b/front/public/images/large/gregtech/gt.metaitem.02/25323.png deleted file mode 100644 index 9a888c7e44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25324.png b/front/public/images/large/gregtech/gt.metaitem.02/25324.png deleted file mode 100644 index ce7db0ca04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25325.png b/front/public/images/large/gregtech/gt.metaitem.02/25325.png deleted file mode 100644 index 4c8c60e2e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25326.png b/front/public/images/large/gregtech/gt.metaitem.02/25326.png deleted file mode 100644 index 752e7dff95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25327.png b/front/public/images/large/gregtech/gt.metaitem.02/25327.png deleted file mode 100644 index a9dc35ad3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25328.png b/front/public/images/large/gregtech/gt.metaitem.02/25328.png deleted file mode 100644 index df1d817e9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25329.png b/front/public/images/large/gregtech/gt.metaitem.02/25329.png deleted file mode 100644 index 1057970aee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25330.png b/front/public/images/large/gregtech/gt.metaitem.02/25330.png deleted file mode 100644 index 4074b8104c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25331.png b/front/public/images/large/gregtech/gt.metaitem.02/25331.png deleted file mode 100644 index 84d9887f42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25333.png b/front/public/images/large/gregtech/gt.metaitem.02/25333.png deleted file mode 100644 index 46a24c16fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25334.png b/front/public/images/large/gregtech/gt.metaitem.02/25334.png deleted file mode 100644 index c6d0b8fe98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25335.png b/front/public/images/large/gregtech/gt.metaitem.02/25335.png deleted file mode 100644 index 104b643207..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25336.png b/front/public/images/large/gregtech/gt.metaitem.02/25336.png deleted file mode 100644 index db7fe8bb52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25337.png b/front/public/images/large/gregtech/gt.metaitem.02/25337.png deleted file mode 100644 index e7d6b497eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25338.png b/front/public/images/large/gregtech/gt.metaitem.02/25338.png deleted file mode 100644 index a1332035a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25339.png b/front/public/images/large/gregtech/gt.metaitem.02/25339.png deleted file mode 100644 index 3b2d616ae7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25340.png b/front/public/images/large/gregtech/gt.metaitem.02/25340.png deleted file mode 100644 index 08a3bd6dd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25341.png b/front/public/images/large/gregtech/gt.metaitem.02/25341.png deleted file mode 100644 index 75700fc300..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25342.png b/front/public/images/large/gregtech/gt.metaitem.02/25342.png deleted file mode 100644 index 7d4085d771..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25343.png b/front/public/images/large/gregtech/gt.metaitem.02/25343.png deleted file mode 100644 index c925538167..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25344.png b/front/public/images/large/gregtech/gt.metaitem.02/25344.png deleted file mode 100644 index f1a8cf31e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25346.png b/front/public/images/large/gregtech/gt.metaitem.02/25346.png deleted file mode 100644 index 46588e7902..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25347.png b/front/public/images/large/gregtech/gt.metaitem.02/25347.png deleted file mode 100644 index 8d9758971a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25348.png b/front/public/images/large/gregtech/gt.metaitem.02/25348.png deleted file mode 100644 index ea89c2ba97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25349.png b/front/public/images/large/gregtech/gt.metaitem.02/25349.png deleted file mode 100644 index 64d721c9c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25350.png b/front/public/images/large/gregtech/gt.metaitem.02/25350.png deleted file mode 100644 index 160df45d92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25351.png b/front/public/images/large/gregtech/gt.metaitem.02/25351.png deleted file mode 100644 index 63783f20b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25352.png b/front/public/images/large/gregtech/gt.metaitem.02/25352.png deleted file mode 100644 index 576418c85b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25353.png b/front/public/images/large/gregtech/gt.metaitem.02/25353.png deleted file mode 100644 index f2756f4171..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25354.png b/front/public/images/large/gregtech/gt.metaitem.02/25354.png deleted file mode 100644 index d7823d5ff6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25355.png b/front/public/images/large/gregtech/gt.metaitem.02/25355.png deleted file mode 100644 index 9cbdcce2ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25356.png b/front/public/images/large/gregtech/gt.metaitem.02/25356.png deleted file mode 100644 index 2d8b20b8c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25362.png b/front/public/images/large/gregtech/gt.metaitem.02/25362.png deleted file mode 100644 index b52e4d78bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25363.png b/front/public/images/large/gregtech/gt.metaitem.02/25363.png deleted file mode 100644 index bc66981bde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25364.png b/front/public/images/large/gregtech/gt.metaitem.02/25364.png deleted file mode 100644 index 5e43fe94c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25365.png b/front/public/images/large/gregtech/gt.metaitem.02/25365.png deleted file mode 100644 index 5a1929953b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25366.png b/front/public/images/large/gregtech/gt.metaitem.02/25366.png deleted file mode 100644 index 135a17cdc4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25367.png b/front/public/images/large/gregtech/gt.metaitem.02/25367.png deleted file mode 100644 index a2a3d5c464..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25368.png b/front/public/images/large/gregtech/gt.metaitem.02/25368.png deleted file mode 100644 index e7843e4950..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25369.png b/front/public/images/large/gregtech/gt.metaitem.02/25369.png deleted file mode 100644 index ac24f39f95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25370.png b/front/public/images/large/gregtech/gt.metaitem.02/25370.png deleted file mode 100644 index 30aa3e8837..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25371.png b/front/public/images/large/gregtech/gt.metaitem.02/25371.png deleted file mode 100644 index c06986d63f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25372.png b/front/public/images/large/gregtech/gt.metaitem.02/25372.png deleted file mode 100644 index 4503cb02a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25373.png b/front/public/images/large/gregtech/gt.metaitem.02/25373.png deleted file mode 100644 index 2cf2e5037a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25374.png b/front/public/images/large/gregtech/gt.metaitem.02/25374.png deleted file mode 100644 index f15fee52cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25378.png b/front/public/images/large/gregtech/gt.metaitem.02/25378.png deleted file mode 100644 index 785910255b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25379.png b/front/public/images/large/gregtech/gt.metaitem.02/25379.png deleted file mode 100644 index 805b790825..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25380.png b/front/public/images/large/gregtech/gt.metaitem.02/25380.png deleted file mode 100644 index e53c0ce11f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25381.png b/front/public/images/large/gregtech/gt.metaitem.02/25381.png deleted file mode 100644 index 32d96e3fa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25382.png b/front/public/images/large/gregtech/gt.metaitem.02/25382.png deleted file mode 100644 index 30cf9a80ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25383.png b/front/public/images/large/gregtech/gt.metaitem.02/25383.png deleted file mode 100644 index f551942e4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25384.png b/front/public/images/large/gregtech/gt.metaitem.02/25384.png deleted file mode 100644 index ca8b944f78..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25385.png b/front/public/images/large/gregtech/gt.metaitem.02/25385.png deleted file mode 100644 index aa019a91a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25386.png b/front/public/images/large/gregtech/gt.metaitem.02/25386.png deleted file mode 100644 index b7b542877b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25387.png b/front/public/images/large/gregtech/gt.metaitem.02/25387.png deleted file mode 100644 index b835aa655c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25388.png b/front/public/images/large/gregtech/gt.metaitem.02/25388.png deleted file mode 100644 index ce7db0ca04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25389.png b/front/public/images/large/gregtech/gt.metaitem.02/25389.png deleted file mode 100644 index e27375ebf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25390.png b/front/public/images/large/gregtech/gt.metaitem.02/25390.png deleted file mode 100644 index 101522271a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25391.png b/front/public/images/large/gregtech/gt.metaitem.02/25391.png deleted file mode 100644 index 9ca83a5b4b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25392.png b/front/public/images/large/gregtech/gt.metaitem.02/25392.png deleted file mode 100644 index 34bc82480a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25393.png b/front/public/images/large/gregtech/gt.metaitem.02/25393.png deleted file mode 100644 index 151f121d4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25394.png b/front/public/images/large/gregtech/gt.metaitem.02/25394.png deleted file mode 100644 index df1d817e9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25397.png b/front/public/images/large/gregtech/gt.metaitem.02/25397.png deleted file mode 100644 index 79fc80abd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25398.png b/front/public/images/large/gregtech/gt.metaitem.02/25398.png deleted file mode 100644 index b1e642cadd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25399.png b/front/public/images/large/gregtech/gt.metaitem.02/25399.png deleted file mode 100644 index bea828ab33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25400.png b/front/public/images/large/gregtech/gt.metaitem.02/25400.png deleted file mode 100644 index 392acc0e71..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25401.png b/front/public/images/large/gregtech/gt.metaitem.02/25401.png deleted file mode 100644 index 606520c02d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25402.png b/front/public/images/large/gregtech/gt.metaitem.02/25402.png deleted file mode 100644 index 5d1acc912c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25403.png b/front/public/images/large/gregtech/gt.metaitem.02/25403.png deleted file mode 100644 index bf8904c985..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25404.png b/front/public/images/large/gregtech/gt.metaitem.02/25404.png deleted file mode 100644 index 5942f430ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25405.png b/front/public/images/large/gregtech/gt.metaitem.02/25405.png deleted file mode 100644 index edf5f7df23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25406.png b/front/public/images/large/gregtech/gt.metaitem.02/25406.png deleted file mode 100644 index c34be74741..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25407.png b/front/public/images/large/gregtech/gt.metaitem.02/25407.png deleted file mode 100644 index 0ba7c3ba7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25408.png b/front/public/images/large/gregtech/gt.metaitem.02/25408.png deleted file mode 100644 index 39436d8e30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25470.png b/front/public/images/large/gregtech/gt.metaitem.02/25470.png deleted file mode 100644 index 3536f13ca1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25471.png b/front/public/images/large/gregtech/gt.metaitem.02/25471.png deleted file mode 100644 index 3795ca9182..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25472.png b/front/public/images/large/gregtech/gt.metaitem.02/25472.png deleted file mode 100644 index ce7db0ca04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25473.png b/front/public/images/large/gregtech/gt.metaitem.02/25473.png deleted file mode 100644 index c6d0b8fe98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25485.png b/front/public/images/large/gregtech/gt.metaitem.02/25485.png deleted file mode 100644 index 4533431017..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25488.png b/front/public/images/large/gregtech/gt.metaitem.02/25488.png deleted file mode 100644 index 9ebe47cb04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25489.png b/front/public/images/large/gregtech/gt.metaitem.02/25489.png deleted file mode 100644 index cd145f6e96..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25500.png b/front/public/images/large/gregtech/gt.metaitem.02/25500.png deleted file mode 100644 index 756172aefe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25501.png b/front/public/images/large/gregtech/gt.metaitem.02/25501.png deleted file mode 100644 index 196ebfdb0a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25502.png b/front/public/images/large/gregtech/gt.metaitem.02/25502.png deleted file mode 100644 index 12daeebd3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25503.png b/front/public/images/large/gregtech/gt.metaitem.02/25503.png deleted file mode 100644 index 015f54f073..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25504.png b/front/public/images/large/gregtech/gt.metaitem.02/25504.png deleted file mode 100644 index df0295d05c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25505.png b/front/public/images/large/gregtech/gt.metaitem.02/25505.png deleted file mode 100644 index 620b299e07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25506.png b/front/public/images/large/gregtech/gt.metaitem.02/25506.png deleted file mode 100644 index 776d044c58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25507.png b/front/public/images/large/gregtech/gt.metaitem.02/25507.png deleted file mode 100644 index 3e96c93b29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25508.png b/front/public/images/large/gregtech/gt.metaitem.02/25508.png deleted file mode 100644 index d61ef19292..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25509.png b/front/public/images/large/gregtech/gt.metaitem.02/25509.png deleted file mode 100644 index 17f702400a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25510.png b/front/public/images/large/gregtech/gt.metaitem.02/25510.png deleted file mode 100644 index 1231525b5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25511.png b/front/public/images/large/gregtech/gt.metaitem.02/25511.png deleted file mode 100644 index ef3bb4f5bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25513.png b/front/public/images/large/gregtech/gt.metaitem.02/25513.png deleted file mode 100644 index 1231525b5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25514.png b/front/public/images/large/gregtech/gt.metaitem.02/25514.png deleted file mode 100644 index 3e96c93b29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25516.png b/front/public/images/large/gregtech/gt.metaitem.02/25516.png deleted file mode 100644 index f1c4aff27d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25521.png b/front/public/images/large/gregtech/gt.metaitem.02/25521.png deleted file mode 100644 index 79d1e0e7ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25522.png b/front/public/images/large/gregtech/gt.metaitem.02/25522.png deleted file mode 100644 index 172541e589..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25527.png b/front/public/images/large/gregtech/gt.metaitem.02/25527.png deleted file mode 100644 index ef3bb4f5bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25528.png b/front/public/images/large/gregtech/gt.metaitem.02/25528.png deleted file mode 100644 index 190df1aabc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25529.png b/front/public/images/large/gregtech/gt.metaitem.02/25529.png deleted file mode 100644 index b25c55bad0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25537.png b/front/public/images/large/gregtech/gt.metaitem.02/25537.png deleted file mode 100644 index 290088a6bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25540.png b/front/public/images/large/gregtech/gt.metaitem.02/25540.png deleted file mode 100644 index 79d1e0e7ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25541.png b/front/public/images/large/gregtech/gt.metaitem.02/25541.png deleted file mode 100644 index b7793c3967..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25542.png b/front/public/images/large/gregtech/gt.metaitem.02/25542.png deleted file mode 100644 index b7d20968fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25543.png b/front/public/images/large/gregtech/gt.metaitem.02/25543.png deleted file mode 100644 index 1071bdc37c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25544.png b/front/public/images/large/gregtech/gt.metaitem.02/25544.png deleted file mode 100644 index 45c492d99b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25545.png b/front/public/images/large/gregtech/gt.metaitem.02/25545.png deleted file mode 100644 index 9d5f7e58dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25576.png b/front/public/images/large/gregtech/gt.metaitem.02/25576.png deleted file mode 100644 index 300e3ba512..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25583.png b/front/public/images/large/gregtech/gt.metaitem.02/25583.png deleted file mode 100644 index a702fe2817..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25585.png b/front/public/images/large/gregtech/gt.metaitem.02/25585.png deleted file mode 100644 index bb8a092301..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25586.png b/front/public/images/large/gregtech/gt.metaitem.02/25586.png deleted file mode 100644 index 4730fc7cb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25588.png b/front/public/images/large/gregtech/gt.metaitem.02/25588.png deleted file mode 100644 index 20d22fffa2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25599.png b/front/public/images/large/gregtech/gt.metaitem.02/25599.png deleted file mode 100644 index ece815bf7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25610.png b/front/public/images/large/gregtech/gt.metaitem.02/25610.png deleted file mode 100644 index 662f01319a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25613.png b/front/public/images/large/gregtech/gt.metaitem.02/25613.png deleted file mode 100644 index 0a4a3e41b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25631.png b/front/public/images/large/gregtech/gt.metaitem.02/25631.png deleted file mode 100644 index 758ad6e05a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25635.png b/front/public/images/large/gregtech/gt.metaitem.02/25635.png deleted file mode 100644 index ba3e4a32fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25636.png b/front/public/images/large/gregtech/gt.metaitem.02/25636.png deleted file mode 100644 index 22f1ea3c3b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25649.png b/front/public/images/large/gregtech/gt.metaitem.02/25649.png deleted file mode 100644 index 557670719a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25770.png b/front/public/images/large/gregtech/gt.metaitem.02/25770.png deleted file mode 100644 index 5670cd88e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25801.png b/front/public/images/large/gregtech/gt.metaitem.02/25801.png deleted file mode 100644 index 89c3ea1eb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25801.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25802.png b/front/public/images/large/gregtech/gt.metaitem.02/25802.png deleted file mode 100644 index e03b82f03d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25802.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25809.png b/front/public/images/large/gregtech/gt.metaitem.02/25809.png deleted file mode 100644 index 00c3246d69..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25819.png b/front/public/images/large/gregtech/gt.metaitem.02/25819.png deleted file mode 100644 index ecf62b04e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25819.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25829.png b/front/public/images/large/gregtech/gt.metaitem.02/25829.png deleted file mode 100644 index 4626a5ca74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25844.png b/front/public/images/large/gregtech/gt.metaitem.02/25844.png deleted file mode 100644 index a293fa6e84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25844.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25845.png b/front/public/images/large/gregtech/gt.metaitem.02/25845.png deleted file mode 100644 index bc66981bde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25845.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25849.png b/front/public/images/large/gregtech/gt.metaitem.02/25849.png deleted file mode 100644 index 96ad953713..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25850.png b/front/public/images/large/gregtech/gt.metaitem.02/25850.png deleted file mode 100644 index f4f177a1db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25854.png b/front/public/images/large/gregtech/gt.metaitem.02/25854.png deleted file mode 100644 index ecf62b04e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25854.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25865.png b/front/public/images/large/gregtech/gt.metaitem.02/25865.png deleted file mode 100644 index ecf62b04e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25868.png b/front/public/images/large/gregtech/gt.metaitem.02/25868.png deleted file mode 100644 index 7ccfefe0bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25874.png b/front/public/images/large/gregtech/gt.metaitem.02/25874.png deleted file mode 100644 index bc66981bde..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25880.png b/front/public/images/large/gregtech/gt.metaitem.02/25880.png deleted file mode 100644 index 4730fc7cb0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25884.png b/front/public/images/large/gregtech/gt.metaitem.02/25884.png deleted file mode 100644 index 4c8c60e2e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25889.png b/front/public/images/large/gregtech/gt.metaitem.02/25889.png deleted file mode 100644 index f8112c02d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25912.png b/front/public/images/large/gregtech/gt.metaitem.02/25912.png deleted file mode 100644 index f70f266181..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25913.png b/front/public/images/large/gregtech/gt.metaitem.02/25913.png deleted file mode 100644 index ea89c2ba97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25951.png b/front/public/images/large/gregtech/gt.metaitem.02/25951.png deleted file mode 100644 index 501f967ccf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25952.png b/front/public/images/large/gregtech/gt.metaitem.02/25952.png deleted file mode 100644 index b1660d228c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25966.png b/front/public/images/large/gregtech/gt.metaitem.02/25966.png deleted file mode 100644 index 9ea283d2a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25970.png b/front/public/images/large/gregtech/gt.metaitem.02/25970.png deleted file mode 100644 index 8fde605805..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25975.png b/front/public/images/large/gregtech/gt.metaitem.02/25975.png deleted file mode 100644 index 6c52a4b6d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25976.png b/front/public/images/large/gregtech/gt.metaitem.02/25976.png deleted file mode 100644 index e0ed9710e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25977.png b/front/public/images/large/gregtech/gt.metaitem.02/25977.png deleted file mode 100644 index f39c63cb54..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25978.png b/front/public/images/large/gregtech/gt.metaitem.02/25978.png deleted file mode 100644 index fd110b9b70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25982.png b/front/public/images/large/gregtech/gt.metaitem.02/25982.png deleted file mode 100644 index 7a669d6d76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/25984.png b/front/public/images/large/gregtech/gt.metaitem.02/25984.png deleted file mode 100644 index df1d817e9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/25984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26008.png b/front/public/images/large/gregtech/gt.metaitem.02/26008.png deleted file mode 100644 index e7e45685c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26010.png b/front/public/images/large/gregtech/gt.metaitem.02/26010.png deleted file mode 100644 index 26be8e6d1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26019.png b/front/public/images/large/gregtech/gt.metaitem.02/26019.png deleted file mode 100644 index e40e6faf77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26028.png b/front/public/images/large/gregtech/gt.metaitem.02/26028.png deleted file mode 100644 index 35ca138d6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26030.png b/front/public/images/large/gregtech/gt.metaitem.02/26030.png deleted file mode 100644 index 1254e507f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26031.png b/front/public/images/large/gregtech/gt.metaitem.02/26031.png deleted file mode 100644 index d93b72f411..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26032.png b/front/public/images/large/gregtech/gt.metaitem.02/26032.png deleted file mode 100644 index c9cc35cb72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26033.png b/front/public/images/large/gregtech/gt.metaitem.02/26033.png deleted file mode 100644 index 56b207faa8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26034.png b/front/public/images/large/gregtech/gt.metaitem.02/26034.png deleted file mode 100644 index 420fd1bada..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26048.png b/front/public/images/large/gregtech/gt.metaitem.02/26048.png deleted file mode 100644 index c63958a831..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26052.png b/front/public/images/large/gregtech/gt.metaitem.02/26052.png deleted file mode 100644 index 64f4a5ee6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26054.png b/front/public/images/large/gregtech/gt.metaitem.02/26054.png deleted file mode 100644 index 02931817a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26067.png b/front/public/images/large/gregtech/gt.metaitem.02/26067.png deleted file mode 100644 index 48fd533d5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26081.png b/front/public/images/large/gregtech/gt.metaitem.02/26081.png deleted file mode 100644 index 4ee3785329..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26083.png b/front/public/images/large/gregtech/gt.metaitem.02/26083.png deleted file mode 100644 index 2c05b6f892..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26084.png b/front/public/images/large/gregtech/gt.metaitem.02/26084.png deleted file mode 100644 index d4933f3ea4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26085.png b/front/public/images/large/gregtech/gt.metaitem.02/26085.png deleted file mode 100644 index 479ec4fcc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26086.png b/front/public/images/large/gregtech/gt.metaitem.02/26086.png deleted file mode 100644 index 5d0810bcf7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26089.png b/front/public/images/large/gregtech/gt.metaitem.02/26089.png deleted file mode 100644 index 98157c03b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26090.png b/front/public/images/large/gregtech/gt.metaitem.02/26090.png deleted file mode 100644 index b49c70af90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26096.png b/front/public/images/large/gregtech/gt.metaitem.02/26096.png deleted file mode 100644 index 08b445c3a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26097.png b/front/public/images/large/gregtech/gt.metaitem.02/26097.png deleted file mode 100644 index 3a28dce1ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26098.png b/front/public/images/large/gregtech/gt.metaitem.02/26098.png deleted file mode 100644 index 569feaf24c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26100.png b/front/public/images/large/gregtech/gt.metaitem.02/26100.png deleted file mode 100644 index 7f4bf505b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26101.png b/front/public/images/large/gregtech/gt.metaitem.02/26101.png deleted file mode 100644 index 0f03f51929..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26111.png b/front/public/images/large/gregtech/gt.metaitem.02/26111.png deleted file mode 100644 index 8332fcd496..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26112.png b/front/public/images/large/gregtech/gt.metaitem.02/26112.png deleted file mode 100644 index 65d98bca58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26129.png b/front/public/images/large/gregtech/gt.metaitem.02/26129.png deleted file mode 100644 index d93b72f411..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26139.png b/front/public/images/large/gregtech/gt.metaitem.02/26139.png deleted file mode 100644 index 0a492d0e53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26141.png b/front/public/images/large/gregtech/gt.metaitem.02/26141.png deleted file mode 100644 index 6ca2063f34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26143.png b/front/public/images/large/gregtech/gt.metaitem.02/26143.png deleted file mode 100644 index 11d45dada7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26201.png b/front/public/images/large/gregtech/gt.metaitem.02/26201.png deleted file mode 100644 index f1726aa5be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26202.png b/front/public/images/large/gregtech/gt.metaitem.02/26202.png deleted file mode 100644 index 058a569bc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26203.png b/front/public/images/large/gregtech/gt.metaitem.02/26203.png deleted file mode 100644 index 17cfd56eec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26204.png b/front/public/images/large/gregtech/gt.metaitem.02/26204.png deleted file mode 100644 index 3a52e52514..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26205.png b/front/public/images/large/gregtech/gt.metaitem.02/26205.png deleted file mode 100644 index de9266d574..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26206.png b/front/public/images/large/gregtech/gt.metaitem.02/26206.png deleted file mode 100644 index 0f606c9335..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26207.png b/front/public/images/large/gregtech/gt.metaitem.02/26207.png deleted file mode 100644 index d29e443a9a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26299.png b/front/public/images/large/gregtech/gt.metaitem.02/26299.png deleted file mode 100644 index cc73f2e7e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26300.png b/front/public/images/large/gregtech/gt.metaitem.02/26300.png deleted file mode 100644 index 3fd48445bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26301.png b/front/public/images/large/gregtech/gt.metaitem.02/26301.png deleted file mode 100644 index 79e4ae7a12..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26302.png b/front/public/images/large/gregtech/gt.metaitem.02/26302.png deleted file mode 100644 index 68b177097e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26303.png b/front/public/images/large/gregtech/gt.metaitem.02/26303.png deleted file mode 100644 index fd79c85366..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26304.png b/front/public/images/large/gregtech/gt.metaitem.02/26304.png deleted file mode 100644 index edc530b2c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26305.png b/front/public/images/large/gregtech/gt.metaitem.02/26305.png deleted file mode 100644 index 64f4a5ee6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26306.png b/front/public/images/large/gregtech/gt.metaitem.02/26306.png deleted file mode 100644 index e378a771e5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26307.png b/front/public/images/large/gregtech/gt.metaitem.02/26307.png deleted file mode 100644 index edc530b2c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26310.png b/front/public/images/large/gregtech/gt.metaitem.02/26310.png deleted file mode 100644 index 671779e902..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26311.png b/front/public/images/large/gregtech/gt.metaitem.02/26311.png deleted file mode 100644 index 1f4c6dc9a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26312.png b/front/public/images/large/gregtech/gt.metaitem.02/26312.png deleted file mode 100644 index acb0448b75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26313.png b/front/public/images/large/gregtech/gt.metaitem.02/26313.png deleted file mode 100644 index d8af71c66c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26316.png b/front/public/images/large/gregtech/gt.metaitem.02/26316.png deleted file mode 100644 index ce45d5c23d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26317.png b/front/public/images/large/gregtech/gt.metaitem.02/26317.png deleted file mode 100644 index aed365c439..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26318.png b/front/public/images/large/gregtech/gt.metaitem.02/26318.png deleted file mode 100644 index 76d3949153..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26319.png b/front/public/images/large/gregtech/gt.metaitem.02/26319.png deleted file mode 100644 index 9ce98701f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26320.png b/front/public/images/large/gregtech/gt.metaitem.02/26320.png deleted file mode 100644 index c8d9ab2eed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26321.png b/front/public/images/large/gregtech/gt.metaitem.02/26321.png deleted file mode 100644 index e6ca643de0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26323.png b/front/public/images/large/gregtech/gt.metaitem.02/26323.png deleted file mode 100644 index 5598b10178..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26324.png b/front/public/images/large/gregtech/gt.metaitem.02/26324.png deleted file mode 100644 index 4ee3785329..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26325.png b/front/public/images/large/gregtech/gt.metaitem.02/26325.png deleted file mode 100644 index a278dfcc76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26326.png b/front/public/images/large/gregtech/gt.metaitem.02/26326.png deleted file mode 100644 index 218aa29d76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26327.png b/front/public/images/large/gregtech/gt.metaitem.02/26327.png deleted file mode 100644 index 8e24b2e4ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26328.png b/front/public/images/large/gregtech/gt.metaitem.02/26328.png deleted file mode 100644 index 9ce98701f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26329.png b/front/public/images/large/gregtech/gt.metaitem.02/26329.png deleted file mode 100644 index da9fe693c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26330.png b/front/public/images/large/gregtech/gt.metaitem.02/26330.png deleted file mode 100644 index 59832e5865..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26331.png b/front/public/images/large/gregtech/gt.metaitem.02/26331.png deleted file mode 100644 index cad7679bfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26333.png b/front/public/images/large/gregtech/gt.metaitem.02/26333.png deleted file mode 100644 index e5a9a22d53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26334.png b/front/public/images/large/gregtech/gt.metaitem.02/26334.png deleted file mode 100644 index 48fd533d5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26335.png b/front/public/images/large/gregtech/gt.metaitem.02/26335.png deleted file mode 100644 index f7969f6067..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26336.png b/front/public/images/large/gregtech/gt.metaitem.02/26336.png deleted file mode 100644 index aee7ffcbe9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26337.png b/front/public/images/large/gregtech/gt.metaitem.02/26337.png deleted file mode 100644 index 4c3e09b6fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26338.png b/front/public/images/large/gregtech/gt.metaitem.02/26338.png deleted file mode 100644 index 35495e8e88..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26339.png b/front/public/images/large/gregtech/gt.metaitem.02/26339.png deleted file mode 100644 index 7b6a151981..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26340.png b/front/public/images/large/gregtech/gt.metaitem.02/26340.png deleted file mode 100644 index ed6eeaa3e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26341.png b/front/public/images/large/gregtech/gt.metaitem.02/26341.png deleted file mode 100644 index 0a4dcd203e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26342.png b/front/public/images/large/gregtech/gt.metaitem.02/26342.png deleted file mode 100644 index 474c25e2aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26343.png b/front/public/images/large/gregtech/gt.metaitem.02/26343.png deleted file mode 100644 index eaf94e140c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26344.png b/front/public/images/large/gregtech/gt.metaitem.02/26344.png deleted file mode 100644 index 585093fb50..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26346.png b/front/public/images/large/gregtech/gt.metaitem.02/26346.png deleted file mode 100644 index 2d6236192c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26347.png b/front/public/images/large/gregtech/gt.metaitem.02/26347.png deleted file mode 100644 index d57204ab70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26347.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26348.png b/front/public/images/large/gregtech/gt.metaitem.02/26348.png deleted file mode 100644 index ed7c927be3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26349.png b/front/public/images/large/gregtech/gt.metaitem.02/26349.png deleted file mode 100644 index 55794e7f39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26350.png b/front/public/images/large/gregtech/gt.metaitem.02/26350.png deleted file mode 100644 index 4aba0b9f87..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26351.png b/front/public/images/large/gregtech/gt.metaitem.02/26351.png deleted file mode 100644 index b65a37dee7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26352.png b/front/public/images/large/gregtech/gt.metaitem.02/26352.png deleted file mode 100644 index 9ec96d72ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26353.png b/front/public/images/large/gregtech/gt.metaitem.02/26353.png deleted file mode 100644 index e3c1f5073c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26354.png b/front/public/images/large/gregtech/gt.metaitem.02/26354.png deleted file mode 100644 index 74e9ccdf16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26355.png b/front/public/images/large/gregtech/gt.metaitem.02/26355.png deleted file mode 100644 index 9d6df1955e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26356.png b/front/public/images/large/gregtech/gt.metaitem.02/26356.png deleted file mode 100644 index 4dae3a789c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26362.png b/front/public/images/large/gregtech/gt.metaitem.02/26362.png deleted file mode 100644 index f820e8b5c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26363.png b/front/public/images/large/gregtech/gt.metaitem.02/26363.png deleted file mode 100644 index c9cc35cb72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26364.png b/front/public/images/large/gregtech/gt.metaitem.02/26364.png deleted file mode 100644 index 8aa351f534..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26365.png b/front/public/images/large/gregtech/gt.metaitem.02/26365.png deleted file mode 100644 index 9567b83545..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26366.png b/front/public/images/large/gregtech/gt.metaitem.02/26366.png deleted file mode 100644 index a6e047fd34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26367.png b/front/public/images/large/gregtech/gt.metaitem.02/26367.png deleted file mode 100644 index 00c0322b17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26368.png b/front/public/images/large/gregtech/gt.metaitem.02/26368.png deleted file mode 100644 index 2e6dc58df0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26369.png b/front/public/images/large/gregtech/gt.metaitem.02/26369.png deleted file mode 100644 index 71bcb775c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26370.png b/front/public/images/large/gregtech/gt.metaitem.02/26370.png deleted file mode 100644 index f98dbe3e94..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26371.png b/front/public/images/large/gregtech/gt.metaitem.02/26371.png deleted file mode 100644 index 8b8c88ce36..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26372.png b/front/public/images/large/gregtech/gt.metaitem.02/26372.png deleted file mode 100644 index 9c10b069dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26373.png b/front/public/images/large/gregtech/gt.metaitem.02/26373.png deleted file mode 100644 index 75f4a32c82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26374.png b/front/public/images/large/gregtech/gt.metaitem.02/26374.png deleted file mode 100644 index 450a2f8bb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26378.png b/front/public/images/large/gregtech/gt.metaitem.02/26378.png deleted file mode 100644 index e96ae7e501..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26379.png b/front/public/images/large/gregtech/gt.metaitem.02/26379.png deleted file mode 100644 index 4b5b9f5d0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26380.png b/front/public/images/large/gregtech/gt.metaitem.02/26380.png deleted file mode 100644 index a1e87e6478..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26381.png b/front/public/images/large/gregtech/gt.metaitem.02/26381.png deleted file mode 100644 index 37291e4a1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26382.png b/front/public/images/large/gregtech/gt.metaitem.02/26382.png deleted file mode 100644 index 8cfad0e024..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26383.png b/front/public/images/large/gregtech/gt.metaitem.02/26383.png deleted file mode 100644 index d6153a0a65..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26384.png b/front/public/images/large/gregtech/gt.metaitem.02/26384.png deleted file mode 100644 index 15bf959c83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26385.png b/front/public/images/large/gregtech/gt.metaitem.02/26385.png deleted file mode 100644 index 8e407569b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26386.png b/front/public/images/large/gregtech/gt.metaitem.02/26386.png deleted file mode 100644 index ba5c2e3535..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26387.png b/front/public/images/large/gregtech/gt.metaitem.02/26387.png deleted file mode 100644 index 8528f916fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26388.png b/front/public/images/large/gregtech/gt.metaitem.02/26388.png deleted file mode 100644 index 4ee3785329..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26389.png b/front/public/images/large/gregtech/gt.metaitem.02/26389.png deleted file mode 100644 index 5895ccfe1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26390.png b/front/public/images/large/gregtech/gt.metaitem.02/26390.png deleted file mode 100644 index bc9d8c0b5a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26391.png b/front/public/images/large/gregtech/gt.metaitem.02/26391.png deleted file mode 100644 index 76a6b7904d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26392.png b/front/public/images/large/gregtech/gt.metaitem.02/26392.png deleted file mode 100644 index f45b32a91c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26393.png b/front/public/images/large/gregtech/gt.metaitem.02/26393.png deleted file mode 100644 index b9f9e9f365..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26394.png b/front/public/images/large/gregtech/gt.metaitem.02/26394.png deleted file mode 100644 index 9ce98701f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26397.png b/front/public/images/large/gregtech/gt.metaitem.02/26397.png deleted file mode 100644 index 50c916d4d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26398.png b/front/public/images/large/gregtech/gt.metaitem.02/26398.png deleted file mode 100644 index 308f67292d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26399.png b/front/public/images/large/gregtech/gt.metaitem.02/26399.png deleted file mode 100644 index 7999244ceb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26400.png b/front/public/images/large/gregtech/gt.metaitem.02/26400.png deleted file mode 100644 index 57ace3746c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26401.png b/front/public/images/large/gregtech/gt.metaitem.02/26401.png deleted file mode 100644 index 8a94cb4f46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26402.png b/front/public/images/large/gregtech/gt.metaitem.02/26402.png deleted file mode 100644 index 72e637508e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26403.png b/front/public/images/large/gregtech/gt.metaitem.02/26403.png deleted file mode 100644 index fa71d00bfa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26404.png b/front/public/images/large/gregtech/gt.metaitem.02/26404.png deleted file mode 100644 index 7d85a4c2f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26405.png b/front/public/images/large/gregtech/gt.metaitem.02/26405.png deleted file mode 100644 index 7a6aa334c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26406.png b/front/public/images/large/gregtech/gt.metaitem.02/26406.png deleted file mode 100644 index eae0e16778..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26407.png b/front/public/images/large/gregtech/gt.metaitem.02/26407.png deleted file mode 100644 index 8bea860ea3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26408.png b/front/public/images/large/gregtech/gt.metaitem.02/26408.png deleted file mode 100644 index b3554fc17a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26470.png b/front/public/images/large/gregtech/gt.metaitem.02/26470.png deleted file mode 100644 index 92c263f1b6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26471.png b/front/public/images/large/gregtech/gt.metaitem.02/26471.png deleted file mode 100644 index 5e4e1574a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26472.png b/front/public/images/large/gregtech/gt.metaitem.02/26472.png deleted file mode 100644 index 4ee3785329..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26473.png b/front/public/images/large/gregtech/gt.metaitem.02/26473.png deleted file mode 100644 index 48fd533d5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26485.png b/front/public/images/large/gregtech/gt.metaitem.02/26485.png deleted file mode 100644 index 5e66040aba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26488.png b/front/public/images/large/gregtech/gt.metaitem.02/26488.png deleted file mode 100644 index 6f9b44152f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26489.png b/front/public/images/large/gregtech/gt.metaitem.02/26489.png deleted file mode 100644 index 00d0dcbf3f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26500.png b/front/public/images/large/gregtech/gt.metaitem.02/26500.png deleted file mode 100644 index 15c5fcc7e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26501.png b/front/public/images/large/gregtech/gt.metaitem.02/26501.png deleted file mode 100644 index f9fa43dc1d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26502.png b/front/public/images/large/gregtech/gt.metaitem.02/26502.png deleted file mode 100644 index 969be36744..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26503.png b/front/public/images/large/gregtech/gt.metaitem.02/26503.png deleted file mode 100644 index 6a494c0160..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26504.png b/front/public/images/large/gregtech/gt.metaitem.02/26504.png deleted file mode 100644 index b7a0eec315..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26505.png b/front/public/images/large/gregtech/gt.metaitem.02/26505.png deleted file mode 100644 index 125760d7ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26506.png b/front/public/images/large/gregtech/gt.metaitem.02/26506.png deleted file mode 100644 index d93b72f411..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26506.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26507.png b/front/public/images/large/gregtech/gt.metaitem.02/26507.png deleted file mode 100644 index 3fd48445bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26508.png b/front/public/images/large/gregtech/gt.metaitem.02/26508.png deleted file mode 100644 index fb1b2d75b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26509.png b/front/public/images/large/gregtech/gt.metaitem.02/26509.png deleted file mode 100644 index 432696f813..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26510.png b/front/public/images/large/gregtech/gt.metaitem.02/26510.png deleted file mode 100644 index a082d80508..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26511.png b/front/public/images/large/gregtech/gt.metaitem.02/26511.png deleted file mode 100644 index cd9056bf14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26513.png b/front/public/images/large/gregtech/gt.metaitem.02/26513.png deleted file mode 100644 index a082d80508..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26514.png b/front/public/images/large/gregtech/gt.metaitem.02/26514.png deleted file mode 100644 index 3fd48445bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26516.png b/front/public/images/large/gregtech/gt.metaitem.02/26516.png deleted file mode 100644 index 2fda33d710..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26516.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26521.png b/front/public/images/large/gregtech/gt.metaitem.02/26521.png deleted file mode 100644 index 76d3949153..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26522.png b/front/public/images/large/gregtech/gt.metaitem.02/26522.png deleted file mode 100644 index a6dea585cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26527.png b/front/public/images/large/gregtech/gt.metaitem.02/26527.png deleted file mode 100644 index cd9056bf14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26528.png b/front/public/images/large/gregtech/gt.metaitem.02/26528.png deleted file mode 100644 index 953deb8cae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26529.png b/front/public/images/large/gregtech/gt.metaitem.02/26529.png deleted file mode 100644 index db2798d98b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26537.png b/front/public/images/large/gregtech/gt.metaitem.02/26537.png deleted file mode 100644 index f55c69bf8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26537.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26540.png b/front/public/images/large/gregtech/gt.metaitem.02/26540.png deleted file mode 100644 index 76d3949153..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26541.png b/front/public/images/large/gregtech/gt.metaitem.02/26541.png deleted file mode 100644 index 7a42ec4a8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26542.png b/front/public/images/large/gregtech/gt.metaitem.02/26542.png deleted file mode 100644 index d174d84516..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26543.png b/front/public/images/large/gregtech/gt.metaitem.02/26543.png deleted file mode 100644 index 285e8b7c2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26544.png b/front/public/images/large/gregtech/gt.metaitem.02/26544.png deleted file mode 100644 index b01ec7e1e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26545.png b/front/public/images/large/gregtech/gt.metaitem.02/26545.png deleted file mode 100644 index c8fb0a6801..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26576.png b/front/public/images/large/gregtech/gt.metaitem.02/26576.png deleted file mode 100644 index a91780a95e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26583.png b/front/public/images/large/gregtech/gt.metaitem.02/26583.png deleted file mode 100644 index 4d60592a8f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26585.png b/front/public/images/large/gregtech/gt.metaitem.02/26585.png deleted file mode 100644 index dd297a5bae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26586.png b/front/public/images/large/gregtech/gt.metaitem.02/26586.png deleted file mode 100644 index ecd1b63ea2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26588.png b/front/public/images/large/gregtech/gt.metaitem.02/26588.png deleted file mode 100644 index 9e01bba32a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26599.png b/front/public/images/large/gregtech/gt.metaitem.02/26599.png deleted file mode 100644 index c34afc88c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26610.png b/front/public/images/large/gregtech/gt.metaitem.02/26610.png deleted file mode 100644 index 093e30d5d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26613.png b/front/public/images/large/gregtech/gt.metaitem.02/26613.png deleted file mode 100644 index 9d49c26ac1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26631.png b/front/public/images/large/gregtech/gt.metaitem.02/26631.png deleted file mode 100644 index 00aa5bab03..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26635.png b/front/public/images/large/gregtech/gt.metaitem.02/26635.png deleted file mode 100644 index eeae7a7dc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26636.png b/front/public/images/large/gregtech/gt.metaitem.02/26636.png deleted file mode 100644 index 538e24c0eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26649.png b/front/public/images/large/gregtech/gt.metaitem.02/26649.png deleted file mode 100644 index 30d71d21fe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26770.png b/front/public/images/large/gregtech/gt.metaitem.02/26770.png deleted file mode 100644 index a873931837..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26801.png b/front/public/images/large/gregtech/gt.metaitem.02/26801.png deleted file mode 100644 index 342bf8b4bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26801.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26802.png b/front/public/images/large/gregtech/gt.metaitem.02/26802.png deleted file mode 100644 index 9c3bf4d7bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26802.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26809.png b/front/public/images/large/gregtech/gt.metaitem.02/26809.png deleted file mode 100644 index c53391f9e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26819.png b/front/public/images/large/gregtech/gt.metaitem.02/26819.png deleted file mode 100644 index 64f4a5ee6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26819.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26829.png b/front/public/images/large/gregtech/gt.metaitem.02/26829.png deleted file mode 100644 index 4eb2f24792..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26844.png b/front/public/images/large/gregtech/gt.metaitem.02/26844.png deleted file mode 100644 index cfc177cc25..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26844.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26845.png b/front/public/images/large/gregtech/gt.metaitem.02/26845.png deleted file mode 100644 index c9cc35cb72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26845.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26849.png b/front/public/images/large/gregtech/gt.metaitem.02/26849.png deleted file mode 100644 index 75fc1a60d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26850.png b/front/public/images/large/gregtech/gt.metaitem.02/26850.png deleted file mode 100644 index 1f202ea9be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26854.png b/front/public/images/large/gregtech/gt.metaitem.02/26854.png deleted file mode 100644 index 64f4a5ee6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26854.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26865.png b/front/public/images/large/gregtech/gt.metaitem.02/26865.png deleted file mode 100644 index 64f4a5ee6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26865.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26868.png b/front/public/images/large/gregtech/gt.metaitem.02/26868.png deleted file mode 100644 index 7cb872bfce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26874.png b/front/public/images/large/gregtech/gt.metaitem.02/26874.png deleted file mode 100644 index c9cc35cb72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26880.png b/front/public/images/large/gregtech/gt.metaitem.02/26880.png deleted file mode 100644 index ecd1b63ea2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26884.png b/front/public/images/large/gregtech/gt.metaitem.02/26884.png deleted file mode 100644 index a278dfcc76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26889.png b/front/public/images/large/gregtech/gt.metaitem.02/26889.png deleted file mode 100644 index 2083d4cb2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26912.png b/front/public/images/large/gregtech/gt.metaitem.02/26912.png deleted file mode 100644 index 3b192f0296..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26913.png b/front/public/images/large/gregtech/gt.metaitem.02/26913.png deleted file mode 100644 index ed7c927be3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26951.png b/front/public/images/large/gregtech/gt.metaitem.02/26951.png deleted file mode 100644 index 84da0c2ee0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26952.png b/front/public/images/large/gregtech/gt.metaitem.02/26952.png deleted file mode 100644 index a6fc769046..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26966.png b/front/public/images/large/gregtech/gt.metaitem.02/26966.png deleted file mode 100644 index 9ee2780a95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26970.png b/front/public/images/large/gregtech/gt.metaitem.02/26970.png deleted file mode 100644 index cee4ff7839..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26975.png b/front/public/images/large/gregtech/gt.metaitem.02/26975.png deleted file mode 100644 index e067712e01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26976.png b/front/public/images/large/gregtech/gt.metaitem.02/26976.png deleted file mode 100644 index 129897c339..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26977.png b/front/public/images/large/gregtech/gt.metaitem.02/26977.png deleted file mode 100644 index 54d99107b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26978.png b/front/public/images/large/gregtech/gt.metaitem.02/26978.png deleted file mode 100644 index 6e752a41c7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26982.png b/front/public/images/large/gregtech/gt.metaitem.02/26982.png deleted file mode 100644 index 987fb641d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/26984.png b/front/public/images/large/gregtech/gt.metaitem.02/26984.png deleted file mode 100644 index 9ce98701f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/26984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27208.png b/front/public/images/large/gregtech/gt.metaitem.02/27208.png deleted file mode 100644 index 52e9ff8dab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27209.png b/front/public/images/large/gregtech/gt.metaitem.02/27209.png deleted file mode 100644 index d3be6508bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27500.png b/front/public/images/large/gregtech/gt.metaitem.02/27500.png deleted file mode 100644 index 43d31c4fe1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27501.png b/front/public/images/large/gregtech/gt.metaitem.02/27501.png deleted file mode 100644 index d3b218aae6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27502.png b/front/public/images/large/gregtech/gt.metaitem.02/27502.png deleted file mode 100644 index 2c5f58d66b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27503.png b/front/public/images/large/gregtech/gt.metaitem.02/27503.png deleted file mode 100644 index e5dfbf736c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27504.png b/front/public/images/large/gregtech/gt.metaitem.02/27504.png deleted file mode 100644 index 17623891d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27505.png b/front/public/images/large/gregtech/gt.metaitem.02/27505.png deleted file mode 100644 index 8d6e75ee76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27507.png b/front/public/images/large/gregtech/gt.metaitem.02/27507.png deleted file mode 100644 index f063f30c16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27508.png b/front/public/images/large/gregtech/gt.metaitem.02/27508.png deleted file mode 100644 index 4c36954232..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27509.png b/front/public/images/large/gregtech/gt.metaitem.02/27509.png deleted file mode 100644 index f4330760a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27510.png b/front/public/images/large/gregtech/gt.metaitem.02/27510.png deleted file mode 100644 index cc26aa1def..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27511.png b/front/public/images/large/gregtech/gt.metaitem.02/27511.png deleted file mode 100644 index 66969f5756..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27512.png b/front/public/images/large/gregtech/gt.metaitem.02/27512.png deleted file mode 100644 index 2c5f58d66b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27513.png b/front/public/images/large/gregtech/gt.metaitem.02/27513.png deleted file mode 100644 index cc26aa1def..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27514.png b/front/public/images/large/gregtech/gt.metaitem.02/27514.png deleted file mode 100644 index f063f30c16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27527.png b/front/public/images/large/gregtech/gt.metaitem.02/27527.png deleted file mode 100644 index 66969f5756..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27528.png b/front/public/images/large/gregtech/gt.metaitem.02/27528.png deleted file mode 100644 index 34e6f728f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/27890.png b/front/public/images/large/gregtech/gt.metaitem.02/27890.png deleted file mode 100644 index d29280d7cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/27890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28208.png b/front/public/images/large/gregtech/gt.metaitem.02/28208.png deleted file mode 100644 index f6ab5a3665..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28209.png b/front/public/images/large/gregtech/gt.metaitem.02/28209.png deleted file mode 100644 index 0532e77aed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28500.png b/front/public/images/large/gregtech/gt.metaitem.02/28500.png deleted file mode 100644 index cf5af8bfca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28501.png b/front/public/images/large/gregtech/gt.metaitem.02/28501.png deleted file mode 100644 index 5387f75a1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28502.png b/front/public/images/large/gregtech/gt.metaitem.02/28502.png deleted file mode 100644 index 206b330c22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28503.png b/front/public/images/large/gregtech/gt.metaitem.02/28503.png deleted file mode 100644 index b9a983ecca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28504.png b/front/public/images/large/gregtech/gt.metaitem.02/28504.png deleted file mode 100644 index 6098b4ebd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28505.png b/front/public/images/large/gregtech/gt.metaitem.02/28505.png deleted file mode 100644 index d7ea28e59a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28507.png b/front/public/images/large/gregtech/gt.metaitem.02/28507.png deleted file mode 100644 index 8b47e50958..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28508.png b/front/public/images/large/gregtech/gt.metaitem.02/28508.png deleted file mode 100644 index 04357d09cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28509.png b/front/public/images/large/gregtech/gt.metaitem.02/28509.png deleted file mode 100644 index 1645670676..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28510.png b/front/public/images/large/gregtech/gt.metaitem.02/28510.png deleted file mode 100644 index 18dab27dc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28511.png b/front/public/images/large/gregtech/gt.metaitem.02/28511.png deleted file mode 100644 index 0ec3a36ba6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28512.png b/front/public/images/large/gregtech/gt.metaitem.02/28512.png deleted file mode 100644 index 206b330c22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28513.png b/front/public/images/large/gregtech/gt.metaitem.02/28513.png deleted file mode 100644 index 18dab27dc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28514.png b/front/public/images/large/gregtech/gt.metaitem.02/28514.png deleted file mode 100644 index 8b47e50958..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28527.png b/front/public/images/large/gregtech/gt.metaitem.02/28527.png deleted file mode 100644 index 0ec3a36ba6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28528.png b/front/public/images/large/gregtech/gt.metaitem.02/28528.png deleted file mode 100644 index 4708d1405b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/28890.png b/front/public/images/large/gregtech/gt.metaitem.02/28890.png deleted file mode 100644 index fc8968c306..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/28890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29208.png b/front/public/images/large/gregtech/gt.metaitem.02/29208.png deleted file mode 100644 index 49232ef2ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29209.png b/front/public/images/large/gregtech/gt.metaitem.02/29209.png deleted file mode 100644 index 65081fd93d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29500.png b/front/public/images/large/gregtech/gt.metaitem.02/29500.png deleted file mode 100644 index 63a82db20e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29501.png b/front/public/images/large/gregtech/gt.metaitem.02/29501.png deleted file mode 100644 index b91e2574b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29502.png b/front/public/images/large/gregtech/gt.metaitem.02/29502.png deleted file mode 100644 index 7de34d3375..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29503.png b/front/public/images/large/gregtech/gt.metaitem.02/29503.png deleted file mode 100644 index 81aa14add7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29504.png b/front/public/images/large/gregtech/gt.metaitem.02/29504.png deleted file mode 100644 index d65ae58055..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29505.png b/front/public/images/large/gregtech/gt.metaitem.02/29505.png deleted file mode 100644 index 345ed8be2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29507.png b/front/public/images/large/gregtech/gt.metaitem.02/29507.png deleted file mode 100644 index 7b10ec898f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29508.png b/front/public/images/large/gregtech/gt.metaitem.02/29508.png deleted file mode 100644 index b8a8180703..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29509.png b/front/public/images/large/gregtech/gt.metaitem.02/29509.png deleted file mode 100644 index 5c589fd73a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29510.png b/front/public/images/large/gregtech/gt.metaitem.02/29510.png deleted file mode 100644 index 16d54d8adc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29511.png b/front/public/images/large/gregtech/gt.metaitem.02/29511.png deleted file mode 100644 index 9836feac93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29512.png b/front/public/images/large/gregtech/gt.metaitem.02/29512.png deleted file mode 100644 index 7de34d3375..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29513.png b/front/public/images/large/gregtech/gt.metaitem.02/29513.png deleted file mode 100644 index 16d54d8adc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29514.png b/front/public/images/large/gregtech/gt.metaitem.02/29514.png deleted file mode 100644 index 7b10ec898f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29527.png b/front/public/images/large/gregtech/gt.metaitem.02/29527.png deleted file mode 100644 index 9836feac93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29528.png b/front/public/images/large/gregtech/gt.metaitem.02/29528.png deleted file mode 100644 index e3b89b5022..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/29890.png b/front/public/images/large/gregtech/gt.metaitem.02/29890.png deleted file mode 100644 index 2e4a7322d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/29890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30208.png b/front/public/images/large/gregtech/gt.metaitem.02/30208.png deleted file mode 100644 index eebcd0757b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30209.png b/front/public/images/large/gregtech/gt.metaitem.02/30209.png deleted file mode 100644 index 20bb8a2560..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30500.png b/front/public/images/large/gregtech/gt.metaitem.02/30500.png deleted file mode 100644 index 76045d00be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30501.png b/front/public/images/large/gregtech/gt.metaitem.02/30501.png deleted file mode 100644 index fd908f6227..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30502.png b/front/public/images/large/gregtech/gt.metaitem.02/30502.png deleted file mode 100644 index 5802ab5fac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30503.png b/front/public/images/large/gregtech/gt.metaitem.02/30503.png deleted file mode 100644 index afb325bdcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30504.png b/front/public/images/large/gregtech/gt.metaitem.02/30504.png deleted file mode 100644 index 61d85a2d98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30505.png b/front/public/images/large/gregtech/gt.metaitem.02/30505.png deleted file mode 100644 index 2c0b905e8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30507.png b/front/public/images/large/gregtech/gt.metaitem.02/30507.png deleted file mode 100644 index 960efea6ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30507.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30508.png b/front/public/images/large/gregtech/gt.metaitem.02/30508.png deleted file mode 100644 index e55f39ae28..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30508.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30509.png b/front/public/images/large/gregtech/gt.metaitem.02/30509.png deleted file mode 100644 index 02a0034084..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30509.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30510.png b/front/public/images/large/gregtech/gt.metaitem.02/30510.png deleted file mode 100644 index b952975703..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30511.png b/front/public/images/large/gregtech/gt.metaitem.02/30511.png deleted file mode 100644 index 54df9bfd26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30512.png b/front/public/images/large/gregtech/gt.metaitem.02/30512.png deleted file mode 100644 index 5802ab5fac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30513.png b/front/public/images/large/gregtech/gt.metaitem.02/30513.png deleted file mode 100644 index b952975703..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30514.png b/front/public/images/large/gregtech/gt.metaitem.02/30514.png deleted file mode 100644 index 960efea6ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30514.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30527.png b/front/public/images/large/gregtech/gt.metaitem.02/30527.png deleted file mode 100644 index 54df9bfd26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30528.png b/front/public/images/large/gregtech/gt.metaitem.02/30528.png deleted file mode 100644 index a8ddc6ed8c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/30890.png b/front/public/images/large/gregtech/gt.metaitem.02/30890.png deleted file mode 100644 index 6c65c44803..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/30890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31010.png b/front/public/images/large/gregtech/gt.metaitem.02/31010.png deleted file mode 100644 index dea46c8d27..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31019.png b/front/public/images/large/gregtech/gt.metaitem.02/31019.png deleted file mode 100644 index b9d51dc8ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31019.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31028.png b/front/public/images/large/gregtech/gt.metaitem.02/31028.png deleted file mode 100644 index 0b157d32c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31028.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31030.png b/front/public/images/large/gregtech/gt.metaitem.02/31030.png deleted file mode 100644 index f48035bc26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31032.png b/front/public/images/large/gregtech/gt.metaitem.02/31032.png deleted file mode 100644 index 8dedde6a63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31033.png b/front/public/images/large/gregtech/gt.metaitem.02/31033.png deleted file mode 100644 index 87b4912e75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31034.png b/front/public/images/large/gregtech/gt.metaitem.02/31034.png deleted file mode 100644 index d48e77eab0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31035.png b/front/public/images/large/gregtech/gt.metaitem.02/31035.png deleted file mode 100644 index 4f7949cd70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31052.png b/front/public/images/large/gregtech/gt.metaitem.02/31052.png deleted file mode 100644 index 93255ec32c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31054.png b/front/public/images/large/gregtech/gt.metaitem.02/31054.png deleted file mode 100644 index 694b01d0ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31057.png b/front/public/images/large/gregtech/gt.metaitem.02/31057.png deleted file mode 100644 index 008187d666..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31067.png b/front/public/images/large/gregtech/gt.metaitem.02/31067.png deleted file mode 100644 index 1bbb3b0567..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31067.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31081.png b/front/public/images/large/gregtech/gt.metaitem.02/31081.png deleted file mode 100644 index 59ac5db1f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31081.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31083.png b/front/public/images/large/gregtech/gt.metaitem.02/31083.png deleted file mode 100644 index 1ddc855db3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31084.png b/front/public/images/large/gregtech/gt.metaitem.02/31084.png deleted file mode 100644 index 00881da111..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31085.png b/front/public/images/large/gregtech/gt.metaitem.02/31085.png deleted file mode 100644 index 37874cd680..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31086.png b/front/public/images/large/gregtech/gt.metaitem.02/31086.png deleted file mode 100644 index a51be6beed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31089.png b/front/public/images/large/gregtech/gt.metaitem.02/31089.png deleted file mode 100644 index d31b405aed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31090.png b/front/public/images/large/gregtech/gt.metaitem.02/31090.png deleted file mode 100644 index 04165bfd5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31111.png b/front/public/images/large/gregtech/gt.metaitem.02/31111.png deleted file mode 100644 index 13b2f1df25..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31112.png b/front/public/images/large/gregtech/gt.metaitem.02/31112.png deleted file mode 100644 index 96203a09a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31129.png b/front/public/images/large/gregtech/gt.metaitem.02/31129.png deleted file mode 100644 index 995a64b47e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31139.png b/front/public/images/large/gregtech/gt.metaitem.02/31139.png deleted file mode 100644 index 1c26f99f89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31141.png b/front/public/images/large/gregtech/gt.metaitem.02/31141.png deleted file mode 100644 index 610e35672b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31143.png b/front/public/images/large/gregtech/gt.metaitem.02/31143.png deleted file mode 100644 index 355a1ab89e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31201.png b/front/public/images/large/gregtech/gt.metaitem.02/31201.png deleted file mode 100644 index 300d4c5a93..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31202.png b/front/public/images/large/gregtech/gt.metaitem.02/31202.png deleted file mode 100644 index 5fd9cf1418..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31203.png b/front/public/images/large/gregtech/gt.metaitem.02/31203.png deleted file mode 100644 index c183bef94c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31204.png b/front/public/images/large/gregtech/gt.metaitem.02/31204.png deleted file mode 100644 index b93774e064..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31205.png b/front/public/images/large/gregtech/gt.metaitem.02/31205.png deleted file mode 100644 index d1663a299a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31206.png b/front/public/images/large/gregtech/gt.metaitem.02/31206.png deleted file mode 100644 index b134d40097..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31207.png b/front/public/images/large/gregtech/gt.metaitem.02/31207.png deleted file mode 100644 index 53bee9c0bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31299.png b/front/public/images/large/gregtech/gt.metaitem.02/31299.png deleted file mode 100644 index 215bbe4cfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31299.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31300.png b/front/public/images/large/gregtech/gt.metaitem.02/31300.png deleted file mode 100644 index 195c726582..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31301.png b/front/public/images/large/gregtech/gt.metaitem.02/31301.png deleted file mode 100644 index 0cbbdf4744..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31302.png b/front/public/images/large/gregtech/gt.metaitem.02/31302.png deleted file mode 100644 index 015877a6a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31303.png b/front/public/images/large/gregtech/gt.metaitem.02/31303.png deleted file mode 100644 index cf0a62afa8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31304.png b/front/public/images/large/gregtech/gt.metaitem.02/31304.png deleted file mode 100644 index 5258ce749c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31305.png b/front/public/images/large/gregtech/gt.metaitem.02/31305.png deleted file mode 100644 index 96b0c723fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31306.png b/front/public/images/large/gregtech/gt.metaitem.02/31306.png deleted file mode 100644 index f454f69adc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31313.png b/front/public/images/large/gregtech/gt.metaitem.02/31313.png deleted file mode 100644 index 96000545f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31316.png b/front/public/images/large/gregtech/gt.metaitem.02/31316.png deleted file mode 100644 index 587a7fd2d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31317.png b/front/public/images/large/gregtech/gt.metaitem.02/31317.png deleted file mode 100644 index 6075a4b1a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31318.png b/front/public/images/large/gregtech/gt.metaitem.02/31318.png deleted file mode 100644 index 59aa8c2d59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31319.png b/front/public/images/large/gregtech/gt.metaitem.02/31319.png deleted file mode 100644 index 04ae343e18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31320.png b/front/public/images/large/gregtech/gt.metaitem.02/31320.png deleted file mode 100644 index 7c2293be70..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31321.png b/front/public/images/large/gregtech/gt.metaitem.02/31321.png deleted file mode 100644 index c03a4c9499..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31323.png b/front/public/images/large/gregtech/gt.metaitem.02/31323.png deleted file mode 100644 index b88d4c635f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31324.png b/front/public/images/large/gregtech/gt.metaitem.02/31324.png deleted file mode 100644 index 59ac5db1f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31325.png b/front/public/images/large/gregtech/gt.metaitem.02/31325.png deleted file mode 100644 index 80c8d31580..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31330.png b/front/public/images/large/gregtech/gt.metaitem.02/31330.png deleted file mode 100644 index 757425bad7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31334.png b/front/public/images/large/gregtech/gt.metaitem.02/31334.png deleted file mode 100644 index 1bbb3b0567..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31335.png b/front/public/images/large/gregtech/gt.metaitem.02/31335.png deleted file mode 100644 index f8a57bcf10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31338.png b/front/public/images/large/gregtech/gt.metaitem.02/31338.png deleted file mode 100644 index ab325e926b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31339.png b/front/public/images/large/gregtech/gt.metaitem.02/31339.png deleted file mode 100644 index 801192d1f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31339.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31343.png b/front/public/images/large/gregtech/gt.metaitem.02/31343.png deleted file mode 100644 index 02a8c43eaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31344.png b/front/public/images/large/gregtech/gt.metaitem.02/31344.png deleted file mode 100644 index 710b7793f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31345.png b/front/public/images/large/gregtech/gt.metaitem.02/31345.png deleted file mode 100644 index da5d130344..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31346.png b/front/public/images/large/gregtech/gt.metaitem.02/31346.png deleted file mode 100644 index e0112e3951..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31348.png b/front/public/images/large/gregtech/gt.metaitem.02/31348.png deleted file mode 100644 index 63477c9673..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31349.png b/front/public/images/large/gregtech/gt.metaitem.02/31349.png deleted file mode 100644 index e42c434ec3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31350.png b/front/public/images/large/gregtech/gt.metaitem.02/31350.png deleted file mode 100644 index 1b3ffe6d89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31351.png b/front/public/images/large/gregtech/gt.metaitem.02/31351.png deleted file mode 100644 index 920d06dbfe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31352.png b/front/public/images/large/gregtech/gt.metaitem.02/31352.png deleted file mode 100644 index be092cf4f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31353.png b/front/public/images/large/gregtech/gt.metaitem.02/31353.png deleted file mode 100644 index 0a294945f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31354.png b/front/public/images/large/gregtech/gt.metaitem.02/31354.png deleted file mode 100644 index 101c546cac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31355.png b/front/public/images/large/gregtech/gt.metaitem.02/31355.png deleted file mode 100644 index 6de374315d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31356.png b/front/public/images/large/gregtech/gt.metaitem.02/31356.png deleted file mode 100644 index 2bf77dea74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31357.png b/front/public/images/large/gregtech/gt.metaitem.02/31357.png deleted file mode 100644 index 19f753e8cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31362.png b/front/public/images/large/gregtech/gt.metaitem.02/31362.png deleted file mode 100644 index 9f8fa8e4f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31363.png b/front/public/images/large/gregtech/gt.metaitem.02/31363.png deleted file mode 100644 index 8dedde6a63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31364.png b/front/public/images/large/gregtech/gt.metaitem.02/31364.png deleted file mode 100644 index a3d9b9e851..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31365.png b/front/public/images/large/gregtech/gt.metaitem.02/31365.png deleted file mode 100644 index 2f96622f97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31366.png b/front/public/images/large/gregtech/gt.metaitem.02/31366.png deleted file mode 100644 index 116afd974b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31367.png b/front/public/images/large/gregtech/gt.metaitem.02/31367.png deleted file mode 100644 index 9eb36bc17a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31368.png b/front/public/images/large/gregtech/gt.metaitem.02/31368.png deleted file mode 100644 index f9ffec3b52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31369.png b/front/public/images/large/gregtech/gt.metaitem.02/31369.png deleted file mode 100644 index d47d37297e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31370.png b/front/public/images/large/gregtech/gt.metaitem.02/31370.png deleted file mode 100644 index 7f81b261d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31371.png b/front/public/images/large/gregtech/gt.metaitem.02/31371.png deleted file mode 100644 index 21a0c33933..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31372.png b/front/public/images/large/gregtech/gt.metaitem.02/31372.png deleted file mode 100644 index f573dfc05e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31373.png b/front/public/images/large/gregtech/gt.metaitem.02/31373.png deleted file mode 100644 index ac0a67e9bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31374.png b/front/public/images/large/gregtech/gt.metaitem.02/31374.png deleted file mode 100644 index 8c7125760a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31378.png b/front/public/images/large/gregtech/gt.metaitem.02/31378.png deleted file mode 100644 index e2fa9c525e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31379.png b/front/public/images/large/gregtech/gt.metaitem.02/31379.png deleted file mode 100644 index b62bcfe16d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31380.png b/front/public/images/large/gregtech/gt.metaitem.02/31380.png deleted file mode 100644 index 8a1818154d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31381.png b/front/public/images/large/gregtech/gt.metaitem.02/31381.png deleted file mode 100644 index ee71401d77..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31382.png b/front/public/images/large/gregtech/gt.metaitem.02/31382.png deleted file mode 100644 index ebc5f4724e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31383.png b/front/public/images/large/gregtech/gt.metaitem.02/31383.png deleted file mode 100644 index 7f290305ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31384.png b/front/public/images/large/gregtech/gt.metaitem.02/31384.png deleted file mode 100644 index f10e262329..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31385.png b/front/public/images/large/gregtech/gt.metaitem.02/31385.png deleted file mode 100644 index e29e43d46b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31386.png b/front/public/images/large/gregtech/gt.metaitem.02/31386.png deleted file mode 100644 index bcf01a69e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31387.png b/front/public/images/large/gregtech/gt.metaitem.02/31387.png deleted file mode 100644 index fe18271ceb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31388.png b/front/public/images/large/gregtech/gt.metaitem.02/31388.png deleted file mode 100644 index 59ac5db1f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31389.png b/front/public/images/large/gregtech/gt.metaitem.02/31389.png deleted file mode 100644 index 8c2e5f6599..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31390.png b/front/public/images/large/gregtech/gt.metaitem.02/31390.png deleted file mode 100644 index ffb6fade1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31391.png b/front/public/images/large/gregtech/gt.metaitem.02/31391.png deleted file mode 100644 index ed6eb0dbe8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31392.png b/front/public/images/large/gregtech/gt.metaitem.02/31392.png deleted file mode 100644 index 1ea2201d89..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31393.png b/front/public/images/large/gregtech/gt.metaitem.02/31393.png deleted file mode 100644 index d6e3409af2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31394.png b/front/public/images/large/gregtech/gt.metaitem.02/31394.png deleted file mode 100644 index 04ae343e18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31397.png b/front/public/images/large/gregtech/gt.metaitem.02/31397.png deleted file mode 100644 index fdce63d36c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31398.png b/front/public/images/large/gregtech/gt.metaitem.02/31398.png deleted file mode 100644 index 4395135bd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31399.png b/front/public/images/large/gregtech/gt.metaitem.02/31399.png deleted file mode 100644 index cc833aa76c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31400.png b/front/public/images/large/gregtech/gt.metaitem.02/31400.png deleted file mode 100644 index af3aaed23f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31401.png b/front/public/images/large/gregtech/gt.metaitem.02/31401.png deleted file mode 100644 index 50d5d9a9fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31402.png b/front/public/images/large/gregtech/gt.metaitem.02/31402.png deleted file mode 100644 index 05d64cf6b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31403.png b/front/public/images/large/gregtech/gt.metaitem.02/31403.png deleted file mode 100644 index dcccb58122..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31404.png b/front/public/images/large/gregtech/gt.metaitem.02/31404.png deleted file mode 100644 index 4ecf385998..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31405.png b/front/public/images/large/gregtech/gt.metaitem.02/31405.png deleted file mode 100644 index 0c57efd0aa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31406.png b/front/public/images/large/gregtech/gt.metaitem.02/31406.png deleted file mode 100644 index 49677f4ed3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31407.png b/front/public/images/large/gregtech/gt.metaitem.02/31407.png deleted file mode 100644 index 32215c5aba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31408.png b/front/public/images/large/gregtech/gt.metaitem.02/31408.png deleted file mode 100644 index 33623b0b31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31470.png b/front/public/images/large/gregtech/gt.metaitem.02/31470.png deleted file mode 100644 index 3b693a937f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31471.png b/front/public/images/large/gregtech/gt.metaitem.02/31471.png deleted file mode 100644 index 008187d666..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31472.png b/front/public/images/large/gregtech/gt.metaitem.02/31472.png deleted file mode 100644 index 59ac5db1f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31473.png b/front/public/images/large/gregtech/gt.metaitem.02/31473.png deleted file mode 100644 index 1bbb3b0567..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31485.png b/front/public/images/large/gregtech/gt.metaitem.02/31485.png deleted file mode 100644 index 444229fbda..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31488.png b/front/public/images/large/gregtech/gt.metaitem.02/31488.png deleted file mode 100644 index dffb496b75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31489.png b/front/public/images/large/gregtech/gt.metaitem.02/31489.png deleted file mode 100644 index d8df17186a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31500.png b/front/public/images/large/gregtech/gt.metaitem.02/31500.png deleted file mode 100644 index 2d9f888c80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31521.png b/front/public/images/large/gregtech/gt.metaitem.02/31521.png deleted file mode 100644 index 59aa8c2d59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31529.png b/front/public/images/large/gregtech/gt.metaitem.02/31529.png deleted file mode 100644 index 5b7577f7d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31540.png b/front/public/images/large/gregtech/gt.metaitem.02/31540.png deleted file mode 100644 index 59aa8c2d59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31541.png b/front/public/images/large/gregtech/gt.metaitem.02/31541.png deleted file mode 100644 index c2bd3f648a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31541.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31542.png b/front/public/images/large/gregtech/gt.metaitem.02/31542.png deleted file mode 100644 index ee927fca40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31542.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31543.png b/front/public/images/large/gregtech/gt.metaitem.02/31543.png deleted file mode 100644 index 6e808c5da1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31543.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31544.png b/front/public/images/large/gregtech/gt.metaitem.02/31544.png deleted file mode 100644 index 42109b8643..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31544.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31545.png b/front/public/images/large/gregtech/gt.metaitem.02/31545.png deleted file mode 100644 index 5c5b0d6011..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31545.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31576.png b/front/public/images/large/gregtech/gt.metaitem.02/31576.png deleted file mode 100644 index d5abcba380..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31581.png b/front/public/images/large/gregtech/gt.metaitem.02/31581.png deleted file mode 100644 index 83bd55b1a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31583.png b/front/public/images/large/gregtech/gt.metaitem.02/31583.png deleted file mode 100644 index 570d882240..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31585.png b/front/public/images/large/gregtech/gt.metaitem.02/31585.png deleted file mode 100644 index f568896a56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31586.png b/front/public/images/large/gregtech/gt.metaitem.02/31586.png deleted file mode 100644 index d685ae9dc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31588.png b/front/public/images/large/gregtech/gt.metaitem.02/31588.png deleted file mode 100644 index 26ae38c7a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31599.png b/front/public/images/large/gregtech/gt.metaitem.02/31599.png deleted file mode 100644 index 40a8f7a9ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31610.png b/front/public/images/large/gregtech/gt.metaitem.02/31610.png deleted file mode 100644 index 7c72d09c19..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31613.png b/front/public/images/large/gregtech/gt.metaitem.02/31613.png deleted file mode 100644 index f0e293f7ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31631.png b/front/public/images/large/gregtech/gt.metaitem.02/31631.png deleted file mode 100644 index 67eae95843..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31635.png b/front/public/images/large/gregtech/gt.metaitem.02/31635.png deleted file mode 100644 index 2d61b32ba8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31636.png b/front/public/images/large/gregtech/gt.metaitem.02/31636.png deleted file mode 100644 index 77e82c990d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31649.png b/front/public/images/large/gregtech/gt.metaitem.02/31649.png deleted file mode 100644 index 332f0561a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31765.png b/front/public/images/large/gregtech/gt.metaitem.02/31765.png deleted file mode 100644 index f9b231c963..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31770.png b/front/public/images/large/gregtech/gt.metaitem.02/31770.png deleted file mode 100644 index be4fc4b27f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31809.png b/front/public/images/large/gregtech/gt.metaitem.02/31809.png deleted file mode 100644 index f799c9397a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31809.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31844.png b/front/public/images/large/gregtech/gt.metaitem.02/31844.png deleted file mode 100644 index 8f45bc49a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31844.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31845.png b/front/public/images/large/gregtech/gt.metaitem.02/31845.png deleted file mode 100644 index 6ae3a4152e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31845.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31849.png b/front/public/images/large/gregtech/gt.metaitem.02/31849.png deleted file mode 100644 index b11eeefadb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31849.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31850.png b/front/public/images/large/gregtech/gt.metaitem.02/31850.png deleted file mode 100644 index f846d2efaf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31850.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31854.png b/front/public/images/large/gregtech/gt.metaitem.02/31854.png deleted file mode 100644 index 96b0c723fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31854.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31868.png b/front/public/images/large/gregtech/gt.metaitem.02/31868.png deleted file mode 100644 index a6f124fb2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31874.png b/front/public/images/large/gregtech/gt.metaitem.02/31874.png deleted file mode 100644 index 8dedde6a63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31880.png b/front/public/images/large/gregtech/gt.metaitem.02/31880.png deleted file mode 100644 index df9e0932a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31884.png b/front/public/images/large/gregtech/gt.metaitem.02/31884.png deleted file mode 100644 index 80c8d31580..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31889.png b/front/public/images/large/gregtech/gt.metaitem.02/31889.png deleted file mode 100644 index b6df9170c8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31889.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31912.png b/front/public/images/large/gregtech/gt.metaitem.02/31912.png deleted file mode 100644 index c7a5a39234..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31913.png b/front/public/images/large/gregtech/gt.metaitem.02/31913.png deleted file mode 100644 index 63477c9673..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31952.png b/front/public/images/large/gregtech/gt.metaitem.02/31952.png deleted file mode 100644 index b54952c9a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31966.png b/front/public/images/large/gregtech/gt.metaitem.02/31966.png deleted file mode 100644 index 761507e62f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31970.png b/front/public/images/large/gregtech/gt.metaitem.02/31970.png deleted file mode 100644 index 6f928c2f22..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31975.png b/front/public/images/large/gregtech/gt.metaitem.02/31975.png deleted file mode 100644 index 18003fbb8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31976.png b/front/public/images/large/gregtech/gt.metaitem.02/31976.png deleted file mode 100644 index e771089309..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31977.png b/front/public/images/large/gregtech/gt.metaitem.02/31977.png deleted file mode 100644 index 8a8de5c299..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31978.png b/front/public/images/large/gregtech/gt.metaitem.02/31978.png deleted file mode 100644 index 9a5508c497..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31982.png b/front/public/images/large/gregtech/gt.metaitem.02/31982.png deleted file mode 100644 index 3b18b2fe13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/31984.png b/front/public/images/large/gregtech/gt.metaitem.02/31984.png deleted file mode 100644 index 04ae343e18..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/31984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32000.png b/front/public/images/large/gregtech/gt.metaitem.02/32000.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32000.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32001.png b/front/public/images/large/gregtech/gt.metaitem.02/32001.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32001.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32002.png b/front/public/images/large/gregtech/gt.metaitem.02/32002.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32002.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32003.png b/front/public/images/large/gregtech/gt.metaitem.02/32003.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32003.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32004.png b/front/public/images/large/gregtech/gt.metaitem.02/32004.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32004.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32005.png b/front/public/images/large/gregtech/gt.metaitem.02/32005.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32005.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32006.png b/front/public/images/large/gregtech/gt.metaitem.02/32006.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32007.png b/front/public/images/large/gregtech/gt.metaitem.02/32007.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32008.png b/front/public/images/large/gregtech/gt.metaitem.02/32008.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32009.png b/front/public/images/large/gregtech/gt.metaitem.02/32009.png deleted file mode 100644 index 621a2776c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32009.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32010.png b/front/public/images/large/gregtech/gt.metaitem.02/32010.png deleted file mode 100644 index a6c227cc58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32100.png b/front/public/images/large/gregtech/gt.metaitem.02/32100.png deleted file mode 100644 index fab0824c51..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32101.png b/front/public/images/large/gregtech/gt.metaitem.02/32101.png deleted file mode 100644 index 881f618e53..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32102.png b/front/public/images/large/gregtech/gt.metaitem.02/32102.png deleted file mode 100644 index 553c0725a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32103.png b/front/public/images/large/gregtech/gt.metaitem.02/32103.png deleted file mode 100644 index 9d1fca9a2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32104.png b/front/public/images/large/gregtech/gt.metaitem.02/32104.png deleted file mode 100644 index eb7cba5fa4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32105.png b/front/public/images/large/gregtech/gt.metaitem.02/32105.png deleted file mode 100644 index 7ad7f50ab2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32105.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32106.png b/front/public/images/large/gregtech/gt.metaitem.02/32106.png deleted file mode 100644 index 59d2d5d0cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32107.png b/front/public/images/large/gregtech/gt.metaitem.02/32107.png deleted file mode 100644 index 9555ed19e0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32107.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32109.png b/front/public/images/large/gregtech/gt.metaitem.02/32109.png deleted file mode 100644 index 2b459b97a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32109.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32110.png b/front/public/images/large/gregtech/gt.metaitem.02/32110.png deleted file mode 100644 index 109be2aea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32111.png b/front/public/images/large/gregtech/gt.metaitem.02/32111.png deleted file mode 100644 index 109be2aea0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32112.png b/front/public/images/large/gregtech/gt.metaitem.02/32112.png deleted file mode 100644 index 946fc7f9cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32113.png b/front/public/images/large/gregtech/gt.metaitem.02/32113.png deleted file mode 100644 index 9b3160c481..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32113.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32114.png b/front/public/images/large/gregtech/gt.metaitem.02/32114.png deleted file mode 100644 index 74ead1c2d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32115.png b/front/public/images/large/gregtech/gt.metaitem.02/32115.png deleted file mode 100644 index cabcac9ffa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32115.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32116.png b/front/public/images/large/gregtech/gt.metaitem.02/32116.png deleted file mode 100644 index 0c34e9ba16..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32116.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32117.png b/front/public/images/large/gregtech/gt.metaitem.02/32117.png deleted file mode 100644 index eeb0f899f1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32117.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32118.png b/front/public/images/large/gregtech/gt.metaitem.02/32118.png deleted file mode 100644 index ad504d80e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32118.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32119.png b/front/public/images/large/gregtech/gt.metaitem.02/32119.png deleted file mode 100644 index 2aed74b0ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32119.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32120.png b/front/public/images/large/gregtech/gt.metaitem.02/32120.png deleted file mode 100644 index 9711b5e850..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32120.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32121.png b/front/public/images/large/gregtech/gt.metaitem.02/32121.png deleted file mode 100644 index 9711b5e850..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32121.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32122.png b/front/public/images/large/gregtech/gt.metaitem.02/32122.png deleted file mode 100644 index 9711b5e850..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32122.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32123.png b/front/public/images/large/gregtech/gt.metaitem.02/32123.png deleted file mode 100644 index 9711b5e850..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32123.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32125.png b/front/public/images/large/gregtech/gt.metaitem.02/32125.png deleted file mode 100644 index 33e1a48b44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32125.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32126.png b/front/public/images/large/gregtech/gt.metaitem.02/32126.png deleted file mode 100644 index 419ba537ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32126.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32127.png b/front/public/images/large/gregtech/gt.metaitem.02/32127.png deleted file mode 100644 index 33e955af58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32127.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32128.png b/front/public/images/large/gregtech/gt.metaitem.02/32128.png deleted file mode 100644 index a002920e90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32128.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32129.png b/front/public/images/large/gregtech/gt.metaitem.02/32129.png deleted file mode 100644 index 33e955af58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32130.png b/front/public/images/large/gregtech/gt.metaitem.02/32130.png deleted file mode 100644 index a002920e90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32131.png b/front/public/images/large/gregtech/gt.metaitem.02/32131.png deleted file mode 100644 index 3ad3cc54f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32132.png b/front/public/images/large/gregtech/gt.metaitem.02/32132.png deleted file mode 100644 index 3a3376a417..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32132.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32133.png b/front/public/images/large/gregtech/gt.metaitem.02/32133.png deleted file mode 100644 index 7e008bbc23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32133.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32134.png b/front/public/images/large/gregtech/gt.metaitem.02/32134.png deleted file mode 100644 index 4523115369..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32135.png b/front/public/images/large/gregtech/gt.metaitem.02/32135.png deleted file mode 100644 index c0ad8d16c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32135.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32136.png b/front/public/images/large/gregtech/gt.metaitem.02/32136.png deleted file mode 100644 index ba35c69a5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32136.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32137.png b/front/public/images/large/gregtech/gt.metaitem.02/32137.png deleted file mode 100644 index 98da74a653..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32137.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32200.png b/front/public/images/large/gregtech/gt.metaitem.02/32200.png deleted file mode 100644 index b5bf2f3cf4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32201.png b/front/public/images/large/gregtech/gt.metaitem.02/32201.png deleted file mode 100644 index fa4c7e7f14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32202.png b/front/public/images/large/gregtech/gt.metaitem.02/32202.png deleted file mode 100644 index 7b25236e45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32203.png b/front/public/images/large/gregtech/gt.metaitem.02/32203.png deleted file mode 100644 index 55b807e7a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32204.png b/front/public/images/large/gregtech/gt.metaitem.02/32204.png deleted file mode 100644 index bfcd5c5ef1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32205.png b/front/public/images/large/gregtech/gt.metaitem.02/32205.png deleted file mode 100644 index 6e183452ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32206.png b/front/public/images/large/gregtech/gt.metaitem.02/32206.png deleted file mode 100644 index 489421e865..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32207.png b/front/public/images/large/gregtech/gt.metaitem.02/32207.png deleted file mode 100644 index bd4543ca2e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32208.png b/front/public/images/large/gregtech/gt.metaitem.02/32208.png deleted file mode 100644 index 231e1dd9ff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32209.png b/front/public/images/large/gregtech/gt.metaitem.02/32209.png deleted file mode 100644 index 9903482954..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32210.png b/front/public/images/large/gregtech/gt.metaitem.02/32210.png deleted file mode 100644 index 931940b8b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32210.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32211.png b/front/public/images/large/gregtech/gt.metaitem.02/32211.png deleted file mode 100644 index e3ef9d8a17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32211.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32212.png b/front/public/images/large/gregtech/gt.metaitem.02/32212.png deleted file mode 100644 index a24a0e2d44..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32212.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32213.png b/front/public/images/large/gregtech/gt.metaitem.02/32213.png deleted file mode 100644 index abf5f28b76..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32213.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32214.png b/front/public/images/large/gregtech/gt.metaitem.02/32214.png deleted file mode 100644 index bffab2e4e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32214.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32220.png b/front/public/images/large/gregtech/gt.metaitem.02/32220.png deleted file mode 100644 index b40859d6fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32220.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32221.png b/front/public/images/large/gregtech/gt.metaitem.02/32221.png deleted file mode 100644 index 506af22257..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32221.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32222.png b/front/public/images/large/gregtech/gt.metaitem.02/32222.png deleted file mode 100644 index 3ca5a4d7f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32222.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32223.png b/front/public/images/large/gregtech/gt.metaitem.02/32223.png deleted file mode 100644 index 6b4747e8f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32223.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32224.png b/front/public/images/large/gregtech/gt.metaitem.02/32224.png deleted file mode 100644 index 5ff19b3d47..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32224.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32230.png b/front/public/images/large/gregtech/gt.metaitem.02/32230.png deleted file mode 100644 index d16e313163..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32231.png b/front/public/images/large/gregtech/gt.metaitem.02/32231.png deleted file mode 100644 index 9d28cffd67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32231.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32232.png b/front/public/images/large/gregtech/gt.metaitem.02/32232.png deleted file mode 100644 index 5e1d584893..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32232.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32233.png b/front/public/images/large/gregtech/gt.metaitem.02/32233.png deleted file mode 100644 index 2b61c93bbf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32233.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32234.png b/front/public/images/large/gregtech/gt.metaitem.02/32234.png deleted file mode 100644 index 30ac86153a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32234.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32240.png b/front/public/images/large/gregtech/gt.metaitem.02/32240.png deleted file mode 100644 index 4a5549a6d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32240.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32241.png b/front/public/images/large/gregtech/gt.metaitem.02/32241.png deleted file mode 100644 index a007b617bf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32241.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32242.png b/front/public/images/large/gregtech/gt.metaitem.02/32242.png deleted file mode 100644 index 7a9ecc56c9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32242.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32243.png b/front/public/images/large/gregtech/gt.metaitem.02/32243.png deleted file mode 100644 index 080964d997..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32243.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32244.png b/front/public/images/large/gregtech/gt.metaitem.02/32244.png deleted file mode 100644 index ee7b301c3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32244.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32250.png b/front/public/images/large/gregtech/gt.metaitem.02/32250.png deleted file mode 100644 index 6b79ad02cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32250.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32251.png b/front/public/images/large/gregtech/gt.metaitem.02/32251.png deleted file mode 100644 index 8c26890cc2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32251.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32252.png b/front/public/images/large/gregtech/gt.metaitem.02/32252.png deleted file mode 100644 index ea98aba5df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32252.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32260.png b/front/public/images/large/gregtech/gt.metaitem.02/32260.png deleted file mode 100644 index c0df4c4594..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32260.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32261.png b/front/public/images/large/gregtech/gt.metaitem.02/32261.png deleted file mode 100644 index e81f53c4ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32261.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32262.png b/front/public/images/large/gregtech/gt.metaitem.02/32262.png deleted file mode 100644 index d51894fa81..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32262.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32270.png b/front/public/images/large/gregtech/gt.metaitem.02/32270.png deleted file mode 100644 index e173285468..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32270.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32271.png b/front/public/images/large/gregtech/gt.metaitem.02/32271.png deleted file mode 100644 index e173285468..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32271.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32410.png b/front/public/images/large/gregtech/gt.metaitem.02/32410.png deleted file mode 100644 index 95dfb1c26d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32410.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32414.png b/front/public/images/large/gregtech/gt.metaitem.02/32414.png deleted file mode 100644 index 648d272de0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32414.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32415.png b/front/public/images/large/gregtech/gt.metaitem.02/32415.png deleted file mode 100644 index 8439037c26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32415.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32416.png b/front/public/images/large/gregtech/gt.metaitem.02/32416.png deleted file mode 100644 index da59e879eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32416.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32417.png b/front/public/images/large/gregtech/gt.metaitem.02/32417.png deleted file mode 100644 index cfa4eefce5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32417.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32418.png b/front/public/images/large/gregtech/gt.metaitem.02/32418.png deleted file mode 100644 index 2063017413..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32418.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32419.png b/front/public/images/large/gregtech/gt.metaitem.02/32419.png deleted file mode 100644 index ec194b1d0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32419.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32420.png b/front/public/images/large/gregtech/gt.metaitem.02/32420.png deleted file mode 100644 index 3b34723a0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32420.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32421.png b/front/public/images/large/gregtech/gt.metaitem.02/32421.png deleted file mode 100644 index bfe2adfbdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32421.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32422.png b/front/public/images/large/gregtech/gt.metaitem.02/32422.png deleted file mode 100644 index f44d2770a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32422.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32423.png b/front/public/images/large/gregtech/gt.metaitem.02/32423.png deleted file mode 100644 index 4504c034bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32423.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32424.png b/front/public/images/large/gregtech/gt.metaitem.02/32424.png deleted file mode 100644 index 0ac2ce6569..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32424.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32425.png b/front/public/images/large/gregtech/gt.metaitem.02/32425.png deleted file mode 100644 index 1929cc616b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32425.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32426.png b/front/public/images/large/gregtech/gt.metaitem.02/32426.png deleted file mode 100644 index 79d0619a8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32426.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32427.png b/front/public/images/large/gregtech/gt.metaitem.02/32427.png deleted file mode 100644 index 42464f8959..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32427.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32428.png b/front/public/images/large/gregtech/gt.metaitem.02/32428.png deleted file mode 100644 index 1151ad8b30..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32428.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32429.png b/front/public/images/large/gregtech/gt.metaitem.02/32429.png deleted file mode 100644 index a6c227cc58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32429.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32470.png b/front/public/images/large/gregtech/gt.metaitem.02/32470.png deleted file mode 100644 index d0078dd459..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32471.png b/front/public/images/large/gregtech/gt.metaitem.02/32471.png deleted file mode 100644 index 6672a960e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32472.png b/front/public/images/large/gregtech/gt.metaitem.02/32472.png deleted file mode 100644 index 19ee310bbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32473.png b/front/public/images/large/gregtech/gt.metaitem.02/32473.png deleted file mode 100644 index 6c5483eb9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32474.png b/front/public/images/large/gregtech/gt.metaitem.02/32474.png deleted file mode 100644 index 9789dde8be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32474.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32475.png b/front/public/images/large/gregtech/gt.metaitem.02/32475.png deleted file mode 100644 index 96a983a122..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32475.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32476.png b/front/public/images/large/gregtech/gt.metaitem.02/32476.png deleted file mode 100644 index 6beb37d370..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32476.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32477.png b/front/public/images/large/gregtech/gt.metaitem.02/32477.png deleted file mode 100644 index b293546541..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32477.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32478.png b/front/public/images/large/gregtech/gt.metaitem.02/32478.png deleted file mode 100644 index 4b23ebf727..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32478.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32479.png b/front/public/images/large/gregtech/gt.metaitem.02/32479.png deleted file mode 100644 index c63d653d07..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32479.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32480.png b/front/public/images/large/gregtech/gt.metaitem.02/32480.png deleted file mode 100644 index 8ad1bead29..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32480.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32481.png b/front/public/images/large/gregtech/gt.metaitem.02/32481.png deleted file mode 100644 index b8ffdbc020..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32481.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32482.png b/front/public/images/large/gregtech/gt.metaitem.02/32482.png deleted file mode 100644 index 13827079a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32482.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32483.png b/front/public/images/large/gregtech/gt.metaitem.02/32483.png deleted file mode 100644 index 68b1312ab5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32483.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32484.png b/front/public/images/large/gregtech/gt.metaitem.02/32484.png deleted file mode 100644 index 768a73b781..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32484.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32485.png b/front/public/images/large/gregtech/gt.metaitem.02/32485.png deleted file mode 100644 index bff2893150..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32486.png b/front/public/images/large/gregtech/gt.metaitem.02/32486.png deleted file mode 100644 index 6e97be78d8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32486.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32487.png b/front/public/images/large/gregtech/gt.metaitem.02/32487.png deleted file mode 100644 index 8b77d0627e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32487.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32488.png b/front/public/images/large/gregtech/gt.metaitem.02/32488.png deleted file mode 100644 index 9da81d72f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32489.png b/front/public/images/large/gregtech/gt.metaitem.02/32489.png deleted file mode 100644 index dddc0f540f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32490.png b/front/public/images/large/gregtech/gt.metaitem.02/32490.png deleted file mode 100644 index be42d876b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32490.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32491.png b/front/public/images/large/gregtech/gt.metaitem.02/32491.png deleted file mode 100644 index de8ed3628b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32491.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32492.png b/front/public/images/large/gregtech/gt.metaitem.02/32492.png deleted file mode 100644 index 7c339cf998..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32492.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32493.png b/front/public/images/large/gregtech/gt.metaitem.02/32493.png deleted file mode 100644 index 3810007201..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32493.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32494.png b/front/public/images/large/gregtech/gt.metaitem.02/32494.png deleted file mode 100644 index 519d3d63d6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32494.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32495.png b/front/public/images/large/gregtech/gt.metaitem.02/32495.png deleted file mode 100644 index 07d68b699b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32495.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32496.png b/front/public/images/large/gregtech/gt.metaitem.02/32496.png deleted file mode 100644 index 417d30e0fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32496.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32497.png b/front/public/images/large/gregtech/gt.metaitem.02/32497.png deleted file mode 100644 index 2bafb93abd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32497.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32498.png b/front/public/images/large/gregtech/gt.metaitem.02/32498.png deleted file mode 100644 index 7ff21e9fff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32498.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32499.png b/front/public/images/large/gregtech/gt.metaitem.02/32499.png deleted file mode 100644 index 88a819dbc7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32499.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32500.png b/front/public/images/large/gregtech/gt.metaitem.02/32500.png deleted file mode 100644 index 3a986e59df..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32500.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32501.png b/front/public/images/large/gregtech/gt.metaitem.02/32501.png deleted file mode 100644 index e4ca0f18f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32501.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32502.png b/front/public/images/large/gregtech/gt.metaitem.02/32502.png deleted file mode 100644 index 58961414fd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32502.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32503.png b/front/public/images/large/gregtech/gt.metaitem.02/32503.png deleted file mode 100644 index 0cbe09ae74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32503.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32504.png b/front/public/images/large/gregtech/gt.metaitem.02/32504.png deleted file mode 100644 index bba82b3c56..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32504.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32505.png b/front/public/images/large/gregtech/gt.metaitem.02/32505.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32505.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32510.png b/front/public/images/large/gregtech/gt.metaitem.02/32510.png deleted file mode 100644 index 3854f6d260..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32510.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32511.png b/front/public/images/large/gregtech/gt.metaitem.02/32511.png deleted file mode 100644 index 0f217da039..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32511.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32512.png b/front/public/images/large/gregtech/gt.metaitem.02/32512.png deleted file mode 100644 index 9c7edab6a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32512.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32513.png b/front/public/images/large/gregtech/gt.metaitem.02/32513.png deleted file mode 100644 index 9c7edab6a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32513.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32520.png b/front/public/images/large/gregtech/gt.metaitem.02/32520.png deleted file mode 100644 index 33654f3926..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32520.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32521.png b/front/public/images/large/gregtech/gt.metaitem.02/32521.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32522.png b/front/public/images/large/gregtech/gt.metaitem.02/32522.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32522.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32523.png b/front/public/images/large/gregtech/gt.metaitem.02/32523.png deleted file mode 100644 index b154c9b612..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32523.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32524.png b/front/public/images/large/gregtech/gt.metaitem.02/32524.png deleted file mode 100644 index a2f2ec3bd8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32524.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32526.png b/front/public/images/large/gregtech/gt.metaitem.02/32526.png deleted file mode 100644 index c66695fb9d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32526.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32527.png b/front/public/images/large/gregtech/gt.metaitem.02/32527.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32527.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32528.png b/front/public/images/large/gregtech/gt.metaitem.02/32528.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32528.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32529.png b/front/public/images/large/gregtech/gt.metaitem.02/32529.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32530.png b/front/public/images/large/gregtech/gt.metaitem.02/32530.png deleted file mode 100644 index 4627165055..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32530.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32531.png b/front/public/images/large/gregtech/gt.metaitem.02/32531.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32531.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32532.png b/front/public/images/large/gregtech/gt.metaitem.02/32532.png deleted file mode 100644 index ea5b0ec3c2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32532.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32533.png b/front/public/images/large/gregtech/gt.metaitem.02/32533.png deleted file mode 100644 index 7eede6ef0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32533.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32534.png b/front/public/images/large/gregtech/gt.metaitem.02/32534.png deleted file mode 100644 index 95bdc4d975..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32534.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32535.png b/front/public/images/large/gregtech/gt.metaitem.02/32535.png deleted file mode 100644 index 0a98c59e66..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32535.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32538.png b/front/public/images/large/gregtech/gt.metaitem.02/32538.png deleted file mode 100644 index 8fac7c134b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32538.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32540.png b/front/public/images/large/gregtech/gt.metaitem.02/32540.png deleted file mode 100644 index 65fa1fd636..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32540.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32550.png b/front/public/images/large/gregtech/gt.metaitem.02/32550.png deleted file mode 100644 index 42801901cc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32550.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32551.png b/front/public/images/large/gregtech/gt.metaitem.02/32551.png deleted file mode 100644 index 97e1431743..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32551.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32552.png b/front/public/images/large/gregtech/gt.metaitem.02/32552.png deleted file mode 100644 index 237aba9df7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32552.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32553.png b/front/public/images/large/gregtech/gt.metaitem.02/32553.png deleted file mode 100644 index fdbd073ad3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32553.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32554.png b/front/public/images/large/gregtech/gt.metaitem.02/32554.png deleted file mode 100644 index 137cb0875f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32554.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32555.png b/front/public/images/large/gregtech/gt.metaitem.02/32555.png deleted file mode 100644 index 71e03e4bc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32555.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32556.png b/front/public/images/large/gregtech/gt.metaitem.02/32556.png deleted file mode 100644 index 6d730c567b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32556.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32557.png b/front/public/images/large/gregtech/gt.metaitem.02/32557.png deleted file mode 100644 index a210777523..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32557.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32558.png b/front/public/images/large/gregtech/gt.metaitem.02/32558.png deleted file mode 100644 index 937e516112..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32558.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32559.png b/front/public/images/large/gregtech/gt.metaitem.02/32559.png deleted file mode 100644 index b3a10d9b74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32559.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32560.png b/front/public/images/large/gregtech/gt.metaitem.02/32560.png deleted file mode 100644 index 91140b91e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32560.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32561.png b/front/public/images/large/gregtech/gt.metaitem.02/32561.png deleted file mode 100644 index fb25ad30a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32561.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32562.png b/front/public/images/large/gregtech/gt.metaitem.02/32562.png deleted file mode 100644 index 6dcee16229..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32562.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32563.png b/front/public/images/large/gregtech/gt.metaitem.02/32563.png deleted file mode 100644 index 031231d7bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32563.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32564.png b/front/public/images/large/gregtech/gt.metaitem.02/32564.png deleted file mode 100644 index f3459ec52f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32564.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32565.png b/front/public/images/large/gregtech/gt.metaitem.02/32565.png deleted file mode 100644 index 367c60d476..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32565.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32566.png b/front/public/images/large/gregtech/gt.metaitem.02/32566.png deleted file mode 100644 index d8f0824143..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32566.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32567.png b/front/public/images/large/gregtech/gt.metaitem.02/32567.png deleted file mode 100644 index 314ca277a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32567.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32568.png b/front/public/images/large/gregtech/gt.metaitem.02/32568.png deleted file mode 100644 index edd2c0e897..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32568.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32569.png b/front/public/images/large/gregtech/gt.metaitem.02/32569.png deleted file mode 100644 index f9092b504f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32569.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32570.png b/front/public/images/large/gregtech/gt.metaitem.02/32570.png deleted file mode 100644 index b549433cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32570.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32571.png b/front/public/images/large/gregtech/gt.metaitem.02/32571.png deleted file mode 100644 index 1e39c09921..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32571.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32572.png b/front/public/images/large/gregtech/gt.metaitem.02/32572.png deleted file mode 100644 index 7e1da32a7e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32572.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32573.png b/front/public/images/large/gregtech/gt.metaitem.02/32573.png deleted file mode 100644 index 759dd28cff..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32573.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32574.png b/front/public/images/large/gregtech/gt.metaitem.02/32574.png deleted file mode 100644 index 033d0e91e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32574.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32576.png b/front/public/images/large/gregtech/gt.metaitem.02/32576.png deleted file mode 100644 index ea564e515d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32577.png b/front/public/images/large/gregtech/gt.metaitem.02/32577.png deleted file mode 100644 index 79ee5000fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32577.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32578.png b/front/public/images/large/gregtech/gt.metaitem.02/32578.png deleted file mode 100644 index 79ee5000fa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32578.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32579.png b/front/public/images/large/gregtech/gt.metaitem.02/32579.png deleted file mode 100644 index a02782a2c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32579.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32580.png b/front/public/images/large/gregtech/gt.metaitem.02/32580.png deleted file mode 100644 index a02782a2c6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32580.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32581.png b/front/public/images/large/gregtech/gt.metaitem.02/32581.png deleted file mode 100644 index 7994704f42..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32582.png b/front/public/images/large/gregtech/gt.metaitem.02/32582.png deleted file mode 100644 index b3fba04118..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32583.png b/front/public/images/large/gregtech/gt.metaitem.02/32583.png deleted file mode 100644 index 9bb5e7dccb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.02/32584.png b/front/public/images/large/gregtech/gt.metaitem.02/32584.png deleted file mode 100644 index a7a3cf972b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.02/32584.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32006.png b/front/public/images/large/gregtech/gt.metaitem.03/32006.png deleted file mode 100644 index 730d87acb7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32006.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32007.png b/front/public/images/large/gregtech/gt.metaitem.03/32007.png deleted file mode 100644 index 9ced73a023..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32007.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32008.png b/front/public/images/large/gregtech/gt.metaitem.03/32008.png deleted file mode 100644 index 2b66dacac3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32008.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32011.png b/front/public/images/large/gregtech/gt.metaitem.03/32011.png deleted file mode 100644 index c0846c1834..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32011.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32012.png b/front/public/images/large/gregtech/gt.metaitem.03/32012.png deleted file mode 100644 index 2105950f80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32012.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32014.png b/front/public/images/large/gregtech/gt.metaitem.03/32014.png deleted file mode 100644 index ced09580f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32014.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32016.png b/front/public/images/large/gregtech/gt.metaitem.03/32016.png deleted file mode 100644 index 98f8c93b90..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32016.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32018.png b/front/public/images/large/gregtech/gt.metaitem.03/32018.png deleted file mode 100644 index a48060e058..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32018.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32020.png b/front/public/images/large/gregtech/gt.metaitem.03/32020.png deleted file mode 100644 index 691a703301..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32020.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32021.png b/front/public/images/large/gregtech/gt.metaitem.03/32021.png deleted file mode 100644 index f469ec8a2a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32021.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32022.png b/front/public/images/large/gregtech/gt.metaitem.03/32022.png deleted file mode 100644 index eb429f41f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32022.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32023.png b/front/public/images/large/gregtech/gt.metaitem.03/32023.png deleted file mode 100644 index 83a1e63d6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32023.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32024.png b/front/public/images/large/gregtech/gt.metaitem.03/32024.png deleted file mode 100644 index 47de9826d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32024.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32025.png b/front/public/images/large/gregtech/gt.metaitem.03/32025.png deleted file mode 100644 index 188c8592d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32025.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32026.png b/front/public/images/large/gregtech/gt.metaitem.03/32026.png deleted file mode 100644 index e56d1c9748..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32026.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32027.png b/front/public/images/large/gregtech/gt.metaitem.03/32027.png deleted file mode 100644 index 57595cdcaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32027.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32030.png b/front/public/images/large/gregtech/gt.metaitem.03/32030.png deleted file mode 100644 index 4dbed3a284..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32030.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32031.png b/front/public/images/large/gregtech/gt.metaitem.03/32031.png deleted file mode 100644 index 3a9bdc3c91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32031.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32032.png b/front/public/images/large/gregtech/gt.metaitem.03/32032.png deleted file mode 100644 index 6c50bbe0d0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32033.png b/front/public/images/large/gregtech/gt.metaitem.03/32033.png deleted file mode 100644 index 59d386f601..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32033.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32034.png b/front/public/images/large/gregtech/gt.metaitem.03/32034.png deleted file mode 100644 index d4b39e321e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32034.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32035.png b/front/public/images/large/gregtech/gt.metaitem.03/32035.png deleted file mode 100644 index 65715b02f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32036.png b/front/public/images/large/gregtech/gt.metaitem.03/32036.png deleted file mode 100644 index c2db2b6c5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32036.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32037.png b/front/public/images/large/gregtech/gt.metaitem.03/32037.png deleted file mode 100644 index 19afbaf4f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32037.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32038.png b/front/public/images/large/gregtech/gt.metaitem.03/32038.png deleted file mode 100644 index f4bc6df97b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32038.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32039.png b/front/public/images/large/gregtech/gt.metaitem.03/32039.png deleted file mode 100644 index 69ab0a6dfc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32039.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32040.png b/front/public/images/large/gregtech/gt.metaitem.03/32040.png deleted file mode 100644 index 839638398c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32040.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32041.png b/front/public/images/large/gregtech/gt.metaitem.03/32041.png deleted file mode 100644 index 74b348fb80..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32041.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32042.png b/front/public/images/large/gregtech/gt.metaitem.03/32042.png deleted file mode 100644 index 00bece1bad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32042.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32043.png b/front/public/images/large/gregtech/gt.metaitem.03/32043.png deleted file mode 100644 index aef4c8eca3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32043.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32044.png b/front/public/images/large/gregtech/gt.metaitem.03/32044.png deleted file mode 100644 index ae27f55294..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32044.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32045.png b/front/public/images/large/gregtech/gt.metaitem.03/32045.png deleted file mode 100644 index 0c23b48201..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32045.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32046.png b/front/public/images/large/gregtech/gt.metaitem.03/32046.png deleted file mode 100644 index e8cfcb3563..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32046.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32047.png b/front/public/images/large/gregtech/gt.metaitem.03/32047.png deleted file mode 100644 index 9335cad5ba..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32047.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32048.png b/front/public/images/large/gregtech/gt.metaitem.03/32048.png deleted file mode 100644 index 00c35a2d24..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32048.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32049.png b/front/public/images/large/gregtech/gt.metaitem.03/32049.png deleted file mode 100644 index bde36c791e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32049.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32050.png b/front/public/images/large/gregtech/gt.metaitem.03/32050.png deleted file mode 100644 index 7378500811..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32050.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32051.png b/front/public/images/large/gregtech/gt.metaitem.03/32051.png deleted file mode 100644 index c79b6b6054..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32051.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32052.png b/front/public/images/large/gregtech/gt.metaitem.03/32052.png deleted file mode 100644 index f3b92fd299..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32052.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32053.png b/front/public/images/large/gregtech/gt.metaitem.03/32053.png deleted file mode 100644 index a39291d1d5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32053.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32054.png b/front/public/images/large/gregtech/gt.metaitem.03/32054.png deleted file mode 100644 index e43a816849..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32055.png b/front/public/images/large/gregtech/gt.metaitem.03/32055.png deleted file mode 100644 index a55802fd83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32055.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32056.png b/front/public/images/large/gregtech/gt.metaitem.03/32056.png deleted file mode 100644 index 144551d712..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32056.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32057.png b/front/public/images/large/gregtech/gt.metaitem.03/32057.png deleted file mode 100644 index 1f07968156..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32057.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32058.png b/front/public/images/large/gregtech/gt.metaitem.03/32058.png deleted file mode 100644 index 34a808c9e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32058.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32059.png b/front/public/images/large/gregtech/gt.metaitem.03/32059.png deleted file mode 100644 index 946a8b8f58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32059.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32060.png b/front/public/images/large/gregtech/gt.metaitem.03/32060.png deleted file mode 100644 index ceee085604..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32060.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32061.png b/front/public/images/large/gregtech/gt.metaitem.03/32061.png deleted file mode 100644 index 633bf72b0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32061.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32062.png b/front/public/images/large/gregtech/gt.metaitem.03/32062.png deleted file mode 100644 index cfb052fa5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32062.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32063.png b/front/public/images/large/gregtech/gt.metaitem.03/32063.png deleted file mode 100644 index 1adcb3f491..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32063.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32064.png b/front/public/images/large/gregtech/gt.metaitem.03/32064.png deleted file mode 100644 index 5f0a51bdc6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32064.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32065.png b/front/public/images/large/gregtech/gt.metaitem.03/32065.png deleted file mode 100644 index 50db56e2dc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32065.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32068.png b/front/public/images/large/gregtech/gt.metaitem.03/32068.png deleted file mode 100644 index edd3533a06..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32068.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32069.png b/front/public/images/large/gregtech/gt.metaitem.03/32069.png deleted file mode 100644 index 532bce3cc0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32069.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32070.png b/front/public/images/large/gregtech/gt.metaitem.03/32070.png deleted file mode 100644 index 71f929fafe..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32070.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32071.png b/front/public/images/large/gregtech/gt.metaitem.03/32071.png deleted file mode 100644 index 5fe987c1a5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32071.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32072.png b/front/public/images/large/gregtech/gt.metaitem.03/32072.png deleted file mode 100644 index 5af3b89b74..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32072.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32073.png b/front/public/images/large/gregtech/gt.metaitem.03/32073.png deleted file mode 100644 index 63093254e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32073.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32074.png b/front/public/images/large/gregtech/gt.metaitem.03/32074.png deleted file mode 100644 index c8ca880cfb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32074.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32075.png b/front/public/images/large/gregtech/gt.metaitem.03/32075.png deleted file mode 100644 index 9ad5b8e4b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32075.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32076.png b/front/public/images/large/gregtech/gt.metaitem.03/32076.png deleted file mode 100644 index 1a773e8685..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32076.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32077.png b/front/public/images/large/gregtech/gt.metaitem.03/32077.png deleted file mode 100644 index 307311bcc5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32077.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32078.png b/front/public/images/large/gregtech/gt.metaitem.03/32078.png deleted file mode 100644 index 3dcbfbf20d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32078.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32079.png b/front/public/images/large/gregtech/gt.metaitem.03/32079.png deleted file mode 100644 index ac69be450b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32079.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32080.png b/front/public/images/large/gregtech/gt.metaitem.03/32080.png deleted file mode 100644 index 6a8c2bee4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32080.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32082.png b/front/public/images/large/gregtech/gt.metaitem.03/32082.png deleted file mode 100644 index 4849819334..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32082.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32083.png b/front/public/images/large/gregtech/gt.metaitem.03/32083.png deleted file mode 100644 index 86ff7dec48..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32083.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32084.png b/front/public/images/large/gregtech/gt.metaitem.03/32084.png deleted file mode 100644 index 2a988db07e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32084.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32085.png b/front/public/images/large/gregtech/gt.metaitem.03/32085.png deleted file mode 100644 index 0afc82be49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32085.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32086.png b/front/public/images/large/gregtech/gt.metaitem.03/32086.png deleted file mode 100644 index 083daa9be2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32087.png b/front/public/images/large/gregtech/gt.metaitem.03/32087.png deleted file mode 100644 index f483f8a922..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32087.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32088.png b/front/public/images/large/gregtech/gt.metaitem.03/32088.png deleted file mode 100644 index a98b4ea206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32088.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32089.png b/front/public/images/large/gregtech/gt.metaitem.03/32089.png deleted file mode 100644 index f0c6f93ac5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32089.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32090.png b/front/public/images/large/gregtech/gt.metaitem.03/32090.png deleted file mode 100644 index 83ee6784b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32090.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32091.png b/front/public/images/large/gregtech/gt.metaitem.03/32091.png deleted file mode 100644 index 833003dd14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32091.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32092.png b/front/public/images/large/gregtech/gt.metaitem.03/32092.png deleted file mode 100644 index 824c0caeaa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32092.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32093.png b/front/public/images/large/gregtech/gt.metaitem.03/32093.png deleted file mode 100644 index 55224ade14..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32093.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32094.png b/front/public/images/large/gregtech/gt.metaitem.03/32094.png deleted file mode 100644 index 300e86c48c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32094.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32095.png b/front/public/images/large/gregtech/gt.metaitem.03/32095.png deleted file mode 100644 index 4f3f337de6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32095.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32096.png b/front/public/images/large/gregtech/gt.metaitem.03/32096.png deleted file mode 100644 index 1d08f69c60..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32096.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32097.png b/front/public/images/large/gregtech/gt.metaitem.03/32097.png deleted file mode 100644 index 7809d3df0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32097.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32098.png b/front/public/images/large/gregtech/gt.metaitem.03/32098.png deleted file mode 100644 index b348456332..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32098.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32099.png b/front/public/images/large/gregtech/gt.metaitem.03/32099.png deleted file mode 100644 index 13973e4f8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32099.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32100.png b/front/public/images/large/gregtech/gt.metaitem.03/32100.png deleted file mode 100644 index ffc8fab2f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32101.png b/front/public/images/large/gregtech/gt.metaitem.03/32101.png deleted file mode 100644 index 6274c1acc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32102.png b/front/public/images/large/gregtech/gt.metaitem.03/32102.png deleted file mode 100644 index c5b3d28763..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32103.png b/front/public/images/large/gregtech/gt.metaitem.03/32103.png deleted file mode 100644 index 7b92d7e900..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32104.png b/front/public/images/large/gregtech/gt.metaitem.03/32104.png deleted file mode 100644 index a534a09f1a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32105.png b/front/public/images/large/gregtech/gt.metaitem.03/32105.png deleted file mode 100644 index 2fbd11ae43..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32105.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32106.png b/front/public/images/large/gregtech/gt.metaitem.03/32106.png deleted file mode 100644 index de92705ac6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32106.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32107.png b/front/public/images/large/gregtech/gt.metaitem.03/32107.png deleted file mode 100644 index 31b4f80208..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32107.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32110.png b/front/public/images/large/gregtech/gt.metaitem.03/32110.png deleted file mode 100644 index 0197f75eb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32120.png b/front/public/images/large/gregtech/gt.metaitem.03/32120.png deleted file mode 100644 index ab01d11544..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32120.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32130.png b/front/public/images/large/gregtech/gt.metaitem.03/32130.png deleted file mode 100644 index 496d7da192..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32131.png b/front/public/images/large/gregtech/gt.metaitem.03/32131.png deleted file mode 100644 index 21a3cb08db..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32132.png b/front/public/images/large/gregtech/gt.metaitem.03/32132.png deleted file mode 100644 index 2d65851fdc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32132.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32140.png b/front/public/images/large/gregtech/gt.metaitem.03/32140.png deleted file mode 100644 index 742b6aa760..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32140.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32141.png b/front/public/images/large/gregtech/gt.metaitem.03/32141.png deleted file mode 100644 index d147f95407..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32142.png b/front/public/images/large/gregtech/gt.metaitem.03/32142.png deleted file mode 100644 index 51d782def5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32142.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32143.png b/front/public/images/large/gregtech/gt.metaitem.03/32143.png deleted file mode 100644 index 581bc2963c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32144.png b/front/public/images/large/gregtech/gt.metaitem.03/32144.png deleted file mode 100644 index 38b658eb1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32145.png b/front/public/images/large/gregtech/gt.metaitem.03/32145.png deleted file mode 100644 index fbc0952995..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32145.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32146.png b/front/public/images/large/gregtech/gt.metaitem.03/32146.png deleted file mode 100644 index f05e0a1a58..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32146.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32147.png b/front/public/images/large/gregtech/gt.metaitem.03/32147.png deleted file mode 100644 index 99f42d42fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32147.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32148.png b/front/public/images/large/gregtech/gt.metaitem.03/32148.png deleted file mode 100644 index ac8c8a6402..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32148.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32149.png b/front/public/images/large/gregtech/gt.metaitem.03/32149.png deleted file mode 100644 index 5257bc533a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32149.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32150.png b/front/public/images/large/gregtech/gt.metaitem.03/32150.png deleted file mode 100644 index d9be15947a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32151.png b/front/public/images/large/gregtech/gt.metaitem.03/32151.png deleted file mode 100644 index f84e842d2c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32151.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32152.png b/front/public/images/large/gregtech/gt.metaitem.03/32152.png deleted file mode 100644 index 6530bbeeea..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32152.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32153.png b/front/public/images/large/gregtech/gt.metaitem.03/32153.png deleted file mode 100644 index bd2ce127ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32153.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32154.png b/front/public/images/large/gregtech/gt.metaitem.03/32154.png deleted file mode 100644 index ef77a57f40..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32154.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32155.png b/front/public/images/large/gregtech/gt.metaitem.03/32155.png deleted file mode 100644 index 87d02099ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32155.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32156.png b/front/public/images/large/gregtech/gt.metaitem.03/32156.png deleted file mode 100644 index 86e32cda9b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32156.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32157.png b/front/public/images/large/gregtech/gt.metaitem.03/32157.png deleted file mode 100644 index 820094ffa6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32157.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32160.png b/front/public/images/large/gregtech/gt.metaitem.03/32160.png deleted file mode 100644 index f592674b59..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32160.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32161.png b/front/public/images/large/gregtech/gt.metaitem.03/32161.png deleted file mode 100644 index b60387a4c4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32161.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32162.png b/front/public/images/large/gregtech/gt.metaitem.03/32162.png deleted file mode 100644 index 8dc4c5f470..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32162.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32163.png b/front/public/images/large/gregtech/gt.metaitem.03/32163.png deleted file mode 100644 index ad335fb9b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32163.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32164.png b/front/public/images/large/gregtech/gt.metaitem.03/32164.png deleted file mode 100644 index 23e6ca02ec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32164.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32165.png b/front/public/images/large/gregtech/gt.metaitem.03/32165.png deleted file mode 100644 index 947e4935ad..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32165.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32166.png b/front/public/images/large/gregtech/gt.metaitem.03/32166.png deleted file mode 100644 index 17729fef46..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32166.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32167.png b/front/public/images/large/gregtech/gt.metaitem.03/32167.png deleted file mode 100644 index 511c1dc66e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32167.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32168.png b/front/public/images/large/gregtech/gt.metaitem.03/32168.png deleted file mode 100644 index 813c41f0a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32168.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32169.png b/front/public/images/large/gregtech/gt.metaitem.03/32169.png deleted file mode 100644 index 05775fdb79..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32169.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32170.png b/front/public/images/large/gregtech/gt.metaitem.03/32170.png deleted file mode 100644 index 3bb4bd14fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32170.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32171.png b/front/public/images/large/gregtech/gt.metaitem.03/32171.png deleted file mode 100644 index 10865b05f7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32171.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32172.png b/front/public/images/large/gregtech/gt.metaitem.03/32172.png deleted file mode 100644 index 3605ce420c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32172.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32173.png b/front/public/images/large/gregtech/gt.metaitem.03/32173.png deleted file mode 100644 index 8e9ebbd3f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32173.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32174.png b/front/public/images/large/gregtech/gt.metaitem.03/32174.png deleted file mode 100644 index a7d7a1d174..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32174.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32175.png b/front/public/images/large/gregtech/gt.metaitem.03/32175.png deleted file mode 100644 index 3c3240831c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32175.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32176.png b/front/public/images/large/gregtech/gt.metaitem.03/32176.png deleted file mode 100644 index 25fee294ee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32176.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32177.png b/front/public/images/large/gregtech/gt.metaitem.03/32177.png deleted file mode 100644 index c9e0d4b4d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32177.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32178.png b/front/public/images/large/gregtech/gt.metaitem.03/32178.png deleted file mode 100644 index 15b7786156..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32178.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32179.png b/front/public/images/large/gregtech/gt.metaitem.03/32179.png deleted file mode 100644 index 20e7edf9a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32179.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32180.png b/front/public/images/large/gregtech/gt.metaitem.03/32180.png deleted file mode 100644 index e5da16f6ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32180.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32181.png b/front/public/images/large/gregtech/gt.metaitem.03/32181.png deleted file mode 100644 index da14404fa5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32181.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32182.png b/front/public/images/large/gregtech/gt.metaitem.03/32182.png deleted file mode 100644 index 3fcc350e33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32182.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32183.png b/front/public/images/large/gregtech/gt.metaitem.03/32183.png deleted file mode 100644 index ea3fd38caf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32183.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32184.png b/front/public/images/large/gregtech/gt.metaitem.03/32184.png deleted file mode 100644 index 3a51bc19f3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32184.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32188.png b/front/public/images/large/gregtech/gt.metaitem.03/32188.png deleted file mode 100644 index 7d41dc7423..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32188.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32189.png b/front/public/images/large/gregtech/gt.metaitem.03/32189.png deleted file mode 100644 index 89d6a3c873..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32189.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32190.png b/front/public/images/large/gregtech/gt.metaitem.03/32190.png deleted file mode 100644 index 0a86686674..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32190.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32191.png b/front/public/images/large/gregtech/gt.metaitem.03/32191.png deleted file mode 100644 index f20100922a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32191.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32192.png b/front/public/images/large/gregtech/gt.metaitem.03/32192.png deleted file mode 100644 index e8624b9740..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32192.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32193.png b/front/public/images/large/gregtech/gt.metaitem.03/32193.png deleted file mode 100644 index e053723575..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32193.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32194.png b/front/public/images/large/gregtech/gt.metaitem.03/32194.png deleted file mode 100644 index ed1c96ef5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32194.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32199.png b/front/public/images/large/gregtech/gt.metaitem.03/32199.png deleted file mode 100644 index b62fa66b63..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32199.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32200.png b/front/public/images/large/gregtech/gt.metaitem.03/32200.png deleted file mode 100644 index 65eb0a287b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32200.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32201.png b/front/public/images/large/gregtech/gt.metaitem.03/32201.png deleted file mode 100644 index d7623078cd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32202.png b/front/public/images/large/gregtech/gt.metaitem.03/32202.png deleted file mode 100644 index 0bf66b279d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32203.png b/front/public/images/large/gregtech/gt.metaitem.03/32203.png deleted file mode 100644 index 42050cfd0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32204.png b/front/public/images/large/gregtech/gt.metaitem.03/32204.png deleted file mode 100644 index eccab3cbd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32204.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32205.png b/front/public/images/large/gregtech/gt.metaitem.03/32205.png deleted file mode 100644 index 010a9a1149..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32206.png b/front/public/images/large/gregtech/gt.metaitem.03/32206.png deleted file mode 100644 index 1ab83cc52d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32206.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32207.png b/front/public/images/large/gregtech/gt.metaitem.03/32207.png deleted file mode 100644 index d01513e526..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32207.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32208.png b/front/public/images/large/gregtech/gt.metaitem.03/32208.png deleted file mode 100644 index 48b72a4db8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32208.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32209.png b/front/public/images/large/gregtech/gt.metaitem.03/32209.png deleted file mode 100644 index 2d89760e20..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32209.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32210.png b/front/public/images/large/gregtech/gt.metaitem.03/32210.png deleted file mode 100644 index c6ed563800..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32210.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32211.png b/front/public/images/large/gregtech/gt.metaitem.03/32211.png deleted file mode 100644 index 901d9da440..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32211.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32212.png b/front/public/images/large/gregtech/gt.metaitem.03/32212.png deleted file mode 100644 index e42cde3ce1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32212.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32213.png b/front/public/images/large/gregtech/gt.metaitem.03/32213.png deleted file mode 100644 index 7a0f7d133b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32213.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32214.png b/front/public/images/large/gregtech/gt.metaitem.03/32214.png deleted file mode 100644 index 2383c5fc8a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32214.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32215.png b/front/public/images/large/gregtech/gt.metaitem.03/32215.png deleted file mode 100644 index e3991d047f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32215.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32216.png b/front/public/images/large/gregtech/gt.metaitem.03/32216.png deleted file mode 100644 index 5220dd4ab2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32216.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32217.png b/front/public/images/large/gregtech/gt.metaitem.03/32217.png deleted file mode 100644 index cfbe5c7022..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32217.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32218.png b/front/public/images/large/gregtech/gt.metaitem.03/32218.png deleted file mode 100644 index 2ff5976a15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32218.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32219.png b/front/public/images/large/gregtech/gt.metaitem.03/32219.png deleted file mode 100644 index f1f19accf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32219.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32220.png b/front/public/images/large/gregtech/gt.metaitem.03/32220.png deleted file mode 100644 index 117be4698a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32220.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32221.png b/front/public/images/large/gregtech/gt.metaitem.03/32221.png deleted file mode 100644 index 5ecb6d39e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32221.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32222.png b/front/public/images/large/gregtech/gt.metaitem.03/32222.png deleted file mode 100644 index d687b61011..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32222.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32223.png b/front/public/images/large/gregtech/gt.metaitem.03/32223.png deleted file mode 100644 index 291aa99711..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32223.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32224.png b/front/public/images/large/gregtech/gt.metaitem.03/32224.png deleted file mode 100644 index a987814c91..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32224.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32225.png b/front/public/images/large/gregtech/gt.metaitem.03/32225.png deleted file mode 100644 index 83bee0e28d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32225.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32226.png b/front/public/images/large/gregtech/gt.metaitem.03/32226.png deleted file mode 100644 index e7406d2e34..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32226.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32227.png b/front/public/images/large/gregtech/gt.metaitem.03/32227.png deleted file mode 100644 index 71e28172e7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32227.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32228.png b/front/public/images/large/gregtech/gt.metaitem.03/32228.png deleted file mode 100644 index e96af7e717..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32228.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32229.png b/front/public/images/large/gregtech/gt.metaitem.03/32229.png deleted file mode 100644 index 6bf6d3d186..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32229.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32230.png b/front/public/images/large/gregtech/gt.metaitem.03/32230.png deleted file mode 100644 index 40b7cf1c4d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32230.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32231.png b/front/public/images/large/gregtech/gt.metaitem.03/32231.png deleted file mode 100644 index 2b73620318..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32231.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32232.png b/front/public/images/large/gregtech/gt.metaitem.03/32232.png deleted file mode 100644 index ce7a2007ca..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32232.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32721.png b/front/public/images/large/gregtech/gt.metaitem.03/32721.png deleted file mode 100644 index f9e11022f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32721.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32722.png b/front/public/images/large/gregtech/gt.metaitem.03/32722.png deleted file mode 100644 index 15cc305fd6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32722.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32723.png b/front/public/images/large/gregtech/gt.metaitem.03/32723.png deleted file mode 100644 index 3998b51360..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32723.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32724.png b/front/public/images/large/gregtech/gt.metaitem.03/32724.png deleted file mode 100644 index 0de2c8cd27..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32724.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32725.png b/front/public/images/large/gregtech/gt.metaitem.03/32725.png deleted file mode 100644 index ec3f2e32a7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32725.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32726.png b/front/public/images/large/gregtech/gt.metaitem.03/32726.png deleted file mode 100644 index ef01ea11b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32726.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32727.png b/front/public/images/large/gregtech/gt.metaitem.03/32727.png deleted file mode 100644 index 260d0c0230..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32727.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32728.png b/front/public/images/large/gregtech/gt.metaitem.03/32728.png deleted file mode 100644 index ccacc1b986..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32728.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32729.png b/front/public/images/large/gregtech/gt.metaitem.03/32729.png deleted file mode 100644 index a42be2656b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32729.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32730.png b/front/public/images/large/gregtech/gt.metaitem.03/32730.png deleted file mode 100644 index ded35baf9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32730.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32731.png b/front/public/images/large/gregtech/gt.metaitem.03/32731.png deleted file mode 100644 index 0ca0bd145a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32731.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32732.png b/front/public/images/large/gregtech/gt.metaitem.03/32732.png deleted file mode 100644 index 4ce0311053..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32732.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32733.png b/front/public/images/large/gregtech/gt.metaitem.03/32733.png deleted file mode 100644 index ac3e6e6aec..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32733.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32734.png b/front/public/images/large/gregtech/gt.metaitem.03/32734.png deleted file mode 100644 index c71cbee5f2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32734.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32735.png b/front/public/images/large/gregtech/gt.metaitem.03/32735.png deleted file mode 100644 index f0b7083d2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32736.png b/front/public/images/large/gregtech/gt.metaitem.03/32736.png deleted file mode 100644 index f90be04fc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32736.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32737.png b/front/public/images/large/gregtech/gt.metaitem.03/32737.png deleted file mode 100644 index e8eebeeb92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32737.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32738.png b/front/public/images/large/gregtech/gt.metaitem.03/32738.png deleted file mode 100644 index 9a9a09e8dd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32738.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32739.png b/front/public/images/large/gregtech/gt.metaitem.03/32739.png deleted file mode 100644 index bce72fdce4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32740.png b/front/public/images/large/gregtech/gt.metaitem.03/32740.png deleted file mode 100644 index 73345f2e4a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32741.png b/front/public/images/large/gregtech/gt.metaitem.03/32741.png deleted file mode 100644 index f97be4d94d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32742.png b/front/public/images/large/gregtech/gt.metaitem.03/32742.png deleted file mode 100644 index d6129d0439..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32742.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32743.png b/front/public/images/large/gregtech/gt.metaitem.03/32743.png deleted file mode 100644 index 70a4eb598f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32743.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32744.png b/front/public/images/large/gregtech/gt.metaitem.03/32744.png deleted file mode 100644 index 419a406b5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32744.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32745.png b/front/public/images/large/gregtech/gt.metaitem.03/32745.png deleted file mode 100644 index 31e4162991..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32745.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32746.png b/front/public/images/large/gregtech/gt.metaitem.03/32746.png deleted file mode 100644 index 863bf51ffa..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32746.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32747.png b/front/public/images/large/gregtech/gt.metaitem.03/32747.png deleted file mode 100644 index 1e69a6a353..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32747.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32748.png b/front/public/images/large/gregtech/gt.metaitem.03/32748.png deleted file mode 100644 index 82939d2721..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32748.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32749.png b/front/public/images/large/gregtech/gt.metaitem.03/32749.png deleted file mode 100644 index 6fbe798e8e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32749.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32750.png b/front/public/images/large/gregtech/gt.metaitem.03/32750.png deleted file mode 100644 index 2a2d94d816..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32750.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32751.png b/front/public/images/large/gregtech/gt.metaitem.03/32751.png deleted file mode 100644 index 067c0e6751..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32751.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32752.png b/front/public/images/large/gregtech/gt.metaitem.03/32752.png deleted file mode 100644 index b357dd26a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32752.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32753.png b/front/public/images/large/gregtech/gt.metaitem.03/32753.png deleted file mode 100644 index 4f3f312601..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32753.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32754.png b/front/public/images/large/gregtech/gt.metaitem.03/32754.png deleted file mode 100644 index 4d42a3de37..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32754.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32755.png b/front/public/images/large/gregtech/gt.metaitem.03/32755.png deleted file mode 100644 index b8cf889e98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32755.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32756.png b/front/public/images/large/gregtech/gt.metaitem.03/32756.png deleted file mode 100644 index aa293cf143..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32756.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/32757.png b/front/public/images/large/gregtech/gt.metaitem.03/32757.png deleted file mode 100644 index 040f5fa51f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/32757.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4010.png b/front/public/images/large/gregtech/gt.metaitem.03/4010.png deleted file mode 100644 index 91536f04f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4010.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4032.png b/front/public/images/large/gregtech/gt.metaitem.03/4032.png deleted file mode 100644 index bc59d57e75..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4032.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4035.png b/front/public/images/large/gregtech/gt.metaitem.03/4035.png deleted file mode 100644 index b57cc8a3e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4035.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4054.png b/front/public/images/large/gregtech/gt.metaitem.03/4054.png deleted file mode 100644 index c87718273c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4054.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4086.png b/front/public/images/large/gregtech/gt.metaitem.03/4086.png deleted file mode 100644 index 5698a12066..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4086.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4129.png b/front/public/images/large/gregtech/gt.metaitem.03/4129.png deleted file mode 100644 index 94310ac2cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4139.png b/front/public/images/large/gregtech/gt.metaitem.03/4139.png deleted file mode 100644 index d3cda362a8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4141.png b/front/public/images/large/gregtech/gt.metaitem.03/4141.png deleted file mode 100644 index 48c1d32b39..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4581.png b/front/public/images/large/gregtech/gt.metaitem.03/4581.png deleted file mode 100644 index c8ce285632..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4585.png b/front/public/images/large/gregtech/gt.metaitem.03/4585.png deleted file mode 100644 index 0c9beb1f49..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4586.png b/front/public/images/large/gregtech/gt.metaitem.03/4586.png deleted file mode 100644 index c196a7d979..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.03/4811.png b/front/public/images/large/gregtech/gt.metaitem.03/4811.png deleted file mode 100644 index 3608ff35fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.03/4811.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/0.png b/front/public/images/large/gregtech/gt.metaitem.98/0.png deleted file mode 100644 index e378cdcfd7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/1.png b/front/public/images/large/gregtech/gt.metaitem.98/1.png deleted file mode 100644 index 7f68f333d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/1.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/10.png b/front/public/images/large/gregtech/gt.metaitem.98/10.png deleted file mode 100644 index 02da9c1e4c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/11.png b/front/public/images/large/gregtech/gt.metaitem.98/11.png deleted file mode 100644 index e05ad384da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/11.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/12.png b/front/public/images/large/gregtech/gt.metaitem.98/12.png deleted file mode 100644 index 04f90900b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/13.png b/front/public/images/large/gregtech/gt.metaitem.98/13.png deleted file mode 100644 index 3caa269849..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/13.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/14.png b/front/public/images/large/gregtech/gt.metaitem.98/14.png deleted file mode 100644 index 1385c9db5f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/15.png b/front/public/images/large/gregtech/gt.metaitem.98/15.png deleted file mode 100644 index 6f8f72c17d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/15.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/16.png b/front/public/images/large/gregtech/gt.metaitem.98/16.png deleted file mode 100644 index d11a1a5440..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/16.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/17.png b/front/public/images/large/gregtech/gt.metaitem.98/17.png deleted file mode 100644 index 17736d148e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/17.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/18.png b/front/public/images/large/gregtech/gt.metaitem.98/18.png deleted file mode 100644 index 863211b723..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/18.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/19.png b/front/public/images/large/gregtech/gt.metaitem.98/19.png deleted file mode 100644 index a011491e67..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/19.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/2.png b/front/public/images/large/gregtech/gt.metaitem.98/2.png deleted file mode 100644 index 435ac116d1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/20.png b/front/public/images/large/gregtech/gt.metaitem.98/20.png deleted file mode 100644 index 28c5ed6876..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/20.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/21.png b/front/public/images/large/gregtech/gt.metaitem.98/21.png deleted file mode 100644 index 8bbf943c2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/21.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/27.png b/front/public/images/large/gregtech/gt.metaitem.98/27.png deleted file mode 100644 index 4500e5de9e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/27.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/28.png b/front/public/images/large/gregtech/gt.metaitem.98/28.png deleted file mode 100644 index 5790d61618..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/28.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/29.png b/front/public/images/large/gregtech/gt.metaitem.98/29.png deleted file mode 100644 index 56f2d8b6bd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/29.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/3.png b/front/public/images/large/gregtech/gt.metaitem.98/3.png deleted file mode 100644 index 90d033ba25..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/3.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/30.png b/front/public/images/large/gregtech/gt.metaitem.98/30.png deleted file mode 100644 index a83c549d5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/30.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/31.png b/front/public/images/large/gregtech/gt.metaitem.98/31.png deleted file mode 100644 index 7bbf01d3b8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/31.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/4.png b/front/public/images/large/gregtech/gt.metaitem.98/4.png deleted file mode 100644 index 3120ef9a5b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/5.png b/front/public/images/large/gregtech/gt.metaitem.98/5.png deleted file mode 100644 index 1c7b1aa507..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/5.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/6.png b/front/public/images/large/gregtech/gt.metaitem.98/6.png deleted file mode 100644 index 0dd43de270..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.98/9.png b/front/public/images/large/gregtech/gt.metaitem.98/9.png deleted file mode 100644 index 02068cd962..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.98/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/100.png b/front/public/images/large/gregtech/gt.metaitem.99/100.png deleted file mode 100644 index e03b017266..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/101.png b/front/public/images/large/gregtech/gt.metaitem.99/101.png deleted file mode 100644 index 54ea389efc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/101.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/103.png b/front/public/images/large/gregtech/gt.metaitem.99/103.png deleted file mode 100644 index 43fb58fc3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/103.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10642.png b/front/public/images/large/gregtech/gt.metaitem.99/10642.png deleted file mode 100644 index 96148533e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10643.png b/front/public/images/large/gregtech/gt.metaitem.99/10643.png deleted file mode 100644 index afb5185a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10644.png b/front/public/images/large/gregtech/gt.metaitem.99/10644.png deleted file mode 100644 index d479558f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10645.png b/front/public/images/large/gregtech/gt.metaitem.99/10645.png deleted file mode 100644 index e42808dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10646.png b/front/public/images/large/gregtech/gt.metaitem.99/10646.png deleted file mode 100644 index 973b94bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10677.png b/front/public/images/large/gregtech/gt.metaitem.99/10677.png deleted file mode 100644 index 3d0ced4550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10678.png b/front/public/images/large/gregtech/gt.metaitem.99/10678.png deleted file mode 100644 index 6802a85065..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10735.png b/front/public/images/large/gregtech/gt.metaitem.99/10735.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10739.png b/front/public/images/large/gregtech/gt.metaitem.99/10739.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10740.png b/front/public/images/large/gregtech/gt.metaitem.99/10740.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/10741.png b/front/public/images/large/gregtech/gt.metaitem.99/10741.png deleted file mode 100644 index ca9e93e9da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/10741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/111.png b/front/public/images/large/gregtech/gt.metaitem.99/111.png deleted file mode 100644 index bb20668af5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/111.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/112.png b/front/public/images/large/gregtech/gt.metaitem.99/112.png deleted file mode 100644 index 1feea504e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11642.png b/front/public/images/large/gregtech/gt.metaitem.99/11642.png deleted file mode 100644 index 96148533e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11643.png b/front/public/images/large/gregtech/gt.metaitem.99/11643.png deleted file mode 100644 index afb5185a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11644.png b/front/public/images/large/gregtech/gt.metaitem.99/11644.png deleted file mode 100644 index d479558f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11645.png b/front/public/images/large/gregtech/gt.metaitem.99/11645.png deleted file mode 100644 index e42808dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11646.png b/front/public/images/large/gregtech/gt.metaitem.99/11646.png deleted file mode 100644 index 973b94bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11677.png b/front/public/images/large/gregtech/gt.metaitem.99/11677.png deleted file mode 100644 index 3d0ced4550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11678.png b/front/public/images/large/gregtech/gt.metaitem.99/11678.png deleted file mode 100644 index 6802a85065..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11735.png b/front/public/images/large/gregtech/gt.metaitem.99/11735.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11739.png b/front/public/images/large/gregtech/gt.metaitem.99/11739.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11740.png b/front/public/images/large/gregtech/gt.metaitem.99/11740.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/11741.png b/front/public/images/large/gregtech/gt.metaitem.99/11741.png deleted file mode 100644 index ca9e93e9da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/11741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12642.png b/front/public/images/large/gregtech/gt.metaitem.99/12642.png deleted file mode 100644 index 96148533e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12643.png b/front/public/images/large/gregtech/gt.metaitem.99/12643.png deleted file mode 100644 index afb5185a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12644.png b/front/public/images/large/gregtech/gt.metaitem.99/12644.png deleted file mode 100644 index d479558f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12645.png b/front/public/images/large/gregtech/gt.metaitem.99/12645.png deleted file mode 100644 index e42808dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12646.png b/front/public/images/large/gregtech/gt.metaitem.99/12646.png deleted file mode 100644 index 973b94bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12677.png b/front/public/images/large/gregtech/gt.metaitem.99/12677.png deleted file mode 100644 index 3d0ced4550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12678.png b/front/public/images/large/gregtech/gt.metaitem.99/12678.png deleted file mode 100644 index 6802a85065..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12735.png b/front/public/images/large/gregtech/gt.metaitem.99/12735.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12739.png b/front/public/images/large/gregtech/gt.metaitem.99/12739.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12740.png b/front/public/images/large/gregtech/gt.metaitem.99/12740.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/12741.png b/front/public/images/large/gregtech/gt.metaitem.99/12741.png deleted file mode 100644 index ca9e93e9da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/12741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/129.png b/front/public/images/large/gregtech/gt.metaitem.99/129.png deleted file mode 100644 index 0efecb3f2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/129.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/131.png b/front/public/images/large/gregtech/gt.metaitem.99/131.png deleted file mode 100644 index ea3311e09a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/131.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/134.png b/front/public/images/large/gregtech/gt.metaitem.99/134.png deleted file mode 100644 index f6dbd61e5e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/134.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13642.png b/front/public/images/large/gregtech/gt.metaitem.99/13642.png deleted file mode 100644 index 96148533e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13643.png b/front/public/images/large/gregtech/gt.metaitem.99/13643.png deleted file mode 100644 index afb5185a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13644.png b/front/public/images/large/gregtech/gt.metaitem.99/13644.png deleted file mode 100644 index d479558f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13645.png b/front/public/images/large/gregtech/gt.metaitem.99/13645.png deleted file mode 100644 index e42808dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13646.png b/front/public/images/large/gregtech/gt.metaitem.99/13646.png deleted file mode 100644 index 973b94bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13677.png b/front/public/images/large/gregtech/gt.metaitem.99/13677.png deleted file mode 100644 index 3d0ced4550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13678.png b/front/public/images/large/gregtech/gt.metaitem.99/13678.png deleted file mode 100644 index 6802a85065..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13735.png b/front/public/images/large/gregtech/gt.metaitem.99/13735.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13739.png b/front/public/images/large/gregtech/gt.metaitem.99/13739.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13740.png b/front/public/images/large/gregtech/gt.metaitem.99/13740.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/13741.png b/front/public/images/large/gregtech/gt.metaitem.99/13741.png deleted file mode 100644 index ca9e93e9da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/13741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/139.png b/front/public/images/large/gregtech/gt.metaitem.99/139.png deleted file mode 100644 index 023c4283a6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/139.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/141.png b/front/public/images/large/gregtech/gt.metaitem.99/141.png deleted file mode 100644 index 46a3beb0f0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/141.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/143.png b/front/public/images/large/gregtech/gt.metaitem.99/143.png deleted file mode 100644 index 2a56f0c8d3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/143.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14642.png b/front/public/images/large/gregtech/gt.metaitem.99/14642.png deleted file mode 100644 index 96148533e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14643.png b/front/public/images/large/gregtech/gt.metaitem.99/14643.png deleted file mode 100644 index afb5185a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14644.png b/front/public/images/large/gregtech/gt.metaitem.99/14644.png deleted file mode 100644 index d479558f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14645.png b/front/public/images/large/gregtech/gt.metaitem.99/14645.png deleted file mode 100644 index e42808dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14646.png b/front/public/images/large/gregtech/gt.metaitem.99/14646.png deleted file mode 100644 index 973b94bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14677.png b/front/public/images/large/gregtech/gt.metaitem.99/14677.png deleted file mode 100644 index 3d0ced4550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14678.png b/front/public/images/large/gregtech/gt.metaitem.99/14678.png deleted file mode 100644 index 6802a85065..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14735.png b/front/public/images/large/gregtech/gt.metaitem.99/14735.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14739.png b/front/public/images/large/gregtech/gt.metaitem.99/14739.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14740.png b/front/public/images/large/gregtech/gt.metaitem.99/14740.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/14741.png b/front/public/images/large/gregtech/gt.metaitem.99/14741.png deleted file mode 100644 index ca9e93e9da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/14741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15642.png b/front/public/images/large/gregtech/gt.metaitem.99/15642.png deleted file mode 100644 index 96148533e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15642.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15643.png b/front/public/images/large/gregtech/gt.metaitem.99/15643.png deleted file mode 100644 index afb5185a23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15643.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15644.png b/front/public/images/large/gregtech/gt.metaitem.99/15644.png deleted file mode 100644 index d479558f31..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15644.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15645.png b/front/public/images/large/gregtech/gt.metaitem.99/15645.png deleted file mode 100644 index e42808dfe2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15645.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15646.png b/front/public/images/large/gregtech/gt.metaitem.99/15646.png deleted file mode 100644 index 973b94bd1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15646.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15677.png b/front/public/images/large/gregtech/gt.metaitem.99/15677.png deleted file mode 100644 index 3d0ced4550..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15677.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15678.png b/front/public/images/large/gregtech/gt.metaitem.99/15678.png deleted file mode 100644 index 6802a85065..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15678.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15735.png b/front/public/images/large/gregtech/gt.metaitem.99/15735.png deleted file mode 100644 index 7b97b54b3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15735.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15739.png b/front/public/images/large/gregtech/gt.metaitem.99/15739.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15739.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15740.png b/front/public/images/large/gregtech/gt.metaitem.99/15740.png deleted file mode 100644 index 076862de92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15740.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/15741.png b/front/public/images/large/gregtech/gt.metaitem.99/15741.png deleted file mode 100644 index ca9e93e9da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/15741.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/18.png b/front/public/images/large/gregtech/gt.metaitem.99/18.png deleted file mode 100644 index 2af0b8dc2b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/18.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/19.png b/front/public/images/large/gregtech/gt.metaitem.99/19.png deleted file mode 100644 index 3ffb23f48f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/19.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/20.png b/front/public/images/large/gregtech/gt.metaitem.99/20.png deleted file mode 100644 index 4cdaef0b0f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/20.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/201.png b/front/public/images/large/gregtech/gt.metaitem.99/201.png deleted file mode 100644 index d0c5202a26..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/201.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/202.png b/front/public/images/large/gregtech/gt.metaitem.99/202.png deleted file mode 100644 index ffc07b7003..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/202.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/203.png b/front/public/images/large/gregtech/gt.metaitem.99/203.png deleted file mode 100644 index 5d7edc608e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/203.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/205.png b/front/public/images/large/gregtech/gt.metaitem.99/205.png deleted file mode 100644 index 613d2a1be5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/205.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/25.png b/front/public/images/large/gregtech/gt.metaitem.99/25.png deleted file mode 100644 index e239c7021e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/25.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/27.png b/front/public/images/large/gregtech/gt.metaitem.99/27.png deleted file mode 100644 index 614e28822f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/27.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/28.png b/front/public/images/large/gregtech/gt.metaitem.99/28.png deleted file mode 100644 index 1658c20010..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/28.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/29.png b/front/public/images/large/gregtech/gt.metaitem.99/29.png deleted file mode 100644 index 2b3446e985..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/29.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/30.png b/front/public/images/large/gregtech/gt.metaitem.99/30.png deleted file mode 100644 index 7519492d92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/30.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/300.png b/front/public/images/large/gregtech/gt.metaitem.99/300.png deleted file mode 100644 index d28869e1ce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/300.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/301.png b/front/public/images/large/gregtech/gt.metaitem.99/301.png deleted file mode 100644 index 33cf44a1b9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/301.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/302.png b/front/public/images/large/gregtech/gt.metaitem.99/302.png deleted file mode 100644 index 578323f20a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/302.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/303.png b/front/public/images/large/gregtech/gt.metaitem.99/303.png deleted file mode 100644 index 45aadb67b5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/303.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/304.png b/front/public/images/large/gregtech/gt.metaitem.99/304.png deleted file mode 100644 index 8d9caca64f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/304.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/305.png b/front/public/images/large/gregtech/gt.metaitem.99/305.png deleted file mode 100644 index 85f1227f1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/305.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/306.png b/front/public/images/large/gregtech/gt.metaitem.99/306.png deleted file mode 100644 index 0004bbae15..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/306.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/307.png b/front/public/images/large/gregtech/gt.metaitem.99/307.png deleted file mode 100644 index 8d9caca64f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/307.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/308.png b/front/public/images/large/gregtech/gt.metaitem.99/308.png deleted file mode 100644 index 7d4b879c3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/308.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/309.png b/front/public/images/large/gregtech/gt.metaitem.99/309.png deleted file mode 100644 index 7f38408206..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/309.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/31.png b/front/public/images/large/gregtech/gt.metaitem.99/31.png deleted file mode 100644 index 0efecb3f2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/31.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/310.png b/front/public/images/large/gregtech/gt.metaitem.99/310.png deleted file mode 100644 index 3bde874021..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/310.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/311.png b/front/public/images/large/gregtech/gt.metaitem.99/311.png deleted file mode 100644 index 94035741fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/311.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/312.png b/front/public/images/large/gregtech/gt.metaitem.99/312.png deleted file mode 100644 index 71c5a90b97..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/312.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/313.png b/front/public/images/large/gregtech/gt.metaitem.99/313.png deleted file mode 100644 index cc72baaa92..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/313.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/314.png b/front/public/images/large/gregtech/gt.metaitem.99/314.png deleted file mode 100644 index 937891aa1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/314.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/315.png b/front/public/images/large/gregtech/gt.metaitem.99/315.png deleted file mode 100644 index 05a8cd8cbc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/315.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/316.png b/front/public/images/large/gregtech/gt.metaitem.99/316.png deleted file mode 100644 index 53af2528d4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/316.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/317.png b/front/public/images/large/gregtech/gt.metaitem.99/317.png deleted file mode 100644 index 0f154a43a4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/317.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/318.png b/front/public/images/large/gregtech/gt.metaitem.99/318.png deleted file mode 100644 index 37607fa83f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/318.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/319.png b/front/public/images/large/gregtech/gt.metaitem.99/319.png deleted file mode 100644 index d05a9233ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/319.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/32.png b/front/public/images/large/gregtech/gt.metaitem.99/32.png deleted file mode 100644 index 43fb58fc3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/32.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/320.png b/front/public/images/large/gregtech/gt.metaitem.99/320.png deleted file mode 100644 index 2768fc081b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/320.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/321.png b/front/public/images/large/gregtech/gt.metaitem.99/321.png deleted file mode 100644 index 1204284c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/321.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/323.png b/front/public/images/large/gregtech/gt.metaitem.99/323.png deleted file mode 100644 index 1c78ad491c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/323.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/324.png b/front/public/images/large/gregtech/gt.metaitem.99/324.png deleted file mode 100644 index dfa363efc1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/324.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/325.png b/front/public/images/large/gregtech/gt.metaitem.99/325.png deleted file mode 100644 index 7c3004d68b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/325.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/326.png b/front/public/images/large/gregtech/gt.metaitem.99/326.png deleted file mode 100644 index 085d23f506..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/326.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/327.png b/front/public/images/large/gregtech/gt.metaitem.99/327.png deleted file mode 100644 index 116b767dee..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/327.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/328.png b/front/public/images/large/gregtech/gt.metaitem.99/328.png deleted file mode 100644 index d05a9233ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/328.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/329.png b/front/public/images/large/gregtech/gt.metaitem.99/329.png deleted file mode 100644 index 822e7791da..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/329.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/33.png b/front/public/images/large/gregtech/gt.metaitem.99/33.png deleted file mode 100644 index 2d53f9d99f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/33.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/330.png b/front/public/images/large/gregtech/gt.metaitem.99/330.png deleted file mode 100644 index 4b558b5b41..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/330.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/331.png b/front/public/images/large/gregtech/gt.metaitem.99/331.png deleted file mode 100644 index a373f9a0ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/331.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/333.png b/front/public/images/large/gregtech/gt.metaitem.99/333.png deleted file mode 100644 index 9f16fb1317..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/333.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/334.png b/front/public/images/large/gregtech/gt.metaitem.99/334.png deleted file mode 100644 index 3dad6fe4fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/334.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/335.png b/front/public/images/large/gregtech/gt.metaitem.99/335.png deleted file mode 100644 index 5d8b778c62..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/335.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/336.png b/front/public/images/large/gregtech/gt.metaitem.99/336.png deleted file mode 100644 index 02094928d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/336.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/337.png b/front/public/images/large/gregtech/gt.metaitem.99/337.png deleted file mode 100644 index c1e8d6e7ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/337.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/338.png b/front/public/images/large/gregtech/gt.metaitem.99/338.png deleted file mode 100644 index 67787025c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/338.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/34.png b/front/public/images/large/gregtech/gt.metaitem.99/34.png deleted file mode 100644 index e082cbf541..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/34.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/340.png b/front/public/images/large/gregtech/gt.metaitem.99/340.png deleted file mode 100644 index a2cad6aec4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/340.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/341.png b/front/public/images/large/gregtech/gt.metaitem.99/341.png deleted file mode 100644 index 77408b8738..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/341.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/342.png b/front/public/images/large/gregtech/gt.metaitem.99/342.png deleted file mode 100644 index b769427602..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/342.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/343.png b/front/public/images/large/gregtech/gt.metaitem.99/343.png deleted file mode 100644 index 0ad6e5aa23..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/343.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/344.png b/front/public/images/large/gregtech/gt.metaitem.99/344.png deleted file mode 100644 index b90fe49e10..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/344.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/345.png b/front/public/images/large/gregtech/gt.metaitem.99/345.png deleted file mode 100644 index 46337b610b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/345.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/346.png b/front/public/images/large/gregtech/gt.metaitem.99/346.png deleted file mode 100644 index a60378979b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/346.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/348.png b/front/public/images/large/gregtech/gt.metaitem.99/348.png deleted file mode 100644 index 7557ea64b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/348.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/349.png b/front/public/images/large/gregtech/gt.metaitem.99/349.png deleted file mode 100644 index 15e617952b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/349.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/35.png b/front/public/images/large/gregtech/gt.metaitem.99/35.png deleted file mode 100644 index 09cc87d5e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/35.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/350.png b/front/public/images/large/gregtech/gt.metaitem.99/350.png deleted file mode 100644 index 01c8134e1f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/350.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/351.png b/front/public/images/large/gregtech/gt.metaitem.99/351.png deleted file mode 100644 index 874dc9ed0b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/351.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/352.png b/front/public/images/large/gregtech/gt.metaitem.99/352.png deleted file mode 100644 index 32a1f162ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/352.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/353.png b/front/public/images/large/gregtech/gt.metaitem.99/353.png deleted file mode 100644 index 730fe86fd9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/353.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/354.png b/front/public/images/large/gregtech/gt.metaitem.99/354.png deleted file mode 100644 index efc60663e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/354.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/355.png b/front/public/images/large/gregtech/gt.metaitem.99/355.png deleted file mode 100644 index 4b2fd076fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/355.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/356.png b/front/public/images/large/gregtech/gt.metaitem.99/356.png deleted file mode 100644 index 28f0c29282..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/356.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/357.png b/front/public/images/large/gregtech/gt.metaitem.99/357.png deleted file mode 100644 index 216d077728..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/357.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/358.png b/front/public/images/large/gregtech/gt.metaitem.99/358.png deleted file mode 100644 index a3aadb6b2d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/358.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/359.png b/front/public/images/large/gregtech/gt.metaitem.99/359.png deleted file mode 100644 index 79e27400b4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/359.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/36.png b/front/public/images/large/gregtech/gt.metaitem.99/36.png deleted file mode 100644 index e241f5ad83..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/36.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/360.png b/front/public/images/large/gregtech/gt.metaitem.99/360.png deleted file mode 100644 index 8e629fafd4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/360.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/361.png b/front/public/images/large/gregtech/gt.metaitem.99/361.png deleted file mode 100644 index 6819c25eb3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/361.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/362.png b/front/public/images/large/gregtech/gt.metaitem.99/362.png deleted file mode 100644 index e52b8ef228..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/362.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/363.png b/front/public/images/large/gregtech/gt.metaitem.99/363.png deleted file mode 100644 index 43fb58fc3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/363.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/364.png b/front/public/images/large/gregtech/gt.metaitem.99/364.png deleted file mode 100644 index 5673dbfafb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/364.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/365.png b/front/public/images/large/gregtech/gt.metaitem.99/365.png deleted file mode 100644 index 337308327a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/365.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/366.png b/front/public/images/large/gregtech/gt.metaitem.99/366.png deleted file mode 100644 index 847b3a5735..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/366.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/367.png b/front/public/images/large/gregtech/gt.metaitem.99/367.png deleted file mode 100644 index d4fac583be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/367.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/368.png b/front/public/images/large/gregtech/gt.metaitem.99/368.png deleted file mode 100644 index b0864a9e13..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/368.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/369.png b/front/public/images/large/gregtech/gt.metaitem.99/369.png deleted file mode 100644 index 4c6e9e1b21..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/369.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/37.png b/front/public/images/large/gregtech/gt.metaitem.99/37.png deleted file mode 100644 index da58794e99..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/37.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/370.png b/front/public/images/large/gregtech/gt.metaitem.99/370.png deleted file mode 100644 index 892c98c63f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/370.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/371.png b/front/public/images/large/gregtech/gt.metaitem.99/371.png deleted file mode 100644 index 0b06155cf1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/371.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/372.png b/front/public/images/large/gregtech/gt.metaitem.99/372.png deleted file mode 100644 index 6f7e3f3197..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/372.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/373.png b/front/public/images/large/gregtech/gt.metaitem.99/373.png deleted file mode 100644 index 2e4ca8f4a2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/373.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/374.png b/front/public/images/large/gregtech/gt.metaitem.99/374.png deleted file mode 100644 index 461b6bed84..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/374.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/378.png b/front/public/images/large/gregtech/gt.metaitem.99/378.png deleted file mode 100644 index 22a2de54eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/378.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/379.png b/front/public/images/large/gregtech/gt.metaitem.99/379.png deleted file mode 100644 index 1c2ad9a6b3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/379.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/380.png b/front/public/images/large/gregtech/gt.metaitem.99/380.png deleted file mode 100644 index f9c7213f35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/380.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/381.png b/front/public/images/large/gregtech/gt.metaitem.99/381.png deleted file mode 100644 index 2e5b4e72c1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/381.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/382.png b/front/public/images/large/gregtech/gt.metaitem.99/382.png deleted file mode 100644 index 8eb716c8ef..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/382.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/383.png b/front/public/images/large/gregtech/gt.metaitem.99/383.png deleted file mode 100644 index 05f380fa1c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/383.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/384.png b/front/public/images/large/gregtech/gt.metaitem.99/384.png deleted file mode 100644 index a9b58bb1d9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/384.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/385.png b/front/public/images/large/gregtech/gt.metaitem.99/385.png deleted file mode 100644 index 7a4ee6d631..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/385.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/386.png b/front/public/images/large/gregtech/gt.metaitem.99/386.png deleted file mode 100644 index 9b7a2390b1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/386.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/387.png b/front/public/images/large/gregtech/gt.metaitem.99/387.png deleted file mode 100644 index 18be345ca4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/387.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/388.png b/front/public/images/large/gregtech/gt.metaitem.99/388.png deleted file mode 100644 index 2b3446e985..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/388.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/389.png b/front/public/images/large/gregtech/gt.metaitem.99/389.png deleted file mode 100644 index 26d95d12ed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/389.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/39.png b/front/public/images/large/gregtech/gt.metaitem.99/39.png deleted file mode 100644 index d05a9233ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/39.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/390.png b/front/public/images/large/gregtech/gt.metaitem.99/390.png deleted file mode 100644 index 4d45284ba6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/390.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/391.png b/front/public/images/large/gregtech/gt.metaitem.99/391.png deleted file mode 100644 index 0578fb7197..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/391.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/392.png b/front/public/images/large/gregtech/gt.metaitem.99/392.png deleted file mode 100644 index 175de6a3e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/392.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/393.png b/front/public/images/large/gregtech/gt.metaitem.99/393.png deleted file mode 100644 index 0cc4858898..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/393.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/394.png b/front/public/images/large/gregtech/gt.metaitem.99/394.png deleted file mode 100644 index d05a9233ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/394.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/395.png b/front/public/images/large/gregtech/gt.metaitem.99/395.png deleted file mode 100644 index 2b3446e985..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/395.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/397.png b/front/public/images/large/gregtech/gt.metaitem.99/397.png deleted file mode 100644 index 9c85e93d99..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/397.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/398.png b/front/public/images/large/gregtech/gt.metaitem.99/398.png deleted file mode 100644 index aaef1883d7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/398.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/399.png b/front/public/images/large/gregtech/gt.metaitem.99/399.png deleted file mode 100644 index 7dc9136d11..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/399.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/400.png b/front/public/images/large/gregtech/gt.metaitem.99/400.png deleted file mode 100644 index b08d217967..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/400.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/401.png b/front/public/images/large/gregtech/gt.metaitem.99/401.png deleted file mode 100644 index dbf9c99de5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/401.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/402.png b/front/public/images/large/gregtech/gt.metaitem.99/402.png deleted file mode 100644 index ed507b0d17..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/402.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/403.png b/front/public/images/large/gregtech/gt.metaitem.99/403.png deleted file mode 100644 index dfac918b73..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/403.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/404.png b/front/public/images/large/gregtech/gt.metaitem.99/404.png deleted file mode 100644 index 83a2bd73be..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/404.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/405.png b/front/public/images/large/gregtech/gt.metaitem.99/405.png deleted file mode 100644 index 1857caf4cf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/405.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/406.png b/front/public/images/large/gregtech/gt.metaitem.99/406.png deleted file mode 100644 index ea60699ca8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/406.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/407.png b/front/public/images/large/gregtech/gt.metaitem.99/407.png deleted file mode 100644 index 9b3c54f307..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/407.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/408.png b/front/public/images/large/gregtech/gt.metaitem.99/408.png deleted file mode 100644 index e070feaa6c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/408.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/43.png b/front/public/images/large/gregtech/gt.metaitem.99/43.png deleted file mode 100644 index c6c49a397f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/43.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/45.png b/front/public/images/large/gregtech/gt.metaitem.99/45.png deleted file mode 100644 index f3fc883fa1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/45.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/47.png b/front/public/images/large/gregtech/gt.metaitem.99/47.png deleted file mode 100644 index 72507fc589..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/47.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/470.png b/front/public/images/large/gregtech/gt.metaitem.99/470.png deleted file mode 100644 index 16e613225e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/470.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/471.png b/front/public/images/large/gregtech/gt.metaitem.99/471.png deleted file mode 100644 index b057e958c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/471.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/472.png b/front/public/images/large/gregtech/gt.metaitem.99/472.png deleted file mode 100644 index 2b3446e985..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/472.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/473.png b/front/public/images/large/gregtech/gt.metaitem.99/473.png deleted file mode 100644 index 3dad6fe4fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/473.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/48.png b/front/public/images/large/gregtech/gt.metaitem.99/48.png deleted file mode 100644 index 5e5f519dcf..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/48.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/485.png b/front/public/images/large/gregtech/gt.metaitem.99/485.png deleted file mode 100644 index 28e7ec6502..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/485.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/488.png b/front/public/images/large/gregtech/gt.metaitem.99/488.png deleted file mode 100644 index 38aeb72eb2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/488.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/489.png b/front/public/images/large/gregtech/gt.metaitem.99/489.png deleted file mode 100644 index e6232f03ab..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/489.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/52.png b/front/public/images/large/gregtech/gt.metaitem.99/52.png deleted file mode 100644 index 85f1227f1b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/52.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/521.png b/front/public/images/large/gregtech/gt.metaitem.99/521.png deleted file mode 100644 index 37607fa83f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/521.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/529.png b/front/public/images/large/gregtech/gt.metaitem.99/529.png deleted file mode 100644 index 7912704a0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/529.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/54.png b/front/public/images/large/gregtech/gt.metaitem.99/54.png deleted file mode 100644 index da58794e99..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/54.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/56.png b/front/public/images/large/gregtech/gt.metaitem.99/56.png deleted file mode 100644 index ae149eb598..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/56.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/57.png b/front/public/images/large/gregtech/gt.metaitem.99/57.png deleted file mode 100644 index b057e958c0..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/57.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/576.png b/front/public/images/large/gregtech/gt.metaitem.99/576.png deleted file mode 100644 index c3ae4fe599..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/576.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/58.png b/front/public/images/large/gregtech/gt.metaitem.99/58.png deleted file mode 100644 index 0e994b97bc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/58.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/581.png b/front/public/images/large/gregtech/gt.metaitem.99/581.png deleted file mode 100644 index dd7e714db4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/581.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/582.png b/front/public/images/large/gregtech/gt.metaitem.99/582.png deleted file mode 100644 index 54075b77cb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/582.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/583.png b/front/public/images/large/gregtech/gt.metaitem.99/583.png deleted file mode 100644 index b4588a7b5c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/583.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/585.png b/front/public/images/large/gregtech/gt.metaitem.99/585.png deleted file mode 100644 index 15d7fdb795..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/585.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/586.png b/front/public/images/large/gregtech/gt.metaitem.99/586.png deleted file mode 100644 index 3c75c0e064..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/586.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/588.png b/front/public/images/large/gregtech/gt.metaitem.99/588.png deleted file mode 100644 index 2da7179275..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/588.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/59.png b/front/public/images/large/gregtech/gt.metaitem.99/59.png deleted file mode 100644 index 590d64933a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/59.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/599.png b/front/public/images/large/gregtech/gt.metaitem.99/599.png deleted file mode 100644 index e1f2a6db3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/599.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/6.png b/front/public/images/large/gregtech/gt.metaitem.99/6.png deleted file mode 100644 index 7b6cf9c20e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/602.png b/front/public/images/large/gregtech/gt.metaitem.99/602.png deleted file mode 100644 index 8bc2d4ebed..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/602.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/610.png b/front/public/images/large/gregtech/gt.metaitem.99/610.png deleted file mode 100644 index be7c641738..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/610.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/611.png b/front/public/images/large/gregtech/gt.metaitem.99/611.png deleted file mode 100644 index d3772c17b2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/611.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/613.png b/front/public/images/large/gregtech/gt.metaitem.99/613.png deleted file mode 100644 index a85ae449de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/613.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/62.png b/front/public/images/large/gregtech/gt.metaitem.99/62.png deleted file mode 100644 index 46d9ca8f01..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/62.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/63.png b/front/public/images/large/gregtech/gt.metaitem.99/63.png deleted file mode 100644 index d05a9233ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/63.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/631.png b/front/public/images/large/gregtech/gt.metaitem.99/631.png deleted file mode 100644 index 26a3796f68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/631.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/635.png b/front/public/images/large/gregtech/gt.metaitem.99/635.png deleted file mode 100644 index 92d5987714..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/635.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/636.png b/front/public/images/large/gregtech/gt.metaitem.99/636.png deleted file mode 100644 index 94434a01f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/636.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/64.png b/front/public/images/large/gregtech/gt.metaitem.99/64.png deleted file mode 100644 index e9b66b6c72..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/64.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/649.png b/front/public/images/large/gregtech/gt.metaitem.99/649.png deleted file mode 100644 index 29f320fb8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/649.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/65.png b/front/public/images/large/gregtech/gt.metaitem.99/65.png deleted file mode 100644 index d2dfbaf15f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/65.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/66.png b/front/public/images/large/gregtech/gt.metaitem.99/66.png deleted file mode 100644 index 8e53d7e0f8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/66.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/67.png b/front/public/images/large/gregtech/gt.metaitem.99/67.png deleted file mode 100644 index 3dad6fe4fb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/67.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/68.png b/front/public/images/large/gregtech/gt.metaitem.99/68.png deleted file mode 100644 index fd24b67120..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/68.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/69.png b/front/public/images/large/gregtech/gt.metaitem.99/69.png deleted file mode 100644 index 748cc57f3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/69.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/70.png b/front/public/images/large/gregtech/gt.metaitem.99/70.png deleted file mode 100644 index 16ca060e3a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/70.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/71.png b/front/public/images/large/gregtech/gt.metaitem.99/71.png deleted file mode 100644 index c6361c8e82..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/71.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/72.png b/front/public/images/large/gregtech/gt.metaitem.99/72.png deleted file mode 100644 index d05a9233ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/72.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/73.png b/front/public/images/large/gregtech/gt.metaitem.99/73.png deleted file mode 100644 index 4ddaf43adc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/73.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/74.png b/front/public/images/large/gregtech/gt.metaitem.99/74.png deleted file mode 100644 index 2150f17a04..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/74.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/75.png b/front/public/images/large/gregtech/gt.metaitem.99/75.png deleted file mode 100644 index 03dd8cfc0c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/75.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/76.png b/front/public/images/large/gregtech/gt.metaitem.99/76.png deleted file mode 100644 index efde86c99c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/76.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/765.png b/front/public/images/large/gregtech/gt.metaitem.99/765.png deleted file mode 100644 index 72c4120600..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/765.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/77.png b/front/public/images/large/gregtech/gt.metaitem.99/77.png deleted file mode 100644 index a4959678e3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/77.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/770.png b/front/public/images/large/gregtech/gt.metaitem.99/770.png deleted file mode 100644 index adc9884ffd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/770.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/772.png b/front/public/images/large/gregtech/gt.metaitem.99/772.png deleted file mode 100644 index dc64ef66f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/772.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/78.png b/front/public/images/large/gregtech/gt.metaitem.99/78.png deleted file mode 100644 index e16cdfa2fc..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/78.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/8.png b/front/public/images/large/gregtech/gt.metaitem.99/8.png deleted file mode 100644 index dd67ca5c95..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/80.png b/front/public/images/large/gregtech/gt.metaitem.99/80.png deleted file mode 100644 index d958716d6f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/80.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/801.png b/front/public/images/large/gregtech/gt.metaitem.99/801.png deleted file mode 100644 index 6e37b41ef3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/801.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/803.png b/front/public/images/large/gregtech/gt.metaitem.99/803.png deleted file mode 100644 index 0efecb3f2f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/803.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/804.png b/front/public/images/large/gregtech/gt.metaitem.99/804.png deleted file mode 100644 index 17d19fb689..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/804.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/81.png b/front/public/images/large/gregtech/gt.metaitem.99/81.png deleted file mode 100644 index 2b3446e985..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/81.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/810.png b/front/public/images/large/gregtech/gt.metaitem.99/810.png deleted file mode 100644 index 1a6c520f52..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/810.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/811.png b/front/public/images/large/gregtech/gt.metaitem.99/811.png deleted file mode 100644 index 37607fa83f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/811.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/812.png b/front/public/images/large/gregtech/gt.metaitem.99/812.png deleted file mode 100644 index aaaa6f0713..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/812.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/829.png b/front/public/images/large/gregtech/gt.metaitem.99/829.png deleted file mode 100644 index 446b2a46a3..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/829.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/83.png b/front/public/images/large/gregtech/gt.metaitem.99/83.png deleted file mode 100644 index 338bd83298..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/83.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/84.png b/front/public/images/large/gregtech/gt.metaitem.99/84.png deleted file mode 100644 index 67248fc9eb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/84.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/85.png b/front/public/images/large/gregtech/gt.metaitem.99/85.png deleted file mode 100644 index 20d1d37b68..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/85.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/856.png b/front/public/images/large/gregtech/gt.metaitem.99/856.png deleted file mode 100644 index 8ad01c1fd5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/856.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/86.png b/front/public/images/large/gregtech/gt.metaitem.99/86.png deleted file mode 100644 index 2b44d5cac4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/86.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/868.png b/front/public/images/large/gregtech/gt.metaitem.99/868.png deleted file mode 100644 index 44101c20e9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/868.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/874.png b/front/public/images/large/gregtech/gt.metaitem.99/874.png deleted file mode 100644 index 43fb58fc3c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/874.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/880.png b/front/public/images/large/gregtech/gt.metaitem.99/880.png deleted file mode 100644 index 3c75c0e064..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/880.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/884.png b/front/public/images/large/gregtech/gt.metaitem.99/884.png deleted file mode 100644 index 7c3004d68b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/884.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/89.png b/front/public/images/large/gregtech/gt.metaitem.99/89.png deleted file mode 100644 index f93e9ada3d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/89.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/890.png b/front/public/images/large/gregtech/gt.metaitem.99/890.png deleted file mode 100644 index 67d060fd08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/890.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/894.png b/front/public/images/large/gregtech/gt.metaitem.99/894.png deleted file mode 100644 index 787e3468a9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/894.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/9.png b/front/public/images/large/gregtech/gt.metaitem.99/9.png deleted file mode 100644 index 6e0e9e8e9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/9.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/90.png b/front/public/images/large/gregtech/gt.metaitem.99/90.png deleted file mode 100644 index 618377f79b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/90.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/912.png b/front/public/images/large/gregtech/gt.metaitem.99/912.png deleted file mode 100644 index fb2a15ebce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/912.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/913.png b/front/public/images/large/gregtech/gt.metaitem.99/913.png deleted file mode 100644 index 7557ea64b7..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/913.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/947.png b/front/public/images/large/gregtech/gt.metaitem.99/947.png deleted file mode 100644 index 518410a10b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/947.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/951.png b/front/public/images/large/gregtech/gt.metaitem.99/951.png deleted file mode 100644 index 5f7b2bd21d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/951.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/952.png b/front/public/images/large/gregtech/gt.metaitem.99/952.png deleted file mode 100644 index 0f8b245cf8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/952.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/956.png b/front/public/images/large/gregtech/gt.metaitem.99/956.png deleted file mode 100644 index 29355fb8f5..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/956.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/96.png b/front/public/images/large/gregtech/gt.metaitem.99/96.png deleted file mode 100644 index 6211341a33..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/96.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/966.png b/front/public/images/large/gregtech/gt.metaitem.99/966.png deleted file mode 100644 index ace0d467de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/966.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/97.png b/front/public/images/large/gregtech/gt.metaitem.99/97.png deleted file mode 100644 index 9b6ee492e4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/97.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/970.png b/front/public/images/large/gregtech/gt.metaitem.99/970.png deleted file mode 100644 index 87ef5635e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/970.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/974.png b/front/public/images/large/gregtech/gt.metaitem.99/974.png deleted file mode 100644 index 2e462af716..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/974.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/975.png b/front/public/images/large/gregtech/gt.metaitem.99/975.png deleted file mode 100644 index 97941f7407..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/975.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/976.png b/front/public/images/large/gregtech/gt.metaitem.99/976.png deleted file mode 100644 index b129cb6941..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/976.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/977.png b/front/public/images/large/gregtech/gt.metaitem.99/977.png deleted file mode 100644 index b153640544..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/977.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/978.png b/front/public/images/large/gregtech/gt.metaitem.99/978.png deleted file mode 100644 index 667b2f2bce..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/978.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/979.png b/front/public/images/large/gregtech/gt.metaitem.99/979.png deleted file mode 100644 index 6c5ad05f08..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/979.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/98.png b/front/public/images/large/gregtech/gt.metaitem.99/98.png deleted file mode 100644 index 377b3f6d57..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/98.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/980.png b/front/public/images/large/gregtech/gt.metaitem.99/980.png deleted file mode 100644 index e0fcb7737b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/980.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/981.png b/front/public/images/large/gregtech/gt.metaitem.99/981.png deleted file mode 100644 index f8ae851687..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/981.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/982.png b/front/public/images/large/gregtech/gt.metaitem.99/982.png deleted file mode 100644 index 7f627b0b8d..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/982.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/984.png b/front/public/images/large/gregtech/gt.metaitem.99/984.png deleted file mode 100644 index d05a9233ae..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/984.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/985.png b/front/public/images/large/gregtech/gt.metaitem.99/985.png deleted file mode 100644 index 7f69a41b35..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/985.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/986.png b/front/public/images/large/gregtech/gt.metaitem.99/986.png deleted file mode 100644 index 83c855a99c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/986.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/987.png b/front/public/images/large/gregtech/gt.metaitem.99/987.png deleted file mode 100644 index b66165624c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/987.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/988.png b/front/public/images/large/gregtech/gt.metaitem.99/988.png deleted file mode 100644 index 5a0fd184e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/988.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/989.png b/front/public/images/large/gregtech/gt.metaitem.99/989.png deleted file mode 100644 index 3068455754..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/989.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/990.png b/front/public/images/large/gregtech/gt.metaitem.99/990.png deleted file mode 100644 index a440e70e0e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/990.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/991.png b/front/public/images/large/gregtech/gt.metaitem.99/991.png deleted file mode 100644 index d2dacd549e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/991.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metaitem.99/992.png b/front/public/images/large/gregtech/gt.metaitem.99/992.png deleted file mode 100644 index bf8c8ad72c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metaitem.99/992.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/0.png b/front/public/images/large/gregtech/gt.metatool.01/0.png deleted file mode 100644 index 9ac30a7dcd..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/10.png b/front/public/images/large/gregtech/gt.metatool.01/10.png deleted file mode 100644 index d1dbd2c6e6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/10.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/100.png b/front/public/images/large/gregtech/gt.metatool.01/100.png deleted file mode 100644 index 5927cd07d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/100.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/102.png b/front/public/images/large/gregtech/gt.metatool.01/102.png deleted file mode 100644 index 5927cd07d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/102.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/104.png b/front/public/images/large/gregtech/gt.metatool.01/104.png deleted file mode 100644 index 5927cd07d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/104.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/110.png b/front/public/images/large/gregtech/gt.metatool.01/110.png deleted file mode 100644 index 97b5633311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/110.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/112.png b/front/public/images/large/gregtech/gt.metatool.01/112.png deleted file mode 100644 index 97b5633311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/112.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/114.png b/front/public/images/large/gregtech/gt.metatool.01/114.png deleted file mode 100644 index 97b5633311..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/114.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/12.png b/front/public/images/large/gregtech/gt.metatool.01/12.png deleted file mode 100644 index 2eb35d008f..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/12.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/120.png b/front/public/images/large/gregtech/gt.metatool.01/120.png deleted file mode 100644 index e98c3a2c4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/120.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/122.png b/front/public/images/large/gregtech/gt.metatool.01/122.png deleted file mode 100644 index e98c3a2c4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/122.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/124.png b/front/public/images/large/gregtech/gt.metatool.01/124.png deleted file mode 100644 index e98c3a2c4e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/124.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/130.png b/front/public/images/large/gregtech/gt.metatool.01/130.png deleted file mode 100644 index 3f35aa7e05..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/130.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/14.png b/front/public/images/large/gregtech/gt.metatool.01/14.png deleted file mode 100644 index 1174c12573..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/14.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/140.png b/front/public/images/large/gregtech/gt.metatool.01/140.png deleted file mode 100644 index d12ced4bb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/140.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/142.png b/front/public/images/large/gregtech/gt.metatool.01/142.png deleted file mode 100644 index d12ced4bb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/142.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/144.png b/front/public/images/large/gregtech/gt.metatool.01/144.png deleted file mode 100644 index d12ced4bb9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/144.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/150.png b/front/public/images/large/gregtech/gt.metatool.01/150.png deleted file mode 100644 index 0a70a00fc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/150.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/152.png b/front/public/images/large/gregtech/gt.metatool.01/152.png deleted file mode 100644 index 0a70a00fc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/152.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/154.png b/front/public/images/large/gregtech/gt.metatool.01/154.png deleted file mode 100644 index 0a70a00fc9..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/154.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/16.png b/front/public/images/large/gregtech/gt.metatool.01/16.png deleted file mode 100644 index 83e683baf2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/16.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/160.png b/front/public/images/large/gregtech/gt.metatool.01/160.png deleted file mode 100644 index ed2e097c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/160.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/162.png b/front/public/images/large/gregtech/gt.metatool.01/162.png deleted file mode 100644 index ed2e097c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/162.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/164.png b/front/public/images/large/gregtech/gt.metatool.01/164.png deleted file mode 100644 index ed2e097c98..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/164.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/170.png b/front/public/images/large/gregtech/gt.metatool.01/170.png deleted file mode 100644 index 5c4cf398e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/170.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/172.png b/front/public/images/large/gregtech/gt.metatool.01/172.png deleted file mode 100644 index 5c4cf398e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/172.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/174.png b/front/public/images/large/gregtech/gt.metatool.01/174.png deleted file mode 100644 index 5c4cf398e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/174.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/176.png b/front/public/images/large/gregtech/gt.metatool.01/176.png deleted file mode 100644 index 5c4cf398e2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/176.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/18.png b/front/public/images/large/gregtech/gt.metatool.01/18.png deleted file mode 100644 index b9f733ce7c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/18.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/180.png b/front/public/images/large/gregtech/gt.metatool.01/180.png deleted file mode 100644 index eee06d80e8..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/180.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/182.png b/front/public/images/large/gregtech/gt.metatool.01/182.png deleted file mode 100644 index 6f56fdf5af..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/182.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/184.png b/front/public/images/large/gregtech/gt.metatool.01/184.png deleted file mode 100644 index ef781b92de..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/184.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/186.png b/front/public/images/large/gregtech/gt.metatool.01/186.png deleted file mode 100644 index 4cf684d4f4..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/186.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/188.png b/front/public/images/large/gregtech/gt.metatool.01/188.png deleted file mode 100644 index d3f53cfd86..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/188.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/190.png b/front/public/images/large/gregtech/gt.metatool.01/190.png deleted file mode 100644 index fc9c56a73e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/190.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/192.png b/front/public/images/large/gregtech/gt.metatool.01/192.png deleted file mode 100644 index 08d2125f8b..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/192.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/2.png b/front/public/images/large/gregtech/gt.metatool.01/2.png deleted file mode 100644 index 43e8301d9c..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/2.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/20.png b/front/public/images/large/gregtech/gt.metatool.01/20.png deleted file mode 100644 index cfb15e7d6a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/20.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/22.png b/front/public/images/large/gregtech/gt.metatool.01/22.png deleted file mode 100644 index a29f8474bb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/22.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/24.png b/front/public/images/large/gregtech/gt.metatool.01/24.png deleted file mode 100644 index 432ea9f60e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/24.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/26.png b/front/public/images/large/gregtech/gt.metatool.01/26.png deleted file mode 100644 index fa4c463d02..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/26.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/28.png b/front/public/images/large/gregtech/gt.metatool.01/28.png deleted file mode 100644 index 41677b5605..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/28.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/30.png b/front/public/images/large/gregtech/gt.metatool.01/30.png deleted file mode 100644 index 515abb4ffb..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/30.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/32.png b/front/public/images/large/gregtech/gt.metatool.01/32.png deleted file mode 100644 index 975b48881e..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/32.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/34.png b/front/public/images/large/gregtech/gt.metatool.01/34.png deleted file mode 100644 index 52abfd5982..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/34.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/36.png b/front/public/images/large/gregtech/gt.metatool.01/36.png deleted file mode 100644 index 72ab07062a..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/36.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/4.png b/front/public/images/large/gregtech/gt.metatool.01/4.png deleted file mode 100644 index 2009ba2527..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/4.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/40.png b/front/public/images/large/gregtech/gt.metatool.01/40.png deleted file mode 100644 index 84d2ac5044..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/40.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/42.png b/front/public/images/large/gregtech/gt.metatool.01/42.png deleted file mode 100644 index db0bea40d2..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/42.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/44.png b/front/public/images/large/gregtech/gt.metatool.01/44.png deleted file mode 100644 index 4eabf635ac..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/44.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/46.png b/front/public/images/large/gregtech/gt.metatool.01/46.png deleted file mode 100644 index b0fbe469e1..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/46.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/6.png b/front/public/images/large/gregtech/gt.metatool.01/6.png deleted file mode 100644 index 0bdcced6f6..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/6.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.metatool.01/8.png b/front/public/images/large/gregtech/gt.metatool.01/8.png deleted file mode 100644 index b0a1d0cd45..0000000000 Binary files a/front/public/images/large/gregtech/gt.metatool.01/8.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.neutroniumHeatCapacitor/0.png b/front/public/images/large/gregtech/gt.neutroniumHeatCapacitor/0.png deleted file mode 100644 index 5641f9d8f9..0000000000 Binary files a/front/public/images/large/gregtech/gt.neutroniumHeatCapacitor/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.neutronreflector/0.png b/front/public/images/large/gregtech/gt.neutronreflector/0.png deleted file mode 100644 index c783da1009..0000000000 Binary files a/front/public/images/large/gregtech/gt.neutronreflector/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.reactorMOXDual/0.png b/front/public/images/large/gregtech/gt.reactorMOXDual/0.png deleted file mode 100644 index 43adcc0f17..0000000000 Binary files a/front/public/images/large/gregtech/gt.reactorMOXDual/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.reactorMOXQuad/0.png b/front/public/images/large/gregtech/gt.reactorMOXQuad/0.png deleted file mode 100644 index d796702a40..0000000000 Binary files a/front/public/images/large/gregtech/gt.reactorMOXQuad/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.reactorMOXSimple/0.png b/front/public/images/large/gregtech/gt.reactorMOXSimple/0.png deleted file mode 100644 index d66ccd0518..0000000000 Binary files a/front/public/images/large/gregtech/gt.reactorMOXSimple/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.reactorUraniumDual/0.png b/front/public/images/large/gregtech/gt.reactorUraniumDual/0.png deleted file mode 100644 index 7bbe872786..0000000000 Binary files a/front/public/images/large/gregtech/gt.reactorUraniumDual/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.reactorUraniumQuad/0.png b/front/public/images/large/gregtech/gt.reactorUraniumQuad/0.png deleted file mode 100644 index 305db3fa42..0000000000 Binary files a/front/public/images/large/gregtech/gt.reactorUraniumQuad/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.reactorUraniumSimple/0.png b/front/public/images/large/gregtech/gt.reactorUraniumSimple/0.png deleted file mode 100644 index e5afb9d4df..0000000000 Binary files a/front/public/images/large/gregtech/gt.reactorUraniumSimple/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.sensorcard/0.png b/front/public/images/large/gregtech/gt.sensorcard/0.png deleted file mode 100644 index 60b2b5c171..0000000000 Binary files a/front/public/images/large/gregtech/gt.sensorcard/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.sunnariumCell/0.png b/front/public/images/large/gregtech/gt.sunnariumCell/0.png deleted file mode 100644 index 0f6b1621a0..0000000000 Binary files a/front/public/images/large/gregtech/gt.sunnariumCell/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.tierdDrone0/0.png b/front/public/images/large/gregtech/gt.tierdDrone0/0.png deleted file mode 100644 index 3549eda014..0000000000 Binary files a/front/public/images/large/gregtech/gt.tierdDrone0/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.tierdDrone1/0.png b/front/public/images/large/gregtech/gt.tierdDrone1/0.png deleted file mode 100644 index 178090c4a1..0000000000 Binary files a/front/public/images/large/gregtech/gt.tierdDrone1/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/gt.tierdDrone2/0.png b/front/public/images/large/gregtech/gt.tierdDrone2/0.png deleted file mode 100644 index 01b803eb6d..0000000000 Binary files a/front/public/images/large/gregtech/gt.tierdDrone2/0.png and /dev/null differ diff --git a/front/public/images/large/gregtech/tile.gt.dronerender/0.png b/front/public/images/large/gregtech/tile.gt.dronerender/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/gregtech/tile.gt.dronerender/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_An/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_An/0.png deleted file mode 100644 index e8f6c6929a..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_An/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_As/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_As/0.png deleted file mode 100644 index f347a9df9b..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_As/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BC/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BC/0.png deleted file mode 100644 index 8d53b8fb41..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BC/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BE/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BE/0.png deleted file mode 100644 index a6a0becfe6..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BE/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BF/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BF/0.png deleted file mode 100644 index 4d23361f79..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_BF/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_CB/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_CB/0.png deleted file mode 100644 index 85456f3a8e..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_CB/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ca/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ca/0.png deleted file mode 100644 index 4a5c4c9e1b..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ca/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ce/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ce/0.png deleted file mode 100644 index 3709569e90..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ce/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_DD/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_DD/0.png deleted file mode 100644 index 11f88d2ea3..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_DD/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_De/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_De/0.png deleted file mode 100644 index adae907197..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_De/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_EA/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_EA/0.png deleted file mode 100644 index c96e05717f..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_EA/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_ED/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_ED/0.png deleted file mode 100644 index f347a9df9b..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_ED/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_En/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_En/0.png deleted file mode 100644 index 6c2fbc15c3..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_En/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Eu/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Eu/0.png deleted file mode 100644 index 89624baf06..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Eu/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ga/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ga/0.png deleted file mode 100644 index bc20a758f9..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ga/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ha/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ha/0.png deleted file mode 100644 index 41aa3c7a66..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ha/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ho/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ho/0.png deleted file mode 100644 index b2947bceaf..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ho/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Io/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Io/0.png deleted file mode 100644 index 7d5a5cb8f7..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Io/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_KB/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_KB/0.png deleted file mode 100644 index b702f32a62..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_KB/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_MB/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_MB/0.png deleted file mode 100644 index e67d92b0e3..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_MB/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_MM/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_MM/0.png deleted file mode 100644 index 098a70c96a..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_MM/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ma/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ma/0.png deleted file mode 100644 index 2fbc4fb0cb..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ma/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Me/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Me/0.png deleted file mode 100644 index 396a1c9337..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Me/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mh/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mh/0.png deleted file mode 100644 index 1080572e8a..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mh/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mi/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mi/0.png deleted file mode 100644 index c6baff8899..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mi/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mo/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mo/0.png deleted file mode 100644 index fcdc103032..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Mo/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ne/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ne/0.png deleted file mode 100644 index a71543fa4c..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ne/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Np/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Np/0.png deleted file mode 100644 index b1f497466c..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Np/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ob/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ob/0.png deleted file mode 100644 index 2bfd9f04ed..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ob/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ow/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ow/0.png deleted file mode 100644 index 39fb283cc6..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ow/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ph/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ph/0.png deleted file mode 100644 index 14c4cfe968..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ph/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Pl/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Pl/0.png deleted file mode 100644 index 121918c8b7..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Pl/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Pr/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Pr/0.png deleted file mode 100644 index a3a7a903ac..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Pr/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ra/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ra/0.png deleted file mode 100644 index 5a2839ad80..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ra/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Rb/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Rb/0.png deleted file mode 100644 index 1a0c06bc28..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Rb/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Se/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Se/0.png deleted file mode 100644 index e5aa9626db..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Se/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_TE/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_TE/0.png deleted file mode 100644 index 058262876d..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_TE/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_TF/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_TF/0.png deleted file mode 100644 index 0633c6e0ee..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_TF/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ti/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ti/0.png deleted file mode 100644 index 8bbb19912b..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ti/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Tr/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Tr/0.png deleted file mode 100644 index 041e88b3d6..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Tr/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_VA/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_VA/0.png deleted file mode 100644 index 9d7060a650..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_VA/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_VB/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_VB/0.png deleted file mode 100644 index c81540f2d4..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_VB/0.png and /dev/null differ diff --git a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ve/0.png b/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ve/0.png deleted file mode 100644 index 0dc8ee0a27..0000000000 Binary files a/front/public/images/large/gtneioreplugin/blockDimensionDisplay_Ve/0.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/0.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/0.png deleted file mode 100644 index 7a546a5a65..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/0.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/1.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/1.png deleted file mode 100644 index 6020f3282a..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/1.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/2.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/2.png deleted file mode 100644 index 5026f1dee8..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSE/2.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/0.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/0.png deleted file mode 100644 index 360c10decf..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/0.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/1.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/1.png deleted file mode 100644 index 663dac0993..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/1.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/2.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/2.png deleted file mode 100644 index 2ef96668c3..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/2.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/3.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/3.png deleted file mode 100644 index dfa64b69fc..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/3.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/4.png b/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/4.png deleted file mode 100644 index 591890b584..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/gt.blockcasingsSEMotor/4.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/0.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/0.png deleted file mode 100644 index 1b7ddae5df..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/0.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/1.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/1.png deleted file mode 100644 index c6ccf1cc85..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/1.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/10.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/10.png deleted file mode 100644 index 8a0e9f344e..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/10.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/11.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/11.png deleted file mode 100644 index 3a4fbbe06b..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/11.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/12.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/12.png deleted file mode 100644 index aa77f528b2..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/12.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/13.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/13.png deleted file mode 100644 index e33cd6f9e3..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/13.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/2.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/2.png deleted file mode 100644 index 349895b116..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/2.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/3.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/3.png deleted file mode 100644 index 8ed06a4755..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/3.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/4.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/4.png deleted file mode 100644 index 95515fa9f6..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/4.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/5.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/5.png deleted file mode 100644 index c0e750f55d..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/5.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/6.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/6.png deleted file mode 100644 index f3bebff465..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/6.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/7.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/7.png deleted file mode 100644 index 3678c8670f..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/7.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/8.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/8.png deleted file mode 100644 index 16046f91aa..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/8.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.MiningDrone/9.png b/front/public/images/large/gtnhintergalactic/item.MiningDrone/9.png deleted file mode 100644 index a246f6cd71..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.MiningDrone/9.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/item.SpaceElevatorParts/0.png b/front/public/images/large/gtnhintergalactic/item.SpaceElevatorParts/0.png deleted file mode 100644 index 0b7eb000f8..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/item.SpaceElevatorParts/0.png and /dev/null differ diff --git a/front/public/images/large/gtnhintergalactic/spaceelevatorcable/0.png b/front/public/images/large/gtnhintergalactic/spaceelevatorcable/0.png deleted file mode 100644 index 08a7d31c0e..0000000000 Binary files a/front/public/images/large/gtnhintergalactic/spaceelevatorcable/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/almondItem/0.png b/front/public/images/large/harvestcraft/almondItem/0.png deleted file mode 100644 index 5c85a4db14..0000000000 Binary files a/front/public/images/large/harvestcraft/almondItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/almondbutterItem/0.png b/front/public/images/large/harvestcraft/almondbutterItem/0.png deleted file mode 100644 index 3fc8e3c1f0..0000000000 Binary files a/front/public/images/large/harvestcraft/almondbutterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/anchovyrawItem/0.png b/front/public/images/large/harvestcraft/anchovyrawItem/0.png deleted file mode 100644 index 8224b13353..0000000000 Binary files a/front/public/images/large/harvestcraft/anchovyrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/animaltrap/0.png b/front/public/images/large/harvestcraft/animaltrap/0.png deleted file mode 100644 index d761a96004..0000000000 Binary files a/front/public/images/large/harvestcraft/animaltrap/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apiary/0.png b/front/public/images/large/harvestcraft/apiary/0.png deleted file mode 100644 index 971b8b9850..0000000000 Binary files a/front/public/images/large/harvestcraft/apiary/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/appleciderItem/0.png b/front/public/images/large/harvestcraft/appleciderItem/0.png deleted file mode 100644 index f9cd175e6b..0000000000 Binary files a/front/public/images/large/harvestcraft/appleciderItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/applejellyItem/0.png b/front/public/images/large/harvestcraft/applejellyItem/0.png deleted file mode 100644 index 9fd688a1be..0000000000 Binary files a/front/public/images/large/harvestcraft/applejellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/applejellysandwichItem/0.png b/front/public/images/large/harvestcraft/applejellysandwichItem/0.png deleted file mode 100644 index 7f6cd2370f..0000000000 Binary files a/front/public/images/large/harvestcraft/applejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/applejuiceItem/0.png b/front/public/images/large/harvestcraft/applejuiceItem/0.png deleted file mode 100644 index c0e977a5c8..0000000000 Binary files a/front/public/images/large/harvestcraft/applejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/applepieItem/0.png b/front/public/images/large/harvestcraft/applepieItem/0.png deleted file mode 100644 index 760c47c93a..0000000000 Binary files a/front/public/images/large/harvestcraft/applepieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/applesauceItem/0.png b/front/public/images/large/harvestcraft/applesauceItem/0.png deleted file mode 100644 index 55eeb8925f..0000000000 Binary files a/front/public/images/large/harvestcraft/applesauceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/applesmoothieItem/0.png b/front/public/images/large/harvestcraft/applesmoothieItem/0.png deleted file mode 100644 index b18955b13f..0000000000 Binary files a/front/public/images/large/harvestcraft/applesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/appleyogurtItem/0.png b/front/public/images/large/harvestcraft/appleyogurtItem/0.png deleted file mode 100644 index 68f36a3939..0000000000 Binary files a/front/public/images/large/harvestcraft/appleyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apricotItem/0.png b/front/public/images/large/harvestcraft/apricotItem/0.png deleted file mode 100644 index 6ad8085f1d..0000000000 Binary files a/front/public/images/large/harvestcraft/apricotItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apricotglazedporkItem/0.png b/front/public/images/large/harvestcraft/apricotglazedporkItem/0.png deleted file mode 100644 index 9daaea8bb7..0000000000 Binary files a/front/public/images/large/harvestcraft/apricotglazedporkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apricotjellyItem/0.png b/front/public/images/large/harvestcraft/apricotjellyItem/0.png deleted file mode 100644 index a0d8ac0c1e..0000000000 Binary files a/front/public/images/large/harvestcraft/apricotjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apricotjellysandwichItem/0.png b/front/public/images/large/harvestcraft/apricotjellysandwichItem/0.png deleted file mode 100644 index 6fc3e74175..0000000000 Binary files a/front/public/images/large/harvestcraft/apricotjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apricotjuiceItem/0.png b/front/public/images/large/harvestcraft/apricotjuiceItem/0.png deleted file mode 100644 index 7ab6c3352d..0000000000 Binary files a/front/public/images/large/harvestcraft/apricotjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apricotsmoothieItem/0.png b/front/public/images/large/harvestcraft/apricotsmoothieItem/0.png deleted file mode 100644 index 561b670634..0000000000 Binary files a/front/public/images/large/harvestcraft/apricotsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/apricotyogurtItem/0.png b/front/public/images/large/harvestcraft/apricotyogurtItem/0.png deleted file mode 100644 index 56d9747a05..0000000000 Binary files a/front/public/images/large/harvestcraft/apricotyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/artichokeItem/0.png b/front/public/images/large/harvestcraft/artichokeItem/0.png deleted file mode 100644 index a676cefa17..0000000000 Binary files a/front/public/images/large/harvestcraft/artichokeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/artichokeseedItem/0.png b/front/public/images/large/harvestcraft/artichokeseedItem/0.png deleted file mode 100644 index 721c8ceaff..0000000000 Binary files a/front/public/images/large/harvestcraft/artichokeseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/asparagusItem/0.png b/front/public/images/large/harvestcraft/asparagusItem/0.png deleted file mode 100644 index 73dbbeecf5..0000000000 Binary files a/front/public/images/large/harvestcraft/asparagusItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/asparagusquicheItem/0.png b/front/public/images/large/harvestcraft/asparagusquicheItem/0.png deleted file mode 100644 index ef90bb8f6a..0000000000 Binary files a/front/public/images/large/harvestcraft/asparagusquicheItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/asparagusseedItem/0.png b/front/public/images/large/harvestcraft/asparagusseedItem/0.png deleted file mode 100644 index 068c21e1f4..0000000000 Binary files a/front/public/images/large/harvestcraft/asparagusseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/asparagussoupItem/0.png b/front/public/images/large/harvestcraft/asparagussoupItem/0.png deleted file mode 100644 index 702211da56..0000000000 Binary files a/front/public/images/large/harvestcraft/asparagussoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/avocadoItem/0.png b/front/public/images/large/harvestcraft/avocadoItem/0.png deleted file mode 100644 index e8b34a783d..0000000000 Binary files a/front/public/images/large/harvestcraft/avocadoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/avocadoburritoItem/0.png b/front/public/images/large/harvestcraft/avocadoburritoItem/0.png deleted file mode 100644 index a86619ae19..0000000000 Binary files a/front/public/images/large/harvestcraft/avocadoburritoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/baconcheeseburgerItem/0.png b/front/public/images/large/harvestcraft/baconcheeseburgerItem/0.png deleted file mode 100644 index da5c420c97..0000000000 Binary files a/front/public/images/large/harvestcraft/baconcheeseburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/baconmushroomburgerItem/0.png b/front/public/images/large/harvestcraft/baconmushroomburgerItem/0.png deleted file mode 100644 index ccea7c8400..0000000000 Binary files a/front/public/images/large/harvestcraft/baconmushroomburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/baconwrappeddatesItem/0.png b/front/public/images/large/harvestcraft/baconwrappeddatesItem/0.png deleted file mode 100644 index 307d8b5896..0000000000 Binary files a/front/public/images/large/harvestcraft/baconwrappeddatesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bakedbeansItem/0.png b/front/public/images/large/harvestcraft/bakedbeansItem/0.png deleted file mode 100644 index ba82dc281c..0000000000 Binary files a/front/public/images/large/harvestcraft/bakedbeansItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bakedbeetsItem/0.png b/front/public/images/large/harvestcraft/bakedbeetsItem/0.png deleted file mode 100644 index 5120607efc..0000000000 Binary files a/front/public/images/large/harvestcraft/bakedbeetsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bakedhamItem/0.png b/front/public/images/large/harvestcraft/bakedhamItem/0.png deleted file mode 100644 index a8309616bb..0000000000 Binary files a/front/public/images/large/harvestcraft/bakedhamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bakedsweetpotatoItem/0.png b/front/public/images/large/harvestcraft/bakedsweetpotatoItem/0.png deleted file mode 100644 index 73b2773ccd..0000000000 Binary files a/front/public/images/large/harvestcraft/bakedsweetpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bakedturnipsItem/0.png b/front/public/images/large/harvestcraft/bakedturnipsItem/0.png deleted file mode 100644 index b6853997fc..0000000000 Binary files a/front/public/images/large/harvestcraft/bakedturnipsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bakewareItem/0.png b/front/public/images/large/harvestcraft/bakewareItem/0.png deleted file mode 100644 index fef9455550..0000000000 Binary files a/front/public/images/large/harvestcraft/bakewareItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/baklavaItem/0.png b/front/public/images/large/harvestcraft/baklavaItem/0.png deleted file mode 100644 index e60804d1f5..0000000000 Binary files a/front/public/images/large/harvestcraft/baklavaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bambooshootItem/0.png b/front/public/images/large/harvestcraft/bambooshootItem/0.png deleted file mode 100644 index 2a935b954c..0000000000 Binary files a/front/public/images/large/harvestcraft/bambooshootItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bambooshootseedItem/0.png b/front/public/images/large/harvestcraft/bambooshootseedItem/0.png deleted file mode 100644 index 058eb0cdaf..0000000000 Binary files a/front/public/images/large/harvestcraft/bambooshootseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bamboosteamedriceItem/0.png b/front/public/images/large/harvestcraft/bamboosteamedriceItem/0.png deleted file mode 100644 index ba30679556..0000000000 Binary files a/front/public/images/large/harvestcraft/bamboosteamedriceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bananaItem/0.png b/front/public/images/large/harvestcraft/bananaItem/0.png deleted file mode 100644 index a1686046d6..0000000000 Binary files a/front/public/images/large/harvestcraft/bananaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bananajuiceItem/0.png b/front/public/images/large/harvestcraft/bananajuiceItem/0.png deleted file mode 100644 index 0946abbafd..0000000000 Binary files a/front/public/images/large/harvestcraft/bananajuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bananamilkshakeItem/0.png b/front/public/images/large/harvestcraft/bananamilkshakeItem/0.png deleted file mode 100644 index 33adb6c90b..0000000000 Binary files a/front/public/images/large/harvestcraft/bananamilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/banananutbreadItem/0.png b/front/public/images/large/harvestcraft/banananutbreadItem/0.png deleted file mode 100644 index 10baf10fde..0000000000 Binary files a/front/public/images/large/harvestcraft/banananutbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bananasmoothieItem/0.png b/front/public/images/large/harvestcraft/bananasmoothieItem/0.png deleted file mode 100644 index b8723a1732..0000000000 Binary files a/front/public/images/large/harvestcraft/bananasmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bananasplitItem/0.png b/front/public/images/large/harvestcraft/bananasplitItem/0.png deleted file mode 100644 index 5003ef9e24..0000000000 Binary files a/front/public/images/large/harvestcraft/bananasplitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bananayogurtItem/0.png b/front/public/images/large/harvestcraft/bananayogurtItem/0.png deleted file mode 100644 index 1f07a262a3..0000000000 Binary files a/front/public/images/large/harvestcraft/bananayogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bangersandmashItem/0.png b/front/public/images/large/harvestcraft/bangersandmashItem/0.png deleted file mode 100644 index 8485c88c4b..0000000000 Binary files a/front/public/images/large/harvestcraft/bangersandmashItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/barleyItem/0.png b/front/public/images/large/harvestcraft/barleyItem/0.png deleted file mode 100644 index 25b924c219..0000000000 Binary files a/front/public/images/large/harvestcraft/barleyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/barleyseedItem/0.png b/front/public/images/large/harvestcraft/barleyseedItem/0.png deleted file mode 100644 index ac0fe24ccd..0000000000 Binary files a/front/public/images/large/harvestcraft/barleyseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bassrawItem/0.png b/front/public/images/large/harvestcraft/bassrawItem/0.png deleted file mode 100644 index ebd6e4e132..0000000000 Binary files a/front/public/images/large/harvestcraft/bassrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/batterItem/0.png b/front/public/images/large/harvestcraft/batterItem/0.png deleted file mode 100644 index 7c6dc9b723..0000000000 Binary files a/front/public/images/large/harvestcraft/batterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/batteredsausageItem/0.png b/front/public/images/large/harvestcraft/batteredsausageItem/0.png deleted file mode 100644 index 094de7d732..0000000000 Binary files a/front/public/images/large/harvestcraft/batteredsausageItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bbqpulledporkItem/0.png b/front/public/images/large/harvestcraft/bbqpulledporkItem/0.png deleted file mode 100644 index 107c4e851d..0000000000 Binary files a/front/public/images/large/harvestcraft/bbqpulledporkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beanItem/0.png b/front/public/images/large/harvestcraft/beanItem/0.png deleted file mode 100644 index 55517d1eb0..0000000000 Binary files a/front/public/images/large/harvestcraft/beanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beanburritoItem/0.png b/front/public/images/large/harvestcraft/beanburritoItem/0.png deleted file mode 100644 index c7acaf3cde..0000000000 Binary files a/front/public/images/large/harvestcraft/beanburritoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beansandriceItem/0.png b/front/public/images/large/harvestcraft/beansandriceItem/0.png deleted file mode 100644 index cd0e33b0ec..0000000000 Binary files a/front/public/images/large/harvestcraft/beansandriceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beanseedItem/0.png b/front/public/images/large/harvestcraft/beanseedItem/0.png deleted file mode 100644 index 2c12045b3b..0000000000 Binary files a/front/public/images/large/harvestcraft/beanseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beansontoastItem/0.png b/front/public/images/large/harvestcraft/beansontoastItem/0.png deleted file mode 100644 index c44419e4de..0000000000 Binary files a/front/public/images/large/harvestcraft/beansontoastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beefjerkyItem/0.png b/front/public/images/large/harvestcraft/beefjerkyItem/0.png deleted file mode 100644 index e80aef9e0e..0000000000 Binary files a/front/public/images/large/harvestcraft/beefjerkyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beefwellingtonItem/0.png b/front/public/images/large/harvestcraft/beefwellingtonItem/0.png deleted file mode 100644 index 9f5047b0cc..0000000000 Binary files a/front/public/images/large/harvestcraft/beefwellingtonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beehive/0.png b/front/public/images/large/harvestcraft/beehive/0.png deleted file mode 100644 index 3063f425f9..0000000000 Binary files a/front/public/images/large/harvestcraft/beehive/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beeswaxItem/0.png b/front/public/images/large/harvestcraft/beeswaxItem/0.png deleted file mode 100644 index 3e4a94664e..0000000000 Binary files a/front/public/images/large/harvestcraft/beeswaxItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beetItem/0.png b/front/public/images/large/harvestcraft/beetItem/0.png deleted file mode 100644 index d3268d1489..0000000000 Binary files a/front/public/images/large/harvestcraft/beetItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beetburgerItem/0.png b/front/public/images/large/harvestcraft/beetburgerItem/0.png deleted file mode 100644 index 4595658148..0000000000 Binary files a/front/public/images/large/harvestcraft/beetburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beetsaladItem/0.png b/front/public/images/large/harvestcraft/beetsaladItem/0.png deleted file mode 100644 index 8d90b93247..0000000000 Binary files a/front/public/images/large/harvestcraft/beetsaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beetseedItem/0.png b/front/public/images/large/harvestcraft/beetseedItem/0.png deleted file mode 100644 index 0886611538..0000000000 Binary files a/front/public/images/large/harvestcraft/beetseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/beetsoupItem/0.png b/front/public/images/large/harvestcraft/beetsoupItem/0.png deleted file mode 100644 index 82adda6ce3..0000000000 Binary files a/front/public/images/large/harvestcraft/beetsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bellpepperItem/0.png b/front/public/images/large/harvestcraft/bellpepperItem/0.png deleted file mode 100644 index 84fbcad760..0000000000 Binary files a/front/public/images/large/harvestcraft/bellpepperItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bellpepperseedItem/0.png b/front/public/images/large/harvestcraft/bellpepperseedItem/0.png deleted file mode 100644 index ca4f7ea533..0000000000 Binary files a/front/public/images/large/harvestcraft/bellpepperseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/berrygarden/0.png b/front/public/images/large/harvestcraft/berrygarden/0.png deleted file mode 100644 index 0af74caed3..0000000000 Binary files a/front/public/images/large/harvestcraft/berrygarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/biscuitItem/0.png b/front/public/images/large/harvestcraft/biscuitItem/0.png deleted file mode 100644 index 11aa8ccee3..0000000000 Binary files a/front/public/images/large/harvestcraft/biscuitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberryItem/0.png b/front/public/images/large/harvestcraft/blackberryItem/0.png deleted file mode 100644 index 2456a03364..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberrycobblerItem/0.png b/front/public/images/large/harvestcraft/blackberrycobblerItem/0.png deleted file mode 100644 index c6aeeb8243..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberrycobblerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberryjellyItem/0.png b/front/public/images/large/harvestcraft/blackberryjellyItem/0.png deleted file mode 100644 index f1ff148620..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberryjellysandwichItem/0.png b/front/public/images/large/harvestcraft/blackberryjellysandwichItem/0.png deleted file mode 100644 index 2c1f75884a..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberryjuiceItem/0.png b/front/public/images/large/harvestcraft/blackberryjuiceItem/0.png deleted file mode 100644 index df675b7627..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberryseedItem/0.png b/front/public/images/large/harvestcraft/blackberryseedItem/0.png deleted file mode 100644 index a170c670bb..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberrysmoothieItem/0.png b/front/public/images/large/harvestcraft/blackberrysmoothieItem/0.png deleted file mode 100644 index e128b217e8..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackberryyogurtItem/0.png b/front/public/images/large/harvestcraft/blackberryyogurtItem/0.png deleted file mode 100644 index b44924dbbd..0000000000 Binary files a/front/public/images/large/harvestcraft/blackberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blackpepperItem/0.png b/front/public/images/large/harvestcraft/blackpepperItem/0.png deleted file mode 100644 index b738b0f0ee..0000000000 Binary files a/front/public/images/large/harvestcraft/blackpepperItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bltItem/0.png b/front/public/images/large/harvestcraft/bltItem/0.png deleted file mode 100644 index 0a5c33f480..0000000000 Binary files a/front/public/images/large/harvestcraft/bltItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberryItem/0.png b/front/public/images/large/harvestcraft/blueberryItem/0.png deleted file mode 100644 index cc468b6edd..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberryjellyItem/0.png b/front/public/images/large/harvestcraft/blueberryjellyItem/0.png deleted file mode 100644 index 60e2a3cf01..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberryjellysandwichItem/0.png b/front/public/images/large/harvestcraft/blueberryjellysandwichItem/0.png deleted file mode 100644 index e5ee572361..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberryjuiceItem/0.png b/front/public/images/large/harvestcraft/blueberryjuiceItem/0.png deleted file mode 100644 index 36889364ee..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberrymuffinItem/0.png b/front/public/images/large/harvestcraft/blueberrymuffinItem/0.png deleted file mode 100644 index 39583bad19..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberrymuffinItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberrypancakesItem/0.png b/front/public/images/large/harvestcraft/blueberrypancakesItem/0.png deleted file mode 100644 index 336f3be28a..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberrypancakesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberrypieItem/0.png b/front/public/images/large/harvestcraft/blueberrypieItem/0.png deleted file mode 100644 index ef60fca9c6..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberryseedItem/0.png b/front/public/images/large/harvestcraft/blueberryseedItem/0.png deleted file mode 100644 index ac6a66a3f5..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberrysmoothieItem/0.png b/front/public/images/large/harvestcraft/blueberrysmoothieItem/0.png deleted file mode 100644 index ee6b8d8954..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/blueberryyogurtItem/0.png b/front/public/images/large/harvestcraft/blueberryyogurtItem/0.png deleted file mode 100644 index db9bb0bb4c..0000000000 Binary files a/front/public/images/large/harvestcraft/blueberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/boiledeggItem/0.png b/front/public/images/large/harvestcraft/boiledeggItem/0.png deleted file mode 100644 index dd6278effb..0000000000 Binary files a/front/public/images/large/harvestcraft/boiledeggItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/braisedonionsItem/0.png b/front/public/images/large/harvestcraft/braisedonionsItem/0.png deleted file mode 100644 index ad5c6afa3e..0000000000 Binary files a/front/public/images/large/harvestcraft/braisedonionsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/breadedporkchopItem/0.png b/front/public/images/large/harvestcraft/breadedporkchopItem/0.png deleted file mode 100644 index 1708f38474..0000000000 Binary files a/front/public/images/large/harvestcraft/breadedporkchopItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/broccoliItem/0.png b/front/public/images/large/harvestcraft/broccoliItem/0.png deleted file mode 100644 index ae64c1ca8f..0000000000 Binary files a/front/public/images/large/harvestcraft/broccoliItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/broccolimacItem/0.png b/front/public/images/large/harvestcraft/broccolimacItem/0.png deleted file mode 100644 index dff1fdd1a5..0000000000 Binary files a/front/public/images/large/harvestcraft/broccolimacItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/broccolindipItem/0.png b/front/public/images/large/harvestcraft/broccolindipItem/0.png deleted file mode 100644 index fae2356468..0000000000 Binary files a/front/public/images/large/harvestcraft/broccolindipItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/broccoliseedItem/0.png b/front/public/images/large/harvestcraft/broccoliseedItem/0.png deleted file mode 100644 index f58e66b98d..0000000000 Binary files a/front/public/images/large/harvestcraft/broccoliseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/brownieItem/0.png b/front/public/images/large/harvestcraft/brownieItem/0.png deleted file mode 100644 index ff11edcb69..0000000000 Binary files a/front/public/images/large/harvestcraft/brownieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/brusselsproutItem/0.png b/front/public/images/large/harvestcraft/brusselsproutItem/0.png deleted file mode 100644 index b2e4723b81..0000000000 Binary files a/front/public/images/large/harvestcraft/brusselsproutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/brusselsproutseedItem/0.png b/front/public/images/large/harvestcraft/brusselsproutseedItem/0.png deleted file mode 100644 index 4934b8ee8c..0000000000 Binary files a/front/public/images/large/harvestcraft/brusselsproutseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/bubblywaterItem/0.png b/front/public/images/large/harvestcraft/bubblywaterItem/0.png deleted file mode 100644 index 848f4944ed..0000000000 Binary files a/front/public/images/large/harvestcraft/bubblywaterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/butterItem/0.png b/front/public/images/large/harvestcraft/butterItem/0.png deleted file mode 100644 index 08987bda78..0000000000 Binary files a/front/public/images/large/harvestcraft/butterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/butteredpotatoItem/0.png b/front/public/images/large/harvestcraft/butteredpotatoItem/0.png deleted file mode 100644 index d135b94dbc..0000000000 Binary files a/front/public/images/large/harvestcraft/butteredpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cabbageItem/0.png b/front/public/images/large/harvestcraft/cabbageItem/0.png deleted file mode 100644 index ec7e2c2dc4..0000000000 Binary files a/front/public/images/large/harvestcraft/cabbageItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cabbageseedItem/0.png b/front/public/images/large/harvestcraft/cabbageseedItem/0.png deleted file mode 100644 index 5ffe0335b0..0000000000 Binary files a/front/public/images/large/harvestcraft/cabbageseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cactusfruitItem/0.png b/front/public/images/large/harvestcraft/cactusfruitItem/0.png deleted file mode 100644 index 46eb1b27e8..0000000000 Binary files a/front/public/images/large/harvestcraft/cactusfruitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cactusfruitjuiceItem/0.png b/front/public/images/large/harvestcraft/cactusfruitjuiceItem/0.png deleted file mode 100644 index e84de3c462..0000000000 Binary files a/front/public/images/large/harvestcraft/cactusfruitjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cactusfruitseedItem/0.png b/front/public/images/large/harvestcraft/cactusfruitseedItem/0.png deleted file mode 100644 index fe2be9157d..0000000000 Binary files a/front/public/images/large/harvestcraft/cactusfruitseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cactussoupItem/0.png b/front/public/images/large/harvestcraft/cactussoupItem/0.png deleted file mode 100644 index c4aa91f287..0000000000 Binary files a/front/public/images/large/harvestcraft/cactussoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/calamaricookedItem/0.png b/front/public/images/large/harvestcraft/calamaricookedItem/0.png deleted file mode 100644 index 6414982a5f..0000000000 Binary files a/front/public/images/large/harvestcraft/calamaricookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/calamarirawItem/0.png b/front/public/images/large/harvestcraft/calamarirawItem/0.png deleted file mode 100644 index c5138bb2ca..0000000000 Binary files a/front/public/images/large/harvestcraft/calamarirawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/californiarollItem/0.png b/front/public/images/large/harvestcraft/californiarollItem/0.png deleted file mode 100644 index ec70673ff7..0000000000 Binary files a/front/public/images/large/harvestcraft/californiarollItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/candiedgingerItem/0.png b/front/public/images/large/harvestcraft/candiedgingerItem/0.png deleted file mode 100644 index 6bd88646f7..0000000000 Binary files a/front/public/images/large/harvestcraft/candiedgingerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/candiedlemonItem/0.png b/front/public/images/large/harvestcraft/candiedlemonItem/0.png deleted file mode 100644 index b60304a54b..0000000000 Binary files a/front/public/images/large/harvestcraft/candiedlemonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/candiedsweetpotatoesItem/0.png b/front/public/images/large/harvestcraft/candiedsweetpotatoesItem/0.png deleted file mode 100644 index 65116391f5..0000000000 Binary files a/front/public/images/large/harvestcraft/candiedsweetpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/candiedwalnutsItem/0.png b/front/public/images/large/harvestcraft/candiedwalnutsItem/0.png deleted file mode 100644 index efde8baa5a..0000000000 Binary files a/front/public/images/large/harvestcraft/candiedwalnutsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/candleberryItem/0.png b/front/public/images/large/harvestcraft/candleberryItem/0.png deleted file mode 100644 index 6db54ae7ee..0000000000 Binary files a/front/public/images/large/harvestcraft/candleberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/candleberryseedItem/0.png b/front/public/images/large/harvestcraft/candleberryseedItem/0.png deleted file mode 100644 index 0016b7b27f..0000000000 Binary files a/front/public/images/large/harvestcraft/candleberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cantaloupeItem/0.png b/front/public/images/large/harvestcraft/cantaloupeItem/0.png deleted file mode 100644 index 10f62a206c..0000000000 Binary files a/front/public/images/large/harvestcraft/cantaloupeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cantaloupeseedItem/0.png b/front/public/images/large/harvestcraft/cantaloupeseedItem/0.png deleted file mode 100644 index c9f17242c8..0000000000 Binary files a/front/public/images/large/harvestcraft/cantaloupeseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/caramelItem/0.png b/front/public/images/large/harvestcraft/caramelItem/0.png deleted file mode 100644 index 8956ef89ee..0000000000 Binary files a/front/public/images/large/harvestcraft/caramelItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/caramelappleItem/0.png b/front/public/images/large/harvestcraft/caramelappleItem/0.png deleted file mode 100644 index c9cb41fb59..0000000000 Binary files a/front/public/images/large/harvestcraft/caramelappleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/caramelicecreamItem/0.png b/front/public/images/large/harvestcraft/caramelicecreamItem/0.png deleted file mode 100644 index dcd3e5a81b..0000000000 Binary files a/front/public/images/large/harvestcraft/caramelicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/carprawItem/0.png b/front/public/images/large/harvestcraft/carprawItem/0.png deleted file mode 100644 index 520d3a6a06..0000000000 Binary files a/front/public/images/large/harvestcraft/carprawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/carrotcakeItem/0.png b/front/public/images/large/harvestcraft/carrotcakeItem/0.png deleted file mode 100644 index 7dd6c85769..0000000000 Binary files a/front/public/images/large/harvestcraft/carrotcakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/carrotjuiceItem/0.png b/front/public/images/large/harvestcraft/carrotjuiceItem/0.png deleted file mode 100644 index 03143fa8a1..0000000000 Binary files a/front/public/images/large/harvestcraft/carrotjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/carrotsoupItem/0.png b/front/public/images/large/harvestcraft/carrotsoupItem/0.png deleted file mode 100644 index 31a2b417f9..0000000000 Binary files a/front/public/images/large/harvestcraft/carrotsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cashewItem/0.png b/front/public/images/large/harvestcraft/cashewItem/0.png deleted file mode 100644 index 2701d7e4fd..0000000000 Binary files a/front/public/images/large/harvestcraft/cashewItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cashewbutterItem/0.png b/front/public/images/large/harvestcraft/cashewbutterItem/0.png deleted file mode 100644 index db1ce41019..0000000000 Binary files a/front/public/images/large/harvestcraft/cashewbutterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cashewchickenItem/0.png b/front/public/images/large/harvestcraft/cashewchickenItem/0.png deleted file mode 100644 index a4c71d92e7..0000000000 Binary files a/front/public/images/large/harvestcraft/cashewchickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/catfishrawItem/0.png b/front/public/images/large/harvestcraft/catfishrawItem/0.png deleted file mode 100644 index 04ea684c9a..0000000000 Binary files a/front/public/images/large/harvestcraft/catfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cauliflowerItem/0.png b/front/public/images/large/harvestcraft/cauliflowerItem/0.png deleted file mode 100644 index cf96643854..0000000000 Binary files a/front/public/images/large/harvestcraft/cauliflowerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cauliflowerseedItem/0.png b/front/public/images/large/harvestcraft/cauliflowerseedItem/0.png deleted file mode 100644 index 70f718aa61..0000000000 Binary files a/front/public/images/large/harvestcraft/cauliflowerseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ceasarsaladItem/0.png b/front/public/images/large/harvestcraft/ceasarsaladItem/0.png deleted file mode 100644 index a027947885..0000000000 Binary files a/front/public/images/large/harvestcraft/ceasarsaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/celeryItem/0.png b/front/public/images/large/harvestcraft/celeryItem/0.png deleted file mode 100644 index 91175550fb..0000000000 Binary files a/front/public/images/large/harvestcraft/celeryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/celeryandpeanutbutterItem/0.png b/front/public/images/large/harvestcraft/celeryandpeanutbutterItem/0.png deleted file mode 100644 index 4c4842e5c3..0000000000 Binary files a/front/public/images/large/harvestcraft/celeryandpeanutbutterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/celeryseedItem/0.png b/front/public/images/large/harvestcraft/celeryseedItem/0.png deleted file mode 100644 index 9a0c2ff8af..0000000000 Binary files a/front/public/images/large/harvestcraft/celeryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/celerysoupItem/0.png b/front/public/images/large/harvestcraft/celerysoupItem/0.png deleted file mode 100644 index 50838e1b63..0000000000 Binary files a/front/public/images/large/harvestcraft/celerysoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chaiteaItem/0.png b/front/public/images/large/harvestcraft/chaiteaItem/0.png deleted file mode 100644 index 18401a5bd1..0000000000 Binary files a/front/public/images/large/harvestcraft/chaiteaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chaoscookieItem/0.png b/front/public/images/large/harvestcraft/chaoscookieItem/0.png deleted file mode 100644 index 5862874fd1..0000000000 Binary files a/front/public/images/large/harvestcraft/chaoscookieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/charrrawItem/0.png b/front/public/images/large/harvestcraft/charrrawItem/0.png deleted file mode 100644 index 145e924ef0..0000000000 Binary files a/front/public/images/large/harvestcraft/charrrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cheeseItem/0.png b/front/public/images/large/harvestcraft/cheeseItem/0.png deleted file mode 100644 index 951a0a50d0..0000000000 Binary files a/front/public/images/large/harvestcraft/cheeseItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cheeseburgerItem/0.png b/front/public/images/large/harvestcraft/cheeseburgerItem/0.png deleted file mode 100644 index d6a4980b83..0000000000 Binary files a/front/public/images/large/harvestcraft/cheeseburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cheesecakeItem/0.png b/front/public/images/large/harvestcraft/cheesecakeItem/0.png deleted file mode 100644 index fb03226b95..0000000000 Binary files a/front/public/images/large/harvestcraft/cheesecakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cheeseontoastItem/0.png b/front/public/images/large/harvestcraft/cheeseontoastItem/0.png deleted file mode 100644 index 1e739114f0..0000000000 Binary files a/front/public/images/large/harvestcraft/cheeseontoastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherryItem/0.png b/front/public/images/large/harvestcraft/cherryItem/0.png deleted file mode 100644 index 78a8859120..0000000000 Binary files a/front/public/images/large/harvestcraft/cherryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherrycheesecakeItem/0.png b/front/public/images/large/harvestcraft/cherrycheesecakeItem/0.png deleted file mode 100644 index 4cc5cbea04..0000000000 Binary files a/front/public/images/large/harvestcraft/cherrycheesecakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherrycoconutchocolatebarItem/0.png b/front/public/images/large/harvestcraft/cherrycoconutchocolatebarItem/0.png deleted file mode 100644 index 7c44fbe37d..0000000000 Binary files a/front/public/images/large/harvestcraft/cherrycoconutchocolatebarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherryicecreamItem/0.png b/front/public/images/large/harvestcraft/cherryicecreamItem/0.png deleted file mode 100644 index 6d1dd2f8f4..0000000000 Binary files a/front/public/images/large/harvestcraft/cherryicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherryjellyItem/0.png b/front/public/images/large/harvestcraft/cherryjellyItem/0.png deleted file mode 100644 index 947b64c433..0000000000 Binary files a/front/public/images/large/harvestcraft/cherryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherryjellysandwichItem/0.png b/front/public/images/large/harvestcraft/cherryjellysandwichItem/0.png deleted file mode 100644 index 8f776ed1cb..0000000000 Binary files a/front/public/images/large/harvestcraft/cherryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherryjuiceItem/0.png b/front/public/images/large/harvestcraft/cherryjuiceItem/0.png deleted file mode 100644 index 89394fdc1f..0000000000 Binary files a/front/public/images/large/harvestcraft/cherryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherrypieItem/0.png b/front/public/images/large/harvestcraft/cherrypieItem/0.png deleted file mode 100644 index 1e2cfc7895..0000000000 Binary files a/front/public/images/large/harvestcraft/cherrypieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherrysmoothieItem/0.png b/front/public/images/large/harvestcraft/cherrysmoothieItem/0.png deleted file mode 100644 index 7677073039..0000000000 Binary files a/front/public/images/large/harvestcraft/cherrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherrysodaItem/0.png b/front/public/images/large/harvestcraft/cherrysodaItem/0.png deleted file mode 100644 index 7593b322f2..0000000000 Binary files a/front/public/images/large/harvestcraft/cherrysodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cherryyogurtItem/0.png b/front/public/images/large/harvestcraft/cherryyogurtItem/0.png deleted file mode 100644 index fc5ba2cc68..0000000000 Binary files a/front/public/images/large/harvestcraft/cherryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chestnutItem/0.png b/front/public/images/large/harvestcraft/chestnutItem/0.png deleted file mode 100644 index e0099a7031..0000000000 Binary files a/front/public/images/large/harvestcraft/chestnutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chestnutbutterItem/0.png b/front/public/images/large/harvestcraft/chestnutbutterItem/0.png deleted file mode 100644 index c4bee1ef6c..0000000000 Binary files a/front/public/images/large/harvestcraft/chestnutbutterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chickencelerycasseroleItem/0.png b/front/public/images/large/harvestcraft/chickencelerycasseroleItem/0.png deleted file mode 100644 index 1a20984c7d..0000000000 Binary files a/front/public/images/large/harvestcraft/chickencelerycasseroleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chickencurryItem/0.png b/front/public/images/large/harvestcraft/chickencurryItem/0.png deleted file mode 100644 index 2d5f7b2bd6..0000000000 Binary files a/front/public/images/large/harvestcraft/chickencurryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chickengumboItem/0.png b/front/public/images/large/harvestcraft/chickengumboItem/0.png deleted file mode 100644 index 6c8589bcfc..0000000000 Binary files a/front/public/images/large/harvestcraft/chickengumboItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chickennoodlesoupItem/0.png b/front/public/images/large/harvestcraft/chickennoodlesoupItem/0.png deleted file mode 100644 index e14d432b6c..0000000000 Binary files a/front/public/images/large/harvestcraft/chickennoodlesoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chickenparmasanItem/0.png b/front/public/images/large/harvestcraft/chickenparmasanItem/0.png deleted file mode 100644 index a6b52b6db0..0000000000 Binary files a/front/public/images/large/harvestcraft/chickenparmasanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chickenpotpieItem/0.png b/front/public/images/large/harvestcraft/chickenpotpieItem/0.png deleted file mode 100644 index ef412a410f..0000000000 Binary files a/front/public/images/large/harvestcraft/chickenpotpieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chickensandwichItem/0.png b/front/public/images/large/harvestcraft/chickensandwichItem/0.png deleted file mode 100644 index 1737f32792..0000000000 Binary files a/front/public/images/large/harvestcraft/chickensandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chikorollItem/0.png b/front/public/images/large/harvestcraft/chikorollItem/0.png deleted file mode 100644 index e2bbee8856..0000000000 Binary files a/front/public/images/large/harvestcraft/chikorollItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chiliItem/0.png b/front/public/images/large/harvestcraft/chiliItem/0.png deleted file mode 100644 index 0b3b0d7b26..0000000000 Binary files a/front/public/images/large/harvestcraft/chiliItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chilichocolateItem/0.png b/front/public/images/large/harvestcraft/chilichocolateItem/0.png deleted file mode 100644 index af022c6717..0000000000 Binary files a/front/public/images/large/harvestcraft/chilichocolateItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chilipepperItem/0.png b/front/public/images/large/harvestcraft/chilipepperItem/0.png deleted file mode 100644 index 30f98a4ec0..0000000000 Binary files a/front/public/images/large/harvestcraft/chilipepperItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chilipepperseedItem/0.png b/front/public/images/large/harvestcraft/chilipepperseedItem/0.png deleted file mode 100644 index f7575cc0b6..0000000000 Binary files a/front/public/images/large/harvestcraft/chilipepperseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chilipoppersItem/0.png b/front/public/images/large/harvestcraft/chilipoppersItem/0.png deleted file mode 100644 index aec41f747f..0000000000 Binary files a/front/public/images/large/harvestcraft/chilipoppersItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatebaconItem/0.png b/front/public/images/large/harvestcraft/chocolatebaconItem/0.png deleted file mode 100644 index 23e337e750..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatebaconItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatebarItem/0.png b/front/public/images/large/harvestcraft/chocolatebarItem/0.png deleted file mode 100644 index 155f17641d..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatebarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatecaramelfudgeItem/0.png b/front/public/images/large/harvestcraft/chocolatecaramelfudgeItem/0.png deleted file mode 100644 index 10f5587a65..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatecaramelfudgeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatecherryItem/0.png b/front/public/images/large/harvestcraft/chocolatecherryItem/0.png deleted file mode 100644 index 68f8bb0776..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatecherryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatedonutItem/0.png b/front/public/images/large/harvestcraft/chocolatedonutItem/0.png deleted file mode 100644 index 5d32668e95..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatedonutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolateicecreamItem/0.png b/front/public/images/large/harvestcraft/chocolateicecreamItem/0.png deleted file mode 100644 index 17c0936075..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolateicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatemilkItem/0.png b/front/public/images/large/harvestcraft/chocolatemilkItem/0.png deleted file mode 100644 index 7914d10f8f..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatemilkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatemilkshakeItem/0.png b/front/public/images/large/harvestcraft/chocolatemilkshakeItem/0.png deleted file mode 100644 index 21e7c75be3..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatemilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolaterollItem/0.png b/front/public/images/large/harvestcraft/chocolaterollItem/0.png deleted file mode 100644 index afc3cd23cf..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolaterollItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatesprinklecakeItem/0.png b/front/public/images/large/harvestcraft/chocolatesprinklecakeItem/0.png deleted file mode 100644 index 5e5762519b..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatesprinklecakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolatestrawberryItem/0.png b/front/public/images/large/harvestcraft/chocolatestrawberryItem/0.png deleted file mode 100644 index c0ee4cd328..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolatestrawberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chocolateyogurtItem/0.png b/front/public/images/large/harvestcraft/chocolateyogurtItem/0.png deleted file mode 100644 index 90dfb02f1a..0000000000 Binary files a/front/public/images/large/harvestcraft/chocolateyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/chorizoItem/0.png b/front/public/images/large/harvestcraft/chorizoItem/0.png deleted file mode 100644 index a5e6604dea..0000000000 Binary files a/front/public/images/large/harvestcraft/chorizoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/churn/0.png b/front/public/images/large/harvestcraft/churn/0.png deleted file mode 100644 index 7ffbcf0f81..0000000000 Binary files a/front/public/images/large/harvestcraft/churn/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/churnon/0.png b/front/public/images/large/harvestcraft/churnon/0.png deleted file mode 100644 index 7ffbcf0f81..0000000000 Binary files a/front/public/images/large/harvestcraft/churnon/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cinnamonItem/0.png b/front/public/images/large/harvestcraft/cinnamonItem/0.png deleted file mode 100644 index 5ca29a7077..0000000000 Binary files a/front/public/images/large/harvestcraft/cinnamonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cinnamonappleoatmealItem/0.png b/front/public/images/large/harvestcraft/cinnamonappleoatmealItem/0.png deleted file mode 100644 index 37f4b85c6b..0000000000 Binary files a/front/public/images/large/harvestcraft/cinnamonappleoatmealItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cinnamonrollItem/0.png b/front/public/images/large/harvestcraft/cinnamonrollItem/0.png deleted file mode 100644 index a099ce69df..0000000000 Binary files a/front/public/images/large/harvestcraft/cinnamonrollItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cinnamonsugardonutItem/0.png b/front/public/images/large/harvestcraft/cinnamonsugardonutItem/0.png deleted file mode 100644 index 5abc8454c0..0000000000 Binary files a/front/public/images/large/harvestcraft/cinnamonsugardonutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/citrussaladItem/0.png b/front/public/images/large/harvestcraft/citrussaladItem/0.png deleted file mode 100644 index 24f200d308..0000000000 Binary files a/front/public/images/large/harvestcraft/citrussaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/clamcookedItem/0.png b/front/public/images/large/harvestcraft/clamcookedItem/0.png deleted file mode 100644 index eaa563f67d..0000000000 Binary files a/front/public/images/large/harvestcraft/clamcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/clamrawItem/0.png b/front/public/images/large/harvestcraft/clamrawItem/0.png deleted file mode 100644 index 7ecf527c7c..0000000000 Binary files a/front/public/images/large/harvestcraft/clamrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cocoapowderItem/0.png b/front/public/images/large/harvestcraft/cocoapowderItem/0.png deleted file mode 100644 index 049615f085..0000000000 Binary files a/front/public/images/large/harvestcraft/cocoapowderItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coconutItem/0.png b/front/public/images/large/harvestcraft/coconutItem/0.png deleted file mode 100644 index ee8d6b3e09..0000000000 Binary files a/front/public/images/large/harvestcraft/coconutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coconutcreamItem/0.png b/front/public/images/large/harvestcraft/coconutcreamItem/0.png deleted file mode 100644 index a719133deb..0000000000 Binary files a/front/public/images/large/harvestcraft/coconutcreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coconutmilkItem/0.png b/front/public/images/large/harvestcraft/coconutmilkItem/0.png deleted file mode 100644 index 09581ea8df..0000000000 Binary files a/front/public/images/large/harvestcraft/coconutmilkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coconutshrimpItem/0.png b/front/public/images/large/harvestcraft/coconutshrimpItem/0.png deleted file mode 100644 index b91e8fad8a..0000000000 Binary files a/front/public/images/large/harvestcraft/coconutshrimpItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coconutsmoothieItem/0.png b/front/public/images/large/harvestcraft/coconutsmoothieItem/0.png deleted file mode 100644 index 2ea3268b0c..0000000000 Binary files a/front/public/images/large/harvestcraft/coconutsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coconutyogurtItem/0.png b/front/public/images/large/harvestcraft/coconutyogurtItem/0.png deleted file mode 100644 index 15627a2dce..0000000000 Binary files a/front/public/images/large/harvestcraft/coconutyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coffeeItem/0.png b/front/public/images/large/harvestcraft/coffeeItem/0.png deleted file mode 100644 index 1bda201c07..0000000000 Binary files a/front/public/images/large/harvestcraft/coffeeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coffeebeanItem/0.png b/front/public/images/large/harvestcraft/coffeebeanItem/0.png deleted file mode 100644 index 08e3885036..0000000000 Binary files a/front/public/images/large/harvestcraft/coffeebeanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coffeeconlecheItem/0.png b/front/public/images/large/harvestcraft/coffeeconlecheItem/0.png deleted file mode 100644 index 4f7c3ce412..0000000000 Binary files a/front/public/images/large/harvestcraft/coffeeconlecheItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coffeeseedItem/0.png b/front/public/images/large/harvestcraft/coffeeseedItem/0.png deleted file mode 100644 index 47af4f61d5..0000000000 Binary files a/front/public/images/large/harvestcraft/coffeeseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/colasodaItem/0.png b/front/public/images/large/harvestcraft/colasodaItem/0.png deleted file mode 100644 index 058d2e6b9c..0000000000 Binary files a/front/public/images/large/harvestcraft/colasodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coleslawItem/0.png b/front/public/images/large/harvestcraft/coleslawItem/0.png deleted file mode 100644 index 1d3c7a1c42..0000000000 Binary files a/front/public/images/large/harvestcraft/coleslawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/coleslawburgerItem/0.png b/front/public/images/large/harvestcraft/coleslawburgerItem/0.png deleted file mode 100644 index ef4fdc9cf9..0000000000 Binary files a/front/public/images/large/harvestcraft/coleslawburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cornItem/0.png b/front/public/images/large/harvestcraft/cornItem/0.png deleted file mode 100644 index 1773d2b9b7..0000000000 Binary files a/front/public/images/large/harvestcraft/cornItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cornbreadItem/0.png b/front/public/images/large/harvestcraft/cornbreadItem/0.png deleted file mode 100644 index 43762e96f5..0000000000 Binary files a/front/public/images/large/harvestcraft/cornbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cornflakesItem/0.png b/front/public/images/large/harvestcraft/cornflakesItem/0.png deleted file mode 100644 index 034b23d0f0..0000000000 Binary files a/front/public/images/large/harvestcraft/cornflakesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cornishpastyItem/0.png b/front/public/images/large/harvestcraft/cornishpastyItem/0.png deleted file mode 100644 index 22a2fd91b8..0000000000 Binary files a/front/public/images/large/harvestcraft/cornishpastyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cornmealItem/0.png b/front/public/images/large/harvestcraft/cornmealItem/0.png deleted file mode 100644 index 77cef3a260..0000000000 Binary files a/front/public/images/large/harvestcraft/cornmealItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cornonthecobItem/0.png b/front/public/images/large/harvestcraft/cornonthecobItem/0.png deleted file mode 100644 index 1a53420c65..0000000000 Binary files a/front/public/images/large/harvestcraft/cornonthecobItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cornseedItem/0.png b/front/public/images/large/harvestcraft/cornseedItem/0.png deleted file mode 100644 index 5972f7b39b..0000000000 Binary files a/front/public/images/large/harvestcraft/cornseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cottagepieItem/0.png b/front/public/images/large/harvestcraft/cottagepieItem/0.png deleted file mode 100644 index 4102202ea8..0000000000 Binary files a/front/public/images/large/harvestcraft/cottagepieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cottonItem/0.png b/front/public/images/large/harvestcraft/cottonItem/0.png deleted file mode 100644 index 6594534a07..0000000000 Binary files a/front/public/images/large/harvestcraft/cottonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cottonseedItem/0.png b/front/public/images/large/harvestcraft/cottonseedItem/0.png deleted file mode 100644 index 2d7ad9f039..0000000000 Binary files a/front/public/images/large/harvestcraft/cottonseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/crabcookedItem/0.png b/front/public/images/large/harvestcraft/crabcookedItem/0.png deleted file mode 100644 index e56118fd06..0000000000 Binary files a/front/public/images/large/harvestcraft/crabcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/crabrawItem/0.png b/front/public/images/large/harvestcraft/crabrawItem/0.png deleted file mode 100644 index 9eb32f65e5..0000000000 Binary files a/front/public/images/large/harvestcraft/crabrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/crackerItem/0.png b/front/public/images/large/harvestcraft/crackerItem/0.png deleted file mode 100644 index 295670bedd..0000000000 Binary files a/front/public/images/large/harvestcraft/crackerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberryItem/0.png b/front/public/images/large/harvestcraft/cranberryItem/0.png deleted file mode 100644 index 64bf020c32..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberrybarItem/0.png b/front/public/images/large/harvestcraft/cranberrybarItem/0.png deleted file mode 100644 index 2628c37092..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberrybarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberryjellyItem/0.png b/front/public/images/large/harvestcraft/cranberryjellyItem/0.png deleted file mode 100644 index 11221e5619..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberryjellysandwichItem/0.png b/front/public/images/large/harvestcraft/cranberryjellysandwichItem/0.png deleted file mode 100644 index d0fa77a0c8..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberryjuiceItem/0.png b/front/public/images/large/harvestcraft/cranberryjuiceItem/0.png deleted file mode 100644 index 3654569f73..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberrysauceItem/0.png b/front/public/images/large/harvestcraft/cranberrysauceItem/0.png deleted file mode 100644 index ddf426c6b9..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberrysauceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberryseedItem/0.png b/front/public/images/large/harvestcraft/cranberryseedItem/0.png deleted file mode 100644 index 26d273c593..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberrysmoothieItem/0.png b/front/public/images/large/harvestcraft/cranberrysmoothieItem/0.png deleted file mode 100644 index 9b0c39a9fb..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cranberryyogurtItem/0.png b/front/public/images/large/harvestcraft/cranberryyogurtItem/0.png deleted file mode 100644 index 7c1fb716c4..0000000000 Binary files a/front/public/images/large/harvestcraft/cranberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/crayfishcookedItem/0.png b/front/public/images/large/harvestcraft/crayfishcookedItem/0.png deleted file mode 100644 index b50f39cf58..0000000000 Binary files a/front/public/images/large/harvestcraft/crayfishcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/crayfishrawItem/0.png b/front/public/images/large/harvestcraft/crayfishrawItem/0.png deleted file mode 100644 index cd8bdfcb31..0000000000 Binary files a/front/public/images/large/harvestcraft/crayfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/creamcookieItem/0.png b/front/public/images/large/harvestcraft/creamcookieItem/0.png deleted file mode 100644 index 0d6d718c99..0000000000 Binary files a/front/public/images/large/harvestcraft/creamcookieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/creamedbroccolisoupItem/0.png b/front/public/images/large/harvestcraft/creamedbroccolisoupItem/0.png deleted file mode 100644 index b409fd7919..0000000000 Binary files a/front/public/images/large/harvestcraft/creamedbroccolisoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/creamedcornItem/0.png b/front/public/images/large/harvestcraft/creamedcornItem/0.png deleted file mode 100644 index 871ecc1122..0000000000 Binary files a/front/public/images/large/harvestcraft/creamedcornItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/creamofavocadosoupItem/0.png b/front/public/images/large/harvestcraft/creamofavocadosoupItem/0.png deleted file mode 100644 index d282a9dbd6..0000000000 Binary files a/front/public/images/large/harvestcraft/creamofavocadosoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/croissantItem/0.png b/front/public/images/large/harvestcraft/croissantItem/0.png deleted file mode 100644 index 5b7eeba21a..0000000000 Binary files a/front/public/images/large/harvestcraft/croissantItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cucumberItem/0.png b/front/public/images/large/harvestcraft/cucumberItem/0.png deleted file mode 100644 index abe7edfffc..0000000000 Binary files a/front/public/images/large/harvestcraft/cucumberItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cucumbersaladItem/0.png b/front/public/images/large/harvestcraft/cucumbersaladItem/0.png deleted file mode 100644 index e85bfb0ceb..0000000000 Binary files a/front/public/images/large/harvestcraft/cucumbersaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cucumberseedItem/0.png b/front/public/images/large/harvestcraft/cucumberseedItem/0.png deleted file mode 100644 index 88a443f598..0000000000 Binary files a/front/public/images/large/harvestcraft/cucumberseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cucumbersoupItem/0.png b/front/public/images/large/harvestcraft/cucumbersoupItem/0.png deleted file mode 100644 index 7799df1aa4..0000000000 Binary files a/front/public/images/large/harvestcraft/cucumbersoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/curryItem/0.png b/front/public/images/large/harvestcraft/curryItem/0.png deleted file mode 100644 index 4bccced3ef..0000000000 Binary files a/front/public/images/large/harvestcraft/curryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/curryleafItem/0.png b/front/public/images/large/harvestcraft/curryleafItem/0.png deleted file mode 100644 index 71dfe4f332..0000000000 Binary files a/front/public/images/large/harvestcraft/curryleafItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/curryleafseedItem/0.png b/front/public/images/large/harvestcraft/curryleafseedItem/0.png deleted file mode 100644 index 959e610db2..0000000000 Binary files a/front/public/images/large/harvestcraft/curryleafseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/currypowderItem/0.png b/front/public/images/large/harvestcraft/currypowderItem/0.png deleted file mode 100644 index b703d4f7af..0000000000 Binary files a/front/public/images/large/harvestcraft/currypowderItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/custardItem/0.png b/front/public/images/large/harvestcraft/custardItem/0.png deleted file mode 100644 index 90424cc469..0000000000 Binary files a/front/public/images/large/harvestcraft/custardItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cuttingboard/0.png b/front/public/images/large/harvestcraft/cuttingboard/0.png deleted file mode 100644 index 1d99f580f1..0000000000 Binary files a/front/public/images/large/harvestcraft/cuttingboard/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/cuttingboardItem/0.png b/front/public/images/large/harvestcraft/cuttingboardItem/0.png deleted file mode 100644 index 740ea3afa8..0000000000 Binary files a/front/public/images/large/harvestcraft/cuttingboardItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/damperItem/0.png b/front/public/images/large/harvestcraft/damperItem/0.png deleted file mode 100644 index ea7de0421a..0000000000 Binary files a/front/public/images/large/harvestcraft/damperItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/dateItem/0.png b/front/public/images/large/harvestcraft/dateItem/0.png deleted file mode 100644 index bf08312a3a..0000000000 Binary files a/front/public/images/large/harvestcraft/dateItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/datenutbreadItem/0.png b/front/public/images/large/harvestcraft/datenutbreadItem/0.png deleted file mode 100644 index 095aca64b2..0000000000 Binary files a/front/public/images/large/harvestcraft/datenutbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/delightedmealItem/0.png b/front/public/images/large/harvestcraft/delightedmealItem/0.png deleted file mode 100644 index 385063e31c..0000000000 Binary files a/front/public/images/large/harvestcraft/delightedmealItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/deluxecheeseburgerItem/0.png b/front/public/images/large/harvestcraft/deluxecheeseburgerItem/0.png deleted file mode 100644 index 259be0aa35..0000000000 Binary files a/front/public/images/large/harvestcraft/deluxecheeseburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/deluxechickencurryItem/0.png b/front/public/images/large/harvestcraft/deluxechickencurryItem/0.png deleted file mode 100644 index d387f92456..0000000000 Binary files a/front/public/images/large/harvestcraft/deluxechickencurryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/desertgarden/0.png b/front/public/images/large/harvestcraft/desertgarden/0.png deleted file mode 100644 index fb57e728c4..0000000000 Binary files a/front/public/images/large/harvestcraft/desertgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/dimsumItem/0.png b/front/public/images/large/harvestcraft/dimsumItem/0.png deleted file mode 100644 index 15cfd13e15..0000000000 Binary files a/front/public/images/large/harvestcraft/dimsumItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/donutItem/0.png b/front/public/images/large/harvestcraft/donutItem/0.png deleted file mode 100644 index 730d9e0715..0000000000 Binary files a/front/public/images/large/harvestcraft/donutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/doughItem/0.png b/front/public/images/large/harvestcraft/doughItem/0.png deleted file mode 100644 index 2f57a63f0f..0000000000 Binary files a/front/public/images/large/harvestcraft/doughItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/dragonfruitItem/0.png b/front/public/images/large/harvestcraft/dragonfruitItem/0.png deleted file mode 100644 index 6c32d56d07..0000000000 Binary files a/front/public/images/large/harvestcraft/dragonfruitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/durianItem/0.png b/front/public/images/large/harvestcraft/durianItem/0.png deleted file mode 100644 index b70940ff5f..0000000000 Binary files a/front/public/images/large/harvestcraft/durianItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ediblerootItem/0.png b/front/public/images/large/harvestcraft/ediblerootItem/0.png deleted file mode 100644 index 0e58056d8f..0000000000 Binary files a/front/public/images/large/harvestcraft/ediblerootItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/eelrawItem/0.png b/front/public/images/large/harvestcraft/eelrawItem/0.png deleted file mode 100644 index 15a272c8aa..0000000000 Binary files a/front/public/images/large/harvestcraft/eelrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/eggnogItem/0.png b/front/public/images/large/harvestcraft/eggnogItem/0.png deleted file mode 100644 index 37b6d324da..0000000000 Binary files a/front/public/images/large/harvestcraft/eggnogItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/eggplantItem/0.png b/front/public/images/large/harvestcraft/eggplantItem/0.png deleted file mode 100644 index 9bf428b848..0000000000 Binary files a/front/public/images/large/harvestcraft/eggplantItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/eggplantparmItem/0.png b/front/public/images/large/harvestcraft/eggplantparmItem/0.png deleted file mode 100644 index e2463053bb..0000000000 Binary files a/front/public/images/large/harvestcraft/eggplantparmItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/eggplantseedItem/0.png b/front/public/images/large/harvestcraft/eggplantseedItem/0.png deleted file mode 100644 index 69b16c781c..0000000000 Binary files a/front/public/images/large/harvestcraft/eggplantseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/eggsaladItem/0.png b/front/public/images/large/harvestcraft/eggsaladItem/0.png deleted file mode 100644 index 7dcad5dfea..0000000000 Binary files a/front/public/images/large/harvestcraft/eggsaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/energydrinkItem/0.png b/front/public/images/large/harvestcraft/energydrinkItem/0.png deleted file mode 100644 index 9adee1b343..0000000000 Binary files a/front/public/images/large/harvestcraft/energydrinkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/epicbaconItem/0.png b/front/public/images/large/harvestcraft/epicbaconItem/0.png deleted file mode 100644 index 35105a5182..0000000000 Binary files a/front/public/images/large/harvestcraft/epicbaconItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/espressoItem/0.png b/front/public/images/large/harvestcraft/espressoItem/0.png deleted file mode 100644 index 47b6235b53..0000000000 Binary files a/front/public/images/large/harvestcraft/espressoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/extremechiliItem/0.png b/front/public/images/large/harvestcraft/extremechiliItem/0.png deleted file mode 100644 index ba001ef29d..0000000000 Binary files a/front/public/images/large/harvestcraft/extremechiliItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fairybreadItem/0.png b/front/public/images/large/harvestcraft/fairybreadItem/0.png deleted file mode 100644 index 3bec3ee9fb..0000000000 Binary files a/front/public/images/large/harvestcraft/fairybreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/figItem/0.png b/front/public/images/large/harvestcraft/figItem/0.png deleted file mode 100644 index 4e1fcabb9a..0000000000 Binary files a/front/public/images/large/harvestcraft/figItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/figbarItem/0.png b/front/public/images/large/harvestcraft/figbarItem/0.png deleted file mode 100644 index dad4095612..0000000000 Binary files a/front/public/images/large/harvestcraft/figbarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/figjellyItem/0.png b/front/public/images/large/harvestcraft/figjellyItem/0.png deleted file mode 100644 index a315ae8861..0000000000 Binary files a/front/public/images/large/harvestcraft/figjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/figjellysandwichItem/0.png b/front/public/images/large/harvestcraft/figjellysandwichItem/0.png deleted file mode 100644 index 225ace2b72..0000000000 Binary files a/front/public/images/large/harvestcraft/figjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/figjuiceItem/0.png b/front/public/images/large/harvestcraft/figjuiceItem/0.png deleted file mode 100644 index 030d84c9b8..0000000000 Binary files a/front/public/images/large/harvestcraft/figjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/figsmoothieItem/0.png b/front/public/images/large/harvestcraft/figsmoothieItem/0.png deleted file mode 100644 index 44a257d5ac..0000000000 Binary files a/front/public/images/large/harvestcraft/figsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/figyogurtItem/0.png b/front/public/images/large/harvestcraft/figyogurtItem/0.png deleted file mode 100644 index 122a0de21d..0000000000 Binary files a/front/public/images/large/harvestcraft/figyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/firmtofuItem/0.png b/front/public/images/large/harvestcraft/firmtofuItem/0.png deleted file mode 100644 index 1050be7e46..0000000000 Binary files a/front/public/images/large/harvestcraft/firmtofuItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishandchipsItem/0.png b/front/public/images/large/harvestcraft/fishandchipsItem/0.png deleted file mode 100644 index 72da5fa905..0000000000 Binary files a/front/public/images/large/harvestcraft/fishandchipsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishdinnerItem/0.png b/front/public/images/large/harvestcraft/fishdinnerItem/0.png deleted file mode 100644 index d0879083d0..0000000000 Binary files a/front/public/images/large/harvestcraft/fishdinnerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishlettucewrapItem/0.png b/front/public/images/large/harvestcraft/fishlettucewrapItem/0.png deleted file mode 100644 index c7f6b0d6f5..0000000000 Binary files a/front/public/images/large/harvestcraft/fishlettucewrapItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishsandwichItem/0.png b/front/public/images/large/harvestcraft/fishsandwichItem/0.png deleted file mode 100644 index 8d60b99de5..0000000000 Binary files a/front/public/images/large/harvestcraft/fishsandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishsticksItem/0.png b/front/public/images/large/harvestcraft/fishsticksItem/0.png deleted file mode 100644 index 9f800314d4..0000000000 Binary files a/front/public/images/large/harvestcraft/fishsticksItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishtacoItem/0.png b/front/public/images/large/harvestcraft/fishtacoItem/0.png deleted file mode 100644 index 6c7e7f0078..0000000000 Binary files a/front/public/images/large/harvestcraft/fishtacoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishtrap/0.png b/front/public/images/large/harvestcraft/fishtrap/0.png deleted file mode 100644 index 79468c3d3b..0000000000 Binary files a/front/public/images/large/harvestcraft/fishtrap/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fishtrapbaitItem/0.png b/front/public/images/large/harvestcraft/fishtrapbaitItem/0.png deleted file mode 100644 index 71a3481540..0000000000 Binary files a/front/public/images/large/harvestcraft/fishtrapbaitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/flourItem/0.png b/front/public/images/large/harvestcraft/flourItem/0.png deleted file mode 100644 index a8d2a4781f..0000000000 Binary files a/front/public/images/large/harvestcraft/flourItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/footlongItem/0.png b/front/public/images/large/harvestcraft/footlongItem/0.png deleted file mode 100644 index 3c04b1be7e..0000000000 Binary files a/front/public/images/large/harvestcraft/footlongItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/frenchtoastItem/0.png b/front/public/images/large/harvestcraft/frenchtoastItem/0.png deleted file mode 100644 index c779f7647b..0000000000 Binary files a/front/public/images/large/harvestcraft/frenchtoastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/freshmilkItem/0.png b/front/public/images/large/harvestcraft/freshmilkItem/0.png deleted file mode 100644 index 59b8756c7d..0000000000 Binary files a/front/public/images/large/harvestcraft/freshmilkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/freshwaterItem/0.png b/front/public/images/large/harvestcraft/freshwaterItem/0.png deleted file mode 100644 index c64042fbfb..0000000000 Binary files a/front/public/images/large/harvestcraft/freshwaterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/friedchickenItem/0.png b/front/public/images/large/harvestcraft/friedchickenItem/0.png deleted file mode 100644 index e83128aa13..0000000000 Binary files a/front/public/images/large/harvestcraft/friedchickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/friedeggItem/0.png b/front/public/images/large/harvestcraft/friedeggItem/0.png deleted file mode 100644 index 476b016f48..0000000000 Binary files a/front/public/images/large/harvestcraft/friedeggItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/friedonionsItem/0.png b/front/public/images/large/harvestcraft/friedonionsItem/0.png deleted file mode 100644 index e0e487c0cc..0000000000 Binary files a/front/public/images/large/harvestcraft/friedonionsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/friedpecanokraItem/0.png b/front/public/images/large/harvestcraft/friedpecanokraItem/0.png deleted file mode 100644 index 927d28bd42..0000000000 Binary files a/front/public/images/large/harvestcraft/friedpecanokraItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/friedriceItem/0.png b/front/public/images/large/harvestcraft/friedriceItem/0.png deleted file mode 100644 index 2070a869c5..0000000000 Binary files a/front/public/images/large/harvestcraft/friedriceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/friesItem/0.png b/front/public/images/large/harvestcraft/friesItem/0.png deleted file mode 100644 index a79134130c..0000000000 Binary files a/front/public/images/large/harvestcraft/friesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/frogcookedItem/0.png b/front/public/images/large/harvestcraft/frogcookedItem/0.png deleted file mode 100644 index 2268273dc6..0000000000 Binary files a/front/public/images/large/harvestcraft/frogcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/frograwItem/0.png b/front/public/images/large/harvestcraft/frograwItem/0.png deleted file mode 100644 index 3236470b55..0000000000 Binary files a/front/public/images/large/harvestcraft/frograwItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/frosteddonutItem/0.png b/front/public/images/large/harvestcraft/frosteddonutItem/0.png deleted file mode 100644 index 9167ac05a3..0000000000 Binary files a/front/public/images/large/harvestcraft/frosteddonutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fruitbaitItem/0.png b/front/public/images/large/harvestcraft/fruitbaitItem/0.png deleted file mode 100644 index ed0d5cb86b..0000000000 Binary files a/front/public/images/large/harvestcraft/fruitbaitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fruitcrumbleItem/0.png b/front/public/images/large/harvestcraft/fruitcrumbleItem/0.png deleted file mode 100644 index f4ed3092ce..0000000000 Binary files a/front/public/images/large/harvestcraft/fruitcrumbleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fruitpunchItem/0.png b/front/public/images/large/harvestcraft/fruitpunchItem/0.png deleted file mode 100644 index 5aa4456364..0000000000 Binary files a/front/public/images/large/harvestcraft/fruitpunchItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/fruitsaladItem/0.png b/front/public/images/large/harvestcraft/fruitsaladItem/0.png deleted file mode 100644 index 704bb293ab..0000000000 Binary files a/front/public/images/large/harvestcraft/fruitsaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/futomakiItem/0.png b/front/public/images/large/harvestcraft/futomakiItem/0.png deleted file mode 100644 index 96b751592b..0000000000 Binary files a/front/public/images/large/harvestcraft/futomakiItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/garammasalaItem/0.png b/front/public/images/large/harvestcraft/garammasalaItem/0.png deleted file mode 100644 index f059c4afa8..0000000000 Binary files a/front/public/images/large/harvestcraft/garammasalaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gardensoupItem/0.png b/front/public/images/large/harvestcraft/gardensoupItem/0.png deleted file mode 100644 index b95b4f6ddc..0000000000 Binary files a/front/public/images/large/harvestcraft/gardensoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/garlicItem/0.png b/front/public/images/large/harvestcraft/garlicItem/0.png deleted file mode 100644 index 4477038ff4..0000000000 Binary files a/front/public/images/large/harvestcraft/garlicItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/garlicbreadItem/0.png b/front/public/images/large/harvestcraft/garlicbreadItem/0.png deleted file mode 100644 index e72cd0e607..0000000000 Binary files a/front/public/images/large/harvestcraft/garlicbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/garlicchickenItem/0.png b/front/public/images/large/harvestcraft/garlicchickenItem/0.png deleted file mode 100644 index ac532c260e..0000000000 Binary files a/front/public/images/large/harvestcraft/garlicchickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/garlicmashedpotatoesItem/0.png b/front/public/images/large/harvestcraft/garlicmashedpotatoesItem/0.png deleted file mode 100644 index fbc4001d1a..0000000000 Binary files a/front/public/images/large/harvestcraft/garlicmashedpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/garlicseedItem/0.png b/front/public/images/large/harvestcraft/garlicseedItem/0.png deleted file mode 100644 index ecf750e494..0000000000 Binary files a/front/public/images/large/harvestcraft/garlicseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/generaltsochickenItem/0.png b/front/public/images/large/harvestcraft/generaltsochickenItem/0.png deleted file mode 100644 index 2af7a7a8b7..0000000000 Binary files a/front/public/images/large/harvestcraft/generaltsochickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gherkinItem/0.png b/front/public/images/large/harvestcraft/gherkinItem/0.png deleted file mode 100644 index 6f185bc6ee..0000000000 Binary files a/front/public/images/large/harvestcraft/gherkinItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gingerItem/0.png b/front/public/images/large/harvestcraft/gingerItem/0.png deleted file mode 100644 index 4c58d8cf53..0000000000 Binary files a/front/public/images/large/harvestcraft/gingerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gingerbreadItem/0.png b/front/public/images/large/harvestcraft/gingerbreadItem/0.png deleted file mode 100644 index 65fa2bdde0..0000000000 Binary files a/front/public/images/large/harvestcraft/gingerbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gingerchickenItem/0.png b/front/public/images/large/harvestcraft/gingerchickenItem/0.png deleted file mode 100644 index af10d0b0a7..0000000000 Binary files a/front/public/images/large/harvestcraft/gingerchickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gingeredrhubarbtartItem/0.png b/front/public/images/large/harvestcraft/gingeredrhubarbtartItem/0.png deleted file mode 100644 index 815eaae1c7..0000000000 Binary files a/front/public/images/large/harvestcraft/gingeredrhubarbtartItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gingerseedItem/0.png b/front/public/images/large/harvestcraft/gingerseedItem/0.png deleted file mode 100644 index 84401a10f2..0000000000 Binary files a/front/public/images/large/harvestcraft/gingerseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gingersnapsItem/0.png b/front/public/images/large/harvestcraft/gingersnapsItem/0.png deleted file mode 100644 index faef2c6107..0000000000 Binary files a/front/public/images/large/harvestcraft/gingersnapsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gingersodaItem/0.png b/front/public/images/large/harvestcraft/gingersodaItem/0.png deleted file mode 100644 index 2bea251de2..0000000000 Binary files a/front/public/images/large/harvestcraft/gingersodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/glazedcarrotsItem/0.png b/front/public/images/large/harvestcraft/glazedcarrotsItem/0.png deleted file mode 100644 index 4d1e9aca3f..0000000000 Binary files a/front/public/images/large/harvestcraft/glazedcarrotsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberryItem/0.png b/front/public/images/large/harvestcraft/gooseberryItem/0.png deleted file mode 100644 index 174ce44625..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberryjellyItem/0.png b/front/public/images/large/harvestcraft/gooseberryjellyItem/0.png deleted file mode 100644 index 6dc2935d58..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberryjellysandwichItem/0.png b/front/public/images/large/harvestcraft/gooseberryjellysandwichItem/0.png deleted file mode 100644 index 66c09b8e58..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberryjuiceItem/0.png b/front/public/images/large/harvestcraft/gooseberryjuiceItem/0.png deleted file mode 100644 index b30164546b..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberrymilkshakeItem/0.png b/front/public/images/large/harvestcraft/gooseberrymilkshakeItem/0.png deleted file mode 100644 index 58e4b2f041..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberrymilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberrypieItem/0.png b/front/public/images/large/harvestcraft/gooseberrypieItem/0.png deleted file mode 100644 index 663ddd3829..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberrysmoothieItem/0.png b/front/public/images/large/harvestcraft/gooseberrysmoothieItem/0.png deleted file mode 100644 index c007f3de88..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gooseberryyogurtItem/0.png b/front/public/images/large/harvestcraft/gooseberryyogurtItem/0.png deleted file mode 100644 index fd2fe66796..0000000000 Binary files a/front/public/images/large/harvestcraft/gooseberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gourdgarden/0.png b/front/public/images/large/harvestcraft/gourdgarden/0.png deleted file mode 100644 index c74d4108e5..0000000000 Binary files a/front/public/images/large/harvestcraft/gourdgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grainbaitItem/0.png b/front/public/images/large/harvestcraft/grainbaitItem/0.png deleted file mode 100644 index 95c96db15a..0000000000 Binary files a/front/public/images/large/harvestcraft/grainbaitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapeItem/0.png b/front/public/images/large/harvestcraft/grapeItem/0.png deleted file mode 100644 index ea5d4679e1..0000000000 Binary files a/front/public/images/large/harvestcraft/grapeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapefruitItem/0.png b/front/public/images/large/harvestcraft/grapefruitItem/0.png deleted file mode 100644 index 989f224070..0000000000 Binary files a/front/public/images/large/harvestcraft/grapefruitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapefruitjellyItem/0.png b/front/public/images/large/harvestcraft/grapefruitjellyItem/0.png deleted file mode 100644 index 26aebabcca..0000000000 Binary files a/front/public/images/large/harvestcraft/grapefruitjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapefruitjellysandwichItem/0.png b/front/public/images/large/harvestcraft/grapefruitjellysandwichItem/0.png deleted file mode 100644 index 5e14e7497e..0000000000 Binary files a/front/public/images/large/harvestcraft/grapefruitjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapefruitjuiceItem/0.png b/front/public/images/large/harvestcraft/grapefruitjuiceItem/0.png deleted file mode 100644 index 045f8e7d5a..0000000000 Binary files a/front/public/images/large/harvestcraft/grapefruitjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapefruitsmoothieItem/0.png b/front/public/images/large/harvestcraft/grapefruitsmoothieItem/0.png deleted file mode 100644 index f4c0c626e6..0000000000 Binary files a/front/public/images/large/harvestcraft/grapefruitsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapefruitsodaItem/0.png b/front/public/images/large/harvestcraft/grapefruitsodaItem/0.png deleted file mode 100644 index 8e44242a00..0000000000 Binary files a/front/public/images/large/harvestcraft/grapefruitsodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapefruityogurtItem/0.png b/front/public/images/large/harvestcraft/grapefruityogurtItem/0.png deleted file mode 100644 index 89897f696c..0000000000 Binary files a/front/public/images/large/harvestcraft/grapefruityogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapejellyItem/0.png b/front/public/images/large/harvestcraft/grapejellyItem/0.png deleted file mode 100644 index 1fd437cbb2..0000000000 Binary files a/front/public/images/large/harvestcraft/grapejellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapejuiceItem/0.png b/front/public/images/large/harvestcraft/grapejuiceItem/0.png deleted file mode 100644 index 031c186036..0000000000 Binary files a/front/public/images/large/harvestcraft/grapejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapesaladItem/0.png b/front/public/images/large/harvestcraft/grapesaladItem/0.png deleted file mode 100644 index 66da65c98b..0000000000 Binary files a/front/public/images/large/harvestcraft/grapesaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapeseedItem/0.png b/front/public/images/large/harvestcraft/grapeseedItem/0.png deleted file mode 100644 index 36b70965f0..0000000000 Binary files a/front/public/images/large/harvestcraft/grapeseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapesmoothieItem/0.png b/front/public/images/large/harvestcraft/grapesmoothieItem/0.png deleted file mode 100644 index 9f7d554804..0000000000 Binary files a/front/public/images/large/harvestcraft/grapesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapesodaItem/0.png b/front/public/images/large/harvestcraft/grapesodaItem/0.png deleted file mode 100644 index 85c52180b1..0000000000 Binary files a/front/public/images/large/harvestcraft/grapesodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grapeyogurtItem/0.png b/front/public/images/large/harvestcraft/grapeyogurtItem/0.png deleted file mode 100644 index 68a393d26a..0000000000 Binary files a/front/public/images/large/harvestcraft/grapeyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grassgarden/0.png b/front/public/images/large/harvestcraft/grassgarden/0.png deleted file mode 100644 index 63cfc6a174..0000000000 Binary files a/front/public/images/large/harvestcraft/grassgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gravyItem/0.png b/front/public/images/large/harvestcraft/gravyItem/0.png deleted file mode 100644 index 02e18ba484..0000000000 Binary files a/front/public/images/large/harvestcraft/gravyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/greenheartfishItem/0.png b/front/public/images/large/harvestcraft/greenheartfishItem/0.png deleted file mode 100644 index 474d53800c..0000000000 Binary files a/front/public/images/large/harvestcraft/greenheartfishItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grilledasparagusItem/0.png b/front/public/images/large/harvestcraft/grilledasparagusItem/0.png deleted file mode 100644 index 8ab0dbda5f..0000000000 Binary files a/front/public/images/large/harvestcraft/grilledasparagusItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grilledcheeseItem/0.png b/front/public/images/large/harvestcraft/grilledcheeseItem/0.png deleted file mode 100644 index 808fa20c12..0000000000 Binary files a/front/public/images/large/harvestcraft/grilledcheeseItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grilledeggplantItem/0.png b/front/public/images/large/harvestcraft/grilledeggplantItem/0.png deleted file mode 100644 index 8f1577418d..0000000000 Binary files a/front/public/images/large/harvestcraft/grilledeggplantItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grilledmushroomItem/0.png b/front/public/images/large/harvestcraft/grilledmushroomItem/0.png deleted file mode 100644 index c756f1f24a..0000000000 Binary files a/front/public/images/large/harvestcraft/grilledmushroomItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grilledskewersItem/0.png b/front/public/images/large/harvestcraft/grilledskewersItem/0.png deleted file mode 100644 index 8b6ce91076..0000000000 Binary files a/front/public/images/large/harvestcraft/grilledskewersItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/groundcinnamonItem/0.png b/front/public/images/large/harvestcraft/groundcinnamonItem/0.png deleted file mode 100644 index 8558312ef3..0000000000 Binary files a/front/public/images/large/harvestcraft/groundcinnamonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/groundgarden/0.png b/front/public/images/large/harvestcraft/groundgarden/0.png deleted file mode 100644 index 0a21f8e9f5..0000000000 Binary files a/front/public/images/large/harvestcraft/groundgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/groundnutmegItem/0.png b/front/public/images/large/harvestcraft/groundnutmegItem/0.png deleted file mode 100644 index 70eb7f0caf..0000000000 Binary files a/front/public/images/large/harvestcraft/groundnutmegItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grouperrawItem/0.png b/front/public/images/large/harvestcraft/grouperrawItem/0.png deleted file mode 100644 index 783c3fc868..0000000000 Binary files a/front/public/images/large/harvestcraft/grouperrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/grubItem/0.png b/front/public/images/large/harvestcraft/grubItem/0.png deleted file mode 100644 index 523e6714fc..0000000000 Binary files a/front/public/images/large/harvestcraft/grubItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/guacamoleItem/0.png b/front/public/images/large/harvestcraft/guacamoleItem/0.png deleted file mode 100644 index 4933106fb9..0000000000 Binary files a/front/public/images/large/harvestcraft/guacamoleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/gummybearsItem/0.png b/front/public/images/large/harvestcraft/gummybearsItem/0.png deleted file mode 100644 index 2d2889cdbc..0000000000 Binary files a/front/public/images/large/harvestcraft/gummybearsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hamburgerItem/0.png b/front/public/images/large/harvestcraft/hamburgerItem/0.png deleted file mode 100644 index 2277b71f14..0000000000 Binary files a/front/public/images/large/harvestcraft/hamburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hamsweetpicklesandwichItem/0.png b/front/public/images/large/harvestcraft/hamsweetpicklesandwichItem/0.png deleted file mode 100644 index 8bd051951f..0000000000 Binary files a/front/public/images/large/harvestcraft/hamsweetpicklesandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hardenedleatherItem/0.png b/front/public/images/large/harvestcraft/hardenedleatherItem/0.png deleted file mode 100644 index 243b941242..0000000000 Binary files a/front/public/images/large/harvestcraft/hardenedleatherItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hardenedleatherbootsItem/0.png b/front/public/images/large/harvestcraft/hardenedleatherbootsItem/0.png deleted file mode 100644 index 243e3d3c1c..0000000000 Binary files a/front/public/images/large/harvestcraft/hardenedleatherbootsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hardenedleatherchestItem/0.png b/front/public/images/large/harvestcraft/hardenedleatherchestItem/0.png deleted file mode 100644 index 5ae813fa4a..0000000000 Binary files a/front/public/images/large/harvestcraft/hardenedleatherchestItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hardenedleatherhelmItem/0.png b/front/public/images/large/harvestcraft/hardenedleatherhelmItem/0.png deleted file mode 100644 index dec181ea78..0000000000 Binary files a/front/public/images/large/harvestcraft/hardenedleatherhelmItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hardenedleatherleggingsItem/0.png b/front/public/images/large/harvestcraft/hardenedleatherleggingsItem/0.png deleted file mode 100644 index 8a9f963d92..0000000000 Binary files a/front/public/images/large/harvestcraft/hardenedleatherleggingsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hashItem/0.png b/front/public/images/large/harvestcraft/hashItem/0.png deleted file mode 100644 index 8a7230a8eb..0000000000 Binary files a/front/public/images/large/harvestcraft/hashItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/heartybreakfastItem/0.png b/front/public/images/large/harvestcraft/heartybreakfastItem/0.png deleted file mode 100644 index ac9f85fbfa..0000000000 Binary files a/front/public/images/large/harvestcraft/heartybreakfastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/heavycreamItem/0.png b/front/public/images/large/harvestcraft/heavycreamItem/0.png deleted file mode 100644 index 8f94483883..0000000000 Binary files a/front/public/images/large/harvestcraft/heavycreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/herbbutterparsnipsItem/0.png b/front/public/images/large/harvestcraft/herbbutterparsnipsItem/0.png deleted file mode 100644 index 88e85f00f9..0000000000 Binary files a/front/public/images/large/harvestcraft/herbbutterparsnipsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/herbgarden/0.png b/front/public/images/large/harvestcraft/herbgarden/0.png deleted file mode 100644 index 97d29c5cfa..0000000000 Binary files a/front/public/images/large/harvestcraft/herbgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/herringrawItem/0.png b/front/public/images/large/harvestcraft/herringrawItem/0.png deleted file mode 100644 index 30430901ad..0000000000 Binary files a/front/public/images/large/harvestcraft/herringrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/holidaycakeItem/0.png b/front/public/images/large/harvestcraft/holidaycakeItem/0.png deleted file mode 100644 index 0929ee4df1..0000000000 Binary files a/front/public/images/large/harvestcraft/holidaycakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/honeyItem/0.png b/front/public/images/large/harvestcraft/honeyItem/0.png deleted file mode 100644 index c5ccd428b1..0000000000 Binary files a/front/public/images/large/harvestcraft/honeyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/honeycombItem/0.png b/front/public/images/large/harvestcraft/honeycombItem/0.png deleted file mode 100644 index bda63e84ec..0000000000 Binary files a/front/public/images/large/harvestcraft/honeycombItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/honeycombchocolatebarItem/0.png b/front/public/images/large/harvestcraft/honeycombchocolatebarItem/0.png deleted file mode 100644 index 80c06f197d..0000000000 Binary files a/front/public/images/large/harvestcraft/honeycombchocolatebarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/honeylemonlambItem/0.png b/front/public/images/large/harvestcraft/honeylemonlambItem/0.png deleted file mode 100644 index affb5c0872..0000000000 Binary files a/front/public/images/large/harvestcraft/honeylemonlambItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/honeysandwichItem/0.png b/front/public/images/large/harvestcraft/honeysandwichItem/0.png deleted file mode 100644 index d98d5a296e..0000000000 Binary files a/front/public/images/large/harvestcraft/honeysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hotchocolateItem/0.png b/front/public/images/large/harvestcraft/hotchocolateItem/0.png deleted file mode 100644 index 85a8596271..0000000000 Binary files a/front/public/images/large/harvestcraft/hotchocolateItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hotdogItem/0.png b/front/public/images/large/harvestcraft/hotdogItem/0.png deleted file mode 100644 index 6b53cbb671..0000000000 Binary files a/front/public/images/large/harvestcraft/hotdogItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hotwingsItem/0.png b/front/public/images/large/harvestcraft/hotwingsItem/0.png deleted file mode 100644 index 84ddbc0c5c..0000000000 Binary files a/front/public/images/large/harvestcraft/hotwingsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/hushpuppiesItem/0.png b/front/public/images/large/harvestcraft/hushpuppiesItem/0.png deleted file mode 100644 index 8644e882e9..0000000000 Binary files a/front/public/images/large/harvestcraft/hushpuppiesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/icecreamItem/0.png b/front/public/images/large/harvestcraft/icecreamItem/0.png deleted file mode 100644 index 88545c8b1b..0000000000 Binary files a/front/public/images/large/harvestcraft/icecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/jaffaItem/0.png b/front/public/images/large/harvestcraft/jaffaItem/0.png deleted file mode 100644 index 0d8adc784d..0000000000 Binary files a/front/public/images/large/harvestcraft/jaffaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/jamrollItem/0.png b/front/public/images/large/harvestcraft/jamrollItem/0.png deleted file mode 100644 index d2ceba8540..0000000000 Binary files a/front/public/images/large/harvestcraft/jamrollItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/jellybeansItem/0.png b/front/public/images/large/harvestcraft/jellybeansItem/0.png deleted file mode 100644 index 5375325dbe..0000000000 Binary files a/front/public/images/large/harvestcraft/jellybeansItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/jellydonutItem/0.png b/front/public/images/large/harvestcraft/jellydonutItem/0.png deleted file mode 100644 index 9fd523571a..0000000000 Binary files a/front/public/images/large/harvestcraft/jellydonutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/jellyfishrawItem/0.png b/front/public/images/large/harvestcraft/jellyfishrawItem/0.png deleted file mode 100644 index 592f835852..0000000000 Binary files a/front/public/images/large/harvestcraft/jellyfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/juicerItem/0.png b/front/public/images/large/harvestcraft/juicerItem/0.png deleted file mode 100644 index 9a854025ca..0000000000 Binary files a/front/public/images/large/harvestcraft/juicerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ketchupItem/0.png b/front/public/images/large/harvestcraft/ketchupItem/0.png deleted file mode 100644 index 1b98523bf8..0000000000 Binary files a/front/public/images/large/harvestcraft/ketchupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/keylimepieItem/0.png b/front/public/images/large/harvestcraft/keylimepieItem/0.png deleted file mode 100644 index 4eee1a8156..0000000000 Binary files a/front/public/images/large/harvestcraft/keylimepieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kimchiItem/0.png b/front/public/images/large/harvestcraft/kimchiItem/0.png deleted file mode 100644 index 2c92685c6f..0000000000 Binary files a/front/public/images/large/harvestcraft/kimchiItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kiwiItem/0.png b/front/public/images/large/harvestcraft/kiwiItem/0.png deleted file mode 100644 index 5798bda0b8..0000000000 Binary files a/front/public/images/large/harvestcraft/kiwiItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kiwijellyItem/0.png b/front/public/images/large/harvestcraft/kiwijellyItem/0.png deleted file mode 100644 index 938284f86b..0000000000 Binary files a/front/public/images/large/harvestcraft/kiwijellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kiwijellysandwichItem/0.png b/front/public/images/large/harvestcraft/kiwijellysandwichItem/0.png deleted file mode 100644 index a307531062..0000000000 Binary files a/front/public/images/large/harvestcraft/kiwijellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kiwijuiceItem/0.png b/front/public/images/large/harvestcraft/kiwijuiceItem/0.png deleted file mode 100644 index 69c39e2f4b..0000000000 Binary files a/front/public/images/large/harvestcraft/kiwijuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kiwiseedItem/0.png b/front/public/images/large/harvestcraft/kiwiseedItem/0.png deleted file mode 100644 index 555425d30e..0000000000 Binary files a/front/public/images/large/harvestcraft/kiwiseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kiwismoothieItem/0.png b/front/public/images/large/harvestcraft/kiwismoothieItem/0.png deleted file mode 100644 index 02530c3b98..0000000000 Binary files a/front/public/images/large/harvestcraft/kiwismoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/kiwiyogurtItem/0.png b/front/public/images/large/harvestcraft/kiwiyogurtItem/0.png deleted file mode 100644 index 8b9d8c0e7c..0000000000 Binary files a/front/public/images/large/harvestcraft/kiwiyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lambbarleysoupItem/0.png b/front/public/images/large/harvestcraft/lambbarleysoupItem/0.png deleted file mode 100644 index e7de2dfb2f..0000000000 Binary files a/front/public/images/large/harvestcraft/lambbarleysoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lambkebabItem/0.png b/front/public/images/large/harvestcraft/lambkebabItem/0.png deleted file mode 100644 index 1537113f7e..0000000000 Binary files a/front/public/images/large/harvestcraft/lambkebabItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lambwithmintsauceItem/0.png b/front/public/images/large/harvestcraft/lambwithmintsauceItem/0.png deleted file mode 100644 index 3eecac6524..0000000000 Binary files a/front/public/images/large/harvestcraft/lambwithmintsauceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lamingtonItem/0.png b/front/public/images/large/harvestcraft/lamingtonItem/0.png deleted file mode 100644 index 7d3b7aa763..0000000000 Binary files a/front/public/images/large/harvestcraft/lamingtonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lavendershortbreadItem/0.png b/front/public/images/large/harvestcraft/lavendershortbreadItem/0.png deleted file mode 100644 index cb2466604c..0000000000 Binary files a/front/public/images/large/harvestcraft/lavendershortbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/leafychickensandwichItem/0.png b/front/public/images/large/harvestcraft/leafychickensandwichItem/0.png deleted file mode 100644 index 928878a94e..0000000000 Binary files a/front/public/images/large/harvestcraft/leafychickensandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/leafyfishsandwichItem/0.png b/front/public/images/large/harvestcraft/leafyfishsandwichItem/0.png deleted file mode 100644 index c80acd5f21..0000000000 Binary files a/front/public/images/large/harvestcraft/leafyfishsandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/leafygarden/0.png b/front/public/images/large/harvestcraft/leafygarden/0.png deleted file mode 100644 index 85be587caa..0000000000 Binary files a/front/public/images/large/harvestcraft/leafygarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/leekItem/0.png b/front/public/images/large/harvestcraft/leekItem/0.png deleted file mode 100644 index 4313d4b71d..0000000000 Binary files a/front/public/images/large/harvestcraft/leekItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/leekbaconsoupItem/0.png b/front/public/images/large/harvestcraft/leekbaconsoupItem/0.png deleted file mode 100644 index 03591ee505..0000000000 Binary files a/front/public/images/large/harvestcraft/leekbaconsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/leekseedItem/0.png b/front/public/images/large/harvestcraft/leekseedItem/0.png deleted file mode 100644 index a8d1abac1e..0000000000 Binary files a/front/public/images/large/harvestcraft/leekseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonItem/0.png b/front/public/images/large/harvestcraft/lemonItem/0.png deleted file mode 100644 index 365cb93e24..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonaideItem/0.png b/front/public/images/large/harvestcraft/lemonaideItem/0.png deleted file mode 100644 index e583abeb21..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonaideItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonbarItem/0.png b/front/public/images/large/harvestcraft/lemonbarItem/0.png deleted file mode 100644 index dc24aa59a3..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonbarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonchickenItem/0.png b/front/public/images/large/harvestcraft/lemonchickenItem/0.png deleted file mode 100644 index 4ca64424e3..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonchickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonjellyItem/0.png b/front/public/images/large/harvestcraft/lemonjellyItem/0.png deleted file mode 100644 index dff8bfc316..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonjellysandwichItem/0.png b/front/public/images/large/harvestcraft/lemonjellysandwichItem/0.png deleted file mode 100644 index fd0cb1691a..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonlimesodaItem/0.png b/front/public/images/large/harvestcraft/lemonlimesodaItem/0.png deleted file mode 100644 index 2948a0232d..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonlimesodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonmeringueItem/0.png b/front/public/images/large/harvestcraft/lemonmeringueItem/0.png deleted file mode 100644 index 1b47c5da47..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonmeringueItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonsmoothieItem/0.png b/front/public/images/large/harvestcraft/lemonsmoothieItem/0.png deleted file mode 100644 index 3da1bd975a..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lemonyogurtItem/0.png b/front/public/images/large/harvestcraft/lemonyogurtItem/0.png deleted file mode 100644 index ccbb5b7ee3..0000000000 Binary files a/front/public/images/large/harvestcraft/lemonyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lettuceItem/0.png b/front/public/images/large/harvestcraft/lettuceItem/0.png deleted file mode 100644 index d32d1c0273..0000000000 Binary files a/front/public/images/large/harvestcraft/lettuceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/lettuceseedItem/0.png b/front/public/images/large/harvestcraft/lettuceseedItem/0.png deleted file mode 100644 index 2b31141445..0000000000 Binary files a/front/public/images/large/harvestcraft/lettuceseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/limeItem/0.png b/front/public/images/large/harvestcraft/limeItem/0.png deleted file mode 100644 index 2e49534bb1..0000000000 Binary files a/front/public/images/large/harvestcraft/limeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/limejellyItem/0.png b/front/public/images/large/harvestcraft/limejellyItem/0.png deleted file mode 100644 index 608aa32de6..0000000000 Binary files a/front/public/images/large/harvestcraft/limejellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/limejellysandwichItem/0.png b/front/public/images/large/harvestcraft/limejellysandwichItem/0.png deleted file mode 100644 index 85cf8fba5a..0000000000 Binary files a/front/public/images/large/harvestcraft/limejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/limejuiceItem/0.png b/front/public/images/large/harvestcraft/limejuiceItem/0.png deleted file mode 100644 index ee825acd2b..0000000000 Binary files a/front/public/images/large/harvestcraft/limejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/limesmoothieItem/0.png b/front/public/images/large/harvestcraft/limesmoothieItem/0.png deleted file mode 100644 index 801e9c62fa..0000000000 Binary files a/front/public/images/large/harvestcraft/limesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/limeyogurtItem/0.png b/front/public/images/large/harvestcraft/limeyogurtItem/0.png deleted file mode 100644 index a9b0da4c34..0000000000 Binary files a/front/public/images/large/harvestcraft/limeyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/loadedbakedpotatoItem/0.png b/front/public/images/large/harvestcraft/loadedbakedpotatoItem/0.png deleted file mode 100644 index 4a1430b314..0000000000 Binary files a/front/public/images/large/harvestcraft/loadedbakedpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mangoItem/0.png b/front/public/images/large/harvestcraft/mangoItem/0.png deleted file mode 100644 index 8471c1c66c..0000000000 Binary files a/front/public/images/large/harvestcraft/mangoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mangochutneyItem/0.png b/front/public/images/large/harvestcraft/mangochutneyItem/0.png deleted file mode 100644 index 05a5d86feb..0000000000 Binary files a/front/public/images/large/harvestcraft/mangochutneyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mangojellyItem/0.png b/front/public/images/large/harvestcraft/mangojellyItem/0.png deleted file mode 100644 index b0c9dc9ebf..0000000000 Binary files a/front/public/images/large/harvestcraft/mangojellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mangojellysandwichItem/0.png b/front/public/images/large/harvestcraft/mangojellysandwichItem/0.png deleted file mode 100644 index bcf59b18d8..0000000000 Binary files a/front/public/images/large/harvestcraft/mangojellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mangojuiceItem/0.png b/front/public/images/large/harvestcraft/mangojuiceItem/0.png deleted file mode 100644 index 0838c66047..0000000000 Binary files a/front/public/images/large/harvestcraft/mangojuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mangosmoothieItem/0.png b/front/public/images/large/harvestcraft/mangosmoothieItem/0.png deleted file mode 100644 index ae4e18e7dc..0000000000 Binary files a/front/public/images/large/harvestcraft/mangosmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mangoyogurtItem/0.png b/front/public/images/large/harvestcraft/mangoyogurtItem/0.png deleted file mode 100644 index b77ece1134..0000000000 Binary files a/front/public/images/large/harvestcraft/mangoyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/manjuuItem/0.png b/front/public/images/large/harvestcraft/manjuuItem/0.png deleted file mode 100644 index 271864f1a7..0000000000 Binary files a/front/public/images/large/harvestcraft/manjuuItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/maplecandiedbaconItem/0.png b/front/public/images/large/harvestcraft/maplecandiedbaconItem/0.png deleted file mode 100644 index f2ac2042f5..0000000000 Binary files a/front/public/images/large/harvestcraft/maplecandiedbaconItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mapleoatmealItem/0.png b/front/public/images/large/harvestcraft/mapleoatmealItem/0.png deleted file mode 100644 index 69c29b1400..0000000000 Binary files a/front/public/images/large/harvestcraft/mapleoatmealItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/maplesausageItem/0.png b/front/public/images/large/harvestcraft/maplesausageItem/0.png deleted file mode 100644 index a62a7231fc..0000000000 Binary files a/front/public/images/large/harvestcraft/maplesausageItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/maplesyrupItem/0.png b/front/public/images/large/harvestcraft/maplesyrupItem/0.png deleted file mode 100644 index 9541e86b4b..0000000000 Binary files a/front/public/images/large/harvestcraft/maplesyrupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/maplesyruppancakesItem/0.png b/front/public/images/large/harvestcraft/maplesyruppancakesItem/0.png deleted file mode 100644 index 452f81269b..0000000000 Binary files a/front/public/images/large/harvestcraft/maplesyruppancakesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/maplesyrupwafflesItem/0.png b/front/public/images/large/harvestcraft/maplesyrupwafflesItem/0.png deleted file mode 100644 index 73a6eae8a4..0000000000 Binary files a/front/public/images/large/harvestcraft/maplesyrupwafflesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/marinatedcucumbersItem/0.png b/front/public/images/large/harvestcraft/marinatedcucumbersItem/0.png deleted file mode 100644 index 2e19fdc6ee..0000000000 Binary files a/front/public/images/large/harvestcraft/marinatedcucumbersItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/market/0.png b/front/public/images/large/harvestcraft/market/0.png deleted file mode 100644 index ae4c1dc6f6..0000000000 Binary files a/front/public/images/large/harvestcraft/market/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/marshmellowsItem/0.png b/front/public/images/large/harvestcraft/marshmellowsItem/0.png deleted file mode 100644 index 7d901b3b58..0000000000 Binary files a/front/public/images/large/harvestcraft/marshmellowsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/marzipanItem/0.png b/front/public/images/large/harvestcraft/marzipanItem/0.png deleted file mode 100644 index 22f8b35712..0000000000 Binary files a/front/public/images/large/harvestcraft/marzipanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mashedpotatoesItem/0.png b/front/public/images/large/harvestcraft/mashedpotatoesItem/0.png deleted file mode 100644 index 1d5855b41c..0000000000 Binary files a/front/public/images/large/harvestcraft/mashedpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mashedsweetpotatoesItem/0.png b/front/public/images/large/harvestcraft/mashedsweetpotatoesItem/0.png deleted file mode 100644 index 29220ea690..0000000000 Binary files a/front/public/images/large/harvestcraft/mashedsweetpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mayoItem/0.png b/front/public/images/large/harvestcraft/mayoItem/0.png deleted file mode 100644 index 1cb1a56073..0000000000 Binary files a/front/public/images/large/harvestcraft/mayoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mcpamItem/0.png b/front/public/images/large/harvestcraft/mcpamItem/0.png deleted file mode 100644 index 36834df62b..0000000000 Binary files a/front/public/images/large/harvestcraft/mcpamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/meatfeastpizzaItem/0.png b/front/public/images/large/harvestcraft/meatfeastpizzaItem/0.png deleted file mode 100644 index 62ef1b09e1..0000000000 Binary files a/front/public/images/large/harvestcraft/meatfeastpizzaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/meatpieItem/0.png b/front/public/images/large/harvestcraft/meatpieItem/0.png deleted file mode 100644 index f0e1a342f1..0000000000 Binary files a/front/public/images/large/harvestcraft/meatpieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/meatystewItem/0.png b/front/public/images/large/harvestcraft/meatystewItem/0.png deleted file mode 100644 index 0490772f01..0000000000 Binary files a/front/public/images/large/harvestcraft/meatystewItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/melonjuiceItem/0.png b/front/public/images/large/harvestcraft/melonjuiceItem/0.png deleted file mode 100644 index 5b78e76556..0000000000 Binary files a/front/public/images/large/harvestcraft/melonjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/melonsmoothieItem/0.png b/front/public/images/large/harvestcraft/melonsmoothieItem/0.png deleted file mode 100644 index 9f90757410..0000000000 Binary files a/front/public/images/large/harvestcraft/melonsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/melonyogurtItem/0.png b/front/public/images/large/harvestcraft/melonyogurtItem/0.png deleted file mode 100644 index 6f1585abc6..0000000000 Binary files a/front/public/images/large/harvestcraft/melonyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mincepieItem/0.png b/front/public/images/large/harvestcraft/mincepieItem/0.png deleted file mode 100644 index 1f771bac9f..0000000000 Binary files a/front/public/images/large/harvestcraft/mincepieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mintchocolatechipicemcreamItem/0.png b/front/public/images/large/harvestcraft/mintchocolatechipicemcreamItem/0.png deleted file mode 100644 index e2e0f689f9..0000000000 Binary files a/front/public/images/large/harvestcraft/mintchocolatechipicemcreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mixedsaladItem/0.png b/front/public/images/large/harvestcraft/mixedsaladItem/0.png deleted file mode 100644 index d0d13ba39c..0000000000 Binary files a/front/public/images/large/harvestcraft/mixedsaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mixingbowlItem/0.png b/front/public/images/large/harvestcraft/mixingbowlItem/0.png deleted file mode 100644 index 58e31fe8b3..0000000000 Binary files a/front/public/images/large/harvestcraft/mixingbowlItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mochaicecreamItem/0.png b/front/public/images/large/harvestcraft/mochaicecreamItem/0.png deleted file mode 100644 index 4105a75f92..0000000000 Binary files a/front/public/images/large/harvestcraft/mochaicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mochiItem/0.png b/front/public/images/large/harvestcraft/mochiItem/0.png deleted file mode 100644 index 5f742f51dd..0000000000 Binary files a/front/public/images/large/harvestcraft/mochiItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mortarandpestleItem/0.png b/front/public/images/large/harvestcraft/mortarandpestleItem/0.png deleted file mode 100644 index 425a543ef6..0000000000 Binary files a/front/public/images/large/harvestcraft/mortarandpestleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mudfishrawItem/0.png b/front/public/images/large/harvestcraft/mudfishrawItem/0.png deleted file mode 100644 index b448672f17..0000000000 Binary files a/front/public/images/large/harvestcraft/mudfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/museliItem/0.png b/front/public/images/large/harvestcraft/museliItem/0.png deleted file mode 100644 index 8ca8abfcc6..0000000000 Binary files a/front/public/images/large/harvestcraft/museliItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mushroomgarden/0.png b/front/public/images/large/harvestcraft/mushroomgarden/0.png deleted file mode 100644 index a88248861c..0000000000 Binary files a/front/public/images/large/harvestcraft/mushroomgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mushroomrisottoItem/0.png b/front/public/images/large/harvestcraft/mushroomrisottoItem/0.png deleted file mode 100644 index 4d8d4a2608..0000000000 Binary files a/front/public/images/large/harvestcraft/mushroomrisottoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mustardItem/0.png b/front/public/images/large/harvestcraft/mustardItem/0.png deleted file mode 100644 index 1de0992895..0000000000 Binary files a/front/public/images/large/harvestcraft/mustardItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mustardseedItem/0.png b/front/public/images/large/harvestcraft/mustardseedItem/0.png deleted file mode 100644 index 013dabe93a..0000000000 Binary files a/front/public/images/large/harvestcraft/mustardseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/mustardseedsItem/0.png b/front/public/images/large/harvestcraft/mustardseedsItem/0.png deleted file mode 100644 index 3cc1220005..0000000000 Binary files a/front/public/images/large/harvestcraft/mustardseedsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/muttoncookedItem/0.png b/front/public/images/large/harvestcraft/muttoncookedItem/0.png deleted file mode 100644 index f217226f35..0000000000 Binary files a/front/public/images/large/harvestcraft/muttoncookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/muttonrawItem/0.png b/front/public/images/large/harvestcraft/muttonrawItem/0.png deleted file mode 100644 index 0e83aa88cb..0000000000 Binary files a/front/public/images/large/harvestcraft/muttonrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/naanItem/0.png b/front/public/images/large/harvestcraft/naanItem/0.png deleted file mode 100644 index 52f1605ce5..0000000000 Binary files a/front/public/images/large/harvestcraft/naanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/nachoesItem/0.png b/front/public/images/large/harvestcraft/nachoesItem/0.png deleted file mode 100644 index d7417521af..0000000000 Binary files a/front/public/images/large/harvestcraft/nachoesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/neapolitanicecreamItem/0.png b/front/public/images/large/harvestcraft/neapolitanicecreamItem/0.png deleted file mode 100644 index 0c0558c6a9..0000000000 Binary files a/front/public/images/large/harvestcraft/neapolitanicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/nutellaItem/0.png b/front/public/images/large/harvestcraft/nutellaItem/0.png deleted file mode 100644 index dbb655c0af..0000000000 Binary files a/front/public/images/large/harvestcraft/nutellaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/nutmegItem/0.png b/front/public/images/large/harvestcraft/nutmegItem/0.png deleted file mode 100644 index 3d255d4830..0000000000 Binary files a/front/public/images/large/harvestcraft/nutmegItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/oatsItem/0.png b/front/public/images/large/harvestcraft/oatsItem/0.png deleted file mode 100644 index f928138b2e..0000000000 Binary files a/front/public/images/large/harvestcraft/oatsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/oatsseedItem/0.png b/front/public/images/large/harvestcraft/oatsseedItem/0.png deleted file mode 100644 index 604104ffcd..0000000000 Binary files a/front/public/images/large/harvestcraft/oatsseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/octopuscookedItem/0.png b/front/public/images/large/harvestcraft/octopuscookedItem/0.png deleted file mode 100644 index 8be5b5b112..0000000000 Binary files a/front/public/images/large/harvestcraft/octopuscookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/octopusrawItem/0.png b/front/public/images/large/harvestcraft/octopusrawItem/0.png deleted file mode 100644 index f4870020da..0000000000 Binary files a/front/public/images/large/harvestcraft/octopusrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/okraItem/0.png b/front/public/images/large/harvestcraft/okraItem/0.png deleted file mode 100644 index 671418b6fe..0000000000 Binary files a/front/public/images/large/harvestcraft/okraItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/okrachipsItem/0.png b/front/public/images/large/harvestcraft/okrachipsItem/0.png deleted file mode 100644 index 08b3e63f42..0000000000 Binary files a/front/public/images/large/harvestcraft/okrachipsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/okracreoleItem/0.png b/front/public/images/large/harvestcraft/okracreoleItem/0.png deleted file mode 100644 index ed2e158ae3..0000000000 Binary files a/front/public/images/large/harvestcraft/okracreoleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/okraseedItem/0.png b/front/public/images/large/harvestcraft/okraseedItem/0.png deleted file mode 100644 index ef243a7412..0000000000 Binary files a/front/public/images/large/harvestcraft/okraseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/oldworldveggiesoupItem/0.png b/front/public/images/large/harvestcraft/oldworldveggiesoupItem/0.png deleted file mode 100644 index 73fab69f3f..0000000000 Binary files a/front/public/images/large/harvestcraft/oldworldveggiesoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/oliveItem/0.png b/front/public/images/large/harvestcraft/oliveItem/0.png deleted file mode 100644 index ac3c7c93aa..0000000000 Binary files a/front/public/images/large/harvestcraft/oliveItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/oliveoilItem/0.png b/front/public/images/large/harvestcraft/oliveoilItem/0.png deleted file mode 100644 index a7e7cef2b0..0000000000 Binary files a/front/public/images/large/harvestcraft/oliveoilItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/omeletItem/0.png b/front/public/images/large/harvestcraft/omeletItem/0.png deleted file mode 100644 index 66b505298b..0000000000 Binary files a/front/public/images/large/harvestcraft/omeletItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/onionItem/0.png b/front/public/images/large/harvestcraft/onionItem/0.png deleted file mode 100644 index cba5f9c547..0000000000 Binary files a/front/public/images/large/harvestcraft/onionItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/onionhamburgerItem/0.png b/front/public/images/large/harvestcraft/onionhamburgerItem/0.png deleted file mode 100644 index eb622cf8b7..0000000000 Binary files a/front/public/images/large/harvestcraft/onionhamburgerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/onionseedItem/0.png b/front/public/images/large/harvestcraft/onionseedItem/0.png deleted file mode 100644 index b01e34c74a..0000000000 Binary files a/front/public/images/large/harvestcraft/onionseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/onionsoupItem/0.png b/front/public/images/large/harvestcraft/onionsoupItem/0.png deleted file mode 100644 index 8538dcc992..0000000000 Binary files a/front/public/images/large/harvestcraft/onionsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangeItem/0.png b/front/public/images/large/harvestcraft/orangeItem/0.png deleted file mode 100644 index a054932031..0000000000 Binary files a/front/public/images/large/harvestcraft/orangeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangechickenItem/0.png b/front/public/images/large/harvestcraft/orangechickenItem/0.png deleted file mode 100644 index c1638c4847..0000000000 Binary files a/front/public/images/large/harvestcraft/orangechickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangejellyItem/0.png b/front/public/images/large/harvestcraft/orangejellyItem/0.png deleted file mode 100644 index 981033a215..0000000000 Binary files a/front/public/images/large/harvestcraft/orangejellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangejellysandwichItem/0.png b/front/public/images/large/harvestcraft/orangejellysandwichItem/0.png deleted file mode 100644 index d14287e1b4..0000000000 Binary files a/front/public/images/large/harvestcraft/orangejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangejuiceItem/0.png b/front/public/images/large/harvestcraft/orangejuiceItem/0.png deleted file mode 100644 index 21952aa4ac..0000000000 Binary files a/front/public/images/large/harvestcraft/orangejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangesmoothieItem/0.png b/front/public/images/large/harvestcraft/orangesmoothieItem/0.png deleted file mode 100644 index 7816c26106..0000000000 Binary files a/front/public/images/large/harvestcraft/orangesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangesodaItem/0.png b/front/public/images/large/harvestcraft/orangesodaItem/0.png deleted file mode 100644 index 3ec3caae6c..0000000000 Binary files a/front/public/images/large/harvestcraft/orangesodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/orangeyogurtItem/0.png b/front/public/images/large/harvestcraft/orangeyogurtItem/0.png deleted file mode 100644 index 77a8ba8a67..0000000000 Binary files a/front/public/images/large/harvestcraft/orangeyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/oven/0.png b/front/public/images/large/harvestcraft/oven/0.png deleted file mode 100644 index a945f34875..0000000000 Binary files a/front/public/images/large/harvestcraft/oven/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ovenon/0.png b/front/public/images/large/harvestcraft/ovenon/0.png deleted file mode 100644 index a945f34875..0000000000 Binary files a/front/public/images/large/harvestcraft/ovenon/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ovenroastedcauliflowerItem/0.png b/front/public/images/large/harvestcraft/ovenroastedcauliflowerItem/0.png deleted file mode 100644 index 4b33a32777..0000000000 Binary files a/front/public/images/large/harvestcraft/ovenroastedcauliflowerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamAlmond/0.png b/front/public/images/large/harvestcraft/pamAlmond/0.png deleted file mode 100644 index 0e44bac66d..0000000000 Binary files a/front/public/images/large/harvestcraft/pamAlmond/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamApple/0.png b/front/public/images/large/harvestcraft/pamApple/0.png deleted file mode 100644 index e61292b1b5..0000000000 Binary files a/front/public/images/large/harvestcraft/pamApple/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamApricot/0.png b/front/public/images/large/harvestcraft/pamApricot/0.png deleted file mode 100644 index cb6d291d75..0000000000 Binary files a/front/public/images/large/harvestcraft/pamApricot/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamAvocado/0.png b/front/public/images/large/harvestcraft/pamAvocado/0.png deleted file mode 100644 index b444ce8355..0000000000 Binary files a/front/public/images/large/harvestcraft/pamAvocado/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamBanana/0.png b/front/public/images/large/harvestcraft/pamBanana/0.png deleted file mode 100644 index e8a5d12ddd..0000000000 Binary files a/front/public/images/large/harvestcraft/pamBanana/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamCashew/0.png b/front/public/images/large/harvestcraft/pamCashew/0.png deleted file mode 100644 index baef91be49..0000000000 Binary files a/front/public/images/large/harvestcraft/pamCashew/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamCherry/0.png b/front/public/images/large/harvestcraft/pamCherry/0.png deleted file mode 100644 index 75bcf60b83..0000000000 Binary files a/front/public/images/large/harvestcraft/pamCherry/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamChestnut/0.png b/front/public/images/large/harvestcraft/pamChestnut/0.png deleted file mode 100644 index 20a90b9e30..0000000000 Binary files a/front/public/images/large/harvestcraft/pamChestnut/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamCinnamon/0.png b/front/public/images/large/harvestcraft/pamCinnamon/0.png deleted file mode 100644 index 7ce12ed24a..0000000000 Binary files a/front/public/images/large/harvestcraft/pamCinnamon/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamCoconut/0.png b/front/public/images/large/harvestcraft/pamCoconut/0.png deleted file mode 100644 index 2679ba65d7..0000000000 Binary files a/front/public/images/large/harvestcraft/pamCoconut/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamDate/0.png b/front/public/images/large/harvestcraft/pamDate/0.png deleted file mode 100644 index ae86011282..0000000000 Binary files a/front/public/images/large/harvestcraft/pamDate/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamDragonfruit/0.png b/front/public/images/large/harvestcraft/pamDragonfruit/0.png deleted file mode 100644 index c29e15c5ae..0000000000 Binary files a/front/public/images/large/harvestcraft/pamDragonfruit/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamDurian/0.png b/front/public/images/large/harvestcraft/pamDurian/0.png deleted file mode 100644 index 9fa8dd6d07..0000000000 Binary files a/front/public/images/large/harvestcraft/pamDurian/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamFig/0.png b/front/public/images/large/harvestcraft/pamFig/0.png deleted file mode 100644 index df7977e571..0000000000 Binary files a/front/public/images/large/harvestcraft/pamFig/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamGooseberry/0.png b/front/public/images/large/harvestcraft/pamGooseberry/0.png deleted file mode 100644 index fd8a4a4e68..0000000000 Binary files a/front/public/images/large/harvestcraft/pamGooseberry/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamGrapefruit/0.png b/front/public/images/large/harvestcraft/pamGrapefruit/0.png deleted file mode 100644 index 770efbe0c8..0000000000 Binary files a/front/public/images/large/harvestcraft/pamGrapefruit/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamLemon/0.png b/front/public/images/large/harvestcraft/pamLemon/0.png deleted file mode 100644 index a9d8f0c728..0000000000 Binary files a/front/public/images/large/harvestcraft/pamLemon/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamLime/0.png b/front/public/images/large/harvestcraft/pamLime/0.png deleted file mode 100644 index 917479aa11..0000000000 Binary files a/front/public/images/large/harvestcraft/pamLime/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamMango/0.png b/front/public/images/large/harvestcraft/pamMango/0.png deleted file mode 100644 index ad95692ee2..0000000000 Binary files a/front/public/images/large/harvestcraft/pamMango/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamMaple/0.png b/front/public/images/large/harvestcraft/pamMaple/0.png deleted file mode 100644 index 152940ecde..0000000000 Binary files a/front/public/images/large/harvestcraft/pamMaple/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamNutmeg/0.png b/front/public/images/large/harvestcraft/pamNutmeg/0.png deleted file mode 100644 index caf988b490..0000000000 Binary files a/front/public/images/large/harvestcraft/pamNutmeg/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamOlive/0.png b/front/public/images/large/harvestcraft/pamOlive/0.png deleted file mode 100644 index 7ebc00d195..0000000000 Binary files a/front/public/images/large/harvestcraft/pamOlive/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamOrange/0.png b/front/public/images/large/harvestcraft/pamOrange/0.png deleted file mode 100644 index 7bf4d40dee..0000000000 Binary files a/front/public/images/large/harvestcraft/pamOrange/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPapaya/0.png b/front/public/images/large/harvestcraft/pamPapaya/0.png deleted file mode 100644 index 8486d0fc39..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPapaya/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPaperbark/0.png b/front/public/images/large/harvestcraft/pamPaperbark/0.png deleted file mode 100644 index 045fcf86ae..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPaperbark/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPeach/0.png b/front/public/images/large/harvestcraft/pamPeach/0.png deleted file mode 100644 index 2de973b387..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPeach/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPear/0.png b/front/public/images/large/harvestcraft/pamPear/0.png deleted file mode 100644 index 9ece105783..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPear/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPecan/0.png b/front/public/images/large/harvestcraft/pamPecan/0.png deleted file mode 100644 index a3c09beb1a..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPecan/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPeppercorn/0.png b/front/public/images/large/harvestcraft/pamPeppercorn/0.png deleted file mode 100644 index b9b933c6a6..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPeppercorn/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPersimmon/0.png b/front/public/images/large/harvestcraft/pamPersimmon/0.png deleted file mode 100644 index bc6517b4b5..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPersimmon/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPistachio/0.png b/front/public/images/large/harvestcraft/pamPistachio/0.png deleted file mode 100644 index 03d40af1c5..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPistachio/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPlum/0.png b/front/public/images/large/harvestcraft/pamPlum/0.png deleted file mode 100644 index 0231936542..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPlum/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamPomegranate/0.png b/front/public/images/large/harvestcraft/pamPomegranate/0.png deleted file mode 100644 index c4fb3850b9..0000000000 Binary files a/front/public/images/large/harvestcraft/pamPomegranate/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamStarfruit/0.png b/front/public/images/large/harvestcraft/pamStarfruit/0.png deleted file mode 100644 index 3b4a9127bf..0000000000 Binary files a/front/public/images/large/harvestcraft/pamStarfruit/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamVanillabean/0.png b/front/public/images/large/harvestcraft/pamVanillabean/0.png deleted file mode 100644 index 835239ed21..0000000000 Binary files a/front/public/images/large/harvestcraft/pamVanillabean/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamWalnut/0.png b/front/public/images/large/harvestcraft/pamWalnut/0.png deleted file mode 100644 index bf3c99b988..0000000000 Binary files a/front/public/images/large/harvestcraft/pamWalnut/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamalmondSapling/0.png b/front/public/images/large/harvestcraft/pamalmondSapling/0.png deleted file mode 100644 index ee0e3ae118..0000000000 Binary files a/front/public/images/large/harvestcraft/pamalmondSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamappleSapling/0.png b/front/public/images/large/harvestcraft/pamappleSapling/0.png deleted file mode 100644 index efba50e84c..0000000000 Binary files a/front/public/images/large/harvestcraft/pamappleSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamapricotSapling/0.png b/front/public/images/large/harvestcraft/pamapricotSapling/0.png deleted file mode 100644 index a56d523906..0000000000 Binary files a/front/public/images/large/harvestcraft/pamapricotSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamartichokeCrop/0.png b/front/public/images/large/harvestcraft/pamartichokeCrop/0.png deleted file mode 100644 index 00c947ba83..0000000000 Binary files a/front/public/images/large/harvestcraft/pamartichokeCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamasparagusCrop/0.png b/front/public/images/large/harvestcraft/pamasparagusCrop/0.png deleted file mode 100644 index 73c667fb6b..0000000000 Binary files a/front/public/images/large/harvestcraft/pamasparagusCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamavocadoSapling/0.png b/front/public/images/large/harvestcraft/pamavocadoSapling/0.png deleted file mode 100644 index 60d5ee52ed..0000000000 Binary files a/front/public/images/large/harvestcraft/pamavocadoSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambambooshootCrop/0.png b/front/public/images/large/harvestcraft/pambambooshootCrop/0.png deleted file mode 100644 index 5f50e4e0a3..0000000000 Binary files a/front/public/images/large/harvestcraft/pambambooshootCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambananaSapling/0.png b/front/public/images/large/harvestcraft/pambananaSapling/0.png deleted file mode 100644 index 0f10b62f02..0000000000 Binary files a/front/public/images/large/harvestcraft/pambananaSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambarleyCrop/0.png b/front/public/images/large/harvestcraft/pambarleyCrop/0.png deleted file mode 100644 index 05d2379710..0000000000 Binary files a/front/public/images/large/harvestcraft/pambarleyCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambeanCrop/0.png b/front/public/images/large/harvestcraft/pambeanCrop/0.png deleted file mode 100644 index 5c3916e851..0000000000 Binary files a/front/public/images/large/harvestcraft/pambeanCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambeetCrop/0.png b/front/public/images/large/harvestcraft/pambeetCrop/0.png deleted file mode 100644 index 29d8870ded..0000000000 Binary files a/front/public/images/large/harvestcraft/pambeetCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambellpepperCrop/0.png b/front/public/images/large/harvestcraft/pambellpepperCrop/0.png deleted file mode 100644 index 5d247349f6..0000000000 Binary files a/front/public/images/large/harvestcraft/pambellpepperCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamblackberryCrop/0.png b/front/public/images/large/harvestcraft/pamblackberryCrop/0.png deleted file mode 100644 index a909f6e898..0000000000 Binary files a/front/public/images/large/harvestcraft/pamblackberryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamblueberryCrop/0.png b/front/public/images/large/harvestcraft/pamblueberryCrop/0.png deleted file mode 100644 index 67c38b54ed..0000000000 Binary files a/front/public/images/large/harvestcraft/pamblueberryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambroccoliCrop/0.png b/front/public/images/large/harvestcraft/pambroccoliCrop/0.png deleted file mode 100644 index c367d4b3d5..0000000000 Binary files a/front/public/images/large/harvestcraft/pambroccoliCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pambrusselsproutCrop/0.png b/front/public/images/large/harvestcraft/pambrusselsproutCrop/0.png deleted file mode 100644 index 9f7162a533..0000000000 Binary files a/front/public/images/large/harvestcraft/pambrusselsproutCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcabbageCrop/0.png b/front/public/images/large/harvestcraft/pamcabbageCrop/0.png deleted file mode 100644 index 5c851392ed..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcabbageCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcactusfruitCrop/0.png b/front/public/images/large/harvestcraft/pamcactusfruitCrop/0.png deleted file mode 100644 index 9a12b0c5c9..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcactusfruitCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco1/0.png b/front/public/images/large/harvestcraft/pamcandleDeco1/0.png deleted file mode 100644 index 14de0452d3..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco1/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco10/0.png b/front/public/images/large/harvestcraft/pamcandleDeco10/0.png deleted file mode 100644 index baf99c842c..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco10/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco11/0.png b/front/public/images/large/harvestcraft/pamcandleDeco11/0.png deleted file mode 100644 index fb1434ebf1..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco11/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco12/0.png b/front/public/images/large/harvestcraft/pamcandleDeco12/0.png deleted file mode 100644 index 0eb2743b39..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco12/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco13/0.png b/front/public/images/large/harvestcraft/pamcandleDeco13/0.png deleted file mode 100644 index e5636474a6..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco13/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco14/0.png b/front/public/images/large/harvestcraft/pamcandleDeco14/0.png deleted file mode 100644 index fd33c71594..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco14/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco15/0.png b/front/public/images/large/harvestcraft/pamcandleDeco15/0.png deleted file mode 100644 index 24dd992756..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco15/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco16/0.png b/front/public/images/large/harvestcraft/pamcandleDeco16/0.png deleted file mode 100644 index f0ea121094..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco16/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco2/0.png b/front/public/images/large/harvestcraft/pamcandleDeco2/0.png deleted file mode 100644 index d25e354bda..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco2/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco3/0.png b/front/public/images/large/harvestcraft/pamcandleDeco3/0.png deleted file mode 100644 index 76ad3a1302..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco3/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco4/0.png b/front/public/images/large/harvestcraft/pamcandleDeco4/0.png deleted file mode 100644 index 5009ffd52d..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco4/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco5/0.png b/front/public/images/large/harvestcraft/pamcandleDeco5/0.png deleted file mode 100644 index dc88219341..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco5/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco6/0.png b/front/public/images/large/harvestcraft/pamcandleDeco6/0.png deleted file mode 100644 index 2493d4debe..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco6/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco7/0.png b/front/public/images/large/harvestcraft/pamcandleDeco7/0.png deleted file mode 100644 index 68637537dc..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco7/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco8/0.png b/front/public/images/large/harvestcraft/pamcandleDeco8/0.png deleted file mode 100644 index d4d6533427..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco8/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleDeco9/0.png b/front/public/images/large/harvestcraft/pamcandleDeco9/0.png deleted file mode 100644 index 7ace36c3c0..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleDeco9/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcandleberryCrop/0.png b/front/public/images/large/harvestcraft/pamcandleberryCrop/0.png deleted file mode 100644 index 956f9f349b..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcandleberryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcantaloupeCrop/0.png b/front/public/images/large/harvestcraft/pamcantaloupeCrop/0.png deleted file mode 100644 index 204d48a3ea..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcantaloupeCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcarrotCake/0.png b/front/public/images/large/harvestcraft/pamcarrotCake/0.png deleted file mode 100644 index 11402dd82a..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcarrotCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcashewSapling/0.png b/front/public/images/large/harvestcraft/pamcashewSapling/0.png deleted file mode 100644 index d43360e6ae..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcashewSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcauliflowerCrop/0.png b/front/public/images/large/harvestcraft/pamcauliflowerCrop/0.png deleted file mode 100644 index 960087a29b..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcauliflowerCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamceleryCrop/0.png b/front/public/images/large/harvestcraft/pamceleryCrop/0.png deleted file mode 100644 index 048d13c9a5..0000000000 Binary files a/front/public/images/large/harvestcraft/pamceleryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcheeseCake/0.png b/front/public/images/large/harvestcraft/pamcheeseCake/0.png deleted file mode 100644 index baad8be132..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcheeseCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcherrySapling/0.png b/front/public/images/large/harvestcraft/pamcherrySapling/0.png deleted file mode 100644 index 840e8f12bc..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcherrySapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcherrycheeseCake/0.png b/front/public/images/large/harvestcraft/pamcherrycheeseCake/0.png deleted file mode 100644 index c34d8165ae..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcherrycheeseCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamchestnutSapling/0.png b/front/public/images/large/harvestcraft/pamchestnutSapling/0.png deleted file mode 100644 index 3e08d787e2..0000000000 Binary files a/front/public/images/large/harvestcraft/pamchestnutSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamchilipepperCrop/0.png b/front/public/images/large/harvestcraft/pamchilipepperCrop/0.png deleted file mode 100644 index 93c931a247..0000000000 Binary files a/front/public/images/large/harvestcraft/pamchilipepperCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamchocolatesprinkleCake/0.png b/front/public/images/large/harvestcraft/pamchocolatesprinkleCake/0.png deleted file mode 100644 index 30ef41af22..0000000000 Binary files a/front/public/images/large/harvestcraft/pamchocolatesprinkleCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcinnamonSapling/0.png b/front/public/images/large/harvestcraft/pamcinnamonSapling/0.png deleted file mode 100644 index eb93214377..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcinnamonSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcoconutSapling/0.png b/front/public/images/large/harvestcraft/pamcoconutSapling/0.png deleted file mode 100644 index b23b408660..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcoconutSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcoffeebeanCrop/0.png b/front/public/images/large/harvestcraft/pamcoffeebeanCrop/0.png deleted file mode 100644 index a68949d256..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcoffeebeanCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcornCrop/0.png b/front/public/images/large/harvestcraft/pamcornCrop/0.png deleted file mode 100644 index 39514ca52d..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcornCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcottonCrop/0.png b/front/public/images/large/harvestcraft/pamcottonCrop/0.png deleted file mode 100644 index 9eb95f119f..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcottonCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcranberryCrop/0.png b/front/public/images/large/harvestcraft/pamcranberryCrop/0.png deleted file mode 100644 index 9499119286..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcranberryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcucumberCrop/0.png b/front/public/images/large/harvestcraft/pamcucumberCrop/0.png deleted file mode 100644 index 2d2d970cdb..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcucumberCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamcurryleafCrop/0.png b/front/public/images/large/harvestcraft/pamcurryleafCrop/0.png deleted file mode 100644 index dd38f0324c..0000000000 Binary files a/front/public/images/large/harvestcraft/pamcurryleafCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamdateSapling/0.png b/front/public/images/large/harvestcraft/pamdateSapling/0.png deleted file mode 100644 index 94f40bebfa..0000000000 Binary files a/front/public/images/large/harvestcraft/pamdateSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamdragonfruitSapling/0.png b/front/public/images/large/harvestcraft/pamdragonfruitSapling/0.png deleted file mode 100644 index 079ea060aa..0000000000 Binary files a/front/public/images/large/harvestcraft/pamdragonfruitSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamdurianSapling/0.png b/front/public/images/large/harvestcraft/pamdurianSapling/0.png deleted file mode 100644 index b666cc562b..0000000000 Binary files a/front/public/images/large/harvestcraft/pamdurianSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pameggplantCrop/0.png b/front/public/images/large/harvestcraft/pameggplantCrop/0.png deleted file mode 100644 index 8342b9251f..0000000000 Binary files a/front/public/images/large/harvestcraft/pameggplantCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamfigSapling/0.png b/front/public/images/large/harvestcraft/pamfigSapling/0.png deleted file mode 100644 index 990af1c598..0000000000 Binary files a/front/public/images/large/harvestcraft/pamfigSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamgarlicCrop/0.png b/front/public/images/large/harvestcraft/pamgarlicCrop/0.png deleted file mode 100644 index 770ed4ecc4..0000000000 Binary files a/front/public/images/large/harvestcraft/pamgarlicCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamgingerCrop/0.png b/front/public/images/large/harvestcraft/pamgingerCrop/0.png deleted file mode 100644 index d476ea34a3..0000000000 Binary files a/front/public/images/large/harvestcraft/pamgingerCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamgooseberrySapling/0.png b/front/public/images/large/harvestcraft/pamgooseberrySapling/0.png deleted file mode 100644 index 99a9418f1b..0000000000 Binary files a/front/public/images/large/harvestcraft/pamgooseberrySapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamgrapeCrop/0.png b/front/public/images/large/harvestcraft/pamgrapeCrop/0.png deleted file mode 100644 index 3a314a7018..0000000000 Binary files a/front/public/images/large/harvestcraft/pamgrapeCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamgrapefruitSapling/0.png b/front/public/images/large/harvestcraft/pamgrapefruitSapling/0.png deleted file mode 100644 index 2820310211..0000000000 Binary files a/front/public/images/large/harvestcraft/pamgrapefruitSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamholidayCake/0.png b/front/public/images/large/harvestcraft/pamholidayCake/0.png deleted file mode 100644 index 2583c79911..0000000000 Binary files a/front/public/images/large/harvestcraft/pamholidayCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamkiwiCrop/0.png b/front/public/images/large/harvestcraft/pamkiwiCrop/0.png deleted file mode 100644 index 5a3ad36c1b..0000000000 Binary files a/front/public/images/large/harvestcraft/pamkiwiCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamlamingtonCake/0.png b/front/public/images/large/harvestcraft/pamlamingtonCake/0.png deleted file mode 100644 index 9dc42b9b59..0000000000 Binary files a/front/public/images/large/harvestcraft/pamlamingtonCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamleekCrop/0.png b/front/public/images/large/harvestcraft/pamleekCrop/0.png deleted file mode 100644 index 93aa3a64c1..0000000000 Binary files a/front/public/images/large/harvestcraft/pamleekCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamlemonSapling/0.png b/front/public/images/large/harvestcraft/pamlemonSapling/0.png deleted file mode 100644 index 25a9051770..0000000000 Binary files a/front/public/images/large/harvestcraft/pamlemonSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamlettuceCrop/0.png b/front/public/images/large/harvestcraft/pamlettuceCrop/0.png deleted file mode 100644 index f9759444d0..0000000000 Binary files a/front/public/images/large/harvestcraft/pamlettuceCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamlimeSapling/0.png b/front/public/images/large/harvestcraft/pamlimeSapling/0.png deleted file mode 100644 index 949ec8c280..0000000000 Binary files a/front/public/images/large/harvestcraft/pamlimeSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pammangoSapling/0.png b/front/public/images/large/harvestcraft/pammangoSapling/0.png deleted file mode 100644 index 5c0c03635e..0000000000 Binary files a/front/public/images/large/harvestcraft/pammangoSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pammapleSapling/0.png b/front/public/images/large/harvestcraft/pammapleSapling/0.png deleted file mode 100644 index cc70fa7259..0000000000 Binary files a/front/public/images/large/harvestcraft/pammapleSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pammustardseedsCrop/0.png b/front/public/images/large/harvestcraft/pammustardseedsCrop/0.png deleted file mode 100644 index 6bca566f65..0000000000 Binary files a/front/public/images/large/harvestcraft/pammustardseedsCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamnutmegSapling/0.png b/front/public/images/large/harvestcraft/pamnutmegSapling/0.png deleted file mode 100644 index 43aba3b608..0000000000 Binary files a/front/public/images/large/harvestcraft/pamnutmegSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamoatsCrop/0.png b/front/public/images/large/harvestcraft/pamoatsCrop/0.png deleted file mode 100644 index 5e209ac0ff..0000000000 Binary files a/front/public/images/large/harvestcraft/pamoatsCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamokraCrop/0.png b/front/public/images/large/harvestcraft/pamokraCrop/0.png deleted file mode 100644 index f477a2b909..0000000000 Binary files a/front/public/images/large/harvestcraft/pamokraCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamoliveSapling/0.png b/front/public/images/large/harvestcraft/pamoliveSapling/0.png deleted file mode 100644 index 4edde9fd57..0000000000 Binary files a/front/public/images/large/harvestcraft/pamoliveSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamonionCrop/0.png b/front/public/images/large/harvestcraft/pamonionCrop/0.png deleted file mode 100644 index fb6f067ff9..0000000000 Binary files a/front/public/images/large/harvestcraft/pamonionCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamorangeSapling/0.png b/front/public/images/large/harvestcraft/pamorangeSapling/0.png deleted file mode 100644 index 0e1665b9fd..0000000000 Binary files a/front/public/images/large/harvestcraft/pamorangeSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampapayaSapling/0.png b/front/public/images/large/harvestcraft/pampapayaSapling/0.png deleted file mode 100644 index afc6707d56..0000000000 Binary files a/front/public/images/large/harvestcraft/pampapayaSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampaperbarkSapling/0.png b/front/public/images/large/harvestcraft/pampaperbarkSapling/0.png deleted file mode 100644 index 61ebd75108..0000000000 Binary files a/front/public/images/large/harvestcraft/pampaperbarkSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamparsnipCrop/0.png b/front/public/images/large/harvestcraft/pamparsnipCrop/0.png deleted file mode 100644 index 30c672ccd7..0000000000 Binary files a/front/public/images/large/harvestcraft/pamparsnipCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampavlovaCake/0.png b/front/public/images/large/harvestcraft/pampavlovaCake/0.png deleted file mode 100644 index a569a8dbd5..0000000000 Binary files a/front/public/images/large/harvestcraft/pampavlovaCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampeachSapling/0.png b/front/public/images/large/harvestcraft/pampeachSapling/0.png deleted file mode 100644 index eeeff2a7a8..0000000000 Binary files a/front/public/images/large/harvestcraft/pampeachSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampeanutCrop/0.png b/front/public/images/large/harvestcraft/pampeanutCrop/0.png deleted file mode 100644 index a08ed7a3c5..0000000000 Binary files a/front/public/images/large/harvestcraft/pampeanutCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampearSapling/0.png b/front/public/images/large/harvestcraft/pampearSapling/0.png deleted file mode 100644 index 75aee0f99f..0000000000 Binary files a/front/public/images/large/harvestcraft/pampearSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampeasCrop/0.png b/front/public/images/large/harvestcraft/pampeasCrop/0.png deleted file mode 100644 index 7447fe3597..0000000000 Binary files a/front/public/images/large/harvestcraft/pampeasCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampecanSapling/0.png b/front/public/images/large/harvestcraft/pampecanSapling/0.png deleted file mode 100644 index 315f706989..0000000000 Binary files a/front/public/images/large/harvestcraft/pampecanSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampeppercornSapling/0.png b/front/public/images/large/harvestcraft/pampeppercornSapling/0.png deleted file mode 100644 index f9abef7ace..0000000000 Binary files a/front/public/images/large/harvestcraft/pampeppercornSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampersimmonSapling/0.png b/front/public/images/large/harvestcraft/pampersimmonSapling/0.png deleted file mode 100644 index dbb2588403..0000000000 Binary files a/front/public/images/large/harvestcraft/pampersimmonSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampineappleCrop/0.png b/front/public/images/large/harvestcraft/pampineappleCrop/0.png deleted file mode 100644 index 00c947ba83..0000000000 Binary files a/front/public/images/large/harvestcraft/pampineappleCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampineappleupsidedownCake/0.png b/front/public/images/large/harvestcraft/pampineappleupsidedownCake/0.png deleted file mode 100644 index 44052a95fc..0000000000 Binary files a/front/public/images/large/harvestcraft/pampineappleupsidedownCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampistachioSapling/0.png b/front/public/images/large/harvestcraft/pampistachioSapling/0.png deleted file mode 100644 index 7b3aac49d4..0000000000 Binary files a/front/public/images/large/harvestcraft/pampistachioSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamplumSapling/0.png b/front/public/images/large/harvestcraft/pamplumSapling/0.png deleted file mode 100644 index f499d02386..0000000000 Binary files a/front/public/images/large/harvestcraft/pamplumSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampomegranateSapling/0.png b/front/public/images/large/harvestcraft/pampomegranateSapling/0.png deleted file mode 100644 index 115fe4489b..0000000000 Binary files a/front/public/images/large/harvestcraft/pampomegranateSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pampumpkincheeseCake/0.png b/front/public/images/large/harvestcraft/pampumpkincheeseCake/0.png deleted file mode 100644 index 43ded7bc43..0000000000 Binary files a/front/public/images/large/harvestcraft/pampumpkincheeseCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamradishCrop/0.png b/front/public/images/large/harvestcraft/pamradishCrop/0.png deleted file mode 100644 index a7bf16fa6b..0000000000 Binary files a/front/public/images/large/harvestcraft/pamradishCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamraspberryCrop/0.png b/front/public/images/large/harvestcraft/pamraspberryCrop/0.png deleted file mode 100644 index 1f3bbc9b5d..0000000000 Binary files a/front/public/images/large/harvestcraft/pamraspberryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamredvelvetCake/0.png b/front/public/images/large/harvestcraft/pamredvelvetCake/0.png deleted file mode 100644 index 50252d5c7c..0000000000 Binary files a/front/public/images/large/harvestcraft/pamredvelvetCake/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamrhubarbCrop/0.png b/front/public/images/large/harvestcraft/pamrhubarbCrop/0.png deleted file mode 100644 index bc3831571d..0000000000 Binary files a/front/public/images/large/harvestcraft/pamrhubarbCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamriceCrop/0.png b/front/public/images/large/harvestcraft/pamriceCrop/0.png deleted file mode 100644 index 15bb8ff32f..0000000000 Binary files a/front/public/images/large/harvestcraft/pamriceCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamrutabagaCrop/0.png b/front/public/images/large/harvestcraft/pamrutabagaCrop/0.png deleted file mode 100644 index 67b421a146..0000000000 Binary files a/front/public/images/large/harvestcraft/pamrutabagaCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamryeCrop/0.png b/front/public/images/large/harvestcraft/pamryeCrop/0.png deleted file mode 100644 index 2b17139763..0000000000 Binary files a/front/public/images/large/harvestcraft/pamryeCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamscallionCrop/0.png b/front/public/images/large/harvestcraft/pamscallionCrop/0.png deleted file mode 100644 index 41deb9b66d..0000000000 Binary files a/front/public/images/large/harvestcraft/pamscallionCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamseaweedCrop/0.png b/front/public/images/large/harvestcraft/pamseaweedCrop/0.png deleted file mode 100644 index 3240d7e88a..0000000000 Binary files a/front/public/images/large/harvestcraft/pamseaweedCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamsesameseedsCrop/0.png b/front/public/images/large/harvestcraft/pamsesameseedsCrop/0.png deleted file mode 100644 index 826ab1e609..0000000000 Binary files a/front/public/images/large/harvestcraft/pamsesameseedsCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamsoybeanCrop/0.png b/front/public/images/large/harvestcraft/pamsoybeanCrop/0.png deleted file mode 100644 index b59584e7be..0000000000 Binary files a/front/public/images/large/harvestcraft/pamsoybeanCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamspiceleafCrop/0.png b/front/public/images/large/harvestcraft/pamspiceleafCrop/0.png deleted file mode 100644 index 64533ed9bf..0000000000 Binary files a/front/public/images/large/harvestcraft/pamspiceleafCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamspinachCrop/0.png b/front/public/images/large/harvestcraft/pamspinachCrop/0.png deleted file mode 100644 index ce567ee7cb..0000000000 Binary files a/front/public/images/large/harvestcraft/pamspinachCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamstarfruitSapling/0.png b/front/public/images/large/harvestcraft/pamstarfruitSapling/0.png deleted file mode 100644 index 83631f937e..0000000000 Binary files a/front/public/images/large/harvestcraft/pamstarfruitSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamstrawberryCrop/0.png b/front/public/images/large/harvestcraft/pamstrawberryCrop/0.png deleted file mode 100644 index 070aa5ccc6..0000000000 Binary files a/front/public/images/large/harvestcraft/pamstrawberryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamsweetpotatoCrop/0.png b/front/public/images/large/harvestcraft/pamsweetpotatoCrop/0.png deleted file mode 100644 index 3a257bb4e6..0000000000 Binary files a/front/public/images/large/harvestcraft/pamsweetpotatoCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamtealeafCrop/0.png b/front/public/images/large/harvestcraft/pamtealeafCrop/0.png deleted file mode 100644 index e9f832e9a5..0000000000 Binary files a/front/public/images/large/harvestcraft/pamtealeafCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamtomatoCrop/0.png b/front/public/images/large/harvestcraft/pamtomatoCrop/0.png deleted file mode 100644 index ef74ace1ed..0000000000 Binary files a/front/public/images/large/harvestcraft/pamtomatoCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamturnipCrop/0.png b/front/public/images/large/harvestcraft/pamturnipCrop/0.png deleted file mode 100644 index 045673e221..0000000000 Binary files a/front/public/images/large/harvestcraft/pamturnipCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamvanillabeanSapling/0.png b/front/public/images/large/harvestcraft/pamvanillabeanSapling/0.png deleted file mode 100644 index fe97e69457..0000000000 Binary files a/front/public/images/large/harvestcraft/pamvanillabeanSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamwalnutSapling/0.png b/front/public/images/large/harvestcraft/pamwalnutSapling/0.png deleted file mode 100644 index e9ced760d5..0000000000 Binary files a/front/public/images/large/harvestcraft/pamwalnutSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamwaterchestnutCrop/0.png b/front/public/images/large/harvestcraft/pamwaterchestnutCrop/0.png deleted file mode 100644 index 6466176026..0000000000 Binary files a/front/public/images/large/harvestcraft/pamwaterchestnutCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamwhitemushroomCrop/0.png b/front/public/images/large/harvestcraft/pamwhitemushroomCrop/0.png deleted file mode 100644 index 2121cd5be2..0000000000 Binary files a/front/public/images/large/harvestcraft/pamwhitemushroomCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamwintersquashCrop/0.png b/front/public/images/large/harvestcraft/pamwintersquashCrop/0.png deleted file mode 100644 index f23261ea38..0000000000 Binary files a/front/public/images/large/harvestcraft/pamwintersquashCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pamzucchiniCrop/0.png b/front/public/images/large/harvestcraft/pamzucchiniCrop/0.png deleted file mode 100644 index 7b183fdce4..0000000000 Binary files a/front/public/images/large/harvestcraft/pamzucchiniCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pancakesItem/0.png b/front/public/images/large/harvestcraft/pancakesItem/0.png deleted file mode 100644 index 264da17860..0000000000 Binary files a/front/public/images/large/harvestcraft/pancakesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/paneerItem/0.png b/front/public/images/large/harvestcraft/paneerItem/0.png deleted file mode 100644 index 2d7762df89..0000000000 Binary files a/front/public/images/large/harvestcraft/paneerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/paneertikkamasalaItem/0.png b/front/public/images/large/harvestcraft/paneertikkamasalaItem/0.png deleted file mode 100644 index 2d45e64ddc..0000000000 Binary files a/front/public/images/large/harvestcraft/paneertikkamasalaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/papayaItem/0.png b/front/public/images/large/harvestcraft/papayaItem/0.png deleted file mode 100644 index 6633568aac..0000000000 Binary files a/front/public/images/large/harvestcraft/papayaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/papayajellyItem/0.png b/front/public/images/large/harvestcraft/papayajellyItem/0.png deleted file mode 100644 index 9a40055769..0000000000 Binary files a/front/public/images/large/harvestcraft/papayajellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/papayajellysandwichItem/0.png b/front/public/images/large/harvestcraft/papayajellysandwichItem/0.png deleted file mode 100644 index c62a68feb5..0000000000 Binary files a/front/public/images/large/harvestcraft/papayajellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/papayajuiceItem/0.png b/front/public/images/large/harvestcraft/papayajuiceItem/0.png deleted file mode 100644 index 65a0f7c08e..0000000000 Binary files a/front/public/images/large/harvestcraft/papayajuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/papayasmoothieItem/0.png b/front/public/images/large/harvestcraft/papayasmoothieItem/0.png deleted file mode 100644 index 307b1e135b..0000000000 Binary files a/front/public/images/large/harvestcraft/papayasmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/papayayogurtItem/0.png b/front/public/images/large/harvestcraft/papayayogurtItem/0.png deleted file mode 100644 index 051eff7cc3..0000000000 Binary files a/front/public/images/large/harvestcraft/papayayogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/parsnipItem/0.png b/front/public/images/large/harvestcraft/parsnipItem/0.png deleted file mode 100644 index 01c67b003e..0000000000 Binary files a/front/public/images/large/harvestcraft/parsnipItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/parsnipseedItem/0.png b/front/public/images/large/harvestcraft/parsnipseedItem/0.png deleted file mode 100644 index ff95523fd4..0000000000 Binary files a/front/public/images/large/harvestcraft/parsnipseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pastaItem/0.png b/front/public/images/large/harvestcraft/pastaItem/0.png deleted file mode 100644 index abf483cfcd..0000000000 Binary files a/front/public/images/large/harvestcraft/pastaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pavlovaItem/0.png b/front/public/images/large/harvestcraft/pavlovaItem/0.png deleted file mode 100644 index 4ea522715e..0000000000 Binary files a/front/public/images/large/harvestcraft/pavlovaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pbandjItem/0.png b/front/public/images/large/harvestcraft/pbandjItem/0.png deleted file mode 100644 index fb6d7c76fa..0000000000 Binary files a/front/public/images/large/harvestcraft/pbandjItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peaandhamsoupItem/0.png b/front/public/images/large/harvestcraft/peaandhamsoupItem/0.png deleted file mode 100644 index 4fe7df4215..0000000000 Binary files a/front/public/images/large/harvestcraft/peaandhamsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachItem/0.png b/front/public/images/large/harvestcraft/peachItem/0.png deleted file mode 100644 index a3f26da174..0000000000 Binary files a/front/public/images/large/harvestcraft/peachItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachcobblerItem/0.png b/front/public/images/large/harvestcraft/peachcobblerItem/0.png deleted file mode 100644 index ae3082929a..0000000000 Binary files a/front/public/images/large/harvestcraft/peachcobblerItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachesandcreamoatmealItem/0.png b/front/public/images/large/harvestcraft/peachesandcreamoatmealItem/0.png deleted file mode 100644 index 72b6c0228e..0000000000 Binary files a/front/public/images/large/harvestcraft/peachesandcreamoatmealItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachjellyItem/0.png b/front/public/images/large/harvestcraft/peachjellyItem/0.png deleted file mode 100644 index 397f52dc5f..0000000000 Binary files a/front/public/images/large/harvestcraft/peachjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachjellysandwichItem/0.png b/front/public/images/large/harvestcraft/peachjellysandwichItem/0.png deleted file mode 100644 index 57abebabc6..0000000000 Binary files a/front/public/images/large/harvestcraft/peachjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachjuiceItem/0.png b/front/public/images/large/harvestcraft/peachjuiceItem/0.png deleted file mode 100644 index 024bc3b0cd..0000000000 Binary files a/front/public/images/large/harvestcraft/peachjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachsmoothieItem/0.png b/front/public/images/large/harvestcraft/peachsmoothieItem/0.png deleted file mode 100644 index d799ba7cec..0000000000 Binary files a/front/public/images/large/harvestcraft/peachsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peachyogurtItem/0.png b/front/public/images/large/harvestcraft/peachyogurtItem/0.png deleted file mode 100644 index 41fbc2ed8b..0000000000 Binary files a/front/public/images/large/harvestcraft/peachyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peanutItem/0.png b/front/public/images/large/harvestcraft/peanutItem/0.png deleted file mode 100644 index 6d38613ca7..0000000000 Binary files a/front/public/images/large/harvestcraft/peanutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peanutbutterItem/0.png b/front/public/images/large/harvestcraft/peanutbutterItem/0.png deleted file mode 100644 index 907655eac3..0000000000 Binary files a/front/public/images/large/harvestcraft/peanutbutterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peanutbuttercookiesItem/0.png b/front/public/images/large/harvestcraft/peanutbuttercookiesItem/0.png deleted file mode 100644 index 563a4327d4..0000000000 Binary files a/front/public/images/large/harvestcraft/peanutbuttercookiesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peanutseedItem/0.png b/front/public/images/large/harvestcraft/peanutseedItem/0.png deleted file mode 100644 index 910c8826d3..0000000000 Binary files a/front/public/images/large/harvestcraft/peanutseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pearItem/0.png b/front/public/images/large/harvestcraft/pearItem/0.png deleted file mode 100644 index 89082d4d71..0000000000 Binary files a/front/public/images/large/harvestcraft/pearItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pearjellyItem/0.png b/front/public/images/large/harvestcraft/pearjellyItem/0.png deleted file mode 100644 index f39ab5b4d7..0000000000 Binary files a/front/public/images/large/harvestcraft/pearjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pearjellysandwichItem/0.png b/front/public/images/large/harvestcraft/pearjellysandwichItem/0.png deleted file mode 100644 index 771826a520..0000000000 Binary files a/front/public/images/large/harvestcraft/pearjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pearjuiceItem/0.png b/front/public/images/large/harvestcraft/pearjuiceItem/0.png deleted file mode 100644 index f83c6b7c38..0000000000 Binary files a/front/public/images/large/harvestcraft/pearjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pearsmoothieItem/0.png b/front/public/images/large/harvestcraft/pearsmoothieItem/0.png deleted file mode 100644 index 3eccd77278..0000000000 Binary files a/front/public/images/large/harvestcraft/pearsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pearyogurtItem/0.png b/front/public/images/large/harvestcraft/pearyogurtItem/0.png deleted file mode 100644 index d398969ec6..0000000000 Binary files a/front/public/images/large/harvestcraft/pearyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peasItem/0.png b/front/public/images/large/harvestcraft/peasItem/0.png deleted file mode 100644 index 26af3a931b..0000000000 Binary files a/front/public/images/large/harvestcraft/peasItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peasandceleryItem/0.png b/front/public/images/large/harvestcraft/peasandceleryItem/0.png deleted file mode 100644 index ca2815d412..0000000000 Binary files a/front/public/images/large/harvestcraft/peasandceleryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peasseedItem/0.png b/front/public/images/large/harvestcraft/peasseedItem/0.png deleted file mode 100644 index 277be18cb9..0000000000 Binary files a/front/public/images/large/harvestcraft/peasseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pecanItem/0.png b/front/public/images/large/harvestcraft/pecanItem/0.png deleted file mode 100644 index d0dcbae9cb..0000000000 Binary files a/front/public/images/large/harvestcraft/pecanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pecanpieItem/0.png b/front/public/images/large/harvestcraft/pecanpieItem/0.png deleted file mode 100644 index 0babe79b06..0000000000 Binary files a/front/public/images/large/harvestcraft/pecanpieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peppercornItem/0.png b/front/public/images/large/harvestcraft/peppercornItem/0.png deleted file mode 100644 index 76a924d234..0000000000 Binary files a/front/public/images/large/harvestcraft/peppercornItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/peppermintItem/0.png b/front/public/images/large/harvestcraft/peppermintItem/0.png deleted file mode 100644 index 3c701cc8a7..0000000000 Binary files a/front/public/images/large/harvestcraft/peppermintItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pepperoniItem/0.png b/front/public/images/large/harvestcraft/pepperoniItem/0.png deleted file mode 100644 index 7af6df91b4..0000000000 Binary files a/front/public/images/large/harvestcraft/pepperoniItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/perchrawItem/0.png b/front/public/images/large/harvestcraft/perchrawItem/0.png deleted file mode 100644 index bbf00af988..0000000000 Binary files a/front/public/images/large/harvestcraft/perchrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/persimmonItem/0.png b/front/public/images/large/harvestcraft/persimmonItem/0.png deleted file mode 100644 index 9b70d51ddf..0000000000 Binary files a/front/public/images/large/harvestcraft/persimmonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/persimmonjellyItem/0.png b/front/public/images/large/harvestcraft/persimmonjellyItem/0.png deleted file mode 100644 index e32e3cda1e..0000000000 Binary files a/front/public/images/large/harvestcraft/persimmonjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/persimmonjellysandwichItem/0.png b/front/public/images/large/harvestcraft/persimmonjellysandwichItem/0.png deleted file mode 100644 index ee67ef58dc..0000000000 Binary files a/front/public/images/large/harvestcraft/persimmonjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/persimmonjuiceItem/0.png b/front/public/images/large/harvestcraft/persimmonjuiceItem/0.png deleted file mode 100644 index 5a91b50cde..0000000000 Binary files a/front/public/images/large/harvestcraft/persimmonjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/persimmonsmoothieItem/0.png b/front/public/images/large/harvestcraft/persimmonsmoothieItem/0.png deleted file mode 100644 index 61b4efa8f7..0000000000 Binary files a/front/public/images/large/harvestcraft/persimmonsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/persimmonyogurtItem/0.png b/front/public/images/large/harvestcraft/persimmonyogurtItem/0.png deleted file mode 100644 index 98a310af4c..0000000000 Binary files a/front/public/images/large/harvestcraft/persimmonyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pickledbeetsItem/0.png b/front/public/images/large/harvestcraft/pickledbeetsItem/0.png deleted file mode 100644 index b4a535965e..0000000000 Binary files a/front/public/images/large/harvestcraft/pickledbeetsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pickledonionsItem/0.png b/front/public/images/large/harvestcraft/pickledonionsItem/0.png deleted file mode 100644 index c473ed07c7..0000000000 Binary files a/front/public/images/large/harvestcraft/pickledonionsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/picklesItem/0.png b/front/public/images/large/harvestcraft/picklesItem/0.png deleted file mode 100644 index a60419b599..0000000000 Binary files a/front/public/images/large/harvestcraft/picklesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pinacoladaItem/0.png b/front/public/images/large/harvestcraft/pinacoladaItem/0.png deleted file mode 100644 index aff4200563..0000000000 Binary files a/front/public/images/large/harvestcraft/pinacoladaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pineappleItem/0.png b/front/public/images/large/harvestcraft/pineappleItem/0.png deleted file mode 100644 index ce0fc12e97..0000000000 Binary files a/front/public/images/large/harvestcraft/pineappleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pineapplehamItem/0.png b/front/public/images/large/harvestcraft/pineapplehamItem/0.png deleted file mode 100644 index 9be7567b6c..0000000000 Binary files a/front/public/images/large/harvestcraft/pineapplehamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pineappleseedItem/0.png b/front/public/images/large/harvestcraft/pineappleseedItem/0.png deleted file mode 100644 index 1f32480955..0000000000 Binary files a/front/public/images/large/harvestcraft/pineappleseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pineappleupsidedowncakeItem/0.png b/front/public/images/large/harvestcraft/pineappleupsidedowncakeItem/0.png deleted file mode 100644 index e2bfe52d62..0000000000 Binary files a/front/public/images/large/harvestcraft/pineappleupsidedowncakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pineappleyogurtItem/0.png b/front/public/images/large/harvestcraft/pineappleyogurtItem/0.png deleted file mode 100644 index 72dd7191b3..0000000000 Binary files a/front/public/images/large/harvestcraft/pineappleyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pistachioItem/0.png b/front/public/images/large/harvestcraft/pistachioItem/0.png deleted file mode 100644 index 7f339907b3..0000000000 Binary files a/front/public/images/large/harvestcraft/pistachioItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pistachiobakedsalmonItem/0.png b/front/public/images/large/harvestcraft/pistachiobakedsalmonItem/0.png deleted file mode 100644 index 92e17a889a..0000000000 Binary files a/front/public/images/large/harvestcraft/pistachiobakedsalmonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pistachiobutterItem/0.png b/front/public/images/large/harvestcraft/pistachiobutterItem/0.png deleted file mode 100644 index ef46ce724e..0000000000 Binary files a/front/public/images/large/harvestcraft/pistachiobutterItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pistachioicecreamItem/0.png b/front/public/images/large/harvestcraft/pistachioicecreamItem/0.png deleted file mode 100644 index e9791f1d47..0000000000 Binary files a/front/public/images/large/harvestcraft/pistachioicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pizzaItem/0.png b/front/public/images/large/harvestcraft/pizzaItem/0.png deleted file mode 100644 index c0a0ca4348..0000000000 Binary files a/front/public/images/large/harvestcraft/pizzaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/plainyogurtItem/0.png b/front/public/images/large/harvestcraft/plainyogurtItem/0.png deleted file mode 100644 index 2bac5d59c6..0000000000 Binary files a/front/public/images/large/harvestcraft/plainyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ploughmanslunchItem/0.png b/front/public/images/large/harvestcraft/ploughmanslunchItem/0.png deleted file mode 100644 index 5ab3c0d04d..0000000000 Binary files a/front/public/images/large/harvestcraft/ploughmanslunchItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/plumItem/0.png b/front/public/images/large/harvestcraft/plumItem/0.png deleted file mode 100644 index 67e7b71348..0000000000 Binary files a/front/public/images/large/harvestcraft/plumItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/plumjellyItem/0.png b/front/public/images/large/harvestcraft/plumjellyItem/0.png deleted file mode 100644 index e819796c05..0000000000 Binary files a/front/public/images/large/harvestcraft/plumjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/plumjellysandwichItem/0.png b/front/public/images/large/harvestcraft/plumjellysandwichItem/0.png deleted file mode 100644 index 2259bda452..0000000000 Binary files a/front/public/images/large/harvestcraft/plumjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/plumjuiceItem/0.png b/front/public/images/large/harvestcraft/plumjuiceItem/0.png deleted file mode 100644 index 207c69aad7..0000000000 Binary files a/front/public/images/large/harvestcraft/plumjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/plumsmoothieItem/0.png b/front/public/images/large/harvestcraft/plumsmoothieItem/0.png deleted file mode 100644 index f8a3455ef6..0000000000 Binary files a/front/public/images/large/harvestcraft/plumsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/plumyogurtItem/0.png b/front/public/images/large/harvestcraft/plumyogurtItem/0.png deleted file mode 100644 index db32a40a5e..0000000000 Binary files a/front/public/images/large/harvestcraft/plumyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/poachedpearItem/0.png b/front/public/images/large/harvestcraft/poachedpearItem/0.png deleted file mode 100644 index 9729f72fea..0000000000 Binary files a/front/public/images/large/harvestcraft/poachedpearItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pomegranateItem/0.png b/front/public/images/large/harvestcraft/pomegranateItem/0.png deleted file mode 100644 index 40c80bc33c..0000000000 Binary files a/front/public/images/large/harvestcraft/pomegranateItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pomegranatejellyItem/0.png b/front/public/images/large/harvestcraft/pomegranatejellyItem/0.png deleted file mode 100644 index cd02c5179d..0000000000 Binary files a/front/public/images/large/harvestcraft/pomegranatejellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pomegranatejellysandwichItem/0.png b/front/public/images/large/harvestcraft/pomegranatejellysandwichItem/0.png deleted file mode 100644 index 7e21343aaa..0000000000 Binary files a/front/public/images/large/harvestcraft/pomegranatejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pomegranatejuiceItem/0.png b/front/public/images/large/harvestcraft/pomegranatejuiceItem/0.png deleted file mode 100644 index 42d3d1cc7a..0000000000 Binary files a/front/public/images/large/harvestcraft/pomegranatejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pomegranatesmoothieItem/0.png b/front/public/images/large/harvestcraft/pomegranatesmoothieItem/0.png deleted file mode 100644 index e4005c7483..0000000000 Binary files a/front/public/images/large/harvestcraft/pomegranatesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pomegranateyogurtItem/0.png b/front/public/images/large/harvestcraft/pomegranateyogurtItem/0.png deleted file mode 100644 index 8039277aff..0000000000 Binary files a/front/public/images/large/harvestcraft/pomegranateyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/popcornItem/0.png b/front/public/images/large/harvestcraft/popcornItem/0.png deleted file mode 100644 index b0b0387d21..0000000000 Binary files a/front/public/images/large/harvestcraft/popcornItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/porklettucewrapItem/0.png b/front/public/images/large/harvestcraft/porklettucewrapItem/0.png deleted file mode 100644 index 41cbccc7c3..0000000000 Binary files a/front/public/images/large/harvestcraft/porklettucewrapItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/porklomeinItem/0.png b/front/public/images/large/harvestcraft/porklomeinItem/0.png deleted file mode 100644 index 2fc3500496..0000000000 Binary files a/front/public/images/large/harvestcraft/porklomeinItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/porksausageItem/0.png b/front/public/images/large/harvestcraft/porksausageItem/0.png deleted file mode 100644 index 453b5bcbd1..0000000000 Binary files a/front/public/images/large/harvestcraft/porksausageItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pot/0.png b/front/public/images/large/harvestcraft/pot/0.png deleted file mode 100644 index ee01796225..0000000000 Binary files a/front/public/images/large/harvestcraft/pot/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/potItem/0.png b/front/public/images/large/harvestcraft/potItem/0.png deleted file mode 100644 index 0b652d64f4..0000000000 Binary files a/front/public/images/large/harvestcraft/potItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/potatoandcheesepirogiItem/0.png b/front/public/images/large/harvestcraft/potatoandcheesepirogiItem/0.png deleted file mode 100644 index 437cf14985..0000000000 Binary files a/front/public/images/large/harvestcraft/potatoandcheesepirogiItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/potatoandleeksoupItem/0.png b/front/public/images/large/harvestcraft/potatoandleeksoupItem/0.png deleted file mode 100644 index 470a84f139..0000000000 Binary files a/front/public/images/large/harvestcraft/potatoandleeksoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/potatocakesItem/0.png b/front/public/images/large/harvestcraft/potatocakesItem/0.png deleted file mode 100644 index dfa9ed2018..0000000000 Binary files a/front/public/images/large/harvestcraft/potatocakesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/potatosaladItem/0.png b/front/public/images/large/harvestcraft/potatosaladItem/0.png deleted file mode 100644 index 8c326247e1..0000000000 Binary files a/front/public/images/large/harvestcraft/potatosaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/potatosoupItem/0.png b/front/public/images/large/harvestcraft/potatosoupItem/0.png deleted file mode 100644 index f3faedaa9c..0000000000 Binary files a/front/public/images/large/harvestcraft/potatosoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/potroastItem/0.png b/front/public/images/large/harvestcraft/potroastItem/0.png deleted file mode 100644 index 8ac53dd91f..0000000000 Binary files a/front/public/images/large/harvestcraft/potroastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/powdereddonutItem/0.png b/front/public/images/large/harvestcraft/powdereddonutItem/0.png deleted file mode 100644 index ecf4c41e0c..0000000000 Binary files a/front/public/images/large/harvestcraft/powdereddonutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pralinesItem/0.png b/front/public/images/large/harvestcraft/pralinesItem/0.png deleted file mode 100644 index 49085adc51..0000000000 Binary files a/front/public/images/large/harvestcraft/pralinesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/presser/0.png b/front/public/images/large/harvestcraft/presser/0.png deleted file mode 100644 index db84ebc888..0000000000 Binary files a/front/public/images/large/harvestcraft/presser/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pumpkinbreadItem/0.png b/front/public/images/large/harvestcraft/pumpkinbreadItem/0.png deleted file mode 100644 index 52c24dc44e..0000000000 Binary files a/front/public/images/large/harvestcraft/pumpkinbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pumpkincheesecakeItem/0.png b/front/public/images/large/harvestcraft/pumpkincheesecakeItem/0.png deleted file mode 100644 index c3347b3686..0000000000 Binary files a/front/public/images/large/harvestcraft/pumpkincheesecakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pumpkinmuffinItem/0.png b/front/public/images/large/harvestcraft/pumpkinmuffinItem/0.png deleted file mode 100644 index ad9892e7b7..0000000000 Binary files a/front/public/images/large/harvestcraft/pumpkinmuffinItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pumpkinoatsconesItem/0.png b/front/public/images/large/harvestcraft/pumpkinoatsconesItem/0.png deleted file mode 100644 index c6f030bd88..0000000000 Binary files a/front/public/images/large/harvestcraft/pumpkinoatsconesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pumpkinsoupItem/0.png b/front/public/images/large/harvestcraft/pumpkinsoupItem/0.png deleted file mode 100644 index a9552295b7..0000000000 Binary files a/front/public/images/large/harvestcraft/pumpkinsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/pumpkinyogurtItem/0.png b/front/public/images/large/harvestcraft/pumpkinyogurtItem/0.png deleted file mode 100644 index 07565402a4..0000000000 Binary files a/front/public/images/large/harvestcraft/pumpkinyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/queenbeeItem/0.png b/front/public/images/large/harvestcraft/queenbeeItem/0.png deleted file mode 100644 index ac8c6df45e..0000000000 Binary files a/front/public/images/large/harvestcraft/queenbeeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/queenbeeItem/18.png b/front/public/images/large/harvestcraft/queenbeeItem/18.png deleted file mode 100644 index ac8c6df45e..0000000000 Binary files a/front/public/images/large/harvestcraft/queenbeeItem/18.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/quern/0.png b/front/public/images/large/harvestcraft/quern/0.png deleted file mode 100644 index 9289191d05..0000000000 Binary files a/front/public/images/large/harvestcraft/quern/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/quernon/0.png b/front/public/images/large/harvestcraft/quernon/0.png deleted file mode 100644 index 9289191d05..0000000000 Binary files a/front/public/images/large/harvestcraft/quernon/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rabbitcookedItem/0.png b/front/public/images/large/harvestcraft/rabbitcookedItem/0.png deleted file mode 100644 index 3af5a584c9..0000000000 Binary files a/front/public/images/large/harvestcraft/rabbitcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rabbitrawItem/0.png b/front/public/images/large/harvestcraft/rabbitrawItem/0.png deleted file mode 100644 index fab4cfc348..0000000000 Binary files a/front/public/images/large/harvestcraft/rabbitrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/radishItem/0.png b/front/public/images/large/harvestcraft/radishItem/0.png deleted file mode 100644 index 68886507cd..0000000000 Binary files a/front/public/images/large/harvestcraft/radishItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/radishseedItem/0.png b/front/public/images/large/harvestcraft/radishseedItem/0.png deleted file mode 100644 index 3730554c9c..0000000000 Binary files a/front/public/images/large/harvestcraft/radishseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rainbowcurryItem/0.png b/front/public/images/large/harvestcraft/rainbowcurryItem/0.png deleted file mode 100644 index 9f2bd16e57..0000000000 Binary files a/front/public/images/large/harvestcraft/rainbowcurryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raisincookiesItem/0.png b/front/public/images/large/harvestcraft/raisincookiesItem/0.png deleted file mode 100644 index 97589969ea..0000000000 Binary files a/front/public/images/large/harvestcraft/raisincookiesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raisinsItem/0.png b/front/public/images/large/harvestcraft/raisinsItem/0.png deleted file mode 100644 index 8542ea0d22..0000000000 Binary files a/front/public/images/large/harvestcraft/raisinsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/randomtacoItem/0.png b/front/public/images/large/harvestcraft/randomtacoItem/0.png deleted file mode 100644 index 3fa7281e20..0000000000 Binary files a/front/public/images/large/harvestcraft/randomtacoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberryItem/0.png b/front/public/images/large/harvestcraft/raspberryItem/0.png deleted file mode 100644 index f2c42f741f..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberryicedteaItem/0.png b/front/public/images/large/harvestcraft/raspberryicedteaItem/0.png deleted file mode 100644 index 6db59411bc..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberryicedteaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberryjellyItem/0.png b/front/public/images/large/harvestcraft/raspberryjellyItem/0.png deleted file mode 100644 index 22d7835023..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberryjellysandwichItem/0.png b/front/public/images/large/harvestcraft/raspberryjellysandwichItem/0.png deleted file mode 100644 index cfe8b735df..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberryjuiceItem/0.png b/front/public/images/large/harvestcraft/raspberryjuiceItem/0.png deleted file mode 100644 index b41452be01..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberrypieItem/0.png b/front/public/images/large/harvestcraft/raspberrypieItem/0.png deleted file mode 100644 index 5fac2b3d50..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberryseedItem/0.png b/front/public/images/large/harvestcraft/raspberryseedItem/0.png deleted file mode 100644 index 3e8094dfe1..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberrysmoothieItem/0.png b/front/public/images/large/harvestcraft/raspberrysmoothieItem/0.png deleted file mode 100644 index a7bd156926..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberrytrifleItem/0.png b/front/public/images/large/harvestcraft/raspberrytrifleItem/0.png deleted file mode 100644 index e7b0205948..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberrytrifleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/raspberryyogurtItem/0.png b/front/public/images/large/harvestcraft/raspberryyogurtItem/0.png deleted file mode 100644 index 8735c27ba5..0000000000 Binary files a/front/public/images/large/harvestcraft/raspberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/redvelvetcakeItem/0.png b/front/public/images/large/harvestcraft/redvelvetcakeItem/0.png deleted file mode 100644 index 5c33c8f237..0000000000 Binary files a/front/public/images/large/harvestcraft/redvelvetcakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/refriedbeansItem/0.png b/front/public/images/large/harvestcraft/refriedbeansItem/0.png deleted file mode 100644 index 190adf8876..0000000000 Binary files a/front/public/images/large/harvestcraft/refriedbeansItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rhubarbItem/0.png b/front/public/images/large/harvestcraft/rhubarbItem/0.png deleted file mode 100644 index 546f850dd1..0000000000 Binary files a/front/public/images/large/harvestcraft/rhubarbItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rhubarbseedItem/0.png b/front/public/images/large/harvestcraft/rhubarbseedItem/0.png deleted file mode 100644 index 9a931c8ec2..0000000000 Binary files a/front/public/images/large/harvestcraft/rhubarbseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/riceItem/0.png b/front/public/images/large/harvestcraft/riceItem/0.png deleted file mode 100644 index 191beefcf8..0000000000 Binary files a/front/public/images/large/harvestcraft/riceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ricecakeItem/0.png b/front/public/images/large/harvestcraft/ricecakeItem/0.png deleted file mode 100644 index 276d543118..0000000000 Binary files a/front/public/images/large/harvestcraft/ricecakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/riceseedItem/0.png b/front/public/images/large/harvestcraft/riceseedItem/0.png deleted file mode 100644 index adb6a6fcd7..0000000000 Binary files a/front/public/images/large/harvestcraft/riceseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ricesoupItem/0.png b/front/public/images/large/harvestcraft/ricesoupItem/0.png deleted file mode 100644 index a0041eb25f..0000000000 Binary files a/front/public/images/large/harvestcraft/ricesoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/roastchickenItem/0.png b/front/public/images/large/harvestcraft/roastchickenItem/0.png deleted file mode 100644 index 2d1ad61d6d..0000000000 Binary files a/front/public/images/large/harvestcraft/roastchickenItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/roastedchestnutItem/0.png b/front/public/images/large/harvestcraft/roastedchestnutItem/0.png deleted file mode 100644 index 464e733494..0000000000 Binary files a/front/public/images/large/harvestcraft/roastedchestnutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/roastedpumpkinseedsItem/0.png b/front/public/images/large/harvestcraft/roastedpumpkinseedsItem/0.png deleted file mode 100644 index 087551422d..0000000000 Binary files a/front/public/images/large/harvestcraft/roastedpumpkinseedsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/roastedrootveggiemedleyItem/0.png b/front/public/images/large/harvestcraft/roastedrootveggiemedleyItem/0.png deleted file mode 100644 index 02cf56b98f..0000000000 Binary files a/front/public/images/large/harvestcraft/roastedrootveggiemedleyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/roastpotatoesItem/0.png b/front/public/images/large/harvestcraft/roastpotatoesItem/0.png deleted file mode 100644 index b55853a452..0000000000 Binary files a/front/public/images/large/harvestcraft/roastpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rootbeersodaItem/0.png b/front/public/images/large/harvestcraft/rootbeersodaItem/0.png deleted file mode 100644 index 86bc793eea..0000000000 Binary files a/front/public/images/large/harvestcraft/rootbeersodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/royaljellyItem/0.png b/front/public/images/large/harvestcraft/royaljellyItem/0.png deleted file mode 100644 index 8906041e97..0000000000 Binary files a/front/public/images/large/harvestcraft/royaljellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rutabagaItem/0.png b/front/public/images/large/harvestcraft/rutabagaItem/0.png deleted file mode 100644 index d909525e3f..0000000000 Binary files a/front/public/images/large/harvestcraft/rutabagaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/rutabagaseedItem/0.png b/front/public/images/large/harvestcraft/rutabagaseedItem/0.png deleted file mode 100644 index 20b6b74423..0000000000 Binary files a/front/public/images/large/harvestcraft/rutabagaseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ryeItem/0.png b/front/public/images/large/harvestcraft/ryeItem/0.png deleted file mode 100644 index 51f2c72619..0000000000 Binary files a/front/public/images/large/harvestcraft/ryeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/ryeseedItem/0.png b/front/public/images/large/harvestcraft/ryeseedItem/0.png deleted file mode 100644 index 940ddfa1ee..0000000000 Binary files a/front/public/images/large/harvestcraft/ryeseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/saladdressingItem/0.png b/front/public/images/large/harvestcraft/saladdressingItem/0.png deleted file mode 100644 index ea0121623a..0000000000 Binary files a/front/public/images/large/harvestcraft/saladdressingItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/salmonpattiesItem/0.png b/front/public/images/large/harvestcraft/salmonpattiesItem/0.png deleted file mode 100644 index d594da1bc6..0000000000 Binary files a/front/public/images/large/harvestcraft/salmonpattiesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/salt/0.png b/front/public/images/large/harvestcraft/salt/0.png deleted file mode 100644 index e2b0cbe806..0000000000 Binary files a/front/public/images/large/harvestcraft/salt/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/saltItem/0.png b/front/public/images/large/harvestcraft/saltItem/0.png deleted file mode 100644 index f1c2a7a37f..0000000000 Binary files a/front/public/images/large/harvestcraft/saltItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/saltedsunflowerseedsItem/0.png b/front/public/images/large/harvestcraft/saltedsunflowerseedsItem/0.png deleted file mode 100644 index ecdb0d49ee..0000000000 Binary files a/front/public/images/large/harvestcraft/saltedsunflowerseedsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/saucepanItem/0.png b/front/public/images/large/harvestcraft/saucepanItem/0.png deleted file mode 100644 index 6ec275e694..0000000000 Binary files a/front/public/images/large/harvestcraft/saucepanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sausageItem/0.png b/front/public/images/large/harvestcraft/sausageItem/0.png deleted file mode 100644 index 3924beb43a..0000000000 Binary files a/front/public/images/large/harvestcraft/sausageItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sausageinbreadItem/0.png b/front/public/images/large/harvestcraft/sausageinbreadItem/0.png deleted file mode 100644 index fd9bb68a06..0000000000 Binary files a/front/public/images/large/harvestcraft/sausageinbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sausagerollItem/0.png b/front/public/images/large/harvestcraft/sausagerollItem/0.png deleted file mode 100644 index 7145487197..0000000000 Binary files a/front/public/images/large/harvestcraft/sausagerollItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/scallionItem/0.png b/front/public/images/large/harvestcraft/scallionItem/0.png deleted file mode 100644 index c71bfcce9b..0000000000 Binary files a/front/public/images/large/harvestcraft/scallionItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/scallionbakedpotatoItem/0.png b/front/public/images/large/harvestcraft/scallionbakedpotatoItem/0.png deleted file mode 100644 index 003015ba7d..0000000000 Binary files a/front/public/images/large/harvestcraft/scallionbakedpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/scallionseedItem/0.png b/front/public/images/large/harvestcraft/scallionseedItem/0.png deleted file mode 100644 index df17133384..0000000000 Binary files a/front/public/images/large/harvestcraft/scallionseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/scallopcookedItem/0.png b/front/public/images/large/harvestcraft/scallopcookedItem/0.png deleted file mode 100644 index 54e741a1de..0000000000 Binary files a/front/public/images/large/harvestcraft/scallopcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/scalloprawItem/0.png b/front/public/images/large/harvestcraft/scalloprawItem/0.png deleted file mode 100644 index 081b927add..0000000000 Binary files a/front/public/images/large/harvestcraft/scalloprawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/scrambledeggItem/0.png b/front/public/images/large/harvestcraft/scrambledeggItem/0.png deleted file mode 100644 index 4573b6b7e8..0000000000 Binary files a/front/public/images/large/harvestcraft/scrambledeggItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/seaweedItem/0.png b/front/public/images/large/harvestcraft/seaweedItem/0.png deleted file mode 100644 index a19c427f3d..0000000000 Binary files a/front/public/images/large/harvestcraft/seaweedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/seaweedseedItem/0.png b/front/public/images/large/harvestcraft/seaweedseedItem/0.png deleted file mode 100644 index 54cd148eb4..0000000000 Binary files a/front/public/images/large/harvestcraft/seaweedseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/seedsoupItem/0.png b/front/public/images/large/harvestcraft/seedsoupItem/0.png deleted file mode 100644 index 8981d9d0fd..0000000000 Binary files a/front/public/images/large/harvestcraft/seedsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sesameballItem/0.png b/front/public/images/large/harvestcraft/sesameballItem/0.png deleted file mode 100644 index 4132005724..0000000000 Binary files a/front/public/images/large/harvestcraft/sesameballItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sesameseedsItem/0.png b/front/public/images/large/harvestcraft/sesameseedsItem/0.png deleted file mode 100644 index 8ea30588bd..0000000000 Binary files a/front/public/images/large/harvestcraft/sesameseedsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sesameseedsseedItem/0.png b/front/public/images/large/harvestcraft/sesameseedsseedItem/0.png deleted file mode 100644 index 0f483e4ad1..0000000000 Binary files a/front/public/images/large/harvestcraft/sesameseedsseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sesamesnapsItem/0.png b/front/public/images/large/harvestcraft/sesamesnapsItem/0.png deleted file mode 100644 index 40ba253268..0000000000 Binary files a/front/public/images/large/harvestcraft/sesamesnapsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/shepardspieItem/0.png b/front/public/images/large/harvestcraft/shepardspieItem/0.png deleted file mode 100644 index ffe8fa5bb1..0000000000 Binary files a/front/public/images/large/harvestcraft/shepardspieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/shrimpcookedItem/0.png b/front/public/images/large/harvestcraft/shrimpcookedItem/0.png deleted file mode 100644 index bd9dd0e0b7..0000000000 Binary files a/front/public/images/large/harvestcraft/shrimpcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/shrimpokrahushpuppiesItem/0.png b/front/public/images/large/harvestcraft/shrimpokrahushpuppiesItem/0.png deleted file mode 100644 index 55da03e112..0000000000 Binary files a/front/public/images/large/harvestcraft/shrimpokrahushpuppiesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/shrimprawItem/0.png b/front/public/images/large/harvestcraft/shrimprawItem/0.png deleted file mode 100644 index 7cbe1d922d..0000000000 Binary files a/front/public/images/large/harvestcraft/shrimprawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/silkentofuItem/0.png b/front/public/images/large/harvestcraft/silkentofuItem/0.png deleted file mode 100644 index 122505c15b..0000000000 Binary files a/front/public/images/large/harvestcraft/silkentofuItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sink/0.png b/front/public/images/large/harvestcraft/sink/0.png deleted file mode 100644 index 6fcc78ab0f..0000000000 Binary files a/front/public/images/large/harvestcraft/sink/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sink/1.png b/front/public/images/large/harvestcraft/sink/1.png deleted file mode 100644 index 0b6407c785..0000000000 Binary files a/front/public/images/large/harvestcraft/sink/1.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sink/2.png b/front/public/images/large/harvestcraft/sink/2.png deleted file mode 100644 index 52e54f4b49..0000000000 Binary files a/front/public/images/large/harvestcraft/sink/2.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sink/3.png b/front/public/images/large/harvestcraft/sink/3.png deleted file mode 100644 index 357f997b1c..0000000000 Binary files a/front/public/images/large/harvestcraft/sink/3.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/skilletItem/0.png b/front/public/images/large/harvestcraft/skilletItem/0.png deleted file mode 100644 index 593ee2b592..0000000000 Binary files a/front/public/images/large/harvestcraft/skilletItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/snailcookedItem/0.png b/front/public/images/large/harvestcraft/snailcookedItem/0.png deleted file mode 100644 index 230e551fc5..0000000000 Binary files a/front/public/images/large/harvestcraft/snailcookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/snailrawItem/0.png b/front/public/images/large/harvestcraft/snailrawItem/0.png deleted file mode 100644 index 780d86c519..0000000000 Binary files a/front/public/images/large/harvestcraft/snailrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/snapperrawItem/0.png b/front/public/images/large/harvestcraft/snapperrawItem/0.png deleted file mode 100644 index a15bd638ed..0000000000 Binary files a/front/public/images/large/harvestcraft/snapperrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/snickersbarItem/0.png b/front/public/images/large/harvestcraft/snickersbarItem/0.png deleted file mode 100644 index 4f448bf33b..0000000000 Binary files a/front/public/images/large/harvestcraft/snickersbarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/softpretzelItem/0.png b/front/public/images/large/harvestcraft/softpretzelItem/0.png deleted file mode 100644 index 3cede8ebaa..0000000000 Binary files a/front/public/images/large/harvestcraft/softpretzelItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/softpretzelandmustardItem/0.png b/front/public/images/large/harvestcraft/softpretzelandmustardItem/0.png deleted file mode 100644 index c733b997c1..0000000000 Binary files a/front/public/images/large/harvestcraft/softpretzelandmustardItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/soybeanItem/0.png b/front/public/images/large/harvestcraft/soybeanItem/0.png deleted file mode 100644 index 1c3d571229..0000000000 Binary files a/front/public/images/large/harvestcraft/soybeanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/soybeanseedItem/0.png b/front/public/images/large/harvestcraft/soybeanseedItem/0.png deleted file mode 100644 index 8a302ab12a..0000000000 Binary files a/front/public/images/large/harvestcraft/soybeanseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/soymilkItem/0.png b/front/public/images/large/harvestcraft/soymilkItem/0.png deleted file mode 100644 index e6bc7d4e4e..0000000000 Binary files a/front/public/images/large/harvestcraft/soymilkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/soysauceItem/0.png b/front/public/images/large/harvestcraft/soysauceItem/0.png deleted file mode 100644 index 85281e256e..0000000000 Binary files a/front/public/images/large/harvestcraft/soysauceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spagettiItem/0.png b/front/public/images/large/harvestcraft/spagettiItem/0.png deleted file mode 100644 index 9e03633929..0000000000 Binary files a/front/public/images/large/harvestcraft/spagettiItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spagettiandmeatballsItem/0.png b/front/public/images/large/harvestcraft/spagettiandmeatballsItem/0.png deleted file mode 100644 index 02de517643..0000000000 Binary files a/front/public/images/large/harvestcraft/spagettiandmeatballsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spamcompressedsaltBlockalt/0.png b/front/public/images/large/harvestcraft/spamcompressedsaltBlockalt/0.png deleted file mode 100644 index 47eccb2255..0000000000 Binary files a/front/public/images/large/harvestcraft/spamcompressedsaltBlockalt/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spicebunItem/0.png b/front/public/images/large/harvestcraft/spicebunItem/0.png deleted file mode 100644 index 4727ac62b3..0000000000 Binary files a/front/public/images/large/harvestcraft/spicebunItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spiceleafItem/0.png b/front/public/images/large/harvestcraft/spiceleafItem/0.png deleted file mode 100644 index be65017bb7..0000000000 Binary files a/front/public/images/large/harvestcraft/spiceleafItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spiceleafseedItem/0.png b/front/public/images/large/harvestcraft/spiceleafseedItem/0.png deleted file mode 100644 index 9163822dfd..0000000000 Binary files a/front/public/images/large/harvestcraft/spiceleafseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spicygreensItem/0.png b/front/public/images/large/harvestcraft/spicygreensItem/0.png deleted file mode 100644 index 9f11fd13bc..0000000000 Binary files a/front/public/images/large/harvestcraft/spicygreensItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spicymustardporkItem/0.png b/front/public/images/large/harvestcraft/spicymustardporkItem/0.png deleted file mode 100644 index 9b890f21aa..0000000000 Binary files a/front/public/images/large/harvestcraft/spicymustardporkItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spidereyesoupItem/0.png b/front/public/images/large/harvestcraft/spidereyesoupItem/0.png deleted file mode 100644 index e7fc9ef2bc..0000000000 Binary files a/front/public/images/large/harvestcraft/spidereyesoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spinachItem/0.png b/front/public/images/large/harvestcraft/spinachItem/0.png deleted file mode 100644 index 05fb0039c4..0000000000 Binary files a/front/public/images/large/harvestcraft/spinachItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spinachpieItem/0.png b/front/public/images/large/harvestcraft/spinachpieItem/0.png deleted file mode 100644 index 9ac25ca986..0000000000 Binary files a/front/public/images/large/harvestcraft/spinachpieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spinachseedItem/0.png b/front/public/images/large/harvestcraft/spinachseedItem/0.png deleted file mode 100644 index db42bf5688..0000000000 Binary files a/front/public/images/large/harvestcraft/spinachseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/splitpeasoupItem/0.png b/front/public/images/large/harvestcraft/splitpeasoupItem/0.png deleted file mode 100644 index 430b8cb930..0000000000 Binary files a/front/public/images/large/harvestcraft/splitpeasoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/springsaladItem/0.png b/front/public/images/large/harvestcraft/springsaladItem/0.png deleted file mode 100644 index 9f7c609883..0000000000 Binary files a/front/public/images/large/harvestcraft/springsaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/spumoniicecreamItem/0.png b/front/public/images/large/harvestcraft/spumoniicecreamItem/0.png deleted file mode 100644 index e41ecc6d6f..0000000000 Binary files a/front/public/images/large/harvestcraft/spumoniicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/stalkgarden/0.png b/front/public/images/large/harvestcraft/stalkgarden/0.png deleted file mode 100644 index db38b5d545..0000000000 Binary files a/front/public/images/large/harvestcraft/stalkgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/starfruitItem/0.png b/front/public/images/large/harvestcraft/starfruitItem/0.png deleted file mode 100644 index 04d0864c5f..0000000000 Binary files a/front/public/images/large/harvestcraft/starfruitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/starfruitjellyItem/0.png b/front/public/images/large/harvestcraft/starfruitjellyItem/0.png deleted file mode 100644 index 6afabc7201..0000000000 Binary files a/front/public/images/large/harvestcraft/starfruitjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/starfruitjellysandwichItem/0.png b/front/public/images/large/harvestcraft/starfruitjellysandwichItem/0.png deleted file mode 100644 index e3f93e21ce..0000000000 Binary files a/front/public/images/large/harvestcraft/starfruitjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/starfruitjuiceItem/0.png b/front/public/images/large/harvestcraft/starfruitjuiceItem/0.png deleted file mode 100644 index c8dbacff06..0000000000 Binary files a/front/public/images/large/harvestcraft/starfruitjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/starfruitsmoothieItem/0.png b/front/public/images/large/harvestcraft/starfruitsmoothieItem/0.png deleted file mode 100644 index ed6fc7ee33..0000000000 Binary files a/front/public/images/large/harvestcraft/starfruitsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/starfruityogurtItem/0.png b/front/public/images/large/harvestcraft/starfruityogurtItem/0.png deleted file mode 100644 index 9c575d33b1..0000000000 Binary files a/front/public/images/large/harvestcraft/starfruityogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/steakandchipsItem/0.png b/front/public/images/large/harvestcraft/steakandchipsItem/0.png deleted file mode 100644 index 681eb64662..0000000000 Binary files a/front/public/images/large/harvestcraft/steakandchipsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/steamedpeasItem/0.png b/front/public/images/large/harvestcraft/steamedpeasItem/0.png deleted file mode 100644 index af273231b2..0000000000 Binary files a/front/public/images/large/harvestcraft/steamedpeasItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/steamedspinachItem/0.png b/front/public/images/large/harvestcraft/steamedspinachItem/0.png deleted file mode 100644 index 661dc3ad5e..0000000000 Binary files a/front/public/images/large/harvestcraft/steamedspinachItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/stockItem/0.png b/front/public/images/large/harvestcraft/stockItem/0.png deleted file mode 100644 index 5cc4edcfdb..0000000000 Binary files a/front/public/images/large/harvestcraft/stockItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberryItem/0.png b/front/public/images/large/harvestcraft/strawberryItem/0.png deleted file mode 100644 index 43e1fd5bd6..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberryicecreamItem/0.png b/front/public/images/large/harvestcraft/strawberryicecreamItem/0.png deleted file mode 100644 index 8e3eed4d5c..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberryicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberryjellyItem/0.png b/front/public/images/large/harvestcraft/strawberryjellyItem/0.png deleted file mode 100644 index 75b27b46cf..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberryjellysandwichItem/0.png b/front/public/images/large/harvestcraft/strawberryjellysandwichItem/0.png deleted file mode 100644 index d98782beb6..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberryjuiceItem/0.png b/front/public/images/large/harvestcraft/strawberryjuiceItem/0.png deleted file mode 100644 index 387396187c..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberrymilkshakeItem/0.png b/front/public/images/large/harvestcraft/strawberrymilkshakeItem/0.png deleted file mode 100644 index cfdd384eda..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberrymilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberrypieItem/0.png b/front/public/images/large/harvestcraft/strawberrypieItem/0.png deleted file mode 100644 index fd05c1afe0..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberrysaladItem/0.png b/front/public/images/large/harvestcraft/strawberrysaladItem/0.png deleted file mode 100644 index 5dfc1b5036..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberrysaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberryseedItem/0.png b/front/public/images/large/harvestcraft/strawberryseedItem/0.png deleted file mode 100644 index 7cfc1c7897..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberrysmoothieItem/0.png b/front/public/images/large/harvestcraft/strawberrysmoothieItem/0.png deleted file mode 100644 index 2bf5011fbd..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberrysodaItem/0.png b/front/public/images/large/harvestcraft/strawberrysodaItem/0.png deleted file mode 100644 index 2ff2db63b2..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberrysodaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/strawberryyogurtItem/0.png b/front/public/images/large/harvestcraft/strawberryyogurtItem/0.png deleted file mode 100644 index 594c589806..0000000000 Binary files a/front/public/images/large/harvestcraft/strawberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/stuffedeggplantItem/0.png b/front/public/images/large/harvestcraft/stuffedeggplantItem/0.png deleted file mode 100644 index 85249a37e5..0000000000 Binary files a/front/public/images/large/harvestcraft/stuffedeggplantItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/stuffedmushroomItem/0.png b/front/public/images/large/harvestcraft/stuffedmushroomItem/0.png deleted file mode 100644 index bba8e2a629..0000000000 Binary files a/front/public/images/large/harvestcraft/stuffedmushroomItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/stuffedpepperItem/0.png b/front/public/images/large/harvestcraft/stuffedpepperItem/0.png deleted file mode 100644 index 8276a52546..0000000000 Binary files a/front/public/images/large/harvestcraft/stuffedpepperItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/suaderoItem/0.png b/front/public/images/large/harvestcraft/suaderoItem/0.png deleted file mode 100644 index 8168b51b84..0000000000 Binary files a/front/public/images/large/harvestcraft/suaderoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/summerradishsaladItem/0.png b/front/public/images/large/harvestcraft/summerradishsaladItem/0.png deleted file mode 100644 index bd26cc01d7..0000000000 Binary files a/front/public/images/large/harvestcraft/summerradishsaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/summersquashwithradishItem/0.png b/front/public/images/large/harvestcraft/summersquashwithradishItem/0.png deleted file mode 100644 index 90767cf8f3..0000000000 Binary files a/front/public/images/large/harvestcraft/summersquashwithradishItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sundayroastItem/0.png b/front/public/images/large/harvestcraft/sundayroastItem/0.png deleted file mode 100644 index 36a562ed7e..0000000000 Binary files a/front/public/images/large/harvestcraft/sundayroastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sunflowerbroccolisaladItem/0.png b/front/public/images/large/harvestcraft/sunflowerbroccolisaladItem/0.png deleted file mode 100644 index 78dd547f04..0000000000 Binary files a/front/public/images/large/harvestcraft/sunflowerbroccolisaladItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sunflowerseedsItem/0.png b/front/public/images/large/harvestcraft/sunflowerseedsItem/0.png deleted file mode 100644 index bf1b7f6f4f..0000000000 Binary files a/front/public/images/large/harvestcraft/sunflowerseedsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sunflowerwheatrollsItem/0.png b/front/public/images/large/harvestcraft/sunflowerwheatrollsItem/0.png deleted file mode 100644 index cb67c25b7e..0000000000 Binary files a/front/public/images/large/harvestcraft/sunflowerwheatrollsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/supremepizzaItem/0.png b/front/public/images/large/harvestcraft/supremepizzaItem/0.png deleted file mode 100644 index 73757ad247..0000000000 Binary files a/front/public/images/large/harvestcraft/supremepizzaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sushiItem/0.png b/front/public/images/large/harvestcraft/sushiItem/0.png deleted file mode 100644 index 893a9f5adf..0000000000 Binary files a/front/public/images/large/harvestcraft/sushiItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sweetpickleItem/0.png b/front/public/images/large/harvestcraft/sweetpickleItem/0.png deleted file mode 100644 index 604ad32f36..0000000000 Binary files a/front/public/images/large/harvestcraft/sweetpickleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sweetpotatoItem/0.png b/front/public/images/large/harvestcraft/sweetpotatoItem/0.png deleted file mode 100644 index 1bf62d529a..0000000000 Binary files a/front/public/images/large/harvestcraft/sweetpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sweetpotatopieItem/0.png b/front/public/images/large/harvestcraft/sweetpotatopieItem/0.png deleted file mode 100644 index f792c0cba3..0000000000 Binary files a/front/public/images/large/harvestcraft/sweetpotatopieItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sweetpotatoseedItem/0.png b/front/public/images/large/harvestcraft/sweetpotatoseedItem/0.png deleted file mode 100644 index e249a8b116..0000000000 Binary files a/front/public/images/large/harvestcraft/sweetpotatoseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/sweetpotatosouffleItem/0.png b/front/public/images/large/harvestcraft/sweetpotatosouffleItem/0.png deleted file mode 100644 index 1b3acc33e3..0000000000 Binary files a/front/public/images/large/harvestcraft/sweetpotatosouffleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tacoItem/0.png b/front/public/images/large/harvestcraft/tacoItem/0.png deleted file mode 100644 index c2f76b17a8..0000000000 Binary files a/front/public/images/large/harvestcraft/tacoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/taffyItem/0.png b/front/public/images/large/harvestcraft/taffyItem/0.png deleted file mode 100644 index 032b2a3167..0000000000 Binary files a/front/public/images/large/harvestcraft/taffyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/teaItem/0.png b/front/public/images/large/harvestcraft/teaItem/0.png deleted file mode 100644 index 9a90a7b48d..0000000000 Binary files a/front/public/images/large/harvestcraft/teaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tealeafItem/0.png b/front/public/images/large/harvestcraft/tealeafItem/0.png deleted file mode 100644 index f4acd9bda4..0000000000 Binary files a/front/public/images/large/harvestcraft/tealeafItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/teaseedItem/0.png b/front/public/images/large/harvestcraft/teaseedItem/0.png deleted file mode 100644 index 2012aa654e..0000000000 Binary files a/front/public/images/large/harvestcraft/teaseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/textilegarden/0.png b/front/public/images/large/harvestcraft/textilegarden/0.png deleted file mode 100644 index fba5363270..0000000000 Binary files a/front/public/images/large/harvestcraft/textilegarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tilapiarawItem/0.png b/front/public/images/large/harvestcraft/tilapiarawItem/0.png deleted file mode 100644 index 7528554378..0000000000 Binary files a/front/public/images/large/harvestcraft/tilapiarawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/timtamItem/0.png b/front/public/images/large/harvestcraft/timtamItem/0.png deleted file mode 100644 index a71cd1d1c2..0000000000 Binary files a/front/public/images/large/harvestcraft/timtamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/toadintheholeItem/0.png b/front/public/images/large/harvestcraft/toadintheholeItem/0.png deleted file mode 100644 index 9ae5e29bb0..0000000000 Binary files a/front/public/images/large/harvestcraft/toadintheholeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/toastItem/0.png b/front/public/images/large/harvestcraft/toastItem/0.png deleted file mode 100644 index 4292d98d49..0000000000 Binary files a/front/public/images/large/harvestcraft/toastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/toastedcoconutItem/0.png b/front/public/images/large/harvestcraft/toastedcoconutItem/0.png deleted file mode 100644 index 16bca81f71..0000000000 Binary files a/front/public/images/large/harvestcraft/toastedcoconutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/toastedsesameseedsItem/0.png b/front/public/images/large/harvestcraft/toastedsesameseedsItem/0.png deleted file mode 100644 index b4036cbd43..0000000000 Binary files a/front/public/images/large/harvestcraft/toastedsesameseedsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/toastsandwichItem/0.png b/front/public/images/large/harvestcraft/toastsandwichItem/0.png deleted file mode 100644 index e3d4371a54..0000000000 Binary files a/front/public/images/large/harvestcraft/toastsandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tomatoItem/0.png b/front/public/images/large/harvestcraft/tomatoItem/0.png deleted file mode 100644 index fdb3dbef74..0000000000 Binary files a/front/public/images/large/harvestcraft/tomatoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tomatoseedItem/0.png b/front/public/images/large/harvestcraft/tomatoseedItem/0.png deleted file mode 100644 index bac4867ef2..0000000000 Binary files a/front/public/images/large/harvestcraft/tomatoseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tomatosoupItem/0.png b/front/public/images/large/harvestcraft/tomatosoupItem/0.png deleted file mode 100644 index 1cbc799133..0000000000 Binary files a/front/public/images/large/harvestcraft/tomatosoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tortillaItem/0.png b/front/public/images/large/harvestcraft/tortillaItem/0.png deleted file mode 100644 index 032075ddb2..0000000000 Binary files a/front/public/images/large/harvestcraft/tortillaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/trailmixItem/0.png b/front/public/images/large/harvestcraft/trailmixItem/0.png deleted file mode 100644 index 9f332bb3e2..0000000000 Binary files a/front/public/images/large/harvestcraft/trailmixItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tropicalgarden/0.png b/front/public/images/large/harvestcraft/tropicalgarden/0.png deleted file mode 100644 index 5d0f2cf6b5..0000000000 Binary files a/front/public/images/large/harvestcraft/tropicalgarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/troutrawItem/0.png b/front/public/images/large/harvestcraft/troutrawItem/0.png deleted file mode 100644 index 1634f23b41..0000000000 Binary files a/front/public/images/large/harvestcraft/troutrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tunapotatoItem/0.png b/front/public/images/large/harvestcraft/tunapotatoItem/0.png deleted file mode 100644 index 33cb759c1b..0000000000 Binary files a/front/public/images/large/harvestcraft/tunapotatoItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/tunarawItem/0.png b/front/public/images/large/harvestcraft/tunarawItem/0.png deleted file mode 100644 index b1f1633e67..0000000000 Binary files a/front/public/images/large/harvestcraft/tunarawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/turkeycookedItem/0.png b/front/public/images/large/harvestcraft/turkeycookedItem/0.png deleted file mode 100644 index f70dfa7bd6..0000000000 Binary files a/front/public/images/large/harvestcraft/turkeycookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/turkeyrawItem/0.png b/front/public/images/large/harvestcraft/turkeyrawItem/0.png deleted file mode 100644 index 6231c7d5c3..0000000000 Binary files a/front/public/images/large/harvestcraft/turkeyrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/turnipItem/0.png b/front/public/images/large/harvestcraft/turnipItem/0.png deleted file mode 100644 index 8193442b44..0000000000 Binary files a/front/public/images/large/harvestcraft/turnipItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/turnipseedItem/0.png b/front/public/images/large/harvestcraft/turnipseedItem/0.png deleted file mode 100644 index bd984d3626..0000000000 Binary files a/front/public/images/large/harvestcraft/turnipseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/turnipsoupItem/0.png b/front/public/images/large/harvestcraft/turnipsoupItem/0.png deleted file mode 100644 index bab7a05a75..0000000000 Binary files a/front/public/images/large/harvestcraft/turnipsoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/turtlecookedItem/0.png b/front/public/images/large/harvestcraft/turtlecookedItem/0.png deleted file mode 100644 index 17073eaaa5..0000000000 Binary files a/front/public/images/large/harvestcraft/turtlecookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/turtlerawItem/0.png b/front/public/images/large/harvestcraft/turtlerawItem/0.png deleted file mode 100644 index 971ca74b1e..0000000000 Binary files a/front/public/images/large/harvestcraft/turtlerawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vanillaItem/0.png b/front/public/images/large/harvestcraft/vanillaItem/0.png deleted file mode 100644 index e89b16a2a7..0000000000 Binary files a/front/public/images/large/harvestcraft/vanillaItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vanillabeanItem/0.png b/front/public/images/large/harvestcraft/vanillabeanItem/0.png deleted file mode 100644 index 9c014e6dae..0000000000 Binary files a/front/public/images/large/harvestcraft/vanillabeanItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vanillaicecreamItem/0.png b/front/public/images/large/harvestcraft/vanillaicecreamItem/0.png deleted file mode 100644 index 18c31c06a5..0000000000 Binary files a/front/public/images/large/harvestcraft/vanillaicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vanillayogurtItem/0.png b/front/public/images/large/harvestcraft/vanillayogurtItem/0.png deleted file mode 100644 index d48ce42d83..0000000000 Binary files a/front/public/images/large/harvestcraft/vanillayogurtItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vegemiteItem/0.png b/front/public/images/large/harvestcraft/vegemiteItem/0.png deleted file mode 100644 index 8f0ea80087..0000000000 Binary files a/front/public/images/large/harvestcraft/vegemiteItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vegemiteontoastItem/0.png b/front/public/images/large/harvestcraft/vegemiteontoastItem/0.png deleted file mode 100644 index d29b8b1da8..0000000000 Binary files a/front/public/images/large/harvestcraft/vegemiteontoastItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vegetablesoupItem/0.png b/front/public/images/large/harvestcraft/vegetablesoupItem/0.png deleted file mode 100644 index c6b49ce15d..0000000000 Binary files a/front/public/images/large/harvestcraft/vegetablesoupItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vegetarianlettucewrapItem/0.png b/front/public/images/large/harvestcraft/vegetarianlettucewrapItem/0.png deleted file mode 100644 index e2aa47bdca..0000000000 Binary files a/front/public/images/large/harvestcraft/vegetarianlettucewrapItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/veggiebaitItem/0.png b/front/public/images/large/harvestcraft/veggiebaitItem/0.png deleted file mode 100644 index 7f5bbdd7e3..0000000000 Binary files a/front/public/images/large/harvestcraft/veggiebaitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/veggiestirfryItem/0.png b/front/public/images/large/harvestcraft/veggiestirfryItem/0.png deleted file mode 100644 index c583175145..0000000000 Binary files a/front/public/images/large/harvestcraft/veggiestirfryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/veggiestripsItem/0.png b/front/public/images/large/harvestcraft/veggiestripsItem/0.png deleted file mode 100644 index d5734ecbf0..0000000000 Binary files a/front/public/images/large/harvestcraft/veggiestripsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/venisoncookedItem/0.png b/front/public/images/large/harvestcraft/venisoncookedItem/0.png deleted file mode 100644 index 26208860e3..0000000000 Binary files a/front/public/images/large/harvestcraft/venisoncookedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/venisonrawItem/0.png b/front/public/images/large/harvestcraft/venisonrawItem/0.png deleted file mode 100644 index 55e3c39ce6..0000000000 Binary files a/front/public/images/large/harvestcraft/venisonrawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vindalooItem/0.png b/front/public/images/large/harvestcraft/vindalooItem/0.png deleted file mode 100644 index 84b5873f84..0000000000 Binary files a/front/public/images/large/harvestcraft/vindalooItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/vinegarItem/0.png b/front/public/images/large/harvestcraft/vinegarItem/0.png deleted file mode 100644 index 12c8df4309..0000000000 Binary files a/front/public/images/large/harvestcraft/vinegarItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/wafflesItem/0.png b/front/public/images/large/harvestcraft/wafflesItem/0.png deleted file mode 100644 index 0412dd239b..0000000000 Binary files a/front/public/images/large/harvestcraft/wafflesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/walleyerawItem/0.png b/front/public/images/large/harvestcraft/walleyerawItem/0.png deleted file mode 100644 index 96abe5dfbd..0000000000 Binary files a/front/public/images/large/harvestcraft/walleyerawItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/walnutItem/0.png b/front/public/images/large/harvestcraft/walnutItem/0.png deleted file mode 100644 index d196c8e723..0000000000 Binary files a/front/public/images/large/harvestcraft/walnutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/walnutraisinbreadItem/0.png b/front/public/images/large/harvestcraft/walnutraisinbreadItem/0.png deleted file mode 100644 index fee3995486..0000000000 Binary files a/front/public/images/large/harvestcraft/walnutraisinbreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/waterchestnutItem/0.png b/front/public/images/large/harvestcraft/waterchestnutItem/0.png deleted file mode 100644 index 4a3726fca3..0000000000 Binary files a/front/public/images/large/harvestcraft/waterchestnutItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/waterchestnutseedItem/0.png b/front/public/images/large/harvestcraft/waterchestnutseedItem/0.png deleted file mode 100644 index 3c2cd7c320..0000000000 Binary files a/front/public/images/large/harvestcraft/waterchestnutseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/watergarden/0.png b/front/public/images/large/harvestcraft/watergarden/0.png deleted file mode 100644 index 4499afd8f3..0000000000 Binary files a/front/public/images/large/harvestcraft/watergarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/watermelonjellyItem/0.png b/front/public/images/large/harvestcraft/watermelonjellyItem/0.png deleted file mode 100644 index 66dacb2bbe..0000000000 Binary files a/front/public/images/large/harvestcraft/watermelonjellyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/watermelonjellysandwichItem/0.png b/front/public/images/large/harvestcraft/watermelonjellysandwichItem/0.png deleted file mode 100644 index 7a2d509cfc..0000000000 Binary files a/front/public/images/large/harvestcraft/watermelonjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/waxItem/0.png b/front/public/images/large/harvestcraft/waxItem/0.png deleted file mode 100644 index 31bb7f15b2..0000000000 Binary files a/front/public/images/large/harvestcraft/waxItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/waxcombItem/0.png b/front/public/images/large/harvestcraft/waxcombItem/0.png deleted file mode 100644 index b908a634fd..0000000000 Binary files a/front/public/images/large/harvestcraft/waxcombItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/whitemushroomItem/0.png b/front/public/images/large/harvestcraft/whitemushroomItem/0.png deleted file mode 100644 index 28e7aff3ff..0000000000 Binary files a/front/public/images/large/harvestcraft/whitemushroomItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/whitemushroomseedItem/0.png b/front/public/images/large/harvestcraft/whitemushroomseedItem/0.png deleted file mode 100644 index c0ac24e5bd..0000000000 Binary files a/front/public/images/large/harvestcraft/whitemushroomseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/wintersquashItem/0.png b/front/public/images/large/harvestcraft/wintersquashItem/0.png deleted file mode 100644 index 744c3bbdb2..0000000000 Binary files a/front/public/images/large/harvestcraft/wintersquashItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/wintersquashseedItem/0.png b/front/public/images/large/harvestcraft/wintersquashseedItem/0.png deleted file mode 100644 index fffde4db56..0000000000 Binary files a/front/public/images/large/harvestcraft/wintersquashseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/wovencottonItem/0.png b/front/public/images/large/harvestcraft/wovencottonItem/0.png deleted file mode 100644 index 819c7d7050..0000000000 Binary files a/front/public/images/large/harvestcraft/wovencottonItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/yorkshirepuddingItem/0.png b/front/public/images/large/harvestcraft/yorkshirepuddingItem/0.png deleted file mode 100644 index 579feec05b..0000000000 Binary files a/front/public/images/large/harvestcraft/yorkshirepuddingItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zeppoleItem/0.png b/front/public/images/large/harvestcraft/zeppoleItem/0.png deleted file mode 100644 index 1f34de42cd..0000000000 Binary files a/front/public/images/large/harvestcraft/zeppoleItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zestyzucchiniItem/0.png b/front/public/images/large/harvestcraft/zestyzucchiniItem/0.png deleted file mode 100644 index 67e24037aa..0000000000 Binary files a/front/public/images/large/harvestcraft/zestyzucchiniItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zombiejerkyItem/0.png b/front/public/images/large/harvestcraft/zombiejerkyItem/0.png deleted file mode 100644 index 9c3fc747ad..0000000000 Binary files a/front/public/images/large/harvestcraft/zombiejerkyItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zucchiniItem/0.png b/front/public/images/large/harvestcraft/zucchiniItem/0.png deleted file mode 100644 index 4c1598d9c9..0000000000 Binary files a/front/public/images/large/harvestcraft/zucchiniItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zucchinibakeItem/0.png b/front/public/images/large/harvestcraft/zucchinibakeItem/0.png deleted file mode 100644 index 70d16b51b1..0000000000 Binary files a/front/public/images/large/harvestcraft/zucchinibakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zucchinibreadItem/0.png b/front/public/images/large/harvestcraft/zucchinibreadItem/0.png deleted file mode 100644 index 92a72222fd..0000000000 Binary files a/front/public/images/large/harvestcraft/zucchinibreadItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zucchinifriesItem/0.png b/front/public/images/large/harvestcraft/zucchinifriesItem/0.png deleted file mode 100644 index 84d337dd22..0000000000 Binary files a/front/public/images/large/harvestcraft/zucchinifriesItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestcraft/zucchiniseedItem/0.png b/front/public/images/large/harvestcraft/zucchiniseedItem/0.png deleted file mode 100644 index 61111a2eb2..0000000000 Binary files a/front/public/images/large/harvestcraft/zucchiniseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/Quartz Axe/0.png b/front/public/images/large/harvestthenether/Quartz Axe/0.png deleted file mode 100644 index 03ec69e84d..0000000000 Binary files a/front/public/images/large/harvestthenether/Quartz Axe/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/Quartz Hoe/0.png b/front/public/images/large/harvestthenether/Quartz Hoe/0.png deleted file mode 100644 index bdd5346fd2..0000000000 Binary files a/front/public/images/large/harvestthenether/Quartz Hoe/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/Quartz Pickaxe/0.png b/front/public/images/large/harvestthenether/Quartz Pickaxe/0.png deleted file mode 100644 index 2974f05d83..0000000000 Binary files a/front/public/images/large/harvestthenether/Quartz Pickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/Quartz Shovel/0.png b/front/public/images/large/harvestthenether/Quartz Shovel/0.png deleted file mode 100644 index 2332af0400..0000000000 Binary files a/front/public/images/large/harvestthenether/Quartz Shovel/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/Quartz Sword/0.png b/front/public/images/large/harvestthenether/Quartz Sword/0.png deleted file mode 100644 index ed87cc1560..0000000000 Binary files a/front/public/images/large/harvestthenether/Quartz Sword/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/bloodleafCrop/0.png b/front/public/images/large/harvestthenether/bloodleafCrop/0.png deleted file mode 100644 index ed0f4b32e8..0000000000 Binary files a/front/public/images/large/harvestthenether/bloodleafCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/bloodleafItem/0.png b/front/public/images/large/harvestthenether/bloodleafItem/0.png deleted file mode 100644 index 892b6d2e80..0000000000 Binary files a/front/public/images/large/harvestthenether/bloodleafItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/bloodleafseedItem/0.png b/front/public/images/large/harvestthenether/bloodleafseedItem/0.png deleted file mode 100644 index ad021c9272..0000000000 Binary files a/front/public/images/large/harvestthenether/bloodleafseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/fleshrootCrop/0.png b/front/public/images/large/harvestthenether/fleshrootCrop/0.png deleted file mode 100644 index 1adc621f01..0000000000 Binary files a/front/public/images/large/harvestthenether/fleshrootCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/fleshrootItem/0.png b/front/public/images/large/harvestthenether/fleshrootItem/0.png deleted file mode 100644 index b365b6efa2..0000000000 Binary files a/front/public/images/large/harvestthenether/fleshrootItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/fleshrootseedItem/0.png b/front/public/images/large/harvestthenether/fleshrootseedItem/0.png deleted file mode 100644 index ac28da9eb9..0000000000 Binary files a/front/public/images/large/harvestthenether/fleshrootseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/glowFlower/0.png b/front/public/images/large/harvestthenether/glowFlower/0.png deleted file mode 100644 index c38058160b..0000000000 Binary files a/front/public/images/large/harvestthenether/glowFlower/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/glowflowerCrop/0.png b/front/public/images/large/harvestthenether/glowflowerCrop/0.png deleted file mode 100644 index 0ede7439b8..0000000000 Binary files a/front/public/images/large/harvestthenether/glowflowerCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/glowflowerseedItem/0.png b/front/public/images/large/harvestthenether/glowflowerseedItem/0.png deleted file mode 100644 index 984d7a0e55..0000000000 Binary files a/front/public/images/large/harvestthenether/glowflowerseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/ignisFruit/0.png b/front/public/images/large/harvestthenether/ignisFruit/0.png deleted file mode 100644 index 9fa9d390f5..0000000000 Binary files a/front/public/images/large/harvestthenether/ignisFruit/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/ignisfruitItem/0.png b/front/public/images/large/harvestthenether/ignisfruitItem/0.png deleted file mode 100644 index 399f91c516..0000000000 Binary files a/front/public/images/large/harvestthenether/ignisfruitItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/marrowberryCrop/0.png b/front/public/images/large/harvestthenether/marrowberryCrop/0.png deleted file mode 100644 index 7e92982fbc..0000000000 Binary files a/front/public/images/large/harvestthenether/marrowberryCrop/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/marrowberryItem/0.png b/front/public/images/large/harvestthenether/marrowberryItem/0.png deleted file mode 100644 index f0e12e5aa1..0000000000 Binary files a/front/public/images/large/harvestthenether/marrowberryItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/marrowberryseedItem/0.png b/front/public/images/large/harvestthenether/marrowberryseedItem/0.png deleted file mode 100644 index c6572d4567..0000000000 Binary files a/front/public/images/large/harvestthenether/marrowberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/netherBed/0.png b/front/public/images/large/harvestthenether/netherBed/0.png deleted file mode 100644 index 2f02a06f68..0000000000 Binary files a/front/public/images/large/harvestthenether/netherBed/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/netherGarden/0.png b/front/public/images/large/harvestthenether/netherGarden/0.png deleted file mode 100644 index 00d9af8269..0000000000 Binary files a/front/public/images/large/harvestthenether/netherGarden/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/netherLeaves/0.png b/front/public/images/large/harvestthenether/netherLeaves/0.png deleted file mode 100644 index ade09c3088..0000000000 Binary files a/front/public/images/large/harvestthenether/netherLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/netherLog/0.png b/front/public/images/large/harvestthenether/netherLog/0.png deleted file mode 100644 index 23c7362d75..0000000000 Binary files a/front/public/images/large/harvestthenether/netherLog/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/netherPlanks/0.png b/front/public/images/large/harvestthenether/netherPlanks/0.png deleted file mode 100644 index cfa6e16a90..0000000000 Binary files a/front/public/images/large/harvestthenether/netherPlanks/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/netherSapling/0.png b/front/public/images/large/harvestthenether/netherSapling/0.png deleted file mode 100644 index d981c19907..0000000000 Binary files a/front/public/images/large/harvestthenether/netherSapling/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/netherbedItem/0.png b/front/public/images/large/harvestthenether/netherbedItem/0.png deleted file mode 100644 index bf72af8877..0000000000 Binary files a/front/public/images/large/harvestthenether/netherbedItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/quartzbootsItem/0.png b/front/public/images/large/harvestthenether/quartzbootsItem/0.png deleted file mode 100644 index 08b5724e2b..0000000000 Binary files a/front/public/images/large/harvestthenether/quartzbootsItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/quartzchestItem/0.png b/front/public/images/large/harvestthenether/quartzchestItem/0.png deleted file mode 100644 index 1d741c6fee..0000000000 Binary files a/front/public/images/large/harvestthenether/quartzchestItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/quartzhelmItem/0.png b/front/public/images/large/harvestthenether/quartzhelmItem/0.png deleted file mode 100644 index 0001dcaee0..0000000000 Binary files a/front/public/images/large/harvestthenether/quartzhelmItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/quartzingotItem/0.png b/front/public/images/large/harvestthenether/quartzingotItem/0.png deleted file mode 100644 index 82163bc257..0000000000 Binary files a/front/public/images/large/harvestthenether/quartzingotItem/0.png and /dev/null differ diff --git a/front/public/images/large/harvestthenether/quartzleggingsItem/0.png b/front/public/images/large/harvestthenether/quartzleggingsItem/0.png deleted file mode 100644 index a8a5f6c358..0000000000 Binary files a/front/public/images/large/harvestthenether/quartzleggingsItem/0.png and /dev/null differ diff --git a/front/public/images/large/holoinventory/Hologlasses/0.png b/front/public/images/large/holoinventory/Hologlasses/0.png deleted file mode 100644 index 7b5c332b79..0000000000 Binary files a/front/public/images/large/holoinventory/Hologlasses/0.png and /dev/null differ diff --git a/front/public/images/large/holoinventory/fluidRenderFakeItem/0.png b/front/public/images/large/holoinventory/fluidRenderFakeItem/0.png deleted file mode 100644 index 4ca233dfee..0000000000 Binary files a/front/public/images/large/holoinventory/fluidRenderFakeItem/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water0/0.png b/front/public/images/large/hydroenergy/tile.water0/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water0/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water1/0.png b/front/public/images/large/hydroenergy/tile.water1/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water1/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water10/0.png b/front/public/images/large/hydroenergy/tile.water10/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water10/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water11/0.png b/front/public/images/large/hydroenergy/tile.water11/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water11/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water12/0.png b/front/public/images/large/hydroenergy/tile.water12/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water12/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water13/0.png b/front/public/images/large/hydroenergy/tile.water13/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water13/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water14/0.png b/front/public/images/large/hydroenergy/tile.water14/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water14/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water15/0.png b/front/public/images/large/hydroenergy/tile.water15/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water15/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water2/0.png b/front/public/images/large/hydroenergy/tile.water2/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water2/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water3/0.png b/front/public/images/large/hydroenergy/tile.water3/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water3/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water4/0.png b/front/public/images/large/hydroenergy/tile.water4/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water4/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water5/0.png b/front/public/images/large/hydroenergy/tile.water5/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water5/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water6/0.png b/front/public/images/large/hydroenergy/tile.water6/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water6/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water7/0.png b/front/public/images/large/hydroenergy/tile.water7/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water7/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water8/0.png b/front/public/images/large/hydroenergy/tile.water8/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water8/0.png and /dev/null differ diff --git a/front/public/images/large/hydroenergy/tile.water9/0.png b/front/public/images/large/hydroenergy/tile.water9/0.png deleted file mode 100644 index 3de6fe52a2..0000000000 Binary files a/front/public/images/large/hydroenergy/tile.water9/0.png and /dev/null differ diff --git a/front/public/images/large/ifu/ifu_buildingKit/0.png b/front/public/images/large/ifu/ifu_buildingKit/0.png deleted file mode 100644 index f743f39ed2..0000000000 Binary files a/front/public/images/large/ifu/ifu_buildingKit/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_copper/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_copper/0.png deleted file mode 100644 index 52173af259..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_copper/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_crystal/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_crystal/0.png deleted file mode 100644 index 7708cfb952..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_crystal/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_diamond/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_diamond/0.png deleted file mode 100644 index ff05285fbb..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_dirtchest9000/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_dirtchest9000/0.png deleted file mode 100644 index 4c54cb031f..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_dirtchest9000/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_gold/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_gold/0.png deleted file mode 100644 index cd926caee6..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_gold/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_iron/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_iron/0.png deleted file mode 100644 index 18d4793dda..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_iron/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_obsidian/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_obsidian/0.png deleted file mode 100644 index 0905a600c0..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_obsidian/0.png and /dev/null differ diff --git a/front/public/images/large/ironchestminecarts/minecart_chest_steel/0.png b/front/public/images/large/ironchestminecarts/minecart_chest_steel/0.png deleted file mode 100644 index 6e0b3efc37..0000000000 Binary files a/front/public/images/large/ironchestminecarts/minecart_chest_steel/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/copperIronUpgrade/0.png b/front/public/images/large/irontank/copperIronUpgrade/0.png deleted file mode 100644 index 03e83b2f47..0000000000 Binary files a/front/public/images/large/irontank/copperIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/copperSilverUpgrade/0.png b/front/public/images/large/irontank/copperSilverUpgrade/0.png deleted file mode 100644 index 53c771ac59..0000000000 Binary files a/front/public/images/large/irontank/copperSilverUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/copperTank/0.png b/front/public/images/large/irontank/copperTank/0.png deleted file mode 100644 index 2f57d3665a..0000000000 Binary files a/front/public/images/large/irontank/copperTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/diamondEmeraldUpgrade/0.png b/front/public/images/large/irontank/diamondEmeraldUpgrade/0.png deleted file mode 100644 index d636c6d36c..0000000000 Binary files a/front/public/images/large/irontank/diamondEmeraldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/diamondObsidianUpgrade/0.png b/front/public/images/large/irontank/diamondObsidianUpgrade/0.png deleted file mode 100644 index 279faada80..0000000000 Binary files a/front/public/images/large/irontank/diamondObsidianUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/diamondTank/0.png b/front/public/images/large/irontank/diamondTank/0.png deleted file mode 100644 index d1538da147..0000000000 Binary files a/front/public/images/large/irontank/diamondTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/emeraldStainlesssteelUpgrade/0.png b/front/public/images/large/irontank/emeraldStainlesssteelUpgrade/0.png deleted file mode 100644 index cc42354f6e..0000000000 Binary files a/front/public/images/large/irontank/emeraldStainlesssteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/emeraldTank/0.png b/front/public/images/large/irontank/emeraldTank/0.png deleted file mode 100644 index 3357899a26..0000000000 Binary files a/front/public/images/large/irontank/emeraldTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/glassCopperUpgrade/0.png b/front/public/images/large/irontank/glassCopperUpgrade/0.png deleted file mode 100644 index 22bafaad5e..0000000000 Binary files a/front/public/images/large/irontank/glassCopperUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/glassIronUpgrade/0.png b/front/public/images/large/irontank/glassIronUpgrade/0.png deleted file mode 100644 index fdd6ba95cc..0000000000 Binary files a/front/public/images/large/irontank/glassIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/goldDiamondUpgrade/0.png b/front/public/images/large/irontank/goldDiamondUpgrade/0.png deleted file mode 100644 index 5c2351a11f..0000000000 Binary files a/front/public/images/large/irontank/goldDiamondUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/goldTank/0.png b/front/public/images/large/irontank/goldTank/0.png deleted file mode 100644 index 89e1157acc..0000000000 Binary files a/front/public/images/large/irontank/goldTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/ironGoldUpgrade/0.png b/front/public/images/large/irontank/ironGoldUpgrade/0.png deleted file mode 100644 index a6a3eaddfb..0000000000 Binary files a/front/public/images/large/irontank/ironGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/ironTank/0.png b/front/public/images/large/irontank/ironTank/0.png deleted file mode 100644 index 7e990863cd..0000000000 Binary files a/front/public/images/large/irontank/ironTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/obsidianTank/0.png b/front/public/images/large/irontank/obsidianTank/0.png deleted file mode 100644 index 1f0c4bb296..0000000000 Binary files a/front/public/images/large/irontank/obsidianTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/silverDiamondUpgrade/0.png b/front/public/images/large/irontank/silverDiamondUpgrade/0.png deleted file mode 100644 index 8a008bf186..0000000000 Binary files a/front/public/images/large/irontank/silverDiamondUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/silverGoldUpgrade/0.png b/front/public/images/large/irontank/silverGoldUpgrade/0.png deleted file mode 100644 index 474bf50604..0000000000 Binary files a/front/public/images/large/irontank/silverGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/silverTank/0.png b/front/public/images/large/irontank/silverTank/0.png deleted file mode 100644 index ffe63a46a1..0000000000 Binary files a/front/public/images/large/irontank/silverTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/stainlesssteelTank/0.png b/front/public/images/large/irontank/stainlesssteelTank/0.png deleted file mode 100644 index aa2e61d8a5..0000000000 Binary files a/front/public/images/large/irontank/stainlesssteelTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/stainlesssteelTitaniumUpgrade/0.png b/front/public/images/large/irontank/stainlesssteelTitaniumUpgrade/0.png deleted file mode 100644 index 092548b199..0000000000 Binary files a/front/public/images/large/irontank/stainlesssteelTitaniumUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/titaniumTank/0.png b/front/public/images/large/irontank/titaniumTank/0.png deleted file mode 100644 index 00738ca231..0000000000 Binary files a/front/public/images/large/irontank/titaniumTank/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/titaniumTungstensteelUpgrade/0.png b/front/public/images/large/irontank/titaniumTungstensteelUpgrade/0.png deleted file mode 100644 index 62a806bf05..0000000000 Binary files a/front/public/images/large/irontank/titaniumTungstensteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/irontank/tungstensteelTank/0.png b/front/public/images/large/irontank/tungstensteelTank/0.png deleted file mode 100644 index b86151c560..0000000000 Binary files a/front/public/images/large/irontank/tungstensteelTank/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_crafting_item/10.png b/front/public/images/large/kekztech/kekztech_crafting_item/10.png deleted file mode 100644 index db3de99146..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_crafting_item/10.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_crafting_item/11.png b/front/public/images/large/kekztech/kekztech_crafting_item/11.png deleted file mode 100644 index eb9b410b34..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_crafting_item/11.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_crafting_item/12.png b/front/public/images/large/kekztech/kekztech_crafting_item/12.png deleted file mode 100644 index 087d9024bd..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_crafting_item/12.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_crafting_item/13.png b/front/public/images/large/kekztech/kekztech_crafting_item/13.png deleted file mode 100644 index c2cd7957e2..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_crafting_item/13.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_crafting_item/14.png b/front/public/images/large/kekztech/kekztech_crafting_item/14.png deleted file mode 100644 index eec446110f..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_crafting_item/14.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_crafting_item/15.png b/front/public/images/large/kekztech/kekztech_crafting_item/15.png deleted file mode 100644 index b28b7c7a8c..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_crafting_item/15.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_crafting_item/9.png b/front/public/images/large/kekztech/kekztech_crafting_item/9.png deleted file mode 100644 index ef6800347d..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_crafting_item/9.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_error_item/0.png b/front/public/images/large/kekztech/kekztech_error_item/0.png deleted file mode 100644 index 7a9545a06e..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_error_item/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_gdcceramicelectrolyteunit_block/0.png b/front/public/images/large/kekztech/kekztech_gdcceramicelectrolyteunit_block/0.png deleted file mode 100644 index 353846c654..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_gdcceramicelectrolyteunit_block/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_ichorjar_block/0.png b/front/public/images/large/kekztech/kekztech_ichorjar_block/0.png deleted file mode 100644 index a66ee4de81..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_ichorjar_block/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_ichorjar_block/3.png b/front/public/images/large/kekztech/kekztech_ichorjar_block/3.png deleted file mode 100644 index fa47282dfb..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_ichorjar_block/3.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/0.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/0.png deleted file mode 100644 index e11253c6bd..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/1.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/1.png deleted file mode 100644 index 631d49d66e..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/1.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/10.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/10.png deleted file mode 100644 index 641f677e7a..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/10.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/2.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/2.png deleted file mode 100644 index 134d0c3acf..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/2.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/3.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/3.png deleted file mode 100644 index 073075b787..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/3.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/4.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/4.png deleted file mode 100644 index e5a30b03f3..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/4.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/5.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/5.png deleted file mode 100644 index cbbc692de1..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/5.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/6.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/6.png deleted file mode 100644 index 4a9aa87989..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/6.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/7.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/7.png deleted file mode 100644 index 3ff09fe597..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/7.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/8.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/8.png deleted file mode 100644 index 7ced6f28e2..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/8.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/9.png b/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/9.png deleted file mode 100644 index a132acfe57..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_lapotronicenergyunit_block/9.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_largehextile_block/0.png b/front/public/images/large/kekztech/kekztech_largehextile_block/0.png deleted file mode 100644 index 3048d0400d..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_largehextile_block/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/0.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/0.png deleted file mode 100644 index a63d597b34..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/1.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/1.png deleted file mode 100644 index 28a3fa2505..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/1.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/10.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/10.png deleted file mode 100644 index cd21e3d81c..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/10.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/2.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/2.png deleted file mode 100644 index fc67734705..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/2.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/3.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/3.png deleted file mode 100644 index 88fea11f34..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/3.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/4.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/4.png deleted file mode 100644 index 93c735bccb..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/4.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/5.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/5.png deleted file mode 100644 index 6ad44b50fe..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/5.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/6.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/6.png deleted file mode 100644 index 53b4012a76..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/6.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/7.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/7.png deleted file mode 100644 index 47831bedf7..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/7.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/8.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/8.png deleted file mode 100644 index 9a201cc984..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/8.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/9.png b/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/9.png deleted file mode 100644 index 9c1e1c6f4a..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_tfftstoragefield_block/9.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_thaumiumreinforcedjar_block/0.png b/front/public/images/large/kekztech/kekztech_thaumiumreinforcedjar_block/0.png deleted file mode 100644 index 61956b62a1..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_thaumiumreinforcedjar_block/0.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_thaumiumreinforcedjar_block/3.png b/front/public/images/large/kekztech/kekztech_thaumiumreinforcedjar_block/3.png deleted file mode 100644 index 0678a6f920..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_thaumiumreinforcedjar_block/3.png and /dev/null differ diff --git a/front/public/images/large/kekztech/kekztech_yszceramicelectrolyteunit_block/0.png b/front/public/images/large/kekztech/kekztech_yszceramicelectrolyteunit_block/0.png deleted file mode 100644 index 34eb97e79e..0000000000 Binary files a/front/public/images/large/kekztech/kekztech_yszceramicelectrolyteunit_block/0.png and /dev/null differ diff --git a/front/public/images/large/kubatech/defc.casing/10.png b/front/public/images/large/kubatech/defc.casing/10.png deleted file mode 100644 index cc0655a5d1..0000000000 Binary files a/front/public/images/large/kubatech/defc.casing/10.png and /dev/null differ diff --git a/front/public/images/large/kubatech/defc.casing/11.png b/front/public/images/large/kubatech/defc.casing/11.png deleted file mode 100644 index a9dd23f9f9..0000000000 Binary files a/front/public/images/large/kubatech/defc.casing/11.png and /dev/null differ diff --git a/front/public/images/large/kubatech/defc.casing/12.png b/front/public/images/large/kubatech/defc.casing/12.png deleted file mode 100644 index 0aa1fe25e7..0000000000 Binary files a/front/public/images/large/kubatech/defc.casing/12.png and /dev/null differ diff --git a/front/public/images/large/kubatech/defc.casing/7.png b/front/public/images/large/kubatech/defc.casing/7.png deleted file mode 100644 index 4935be976c..0000000000 Binary files a/front/public/images/large/kubatech/defc.casing/7.png and /dev/null differ diff --git a/front/public/images/large/kubatech/defc.casing/8.png b/front/public/images/large/kubatech/defc.casing/8.png deleted file mode 100644 index 5d9d98c04d..0000000000 Binary files a/front/public/images/large/kubatech/defc.casing/8.png and /dev/null differ diff --git a/front/public/images/large/kubatech/defc.casing/9.png b/front/public/images/large/kubatech/defc.casing/9.png deleted file mode 100644 index a3c433e02c..0000000000 Binary files a/front/public/images/large/kubatech/defc.casing/9.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubablocks/0.png b/front/public/images/large/kubatech/kubablocks/0.png deleted file mode 100644 index 9cd1b83a69..0000000000 Binary files a/front/public/images/large/kubatech/kubablocks/0.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubablocks/1.png b/front/public/images/large/kubatech/kubablocks/1.png deleted file mode 100644 index 0de879a8a4..0000000000 Binary files a/front/public/images/large/kubatech/kubablocks/1.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/0.png b/front/public/images/large/kubatech/kubaitems/0.png deleted file mode 100644 index 76ac3b6333..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/0.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/1.png b/front/public/images/large/kubatech/kubaitems/1.png deleted file mode 100644 index 84ff319db3..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/1.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/10.png b/front/public/images/large/kubatech/kubaitems/10.png deleted file mode 100644 index 5cde451685..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/10.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/11.png b/front/public/images/large/kubatech/kubaitems/11.png deleted file mode 100644 index e36c87d854..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/11.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/12.png b/front/public/images/large/kubatech/kubaitems/12.png deleted file mode 100644 index f4846fff06..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/12.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/13.png b/front/public/images/large/kubatech/kubaitems/13.png deleted file mode 100644 index 76ac3b6333..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/13.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/14.png b/front/public/images/large/kubatech/kubaitems/14.png deleted file mode 100644 index b00a946589..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/14.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/15.png b/front/public/images/large/kubatech/kubaitems/15.png deleted file mode 100644 index b6a6784f44..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/15.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/16.png b/front/public/images/large/kubatech/kubaitems/16.png deleted file mode 100644 index f8c5080ed3..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/16.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/17.png b/front/public/images/large/kubatech/kubaitems/17.png deleted file mode 100644 index 0c482bdac6..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/17.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/18.png b/front/public/images/large/kubatech/kubaitems/18.png deleted file mode 100644 index d3b66aed4c..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/18.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/19.png b/front/public/images/large/kubatech/kubaitems/19.png deleted file mode 100644 index 48dd00f156..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/19.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/2.png b/front/public/images/large/kubatech/kubaitems/2.png deleted file mode 100644 index b00a946589..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/2.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/20.png b/front/public/images/large/kubatech/kubaitems/20.png deleted file mode 100644 index 2039471def..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/20.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/21.png b/front/public/images/large/kubatech/kubaitems/21.png deleted file mode 100644 index 5cde451685..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/21.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/22.png b/front/public/images/large/kubatech/kubaitems/22.png deleted file mode 100644 index e36c87d854..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/22.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/23.png b/front/public/images/large/kubatech/kubaitems/23.png deleted file mode 100644 index 5da5b82df9..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/23.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/24.png b/front/public/images/large/kubatech/kubaitems/24.png deleted file mode 100644 index b02e63be58..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/24.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/25.png b/front/public/images/large/kubatech/kubaitems/25.png deleted file mode 100644 index c3924e16cb..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/25.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/26.png b/front/public/images/large/kubatech/kubaitems/26.png deleted file mode 100644 index 19f7a8bb51..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/26.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/27.png b/front/public/images/large/kubatech/kubaitems/27.png deleted file mode 100644 index ece60ba11f..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/27.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/28.png b/front/public/images/large/kubatech/kubaitems/28.png deleted file mode 100644 index 0f840716d1..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/28.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/29.png b/front/public/images/large/kubatech/kubaitems/29.png deleted file mode 100644 index eea36708f3..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/29.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/3.png b/front/public/images/large/kubatech/kubaitems/3.png deleted file mode 100644 index b6a6784f44..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/3.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/30.png b/front/public/images/large/kubatech/kubaitems/30.png deleted file mode 100644 index 25083eb3a4..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/30.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/31.png b/front/public/images/large/kubatech/kubaitems/31.png deleted file mode 100644 index 6dfa574371..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/31.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/32.png b/front/public/images/large/kubatech/kubaitems/32.png deleted file mode 100644 index 1e08fadccd..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/32.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/33.png b/front/public/images/large/kubatech/kubaitems/33.png deleted file mode 100644 index 35ed9257cc..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/33.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/34.png b/front/public/images/large/kubatech/kubaitems/34.png deleted file mode 100644 index 57e0752cd8..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/34.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/35.png b/front/public/images/large/kubatech/kubaitems/35.png deleted file mode 100644 index 53aeb62c06..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/35.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/36.png b/front/public/images/large/kubatech/kubaitems/36.png deleted file mode 100644 index 2d4e2b4ee8..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/36.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/37.png b/front/public/images/large/kubatech/kubaitems/37.png deleted file mode 100644 index 34afeef60d..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/37.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/38.png b/front/public/images/large/kubatech/kubaitems/38.png deleted file mode 100644 index bfe37588c8..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/38.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/39.png b/front/public/images/large/kubatech/kubaitems/39.png deleted file mode 100644 index 14029b3c67..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/39.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/4.png b/front/public/images/large/kubatech/kubaitems/4.png deleted file mode 100644 index f8c5080ed3..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/4.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/40.png b/front/public/images/large/kubatech/kubaitems/40.png deleted file mode 100644 index cf2922543b..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/40.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/41.png b/front/public/images/large/kubatech/kubaitems/41.png deleted file mode 100644 index 3ed9789d6d..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/41.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/5.png b/front/public/images/large/kubatech/kubaitems/5.png deleted file mode 100644 index 0c482bdac6..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/5.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/6.png b/front/public/images/large/kubatech/kubaitems/6.png deleted file mode 100644 index d3b66aed4c..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/6.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/7.png b/front/public/images/large/kubatech/kubaitems/7.png deleted file mode 100644 index 48dd00f156..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/7.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/8.png b/front/public/images/large/kubatech/kubaitems/8.png deleted file mode 100644 index 2039471def..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/8.png and /dev/null differ diff --git a/front/public/images/large/kubatech/kubaitems/9.png b/front/public/images/large/kubatech/kubaitems/9.png deleted file mode 100644 index 059fc9a265..0000000000 Binary files a/front/public/images/large/kubatech/kubaitems/9.png and /dev/null differ diff --git a/front/public/images/large/lootgames/GOLMasterBlock/0.png b/front/public/images/large/lootgames/GOLMasterBlock/0.png deleted file mode 100644 index 88f54cd8f0..0000000000 Binary files a/front/public/images/large/lootgames/GOLMasterBlock/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonLight/0.png b/front/public/images/large/lootgames/LootGamesDungeonLight/0.png deleted file mode 100644 index 4f9cc75615..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonLight/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonLight/1.png b/front/public/images/large/lootgames/LootGamesDungeonLight/1.png deleted file mode 100644 index 58cf1a3d59..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonLight/1.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonWall/0.png b/front/public/images/large/lootgames/LootGamesDungeonWall/0.png deleted file mode 100644 index 05dcdbd80d..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonWall/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonWall/1.png b/front/public/images/large/lootgames/LootGamesDungeonWall/1.png deleted file mode 100644 index e107112e58..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonWall/1.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonWall/2.png b/front/public/images/large/lootgames/LootGamesDungeonWall/2.png deleted file mode 100644 index 596d4da721..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonWall/2.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonWall/3.png b/front/public/images/large/lootgames/LootGamesDungeonWall/3.png deleted file mode 100644 index 33ca6575e8..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonWall/3.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonWall/4.png b/front/public/images/large/lootgames/LootGamesDungeonWall/4.png deleted file mode 100644 index 7ad0ecd809..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonWall/4.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonWall/5.png b/front/public/images/large/lootgames/LootGamesDungeonWall/5.png deleted file mode 100644 index 07506889d4..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonWall/5.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesDungeonWall/6.png b/front/public/images/large/lootgames/LootGamesDungeonWall/6.png deleted file mode 100644 index 88f54cd8f0..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesDungeonWall/6.png and /dev/null differ diff --git a/front/public/images/large/lootgames/LootGamesMasterBlock/0.png b/front/public/images/large/lootgames/LootGamesMasterBlock/0.png deleted file mode 100644 index 764630f0b2..0000000000 Binary files a/front/public/images/large/lootgames/LootGamesMasterBlock/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/board_border/0.png b/front/public/images/large/lootgames/board_border/0.png deleted file mode 100644 index 34f1e2746d..0000000000 Binary files a/front/public/images/large/lootgames/board_border/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/gol_activator/0.png b/front/public/images/large/lootgames/gol_activator/0.png deleted file mode 100644 index cd2eb4c652..0000000000 Binary files a/front/public/images/large/lootgames/gol_activator/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/gol_master/0.png b/front/public/images/large/lootgames/gol_master/0.png deleted file mode 100644 index 88f54cd8f0..0000000000 Binary files a/front/public/images/large/lootgames/gol_master/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/ms_activator/0.png b/front/public/images/large/lootgames/ms_activator/0.png deleted file mode 100644 index 05f078ff39..0000000000 Binary files a/front/public/images/large/lootgames/ms_activator/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/ms_master/0.png b/front/public/images/large/lootgames/ms_master/0.png deleted file mode 100644 index 88f54cd8f0..0000000000 Binary files a/front/public/images/large/lootgames/ms_master/0.png and /dev/null differ diff --git a/front/public/images/large/lootgames/smart_subordinate/0.png b/front/public/images/large/lootgames/smart_subordinate/0.png deleted file mode 100644 index 88f54cd8f0..0000000000 Binary files a/front/public/images/large/lootgames/smart_subordinate/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/acaciaFenceGate/0.png b/front/public/images/large/malisisdoors/acaciaFenceGate/0.png deleted file mode 100644 index f609b1d67a..0000000000 Binary files a/front/public/images/large/malisisdoors/acaciaFenceGate/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/birchFenceGate/0.png b/front/public/images/large/malisisdoors/birchFenceGate/0.png deleted file mode 100644 index 718647717a..0000000000 Binary files a/front/public/images/large/malisisdoors/birchFenceGate/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/block_mixer/0.png b/front/public/images/large/malisisdoors/block_mixer/0.png deleted file mode 100644 index 2f5e78ac54..0000000000 Binary files a/front/public/images/large/malisisdoors/block_mixer/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/camoFenceGate/0.png b/front/public/images/large/malisisdoors/camoFenceGate/0.png deleted file mode 100644 index 0149282cc9..0000000000 Binary files a/front/public/images/large/malisisdoors/camoFenceGate/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/carriage_door/0.png b/front/public/images/large/malisisdoors/carriage_door/0.png deleted file mode 100644 index fb686bf96a..0000000000 Binary files a/front/public/images/large/malisisdoors/carriage_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_black/0.png b/front/public/images/large/malisisdoors/curtain_black/0.png deleted file mode 100644 index cd651f29e3..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_black/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_blue/0.png b/front/public/images/large/malisisdoors/curtain_blue/0.png deleted file mode 100644 index 6da7a9bfa0..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_blue/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_brown/0.png b/front/public/images/large/malisisdoors/curtain_brown/0.png deleted file mode 100644 index 7ecdb5fa74..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_brown/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_cyan/0.png b/front/public/images/large/malisisdoors/curtain_cyan/0.png deleted file mode 100644 index e4ef0f97fd..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_cyan/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_gray/0.png b/front/public/images/large/malisisdoors/curtain_gray/0.png deleted file mode 100644 index 6d63f3cbbc..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_gray/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_green/0.png b/front/public/images/large/malisisdoors/curtain_green/0.png deleted file mode 100644 index 33ebc0bfcb..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_green/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_light_blue/0.png b/front/public/images/large/malisisdoors/curtain_light_blue/0.png deleted file mode 100644 index 64c6896dca..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_light_blue/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_lime/0.png b/front/public/images/large/malisisdoors/curtain_lime/0.png deleted file mode 100644 index fb099c5751..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_lime/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_magenta/0.png b/front/public/images/large/malisisdoors/curtain_magenta/0.png deleted file mode 100644 index d5a5da0f0b..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_magenta/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_orange/0.png b/front/public/images/large/malisisdoors/curtain_orange/0.png deleted file mode 100644 index 0726827565..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_orange/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_pink/0.png b/front/public/images/large/malisisdoors/curtain_pink/0.png deleted file mode 100644 index 77201010eb..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_pink/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_purple/0.png b/front/public/images/large/malisisdoors/curtain_purple/0.png deleted file mode 100644 index 2dee9abcf9..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_purple/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_red/0.png b/front/public/images/large/malisisdoors/curtain_red/0.png deleted file mode 100644 index edde0b3533..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_red/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_silver/0.png b/front/public/images/large/malisisdoors/curtain_silver/0.png deleted file mode 100644 index 5d274ca6c8..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_silver/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_white/0.png b/front/public/images/large/malisisdoors/curtain_white/0.png deleted file mode 100644 index 804d7e5695..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_white/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/curtain_yellow/0.png b/front/public/images/large/malisisdoors/curtain_yellow/0.png deleted file mode 100644 index 52e4a231e4..0000000000 Binary files a/front/public/images/large/malisisdoors/curtain_yellow/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/darkOakFenceGate/0.png b/front/public/images/large/malisisdoors/darkOakFenceGate/0.png deleted file mode 100644 index b30269b6c3..0000000000 Binary files a/front/public/images/large/malisisdoors/darkOakFenceGate/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/door_acacia/0.png b/front/public/images/large/malisisdoors/door_acacia/0.png deleted file mode 100644 index 8cd2abe139..0000000000 Binary files a/front/public/images/large/malisisdoors/door_acacia/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/door_birch/0.png b/front/public/images/large/malisisdoors/door_birch/0.png deleted file mode 100644 index 0a39fb8930..0000000000 Binary files a/front/public/images/large/malisisdoors/door_birch/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/door_dark_oak/0.png b/front/public/images/large/malisisdoors/door_dark_oak/0.png deleted file mode 100644 index e18beb255e..0000000000 Binary files a/front/public/images/large/malisisdoors/door_dark_oak/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/door_factory/0.png b/front/public/images/large/malisisdoors/door_factory/0.png deleted file mode 100644 index 1acb9d0481..0000000000 Binary files a/front/public/images/large/malisisdoors/door_factory/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/door_jungle/0.png b/front/public/images/large/malisisdoors/door_jungle/0.png deleted file mode 100644 index 94a2dd9799..0000000000 Binary files a/front/public/images/large/malisisdoors/door_jungle/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/door_spruce/0.png b/front/public/images/large/malisisdoors/door_spruce/0.png deleted file mode 100644 index 79429cf7c2..0000000000 Binary files a/front/public/images/large/malisisdoors/door_spruce/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/factory_door/0.png b/front/public/images/large/malisisdoors/factory_door/0.png deleted file mode 100644 index 39669e630d..0000000000 Binary files a/front/public/images/large/malisisdoors/factory_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/forcefieldDoor/0.png b/front/public/images/large/malisisdoors/forcefieldDoor/0.png deleted file mode 100644 index 781464de22..0000000000 Binary files a/front/public/images/large/malisisdoors/forcefieldDoor/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/garage_door/0.png b/front/public/images/large/malisisdoors/garage_door/0.png deleted file mode 100644 index 8bb5580728..0000000000 Binary files a/front/public/images/large/malisisdoors/garage_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/iron_sliding_door/0.png b/front/public/images/large/malisisdoors/iron_sliding_door/0.png deleted file mode 100644 index b62b343f47..0000000000 Binary files a/front/public/images/large/malisisdoors/iron_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/iron_trapdoor/0.png b/front/public/images/large/malisisdoors/iron_trapdoor/0.png deleted file mode 100644 index 0388be8845..0000000000 Binary files a/front/public/images/large/malisisdoors/iron_trapdoor/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_black/0.png b/front/public/images/large/malisisdoors/item.curtain_black/0.png deleted file mode 100644 index 564905b1e9..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_black/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_blue/0.png b/front/public/images/large/malisisdoors/item.curtain_blue/0.png deleted file mode 100644 index 78c0f38572..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_blue/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_brown/0.png b/front/public/images/large/malisisdoors/item.curtain_brown/0.png deleted file mode 100644 index 6a2c7b7565..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_brown/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_cyan/0.png b/front/public/images/large/malisisdoors/item.curtain_cyan/0.png deleted file mode 100644 index 98479ff98b..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_cyan/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_gray/0.png b/front/public/images/large/malisisdoors/item.curtain_gray/0.png deleted file mode 100644 index 8c56818364..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_gray/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_green/0.png b/front/public/images/large/malisisdoors/item.curtain_green/0.png deleted file mode 100644 index ed1a359b75..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_green/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_light_blue/0.png b/front/public/images/large/malisisdoors/item.curtain_light_blue/0.png deleted file mode 100644 index 0412474042..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_light_blue/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_lime/0.png b/front/public/images/large/malisisdoors/item.curtain_lime/0.png deleted file mode 100644 index 86b4589f14..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_lime/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_magenta/0.png b/front/public/images/large/malisisdoors/item.curtain_magenta/0.png deleted file mode 100644 index c3dc408dcf..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_magenta/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_orange/0.png b/front/public/images/large/malisisdoors/item.curtain_orange/0.png deleted file mode 100644 index 768668c43f..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_orange/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_pink/0.png b/front/public/images/large/malisisdoors/item.curtain_pink/0.png deleted file mode 100644 index d3f0e776b5..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_pink/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_purple/0.png b/front/public/images/large/malisisdoors/item.curtain_purple/0.png deleted file mode 100644 index efc1b1a24c..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_purple/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_red/0.png b/front/public/images/large/malisisdoors/item.curtain_red/0.png deleted file mode 100644 index 58dbf8f1dd..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_red/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_silver/0.png b/front/public/images/large/malisisdoors/item.curtain_silver/0.png deleted file mode 100644 index 7048434cf8..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_silver/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_white/0.png b/front/public/images/large/malisisdoors/item.curtain_white/0.png deleted file mode 100644 index a1b610aa71..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_white/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.curtain_yellow/0.png b/front/public/images/large/malisisdoors/item.curtain_yellow/0.png deleted file mode 100644 index b842d0c625..0000000000 Binary files a/front/public/images/large/malisisdoors/item.curtain_yellow/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.custom_door/0.png b/front/public/images/large/malisisdoors/item.custom_door/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/malisisdoors/item.custom_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.door_acacia/0.png b/front/public/images/large/malisisdoors/item.door_acacia/0.png deleted file mode 100644 index 8538e5999a..0000000000 Binary files a/front/public/images/large/malisisdoors/item.door_acacia/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.door_birch/0.png b/front/public/images/large/malisisdoors/item.door_birch/0.png deleted file mode 100644 index c3fcf96b58..0000000000 Binary files a/front/public/images/large/malisisdoors/item.door_birch/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.door_dark_oak/0.png b/front/public/images/large/malisisdoors/item.door_dark_oak/0.png deleted file mode 100644 index 7f366ac2fa..0000000000 Binary files a/front/public/images/large/malisisdoors/item.door_dark_oak/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.door_jungle/0.png b/front/public/images/large/malisisdoors/item.door_jungle/0.png deleted file mode 100644 index 6efbecff4b..0000000000 Binary files a/front/public/images/large/malisisdoors/item.door_jungle/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.door_spruce/0.png b/front/public/images/large/malisisdoors/item.door_spruce/0.png deleted file mode 100644 index f4cab3e225..0000000000 Binary files a/front/public/images/large/malisisdoors/item.door_spruce/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.factory_door/0.png b/front/public/images/large/malisisdoors/item.factory_door/0.png deleted file mode 100644 index 6d4a8161a3..0000000000 Binary files a/front/public/images/large/malisisdoors/item.factory_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.forcefieldItem/0.png b/front/public/images/large/malisisdoors/item.forcefieldItem/0.png deleted file mode 100644 index 6e4e30c1ac..0000000000 Binary files a/front/public/images/large/malisisdoors/item.forcefieldItem/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.iron_sliding_door/0.png b/front/public/images/large/malisisdoors/item.iron_sliding_door/0.png deleted file mode 100644 index d8a0f439ef..0000000000 Binary files a/front/public/images/large/malisisdoors/item.iron_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.jail_door/0.png b/front/public/images/large/malisisdoors/item.jail_door/0.png deleted file mode 100644 index 81194dbae7..0000000000 Binary files a/front/public/images/large/malisisdoors/item.jail_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.laboratory_door/0.png b/front/public/images/large/malisisdoors/item.laboratory_door/0.png deleted file mode 100644 index 004ef50306..0000000000 Binary files a/front/public/images/large/malisisdoors/item.laboratory_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.rustyHandle/0.png b/front/public/images/large/malisisdoors/item.rustyHandle/0.png deleted file mode 100644 index eac1a22ab4..0000000000 Binary files a/front/public/images/large/malisisdoors/item.rustyHandle/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.saloon/0.png b/front/public/images/large/malisisdoors/item.saloon/0.png deleted file mode 100644 index 909e819a10..0000000000 Binary files a/front/public/images/large/malisisdoors/item.saloon/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.shoji_door/0.png b/front/public/images/large/malisisdoors/item.shoji_door/0.png deleted file mode 100644 index a6cd384064..0000000000 Binary files a/front/public/images/large/malisisdoors/item.shoji_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/item.wood_sliding_door/0.png b/front/public/images/large/malisisdoors/item.wood_sliding_door/0.png deleted file mode 100644 index c4e5ffe76b..0000000000 Binary files a/front/public/images/large/malisisdoors/item.wood_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/jail_door/0.png b/front/public/images/large/malisisdoors/jail_door/0.png deleted file mode 100644 index 416dddb2bd..0000000000 Binary files a/front/public/images/large/malisisdoors/jail_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/jungleFenceGate/0.png b/front/public/images/large/malisisdoors/jungleFenceGate/0.png deleted file mode 100644 index 90e1d2b665..0000000000 Binary files a/front/public/images/large/malisisdoors/jungleFenceGate/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/laboratory_door/0.png b/front/public/images/large/malisisdoors/laboratory_door/0.png deleted file mode 100644 index 22f410052e..0000000000 Binary files a/front/public/images/large/malisisdoors/laboratory_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/medieval_door/0.png b/front/public/images/large/malisisdoors/medieval_door/0.png deleted file mode 100644 index 4caa5761c8..0000000000 Binary files a/front/public/images/large/malisisdoors/medieval_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/mixed_block/0.png b/front/public/images/large/malisisdoors/mixed_block/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/malisisdoors/mixed_block/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/null/0.png b/front/public/images/large/malisisdoors/null/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/malisisdoors/null/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/player_sensor/0.png b/front/public/images/large/malisisdoors/player_sensor/0.png deleted file mode 100644 index 3aa8ced8df..0000000000 Binary files a/front/public/images/large/malisisdoors/player_sensor/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/rustyHatch/0.png b/front/public/images/large/malisisdoors/rustyHatch/0.png deleted file mode 100644 index df8dbe99dd..0000000000 Binary files a/front/public/images/large/malisisdoors/rustyHatch/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/rustyLadder/0.png b/front/public/images/large/malisisdoors/rustyLadder/0.png deleted file mode 100644 index 7b0f480261..0000000000 Binary files a/front/public/images/large/malisisdoors/rustyLadder/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/saloon/0.png b/front/public/images/large/malisisdoors/saloon/0.png deleted file mode 100644 index 8e067c6ea5..0000000000 Binary files a/front/public/images/large/malisisdoors/saloon/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/shoji_door/0.png b/front/public/images/large/malisisdoors/shoji_door/0.png deleted file mode 100644 index f3ba50847b..0000000000 Binary files a/front/public/images/large/malisisdoors/shoji_door/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/sliding_trapdoor/0.png b/front/public/images/large/malisisdoors/sliding_trapdoor/0.png deleted file mode 100644 index a9cc876916..0000000000 Binary files a/front/public/images/large/malisisdoors/sliding_trapdoor/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/spruceFenceGate/0.png b/front/public/images/large/malisisdoors/spruceFenceGate/0.png deleted file mode 100644 index 97d800ea26..0000000000 Binary files a/front/public/images/large/malisisdoors/spruceFenceGate/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/trapdoor_acacia/0.png b/front/public/images/large/malisisdoors/trapdoor_acacia/0.png deleted file mode 100644 index 949de95dd2..0000000000 Binary files a/front/public/images/large/malisisdoors/trapdoor_acacia/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/trapdoor_birch/0.png b/front/public/images/large/malisisdoors/trapdoor_birch/0.png deleted file mode 100644 index 546287d73d..0000000000 Binary files a/front/public/images/large/malisisdoors/trapdoor_birch/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/trapdoor_dark_oak/0.png b/front/public/images/large/malisisdoors/trapdoor_dark_oak/0.png deleted file mode 100644 index 376e7008fd..0000000000 Binary files a/front/public/images/large/malisisdoors/trapdoor_dark_oak/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/trapdoor_jungle/0.png b/front/public/images/large/malisisdoors/trapdoor_jungle/0.png deleted file mode 100644 index c19610702a..0000000000 Binary files a/front/public/images/large/malisisdoors/trapdoor_jungle/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/trapdoor_spruce/0.png b/front/public/images/large/malisisdoors/trapdoor_spruce/0.png deleted file mode 100644 index df03a16b8c..0000000000 Binary files a/front/public/images/large/malisisdoors/trapdoor_spruce/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/vanishing_block/0.png b/front/public/images/large/malisisdoors/vanishing_block/0.png deleted file mode 100644 index e34fa8b6ca..0000000000 Binary files a/front/public/images/large/malisisdoors/vanishing_block/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/vanishing_block/1.png b/front/public/images/large/malisisdoors/vanishing_block/1.png deleted file mode 100644 index 62422d6a83..0000000000 Binary files a/front/public/images/large/malisisdoors/vanishing_block/1.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/vanishing_block/2.png b/front/public/images/large/malisisdoors/vanishing_block/2.png deleted file mode 100644 index beadd3b7a0..0000000000 Binary files a/front/public/images/large/malisisdoors/vanishing_block/2.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/vanishing_block/3.png b/front/public/images/large/malisisdoors/vanishing_block/3.png deleted file mode 100644 index 72a2ec5de8..0000000000 Binary files a/front/public/images/large/malisisdoors/vanishing_block/3.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/vanishing_block_diamond/0.png b/front/public/images/large/malisisdoors/vanishing_block_diamond/0.png deleted file mode 100644 index e34fa8b6ca..0000000000 Binary files a/front/public/images/large/malisisdoors/vanishing_block_diamond/0.png and /dev/null differ diff --git a/front/public/images/large/malisisdoors/wood_sliding_door/0.png b/front/public/images/large/malisisdoors/wood_sliding_door/0.png deleted file mode 100644 index db816a096d..0000000000 Binary files a/front/public/images/large/malisisdoors/wood_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/2Ethylanthrahydroquinone/0.png b/front/public/images/large/miscutils/2Ethylanthrahydroquinone/0.png deleted file mode 100644 index 917a8c88f4..0000000000 Binary files a/front/public/images/large/miscutils/2Ethylanthrahydroquinone/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/2Ethylanthraquinone/0.png b/front/public/images/large/miscutils/2Ethylanthraquinone/0.png deleted file mode 100644 index b41858b880..0000000000 Binary files a/front/public/images/large/miscutils/2Ethylanthraquinone/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/AAA_Broken/0.png b/front/public/images/large/miscutils/AAA_Broken/0.png deleted file mode 100644 index 061e27bc9e..0000000000 Binary files a/front/public/images/large/miscutils/AAA_Broken/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/AmmoniumNitrateSlurry/0.png b/front/public/images/large/miscutils/AmmoniumNitrateSlurry/0.png deleted file mode 100644 index 75fdbac182..0000000000 Binary files a/front/public/images/large/miscutils/AmmoniumNitrateSlurry/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Anthracene/0.png b/front/public/images/large/miscutils/Anthracene/0.png deleted file mode 100644 index 814bc365a5..0000000000 Binary files a/front/public/images/large/miscutils/Anthracene/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/BurntLiFBeF2ThF4UF4/0.png b/front/public/images/large/miscutils/BurntLiFBeF2ThF4UF4/0.png deleted file mode 100644 index adcb473375..0000000000 Binary files a/front/public/images/large/miscutils/BurntLiFBeF2ThF4UF4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/BurntLiFBeF2ZrF4U235/0.png b/front/public/images/large/miscutils/BurntLiFBeF2ZrF4U235/0.png deleted file mode 100644 index 4bd7fe3b69..0000000000 Binary files a/front/public/images/large/miscutils/BurntLiFBeF2ZrF4U235/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/BurntLiFBeF2ZrF4UF4/0.png b/front/public/images/large/miscutils/BurntLiFBeF2ZrF4UF4/0.png deleted file mode 100644 index a6a7210cfe..0000000000 Binary files a/front/public/images/large/miscutils/BurntLiFBeF2ZrF4UF4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/CarbonDisulfide/0.png b/front/public/images/large/miscutils/CarbonDisulfide/0.png deleted file mode 100644 index 83c43511de..0000000000 Binary files a/front/public/images/large/miscutils/CarbonDisulfide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/CoalGas/0.png b/front/public/images/large/miscutils/CoalGas/0.png deleted file mode 100644 index cb76e7bc53..0000000000 Binary files a/front/public/images/large/miscutils/CoalGas/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/CoalTar/0.png b/front/public/images/large/miscutils/CoalTar/0.png deleted file mode 100644 index 7782a227ed..0000000000 Binary files a/front/public/images/large/miscutils/CoalTar/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/CoalTarOil/0.png b/front/public/images/large/miscutils/CoalTarOil/0.png deleted file mode 100644 index 1337dcde44..0000000000 Binary files a/front/public/images/large/miscutils/CoalTarOil/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Ethylbenzene/0.png b/front/public/images/large/miscutils/Ethylbenzene/0.png deleted file mode 100644 index 814bc365a5..0000000000 Binary files a/front/public/images/large/miscutils/Ethylbenzene/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FermentationBase/0.png b/front/public/images/large/miscutils/FermentationBase/0.png deleted file mode 100644 index e47299e39c..0000000000 Binary files a/front/public/images/large/miscutils/FermentationBase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FertileManureSlurry/0.png b/front/public/images/large/miscutils/FertileManureSlurry/0.png deleted file mode 100644 index e52cb1ee01..0000000000 Binary files a/front/public/images/large/miscutils/FertileManureSlurry/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Fertiliser/0.png b/front/public/images/large/miscutils/Fertiliser/0.png deleted file mode 100644 index 76bc18bdc2..0000000000 Binary files a/front/public/images/large/miscutils/Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FluidCryotheum/0.png b/front/public/images/large/miscutils/FluidCryotheum/0.png deleted file mode 100644 index 07fb697e7d..0000000000 Binary files a/front/public/images/large/miscutils/FluidCryotheum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FluidEnder/0.png b/front/public/images/large/miscutils/FluidEnder/0.png deleted file mode 100644 index 055e84a1d9..0000000000 Binary files a/front/public/images/large/miscutils/FluidEnder/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FluidPyrotheum/0.png b/front/public/images/large/miscutils/FluidPyrotheum/0.png deleted file mode 100644 index eef6811829..0000000000 Binary files a/front/public/images/large/miscutils/FluidPyrotheum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Formaldehyde/0.png b/front/public/images/large/miscutils/Formaldehyde/0.png deleted file mode 100644 index 75fdbac182..0000000000 Binary files a/front/public/images/large/miscutils/Formaldehyde/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothAlmandineflotation/0.png b/front/public/images/large/miscutils/FrothAlmandineflotation/0.png deleted file mode 100644 index a89ce9adcd..0000000000 Binary files a/front/public/images/large/miscutils/FrothAlmandineflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothCopperflotation/0.png b/front/public/images/large/miscutils/FrothCopperflotation/0.png deleted file mode 100644 index 25faebfcd4..0000000000 Binary files a/front/public/images/large/miscutils/FrothCopperflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothGrossularflotation/0.png b/front/public/images/large/miscutils/FrothGrossularflotation/0.png deleted file mode 100644 index 5ad21b093a..0000000000 Binary files a/front/public/images/large/miscutils/FrothGrossularflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothMonaziteflotation/0.png b/front/public/images/large/miscutils/FrothMonaziteflotation/0.png deleted file mode 100644 index 39219f2cf4..0000000000 Binary files a/front/public/images/large/miscutils/FrothMonaziteflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothNickelflotation/0.png b/front/public/images/large/miscutils/FrothNickelflotation/0.png deleted file mode 100644 index d7182a9db9..0000000000 Binary files a/front/public/images/large/miscutils/FrothNickelflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothPentlanditeflotation/0.png b/front/public/images/large/miscutils/FrothPentlanditeflotation/0.png deleted file mode 100644 index c184197aa4..0000000000 Binary files a/front/public/images/large/miscutils/FrothPentlanditeflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothPlatinumflotation/0.png b/front/public/images/large/miscutils/FrothPlatinumflotation/0.png deleted file mode 100644 index adbcf43b9f..0000000000 Binary files a/front/public/images/large/miscutils/FrothPlatinumflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothPyropeflotation/0.png b/front/public/images/large/miscutils/FrothPyropeflotation/0.png deleted file mode 100644 index accd401011..0000000000 Binary files a/front/public/images/large/miscutils/FrothPyropeflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothRedstoneflotation/0.png b/front/public/images/large/miscutils/FrothRedstoneflotation/0.png deleted file mode 100644 index cefecf4c12..0000000000 Binary files a/front/public/images/large/miscutils/FrothRedstoneflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothSpessartineflotation/0.png b/front/public/images/large/miscutils/FrothSpessartineflotation/0.png deleted file mode 100644 index 4107c78310..0000000000 Binary files a/front/public/images/large/miscutils/FrothSpessartineflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/FrothZincflotation/0.png b/front/public/images/large/miscutils/FrothZincflotation/0.png deleted file mode 100644 index 814bc365a5..0000000000 Binary files a/front/public/images/large/miscutils/FrothZincflotation/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.01.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.01.name/1.png deleted file mode 100644 index 1a419964c7..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.01.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.01.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.01.name/26.png deleted file mode 100644 index 1a419964c7..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.01.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.02.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.02.name/1.png deleted file mode 100644 index 780631e105..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.02.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.02.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.02.name/26.png deleted file mode 100644 index 780631e105..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.02.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.03.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.03.name/1.png deleted file mode 100644 index e69834d6b7..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.03.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.03.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.03.name/26.png deleted file mode 100644 index e69834d6b7..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.03.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.04.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.04.name/1.png deleted file mode 100644 index 189e94fc92..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.04.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.04.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.04.name/26.png deleted file mode 100644 index 189e94fc92..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.04.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.05.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.05.name/1.png deleted file mode 100644 index 8b8a41b13c..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.05.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.05.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.05.name/26.png deleted file mode 100644 index 8b8a41b13c..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.05.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.06.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.06.name/1.png deleted file mode 100644 index 9b9bdd42c1..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.06.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.06.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.06.name/26.png deleted file mode 100644 index 9b9bdd42c1..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.06.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.07.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.07.name/1.png deleted file mode 100644 index bb2cb605e3..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.07.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.07.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.07.name/26.png deleted file mode 100644 index bb2cb605e3..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.07.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.08.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.08.name/1.png deleted file mode 100644 index e9ab7d6272..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.08.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.08.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.08.name/26.png deleted file mode 100644 index e9ab7d6272..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.08.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.09.name/1.png b/front/public/images/large/miscutils/GTPP.BattPack.09.name/1.png deleted file mode 100644 index 77952e0188..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.09.name/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.BattPack.09.name/26.png b/front/public/images/large/miscutils/GTPP.BattPack.09.name/26.png deleted file mode 100644 index 77952e0188..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.BattPack.09.name/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GTPP.bauble.fireprotection.0.name/0.png b/front/public/images/large/miscutils/GTPP.bauble.fireprotection.0.name/0.png deleted file mode 100644 index 1824faf208..0000000000 Binary files a/front/public/images/large/miscutils/GTPP.bauble.fireprotection.0.name/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/GeneticMutagen/0.png b/front/public/images/large/miscutils/GeneticMutagen/0.png deleted file mode 100644 index cf6c1da7eb..0000000000 Binary files a/front/public/images/large/miscutils/GeneticMutagen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Hydrazine/0.png b/front/public/images/large/miscutils/Hydrazine/0.png deleted file mode 100644 index 0a07280919..0000000000 Binary files a/front/public/images/large/miscutils/Hydrazine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/HydrogenPeroxide/0.png b/front/public/images/large/miscutils/HydrogenPeroxide/0.png deleted file mode 100644 index 7a7d22f614..0000000000 Binary files a/front/public/images/large/miscutils/HydrogenPeroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/ImpureLiFBeF2/0.png b/front/public/images/large/miscutils/ImpureLiFBeF2/0.png deleted file mode 100644 index 0af88bcfad..0000000000 Binary files a/front/public/images/large/miscutils/ImpureLiFBeF2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Kerosene/0.png b/front/public/images/large/miscutils/Kerosene/0.png deleted file mode 100644 index 1636250e54..0000000000 Binary files a/front/public/images/large/miscutils/Kerosene/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/LiquidHydrogen/0.png b/front/public/images/large/miscutils/LiquidHydrogen/0.png deleted file mode 100644 index 1e6ec25ea8..0000000000 Binary files a/front/public/images/large/miscutils/LiquidHydrogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/LithiumPeroxide/0.png b/front/public/images/large/miscutils/LithiumPeroxide/0.png deleted file mode 100644 index b1aa79fe5f..0000000000 Binary files a/front/public/images/large/miscutils/LithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32040.png b/front/public/images/large/miscutils/MU-metaitem.01/32040.png deleted file mode 100644 index a69de52132..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32040.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32041.png b/front/public/images/large/miscutils/MU-metaitem.01/32041.png deleted file mode 100644 index 48e72c649c..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32041.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32042.png b/front/public/images/large/miscutils/MU-metaitem.01/32042.png deleted file mode 100644 index 7783b00bab..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32042.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32043.png b/front/public/images/large/miscutils/MU-metaitem.01/32043.png deleted file mode 100644 index 797ff2ae53..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32043.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32044.png b/front/public/images/large/miscutils/MU-metaitem.01/32044.png deleted file mode 100644 index 03001fabf3..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32044.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32050.png b/front/public/images/large/miscutils/MU-metaitem.01/32050.png deleted file mode 100644 index 9920cd3523..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32050.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32052.png b/front/public/images/large/miscutils/MU-metaitem.01/32052.png deleted file mode 100644 index 9920cd3523..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32052.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32054.png b/front/public/images/large/miscutils/MU-metaitem.01/32054.png deleted file mode 100644 index 9920cd3523..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32054.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32055.png b/front/public/images/large/miscutils/MU-metaitem.01/32055.png deleted file mode 100644 index 3f21fe0a51..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32055.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32066.png b/front/public/images/large/miscutils/MU-metaitem.01/32066.png deleted file mode 100644 index 4a05f3baa9..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32066.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32068.png b/front/public/images/large/miscutils/MU-metaitem.01/32068.png deleted file mode 100644 index ee1588a877..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32068.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32070.png b/front/public/images/large/miscutils/MU-metaitem.01/32070.png deleted file mode 100644 index f0da26ccae..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32070.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32072.png b/front/public/images/large/miscutils/MU-metaitem.01/32072.png deleted file mode 100644 index fad121f58b..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32072.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32073.png b/front/public/images/large/miscutils/MU-metaitem.01/32073.png deleted file mode 100644 index fc60212414..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32073.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32074.png b/front/public/images/large/miscutils/MU-metaitem.01/32074.png deleted file mode 100644 index 05148a72c0..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32074.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32075.png b/front/public/images/large/miscutils/MU-metaitem.01/32075.png deleted file mode 100644 index 7bab09c8fd..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32075.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32076.png b/front/public/images/large/miscutils/MU-metaitem.01/32076.png deleted file mode 100644 index e872b01ea9..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32076.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32100.png b/front/public/images/large/miscutils/MU-metaitem.01/32100.png deleted file mode 100644 index 7a31743fd2..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32100.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32105.png b/front/public/images/large/miscutils/MU-metaitem.01/32105.png deleted file mode 100644 index 77498563d3..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32105.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32106.png b/front/public/images/large/miscutils/MU-metaitem.01/32106.png deleted file mode 100644 index 7708a68772..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32106.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32107.png b/front/public/images/large/miscutils/MU-metaitem.01/32107.png deleted file mode 100644 index 76c333b29c..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32107.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32108.png b/front/public/images/large/miscutils/MU-metaitem.01/32108.png deleted file mode 100644 index 2a07bbcc69..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32108.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32109.png b/front/public/images/large/miscutils/MU-metaitem.01/32109.png deleted file mode 100644 index 26dec1e177..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32109.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32110.png b/front/public/images/large/miscutils/MU-metaitem.01/32110.png deleted file mode 100644 index 1ca6aa9a3c..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32110.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32140.png b/front/public/images/large/miscutils/MU-metaitem.01/32140.png deleted file mode 100644 index 73933948ef..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32140.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32142.png b/front/public/images/large/miscutils/MU-metaitem.01/32142.png deleted file mode 100644 index e446d00549..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32142.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32143.png b/front/public/images/large/miscutils/MU-metaitem.01/32143.png deleted file mode 100644 index 1488f40529..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32143.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32144.png b/front/public/images/large/miscutils/MU-metaitem.01/32144.png deleted file mode 100644 index 59cadd5a39..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32144.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32145.png b/front/public/images/large/miscutils/MU-metaitem.01/32145.png deleted file mode 100644 index 7ba771f7aa..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32145.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32146.png b/front/public/images/large/miscutils/MU-metaitem.01/32146.png deleted file mode 100644 index 2bf8f2175a..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32146.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32147.png b/front/public/images/large/miscutils/MU-metaitem.01/32147.png deleted file mode 100644 index ffa9559ceb..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32147.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32148.png b/front/public/images/large/miscutils/MU-metaitem.01/32148.png deleted file mode 100644 index 546e3e098c..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32148.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32149.png b/front/public/images/large/miscutils/MU-metaitem.01/32149.png deleted file mode 100644 index 4fe189ab69..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32149.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32150.png b/front/public/images/large/miscutils/MU-metaitem.01/32150.png deleted file mode 100644 index cd2d317d16..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32150.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32151.png b/front/public/images/large/miscutils/MU-metaitem.01/32151.png deleted file mode 100644 index 1929ee18c9..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32151.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metaitem.01/32152.png b/front/public/images/large/miscutils/MU-metaitem.01/32152.png deleted file mode 100644 index 1d7821904c..0000000000 Binary files a/front/public/images/large/miscutils/MU-metaitem.01/32152.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metatool.01/1000.png b/front/public/images/large/miscutils/MU-metatool.01/1000.png deleted file mode 100644 index 0ec4bcc7f5..0000000000 Binary files a/front/public/images/large/miscutils/MU-metatool.01/1000.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metatool.01/1001.png b/front/public/images/large/miscutils/MU-metatool.01/1001.png deleted file mode 100644 index 198e0a9d1e..0000000000 Binary files a/front/public/images/large/miscutils/MU-metatool.01/1001.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metatool.01/1002.png b/front/public/images/large/miscutils/MU-metatool.01/1002.png deleted file mode 100644 index 903037a723..0000000000 Binary files a/front/public/images/large/miscutils/MU-metatool.01/1002.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MU-metatool.01/1003.png b/front/public/images/large/miscutils/MU-metatool.01/1003.png deleted file mode 100644 index 8b968b2a2f..0000000000 Binary files a/front/public/images/large/miscutils/MU-metatool.01/1003.png and /dev/null differ diff --git a/front/public/images/large/miscutils/ManureSlurry/0.png b/front/public/images/large/miscutils/ManureSlurry/0.png deleted file mode 100644 index 986bc7ca16..0000000000 Binary files a/front/public/images/large/miscutils/ManureSlurry/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Monomethylhydrazine/0.png b/front/public/images/large/miscutils/Monomethylhydrazine/0.png deleted file mode 100644 index 4676572e2c..0000000000 Binary files a/front/public/images/large/miscutils/Monomethylhydrazine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/MudRedSlurry/0.png b/front/public/images/large/miscutils/MudRedSlurry/0.png deleted file mode 100644 index 302e1adaae..0000000000 Binary files a/front/public/images/large/miscutils/MudRedSlurry/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/Naphthalene/0.png b/front/public/images/large/miscutils/Naphthalene/0.png deleted file mode 100644 index bceca04929..0000000000 Binary files a/front/public/images/large/miscutils/Naphthalene/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/NitrogenTetroxide/0.png b/front/public/images/large/miscutils/NitrogenTetroxide/0.png deleted file mode 100644 index 1227cd613b..0000000000 Binary files a/front/public/images/large/miscutils/NitrogenTetroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/NuclearWaste/0.png b/front/public/images/large/miscutils/NuclearWaste/0.png deleted file mode 100644 index 51f9c66524..0000000000 Binary files a/front/public/images/large/miscutils/NuclearWaste/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/RP1Fuel/0.png b/front/public/images/large/miscutils/RP1Fuel/0.png deleted file mode 100644 index 4dbf930436..0000000000 Binary files a/front/public/images/large/miscutils/RP1Fuel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/RaisinJuice/0.png b/front/public/images/large/miscutils/RaisinJuice/0.png deleted file mode 100644 index 1b3ad26946..0000000000 Binary files a/front/public/images/large/miscutils/RaisinJuice/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/RawWaste/0.png b/front/public/images/large/miscutils/RawWaste/0.png deleted file mode 100644 index b69e67db4e..0000000000 Binary files a/front/public/images/large/miscutils/RawWaste/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/RocketFuelMixA/0.png b/front/public/images/large/miscutils/RocketFuelMixA/0.png deleted file mode 100644 index 4d8f97b356..0000000000 Binary files a/front/public/images/large/miscutils/RocketFuelMixA/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/RocketFuelMixB/0.png b/front/public/images/large/miscutils/RocketFuelMixB/0.png deleted file mode 100644 index 3d9b5e0b30..0000000000 Binary files a/front/public/images/large/miscutils/RocketFuelMixB/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/RocketFuelMixC/0.png b/front/public/images/large/miscutils/RocketFuelMixC/0.png deleted file mode 100644 index 4d345cdb5b..0000000000 Binary files a/front/public/images/large/miscutils/RocketFuelMixC/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/RocketFuelMixD/0.png b/front/public/images/large/miscutils/RocketFuelMixD/0.png deleted file mode 100644 index 8fc9041d57..0000000000 Binary files a/front/public/images/large/miscutils/RocketFuelMixD/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/SulfuricCoalTarOil/0.png b/front/public/images/large/miscutils/SulfuricCoalTarOil/0.png deleted file mode 100644 index e24ab8f752..0000000000 Binary files a/front/public/images/large/miscutils/SulfuricCoalTarOil/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/UN18Fertiliser/0.png b/front/public/images/large/miscutils/UN18Fertiliser/0.png deleted file mode 100644 index eee9856549..0000000000 Binary files a/front/public/images/large/miscutils/UN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/UN32Fertiliser/0.png b/front/public/images/large/miscutils/UN32Fertiliser/0.png deleted file mode 100644 index 17e6178559..0000000000 Binary files a/front/public/images/large/miscutils/UN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/ZirconiumTetrafluoride/0.png b/front/public/images/large/miscutils/ZirconiumTetrafluoride/0.png deleted file mode 100644 index a1ba97042b..0000000000 Binary files a/front/public/images/large/miscutils/ZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/aniline/0.png b/front/public/images/large/miscutils/aniline/0.png deleted file mode 100644 index a023195994..0000000000 Binary files a/front/public/images/large/miscutils/aniline/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlackGate/0.png b/front/public/images/large/miscutils/blockBlackGate/0.png deleted file mode 100644 index 598c63c26b..0000000000 Binary files a/front/public/images/large/miscutils/blockBlackGate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockAbyssalAlloy/0.png b/front/public/images/large/miscutils/blockBlockAbyssalAlloy/0.png deleted file mode 100644 index 9d002f5dad..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockAdvancedNitinol/0.png b/front/public/images/large/miscutils/blockBlockAdvancedNitinol/0.png deleted file mode 100644 index 29e472d319..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockAncientGranite/0.png b/front/public/images/large/miscutils/blockBlockAncientGranite/0.png deleted file mode 100644 index acbd887b04..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockArcanite/0.png b/front/public/images/large/miscutils/blockBlockArcanite/0.png deleted file mode 100644 index 0c790b93ab..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockArceusAlloy2B/0.png b/front/public/images/large/miscutils/blockBlockArceusAlloy2B/0.png deleted file mode 100644 index 2d4b97c58e..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockAstralTitanium/0.png b/front/public/images/large/miscutils/blockBlockAstralTitanium/0.png deleted file mode 100644 index e9bbc03b33..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockBabbitAlloy/0.png b/front/public/images/large/miscutils/blockBlockBabbitAlloy/0.png deleted file mode 100644 index f12b6a7f8d..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockBlackMetal/0.png b/front/public/images/large/miscutils/blockBlockBlackMetal/0.png deleted file mode 100644 index c237738007..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockBlackTitanium/0.png b/front/public/images/large/miscutils/blockBlockBlackTitanium/0.png deleted file mode 100644 index a3cf823863..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockBloodSteel/0.png b/front/public/images/large/miscutils/blockBlockBloodSteel/0.png deleted file mode 100644 index 0d21b0312e..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockBotmium/0.png b/front/public/images/large/miscutils/blockBlockBotmium/0.png deleted file mode 100644 index 2fd3c2d10f..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockCalifornium/0.png b/front/public/images/large/miscutils/blockBlockCalifornium/0.png deleted file mode 100644 index 03d30db08a..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockCelestialTungsten/0.png b/front/public/images/large/miscutils/blockBlockCelestialTungsten/0.png deleted file mode 100644 index be36dd52fe..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockChromaticGlass/0.png b/front/public/images/large/miscutils/blockBlockChromaticGlass/0.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockCinobiteA243/0.png b/front/public/images/large/miscutils/blockBlockCinobiteA243/0.png deleted file mode 100644 index f52c69a4d0..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockCurium/0.png b/front/public/images/large/miscutils/blockBlockCurium/0.png deleted file mode 100644 index d8b9be4686..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockDragonblood/0.png b/front/public/images/large/miscutils/blockBlockDragonblood/0.png deleted file mode 100644 index c4716a44fe..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockDysprosium/0.png b/front/public/images/large/miscutils/blockBlockDysprosium/0.png deleted file mode 100644 index 09a182e58d..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockEglinSteel/0.png b/front/public/images/large/miscutils/blockBlockEglinSteel/0.png deleted file mode 100644 index be58d2d908..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockEnergyCrystal/0.png b/front/public/images/large/miscutils/blockBlockEnergyCrystal/0.png deleted file mode 100644 index 7b47ab71ca..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockErbium/0.png b/front/public/images/large/miscutils/blockBlockErbium/0.png deleted file mode 100644 index 4cfdedc331..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockFermium/0.png b/front/public/images/large/miscutils/blockBlockFermium/0.png deleted file mode 100644 index 94410b3173..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockGermanium/0.png b/front/public/images/large/miscutils/blockBlockGermanium/0.png deleted file mode 100644 index 647a7a53a7..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockGrisium/0.png b/front/public/images/large/miscutils/blockBlockGrisium/0.png deleted file mode 100644 index 35ee8b0884..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHS188A/0.png b/front/public/images/large/miscutils/blockBlockHS188A/0.png deleted file mode 100644 index 09564c1b70..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHafnium/0.png b/front/public/images/large/miscutils/blockBlockHafnium/0.png deleted file mode 100644 index 5a626a117d..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHastelloyC276/0.png b/front/public/images/large/miscutils/blockBlockHastelloyC276/0.png deleted file mode 100644 index bb8bb3f85a..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHastelloyN/0.png b/front/public/images/large/miscutils/blockBlockHastelloyN/0.png deleted file mode 100644 index 0bd08a9fc8..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHastelloyW/0.png b/front/public/images/large/miscutils/blockBlockHastelloyW/0.png deleted file mode 100644 index 2befdb3ca2..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHastelloyX/0.png b/front/public/images/large/miscutils/blockBlockHastelloyX/0.png deleted file mode 100644 index 3de1496e77..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHeLiCoPtEr/0.png b/front/public/images/large/miscutils/blockBlockHeLiCoPtEr/0.png deleted file mode 100644 index e2b6ed7e71..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockHypogen/0.png b/front/public/images/large/miscutils/blockBlockHypogen/0.png deleted file mode 100644 index 8df30a8aea..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockIncoloy020/0.png b/front/public/images/large/miscutils/blockBlockIncoloy020/0.png deleted file mode 100644 index 25f9a26e26..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockIncoloyDS/0.png b/front/public/images/large/miscutils/blockBlockIncoloyDS/0.png deleted file mode 100644 index e890a33f6f..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockIncoloyMA956/0.png b/front/public/images/large/miscutils/blockBlockIncoloyMA956/0.png deleted file mode 100644 index 0d090d263b..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockInconel625/0.png b/front/public/images/large/miscutils/blockBlockInconel625/0.png deleted file mode 100644 index ef0885262f..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockInconel690/0.png b/front/public/images/large/miscutils/blockBlockInconel690/0.png deleted file mode 100644 index e886c56ee6..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockInconel792/0.png b/front/public/images/large/miscutils/blockBlockInconel792/0.png deleted file mode 100644 index 0075e3fb7c..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockIndalloy140/0.png b/front/public/images/large/miscutils/blockBlockIndalloy140/0.png deleted file mode 100644 index 2e3da7c18e..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockIodine/0.png b/front/public/images/large/miscutils/blockBlockIodine/0.png deleted file mode 100644 index 73823bde33..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockLafiumCompound/0.png b/front/public/images/large/miscutils/blockBlockLafiumCompound/0.png deleted file mode 100644 index ada9d65840..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockLaurenium/0.png b/front/public/images/large/miscutils/blockBlockLaurenium/0.png deleted file mode 100644 index f88676edce..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockLithium7/0.png b/front/public/images/large/miscutils/blockBlockLithium7/0.png deleted file mode 100644 index a3e5fb8ca2..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockMaragingSteel250/0.png b/front/public/images/large/miscutils/blockBlockMaragingSteel250/0.png deleted file mode 100644 index a059f17bed..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockMaragingSteel300/0.png b/front/public/images/large/miscutils/blockBlockMaragingSteel300/0.png deleted file mode 100644 index 1e9cf73715..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockMaragingSteel350/0.png b/front/public/images/large/miscutils/blockBlockMaragingSteel350/0.png deleted file mode 100644 index 35577c2ee4..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockNeptunium/0.png b/front/public/images/large/miscutils/blockBlockNeptunium/0.png deleted file mode 100644 index 1363c5744b..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockNiobiumCarbide/0.png b/front/public/images/large/miscutils/blockBlockNiobiumCarbide/0.png deleted file mode 100644 index 7ec3dd515d..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockNitinol60/0.png b/front/public/images/large/miscutils/blockBlockNitinol60/0.png deleted file mode 100644 index 29e472d319..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockOctiron/0.png b/front/public/images/large/miscutils/blockBlockOctiron/0.png deleted file mode 100644 index b17a1622c2..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockPikyonium64B/0.png b/front/public/images/large/miscutils/blockBlockPikyonium64B/0.png deleted file mode 100644 index 6d3adeeed7..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockPlutonium238/0.png b/front/public/images/large/miscutils/blockBlockPlutonium238/0.png deleted file mode 100644 index a457516b41..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockPolonium/0.png b/front/public/images/large/miscutils/blockBlockPolonium/0.png deleted file mode 100644 index 7fbbaea155..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockPotin/0.png b/front/public/images/large/miscutils/blockBlockPotin/0.png deleted file mode 100644 index 364fd392cf..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockPraseodymium/0.png b/front/public/images/large/miscutils/blockBlockPraseodymium/0.png deleted file mode 100644 index e4d8337deb..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockPromethium/0.png b/front/public/images/large/miscutils/blockBlockPromethium/0.png deleted file mode 100644 index 0a8230cc01..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockPromethium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockProtactinium/0.png b/front/public/images/large/miscutils/blockBlockProtactinium/0.png deleted file mode 100644 index 30bfcc1f22..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockQuantum/0.png b/front/public/images/large/miscutils/blockBlockQuantum/0.png deleted file mode 100644 index 9d4a3cea19..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockRadium/0.png b/front/public/images/large/miscutils/blockBlockRadium/0.png deleted file mode 100644 index f30b14da20..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockRhenium/0.png b/front/public/images/large/miscutils/blockBlockRhenium/0.png deleted file mode 100644 index 2d596aedc1..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockRhodium/0.png b/front/public/images/large/miscutils/blockBlockRhodium/0.png deleted file mode 100644 index 5a1dd5c398..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockRhugnor/0.png b/front/public/images/large/miscutils/blockBlockRhugnor/0.png deleted file mode 100644 index ed5f754a37..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockRunite/0.png b/front/public/images/large/miscutils/blockBlockRunite/0.png deleted file mode 100644 index 1b5ec59deb..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockRuthenium/0.png b/front/public/images/large/miscutils/blockBlockRuthenium/0.png deleted file mode 100644 index 5a1dd5c398..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockSelenium/0.png b/front/public/images/large/miscutils/blockBlockSelenium/0.png deleted file mode 100644 index d95db31263..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockSiliconCarbide/0.png b/front/public/images/large/miscutils/blockBlockSiliconCarbide/0.png deleted file mode 100644 index a6e6cda470..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockStaballoy/0.png b/front/public/images/large/miscutils/blockBlockStaballoy/0.png deleted file mode 100644 index 9892bf9e69..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockStellite/0.png b/front/public/images/large/miscutils/blockBlockStellite/0.png deleted file mode 100644 index f3b79abde4..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockStrontium/0.png b/front/public/images/large/miscutils/blockBlockStrontium/0.png deleted file mode 100644 index 746f9ddd12..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTalonite/0.png b/front/public/images/large/miscutils/blockBlockTalonite/0.png deleted file mode 100644 index e47ade9b96..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTantalloy60/0.png b/front/public/images/large/miscutils/blockBlockTantalloy60/0.png deleted file mode 100644 index e4b511bbd0..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTantalloy61/0.png b/front/public/images/large/miscutils/blockBlockTantalloy61/0.png deleted file mode 100644 index 23c7535a7e..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTantalumCarbide/0.png b/front/public/images/large/miscutils/blockBlockTantalumCarbide/0.png deleted file mode 100644 index 584e6b3f2c..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTeflon/0.png b/front/public/images/large/miscutils/blockBlockTeflon/0.png deleted file mode 100644 index 012736105f..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTellurium/0.png b/front/public/images/large/miscutils/blockBlockTellurium/0.png deleted file mode 100644 index dc4bcb57fb..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockThallium/0.png b/front/public/images/large/miscutils/blockBlockThallium/0.png deleted file mode 100644 index 62fe84aaff..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockThorium232/0.png b/front/public/images/large/miscutils/blockBlockThorium232/0.png deleted file mode 100644 index 49c3e4a630..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTitansteel/0.png b/front/public/images/large/miscutils/blockBlockTitansteel/0.png deleted file mode 100644 index 9c16593961..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/blockBlockTriniumNaquadahAlloy/0.png deleted file mode 100644 index 5b5b56ec1d..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/blockBlockTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 6476aaaf13..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/blockBlockTriniumTitaniumAlloy/0.png deleted file mode 100644 index a5b96d47c5..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTumbaga/0.png b/front/public/images/large/miscutils/blockBlockTumbaga/0.png deleted file mode 100644 index e81935b761..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/blockBlockTungstenTitaniumCarbide/0.png deleted file mode 100644 index 46f131f4d3..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockUranium232/0.png b/front/public/images/large/miscutils/blockBlockUranium232/0.png deleted file mode 100644 index 3bca6ed8cb..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockUranium233/0.png b/front/public/images/large/miscutils/blockBlockUranium233/0.png deleted file mode 100644 index d9c4de7411..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockWatertightSteel/0.png b/front/public/images/large/miscutils/blockBlockWatertightSteel/0.png deleted file mode 100644 index d92750cd13..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockWhiteMetal/0.png b/front/public/images/large/miscutils/blockBlockWhiteMetal/0.png deleted file mode 100644 index 252c0a0598..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockZeron100/0.png b/front/public/images/large/miscutils/blockBlockZeron100/0.png deleted file mode 100644 index b07a7b6a57..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockZirconium/0.png b/front/public/images/large/miscutils/blockBlockZirconium/0.png deleted file mode 100644 index 8c8ffefba6..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockBlockZirconiumCarbide/0.png b/front/public/images/large/miscutils/blockBlockZirconiumCarbide/0.png deleted file mode 100644 index 0a4beb450e..0000000000 Binary files a/front/public/images/large/miscutils/blockBlockZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCircuitProgrammer/0.png b/front/public/images/large/miscutils/blockCircuitProgrammer/0.png deleted file mode 100644 index 4c493ff9db..0000000000 Binary files a/front/public/images/large/miscutils/blockCircuitProgrammer/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/0.png b/front/public/images/large/miscutils/blockCompressedObsidian/0.png deleted file mode 100644 index e394cf7f9d..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/1.png b/front/public/images/large/miscutils/blockCompressedObsidian/1.png deleted file mode 100644 index 0088912937..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/10.png b/front/public/images/large/miscutils/blockCompressedObsidian/10.png deleted file mode 100644 index 2b1d243a51..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/2.png b/front/public/images/large/miscutils/blockCompressedObsidian/2.png deleted file mode 100644 index bbc19c2ffa..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/3.png b/front/public/images/large/miscutils/blockCompressedObsidian/3.png deleted file mode 100644 index 71452c56ce..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/4.png b/front/public/images/large/miscutils/blockCompressedObsidian/4.png deleted file mode 100644 index 84832dacf6..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/5.png b/front/public/images/large/miscutils/blockCompressedObsidian/5.png deleted file mode 100644 index 89614b9b79..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/6.png b/front/public/images/large/miscutils/blockCompressedObsidian/6.png deleted file mode 100644 index ee1447269c..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/7.png b/front/public/images/large/miscutils/blockCompressedObsidian/7.png deleted file mode 100644 index ce05516a3a..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/8.png b/front/public/images/large/miscutils/blockCompressedObsidian/8.png deleted file mode 100644 index 6140a62b9c..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockCompressedObsidian/9.png b/front/public/images/large/miscutils/blockCompressedObsidian/9.png deleted file mode 100644 index acc892c738..0000000000 Binary files a/front/public/images/large/miscutils/blockCompressedObsidian/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockDecayablesChest/0.png b/front/public/images/large/miscutils/blockDecayablesChest/0.png deleted file mode 100644 index 8e8e48a90d..0000000000 Binary files a/front/public/images/large/miscutils/blockDecayablesChest/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFishTrap/0.png b/front/public/images/large/miscutils/blockFishTrap/0.png deleted file mode 100644 index 04d7ff827e..0000000000 Binary files a/front/public/images/large/miscutils/blockFishTrap/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtAbyssalAlloy/0.png b/front/public/images/large/miscutils/blockFrameGtAbyssalAlloy/0.png deleted file mode 100644 index 644a1d95cd..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtArcanite/0.png b/front/public/images/large/miscutils/blockFrameGtArcanite/0.png deleted file mode 100644 index 70d0e5d4d8..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtArceusAlloy2B/0.png b/front/public/images/large/miscutils/blockFrameGtArceusAlloy2B/0.png deleted file mode 100644 index 9c55f5cf55..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtAstralTitanium/0.png b/front/public/images/large/miscutils/blockFrameGtAstralTitanium/0.png deleted file mode 100644 index 421110163c..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtBlackMetal/0.png b/front/public/images/large/miscutils/blockFrameGtBlackMetal/0.png deleted file mode 100644 index 60ed14a6a0..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtBloodSteel/0.png b/front/public/images/large/miscutils/blockFrameGtBloodSteel/0.png deleted file mode 100644 index 4e953da2bd..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtBotmium/0.png b/front/public/images/large/miscutils/blockFrameGtBotmium/0.png deleted file mode 100644 index 2efb0ef36e..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtCelestialTungsten/0.png b/front/public/images/large/miscutils/blockFrameGtCelestialTungsten/0.png deleted file mode 100644 index e73c2a0945..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtChromaticGlass/0.png b/front/public/images/large/miscutils/blockFrameGtChromaticGlass/0.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtCinobiteA243/0.png b/front/public/images/large/miscutils/blockFrameGtCinobiteA243/0.png deleted file mode 100644 index da76046da8..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtDysprosium/0.png b/front/public/images/large/miscutils/blockFrameGtDysprosium/0.png deleted file mode 100644 index 1aca18a99a..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtEglinSteel/0.png b/front/public/images/large/miscutils/blockFrameGtEglinSteel/0.png deleted file mode 100644 index 66ffd21794..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtEnergyCrystal/0.png b/front/public/images/large/miscutils/blockFrameGtEnergyCrystal/0.png deleted file mode 100644 index 44273e605b..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtErbium/0.png b/front/public/images/large/miscutils/blockFrameGtErbium/0.png deleted file mode 100644 index aa667cc4ed..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtGermanium/0.png b/front/public/images/large/miscutils/blockFrameGtGermanium/0.png deleted file mode 100644 index 173a5fd94a..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtGrisium/0.png b/front/public/images/large/miscutils/blockFrameGtGrisium/0.png deleted file mode 100644 index a720d73588..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHS188A/0.png b/front/public/images/large/miscutils/blockFrameGtHS188A/0.png deleted file mode 100644 index 8b0e4a9e76..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHafnium/0.png b/front/public/images/large/miscutils/blockFrameGtHafnium/0.png deleted file mode 100644 index 002609db80..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHastelloyC276/0.png b/front/public/images/large/miscutils/blockFrameGtHastelloyC276/0.png deleted file mode 100644 index e11459f608..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHastelloyN/0.png b/front/public/images/large/miscutils/blockFrameGtHastelloyN/0.png deleted file mode 100644 index 8a824b1f1b..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHastelloyW/0.png b/front/public/images/large/miscutils/blockFrameGtHastelloyW/0.png deleted file mode 100644 index 3a268fa8fb..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHastelloyX/0.png b/front/public/images/large/miscutils/blockFrameGtHastelloyX/0.png deleted file mode 100644 index b71b826099..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHeLiCoPtEr/0.png b/front/public/images/large/miscutils/blockFrameGtHeLiCoPtEr/0.png deleted file mode 100644 index 6080ab4400..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtHypogen/0.png b/front/public/images/large/miscutils/blockFrameGtHypogen/0.png deleted file mode 100644 index a1dc32abcd..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtIncoloy020/0.png b/front/public/images/large/miscutils/blockFrameGtIncoloy020/0.png deleted file mode 100644 index 0dbfa1b939..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtIncoloyDS/0.png b/front/public/images/large/miscutils/blockFrameGtIncoloyDS/0.png deleted file mode 100644 index e855066bc4..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtIncoloyMA956/0.png b/front/public/images/large/miscutils/blockFrameGtIncoloyMA956/0.png deleted file mode 100644 index 9358f4c5e6..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtInconel625/0.png b/front/public/images/large/miscutils/blockFrameGtInconel625/0.png deleted file mode 100644 index 78b9dd266d..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtInconel690/0.png b/front/public/images/large/miscutils/blockFrameGtInconel690/0.png deleted file mode 100644 index c65382d3f3..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtInconel792/0.png b/front/public/images/large/miscutils/blockFrameGtInconel792/0.png deleted file mode 100644 index f0eb0bf5ad..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtIodine/0.png b/front/public/images/large/miscutils/blockFrameGtIodine/0.png deleted file mode 100644 index 8222439738..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtLafiumCompound/0.png b/front/public/images/large/miscutils/blockFrameGtLafiumCompound/0.png deleted file mode 100644 index 30bd3c98d9..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtLaurenium/0.png b/front/public/images/large/miscutils/blockFrameGtLaurenium/0.png deleted file mode 100644 index 903c5eec97..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtMaragingSteel250/0.png b/front/public/images/large/miscutils/blockFrameGtMaragingSteel250/0.png deleted file mode 100644 index 37b5fb4efb..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtMaragingSteel300/0.png b/front/public/images/large/miscutils/blockFrameGtMaragingSteel300/0.png deleted file mode 100644 index 811ce2b78e..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtMaragingSteel350/0.png b/front/public/images/large/miscutils/blockFrameGtMaragingSteel350/0.png deleted file mode 100644 index 522e37ebb2..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtNiobiumCarbide/0.png b/front/public/images/large/miscutils/blockFrameGtNiobiumCarbide/0.png deleted file mode 100644 index b8dc7c15e4..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtNitinol60/0.png b/front/public/images/large/miscutils/blockFrameGtNitinol60/0.png deleted file mode 100644 index ccf67ba0ec..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtOctiron/0.png b/front/public/images/large/miscutils/blockFrameGtOctiron/0.png deleted file mode 100644 index 645db20157..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtPikyonium64B/0.png b/front/public/images/large/miscutils/blockFrameGtPikyonium64B/0.png deleted file mode 100644 index 2c5a83b008..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtPotin/0.png b/front/public/images/large/miscutils/blockFrameGtPotin/0.png deleted file mode 100644 index b43947cef9..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtPraseodymium/0.png b/front/public/images/large/miscutils/blockFrameGtPraseodymium/0.png deleted file mode 100644 index 139722e7c3..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtQuantum/0.png b/front/public/images/large/miscutils/blockFrameGtQuantum/0.png deleted file mode 100644 index d4ebebe710..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtRhenium/0.png b/front/public/images/large/miscutils/blockFrameGtRhenium/0.png deleted file mode 100644 index 11e3c28f40..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtRhodium/0.png b/front/public/images/large/miscutils/blockFrameGtRhodium/0.png deleted file mode 100644 index 7b9a5b21fa..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtRuthenium/0.png b/front/public/images/large/miscutils/blockFrameGtRuthenium/0.png deleted file mode 100644 index 7b9a5b21fa..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtSelenium/0.png b/front/public/images/large/miscutils/blockFrameGtSelenium/0.png deleted file mode 100644 index e261375b76..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtSiliconCarbide/0.png b/front/public/images/large/miscutils/blockFrameGtSiliconCarbide/0.png deleted file mode 100644 index 1532415d4c..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtStaballoy/0.png b/front/public/images/large/miscutils/blockFrameGtStaballoy/0.png deleted file mode 100644 index c35a97da7e..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtStellite/0.png b/front/public/images/large/miscutils/blockFrameGtStellite/0.png deleted file mode 100644 index c42d38db46..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtStrontium/0.png b/front/public/images/large/miscutils/blockFrameGtStrontium/0.png deleted file mode 100644 index d8953f07c0..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTalonite/0.png b/front/public/images/large/miscutils/blockFrameGtTalonite/0.png deleted file mode 100644 index fecbf31dd6..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTantalloy60/0.png b/front/public/images/large/miscutils/blockFrameGtTantalloy60/0.png deleted file mode 100644 index 6d6e449ccb..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTantalloy61/0.png b/front/public/images/large/miscutils/blockFrameGtTantalloy61/0.png deleted file mode 100644 index f3bbb3538e..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTantalumCarbide/0.png b/front/public/images/large/miscutils/blockFrameGtTantalumCarbide/0.png deleted file mode 100644 index 0e46fe5853..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTellurium/0.png b/front/public/images/large/miscutils/blockFrameGtTellurium/0.png deleted file mode 100644 index f377c2a1c7..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtThallium/0.png b/front/public/images/large/miscutils/blockFrameGtThallium/0.png deleted file mode 100644 index 9901922028..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTitansteel/0.png b/front/public/images/large/miscutils/blockFrameGtTitansteel/0.png deleted file mode 100644 index c957884fd8..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/blockFrameGtTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 66279a15f8..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/blockFrameGtTriniumTitaniumAlloy/0.png deleted file mode 100644 index e3bc81ce4e..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTumbaga/0.png b/front/public/images/large/miscutils/blockFrameGtTumbaga/0.png deleted file mode 100644 index f8453c0f2e..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/blockFrameGtTungstenTitaniumCarbide/0.png deleted file mode 100644 index c63a2fe38f..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtWatertightSteel/0.png b/front/public/images/large/miscutils/blockFrameGtWatertightSteel/0.png deleted file mode 100644 index c89c064c82..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtWhiteMetal/0.png b/front/public/images/large/miscutils/blockFrameGtWhiteMetal/0.png deleted file mode 100644 index 45d533de85..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtZeron100/0.png b/front/public/images/large/miscutils/blockFrameGtZeron100/0.png deleted file mode 100644 index 9642a3d87a..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtZirconium/0.png b/front/public/images/large/miscutils/blockFrameGtZirconium/0.png deleted file mode 100644 index 0f5cef9cca..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockFrameGtZirconiumCarbide/0.png b/front/public/images/large/miscutils/blockFrameGtZirconiumCarbide/0.png deleted file mode 100644 index e2d8ab7617..0000000000 Binary files a/front/public/images/large/miscutils/blockFrameGtZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockHellFire/0.png b/front/public/images/large/miscutils/blockHellFire/0.png deleted file mode 100644 index 813aa8d803..0000000000 Binary files a/front/public/images/large/miscutils/blockHellFire/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockInfiniteFluidTank/0.png b/front/public/images/large/miscutils/blockInfiniteFluidTank/0.png deleted file mode 100644 index e06def5d43..0000000000 Binary files a/front/public/images/large/miscutils/blockInfiniteFluidTank/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockMFEffect/0.png b/front/public/images/large/miscutils/blockMFEffect/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/miscutils/blockMFEffect/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockMiningExplosives/0.png b/front/public/images/large/miscutils/blockMiningExplosives/0.png deleted file mode 100644 index dbad99a125..0000000000 Binary files a/front/public/images/large/miscutils/blockMiningExplosives/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockPestKiller/0.png b/front/public/images/large/miscutils/blockPestKiller/0.png deleted file mode 100644 index 5d15a7d63b..0000000000 Binary files a/front/public/images/large/miscutils/blockPestKiller/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockPineLeaves/0.png b/front/public/images/large/miscutils/blockPineLeaves/0.png deleted file mode 100644 index 26c9f721f6..0000000000 Binary files a/front/public/images/large/miscutils/blockPineLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockPineLogLog/0.png b/front/public/images/large/miscutils/blockPineLogLog/0.png deleted file mode 100644 index a57559241e..0000000000 Binary files a/front/public/images/large/miscutils/blockPineLogLog/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockPineSapling/0.png b/front/public/images/large/miscutils/blockPineSapling/0.png deleted file mode 100644 index 7da4f999c1..0000000000 Binary files a/front/public/images/large/miscutils/blockPineSapling/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockPooCollector/0.png b/front/public/images/large/miscutils/blockPooCollector/0.png deleted file mode 100644 index 931f279b33..0000000000 Binary files a/front/public/images/large/miscutils/blockPooCollector/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockPooCollector/8.png b/front/public/images/large/miscutils/blockPooCollector/8.png deleted file mode 100644 index 1e3eceeba6..0000000000 Binary files a/front/public/images/large/miscutils/blockPooCollector/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockProjectBench/0.png b/front/public/images/large/miscutils/blockProjectBench/0.png deleted file mode 100644 index b31844117b..0000000000 Binary files a/front/public/images/large/miscutils/blockProjectBench/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockRainforestOakLeaves/0.png b/front/public/images/large/miscutils/blockRainforestOakLeaves/0.png deleted file mode 100644 index 7aea72c3fd..0000000000 Binary files a/front/public/images/large/miscutils/blockRainforestOakLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockRainforestOakLog/0.png b/front/public/images/large/miscutils/blockRainforestOakLog/0.png deleted file mode 100644 index bfa72cb049..0000000000 Binary files a/front/public/images/large/miscutils/blockRainforestOakLog/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockRainforestOakSapling/0.png b/front/public/images/large/miscutils/blockRainforestOakSapling/0.png deleted file mode 100644 index 62a3a213ea..0000000000 Binary files a/front/public/images/large/miscutils/blockRainforestOakSapling/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockSuperJukebox/0.png b/front/public/images/large/miscutils/blockSuperJukebox/0.png deleted file mode 100644 index 4624d022b3..0000000000 Binary files a/front/public/images/large/miscutils/blockSuperJukebox/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/blockVolumetricFlaskSetter/0.png b/front/public/images/large/miscutils/blockVolumetricFlaskSetter/0.png deleted file mode 100644 index ab2bbab3f3..0000000000 Binary files a/front/public/images/large/miscutils/blockVolumetricFlaskSetter/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bookGT/0.png b/front/public/images/large/miscutils/bookGT/0.png deleted file mode 100644 index bd9002864b..0000000000 Binary files a/front/public/images/large/miscutils/bookGT/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bookGT/1.png b/front/public/images/large/miscutils/bookGT/1.png deleted file mode 100644 index bd9002864b..0000000000 Binary files a/front/public/images/large/miscutils/bookGT/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bookGT/2.png b/front/public/images/large/miscutils/bookGT/2.png deleted file mode 100644 index bd9002864b..0000000000 Binary files a/front/public/images/large/miscutils/bookGT/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bookGT/3.png b/front/public/images/large/miscutils/bookGT/3.png deleted file mode 100644 index bd9002864b..0000000000 Binary files a/front/public/images/large/miscutils/bookGT/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bookGT/4.png b/front/public/images/large/miscutils/bookGT/4.png deleted file mode 100644 index bd9002864b..0000000000 Binary files a/front/public/images/large/miscutils/bookGT/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bookGT/5.png b/front/public/images/large/miscutils/bookGT/5.png deleted file mode 100644 index bd9002864b..0000000000 Binary files a/front/public/images/large/miscutils/bookGT/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/boricacid/0.png b/front/public/images/large/miscutils/boricacid/0.png deleted file mode 100644 index e77d3ffb7d..0000000000 Binary files a/front/public/images/large/miscutils/boricacid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bucket/1.png b/front/public/images/large/miscutils/bucket/1.png deleted file mode 100644 index fc1c1c96b6..0000000000 Binary files a/front/public/images/large/miscutils/bucket/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bucket/2.png b/front/public/images/large/miscutils/bucket/2.png deleted file mode 100644 index de8515a836..0000000000 Binary files a/front/public/images/large/miscutils/bucket/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/bucket/3.png b/front/public/images/large/miscutils/bucket/3.png deleted file mode 100644 index 6fecf7b336..0000000000 Binary files a/front/public/images/large/miscutils/bucket/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/butanol/0.png b/front/public/images/large/miscutils/butanol/0.png deleted file mode 100644 index 7a4d547dd4..0000000000 Binary files a/front/public/images/large/miscutils/butanol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/cadaverine/0.png b/front/public/images/large/miscutils/cadaverine/0.png deleted file mode 100644 index b69e67db4e..0000000000 Binary files a/front/public/images/large/miscutils/cadaverine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedAgarditeCd/0.png b/front/public/images/large/miscutils/crushedAgarditeCd/0.png deleted file mode 100644 index 45641bffc8..0000000000 Binary files a/front/public/images/large/miscutils/crushedAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedAgarditeLa/0.png b/front/public/images/large/miscutils/crushedAgarditeLa/0.png deleted file mode 100644 index a037f5aa01..0000000000 Binary files a/front/public/images/large/miscutils/crushedAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedAgarditeNd/0.png b/front/public/images/large/miscutils/crushedAgarditeNd/0.png deleted file mode 100644 index 2d217ed40b..0000000000 Binary files a/front/public/images/large/miscutils/crushedAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedAgarditeY/0.png b/front/public/images/large/miscutils/crushedAgarditeY/0.png deleted file mode 100644 index 69934ee8ed..0000000000 Binary files a/front/public/images/large/miscutils/crushedAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedAlburnite/0.png b/front/public/images/large/miscutils/crushedAlburnite/0.png deleted file mode 100644 index a59b3b7874..0000000000 Binary files a/front/public/images/large/miscutils/crushedAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedAncientGranite/0.png b/front/public/images/large/miscutils/crushedAncientGranite/0.png deleted file mode 100644 index 2aa34f93a2..0000000000 Binary files a/front/public/images/large/miscutils/crushedAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedBariteRd/0.png b/front/public/images/large/miscutils/crushedBariteRd/0.png deleted file mode 100644 index 772eaff89f..0000000000 Binary files a/front/public/images/large/miscutils/crushedBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedAgarditeCd/0.png b/front/public/images/large/miscutils/crushedCentrifugedAgarditeCd/0.png deleted file mode 100644 index 70c082bff2..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedAgarditeLa/0.png b/front/public/images/large/miscutils/crushedCentrifugedAgarditeLa/0.png deleted file mode 100644 index 4ef2159d19..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedAgarditeNd/0.png b/front/public/images/large/miscutils/crushedCentrifugedAgarditeNd/0.png deleted file mode 100644 index f964c416e6..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedAgarditeY/0.png b/front/public/images/large/miscutils/crushedCentrifugedAgarditeY/0.png deleted file mode 100644 index 0e8b15e81a..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedAlburnite/0.png b/front/public/images/large/miscutils/crushedCentrifugedAlburnite/0.png deleted file mode 100644 index 42eb74271e..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedAncientGranite/0.png b/front/public/images/large/miscutils/crushedCentrifugedAncientGranite/0.png deleted file mode 100644 index 1a27c85060..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedBariteRd/0.png b/front/public/images/large/miscutils/crushedCentrifugedBariteRd/0.png deleted file mode 100644 index 916e2fe2c0..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedCerite/0.png b/front/public/images/large/miscutils/crushedCentrifugedCerite/0.png deleted file mode 100644 index 9c93cfcb09..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedComancheite/0.png b/front/public/images/large/miscutils/crushedCentrifugedComancheite/0.png deleted file mode 100644 index 7ca9a65d60..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedCrocoite/0.png b/front/public/images/large/miscutils/crushedCentrifugedCrocoite/0.png deleted file mode 100644 index 8c6f1320db..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedCryoliteF/0.png b/front/public/images/large/miscutils/crushedCentrifugedCryoliteF/0.png deleted file mode 100644 index 3b74965f15..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedDemicheleiteBr/0.png b/front/public/images/large/miscutils/crushedCentrifugedDemicheleiteBr/0.png deleted file mode 100644 index 9ef60d0a8c..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedFlorencite/0.png b/front/public/images/large/miscutils/crushedCentrifugedFlorencite/0.png deleted file mode 100644 index 4c5458bc17..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedFluorcaphite/0.png b/front/public/images/large/miscutils/crushedCentrifugedFluorcaphite/0.png deleted file mode 100644 index 8734b7a72b..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedFluoriteF/0.png b/front/public/images/large/miscutils/crushedCentrifugedFluoriteF/0.png deleted file mode 100644 index 43569d5de6..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedGadoliniteCe/0.png b/front/public/images/large/miscutils/crushedCentrifugedGadoliniteCe/0.png deleted file mode 100644 index e17296c557..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedGadoliniteY/0.png b/front/public/images/large/miscutils/crushedCentrifugedGadoliniteY/0.png deleted file mode 100644 index e17296c557..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedGeikielite/0.png b/front/public/images/large/miscutils/crushedCentrifugedGeikielite/0.png deleted file mode 100644 index 5e7cfdea41..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedGreenockite/0.png b/front/public/images/large/miscutils/crushedCentrifugedGreenockite/0.png deleted file mode 100644 index 28dfc974bb..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedHibonite/0.png b/front/public/images/large/miscutils/crushedCentrifugedHibonite/0.png deleted file mode 100644 index 619c22f91d..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedHoneaite/0.png b/front/public/images/large/miscutils/crushedCentrifugedHoneaite/0.png deleted file mode 100644 index 0113328cf3..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedIrarsite/0.png b/front/public/images/large/miscutils/crushedCentrifugedIrarsite/0.png deleted file mode 100644 index dec78299fa..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedKashinite/0.png b/front/public/images/large/miscutils/crushedCentrifugedKashinite/0.png deleted file mode 100644 index 3a8a191916..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedKoboldite/0.png b/front/public/images/large/miscutils/crushedCentrifugedKoboldite/0.png deleted file mode 100644 index 435ee7671f..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedLafossaite/0.png b/front/public/images/large/miscutils/crushedCentrifugedLafossaite/0.png deleted file mode 100644 index b18c4df2a5..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedLanthaniteCe/0.png b/front/public/images/large/miscutils/crushedCentrifugedLanthaniteCe/0.png deleted file mode 100644 index ebd22685fd..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedLanthaniteLa/0.png b/front/public/images/large/miscutils/crushedCentrifugedLanthaniteLa/0.png deleted file mode 100644 index 9e3fb8706d..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedLanthaniteNd/0.png b/front/public/images/large/miscutils/crushedCentrifugedLanthaniteNd/0.png deleted file mode 100644 index 883c299644..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedLautarite/0.png b/front/public/images/large/miscutils/crushedCentrifugedLautarite/0.png deleted file mode 100644 index 63e70e6318..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedLepersonnite/0.png b/front/public/images/large/miscutils/crushedCentrifugedLepersonnite/0.png deleted file mode 100644 index 5e990388c6..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedMiessiite/0.png b/front/public/images/large/miscutils/crushedCentrifugedMiessiite/0.png deleted file mode 100644 index 457b96edd3..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedNichromite/0.png b/front/public/images/large/miscutils/crushedCentrifugedNichromite/0.png deleted file mode 100644 index 70bd4cb92e..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedPerroudite/0.png b/front/public/images/large/miscutils/crushedCentrifugedPerroudite/0.png deleted file mode 100644 index 0327daf236..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedPerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedPolycrase/0.png b/front/public/images/large/miscutils/crushedCentrifugedPolycrase/0.png deleted file mode 100644 index f8f068e517..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedPolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/crushedCentrifugedRadioactiveMineralMix/0.png deleted file mode 100644 index e61d99e740..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedRunite/0.png b/front/public/images/large/miscutils/crushedCentrifugedRunite/0.png deleted file mode 100644 index 884fc9158e..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedSamarskiteY/0.png b/front/public/images/large/miscutils/crushedCentrifugedSamarskiteY/0.png deleted file mode 100644 index a64722e72a..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedSamarskiteYb/0.png b/front/public/images/large/miscutils/crushedCentrifugedSamarskiteYb/0.png deleted file mode 100644 index 5898d51735..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedTitanite/0.png b/front/public/images/large/miscutils/crushedCentrifugedTitanite/0.png deleted file mode 100644 index e92863d343..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedXenotime/0.png b/front/public/images/large/miscutils/crushedCentrifugedXenotime/0.png deleted file mode 100644 index aabf351954..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedYttriaite/0.png b/front/public/images/large/miscutils/crushedCentrifugedYttriaite/0.png deleted file mode 100644 index de5ed4354d..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedYttrialite/0.png b/front/public/images/large/miscutils/crushedCentrifugedYttrialite/0.png deleted file mode 100644 index 581e4a8966..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedYttrocerite/0.png b/front/public/images/large/miscutils/crushedCentrifugedYttrocerite/0.png deleted file mode 100644 index f006d5379e..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedZimbabweite/0.png b/front/public/images/large/miscutils/crushedCentrifugedZimbabweite/0.png deleted file mode 100644 index 95712a09e3..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedZircon/0.png b/front/public/images/large/miscutils/crushedCentrifugedZircon/0.png deleted file mode 100644 index fcb30d0299..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedZirconolite/0.png b/front/public/images/large/miscutils/crushedCentrifugedZirconolite/0.png deleted file mode 100644 index b33ab2d152..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedZircophyllite/0.png b/front/public/images/large/miscutils/crushedCentrifugedZircophyllite/0.png deleted file mode 100644 index 1819b6fcd9..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCentrifugedZirkelite/0.png b/front/public/images/large/miscutils/crushedCentrifugedZirkelite/0.png deleted file mode 100644 index b427e785ca..0000000000 Binary files a/front/public/images/large/miscutils/crushedCentrifugedZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCerite/0.png b/front/public/images/large/miscutils/crushedCerite/0.png deleted file mode 100644 index 5fd5c2c57d..0000000000 Binary files a/front/public/images/large/miscutils/crushedCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedComancheite/0.png b/front/public/images/large/miscutils/crushedComancheite/0.png deleted file mode 100644 index e1b1f0d086..0000000000 Binary files a/front/public/images/large/miscutils/crushedComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCrocoite/0.png b/front/public/images/large/miscutils/crushedCrocoite/0.png deleted file mode 100644 index 9cd697cfc6..0000000000 Binary files a/front/public/images/large/miscutils/crushedCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedCryoliteF/0.png b/front/public/images/large/miscutils/crushedCryoliteF/0.png deleted file mode 100644 index 32d9e24d1d..0000000000 Binary files a/front/public/images/large/miscutils/crushedCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedDemicheleiteBr/0.png b/front/public/images/large/miscutils/crushedDemicheleiteBr/0.png deleted file mode 100644 index b5a9d4f783..0000000000 Binary files a/front/public/images/large/miscutils/crushedDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedFlorencite/0.png b/front/public/images/large/miscutils/crushedFlorencite/0.png deleted file mode 100644 index 02bd41e5a6..0000000000 Binary files a/front/public/images/large/miscutils/crushedFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedFluorcaphite/0.png b/front/public/images/large/miscutils/crushedFluorcaphite/0.png deleted file mode 100644 index ca530c0105..0000000000 Binary files a/front/public/images/large/miscutils/crushedFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedFluoriteF/0.png b/front/public/images/large/miscutils/crushedFluoriteF/0.png deleted file mode 100644 index 30651a389b..0000000000 Binary files a/front/public/images/large/miscutils/crushedFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedGadoliniteCe/0.png b/front/public/images/large/miscutils/crushedGadoliniteCe/0.png deleted file mode 100644 index 4d48954d46..0000000000 Binary files a/front/public/images/large/miscutils/crushedGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedGadoliniteY/0.png b/front/public/images/large/miscutils/crushedGadoliniteY/0.png deleted file mode 100644 index 4d48954d46..0000000000 Binary files a/front/public/images/large/miscutils/crushedGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedGeikielite/0.png b/front/public/images/large/miscutils/crushedGeikielite/0.png deleted file mode 100644 index e6a09717fc..0000000000 Binary files a/front/public/images/large/miscutils/crushedGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedGreenockite/0.png b/front/public/images/large/miscutils/crushedGreenockite/0.png deleted file mode 100644 index 3ee0a81e08..0000000000 Binary files a/front/public/images/large/miscutils/crushedGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedHibonite/0.png b/front/public/images/large/miscutils/crushedHibonite/0.png deleted file mode 100644 index 951b8d7633..0000000000 Binary files a/front/public/images/large/miscutils/crushedHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedHoneaite/0.png b/front/public/images/large/miscutils/crushedHoneaite/0.png deleted file mode 100644 index 765d16e335..0000000000 Binary files a/front/public/images/large/miscutils/crushedHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedIrarsite/0.png b/front/public/images/large/miscutils/crushedIrarsite/0.png deleted file mode 100644 index a855ed28f2..0000000000 Binary files a/front/public/images/large/miscutils/crushedIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedKashinite/0.png b/front/public/images/large/miscutils/crushedKashinite/0.png deleted file mode 100644 index 61c0daf3a4..0000000000 Binary files a/front/public/images/large/miscutils/crushedKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedKoboldite/0.png b/front/public/images/large/miscutils/crushedKoboldite/0.png deleted file mode 100644 index ae2c059178..0000000000 Binary files a/front/public/images/large/miscutils/crushedKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedLafossaite/0.png b/front/public/images/large/miscutils/crushedLafossaite/0.png deleted file mode 100644 index 69fb0e8345..0000000000 Binary files a/front/public/images/large/miscutils/crushedLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedLanthaniteCe/0.png b/front/public/images/large/miscutils/crushedLanthaniteCe/0.png deleted file mode 100644 index 32db067a7f..0000000000 Binary files a/front/public/images/large/miscutils/crushedLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedLanthaniteLa/0.png b/front/public/images/large/miscutils/crushedLanthaniteLa/0.png deleted file mode 100644 index 38e7578c6f..0000000000 Binary files a/front/public/images/large/miscutils/crushedLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedLanthaniteNd/0.png b/front/public/images/large/miscutils/crushedLanthaniteNd/0.png deleted file mode 100644 index 6a02223d72..0000000000 Binary files a/front/public/images/large/miscutils/crushedLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedLautarite/0.png b/front/public/images/large/miscutils/crushedLautarite/0.png deleted file mode 100644 index 7c634ad3f2..0000000000 Binary files a/front/public/images/large/miscutils/crushedLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedLepersonnite/0.png b/front/public/images/large/miscutils/crushedLepersonnite/0.png deleted file mode 100644 index d4f9b15a3e..0000000000 Binary files a/front/public/images/large/miscutils/crushedLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedMiessiite/0.png b/front/public/images/large/miscutils/crushedMiessiite/0.png deleted file mode 100644 index 828293a853..0000000000 Binary files a/front/public/images/large/miscutils/crushedMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedNichromite/0.png b/front/public/images/large/miscutils/crushedNichromite/0.png deleted file mode 100644 index ceb91f094e..0000000000 Binary files a/front/public/images/large/miscutils/crushedNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPerroudite/0.png b/front/public/images/large/miscutils/crushedPerroudite/0.png deleted file mode 100644 index 79532d2f70..0000000000 Binary files a/front/public/images/large/miscutils/crushedPerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPolycrase/0.png b/front/public/images/large/miscutils/crushedPolycrase/0.png deleted file mode 100644 index cdf38d75df..0000000000 Binary files a/front/public/images/large/miscutils/crushedPolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedAgarditeCd/0.png b/front/public/images/large/miscutils/crushedPurifiedAgarditeCd/0.png deleted file mode 100644 index 9e6cb868fa..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedAgarditeLa/0.png b/front/public/images/large/miscutils/crushedPurifiedAgarditeLa/0.png deleted file mode 100644 index 7ae56a677c..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedAgarditeNd/0.png b/front/public/images/large/miscutils/crushedPurifiedAgarditeNd/0.png deleted file mode 100644 index e82bfeb9b6..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedAgarditeY/0.png b/front/public/images/large/miscutils/crushedPurifiedAgarditeY/0.png deleted file mode 100644 index cbb7bb7147..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedAlburnite/0.png b/front/public/images/large/miscutils/crushedPurifiedAlburnite/0.png deleted file mode 100644 index 6408776603..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedAncientGranite/0.png b/front/public/images/large/miscutils/crushedPurifiedAncientGranite/0.png deleted file mode 100644 index a5eb373adc..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedBariteRd/0.png b/front/public/images/large/miscutils/crushedPurifiedBariteRd/0.png deleted file mode 100644 index f7989f7735..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedCerite/0.png b/front/public/images/large/miscutils/crushedPurifiedCerite/0.png deleted file mode 100644 index cef8a45ec5..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedComancheite/0.png b/front/public/images/large/miscutils/crushedPurifiedComancheite/0.png deleted file mode 100644 index 486ec82c13..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedCrocoite/0.png b/front/public/images/large/miscutils/crushedPurifiedCrocoite/0.png deleted file mode 100644 index 87aec05c42..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedCryoliteF/0.png b/front/public/images/large/miscutils/crushedPurifiedCryoliteF/0.png deleted file mode 100644 index 6f54d43ae1..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedDemicheleiteBr/0.png b/front/public/images/large/miscutils/crushedPurifiedDemicheleiteBr/0.png deleted file mode 100644 index 8ece6ce66e..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedFlorencite/0.png b/front/public/images/large/miscutils/crushedPurifiedFlorencite/0.png deleted file mode 100644 index e5646f2218..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedFluorcaphite/0.png b/front/public/images/large/miscutils/crushedPurifiedFluorcaphite/0.png deleted file mode 100644 index 5ee2d89744..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedFluoriteF/0.png b/front/public/images/large/miscutils/crushedPurifiedFluoriteF/0.png deleted file mode 100644 index 48930a6f38..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedGadoliniteCe/0.png b/front/public/images/large/miscutils/crushedPurifiedGadoliniteCe/0.png deleted file mode 100644 index 613e7d0432..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedGadoliniteY/0.png b/front/public/images/large/miscutils/crushedPurifiedGadoliniteY/0.png deleted file mode 100644 index 613e7d0432..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedGeikielite/0.png b/front/public/images/large/miscutils/crushedPurifiedGeikielite/0.png deleted file mode 100644 index 986eda719b..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedGreenockite/0.png b/front/public/images/large/miscutils/crushedPurifiedGreenockite/0.png deleted file mode 100644 index eff7811e47..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedHibonite/0.png b/front/public/images/large/miscutils/crushedPurifiedHibonite/0.png deleted file mode 100644 index c46728bde3..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedHoneaite/0.png b/front/public/images/large/miscutils/crushedPurifiedHoneaite/0.png deleted file mode 100644 index f6c429a0cf..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedIrarsite/0.png b/front/public/images/large/miscutils/crushedPurifiedIrarsite/0.png deleted file mode 100644 index 458c269e20..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedKashinite/0.png b/front/public/images/large/miscutils/crushedPurifiedKashinite/0.png deleted file mode 100644 index e8d25ffe5e..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedKoboldite/0.png b/front/public/images/large/miscutils/crushedPurifiedKoboldite/0.png deleted file mode 100644 index b3a0bc0533..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedLafossaite/0.png b/front/public/images/large/miscutils/crushedPurifiedLafossaite/0.png deleted file mode 100644 index 7de5ef77f1..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedLanthaniteCe/0.png b/front/public/images/large/miscutils/crushedPurifiedLanthaniteCe/0.png deleted file mode 100644 index f9628ff5c1..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedLanthaniteLa/0.png b/front/public/images/large/miscutils/crushedPurifiedLanthaniteLa/0.png deleted file mode 100644 index e9bb2e193f..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedLanthaniteNd/0.png b/front/public/images/large/miscutils/crushedPurifiedLanthaniteNd/0.png deleted file mode 100644 index e4af74c964..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedLautarite/0.png b/front/public/images/large/miscutils/crushedPurifiedLautarite/0.png deleted file mode 100644 index ed3ace51d7..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedLepersonnite/0.png b/front/public/images/large/miscutils/crushedPurifiedLepersonnite/0.png deleted file mode 100644 index f020b5d254..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedMiessiite/0.png b/front/public/images/large/miscutils/crushedPurifiedMiessiite/0.png deleted file mode 100644 index f035b04b06..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedNichromite/0.png b/front/public/images/large/miscutils/crushedPurifiedNichromite/0.png deleted file mode 100644 index b6795e710e..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedPerroudite/0.png b/front/public/images/large/miscutils/crushedPurifiedPerroudite/0.png deleted file mode 100644 index 52532dfc9d..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedPerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedPolycrase/0.png b/front/public/images/large/miscutils/crushedPurifiedPolycrase/0.png deleted file mode 100644 index 2feedae570..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedPolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/crushedPurifiedRadioactiveMineralMix/0.png deleted file mode 100644 index 1a04e911fd..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedRunite/0.png b/front/public/images/large/miscutils/crushedPurifiedRunite/0.png deleted file mode 100644 index 5cefe8eaef..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedSamarskiteY/0.png b/front/public/images/large/miscutils/crushedPurifiedSamarskiteY/0.png deleted file mode 100644 index 0ca3986f2b..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedSamarskiteYb/0.png b/front/public/images/large/miscutils/crushedPurifiedSamarskiteYb/0.png deleted file mode 100644 index 08d9b74469..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedTitanite/0.png b/front/public/images/large/miscutils/crushedPurifiedTitanite/0.png deleted file mode 100644 index a5eb74b938..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedXenotime/0.png b/front/public/images/large/miscutils/crushedPurifiedXenotime/0.png deleted file mode 100644 index ebf7ae1564..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedYttriaite/0.png b/front/public/images/large/miscutils/crushedPurifiedYttriaite/0.png deleted file mode 100644 index 287e6ef777..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedYttrialite/0.png b/front/public/images/large/miscutils/crushedPurifiedYttrialite/0.png deleted file mode 100644 index 1ec9d3778f..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedYttrocerite/0.png b/front/public/images/large/miscutils/crushedPurifiedYttrocerite/0.png deleted file mode 100644 index c142fe0851..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedZimbabweite/0.png b/front/public/images/large/miscutils/crushedPurifiedZimbabweite/0.png deleted file mode 100644 index 04c7658120..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedZircon/0.png b/front/public/images/large/miscutils/crushedPurifiedZircon/0.png deleted file mode 100644 index 9ca1cadf53..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedZirconolite/0.png b/front/public/images/large/miscutils/crushedPurifiedZirconolite/0.png deleted file mode 100644 index 9c50b52fee..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedZircophyllite/0.png b/front/public/images/large/miscutils/crushedPurifiedZircophyllite/0.png deleted file mode 100644 index 4d249baf27..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedPurifiedZirkelite/0.png b/front/public/images/large/miscutils/crushedPurifiedZirkelite/0.png deleted file mode 100644 index 06e03984b7..0000000000 Binary files a/front/public/images/large/miscutils/crushedPurifiedZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/crushedRadioactiveMineralMix/0.png deleted file mode 100644 index 8eca75be73..0000000000 Binary files a/front/public/images/large/miscutils/crushedRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedRunite/0.png b/front/public/images/large/miscutils/crushedRunite/0.png deleted file mode 100644 index d538bf91fa..0000000000 Binary files a/front/public/images/large/miscutils/crushedRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedSamarskiteY/0.png b/front/public/images/large/miscutils/crushedSamarskiteY/0.png deleted file mode 100644 index bd300356f2..0000000000 Binary files a/front/public/images/large/miscutils/crushedSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedSamarskiteYb/0.png b/front/public/images/large/miscutils/crushedSamarskiteYb/0.png deleted file mode 100644 index 2af13a853a..0000000000 Binary files a/front/public/images/large/miscutils/crushedSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedTitanite/0.png b/front/public/images/large/miscutils/crushedTitanite/0.png deleted file mode 100644 index b164eaf4c7..0000000000 Binary files a/front/public/images/large/miscutils/crushedTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedXenotime/0.png b/front/public/images/large/miscutils/crushedXenotime/0.png deleted file mode 100644 index b7e84321ac..0000000000 Binary files a/front/public/images/large/miscutils/crushedXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedYttriaite/0.png b/front/public/images/large/miscutils/crushedYttriaite/0.png deleted file mode 100644 index af09334324..0000000000 Binary files a/front/public/images/large/miscutils/crushedYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedYttrialite/0.png b/front/public/images/large/miscutils/crushedYttrialite/0.png deleted file mode 100644 index 3d49be6994..0000000000 Binary files a/front/public/images/large/miscutils/crushedYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedYttrocerite/0.png b/front/public/images/large/miscutils/crushedYttrocerite/0.png deleted file mode 100644 index b11350decf..0000000000 Binary files a/front/public/images/large/miscutils/crushedYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedZimbabweite/0.png b/front/public/images/large/miscutils/crushedZimbabweite/0.png deleted file mode 100644 index 59c8d37a7d..0000000000 Binary files a/front/public/images/large/miscutils/crushedZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedZircon/0.png b/front/public/images/large/miscutils/crushedZircon/0.png deleted file mode 100644 index 795544a737..0000000000 Binary files a/front/public/images/large/miscutils/crushedZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedZirconolite/0.png b/front/public/images/large/miscutils/crushedZirconolite/0.png deleted file mode 100644 index 26e967737e..0000000000 Binary files a/front/public/images/large/miscutils/crushedZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedZircophyllite/0.png b/front/public/images/large/miscutils/crushedZircophyllite/0.png deleted file mode 100644 index d1c32c342e..0000000000 Binary files a/front/public/images/large/miscutils/crushedZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/crushedZirkelite/0.png b/front/public/images/large/miscutils/crushedZirkelite/0.png deleted file mode 100644 index 142be4db9e..0000000000 Binary files a/front/public/images/large/miscutils/crushedZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/cryotheum/0.png b/front/public/images/large/miscutils/cryotheum/0.png deleted file mode 100644 index a1008f9d1a..0000000000 Binary files a/front/public/images/large/miscutils/cryotheum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/cyclohexane/0.png b/front/public/images/large/miscutils/cyclohexane/0.png deleted file mode 100644 index b69e67db4e..0000000000 Binary files a/front/public/images/large/miscutils/cyclohexane/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/cyclohexanone/0.png b/front/public/images/large/miscutils/cyclohexanone/0.png deleted file mode 100644 index b69e67db4e..0000000000 Binary files a/front/public/images/large/miscutils/cyclohexanone/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureAgarditeCd/0.png b/front/public/images/large/miscutils/dustImpureAgarditeCd/0.png deleted file mode 100644 index 6b33cd9289..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureAgarditeLa/0.png b/front/public/images/large/miscutils/dustImpureAgarditeLa/0.png deleted file mode 100644 index 95a5576121..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureAgarditeNd/0.png b/front/public/images/large/miscutils/dustImpureAgarditeNd/0.png deleted file mode 100644 index 339ef2912f..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureAgarditeY/0.png b/front/public/images/large/miscutils/dustImpureAgarditeY/0.png deleted file mode 100644 index 4fdccbc667..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureAlburnite/0.png b/front/public/images/large/miscutils/dustImpureAlburnite/0.png deleted file mode 100644 index 0dc91e156c..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureAncientGranite/0.png b/front/public/images/large/miscutils/dustImpureAncientGranite/0.png deleted file mode 100644 index 17ef3b7b13..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureBariteRd/0.png b/front/public/images/large/miscutils/dustImpureBariteRd/0.png deleted file mode 100644 index 7a172917b7..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureCerite/0.png b/front/public/images/large/miscutils/dustImpureCerite/0.png deleted file mode 100644 index e96845a113..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureComancheite/0.png b/front/public/images/large/miscutils/dustImpureComancheite/0.png deleted file mode 100644 index ff6b00c5cb..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureCrocoite/0.png b/front/public/images/large/miscutils/dustImpureCrocoite/0.png deleted file mode 100644 index f482bf738e..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureCryoliteF/0.png b/front/public/images/large/miscutils/dustImpureCryoliteF/0.png deleted file mode 100644 index 75f7deb019..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureDemicheleiteBr/0.png b/front/public/images/large/miscutils/dustImpureDemicheleiteBr/0.png deleted file mode 100644 index 3cf400c7a1..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureFlorencite/0.png b/front/public/images/large/miscutils/dustImpureFlorencite/0.png deleted file mode 100644 index e18cfbcbff..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureFluorcaphite/0.png b/front/public/images/large/miscutils/dustImpureFluorcaphite/0.png deleted file mode 100644 index c87120f96f..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureFluoriteF/0.png b/front/public/images/large/miscutils/dustImpureFluoriteF/0.png deleted file mode 100644 index c980f68e2b..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureGadoliniteCe/0.png b/front/public/images/large/miscutils/dustImpureGadoliniteCe/0.png deleted file mode 100644 index 394cbc1239..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureGadoliniteY/0.png b/front/public/images/large/miscutils/dustImpureGadoliniteY/0.png deleted file mode 100644 index 394cbc1239..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureGeikielite/0.png b/front/public/images/large/miscutils/dustImpureGeikielite/0.png deleted file mode 100644 index c8a0347e05..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureGreenockite/0.png b/front/public/images/large/miscutils/dustImpureGreenockite/0.png deleted file mode 100644 index fbfda89fa6..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureHibonite/0.png b/front/public/images/large/miscutils/dustImpureHibonite/0.png deleted file mode 100644 index 6cd572a07d..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureHoneaite/0.png b/front/public/images/large/miscutils/dustImpureHoneaite/0.png deleted file mode 100644 index 8120836b1d..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureIrarsite/0.png b/front/public/images/large/miscutils/dustImpureIrarsite/0.png deleted file mode 100644 index 070636c4a3..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureKashinite/0.png b/front/public/images/large/miscutils/dustImpureKashinite/0.png deleted file mode 100644 index 2153549a70..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureKoboldite/0.png b/front/public/images/large/miscutils/dustImpureKoboldite/0.png deleted file mode 100644 index ef64588931..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureLafossaite/0.png b/front/public/images/large/miscutils/dustImpureLafossaite/0.png deleted file mode 100644 index 0d6a77a5b4..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureLanthaniteCe/0.png b/front/public/images/large/miscutils/dustImpureLanthaniteCe/0.png deleted file mode 100644 index 314e0c36d8..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureLanthaniteLa/0.png b/front/public/images/large/miscutils/dustImpureLanthaniteLa/0.png deleted file mode 100644 index 19762689d7..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureLanthaniteNd/0.png b/front/public/images/large/miscutils/dustImpureLanthaniteNd/0.png deleted file mode 100644 index b38fb04679..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureLautarite/0.png b/front/public/images/large/miscutils/dustImpureLautarite/0.png deleted file mode 100644 index edc33f8f88..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureLepersonnite/0.png b/front/public/images/large/miscutils/dustImpureLepersonnite/0.png deleted file mode 100644 index a0805bfb6e..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureMiessiite/0.png b/front/public/images/large/miscutils/dustImpureMiessiite/0.png deleted file mode 100644 index f7e804cee0..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureNichromite/0.png b/front/public/images/large/miscutils/dustImpureNichromite/0.png deleted file mode 100644 index 59ba3442c6..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpurePerroudite/0.png b/front/public/images/large/miscutils/dustImpurePerroudite/0.png deleted file mode 100644 index fe5d83f2ca..0000000000 Binary files a/front/public/images/large/miscutils/dustImpurePerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpurePolycrase/0.png b/front/public/images/large/miscutils/dustImpurePolycrase/0.png deleted file mode 100644 index 33ffe8ef0b..0000000000 Binary files a/front/public/images/large/miscutils/dustImpurePolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/dustImpureRadioactiveMineralMix/0.png deleted file mode 100644 index 1b1cb881f4..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureRunite/0.png b/front/public/images/large/miscutils/dustImpureRunite/0.png deleted file mode 100644 index 7ba5cdab67..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureSamarskiteY/0.png b/front/public/images/large/miscutils/dustImpureSamarskiteY/0.png deleted file mode 100644 index d80470c63a..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureSamarskiteYb/0.png b/front/public/images/large/miscutils/dustImpureSamarskiteYb/0.png deleted file mode 100644 index 6c1b3eded6..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureTitanite/0.png b/front/public/images/large/miscutils/dustImpureTitanite/0.png deleted file mode 100644 index 9df596b15d..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureXenotime/0.png b/front/public/images/large/miscutils/dustImpureXenotime/0.png deleted file mode 100644 index 4ef34a66fb..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureYttriaite/0.png b/front/public/images/large/miscutils/dustImpureYttriaite/0.png deleted file mode 100644 index 47c5322355..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureYttrialite/0.png b/front/public/images/large/miscutils/dustImpureYttrialite/0.png deleted file mode 100644 index 3fa2c1ddb0..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureYttrocerite/0.png b/front/public/images/large/miscutils/dustImpureYttrocerite/0.png deleted file mode 100644 index a6506131b7..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureZimbabweite/0.png b/front/public/images/large/miscutils/dustImpureZimbabweite/0.png deleted file mode 100644 index f3c85d4ce5..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureZircon/0.png b/front/public/images/large/miscutils/dustImpureZircon/0.png deleted file mode 100644 index 642fece440..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureZirconolite/0.png b/front/public/images/large/miscutils/dustImpureZirconolite/0.png deleted file mode 100644 index c37568c03c..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureZircophyllite/0.png b/front/public/images/large/miscutils/dustImpureZircophyllite/0.png deleted file mode 100644 index 3a70ba25c2..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustImpureZirkelite/0.png b/front/public/images/large/miscutils/dustImpureZirkelite/0.png deleted file mode 100644 index 161ac65c20..0000000000 Binary files a/front/public/images/large/miscutils/dustImpureZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustMolybdenum99/0.png b/front/public/images/large/miscutils/dustMolybdenum99/0.png deleted file mode 100644 index 2e1453e691..0000000000 Binary files a/front/public/images/large/miscutils/dustMolybdenum99/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustNeptunium238/0.png b/front/public/images/large/miscutils/dustNeptunium238/0.png deleted file mode 100644 index d7dec6292b..0000000000 Binary files a/front/public/images/large/miscutils/dustNeptunium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustProtactinium233/0.png b/front/public/images/large/miscutils/dustProtactinium233/0.png deleted file mode 100644 index c2ba2e39b3..0000000000 Binary files a/front/public/images/large/miscutils/dustProtactinium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureAgarditeCd/0.png b/front/public/images/large/miscutils/dustPureAgarditeCd/0.png deleted file mode 100644 index 5a58476096..0000000000 Binary files a/front/public/images/large/miscutils/dustPureAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureAgarditeLa/0.png b/front/public/images/large/miscutils/dustPureAgarditeLa/0.png deleted file mode 100644 index f797c969e2..0000000000 Binary files a/front/public/images/large/miscutils/dustPureAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureAgarditeNd/0.png b/front/public/images/large/miscutils/dustPureAgarditeNd/0.png deleted file mode 100644 index 21e0ab359f..0000000000 Binary files a/front/public/images/large/miscutils/dustPureAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureAgarditeY/0.png b/front/public/images/large/miscutils/dustPureAgarditeY/0.png deleted file mode 100644 index b4d4e8cc85..0000000000 Binary files a/front/public/images/large/miscutils/dustPureAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureAlburnite/0.png b/front/public/images/large/miscutils/dustPureAlburnite/0.png deleted file mode 100644 index b61eef80de..0000000000 Binary files a/front/public/images/large/miscutils/dustPureAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureAncientGranite/0.png b/front/public/images/large/miscutils/dustPureAncientGranite/0.png deleted file mode 100644 index 24420c581a..0000000000 Binary files a/front/public/images/large/miscutils/dustPureAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureBariteRd/0.png b/front/public/images/large/miscutils/dustPureBariteRd/0.png deleted file mode 100644 index ea17862dca..0000000000 Binary files a/front/public/images/large/miscutils/dustPureBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureCerite/0.png b/front/public/images/large/miscutils/dustPureCerite/0.png deleted file mode 100644 index 8b7b4d5bf2..0000000000 Binary files a/front/public/images/large/miscutils/dustPureCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureComancheite/0.png b/front/public/images/large/miscutils/dustPureComancheite/0.png deleted file mode 100644 index 300a7023ae..0000000000 Binary files a/front/public/images/large/miscutils/dustPureComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureCrocoite/0.png b/front/public/images/large/miscutils/dustPureCrocoite/0.png deleted file mode 100644 index d59595459d..0000000000 Binary files a/front/public/images/large/miscutils/dustPureCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureCryoliteF/0.png b/front/public/images/large/miscutils/dustPureCryoliteF/0.png deleted file mode 100644 index 2cd4317112..0000000000 Binary files a/front/public/images/large/miscutils/dustPureCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureDemicheleiteBr/0.png b/front/public/images/large/miscutils/dustPureDemicheleiteBr/0.png deleted file mode 100644 index c92331975e..0000000000 Binary files a/front/public/images/large/miscutils/dustPureDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureFlorencite/0.png b/front/public/images/large/miscutils/dustPureFlorencite/0.png deleted file mode 100644 index 63e7f07cde..0000000000 Binary files a/front/public/images/large/miscutils/dustPureFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureFluorcaphite/0.png b/front/public/images/large/miscutils/dustPureFluorcaphite/0.png deleted file mode 100644 index d360c9321d..0000000000 Binary files a/front/public/images/large/miscutils/dustPureFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureFluoriteF/0.png b/front/public/images/large/miscutils/dustPureFluoriteF/0.png deleted file mode 100644 index ef46269272..0000000000 Binary files a/front/public/images/large/miscutils/dustPureFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureGadoliniteCe/0.png b/front/public/images/large/miscutils/dustPureGadoliniteCe/0.png deleted file mode 100644 index 06cec20f1f..0000000000 Binary files a/front/public/images/large/miscutils/dustPureGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureGadoliniteY/0.png b/front/public/images/large/miscutils/dustPureGadoliniteY/0.png deleted file mode 100644 index 06cec20f1f..0000000000 Binary files a/front/public/images/large/miscutils/dustPureGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureGeikielite/0.png b/front/public/images/large/miscutils/dustPureGeikielite/0.png deleted file mode 100644 index 7ad396cb88..0000000000 Binary files a/front/public/images/large/miscutils/dustPureGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureGreenockite/0.png b/front/public/images/large/miscutils/dustPureGreenockite/0.png deleted file mode 100644 index 108c263535..0000000000 Binary files a/front/public/images/large/miscutils/dustPureGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureHibonite/0.png b/front/public/images/large/miscutils/dustPureHibonite/0.png deleted file mode 100644 index 830024db19..0000000000 Binary files a/front/public/images/large/miscutils/dustPureHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureHoneaite/0.png b/front/public/images/large/miscutils/dustPureHoneaite/0.png deleted file mode 100644 index a9cd223d6d..0000000000 Binary files a/front/public/images/large/miscutils/dustPureHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureIrarsite/0.png b/front/public/images/large/miscutils/dustPureIrarsite/0.png deleted file mode 100644 index 3708c5c025..0000000000 Binary files a/front/public/images/large/miscutils/dustPureIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureKashinite/0.png b/front/public/images/large/miscutils/dustPureKashinite/0.png deleted file mode 100644 index 9ff6de66d0..0000000000 Binary files a/front/public/images/large/miscutils/dustPureKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureKoboldite/0.png b/front/public/images/large/miscutils/dustPureKoboldite/0.png deleted file mode 100644 index fae88d05c1..0000000000 Binary files a/front/public/images/large/miscutils/dustPureKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureLafossaite/0.png b/front/public/images/large/miscutils/dustPureLafossaite/0.png deleted file mode 100644 index 8b98471d9f..0000000000 Binary files a/front/public/images/large/miscutils/dustPureLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureLanthaniteCe/0.png b/front/public/images/large/miscutils/dustPureLanthaniteCe/0.png deleted file mode 100644 index b60103628e..0000000000 Binary files a/front/public/images/large/miscutils/dustPureLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureLanthaniteLa/0.png b/front/public/images/large/miscutils/dustPureLanthaniteLa/0.png deleted file mode 100644 index 9e37ec2f46..0000000000 Binary files a/front/public/images/large/miscutils/dustPureLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureLanthaniteNd/0.png b/front/public/images/large/miscutils/dustPureLanthaniteNd/0.png deleted file mode 100644 index 4c4fd12cd2..0000000000 Binary files a/front/public/images/large/miscutils/dustPureLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureLautarite/0.png b/front/public/images/large/miscutils/dustPureLautarite/0.png deleted file mode 100644 index 14cfba2c7d..0000000000 Binary files a/front/public/images/large/miscutils/dustPureLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureLepersonnite/0.png b/front/public/images/large/miscutils/dustPureLepersonnite/0.png deleted file mode 100644 index 0b522e3e8f..0000000000 Binary files a/front/public/images/large/miscutils/dustPureLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureMiessiite/0.png b/front/public/images/large/miscutils/dustPureMiessiite/0.png deleted file mode 100644 index 219354b1c3..0000000000 Binary files a/front/public/images/large/miscutils/dustPureMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureNichromite/0.png b/front/public/images/large/miscutils/dustPureNichromite/0.png deleted file mode 100644 index b03eaca9aa..0000000000 Binary files a/front/public/images/large/miscutils/dustPureNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPurePerroudite/0.png b/front/public/images/large/miscutils/dustPurePerroudite/0.png deleted file mode 100644 index 0a2a8dd199..0000000000 Binary files a/front/public/images/large/miscutils/dustPurePerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPurePolycrase/0.png b/front/public/images/large/miscutils/dustPurePolycrase/0.png deleted file mode 100644 index fdd55e3c7b..0000000000 Binary files a/front/public/images/large/miscutils/dustPurePolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/dustPureRadioactiveMineralMix/0.png deleted file mode 100644 index 3665f19c7a..0000000000 Binary files a/front/public/images/large/miscutils/dustPureRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureRunite/0.png b/front/public/images/large/miscutils/dustPureRunite/0.png deleted file mode 100644 index 3c02189511..0000000000 Binary files a/front/public/images/large/miscutils/dustPureRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureSamarskiteY/0.png b/front/public/images/large/miscutils/dustPureSamarskiteY/0.png deleted file mode 100644 index 0022305cc7..0000000000 Binary files a/front/public/images/large/miscutils/dustPureSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureSamarskiteYb/0.png b/front/public/images/large/miscutils/dustPureSamarskiteYb/0.png deleted file mode 100644 index d19d2ded67..0000000000 Binary files a/front/public/images/large/miscutils/dustPureSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureTitanite/0.png b/front/public/images/large/miscutils/dustPureTitanite/0.png deleted file mode 100644 index c469bdfc75..0000000000 Binary files a/front/public/images/large/miscutils/dustPureTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureXenotime/0.png b/front/public/images/large/miscutils/dustPureXenotime/0.png deleted file mode 100644 index d9af42c0e9..0000000000 Binary files a/front/public/images/large/miscutils/dustPureXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureYttriaite/0.png b/front/public/images/large/miscutils/dustPureYttriaite/0.png deleted file mode 100644 index 10de1f71fa..0000000000 Binary files a/front/public/images/large/miscutils/dustPureYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureYttrialite/0.png b/front/public/images/large/miscutils/dustPureYttrialite/0.png deleted file mode 100644 index 4e30c94a77..0000000000 Binary files a/front/public/images/large/miscutils/dustPureYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureYttrocerite/0.png b/front/public/images/large/miscutils/dustPureYttrocerite/0.png deleted file mode 100644 index 46abb78a1c..0000000000 Binary files a/front/public/images/large/miscutils/dustPureYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureZimbabweite/0.png b/front/public/images/large/miscutils/dustPureZimbabweite/0.png deleted file mode 100644 index 5afd2da063..0000000000 Binary files a/front/public/images/large/miscutils/dustPureZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureZircon/0.png b/front/public/images/large/miscutils/dustPureZircon/0.png deleted file mode 100644 index d0fc5a0cd4..0000000000 Binary files a/front/public/images/large/miscutils/dustPureZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureZirconolite/0.png b/front/public/images/large/miscutils/dustPureZirconolite/0.png deleted file mode 100644 index cb4c617a55..0000000000 Binary files a/front/public/images/large/miscutils/dustPureZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureZircophyllite/0.png b/front/public/images/large/miscutils/dustPureZircophyllite/0.png deleted file mode 100644 index c26521ff68..0000000000 Binary files a/front/public/images/large/miscutils/dustPureZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustPureZirkelite/0.png b/front/public/images/large/miscutils/dustPureZirkelite/0.png deleted file mode 100644 index 84122bc300..0000000000 Binary files a/front/public/images/large/miscutils/dustPureZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/dustRadium226/0.png b/front/public/images/large/miscutils/dustRadium226/0.png deleted file mode 100644 index 24a47829fb..0000000000 Binary files a/front/public/images/large/miscutils/dustRadium226/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameAccelerated/0.png b/front/public/images/large/miscutils/frameAccelerated/0.png deleted file mode 100644 index 1c1d06fc6f..0000000000 Binary files a/front/public/images/large/miscutils/frameAccelerated/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameArborists/0.png b/front/public/images/large/miscutils/frameArborists/0.png deleted file mode 100644 index ef029bff59..0000000000 Binary files a/front/public/images/large/miscutils/frameArborists/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameBusy/0.png b/front/public/images/large/miscutils/frameBusy/0.png deleted file mode 100644 index 7aa0d05964..0000000000 Binary files a/front/public/images/large/miscutils/frameBusy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameDecaying/0.png b/front/public/images/large/miscutils/frameDecaying/0.png deleted file mode 100644 index cca5cee593..0000000000 Binary files a/front/public/images/large/miscutils/frameDecaying/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameMutagenic/0.png b/front/public/images/large/miscutils/frameMutagenic/0.png deleted file mode 100644 index 9924baf94c..0000000000 Binary files a/front/public/images/large/miscutils/frameMutagenic/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameSlowing/0.png b/front/public/images/large/miscutils/frameSlowing/0.png deleted file mode 100644 index fda49df970..0000000000 Binary files a/front/public/images/large/miscutils/frameSlowing/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameStabilizing/0.png b/front/public/images/large/miscutils/frameStabilizing/0.png deleted file mode 100644 index 22468b42b4..0000000000 Binary files a/front/public/images/large/miscutils/frameStabilizing/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/frameUseless/0.png b/front/public/images/large/miscutils/frameUseless/0.png deleted file mode 100644 index 8a3f0287e3..0000000000 Binary files a/front/public/images/large/miscutils/frameUseless/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gt.Volumetric_Flask_32k/0.png b/front/public/images/large/miscutils/gt.Volumetric_Flask_32k/0.png deleted file mode 100644 index 0f7e70c475..0000000000 Binary files a/front/public/images/large/miscutils/gt.Volumetric_Flask_32k/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gt.Volumetric_Flask_8k/0.png b/front/public/images/large/miscutils/gt.Volumetric_Flask_8k/0.png deleted file mode 100644 index 417bd2db00..0000000000 Binary files a/front/public/images/large/miscutils/gt.Volumetric_Flask_8k/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gt.plusplus.metatool.01/7834.png b/front/public/images/large/miscutils/gt.plusplus.metatool.01/7834.png deleted file mode 100644 index f9448f0a70..0000000000 Binary files a/front/public/images/large/miscutils/gt.plusplus.metatool.01/7834.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gt.plusplus.metatool.01/7934.png b/front/public/images/large/miscutils/gt.plusplus.metatool.01/7934.png deleted file mode 100644 index 123bb2d5be..0000000000 Binary files a/front/public/images/large/miscutils/gt.plusplus.metatool.01/7934.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/0.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/0.png deleted file mode 100644 index 697b4ecfd4..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/1.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/1.png deleted file mode 100644 index 9e9d3749a9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/10.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/10.png deleted file mode 100644 index 4664de6a41..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/11.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/11.png deleted file mode 100644 index bb889e2761..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/12.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/12.png deleted file mode 100644 index 5400ed42d6..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/13.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/13.png deleted file mode 100644 index 72c3699167..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/15.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/15.png deleted file mode 100644 index ac2eca7d67..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/2.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/2.png deleted file mode 100644 index 75751a76d5..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/3.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/3.png deleted file mode 100644 index 33076e183f..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/4.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/4.png deleted file mode 100644 index b83460fefd..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/5.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/5.png deleted file mode 100644 index fea86f7b2f..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/6.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/6.png deleted file mode 100644 index 7e6cdecd38..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/7.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/7.png deleted file mode 100644 index b9cdcee7ff..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/8.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/8.png deleted file mode 100644 index 22ff46b148..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/9.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.2/9.png deleted file mode 100644 index a4f631f75a..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.2/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/0.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/0.png deleted file mode 100644 index c575334bf9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/1.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/1.png deleted file mode 100644 index fde5398032..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/10.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/10.png deleted file mode 100644 index dc03493da1..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/11.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/11.png deleted file mode 100644 index 0c746ac013..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/12.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/12.png deleted file mode 100644 index c5cd834300..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/13.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/13.png deleted file mode 100644 index b282160648..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/14.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/14.png deleted file mode 100644 index f06fe87236..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/15.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/15.png deleted file mode 100644 index b63cc6e169..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/2.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/2.png deleted file mode 100644 index ae850b23d0..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/3.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/3.png deleted file mode 100644 index 4fbf8fd349..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/4.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/4.png deleted file mode 100644 index 450b6ade68..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/5.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/5.png deleted file mode 100644 index ba51a22195..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/6.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/6.png deleted file mode 100644 index 2735bb3e7c..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/7.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/7.png deleted file mode 100644 index df0b437be9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/8.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/8.png deleted file mode 100644 index a62c096dd9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/9.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.3/9.png deleted file mode 100644 index 9e6ff5027d..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.3/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/0.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.4/0.png deleted file mode 100644 index afd6e0548f..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/1.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.4/1.png deleted file mode 100644 index 8e103b20af..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/10.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.4/10.png deleted file mode 100644 index 729add0e44..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/11.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.4/11.png deleted file mode 100644 index b5f6f94729..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/2.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.4/2.png deleted file mode 100644 index 167f125bca..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/3.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.4/3.png deleted file mode 100644 index 9241264134..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/4.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.4/4.png deleted file mode 100644 index 057708b19f..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.4/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/0.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/0.png deleted file mode 100644 index e6005c1433..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/1.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/1.png deleted file mode 100644 index b6b137f14a..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/10.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/10.png deleted file mode 100644 index 1e9b8b538a..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/11.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/11.png deleted file mode 100644 index a689a642aa..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/12.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/12.png deleted file mode 100644 index bbef8a5394..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/13.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/13.png deleted file mode 100644 index bb6b9739be..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/14.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/14.png deleted file mode 100644 index 60731cb33c..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/15.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/15.png deleted file mode 100644 index 126b8b8a57..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/2.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/2.png deleted file mode 100644 index 3220b45724..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/3.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/3.png deleted file mode 100644 index 4bc8003620..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/4.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/4.png deleted file mode 100644 index 78d8e170a1..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/5.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/5.png deleted file mode 100644 index 11e6c3473e..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/6.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/6.png deleted file mode 100644 index 9fce837d1d..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/7.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/7.png deleted file mode 100644 index ad94eb0b29..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/8.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/8.png deleted file mode 100644 index ad94eb0b29..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/9.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.5/9.png deleted file mode 100644 index 3e36dbb2ba..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.5/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.6/0.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.6/0.png deleted file mode 100644 index f3e74529e6..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.6/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.6/1.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.6/1.png deleted file mode 100644 index 6a397ff75d..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.6/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.6/2.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.6/2.png deleted file mode 100644 index 3f52ea90bf..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.6/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/0.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/0.png deleted file mode 100644 index c0798f4397..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/1.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/1.png deleted file mode 100644 index 3b6654dc37..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/10.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/10.png deleted file mode 100644 index 614715fbeb..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/11.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/11.png deleted file mode 100644 index dc12688d30..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/12.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/12.png deleted file mode 100644 index d9ed3d8ae9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/13.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/13.png deleted file mode 100644 index 0139d541a8..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/14.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/14.png deleted file mode 100644 index c4db9735da..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/15.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/15.png deleted file mode 100644 index 64ea55ee0e..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/2.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/2.png deleted file mode 100644 index 142d865186..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/3.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/3.png deleted file mode 100644 index 0c16bc4f43..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/4.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/4.png deleted file mode 100644 index 415da41998..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/5.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/5.png deleted file mode 100644 index e9f4abf1c9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/6.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/6.png deleted file mode 100644 index db9a070c95..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/7.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/7.png deleted file mode 100644 index 1a72cc603c..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/8.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/8.png deleted file mode 100644 index 94c0033ea6..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/9.png b/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/9.png deleted file mode 100644 index bd7fcbab8f..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockcasings.pipesgears/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/0.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/0.png deleted file mode 100644 index b9cdcee7ff..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/1.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/1.png deleted file mode 100644 index ef746d809a..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/10.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/10.png deleted file mode 100644 index ae2e94d17a..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/11.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/11.png deleted file mode 100644 index 4664de6a41..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/12.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/12.png deleted file mode 100644 index df0b437be9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/13.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/13.png deleted file mode 100644 index 3a4ebd520d..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/14.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/14.png deleted file mode 100644 index ae2e94d17a..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/15.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/15.png deleted file mode 100644 index b508fe2c91..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/2.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/2.png deleted file mode 100644 index 7343e8a1d9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/3.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/3.png deleted file mode 100644 index 23b7ae1412..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/4.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/4.png deleted file mode 100644 index 891af06208..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/5.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/5.png deleted file mode 100644 index 697b4ecfd4..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/6.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/6.png deleted file mode 100644 index 56c4de345d..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/7.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/7.png deleted file mode 100644 index 525990aef1..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/8.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/8.png deleted file mode 100644 index 5400ed42d6..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/9.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/9.png deleted file mode 100644 index 9cb1d04e57..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.1/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/0.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/0.png deleted file mode 100644 index bdaa3af4ac..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/1.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/1.png deleted file mode 100644 index c215102edc..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/2.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/2.png deleted file mode 100644 index a037ffba6b..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/3.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/3.png deleted file mode 100644 index 763630f4fc..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.2/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/0.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/0.png deleted file mode 100644 index ba6f932602..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/1.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/1.png deleted file mode 100644 index ee84f2c8b9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/2.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/2.png deleted file mode 100644 index 3b0b0e2b81..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/3.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/3.png deleted file mode 100644 index cccd22dc75..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/4.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/4.png deleted file mode 100644 index f9739569cf..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/5.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/5.png deleted file mode 100644 index b3bd30c99f..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/6.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/6.png deleted file mode 100644 index c6d31c1ac9..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/7.png b/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/7.png deleted file mode 100644 index b390b9b747..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blockspecialcasings.3/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/0.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/0.png deleted file mode 100644 index 6489364725..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/1.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/1.png deleted file mode 100644 index f2471ecda3..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/2.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/2.png deleted file mode 100644 index 5ff715847c..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/3.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/3.png deleted file mode 100644 index 677c41b7d8..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/4.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/4.png deleted file mode 100644 index b4ab1e85ec..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/5.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/5.png deleted file mode 100644 index 7ad7b5b728..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/6.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/6.png deleted file mode 100644 index 7a355ed5ab..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/7.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/7.png deleted file mode 100644 index 4454f70a37..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/8.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/8.png deleted file mode 100644 index b0976c1014..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/9.png b/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/9.png deleted file mode 100644 index b4e37965c2..0000000000 Binary files a/front/public/images/large/miscutils/gtplusplus.blocktieredcasings.1/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/gtpp.debug.scanner/0.png b/front/public/images/large/miscutils/gtpp.debug.scanner/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/miscutils/gtpp.debug.scanner/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/0.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/0.png deleted file mode 100644 index 044a62e37e..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/1.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/1.png deleted file mode 100644 index ffdf305cf4..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/10.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/10.png deleted file mode 100644 index 67ed7e7e00..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/11.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/11.png deleted file mode 100644 index 278870fdd7..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/12.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/12.png deleted file mode 100644 index 93ecca673e..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/13.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/13.png deleted file mode 100644 index 811a34f216..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/14.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/14.png deleted file mode 100644 index 4465c708a6..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/15.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/15.png deleted file mode 100644 index d879412e90..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/16.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/16.png deleted file mode 100644 index a20b66c0e7..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/16.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/17.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/17.png deleted file mode 100644 index c350b4e15d..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/17.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/18.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/18.png deleted file mode 100644 index 30ac4b434c..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/18.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/2.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/2.png deleted file mode 100644 index 70a41692f4..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/20.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/20.png deleted file mode 100644 index b0c4369bd9..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/20.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/21.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/21.png deleted file mode 100644 index f27c1a7f03..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/21.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/22.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/22.png deleted file mode 100644 index 6dd197d6d0..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/22.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/23.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/23.png deleted file mode 100644 index 7758443f40..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/23.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/24.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/24.png deleted file mode 100644 index 6d77db1ee0..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/24.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/25.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/25.png deleted file mode 100644 index 50e38af3f2..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/25.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/3.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/3.png deleted file mode 100644 index f95ee65893..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/4.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/4.png deleted file mode 100644 index ee101e45a5..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/5.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/5.png deleted file mode 100644 index e844539620..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/6.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/6.png deleted file mode 100644 index 9fe45a6516..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/7.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/7.png deleted file mode 100644 index a139eb0295..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/8.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/8.png deleted file mode 100644 index 9acbf8a688..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAgrichemItem/9.png b/front/public/images/large/miscutils/item.BasicAgrichemItem/9.png deleted file mode 100644 index 37927ee637..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAgrichemItem/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAlgaeItem/0.png b/front/public/images/large/miscutils/item.BasicAlgaeItem/0.png deleted file mode 100644 index 850175fc3d..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAlgaeItem/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAlgaeItem/1.png b/front/public/images/large/miscutils/item.BasicAlgaeItem/1.png deleted file mode 100644 index 139bbb7d5e..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAlgaeItem/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAlgaeItem/2.png b/front/public/images/large/miscutils/item.BasicAlgaeItem/2.png deleted file mode 100644 index 8f826fa845..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAlgaeItem/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAlgaeItem/3.png b/front/public/images/large/miscutils/item.BasicAlgaeItem/3.png deleted file mode 100644 index 0d3228906c..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAlgaeItem/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAlgaeItem/4.png b/front/public/images/large/miscutils/item.BasicAlgaeItem/4.png deleted file mode 100644 index 6501f5b7eb..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAlgaeItem/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAlgaeItem/5.png b/front/public/images/large/miscutils/item.BasicAlgaeItem/5.png deleted file mode 100644 index 4ac249feac..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAlgaeItem/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicAlgaeItem/6.png b/front/public/images/large/miscutils/item.BasicAlgaeItem/6.png deleted file mode 100644 index e611990eef..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicAlgaeItem/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/0.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/0.png deleted file mode 100644 index 842840d96d..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/1.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/1.png deleted file mode 100644 index e585e35546..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/10.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/10.png deleted file mode 100644 index dfa1d91c40..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/11.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/11.png deleted file mode 100644 index 4bde16728e..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/12.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/12.png deleted file mode 100644 index 717c0428f3..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/13.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/13.png deleted file mode 100644 index 66201d845a..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/14.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/14.png deleted file mode 100644 index 2ad39a7b89..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/15.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/15.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/16.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/16.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/16.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/17.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/17.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/17.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/18.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/18.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/18.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/19.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/19.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/19.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/2.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/2.png deleted file mode 100644 index 319b12e208..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/20.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/20.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/20.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/21.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/21.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/21.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/22.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/22.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/22.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/23.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/23.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/23.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/24.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/24.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/24.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/25.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/25.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/25.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/26.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/26.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/26.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/27.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/27.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/27.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/28.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/28.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/28.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/29.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/29.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/29.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/3.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/3.png deleted file mode 100644 index ee9da87982..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/30.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/30.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/30.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/31.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/31.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/31.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/32.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/32.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/32.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/33.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/33.png deleted file mode 100644 index 1f8abff894..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/33.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/4.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/4.png deleted file mode 100644 index bea0e85291..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/5.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/5.png deleted file mode 100644 index 5f0f526c6e..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/6.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/6.png deleted file mode 100644 index 578a91983c..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/7.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/7.png deleted file mode 100644 index 3691ce450d..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/8.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/8.png deleted file mode 100644 index 3052a3f6f7..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicGenericChemItem/9.png b/front/public/images/large/miscutils/item.BasicGenericChemItem/9.png deleted file mode 100644 index 8cc4d6be6d..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicGenericChemItem/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/0.png b/front/public/images/large/miscutils/item.BasicMetaFood/0.png deleted file mode 100644 index cda24f6d9a..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/1.png b/front/public/images/large/miscutils/item.BasicMetaFood/1.png deleted file mode 100644 index 80c77e31ce..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/2.png b/front/public/images/large/miscutils/item.BasicMetaFood/2.png deleted file mode 100644 index 84ce0a9f8a..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/3.png b/front/public/images/large/miscutils/item.BasicMetaFood/3.png deleted file mode 100644 index 9cdcc757bd..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/4.png b/front/public/images/large/miscutils/item.BasicMetaFood/4.png deleted file mode 100644 index 5fc5f6d1d2..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/5.png b/front/public/images/large/miscutils/item.BasicMetaFood/5.png deleted file mode 100644 index 959a0c99cb..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/6.png b/front/public/images/large/miscutils/item.BasicMetaFood/6.png deleted file mode 100644 index 10a3b1a7b8..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/7.png b/front/public/images/large/miscutils/item.BasicMetaFood/7.png deleted file mode 100644 index 4f8fee7f8d..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaFood/8.png b/front/public/images/large/miscutils/item.BasicMetaFood/8.png deleted file mode 100644 index 804720da83..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaFood/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaSpawnEgg/0.png b/front/public/images/large/miscutils/item.BasicMetaSpawnEgg/0.png deleted file mode 100644 index 54e5d78759..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaSpawnEgg/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BasicMetaSpawnEgg/1.png b/front/public/images/large/miscutils/item.BasicMetaSpawnEgg/1.png deleted file mode 100644 index af081cf235..0000000000 Binary files a/front/public/images/large/miscutils/item.BasicMetaSpawnEgg/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.BioRecipeSelector/0.png b/front/public/images/large/miscutils/item.BioRecipeSelector/0.png deleted file mode 100644 index 0eca59886e..0000000000 Binary files a/front/public/images/large/miscutils/item.BioRecipeSelector/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.T3RecipeSelector/0.png b/front/public/images/large/miscutils/item.T3RecipeSelector/0.png deleted file mode 100644 index df9e7afd4d..0000000000 Binary files a/front/public/images/large/miscutils/item.T3RecipeSelector/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.empty/0.png b/front/public/images/large/miscutils/item.empty/0.png deleted file mode 100644 index 6b6ba75c49..0000000000 Binary files a/front/public/images/large/miscutils/item.empty/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore1/0.png b/front/public/images/large/miscutils/item.itemBufferCore1/0.png deleted file mode 100644 index 31abed5733..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore1/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore10/0.png b/front/public/images/large/miscutils/item.itemBufferCore10/0.png deleted file mode 100644 index 2615cc2ddd..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore10/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore2/0.png b/front/public/images/large/miscutils/item.itemBufferCore2/0.png deleted file mode 100644 index 56733e19d3..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore3/0.png b/front/public/images/large/miscutils/item.itemBufferCore3/0.png deleted file mode 100644 index 38808478e5..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore3/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore4/0.png b/front/public/images/large/miscutils/item.itemBufferCore4/0.png deleted file mode 100644 index 030ffe01f5..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore5/0.png b/front/public/images/large/miscutils/item.itemBufferCore5/0.png deleted file mode 100644 index 18f0502c15..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore5/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore6/0.png b/front/public/images/large/miscutils/item.itemBufferCore6/0.png deleted file mode 100644 index 22ee002073..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore6/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore7/0.png b/front/public/images/large/miscutils/item.itemBufferCore7/0.png deleted file mode 100644 index dfd3e1803e..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore8/0.png b/front/public/images/large/miscutils/item.itemBufferCore8/0.png deleted file mode 100644 index e448bbfab6..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore8/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/item.itemBufferCore9/0.png b/front/public/images/large/miscutils/item.itemBufferCore9/0.png deleted file mode 100644 index e90b5a54b2..0000000000 Binary files a/front/public/images/large/miscutils/item.itemBufferCore9/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemAirFilter/0.png b/front/public/images/large/miscutils/itemAirFilter/0.png deleted file mode 100644 index f5f1eb808e..0000000000 Binary files a/front/public/images/large/miscutils/itemAirFilter/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemAirFilter/1.png b/front/public/images/large/miscutils/itemAirFilter/1.png deleted file mode 100644 index c2f4ca828e..0000000000 Binary files a/front/public/images/large/miscutils/itemAirFilter/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemAlkalusDisk/0.png b/front/public/images/large/miscutils/itemAlkalusDisk/0.png deleted file mode 100644 index 58df6259f4..0000000000 Binary files a/front/public/images/large/miscutils/itemAlkalusDisk/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemArmorHazmatChestplateEx/0.png b/front/public/images/large/miscutils/itemArmorHazmatChestplateEx/0.png deleted file mode 100644 index c86b6dbbee..0000000000 Binary files a/front/public/images/large/miscutils/itemArmorHazmatChestplateEx/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemArmorHazmatHelmetEx/0.png b/front/public/images/large/miscutils/itemArmorHazmatHelmetEx/0.png deleted file mode 100644 index 10938209bf..0000000000 Binary files a/front/public/images/large/miscutils/itemArmorHazmatHelmetEx/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemArmorHazmatLeggingsEx/0.png b/front/public/images/large/miscutils/itemArmorHazmatLeggingsEx/0.png deleted file mode 100644 index 66c0624be8..0000000000 Binary files a/front/public/images/large/miscutils/itemArmorHazmatLeggingsEx/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemArmorRubBootsEx/0.png b/front/public/images/large/miscutils/itemArmorRubBootsEx/0.png deleted file mode 100644 index 33c49e20d9..0000000000 Binary files a/front/public/images/large/miscutils/itemArmorRubBootsEx/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBasicTurbine/0.png b/front/public/images/large/miscutils/itemBasicTurbine/0.png deleted file mode 100644 index 0340adbcd4..0000000000 Binary files a/front/public/images/large/miscutils/itemBasicTurbine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBasicTurbine/1.png b/front/public/images/large/miscutils/itemBasicTurbine/1.png deleted file mode 100644 index 2fab02d119..0000000000 Binary files a/front/public/images/large/miscutils/itemBasicTurbine/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBasicTurbine/2.png b/front/public/images/large/miscutils/itemBasicTurbine/2.png deleted file mode 100644 index 5ebb5fb908..0000000000 Binary files a/front/public/images/large/miscutils/itemBasicTurbine/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBlueprint/0.png b/front/public/images/large/miscutils/itemBlueprint/0.png deleted file mode 100644 index b09d467c11..0000000000 Binary files a/front/public/images/large/miscutils/itemBlueprint/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoilerChassis/0.png b/front/public/images/large/miscutils/itemBoilerChassis/0.png deleted file mode 100644 index b19f06965c..0000000000 Binary files a/front/public/images/large/miscutils/itemBoilerChassis/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoilerChassis/1.png b/front/public/images/large/miscutils/itemBoilerChassis/1.png deleted file mode 100644 index af2c3b56b1..0000000000 Binary files a/front/public/images/large/miscutils/itemBoilerChassis/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoilerChassis/2.png b/front/public/images/large/miscutils/itemBoilerChassis/2.png deleted file mode 100644 index 30656f759e..0000000000 Binary files a/front/public/images/large/miscutils/itemBoilerChassis/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemBoltAbyssalAlloy/0.png deleted file mode 100644 index 1ae44e84c6..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltArcanite/0.png b/front/public/images/large/miscutils/itemBoltArcanite/0.png deleted file mode 100644 index 4fc0f53ce0..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemBoltArceusAlloy2B/0.png deleted file mode 100644 index afd03b2b16..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltAstralTitanium/0.png b/front/public/images/large/miscutils/itemBoltAstralTitanium/0.png deleted file mode 100644 index 699b7d68a0..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltBlackMetal/0.png b/front/public/images/large/miscutils/itemBoltBlackMetal/0.png deleted file mode 100644 index 40ecd66f56..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltBloodSteel/0.png b/front/public/images/large/miscutils/itemBoltBloodSteel/0.png deleted file mode 100644 index b17bf7a58d..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltBotmium/0.png b/front/public/images/large/miscutils/itemBoltBotmium/0.png deleted file mode 100644 index 9800cb7207..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltCelestialTungsten/0.png b/front/public/images/large/miscutils/itemBoltCelestialTungsten/0.png deleted file mode 100644 index 1659aa37d5..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltChromaticGlass/0.png b/front/public/images/large/miscutils/itemBoltChromaticGlass/0.png deleted file mode 100644 index 6f6eec9021..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltCinobiteA243/0.png b/front/public/images/large/miscutils/itemBoltCinobiteA243/0.png deleted file mode 100644 index 1d8fd23eb4..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltDysprosium/0.png b/front/public/images/large/miscutils/itemBoltDysprosium/0.png deleted file mode 100644 index 79430e9f15..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltEglinSteel/0.png b/front/public/images/large/miscutils/itemBoltEglinSteel/0.png deleted file mode 100644 index a33e69693a..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltEnergyCrystal/0.png b/front/public/images/large/miscutils/itemBoltEnergyCrystal/0.png deleted file mode 100644 index c5fdf942f6..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltErbium/0.png b/front/public/images/large/miscutils/itemBoltErbium/0.png deleted file mode 100644 index 36772141a1..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltGermanium/0.png b/front/public/images/large/miscutils/itemBoltGermanium/0.png deleted file mode 100644 index 781f6e168e..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltGrisium/0.png b/front/public/images/large/miscutils/itemBoltGrisium/0.png deleted file mode 100644 index c0bc65ece3..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHS188A/0.png b/front/public/images/large/miscutils/itemBoltHS188A/0.png deleted file mode 100644 index 8c69e7155a..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHafnium/0.png b/front/public/images/large/miscutils/itemBoltHafnium/0.png deleted file mode 100644 index c2277569c3..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHastelloyC276/0.png b/front/public/images/large/miscutils/itemBoltHastelloyC276/0.png deleted file mode 100644 index f4b2fa42ff..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHastelloyN/0.png b/front/public/images/large/miscutils/itemBoltHastelloyN/0.png deleted file mode 100644 index d8c4c5d277..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHastelloyW/0.png b/front/public/images/large/miscutils/itemBoltHastelloyW/0.png deleted file mode 100644 index af20cba0fa..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHastelloyX/0.png b/front/public/images/large/miscutils/itemBoltHastelloyX/0.png deleted file mode 100644 index 9a015d65b5..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemBoltHeLiCoPtEr/0.png deleted file mode 100644 index dd60b4aae2..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltHypogen/0.png b/front/public/images/large/miscutils/itemBoltHypogen/0.png deleted file mode 100644 index b511ca7455..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltIncoloy020/0.png b/front/public/images/large/miscutils/itemBoltIncoloy020/0.png deleted file mode 100644 index 9174fcd9ee..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltIncoloyDS/0.png b/front/public/images/large/miscutils/itemBoltIncoloyDS/0.png deleted file mode 100644 index c1655bf20a..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltIncoloyMA956/0.png b/front/public/images/large/miscutils/itemBoltIncoloyMA956/0.png deleted file mode 100644 index ca30f01a1f..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltInconel625/0.png b/front/public/images/large/miscutils/itemBoltInconel625/0.png deleted file mode 100644 index bcae6a35a0..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltInconel690/0.png b/front/public/images/large/miscutils/itemBoltInconel690/0.png deleted file mode 100644 index 524af90722..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltInconel792/0.png b/front/public/images/large/miscutils/itemBoltInconel792/0.png deleted file mode 100644 index 3e26f2b264..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltIodine/0.png b/front/public/images/large/miscutils/itemBoltIodine/0.png deleted file mode 100644 index 0685fbc7aa..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltLafiumCompound/0.png b/front/public/images/large/miscutils/itemBoltLafiumCompound/0.png deleted file mode 100644 index 19cfff3c5a..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltLaurenium/0.png b/front/public/images/large/miscutils/itemBoltLaurenium/0.png deleted file mode 100644 index 63c0919b1f..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltMaragingSteel250/0.png b/front/public/images/large/miscutils/itemBoltMaragingSteel250/0.png deleted file mode 100644 index 8f4ec5b33f..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltMaragingSteel300/0.png b/front/public/images/large/miscutils/itemBoltMaragingSteel300/0.png deleted file mode 100644 index ba87d76e14..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltMaragingSteel350/0.png b/front/public/images/large/miscutils/itemBoltMaragingSteel350/0.png deleted file mode 100644 index 079a05ad79..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemBoltNiobiumCarbide/0.png deleted file mode 100644 index ef9e471be8..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltNitinol60/0.png b/front/public/images/large/miscutils/itemBoltNitinol60/0.png deleted file mode 100644 index 2e823eb717..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltOctiron/0.png b/front/public/images/large/miscutils/itemBoltOctiron/0.png deleted file mode 100644 index 73af650f6c..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltPikyonium64B/0.png b/front/public/images/large/miscutils/itemBoltPikyonium64B/0.png deleted file mode 100644 index 282d7e46c3..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltPotin/0.png b/front/public/images/large/miscutils/itemBoltPotin/0.png deleted file mode 100644 index 67a8303a3a..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltPraseodymium/0.png b/front/public/images/large/miscutils/itemBoltPraseodymium/0.png deleted file mode 100644 index 016251392f..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltQuantum/0.png b/front/public/images/large/miscutils/itemBoltQuantum/0.png deleted file mode 100644 index 5b1eda7a25..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltRhenium/0.png b/front/public/images/large/miscutils/itemBoltRhenium/0.png deleted file mode 100644 index a3d44f32d4..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltRhodium/0.png b/front/public/images/large/miscutils/itemBoltRhodium/0.png deleted file mode 100644 index 607ffe0a29..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltRuthenium/0.png b/front/public/images/large/miscutils/itemBoltRuthenium/0.png deleted file mode 100644 index 607ffe0a29..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltSelenium/0.png b/front/public/images/large/miscutils/itemBoltSelenium/0.png deleted file mode 100644 index 894c4dfa87..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltSiliconCarbide/0.png b/front/public/images/large/miscutils/itemBoltSiliconCarbide/0.png deleted file mode 100644 index e5e568b276..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltStaballoy/0.png b/front/public/images/large/miscutils/itemBoltStaballoy/0.png deleted file mode 100644 index 86d363f48d..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltStellite/0.png b/front/public/images/large/miscutils/itemBoltStellite/0.png deleted file mode 100644 index d8785188e0..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltStrontium/0.png b/front/public/images/large/miscutils/itemBoltStrontium/0.png deleted file mode 100644 index b2d3741468..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTalonite/0.png b/front/public/images/large/miscutils/itemBoltTalonite/0.png deleted file mode 100644 index d7f2405f83..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTantalloy60/0.png b/front/public/images/large/miscutils/itemBoltTantalloy60/0.png deleted file mode 100644 index 6c99885f76..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTantalloy61/0.png b/front/public/images/large/miscutils/itemBoltTantalloy61/0.png deleted file mode 100644 index efdc75f657..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTantalumCarbide/0.png b/front/public/images/large/miscutils/itemBoltTantalumCarbide/0.png deleted file mode 100644 index cc667a636f..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTellurium/0.png b/front/public/images/large/miscutils/itemBoltTellurium/0.png deleted file mode 100644 index fdc22f7c75..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltThallium/0.png b/front/public/images/large/miscutils/itemBoltThallium/0.png deleted file mode 100644 index 8fa67016b2..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTitansteel/0.png b/front/public/images/large/miscutils/itemBoltTitansteel/0.png deleted file mode 100644 index 31a9f72eb2..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemBoltTriniumNaquadahCarbonite/0.png deleted file mode 100644 index ee8a4bbf37..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemBoltTriniumTitaniumAlloy/0.png deleted file mode 100644 index 5a34d80c07..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTumbaga/0.png b/front/public/images/large/miscutils/itemBoltTumbaga/0.png deleted file mode 100644 index c45180d92f..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemBoltTungstenTitaniumCarbide/0.png deleted file mode 100644 index ffd777b6e9..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltWatertightSteel/0.png b/front/public/images/large/miscutils/itemBoltWatertightSteel/0.png deleted file mode 100644 index 52d6e0049e..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltWhiteMetal/0.png b/front/public/images/large/miscutils/itemBoltWhiteMetal/0.png deleted file mode 100644 index e02edd156e..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltZeron100/0.png b/front/public/images/large/miscutils/itemBoltZeron100/0.png deleted file mode 100644 index 74da23f951..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltZirconium/0.png b/front/public/images/large/miscutils/itemBoltZirconium/0.png deleted file mode 100644 index cb54259fb2..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemBoltZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemBoltZirconiumCarbide/0.png deleted file mode 100644 index cfddb34342..0000000000 Binary files a/front/public/images/large/miscutils/itemBoltZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCactusCharcoal/0.png b/front/public/images/large/miscutils/itemCactusCharcoal/0.png deleted file mode 100644 index a3a751c2e7..0000000000 Binary files a/front/public/images/large/miscutils/itemCactusCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCactusCoke/0.png b/front/public/images/large/miscutils/itemCactusCoke/0.png deleted file mode 100644 index 1d0a13689b..0000000000 Binary files a/front/public/images/large/miscutils/itemCactusCoke/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemCellAbyssalAlloy/0.png deleted file mode 100644 index c4d508ff88..0000000000 Binary files a/front/public/images/large/miscutils/itemCellAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellAceticAnhydride/0.png b/front/public/images/large/miscutils/itemCellAceticAnhydride/0.png deleted file mode 100644 index e244fc8e6f..0000000000 Binary files a/front/public/images/large/miscutils/itemCellAceticAnhydride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemCellAdvancedNitinol/0.png deleted file mode 100644 index ca5bc738f6..0000000000 Binary files a/front/public/images/large/miscutils/itemCellAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellAmmonium/0.png b/front/public/images/large/miscutils/itemCellAmmonium/0.png deleted file mode 100644 index e940a86814..0000000000 Binary files a/front/public/images/large/miscutils/itemCellAmmonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellAmmoniumBifluoride/0.png b/front/public/images/large/miscutils/itemCellAmmoniumBifluoride/0.png deleted file mode 100644 index 823c0b0080..0000000000 Binary files a/front/public/images/large/miscutils/itemCellAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellAmmoniumTetrafluoroberyllate/0.png b/front/public/images/large/miscutils/itemCellAmmoniumTetrafluoroberyllate/0.png deleted file mode 100644 index b8b9bb4695..0000000000 Binary files a/front/public/images/large/miscutils/itemCellAmmoniumTetrafluoroberyllate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellArcanite/0.png b/front/public/images/large/miscutils/itemCellArcanite/0.png deleted file mode 100644 index a624179e33..0000000000 Binary files a/front/public/images/large/miscutils/itemCellArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemCellArceusAlloy2B/0.png deleted file mode 100644 index 4d77df0811..0000000000 Binary files a/front/public/images/large/miscutils/itemCellArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellAstralTitanium/0.png b/front/public/images/large/miscutils/itemCellAstralTitanium/0.png deleted file mode 100644 index 168322666c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBabbitAlloy/0.png b/front/public/images/large/miscutils/itemCellBabbitAlloy/0.png deleted file mode 100644 index 82db07b0b0..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBerylliumFluoride/0.png b/front/public/images/large/miscutils/itemCellBerylliumFluoride/0.png deleted file mode 100644 index ee56637a2a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBerylliumHydroxide/0.png b/front/public/images/large/miscutils/itemCellBerylliumHydroxide/0.png deleted file mode 100644 index 62232feff4..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBlackMetal/0.png b/front/public/images/large/miscutils/itemCellBlackMetal/0.png deleted file mode 100644 index 28ed6831bb..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBlackTitanium/0.png b/front/public/images/large/miscutils/itemCellBlackTitanium/0.png deleted file mode 100644 index 3c7bc2eda2..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBloodSteel/0.png b/front/public/images/large/miscutils/itemCellBloodSteel/0.png deleted file mode 100644 index fa036c1f58..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBotmium/0.png b/front/public/images/large/miscutils/itemCellBotmium/0.png deleted file mode 100644 index 3c54b1ee47..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBromine/0.png b/front/public/images/large/miscutils/itemCellBromine/0.png deleted file mode 100644 index 6310040b00..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBromine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBurntReactorFuelI/0.png b/front/public/images/large/miscutils/itemCellBurntReactorFuelI/0.png deleted file mode 100644 index 8e78e3d05f..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBurntReactorFuelI/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellBurntReactorFuelII/0.png b/front/public/images/large/miscutils/itemCellBurntReactorFuelII/0.png deleted file mode 100644 index 8e78e3d05f..0000000000 Binary files a/front/public/images/large/miscutils/itemCellBurntReactorFuelII/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellCalifornium/0.png b/front/public/images/large/miscutils/itemCellCalifornium/0.png deleted file mode 100644 index 04eac9191b..0000000000 Binary files a/front/public/images/large/miscutils/itemCellCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellCelestialTungsten/0.png b/front/public/images/large/miscutils/itemCellCelestialTungsten/0.png deleted file mode 100644 index 9eeecf6869..0000000000 Binary files a/front/public/images/large/miscutils/itemCellCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellChloroaceticAcid/0.png b/front/public/images/large/miscutils/itemCellChloroaceticAcid/0.png deleted file mode 100644 index 0f8a906d68..0000000000 Binary files a/front/public/images/large/miscutils/itemCellChloroaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellChloroaceticMixture/0.png b/front/public/images/large/miscutils/itemCellChloroaceticMixture/0.png deleted file mode 100644 index 493e02b06d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellChloroaceticMixture/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellChromaticGlass/0.png b/front/public/images/large/miscutils/itemCellChromaticGlass/0.png deleted file mode 100644 index 404fd30268..0000000000 Binary files a/front/public/images/large/miscutils/itemCellChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellCinobiteA243/0.png b/front/public/images/large/miscutils/itemCellCinobiteA243/0.png deleted file mode 100644 index 582df72868..0000000000 Binary files a/front/public/images/large/miscutils/itemCellCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellCurium/0.png b/front/public/images/large/miscutils/itemCellCurium/0.png deleted file mode 100644 index 19680c5f19..0000000000 Binary files a/front/public/images/large/miscutils/itemCellCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellCyanoacrylatePolymer/0.png b/front/public/images/large/miscutils/itemCellCyanoacrylatePolymer/0.png deleted file mode 100644 index fa53b81813..0000000000 Binary files a/front/public/images/large/miscutils/itemCellCyanoacrylatePolymer/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellDichloroaceticAcid/0.png b/front/public/images/large/miscutils/itemCellDichloroaceticAcid/0.png deleted file mode 100644 index b5aa946541..0000000000 Binary files a/front/public/images/large/miscutils/itemCellDichloroaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellDragonblood/0.png b/front/public/images/large/miscutils/itemCellDragonblood/0.png deleted file mode 100644 index 9ae082b385..0000000000 Binary files a/front/public/images/large/miscutils/itemCellDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellDysprosium/0.png b/front/public/images/large/miscutils/itemCellDysprosium/0.png deleted file mode 100644 index d87c61ed2c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellEglinSteel/0.png b/front/public/images/large/miscutils/itemCellEglinSteel/0.png deleted file mode 100644 index 501df52df8..0000000000 Binary files a/front/public/images/large/miscutils/itemCellEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellEglinSteelBaseCompound/0.png b/front/public/images/large/miscutils/itemCellEglinSteelBaseCompound/0.png deleted file mode 100644 index 8e87e9ff15..0000000000 Binary files a/front/public/images/large/miscutils/itemCellEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellEnergyCrystal/0.png b/front/public/images/large/miscutils/itemCellEnergyCrystal/0.png deleted file mode 100644 index dd8d326191..0000000000 Binary files a/front/public/images/large/miscutils/itemCellEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellEnrichedNaquadahFuel/0.png b/front/public/images/large/miscutils/itemCellEnrichedNaquadahFuel/0.png deleted file mode 100644 index ff3b6d54ed..0000000000 Binary files a/front/public/images/large/miscutils/itemCellEnrichedNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellEthylCyanoacetate/0.png b/front/public/images/large/miscutils/itemCellEthylCyanoacetate/0.png deleted file mode 100644 index ad4ea70863..0000000000 Binary files a/front/public/images/large/miscutils/itemCellEthylCyanoacetate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellEthylCyanoacrylateSuperGlue/0.png b/front/public/images/large/miscutils/itemCellEthylCyanoacrylateSuperGlue/0.png deleted file mode 100644 index 84324cefce..0000000000 Binary files a/front/public/images/large/miscutils/itemCellEthylCyanoacrylateSuperGlue/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellFermium/0.png b/front/public/images/large/miscutils/itemCellFermium/0.png deleted file mode 100644 index 29842b3f8e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellFluorinatedUraniumHexafluorideFUF6/0.png b/front/public/images/large/miscutils/itemCellFluorinatedUraniumHexafluorideFUF6/0.png deleted file mode 100644 index 21163363b7..0000000000 Binary files a/front/public/images/large/miscutils/itemCellFluorinatedUraniumHexafluorideFUF6/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellFluorineSpargedTBSalt/0.png b/front/public/images/large/miscutils/itemCellFluorineSpargedTBSalt/0.png deleted file mode 100644 index 9d4d8f9caf..0000000000 Binary files a/front/public/images/large/miscutils/itemCellFluorineSpargedTBSalt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellFluorineSpargedTSalt/0.png b/front/public/images/large/miscutils/itemCellFluorineSpargedTSalt/0.png deleted file mode 100644 index ede06ff8b1..0000000000 Binary files a/front/public/images/large/miscutils/itemCellFluorineSpargedTSalt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellForce/0.png b/front/public/images/large/miscutils/itemCellForce/0.png deleted file mode 100644 index 74e9dc29e6..0000000000 Binary files a/front/public/images/large/miscutils/itemCellForce/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellGermanium/0.png b/front/public/images/large/miscutils/itemCellGermanium/0.png deleted file mode 100644 index c9f856f962..0000000000 Binary files a/front/public/images/large/miscutils/itemCellGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellGrisium/0.png b/front/public/images/large/miscutils/itemCellGrisium/0.png deleted file mode 100644 index da32802914..0000000000 Binary files a/front/public/images/large/miscutils/itemCellGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHG1223/0.png b/front/public/images/large/miscutils/itemCellHG1223/0.png deleted file mode 100644 index c9814b4c82..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHS188A/0.png b/front/public/images/large/miscutils/itemCellHS188A/0.png deleted file mode 100644 index 097b68dcf6..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHafnium/0.png b/front/public/images/large/miscutils/itemCellHafnium/0.png deleted file mode 100644 index ae7d59d936..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHastelloyC276/0.png b/front/public/images/large/miscutils/itemCellHastelloyC276/0.png deleted file mode 100644 index 4cc761c757..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHastelloyN/0.png b/front/public/images/large/miscutils/itemCellHastelloyN/0.png deleted file mode 100644 index a9e6a55204..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHastelloyW/0.png b/front/public/images/large/miscutils/itemCellHastelloyW/0.png deleted file mode 100644 index 3515d0aa44..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHastelloyX/0.png b/front/public/images/large/miscutils/itemCellHastelloyX/0.png deleted file mode 100644 index e01db72a4d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemCellHeLiCoPtEr/0.png deleted file mode 100644 index 374be93b8e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHeliumSpargedUSalt/0.png b/front/public/images/large/miscutils/itemCellHeliumSpargedUSalt/0.png deleted file mode 100644 index 8e78e3d05f..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHeliumSpargedUSalt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHydrogenChlorideMix/0.png b/front/public/images/large/miscutils/itemCellHydrogenChlorideMix/0.png deleted file mode 100644 index 63bef0371d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHydrogenChlorideMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHydrogenCyanide/0.png b/front/public/images/large/miscutils/itemCellHydrogenCyanide/0.png deleted file mode 100644 index 09bef075a9..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHydrogenCyanide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHydroxide/0.png b/front/public/images/large/miscutils/itemCellHydroxide/0.png deleted file mode 100644 index a18b31f789..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellHypogen/0.png b/front/public/images/large/miscutils/itemCellHypogen/0.png deleted file mode 100644 index fd29a2bfde..0000000000 Binary files a/front/public/images/large/miscutils/itemCellHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellIncoloy020/0.png b/front/public/images/large/miscutils/itemCellIncoloy020/0.png deleted file mode 100644 index add8090b8b..0000000000 Binary files a/front/public/images/large/miscutils/itemCellIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellIncoloyDS/0.png b/front/public/images/large/miscutils/itemCellIncoloyDS/0.png deleted file mode 100644 index 77933f8fed..0000000000 Binary files a/front/public/images/large/miscutils/itemCellIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellIncoloyMA956/0.png b/front/public/images/large/miscutils/itemCellIncoloyMA956/0.png deleted file mode 100644 index 0cba31765c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellInconel625/0.png b/front/public/images/large/miscutils/itemCellInconel625/0.png deleted file mode 100644 index efbc93a545..0000000000 Binary files a/front/public/images/large/miscutils/itemCellInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellInconel690/0.png b/front/public/images/large/miscutils/itemCellInconel690/0.png deleted file mode 100644 index 1105530003..0000000000 Binary files a/front/public/images/large/miscutils/itemCellInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellInconel792/0.png b/front/public/images/large/miscutils/itemCellInconel792/0.png deleted file mode 100644 index d034076c04..0000000000 Binary files a/front/public/images/large/miscutils/itemCellInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellIndalloy140/0.png b/front/public/images/large/miscutils/itemCellIndalloy140/0.png deleted file mode 100644 index 84fd4d499e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellIodine/0.png b/front/public/images/large/miscutils/itemCellIodine/0.png deleted file mode 100644 index 7d204ed0bb..0000000000 Binary files a/front/public/images/large/miscutils/itemCellIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellKoboldite/0.png b/front/public/images/large/miscutils/itemCellKoboldite/0.png deleted file mode 100644 index 36a2755963..0000000000 Binary files a/front/public/images/large/miscutils/itemCellKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellKrypton/0.png b/front/public/images/large/miscutils/itemCellKrypton/0.png deleted file mode 100644 index 445273b1a3..0000000000 Binary files a/front/public/images/large/miscutils/itemCellKrypton/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLFTRFuel1/0.png b/front/public/images/large/miscutils/itemCellLFTRFuel1/0.png deleted file mode 100644 index 0dd618d0c5..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLFTRFuel2/0.png b/front/public/images/large/miscutils/itemCellLFTRFuel2/0.png deleted file mode 100644 index b2e383e3c4..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLFTRFuel3/0.png b/front/public/images/large/miscutils/itemCellLFTRFuel3/0.png deleted file mode 100644 index 6682a0627d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLFTRFuelBase/0.png b/front/public/images/large/miscutils/itemCellLFTRFuelBase/0.png deleted file mode 100644 index 5d23359e97..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLFTRFuelBase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLafiumCompound/0.png b/front/public/images/large/miscutils/itemCellLafiumCompound/0.png deleted file mode 100644 index 7b202cb79d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLaurenium/0.png b/front/public/images/large/miscutils/itemCellLaurenium/0.png deleted file mode 100644 index e19da2bc4c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLithiumFluoride/0.png b/front/public/images/large/miscutils/itemCellLithiumFluoride/0.png deleted file mode 100644 index 3df4041ee1..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellLithiumTetrafluoroberyllateLFTB/0.png b/front/public/images/large/miscutils/itemCellLithiumTetrafluoroberyllateLFTB/0.png deleted file mode 100644 index 0531e1238c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellLithiumTetrafluoroberyllateLFTB/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellMaragingSteel250/0.png b/front/public/images/large/miscutils/itemCellMaragingSteel250/0.png deleted file mode 100644 index 629fc90758..0000000000 Binary files a/front/public/images/large/miscutils/itemCellMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellMaragingSteel300/0.png b/front/public/images/large/miscutils/itemCellMaragingSteel300/0.png deleted file mode 100644 index bfbe1e9476..0000000000 Binary files a/front/public/images/large/miscutils/itemCellMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellMaragingSteel350/0.png b/front/public/images/large/miscutils/itemCellMaragingSteel350/0.png deleted file mode 100644 index 4e3cbf864b..0000000000 Binary files a/front/public/images/large/miscutils/itemCellMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellMutatedLivingSolder/0.png b/front/public/images/large/miscutils/itemCellMutatedLivingSolder/0.png deleted file mode 100644 index cb9d9ada20..0000000000 Binary files a/front/public/images/large/miscutils/itemCellMutatedLivingSolder/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellNaquadahFuel/0.png b/front/public/images/large/miscutils/itemCellNaquadahFuel/0.png deleted file mode 100644 index 06c78b8e5d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellNaquadriaFuel/0.png b/front/public/images/large/miscutils/itemCellNaquadriaFuel/0.png deleted file mode 100644 index 26196785a3..0000000000 Binary files a/front/public/images/large/miscutils/itemCellNaquadriaFuel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellNeon/0.png b/front/public/images/large/miscutils/itemCellNeon/0.png deleted file mode 100644 index 7eeee61b6f..0000000000 Binary files a/front/public/images/large/miscutils/itemCellNeon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellNeptunium/0.png b/front/public/images/large/miscutils/itemCellNeptunium/0.png deleted file mode 100644 index 21ef4b96f7..0000000000 Binary files a/front/public/images/large/miscutils/itemCellNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellNeptuniumHexafluoride/0.png b/front/public/images/large/miscutils/itemCellNeptuniumHexafluoride/0.png deleted file mode 100644 index 0663e1fb9a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemCellNiobiumCarbide/0.png deleted file mode 100644 index af05de4e09..0000000000 Binary files a/front/public/images/large/miscutils/itemCellNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellNitinol60/0.png b/front/public/images/large/miscutils/itemCellNitinol60/0.png deleted file mode 100644 index ca5bc738f6..0000000000 Binary files a/front/public/images/large/miscutils/itemCellNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellOctiron/0.png b/front/public/images/large/miscutils/itemCellOctiron/0.png deleted file mode 100644 index b84cd3c9c2..0000000000 Binary files a/front/public/images/large/miscutils/itemCellOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPhosphorousUraniumHexafluoridePUF6/0.png b/front/public/images/large/miscutils/itemCellPhosphorousUraniumHexafluoridePUF6/0.png deleted file mode 100644 index a416d62ea1..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPhosphorousUraniumHexafluoridePUF6/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPikyonium64B/0.png b/front/public/images/large/miscutils/itemCellPikyonium64B/0.png deleted file mode 100644 index 07c6cc86bc..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemCellPlasmaAdvancedNitinol/0.png deleted file mode 100644 index 2bf16d4556..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaAstralTitanium/0.png b/front/public/images/large/miscutils/itemCellPlasmaAstralTitanium/0.png deleted file mode 100644 index cf2aa9ab6b..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaBromine/0.png b/front/public/images/large/miscutils/itemCellPlasmaBromine/0.png deleted file mode 100644 index 02ed2de427..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaBromine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaCalifornium/0.png b/front/public/images/large/miscutils/itemCellPlasmaCalifornium/0.png deleted file mode 100644 index 5411a9767a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaCelestialTungsten/0.png b/front/public/images/large/miscutils/itemCellPlasmaCelestialTungsten/0.png deleted file mode 100644 index 7c62b1442c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaChromaticGlass/0.png b/front/public/images/large/miscutils/itemCellPlasmaChromaticGlass/0.png deleted file mode 100644 index 2b2976f20a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaCurium/0.png b/front/public/images/large/miscutils/itemCellPlasmaCurium/0.png deleted file mode 100644 index 613b3889a3..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaDragonblood/0.png b/front/public/images/large/miscutils/itemCellPlasmaDragonblood/0.png deleted file mode 100644 index 6084a0c93a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaFermium/0.png b/front/public/images/large/miscutils/itemCellPlasmaFermium/0.png deleted file mode 100644 index e3c6abfa1d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaForce/0.png b/front/public/images/large/miscutils/itemCellPlasmaForce/0.png deleted file mode 100644 index 6a8b48105c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaForce/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaGermanium/0.png b/front/public/images/large/miscutils/itemCellPlasmaGermanium/0.png deleted file mode 100644 index 500a1ad634..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaHafnium/0.png b/front/public/images/large/miscutils/itemCellPlasmaHafnium/0.png deleted file mode 100644 index 0315dd4c46..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaHypogen/0.png b/front/public/images/large/miscutils/itemCellPlasmaHypogen/0.png deleted file mode 100644 index 51f63d9f66..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaIodine/0.png b/front/public/images/large/miscutils/itemCellPlasmaIodine/0.png deleted file mode 100644 index 9e77ce0f1d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaKrypton/0.png b/front/public/images/large/miscutils/itemCellPlasmaKrypton/0.png deleted file mode 100644 index 7e98d7fff9..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaKrypton/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaNeon/0.png b/front/public/images/large/miscutils/itemCellPlasmaNeon/0.png deleted file mode 100644 index 3eaa904459..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaNeon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaNeptunium/0.png b/front/public/images/large/miscutils/itemCellPlasmaNeptunium/0.png deleted file mode 100644 index f0884eb7c5..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaPlutonium238/0.png b/front/public/images/large/miscutils/itemCellPlasmaPlutonium238/0.png deleted file mode 100644 index 09b3ccfd97..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaPolonium/0.png b/front/public/images/large/miscutils/itemCellPlasmaPolonium/0.png deleted file mode 100644 index 6db2f4fead..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaProtactinium/0.png b/front/public/images/large/miscutils/itemCellPlasmaProtactinium/0.png deleted file mode 100644 index 70c0f3682a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaRadium/0.png b/front/public/images/large/miscutils/itemCellPlasmaRadium/0.png deleted file mode 100644 index 6a5c700863..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaRhenium/0.png b/front/public/images/large/miscutils/itemCellPlasmaRhenium/0.png deleted file mode 100644 index d3da75a6d7..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaRhodium/0.png b/front/public/images/large/miscutils/itemCellPlasmaRhodium/0.png deleted file mode 100644 index e143b04f2e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaRhugnor/0.png b/front/public/images/large/miscutils/itemCellPlasmaRhugnor/0.png deleted file mode 100644 index f2eacdb837..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaRunite/0.png b/front/public/images/large/miscutils/itemCellPlasmaRunite/0.png deleted file mode 100644 index 2ecb570e10..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaRuthenium/0.png b/front/public/images/large/miscutils/itemCellPlasmaRuthenium/0.png deleted file mode 100644 index e143b04f2e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaSelenium/0.png b/front/public/images/large/miscutils/itemCellPlasmaSelenium/0.png deleted file mode 100644 index 569f9f1e87..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaTechnetium/0.png b/front/public/images/large/miscutils/itemCellPlasmaTechnetium/0.png deleted file mode 100644 index e143b04f2e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaTechnetium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaThallium/0.png b/front/public/images/large/miscutils/itemCellPlasmaThallium/0.png deleted file mode 100644 index 1dca5a3aac..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaThorium232/0.png b/front/public/images/large/miscutils/itemCellPlasmaThorium232/0.png deleted file mode 100644 index f09e722da5..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaUranium232/0.png b/front/public/images/large/miscutils/itemCellPlasmaUranium232/0.png deleted file mode 100644 index 9e490a7a40..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaUranium233/0.png b/front/public/images/large/miscutils/itemCellPlasmaUranium233/0.png deleted file mode 100644 index 71fa63ae25..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaXenon/0.png b/front/public/images/large/miscutils/itemCellPlasmaXenon/0.png deleted file mode 100644 index 522dc5a64a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaXenon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlasmaZirconium/0.png b/front/public/images/large/miscutils/itemCellPlasmaZirconium/0.png deleted file mode 100644 index d6c3caff6a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlasmaZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPlutonium238/0.png b/front/public/images/large/miscutils/itemCellPlutonium238/0.png deleted file mode 100644 index 5cd8b9570d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPolonium/0.png b/front/public/images/large/miscutils/itemCellPolonium/0.png deleted file mode 100644 index 08e274df6b..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellPotin/0.png b/front/public/images/large/miscutils/itemCellPotin/0.png deleted file mode 100644 index 195cd16018..0000000000 Binary files a/front/public/images/large/miscutils/itemCellPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellProtactinium/0.png b/front/public/images/large/miscutils/itemCellProtactinium/0.png deleted file mode 100644 index 382b4f90a8..0000000000 Binary files a/front/public/images/large/miscutils/itemCellProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellQuantum/0.png b/front/public/images/large/miscutils/itemCellQuantum/0.png deleted file mode 100644 index b3d141091e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellRadium/0.png b/front/public/images/large/miscutils/itemCellRadium/0.png deleted file mode 100644 index 216fbdc03b..0000000000 Binary files a/front/public/images/large/miscutils/itemCellRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellRhenium/0.png b/front/public/images/large/miscutils/itemCellRhenium/0.png deleted file mode 100644 index 8ebe178796..0000000000 Binary files a/front/public/images/large/miscutils/itemCellRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellRhodium/0.png b/front/public/images/large/miscutils/itemCellRhodium/0.png deleted file mode 100644 index f01eb4b531..0000000000 Binary files a/front/public/images/large/miscutils/itemCellRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellRhugnor/0.png b/front/public/images/large/miscutils/itemCellRhugnor/0.png deleted file mode 100644 index 83a648c4f4..0000000000 Binary files a/front/public/images/large/miscutils/itemCellRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellRunite/0.png b/front/public/images/large/miscutils/itemCellRunite/0.png deleted file mode 100644 index 3118aa9d79..0000000000 Binary files a/front/public/images/large/miscutils/itemCellRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellRuthenium/0.png b/front/public/images/large/miscutils/itemCellRuthenium/0.png deleted file mode 100644 index f01eb4b531..0000000000 Binary files a/front/public/images/large/miscutils/itemCellRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSeleniousAcid/0.png b/front/public/images/large/miscutils/itemCellSeleniousAcid/0.png deleted file mode 100644 index 1e5d855642..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSeleniousAcid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSelenium/0.png b/front/public/images/large/miscutils/itemCellSelenium/0.png deleted file mode 100644 index a4cb0f38b2..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSeleniumDioxide/0.png b/front/public/images/large/miscutils/itemCellSeleniumDioxide/0.png deleted file mode 100644 index fbdfdd17f2..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSeleniumDioxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSeleniumHexafluoride/0.png b/front/public/images/large/miscutils/itemCellSeleniumHexafluoride/0.png deleted file mode 100644 index ca6cbbc72f..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSiliconCarbide/0.png b/front/public/images/large/miscutils/itemCellSiliconCarbide/0.png deleted file mode 100644 index 3f2f47d704..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSodiumFluoride/0.png b/front/public/images/large/miscutils/itemCellSodiumFluoride/0.png deleted file mode 100644 index 5619162421..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSolarSaltCold/0.png b/front/public/images/large/miscutils/itemCellSolarSaltCold/0.png deleted file mode 100644 index 1cce9923c3..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSolarSaltCold/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSolarSaltHot/0.png b/front/public/images/large/miscutils/itemCellSolarSaltHot/0.png deleted file mode 100644 index 6310040b00..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSolarSaltHot/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellSolidAcidCatalystMixture/0.png b/front/public/images/large/miscutils/itemCellSolidAcidCatalystMixture/0.png deleted file mode 100644 index 9c5a48e3a5..0000000000 Binary files a/front/public/images/large/miscutils/itemCellSolidAcidCatalystMixture/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellStaballoy/0.png b/front/public/images/large/miscutils/itemCellStaballoy/0.png deleted file mode 100644 index bbb2c47707..0000000000 Binary files a/front/public/images/large/miscutils/itemCellStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellStableMoltenSaltBase/0.png b/front/public/images/large/miscutils/itemCellStableMoltenSaltBase/0.png deleted file mode 100644 index 0531e1238c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellStableMoltenSaltBase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellStellite/0.png b/front/public/images/large/miscutils/itemCellStellite/0.png deleted file mode 100644 index 12a8d3a253..0000000000 Binary files a/front/public/images/large/miscutils/itemCellStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTalonite/0.png b/front/public/images/large/miscutils/itemCellTalonite/0.png deleted file mode 100644 index aa83f3936a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTantalloy60/0.png b/front/public/images/large/miscutils/itemCellTantalloy60/0.png deleted file mode 100644 index a3079556cf..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTantalloy61/0.png b/front/public/images/large/miscutils/itemCellTantalloy61/0.png deleted file mode 100644 index c6606c10ce..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTantalumCarbide/0.png b/front/public/images/large/miscutils/itemCellTantalumCarbide/0.png deleted file mode 100644 index aa60b924b8..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTechnetium/0.png b/front/public/images/large/miscutils/itemCellTechnetium/0.png deleted file mode 100644 index f01eb4b531..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTechnetium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTechnetiumHexafluoride/0.png b/front/public/images/large/miscutils/itemCellTechnetiumHexafluoride/0.png deleted file mode 100644 index 7eecd3322d..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTeflon/0.png b/front/public/images/large/miscutils/itemCellTeflon/0.png deleted file mode 100644 index 9fbe9ae8cc..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTellurium/0.png b/front/public/images/large/miscutils/itemCellTellurium/0.png deleted file mode 100644 index 1f8f9dc75a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellThallium/0.png b/front/public/images/large/miscutils/itemCellThallium/0.png deleted file mode 100644 index 8655248786..0000000000 Binary files a/front/public/images/large/miscutils/itemCellThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellThorium/0.png b/front/public/images/large/miscutils/itemCellThorium/0.png deleted file mode 100644 index 49c2321a3c..0000000000 Binary files a/front/public/images/large/miscutils/itemCellThorium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellThorium232/0.png b/front/public/images/large/miscutils/itemCellThorium232/0.png deleted file mode 100644 index 1dddf016f5..0000000000 Binary files a/front/public/images/large/miscutils/itemCellThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellThoriumBerylliumDepletedMoltenSaltTBSalt/0.png b/front/public/images/large/miscutils/itemCellThoriumBerylliumDepletedMoltenSaltTBSalt/0.png deleted file mode 100644 index 9d4d8f9caf..0000000000 Binary files a/front/public/images/large/miscutils/itemCellThoriumBerylliumDepletedMoltenSaltTBSalt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellThoriumDepletedMoltenSaltTSalt/0.png b/front/public/images/large/miscutils/itemCellThoriumDepletedMoltenSaltTSalt/0.png deleted file mode 100644 index ede06ff8b1..0000000000 Binary files a/front/public/images/large/miscutils/itemCellThoriumDepletedMoltenSaltTSalt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellThoriumHexafluoride/0.png b/front/public/images/large/miscutils/itemCellThoriumHexafluoride/0.png deleted file mode 100644 index 38c929e877..0000000000 Binary files a/front/public/images/large/miscutils/itemCellThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellThoriumTetrafluoride/0.png b/front/public/images/large/miscutils/itemCellThoriumTetrafluoride/0.png deleted file mode 100644 index 1d293a678e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTitansteel/0.png b/front/public/images/large/miscutils/itemCellTitansteel/0.png deleted file mode 100644 index 4de966ca7a..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTrichloroaceticAcid/0.png b/front/public/images/large/miscutils/itemCellTrichloroaceticAcid/0.png deleted file mode 100644 index a456f375f9..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTrichloroaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemCellTriniumNaquadahAlloy/0.png deleted file mode 100644 index 3d16e34a7e..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemCellTriniumNaquadahCarbonite/0.png deleted file mode 100644 index d607cefeb1..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemCellTriniumTitaniumAlloy/0.png deleted file mode 100644 index dca1490641..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTumbaga/0.png b/front/public/images/large/miscutils/itemCellTumbaga/0.png deleted file mode 100644 index 41b54918d3..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemCellTungstenTitaniumCarbide/0.png deleted file mode 100644 index 7ddcce6063..0000000000 Binary files a/front/public/images/large/miscutils/itemCellTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellUranium232/0.png b/front/public/images/large/miscutils/itemCellUranium232/0.png deleted file mode 100644 index e41618a2ed..0000000000 Binary files a/front/public/images/large/miscutils/itemCellUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellUranium233/0.png b/front/public/images/large/miscutils/itemCellUranium233/0.png deleted file mode 100644 index afb396dbfd..0000000000 Binary files a/front/public/images/large/miscutils/itemCellUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellUraniumDepletedMoltenSaltUSalt/0.png b/front/public/images/large/miscutils/itemCellUraniumDepletedMoltenSaltUSalt/0.png deleted file mode 100644 index 8e78e3d05f..0000000000 Binary files a/front/public/images/large/miscutils/itemCellUraniumDepletedMoltenSaltUSalt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellUraniumHexafluoride/0.png b/front/public/images/large/miscutils/itemCellUraniumHexafluoride/0.png deleted file mode 100644 index 21163363b7..0000000000 Binary files a/front/public/images/large/miscutils/itemCellUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellUraniumTetrafluoride/0.png b/front/public/images/large/miscutils/itemCellUraniumTetrafluoride/0.png deleted file mode 100644 index 21163363b7..0000000000 Binary files a/front/public/images/large/miscutils/itemCellUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellWatertightSteel/0.png b/front/public/images/large/miscutils/itemCellWatertightSteel/0.png deleted file mode 100644 index 9ab1460893..0000000000 Binary files a/front/public/images/large/miscutils/itemCellWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellWhiteMetal/0.png b/front/public/images/large/miscutils/itemCellWhiteMetal/0.png deleted file mode 100644 index 404fd30268..0000000000 Binary files a/front/public/images/large/miscutils/itemCellWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellXenon/0.png b/front/public/images/large/miscutils/itemCellXenon/0.png deleted file mode 100644 index cfc2c0a367..0000000000 Binary files a/front/public/images/large/miscutils/itemCellXenon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellZeron100/0.png b/front/public/images/large/miscutils/itemCellZeron100/0.png deleted file mode 100644 index fd3d8d1b21..0000000000 Binary files a/front/public/images/large/miscutils/itemCellZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellZirconium/0.png b/front/public/images/large/miscutils/itemCellZirconium/0.png deleted file mode 100644 index e2686bf394..0000000000 Binary files a/front/public/images/large/miscutils/itemCellZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCellZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemCellZirconiumCarbide/0.png deleted file mode 100644 index 00571556c6..0000000000 Binary files a/front/public/images/large/miscutils/itemCellZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCircuitLFTR/0.png b/front/public/images/large/miscutils/itemCircuitLFTR/0.png deleted file mode 100644 index 8d4bb11ef2..0000000000 Binary files a/front/public/images/large/miscutils/itemCircuitLFTR/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCoalCoke/0.png b/front/public/images/large/miscutils/itemCoalCoke/0.png deleted file mode 100644 index 316ebf98dd..0000000000 Binary files a/front/public/images/large/miscutils/itemCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/0.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/0.png deleted file mode 100644 index 0ae78e89e1..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/1.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/1.png deleted file mode 100644 index 931e9ef4d7..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/10.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/10.png deleted file mode 100644 index d66b8d640b..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/11.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/11.png deleted file mode 100644 index 19cd7ded87..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/12.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/12.png deleted file mode 100644 index 3dce1f3dba..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/13.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/13.png deleted file mode 100644 index 6e2e2924fa..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/14.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/14.png deleted file mode 100644 index e2a01bc6bd..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/2.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/2.png deleted file mode 100644 index 01fc1618ba..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/3.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/3.png deleted file mode 100644 index 4d1954b1f1..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/4.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/4.png deleted file mode 100644 index 9acba25cf9..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/5.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/5.png deleted file mode 100644 index e42e66579f..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/6.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/6.png deleted file mode 100644 index 3c460891be..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/7.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/7.png deleted file mode 100644 index 7ddcb6db69..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/8.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/8.png deleted file mode 100644 index ceddfdfb86..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/9.png b/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/9.png deleted file mode 100644 index a26f021810..0000000000 Binary files a/front/public/images/large/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoil/0.png b/front/public/images/large/miscutils/itemDehydratorCoil/0.png deleted file mode 100644 index 5811a991f1..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoil/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoil/1.png b/front/public/images/large/miscutils/itemDehydratorCoil/1.png deleted file mode 100644 index a2048258ad..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoil/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoil/2.png b/front/public/images/large/miscutils/itemDehydratorCoil/2.png deleted file mode 100644 index d7bd2adcf0..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoil/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoil/3.png b/front/public/images/large/miscutils/itemDehydratorCoil/3.png deleted file mode 100644 index 4e8f76160e..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoil/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoilWire/0.png b/front/public/images/large/miscutils/itemDehydratorCoilWire/0.png deleted file mode 100644 index 2d7f2cf827..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoilWire/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoilWire/1.png b/front/public/images/large/miscutils/itemDehydratorCoilWire/1.png deleted file mode 100644 index 3b3847f564..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoilWire/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoilWire/2.png b/front/public/images/large/miscutils/itemDehydratorCoilWire/2.png deleted file mode 100644 index 0f8c36e88b..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoilWire/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDehydratorCoilWire/3.png b/front/public/images/large/miscutils/itemDehydratorCoilWire/3.png deleted file mode 100644 index 2ab1591cb8..0000000000 Binary files a/front/public/images/large/miscutils/itemDehydratorCoilWire/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemDustAbyssalAlloy/0.png deleted file mode 100644 index fff9b2c425..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemDustAdvancedNitinol/0.png deleted file mode 100644 index c16487978f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAgarditeCd/0.png b/front/public/images/large/miscutils/itemDustAgarditeCd/0.png deleted file mode 100644 index 01e33f2210..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAgarditeLa/0.png b/front/public/images/large/miscutils/itemDustAgarditeLa/0.png deleted file mode 100644 index dce4a1abed..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAgarditeNd/0.png b/front/public/images/large/miscutils/itemDustAgarditeNd/0.png deleted file mode 100644 index 23e037277e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAgarditeY/0.png b/front/public/images/large/miscutils/itemDustAgarditeY/0.png deleted file mode 100644 index a005b17049..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAlburnite/0.png b/front/public/images/large/miscutils/itemDustAlburnite/0.png deleted file mode 100644 index f49ced46c4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAmmoniumBifluoride/0.png b/front/public/images/large/miscutils/itemDustAmmoniumBifluoride/0.png deleted file mode 100644 index af27b3914f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAmmoniumNitrate/0.png b/front/public/images/large/miscutils/itemDustAmmoniumNitrate/0.png deleted file mode 100644 index 1405e08556..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAmmoniumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAncientGranite/0.png b/front/public/images/large/miscutils/itemDustAncientGranite/0.png deleted file mode 100644 index b5677b5626..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustArcanite/0.png b/front/public/images/large/miscutils/itemDustArcanite/0.png deleted file mode 100644 index d4616d546a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemDustArceusAlloy2B/0.png deleted file mode 100644 index 5d67d0a2f8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustAstralTitanium/0.png b/front/public/images/large/miscutils/itemDustAstralTitanium/0.png deleted file mode 100644 index 5bc0e6aa0b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBabbitAlloy/0.png b/front/public/images/large/miscutils/itemDustBabbitAlloy/0.png deleted file mode 100644 index cd838a5b44..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBariteRd/0.png b/front/public/images/large/miscutils/itemDustBariteRd/0.png deleted file mode 100644 index a77231475d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBerylliumFluoride/0.png b/front/public/images/large/miscutils/itemDustBerylliumFluoride/0.png deleted file mode 100644 index 3a43b753ee..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBerylliumHydroxide/0.png b/front/public/images/large/miscutils/itemDustBerylliumHydroxide/0.png deleted file mode 100644 index 1796604b1e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBlackMetal/0.png b/front/public/images/large/miscutils/itemDustBlackMetal/0.png deleted file mode 100644 index f0dcf8c8f0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBlackTitanium/0.png b/front/public/images/large/miscutils/itemDustBlackTitanium/0.png deleted file mode 100644 index 70101f5bf0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBloodSteel/0.png b/front/public/images/large/miscutils/itemDustBloodSteel/0.png deleted file mode 100644 index 64b049c673..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustBotmium/0.png b/front/public/images/large/miscutils/itemDustBotmium/0.png deleted file mode 100644 index cb0fa32752..0000000000 Binary files a/front/public/images/large/miscutils/itemDustBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCalciumCarbonate/0.png b/front/public/images/large/miscutils/itemDustCalciumCarbonate/0.png deleted file mode 100644 index e8570fa14f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCalciumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCalciumChloride/0.png b/front/public/images/large/miscutils/itemDustCalciumChloride/0.png deleted file mode 100644 index ff097df278..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCalciumChloride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCalciumHydroxide/0.png b/front/public/images/large/miscutils/itemDustCalciumHydroxide/0.png deleted file mode 100644 index e8570fa14f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCalciumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCalifornium/0.png b/front/public/images/large/miscutils/itemDustCalifornium/0.png deleted file mode 100644 index ef9bf69095..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCelestialTungsten/0.png b/front/public/images/large/miscutils/itemDustCelestialTungsten/0.png deleted file mode 100644 index 1fdda682f3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCerite/0.png b/front/public/images/large/miscutils/itemDustCerite/0.png deleted file mode 100644 index e84842d48d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustChromaticGlass/0.png b/front/public/images/large/miscutils/itemDustChromaticGlass/0.png deleted file mode 100644 index 0060ed78ac..0000000000 Binary files a/front/public/images/large/miscutils/itemDustChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCinobiteA243/0.png b/front/public/images/large/miscutils/itemDustCinobiteA243/0.png deleted file mode 100644 index 285022aaa8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustComancheite/0.png b/front/public/images/large/miscutils/itemDustComancheite/0.png deleted file mode 100644 index 545da45936..0000000000 Binary files a/front/public/images/large/miscutils/itemDustComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCookedZrCl4/0.png b/front/public/images/large/miscutils/itemDustCookedZrCl4/0.png deleted file mode 100644 index f0cc3a30b0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCookedZrCl4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCopperIISulfate/0.png b/front/public/images/large/miscutils/itemDustCopperIISulfate/0.png deleted file mode 100644 index 2848036a03..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCopperIISulfate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCopperIISulfatePentahydrate/0.png b/front/public/images/large/miscutils/itemDustCopperIISulfatePentahydrate/0.png deleted file mode 100644 index 303692429c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCopperIISulfatePentahydrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCrocoite/0.png b/front/public/images/large/miscutils/itemDustCrocoite/0.png deleted file mode 100644 index a3354ae5d2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCryoliteF/0.png b/front/public/images/large/miscutils/itemDustCryoliteF/0.png deleted file mode 100644 index c3bcccc666..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCurium/0.png b/front/public/images/large/miscutils/itemDustCurium/0.png deleted file mode 100644 index 593132df2e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustCyanoaceticAcid/0.png b/front/public/images/large/miscutils/itemDustCyanoaceticAcid/0.png deleted file mode 100644 index e6e40e01cf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustCyanoaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustDecayedRadium226/0.png b/front/public/images/large/miscutils/itemDustDecayedRadium226/0.png deleted file mode 100644 index d0c51e76bc..0000000000 Binary files a/front/public/images/large/miscutils/itemDustDecayedRadium226/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustDemicheleiteBr/0.png b/front/public/images/large/miscutils/itemDustDemicheleiteBr/0.png deleted file mode 100644 index 1c8ee7e343..0000000000 Binary files a/front/public/images/large/miscutils/itemDustDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustDirt/0.png b/front/public/images/large/miscutils/itemDustDirt/0.png deleted file mode 100644 index 656d6e85f5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustDirt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustDragonblood/0.png b/front/public/images/large/miscutils/itemDustDragonblood/0.png deleted file mode 100644 index fb9ace1bbf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustDysprosium/0.png b/front/public/images/large/miscutils/itemDustDysprosium/0.png deleted file mode 100644 index cd3f74c8d3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustEglinSteel/0.png b/front/public/images/large/miscutils/itemDustEglinSteel/0.png deleted file mode 100644 index ce10ab372e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustEglinSteelBaseCompound/0.png b/front/public/images/large/miscutils/itemDustEglinSteelBaseCompound/0.png deleted file mode 100644 index 78fa157abf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustEnergyCrystal/0.png b/front/public/images/large/miscutils/itemDustEnergyCrystal/0.png deleted file mode 100644 index bf18b5d548..0000000000 Binary files a/front/public/images/large/miscutils/itemDustEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustErbium/0.png b/front/public/images/large/miscutils/itemDustErbium/0.png deleted file mode 100644 index a39398e487..0000000000 Binary files a/front/public/images/large/miscutils/itemDustErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustFermium/0.png b/front/public/images/large/miscutils/itemDustFermium/0.png deleted file mode 100644 index e858e0ea7d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustFlorencite/0.png b/front/public/images/large/miscutils/itemDustFlorencite/0.png deleted file mode 100644 index 7045cd4f41..0000000000 Binary files a/front/public/images/large/miscutils/itemDustFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustFluorcaphite/0.png b/front/public/images/large/miscutils/itemDustFluorcaphite/0.png deleted file mode 100644 index d908ba0897..0000000000 Binary files a/front/public/images/large/miscutils/itemDustFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustFluoriteF/0.png b/front/public/images/large/miscutils/itemDustFluoriteF/0.png deleted file mode 100644 index 35460ce3e8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustFormaldehydeCatalyst/0.png b/front/public/images/large/miscutils/itemDustFormaldehydeCatalyst/0.png deleted file mode 100644 index 4098951054..0000000000 Binary files a/front/public/images/large/miscutils/itemDustFormaldehydeCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustGadoliniteCe/0.png b/front/public/images/large/miscutils/itemDustGadoliniteCe/0.png deleted file mode 100644 index cdbc9abae5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustGadoliniteY/0.png b/front/public/images/large/miscutils/itemDustGadoliniteY/0.png deleted file mode 100644 index cdbc9abae5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustGeikielite/0.png b/front/public/images/large/miscutils/itemDustGeikielite/0.png deleted file mode 100644 index 50a5c51dcb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustGermanium/0.png b/front/public/images/large/miscutils/itemDustGermanium/0.png deleted file mode 100644 index e72dd20e66..0000000000 Binary files a/front/public/images/large/miscutils/itemDustGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustGreenockite/0.png b/front/public/images/large/miscutils/itemDustGreenockite/0.png deleted file mode 100644 index facc725952..0000000000 Binary files a/front/public/images/large/miscutils/itemDustGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustGrisium/0.png b/front/public/images/large/miscutils/itemDustGrisium/0.png deleted file mode 100644 index 95e1ec4408..0000000000 Binary files a/front/public/images/large/miscutils/itemDustGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustGypsum/0.png b/front/public/images/large/miscutils/itemDustGypsum/0.png deleted file mode 100644 index e8570fa14f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustGypsum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHG1223/0.png b/front/public/images/large/miscutils/itemDustHG1223/0.png deleted file mode 100644 index 13e2545f04..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHS188A/0.png b/front/public/images/large/miscutils/itemDustHS188A/0.png deleted file mode 100644 index b16508bd48..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHafnium/0.png b/front/public/images/large/miscutils/itemDustHafnium/0.png deleted file mode 100644 index 2fe9d209de..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHastelloyC276/0.png b/front/public/images/large/miscutils/itemDustHastelloyC276/0.png deleted file mode 100644 index d2a28bfb55..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHastelloyN/0.png b/front/public/images/large/miscutils/itemDustHastelloyN/0.png deleted file mode 100644 index ba83448ffb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHastelloyW/0.png b/front/public/images/large/miscutils/itemDustHastelloyW/0.png deleted file mode 100644 index 6cba2e5775..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHastelloyX/0.png b/front/public/images/large/miscutils/itemDustHastelloyX/0.png deleted file mode 100644 index 037d45d171..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemDustHeLiCoPtEr/0.png deleted file mode 100644 index 26d9013604..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHibonite/0.png b/front/public/images/large/miscutils/itemDustHibonite/0.png deleted file mode 100644 index f7a88f1c03..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHoneaite/0.png b/front/public/images/large/miscutils/itemDustHoneaite/0.png deleted file mode 100644 index 71bec1e27a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustHypogen/0.png b/front/public/images/large/miscutils/itemDustHypogen/0.png deleted file mode 100644 index b20383f7c1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustIncoloy020/0.png b/front/public/images/large/miscutils/itemDustIncoloy020/0.png deleted file mode 100644 index 866582da40..0000000000 Binary files a/front/public/images/large/miscutils/itemDustIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustIncoloyDS/0.png b/front/public/images/large/miscutils/itemDustIncoloyDS/0.png deleted file mode 100644 index 348f7bcc64..0000000000 Binary files a/front/public/images/large/miscutils/itemDustIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustIncoloyMA956/0.png b/front/public/images/large/miscutils/itemDustIncoloyMA956/0.png deleted file mode 100644 index c2a77d8c3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustInconel625/0.png b/front/public/images/large/miscutils/itemDustInconel625/0.png deleted file mode 100644 index 8b0f185432..0000000000 Binary files a/front/public/images/large/miscutils/itemDustInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustInconel690/0.png b/front/public/images/large/miscutils/itemDustInconel690/0.png deleted file mode 100644 index 7498ba7c45..0000000000 Binary files a/front/public/images/large/miscutils/itemDustInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustInconel792/0.png b/front/public/images/large/miscutils/itemDustInconel792/0.png deleted file mode 100644 index a46251d903..0000000000 Binary files a/front/public/images/large/miscutils/itemDustInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustIndalloy140/0.png b/front/public/images/large/miscutils/itemDustIndalloy140/0.png deleted file mode 100644 index d167593d43..0000000000 Binary files a/front/public/images/large/miscutils/itemDustIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustInfusedAir/0.png b/front/public/images/large/miscutils/itemDustInfusedAir/0.png deleted file mode 100644 index b3a9541bef..0000000000 Binary files a/front/public/images/large/miscutils/itemDustInfusedAir/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustInfusedEarth/0.png b/front/public/images/large/miscutils/itemDustInfusedEarth/0.png deleted file mode 100644 index be2bac22e4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustInfusedEarth/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustInfusedFire/0.png b/front/public/images/large/miscutils/itemDustInfusedFire/0.png deleted file mode 100644 index 78c150dbda..0000000000 Binary files a/front/public/images/large/miscutils/itemDustInfusedFire/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustInfusedWater/0.png b/front/public/images/large/miscutils/itemDustInfusedWater/0.png deleted file mode 100644 index fb41eddb3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustInfusedWater/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustIodine/0.png b/front/public/images/large/miscutils/itemDustIodine/0.png deleted file mode 100644 index c7b3cff794..0000000000 Binary files a/front/public/images/large/miscutils/itemDustIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustIrarsite/0.png b/front/public/images/large/miscutils/itemDustIrarsite/0.png deleted file mode 100644 index 690a93ed28..0000000000 Binary files a/front/public/images/large/miscutils/itemDustIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustKashinite/0.png b/front/public/images/large/miscutils/itemDustKashinite/0.png deleted file mode 100644 index 82ebd8bbf1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustKoboldite/0.png b/front/public/images/large/miscutils/itemDustKoboldite/0.png deleted file mode 100644 index fc2c2c4a13..0000000000 Binary files a/front/public/images/large/miscutils/itemDustKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLFTRFuel1/0.png b/front/public/images/large/miscutils/itemDustLFTRFuel1/0.png deleted file mode 100644 index c4a93bcb15..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLFTRFuel2/0.png b/front/public/images/large/miscutils/itemDustLFTRFuel2/0.png deleted file mode 100644 index c55367099d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLFTRFuel3/0.png b/front/public/images/large/miscutils/itemDustLFTRFuel3/0.png deleted file mode 100644 index e4837ef303..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLafiumCompound/0.png b/front/public/images/large/miscutils/itemDustLafiumCompound/0.png deleted file mode 100644 index 3b002441ce..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLafossaite/0.png b/front/public/images/large/miscutils/itemDustLafossaite/0.png deleted file mode 100644 index c82999bd92..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLanthaniteCe/0.png b/front/public/images/large/miscutils/itemDustLanthaniteCe/0.png deleted file mode 100644 index ea142a6fef..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLanthaniteLa/0.png b/front/public/images/large/miscutils/itemDustLanthaniteLa/0.png deleted file mode 100644 index e68ed2ac71..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLanthaniteNd/0.png b/front/public/images/large/miscutils/itemDustLanthaniteNd/0.png deleted file mode 100644 index b7e97703cb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLaurenium/0.png b/front/public/images/large/miscutils/itemDustLaurenium/0.png deleted file mode 100644 index f52303e511..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLautarite/0.png b/front/public/images/large/miscutils/itemDustLautarite/0.png deleted file mode 100644 index a4699f1caf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLepersonnite/0.png b/front/public/images/large/miscutils/itemDustLepersonnite/0.png deleted file mode 100644 index 7281e6901e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLi2BeF4/0.png b/front/public/images/large/miscutils/itemDustLi2BeF4/0.png deleted file mode 100644 index e8570fa14f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLi2BeF4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLi2CO3CaOH2/0.png b/front/public/images/large/miscutils/itemDustLi2CO3CaOH2/0.png deleted file mode 100644 index e8570fa14f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLi2CO3CaOH2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLithium7/0.png b/front/public/images/large/miscutils/itemDustLithium7/0.png deleted file mode 100644 index 36d61c3952..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLithiumCarbonate/0.png b/front/public/images/large/miscutils/itemDustLithiumCarbonate/0.png deleted file mode 100644 index 96a0b787c9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLithiumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLithiumFluoride/0.png b/front/public/images/large/miscutils/itemDustLithiumFluoride/0.png deleted file mode 100644 index fd83ec6397..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLithiumHydroperoxide/0.png b/front/public/images/large/miscutils/itemDustLithiumHydroperoxide/0.png deleted file mode 100644 index bd6d966f77..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLithiumHydroperoxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLithiumHydroxide/0.png b/front/public/images/large/miscutils/itemDustLithiumHydroxide/0.png deleted file mode 100644 index 2fdff7d398..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLithiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustLithiumPeroxide/0.png b/front/public/images/large/miscutils/itemDustLithiumPeroxide/0.png deleted file mode 100644 index 2fdff7d398..0000000000 Binary files a/front/public/images/large/miscutils/itemDustLithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustManureByproducts/0.png b/front/public/images/large/miscutils/itemDustManureByproducts/0.png deleted file mode 100644 index e5fe27339b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustManureByproducts/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustMaragingSteel250/0.png b/front/public/images/large/miscutils/itemDustMaragingSteel250/0.png deleted file mode 100644 index 608c0ac5a3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustMaragingSteel300/0.png b/front/public/images/large/miscutils/itemDustMaragingSteel300/0.png deleted file mode 100644 index 776ce5015f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustMaragingSteel350/0.png b/front/public/images/large/miscutils/itemDustMaragingSteel350/0.png deleted file mode 100644 index b60eb9e172..0000000000 Binary files a/front/public/images/large/miscutils/itemDustMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustMiessiite/0.png b/front/public/images/large/miscutils/itemDustMiessiite/0.png deleted file mode 100644 index 2bf61fea21..0000000000 Binary files a/front/public/images/large/miscutils/itemDustMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustMixTumbaga/0.png b/front/public/images/large/miscutils/itemDustMixTumbaga/0.png deleted file mode 100644 index d000dbde8b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustMixTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustNeptunium/0.png b/front/public/images/large/miscutils/itemDustNeptunium/0.png deleted file mode 100644 index 9e8c9a45b2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustNeptuniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustNeptuniumHexafluoride/0.png deleted file mode 100644 index 5219d49783..0000000000 Binary files a/front/public/images/large/miscutils/itemDustNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustNichromite/0.png b/front/public/images/large/miscutils/itemDustNichromite/0.png deleted file mode 100644 index 63415350e7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemDustNiobiumCarbide/0.png deleted file mode 100644 index 7239bed11f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustNitinol60/0.png b/front/public/images/large/miscutils/itemDustNitinol60/0.png deleted file mode 100644 index 29be3b303b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustOctiron/0.png b/front/public/images/large/miscutils/itemDustOctiron/0.png deleted file mode 100644 index e21354b9f4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustOrganicFertilizer/0.png b/front/public/images/large/miscutils/itemDustOrganicFertilizer/0.png deleted file mode 100644 index 96a0b787c9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustOrganicFertilizer/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPerroudite/0.png b/front/public/images/large/miscutils/itemDustPerroudite/0.png deleted file mode 100644 index c88534682a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPhthalicAnhydride/0.png b/front/public/images/large/miscutils/itemDustPhthalicAnhydride/0.png deleted file mode 100644 index 6d28dba524..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPhthalicAnhydride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPikyonium64B/0.png b/front/public/images/large/miscutils/itemDustPikyonium64B/0.png deleted file mode 100644 index 2d0f1c1e6f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPlutonium238/0.png b/front/public/images/large/miscutils/itemDustPlutonium238/0.png deleted file mode 100644 index 2f40d50bf3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPolonium/0.png b/front/public/images/large/miscutils/itemDustPolonium/0.png deleted file mode 100644 index 6a8440384e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPolycrase/0.png b/front/public/images/large/miscutils/itemDustPolycrase/0.png deleted file mode 100644 index 32e08174d7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPotassiumNitrate/0.png b/front/public/images/large/miscutils/itemDustPotassiumNitrate/0.png deleted file mode 100644 index 90ff148327..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPotassiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPotin/0.png b/front/public/images/large/miscutils/itemDustPotin/0.png deleted file mode 100644 index 4bf3f8d788..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPraseodymium/0.png b/front/public/images/large/miscutils/itemDustPraseodymium/0.png deleted file mode 100644 index b03c8965e8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustPromethium/0.png b/front/public/images/large/miscutils/itemDustPromethium/0.png deleted file mode 100644 index 8168c91589..0000000000 Binary files a/front/public/images/large/miscutils/itemDustPromethium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustProtactinium/0.png b/front/public/images/large/miscutils/itemDustProtactinium/0.png deleted file mode 100644 index 5e91dbda46..0000000000 Binary files a/front/public/images/large/miscutils/itemDustProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustQuantum/0.png b/front/public/images/large/miscutils/itemDustQuantum/0.png deleted file mode 100644 index 94864b52fd..0000000000 Binary files a/front/public/images/large/miscutils/itemDustQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/itemDustRadioactiveMineralMix/0.png deleted file mode 100644 index 705b069d4e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustRadium/0.png b/front/public/images/large/miscutils/itemDustRadium/0.png deleted file mode 100644 index e44f9bf04e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustRhenium/0.png b/front/public/images/large/miscutils/itemDustRhenium/0.png deleted file mode 100644 index 74413de175..0000000000 Binary files a/front/public/images/large/miscutils/itemDustRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustRhodium/0.png b/front/public/images/large/miscutils/itemDustRhodium/0.png deleted file mode 100644 index af3445d80e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustRhugnor/0.png b/front/public/images/large/miscutils/itemDustRhugnor/0.png deleted file mode 100644 index 1841e67dcf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustRunite/0.png b/front/public/images/large/miscutils/itemDustRunite/0.png deleted file mode 100644 index aaaf092c94..0000000000 Binary files a/front/public/images/large/miscutils/itemDustRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustRuthenium/0.png b/front/public/images/large/miscutils/itemDustRuthenium/0.png deleted file mode 100644 index af3445d80e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSamarskiteY/0.png b/front/public/images/large/miscutils/itemDustSamarskiteY/0.png deleted file mode 100644 index de09e47838..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSamarskiteYb/0.png b/front/public/images/large/miscutils/itemDustSamarskiteYb/0.png deleted file mode 100644 index 81e48a86da..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSelenium/0.png b/front/public/images/large/miscutils/itemDustSelenium/0.png deleted file mode 100644 index 44d27ea8b9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSeleniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustSeleniumHexafluoride/0.png deleted file mode 100644 index bb35e85d52..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSiliconCarbide/0.png b/front/public/images/large/miscutils/itemDustSiliconCarbide/0.png deleted file mode 100644 index 1a6533d423..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemDustSmallAbyssalAlloy/0.png deleted file mode 100644 index aaf685cb70..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemDustSmallAdvancedNitinol/0.png deleted file mode 100644 index 06dcea28a6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAgarditeCd/0.png b/front/public/images/large/miscutils/itemDustSmallAgarditeCd/0.png deleted file mode 100644 index acdd8d73e3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAgarditeLa/0.png b/front/public/images/large/miscutils/itemDustSmallAgarditeLa/0.png deleted file mode 100644 index 09cd82cb92..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAgarditeNd/0.png b/front/public/images/large/miscutils/itemDustSmallAgarditeNd/0.png deleted file mode 100644 index a8b0b601e5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAgarditeY/0.png b/front/public/images/large/miscutils/itemDustSmallAgarditeY/0.png deleted file mode 100644 index 9e6469f34f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAlburnite/0.png b/front/public/images/large/miscutils/itemDustSmallAlburnite/0.png deleted file mode 100644 index bfa0f4193f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAmmoniumBifluoride/0.png b/front/public/images/large/miscutils/itemDustSmallAmmoniumBifluoride/0.png deleted file mode 100644 index f8fb680a43..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAmmoniumNitrate/0.png b/front/public/images/large/miscutils/itemDustSmallAmmoniumNitrate/0.png deleted file mode 100644 index c5a5e0571b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAmmoniumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAncientGranite/0.png b/front/public/images/large/miscutils/itemDustSmallAncientGranite/0.png deleted file mode 100644 index 19adb3df6f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallArcanite/0.png b/front/public/images/large/miscutils/itemDustSmallArcanite/0.png deleted file mode 100644 index 7e6fb21451..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemDustSmallArceusAlloy2B/0.png deleted file mode 100644 index bc30f1e4c3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallAstralTitanium/0.png b/front/public/images/large/miscutils/itemDustSmallAstralTitanium/0.png deleted file mode 100644 index 34ba33d5e6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBabbitAlloy/0.png b/front/public/images/large/miscutils/itemDustSmallBabbitAlloy/0.png deleted file mode 100644 index b63dd47b61..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBariteRd/0.png b/front/public/images/large/miscutils/itemDustSmallBariteRd/0.png deleted file mode 100644 index 0803ba38ea..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBerylliumFluoride/0.png b/front/public/images/large/miscutils/itemDustSmallBerylliumFluoride/0.png deleted file mode 100644 index 14ddc5a865..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBerylliumHydroxide/0.png b/front/public/images/large/miscutils/itemDustSmallBerylliumHydroxide/0.png deleted file mode 100644 index 3300e86cf3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBlackMetal/0.png b/front/public/images/large/miscutils/itemDustSmallBlackMetal/0.png deleted file mode 100644 index b72a5cd758..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBlackTitanium/0.png b/front/public/images/large/miscutils/itemDustSmallBlackTitanium/0.png deleted file mode 100644 index 6c89f866c2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBloodSteel/0.png b/front/public/images/large/miscutils/itemDustSmallBloodSteel/0.png deleted file mode 100644 index 012fb7d129..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallBotmium/0.png b/front/public/images/large/miscutils/itemDustSmallBotmium/0.png deleted file mode 100644 index e9136ccad8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCalciumCarbonate/0.png b/front/public/images/large/miscutils/itemDustSmallCalciumCarbonate/0.png deleted file mode 100644 index 3faeefdf3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCalciumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCalciumChloride/0.png b/front/public/images/large/miscutils/itemDustSmallCalciumChloride/0.png deleted file mode 100644 index 43c682ea44..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCalciumChloride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCalciumHydroxide/0.png b/front/public/images/large/miscutils/itemDustSmallCalciumHydroxide/0.png deleted file mode 100644 index 3faeefdf3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCalciumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCalifornium/0.png b/front/public/images/large/miscutils/itemDustSmallCalifornium/0.png deleted file mode 100644 index 9a62dc702c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCelestialTungsten/0.png b/front/public/images/large/miscutils/itemDustSmallCelestialTungsten/0.png deleted file mode 100644 index d41835a022..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCerite/0.png b/front/public/images/large/miscutils/itemDustSmallCerite/0.png deleted file mode 100644 index 58ca48bcc9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallChromaticGlass/0.png b/front/public/images/large/miscutils/itemDustSmallChromaticGlass/0.png deleted file mode 100644 index 0cbdc8e7e1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCinobiteA243/0.png b/front/public/images/large/miscutils/itemDustSmallCinobiteA243/0.png deleted file mode 100644 index c96cd0ae30..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallComancheite/0.png b/front/public/images/large/miscutils/itemDustSmallComancheite/0.png deleted file mode 100644 index 7f7b7aa645..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCookedZrCl4/0.png b/front/public/images/large/miscutils/itemDustSmallCookedZrCl4/0.png deleted file mode 100644 index fcc3959ae4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCookedZrCl4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCopperIISulfate/0.png b/front/public/images/large/miscutils/itemDustSmallCopperIISulfate/0.png deleted file mode 100644 index 5401b4f925..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCopperIISulfate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCopperIISulfatePentahydrate/0.png b/front/public/images/large/miscutils/itemDustSmallCopperIISulfatePentahydrate/0.png deleted file mode 100644 index 95d27e5818..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCopperIISulfatePentahydrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCrocoite/0.png b/front/public/images/large/miscutils/itemDustSmallCrocoite/0.png deleted file mode 100644 index d5ec040909..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCryoliteF/0.png b/front/public/images/large/miscutils/itemDustSmallCryoliteF/0.png deleted file mode 100644 index 2f1e6b0a51..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCurium/0.png b/front/public/images/large/miscutils/itemDustSmallCurium/0.png deleted file mode 100644 index 6162679cf9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallCyanoaceticAcid/0.png b/front/public/images/large/miscutils/itemDustSmallCyanoaceticAcid/0.png deleted file mode 100644 index bac8e5d5eb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallCyanoaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallDecayedRadium226/0.png b/front/public/images/large/miscutils/itemDustSmallDecayedRadium226/0.png deleted file mode 100644 index 8346b66f36..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallDecayedRadium226/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallDemicheleiteBr/0.png b/front/public/images/large/miscutils/itemDustSmallDemicheleiteBr/0.png deleted file mode 100644 index 6e4786aa83..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallDirt/0.png b/front/public/images/large/miscutils/itemDustSmallDirt/0.png deleted file mode 100644 index 3fbe834186..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallDirt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallDragonblood/0.png b/front/public/images/large/miscutils/itemDustSmallDragonblood/0.png deleted file mode 100644 index bb532e52e7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallDysprosium/0.png b/front/public/images/large/miscutils/itemDustSmallDysprosium/0.png deleted file mode 100644 index fcc3959ae4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallEglinSteel/0.png b/front/public/images/large/miscutils/itemDustSmallEglinSteel/0.png deleted file mode 100644 index a6933c3c00..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallEglinSteelBaseCompound/0.png b/front/public/images/large/miscutils/itemDustSmallEglinSteelBaseCompound/0.png deleted file mode 100644 index 7263f236fe..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallEnergyCrystal/0.png b/front/public/images/large/miscutils/itemDustSmallEnergyCrystal/0.png deleted file mode 100644 index a5dc097dbe..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallErbium/0.png b/front/public/images/large/miscutils/itemDustSmallErbium/0.png deleted file mode 100644 index 910785c803..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallFermium/0.png b/front/public/images/large/miscutils/itemDustSmallFermium/0.png deleted file mode 100644 index 10b159b206..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallFlorencite/0.png b/front/public/images/large/miscutils/itemDustSmallFlorencite/0.png deleted file mode 100644 index 4708edc679..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallFluorcaphite/0.png b/front/public/images/large/miscutils/itemDustSmallFluorcaphite/0.png deleted file mode 100644 index 8d5276ea55..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallFluoriteF/0.png b/front/public/images/large/miscutils/itemDustSmallFluoriteF/0.png deleted file mode 100644 index 85b180c001..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallFormaldehydeCatalyst/0.png b/front/public/images/large/miscutils/itemDustSmallFormaldehydeCatalyst/0.png deleted file mode 100644 index 367060fddd..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallFormaldehydeCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallGadoliniteCe/0.png b/front/public/images/large/miscutils/itemDustSmallGadoliniteCe/0.png deleted file mode 100644 index e299ed37c3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallGadoliniteY/0.png b/front/public/images/large/miscutils/itemDustSmallGadoliniteY/0.png deleted file mode 100644 index e299ed37c3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallGeikielite/0.png b/front/public/images/large/miscutils/itemDustSmallGeikielite/0.png deleted file mode 100644 index 181dbc530d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallGermanium/0.png b/front/public/images/large/miscutils/itemDustSmallGermanium/0.png deleted file mode 100644 index 5401b4f925..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallGreenockite/0.png b/front/public/images/large/miscutils/itemDustSmallGreenockite/0.png deleted file mode 100644 index ec65909091..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallGrisium/0.png b/front/public/images/large/miscutils/itemDustSmallGrisium/0.png deleted file mode 100644 index 8a08933f77..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallGypsum/0.png b/front/public/images/large/miscutils/itemDustSmallGypsum/0.png deleted file mode 100644 index 3faeefdf3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallGypsum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHG1223/0.png b/front/public/images/large/miscutils/itemDustSmallHG1223/0.png deleted file mode 100644 index 6f2faa9371..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHS188A/0.png b/front/public/images/large/miscutils/itemDustSmallHS188A/0.png deleted file mode 100644 index 0f6697092d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHafnium/0.png b/front/public/images/large/miscutils/itemDustSmallHafnium/0.png deleted file mode 100644 index 734b17526c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHastelloyC276/0.png b/front/public/images/large/miscutils/itemDustSmallHastelloyC276/0.png deleted file mode 100644 index 33bfd699d6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHastelloyN/0.png b/front/public/images/large/miscutils/itemDustSmallHastelloyN/0.png deleted file mode 100644 index b2eb24d91e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHastelloyW/0.png b/front/public/images/large/miscutils/itemDustSmallHastelloyW/0.png deleted file mode 100644 index 4efda2331f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHastelloyX/0.png b/front/public/images/large/miscutils/itemDustSmallHastelloyX/0.png deleted file mode 100644 index 1f61aa8ad1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemDustSmallHeLiCoPtEr/0.png deleted file mode 100644 index 002b13588e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHibonite/0.png b/front/public/images/large/miscutils/itemDustSmallHibonite/0.png deleted file mode 100644 index c1e3cbe30b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHoneaite/0.png b/front/public/images/large/miscutils/itemDustSmallHoneaite/0.png deleted file mode 100644 index 2c29e93bff..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallHypogen/0.png b/front/public/images/large/miscutils/itemDustSmallHypogen/0.png deleted file mode 100644 index e4945183bf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallIncoloy020/0.png b/front/public/images/large/miscutils/itemDustSmallIncoloy020/0.png deleted file mode 100644 index 0ea6be5646..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallIncoloyDS/0.png b/front/public/images/large/miscutils/itemDustSmallIncoloyDS/0.png deleted file mode 100644 index be96da647e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallIncoloyMA956/0.png b/front/public/images/large/miscutils/itemDustSmallIncoloyMA956/0.png deleted file mode 100644 index af22f22c26..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallInconel625/0.png b/front/public/images/large/miscutils/itemDustSmallInconel625/0.png deleted file mode 100644 index de903bbfdd..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallInconel690/0.png b/front/public/images/large/miscutils/itemDustSmallInconel690/0.png deleted file mode 100644 index b744d4cd3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallInconel792/0.png b/front/public/images/large/miscutils/itemDustSmallInconel792/0.png deleted file mode 100644 index b21049e956..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallIndalloy140/0.png b/front/public/images/large/miscutils/itemDustSmallIndalloy140/0.png deleted file mode 100644 index ffab1db677..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallIodine/0.png b/front/public/images/large/miscutils/itemDustSmallIodine/0.png deleted file mode 100644 index b7436e5fa3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallIrarsite/0.png b/front/public/images/large/miscutils/itemDustSmallIrarsite/0.png deleted file mode 100644 index fb01add740..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallKashinite/0.png b/front/public/images/large/miscutils/itemDustSmallKashinite/0.png deleted file mode 100644 index 86c0ac12df..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallKoboldite/0.png b/front/public/images/large/miscutils/itemDustSmallKoboldite/0.png deleted file mode 100644 index a36c4f09b7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLFTRFuel1/0.png b/front/public/images/large/miscutils/itemDustSmallLFTRFuel1/0.png deleted file mode 100644 index e14b557997..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLFTRFuel2/0.png b/front/public/images/large/miscutils/itemDustSmallLFTRFuel2/0.png deleted file mode 100644 index 4afe513a23..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLFTRFuel3/0.png b/front/public/images/large/miscutils/itemDustSmallLFTRFuel3/0.png deleted file mode 100644 index 3901b57cf7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLafiumCompound/0.png b/front/public/images/large/miscutils/itemDustSmallLafiumCompound/0.png deleted file mode 100644 index 7227cc8631..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLafossaite/0.png b/front/public/images/large/miscutils/itemDustSmallLafossaite/0.png deleted file mode 100644 index ee79ffcd83..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLanthaniteCe/0.png b/front/public/images/large/miscutils/itemDustSmallLanthaniteCe/0.png deleted file mode 100644 index dc5c5681a4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLanthaniteLa/0.png b/front/public/images/large/miscutils/itemDustSmallLanthaniteLa/0.png deleted file mode 100644 index 25ae33cf83..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLanthaniteNd/0.png b/front/public/images/large/miscutils/itemDustSmallLanthaniteNd/0.png deleted file mode 100644 index 8300abdaf2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLaurenium/0.png b/front/public/images/large/miscutils/itemDustSmallLaurenium/0.png deleted file mode 100644 index fb07a23b2d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLautarite/0.png b/front/public/images/large/miscutils/itemDustSmallLautarite/0.png deleted file mode 100644 index de3c211301..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLepersonnite/0.png b/front/public/images/large/miscutils/itemDustSmallLepersonnite/0.png deleted file mode 100644 index c775c1471f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLi2BeF4/0.png b/front/public/images/large/miscutils/itemDustSmallLi2BeF4/0.png deleted file mode 100644 index 3faeefdf3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLi2BeF4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLi2CO3CaOH2/0.png b/front/public/images/large/miscutils/itemDustSmallLi2CO3CaOH2/0.png deleted file mode 100644 index 3faeefdf3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLi2CO3CaOH2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLithium7/0.png b/front/public/images/large/miscutils/itemDustSmallLithium7/0.png deleted file mode 100644 index 507ad21c0c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLithiumCarbonate/0.png b/front/public/images/large/miscutils/itemDustSmallLithiumCarbonate/0.png deleted file mode 100644 index 7199c17bd3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLithiumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLithiumFluoride/0.png b/front/public/images/large/miscutils/itemDustSmallLithiumFluoride/0.png deleted file mode 100644 index 7ff49f69fe..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLithiumHydroperoxide/0.png b/front/public/images/large/miscutils/itemDustSmallLithiumHydroperoxide/0.png deleted file mode 100644 index 2f75b62d0e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLithiumHydroperoxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLithiumHydroxide/0.png b/front/public/images/large/miscutils/itemDustSmallLithiumHydroxide/0.png deleted file mode 100644 index 9414cfb215..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLithiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallLithiumPeroxide/0.png b/front/public/images/large/miscutils/itemDustSmallLithiumPeroxide/0.png deleted file mode 100644 index 9414cfb215..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallLithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallManureByproducts/0.png b/front/public/images/large/miscutils/itemDustSmallManureByproducts/0.png deleted file mode 100644 index 168d523320..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallManureByproducts/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallMaragingSteel250/0.png b/front/public/images/large/miscutils/itemDustSmallMaragingSteel250/0.png deleted file mode 100644 index 54077421b6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallMaragingSteel300/0.png b/front/public/images/large/miscutils/itemDustSmallMaragingSteel300/0.png deleted file mode 100644 index a03f1fcd5c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallMaragingSteel350/0.png b/front/public/images/large/miscutils/itemDustSmallMaragingSteel350/0.png deleted file mode 100644 index 64eede49e6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallMiessiite/0.png b/front/public/images/large/miscutils/itemDustSmallMiessiite/0.png deleted file mode 100644 index f63d095b13..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallMixTumbaga/0.png b/front/public/images/large/miscutils/itemDustSmallMixTumbaga/0.png deleted file mode 100644 index ef01d1c230..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallMixTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallNeptunium/0.png b/front/public/images/large/miscutils/itemDustSmallNeptunium/0.png deleted file mode 100644 index 780183cf7f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallNeptuniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallNeptuniumHexafluoride/0.png deleted file mode 100644 index 695171a6a9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallNichromite/0.png b/front/public/images/large/miscutils/itemDustSmallNichromite/0.png deleted file mode 100644 index d1487f47b6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemDustSmallNiobiumCarbide/0.png deleted file mode 100644 index 0825ac32a6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallNitinol60/0.png b/front/public/images/large/miscutils/itemDustSmallNitinol60/0.png deleted file mode 100644 index 26d2121ac9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallOctiron/0.png b/front/public/images/large/miscutils/itemDustSmallOctiron/0.png deleted file mode 100644 index f26d47be87..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallOrganicFertilizer/0.png b/front/public/images/large/miscutils/itemDustSmallOrganicFertilizer/0.png deleted file mode 100644 index 7199c17bd3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallOrganicFertilizer/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPerroudite/0.png b/front/public/images/large/miscutils/itemDustSmallPerroudite/0.png deleted file mode 100644 index 461c315dd7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPhthalicAnhydride/0.png b/front/public/images/large/miscutils/itemDustSmallPhthalicAnhydride/0.png deleted file mode 100644 index 6e4c38bffb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPhthalicAnhydride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPikyonium64B/0.png b/front/public/images/large/miscutils/itemDustSmallPikyonium64B/0.png deleted file mode 100644 index 11ae43bcd8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPlutonium238/0.png b/front/public/images/large/miscutils/itemDustSmallPlutonium238/0.png deleted file mode 100644 index 5b9fcb55c5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPolonium/0.png b/front/public/images/large/miscutils/itemDustSmallPolonium/0.png deleted file mode 100644 index 4aa2226a56..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPolycrase/0.png b/front/public/images/large/miscutils/itemDustSmallPolycrase/0.png deleted file mode 100644 index c1e6c71b80..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPotassiumNitrate/0.png b/front/public/images/large/miscutils/itemDustSmallPotassiumNitrate/0.png deleted file mode 100644 index 9c968c9eee..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPotassiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPotin/0.png b/front/public/images/large/miscutils/itemDustSmallPotin/0.png deleted file mode 100644 index 855510dfb7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPraseodymium/0.png b/front/public/images/large/miscutils/itemDustSmallPraseodymium/0.png deleted file mode 100644 index 39ca85051c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallPromethium/0.png b/front/public/images/large/miscutils/itemDustSmallPromethium/0.png deleted file mode 100644 index 5e0d5e68a9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallPromethium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallProtactinium/0.png b/front/public/images/large/miscutils/itemDustSmallProtactinium/0.png deleted file mode 100644 index e2b42d8af9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallQuantum/0.png b/front/public/images/large/miscutils/itemDustSmallQuantum/0.png deleted file mode 100644 index 8f764966fc..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/itemDustSmallRadioactiveMineralMix/0.png deleted file mode 100644 index cfa574274a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallRadium/0.png b/front/public/images/large/miscutils/itemDustSmallRadium/0.png deleted file mode 100644 index a04af222a6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallRhenium/0.png b/front/public/images/large/miscutils/itemDustSmallRhenium/0.png deleted file mode 100644 index 4089558d31..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallRhodium/0.png b/front/public/images/large/miscutils/itemDustSmallRhodium/0.png deleted file mode 100644 index 3f35bf6f78..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallRhugnor/0.png b/front/public/images/large/miscutils/itemDustSmallRhugnor/0.png deleted file mode 100644 index 930173ef73..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallRunite/0.png b/front/public/images/large/miscutils/itemDustSmallRunite/0.png deleted file mode 100644 index 599a0505f6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallRuthenium/0.png b/front/public/images/large/miscutils/itemDustSmallRuthenium/0.png deleted file mode 100644 index 3f35bf6f78..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSamarskiteY/0.png b/front/public/images/large/miscutils/itemDustSmallSamarskiteY/0.png deleted file mode 100644 index 7581e085b1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSamarskiteYb/0.png b/front/public/images/large/miscutils/itemDustSmallSamarskiteYb/0.png deleted file mode 100644 index b3d838fa3e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSelenium/0.png b/front/public/images/large/miscutils/itemDustSmallSelenium/0.png deleted file mode 100644 index aeea19d471..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSeleniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallSeleniumHexafluoride/0.png deleted file mode 100644 index 8847fecc8b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSiliconCarbide/0.png b/front/public/images/large/miscutils/itemDustSmallSiliconCarbide/0.png deleted file mode 100644 index a70ec4cc2e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSodiumCyanide/0.png b/front/public/images/large/miscutils/itemDustSmallSodiumCyanide/0.png deleted file mode 100644 index 43c682ea44..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSodiumCyanide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSodiumFluoride/0.png b/front/public/images/large/miscutils/itemDustSmallSodiumFluoride/0.png deleted file mode 100644 index be514497e7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallSodiumNitrate/0.png b/front/public/images/large/miscutils/itemDustSmallSodiumNitrate/0.png deleted file mode 100644 index 4af2e58ffe..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallSodiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallStaballoy/0.png b/front/public/images/large/miscutils/itemDustSmallStaballoy/0.png deleted file mode 100644 index 5e8709d824..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallStellite/0.png b/front/public/images/large/miscutils/itemDustSmallStellite/0.png deleted file mode 100644 index dd4bc895d3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallStrontium/0.png b/front/public/images/large/miscutils/itemDustSmallStrontium/0.png deleted file mode 100644 index 4f0cf35612..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallStrontiumHydroxide/0.png b/front/public/images/large/miscutils/itemDustSmallStrontiumHydroxide/0.png deleted file mode 100644 index 1a61ed0a85..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallStrontiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallStrontiumOxide/0.png b/front/public/images/large/miscutils/itemDustSmallStrontiumOxide/0.png deleted file mode 100644 index 650f6d59b9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallStrontiumOxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTalonite/0.png b/front/public/images/large/miscutils/itemDustSmallTalonite/0.png deleted file mode 100644 index 2afd1d3ae0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTantalloy60/0.png b/front/public/images/large/miscutils/itemDustSmallTantalloy60/0.png deleted file mode 100644 index ebe07b67c3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTantalloy61/0.png b/front/public/images/large/miscutils/itemDustSmallTantalloy61/0.png deleted file mode 100644 index 9fdc783293..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTantalumCarbide/0.png b/front/public/images/large/miscutils/itemDustSmallTantalumCarbide/0.png deleted file mode 100644 index 784dfdc278..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTechnetiumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallTechnetiumHexafluoride/0.png deleted file mode 100644 index a74db07261..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTeflon/0.png b/front/public/images/large/miscutils/itemDustSmallTeflon/0.png deleted file mode 100644 index fdd5517e64..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTellurium/0.png b/front/public/images/large/miscutils/itemDustSmallTellurium/0.png deleted file mode 100644 index 9cf6477b19..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallThallium/0.png b/front/public/images/large/miscutils/itemDustSmallThallium/0.png deleted file mode 100644 index 6e4c38bffb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallThorium232/0.png b/front/public/images/large/miscutils/itemDustSmallThorium232/0.png deleted file mode 100644 index 6a76c1d12d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallThoriumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallThoriumHexafluoride/0.png deleted file mode 100644 index f898c53fa1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallThoriumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallThoriumTetrafluoride/0.png deleted file mode 100644 index ff628f6c56..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTitanite/0.png b/front/public/images/large/miscutils/itemDustSmallTitanite/0.png deleted file mode 100644 index 7449ee0101..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTitansteel/0.png b/front/public/images/large/miscutils/itemDustSmallTitansteel/0.png deleted file mode 100644 index 5795a6d5c2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemDustSmallTriniumNaquadahAlloy/0.png deleted file mode 100644 index 2b8148fe30..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemDustSmallTriniumNaquadahCarbonite/0.png deleted file mode 100644 index adc6379cae..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemDustSmallTriniumTitaniumAlloy/0.png deleted file mode 100644 index dcb9267b43..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTumbaga/0.png b/front/public/images/large/miscutils/itemDustSmallTumbaga/0.png deleted file mode 100644 index d6bac954a9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemDustSmallTungstenTitaniumCarbide/0.png deleted file mode 100644 index e2055304f3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallUN18Fertiliser/0.png b/front/public/images/large/miscutils/itemDustSmallUN18Fertiliser/0.png deleted file mode 100644 index d01d966a8f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallUN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallUN32Fertiliser/0.png b/front/public/images/large/miscutils/itemDustSmallUN32Fertiliser/0.png deleted file mode 100644 index 0f70ae471a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallUN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallUranium232/0.png b/front/public/images/large/miscutils/itemDustSmallUranium232/0.png deleted file mode 100644 index 110d733f87..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallUranium233/0.png b/front/public/images/large/miscutils/itemDustSmallUranium233/0.png deleted file mode 100644 index b4809e075c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallUraniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallUraniumHexafluoride/0.png deleted file mode 100644 index 8d5372ae58..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallUraniumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallUraniumTetrafluoride/0.png deleted file mode 100644 index 8d5372ae58..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallWatertightSteel/0.png b/front/public/images/large/miscutils/itemDustSmallWatertightSteel/0.png deleted file mode 100644 index fd06819c43..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallWhiteMetal/0.png b/front/public/images/large/miscutils/itemDustSmallWhiteMetal/0.png deleted file mode 100644 index 44beb4cf48..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallWood'sGlass/0.png b/front/public/images/large/miscutils/itemDustSmallWood'sGlass/0.png deleted file mode 100644 index a85c86e7ad..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallWood'sGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallXenotime/0.png b/front/public/images/large/miscutils/itemDustSmallXenotime/0.png deleted file mode 100644 index fd10f1089c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallYttriaite/0.png b/front/public/images/large/miscutils/itemDustSmallYttriaite/0.png deleted file mode 100644 index bd3141a2e8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallYttrialite/0.png b/front/public/images/large/miscutils/itemDustSmallYttrialite/0.png deleted file mode 100644 index f88b53157d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallYttrocerite/0.png b/front/public/images/large/miscutils/itemDustSmallYttrocerite/0.png deleted file mode 100644 index aeecc5146d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZeron100/0.png b/front/public/images/large/miscutils/itemDustSmallZeron100/0.png deleted file mode 100644 index 077bae17f2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZimbabweite/0.png b/front/public/images/large/miscutils/itemDustSmallZimbabweite/0.png deleted file mode 100644 index 5b775ce8c1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZircon/0.png b/front/public/images/large/miscutils/itemDustSmallZircon/0.png deleted file mode 100644 index 63ef9bedb7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZirconium/0.png b/front/public/images/large/miscutils/itemDustSmallZirconium/0.png deleted file mode 100644 index e64cda8f11..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemDustSmallZirconiumCarbide/0.png deleted file mode 100644 index 82fc836678..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZirconiumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustSmallZirconiumTetrafluoride/0.png deleted file mode 100644 index 9828f8a514..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZirconolite/0.png b/front/public/images/large/miscutils/itemDustSmallZirconolite/0.png deleted file mode 100644 index a63b646392..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZircophyllite/0.png b/front/public/images/large/miscutils/itemDustSmallZircophyllite/0.png deleted file mode 100644 index 925a44ca80..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZirkelite/0.png b/front/public/images/large/miscutils/itemDustSmallZirkelite/0.png deleted file mode 100644 index 7a1965d832..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSmallZrCl4/0.png b/front/public/images/large/miscutils/itemDustSmallZrCl4/0.png deleted file mode 100644 index fcc3959ae4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSmallZrCl4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSodiumCyanide/0.png b/front/public/images/large/miscutils/itemDustSodiumCyanide/0.png deleted file mode 100644 index ff097df278..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSodiumCyanide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSodiumFluoride/0.png b/front/public/images/large/miscutils/itemDustSodiumFluoride/0.png deleted file mode 100644 index 99edf4e2b4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustSodiumNitrate/0.png b/front/public/images/large/miscutils/itemDustSodiumNitrate/0.png deleted file mode 100644 index ce97931f59..0000000000 Binary files a/front/public/images/large/miscutils/itemDustSodiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustStaballoy/0.png b/front/public/images/large/miscutils/itemDustStaballoy/0.png deleted file mode 100644 index d32ba6b39d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustStellite/0.png b/front/public/images/large/miscutils/itemDustStellite/0.png deleted file mode 100644 index 381dd7d2d6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustStrontium/0.png b/front/public/images/large/miscutils/itemDustStrontium/0.png deleted file mode 100644 index 03ee46e788..0000000000 Binary files a/front/public/images/large/miscutils/itemDustStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustStrontiumHydroxide/0.png b/front/public/images/large/miscutils/itemDustStrontiumHydroxide/0.png deleted file mode 100644 index 4764712281..0000000000 Binary files a/front/public/images/large/miscutils/itemDustStrontiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustStrontiumOxide/0.png b/front/public/images/large/miscutils/itemDustStrontiumOxide/0.png deleted file mode 100644 index 6efe746813..0000000000 Binary files a/front/public/images/large/miscutils/itemDustStrontiumOxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTalonite/0.png b/front/public/images/large/miscutils/itemDustTalonite/0.png deleted file mode 100644 index c9ceada2ae..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTantalloy60/0.png b/front/public/images/large/miscutils/itemDustTantalloy60/0.png deleted file mode 100644 index b6d5840e5b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTantalloy61/0.png b/front/public/images/large/miscutils/itemDustTantalloy61/0.png deleted file mode 100644 index c55ac30e47..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTantalumCarbide/0.png b/front/public/images/large/miscutils/itemDustTantalumCarbide/0.png deleted file mode 100644 index 9942838689..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTechnetiumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustTechnetiumHexafluoride/0.png deleted file mode 100644 index e741e87225..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTeflon/0.png b/front/public/images/large/miscutils/itemDustTeflon/0.png deleted file mode 100644 index 573d8a61eb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTellurium/0.png b/front/public/images/large/miscutils/itemDustTellurium/0.png deleted file mode 100644 index 3f762658e1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustThallium/0.png b/front/public/images/large/miscutils/itemDustThallium/0.png deleted file mode 100644 index fa322ea396..0000000000 Binary files a/front/public/images/large/miscutils/itemDustThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustThorium232/0.png b/front/public/images/large/miscutils/itemDustThorium232/0.png deleted file mode 100644 index 8d2a082695..0000000000 Binary files a/front/public/images/large/miscutils/itemDustThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustThoriumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustThoriumHexafluoride/0.png deleted file mode 100644 index 48bc4066f4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustThoriumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustThoriumTetrafluoride/0.png deleted file mode 100644 index 066b4e76d5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemDustTinyAbyssalAlloy/0.png deleted file mode 100644 index 902d361e3a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemDustTinyAdvancedNitinol/0.png deleted file mode 100644 index 8aaa5ffbc5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAgarditeCd/0.png b/front/public/images/large/miscutils/itemDustTinyAgarditeCd/0.png deleted file mode 100644 index faa01511b4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAgarditeLa/0.png b/front/public/images/large/miscutils/itemDustTinyAgarditeLa/0.png deleted file mode 100644 index 087ca71f15..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAgarditeNd/0.png b/front/public/images/large/miscutils/itemDustTinyAgarditeNd/0.png deleted file mode 100644 index 9413880252..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAgarditeY/0.png b/front/public/images/large/miscutils/itemDustTinyAgarditeY/0.png deleted file mode 100644 index 2555a6a919..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAlburnite/0.png b/front/public/images/large/miscutils/itemDustTinyAlburnite/0.png deleted file mode 100644 index b7be08c30f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAmmoniumBifluoride/0.png b/front/public/images/large/miscutils/itemDustTinyAmmoniumBifluoride/0.png deleted file mode 100644 index a76e892050..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAmmoniumNitrate/0.png b/front/public/images/large/miscutils/itemDustTinyAmmoniumNitrate/0.png deleted file mode 100644 index 2196fba738..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAmmoniumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAncientGranite/0.png b/front/public/images/large/miscutils/itemDustTinyAncientGranite/0.png deleted file mode 100644 index 799b19686e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyArcanite/0.png b/front/public/images/large/miscutils/itemDustTinyArcanite/0.png deleted file mode 100644 index c1ce306824..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemDustTinyArceusAlloy2B/0.png deleted file mode 100644 index 51d6b80ebb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyAstralTitanium/0.png b/front/public/images/large/miscutils/itemDustTinyAstralTitanium/0.png deleted file mode 100644 index acc64c063a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBabbitAlloy/0.png b/front/public/images/large/miscutils/itemDustTinyBabbitAlloy/0.png deleted file mode 100644 index 292bf75deb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBariteRd/0.png b/front/public/images/large/miscutils/itemDustTinyBariteRd/0.png deleted file mode 100644 index 44065752c7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBerylliumFluoride/0.png b/front/public/images/large/miscutils/itemDustTinyBerylliumFluoride/0.png deleted file mode 100644 index f0a9178417..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBerylliumHydroxide/0.png b/front/public/images/large/miscutils/itemDustTinyBerylliumHydroxide/0.png deleted file mode 100644 index 1d04b7f025..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBlackMetal/0.png b/front/public/images/large/miscutils/itemDustTinyBlackMetal/0.png deleted file mode 100644 index 292dcd4d6d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBlackTitanium/0.png b/front/public/images/large/miscutils/itemDustTinyBlackTitanium/0.png deleted file mode 100644 index f6ab92d449..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBloodSteel/0.png b/front/public/images/large/miscutils/itemDustTinyBloodSteel/0.png deleted file mode 100644 index 28ba08de3b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyBotmium/0.png b/front/public/images/large/miscutils/itemDustTinyBotmium/0.png deleted file mode 100644 index 546103ebb2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCalciumCarbonate/0.png b/front/public/images/large/miscutils/itemDustTinyCalciumCarbonate/0.png deleted file mode 100644 index 31c4a1b6b4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCalciumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCalciumChloride/0.png b/front/public/images/large/miscutils/itemDustTinyCalciumChloride/0.png deleted file mode 100644 index 332ea27035..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCalciumChloride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCalciumHydroxide/0.png b/front/public/images/large/miscutils/itemDustTinyCalciumHydroxide/0.png deleted file mode 100644 index 31c4a1b6b4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCalciumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCalifornium/0.png b/front/public/images/large/miscutils/itemDustTinyCalifornium/0.png deleted file mode 100644 index bbb1f12bfd..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCelestialTungsten/0.png b/front/public/images/large/miscutils/itemDustTinyCelestialTungsten/0.png deleted file mode 100644 index 870533afaf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCerite/0.png b/front/public/images/large/miscutils/itemDustTinyCerite/0.png deleted file mode 100644 index 67d0fe3ff5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyChromaticGlass/0.png b/front/public/images/large/miscutils/itemDustTinyChromaticGlass/0.png deleted file mode 100644 index 2de1db629c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCinobiteA243/0.png b/front/public/images/large/miscutils/itemDustTinyCinobiteA243/0.png deleted file mode 100644 index c0f3330ad7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyComancheite/0.png b/front/public/images/large/miscutils/itemDustTinyComancheite/0.png deleted file mode 100644 index 76b309a37d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCookedZrCl4/0.png b/front/public/images/large/miscutils/itemDustTinyCookedZrCl4/0.png deleted file mode 100644 index 8e3cc8d268..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCookedZrCl4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCopperIISulfate/0.png b/front/public/images/large/miscutils/itemDustTinyCopperIISulfate/0.png deleted file mode 100644 index ea7c406e9f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCopperIISulfate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCopperIISulfatePentahydrate/0.png b/front/public/images/large/miscutils/itemDustTinyCopperIISulfatePentahydrate/0.png deleted file mode 100644 index 16bc1b7f83..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCopperIISulfatePentahydrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCrocoite/0.png b/front/public/images/large/miscutils/itemDustTinyCrocoite/0.png deleted file mode 100644 index 36d258b3a5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCryoliteF/0.png b/front/public/images/large/miscutils/itemDustTinyCryoliteF/0.png deleted file mode 100644 index b9465b8d84..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCurium/0.png b/front/public/images/large/miscutils/itemDustTinyCurium/0.png deleted file mode 100644 index 11fdd568a5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyCyanoaceticAcid/0.png b/front/public/images/large/miscutils/itemDustTinyCyanoaceticAcid/0.png deleted file mode 100644 index fb54588f26..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyCyanoaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyDecayedRadium226/0.png b/front/public/images/large/miscutils/itemDustTinyDecayedRadium226/0.png deleted file mode 100644 index ef5e166fc8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyDecayedRadium226/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyDemicheleiteBr/0.png b/front/public/images/large/miscutils/itemDustTinyDemicheleiteBr/0.png deleted file mode 100644 index ff8f9513b2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyDirt/0.png b/front/public/images/large/miscutils/itemDustTinyDirt/0.png deleted file mode 100644 index 435fd8439d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyDirt/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyDragonblood/0.png b/front/public/images/large/miscutils/itemDustTinyDragonblood/0.png deleted file mode 100644 index 3d0137dc93..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyDysprosium/0.png b/front/public/images/large/miscutils/itemDustTinyDysprosium/0.png deleted file mode 100644 index 8e3cc8d268..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyEglinSteel/0.png b/front/public/images/large/miscutils/itemDustTinyEglinSteel/0.png deleted file mode 100644 index 7856193a33..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyEglinSteelBaseCompound/0.png b/front/public/images/large/miscutils/itemDustTinyEglinSteelBaseCompound/0.png deleted file mode 100644 index 480ed793ff..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyEnergyCrystal/0.png b/front/public/images/large/miscutils/itemDustTinyEnergyCrystal/0.png deleted file mode 100644 index dc0c5774d6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyErbium/0.png b/front/public/images/large/miscutils/itemDustTinyErbium/0.png deleted file mode 100644 index bcadb1f12c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyFermium/0.png b/front/public/images/large/miscutils/itemDustTinyFermium/0.png deleted file mode 100644 index a8b48f8026..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyFlorencite/0.png b/front/public/images/large/miscutils/itemDustTinyFlorencite/0.png deleted file mode 100644 index a44df2cbd3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyFluorcaphite/0.png b/front/public/images/large/miscutils/itemDustTinyFluorcaphite/0.png deleted file mode 100644 index f6ee9b2786..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyFluoriteF/0.png b/front/public/images/large/miscutils/itemDustTinyFluoriteF/0.png deleted file mode 100644 index 5abe8a550b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyFormaldehydeCatalyst/0.png b/front/public/images/large/miscutils/itemDustTinyFormaldehydeCatalyst/0.png deleted file mode 100644 index 52ed4bec27..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyFormaldehydeCatalyst/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyGadoliniteCe/0.png b/front/public/images/large/miscutils/itemDustTinyGadoliniteCe/0.png deleted file mode 100644 index b97c470f3b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyGadoliniteY/0.png b/front/public/images/large/miscutils/itemDustTinyGadoliniteY/0.png deleted file mode 100644 index b97c470f3b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyGeikielite/0.png b/front/public/images/large/miscutils/itemDustTinyGeikielite/0.png deleted file mode 100644 index 162ef3393c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyGermanium/0.png b/front/public/images/large/miscutils/itemDustTinyGermanium/0.png deleted file mode 100644 index ea7c406e9f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyGreenockite/0.png b/front/public/images/large/miscutils/itemDustTinyGreenockite/0.png deleted file mode 100644 index 87b8bc79df..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyGrisium/0.png b/front/public/images/large/miscutils/itemDustTinyGrisium/0.png deleted file mode 100644 index 16142b0605..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyGypsum/0.png b/front/public/images/large/miscutils/itemDustTinyGypsum/0.png deleted file mode 100644 index 31c4a1b6b4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyGypsum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHG1223/0.png b/front/public/images/large/miscutils/itemDustTinyHG1223/0.png deleted file mode 100644 index ef14331dcc..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHS188A/0.png b/front/public/images/large/miscutils/itemDustTinyHS188A/0.png deleted file mode 100644 index 51ca03c0b6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHafnium/0.png b/front/public/images/large/miscutils/itemDustTinyHafnium/0.png deleted file mode 100644 index ecbdf40af4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHastelloyC276/0.png b/front/public/images/large/miscutils/itemDustTinyHastelloyC276/0.png deleted file mode 100644 index a9d1f1f8e5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHastelloyN/0.png b/front/public/images/large/miscutils/itemDustTinyHastelloyN/0.png deleted file mode 100644 index 50d87c942a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHastelloyW/0.png b/front/public/images/large/miscutils/itemDustTinyHastelloyW/0.png deleted file mode 100644 index 879cc93bc4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHastelloyX/0.png b/front/public/images/large/miscutils/itemDustTinyHastelloyX/0.png deleted file mode 100644 index 721783003c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemDustTinyHeLiCoPtEr/0.png deleted file mode 100644 index aca66b3f1f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHibonite/0.png b/front/public/images/large/miscutils/itemDustTinyHibonite/0.png deleted file mode 100644 index a04dfec557..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHoneaite/0.png b/front/public/images/large/miscutils/itemDustTinyHoneaite/0.png deleted file mode 100644 index 694cd13fae..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyHypogen/0.png b/front/public/images/large/miscutils/itemDustTinyHypogen/0.png deleted file mode 100644 index 0cd4708ecf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyIncoloy020/0.png b/front/public/images/large/miscutils/itemDustTinyIncoloy020/0.png deleted file mode 100644 index 9dd7cf5548..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyIncoloyDS/0.png b/front/public/images/large/miscutils/itemDustTinyIncoloyDS/0.png deleted file mode 100644 index cd6ff6012d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyIncoloyMA956/0.png b/front/public/images/large/miscutils/itemDustTinyIncoloyMA956/0.png deleted file mode 100644 index 8ffe17402b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyInconel625/0.png b/front/public/images/large/miscutils/itemDustTinyInconel625/0.png deleted file mode 100644 index 3dda1eaa2d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyInconel690/0.png b/front/public/images/large/miscutils/itemDustTinyInconel690/0.png deleted file mode 100644 index 6878b1b4e5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyInconel792/0.png b/front/public/images/large/miscutils/itemDustTinyInconel792/0.png deleted file mode 100644 index 911e0703cf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyIndalloy140/0.png b/front/public/images/large/miscutils/itemDustTinyIndalloy140/0.png deleted file mode 100644 index 38b45b2ce6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyIodine/0.png b/front/public/images/large/miscutils/itemDustTinyIodine/0.png deleted file mode 100644 index 850f75f04e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyIrarsite/0.png b/front/public/images/large/miscutils/itemDustTinyIrarsite/0.png deleted file mode 100644 index 55daa20de0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyKashinite/0.png b/front/public/images/large/miscutils/itemDustTinyKashinite/0.png deleted file mode 100644 index 8cf7beb079..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyKoboldite/0.png b/front/public/images/large/miscutils/itemDustTinyKoboldite/0.png deleted file mode 100644 index 7604543bb2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLFTRFuel1/0.png b/front/public/images/large/miscutils/itemDustTinyLFTRFuel1/0.png deleted file mode 100644 index a415a526fc..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLFTRFuel2/0.png b/front/public/images/large/miscutils/itemDustTinyLFTRFuel2/0.png deleted file mode 100644 index 8921f13967..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLFTRFuel3/0.png b/front/public/images/large/miscutils/itemDustTinyLFTRFuel3/0.png deleted file mode 100644 index d8fcd46658..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLafiumCompound/0.png b/front/public/images/large/miscutils/itemDustTinyLafiumCompound/0.png deleted file mode 100644 index 8d9b809087..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLafossaite/0.png b/front/public/images/large/miscutils/itemDustTinyLafossaite/0.png deleted file mode 100644 index ed8bdab1f1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLanthaniteCe/0.png b/front/public/images/large/miscutils/itemDustTinyLanthaniteCe/0.png deleted file mode 100644 index 92ae37bf38..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLanthaniteLa/0.png b/front/public/images/large/miscutils/itemDustTinyLanthaniteLa/0.png deleted file mode 100644 index f7f07f28e0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLanthaniteNd/0.png b/front/public/images/large/miscutils/itemDustTinyLanthaniteNd/0.png deleted file mode 100644 index ca248f7621..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLaurenium/0.png b/front/public/images/large/miscutils/itemDustTinyLaurenium/0.png deleted file mode 100644 index f5d6bd4644..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLautarite/0.png b/front/public/images/large/miscutils/itemDustTinyLautarite/0.png deleted file mode 100644 index b516dca032..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLepersonnite/0.png b/front/public/images/large/miscutils/itemDustTinyLepersonnite/0.png deleted file mode 100644 index 8b20f13a58..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLi2BeF4/0.png b/front/public/images/large/miscutils/itemDustTinyLi2BeF4/0.png deleted file mode 100644 index 31c4a1b6b4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLi2BeF4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLi2CO3CaOH2/0.png b/front/public/images/large/miscutils/itemDustTinyLi2CO3CaOH2/0.png deleted file mode 100644 index 31c4a1b6b4..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLi2CO3CaOH2/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLithium7/0.png b/front/public/images/large/miscutils/itemDustTinyLithium7/0.png deleted file mode 100644 index ee539422cd..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLithiumCarbonate/0.png b/front/public/images/large/miscutils/itemDustTinyLithiumCarbonate/0.png deleted file mode 100644 index 354de724a0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLithiumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLithiumFluoride/0.png b/front/public/images/large/miscutils/itemDustTinyLithiumFluoride/0.png deleted file mode 100644 index 294a427cce..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLithiumHydroperoxide/0.png b/front/public/images/large/miscutils/itemDustTinyLithiumHydroperoxide/0.png deleted file mode 100644 index e8541fd3bb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLithiumHydroperoxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLithiumHydroxide/0.png b/front/public/images/large/miscutils/itemDustTinyLithiumHydroxide/0.png deleted file mode 100644 index 44cbd14d3b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLithiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyLithiumPeroxide/0.png b/front/public/images/large/miscutils/itemDustTinyLithiumPeroxide/0.png deleted file mode 100644 index 44cbd14d3b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyLithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyManureByproducts/0.png b/front/public/images/large/miscutils/itemDustTinyManureByproducts/0.png deleted file mode 100644 index d555c97a7d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyManureByproducts/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyMaragingSteel250/0.png b/front/public/images/large/miscutils/itemDustTinyMaragingSteel250/0.png deleted file mode 100644 index e71933db13..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyMaragingSteel300/0.png b/front/public/images/large/miscutils/itemDustTinyMaragingSteel300/0.png deleted file mode 100644 index a98f8ae371..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyMaragingSteel350/0.png b/front/public/images/large/miscutils/itemDustTinyMaragingSteel350/0.png deleted file mode 100644 index 55b09c19fb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyMiessiite/0.png b/front/public/images/large/miscutils/itemDustTinyMiessiite/0.png deleted file mode 100644 index 4a8b96588a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyMixTumbaga/0.png b/front/public/images/large/miscutils/itemDustTinyMixTumbaga/0.png deleted file mode 100644 index 5ed83362ee..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyMixTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyNeptunium/0.png b/front/public/images/large/miscutils/itemDustTinyNeptunium/0.png deleted file mode 100644 index d312e6bd84..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyNeptuniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustTinyNeptuniumHexafluoride/0.png deleted file mode 100644 index faf62a62f9..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyNichromite/0.png b/front/public/images/large/miscutils/itemDustTinyNichromite/0.png deleted file mode 100644 index 9d086ca725..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemDustTinyNiobiumCarbide/0.png deleted file mode 100644 index 8f62d9b0d6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyNitinol60/0.png b/front/public/images/large/miscutils/itemDustTinyNitinol60/0.png deleted file mode 100644 index 90a042d37e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyOctiron/0.png b/front/public/images/large/miscutils/itemDustTinyOctiron/0.png deleted file mode 100644 index 3678124134..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyOrganicFertilizer/0.png b/front/public/images/large/miscutils/itemDustTinyOrganicFertilizer/0.png deleted file mode 100644 index 354de724a0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyOrganicFertilizer/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPerroudite/0.png b/front/public/images/large/miscutils/itemDustTinyPerroudite/0.png deleted file mode 100644 index 9da21733c3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPhthalicAnhydride/0.png b/front/public/images/large/miscutils/itemDustTinyPhthalicAnhydride/0.png deleted file mode 100644 index 5ef4e213ea..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPhthalicAnhydride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPikyonium64B/0.png b/front/public/images/large/miscutils/itemDustTinyPikyonium64B/0.png deleted file mode 100644 index 9d29903d43..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPlutonium238/0.png b/front/public/images/large/miscutils/itemDustTinyPlutonium238/0.png deleted file mode 100644 index 5ba27c82b2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPolonium/0.png b/front/public/images/large/miscutils/itemDustTinyPolonium/0.png deleted file mode 100644 index 618d116996..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPolycrase/0.png b/front/public/images/large/miscutils/itemDustTinyPolycrase/0.png deleted file mode 100644 index 2acdcfad2b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPotassiumNitrate/0.png b/front/public/images/large/miscutils/itemDustTinyPotassiumNitrate/0.png deleted file mode 100644 index c18e9c8e7c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPotassiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPotin/0.png b/front/public/images/large/miscutils/itemDustTinyPotin/0.png deleted file mode 100644 index 5cb4a075fb..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPraseodymium/0.png b/front/public/images/large/miscutils/itemDustTinyPraseodymium/0.png deleted file mode 100644 index 4f2dfc5b20..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyPromethium/0.png b/front/public/images/large/miscutils/itemDustTinyPromethium/0.png deleted file mode 100644 index 7779995f9d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyPromethium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyProtactinium/0.png b/front/public/images/large/miscutils/itemDustTinyProtactinium/0.png deleted file mode 100644 index 382f1886a2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyQuantum/0.png b/front/public/images/large/miscutils/itemDustTinyQuantum/0.png deleted file mode 100644 index 799fb6e7e6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/itemDustTinyRadioactiveMineralMix/0.png deleted file mode 100644 index 67a395bde6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyRadium/0.png b/front/public/images/large/miscutils/itemDustTinyRadium/0.png deleted file mode 100644 index 40ae95552c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyRhenium/0.png b/front/public/images/large/miscutils/itemDustTinyRhenium/0.png deleted file mode 100644 index 1185767877..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyRhodium/0.png b/front/public/images/large/miscutils/itemDustTinyRhodium/0.png deleted file mode 100644 index 669fe4f938..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyRhugnor/0.png b/front/public/images/large/miscutils/itemDustTinyRhugnor/0.png deleted file mode 100644 index 48ce6b2ed8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyRunite/0.png b/front/public/images/large/miscutils/itemDustTinyRunite/0.png deleted file mode 100644 index 7173bf4107..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyRuthenium/0.png b/front/public/images/large/miscutils/itemDustTinyRuthenium/0.png deleted file mode 100644 index 669fe4f938..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySamarskiteY/0.png b/front/public/images/large/miscutils/itemDustTinySamarskiteY/0.png deleted file mode 100644 index 3c07c56ed7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySamarskiteYb/0.png b/front/public/images/large/miscutils/itemDustTinySamarskiteYb/0.png deleted file mode 100644 index 546b451eb5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySelenium/0.png b/front/public/images/large/miscutils/itemDustTinySelenium/0.png deleted file mode 100644 index f77fd02892..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySeleniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustTinySeleniumHexafluoride/0.png deleted file mode 100644 index 4cb6e702b2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySiliconCarbide/0.png b/front/public/images/large/miscutils/itemDustTinySiliconCarbide/0.png deleted file mode 100644 index 36dc0cf81b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySodiumCyanide/0.png b/front/public/images/large/miscutils/itemDustTinySodiumCyanide/0.png deleted file mode 100644 index 332ea27035..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySodiumCyanide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySodiumFluoride/0.png b/front/public/images/large/miscutils/itemDustTinySodiumFluoride/0.png deleted file mode 100644 index b74d8d2896..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinySodiumNitrate/0.png b/front/public/images/large/miscutils/itemDustTinySodiumNitrate/0.png deleted file mode 100644 index 225c6c79c5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinySodiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyStaballoy/0.png b/front/public/images/large/miscutils/itemDustTinyStaballoy/0.png deleted file mode 100644 index 2745db8447..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyStellite/0.png b/front/public/images/large/miscutils/itemDustTinyStellite/0.png deleted file mode 100644 index 8bb52c0d75..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyStrontium/0.png b/front/public/images/large/miscutils/itemDustTinyStrontium/0.png deleted file mode 100644 index 6d72a208af..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyStrontiumHydroxide/0.png b/front/public/images/large/miscutils/itemDustTinyStrontiumHydroxide/0.png deleted file mode 100644 index 1e1f0d97ed..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyStrontiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyStrontiumOxide/0.png b/front/public/images/large/miscutils/itemDustTinyStrontiumOxide/0.png deleted file mode 100644 index 604023bb8f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyStrontiumOxide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTalonite/0.png b/front/public/images/large/miscutils/itemDustTinyTalonite/0.png deleted file mode 100644 index f771c74b72..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTantalloy60/0.png b/front/public/images/large/miscutils/itemDustTinyTantalloy60/0.png deleted file mode 100644 index 274987268f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTantalloy61/0.png b/front/public/images/large/miscutils/itemDustTinyTantalloy61/0.png deleted file mode 100644 index 3554b75a22..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTantalumCarbide/0.png b/front/public/images/large/miscutils/itemDustTinyTantalumCarbide/0.png deleted file mode 100644 index a0e8058b2d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTechnetiumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustTinyTechnetiumHexafluoride/0.png deleted file mode 100644 index 9b69044f32..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTeflon/0.png b/front/public/images/large/miscutils/itemDustTinyTeflon/0.png deleted file mode 100644 index 5c812c9b5f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTellurium/0.png b/front/public/images/large/miscutils/itemDustTinyTellurium/0.png deleted file mode 100644 index fe439c935f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyThallium/0.png b/front/public/images/large/miscutils/itemDustTinyThallium/0.png deleted file mode 100644 index 5ef4e213ea..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyThorium232/0.png b/front/public/images/large/miscutils/itemDustTinyThorium232/0.png deleted file mode 100644 index 2cd79b9474..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyThoriumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustTinyThoriumHexafluoride/0.png deleted file mode 100644 index 51c0a6d733..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyThoriumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustTinyThoriumTetrafluoride/0.png deleted file mode 100644 index 8e7fddf673..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTitanite/0.png b/front/public/images/large/miscutils/itemDustTinyTitanite/0.png deleted file mode 100644 index 358b4cdd97..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTitansteel/0.png b/front/public/images/large/miscutils/itemDustTinyTitansteel/0.png deleted file mode 100644 index 635d42d11c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemDustTinyTriniumNaquadahAlloy/0.png deleted file mode 100644 index 42971ef21b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemDustTinyTriniumNaquadahCarbonite/0.png deleted file mode 100644 index fe61c1cbb8..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemDustTinyTriniumTitaniumAlloy/0.png deleted file mode 100644 index e046cd3a05..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTumbaga/0.png b/front/public/images/large/miscutils/itemDustTinyTumbaga/0.png deleted file mode 100644 index 126ea8792e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemDustTinyTungstenTitaniumCarbide/0.png deleted file mode 100644 index bae8ecb06c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyUN18Fertiliser/0.png b/front/public/images/large/miscutils/itemDustTinyUN18Fertiliser/0.png deleted file mode 100644 index 22d7d04173..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyUN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyUN32Fertiliser/0.png b/front/public/images/large/miscutils/itemDustTinyUN32Fertiliser/0.png deleted file mode 100644 index 30af6fc877..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyUN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyUranium232/0.png b/front/public/images/large/miscutils/itemDustTinyUranium232/0.png deleted file mode 100644 index 28d7ce4951..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyUranium233/0.png b/front/public/images/large/miscutils/itemDustTinyUranium233/0.png deleted file mode 100644 index 84382a946f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyUraniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustTinyUraniumHexafluoride/0.png deleted file mode 100644 index fc426eca30..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyUraniumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustTinyUraniumTetrafluoride/0.png deleted file mode 100644 index fc426eca30..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyWatertightSteel/0.png b/front/public/images/large/miscutils/itemDustTinyWatertightSteel/0.png deleted file mode 100644 index 3359072d0e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyWhiteMetal/0.png b/front/public/images/large/miscutils/itemDustTinyWhiteMetal/0.png deleted file mode 100644 index e438021407..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyWood'sGlass/0.png b/front/public/images/large/miscutils/itemDustTinyWood'sGlass/0.png deleted file mode 100644 index 7207289d2b..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyWood'sGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyXenotime/0.png b/front/public/images/large/miscutils/itemDustTinyXenotime/0.png deleted file mode 100644 index b71387d412..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyYttriaite/0.png b/front/public/images/large/miscutils/itemDustTinyYttriaite/0.png deleted file mode 100644 index 54f7aff989..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyYttrialite/0.png b/front/public/images/large/miscutils/itemDustTinyYttrialite/0.png deleted file mode 100644 index 8913176215..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyYttrocerite/0.png b/front/public/images/large/miscutils/itemDustTinyYttrocerite/0.png deleted file mode 100644 index 7284a71269..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZeron100/0.png b/front/public/images/large/miscutils/itemDustTinyZeron100/0.png deleted file mode 100644 index f4eab9e41f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZimbabweite/0.png b/front/public/images/large/miscutils/itemDustTinyZimbabweite/0.png deleted file mode 100644 index 820bb8365e..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZircon/0.png b/front/public/images/large/miscutils/itemDustTinyZircon/0.png deleted file mode 100644 index 91fe1f5cac..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZirconium/0.png b/front/public/images/large/miscutils/itemDustTinyZirconium/0.png deleted file mode 100644 index 64919c6b03..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemDustTinyZirconiumCarbide/0.png deleted file mode 100644 index d4d5faa3f5..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZirconiumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustTinyZirconiumTetrafluoride/0.png deleted file mode 100644 index 7c4eb52834..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZirconolite/0.png b/front/public/images/large/miscutils/itemDustTinyZirconolite/0.png deleted file mode 100644 index 2862cebfe6..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZircophyllite/0.png b/front/public/images/large/miscutils/itemDustTinyZircophyllite/0.png deleted file mode 100644 index e8198c9d88..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZirkelite/0.png b/front/public/images/large/miscutils/itemDustTinyZirkelite/0.png deleted file mode 100644 index 85e5ccb6b2..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTinyZrCl4/0.png b/front/public/images/large/miscutils/itemDustTinyZrCl4/0.png deleted file mode 100644 index 8e3cc8d268..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTinyZrCl4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTitanite/0.png b/front/public/images/large/miscutils/itemDustTitanite/0.png deleted file mode 100644 index 94498fc24d..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTitansteel/0.png b/front/public/images/large/miscutils/itemDustTitansteel/0.png deleted file mode 100644 index 1c408964cf..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemDustTriniumNaquadahAlloy/0.png deleted file mode 100644 index 2348c824ea..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemDustTriniumNaquadahCarbonite/0.png deleted file mode 100644 index ad0788e814..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemDustTriniumTitaniumAlloy/0.png deleted file mode 100644 index 4a0fc7343c..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTumbaga/0.png b/front/public/images/large/miscutils/itemDustTumbaga/0.png deleted file mode 100644 index 330de97052..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemDustTungstenTitaniumCarbide/0.png deleted file mode 100644 index 75c54adf0a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustUN18Fertiliser/0.png b/front/public/images/large/miscutils/itemDustUN18Fertiliser/0.png deleted file mode 100644 index 1fcdac24aa..0000000000 Binary files a/front/public/images/large/miscutils/itemDustUN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustUN32Fertiliser/0.png b/front/public/images/large/miscutils/itemDustUN32Fertiliser/0.png deleted file mode 100644 index 07f8e02ead..0000000000 Binary files a/front/public/images/large/miscutils/itemDustUN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustUranium232/0.png b/front/public/images/large/miscutils/itemDustUranium232/0.png deleted file mode 100644 index 066adf81be..0000000000 Binary files a/front/public/images/large/miscutils/itemDustUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustUranium233/0.png b/front/public/images/large/miscutils/itemDustUranium233/0.png deleted file mode 100644 index 3eb6010c12..0000000000 Binary files a/front/public/images/large/miscutils/itemDustUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustUraniumHexafluoride/0.png b/front/public/images/large/miscutils/itemDustUraniumHexafluoride/0.png deleted file mode 100644 index 118d204774..0000000000 Binary files a/front/public/images/large/miscutils/itemDustUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustUraniumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustUraniumTetrafluoride/0.png deleted file mode 100644 index 118d204774..0000000000 Binary files a/front/public/images/large/miscutils/itemDustUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustWatertightSteel/0.png b/front/public/images/large/miscutils/itemDustWatertightSteel/0.png deleted file mode 100644 index 8ed9040a7f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustWhiteMetal/0.png b/front/public/images/large/miscutils/itemDustWhiteMetal/0.png deleted file mode 100644 index 32db608954..0000000000 Binary files a/front/public/images/large/miscutils/itemDustWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustWood'sGlass/0.png b/front/public/images/large/miscutils/itemDustWood'sGlass/0.png deleted file mode 100644 index 945c338a22..0000000000 Binary files a/front/public/images/large/miscutils/itemDustWood'sGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustXenotime/0.png b/front/public/images/large/miscutils/itemDustXenotime/0.png deleted file mode 100644 index 1f7dadbd21..0000000000 Binary files a/front/public/images/large/miscutils/itemDustXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustYttriaite/0.png b/front/public/images/large/miscutils/itemDustYttriaite/0.png deleted file mode 100644 index 32519882da..0000000000 Binary files a/front/public/images/large/miscutils/itemDustYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustYttrialite/0.png b/front/public/images/large/miscutils/itemDustYttrialite/0.png deleted file mode 100644 index 325d395962..0000000000 Binary files a/front/public/images/large/miscutils/itemDustYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustYttrocerite/0.png b/front/public/images/large/miscutils/itemDustYttrocerite/0.png deleted file mode 100644 index 71c14c44db..0000000000 Binary files a/front/public/images/large/miscutils/itemDustYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZeron100/0.png b/front/public/images/large/miscutils/itemDustZeron100/0.png deleted file mode 100644 index f574c0831a..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZimbabweite/0.png b/front/public/images/large/miscutils/itemDustZimbabweite/0.png deleted file mode 100644 index 9c776ce0e1..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZircon/0.png b/front/public/images/large/miscutils/itemDustZircon/0.png deleted file mode 100644 index 6ef23073c7..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZirconium/0.png b/front/public/images/large/miscutils/itemDustZirconium/0.png deleted file mode 100644 index a05be4c885..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemDustZirconiumCarbide/0.png deleted file mode 100644 index 857cfc21cd..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZirconiumTetrafluoride/0.png b/front/public/images/large/miscutils/itemDustZirconiumTetrafluoride/0.png deleted file mode 100644 index 3b5fb8f4e3..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZirconolite/0.png b/front/public/images/large/miscutils/itemDustZirconolite/0.png deleted file mode 100644 index 8ba167828f..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZircophyllite/0.png b/front/public/images/large/miscutils/itemDustZircophyllite/0.png deleted file mode 100644 index bc50a542ce..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZirkelite/0.png b/front/public/images/large/miscutils/itemDustZirkelite/0.png deleted file mode 100644 index 584dda3b13..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemDustZrCl4/0.png b/front/public/images/large/miscutils/itemDustZrCl4/0.png deleted file mode 100644 index f0cc3a30b0..0000000000 Binary files a/front/public/images/large/miscutils/itemDustZrCl4/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemEnergeticRotorBlade/0.png b/front/public/images/large/miscutils/itemEnergeticRotorBlade/0.png deleted file mode 100644 index b36e96351b..0000000000 Binary files a/front/public/images/large/miscutils/itemEnergeticRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemEnergeticShaft/0.png b/front/public/images/large/miscutils/itemEnergeticShaft/0.png deleted file mode 100644 index 4582d8a1f3..0000000000 Binary files a/front/public/images/large/miscutils/itemEnergeticShaft/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireBabbitAlloy/0.png b/front/public/images/large/miscutils/itemFineWireBabbitAlloy/0.png deleted file mode 100644 index 9ad0c91514..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireChromaticGlass/0.png b/front/public/images/large/miscutils/itemFineWireChromaticGlass/0.png deleted file mode 100644 index 03695c9d27..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireGrisium/0.png b/front/public/images/large/miscutils/itemFineWireGrisium/0.png deleted file mode 100644 index a6638a6e3e..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireHG1223/0.png b/front/public/images/large/miscutils/itemFineWireHG1223/0.png deleted file mode 100644 index c7c7fea57a..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireHypogen/0.png b/front/public/images/large/miscutils/itemFineWireHypogen/0.png deleted file mode 100644 index ac25cd7f1b..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireKoboldite/0.png b/front/public/images/large/miscutils/itemFineWireKoboldite/0.png deleted file mode 100644 index d52831e3fc..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWirePalladium/0.png b/front/public/images/large/miscutils/itemFineWirePalladium/0.png deleted file mode 100644 index 31850d51cc..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWirePalladium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireQuantum/0.png b/front/public/images/large/miscutils/itemFineWireQuantum/0.png deleted file mode 100644 index 30a3d287a1..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireWhiteMetal/0.png b/front/public/images/large/miscutils/itemFineWireWhiteMetal/0.png deleted file mode 100644 index 2d18d07559..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFineWireZirconium/0.png b/front/public/images/large/miscutils/itemFineWireZirconium/0.png deleted file mode 100644 index fa53e837c8..0000000000 Binary files a/front/public/images/large/miscutils/itemFineWireZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemFoilAdvancedNitinol/0.png deleted file mode 100644 index 649fcd2461..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemFoilArceusAlloy2B/0.png deleted file mode 100644 index 5a0bb425da..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilAstralTitanium/0.png b/front/public/images/large/miscutils/itemFoilAstralTitanium/0.png deleted file mode 100644 index f6482a765f..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilBlackTitanium/0.png b/front/public/images/large/miscutils/itemFoilBlackTitanium/0.png deleted file mode 100644 index a5afc1cb87..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilBotmium/0.png b/front/public/images/large/miscutils/itemFoilBotmium/0.png deleted file mode 100644 index c4bf665ab1..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilCelestialTungsten/0.png b/front/public/images/large/miscutils/itemFoilCelestialTungsten/0.png deleted file mode 100644 index e3b175e918..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilChromaticGlass/0.png b/front/public/images/large/miscutils/itemFoilChromaticGlass/0.png deleted file mode 100644 index a8403db94c..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilCinobiteA243/0.png b/front/public/images/large/miscutils/itemFoilCinobiteA243/0.png deleted file mode 100644 index cf3ae95e4f..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilHypogen/0.png b/front/public/images/large/miscutils/itemFoilHypogen/0.png deleted file mode 100644 index ee857e8ce3..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilLafiumCompound/0.png b/front/public/images/large/miscutils/itemFoilLafiumCompound/0.png deleted file mode 100644 index 5b9bd06127..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilLaurenium/0.png b/front/public/images/large/miscutils/itemFoilLaurenium/0.png deleted file mode 100644 index 13027406b1..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilNitinol60/0.png b/front/public/images/large/miscutils/itemFoilNitinol60/0.png deleted file mode 100644 index e02d34ff2a..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilPikyonium64B/0.png b/front/public/images/large/miscutils/itemFoilPikyonium64B/0.png deleted file mode 100644 index 396e3476b2..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilQuantum/0.png b/front/public/images/large/miscutils/itemFoilQuantum/0.png deleted file mode 100644 index 35d3b1eb03..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilRhugnor/0.png b/front/public/images/large/miscutils/itemFoilRhugnor/0.png deleted file mode 100644 index 95e04f508a..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilTitansteel/0.png b/front/public/images/large/miscutils/itemFoilTitansteel/0.png deleted file mode 100644 index 1aae0d468a..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemFoilWhiteMetal/0.png b/front/public/images/large/miscutils/itemFoilWhiteMetal/0.png deleted file mode 100644 index 143c64c7c2..0000000000 Binary files a/front/public/images/large/miscutils/itemFoilWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemGearAbyssalAlloy/0.png deleted file mode 100644 index 1a5e4371c2..0000000000 Binary files a/front/public/images/large/miscutils/itemGearAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearArcanite/0.png b/front/public/images/large/miscutils/itemGearArcanite/0.png deleted file mode 100644 index 4f8774eab5..0000000000 Binary files a/front/public/images/large/miscutils/itemGearArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemGearArceusAlloy2B/0.png deleted file mode 100644 index 64867d348b..0000000000 Binary files a/front/public/images/large/miscutils/itemGearArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearAstralTitanium/0.png b/front/public/images/large/miscutils/itemGearAstralTitanium/0.png deleted file mode 100644 index ac2383f660..0000000000 Binary files a/front/public/images/large/miscutils/itemGearAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearBlackMetal/0.png b/front/public/images/large/miscutils/itemGearBlackMetal/0.png deleted file mode 100644 index 91973f8867..0000000000 Binary files a/front/public/images/large/miscutils/itemGearBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearBloodSteel/0.png b/front/public/images/large/miscutils/itemGearBloodSteel/0.png deleted file mode 100644 index 230c4bf880..0000000000 Binary files a/front/public/images/large/miscutils/itemGearBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearBotmium/0.png b/front/public/images/large/miscutils/itemGearBotmium/0.png deleted file mode 100644 index f0db4e6d35..0000000000 Binary files a/front/public/images/large/miscutils/itemGearBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearCelestialTungsten/0.png b/front/public/images/large/miscutils/itemGearCelestialTungsten/0.png deleted file mode 100644 index b42f416b21..0000000000 Binary files a/front/public/images/large/miscutils/itemGearCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearChromaticGlass/0.png b/front/public/images/large/miscutils/itemGearChromaticGlass/0.png deleted file mode 100644 index 0869b88f58..0000000000 Binary files a/front/public/images/large/miscutils/itemGearChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearCinobiteA243/0.png b/front/public/images/large/miscutils/itemGearCinobiteA243/0.png deleted file mode 100644 index 59109ccdda..0000000000 Binary files a/front/public/images/large/miscutils/itemGearCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearDysprosium/0.png b/front/public/images/large/miscutils/itemGearDysprosium/0.png deleted file mode 100644 index 37ecc6b707..0000000000 Binary files a/front/public/images/large/miscutils/itemGearDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearEglinSteel/0.png b/front/public/images/large/miscutils/itemGearEglinSteel/0.png deleted file mode 100644 index 08529c8944..0000000000 Binary files a/front/public/images/large/miscutils/itemGearEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearEnergyCrystal/0.png b/front/public/images/large/miscutils/itemGearEnergyCrystal/0.png deleted file mode 100644 index 925a00f2cc..0000000000 Binary files a/front/public/images/large/miscutils/itemGearEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearErbium/0.png b/front/public/images/large/miscutils/itemGearErbium/0.png deleted file mode 100644 index 49f4f5a37d..0000000000 Binary files a/front/public/images/large/miscutils/itemGearErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearGermanium/0.png b/front/public/images/large/miscutils/itemGearGermanium/0.png deleted file mode 100644 index 26436fe7e2..0000000000 Binary files a/front/public/images/large/miscutils/itemGearGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearGrisium/0.png b/front/public/images/large/miscutils/itemGearGrisium/0.png deleted file mode 100644 index f31c286430..0000000000 Binary files a/front/public/images/large/miscutils/itemGearGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHS188A/0.png b/front/public/images/large/miscutils/itemGearHS188A/0.png deleted file mode 100644 index 02bb700feb..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHafnium/0.png b/front/public/images/large/miscutils/itemGearHafnium/0.png deleted file mode 100644 index c36209f872..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHastelloyC276/0.png b/front/public/images/large/miscutils/itemGearHastelloyC276/0.png deleted file mode 100644 index a3377a3a63..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHastelloyN/0.png b/front/public/images/large/miscutils/itemGearHastelloyN/0.png deleted file mode 100644 index a1081ff4aa..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHastelloyW/0.png b/front/public/images/large/miscutils/itemGearHastelloyW/0.png deleted file mode 100644 index 121fe8fccc..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHastelloyX/0.png b/front/public/images/large/miscutils/itemGearHastelloyX/0.png deleted file mode 100644 index 4c014e352a..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemGearHeLiCoPtEr/0.png deleted file mode 100644 index 1f13c07ddd..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearHypogen/0.png b/front/public/images/large/miscutils/itemGearHypogen/0.png deleted file mode 100644 index f26341a8b8..0000000000 Binary files a/front/public/images/large/miscutils/itemGearHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearIncoloy020/0.png b/front/public/images/large/miscutils/itemGearIncoloy020/0.png deleted file mode 100644 index 909e1074a3..0000000000 Binary files a/front/public/images/large/miscutils/itemGearIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearIncoloyDS/0.png b/front/public/images/large/miscutils/itemGearIncoloyDS/0.png deleted file mode 100644 index e434a069ba..0000000000 Binary files a/front/public/images/large/miscutils/itemGearIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearIncoloyMA956/0.png b/front/public/images/large/miscutils/itemGearIncoloyMA956/0.png deleted file mode 100644 index 980e51396f..0000000000 Binary files a/front/public/images/large/miscutils/itemGearIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearInconel625/0.png b/front/public/images/large/miscutils/itemGearInconel625/0.png deleted file mode 100644 index de8f8a5bbb..0000000000 Binary files a/front/public/images/large/miscutils/itemGearInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearInconel690/0.png b/front/public/images/large/miscutils/itemGearInconel690/0.png deleted file mode 100644 index 7b67ce5a17..0000000000 Binary files a/front/public/images/large/miscutils/itemGearInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearInconel792/0.png b/front/public/images/large/miscutils/itemGearInconel792/0.png deleted file mode 100644 index 5daef90809..0000000000 Binary files a/front/public/images/large/miscutils/itemGearInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearIodine/0.png b/front/public/images/large/miscutils/itemGearIodine/0.png deleted file mode 100644 index 8d374d75d3..0000000000 Binary files a/front/public/images/large/miscutils/itemGearIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearLafiumCompound/0.png b/front/public/images/large/miscutils/itemGearLafiumCompound/0.png deleted file mode 100644 index ca8a653623..0000000000 Binary files a/front/public/images/large/miscutils/itemGearLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearLaurenium/0.png b/front/public/images/large/miscutils/itemGearLaurenium/0.png deleted file mode 100644 index e78d185992..0000000000 Binary files a/front/public/images/large/miscutils/itemGearLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearMaragingSteel250/0.png b/front/public/images/large/miscutils/itemGearMaragingSteel250/0.png deleted file mode 100644 index 30b2ff235b..0000000000 Binary files a/front/public/images/large/miscutils/itemGearMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearMaragingSteel300/0.png b/front/public/images/large/miscutils/itemGearMaragingSteel300/0.png deleted file mode 100644 index 62b8c6db89..0000000000 Binary files a/front/public/images/large/miscutils/itemGearMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearMaragingSteel350/0.png b/front/public/images/large/miscutils/itemGearMaragingSteel350/0.png deleted file mode 100644 index 5e937fafc8..0000000000 Binary files a/front/public/images/large/miscutils/itemGearMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemGearNiobiumCarbide/0.png deleted file mode 100644 index 206050dc8b..0000000000 Binary files a/front/public/images/large/miscutils/itemGearNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearNitinol60/0.png b/front/public/images/large/miscutils/itemGearNitinol60/0.png deleted file mode 100644 index 6fc3994fca..0000000000 Binary files a/front/public/images/large/miscutils/itemGearNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearOctiron/0.png b/front/public/images/large/miscutils/itemGearOctiron/0.png deleted file mode 100644 index cd8a79105b..0000000000 Binary files a/front/public/images/large/miscutils/itemGearOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearPikyonium64B/0.png b/front/public/images/large/miscutils/itemGearPikyonium64B/0.png deleted file mode 100644 index 98521966e2..0000000000 Binary files a/front/public/images/large/miscutils/itemGearPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearPotin/0.png b/front/public/images/large/miscutils/itemGearPotin/0.png deleted file mode 100644 index d2c22f8ab0..0000000000 Binary files a/front/public/images/large/miscutils/itemGearPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearPraseodymium/0.png b/front/public/images/large/miscutils/itemGearPraseodymium/0.png deleted file mode 100644 index d923161f01..0000000000 Binary files a/front/public/images/large/miscutils/itemGearPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearQuantum/0.png b/front/public/images/large/miscutils/itemGearQuantum/0.png deleted file mode 100644 index 4c0705843f..0000000000 Binary files a/front/public/images/large/miscutils/itemGearQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearRhenium/0.png b/front/public/images/large/miscutils/itemGearRhenium/0.png deleted file mode 100644 index 0755cff9ec..0000000000 Binary files a/front/public/images/large/miscutils/itemGearRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearRhodium/0.png b/front/public/images/large/miscutils/itemGearRhodium/0.png deleted file mode 100644 index 1d1b8eb23e..0000000000 Binary files a/front/public/images/large/miscutils/itemGearRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearRuthenium/0.png b/front/public/images/large/miscutils/itemGearRuthenium/0.png deleted file mode 100644 index 1d1b8eb23e..0000000000 Binary files a/front/public/images/large/miscutils/itemGearRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearSelenium/0.png b/front/public/images/large/miscutils/itemGearSelenium/0.png deleted file mode 100644 index 30d14db97b..0000000000 Binary files a/front/public/images/large/miscutils/itemGearSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearSiliconCarbide/0.png b/front/public/images/large/miscutils/itemGearSiliconCarbide/0.png deleted file mode 100644 index 7ba8defab3..0000000000 Binary files a/front/public/images/large/miscutils/itemGearSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearStaballoy/0.png b/front/public/images/large/miscutils/itemGearStaballoy/0.png deleted file mode 100644 index 43f573f005..0000000000 Binary files a/front/public/images/large/miscutils/itemGearStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearStellite/0.png b/front/public/images/large/miscutils/itemGearStellite/0.png deleted file mode 100644 index cda984283d..0000000000 Binary files a/front/public/images/large/miscutils/itemGearStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearStrontium/0.png b/front/public/images/large/miscutils/itemGearStrontium/0.png deleted file mode 100644 index 06e233dc1a..0000000000 Binary files a/front/public/images/large/miscutils/itemGearStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTalonite/0.png b/front/public/images/large/miscutils/itemGearTalonite/0.png deleted file mode 100644 index 88f809a787..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTantalloy60/0.png b/front/public/images/large/miscutils/itemGearTantalloy60/0.png deleted file mode 100644 index 20df15e2df..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTantalloy61/0.png b/front/public/images/large/miscutils/itemGearTantalloy61/0.png deleted file mode 100644 index 5eec7153a8..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTantalumCarbide/0.png b/front/public/images/large/miscutils/itemGearTantalumCarbide/0.png deleted file mode 100644 index d165803a0c..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTellurium/0.png b/front/public/images/large/miscutils/itemGearTellurium/0.png deleted file mode 100644 index ff4263abc4..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearThallium/0.png b/front/public/images/large/miscutils/itemGearThallium/0.png deleted file mode 100644 index 1c7ed6aedb..0000000000 Binary files a/front/public/images/large/miscutils/itemGearThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTitansteel/0.png b/front/public/images/large/miscutils/itemGearTitansteel/0.png deleted file mode 100644 index bc1b449689..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemGearTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 8dedfbbebe..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemGearTriniumTitaniumAlloy/0.png deleted file mode 100644 index 660452f2d2..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTumbaga/0.png b/front/public/images/large/miscutils/itemGearTumbaga/0.png deleted file mode 100644 index d896aeadf3..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemGearTungstenTitaniumCarbide/0.png deleted file mode 100644 index 09ddf15661..0000000000 Binary files a/front/public/images/large/miscutils/itemGearTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearWatertightSteel/0.png b/front/public/images/large/miscutils/itemGearWatertightSteel/0.png deleted file mode 100644 index fc0b0b0405..0000000000 Binary files a/front/public/images/large/miscutils/itemGearWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearWhiteMetal/0.png b/front/public/images/large/miscutils/itemGearWhiteMetal/0.png deleted file mode 100644 index 5affcd0e8d..0000000000 Binary files a/front/public/images/large/miscutils/itemGearWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearZeron100/0.png b/front/public/images/large/miscutils/itemGearZeron100/0.png deleted file mode 100644 index 44468cb58e..0000000000 Binary files a/front/public/images/large/miscutils/itemGearZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearZirconium/0.png b/front/public/images/large/miscutils/itemGearZirconium/0.png deleted file mode 100644 index ae0a5891c2..0000000000 Binary files a/front/public/images/large/miscutils/itemGearZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGearZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemGearZirconiumCarbide/0.png deleted file mode 100644 index 7696768962..0000000000 Binary files a/front/public/images/large/miscutils/itemGearZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGenericToken/0.png b/front/public/images/large/miscutils/itemGenericToken/0.png deleted file mode 100644 index 97d1b46908..0000000000 Binary files a/front/public/images/large/miscutils/itemGenericToken/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGenericToken/1.png b/front/public/images/large/miscutils/itemGenericToken/1.png deleted file mode 100644 index 3b71d69bf4..0000000000 Binary files a/front/public/images/large/miscutils/itemGenericToken/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGenericToken/2.png b/front/public/images/large/miscutils/itemGenericToken/2.png deleted file mode 100644 index 8f407d7902..0000000000 Binary files a/front/public/images/large/miscutils/itemGenericToken/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGenericToken/3.png b/front/public/images/large/miscutils/itemGenericToken/3.png deleted file mode 100644 index 80279a2022..0000000000 Binary files a/front/public/images/large/miscutils/itemGenericToken/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemGenericToken/4.png b/front/public/images/large/miscutils/itemGenericToken/4.png deleted file mode 100644 index e5356dae4b..0000000000 Binary files a/front/public/images/large/miscutils/itemGenericToken/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHalfCompleteCasings/0.png b/front/public/images/large/miscutils/itemHalfCompleteCasings/0.png deleted file mode 100644 index 0c71a6eb39..0000000000 Binary files a/front/public/images/large/miscutils/itemHalfCompleteCasings/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHalfCompleteCasings/1.png b/front/public/images/large/miscutils/itemHalfCompleteCasings/1.png deleted file mode 100644 index 0b24a72d2d..0000000000 Binary files a/front/public/images/large/miscutils/itemHalfCompleteCasings/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHalfCompleteCasings/2.png b/front/public/images/large/miscutils/itemHalfCompleteCasings/2.png deleted file mode 100644 index 28b5ef8740..0000000000 Binary files a/front/public/images/large/miscutils/itemHalfCompleteCasings/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHalfCompleteCasings/3.png b/front/public/images/large/miscutils/itemHalfCompleteCasings/3.png deleted file mode 100644 index d185895b03..0000000000 Binary files a/front/public/images/large/miscutils/itemHalfCompleteCasings/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHatTinFoil/0.png b/front/public/images/large/miscutils/itemHatTinFoil/0.png deleted file mode 100644 index 00dde15404..0000000000 Binary files a/front/public/images/large/miscutils/itemHatTinFoil/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemHotIngotAbyssalAlloy/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotArcanite/0.png b/front/public/images/large/miscutils/itemHotIngotArcanite/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemHotIngotArceusAlloy2B/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotAstralTitanium/0.png b/front/public/images/large/miscutils/itemHotIngotAstralTitanium/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotBotmium/0.png b/front/public/images/large/miscutils/itemHotIngotBotmium/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotCelestialTungsten/0.png b/front/public/images/large/miscutils/itemHotIngotCelestialTungsten/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotCinobiteA243/0.png b/front/public/images/large/miscutils/itemHotIngotCinobiteA243/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotEnergyCrystal/0.png b/front/public/images/large/miscutils/itemHotIngotEnergyCrystal/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotErbium/0.png b/front/public/images/large/miscutils/itemHotIngotErbium/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotGrisium/0.png b/front/public/images/large/miscutils/itemHotIngotGrisium/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotHS188A/0.png b/front/public/images/large/miscutils/itemHotIngotHS188A/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotHastelloyC276/0.png b/front/public/images/large/miscutils/itemHotIngotHastelloyC276/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotHastelloyN/0.png b/front/public/images/large/miscutils/itemHotIngotHastelloyN/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotHastelloyW/0.png b/front/public/images/large/miscutils/itemHotIngotHastelloyW/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotHastelloyX/0.png b/front/public/images/large/miscutils/itemHotIngotHastelloyX/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemHotIngotHeLiCoPtEr/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotHypogen/0.png b/front/public/images/large/miscutils/itemHotIngotHypogen/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotIncoloy020/0.png b/front/public/images/large/miscutils/itemHotIngotIncoloy020/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotIncoloyDS/0.png b/front/public/images/large/miscutils/itemHotIngotIncoloyDS/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotIncoloyMA956/0.png b/front/public/images/large/miscutils/itemHotIngotIncoloyMA956/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotInconel625/0.png b/front/public/images/large/miscutils/itemHotIngotInconel625/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotInconel690/0.png b/front/public/images/large/miscutils/itemHotIngotInconel690/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotInconel792/0.png b/front/public/images/large/miscutils/itemHotIngotInconel792/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotLafiumCompound/0.png b/front/public/images/large/miscutils/itemHotIngotLafiumCompound/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotLaurenium/0.png b/front/public/images/large/miscutils/itemHotIngotLaurenium/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotMaragingSteel250/0.png b/front/public/images/large/miscutils/itemHotIngotMaragingSteel250/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotMaragingSteel300/0.png b/front/public/images/large/miscutils/itemHotIngotMaragingSteel300/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotMaragingSteel350/0.png b/front/public/images/large/miscutils/itemHotIngotMaragingSteel350/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemHotIngotNiobiumCarbide/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotNitinol60/0.png b/front/public/images/large/miscutils/itemHotIngotNitinol60/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotOctiron/0.png b/front/public/images/large/miscutils/itemHotIngotOctiron/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotPikyonium64B/0.png b/front/public/images/large/miscutils/itemHotIngotPikyonium64B/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotPraseodymium/0.png b/front/public/images/large/miscutils/itemHotIngotPraseodymium/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotQuantum/0.png b/front/public/images/large/miscutils/itemHotIngotQuantum/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotStaballoy/0.png b/front/public/images/large/miscutils/itemHotIngotStaballoy/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotStellite/0.png b/front/public/images/large/miscutils/itemHotIngotStellite/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTalonite/0.png b/front/public/images/large/miscutils/itemHotIngotTalonite/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTantalloy60/0.png b/front/public/images/large/miscutils/itemHotIngotTantalloy60/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTantalloy61/0.png b/front/public/images/large/miscutils/itemHotIngotTantalloy61/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTantalumCarbide/0.png b/front/public/images/large/miscutils/itemHotIngotTantalumCarbide/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTitansteel/0.png b/front/public/images/large/miscutils/itemHotIngotTitansteel/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemHotIngotTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemHotIngotTriniumTitaniumAlloy/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemHotIngotTungstenTitaniumCarbide/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotWatertightSteel/0.png b/front/public/images/large/miscutils/itemHotIngotWatertightSteel/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHotIngotZeron100/0.png b/front/public/images/large/miscutils/itemHotIngotZeron100/0.png deleted file mode 100644 index 6157b94767..0000000000 Binary files a/front/public/images/large/miscutils/itemHotIngotZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemHydrogenBlob/0.png b/front/public/images/large/miscutils/itemHydrogenBlob/0.png deleted file mode 100644 index c36cc32263..0000000000 Binary files a/front/public/images/large/miscutils/itemHydrogenBlob/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemIngotAbyssalAlloy/0.png deleted file mode 100644 index e3b77389cc..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemIngotAdvancedNitinol/0.png deleted file mode 100644 index a8daf8e9ae..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotAncientGranite/0.png b/front/public/images/large/miscutils/itemIngotAncientGranite/0.png deleted file mode 100644 index d9751c748e..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotArcanite/0.png b/front/public/images/large/miscutils/itemIngotArcanite/0.png deleted file mode 100644 index 6dcdf55aaf..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemIngotArceusAlloy2B/0.png deleted file mode 100644 index 27b227583c..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotAstralTitanium/0.png b/front/public/images/large/miscutils/itemIngotAstralTitanium/0.png deleted file mode 100644 index b0697e388b..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotBabbitAlloy/0.png b/front/public/images/large/miscutils/itemIngotBabbitAlloy/0.png deleted file mode 100644 index 277a1804a3..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotBlackMetal/0.png b/front/public/images/large/miscutils/itemIngotBlackMetal/0.png deleted file mode 100644 index 8b57683e35..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotBlackTitanium/0.png b/front/public/images/large/miscutils/itemIngotBlackTitanium/0.png deleted file mode 100644 index 566b756301..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotBloodSteel/0.png b/front/public/images/large/miscutils/itemIngotBloodSteel/0.png deleted file mode 100644 index 23a3cfb27e..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotBotmium/0.png b/front/public/images/large/miscutils/itemIngotBotmium/0.png deleted file mode 100644 index 9e5a97cb2d..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotCalifornium/0.png b/front/public/images/large/miscutils/itemIngotCalifornium/0.png deleted file mode 100644 index 8a8932b0e4..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotCelestialTungsten/0.png b/front/public/images/large/miscutils/itemIngotCelestialTungsten/0.png deleted file mode 100644 index 59e3c5a366..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotChromaticGlass/0.png b/front/public/images/large/miscutils/itemIngotChromaticGlass/0.png deleted file mode 100644 index 0ad4120878..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotCinobiteA243/0.png b/front/public/images/large/miscutils/itemIngotCinobiteA243/0.png deleted file mode 100644 index 7e2609e1f0..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotCurium/0.png b/front/public/images/large/miscutils/itemIngotCurium/0.png deleted file mode 100644 index 171a884994..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotDragonblood/0.png b/front/public/images/large/miscutils/itemIngotDragonblood/0.png deleted file mode 100644 index 36b01f77de..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotDysprosium/0.png b/front/public/images/large/miscutils/itemIngotDysprosium/0.png deleted file mode 100644 index e4689b18b9..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotEglinSteel/0.png b/front/public/images/large/miscutils/itemIngotEglinSteel/0.png deleted file mode 100644 index 1f2b56dd41..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotEnergyCrystal/0.png b/front/public/images/large/miscutils/itemIngotEnergyCrystal/0.png deleted file mode 100644 index 1562bba41f..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotErbium/0.png b/front/public/images/large/miscutils/itemIngotErbium/0.png deleted file mode 100644 index e33c295bc2..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotFermium/0.png b/front/public/images/large/miscutils/itemIngotFermium/0.png deleted file mode 100644 index ad8be00dba..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotGermanium/0.png b/front/public/images/large/miscutils/itemIngotGermanium/0.png deleted file mode 100644 index c669fc5901..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotGrisium/0.png b/front/public/images/large/miscutils/itemIngotGrisium/0.png deleted file mode 100644 index faf739b429..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHG1223/0.png b/front/public/images/large/miscutils/itemIngotHG1223/0.png deleted file mode 100644 index 9366e84844..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHS188A/0.png b/front/public/images/large/miscutils/itemIngotHS188A/0.png deleted file mode 100644 index a1e03a5586..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHafnium/0.png b/front/public/images/large/miscutils/itemIngotHafnium/0.png deleted file mode 100644 index 393bc6ffb5..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHastelloyC276/0.png b/front/public/images/large/miscutils/itemIngotHastelloyC276/0.png deleted file mode 100644 index b96ef2a13a..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHastelloyN/0.png b/front/public/images/large/miscutils/itemIngotHastelloyN/0.png deleted file mode 100644 index 13f589eee0..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHastelloyW/0.png b/front/public/images/large/miscutils/itemIngotHastelloyW/0.png deleted file mode 100644 index 0be18fcde6..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHastelloyX/0.png b/front/public/images/large/miscutils/itemIngotHastelloyX/0.png deleted file mode 100644 index 22eed52deb..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemIngotHeLiCoPtEr/0.png deleted file mode 100644 index 5792b1c4cc..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotHypogen/0.png b/front/public/images/large/miscutils/itemIngotHypogen/0.png deleted file mode 100644 index 61e7c6a2a2..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotIncoloy020/0.png b/front/public/images/large/miscutils/itemIngotIncoloy020/0.png deleted file mode 100644 index 4ba0750af1..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotIncoloyDS/0.png b/front/public/images/large/miscutils/itemIngotIncoloyDS/0.png deleted file mode 100644 index 4f35c76e27..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotIncoloyMA956/0.png b/front/public/images/large/miscutils/itemIngotIncoloyMA956/0.png deleted file mode 100644 index b4f4481878..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotInconel625/0.png b/front/public/images/large/miscutils/itemIngotInconel625/0.png deleted file mode 100644 index ca9783b20c..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotInconel690/0.png b/front/public/images/large/miscutils/itemIngotInconel690/0.png deleted file mode 100644 index e2332a2238..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotInconel792/0.png b/front/public/images/large/miscutils/itemIngotInconel792/0.png deleted file mode 100644 index 4fbd84ff3b..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotIndalloy140/0.png b/front/public/images/large/miscutils/itemIngotIndalloy140/0.png deleted file mode 100644 index 2a34aefd56..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotIodine/0.png b/front/public/images/large/miscutils/itemIngotIodine/0.png deleted file mode 100644 index 2797ef5367..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotLafiumCompound/0.png b/front/public/images/large/miscutils/itemIngotLafiumCompound/0.png deleted file mode 100644 index 4c8ba92d57..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotLaurenium/0.png b/front/public/images/large/miscutils/itemIngotLaurenium/0.png deleted file mode 100644 index a974d5f38e..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotLithium7/0.png b/front/public/images/large/miscutils/itemIngotLithium7/0.png deleted file mode 100644 index d8b25624e3..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotMaragingSteel250/0.png b/front/public/images/large/miscutils/itemIngotMaragingSteel250/0.png deleted file mode 100644 index bf91f0b420..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotMaragingSteel300/0.png b/front/public/images/large/miscutils/itemIngotMaragingSteel300/0.png deleted file mode 100644 index c7cf353ad8..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotMaragingSteel350/0.png b/front/public/images/large/miscutils/itemIngotMaragingSteel350/0.png deleted file mode 100644 index 0b446ee0a5..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotNeptunium/0.png b/front/public/images/large/miscutils/itemIngotNeptunium/0.png deleted file mode 100644 index dd1a1fae19..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemIngotNiobiumCarbide/0.png deleted file mode 100644 index 3d8bce304c..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotNitinol60/0.png b/front/public/images/large/miscutils/itemIngotNitinol60/0.png deleted file mode 100644 index de71f579e1..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotOctiron/0.png b/front/public/images/large/miscutils/itemIngotOctiron/0.png deleted file mode 100644 index 6a74e46cc7..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotPikyonium64B/0.png b/front/public/images/large/miscutils/itemIngotPikyonium64B/0.png deleted file mode 100644 index 514439b08b..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotPlutonium238/0.png b/front/public/images/large/miscutils/itemIngotPlutonium238/0.png deleted file mode 100644 index d059f169df..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotPolonium/0.png b/front/public/images/large/miscutils/itemIngotPolonium/0.png deleted file mode 100644 index f9ff0a0aff..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotPotin/0.png b/front/public/images/large/miscutils/itemIngotPotin/0.png deleted file mode 100644 index eb1f2cbb4b..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotPraseodymium/0.png b/front/public/images/large/miscutils/itemIngotPraseodymium/0.png deleted file mode 100644 index bb6949851d..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotPromethium/0.png b/front/public/images/large/miscutils/itemIngotPromethium/0.png deleted file mode 100644 index f2c22e1d25..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotPromethium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotProtactinium/0.png b/front/public/images/large/miscutils/itemIngotProtactinium/0.png deleted file mode 100644 index 5ec228510a..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotQuantum/0.png b/front/public/images/large/miscutils/itemIngotQuantum/0.png deleted file mode 100644 index 5a69af9e34..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotRadium/0.png b/front/public/images/large/miscutils/itemIngotRadium/0.png deleted file mode 100644 index 9385a72478..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotRhenium/0.png b/front/public/images/large/miscutils/itemIngotRhenium/0.png deleted file mode 100644 index ce22d61933..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotRhodium/0.png b/front/public/images/large/miscutils/itemIngotRhodium/0.png deleted file mode 100644 index e7a63a3193..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotRhugnor/0.png b/front/public/images/large/miscutils/itemIngotRhugnor/0.png deleted file mode 100644 index f88ba370c6..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotRunite/0.png b/front/public/images/large/miscutils/itemIngotRunite/0.png deleted file mode 100644 index 497fb197b8..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotRuthenium/0.png b/front/public/images/large/miscutils/itemIngotRuthenium/0.png deleted file mode 100644 index e7a63a3193..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotSelenium/0.png b/front/public/images/large/miscutils/itemIngotSelenium/0.png deleted file mode 100644 index 7b090f297c..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotSiliconCarbide/0.png b/front/public/images/large/miscutils/itemIngotSiliconCarbide/0.png deleted file mode 100644 index 2a5c826e7e..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotStaballoy/0.png b/front/public/images/large/miscutils/itemIngotStaballoy/0.png deleted file mode 100644 index 65f7f520fb..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotStellite/0.png b/front/public/images/large/miscutils/itemIngotStellite/0.png deleted file mode 100644 index 893406fd2b..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotStrontium/0.png b/front/public/images/large/miscutils/itemIngotStrontium/0.png deleted file mode 100644 index bf8952e698..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTalonite/0.png b/front/public/images/large/miscutils/itemIngotTalonite/0.png deleted file mode 100644 index bbc03bc7eb..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTantalloy60/0.png b/front/public/images/large/miscutils/itemIngotTantalloy60/0.png deleted file mode 100644 index bb8857e20e..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTantalloy61/0.png b/front/public/images/large/miscutils/itemIngotTantalloy61/0.png deleted file mode 100644 index 30d348c442..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTantalumCarbide/0.png b/front/public/images/large/miscutils/itemIngotTantalumCarbide/0.png deleted file mode 100644 index 467a2bc2fc..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTeflon/0.png b/front/public/images/large/miscutils/itemIngotTeflon/0.png deleted file mode 100644 index 426125af59..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTellurium/0.png b/front/public/images/large/miscutils/itemIngotTellurium/0.png deleted file mode 100644 index 2691732503..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotThallium/0.png b/front/public/images/large/miscutils/itemIngotThallium/0.png deleted file mode 100644 index 4ec0e29f6a..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotThorium232/0.png b/front/public/images/large/miscutils/itemIngotThorium232/0.png deleted file mode 100644 index e780cf36a3..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTitansteel/0.png b/front/public/images/large/miscutils/itemIngotTitansteel/0.png deleted file mode 100644 index 29264f3609..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemIngotTriniumNaquadahAlloy/0.png deleted file mode 100644 index b19cb966ec..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemIngotTriniumNaquadahCarbonite/0.png deleted file mode 100644 index b24d21625b..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemIngotTriniumTitaniumAlloy/0.png deleted file mode 100644 index 40e22de24c..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTumbaga/0.png b/front/public/images/large/miscutils/itemIngotTumbaga/0.png deleted file mode 100644 index 32d05c5ce8..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemIngotTungstenTitaniumCarbide/0.png deleted file mode 100644 index 6d704980b5..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotUranium232/0.png b/front/public/images/large/miscutils/itemIngotUranium232/0.png deleted file mode 100644 index 40f0f7709d..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotUranium233/0.png b/front/public/images/large/miscutils/itemIngotUranium233/0.png deleted file mode 100644 index 1b486537f1..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotWatertightSteel/0.png b/front/public/images/large/miscutils/itemIngotWatertightSteel/0.png deleted file mode 100644 index 090756250c..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotWhiteMetal/0.png b/front/public/images/large/miscutils/itemIngotWhiteMetal/0.png deleted file mode 100644 index b3657f0381..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotZeron100/0.png b/front/public/images/large/miscutils/itemIngotZeron100/0.png deleted file mode 100644 index cac0829cb5..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotZirconium/0.png b/front/public/images/large/miscutils/itemIngotZirconium/0.png deleted file mode 100644 index 5683468e77..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIngotZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemIngotZirconiumCarbide/0.png deleted file mode 100644 index e7ae5993f3..0000000000 Binary files a/front/public/images/large/miscutils/itemIngotZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIridiumRotorBlade/0.png b/front/public/images/large/miscutils/itemIridiumRotorBlade/0.png deleted file mode 100644 index d1715851b1..0000000000 Binary files a/front/public/images/large/miscutils/itemIridiumRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemIridiumShaft/0.png b/front/public/images/large/miscutils/itemIridiumShaft/0.png deleted file mode 100644 index c410920550..0000000000 Binary files a/front/public/images/large/miscutils/itemIridiumShaft/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemLavaFilter/0.png b/front/public/images/large/miscutils/itemLavaFilter/0.png deleted file mode 100644 index 37f02a4cc7..0000000000 Binary files a/front/public/images/large/miscutils/itemLavaFilter/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemNuggetAbyssalAlloy/0.png deleted file mode 100644 index fc6c06b881..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemNuggetAdvancedNitinol/0.png deleted file mode 100644 index 321057280a..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetAncientGranite/0.png b/front/public/images/large/miscutils/itemNuggetAncientGranite/0.png deleted file mode 100644 index e4b64b02da..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetArcanite/0.png b/front/public/images/large/miscutils/itemNuggetArcanite/0.png deleted file mode 100644 index 4356b72c94..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemNuggetArceusAlloy2B/0.png deleted file mode 100644 index f6058bfb01..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetAstralTitanium/0.png b/front/public/images/large/miscutils/itemNuggetAstralTitanium/0.png deleted file mode 100644 index e0f29c9706..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetBabbitAlloy/0.png b/front/public/images/large/miscutils/itemNuggetBabbitAlloy/0.png deleted file mode 100644 index b1b0beb10f..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetBlackMetal/0.png b/front/public/images/large/miscutils/itemNuggetBlackMetal/0.png deleted file mode 100644 index 93d326c521..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetBlackTitanium/0.png b/front/public/images/large/miscutils/itemNuggetBlackTitanium/0.png deleted file mode 100644 index 524289b9d1..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetBloodSteel/0.png b/front/public/images/large/miscutils/itemNuggetBloodSteel/0.png deleted file mode 100644 index b7361cf403..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetBotmium/0.png b/front/public/images/large/miscutils/itemNuggetBotmium/0.png deleted file mode 100644 index 25f8701056..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetCalifornium/0.png b/front/public/images/large/miscutils/itemNuggetCalifornium/0.png deleted file mode 100644 index 59566e2cc0..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetCalifornium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetCelestialTungsten/0.png b/front/public/images/large/miscutils/itemNuggetCelestialTungsten/0.png deleted file mode 100644 index 2f430e3734..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetChromaticGlass/0.png b/front/public/images/large/miscutils/itemNuggetChromaticGlass/0.png deleted file mode 100644 index e2a0ead1f4..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetCinobiteA243/0.png b/front/public/images/large/miscutils/itemNuggetCinobiteA243/0.png deleted file mode 100644 index 1393296e83..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetCurium/0.png b/front/public/images/large/miscutils/itemNuggetCurium/0.png deleted file mode 100644 index 73bac2e407..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetCurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetDragonblood/0.png b/front/public/images/large/miscutils/itemNuggetDragonblood/0.png deleted file mode 100644 index dd32c62ec6..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetDysprosium/0.png b/front/public/images/large/miscutils/itemNuggetDysprosium/0.png deleted file mode 100644 index 99c63b4398..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetEglinSteel/0.png b/front/public/images/large/miscutils/itemNuggetEglinSteel/0.png deleted file mode 100644 index cfaada7769..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetEnergyCrystal/0.png b/front/public/images/large/miscutils/itemNuggetEnergyCrystal/0.png deleted file mode 100644 index b8cd0957a7..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetErbium/0.png b/front/public/images/large/miscutils/itemNuggetErbium/0.png deleted file mode 100644 index e0bef59d38..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetFermium/0.png b/front/public/images/large/miscutils/itemNuggetFermium/0.png deleted file mode 100644 index 3562d13029..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetFermium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetGermanium/0.png b/front/public/images/large/miscutils/itemNuggetGermanium/0.png deleted file mode 100644 index 166d56c1b8..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetGrisium/0.png b/front/public/images/large/miscutils/itemNuggetGrisium/0.png deleted file mode 100644 index 903443b600..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHG1223/0.png b/front/public/images/large/miscutils/itemNuggetHG1223/0.png deleted file mode 100644 index 7e446b33b4..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHS188A/0.png b/front/public/images/large/miscutils/itemNuggetHS188A/0.png deleted file mode 100644 index 2b05a5ec76..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHafnium/0.png b/front/public/images/large/miscutils/itemNuggetHafnium/0.png deleted file mode 100644 index 15905a34bf..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHastelloyC276/0.png b/front/public/images/large/miscutils/itemNuggetHastelloyC276/0.png deleted file mode 100644 index ef79f4f1e4..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHastelloyN/0.png b/front/public/images/large/miscutils/itemNuggetHastelloyN/0.png deleted file mode 100644 index 5cc0e61720..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHastelloyW/0.png b/front/public/images/large/miscutils/itemNuggetHastelloyW/0.png deleted file mode 100644 index b9d7b3bf31..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHastelloyX/0.png b/front/public/images/large/miscutils/itemNuggetHastelloyX/0.png deleted file mode 100644 index 7a44691a5a..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemNuggetHeLiCoPtEr/0.png deleted file mode 100644 index c668578c6f..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetHypogen/0.png b/front/public/images/large/miscutils/itemNuggetHypogen/0.png deleted file mode 100644 index 1bfcea16e4..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetIncoloy020/0.png b/front/public/images/large/miscutils/itemNuggetIncoloy020/0.png deleted file mode 100644 index f66ec41ec4..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetIncoloyDS/0.png b/front/public/images/large/miscutils/itemNuggetIncoloyDS/0.png deleted file mode 100644 index 49a659a6fd..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetIncoloyMA956/0.png b/front/public/images/large/miscutils/itemNuggetIncoloyMA956/0.png deleted file mode 100644 index f9189e7635..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetInconel625/0.png b/front/public/images/large/miscutils/itemNuggetInconel625/0.png deleted file mode 100644 index cc9409ea77..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetInconel690/0.png b/front/public/images/large/miscutils/itemNuggetInconel690/0.png deleted file mode 100644 index 300d72218a..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetInconel792/0.png b/front/public/images/large/miscutils/itemNuggetInconel792/0.png deleted file mode 100644 index 5b1116a23d..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetIndalloy140/0.png b/front/public/images/large/miscutils/itemNuggetIndalloy140/0.png deleted file mode 100644 index 294c87816f..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetIodine/0.png b/front/public/images/large/miscutils/itemNuggetIodine/0.png deleted file mode 100644 index 870025adbe..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetLafiumCompound/0.png b/front/public/images/large/miscutils/itemNuggetLafiumCompound/0.png deleted file mode 100644 index 58723038f7..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetLaurenium/0.png b/front/public/images/large/miscutils/itemNuggetLaurenium/0.png deleted file mode 100644 index 82acfd92a4..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetLithium7/0.png b/front/public/images/large/miscutils/itemNuggetLithium7/0.png deleted file mode 100644 index 9578501308..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetMaragingSteel250/0.png b/front/public/images/large/miscutils/itemNuggetMaragingSteel250/0.png deleted file mode 100644 index 44f4c89edb..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetMaragingSteel300/0.png b/front/public/images/large/miscutils/itemNuggetMaragingSteel300/0.png deleted file mode 100644 index fec4a69749..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetMaragingSteel350/0.png b/front/public/images/large/miscutils/itemNuggetMaragingSteel350/0.png deleted file mode 100644 index 5cea2826d3..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetNeptunium/0.png b/front/public/images/large/miscutils/itemNuggetNeptunium/0.png deleted file mode 100644 index 2c7f619e0d..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetNeptunium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemNuggetNiobiumCarbide/0.png deleted file mode 100644 index 25bb687cdc..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetNitinol60/0.png b/front/public/images/large/miscutils/itemNuggetNitinol60/0.png deleted file mode 100644 index 2b7663c687..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetOctiron/0.png b/front/public/images/large/miscutils/itemNuggetOctiron/0.png deleted file mode 100644 index 9945986c7c..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetPikyonium64B/0.png b/front/public/images/large/miscutils/itemNuggetPikyonium64B/0.png deleted file mode 100644 index f1ada0f3a6..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetPlutonium238/0.png b/front/public/images/large/miscutils/itemNuggetPlutonium238/0.png deleted file mode 100644 index a342946949..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetPolonium/0.png b/front/public/images/large/miscutils/itemNuggetPolonium/0.png deleted file mode 100644 index 35880fc80b..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetPolonium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetPotin/0.png b/front/public/images/large/miscutils/itemNuggetPotin/0.png deleted file mode 100644 index 5990c628ba..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetPraseodymium/0.png b/front/public/images/large/miscutils/itemNuggetPraseodymium/0.png deleted file mode 100644 index a49fbbad3f..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetPromethium/0.png b/front/public/images/large/miscutils/itemNuggetPromethium/0.png deleted file mode 100644 index 02dc440733..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetPromethium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetProtactinium/0.png b/front/public/images/large/miscutils/itemNuggetProtactinium/0.png deleted file mode 100644 index 32bb525c74..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetProtactinium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetQuantum/0.png b/front/public/images/large/miscutils/itemNuggetQuantum/0.png deleted file mode 100644 index 3841f5ed23..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetRadium/0.png b/front/public/images/large/miscutils/itemNuggetRadium/0.png deleted file mode 100644 index 9e400fc05d..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetRadium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetRhenium/0.png b/front/public/images/large/miscutils/itemNuggetRhenium/0.png deleted file mode 100644 index 383bd822fc..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetRhodium/0.png b/front/public/images/large/miscutils/itemNuggetRhodium/0.png deleted file mode 100644 index 5ec673928d..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetRhugnor/0.png b/front/public/images/large/miscutils/itemNuggetRhugnor/0.png deleted file mode 100644 index faec1dfdd3..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetRunite/0.png b/front/public/images/large/miscutils/itemNuggetRunite/0.png deleted file mode 100644 index f70f919da1..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetRuthenium/0.png b/front/public/images/large/miscutils/itemNuggetRuthenium/0.png deleted file mode 100644 index 5ec673928d..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetSelenium/0.png b/front/public/images/large/miscutils/itemNuggetSelenium/0.png deleted file mode 100644 index 5047ed920c..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetSiliconCarbide/0.png b/front/public/images/large/miscutils/itemNuggetSiliconCarbide/0.png deleted file mode 100644 index b956664abd..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetStaballoy/0.png b/front/public/images/large/miscutils/itemNuggetStaballoy/0.png deleted file mode 100644 index 61b84381f9..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetStellite/0.png b/front/public/images/large/miscutils/itemNuggetStellite/0.png deleted file mode 100644 index 90d0cfcb05..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetStrontium/0.png b/front/public/images/large/miscutils/itemNuggetStrontium/0.png deleted file mode 100644 index 02aefb51f3..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTalonite/0.png b/front/public/images/large/miscutils/itemNuggetTalonite/0.png deleted file mode 100644 index db2e914f9c..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTantalloy60/0.png b/front/public/images/large/miscutils/itemNuggetTantalloy60/0.png deleted file mode 100644 index 86155fdf6a..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTantalloy61/0.png b/front/public/images/large/miscutils/itemNuggetTantalloy61/0.png deleted file mode 100644 index 97de52aa2e..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTantalumCarbide/0.png b/front/public/images/large/miscutils/itemNuggetTantalumCarbide/0.png deleted file mode 100644 index e2bcb46660..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTeflon/0.png b/front/public/images/large/miscutils/itemNuggetTeflon/0.png deleted file mode 100644 index cb616f8d88..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTellurium/0.png b/front/public/images/large/miscutils/itemNuggetTellurium/0.png deleted file mode 100644 index ceccde799f..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetThallium/0.png b/front/public/images/large/miscutils/itemNuggetThallium/0.png deleted file mode 100644 index 4047196c7c..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetThorium232/0.png b/front/public/images/large/miscutils/itemNuggetThorium232/0.png deleted file mode 100644 index fa6146265f..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTitansteel/0.png b/front/public/images/large/miscutils/itemNuggetTitansteel/0.png deleted file mode 100644 index 2bac418e49..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemNuggetTriniumNaquadahAlloy/0.png deleted file mode 100644 index 3dd6c754b3..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemNuggetTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 8f9720b3e6..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemNuggetTriniumTitaniumAlloy/0.png deleted file mode 100644 index 67d8dc34ed..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTumbaga/0.png b/front/public/images/large/miscutils/itemNuggetTumbaga/0.png deleted file mode 100644 index f38e7d0011..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemNuggetTungstenTitaniumCarbide/0.png deleted file mode 100644 index 675ecbae7b..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetUranium232/0.png b/front/public/images/large/miscutils/itemNuggetUranium232/0.png deleted file mode 100644 index 87b031626b..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetUranium233/0.png b/front/public/images/large/miscutils/itemNuggetUranium233/0.png deleted file mode 100644 index 4fe99ed97e..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetWatertightSteel/0.png b/front/public/images/large/miscutils/itemNuggetWatertightSteel/0.png deleted file mode 100644 index 3817797a1e..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetWhiteMetal/0.png b/front/public/images/large/miscutils/itemNuggetWhiteMetal/0.png deleted file mode 100644 index 8cbe20377a..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetZeron100/0.png b/front/public/images/large/miscutils/itemNuggetZeron100/0.png deleted file mode 100644 index dbc02cf2e7..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetZirconium/0.png b/front/public/images/large/miscutils/itemNuggetZirconium/0.png deleted file mode 100644 index b123e8775c..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemNuggetZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemNuggetZirconiumCarbide/0.png deleted file mode 100644 index 067cf8c2ca..0000000000 Binary files a/front/public/images/large/miscutils/itemNuggetZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemPlateAbyssalAlloy/0.png deleted file mode 100644 index e87f455c98..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemPlateAdvancedNitinol/0.png deleted file mode 100644 index 6d7d870100..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateAncientGranite/0.png b/front/public/images/large/miscutils/itemPlateAncientGranite/0.png deleted file mode 100644 index da15834f49..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateArcanite/0.png b/front/public/images/large/miscutils/itemPlateArcanite/0.png deleted file mode 100644 index 1b228fa38e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemPlateArceusAlloy2B/0.png deleted file mode 100644 index 078c182fcc..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateAstralTitanium/0.png b/front/public/images/large/miscutils/itemPlateAstralTitanium/0.png deleted file mode 100644 index 43dd0ded80..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateBabbitAlloy/0.png b/front/public/images/large/miscutils/itemPlateBabbitAlloy/0.png deleted file mode 100644 index 117899be22..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateBlackMetal/0.png b/front/public/images/large/miscutils/itemPlateBlackMetal/0.png deleted file mode 100644 index 61cbd16bd5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateBlackTitanium/0.png b/front/public/images/large/miscutils/itemPlateBlackTitanium/0.png deleted file mode 100644 index 76fabfd16f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateBloodSteel/0.png b/front/public/images/large/miscutils/itemPlateBloodSteel/0.png deleted file mode 100644 index b6f6ea142c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateBotmium/0.png b/front/public/images/large/miscutils/itemPlateBotmium/0.png deleted file mode 100644 index aca9c793cf..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateCelestialTungsten/0.png b/front/public/images/large/miscutils/itemPlateCelestialTungsten/0.png deleted file mode 100644 index 0bccbd6f3e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateChromaticGlass/0.png b/front/public/images/large/miscutils/itemPlateChromaticGlass/0.png deleted file mode 100644 index 3f7d55293f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateCinobiteA243/0.png b/front/public/images/large/miscutils/itemPlateCinobiteA243/0.png deleted file mode 100644 index 1d5969b957..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateClay/0.png b/front/public/images/large/miscutils/itemPlateClay/0.png deleted file mode 100644 index 9ad0997b3d..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateClay/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemPlateDenseAbyssalAlloy/0.png deleted file mode 100644 index 1bec23e2b5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseArcanite/0.png b/front/public/images/large/miscutils/itemPlateDenseArcanite/0.png deleted file mode 100644 index 2bf36f7089..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemPlateDenseArceusAlloy2B/0.png deleted file mode 100644 index a2e8fd5111..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseAstralTitanium/0.png b/front/public/images/large/miscutils/itemPlateDenseAstralTitanium/0.png deleted file mode 100644 index 5626f235fa..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseBlackMetal/0.png b/front/public/images/large/miscutils/itemPlateDenseBlackMetal/0.png deleted file mode 100644 index 0bd9a99708..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseBloodSteel/0.png b/front/public/images/large/miscutils/itemPlateDenseBloodSteel/0.png deleted file mode 100644 index e9660a1661..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseBotmium/0.png b/front/public/images/large/miscutils/itemPlateDenseBotmium/0.png deleted file mode 100644 index 1de7ca3d4d..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseCelestialTungsten/0.png b/front/public/images/large/miscutils/itemPlateDenseCelestialTungsten/0.png deleted file mode 100644 index a795ecf45d..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseChromaticGlass/0.png b/front/public/images/large/miscutils/itemPlateDenseChromaticGlass/0.png deleted file mode 100644 index 0c9cecacc2..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseCinobiteA243/0.png b/front/public/images/large/miscutils/itemPlateDenseCinobiteA243/0.png deleted file mode 100644 index f1ae7f7ad1..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseDysprosium/0.png b/front/public/images/large/miscutils/itemPlateDenseDysprosium/0.png deleted file mode 100644 index 75d8db7d53..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseEglinSteel/0.png b/front/public/images/large/miscutils/itemPlateDenseEglinSteel/0.png deleted file mode 100644 index 9b5cbdeff3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseEnergyCrystal/0.png b/front/public/images/large/miscutils/itemPlateDenseEnergyCrystal/0.png deleted file mode 100644 index 1c647bc523..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseErbium/0.png b/front/public/images/large/miscutils/itemPlateDenseErbium/0.png deleted file mode 100644 index 4a97f334e4..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseGermanium/0.png b/front/public/images/large/miscutils/itemPlateDenseGermanium/0.png deleted file mode 100644 index 35b37cec8a..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseGrisium/0.png b/front/public/images/large/miscutils/itemPlateDenseGrisium/0.png deleted file mode 100644 index 5abd538f01..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHS188A/0.png b/front/public/images/large/miscutils/itemPlateDenseHS188A/0.png deleted file mode 100644 index 2ffbb11a31..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHafnium/0.png b/front/public/images/large/miscutils/itemPlateDenseHafnium/0.png deleted file mode 100644 index 4e9488ab0d..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHastelloyC276/0.png b/front/public/images/large/miscutils/itemPlateDenseHastelloyC276/0.png deleted file mode 100644 index be6a79d379..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHastelloyN/0.png b/front/public/images/large/miscutils/itemPlateDenseHastelloyN/0.png deleted file mode 100644 index 8a05bc73ab..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHastelloyW/0.png b/front/public/images/large/miscutils/itemPlateDenseHastelloyW/0.png deleted file mode 100644 index d5abfab43e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHastelloyX/0.png b/front/public/images/large/miscutils/itemPlateDenseHastelloyX/0.png deleted file mode 100644 index a0e1c11e49..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemPlateDenseHeLiCoPtEr/0.png deleted file mode 100644 index 1c2a8daa88..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseHypogen/0.png b/front/public/images/large/miscutils/itemPlateDenseHypogen/0.png deleted file mode 100644 index 4140c853a9..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseIncoloy020/0.png b/front/public/images/large/miscutils/itemPlateDenseIncoloy020/0.png deleted file mode 100644 index 17b92721bb..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseIncoloyDS/0.png b/front/public/images/large/miscutils/itemPlateDenseIncoloyDS/0.png deleted file mode 100644 index 75041a2617..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseIncoloyMA956/0.png b/front/public/images/large/miscutils/itemPlateDenseIncoloyMA956/0.png deleted file mode 100644 index 2e46c9dda3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseInconel625/0.png b/front/public/images/large/miscutils/itemPlateDenseInconel625/0.png deleted file mode 100644 index 2a61d126e0..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseInconel690/0.png b/front/public/images/large/miscutils/itemPlateDenseInconel690/0.png deleted file mode 100644 index f4fe700602..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseInconel792/0.png b/front/public/images/large/miscutils/itemPlateDenseInconel792/0.png deleted file mode 100644 index a92ca02378..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseIodine/0.png b/front/public/images/large/miscutils/itemPlateDenseIodine/0.png deleted file mode 100644 index 5d5b2c41a5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseLafiumCompound/0.png b/front/public/images/large/miscutils/itemPlateDenseLafiumCompound/0.png deleted file mode 100644 index ed1bd17c5e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseLaurenium/0.png b/front/public/images/large/miscutils/itemPlateDenseLaurenium/0.png deleted file mode 100644 index 175d93929f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseMaragingSteel250/0.png b/front/public/images/large/miscutils/itemPlateDenseMaragingSteel250/0.png deleted file mode 100644 index 1fb3604151..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseMaragingSteel300/0.png b/front/public/images/large/miscutils/itemPlateDenseMaragingSteel300/0.png deleted file mode 100644 index ccdbdefce8..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseMaragingSteel350/0.png b/front/public/images/large/miscutils/itemPlateDenseMaragingSteel350/0.png deleted file mode 100644 index 615a55c268..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDenseNiobiumCarbide/0.png deleted file mode 100644 index 20ed291264..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseNitinol60/0.png b/front/public/images/large/miscutils/itemPlateDenseNitinol60/0.png deleted file mode 100644 index fc3f30ec88..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseOctiron/0.png b/front/public/images/large/miscutils/itemPlateDenseOctiron/0.png deleted file mode 100644 index 54cb9e66c0..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDensePikyonium64B/0.png b/front/public/images/large/miscutils/itemPlateDensePikyonium64B/0.png deleted file mode 100644 index e2162bcc18..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDensePikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDensePotin/0.png b/front/public/images/large/miscutils/itemPlateDensePotin/0.png deleted file mode 100644 index 70e9e3e15e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDensePotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDensePraseodymium/0.png b/front/public/images/large/miscutils/itemPlateDensePraseodymium/0.png deleted file mode 100644 index c3e167552b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDensePraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseQuantum/0.png b/front/public/images/large/miscutils/itemPlateDenseQuantum/0.png deleted file mode 100644 index 9381c4d118..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseRhenium/0.png b/front/public/images/large/miscutils/itemPlateDenseRhenium/0.png deleted file mode 100644 index 7a69981db1..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseRhodium/0.png b/front/public/images/large/miscutils/itemPlateDenseRhodium/0.png deleted file mode 100644 index db5e831c64..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseRuthenium/0.png b/front/public/images/large/miscutils/itemPlateDenseRuthenium/0.png deleted file mode 100644 index db5e831c64..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseSelenium/0.png b/front/public/images/large/miscutils/itemPlateDenseSelenium/0.png deleted file mode 100644 index 949d22345b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseSiliconCarbide/0.png b/front/public/images/large/miscutils/itemPlateDenseSiliconCarbide/0.png deleted file mode 100644 index fd7404e3f3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseStaballoy/0.png b/front/public/images/large/miscutils/itemPlateDenseStaballoy/0.png deleted file mode 100644 index b6020819a2..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseStellite/0.png b/front/public/images/large/miscutils/itemPlateDenseStellite/0.png deleted file mode 100644 index 9394929204..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseStrontium/0.png b/front/public/images/large/miscutils/itemPlateDenseStrontium/0.png deleted file mode 100644 index 54b6b825d8..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTalonite/0.png b/front/public/images/large/miscutils/itemPlateDenseTalonite/0.png deleted file mode 100644 index 50654324f3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTantalloy60/0.png b/front/public/images/large/miscutils/itemPlateDenseTantalloy60/0.png deleted file mode 100644 index f285669549..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTantalloy61/0.png b/front/public/images/large/miscutils/itemPlateDenseTantalloy61/0.png deleted file mode 100644 index 9a7a7d0866..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTantalumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDenseTantalumCarbide/0.png deleted file mode 100644 index cdb28f89f7..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTellurium/0.png b/front/public/images/large/miscutils/itemPlateDenseTellurium/0.png deleted file mode 100644 index 56f73d89fa..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseThallium/0.png b/front/public/images/large/miscutils/itemPlateDenseThallium/0.png deleted file mode 100644 index c1f9e52e54..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTitansteel/0.png b/front/public/images/large/miscutils/itemPlateDenseTitansteel/0.png deleted file mode 100644 index 080a9802d0..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemPlateDenseTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 33f18b7210..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemPlateDenseTriniumTitaniumAlloy/0.png deleted file mode 100644 index 6da4ffce56..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTumbaga/0.png b/front/public/images/large/miscutils/itemPlateDenseTumbaga/0.png deleted file mode 100644 index 0217b0ab0f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDenseTungstenTitaniumCarbide/0.png deleted file mode 100644 index b26d8c5eca..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseWatertightSteel/0.png b/front/public/images/large/miscutils/itemPlateDenseWatertightSteel/0.png deleted file mode 100644 index d72154d39c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseWhiteMetal/0.png b/front/public/images/large/miscutils/itemPlateDenseWhiteMetal/0.png deleted file mode 100644 index 662d1491b8..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseZeron100/0.png b/front/public/images/large/miscutils/itemPlateDenseZeron100/0.png deleted file mode 100644 index 7604e00023..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseZirconium/0.png b/front/public/images/large/miscutils/itemPlateDenseZirconium/0.png deleted file mode 100644 index e1e00ab3b4..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDenseZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDenseZirconiumCarbide/0.png deleted file mode 100644 index 0c3dcac59b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDenseZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemPlateDoubleAbyssalAlloy/0.png deleted file mode 100644 index 37b962d2a0..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleAdvancedNitinol/0.png b/front/public/images/large/miscutils/itemPlateDoubleAdvancedNitinol/0.png deleted file mode 100644 index 2e8166dd42..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleAncientGranite/0.png b/front/public/images/large/miscutils/itemPlateDoubleAncientGranite/0.png deleted file mode 100644 index 76f393edd7..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleArcanite/0.png b/front/public/images/large/miscutils/itemPlateDoubleArcanite/0.png deleted file mode 100644 index cdbf8726b2..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemPlateDoubleArceusAlloy2B/0.png deleted file mode 100644 index b129bf0cf5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleAstralTitanium/0.png b/front/public/images/large/miscutils/itemPlateDoubleAstralTitanium/0.png deleted file mode 100644 index 2e4dcb2f68..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleBabbitAlloy/0.png b/front/public/images/large/miscutils/itemPlateDoubleBabbitAlloy/0.png deleted file mode 100644 index 4684761180..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleBlackMetal/0.png b/front/public/images/large/miscutils/itemPlateDoubleBlackMetal/0.png deleted file mode 100644 index b190853008..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleBlackTitanium/0.png b/front/public/images/large/miscutils/itemPlateDoubleBlackTitanium/0.png deleted file mode 100644 index 4ae9038aa1..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleBloodSteel/0.png b/front/public/images/large/miscutils/itemPlateDoubleBloodSteel/0.png deleted file mode 100644 index 000efcc130..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleBotmium/0.png b/front/public/images/large/miscutils/itemPlateDoubleBotmium/0.png deleted file mode 100644 index 757eedd5a6..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleCelestialTungsten/0.png b/front/public/images/large/miscutils/itemPlateDoubleCelestialTungsten/0.png deleted file mode 100644 index b0d97d4b32..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleChromaticGlass/0.png b/front/public/images/large/miscutils/itemPlateDoubleChromaticGlass/0.png deleted file mode 100644 index 48c8a2108f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleCinobiteA243/0.png b/front/public/images/large/miscutils/itemPlateDoubleCinobiteA243/0.png deleted file mode 100644 index 36cd6c9dac..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleClay/0.png b/front/public/images/large/miscutils/itemPlateDoubleClay/0.png deleted file mode 100644 index 9a708f071c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleClay/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleDragonblood/0.png b/front/public/images/large/miscutils/itemPlateDoubleDragonblood/0.png deleted file mode 100644 index ca98a894ba..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleDysprosium/0.png b/front/public/images/large/miscutils/itemPlateDoubleDysprosium/0.png deleted file mode 100644 index 5244b36b3f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleEglinSteel/0.png b/front/public/images/large/miscutils/itemPlateDoubleEglinSteel/0.png deleted file mode 100644 index 1180c81556..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleEnergyCrystal/0.png b/front/public/images/large/miscutils/itemPlateDoubleEnergyCrystal/0.png deleted file mode 100644 index f5116cacd4..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleErbium/0.png b/front/public/images/large/miscutils/itemPlateDoubleErbium/0.png deleted file mode 100644 index cab744d640..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleGermanium/0.png b/front/public/images/large/miscutils/itemPlateDoubleGermanium/0.png deleted file mode 100644 index f77ab091d0..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleGrisium/0.png b/front/public/images/large/miscutils/itemPlateDoubleGrisium/0.png deleted file mode 100644 index a5c8e92a06..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHG1223/0.png b/front/public/images/large/miscutils/itemPlateDoubleHG1223/0.png deleted file mode 100644 index 7e5ae4ba62..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHS188A/0.png b/front/public/images/large/miscutils/itemPlateDoubleHS188A/0.png deleted file mode 100644 index 29b5653310..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHafnium/0.png b/front/public/images/large/miscutils/itemPlateDoubleHafnium/0.png deleted file mode 100644 index bc75834acf..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHastelloyC276/0.png b/front/public/images/large/miscutils/itemPlateDoubleHastelloyC276/0.png deleted file mode 100644 index 2680c97162..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHastelloyN/0.png b/front/public/images/large/miscutils/itemPlateDoubleHastelloyN/0.png deleted file mode 100644 index 289f896f56..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHastelloyW/0.png b/front/public/images/large/miscutils/itemPlateDoubleHastelloyW/0.png deleted file mode 100644 index d09382651f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHastelloyX/0.png b/front/public/images/large/miscutils/itemPlateDoubleHastelloyX/0.png deleted file mode 100644 index 284970ea95..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemPlateDoubleHeLiCoPtEr/0.png deleted file mode 100644 index 68b9cb1076..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleHypogen/0.png b/front/public/images/large/miscutils/itemPlateDoubleHypogen/0.png deleted file mode 100644 index 1f17ace47d..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleIncoloy020/0.png b/front/public/images/large/miscutils/itemPlateDoubleIncoloy020/0.png deleted file mode 100644 index 4e9fcde596..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleIncoloyDS/0.png b/front/public/images/large/miscutils/itemPlateDoubleIncoloyDS/0.png deleted file mode 100644 index f76fa20c87..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleIncoloyMA956/0.png b/front/public/images/large/miscutils/itemPlateDoubleIncoloyMA956/0.png deleted file mode 100644 index e30fd2c6b5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleInconel625/0.png b/front/public/images/large/miscutils/itemPlateDoubleInconel625/0.png deleted file mode 100644 index b6f9055f60..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleInconel690/0.png b/front/public/images/large/miscutils/itemPlateDoubleInconel690/0.png deleted file mode 100644 index 4c50a1ba2b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleInconel792/0.png b/front/public/images/large/miscutils/itemPlateDoubleInconel792/0.png deleted file mode 100644 index 0fde366bb6..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleIndalloy140/0.png b/front/public/images/large/miscutils/itemPlateDoubleIndalloy140/0.png deleted file mode 100644 index 9ac4334032..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleIodine/0.png b/front/public/images/large/miscutils/itemPlateDoubleIodine/0.png deleted file mode 100644 index bd4bfa47c2..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleLafiumCompound/0.png b/front/public/images/large/miscutils/itemPlateDoubleLafiumCompound/0.png deleted file mode 100644 index 3d25c4431c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleLaurenium/0.png b/front/public/images/large/miscutils/itemPlateDoubleLaurenium/0.png deleted file mode 100644 index 215e769c24..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleLithium7/0.png b/front/public/images/large/miscutils/itemPlateDoubleLithium7/0.png deleted file mode 100644 index 4fc4869444..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel250/0.png b/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel250/0.png deleted file mode 100644 index 913c3a76c4..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel300/0.png b/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel300/0.png deleted file mode 100644 index 092eace449..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel350/0.png b/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel350/0.png deleted file mode 100644 index 516469bc30..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDoubleNiobiumCarbide/0.png deleted file mode 100644 index 9bba026c1f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleNitinol60/0.png b/front/public/images/large/miscutils/itemPlateDoubleNitinol60/0.png deleted file mode 100644 index 16e0d2b53e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleOctiron/0.png b/front/public/images/large/miscutils/itemPlateDoubleOctiron/0.png deleted file mode 100644 index 3d46332f4e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoublePikyonium64B/0.png b/front/public/images/large/miscutils/itemPlateDoublePikyonium64B/0.png deleted file mode 100644 index be7412cf13..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoublePikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoublePotin/0.png b/front/public/images/large/miscutils/itemPlateDoublePotin/0.png deleted file mode 100644 index dfbe319d6a..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoublePotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoublePraseodymium/0.png b/front/public/images/large/miscutils/itemPlateDoublePraseodymium/0.png deleted file mode 100644 index 682eb7af08..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoublePraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleQuantum/0.png b/front/public/images/large/miscutils/itemPlateDoubleQuantum/0.png deleted file mode 100644 index 3581bc86c2..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleRhenium/0.png b/front/public/images/large/miscutils/itemPlateDoubleRhenium/0.png deleted file mode 100644 index cb4a0e2242..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleRhodium/0.png b/front/public/images/large/miscutils/itemPlateDoubleRhodium/0.png deleted file mode 100644 index 1b71680c1b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleRhugnor/0.png b/front/public/images/large/miscutils/itemPlateDoubleRhugnor/0.png deleted file mode 100644 index df5fc27c48..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleRunite/0.png b/front/public/images/large/miscutils/itemPlateDoubleRunite/0.png deleted file mode 100644 index c66a0ac8ad..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleRuthenium/0.png b/front/public/images/large/miscutils/itemPlateDoubleRuthenium/0.png deleted file mode 100644 index 1b71680c1b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleSelenium/0.png b/front/public/images/large/miscutils/itemPlateDoubleSelenium/0.png deleted file mode 100644 index c78b8fe0e1..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleSiliconCarbide/0.png b/front/public/images/large/miscutils/itemPlateDoubleSiliconCarbide/0.png deleted file mode 100644 index 02ee733b9e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleStaballoy/0.png b/front/public/images/large/miscutils/itemPlateDoubleStaballoy/0.png deleted file mode 100644 index c413202e86..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleStellite/0.png b/front/public/images/large/miscutils/itemPlateDoubleStellite/0.png deleted file mode 100644 index 60574782c3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleStrontium/0.png b/front/public/images/large/miscutils/itemPlateDoubleStrontium/0.png deleted file mode 100644 index 835cc0d822..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTalonite/0.png b/front/public/images/large/miscutils/itemPlateDoubleTalonite/0.png deleted file mode 100644 index eec032e609..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTantalloy60/0.png b/front/public/images/large/miscutils/itemPlateDoubleTantalloy60/0.png deleted file mode 100644 index 26038961cf..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTantalloy61/0.png b/front/public/images/large/miscutils/itemPlateDoubleTantalloy61/0.png deleted file mode 100644 index 85ae5d16b9..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTantalumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDoubleTantalumCarbide/0.png deleted file mode 100644 index 9ea4aafe49..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTeflon/0.png b/front/public/images/large/miscutils/itemPlateDoubleTeflon/0.png deleted file mode 100644 index d667838921..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTellurium/0.png b/front/public/images/large/miscutils/itemPlateDoubleTellurium/0.png deleted file mode 100644 index b6caf3889e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleThallium/0.png b/front/public/images/large/miscutils/itemPlateDoubleThallium/0.png deleted file mode 100644 index 994cf7b527..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleThorium232/0.png b/front/public/images/large/miscutils/itemPlateDoubleThorium232/0.png deleted file mode 100644 index 9d7be76a39..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTitansteel/0.png b/front/public/images/large/miscutils/itemPlateDoubleTitansteel/0.png deleted file mode 100644 index 74b303e80b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemPlateDoubleTriniumNaquadahAlloy/0.png deleted file mode 100644 index ec66279578..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemPlateDoubleTriniumNaquadahCarbonite/0.png deleted file mode 100644 index f91e6ce3aa..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemPlateDoubleTriniumTitaniumAlloy/0.png deleted file mode 100644 index 1e52a760dc..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTumbaga/0.png b/front/public/images/large/miscutils/itemPlateDoubleTumbaga/0.png deleted file mode 100644 index e38d21af53..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDoubleTungstenTitaniumCarbide/0.png deleted file mode 100644 index 0c20edec8c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleWatertightSteel/0.png b/front/public/images/large/miscutils/itemPlateDoubleWatertightSteel/0.png deleted file mode 100644 index 5a8c48daf2..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleWhiteMetal/0.png b/front/public/images/large/miscutils/itemPlateDoubleWhiteMetal/0.png deleted file mode 100644 index 4a6ed95044..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleZeron100/0.png b/front/public/images/large/miscutils/itemPlateDoubleZeron100/0.png deleted file mode 100644 index 4ffe1302f8..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleZirconium/0.png b/front/public/images/large/miscutils/itemPlateDoubleZirconium/0.png deleted file mode 100644 index 154e8a8810..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDoubleZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemPlateDoubleZirconiumCarbide/0.png deleted file mode 100644 index 94e1f0aa82..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDoubleZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDragonblood/0.png b/front/public/images/large/miscutils/itemPlateDragonblood/0.png deleted file mode 100644 index 766de08588..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDragonblood/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateDysprosium/0.png b/front/public/images/large/miscutils/itemPlateDysprosium/0.png deleted file mode 100644 index 3125e65724..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateEglinSteel/0.png b/front/public/images/large/miscutils/itemPlateEglinSteel/0.png deleted file mode 100644 index 34b755b3cf..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateEnergyCrystal/0.png b/front/public/images/large/miscutils/itemPlateEnergyCrystal/0.png deleted file mode 100644 index 558875920a..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateErbium/0.png b/front/public/images/large/miscutils/itemPlateErbium/0.png deleted file mode 100644 index d60a40bb64..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateGermanium/0.png b/front/public/images/large/miscutils/itemPlateGermanium/0.png deleted file mode 100644 index 4d4d0ebc0c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateGrisium/0.png b/front/public/images/large/miscutils/itemPlateGrisium/0.png deleted file mode 100644 index dba14f267b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHG1223/0.png b/front/public/images/large/miscutils/itemPlateHG1223/0.png deleted file mode 100644 index 0797570b0d..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHG1223/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHS188A/0.png b/front/public/images/large/miscutils/itemPlateHS188A/0.png deleted file mode 100644 index 0876d146db..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHafnium/0.png b/front/public/images/large/miscutils/itemPlateHafnium/0.png deleted file mode 100644 index 910b20cb19..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHastelloyC276/0.png b/front/public/images/large/miscutils/itemPlateHastelloyC276/0.png deleted file mode 100644 index 9539083a3e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHastelloyN/0.png b/front/public/images/large/miscutils/itemPlateHastelloyN/0.png deleted file mode 100644 index dd272f40f5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHastelloyW/0.png b/front/public/images/large/miscutils/itemPlateHastelloyW/0.png deleted file mode 100644 index 5b1a146ad3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHastelloyX/0.png b/front/public/images/large/miscutils/itemPlateHastelloyX/0.png deleted file mode 100644 index ee28b9d714..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemPlateHeLiCoPtEr/0.png deleted file mode 100644 index bad0493785..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateHypogen/0.png b/front/public/images/large/miscutils/itemPlateHypogen/0.png deleted file mode 100644 index d094212701..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateIncoloy020/0.png b/front/public/images/large/miscutils/itemPlateIncoloy020/0.png deleted file mode 100644 index 80e0b7b6df..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateIncoloyDS/0.png b/front/public/images/large/miscutils/itemPlateIncoloyDS/0.png deleted file mode 100644 index 8df2b01274..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateIncoloyMA956/0.png b/front/public/images/large/miscutils/itemPlateIncoloyMA956/0.png deleted file mode 100644 index bfeda3dab3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateInconel625/0.png b/front/public/images/large/miscutils/itemPlateInconel625/0.png deleted file mode 100644 index d444119c6f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateInconel690/0.png b/front/public/images/large/miscutils/itemPlateInconel690/0.png deleted file mode 100644 index cd54fc4f0c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateInconel792/0.png b/front/public/images/large/miscutils/itemPlateInconel792/0.png deleted file mode 100644 index 1d35797a7a..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateIndalloy140/0.png b/front/public/images/large/miscutils/itemPlateIndalloy140/0.png deleted file mode 100644 index 94e2afc616..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateIodine/0.png b/front/public/images/large/miscutils/itemPlateIodine/0.png deleted file mode 100644 index a2cfc2aeec..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateLafiumCompound/0.png b/front/public/images/large/miscutils/itemPlateLafiumCompound/0.png deleted file mode 100644 index 1026298a60..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateLaurenium/0.png b/front/public/images/large/miscutils/itemPlateLaurenium/0.png deleted file mode 100644 index 51ca678739..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateLithium7/0.png b/front/public/images/large/miscutils/itemPlateLithium7/0.png deleted file mode 100644 index b2dc407596..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateLithium7/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateMaragingSteel250/0.png b/front/public/images/large/miscutils/itemPlateMaragingSteel250/0.png deleted file mode 100644 index ed35e9b3e1..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateMaragingSteel300/0.png b/front/public/images/large/miscutils/itemPlateMaragingSteel300/0.png deleted file mode 100644 index 04bc48c87a..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateMaragingSteel350/0.png b/front/public/images/large/miscutils/itemPlateMaragingSteel350/0.png deleted file mode 100644 index 39caea15f8..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateMeatRaw/0.png b/front/public/images/large/miscutils/itemPlateMeatRaw/0.png deleted file mode 100644 index 02a623e760..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateMeatRaw/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemPlateNiobiumCarbide/0.png deleted file mode 100644 index c342efd0b9..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateNitinol60/0.png b/front/public/images/large/miscutils/itemPlateNitinol60/0.png deleted file mode 100644 index 574d3ea4bc..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateOctiron/0.png b/front/public/images/large/miscutils/itemPlateOctiron/0.png deleted file mode 100644 index e460ad371b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlatePikyonium64B/0.png b/front/public/images/large/miscutils/itemPlatePikyonium64B/0.png deleted file mode 100644 index 7f6637890f..0000000000 Binary files a/front/public/images/large/miscutils/itemPlatePikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlatePotin/0.png b/front/public/images/large/miscutils/itemPlatePotin/0.png deleted file mode 100644 index 6f2e29ce8c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlatePotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlatePraseodymium/0.png b/front/public/images/large/miscutils/itemPlatePraseodymium/0.png deleted file mode 100644 index ad66f1b83a..0000000000 Binary files a/front/public/images/large/miscutils/itemPlatePraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateQuantum/0.png b/front/public/images/large/miscutils/itemPlateQuantum/0.png deleted file mode 100644 index 443eaafbf7..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateRhenium/0.png b/front/public/images/large/miscutils/itemPlateRhenium/0.png deleted file mode 100644 index e858e56ed5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateRhodium/0.png b/front/public/images/large/miscutils/itemPlateRhodium/0.png deleted file mode 100644 index 8cc101924c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateRhugnor/0.png b/front/public/images/large/miscutils/itemPlateRhugnor/0.png deleted file mode 100644 index 10d85c6695..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateRhugnor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateRunite/0.png b/front/public/images/large/miscutils/itemPlateRunite/0.png deleted file mode 100644 index dcfbaec287..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateRuthenium/0.png b/front/public/images/large/miscutils/itemPlateRuthenium/0.png deleted file mode 100644 index 8cc101924c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateSelenium/0.png b/front/public/images/large/miscutils/itemPlateSelenium/0.png deleted file mode 100644 index 685a4717ad..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateSiliconCarbide/0.png b/front/public/images/large/miscutils/itemPlateSiliconCarbide/0.png deleted file mode 100644 index 7aa71d387b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateSodium/0.png b/front/public/images/large/miscutils/itemPlateSodium/0.png deleted file mode 100644 index bd2803f3e5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateSodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateStaballoy/0.png b/front/public/images/large/miscutils/itemPlateStaballoy/0.png deleted file mode 100644 index c468aa6441..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateStellite/0.png b/front/public/images/large/miscutils/itemPlateStellite/0.png deleted file mode 100644 index af8c159405..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateStrontium/0.png b/front/public/images/large/miscutils/itemPlateStrontium/0.png deleted file mode 100644 index 4627676a40..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTalonite/0.png b/front/public/images/large/miscutils/itemPlateTalonite/0.png deleted file mode 100644 index 6cf8b6ea0b..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTantalloy60/0.png b/front/public/images/large/miscutils/itemPlateTantalloy60/0.png deleted file mode 100644 index f7b67ab854..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTantalloy61/0.png b/front/public/images/large/miscutils/itemPlateTantalloy61/0.png deleted file mode 100644 index d25b0bdbbc..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTantalumCarbide/0.png b/front/public/images/large/miscutils/itemPlateTantalumCarbide/0.png deleted file mode 100644 index 3cb26c96c1..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTeflon/0.png b/front/public/images/large/miscutils/itemPlateTeflon/0.png deleted file mode 100644 index 72b9cb809c..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTeflon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTellurium/0.png b/front/public/images/large/miscutils/itemPlateTellurium/0.png deleted file mode 100644 index 442d3adde0..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateThallium/0.png b/front/public/images/large/miscutils/itemPlateThallium/0.png deleted file mode 100644 index 6a58c69b89..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateThorium232/0.png b/front/public/images/large/miscutils/itemPlateThorium232/0.png deleted file mode 100644 index ba4b99b4c4..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateThorium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTitansteel/0.png b/front/public/images/large/miscutils/itemPlateTitansteel/0.png deleted file mode 100644 index 510ef879ae..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTriniumNaquadahAlloy/0.png b/front/public/images/large/miscutils/itemPlateTriniumNaquadahAlloy/0.png deleted file mode 100644 index 853135be64..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemPlateTriniumNaquadahCarbonite/0.png deleted file mode 100644 index a9b5f67157..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemPlateTriniumTitaniumAlloy/0.png deleted file mode 100644 index fe213189e2..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTumbaga/0.png b/front/public/images/large/miscutils/itemPlateTumbaga/0.png deleted file mode 100644 index f292afa9a4..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemPlateTungstenTitaniumCarbide/0.png deleted file mode 100644 index 10a93dc96a..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateUranium232/0.png b/front/public/images/large/miscutils/itemPlateUranium232/0.png deleted file mode 100644 index cc49f861a5..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateUranium233/0.png b/front/public/images/large/miscutils/itemPlateUranium233/0.png deleted file mode 100644 index be3bd40e20..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateWatertightSteel/0.png b/front/public/images/large/miscutils/itemPlateWatertightSteel/0.png deleted file mode 100644 index 13486588f8..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateWhiteMetal/0.png b/front/public/images/large/miscutils/itemPlateWhiteMetal/0.png deleted file mode 100644 index ce93d82bcb..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateZeron100/0.png b/front/public/images/large/miscutils/itemPlateZeron100/0.png deleted file mode 100644 index 8166010fff..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateZirconium/0.png b/front/public/images/large/miscutils/itemPlateZirconium/0.png deleted file mode 100644 index 239ac6f8f3..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemPlateZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemPlateZirconiumCarbide/0.png deleted file mode 100644 index 18f2b37e7e..0000000000 Binary files a/front/public/images/large/miscutils/itemPlateZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemRingAbyssalAlloy/0.png deleted file mode 100644 index 7c247db110..0000000000 Binary files a/front/public/images/large/miscutils/itemRingAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingArcanite/0.png b/front/public/images/large/miscutils/itemRingArcanite/0.png deleted file mode 100644 index bc8ab3c061..0000000000 Binary files a/front/public/images/large/miscutils/itemRingArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemRingArceusAlloy2B/0.png deleted file mode 100644 index a70267c90a..0000000000 Binary files a/front/public/images/large/miscutils/itemRingArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingAstralTitanium/0.png b/front/public/images/large/miscutils/itemRingAstralTitanium/0.png deleted file mode 100644 index 91c201a271..0000000000 Binary files a/front/public/images/large/miscutils/itemRingAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingBlackMetal/0.png b/front/public/images/large/miscutils/itemRingBlackMetal/0.png deleted file mode 100644 index 58432074ca..0000000000 Binary files a/front/public/images/large/miscutils/itemRingBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingBloodSteel/0.png b/front/public/images/large/miscutils/itemRingBloodSteel/0.png deleted file mode 100644 index b53325785e..0000000000 Binary files a/front/public/images/large/miscutils/itemRingBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingBotmium/0.png b/front/public/images/large/miscutils/itemRingBotmium/0.png deleted file mode 100644 index e5b30ee50e..0000000000 Binary files a/front/public/images/large/miscutils/itemRingBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingCelestialTungsten/0.png b/front/public/images/large/miscutils/itemRingCelestialTungsten/0.png deleted file mode 100644 index 64b2fe51a0..0000000000 Binary files a/front/public/images/large/miscutils/itemRingCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingChromaticGlass/0.png b/front/public/images/large/miscutils/itemRingChromaticGlass/0.png deleted file mode 100644 index 3569ae68a9..0000000000 Binary files a/front/public/images/large/miscutils/itemRingChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingCinobiteA243/0.png b/front/public/images/large/miscutils/itemRingCinobiteA243/0.png deleted file mode 100644 index 97226929d0..0000000000 Binary files a/front/public/images/large/miscutils/itemRingCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingDysprosium/0.png b/front/public/images/large/miscutils/itemRingDysprosium/0.png deleted file mode 100644 index e480dcf56d..0000000000 Binary files a/front/public/images/large/miscutils/itemRingDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingEglinSteel/0.png b/front/public/images/large/miscutils/itemRingEglinSteel/0.png deleted file mode 100644 index 2b830a3810..0000000000 Binary files a/front/public/images/large/miscutils/itemRingEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingEnergyCrystal/0.png b/front/public/images/large/miscutils/itemRingEnergyCrystal/0.png deleted file mode 100644 index 5feb59b9db..0000000000 Binary files a/front/public/images/large/miscutils/itemRingEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingErbium/0.png b/front/public/images/large/miscutils/itemRingErbium/0.png deleted file mode 100644 index 6841e2ca65..0000000000 Binary files a/front/public/images/large/miscutils/itemRingErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingGermanium/0.png b/front/public/images/large/miscutils/itemRingGermanium/0.png deleted file mode 100644 index 5a6eebd472..0000000000 Binary files a/front/public/images/large/miscutils/itemRingGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingGrisium/0.png b/front/public/images/large/miscutils/itemRingGrisium/0.png deleted file mode 100644 index 044132a448..0000000000 Binary files a/front/public/images/large/miscutils/itemRingGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHS188A/0.png b/front/public/images/large/miscutils/itemRingHS188A/0.png deleted file mode 100644 index bbd86a6858..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHafnium/0.png b/front/public/images/large/miscutils/itemRingHafnium/0.png deleted file mode 100644 index c941f63323..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHastelloyC276/0.png b/front/public/images/large/miscutils/itemRingHastelloyC276/0.png deleted file mode 100644 index 86f7867d16..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHastelloyN/0.png b/front/public/images/large/miscutils/itemRingHastelloyN/0.png deleted file mode 100644 index b41af606e3..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHastelloyW/0.png b/front/public/images/large/miscutils/itemRingHastelloyW/0.png deleted file mode 100644 index 1114d5c4ff..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHastelloyX/0.png b/front/public/images/large/miscutils/itemRingHastelloyX/0.png deleted file mode 100644 index 7b86cec785..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemRingHeLiCoPtEr/0.png deleted file mode 100644 index 36111ef5bc..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingHypogen/0.png b/front/public/images/large/miscutils/itemRingHypogen/0.png deleted file mode 100644 index 9c67593ce4..0000000000 Binary files a/front/public/images/large/miscutils/itemRingHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingIncoloy020/0.png b/front/public/images/large/miscutils/itemRingIncoloy020/0.png deleted file mode 100644 index 84db545dcd..0000000000 Binary files a/front/public/images/large/miscutils/itemRingIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingIncoloyDS/0.png b/front/public/images/large/miscutils/itemRingIncoloyDS/0.png deleted file mode 100644 index d62d970bad..0000000000 Binary files a/front/public/images/large/miscutils/itemRingIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingIncoloyMA956/0.png b/front/public/images/large/miscutils/itemRingIncoloyMA956/0.png deleted file mode 100644 index 7f888d6a25..0000000000 Binary files a/front/public/images/large/miscutils/itemRingIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingInconel625/0.png b/front/public/images/large/miscutils/itemRingInconel625/0.png deleted file mode 100644 index d6b6613ad1..0000000000 Binary files a/front/public/images/large/miscutils/itemRingInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingInconel690/0.png b/front/public/images/large/miscutils/itemRingInconel690/0.png deleted file mode 100644 index d495ba26a4..0000000000 Binary files a/front/public/images/large/miscutils/itemRingInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingInconel792/0.png b/front/public/images/large/miscutils/itemRingInconel792/0.png deleted file mode 100644 index a861d64c01..0000000000 Binary files a/front/public/images/large/miscutils/itemRingInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingIodine/0.png b/front/public/images/large/miscutils/itemRingIodine/0.png deleted file mode 100644 index 412879c6b2..0000000000 Binary files a/front/public/images/large/miscutils/itemRingIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingLafiumCompound/0.png b/front/public/images/large/miscutils/itemRingLafiumCompound/0.png deleted file mode 100644 index 2ea1466a8d..0000000000 Binary files a/front/public/images/large/miscutils/itemRingLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingLaurenium/0.png b/front/public/images/large/miscutils/itemRingLaurenium/0.png deleted file mode 100644 index e5d1859d4e..0000000000 Binary files a/front/public/images/large/miscutils/itemRingLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingMaragingSteel250/0.png b/front/public/images/large/miscutils/itemRingMaragingSteel250/0.png deleted file mode 100644 index 823500f405..0000000000 Binary files a/front/public/images/large/miscutils/itemRingMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingMaragingSteel300/0.png b/front/public/images/large/miscutils/itemRingMaragingSteel300/0.png deleted file mode 100644 index f8eed0e788..0000000000 Binary files a/front/public/images/large/miscutils/itemRingMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingMaragingSteel350/0.png b/front/public/images/large/miscutils/itemRingMaragingSteel350/0.png deleted file mode 100644 index 2ca87e67fd..0000000000 Binary files a/front/public/images/large/miscutils/itemRingMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemRingNiobiumCarbide/0.png deleted file mode 100644 index 765f711d30..0000000000 Binary files a/front/public/images/large/miscutils/itemRingNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingNitinol60/0.png b/front/public/images/large/miscutils/itemRingNitinol60/0.png deleted file mode 100644 index 95bb337a81..0000000000 Binary files a/front/public/images/large/miscutils/itemRingNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingOctiron/0.png b/front/public/images/large/miscutils/itemRingOctiron/0.png deleted file mode 100644 index 5cb25d947c..0000000000 Binary files a/front/public/images/large/miscutils/itemRingOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingPikyonium64B/0.png b/front/public/images/large/miscutils/itemRingPikyonium64B/0.png deleted file mode 100644 index 1a4c075fd8..0000000000 Binary files a/front/public/images/large/miscutils/itemRingPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingPotin/0.png b/front/public/images/large/miscutils/itemRingPotin/0.png deleted file mode 100644 index 1c6cf236d2..0000000000 Binary files a/front/public/images/large/miscutils/itemRingPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingPraseodymium/0.png b/front/public/images/large/miscutils/itemRingPraseodymium/0.png deleted file mode 100644 index a3b092a1b1..0000000000 Binary files a/front/public/images/large/miscutils/itemRingPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingQuantum/0.png b/front/public/images/large/miscutils/itemRingQuantum/0.png deleted file mode 100644 index f349273c21..0000000000 Binary files a/front/public/images/large/miscutils/itemRingQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingRhenium/0.png b/front/public/images/large/miscutils/itemRingRhenium/0.png deleted file mode 100644 index afb39cf4a9..0000000000 Binary files a/front/public/images/large/miscutils/itemRingRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingRhodium/0.png b/front/public/images/large/miscutils/itemRingRhodium/0.png deleted file mode 100644 index 1ac7fddad5..0000000000 Binary files a/front/public/images/large/miscutils/itemRingRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingRuthenium/0.png b/front/public/images/large/miscutils/itemRingRuthenium/0.png deleted file mode 100644 index 1ac7fddad5..0000000000 Binary files a/front/public/images/large/miscutils/itemRingRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingSelenium/0.png b/front/public/images/large/miscutils/itemRingSelenium/0.png deleted file mode 100644 index 3eba1dae5c..0000000000 Binary files a/front/public/images/large/miscutils/itemRingSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingSiliconCarbide/0.png b/front/public/images/large/miscutils/itemRingSiliconCarbide/0.png deleted file mode 100644 index 37a0849a47..0000000000 Binary files a/front/public/images/large/miscutils/itemRingSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingStaballoy/0.png b/front/public/images/large/miscutils/itemRingStaballoy/0.png deleted file mode 100644 index ee310fcc1a..0000000000 Binary files a/front/public/images/large/miscutils/itemRingStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingStellite/0.png b/front/public/images/large/miscutils/itemRingStellite/0.png deleted file mode 100644 index e3dde3b3e5..0000000000 Binary files a/front/public/images/large/miscutils/itemRingStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingStrontium/0.png b/front/public/images/large/miscutils/itemRingStrontium/0.png deleted file mode 100644 index c446628a20..0000000000 Binary files a/front/public/images/large/miscutils/itemRingStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTalonite/0.png b/front/public/images/large/miscutils/itemRingTalonite/0.png deleted file mode 100644 index 23e8a71f2c..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTantalloy60/0.png b/front/public/images/large/miscutils/itemRingTantalloy60/0.png deleted file mode 100644 index 6b80d7f301..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTantalloy61/0.png b/front/public/images/large/miscutils/itemRingTantalloy61/0.png deleted file mode 100644 index 5a235b56d4..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTantalumCarbide/0.png b/front/public/images/large/miscutils/itemRingTantalumCarbide/0.png deleted file mode 100644 index eca3bf55e6..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTellurium/0.png b/front/public/images/large/miscutils/itemRingTellurium/0.png deleted file mode 100644 index a9e114bfac..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingThallium/0.png b/front/public/images/large/miscutils/itemRingThallium/0.png deleted file mode 100644 index 13d9e96994..0000000000 Binary files a/front/public/images/large/miscutils/itemRingThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTitansteel/0.png b/front/public/images/large/miscutils/itemRingTitansteel/0.png deleted file mode 100644 index 457fe0f962..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemRingTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 9062e245f5..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemRingTriniumTitaniumAlloy/0.png deleted file mode 100644 index 5c0f4831aa..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTumbaga/0.png b/front/public/images/large/miscutils/itemRingTumbaga/0.png deleted file mode 100644 index c68423398f..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemRingTungstenTitaniumCarbide/0.png deleted file mode 100644 index 589012536a..0000000000 Binary files a/front/public/images/large/miscutils/itemRingTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingWatertightSteel/0.png b/front/public/images/large/miscutils/itemRingWatertightSteel/0.png deleted file mode 100644 index 9cac9256bc..0000000000 Binary files a/front/public/images/large/miscutils/itemRingWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingWhiteMetal/0.png b/front/public/images/large/miscutils/itemRingWhiteMetal/0.png deleted file mode 100644 index adf78399fb..0000000000 Binary files a/front/public/images/large/miscutils/itemRingWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingZeron100/0.png b/front/public/images/large/miscutils/itemRingZeron100/0.png deleted file mode 100644 index 3a7b5eae1f..0000000000 Binary files a/front/public/images/large/miscutils/itemRingZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingZirconium/0.png b/front/public/images/large/miscutils/itemRingZirconium/0.png deleted file mode 100644 index 346c925abf..0000000000 Binary files a/front/public/images/large/miscutils/itemRingZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRingZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemRingZirconiumCarbide/0.png deleted file mode 100644 index 5726c5ed10..0000000000 Binary files a/front/public/images/large/miscutils/itemRingZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemRodAbyssalAlloy/0.png deleted file mode 100644 index b0887a06bb..0000000000 Binary files a/front/public/images/large/miscutils/itemRodAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodArcanite/0.png b/front/public/images/large/miscutils/itemRodArcanite/0.png deleted file mode 100644 index 82fd932232..0000000000 Binary files a/front/public/images/large/miscutils/itemRodArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemRodArceusAlloy2B/0.png deleted file mode 100644 index dc6976755d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodAstralTitanium/0.png b/front/public/images/large/miscutils/itemRodAstralTitanium/0.png deleted file mode 100644 index ead06c92fa..0000000000 Binary files a/front/public/images/large/miscutils/itemRodAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodBlackMetal/0.png b/front/public/images/large/miscutils/itemRodBlackMetal/0.png deleted file mode 100644 index d780130a36..0000000000 Binary files a/front/public/images/large/miscutils/itemRodBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodBloodSteel/0.png b/front/public/images/large/miscutils/itemRodBloodSteel/0.png deleted file mode 100644 index 929c2f9467..0000000000 Binary files a/front/public/images/large/miscutils/itemRodBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodBotmium/0.png b/front/public/images/large/miscutils/itemRodBotmium/0.png deleted file mode 100644 index 81af2afda6..0000000000 Binary files a/front/public/images/large/miscutils/itemRodBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodCelestialTungsten/0.png b/front/public/images/large/miscutils/itemRodCelestialTungsten/0.png deleted file mode 100644 index bd48430ecc..0000000000 Binary files a/front/public/images/large/miscutils/itemRodCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodChromaticGlass/0.png b/front/public/images/large/miscutils/itemRodChromaticGlass/0.png deleted file mode 100644 index 0a07d8a742..0000000000 Binary files a/front/public/images/large/miscutils/itemRodChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodCinobiteA243/0.png b/front/public/images/large/miscutils/itemRodCinobiteA243/0.png deleted file mode 100644 index 766074c721..0000000000 Binary files a/front/public/images/large/miscutils/itemRodCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodDysprosium/0.png b/front/public/images/large/miscutils/itemRodDysprosium/0.png deleted file mode 100644 index d54a7f737a..0000000000 Binary files a/front/public/images/large/miscutils/itemRodDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodEglinSteel/0.png b/front/public/images/large/miscutils/itemRodEglinSteel/0.png deleted file mode 100644 index 362f55a7a4..0000000000 Binary files a/front/public/images/large/miscutils/itemRodEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodEnergyCrystal/0.png b/front/public/images/large/miscutils/itemRodEnergyCrystal/0.png deleted file mode 100644 index 80d233397e..0000000000 Binary files a/front/public/images/large/miscutils/itemRodEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodErbium/0.png b/front/public/images/large/miscutils/itemRodErbium/0.png deleted file mode 100644 index 9f4cfde4c1..0000000000 Binary files a/front/public/images/large/miscutils/itemRodErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodGermanium/0.png b/front/public/images/large/miscutils/itemRodGermanium/0.png deleted file mode 100644 index 7baee77387..0000000000 Binary files a/front/public/images/large/miscutils/itemRodGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodGrisium/0.png b/front/public/images/large/miscutils/itemRodGrisium/0.png deleted file mode 100644 index 26b94b9f01..0000000000 Binary files a/front/public/images/large/miscutils/itemRodGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHS188A/0.png b/front/public/images/large/miscutils/itemRodHS188A/0.png deleted file mode 100644 index d74002722c..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHafnium/0.png b/front/public/images/large/miscutils/itemRodHafnium/0.png deleted file mode 100644 index fc4009cdbb..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHastelloyC276/0.png b/front/public/images/large/miscutils/itemRodHastelloyC276/0.png deleted file mode 100644 index d19d6895ac..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHastelloyN/0.png b/front/public/images/large/miscutils/itemRodHastelloyN/0.png deleted file mode 100644 index 675693e933..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHastelloyW/0.png b/front/public/images/large/miscutils/itemRodHastelloyW/0.png deleted file mode 100644 index 601e488430..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHastelloyX/0.png b/front/public/images/large/miscutils/itemRodHastelloyX/0.png deleted file mode 100644 index 4b858d4db9..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemRodHeLiCoPtEr/0.png deleted file mode 100644 index 0a3115ee0b..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodHypogen/0.png b/front/public/images/large/miscutils/itemRodHypogen/0.png deleted file mode 100644 index 118198cd04..0000000000 Binary files a/front/public/images/large/miscutils/itemRodHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodIncoloy020/0.png b/front/public/images/large/miscutils/itemRodIncoloy020/0.png deleted file mode 100644 index f092d84cdf..0000000000 Binary files a/front/public/images/large/miscutils/itemRodIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodIncoloyDS/0.png b/front/public/images/large/miscutils/itemRodIncoloyDS/0.png deleted file mode 100644 index 9fae00b635..0000000000 Binary files a/front/public/images/large/miscutils/itemRodIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodIncoloyMA956/0.png b/front/public/images/large/miscutils/itemRodIncoloyMA956/0.png deleted file mode 100644 index de87751173..0000000000 Binary files a/front/public/images/large/miscutils/itemRodIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodInconel625/0.png b/front/public/images/large/miscutils/itemRodInconel625/0.png deleted file mode 100644 index 2ffee6c452..0000000000 Binary files a/front/public/images/large/miscutils/itemRodInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodInconel690/0.png b/front/public/images/large/miscutils/itemRodInconel690/0.png deleted file mode 100644 index db3e31f8d4..0000000000 Binary files a/front/public/images/large/miscutils/itemRodInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodInconel792/0.png b/front/public/images/large/miscutils/itemRodInconel792/0.png deleted file mode 100644 index 969919a8b0..0000000000 Binary files a/front/public/images/large/miscutils/itemRodInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodIodine/0.png b/front/public/images/large/miscutils/itemRodIodine/0.png deleted file mode 100644 index 0797968faf..0000000000 Binary files a/front/public/images/large/miscutils/itemRodIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLafiumCompound/0.png b/front/public/images/large/miscutils/itemRodLafiumCompound/0.png deleted file mode 100644 index 42008b0f93..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLaurenium/0.png b/front/public/images/large/miscutils/itemRodLaurenium/0.png deleted file mode 100644 index a586d373f0..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemRodLongAbyssalAlloy/0.png deleted file mode 100644 index 0f2797a2d6..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongArcanite/0.png b/front/public/images/large/miscutils/itemRodLongArcanite/0.png deleted file mode 100644 index 50bf1e773a..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemRodLongArceusAlloy2B/0.png deleted file mode 100644 index bb8fb76185..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongAstralTitanium/0.png b/front/public/images/large/miscutils/itemRodLongAstralTitanium/0.png deleted file mode 100644 index 36cca6a66b..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongBlackMetal/0.png b/front/public/images/large/miscutils/itemRodLongBlackMetal/0.png deleted file mode 100644 index ccd8bd28d7..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongBloodSteel/0.png b/front/public/images/large/miscutils/itemRodLongBloodSteel/0.png deleted file mode 100644 index e4f9023f6e..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongBotmium/0.png b/front/public/images/large/miscutils/itemRodLongBotmium/0.png deleted file mode 100644 index fb2c4e9743..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongCelestialTungsten/0.png b/front/public/images/large/miscutils/itemRodLongCelestialTungsten/0.png deleted file mode 100644 index 9b9d31d30f..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongChromaticGlass/0.png b/front/public/images/large/miscutils/itemRodLongChromaticGlass/0.png deleted file mode 100644 index f41788405c..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongCinobiteA243/0.png b/front/public/images/large/miscutils/itemRodLongCinobiteA243/0.png deleted file mode 100644 index 8ed891af9f..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongDysprosium/0.png b/front/public/images/large/miscutils/itemRodLongDysprosium/0.png deleted file mode 100644 index 60233d412a..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongEglinSteel/0.png b/front/public/images/large/miscutils/itemRodLongEglinSteel/0.png deleted file mode 100644 index 2d9de1d661..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongEnergyCrystal/0.png b/front/public/images/large/miscutils/itemRodLongEnergyCrystal/0.png deleted file mode 100644 index 08deb42a9e..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongErbium/0.png b/front/public/images/large/miscutils/itemRodLongErbium/0.png deleted file mode 100644 index edf9a8dfce..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongGermanium/0.png b/front/public/images/large/miscutils/itemRodLongGermanium/0.png deleted file mode 100644 index a359f50d4d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongGrisium/0.png b/front/public/images/large/miscutils/itemRodLongGrisium/0.png deleted file mode 100644 index 5b672653b0..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHS188A/0.png b/front/public/images/large/miscutils/itemRodLongHS188A/0.png deleted file mode 100644 index 8ee668c8c1..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHafnium/0.png b/front/public/images/large/miscutils/itemRodLongHafnium/0.png deleted file mode 100644 index fc061e4e2c..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHastelloyC276/0.png b/front/public/images/large/miscutils/itemRodLongHastelloyC276/0.png deleted file mode 100644 index e509b0e321..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHastelloyN/0.png b/front/public/images/large/miscutils/itemRodLongHastelloyN/0.png deleted file mode 100644 index 2ba260fd2f..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHastelloyW/0.png b/front/public/images/large/miscutils/itemRodLongHastelloyW/0.png deleted file mode 100644 index 016eefb153..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHastelloyX/0.png b/front/public/images/large/miscutils/itemRodLongHastelloyX/0.png deleted file mode 100644 index e44b60a9f8..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemRodLongHeLiCoPtEr/0.png deleted file mode 100644 index 9b78a193b6..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongHypogen/0.png b/front/public/images/large/miscutils/itemRodLongHypogen/0.png deleted file mode 100644 index 2e6eed1fcd..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongIncoloy020/0.png b/front/public/images/large/miscutils/itemRodLongIncoloy020/0.png deleted file mode 100644 index 73cefaba2c..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongIncoloyDS/0.png b/front/public/images/large/miscutils/itemRodLongIncoloyDS/0.png deleted file mode 100644 index 7365faf2e0..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongIncoloyMA956/0.png b/front/public/images/large/miscutils/itemRodLongIncoloyMA956/0.png deleted file mode 100644 index f3bc60cd27..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongInconel625/0.png b/front/public/images/large/miscutils/itemRodLongInconel625/0.png deleted file mode 100644 index fbd611314a..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongInconel690/0.png b/front/public/images/large/miscutils/itemRodLongInconel690/0.png deleted file mode 100644 index 9b96d4b5b4..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongInconel792/0.png b/front/public/images/large/miscutils/itemRodLongInconel792/0.png deleted file mode 100644 index 45e31544c4..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongIodine/0.png b/front/public/images/large/miscutils/itemRodLongIodine/0.png deleted file mode 100644 index dec1faa6ea..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongLafiumCompound/0.png b/front/public/images/large/miscutils/itemRodLongLafiumCompound/0.png deleted file mode 100644 index 097e532d75..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongLaurenium/0.png b/front/public/images/large/miscutils/itemRodLongLaurenium/0.png deleted file mode 100644 index f09fa7060f..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongMaragingSteel250/0.png b/front/public/images/large/miscutils/itemRodLongMaragingSteel250/0.png deleted file mode 100644 index ad8e1e485c..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongMaragingSteel300/0.png b/front/public/images/large/miscutils/itemRodLongMaragingSteel300/0.png deleted file mode 100644 index 08896ff6b5..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongMaragingSteel350/0.png b/front/public/images/large/miscutils/itemRodLongMaragingSteel350/0.png deleted file mode 100644 index 9a3847a13d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemRodLongNiobiumCarbide/0.png deleted file mode 100644 index aac6c74806..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongNitinol60/0.png b/front/public/images/large/miscutils/itemRodLongNitinol60/0.png deleted file mode 100644 index 0b33bb302c..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongOctiron/0.png b/front/public/images/large/miscutils/itemRodLongOctiron/0.png deleted file mode 100644 index 7a45aa9794..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongPikyonium64B/0.png b/front/public/images/large/miscutils/itemRodLongPikyonium64B/0.png deleted file mode 100644 index 35242ba709..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongPotin/0.png b/front/public/images/large/miscutils/itemRodLongPotin/0.png deleted file mode 100644 index 69e8bab795..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongPraseodymium/0.png b/front/public/images/large/miscutils/itemRodLongPraseodymium/0.png deleted file mode 100644 index 61e5b67876..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongQuantum/0.png b/front/public/images/large/miscutils/itemRodLongQuantum/0.png deleted file mode 100644 index 643e99e3cd..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongRhenium/0.png b/front/public/images/large/miscutils/itemRodLongRhenium/0.png deleted file mode 100644 index 0713b7863d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongRhodium/0.png b/front/public/images/large/miscutils/itemRodLongRhodium/0.png deleted file mode 100644 index ab94a98ec2..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongRuthenium/0.png b/front/public/images/large/miscutils/itemRodLongRuthenium/0.png deleted file mode 100644 index ab94a98ec2..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongSelenium/0.png b/front/public/images/large/miscutils/itemRodLongSelenium/0.png deleted file mode 100644 index 60e2f577f4..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongSiliconCarbide/0.png b/front/public/images/large/miscutils/itemRodLongSiliconCarbide/0.png deleted file mode 100644 index 25b87ae872..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongStaballoy/0.png b/front/public/images/large/miscutils/itemRodLongStaballoy/0.png deleted file mode 100644 index 61d61bca70..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongStellite/0.png b/front/public/images/large/miscutils/itemRodLongStellite/0.png deleted file mode 100644 index 302b9be8a1..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongStrontium/0.png b/front/public/images/large/miscutils/itemRodLongStrontium/0.png deleted file mode 100644 index 71ea31ccfc..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTalonite/0.png b/front/public/images/large/miscutils/itemRodLongTalonite/0.png deleted file mode 100644 index 0fe3c604b4..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTantalloy60/0.png b/front/public/images/large/miscutils/itemRodLongTantalloy60/0.png deleted file mode 100644 index b12827576b..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTantalloy61/0.png b/front/public/images/large/miscutils/itemRodLongTantalloy61/0.png deleted file mode 100644 index 4af63dbd5b..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTantalumCarbide/0.png b/front/public/images/large/miscutils/itemRodLongTantalumCarbide/0.png deleted file mode 100644 index c8d19cf1cd..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTellurium/0.png b/front/public/images/large/miscutils/itemRodLongTellurium/0.png deleted file mode 100644 index 69ab3fe964..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongThallium/0.png b/front/public/images/large/miscutils/itemRodLongThallium/0.png deleted file mode 100644 index 68a54427d4..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTitansteel/0.png b/front/public/images/large/miscutils/itemRodLongTitansteel/0.png deleted file mode 100644 index 07f4bc398d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemRodLongTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 8c048aa1a5..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemRodLongTriniumTitaniumAlloy/0.png deleted file mode 100644 index eda6fea359..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTumbaga/0.png b/front/public/images/large/miscutils/itemRodLongTumbaga/0.png deleted file mode 100644 index af8dbdce94..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemRodLongTungstenTitaniumCarbide/0.png deleted file mode 100644 index 47c81f7c32..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongUranium232/0.png b/front/public/images/large/miscutils/itemRodLongUranium232/0.png deleted file mode 100644 index 47d75a1f6f..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongUranium233/0.png b/front/public/images/large/miscutils/itemRodLongUranium233/0.png deleted file mode 100644 index 1330ebe45d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongWatertightSteel/0.png b/front/public/images/large/miscutils/itemRodLongWatertightSteel/0.png deleted file mode 100644 index 0e5cb46ec3..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongWhiteMetal/0.png b/front/public/images/large/miscutils/itemRodLongWhiteMetal/0.png deleted file mode 100644 index 9e803566a6..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongZeron100/0.png b/front/public/images/large/miscutils/itemRodLongZeron100/0.png deleted file mode 100644 index 2d878bdec3..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongZirconium/0.png b/front/public/images/large/miscutils/itemRodLongZirconium/0.png deleted file mode 100644 index 3eb047eab7..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodLongZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemRodLongZirconiumCarbide/0.png deleted file mode 100644 index 538c1aa298..0000000000 Binary files a/front/public/images/large/miscutils/itemRodLongZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodMaragingSteel250/0.png b/front/public/images/large/miscutils/itemRodMaragingSteel250/0.png deleted file mode 100644 index 8eb258487a..0000000000 Binary files a/front/public/images/large/miscutils/itemRodMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodMaragingSteel300/0.png b/front/public/images/large/miscutils/itemRodMaragingSteel300/0.png deleted file mode 100644 index e76fc4d0e5..0000000000 Binary files a/front/public/images/large/miscutils/itemRodMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodMaragingSteel350/0.png b/front/public/images/large/miscutils/itemRodMaragingSteel350/0.png deleted file mode 100644 index 68013f0c89..0000000000 Binary files a/front/public/images/large/miscutils/itemRodMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemRodNiobiumCarbide/0.png deleted file mode 100644 index ada0739122..0000000000 Binary files a/front/public/images/large/miscutils/itemRodNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodNitinol60/0.png b/front/public/images/large/miscutils/itemRodNitinol60/0.png deleted file mode 100644 index 6bfe36e246..0000000000 Binary files a/front/public/images/large/miscutils/itemRodNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodOctiron/0.png b/front/public/images/large/miscutils/itemRodOctiron/0.png deleted file mode 100644 index a98dc6640d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodPikyonium64B/0.png b/front/public/images/large/miscutils/itemRodPikyonium64B/0.png deleted file mode 100644 index 143c60bd56..0000000000 Binary files a/front/public/images/large/miscutils/itemRodPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodPotin/0.png b/front/public/images/large/miscutils/itemRodPotin/0.png deleted file mode 100644 index 048ada05e8..0000000000 Binary files a/front/public/images/large/miscutils/itemRodPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodPraseodymium/0.png b/front/public/images/large/miscutils/itemRodPraseodymium/0.png deleted file mode 100644 index eb8fd56cdf..0000000000 Binary files a/front/public/images/large/miscutils/itemRodPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodQuantum/0.png b/front/public/images/large/miscutils/itemRodQuantum/0.png deleted file mode 100644 index f5a663e087..0000000000 Binary files a/front/public/images/large/miscutils/itemRodQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodRhenium/0.png b/front/public/images/large/miscutils/itemRodRhenium/0.png deleted file mode 100644 index be182f3201..0000000000 Binary files a/front/public/images/large/miscutils/itemRodRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodRhodium/0.png b/front/public/images/large/miscutils/itemRodRhodium/0.png deleted file mode 100644 index fd0fb05528..0000000000 Binary files a/front/public/images/large/miscutils/itemRodRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodRuthenium/0.png b/front/public/images/large/miscutils/itemRodRuthenium/0.png deleted file mode 100644 index fd0fb05528..0000000000 Binary files a/front/public/images/large/miscutils/itemRodRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodSelenium/0.png b/front/public/images/large/miscutils/itemRodSelenium/0.png deleted file mode 100644 index 5710b90ac7..0000000000 Binary files a/front/public/images/large/miscutils/itemRodSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodSiliconCarbide/0.png b/front/public/images/large/miscutils/itemRodSiliconCarbide/0.png deleted file mode 100644 index e7e2e38c8b..0000000000 Binary files a/front/public/images/large/miscutils/itemRodSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodStaballoy/0.png b/front/public/images/large/miscutils/itemRodStaballoy/0.png deleted file mode 100644 index 1455945bd9..0000000000 Binary files a/front/public/images/large/miscutils/itemRodStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodStellite/0.png b/front/public/images/large/miscutils/itemRodStellite/0.png deleted file mode 100644 index 353fe31154..0000000000 Binary files a/front/public/images/large/miscutils/itemRodStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodStrontium/0.png b/front/public/images/large/miscutils/itemRodStrontium/0.png deleted file mode 100644 index 1d184364cc..0000000000 Binary files a/front/public/images/large/miscutils/itemRodStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTalonite/0.png b/front/public/images/large/miscutils/itemRodTalonite/0.png deleted file mode 100644 index 9ff668e900..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTantalloy60/0.png b/front/public/images/large/miscutils/itemRodTantalloy60/0.png deleted file mode 100644 index 54555414fd..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTantalloy61/0.png b/front/public/images/large/miscutils/itemRodTantalloy61/0.png deleted file mode 100644 index c3bd51c882..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTantalumCarbide/0.png b/front/public/images/large/miscutils/itemRodTantalumCarbide/0.png deleted file mode 100644 index 1c5b915b38..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTellurium/0.png b/front/public/images/large/miscutils/itemRodTellurium/0.png deleted file mode 100644 index 6d15085658..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodThallium/0.png b/front/public/images/large/miscutils/itemRodThallium/0.png deleted file mode 100644 index d775903342..0000000000 Binary files a/front/public/images/large/miscutils/itemRodThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTitansteel/0.png b/front/public/images/large/miscutils/itemRodTitansteel/0.png deleted file mode 100644 index ca446942ff..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemRodTriniumNaquadahCarbonite/0.png deleted file mode 100644 index b04d3032d7..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemRodTriniumTitaniumAlloy/0.png deleted file mode 100644 index 640d85e100..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTumbaga/0.png b/front/public/images/large/miscutils/itemRodTumbaga/0.png deleted file mode 100644 index 2b5820262d..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemRodTungstenTitaniumCarbide/0.png deleted file mode 100644 index 094272c713..0000000000 Binary files a/front/public/images/large/miscutils/itemRodTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodUranium232/0.png b/front/public/images/large/miscutils/itemRodUranium232/0.png deleted file mode 100644 index 31ea9232b2..0000000000 Binary files a/front/public/images/large/miscutils/itemRodUranium232/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodUranium233/0.png b/front/public/images/large/miscutils/itemRodUranium233/0.png deleted file mode 100644 index 73bc802f38..0000000000 Binary files a/front/public/images/large/miscutils/itemRodUranium233/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodWatertightSteel/0.png b/front/public/images/large/miscutils/itemRodWatertightSteel/0.png deleted file mode 100644 index c33c24733a..0000000000 Binary files a/front/public/images/large/miscutils/itemRodWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodWhiteMetal/0.png b/front/public/images/large/miscutils/itemRodWhiteMetal/0.png deleted file mode 100644 index 3e6e377467..0000000000 Binary files a/front/public/images/large/miscutils/itemRodWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodZeron100/0.png b/front/public/images/large/miscutils/itemRodZeron100/0.png deleted file mode 100644 index 0483e2f88e..0000000000 Binary files a/front/public/images/large/miscutils/itemRodZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodZirconium/0.png b/front/public/images/large/miscutils/itemRodZirconium/0.png deleted file mode 100644 index 32c1b05770..0000000000 Binary files a/front/public/images/large/miscutils/itemRodZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRodZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemRodZirconiumCarbide/0.png deleted file mode 100644 index 4e4ecddcf6..0000000000 Binary files a/front/public/images/large/miscutils/itemRodZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemRotorAbyssalAlloy/0.png deleted file mode 100644 index 767462b025..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorArcanite/0.png b/front/public/images/large/miscutils/itemRotorArcanite/0.png deleted file mode 100644 index b30862af1b..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemRotorArceusAlloy2B/0.png deleted file mode 100644 index 57b3e39d20..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorAstralTitanium/0.png b/front/public/images/large/miscutils/itemRotorAstralTitanium/0.png deleted file mode 100644 index 28f145676f..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorBlackMetal/0.png b/front/public/images/large/miscutils/itemRotorBlackMetal/0.png deleted file mode 100644 index f4384f00f3..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorBloodSteel/0.png b/front/public/images/large/miscutils/itemRotorBloodSteel/0.png deleted file mode 100644 index 21036bf0b2..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorBotmium/0.png b/front/public/images/large/miscutils/itemRotorBotmium/0.png deleted file mode 100644 index e6d02c2303..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorCelestialTungsten/0.png b/front/public/images/large/miscutils/itemRotorCelestialTungsten/0.png deleted file mode 100644 index c054fed19a..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorChromaticGlass/0.png b/front/public/images/large/miscutils/itemRotorChromaticGlass/0.png deleted file mode 100644 index b607955228..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorCinobiteA243/0.png b/front/public/images/large/miscutils/itemRotorCinobiteA243/0.png deleted file mode 100644 index 0313c40d78..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorDysprosium/0.png b/front/public/images/large/miscutils/itemRotorDysprosium/0.png deleted file mode 100644 index c071e4cd69..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorEglinSteel/0.png b/front/public/images/large/miscutils/itemRotorEglinSteel/0.png deleted file mode 100644 index 345cd52ba2..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorEnergyCrystal/0.png b/front/public/images/large/miscutils/itemRotorEnergyCrystal/0.png deleted file mode 100644 index 36d7820781..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorErbium/0.png b/front/public/images/large/miscutils/itemRotorErbium/0.png deleted file mode 100644 index bde60c7bde..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorGermanium/0.png b/front/public/images/large/miscutils/itemRotorGermanium/0.png deleted file mode 100644 index a4f1c01095..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorGrisium/0.png b/front/public/images/large/miscutils/itemRotorGrisium/0.png deleted file mode 100644 index 4c39d7c20a..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHS188A/0.png b/front/public/images/large/miscutils/itemRotorHS188A/0.png deleted file mode 100644 index 8acfd05c2f..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHafnium/0.png b/front/public/images/large/miscutils/itemRotorHafnium/0.png deleted file mode 100644 index 72ac530a74..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHastelloyC276/0.png b/front/public/images/large/miscutils/itemRotorHastelloyC276/0.png deleted file mode 100644 index bbfaff9a2d..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHastelloyN/0.png b/front/public/images/large/miscutils/itemRotorHastelloyN/0.png deleted file mode 100644 index 7ee1709f83..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHastelloyW/0.png b/front/public/images/large/miscutils/itemRotorHastelloyW/0.png deleted file mode 100644 index 7824e23ee6..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHastelloyX/0.png b/front/public/images/large/miscutils/itemRotorHastelloyX/0.png deleted file mode 100644 index d713588aae..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemRotorHeLiCoPtEr/0.png deleted file mode 100644 index 6e22178cad..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorHypogen/0.png b/front/public/images/large/miscutils/itemRotorHypogen/0.png deleted file mode 100644 index ff7a0aae32..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorIncoloy020/0.png b/front/public/images/large/miscutils/itemRotorIncoloy020/0.png deleted file mode 100644 index a718d2e070..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorIncoloyDS/0.png b/front/public/images/large/miscutils/itemRotorIncoloyDS/0.png deleted file mode 100644 index b1b25a8c4f..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorIncoloyMA956/0.png b/front/public/images/large/miscutils/itemRotorIncoloyMA956/0.png deleted file mode 100644 index 4ae02e35a2..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorInconel625/0.png b/front/public/images/large/miscutils/itemRotorInconel625/0.png deleted file mode 100644 index 5dc3d41155..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorInconel690/0.png b/front/public/images/large/miscutils/itemRotorInconel690/0.png deleted file mode 100644 index 37f575bbb5..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorInconel792/0.png b/front/public/images/large/miscutils/itemRotorInconel792/0.png deleted file mode 100644 index 9666e5c4ab..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorIodine/0.png b/front/public/images/large/miscutils/itemRotorIodine/0.png deleted file mode 100644 index 644157c31f..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorLafiumCompound/0.png b/front/public/images/large/miscutils/itemRotorLafiumCompound/0.png deleted file mode 100644 index d45ddae22a..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorLaurenium/0.png b/front/public/images/large/miscutils/itemRotorLaurenium/0.png deleted file mode 100644 index 70ab971a65..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorMaragingSteel250/0.png b/front/public/images/large/miscutils/itemRotorMaragingSteel250/0.png deleted file mode 100644 index e00b0ac1fe..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorMaragingSteel300/0.png b/front/public/images/large/miscutils/itemRotorMaragingSteel300/0.png deleted file mode 100644 index 640e91a67d..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorMaragingSteel350/0.png b/front/public/images/large/miscutils/itemRotorMaragingSteel350/0.png deleted file mode 100644 index dbd78145bc..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemRotorNiobiumCarbide/0.png deleted file mode 100644 index 01c028bd5c..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorNitinol60/0.png b/front/public/images/large/miscutils/itemRotorNitinol60/0.png deleted file mode 100644 index 08a6032e06..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorOctiron/0.png b/front/public/images/large/miscutils/itemRotorOctiron/0.png deleted file mode 100644 index 51beb05c4d..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorPikyonium64B/0.png b/front/public/images/large/miscutils/itemRotorPikyonium64B/0.png deleted file mode 100644 index 6e5b13f82b..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorPotin/0.png b/front/public/images/large/miscutils/itemRotorPotin/0.png deleted file mode 100644 index a5ef8e3fc9..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorPraseodymium/0.png b/front/public/images/large/miscutils/itemRotorPraseodymium/0.png deleted file mode 100644 index c2cf1c542d..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorQuantum/0.png b/front/public/images/large/miscutils/itemRotorQuantum/0.png deleted file mode 100644 index c791695756..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorRhenium/0.png b/front/public/images/large/miscutils/itemRotorRhenium/0.png deleted file mode 100644 index e4e7ad49c3..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorRhodium/0.png b/front/public/images/large/miscutils/itemRotorRhodium/0.png deleted file mode 100644 index ad209b3d67..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorRuthenium/0.png b/front/public/images/large/miscutils/itemRotorRuthenium/0.png deleted file mode 100644 index ad209b3d67..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorSelenium/0.png b/front/public/images/large/miscutils/itemRotorSelenium/0.png deleted file mode 100644 index d4cf3f33ad..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorSiliconCarbide/0.png b/front/public/images/large/miscutils/itemRotorSiliconCarbide/0.png deleted file mode 100644 index 6ca0e1af4a..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorStaballoy/0.png b/front/public/images/large/miscutils/itemRotorStaballoy/0.png deleted file mode 100644 index cff5cec0b5..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorStellite/0.png b/front/public/images/large/miscutils/itemRotorStellite/0.png deleted file mode 100644 index 0eeeeffeca..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorStrontium/0.png b/front/public/images/large/miscutils/itemRotorStrontium/0.png deleted file mode 100644 index 41a44560ce..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTalonite/0.png b/front/public/images/large/miscutils/itemRotorTalonite/0.png deleted file mode 100644 index fed8350dd0..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTantalloy60/0.png b/front/public/images/large/miscutils/itemRotorTantalloy60/0.png deleted file mode 100644 index 982068257d..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTantalloy61/0.png b/front/public/images/large/miscutils/itemRotorTantalloy61/0.png deleted file mode 100644 index 13fe4cb2c1..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTantalumCarbide/0.png b/front/public/images/large/miscutils/itemRotorTantalumCarbide/0.png deleted file mode 100644 index 9f936f30c4..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTellurium/0.png b/front/public/images/large/miscutils/itemRotorTellurium/0.png deleted file mode 100644 index b4506f388c..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorThallium/0.png b/front/public/images/large/miscutils/itemRotorThallium/0.png deleted file mode 100644 index 1dc7825229..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTitansteel/0.png b/front/public/images/large/miscutils/itemRotorTitansteel/0.png deleted file mode 100644 index d7cdeef5f5..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemRotorTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 43f701faa8..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemRotorTriniumTitaniumAlloy/0.png deleted file mode 100644 index fa16a47753..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTumbaga/0.png b/front/public/images/large/miscutils/itemRotorTumbaga/0.png deleted file mode 100644 index 450da43665..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemRotorTungstenTitaniumCarbide/0.png deleted file mode 100644 index 130dbdf978..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorWatertightSteel/0.png b/front/public/images/large/miscutils/itemRotorWatertightSteel/0.png deleted file mode 100644 index c9a2307fef..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorWhiteMetal/0.png b/front/public/images/large/miscutils/itemRotorWhiteMetal/0.png deleted file mode 100644 index 8d4a6a7594..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorZeron100/0.png b/front/public/images/large/miscutils/itemRotorZeron100/0.png deleted file mode 100644 index 56b6e3fae6..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorZirconium/0.png b/front/public/images/large/miscutils/itemRotorZirconium/0.png deleted file mode 100644 index 482dabc881..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemRotorZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemRotorZirconiumCarbide/0.png deleted file mode 100644 index 1a2c6dae60..0000000000 Binary files a/front/public/images/large/miscutils/itemRotorZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewAbyssalAlloy/0.png b/front/public/images/large/miscutils/itemScrewAbyssalAlloy/0.png deleted file mode 100644 index dafae984fa..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewArcanite/0.png b/front/public/images/large/miscutils/itemScrewArcanite/0.png deleted file mode 100644 index 4cf6d4a8bd..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewArcanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewArceusAlloy2B/0.png b/front/public/images/large/miscutils/itemScrewArceusAlloy2B/0.png deleted file mode 100644 index 203a882cc3..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewAstralTitanium/0.png b/front/public/images/large/miscutils/itemScrewAstralTitanium/0.png deleted file mode 100644 index 8f18dbd194..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewBlackMetal/0.png b/front/public/images/large/miscutils/itemScrewBlackMetal/0.png deleted file mode 100644 index 207fd5cabc..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewBloodSteel/0.png b/front/public/images/large/miscutils/itemScrewBloodSteel/0.png deleted file mode 100644 index c9760fb3cd..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewBotmium/0.png b/front/public/images/large/miscutils/itemScrewBotmium/0.png deleted file mode 100644 index e4e3361520..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewBotmium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewCelestialTungsten/0.png b/front/public/images/large/miscutils/itemScrewCelestialTungsten/0.png deleted file mode 100644 index 4dd00f2a37..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewChromaticGlass/0.png b/front/public/images/large/miscutils/itemScrewChromaticGlass/0.png deleted file mode 100644 index 9102ca396a..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewCinobiteA243/0.png b/front/public/images/large/miscutils/itemScrewCinobiteA243/0.png deleted file mode 100644 index a78708372a..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewDysprosium/0.png b/front/public/images/large/miscutils/itemScrewDysprosium/0.png deleted file mode 100644 index 59e4f5e21c..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewDysprosium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewEglinSteel/0.png b/front/public/images/large/miscutils/itemScrewEglinSteel/0.png deleted file mode 100644 index 5a474216c9..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewEnergyCrystal/0.png b/front/public/images/large/miscutils/itemScrewEnergyCrystal/0.png deleted file mode 100644 index ce4a002e54..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewErbium/0.png b/front/public/images/large/miscutils/itemScrewErbium/0.png deleted file mode 100644 index d6ff1f3018..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewErbium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewGermanium/0.png b/front/public/images/large/miscutils/itemScrewGermanium/0.png deleted file mode 100644 index 03b5c48828..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewGermanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewGrisium/0.png b/front/public/images/large/miscutils/itemScrewGrisium/0.png deleted file mode 100644 index 8c945ebc43..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewGrisium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHS188A/0.png b/front/public/images/large/miscutils/itemScrewHS188A/0.png deleted file mode 100644 index c35004b513..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHS188A/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHafnium/0.png b/front/public/images/large/miscutils/itemScrewHafnium/0.png deleted file mode 100644 index 2cb670b245..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHafnium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHastelloyC276/0.png b/front/public/images/large/miscutils/itemScrewHastelloyC276/0.png deleted file mode 100644 index 266dcd4f4b..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHastelloyN/0.png b/front/public/images/large/miscutils/itemScrewHastelloyN/0.png deleted file mode 100644 index 5fbf843769..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHastelloyW/0.png b/front/public/images/large/miscutils/itemScrewHastelloyW/0.png deleted file mode 100644 index b5b364b16f..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHastelloyX/0.png b/front/public/images/large/miscutils/itemScrewHastelloyX/0.png deleted file mode 100644 index 754c6352b4..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHeLiCoPtEr/0.png b/front/public/images/large/miscutils/itemScrewHeLiCoPtEr/0.png deleted file mode 100644 index 2e7ae9ef5e..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewHypogen/0.png b/front/public/images/large/miscutils/itemScrewHypogen/0.png deleted file mode 100644 index e9f8f43e1f..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewHypogen/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewIncoloy020/0.png b/front/public/images/large/miscutils/itemScrewIncoloy020/0.png deleted file mode 100644 index 5a2e10e824..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewIncoloyDS/0.png b/front/public/images/large/miscutils/itemScrewIncoloyDS/0.png deleted file mode 100644 index af86836a93..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewIncoloyMA956/0.png b/front/public/images/large/miscutils/itemScrewIncoloyMA956/0.png deleted file mode 100644 index b4cc076813..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewInconel625/0.png b/front/public/images/large/miscutils/itemScrewInconel625/0.png deleted file mode 100644 index 1e0353a0d6..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewInconel625/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewInconel690/0.png b/front/public/images/large/miscutils/itemScrewInconel690/0.png deleted file mode 100644 index 8888bf985a..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewInconel690/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewInconel792/0.png b/front/public/images/large/miscutils/itemScrewInconel792/0.png deleted file mode 100644 index 536ef0cafc..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewInconel792/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewIodine/0.png b/front/public/images/large/miscutils/itemScrewIodine/0.png deleted file mode 100644 index 23286325fc..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewIodine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewLafiumCompound/0.png b/front/public/images/large/miscutils/itemScrewLafiumCompound/0.png deleted file mode 100644 index 2654c17443..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewLaurenium/0.png b/front/public/images/large/miscutils/itemScrewLaurenium/0.png deleted file mode 100644 index dd232c31b1..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewLaurenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewMaragingSteel250/0.png b/front/public/images/large/miscutils/itemScrewMaragingSteel250/0.png deleted file mode 100644 index 8951331ef8..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewMaragingSteel300/0.png b/front/public/images/large/miscutils/itemScrewMaragingSteel300/0.png deleted file mode 100644 index 6759ff3a23..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewMaragingSteel350/0.png b/front/public/images/large/miscutils/itemScrewMaragingSteel350/0.png deleted file mode 100644 index 94dc015e68..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewNiobiumCarbide/0.png b/front/public/images/large/miscutils/itemScrewNiobiumCarbide/0.png deleted file mode 100644 index fdb2796aa4..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewNitinol60/0.png b/front/public/images/large/miscutils/itemScrewNitinol60/0.png deleted file mode 100644 index a559c35f22..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewOctiron/0.png b/front/public/images/large/miscutils/itemScrewOctiron/0.png deleted file mode 100644 index 3bf34211c2..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewOctiron/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewPikyonium64B/0.png b/front/public/images/large/miscutils/itemScrewPikyonium64B/0.png deleted file mode 100644 index f655da4dc2..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewPotin/0.png b/front/public/images/large/miscutils/itemScrewPotin/0.png deleted file mode 100644 index c384c98312..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewPotin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewPraseodymium/0.png b/front/public/images/large/miscutils/itemScrewPraseodymium/0.png deleted file mode 100644 index 5a9574b8dc..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewQuantum/0.png b/front/public/images/large/miscutils/itemScrewQuantum/0.png deleted file mode 100644 index dcd1688a8f..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewQuantum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewRhenium/0.png b/front/public/images/large/miscutils/itemScrewRhenium/0.png deleted file mode 100644 index 2aa7c2f32d..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewRhenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewRhodium/0.png b/front/public/images/large/miscutils/itemScrewRhodium/0.png deleted file mode 100644 index ffee7eaa80..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewRhodium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewRuthenium/0.png b/front/public/images/large/miscutils/itemScrewRuthenium/0.png deleted file mode 100644 index ffee7eaa80..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewRuthenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewSelenium/0.png b/front/public/images/large/miscutils/itemScrewSelenium/0.png deleted file mode 100644 index 3cdf01d629..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewSelenium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewSiliconCarbide/0.png b/front/public/images/large/miscutils/itemScrewSiliconCarbide/0.png deleted file mode 100644 index 27fe066db1..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewStaballoy/0.png b/front/public/images/large/miscutils/itemScrewStaballoy/0.png deleted file mode 100644 index a1f4fb066c..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewStellite/0.png b/front/public/images/large/miscutils/itemScrewStellite/0.png deleted file mode 100644 index 8fd5b096ad..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewStellite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewStrontium/0.png b/front/public/images/large/miscutils/itemScrewStrontium/0.png deleted file mode 100644 index 6558528d1e..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewStrontium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTalonite/0.png b/front/public/images/large/miscutils/itemScrewTalonite/0.png deleted file mode 100644 index eefa55127f..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTalonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTantalloy60/0.png b/front/public/images/large/miscutils/itemScrewTantalloy60/0.png deleted file mode 100644 index c3a284cbd2..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTantalloy61/0.png b/front/public/images/large/miscutils/itemScrewTantalloy61/0.png deleted file mode 100644 index 150c820797..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTantalumCarbide/0.png b/front/public/images/large/miscutils/itemScrewTantalumCarbide/0.png deleted file mode 100644 index 6e5bbe3890..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTellurium/0.png b/front/public/images/large/miscutils/itemScrewTellurium/0.png deleted file mode 100644 index acf3a49600..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTellurium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewThallium/0.png b/front/public/images/large/miscutils/itemScrewThallium/0.png deleted file mode 100644 index 05c4af2405..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewThallium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTitansteel/0.png b/front/public/images/large/miscutils/itemScrewTitansteel/0.png deleted file mode 100644 index 681fb76926..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTitansteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTriniumNaquadahCarbonite/0.png b/front/public/images/large/miscutils/itemScrewTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 44ae73f566..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTriniumTitaniumAlloy/0.png b/front/public/images/large/miscutils/itemScrewTriniumTitaniumAlloy/0.png deleted file mode 100644 index b52fed15b1..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTumbaga/0.png b/front/public/images/large/miscutils/itemScrewTumbaga/0.png deleted file mode 100644 index 6a0c2304c5..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTumbaga/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewTungstenTitaniumCarbide/0.png b/front/public/images/large/miscutils/itemScrewTungstenTitaniumCarbide/0.png deleted file mode 100644 index 81d214207c..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewWatertightSteel/0.png b/front/public/images/large/miscutils/itemScrewWatertightSteel/0.png deleted file mode 100644 index c9110abcd9..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewWhiteMetal/0.png b/front/public/images/large/miscutils/itemScrewWhiteMetal/0.png deleted file mode 100644 index 372fb1ac26..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewZeron100/0.png b/front/public/images/large/miscutils/itemScrewZeron100/0.png deleted file mode 100644 index 6eb4ab93f6..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewZeron100/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewZirconium/0.png b/front/public/images/large/miscutils/itemScrewZirconium/0.png deleted file mode 100644 index 8a9cb6d19e..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewZirconium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemScrewZirconiumCarbide/0.png b/front/public/images/large/miscutils/itemScrewZirconiumCarbide/0.png deleted file mode 100644 index c9b8adc5c6..0000000000 Binary files a/front/public/images/large/miscutils/itemScrewZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSmallSpringBlackSteel/0.png b/front/public/images/large/miscutils/itemSmallSpringBlackSteel/0.png deleted file mode 100644 index 83aa064bf2..0000000000 Binary files a/front/public/images/large/miscutils/itemSmallSpringBlackSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSmallSpringBlackTitanium/0.png b/front/public/images/large/miscutils/itemSmallSpringBlackTitanium/0.png deleted file mode 100644 index 6e91eecf99..0000000000 Binary files a/front/public/images/large/miscutils/itemSmallSpringBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSmallSpringMaragingSteel250/0.png b/front/public/images/large/miscutils/itemSmallSpringMaragingSteel250/0.png deleted file mode 100644 index cbc951d2bc..0000000000 Binary files a/front/public/images/large/miscutils/itemSmallSpringMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSmallSpringNichrome/0.png b/front/public/images/large/miscutils/itemSmallSpringNichrome/0.png deleted file mode 100644 index 773c2f4abd..0000000000 Binary files a/front/public/images/large/miscutils/itemSmallSpringNichrome/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSmallSpringStaballoy/0.png b/front/public/images/large/miscutils/itemSmallSpringStaballoy/0.png deleted file mode 100644 index fa2b17160e..0000000000 Binary files a/front/public/images/large/miscutils/itemSmallSpringStaballoy/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSpringCelestialTungsten/0.png b/front/public/images/large/miscutils/itemSpringCelestialTungsten/0.png deleted file mode 100644 index 574c961206..0000000000 Binary files a/front/public/images/large/miscutils/itemSpringCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSpringEglinSteel/0.png b/front/public/images/large/miscutils/itemSpringEglinSteel/0.png deleted file mode 100644 index 8e626dd6cd..0000000000 Binary files a/front/public/images/large/miscutils/itemSpringEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSpringNitinol60/0.png b/front/public/images/large/miscutils/itemSpringNitinol60/0.png deleted file mode 100644 index 333a449295..0000000000 Binary files a/front/public/images/large/miscutils/itemSpringNitinol60/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSpringWatertightSteel/0.png b/front/public/images/large/miscutils/itemSpringWatertightSteel/0.png deleted file mode 100644 index 6b74ad8487..0000000000 Binary files a/front/public/images/large/miscutils/itemSpringWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSpringWhiteMetal/0.png b/front/public/images/large/miscutils/itemSpringWhiteMetal/0.png deleted file mode 100644 index 5325e6a1c8..0000000000 Binary files a/front/public/images/large/miscutils/itemSpringWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSugarCharcoal/0.png b/front/public/images/large/miscutils/itemSugarCharcoal/0.png deleted file mode 100644 index 4919184ee7..0000000000 Binary files a/front/public/images/large/miscutils/itemSugarCharcoal/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemSugarCoke/0.png b/front/public/images/large/miscutils/itemSugarCoke/0.png deleted file mode 100644 index 04e413dd14..0000000000 Binary files a/front/public/images/large/miscutils/itemSugarCoke/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemTungstenSteelRotorBlade/0.png b/front/public/images/large/miscutils/itemTungstenSteelRotorBlade/0.png deleted file mode 100644 index 4febb799d8..0000000000 Binary files a/front/public/images/large/miscutils/itemTungstenSteelRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemTungstenSteelShaft/0.png b/front/public/images/large/miscutils/itemTungstenSteelShaft/0.png deleted file mode 100644 index f60b7238cf..0000000000 Binary files a/front/public/images/large/miscutils/itemTungstenSteelShaft/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemVibrantRotorBlade/0.png b/front/public/images/large/miscutils/itemVibrantRotorBlade/0.png deleted file mode 100644 index 0aa020e65f..0000000000 Binary files a/front/public/images/large/miscutils/itemVibrantRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemVibrantShaft/0.png b/front/public/images/large/miscutils/itemVibrantShaft/0.png deleted file mode 100644 index 4e6a2e9e83..0000000000 Binary files a/front/public/images/large/miscutils/itemVibrantShaft/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemZirconiumPellet/0.png b/front/public/images/large/miscutils/itemZirconiumPellet/0.png deleted file mode 100644 index f56f1cf5fa..0000000000 Binary files a/front/public/images/large/miscutils/itemZirconiumPellet/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemironrotor/0.png b/front/public/images/large/miscutils/itemironrotor/0.png deleted file mode 100644 index 5be6969f46..0000000000 Binary files a/front/public/images/large/miscutils/itemironrotor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemsteelrotor/0.png b/front/public/images/large/miscutils/itemsteelrotor/0.png deleted file mode 100644 index fcc25cf260..0000000000 Binary files a/front/public/images/large/miscutils/itemsteelrotor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemwcarbonrotor/0.png b/front/public/images/large/miscutils/itemwcarbonrotor/0.png deleted file mode 100644 index 96b10b4f07..0000000000 Binary files a/front/public/images/large/miscutils/itemwcarbonrotor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/itemwoodrotor/0.png b/front/public/images/large/miscutils/itemwoodrotor/0.png deleted file mode 100644 index c994805257..0000000000 Binary files a/front/public/images/large/miscutils/itemwoodrotor/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/liquidresin/0.png b/front/public/images/large/miscutils/liquidresin/0.png deleted file mode 100644 index 98a7c7c63d..0000000000 Binary files a/front/public/images/large/miscutils/liquidresin/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/magicfeather/0.png b/front/public/images/large/miscutils/magicfeather/0.png deleted file mode 100644 index ba35dc2091..0000000000 Binary files a/front/public/images/large/miscutils/magicfeather/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/material/1.png b/front/public/images/large/miscutils/material/1.png deleted file mode 100644 index e296d0bd2d..0000000000 Binary files a/front/public/images/large/miscutils/material/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/material/2.png b/front/public/images/large/miscutils/material/2.png deleted file mode 100644 index 921835a2df..0000000000 Binary files a/front/public/images/large/miscutils/material/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/material/3.png b/front/public/images/large/miscutils/material/3.png deleted file mode 100644 index d3cb551cb7..0000000000 Binary files a/front/public/images/large/miscutils/material/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/material/4.png b/front/public/images/large/miscutils/material/4.png deleted file mode 100644 index 55ed1a2a97..0000000000 Binary files a/front/public/images/large/miscutils/material/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledAlmandine/0.png b/front/public/images/large/miscutils/milledAlmandine/0.png deleted file mode 100644 index 2d8859b5c9..0000000000 Binary files a/front/public/images/large/miscutils/milledAlmandine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledChalcopyrite/0.png b/front/public/images/large/miscutils/milledChalcopyrite/0.png deleted file mode 100644 index fefb01b14a..0000000000 Binary files a/front/public/images/large/miscutils/milledChalcopyrite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledGrossular/0.png b/front/public/images/large/miscutils/milledGrossular/0.png deleted file mode 100644 index fc50f6a444..0000000000 Binary files a/front/public/images/large/miscutils/milledGrossular/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledMonazite/0.png b/front/public/images/large/miscutils/milledMonazite/0.png deleted file mode 100644 index 3fa8103c94..0000000000 Binary files a/front/public/images/large/miscutils/milledMonazite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledNickel/0.png b/front/public/images/large/miscutils/milledNickel/0.png deleted file mode 100644 index 7c1ec2cd2c..0000000000 Binary files a/front/public/images/large/miscutils/milledNickel/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledPentlandite/0.png b/front/public/images/large/miscutils/milledPentlandite/0.png deleted file mode 100644 index 8aae29cf04..0000000000 Binary files a/front/public/images/large/miscutils/milledPentlandite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledPlatinum/0.png b/front/public/images/large/miscutils/milledPlatinum/0.png deleted file mode 100644 index 13aa8ac767..0000000000 Binary files a/front/public/images/large/miscutils/milledPlatinum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledPyrope/0.png b/front/public/images/large/miscutils/milledPyrope/0.png deleted file mode 100644 index b92ccbce38..0000000000 Binary files a/front/public/images/large/miscutils/milledPyrope/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledRedstone/0.png b/front/public/images/large/miscutils/milledRedstone/0.png deleted file mode 100644 index 12fa3f6d60..0000000000 Binary files a/front/public/images/large/miscutils/milledRedstone/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledSpessartine/0.png b/front/public/images/large/miscutils/milledSpessartine/0.png deleted file mode 100644 index c6e2b11275..0000000000 Binary files a/front/public/images/large/miscutils/milledSpessartine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/milledSphalerite/0.png b/front/public/images/large/miscutils/milledSphalerite/0.png deleted file mode 100644 index 5cb32a4f7c..0000000000 Binary files a/front/public/images/large/miscutils/milledSphalerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/0.png b/front/public/images/large/miscutils/miscutils.blockcasings/0.png deleted file mode 100644 index 271f496ae8..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/1.png b/front/public/images/large/miscutils/miscutils.blockcasings/1.png deleted file mode 100644 index bb889e2761..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/10.png b/front/public/images/large/miscutils/miscutils.blockcasings/10.png deleted file mode 100644 index 5400ed42d6..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/11.png b/front/public/images/large/miscutils/miscutils.blockcasings/11.png deleted file mode 100644 index b83460fefd..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/12.png b/front/public/images/large/miscutils/miscutils.blockcasings/12.png deleted file mode 100644 index 525990aef1..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/13.png b/front/public/images/large/miscutils/miscutils.blockcasings/13.png deleted file mode 100644 index 4d42b83f62..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/14.png b/front/public/images/large/miscutils/miscutils.blockcasings/14.png deleted file mode 100644 index 96c77ba54c..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/15.png b/front/public/images/large/miscutils/miscutils.blockcasings/15.png deleted file mode 100644 index 81aa0cdcbf..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/2.png b/front/public/images/large/miscutils/miscutils.blockcasings/2.png deleted file mode 100644 index d885491371..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/3.png b/front/public/images/large/miscutils/miscutils.blockcasings/3.png deleted file mode 100644 index 250d784281..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/4.png b/front/public/images/large/miscutils/miscutils.blockcasings/4.png deleted file mode 100644 index 7343e8a1d9..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/5.png b/front/public/images/large/miscutils/miscutils.blockcasings/5.png deleted file mode 100644 index 397eafaa60..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/6.png b/front/public/images/large/miscutils/miscutils.blockcasings/6.png deleted file mode 100644 index 56c4de345d..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/7.png b/front/public/images/large/miscutils/miscutils.blockcasings/7.png deleted file mode 100644 index 9f06e64f9c..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/8.png b/front/public/images/large/miscutils/miscutils.blockcasings/8.png deleted file mode 100644 index 167f125bca..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils.blockcasings/9.png b/front/public/images/large/miscutils/miscutils.blockcasings/9.png deleted file mode 100644 index 861d804116..0000000000 Binary files a/front/public/images/large/miscutils/miscutils.blockcasings/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/miscutils_fluidBlockSludge/0.png b/front/public/images/large/miscutils/miscutils_fluidBlockSludge/0.png deleted file mode 100644 index 0eca19b384..0000000000 Binary files a/front/public/images/large/miscutils/miscutils_fluidBlockSludge/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/mobessence/0.png b/front/public/images/large/miscutils/mobessence/0.png deleted file mode 100644 index 5d4d35cee6..0000000000 Binary files a/front/public/images/large/miscutils/mobessence/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/nitrobenzene/0.png b/front/public/images/large/miscutils/nitrobenzene/0.png deleted file mode 100644 index ddebb4c4a6..0000000000 Binary files a/front/public/images/large/miscutils/nitrobenzene/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreAgarditeCd/0.png b/front/public/images/large/miscutils/oreAgarditeCd/0.png deleted file mode 100644 index 6fe032ee3a..0000000000 Binary files a/front/public/images/large/miscutils/oreAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreAgarditeLa/0.png b/front/public/images/large/miscutils/oreAgarditeLa/0.png deleted file mode 100644 index e8bf326018..0000000000 Binary files a/front/public/images/large/miscutils/oreAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreAgarditeNd/0.png b/front/public/images/large/miscutils/oreAgarditeNd/0.png deleted file mode 100644 index 3709a42509..0000000000 Binary files a/front/public/images/large/miscutils/oreAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreAgarditeY/0.png b/front/public/images/large/miscutils/oreAgarditeY/0.png deleted file mode 100644 index 736300eafe..0000000000 Binary files a/front/public/images/large/miscutils/oreAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreAlburnite/0.png b/front/public/images/large/miscutils/oreAlburnite/0.png deleted file mode 100644 index 5e133416db..0000000000 Binary files a/front/public/images/large/miscutils/oreAlburnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreAncientGranite/0.png b/front/public/images/large/miscutils/oreAncientGranite/0.png deleted file mode 100644 index 01813d1dab..0000000000 Binary files a/front/public/images/large/miscutils/oreAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreBariteRd/0.png b/front/public/images/large/miscutils/oreBariteRd/0.png deleted file mode 100644 index 84c92081d0..0000000000 Binary files a/front/public/images/large/miscutils/oreBariteRd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreCerite/0.png b/front/public/images/large/miscutils/oreCerite/0.png deleted file mode 100644 index 4c21fd946d..0000000000 Binary files a/front/public/images/large/miscutils/oreCerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreComancheite/0.png b/front/public/images/large/miscutils/oreComancheite/0.png deleted file mode 100644 index 8de8d1e1ea..0000000000 Binary files a/front/public/images/large/miscutils/oreComancheite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreCrocoite/0.png b/front/public/images/large/miscutils/oreCrocoite/0.png deleted file mode 100644 index ee051a2aa3..0000000000 Binary files a/front/public/images/large/miscutils/oreCrocoite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreCryoliteF/0.png b/front/public/images/large/miscutils/oreCryoliteF/0.png deleted file mode 100644 index d1e50ae4a8..0000000000 Binary files a/front/public/images/large/miscutils/oreCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreDemicheleiteBr/0.png b/front/public/images/large/miscutils/oreDemicheleiteBr/0.png deleted file mode 100644 index 300130ddf0..0000000000 Binary files a/front/public/images/large/miscutils/oreDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreFlorencite/0.png b/front/public/images/large/miscutils/oreFlorencite/0.png deleted file mode 100644 index 697e29781e..0000000000 Binary files a/front/public/images/large/miscutils/oreFlorencite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreFluorcaphite/0.png b/front/public/images/large/miscutils/oreFluorcaphite/0.png deleted file mode 100644 index 147b17f73b..0000000000 Binary files a/front/public/images/large/miscutils/oreFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreFluoriteF/0.png b/front/public/images/large/miscutils/oreFluoriteF/0.png deleted file mode 100644 index 0fe534e942..0000000000 Binary files a/front/public/images/large/miscutils/oreFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreGadoliniteCe/0.png b/front/public/images/large/miscutils/oreGadoliniteCe/0.png deleted file mode 100644 index 340d1fe9f2..0000000000 Binary files a/front/public/images/large/miscutils/oreGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreGadoliniteY/0.png b/front/public/images/large/miscutils/oreGadoliniteY/0.png deleted file mode 100644 index 340d1fe9f2..0000000000 Binary files a/front/public/images/large/miscutils/oreGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreGeikielite/0.png b/front/public/images/large/miscutils/oreGeikielite/0.png deleted file mode 100644 index fdea564676..0000000000 Binary files a/front/public/images/large/miscutils/oreGeikielite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreGreenockite/0.png b/front/public/images/large/miscutils/oreGreenockite/0.png deleted file mode 100644 index 71d0d860ed..0000000000 Binary files a/front/public/images/large/miscutils/oreGreenockite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreHibonite/0.png b/front/public/images/large/miscutils/oreHibonite/0.png deleted file mode 100644 index 1bcb2b847a..0000000000 Binary files a/front/public/images/large/miscutils/oreHibonite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreHoneaite/0.png b/front/public/images/large/miscutils/oreHoneaite/0.png deleted file mode 100644 index 25b2cdc486..0000000000 Binary files a/front/public/images/large/miscutils/oreHoneaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreIrarsite/0.png b/front/public/images/large/miscutils/oreIrarsite/0.png deleted file mode 100644 index 486a3baec3..0000000000 Binary files a/front/public/images/large/miscutils/oreIrarsite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreKashinite/0.png b/front/public/images/large/miscutils/oreKashinite/0.png deleted file mode 100644 index 2b68f48737..0000000000 Binary files a/front/public/images/large/miscutils/oreKashinite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreKoboldite/0.png b/front/public/images/large/miscutils/oreKoboldite/0.png deleted file mode 100644 index 08f94b4866..0000000000 Binary files a/front/public/images/large/miscutils/oreKoboldite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreLafossaite/0.png b/front/public/images/large/miscutils/oreLafossaite/0.png deleted file mode 100644 index 09e7c869cf..0000000000 Binary files a/front/public/images/large/miscutils/oreLafossaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreLanthaniteCe/0.png b/front/public/images/large/miscutils/oreLanthaniteCe/0.png deleted file mode 100644 index e428628f9b..0000000000 Binary files a/front/public/images/large/miscutils/oreLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreLanthaniteLa/0.png b/front/public/images/large/miscutils/oreLanthaniteLa/0.png deleted file mode 100644 index 4cd706ba0e..0000000000 Binary files a/front/public/images/large/miscutils/oreLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreLanthaniteNd/0.png b/front/public/images/large/miscutils/oreLanthaniteNd/0.png deleted file mode 100644 index f1ca7df46f..0000000000 Binary files a/front/public/images/large/miscutils/oreLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreLautarite/0.png b/front/public/images/large/miscutils/oreLautarite/0.png deleted file mode 100644 index ee08f309d8..0000000000 Binary files a/front/public/images/large/miscutils/oreLautarite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreLepersonnite/0.png b/front/public/images/large/miscutils/oreLepersonnite/0.png deleted file mode 100644 index 4a9d9966b8..0000000000 Binary files a/front/public/images/large/miscutils/oreLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreMiessiite/0.png b/front/public/images/large/miscutils/oreMiessiite/0.png deleted file mode 100644 index f67c5150a8..0000000000 Binary files a/front/public/images/large/miscutils/oreMiessiite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreNichromite/0.png b/front/public/images/large/miscutils/oreNichromite/0.png deleted file mode 100644 index d75febcf7d..0000000000 Binary files a/front/public/images/large/miscutils/oreNichromite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/orePerroudite/0.png b/front/public/images/large/miscutils/orePerroudite/0.png deleted file mode 100644 index 9c4909f048..0000000000 Binary files a/front/public/images/large/miscutils/orePerroudite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/orePolycrase/0.png b/front/public/images/large/miscutils/orePolycrase/0.png deleted file mode 100644 index 48526ec0f0..0000000000 Binary files a/front/public/images/large/miscutils/orePolycrase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreRadioactiveMineralMix/0.png b/front/public/images/large/miscutils/oreRadioactiveMineralMix/0.png deleted file mode 100644 index 27e78f6d0f..0000000000 Binary files a/front/public/images/large/miscutils/oreRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreRunite/0.png b/front/public/images/large/miscutils/oreRunite/0.png deleted file mode 100644 index 21f985cfcb..0000000000 Binary files a/front/public/images/large/miscutils/oreRunite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreSamarskiteY/0.png b/front/public/images/large/miscutils/oreSamarskiteY/0.png deleted file mode 100644 index 6747d2695f..0000000000 Binary files a/front/public/images/large/miscutils/oreSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreSamarskiteYb/0.png b/front/public/images/large/miscutils/oreSamarskiteYb/0.png deleted file mode 100644 index da268a0c92..0000000000 Binary files a/front/public/images/large/miscutils/oreSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreTitanite/0.png b/front/public/images/large/miscutils/oreTitanite/0.png deleted file mode 100644 index 52c2e40381..0000000000 Binary files a/front/public/images/large/miscutils/oreTitanite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreXenotime/0.png b/front/public/images/large/miscutils/oreXenotime/0.png deleted file mode 100644 index 61d5ee58f2..0000000000 Binary files a/front/public/images/large/miscutils/oreXenotime/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreYttriaite/0.png b/front/public/images/large/miscutils/oreYttriaite/0.png deleted file mode 100644 index 9b215c94e1..0000000000 Binary files a/front/public/images/large/miscutils/oreYttriaite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreYttrialite/0.png b/front/public/images/large/miscutils/oreYttrialite/0.png deleted file mode 100644 index f7cd302d8c..0000000000 Binary files a/front/public/images/large/miscutils/oreYttrialite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreYttrocerite/0.png b/front/public/images/large/miscutils/oreYttrocerite/0.png deleted file mode 100644 index 2f707b3372..0000000000 Binary files a/front/public/images/large/miscutils/oreYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreZimbabweite/0.png b/front/public/images/large/miscutils/oreZimbabweite/0.png deleted file mode 100644 index 4ae88599ed..0000000000 Binary files a/front/public/images/large/miscutils/oreZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreZircon/0.png b/front/public/images/large/miscutils/oreZircon/0.png deleted file mode 100644 index fb7810e7dc..0000000000 Binary files a/front/public/images/large/miscutils/oreZircon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreZirconolite/0.png b/front/public/images/large/miscutils/oreZirconolite/0.png deleted file mode 100644 index 9f6dbc6177..0000000000 Binary files a/front/public/images/large/miscutils/oreZirconolite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreZircophyllite/0.png b/front/public/images/large/miscutils/oreZircophyllite/0.png deleted file mode 100644 index 90bea53a7f..0000000000 Binary files a/front/public/images/large/miscutils/oreZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/oreZirkelite/0.png b/front/public/images/large/miscutils/oreZirkelite/0.png deleted file mode 100644 index ff29f092f3..0000000000 Binary files a/front/public/images/large/miscutils/oreZirkelite/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/0.png b/front/public/images/large/miscutils/particleBase/0.png deleted file mode 100644 index 8619d17581..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/1.png b/front/public/images/large/miscutils/particleBase/1.png deleted file mode 100644 index 5ef84cedee..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/10.png b/front/public/images/large/miscutils/particleBase/10.png deleted file mode 100644 index cea34c3ed9..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/10.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/11.png b/front/public/images/large/miscutils/particleBase/11.png deleted file mode 100644 index fcc49b76cb..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/11.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/12.png b/front/public/images/large/miscutils/particleBase/12.png deleted file mode 100644 index 43af0f9fe7..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/12.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/13.png b/front/public/images/large/miscutils/particleBase/13.png deleted file mode 100644 index d926d2429b..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/13.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/14.png b/front/public/images/large/miscutils/particleBase/14.png deleted file mode 100644 index d3dec5a7a6..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/14.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/15.png b/front/public/images/large/miscutils/particleBase/15.png deleted file mode 100644 index 62ba449697..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/15.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/16.png b/front/public/images/large/miscutils/particleBase/16.png deleted file mode 100644 index d24c32c454..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/16.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/17.png b/front/public/images/large/miscutils/particleBase/17.png deleted file mode 100644 index 692ca6e072..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/17.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/18.png b/front/public/images/large/miscutils/particleBase/18.png deleted file mode 100644 index c79ae483b6..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/18.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/19.png b/front/public/images/large/miscutils/particleBase/19.png deleted file mode 100644 index 9e2ff451c2..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/19.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/2.png b/front/public/images/large/miscutils/particleBase/2.png deleted file mode 100644 index 86622357df..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/2.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/20.png b/front/public/images/large/miscutils/particleBase/20.png deleted file mode 100644 index e9799514a3..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/20.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/21.png b/front/public/images/large/miscutils/particleBase/21.png deleted file mode 100644 index 9d57461a53..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/21.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/22.png b/front/public/images/large/miscutils/particleBase/22.png deleted file mode 100644 index 9948ce3907..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/22.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/23.png b/front/public/images/large/miscutils/particleBase/23.png deleted file mode 100644 index 272eb962cc..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/23.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/24.png b/front/public/images/large/miscutils/particleBase/24.png deleted file mode 100644 index d149d361e3..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/24.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/3.png b/front/public/images/large/miscutils/particleBase/3.png deleted file mode 100644 index 4de38eece6..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/3.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/4.png b/front/public/images/large/miscutils/particleBase/4.png deleted file mode 100644 index 9cf9de7786..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/4.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/5.png b/front/public/images/large/miscutils/particleBase/5.png deleted file mode 100644 index b478488a71..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/5.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/6.png b/front/public/images/large/miscutils/particleBase/6.png deleted file mode 100644 index 1eebcb5bd8..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/6.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/7.png b/front/public/images/large/miscutils/particleBase/7.png deleted file mode 100644 index 83b48342da..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/7.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/8.png b/front/public/images/large/miscutils/particleBase/8.png deleted file mode 100644 index e411e15710..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/8.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleBase/9.png b/front/public/images/large/miscutils/particleBase/9.png deleted file mode 100644 index 20e67103af..0000000000 Binary files a/front/public/images/large/miscutils/particleBase/9.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleIon/0.png b/front/public/images/large/miscutils/particleIon/0.png deleted file mode 100644 index 81b04e3a14..0000000000 Binary files a/front/public/images/large/miscutils/particleIon/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/particleIon/1.png b/front/public/images/large/miscutils/particleIon/1.png deleted file mode 100644 index f4548046a7..0000000000 Binary files a/front/public/images/large/miscutils/particleIon/1.png and /dev/null differ diff --git a/front/public/images/large/miscutils/personalCloakingDevice-0.0/0.png b/front/public/images/large/miscutils/personalCloakingDevice-0.0/0.png deleted file mode 100644 index 3a57af1156..0000000000 Binary files a/front/public/images/large/miscutils/personalCloakingDevice-0.0/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/personalHealingDevice/0.png b/front/public/images/large/miscutils/personalHealingDevice/0.png deleted file mode 100644 index 3a57af1156..0000000000 Binary files a/front/public/images/large/miscutils/personalHealingDevice/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/pineoil/0.png b/front/public/images/large/miscutils/pineoil/0.png deleted file mode 100644 index 8d3de47649..0000000000 Binary files a/front/public/images/large/miscutils/pineoil/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/polyurethane/0.png b/front/public/images/large/miscutils/polyurethane/0.png deleted file mode 100644 index 3061c43b1e..0000000000 Binary files a/front/public/images/large/miscutils/polyurethane/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/propionicacid/0.png b/front/public/images/large/miscutils/propionicacid/0.png deleted file mode 100644 index 2a3610230b..0000000000 Binary files a/front/public/images/large/miscutils/propionicacid/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/putrescine/0.png b/front/public/images/large/miscutils/putrescine/0.png deleted file mode 100644 index b69e67db4e..0000000000 Binary files a/front/public/images/large/miscutils/putrescine/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/pyrotheum/0.png b/front/public/images/large/miscutils/pyrotheum/0.png deleted file mode 100644 index bed0161fdc..0000000000 Binary files a/front/public/images/large/miscutils/pyrotheum/0.png and /dev/null differ diff --git a/front/public/images/large/miscutils/ureamix/0.png b/front/public/images/large/miscutils/ureamix/0.png deleted file mode 100644 index 3611cb73f9..0000000000 Binary files a/front/public/images/large/miscutils/ureamix/0.png and /dev/null differ diff --git a/front/public/images/large/naturescompass/NaturesCompass/0.png b/front/public/images/large/naturescompass/NaturesCompass/0.png deleted file mode 100644 index 55effa668d..0000000000 Binary files a/front/public/images/large/naturescompass/NaturesCompass/0.png and /dev/null differ diff --git a/front/public/images/large/neenergistics/tile.pattern_interface/0.png b/front/public/images/large/neenergistics/tile.pattern_interface/0.png deleted file mode 100644 index 2f8755e19e..0000000000 Binary files a/front/public/images/large/neenergistics/tile.pattern_interface/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/accuraccyUpgradeItem/0.png b/front/public/images/large/openmodularturrets/accuraccyUpgradeItem/0.png deleted file mode 100644 index 3d0da89f6c..0000000000 Binary files a/front/public/images/large/openmodularturrets/accuraccyUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/barrelTierFive/0.png b/front/public/images/large/openmodularturrets/barrelTierFive/0.png deleted file mode 100644 index a14b15f090..0000000000 Binary files a/front/public/images/large/openmodularturrets/barrelTierFive/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/barrelTierFour/0.png b/front/public/images/large/openmodularturrets/barrelTierFour/0.png deleted file mode 100644 index f39f2b6677..0000000000 Binary files a/front/public/images/large/openmodularturrets/barrelTierFour/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/barrelTierOne/0.png b/front/public/images/large/openmodularturrets/barrelTierOne/0.png deleted file mode 100644 index 031a53c9f4..0000000000 Binary files a/front/public/images/large/openmodularturrets/barrelTierOne/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/barrelTierThree/0.png b/front/public/images/large/openmodularturrets/barrelTierThree/0.png deleted file mode 100644 index 52e54b2cf2..0000000000 Binary files a/front/public/images/large/openmodularturrets/barrelTierThree/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/barrelTierTwo/0.png b/front/public/images/large/openmodularturrets/barrelTierTwo/0.png deleted file mode 100644 index 2ac096d493..0000000000 Binary files a/front/public/images/large/openmodularturrets/barrelTierTwo/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/baseTierFourBlock/0.png b/front/public/images/large/openmodularturrets/baseTierFourBlock/0.png deleted file mode 100644 index add4f641db..0000000000 Binary files a/front/public/images/large/openmodularturrets/baseTierFourBlock/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/baseTierOneBlock/0.png b/front/public/images/large/openmodularturrets/baseTierOneBlock/0.png deleted file mode 100644 index 70d939f71d..0000000000 Binary files a/front/public/images/large/openmodularturrets/baseTierOneBlock/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/baseTierThreeBlock/0.png b/front/public/images/large/openmodularturrets/baseTierThreeBlock/0.png deleted file mode 100644 index 2eb815e6ef..0000000000 Binary files a/front/public/images/large/openmodularturrets/baseTierThreeBlock/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/baseTierTwoBlock/0.png b/front/public/images/large/openmodularturrets/baseTierTwoBlock/0.png deleted file mode 100644 index 764de98920..0000000000 Binary files a/front/public/images/large/openmodularturrets/baseTierTwoBlock/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/baseTierWood/0.png b/front/public/images/large/openmodularturrets/baseTierWood/0.png deleted file mode 100644 index 7c3b7afce2..0000000000 Binary files a/front/public/images/large/openmodularturrets/baseTierWood/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/blazingClayCraftable/0.png b/front/public/images/large/openmodularturrets/blazingClayCraftable/0.png deleted file mode 100644 index a90f1dac7a..0000000000 Binary files a/front/public/images/large/openmodularturrets/blazingClayCraftable/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/bulletCraftable/0.png b/front/public/images/large/openmodularturrets/bulletCraftable/0.png deleted file mode 100644 index 3f731e0b6d..0000000000 Binary files a/front/public/images/large/openmodularturrets/bulletCraftable/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/bulletThrowable/0.png b/front/public/images/large/openmodularturrets/bulletThrowable/0.png deleted file mode 100644 index fb4321faf0..0000000000 Binary files a/front/public/images/large/openmodularturrets/bulletThrowable/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/chamberTierFive/0.png b/front/public/images/large/openmodularturrets/chamberTierFive/0.png deleted file mode 100644 index cdb9e9daa6..0000000000 Binary files a/front/public/images/large/openmodularturrets/chamberTierFive/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/chamberTierFour/0.png b/front/public/images/large/openmodularturrets/chamberTierFour/0.png deleted file mode 100644 index f4423d5154..0000000000 Binary files a/front/public/images/large/openmodularturrets/chamberTierFour/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/chamberTierOne/0.png b/front/public/images/large/openmodularturrets/chamberTierOne/0.png deleted file mode 100644 index 90915a4631..0000000000 Binary files a/front/public/images/large/openmodularturrets/chamberTierOne/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/chamberTierThree/0.png b/front/public/images/large/openmodularturrets/chamberTierThree/0.png deleted file mode 100644 index 284e544f0e..0000000000 Binary files a/front/public/images/large/openmodularturrets/chamberTierThree/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/chamberTierTwo/0.png b/front/public/images/large/openmodularturrets/chamberTierTwo/0.png deleted file mode 100644 index 09832b41df..0000000000 Binary files a/front/public/images/large/openmodularturrets/chamberTierTwo/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/concealerAddon/0.png b/front/public/images/large/openmodularturrets/concealerAddon/0.png deleted file mode 100644 index 58b60ec64b..0000000000 Binary files a/front/public/images/large/openmodularturrets/concealerAddon/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/damageAmpAddon/0.png b/front/public/images/large/openmodularturrets/damageAmpAddon/0.png deleted file mode 100644 index 21eae5f747..0000000000 Binary files a/front/public/images/large/openmodularturrets/damageAmpAddon/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/disposeItemTurret/0.png b/front/public/images/large/openmodularturrets/disposeItemTurret/0.png deleted file mode 100644 index b5d7b79820..0000000000 Binary files a/front/public/images/large/openmodularturrets/disposeItemTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/efficiencyUpgradeItem/0.png b/front/public/images/large/openmodularturrets/efficiencyUpgradeItem/0.png deleted file mode 100644 index a87af1605b..0000000000 Binary files a/front/public/images/large/openmodularturrets/efficiencyUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderInvTierFive/0.png b/front/public/images/large/openmodularturrets/expanderInvTierFive/0.png deleted file mode 100644 index af4fb66f40..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderInvTierFive/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderInvTierFour/0.png b/front/public/images/large/openmodularturrets/expanderInvTierFour/0.png deleted file mode 100644 index 1104400f7b..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderInvTierFour/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderInvTierOne/0.png b/front/public/images/large/openmodularturrets/expanderInvTierOne/0.png deleted file mode 100644 index cae2a1761e..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderInvTierOne/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderInvTierThree/0.png b/front/public/images/large/openmodularturrets/expanderInvTierThree/0.png deleted file mode 100644 index ecccf12181..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderInvTierThree/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderInvTierTwo/0.png b/front/public/images/large/openmodularturrets/expanderInvTierTwo/0.png deleted file mode 100644 index 81fe504442..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderInvTierTwo/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderPowerTierFive/0.png b/front/public/images/large/openmodularturrets/expanderPowerTierFive/0.png deleted file mode 100644 index b04b38ac5f..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderPowerTierFive/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderPowerTierFour/0.png b/front/public/images/large/openmodularturrets/expanderPowerTierFour/0.png deleted file mode 100644 index 188dcb4fa5..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderPowerTierFour/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderPowerTierOne/0.png b/front/public/images/large/openmodularturrets/expanderPowerTierOne/0.png deleted file mode 100644 index de550637d5..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderPowerTierOne/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderPowerTierThree/0.png b/front/public/images/large/openmodularturrets/expanderPowerTierThree/0.png deleted file mode 100644 index 323ed02068..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderPowerTierThree/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/expanderPowerTierTwo/0.png b/front/public/images/large/openmodularturrets/expanderPowerTierTwo/0.png deleted file mode 100644 index 0231ce72d4..0000000000 Binary files a/front/public/images/large/openmodularturrets/expanderPowerTierTwo/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/fenceTierFive/0.png b/front/public/images/large/openmodularturrets/fenceTierFive/0.png deleted file mode 100644 index 3fd323e424..0000000000 Binary files a/front/public/images/large/openmodularturrets/fenceTierFive/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/fenceTierFour/0.png b/front/public/images/large/openmodularturrets/fenceTierFour/0.png deleted file mode 100644 index 69d5c6fb9c..0000000000 Binary files a/front/public/images/large/openmodularturrets/fenceTierFour/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/fenceTierOne/0.png b/front/public/images/large/openmodularturrets/fenceTierOne/0.png deleted file mode 100644 index 47c20687f4..0000000000 Binary files a/front/public/images/large/openmodularturrets/fenceTierOne/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/fenceTierThree/0.png b/front/public/images/large/openmodularturrets/fenceTierThree/0.png deleted file mode 100644 index 8260bd11ed..0000000000 Binary files a/front/public/images/large/openmodularturrets/fenceTierThree/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/fenceTierTwo/0.png b/front/public/images/large/openmodularturrets/fenceTierTwo/0.png deleted file mode 100644 index 90602b0886..0000000000 Binary files a/front/public/images/large/openmodularturrets/fenceTierTwo/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/ferroSlug/0.png b/front/public/images/large/openmodularturrets/ferroSlug/0.png deleted file mode 100644 index d1ade82e26..0000000000 Binary files a/front/public/images/large/openmodularturrets/ferroSlug/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/fireRateUpgradeItem/0.png b/front/public/images/large/openmodularturrets/fireRateUpgradeItem/0.png deleted file mode 100644 index 8216b6cbb6..0000000000 Binary files a/front/public/images/large/openmodularturrets/fireRateUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/grenadeCraftable/0.png b/front/public/images/large/openmodularturrets/grenadeCraftable/0.png deleted file mode 100644 index cea66ea612..0000000000 Binary files a/front/public/images/large/openmodularturrets/grenadeCraftable/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/grenadeThrowable/0.png b/front/public/images/large/openmodularturrets/grenadeThrowable/0.png deleted file mode 100644 index cea66ea612..0000000000 Binary files a/front/public/images/large/openmodularturrets/grenadeThrowable/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/grenadeTurret/0.png b/front/public/images/large/openmodularturrets/grenadeTurret/0.png deleted file mode 100644 index 81762feb5e..0000000000 Binary files a/front/public/images/large/openmodularturrets/grenadeTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/hardWallTierFive/0.png b/front/public/images/large/openmodularturrets/hardWallTierFive/0.png deleted file mode 100644 index c1ad874afe..0000000000 Binary files a/front/public/images/large/openmodularturrets/hardWallTierFive/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/hardWallTierFour/0.png b/front/public/images/large/openmodularturrets/hardWallTierFour/0.png deleted file mode 100644 index 04d5d31c5e..0000000000 Binary files a/front/public/images/large/openmodularturrets/hardWallTierFour/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/hardWallTierOne/0.png b/front/public/images/large/openmodularturrets/hardWallTierOne/0.png deleted file mode 100644 index 03304393af..0000000000 Binary files a/front/public/images/large/openmodularturrets/hardWallTierOne/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/hardWallTierThree/0.png b/front/public/images/large/openmodularturrets/hardWallTierThree/0.png deleted file mode 100644 index 9d5288570c..0000000000 Binary files a/front/public/images/large/openmodularturrets/hardWallTierThree/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/hardWallTierTwo/0.png b/front/public/images/large/openmodularturrets/hardWallTierTwo/0.png deleted file mode 100644 index ca7ad30c43..0000000000 Binary files a/front/public/images/large/openmodularturrets/hardWallTierTwo/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/incendiaryTurret/0.png b/front/public/images/large/openmodularturrets/incendiaryTurret/0.png deleted file mode 100644 index 83aae6723b..0000000000 Binary files a/front/public/images/large/openmodularturrets/incendiaryTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/ioBus/0.png b/front/public/images/large/openmodularturrets/ioBus/0.png deleted file mode 100644 index 7ebeb6d185..0000000000 Binary files a/front/public/images/large/openmodularturrets/ioBus/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/laserTurret/0.png b/front/public/images/large/openmodularturrets/laserTurret/0.png deleted file mode 100644 index e279fbae01..0000000000 Binary files a/front/public/images/large/openmodularturrets/laserTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/leverBlock/0.png b/front/public/images/large/openmodularturrets/leverBlock/0.png deleted file mode 100644 index 293038d712..0000000000 Binary files a/front/public/images/large/openmodularturrets/leverBlock/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/machineGunTurret/0.png b/front/public/images/large/openmodularturrets/machineGunTurret/0.png deleted file mode 100644 index 3004ffe88b..0000000000 Binary files a/front/public/images/large/openmodularturrets/machineGunTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/potatoCannonTurret/0.png b/front/public/images/large/openmodularturrets/potatoCannonTurret/0.png deleted file mode 100644 index 3022d0cf8c..0000000000 Binary files a/front/public/images/large/openmodularturrets/potatoCannonTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/potentiaAddon/0.png b/front/public/images/large/openmodularturrets/potentiaAddon/0.png deleted file mode 100644 index 3fb32840cf..0000000000 Binary files a/front/public/images/large/openmodularturrets/potentiaAddon/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/railGunTurret/0.png b/front/public/images/large/openmodularturrets/railGunTurret/0.png deleted file mode 100644 index 08eedc4188..0000000000 Binary files a/front/public/images/large/openmodularturrets/railGunTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/rangeUpgradeItem/0.png b/front/public/images/large/openmodularturrets/rangeUpgradeItem/0.png deleted file mode 100644 index 0e113f652f..0000000000 Binary files a/front/public/images/large/openmodularturrets/rangeUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/recyclerAddon/0.png b/front/public/images/large/openmodularturrets/recyclerAddon/0.png deleted file mode 100644 index 8d0b0d5857..0000000000 Binary files a/front/public/images/large/openmodularturrets/recyclerAddon/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/redstoneReactorAddon/0.png b/front/public/images/large/openmodularturrets/redstoneReactorAddon/0.png deleted file mode 100644 index 138f63b641..0000000000 Binary files a/front/public/images/large/openmodularturrets/redstoneReactorAddon/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/relativisticTurret/0.png b/front/public/images/large/openmodularturrets/relativisticTurret/0.png deleted file mode 100644 index b310f16d03..0000000000 Binary files a/front/public/images/large/openmodularturrets/relativisticTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/rocketCraftable/0.png b/front/public/images/large/openmodularturrets/rocketCraftable/0.png deleted file mode 100644 index e4798b958b..0000000000 Binary files a/front/public/images/large/openmodularturrets/rocketCraftable/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/rocketTurret/0.png b/front/public/images/large/openmodularturrets/rocketTurret/0.png deleted file mode 100644 index ed1e65ba07..0000000000 Binary files a/front/public/images/large/openmodularturrets/rocketTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/scattershotUpgradeItem/0.png b/front/public/images/large/openmodularturrets/scattershotUpgradeItem/0.png deleted file mode 100644 index 8fda7481d6..0000000000 Binary files a/front/public/images/large/openmodularturrets/scattershotUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/sensorTierFiveItem/0.png b/front/public/images/large/openmodularturrets/sensorTierFiveItem/0.png deleted file mode 100644 index 1725856a06..0000000000 Binary files a/front/public/images/large/openmodularturrets/sensorTierFiveItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/sensorTierFourItem/0.png b/front/public/images/large/openmodularturrets/sensorTierFourItem/0.png deleted file mode 100644 index 29cb552b97..0000000000 Binary files a/front/public/images/large/openmodularturrets/sensorTierFourItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/sensorTierOneItem/0.png b/front/public/images/large/openmodularturrets/sensorTierOneItem/0.png deleted file mode 100644 index 4321105fc6..0000000000 Binary files a/front/public/images/large/openmodularturrets/sensorTierOneItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/sensorTierThreeItem/0.png b/front/public/images/large/openmodularturrets/sensorTierThreeItem/0.png deleted file mode 100644 index 4d05d46746..0000000000 Binary files a/front/public/images/large/openmodularturrets/sensorTierThreeItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/sensorTierTwoItem/0.png b/front/public/images/large/openmodularturrets/sensorTierTwoItem/0.png deleted file mode 100644 index 13e00eb177..0000000000 Binary files a/front/public/images/large/openmodularturrets/sensorTierTwoItem/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/serialPortAddon/0.png b/front/public/images/large/openmodularturrets/serialPortAddon/0.png deleted file mode 100644 index 8419f3c6c6..0000000000 Binary files a/front/public/images/large/openmodularturrets/serialPortAddon/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/solarPanelAddon/0.png b/front/public/images/large/openmodularturrets/solarPanelAddon/0.png deleted file mode 100644 index 4ccf571401..0000000000 Binary files a/front/public/images/large/openmodularturrets/solarPanelAddon/0.png and /dev/null differ diff --git a/front/public/images/large/openmodularturrets/teleporterTurret/0.png b/front/public/images/large/openmodularturrets/teleporterTurret/0.png deleted file mode 100644 index 68e05a931b..0000000000 Binary files a/front/public/images/large/openmodularturrets/teleporterTurret/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.filecabinet/0.png b/front/public/images/large/openprinter/openprinter.filecabinet/0.png deleted file mode 100644 index 92ae037248..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.filecabinet/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.folder/0.png b/front/public/images/large/openprinter/openprinter.folder/0.png deleted file mode 100644 index 340a73b4a7..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.folder/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.paperShreds/0.png b/front/public/images/large/openprinter/openprinter.paperShreds/0.png deleted file mode 100644 index 8b208827c6..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.paperShreds/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.printedPage/0.png b/front/public/images/large/openprinter/openprinter.printedPage/0.png deleted file mode 100644 index f5975e0267..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.printedPage/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.printer/0.png b/front/public/images/large/openprinter/openprinter.printer/0.png deleted file mode 100644 index b3c2541b1c..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.printer/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.printerInkBlack/0.png b/front/public/images/large/openprinter/openprinter.printerInkBlack/0.png deleted file mode 100644 index 2f94c8bcc6..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.printerInkBlack/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.printerInkColor/0.png b/front/public/images/large/openprinter/openprinter.printerInkColor/0.png deleted file mode 100644 index 244ee98fb7..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.printerInkColor/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.printerPaperRoll/0.png b/front/public/images/large/openprinter/openprinter.printerPaperRoll/0.png deleted file mode 100644 index baea9e9842..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.printerPaperRoll/0.png and /dev/null differ diff --git a/front/public/images/large/openprinter/openprinter.shredder/0.png b/front/public/images/large/openprinter/openprinter.shredder/0.png deleted file mode 100644 index 4b9c95796b..0000000000 Binary files a/front/public/images/large/openprinter/openprinter.shredder/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/SecurityDoor/0.png b/front/public/images/large/opensecurity/SecurityDoor/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/opensecurity/SecurityDoor/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/SecurityDoorPrivate/0.png b/front/public/images/large/opensecurity/SecurityDoorPrivate/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/opensecurity/SecurityDoorPrivate/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/alarm/0.png b/front/public/images/large/opensecurity/alarm/0.png deleted file mode 100644 index 0c336e08a4..0000000000 Binary files a/front/public/images/large/opensecurity/alarm/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/biometricScanner/0.png b/front/public/images/large/opensecurity/biometricScanner/0.png deleted file mode 100644 index 8f497a7308..0000000000 Binary files a/front/public/images/large/opensecurity/biometricScanner/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/doorcontroller/0.png b/front/public/images/large/opensecurity/doorcontroller/0.png deleted file mode 100644 index abca37f9d3..0000000000 Binary files a/front/public/images/large/opensecurity/doorcontroller/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/energyTurretBlock/0.png b/front/public/images/large/opensecurity/energyTurretBlock/0.png deleted file mode 100644 index 0235ba1aaf..0000000000 Binary files a/front/public/images/large/opensecurity/energyTurretBlock/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/entitydetector/0.png b/front/public/images/large/opensecurity/entitydetector/0.png deleted file mode 100644 index 5279655522..0000000000 Binary files a/front/public/images/large/opensecurity/entitydetector/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/keypadLock/0.png b/front/public/images/large/opensecurity/keypadLock/0.png deleted file mode 100644 index 6fbd0b7e97..0000000000 Binary files a/front/public/images/large/opensecurity/keypadLock/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/magreader/0.png b/front/public/images/large/opensecurity/magreader/0.png deleted file mode 100644 index 34d814df55..0000000000 Binary files a/front/public/images/large/opensecurity/magreader/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.BlockKVM/0.png b/front/public/images/large/opensecurity/opensecurity.BlockKVM/0.png deleted file mode 100644 index 8f05b72761..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.BlockKVM/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.DataBlock/0.png b/front/public/images/large/opensecurity/opensecurity.DataBlock/0.png deleted file mode 100644 index 5abc71c4b4..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.DataBlock/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.SwitchableHub/0.png b/front/public/images/large/opensecurity/opensecurity.SwitchableHub/0.png deleted file mode 100644 index dc2065ef4a..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.SwitchableHub/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.cooldownUpgrade/0.png b/front/public/images/large/opensecurity/opensecurity.cooldownUpgrade/0.png deleted file mode 100644 index 7cbbae8911..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.cooldownUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.damageUpgrade/0.png b/front/public/images/large/opensecurity/opensecurity.damageUpgrade/0.png deleted file mode 100644 index f644f78854..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.damageUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.energyUpgrade/0.png b/front/public/images/large/opensecurity/opensecurity.energyUpgrade/0.png deleted file mode 100644 index c1326151a6..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.energyUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.magCard/0.png b/front/public/images/large/opensecurity/opensecurity.magCard/0.png deleted file mode 100644 index 8d1fca5df2..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.magCard/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.movementUpgrade/0.png b/front/public/images/large/opensecurity/opensecurity.movementUpgrade/0.png deleted file mode 100644 index bc18be9264..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.movementUpgrade/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.rfidCard/0.png b/front/public/images/large/opensecurity/opensecurity.rfidCard/0.png deleted file mode 100644 index 519cf8e6bb..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.rfidCard/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.rfidReaderCard/0.png b/front/public/images/large/opensecurity/opensecurity.rfidReaderCard/0.png deleted file mode 100644 index efafdfcbe9..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.rfidReaderCard/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.secureNetworkCard/0.png b/front/public/images/large/opensecurity/opensecurity.secureNetworkCard/0.png deleted file mode 100644 index 7fca6b99b0..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.secureNetworkCard/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.securityDoor/0.png b/front/public/images/large/opensecurity/opensecurity.securityDoor/0.png deleted file mode 100644 index 645fd14719..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.securityDoor/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/opensecurity.securityDoorPrivate/0.png b/front/public/images/large/opensecurity/opensecurity.securityDoorPrivate/0.png deleted file mode 100644 index c3cf4f667b..0000000000 Binary files a/front/public/images/large/opensecurity/opensecurity.securityDoorPrivate/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/rfidreader/0.png b/front/public/images/large/opensecurity/rfidreader/0.png deleted file mode 100644 index 83843f6f06..0000000000 Binary files a/front/public/images/large/opensecurity/rfidreader/0.png and /dev/null differ diff --git a/front/public/images/large/opensecurity/rfidwriter/0.png b/front/public/images/large/opensecurity/rfidwriter/0.png deleted file mode 100644 index 579213c337..0000000000 Binary files a/front/public/images/large/opensecurity/rfidwriter/0.png and /dev/null differ diff --git a/front/public/images/large/personalspace/personalPortal/0.png b/front/public/images/large/personalspace/personalPortal/0.png deleted file mode 100644 index 5d3c7cc2b1..0000000000 Binary files a/front/public/images/large/personalspace/personalPortal/0.png and /dev/null differ diff --git a/front/public/images/large/personalspace/personalPortal_migration2/0.png b/front/public/images/large/personalspace/personalPortal_migration2/0.png deleted file mode 100644 index 5d3c7cc2b1..0000000000 Binary files a/front/public/images/large/personalspace/personalPortal_migration2/0.png and /dev/null differ diff --git a/front/public/images/large/personalspace/personalPortal_migration3/0.png b/front/public/images/large/personalspace/personalPortal_migration3/0.png deleted file mode 100644 index 5d3c7cc2b1..0000000000 Binary files a/front/public/images/large/personalspace/personalPortal_migration3/0.png and /dev/null differ diff --git a/front/public/images/large/personalspace/personalPortal_migration4/0.png b/front/public/images/large/personalspace/personalPortal_migration4/0.png deleted file mode 100644 index 5d3c7cc2b1..0000000000 Binary files a/front/public/images/large/personalspace/personalPortal_migration4/0.png and /dev/null differ diff --git a/front/public/images/large/questbook/ItemQuestBook/0.png b/front/public/images/large/questbook/ItemQuestBook/0.png deleted file mode 100644 index 8839d6febe..0000000000 Binary files a/front/public/images/large/questbook/ItemQuestBook/0.png and /dev/null differ diff --git a/front/public/images/large/sleepingbag/sleepingBag/0.png b/front/public/images/large/sleepingbag/sleepingBag/0.png deleted file mode 100644 index cdddd6962a..0000000000 Binary files a/front/public/images/large/sleepingbag/sleepingBag/0.png and /dev/null differ diff --git a/front/public/images/large/sleepingbag/sleepingBagBlock/0.png b/front/public/images/large/sleepingbag/sleepingBagBlock/0.png deleted file mode 100644 index afce72500c..0000000000 Binary files a/front/public/images/large/sleepingbag/sleepingBagBlock/0.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/0.png b/front/public/images/large/structurelib/blockhint/0.png deleted file mode 100644 index cf4044095a..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/0.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/1.png b/front/public/images/large/structurelib/blockhint/1.png deleted file mode 100644 index bc1303ed47..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/1.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/10.png b/front/public/images/large/structurelib/blockhint/10.png deleted file mode 100644 index 4a233cec25..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/10.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/11.png b/front/public/images/large/structurelib/blockhint/11.png deleted file mode 100644 index 348a262dcd..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/11.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/12.png b/front/public/images/large/structurelib/blockhint/12.png deleted file mode 100644 index 3e0404c946..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/12.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/13.png b/front/public/images/large/structurelib/blockhint/13.png deleted file mode 100644 index 9fefcf8cf5..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/13.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/14.png b/front/public/images/large/structurelib/blockhint/14.png deleted file mode 100644 index 5c9012a34e..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/14.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/15.png b/front/public/images/large/structurelib/blockhint/15.png deleted file mode 100644 index 940f59451d..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/15.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/2.png b/front/public/images/large/structurelib/blockhint/2.png deleted file mode 100644 index 3e105923fe..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/2.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/3.png b/front/public/images/large/structurelib/blockhint/3.png deleted file mode 100644 index 1faaafeada..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/3.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/4.png b/front/public/images/large/structurelib/blockhint/4.png deleted file mode 100644 index 69989336ce..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/4.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/5.png b/front/public/images/large/structurelib/blockhint/5.png deleted file mode 100644 index 94b335839b..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/5.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/6.png b/front/public/images/large/structurelib/blockhint/6.png deleted file mode 100644 index 2921d63d81..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/6.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/7.png b/front/public/images/large/structurelib/blockhint/7.png deleted file mode 100644 index 5890b74f7e..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/7.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/8.png b/front/public/images/large/structurelib/blockhint/8.png deleted file mode 100644 index a91d0851c1..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/8.png and /dev/null differ diff --git a/front/public/images/large/structurelib/blockhint/9.png b/front/public/images/large/structurelib/blockhint/9.png deleted file mode 100644 index 96a255cea1..0000000000 Binary files a/front/public/images/large/structurelib/blockhint/9.png and /dev/null differ diff --git a/front/public/images/large/structurelib/item.structurelib.constructableTrigger/0.png b/front/public/images/large/structurelib/item.structurelib.constructableTrigger/0.png deleted file mode 100644 index f40564a22e..0000000000 Binary files a/front/public/images/large/structurelib/item.structurelib.constructableTrigger/0.png and /dev/null differ diff --git a/front/public/images/large/structurelib/item.structurelib.frontRotationTool/0.png b/front/public/images/large/structurelib/item.structurelib.frontRotationTool/0.png deleted file mode 100644 index 9b088195c7..0000000000 Binary files a/front/public/images/large/structurelib/item.structurelib.frontRotationTool/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/AdminSolarPanel/0.png b/front/public/images/large/supersolarpanel/AdminSolarPanel/0.png deleted file mode 100644 index 3d0ab90674..0000000000 Binary files a/front/public/images/large/supersolarpanel/AdminSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/PhotonicSolarPanel/0.png b/front/public/images/large/supersolarpanel/PhotonicSolarPanel/0.png deleted file mode 100644 index f8bf9d42f8..0000000000 Binary files a/front/public/images/large/supersolarpanel/PhotonicSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/SingularSolarPanel/0.png b/front/public/images/large/supersolarpanel/SingularSolarPanel/0.png deleted file mode 100644 index a506aaddf5..0000000000 Binary files a/front/public/images/large/supersolarpanel/SingularSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/SpectralSolarPanel/0.png b/front/public/images/large/supersolarpanel/SpectralSolarPanel/0.png deleted file mode 100644 index db92bbb784..0000000000 Binary files a/front/public/images/large/supersolarpanel/SpectralSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/bluecomponent/0.png b/front/public/images/large/supersolarpanel/bluecomponent/0.png deleted file mode 100644 index 4c0e780e3b..0000000000 Binary files a/front/public/images/large/supersolarpanel/bluecomponent/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/enderquantumcomponent/0.png b/front/public/images/large/supersolarpanel/enderquantumcomponent/0.png deleted file mode 100644 index 0117c5e426..0000000000 Binary files a/front/public/images/large/supersolarpanel/enderquantumcomponent/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/greencomponent/0.png b/front/public/images/large/supersolarpanel/greencomponent/0.png deleted file mode 100644 index d7888794ae..0000000000 Binary files a/front/public/images/large/supersolarpanel/greencomponent/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/redcomponent/0.png b/front/public/images/large/supersolarpanel/redcomponent/0.png deleted file mode 100644 index 6aa8332bdd..0000000000 Binary files a/front/public/images/large/supersolarpanel/redcomponent/0.png and /dev/null differ diff --git a/front/public/images/large/supersolarpanel/solarsplitter/0.png b/front/public/images/large/supersolarpanel/solarsplitter/0.png deleted file mode 100644 index 8ff8da422f..0000000000 Binary files a/front/public/images/large/supersolarpanel/solarsplitter/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/Eye of Harmony Renderer/0.png b/front/public/images/large/tectech/Eye of Harmony Renderer/0.png deleted file mode 100644 index 5ca5c081bb..0000000000 Binary files a/front/public/images/large/tectech/Eye of Harmony Renderer/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/ForgeOfGodsRenderBlock/0.png b/front/public/images/large/tectech/ForgeOfGodsRenderBlock/0.png deleted file mode 100644 index 5ca5c081bb..0000000000 Binary files a/front/public/images/large/tectech/ForgeOfGodsRenderBlock/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/0.png b/front/public/images/large/tectech/gt.blockcasingsBA0/0.png deleted file mode 100644 index cd4cec6aa4..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/1.png b/front/public/images/large/tectech/gt.blockcasingsBA0/1.png deleted file mode 100644 index 561bf8826f..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/10.png b/front/public/images/large/tectech/gt.blockcasingsBA0/10.png deleted file mode 100644 index 6e69e4e461..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/10.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/11.png b/front/public/images/large/tectech/gt.blockcasingsBA0/11.png deleted file mode 100644 index 8efe92242e..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/11.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/12.png b/front/public/images/large/tectech/gt.blockcasingsBA0/12.png deleted file mode 100644 index 882fb0fb87..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/12.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/2.png b/front/public/images/large/tectech/gt.blockcasingsBA0/2.png deleted file mode 100644 index 6f1e8ed707..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/2.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/3.png b/front/public/images/large/tectech/gt.blockcasingsBA0/3.png deleted file mode 100644 index 725cc9d419..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/3.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/4.png b/front/public/images/large/tectech/gt.blockcasingsBA0/4.png deleted file mode 100644 index 1ac2205101..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/4.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/5.png b/front/public/images/large/tectech/gt.blockcasingsBA0/5.png deleted file mode 100644 index 5973237570..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/5.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/6.png b/front/public/images/large/tectech/gt.blockcasingsBA0/6.png deleted file mode 100644 index 6a253005b4..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/6.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/7.png b/front/public/images/large/tectech/gt.blockcasingsBA0/7.png deleted file mode 100644 index e9b849729f..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/7.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/8.png b/front/public/images/large/tectech/gt.blockcasingsBA0/8.png deleted file mode 100644 index cf836222f4..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/8.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsBA0/9.png b/front/public/images/large/tectech/gt.blockcasingsBA0/9.png deleted file mode 100644 index f9910febc7..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsBA0/9.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/0.png b/front/public/images/large/tectech/gt.blockcasingsTT/0.png deleted file mode 100644 index 882fb0fb87..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/1.png b/front/public/images/large/tectech/gt.blockcasingsTT/1.png deleted file mode 100644 index 167e4ad6ea..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/10.png b/front/public/images/large/tectech/gt.blockcasingsTT/10.png deleted file mode 100644 index 50138311c6..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/10.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/11.png b/front/public/images/large/tectech/gt.blockcasingsTT/11.png deleted file mode 100644 index 9fc1c742b4..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/11.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/12.png b/front/public/images/large/tectech/gt.blockcasingsTT/12.png deleted file mode 100644 index 8efe92242e..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/12.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/13.png b/front/public/images/large/tectech/gt.blockcasingsTT/13.png deleted file mode 100644 index 6e69e4e461..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/13.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/14.png b/front/public/images/large/tectech/gt.blockcasingsTT/14.png deleted file mode 100644 index 0f3237f108..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/14.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/15.png b/front/public/images/large/tectech/gt.blockcasingsTT/15.png deleted file mode 100644 index 8eaa22ad0b..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/15.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/2.png b/front/public/images/large/tectech/gt.blockcasingsTT/2.png deleted file mode 100644 index 7148d9ad7d..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/2.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/3.png b/front/public/images/large/tectech/gt.blockcasingsTT/3.png deleted file mode 100644 index 792ee68473..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/3.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/4.png b/front/public/images/large/tectech/gt.blockcasingsTT/4.png deleted file mode 100644 index 7c0ace8634..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/4.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/5.png b/front/public/images/large/tectech/gt.blockcasingsTT/5.png deleted file mode 100644 index 6d6b66210c..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/5.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/6.png b/front/public/images/large/tectech/gt.blockcasingsTT/6.png deleted file mode 100644 index 7d795d6132..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/6.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/7.png b/front/public/images/large/tectech/gt.blockcasingsTT/7.png deleted file mode 100644 index dc20f1a1e0..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/7.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/8.png b/front/public/images/large/tectech/gt.blockcasingsTT/8.png deleted file mode 100644 index 7e481e87b3..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/8.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.blockcasingsTT/9.png b/front/public/images/large/tectech/gt.blockcasingsTT/9.png deleted file mode 100644 index 54cdf6fa46..0000000000 Binary files a/front/public/images/large/tectech/gt.blockcasingsTT/9.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/0.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/0.png deleted file mode 100644 index 99f5f72923..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/1.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/1.png deleted file mode 100644 index f042c3e3e7..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/2.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/2.png deleted file mode 100644 index a796331a62..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/2.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/3.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/3.png deleted file mode 100644 index 44b3d3a682..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/3.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/4.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/4.png deleted file mode 100644 index 61a69380e2..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/4.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/5.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/5.png deleted file mode 100644 index 1c26f6b2cc..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/5.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/6.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/6.png deleted file mode 100644 index eb39b6ebc2..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/6.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/7.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/7.png deleted file mode 100644 index fe0b55e5c7..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/7.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/8.png b/front/public/images/large/tectech/gt.spacetime_compression_field_generator/8.png deleted file mode 100644 index 153c70b05c..0000000000 Binary files a/front/public/images/large/tectech/gt.spacetime_compression_field_generator/8.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/0.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/0.png deleted file mode 100644 index 43175a3ce1..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/1.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/1.png deleted file mode 100644 index 191aba6798..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/2.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/2.png deleted file mode 100644 index c5b70895c4..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/2.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/3.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/3.png deleted file mode 100644 index fbd34821df..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/3.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/4.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/4.png deleted file mode 100644 index 82a3b96ad5..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/4.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/5.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/5.png deleted file mode 100644 index 7c67de24f8..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/5.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/6.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/6.png deleted file mode 100644 index 88af0e0b48..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/6.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/7.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/7.png deleted file mode 100644 index bfab312d4c..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/7.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.stabilisation_field_generator/8.png b/front/public/images/large/tectech/gt.stabilisation_field_generator/8.png deleted file mode 100644 index 414deac09e..0000000000 Binary files a/front/public/images/large/tectech/gt.stabilisation_field_generator/8.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/0.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/0.png deleted file mode 100644 index 1418b30cd0..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/1.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/1.png deleted file mode 100644 index 77f2a5ff17..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/2.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/2.png deleted file mode 100644 index 31cc2158f1..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/2.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/3.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/3.png deleted file mode 100644 index 9f15d88561..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/3.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/4.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/4.png deleted file mode 100644 index 2064186699..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/4.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/5.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/5.png deleted file mode 100644 index 23805ef07b..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/5.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/6.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/6.png deleted file mode 100644 index f09ae23512..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/6.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/7.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/7.png deleted file mode 100644 index 6c3259b983..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/7.png and /dev/null differ diff --git a/front/public/images/large/tectech/gt.time_acceleration_field_generator/8.png b/front/public/images/large/tectech/gt.time_acceleration_field_generator/8.png deleted file mode 100644 index 52d5a1ef83..0000000000 Binary files a/front/public/images/large/tectech/gt.time_acceleration_field_generator/8.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.em.EuMeterGT/0.png b/front/public/images/large/tectech/item.em.EuMeterGT/0.png deleted file mode 100644 index cd4f6180e2..0000000000 Binary files a/front/public/images/large/tectech/item.em.EuMeterGT/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.em.parametrizerMemoryCard/0.png b/front/public/images/large/tectech/item.em.parametrizerMemoryCard/0.png deleted file mode 100644 index d70f9cf093..0000000000 Binary files a/front/public/images/large/tectech/item.em.parametrizerMemoryCard/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.enderfluidlinkcover/0.png b/front/public/images/large/tectech/item.tm.enderfluidlinkcover/0.png deleted file mode 100644 index e0ec37d795..0000000000 Binary files a/front/public/images/large/tectech/item.tm.enderfluidlinkcover/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.itemAstralArrayFabricator/0.png b/front/public/images/large/tectech/item.tm.itemAstralArrayFabricator/0.png deleted file mode 100644 index 8bdc76f067..0000000000 Binary files a/front/public/images/large/tectech/item.tm.itemAstralArrayFabricator/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.itemTeslaComponent/0.png b/front/public/images/large/tectech/item.tm.itemTeslaComponent/0.png deleted file mode 100644 index 4ed03e264e..0000000000 Binary files a/front/public/images/large/tectech/item.tm.itemTeslaComponent/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.itemTeslaComponent/1.png b/front/public/images/large/tectech/item.tm.itemTeslaComponent/1.png deleted file mode 100644 index ec5f20f252..0000000000 Binary files a/front/public/images/large/tectech/item.tm.itemTeslaComponent/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.powerpassupgradecover/0.png b/front/public/images/large/tectech/item.tm.powerpassupgradecover/0.png deleted file mode 100644 index fd6f176d9d..0000000000 Binary files a/front/public/images/large/tectech/item.tm.powerpassupgradecover/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/0.png b/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/0.png deleted file mode 100644 index efe8987d92..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/1.png b/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/1.png deleted file mode 100644 index c8cf220db6..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/2.png b/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/2.png deleted file mode 100644 index e5c795b0a1..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/2.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/3.png b/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/3.png deleted file mode 100644 index d49b94751c..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/3.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/4.png b/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/4.png deleted file mode 100644 index 593b87204d..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/4.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/5.png b/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/5.png deleted file mode 100644 index 7ba4808e4a..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/5.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/6.png b/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/6.png deleted file mode 100644 index 4d5b904c57..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCoilCapacitor/6.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCover/0.png b/front/public/images/large/tectech/item.tm.teslaCover/0.png deleted file mode 100644 index e4b151615d..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCover/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaCover/1.png b/front/public/images/large/tectech/item.tm.teslaCover/1.png deleted file mode 100644 index 842fa32acc..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaCover/1.png and /dev/null differ diff --git a/front/public/images/large/tectech/item.tm.teslaStaff/0.png b/front/public/images/large/tectech/item.tm.teslaStaff/0.png deleted file mode 100644 index 9052cdd022..0000000000 Binary files a/front/public/images/large/tectech/item.tm.teslaStaff/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/tile.quantumGlass/0.png b/front/public/images/large/tectech/tile.quantumGlass/0.png deleted file mode 100644 index fcf8eb990d..0000000000 Binary files a/front/public/images/large/tectech/tile.quantumGlass/0.png and /dev/null differ diff --git a/front/public/images/large/tectech/tile.reactorSim/0.png b/front/public/images/large/tectech/tile.reactorSim/0.png deleted file mode 100644 index 7ccbe335d0..0000000000 Binary files a/front/public/images/large/tectech/tile.reactorSim/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/advAlchFurnace/0.png b/front/public/images/large/thaumicbases/advAlchFurnace/0.png deleted file mode 100644 index 3c79ecd3c5..0000000000 Binary files a/front/public/images/large/thaumicbases/advAlchFurnace/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/ashroom/0.png b/front/public/images/large/thaumicbases/ashroom/0.png deleted file mode 100644 index b495855556..0000000000 Binary files a/front/public/images/large/thaumicbases/ashroom/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/aurelia/0.png b/front/public/images/large/thaumicbases/aurelia/0.png deleted file mode 100644 index fb20c0c647..0000000000 Binary files a/front/public/images/large/thaumicbases/aurelia/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/aureliaPetal/0.png b/front/public/images/large/thaumicbases/aureliaPetal/0.png deleted file mode 100644 index 3e82a4fa17..0000000000 Binary files a/front/public/images/large/thaumicbases/aureliaPetal/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/blockSalisMundus/0.png b/front/public/images/large/thaumicbases/blockSalisMundus/0.png deleted file mode 100644 index 8e434a88b7..0000000000 Binary files a/front/public/images/large/thaumicbases/blockSalisMundus/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/bloodyBoots/0.png b/front/public/images/large/thaumicbases/bloodyBoots/0.png deleted file mode 100644 index 895e430b20..0000000000 Binary files a/front/public/images/large/thaumicbases/bloodyBoots/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/bloodyChest/0.png b/front/public/images/large/thaumicbases/bloodyChest/0.png deleted file mode 100644 index ae652f02cc..0000000000 Binary files a/front/public/images/large/thaumicbases/bloodyChest/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/bloodyLeggings/0.png b/front/public/images/large/thaumicbases/bloodyLeggings/0.png deleted file mode 100644 index c30d2545c7..0000000000 Binary files a/front/public/images/large/thaumicbases/bloodyLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/brazier/0.png b/front/public/images/large/thaumicbases/brazier/0.png deleted file mode 100644 index b3009d37d6..0000000000 Binary files a/front/public/images/large/thaumicbases/brazier/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/briar/0.png b/front/public/images/large/thaumicbases/briar/0.png deleted file mode 100644 index 0a96d7e80d..0000000000 Binary files a/front/public/images/large/thaumicbases/briar/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/campfire/0.png b/front/public/images/large/thaumicbases/campfire/0.png deleted file mode 100644 index 5e9c8c746f..0000000000 Binary files a/front/public/images/large/thaumicbases/campfire/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/0.png b/front/public/images/large/thaumicbases/castingBracelet/0.png deleted file mode 100644 index 4f17bf9110..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/1.png b/front/public/images/large/thaumicbases/castingBracelet/1.png deleted file mode 100644 index dce936136a..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/10.png b/front/public/images/large/thaumicbases/castingBracelet/10.png deleted file mode 100644 index db306d167a..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/10.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/11.png b/front/public/images/large/thaumicbases/castingBracelet/11.png deleted file mode 100644 index 561810a77e..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/11.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/12.png b/front/public/images/large/thaumicbases/castingBracelet/12.png deleted file mode 100644 index eb1f2b445e..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/12.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/2.png b/front/public/images/large/thaumicbases/castingBracelet/2.png deleted file mode 100644 index c5bc49a256..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/3.png b/front/public/images/large/thaumicbases/castingBracelet/3.png deleted file mode 100644 index 7d08e58f18..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/4.png b/front/public/images/large/thaumicbases/castingBracelet/4.png deleted file mode 100644 index 2eb56f6f87..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/5.png b/front/public/images/large/thaumicbases/castingBracelet/5.png deleted file mode 100644 index 52533f116c..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/6.png b/front/public/images/large/thaumicbases/castingBracelet/6.png deleted file mode 100644 index c10d3b83d7..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/7.png b/front/public/images/large/thaumicbases/castingBracelet/7.png deleted file mode 100644 index b876ec7d34..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/8.png b/front/public/images/large/thaumicbases/castingBracelet/8.png deleted file mode 100644 index f101c738dd..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/8.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/castingBracelet/9.png b/front/public/images/large/thaumicbases/castingBracelet/9.png deleted file mode 100644 index 7d6ed96927..0000000000 Binary files a/front/public/images/large/thaumicbases/castingBracelet/9.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/concentratedTaint/0.png b/front/public/images/large/thaumicbases/concentratedTaint/0.png deleted file mode 100644 index 734d174485..0000000000 Binary files a/front/public/images/large/thaumicbases/concentratedTaint/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/cryingObsidian/0.png b/front/public/images/large/thaumicbases/cryingObsidian/0.png deleted file mode 100644 index 3d699a48bb..0000000000 Binary files a/front/public/images/large/thaumicbases/cryingObsidian/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/0.png b/front/public/images/large/thaumicbases/crystalBlock/0.png deleted file mode 100644 index cf1e3e9758..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/1.png b/front/public/images/large/thaumicbases/crystalBlock/1.png deleted file mode 100644 index 630a951e0b..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/2.png b/front/public/images/large/thaumicbases/crystalBlock/2.png deleted file mode 100644 index f247c6f2c0..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/3.png b/front/public/images/large/thaumicbases/crystalBlock/3.png deleted file mode 100644 index 659c54fe1d..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/4.png b/front/public/images/large/thaumicbases/crystalBlock/4.png deleted file mode 100644 index be848911a7..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/5.png b/front/public/images/large/thaumicbases/crystalBlock/5.png deleted file mode 100644 index 7285316e2f..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/6.png b/front/public/images/large/thaumicbases/crystalBlock/6.png deleted file mode 100644 index 68e1afb4c4..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalBlock/7.png b/front/public/images/large/thaumicbases/crystalBlock/7.png deleted file mode 100644 index e014902a89..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalBlock/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/0.png b/front/public/images/large/thaumicbases/crystalSlab/0.png deleted file mode 100644 index 18a013a0a4..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/1.png b/front/public/images/large/thaumicbases/crystalSlab/1.png deleted file mode 100644 index 202bb4d662..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/2.png b/front/public/images/large/thaumicbases/crystalSlab/2.png deleted file mode 100644 index bc9ca8bdcf..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/3.png b/front/public/images/large/thaumicbases/crystalSlab/3.png deleted file mode 100644 index 91d8860d34..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/4.png b/front/public/images/large/thaumicbases/crystalSlab/4.png deleted file mode 100644 index 61637e29a8..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/5.png b/front/public/images/large/thaumicbases/crystalSlab/5.png deleted file mode 100644 index 2883b5e0ee..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/6.png b/front/public/images/large/thaumicbases/crystalSlab/6.png deleted file mode 100644 index 39547080a1..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab/7.png b/front/public/images/large/thaumicbases/crystalSlab/7.png deleted file mode 100644 index bdfdf89362..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/0.png b/front/public/images/large/thaumicbases/crystalSlab_full/0.png deleted file mode 100644 index cf1e3e9758..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/1.png b/front/public/images/large/thaumicbases/crystalSlab_full/1.png deleted file mode 100644 index 630a951e0b..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/2.png b/front/public/images/large/thaumicbases/crystalSlab_full/2.png deleted file mode 100644 index f247c6f2c0..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/3.png b/front/public/images/large/thaumicbases/crystalSlab_full/3.png deleted file mode 100644 index 659c54fe1d..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/4.png b/front/public/images/large/thaumicbases/crystalSlab_full/4.png deleted file mode 100644 index be848911a7..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/5.png b/front/public/images/large/thaumicbases/crystalSlab_full/5.png deleted file mode 100644 index 7285316e2f..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/6.png b/front/public/images/large/thaumicbases/crystalSlab_full/6.png deleted file mode 100644 index 68e1afb4c4..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/crystalSlab_full/7.png b/front/public/images/large/thaumicbases/crystalSlab_full/7.png deleted file mode 100644 index e014902a89..0000000000 Binary files a/front/public/images/large/thaumicbases/crystalSlab_full/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/eldritchArk/0.png b/front/public/images/large/thaumicbases/eldritchArk/0.png deleted file mode 100644 index 9ae760cc3e..0000000000 Binary files a/front/public/images/large/thaumicbases/eldritchArk/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/enderPlanks/0.png b/front/public/images/large/thaumicbases/enderPlanks/0.png deleted file mode 100644 index a530563d66..0000000000 Binary files a/front/public/images/large/thaumicbases/enderPlanks/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/entityDeconstructor/0.png b/front/public/images/large/thaumicbases/entityDeconstructor/0.png deleted file mode 100644 index 2f15cccdfa..0000000000 Binary files a/front/public/images/large/thaumicbases/entityDeconstructor/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/flaxium/0.png b/front/public/images/large/thaumicbases/flaxium/0.png deleted file mode 100644 index 5a8c70510d..0000000000 Binary files a/front/public/images/large/thaumicbases/flaxium/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/fociActivation/0.png b/front/public/images/large/thaumicbases/fociActivation/0.png deleted file mode 100644 index 01516c648e..0000000000 Binary files a/front/public/images/large/thaumicbases/fociActivation/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/fociDrain/0.png b/front/public/images/large/thaumicbases/fociDrain/0.png deleted file mode 100644 index 0479adfc42..0000000000 Binary files a/front/public/images/large/thaumicbases/fociDrain/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/fociExperience/0.png b/front/public/images/large/thaumicbases/fociExperience/0.png deleted file mode 100644 index e4d4b66bef..0000000000 Binary files a/front/public/images/large/thaumicbases/fociExperience/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/fociFlux/0.png b/front/public/images/large/thaumicbases/fociFlux/0.png deleted file mode 100644 index da0bb96ed3..0000000000 Binary files a/front/public/images/large/thaumicbases/fociFlux/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genLeaves/0.png b/front/public/images/large/thaumicbases/genLeaves/0.png deleted file mode 100644 index 5aca42b12c..0000000000 Binary files a/front/public/images/large/thaumicbases/genLeaves/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genLeaves/1.png b/front/public/images/large/thaumicbases/genLeaves/1.png deleted file mode 100644 index 7ead6c179c..0000000000 Binary files a/front/public/images/large/thaumicbases/genLeaves/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genLeaves/2.png b/front/public/images/large/thaumicbases/genLeaves/2.png deleted file mode 100644 index 3d16decd41..0000000000 Binary files a/front/public/images/large/thaumicbases/genLeaves/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genLeaves/3.png b/front/public/images/large/thaumicbases/genLeaves/3.png deleted file mode 100644 index 1e3433b911..0000000000 Binary files a/front/public/images/large/thaumicbases/genLeaves/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genLogs/0.png b/front/public/images/large/thaumicbases/genLogs/0.png deleted file mode 100644 index 2e3855ef89..0000000000 Binary files a/front/public/images/large/thaumicbases/genLogs/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genLogs/1.png b/front/public/images/large/thaumicbases/genLogs/1.png deleted file mode 100644 index 5e381230c0..0000000000 Binary files a/front/public/images/large/thaumicbases/genLogs/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genLogs/2.png b/front/public/images/large/thaumicbases/genLogs/2.png deleted file mode 100644 index a4e431c936..0000000000 Binary files a/front/public/images/large/thaumicbases/genLogs/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/0.png b/front/public/images/large/thaumicbases/genericSlab/0.png deleted file mode 100644 index 191a57ca65..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/1.png b/front/public/images/large/thaumicbases/genericSlab/1.png deleted file mode 100644 index 37681d9fde..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/2.png b/front/public/images/large/thaumicbases/genericSlab/2.png deleted file mode 100644 index 6f77cbbbb6..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/3.png b/front/public/images/large/thaumicbases/genericSlab/3.png deleted file mode 100644 index 1f8c3fc456..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/4.png b/front/public/images/large/thaumicbases/genericSlab/4.png deleted file mode 100644 index 319f291817..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/5.png b/front/public/images/large/thaumicbases/genericSlab/5.png deleted file mode 100644 index b58603f65f..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/6.png b/front/public/images/large/thaumicbases/genericSlab/6.png deleted file mode 100644 index 0ed199e4b7..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab/7.png b/front/public/images/large/thaumicbases/genericSlab/7.png deleted file mode 100644 index 434aab4b4e..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/0.png b/front/public/images/large/thaumicbases/genericSlab_full/0.png deleted file mode 100644 index 9ae760cc3e..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/1.png b/front/public/images/large/thaumicbases/genericSlab_full/1.png deleted file mode 100644 index 7e15b4b108..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/2.png b/front/public/images/large/thaumicbases/genericSlab_full/2.png deleted file mode 100644 index 3e359294e0..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/3.png b/front/public/images/large/thaumicbases/genericSlab_full/3.png deleted file mode 100644 index c9aabf77d5..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/4.png b/front/public/images/large/thaumicbases/genericSlab_full/4.png deleted file mode 100644 index ea37fe43b1..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/5.png b/front/public/images/large/thaumicbases/genericSlab_full/5.png deleted file mode 100644 index 8a915364ab..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/6.png b/front/public/images/large/thaumicbases/genericSlab_full/6.png deleted file mode 100644 index 814734d7c6..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/genericSlab_full/7.png b/front/public/images/large/thaumicbases/genericSlab_full/7.png deleted file mode 100644 index 93a281678a..0000000000 Binary files a/front/public/images/large/thaumicbases/genericSlab_full/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/glieonia/0.png b/front/public/images/large/thaumicbases/glieonia/0.png deleted file mode 100644 index d5bb495487..0000000000 Binary files a/front/public/images/large/thaumicbases/glieonia/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/glieoniaSeed/0.png b/front/public/images/large/thaumicbases/glieoniaSeed/0.png deleted file mode 100644 index 7bd655bfa4..0000000000 Binary files a/front/public/images/large/thaumicbases/glieoniaSeed/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/goldenOakSapling/0.png b/front/public/images/large/thaumicbases/goldenOakSapling/0.png deleted file mode 100644 index c045ab14a7..0000000000 Binary files a/front/public/images/large/thaumicbases/goldenOakSapling/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/goldenOakSapling/1.png b/front/public/images/large/thaumicbases/goldenOakSapling/1.png deleted file mode 100644 index 9cce3be64b..0000000000 Binary files a/front/public/images/large/thaumicbases/goldenOakSapling/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/goldenOakSapling/2.png b/front/public/images/large/thaumicbases/goldenOakSapling/2.png deleted file mode 100644 index 2157201c9f..0000000000 Binary files a/front/public/images/large/thaumicbases/goldenOakSapling/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/goldenOakSapling/3.png b/front/public/images/large/thaumicbases/goldenOakSapling/3.png deleted file mode 100644 index 469d49e080..0000000000 Binary files a/front/public/images/large/thaumicbases/goldenOakSapling/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/greatwoodPipe/0.png b/front/public/images/large/thaumicbases/greatwoodPipe/0.png deleted file mode 100644 index d603b3307a..0000000000 Binary files a/front/public/images/large/thaumicbases/greatwoodPipe/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/ironGreatwood/0.png b/front/public/images/large/thaumicbases/ironGreatwood/0.png deleted file mode 100644 index b98fafe7d6..0000000000 Binary files a/front/public/images/large/thaumicbases/ironGreatwood/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knose/0.png b/front/public/images/large/thaumicbases/knose/0.png deleted file mode 100644 index 84eefd9063..0000000000 Binary files a/front/public/images/large/thaumicbases/knose/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/0.png b/front/public/images/large/thaumicbases/knoseFragment/0.png deleted file mode 100644 index f5b4321ce6..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/1.png b/front/public/images/large/thaumicbases/knoseFragment/1.png deleted file mode 100644 index ac1409bf09..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/2.png b/front/public/images/large/thaumicbases/knoseFragment/2.png deleted file mode 100644 index ebcb3959e3..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/3.png b/front/public/images/large/thaumicbases/knoseFragment/3.png deleted file mode 100644 index 703848f08b..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/4.png b/front/public/images/large/thaumicbases/knoseFragment/4.png deleted file mode 100644 index 67837b7b99..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/5.png b/front/public/images/large/thaumicbases/knoseFragment/5.png deleted file mode 100644 index 68e41e702a..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/6.png b/front/public/images/large/thaumicbases/knoseFragment/6.png deleted file mode 100644 index 5b842fa53d..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseFragment/7.png b/front/public/images/large/thaumicbases/knoseFragment/7.png deleted file mode 100644 index d444b56967..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseFragment/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/knoseSeed/0.png b/front/public/images/large/thaumicbases/knoseSeed/0.png deleted file mode 100644 index 3ec9eb1bb7..0000000000 Binary files a/front/public/images/large/thaumicbases/knoseSeed/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/lazullia/0.png b/front/public/images/large/thaumicbases/lazullia/0.png deleted file mode 100644 index 175a1dbe2a..0000000000 Binary files a/front/public/images/large/thaumicbases/lazullia/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/lazulliaSeeds/0.png b/front/public/images/large/thaumicbases/lazulliaSeeds/0.png deleted file mode 100644 index 334b3cd5c0..0000000000 Binary files a/front/public/images/large/thaumicbases/lazulliaSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/lucrite/0.png b/front/public/images/large/thaumicbases/lucrite/0.png deleted file mode 100644 index 59d5bf4bc7..0000000000 Binary files a/front/public/images/large/thaumicbases/lucrite/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/lucriteSeeds/0.png b/front/public/images/large/thaumicbases/lucriteSeeds/0.png deleted file mode 100644 index e2a2420dcc..0000000000 Binary files a/front/public/images/large/thaumicbases/lucriteSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/metalleat/0.png b/front/public/images/large/thaumicbases/metalleat/0.png deleted file mode 100644 index 0b6396fcce..0000000000 Binary files a/front/public/images/large/thaumicbases/metalleat/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/metalleatSeeds/0.png b/front/public/images/large/thaumicbases/metalleatSeeds/0.png deleted file mode 100644 index d7959403c9..0000000000 Binary files a/front/public/images/large/thaumicbases/metalleatSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/mortar/0.png b/front/public/images/large/thaumicbases/mortar/0.png deleted file mode 100644 index cdc35811c0..0000000000 Binary files a/front/public/images/large/thaumicbases/mortar/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/0.png b/front/public/images/large/thaumicbases/nodeFoci/0.png deleted file mode 100644 index 0953c5ea5f..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/1.png b/front/public/images/large/thaumicbases/nodeFoci/1.png deleted file mode 100644 index af0904396b..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/2.png b/front/public/images/large/thaumicbases/nodeFoci/2.png deleted file mode 100644 index d9fb988594..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/3.png b/front/public/images/large/thaumicbases/nodeFoci/3.png deleted file mode 100644 index 2f0224ad15..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/4.png b/front/public/images/large/thaumicbases/nodeFoci/4.png deleted file mode 100644 index ba397b3b77..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/5.png b/front/public/images/large/thaumicbases/nodeFoci/5.png deleted file mode 100644 index 5ea7e54755..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/6.png b/front/public/images/large/thaumicbases/nodeFoci/6.png deleted file mode 100644 index dbb7e83896..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/7.png b/front/public/images/large/thaumicbases/nodeFoci/7.png deleted file mode 100644 index 57657e8c5a..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/8.png b/front/public/images/large/thaumicbases/nodeFoci/8.png deleted file mode 100644 index 8aa1fc404b..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/8.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeFoci/9.png b/front/public/images/large/thaumicbases/nodeFoci/9.png deleted file mode 100644 index 779e684f9a..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeFoci/9.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeLinker/0.png b/front/public/images/large/thaumicbases/nodeLinker/0.png deleted file mode 100644 index 0c6955ba39..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeLinker/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/nodeManipulator/0.png b/front/public/images/large/thaumicbases/nodeManipulator/0.png deleted file mode 100644 index 73bf6c16ad..0000000000 Binary files a/front/public/images/large/thaumicbases/nodeManipulator/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldBrick/0.png b/front/public/images/large/thaumicbases/oldBrick/0.png deleted file mode 100644 index 7e15b4b108..0000000000 Binary files a/front/public/images/large/thaumicbases/oldBrick/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldCobble/0.png b/front/public/images/large/thaumicbases/oldCobble/0.png deleted file mode 100644 index 3e359294e0..0000000000 Binary files a/front/public/images/large/thaumicbases/oldCobble/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldCobbleMossy/0.png b/front/public/images/large/thaumicbases/oldCobbleMossy/0.png deleted file mode 100644 index c9aabf77d5..0000000000 Binary files a/front/public/images/large/thaumicbases/oldCobbleMossy/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldDiamond/0.png b/front/public/images/large/thaumicbases/oldDiamond/0.png deleted file mode 100644 index ea37fe43b1..0000000000 Binary files a/front/public/images/large/thaumicbases/oldDiamond/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldGold/0.png b/front/public/images/large/thaumicbases/oldGold/0.png deleted file mode 100644 index 8a915364ab..0000000000 Binary files a/front/public/images/large/thaumicbases/oldGold/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldGravel/0.png b/front/public/images/large/thaumicbases/oldGravel/0.png deleted file mode 100644 index 8bc6f261fe..0000000000 Binary files a/front/public/images/large/thaumicbases/oldGravel/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldIron/0.png b/front/public/images/large/thaumicbases/oldIron/0.png deleted file mode 100644 index 814734d7c6..0000000000 Binary files a/front/public/images/large/thaumicbases/oldIron/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/oldLapis/0.png b/front/public/images/large/thaumicbases/oldLapis/0.png deleted file mode 100644 index 93a281678a..0000000000 Binary files a/front/public/images/large/thaumicbases/oldLapis/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/overchanter/0.png b/front/public/images/large/thaumicbases/overchanter/0.png deleted file mode 100644 index 27d22d65b9..0000000000 Binary files a/front/public/images/large/thaumicbases/overchanter/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/plax/0.png b/front/public/images/large/thaumicbases/plax/0.png deleted file mode 100644 index af8ddd1c32..0000000000 Binary files a/front/public/images/large/thaumicbases/plax/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/plaxSeed/0.png b/front/public/images/large/thaumicbases/plaxSeed/0.png deleted file mode 100644 index 8e7fdbdc7d..0000000000 Binary files a/front/public/images/large/thaumicbases/plaxSeed/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/pyroBucket/0.png b/front/public/images/large/thaumicbases/pyroBucket/0.png deleted file mode 100644 index ef1bbf240e..0000000000 Binary files a/front/public/images/large/thaumicbases/pyroBucket/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/pyrofluid/0.png b/front/public/images/large/thaumicbases/pyrofluid/0.png deleted file mode 100644 index 7016ab362b..0000000000 Binary files a/front/public/images/large/thaumicbases/pyrofluid/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/quicksilverBlock/0.png b/front/public/images/large/thaumicbases/quicksilverBlock/0.png deleted file mode 100644 index 4b40031838..0000000000 Binary files a/front/public/images/large/thaumicbases/quicksilverBlock/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/quicksilverBrick/0.png b/front/public/images/large/thaumicbases/quicksilverBrick/0.png deleted file mode 100644 index f57e436043..0000000000 Binary files a/front/public/images/large/thaumicbases/quicksilverBrick/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/rainbowCactus/0.png b/front/public/images/large/thaumicbases/rainbowCactus/0.png deleted file mode 100644 index 16ea757641..0000000000 Binary files a/front/public/images/large/thaumicbases/rainbowCactus/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/redlonSeeds/0.png b/front/public/images/large/thaumicbases/redlonSeeds/0.png deleted file mode 100644 index 5c6a2d0583..0000000000 Binary files a/front/public/images/large/thaumicbases/redlonSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/redlonStem/0.png b/front/public/images/large/thaumicbases/redlonStem/0.png deleted file mode 100644 index e8d8ac2b14..0000000000 Binary files a/front/public/images/large/thaumicbases/redlonStem/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/relocator/0.png b/front/public/images/large/thaumicbases/relocator/0.png deleted file mode 100644 index 2d86306b11..0000000000 Binary files a/front/public/images/large/thaumicbases/relocator/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/relocator/6.png b/front/public/images/large/thaumicbases/relocator/6.png deleted file mode 100644 index 442bd22ba3..0000000000 Binary files a/front/public/images/large/thaumicbases/relocator/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/0.png b/front/public/images/large/thaumicbases/resource/0.png deleted file mode 100644 index cc36b907d9..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/1.png b/front/public/images/large/thaumicbases/resource/1.png deleted file mode 100644 index 767325860c..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/2.png b/front/public/images/large/thaumicbases/resource/2.png deleted file mode 100644 index 36a94c343f..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/3.png b/front/public/images/large/thaumicbases/resource/3.png deleted file mode 100644 index 7c93a3468c..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/4.png b/front/public/images/large/thaumicbases/resource/4.png deleted file mode 100644 index cd9448ecd3..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/5.png b/front/public/images/large/thaumicbases/resource/5.png deleted file mode 100644 index 00cd309547..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/6.png b/front/public/images/large/thaumicbases/resource/6.png deleted file mode 100644 index 9df76a3441..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/7.png b/front/public/images/large/thaumicbases/resource/7.png deleted file mode 100644 index dfdb13544a..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/resource/8.png b/front/public/images/large/thaumicbases/resource/8.png deleted file mode 100644 index 3d3741581f..0000000000 Binary files a/front/public/images/large/thaumicbases/resource/8.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/revolver/0.png b/front/public/images/large/thaumicbases/revolver/0.png deleted file mode 100644 index 3cd58de08b..0000000000 Binary files a/front/public/images/large/thaumicbases/revolver/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/rosehipSyrup/0.png b/front/public/images/large/thaumicbases/rosehipSyrup/0.png deleted file mode 100644 index 2d7362526e..0000000000 Binary files a/front/public/images/large/thaumicbases/rosehipSyrup/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/silverwoodPipe/0.png b/front/public/images/large/thaumicbases/silverwoodPipe/0.png deleted file mode 100644 index 7f24616e1b..0000000000 Binary files a/front/public/images/large/thaumicbases/silverwoodPipe/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/spike/0.png b/front/public/images/large/thaumicbases/spike/0.png deleted file mode 100644 index 6524614073..0000000000 Binary files a/front/public/images/large/thaumicbases/spike/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/spike/2.png b/front/public/images/large/thaumicbases/spike/2.png deleted file mode 100644 index 1fd981a7b0..0000000000 Binary files a/front/public/images/large/thaumicbases/spike/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/spike/4.png b/front/public/images/large/thaumicbases/spike/4.png deleted file mode 100644 index a7ef310d9b..0000000000 Binary files a/front/public/images/large/thaumicbases/spike/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/sweed/0.png b/front/public/images/large/thaumicbases/sweed/0.png deleted file mode 100644 index 51d75bb5c3..0000000000 Binary files a/front/public/images/large/thaumicbases/sweed/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/sweedSeeds/0.png b/front/public/images/large/thaumicbases/sweedSeeds/0.png deleted file mode 100644 index 00770a7be1..0000000000 Binary files a/front/public/images/large/thaumicbases/sweedSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thaumicAnvil/0.png b/front/public/images/large/thaumicbases/thaumicAnvil/0.png deleted file mode 100644 index d4246282e6..0000000000 Binary files a/front/public/images/large/thaumicbases/thaumicAnvil/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thaumicAnvil/1.png b/front/public/images/large/thaumicbases/thaumicAnvil/1.png deleted file mode 100644 index b5bd76fc84..0000000000 Binary files a/front/public/images/large/thaumicbases/thaumicAnvil/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thaumicAnvil/2.png b/front/public/images/large/thaumicbases/thaumicAnvil/2.png deleted file mode 100644 index 6d4bc6fe25..0000000000 Binary files a/front/public/images/large/thaumicbases/thaumicAnvil/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteAxe/0.png b/front/public/images/large/thaumicbases/thauminiteAxe/0.png deleted file mode 100644 index 7b10aae150..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteAxe/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteBlock/0.png b/front/public/images/large/thaumicbases/thauminiteBlock/0.png deleted file mode 100644 index 6d8036db23..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteBlock/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteBoots/0.png b/front/public/images/large/thaumicbases/thauminiteBoots/0.png deleted file mode 100644 index d855849ba8..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteBoots/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteChest/0.png b/front/public/images/large/thaumicbases/thauminiteChest/0.png deleted file mode 100644 index eb3ea6218e..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteChest/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteHelmet/0.png b/front/public/images/large/thaumicbases/thauminiteHelmet/0.png deleted file mode 100644 index 360b59cf50..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteHelmet/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteHoe/0.png b/front/public/images/large/thaumicbases/thauminiteHoe/0.png deleted file mode 100644 index 4f1489f462..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteHoe/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteLeggings/0.png b/front/public/images/large/thaumicbases/thauminiteLeggings/0.png deleted file mode 100644 index 93d622aec1..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteLeggings/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminitePickaxe/0.png b/front/public/images/large/thaumicbases/thauminitePickaxe/0.png deleted file mode 100644 index c8ed2119d1..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminitePickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteShears/0.png b/front/public/images/large/thaumicbases/thauminiteShears/0.png deleted file mode 100644 index 529949273d..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteShears/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteShovel/0.png b/front/public/images/large/thaumicbases/thauminiteShovel/0.png deleted file mode 100644 index ec839e63c2..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteShovel/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/thauminiteSword/0.png b/front/public/images/large/thaumicbases/thauminiteSword/0.png deleted file mode 100644 index 2b9eee4e9d..0000000000 Binary files a/front/public/images/large/thaumicbases/thauminiteSword/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobacco/0.png b/front/public/images/large/thaumicbases/tobacco/0.png deleted file mode 100644 index 19340035cc..0000000000 Binary files a/front/public/images/large/thaumicbases/tobacco/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/0.png b/front/public/images/large/thaumicbases/tobaccoPowder/0.png deleted file mode 100644 index 236f57c6a3..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/1.png b/front/public/images/large/thaumicbases/tobaccoPowder/1.png deleted file mode 100644 index 7239b5855c..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/2.png b/front/public/images/large/thaumicbases/tobaccoPowder/2.png deleted file mode 100644 index 2ff99f43c0..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/3.png b/front/public/images/large/thaumicbases/tobaccoPowder/3.png deleted file mode 100644 index 86d763fbc5..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/4.png b/front/public/images/large/thaumicbases/tobaccoPowder/4.png deleted file mode 100644 index abc58720a5..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/5.png b/front/public/images/large/thaumicbases/tobaccoPowder/5.png deleted file mode 100644 index 08a9843b3e..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/6.png b/front/public/images/large/thaumicbases/tobaccoPowder/6.png deleted file mode 100644 index 97c1318d93..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/7.png b/front/public/images/large/thaumicbases/tobaccoPowder/7.png deleted file mode 100644 index a5ef046030..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoPowder/8.png b/front/public/images/large/thaumicbases/tobaccoPowder/8.png deleted file mode 100644 index cfeecb43d9..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoPowder/8.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/tobaccoSeeds/0.png b/front/public/images/large/thaumicbases/tobaccoSeeds/0.png deleted file mode 100644 index 508f1eef65..0000000000 Binary files a/front/public/images/large/thaumicbases/tobaccoSeeds/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidAnvil/0.png b/front/public/images/large/thaumicbases/voidAnvil/0.png deleted file mode 100644 index 3716660558..0000000000 Binary files a/front/public/images/large/thaumicbases/voidAnvil/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidAnvil/1.png b/front/public/images/large/thaumicbases/voidAnvil/1.png deleted file mode 100644 index f2500eaee3..0000000000 Binary files a/front/public/images/large/thaumicbases/voidAnvil/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidAnvil/2.png b/front/public/images/large/thaumicbases/voidAnvil/2.png deleted file mode 100644 index ebbd41c324..0000000000 Binary files a/front/public/images/large/thaumicbases/voidAnvil/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidBlock/0.png b/front/public/images/large/thaumicbases/voidBlock/0.png deleted file mode 100644 index 40a7c4fde4..0000000000 Binary files a/front/public/images/large/thaumicbases/voidBlock/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidFAS/0.png b/front/public/images/large/thaumicbases/voidFAS/0.png deleted file mode 100644 index d2e95b650c..0000000000 Binary files a/front/public/images/large/thaumicbases/voidFAS/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidPlant/0.png b/front/public/images/large/thaumicbases/voidPlant/0.png deleted file mode 100644 index 83e235e9ab..0000000000 Binary files a/front/public/images/large/thaumicbases/voidPlant/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidSeed/0.png b/front/public/images/large/thaumicbases/voidSeed/0.png deleted file mode 100644 index 48c36aa2d7..0000000000 Binary files a/front/public/images/large/thaumicbases/voidSeed/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicbases/voidShears/0.png b/front/public/images/large/thaumicbases/voidShears/0.png deleted file mode 100644 index 811fe97a38..0000000000 Binary files a/front/public/images/large/thaumicbases/voidShears/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemArcaniumInterfacer/0.png b/front/public/images/large/thaumicboots/item.ItemArcaniumInterfacer/0.png deleted file mode 100644 index e842555f40..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemArcaniumInterfacer/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemChristmasBoots/0.png b/front/public/images/large/thaumicboots/item.ItemChristmasBoots/0.png deleted file mode 100644 index c4a48b93ab..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemChristmasBoots/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemCometMeteor/0.png b/front/public/images/large/thaumicboots/item.ItemCometMeteor/0.png deleted file mode 100644 index 5379d9c4df..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemCometMeteor/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemElectricComet/1.png b/front/public/images/large/thaumicboots/item.ItemElectricComet/1.png deleted file mode 100644 index 6e914495eb..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemElectricComet/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemElectricComet/325.png b/front/public/images/large/thaumicboots/item.ItemElectricComet/325.png deleted file mode 100644 index 6e914495eb..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemElectricComet/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemElectricMeteor/1.png b/front/public/images/large/thaumicboots/item.ItemElectricMeteor/1.png deleted file mode 100644 index dcea6be798..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemElectricMeteor/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemElectricMeteor/325.png b/front/public/images/large/thaumicboots/item.ItemElectricMeteor/325.png deleted file mode 100644 index dcea6be798..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemElectricMeteor/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemElectricVoid/1.png b/front/public/images/large/thaumicboots/item.ItemElectricVoid/1.png deleted file mode 100644 index 6c722bd46a..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemElectricVoid/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemElectricVoid/325.png b/front/public/images/large/thaumicboots/item.ItemElectricVoid/325.png deleted file mode 100644 index 6c722bd46a..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemElectricVoid/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemMeteoricComet/0.png b/front/public/images/large/thaumicboots/item.ItemMeteoricComet/0.png deleted file mode 100644 index 36f38bb093..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemMeteoricComet/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemNanoComet/1.png b/front/public/images/large/thaumicboots/item.ItemNanoComet/1.png deleted file mode 100644 index 7e9c7c2fa0..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemNanoComet/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemNanoComet/325.png b/front/public/images/large/thaumicboots/item.ItemNanoComet/325.png deleted file mode 100644 index 7e9c7c2fa0..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemNanoComet/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemNanoMeteor/1.png b/front/public/images/large/thaumicboots/item.ItemNanoMeteor/1.png deleted file mode 100644 index c7ae87dfa3..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemNanoMeteor/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemNanoMeteor/325.png b/front/public/images/large/thaumicboots/item.ItemNanoMeteor/325.png deleted file mode 100644 index c7ae87dfa3..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemNanoMeteor/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemNanoVoid/1.png b/front/public/images/large/thaumicboots/item.ItemNanoVoid/1.png deleted file mode 100644 index 3c8b70c588..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemNanoVoid/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemNanoVoid/325.png b/front/public/images/large/thaumicboots/item.ItemNanoVoid/325.png deleted file mode 100644 index 3c8b70c588..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemNanoVoid/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemQuantumComet/1.png b/front/public/images/large/thaumicboots/item.ItemQuantumComet/1.png deleted file mode 100644 index 6032bd5769..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemQuantumComet/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemQuantumComet/325.png b/front/public/images/large/thaumicboots/item.ItemQuantumComet/325.png deleted file mode 100644 index 6032bd5769..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemQuantumComet/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemQuantumMeteor/1.png b/front/public/images/large/thaumicboots/item.ItemQuantumMeteor/1.png deleted file mode 100644 index e0b569efc5..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemQuantumMeteor/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemQuantumMeteor/325.png b/front/public/images/large/thaumicboots/item.ItemQuantumMeteor/325.png deleted file mode 100644 index e0b569efc5..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemQuantumMeteor/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemQuantumVoid/1.png b/front/public/images/large/thaumicboots/item.ItemQuantumVoid/1.png deleted file mode 100644 index 05f7dc7c0c..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemQuantumVoid/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemQuantumVoid/325.png b/front/public/images/large/thaumicboots/item.ItemQuantumVoid/325.png deleted file mode 100644 index 05f7dc7c0c..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemQuantumVoid/325.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemSeasonBoots/0.png b/front/public/images/large/thaumicboots/item.ItemSeasonBoots/0.png deleted file mode 100644 index b88422354e..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemSeasonBoots/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemSlowBoots/0.png b/front/public/images/large/thaumicboots/item.ItemSlowBoots/0.png deleted file mode 100644 index 503ddf8e9e..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemSlowBoots/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemVoidComet/0.png b/front/public/images/large/thaumicboots/item.ItemVoidComet/0.png deleted file mode 100644 index e095331808..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemVoidComet/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicboots/item.ItemVoidMeteor/0.png b/front/public/images/large/thaumicboots/item.ItemVoidMeteor/0.png deleted file mode 100644 index 89f4c06879..0000000000 Binary files a/front/public/images/large/thaumicboots/item.ItemVoidMeteor/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/cell.microscope/0.png b/front/public/images/large/thaumicenergistics/cell.microscope/0.png deleted file mode 100644 index 11da43bd18..0000000000 Binary files a/front/public/images/large/thaumicenergistics/cell.microscope/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/crafting.aspect/0.png b/front/public/images/large/thaumicenergistics/crafting.aspect/0.png deleted file mode 100644 index 4e7b9557aa..0000000000 Binary files a/front/public/images/large/thaumicenergistics/crafting.aspect/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/focus.aewrench/0.png b/front/public/images/large/thaumicenergistics/focus.aewrench/0.png deleted file mode 100644 index 4170127d12..0000000000 Binary files a/front/public/images/large/thaumicenergistics/focus.aewrench/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/golem.wifi.backpack/0.png b/front/public/images/large/thaumicenergistics/golem.wifi.backpack/0.png deleted file mode 100644 index 18e950e1ff..0000000000 Binary files a/front/public/images/large/thaumicenergistics/golem.wifi.backpack/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/knowledge.core/0.png b/front/public/images/large/thaumicenergistics/knowledge.core/0.png deleted file mode 100644 index c547f8a687..0000000000 Binary files a/front/public/images/large/thaumicenergistics/knowledge.core/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/material/0.png b/front/public/images/large/thaumicenergistics/material/0.png deleted file mode 100644 index 2b8ba1444b..0000000000 Binary files a/front/public/images/large/thaumicenergistics/material/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/material/1.png b/front/public/images/large/thaumicenergistics/material/1.png deleted file mode 100644 index a289176413..0000000000 Binary files a/front/public/images/large/thaumicenergistics/material/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/material/2.png b/front/public/images/large/thaumicenergistics/material/2.png deleted file mode 100644 index e5c658e43a..0000000000 Binary files a/front/public/images/large/thaumicenergistics/material/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/0.png b/front/public/images/large/thaumicenergistics/part.base/0.png deleted file mode 100644 index 427e32c004..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/1.png b/front/public/images/large/thaumicenergistics/part.base/1.png deleted file mode 100644 index 5840de01ad..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/2.png b/front/public/images/large/thaumicenergistics/part.base/2.png deleted file mode 100644 index 91b7f79971..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/3.png b/front/public/images/large/thaumicenergistics/part.base/3.png deleted file mode 100644 index 96f9a4d6e2..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/4.png b/front/public/images/large/thaumicenergistics/part.base/4.png deleted file mode 100644 index 6291288cb2..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/5.png b/front/public/images/large/thaumicenergistics/part.base/5.png deleted file mode 100644 index 23d25c228b..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/6.png b/front/public/images/large/thaumicenergistics/part.base/6.png deleted file mode 100644 index 76eebce0f6..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/7.png b/front/public/images/large/thaumicenergistics/part.base/7.png deleted file mode 100644 index f49e8f43f7..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/8.png b/front/public/images/large/thaumicenergistics/part.base/8.png deleted file mode 100644 index c77917cf59..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/8.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/part.base/9.png b/front/public/images/large/thaumicenergistics/part.base/9.png deleted file mode 100644 index 76eebce0f6..0000000000 Binary files a/front/public/images/large/thaumicenergistics/part.base/9.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.casing/0.png b/front/public/images/large/thaumicenergistics/storage.casing/0.png deleted file mode 100644 index 1f0c81f853..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.casing/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/0.png b/front/public/images/large/thaumicenergistics/storage.component/0.png deleted file mode 100644 index d923170ba1..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/1.png b/front/public/images/large/thaumicenergistics/storage.component/1.png deleted file mode 100644 index b2d5055c6e..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/2.png b/front/public/images/large/thaumicenergistics/storage.component/2.png deleted file mode 100644 index 14f9dee0c9..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/3.png b/front/public/images/large/thaumicenergistics/storage.component/3.png deleted file mode 100644 index 218f851427..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/5.png b/front/public/images/large/thaumicenergistics/storage.component/5.png deleted file mode 100644 index e9680f2ca0..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/6.png b/front/public/images/large/thaumicenergistics/storage.component/6.png deleted file mode 100644 index 2bd67d95c0..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/7.png b/front/public/images/large/thaumicenergistics/storage.component/7.png deleted file mode 100644 index 8975ce1ea2..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.component/8.png b/front/public/images/large/thaumicenergistics/storage.component/8.png deleted file mode 100644 index 4fb9e8a169..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.component/8.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/0.png b/front/public/images/large/thaumicenergistics/storage.essentia/0.png deleted file mode 100644 index 5fd434b754..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/1.png b/front/public/images/large/thaumicenergistics/storage.essentia/1.png deleted file mode 100644 index 9143d0a6cb..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/1.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/10.png b/front/public/images/large/thaumicenergistics/storage.essentia/10.png deleted file mode 100644 index 0ff1454a0e..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/10.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/2.png b/front/public/images/large/thaumicenergistics/storage.essentia/2.png deleted file mode 100644 index 793cb887ce..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/2.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/3.png b/front/public/images/large/thaumicenergistics/storage.essentia/3.png deleted file mode 100644 index 3e148f9d4b..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/3.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/4.png b/front/public/images/large/thaumicenergistics/storage.essentia/4.png deleted file mode 100644 index c88665b932..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/4.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/5.png b/front/public/images/large/thaumicenergistics/storage.essentia/5.png deleted file mode 100644 index 9faee260f3..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/5.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/6.png b/front/public/images/large/thaumicenergistics/storage.essentia/6.png deleted file mode 100644 index 1ecdc4e4b5..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/6.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/7.png b/front/public/images/large/thaumicenergistics/storage.essentia/7.png deleted file mode 100644 index 2837a82abd..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/7.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/8.png b/front/public/images/large/thaumicenergistics/storage.essentia/8.png deleted file mode 100644 index c571b9aff2..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/8.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/storage.essentia/9.png b/front/public/images/large/thaumicenergistics/storage.essentia/9.png deleted file mode 100644 index b19855de99..0000000000 Binary files a/front/public/images/large/thaumicenergistics/storage.essentia/9.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.arcane.assembler/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.arcane.assembler/0.png deleted file mode 100644 index 2a69973c00..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.arcane.assembler/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.distillation.encoder/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.distillation.encoder/0.png deleted file mode 100644 index 4246411d36..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.distillation.encoder/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.cell.workbench/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.cell.workbench/0.png deleted file mode 100644 index 4680d06dfa..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.cell.workbench/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.provider/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.provider/0.png deleted file mode 100644 index 3418205683..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.provider/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.vibration.chamber/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.vibration.chamber/0.png deleted file mode 100644 index 7bef9a36d5..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.essentia.vibration.chamber/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.gear.box/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.gear.box/0.png deleted file mode 100644 index 4b1901a20b..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.gear.box/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.golem.gear.box/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.golem.gear.box/0.png deleted file mode 100644 index 08cf7eaeba..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.golem.gear.box/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.infusion.provider/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.infusion.provider/0.png deleted file mode 100644 index 1d08d60e71..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.infusion.provider/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.knowledge.inscriber/0.png b/front/public/images/large/thaumicenergistics/thaumicenergistics.block.knowledge.inscriber/0.png deleted file mode 100644 index 63dae8ac48..0000000000 Binary files a/front/public/images/large/thaumicenergistics/thaumicenergistics.block.knowledge.inscriber/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicenergistics/wireless.essentia.terminal/0.png b/front/public/images/large/thaumicenergistics/wireless.essentia.terminal/0.png deleted file mode 100644 index f47d9304b3..0000000000 Binary files a/front/public/images/large/thaumicenergistics/wireless.essentia.terminal/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/infusionIntercepter/0.png b/front/public/images/large/thaumicinsurgence/infusionIntercepter/0.png deleted file mode 100644 index e42882c542..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/infusionIntercepter/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/item.ItemAlastorsWand/0.png b/front/public/images/large/thaumicinsurgence/item.ItemAlastorsWand/0.png deleted file mode 100644 index a3bed562af..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/item.ItemAlastorsWand/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/item.ItemBIGSHOT/0.png b/front/public/images/large/thaumicinsurgence/item.ItemBIGSHOT/0.png deleted file mode 100644 index 29f9368cd9..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/item.ItemBIGSHOT/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/item.ItemEightBitRedCrown/0.png b/front/public/images/large/thaumicinsurgence/item.ItemEightBitRedCrown/0.png deleted file mode 100644 index 15d4e4927f..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/item.ItemEightBitRedCrown/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/item.ItemSanitySoapAlpha/0.png b/front/public/images/large/thaumicinsurgence/item.ItemSanitySoapAlpha/0.png deleted file mode 100644 index 202317cb59..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/item.ItemSanitySoapAlpha/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/item.ItemSanitySoapBeta/0.png b/front/public/images/large/thaumicinsurgence/item.ItemSanitySoapBeta/0.png deleted file mode 100644 index 8b263bb491..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/item.ItemSanitySoapBeta/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/item.ItemThaumicInterfacer/0.png b/front/public/images/large/thaumicinsurgence/item.ItemThaumicInterfacer/0.png deleted file mode 100644 index b7fc686130..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/item.ItemThaumicInterfacer/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/marblePedestal/0.png b/front/public/images/large/thaumicinsurgence/marblePedestal/0.png deleted file mode 100644 index 86f57fec53..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/marblePedestal/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/matrixAlpha/0.png b/front/public/images/large/thaumicinsurgence/matrixAlpha/0.png deleted file mode 100644 index ae402462bf..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/matrixAlpha/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/pillarAlpha/0.png b/front/public/images/large/thaumicinsurgence/pillarAlpha/0.png deleted file mode 100644 index ec35141943..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/pillarAlpha/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/tile.arcaneMarble/0.png b/front/public/images/large/thaumicinsurgence/tile.arcaneMarble/0.png deleted file mode 100644 index 5216ca6a5e..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/tile.arcaneMarble/0.png and /dev/null differ diff --git a/front/public/images/large/thaumicinsurgence/tile.arcaneMarbleBrick/0.png b/front/public/images/large/thaumicinsurgence/tile.arcaneMarbleBrick/0.png deleted file mode 100644 index 9863d04b6b..0000000000 Binary files a/front/public/images/large/thaumicinsurgence/tile.arcaneMarbleBrick/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/AeonSteel Ingot/0.png b/front/public/images/large/tinkersdefense/AeonSteel Ingot/0.png deleted file mode 100644 index a7e9dbd40a..0000000000 Binary files a/front/public/images/large/tinkersdefense/AeonSteel Ingot/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/Block_ArmorAnvil/0.png b/front/public/images/large/tinkersdefense/Block_ArmorAnvil/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/tinkersdefense/Block_ArmorAnvil/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/Block_CrestMount/0.png b/front/public/images/large/tinkersdefense/Block_CrestMount/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/tinkersdefense/Block_CrestMount/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/Block_JewelersBench/0.png b/front/public/images/large/tinkersdefense/Block_JewelersBench/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/tinkersdefense/Block_JewelersBench/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/DogbeariumIngot/0.png b/front/public/images/large/tinkersdefense/DogbeariumIngot/0.png deleted file mode 100644 index 8f299f57d2..0000000000 Binary files a/front/public/images/large/tinkersdefense/DogbeariumIngot/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/Dogbeariumblock/0.png b/front/public/images/large/tinkersdefense/Dogbeariumblock/0.png deleted file mode 100644 index 13d387652d..0000000000 Binary files a/front/public/images/large/tinkersdefense/Dogbeariumblock/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/Queen's Gold Ingot/0.png b/front/public/images/large/tinkersdefense/Queen's Gold Ingot/0.png deleted file mode 100644 index fcf799c811..0000000000 Binary files a/front/public/images/large/tinkersdefense/Queen's Gold Ingot/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/QueensGoldblock/0.png b/front/public/images/large/tinkersdefense/QueensGoldblock/0.png deleted file mode 100644 index a26e584e35..0000000000 Binary files a/front/public/images/large/tinkersdefense/QueensGoldblock/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/aeonsteelblock/0.png b/front/public/images/large/tinkersdefense/aeonsteelblock/0.png deleted file mode 100644 index e2f7ec5f93..0000000000 Binary files a/front/public/images/large/tinkersdefense/aeonsteelblock/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/moltenDogbearium/0.png b/front/public/images/large/tinkersdefense/moltenDogbearium/0.png deleted file mode 100644 index 6fb25c25a4..0000000000 Binary files a/front/public/images/large/tinkersdefense/moltenDogbearium/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/moltenQueensGold/0.png b/front/public/images/large/tinkersdefense/moltenQueensGold/0.png deleted file mode 100644 index 0330a489cf..0000000000 Binary files a/front/public/images/large/tinkersdefense/moltenQueensGold/0.png and /dev/null differ diff --git a/front/public/images/large/tinkersdefense/moltenaeonsteel/0.png b/front/public/images/large/tinkersdefense/moltenaeonsteel/0.png deleted file mode 100644 index 9f96f817af..0000000000 Binary files a/front/public/images/large/tinkersdefense/moltenaeonsteel/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/0.png b/front/public/images/large/universalsingularities/universal.bigReactors.singularity/0.png deleted file mode 100644 index 81c63ea553..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/1.png b/front/public/images/large/universalsingularities/universal.bigReactors.singularity/1.png deleted file mode 100644 index a55cd8f4e7..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/2.png b/front/public/images/large/universalsingularities/universal.bigReactors.singularity/2.png deleted file mode 100644 index 08927bb432..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/2.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/3.png b/front/public/images/large/universalsingularities/universal.bigReactors.singularity/3.png deleted file mode 100644 index 8d489e4e9e..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/3.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/4.png b/front/public/images/large/universalsingularities/universal.bigReactors.singularity/4.png deleted file mode 100644 index 47de01e713..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.bigReactors.singularity/4.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.draconicEvolution.singularity/0.png b/front/public/images/large/universalsingularities/universal.draconicEvolution.singularity/0.png deleted file mode 100644 index e8b3ecfc10..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.draconicEvolution.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.draconicEvolution.singularity/1.png b/front/public/images/large/universalsingularities/universal.draconicEvolution.singularity/1.png deleted file mode 100644 index ade8b83dfb..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.draconicEvolution.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/0.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/0.png deleted file mode 100644 index 7cc08397a4..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/1.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/1.png deleted file mode 100644 index 08175d019f..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/2.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/2.png deleted file mode 100644 index c1327b01a5..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/2.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/3.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/3.png deleted file mode 100644 index 06138cf7ad..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/3.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/4.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/4.png deleted file mode 100644 index 52bbe90f3d..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/4.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/5.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/5.png deleted file mode 100644 index e9d8cf6277..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/5.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/6.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/6.png deleted file mode 100644 index 99057ed7ac..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/6.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.enderIO.singularity/7.png b/front/public/images/large/universalsingularities/universal.enderIO.singularity/7.png deleted file mode 100644 index 0574e3216b..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.enderIO.singularity/7.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/0.png b/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/0.png deleted file mode 100644 index 92e5d6cbff..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/1.png b/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/1.png deleted file mode 100644 index f531c5b653..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/2.png b/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/2.png deleted file mode 100644 index 86a7ca13e0..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/2.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/3.png b/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/3.png deleted file mode 100644 index bf9e71491a..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/3.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/4.png b/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/4.png deleted file mode 100644 index 56109dc9d7..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraPlanets.singularity/4.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraTiC.singularity/0.png b/front/public/images/large/universalsingularities/universal.extraTiC.singularity/0.png deleted file mode 100644 index 401192906a..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraTiC.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraTiC.singularity/1.png b/front/public/images/large/universalsingularities/universal.extraTiC.singularity/1.png deleted file mode 100644 index b0bdd3a70d..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraTiC.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.extraUtilities.singularity/0.png b/front/public/images/large/universalsingularities/universal.extraUtilities.singularity/0.png deleted file mode 100644 index 320cd49e58..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.extraUtilities.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/0.png b/front/public/images/large/universalsingularities/universal.general.singularity/0.png deleted file mode 100644 index e3325c3334..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/1.png b/front/public/images/large/universalsingularities/universal.general.singularity/1.png deleted file mode 100644 index e8f771cc6b..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/10.png b/front/public/images/large/universalsingularities/universal.general.singularity/10.png deleted file mode 100644 index 788ce81cb4..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/10.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/11.png b/front/public/images/large/universalsingularities/universal.general.singularity/11.png deleted file mode 100644 index 44dcb02c99..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/11.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/12.png b/front/public/images/large/universalsingularities/universal.general.singularity/12.png deleted file mode 100644 index f072bd43f4..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/12.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/13.png b/front/public/images/large/universalsingularities/universal.general.singularity/13.png deleted file mode 100644 index c364294d94..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/13.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/14.png b/front/public/images/large/universalsingularities/universal.general.singularity/14.png deleted file mode 100644 index f6779443cc..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/14.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/15.png b/front/public/images/large/universalsingularities/universal.general.singularity/15.png deleted file mode 100644 index a1060c1445..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/15.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/16.png b/front/public/images/large/universalsingularities/universal.general.singularity/16.png deleted file mode 100644 index 9706f6ba15..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/16.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/17.png b/front/public/images/large/universalsingularities/universal.general.singularity/17.png deleted file mode 100644 index 86861edd86..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/17.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/18.png b/front/public/images/large/universalsingularities/universal.general.singularity/18.png deleted file mode 100644 index 44dcb02c99..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/18.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/19.png b/front/public/images/large/universalsingularities/universal.general.singularity/19.png deleted file mode 100644 index ba032aaca3..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/19.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/2.png b/front/public/images/large/universalsingularities/universal.general.singularity/2.png deleted file mode 100644 index 217ca84ccc..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/2.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/20.png b/front/public/images/large/universalsingularities/universal.general.singularity/20.png deleted file mode 100644 index 1f0d25800d..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/20.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/21.png b/front/public/images/large/universalsingularities/universal.general.singularity/21.png deleted file mode 100644 index acfc8ef1bd..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/21.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/22.png b/front/public/images/large/universalsingularities/universal.general.singularity/22.png deleted file mode 100644 index 277db0171a..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/22.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/23.png b/front/public/images/large/universalsingularities/universal.general.singularity/23.png deleted file mode 100644 index 556992501e..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/23.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/24.png b/front/public/images/large/universalsingularities/universal.general.singularity/24.png deleted file mode 100644 index 8963d69c85..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/24.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/25.png b/front/public/images/large/universalsingularities/universal.general.singularity/25.png deleted file mode 100644 index ef73ed6f29..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/25.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/26.png b/front/public/images/large/universalsingularities/universal.general.singularity/26.png deleted file mode 100644 index 4fc709f792..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/26.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/27.png b/front/public/images/large/universalsingularities/universal.general.singularity/27.png deleted file mode 100644 index b5281a7fe0..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/27.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/28.png b/front/public/images/large/universalsingularities/universal.general.singularity/28.png deleted file mode 100644 index 4817348a09..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/28.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/29.png b/front/public/images/large/universalsingularities/universal.general.singularity/29.png deleted file mode 100644 index de23c2001a..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/29.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/3.png b/front/public/images/large/universalsingularities/universal.general.singularity/3.png deleted file mode 100644 index 31fbcf9e47..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/3.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/30.png b/front/public/images/large/universalsingularities/universal.general.singularity/30.png deleted file mode 100644 index 794ef76a59..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/30.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/4.png b/front/public/images/large/universalsingularities/universal.general.singularity/4.png deleted file mode 100644 index 460009a1fc..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/4.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/5.png b/front/public/images/large/universalsingularities/universal.general.singularity/5.png deleted file mode 100644 index b47f55c309..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/5.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/6.png b/front/public/images/large/universalsingularities/universal.general.singularity/6.png deleted file mode 100644 index 7fb60c0ac3..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/6.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/7.png b/front/public/images/large/universalsingularities/universal.general.singularity/7.png deleted file mode 100644 index dd97b6360d..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/7.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/8.png b/front/public/images/large/universalsingularities/universal.general.singularity/8.png deleted file mode 100644 index b409bb8b9e..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/8.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.general.singularity/9.png b/front/public/images/large/universalsingularities/universal.general.singularity/9.png deleted file mode 100644 index 1e5f45eed1..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.general.singularity/9.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.mekanism.singularity/0.png b/front/public/images/large/universalsingularities/universal.mekanism.singularity/0.png deleted file mode 100644 index f6dd71be5c..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.mekanism.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.mekanism.singularity/1.png b/front/public/images/large/universalsingularities/universal.mekanism.singularity/1.png deleted file mode 100644 index ef72d64a4c..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.mekanism.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/0.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/0.png deleted file mode 100644 index f9e1ee5617..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/1.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/1.png deleted file mode 100644 index cf5f0726d0..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/2.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/2.png deleted file mode 100644 index 9bb8dd2a40..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/2.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/3.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/3.png deleted file mode 100644 index 820231c3a3..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/3.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/4.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/4.png deleted file mode 100644 index c4dc438138..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/4.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/5.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/5.png deleted file mode 100644 index 21aa8b0e15..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/5.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/6.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/6.png deleted file mode 100644 index 48afa9f543..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/6.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/7.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/7.png deleted file mode 100644 index e67c401583..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/7.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/8.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/8.png deleted file mode 100644 index b15643ff31..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/8.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/9.png b/front/public/images/large/universalsingularities/universal.metallurgy.singularity/9.png deleted file mode 100644 index fab627eba3..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.metallurgy.singularity/9.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.pneumaticCraft.singularity/0.png b/front/public/images/large/universalsingularities/universal.pneumaticCraft.singularity/0.png deleted file mode 100644 index 1b7dbd410b..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.pneumaticCraft.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.projectRed.singularity/0.png b/front/public/images/large/universalsingularities/universal.projectRed.singularity/0.png deleted file mode 100644 index 2f1184bf99..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.projectRed.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.redstoneArsenal.singularity/0.png b/front/public/images/large/universalsingularities/universal.redstoneArsenal.singularity/0.png deleted file mode 100644 index dd3baf0296..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.redstoneArsenal.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/0.png b/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/0.png deleted file mode 100644 index 95006fe8a3..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/1.png b/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/1.png deleted file mode 100644 index 31764ce6e6..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/2.png b/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/2.png deleted file mode 100644 index bf7d6019d9..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/2.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/3.png b/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/3.png deleted file mode 100644 index bd0528f25e..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/3.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/4.png b/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/4.png deleted file mode 100644 index 4fdaa4df45..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/4.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/5.png b/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/5.png deleted file mode 100644 index 2442c2a8cd..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/5.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/6.png b/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/6.png deleted file mode 100644 index 10e57a8cf2..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.tinkersConstruct.singularity/6.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.vanilla.singularity/0.png b/front/public/images/large/universalsingularities/universal.vanilla.singularity/0.png deleted file mode 100644 index dab7f6ecb7..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.vanilla.singularity/0.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.vanilla.singularity/1.png b/front/public/images/large/universalsingularities/universal.vanilla.singularity/1.png deleted file mode 100644 index 6b7044e498..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.vanilla.singularity/1.png and /dev/null differ diff --git a/front/public/images/large/universalsingularities/universal.vanilla.singularity/2.png b/front/public/images/large/universalsingularities/universal.vanilla.singularity/2.png deleted file mode 100644 index 4fcd6b2065..0000000000 Binary files a/front/public/images/large/universalsingularities/universal.vanilla.singularity/2.png and /dev/null differ diff --git a/front/public/images/large/visualprospecting/item.visualprospecting.prospectorslog/0.png b/front/public/images/large/visualprospecting/item.visualprospecting.prospectorslog/0.png deleted file mode 100644 index a2c593da57..0000000000 Binary files a/front/public/images/large/visualprospecting/item.visualprospecting.prospectorslog/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/alderwooddoor/0.png b/front/public/images/large/witchery/alderwooddoor/0.png deleted file mode 100644 index fb04643949..0000000000 Binary files a/front/public/images/large/witchery/alderwooddoor/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/alluringskull/0.png b/front/public/images/large/witchery/alluringskull/0.png deleted file mode 100644 index 6a8276a5a4..0000000000 Binary files a/front/public/images/large/witchery/alluringskull/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/altar/0.png b/front/public/images/large/witchery/altar/0.png deleted file mode 100644 index 0a32fc1457..0000000000 Binary files a/front/public/images/large/witchery/altar/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/arthana/0.png b/front/public/images/large/witchery/arthana/0.png deleted file mode 100644 index 007d24f2ac..0000000000 Binary files a/front/public/images/large/witchery/arthana/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/artichoke/0.png b/front/public/images/large/witchery/artichoke/0.png deleted file mode 100644 index 24510a7c57..0000000000 Binary files a/front/public/images/large/witchery/artichoke/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/babashat/0.png b/front/public/images/large/witchery/babashat/0.png deleted file mode 100644 index 290d3b749c..0000000000 Binary files a/front/public/images/large/witchery/babashat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/barkbelt/0.png b/front/public/images/large/witchery/barkbelt/0.png deleted file mode 100644 index 9222ce0fef..0000000000 Binary files a/front/public/images/large/witchery/barkbelt/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/barrier/0.png b/front/public/images/large/witchery/barrier/0.png deleted file mode 100644 index a694691893..0000000000 Binary files a/front/public/images/large/witchery/barrier/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/beartrap/0.png b/front/public/images/large/witchery/beartrap/0.png deleted file mode 100644 index 54543d86a2..0000000000 Binary files a/front/public/images/large/witchery/beartrap/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/belladonna/0.png b/front/public/images/large/witchery/belladonna/0.png deleted file mode 100644 index 18353634b8..0000000000 Binary files a/front/public/images/large/witchery/belladonna/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/biomenote/0.png b/front/public/images/large/witchery/biomenote/0.png deleted file mode 100644 index 66533c8529..0000000000 Binary files a/front/public/images/large/witchery/biomenote/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bitingbelt/0.png b/front/public/images/large/witchery/bitingbelt/0.png deleted file mode 100644 index 475dbd51be..0000000000 Binary files a/front/public/images/large/witchery/bitingbelt/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bloodcrucible/0.png b/front/public/images/large/witchery/bloodcrucible/0.png deleted file mode 100644 index 7aa506a841..0000000000 Binary files a/front/public/images/large/witchery/bloodcrucible/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bloodedwool/0.png b/front/public/images/large/witchery/bloodedwool/0.png deleted file mode 100644 index 415f41bc04..0000000000 Binary files a/front/public/images/large/witchery/bloodedwool/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bloodrose/0.png b/front/public/images/large/witchery/bloodrose/0.png deleted file mode 100644 index cf54c8fedb..0000000000 Binary files a/front/public/images/large/witchery/bloodrose/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/boline/0.png b/front/public/images/large/witchery/boline/0.png deleted file mode 100644 index 40be882109..0000000000 Binary files a/front/public/images/large/witchery/boline/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bookbiomes2/0.png b/front/public/images/large/witchery/bookbiomes2/0.png deleted file mode 100644 index 501b9ab2c1..0000000000 Binary files a/front/public/images/large/witchery/bookbiomes2/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bramble/0.png b/front/public/images/large/witchery/bramble/0.png deleted file mode 100644 index f58fa6af12..0000000000 Binary files a/front/public/images/large/witchery/bramble/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bramble/1.png b/front/public/images/large/witchery/bramble/1.png deleted file mode 100644 index f9fbf273c4..0000000000 Binary files a/front/public/images/large/witchery/bramble/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/brazier/0.png b/front/public/images/large/witchery/brazier/0.png deleted file mode 100644 index 25c2a7fcd4..0000000000 Binary files a/front/public/images/large/witchery/brazier/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/brew.fuel/0.png b/front/public/images/large/witchery/brew.fuel/0.png deleted file mode 100644 index 96d02d919a..0000000000 Binary files a/front/public/images/large/witchery/brew.fuel/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/brew.water/0.png b/front/public/images/large/witchery/brew.water/0.png deleted file mode 100644 index 7d10f1561f..0000000000 Binary files a/front/public/images/large/witchery/brew.water/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/brew/0.png b/front/public/images/large/witchery/brew/0.png deleted file mode 100644 index 52aab7c9a5..0000000000 Binary files a/front/public/images/large/witchery/brew/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/brewbag/0.png b/front/public/images/large/witchery/brewbag/0.png deleted file mode 100644 index 094ce155c9..0000000000 Binary files a/front/public/images/large/witchery/brewbag/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/brewbottle/0.png b/front/public/images/large/witchery/brewbottle/0.png deleted file mode 100644 index f262ad2259..0000000000 Binary files a/front/public/images/large/witchery/brewbottle/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/brewgas/0.png b/front/public/images/large/witchery/brewgas/0.png deleted file mode 100644 index bbe019d5ba..0000000000 Binary files a/front/public/images/large/witchery/brewgas/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/brewliquid/0.png b/front/public/images/large/witchery/brewliquid/0.png deleted file mode 100644 index 52aab7c9a5..0000000000 Binary files a/front/public/images/large/witchery/brewliquid/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bucketbrew/0.png b/front/public/images/large/witchery/bucketbrew/0.png deleted file mode 100644 index b6172742a9..0000000000 Binary files a/front/public/images/large/witchery/bucketbrew/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/buckethollowtears/0.png b/front/public/images/large/witchery/buckethollowtears/0.png deleted file mode 100644 index c4c02c4832..0000000000 Binary files a/front/public/images/large/witchery/buckethollowtears/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/bucketspirit/0.png b/front/public/images/large/witchery/bucketspirit/0.png deleted file mode 100644 index f190884d73..0000000000 Binary files a/front/public/images/large/witchery/bucketspirit/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cactus/0.png b/front/public/images/large/witchery/cactus/0.png deleted file mode 100644 index 0aee461f99..0000000000 Binary files a/front/public/images/large/witchery/cactus/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/candelabra/0.png b/front/public/images/large/witchery/candelabra/0.png deleted file mode 100644 index cba96e6ee2..0000000000 Binary files a/front/public/images/large/witchery/candelabra/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/canesword/0.png b/front/public/images/large/witchery/canesword/0.png deleted file mode 100644 index 6893f9f760..0000000000 Binary files a/front/public/images/large/witchery/canesword/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cauldron/0.png b/front/public/images/large/witchery/cauldron/0.png deleted file mode 100644 index 3634c9cb08..0000000000 Binary files a/front/public/images/large/witchery/cauldron/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cauldronbook/0.png b/front/public/images/large/witchery/cauldronbook/0.png deleted file mode 100644 index abf8fd77ba..0000000000 Binary files a/front/public/images/large/witchery/cauldronbook/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cbuttonstone/0.png b/front/public/images/large/witchery/cbuttonstone/0.png deleted file mode 100644 index caac16e087..0000000000 Binary files a/front/public/images/large/witchery/cbuttonstone/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cbuttonwood/0.png b/front/public/images/large/witchery/cbuttonwood/0.png deleted file mode 100644 index 12af1db21e..0000000000 Binary files a/front/public/images/large/witchery/cbuttonwood/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/chalice/0.png b/front/public/images/large/witchery/chalice/0.png deleted file mode 100644 index 8697124438..0000000000 Binary files a/front/public/images/large/witchery/chalice/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/chalkheart/0.png b/front/public/images/large/witchery/chalkheart/0.png deleted file mode 100644 index ffaca14b65..0000000000 Binary files a/front/public/images/large/witchery/chalkheart/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/chalkinfernal/0.png b/front/public/images/large/witchery/chalkinfernal/0.png deleted file mode 100644 index 8bfcda7e32..0000000000 Binary files a/front/public/images/large/witchery/chalkinfernal/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/chalkotherwhere/0.png b/front/public/images/large/witchery/chalkotherwhere/0.png deleted file mode 100644 index 3f2cb8da79..0000000000 Binary files a/front/public/images/large/witchery/chalkotherwhere/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/chalkritual/0.png b/front/public/images/large/witchery/chalkritual/0.png deleted file mode 100644 index 1f5e06fb8d..0000000000 Binary files a/front/public/images/large/witchery/chalkritual/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/circle/0.png b/front/public/images/large/witchery/circle/0.png deleted file mode 100644 index fa5768e271..0000000000 Binary files a/front/public/images/large/witchery/circle/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/circleglyphinfernal/0.png b/front/public/images/large/witchery/circleglyphinfernal/0.png deleted file mode 100644 index c9e5450eab..0000000000 Binary files a/front/public/images/large/witchery/circleglyphinfernal/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/circleglyphotherwhere/0.png b/front/public/images/large/witchery/circleglyphotherwhere/0.png deleted file mode 100644 index 73172ed925..0000000000 Binary files a/front/public/images/large/witchery/circleglyphotherwhere/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/circleglyphritual/0.png b/front/public/images/large/witchery/circleglyphritual/0.png deleted file mode 100644 index cd6a688c81..0000000000 Binary files a/front/public/images/large/witchery/circleglyphritual/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/0.png b/front/public/images/large/witchery/circletalisman/0.png deleted file mode 100644 index 8204ce6b81..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/1.png b/front/public/images/large/witchery/circletalisman/1.png deleted file mode 100644 index e941af5ea3..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/128.png b/front/public/images/large/witchery/circletalisman/128.png deleted file mode 100644 index e7d81c6ef9..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/128.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/16.png b/front/public/images/large/witchery/circletalisman/16.png deleted file mode 100644 index 4651a87981..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/16.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/192.png b/front/public/images/large/witchery/circletalisman/192.png deleted file mode 100644 index 64ffda46a1..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/192.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/2.png b/front/public/images/large/witchery/circletalisman/2.png deleted file mode 100644 index 55a77dc5da..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/24.png b/front/public/images/large/witchery/circletalisman/24.png deleted file mode 100644 index dd289752a2..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/24.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/3.png b/front/public/images/large/witchery/circletalisman/3.png deleted file mode 100644 index 10aed6fb63..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/64.png b/front/public/images/large/witchery/circletalisman/64.png deleted file mode 100644 index 7083975721..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/64.png and /dev/null differ diff --git a/front/public/images/large/witchery/circletalisman/8.png b/front/public/images/large/witchery/circletalisman/8.png deleted file mode 100644 index 930d0df2b1..0000000000 Binary files a/front/public/images/large/witchery/circletalisman/8.png and /dev/null differ diff --git a/front/public/images/large/witchery/clever/0.png b/front/public/images/large/witchery/clever/0.png deleted file mode 100644 index f5ef571891..0000000000 Binary files a/front/public/images/large/witchery/clever/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/coffin/0.png b/front/public/images/large/witchery/coffin/0.png deleted file mode 100644 index 710bbf3c17..0000000000 Binary files a/front/public/images/large/witchery/coffin/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/coffinblock/0.png b/front/public/images/large/witchery/coffinblock/0.png deleted file mode 100644 index 955b1da23b..0000000000 Binary files a/front/public/images/large/witchery/coffinblock/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/crittersnare/0.png b/front/public/images/large/witchery/crittersnare/0.png deleted file mode 100644 index 9cc2b8ef3b..0000000000 Binary files a/front/public/images/large/witchery/crittersnare/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/crystalball/0.png b/front/public/images/large/witchery/crystalball/0.png deleted file mode 100644 index 825915ae08..0000000000 Binary files a/front/public/images/large/witchery/crystalball/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/csnowpressureplate/0.png b/front/public/images/large/witchery/csnowpressureplate/0.png deleted file mode 100644 index 6a4cccf5f2..0000000000 Binary files a/front/public/images/large/witchery/csnowpressureplate/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cstonepressureplate/0.png b/front/public/images/large/witchery/cstonepressureplate/0.png deleted file mode 100644 index 7d051839e2..0000000000 Binary files a/front/public/images/large/witchery/cstonepressureplate/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cwoodendoor/0.png b/front/public/images/large/witchery/cwoodendoor/0.png deleted file mode 100644 index fb04643949..0000000000 Binary files a/front/public/images/large/witchery/cwoodendoor/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/cwoodpressureplate/0.png b/front/public/images/large/witchery/cwoodpressureplate/0.png deleted file mode 100644 index f2393cf8c1..0000000000 Binary files a/front/public/images/large/witchery/cwoodpressureplate/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/daylightcollector/0.png b/front/public/images/large/witchery/daylightcollector/0.png deleted file mode 100644 index eed0c28863..0000000000 Binary files a/front/public/images/large/witchery/daylightcollector/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/deathscowl/0.png b/front/public/images/large/witchery/deathscowl/0.png deleted file mode 100644 index 5334c5e03d..0000000000 Binary files a/front/public/images/large/witchery/deathscowl/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/deathsfeet/0.png b/front/public/images/large/witchery/deathsfeet/0.png deleted file mode 100644 index dd340eed1e..0000000000 Binary files a/front/public/images/large/witchery/deathsfeet/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/deathshand/0.png b/front/public/images/large/witchery/deathshand/0.png deleted file mode 100644 index 94ddda5292..0000000000 Binary files a/front/public/images/large/witchery/deathshand/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/deathsrobe/0.png b/front/public/images/large/witchery/deathsrobe/0.png deleted file mode 100644 index 8fb7a4739c..0000000000 Binary files a/front/public/images/large/witchery/deathsrobe/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/decursedirected/0.png b/front/public/images/large/witchery/decursedirected/0.png deleted file mode 100644 index 9ae57c0c94..0000000000 Binary files a/front/public/images/large/witchery/decursedirected/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/decurseteleport/0.png b/front/public/images/large/witchery/decurseteleport/0.png deleted file mode 100644 index f222bb7110..0000000000 Binary files a/front/public/images/large/witchery/decurseteleport/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/demonheart/0.png b/front/public/images/large/witchery/demonheart/0.png deleted file mode 100644 index 5ad46b2ae8..0000000000 Binary files a/front/public/images/large/witchery/demonheart/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/devilstonguecharm/0.png b/front/public/images/large/witchery/devilstonguecharm/0.png deleted file mode 100644 index 49de22e0a3..0000000000 Binary files a/front/public/images/large/witchery/devilstonguecharm/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/disease/0.png b/front/public/images/large/witchery/disease/0.png deleted file mode 100644 index b607d83db7..0000000000 Binary files a/front/public/images/large/witchery/disease/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/distilleryburning/0.png b/front/public/images/large/witchery/distilleryburning/0.png deleted file mode 100644 index 633119c3ef..0000000000 Binary files a/front/public/images/large/witchery/distilleryburning/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/distilleryidle/0.png b/front/public/images/large/witchery/distilleryidle/0.png deleted file mode 100644 index 2e6479788b..0000000000 Binary files a/front/public/images/large/witchery/distilleryidle/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/divinerlava/0.png b/front/public/images/large/witchery/divinerlava/0.png deleted file mode 100644 index 9aa686c5a9..0000000000 Binary files a/front/public/images/large/witchery/divinerlava/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/divinerwater/0.png b/front/public/images/large/witchery/divinerwater/0.png deleted file mode 100644 index cacf35c363..0000000000 Binary files a/front/public/images/large/witchery/divinerwater/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/dreamcatcher/0.png b/front/public/images/large/witchery/dreamcatcher/0.png deleted file mode 100644 index 63c50bc57d..0000000000 Binary files a/front/public/images/large/witchery/dreamcatcher/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/dupgrenade/0.png b/front/public/images/large/witchery/dupgrenade/0.png deleted file mode 100644 index b966862a98..0000000000 Binary files a/front/public/images/large/witchery/dupgrenade/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/dupstaff/0.png b/front/public/images/large/witchery/dupstaff/0.png deleted file mode 100644 index 4e3de6e95b..0000000000 Binary files a/front/public/images/large/witchery/dupstaff/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/earmuffs/0.png b/front/public/images/large/witchery/earmuffs/0.png deleted file mode 100644 index c720a28c9f..0000000000 Binary files a/front/public/images/large/witchery/earmuffs/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/embermoss/0.png b/front/public/images/large/witchery/embermoss/0.png deleted file mode 100644 index c79ac49698..0000000000 Binary files a/front/public/images/large/witchery/embermoss/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/filteredfumefunnel/0.png b/front/public/images/large/witchery/filteredfumefunnel/0.png deleted file mode 100644 index ccb95f1ee8..0000000000 Binary files a/front/public/images/large/witchery/filteredfumefunnel/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/force/0.png b/front/public/images/large/witchery/force/0.png deleted file mode 100644 index 9864155fd7..0000000000 Binary files a/front/public/images/large/witchery/force/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/fumefunnel/0.png b/front/public/images/large/witchery/fumefunnel/0.png deleted file mode 100644 index ccb95f1ee8..0000000000 Binary files a/front/public/images/large/witchery/fumefunnel/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/garlic/0.png b/front/public/images/large/witchery/garlic/0.png deleted file mode 100644 index 76c5bd1c53..0000000000 Binary files a/front/public/images/large/witchery/garlic/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/garlicgarland/0.png b/front/public/images/large/witchery/garlicgarland/0.png deleted file mode 100644 index 5190ff4231..0000000000 Binary files a/front/public/images/large/witchery/garlicgarland/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/garlicplant/0.png b/front/public/images/large/witchery/garlicplant/0.png deleted file mode 100644 index 8dd52867d7..0000000000 Binary files a/front/public/images/large/witchery/garlicplant/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/glassgoblet/0.png b/front/public/images/large/witchery/glassgoblet/0.png deleted file mode 100644 index a38ccdec09..0000000000 Binary files a/front/public/images/large/witchery/glassgoblet/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/glintweed/0.png b/front/public/images/large/witchery/glintweed/0.png deleted file mode 100644 index ebec84345e..0000000000 Binary files a/front/public/images/large/witchery/glintweed/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/glowglobe/0.png b/front/public/images/large/witchery/glowglobe/0.png deleted file mode 100644 index 06749020ad..0000000000 Binary files a/front/public/images/large/witchery/glowglobe/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/grassper/0.png b/front/public/images/large/witchery/grassper/0.png deleted file mode 100644 index e14b10faea..0000000000 Binary files a/front/public/images/large/witchery/grassper/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/gurdleofgulg/0.png b/front/public/images/large/witchery/gurdleofgulg/0.png deleted file mode 100644 index 04c34f5946..0000000000 Binary files a/front/public/images/large/witchery/gurdleofgulg/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/handbow/0.png b/front/public/images/large/witchery/handbow/0.png deleted file mode 100644 index cc4319e035..0000000000 Binary files a/front/public/images/large/witchery/handbow/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hollowtears/0.png b/front/public/images/large/witchery/hollowtears/0.png deleted file mode 100644 index 1cbf8b5f3c..0000000000 Binary files a/front/public/images/large/witchery/hollowtears/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hornofthehunt/0.png b/front/public/images/large/witchery/hornofthehunt/0.png deleted file mode 100644 index 8cb3acd06b..0000000000 Binary files a/front/public/images/large/witchery/hornofthehunt/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterboots/0.png b/front/public/images/large/witchery/hunterboots/0.png deleted file mode 100644 index 1e7b70d3fc..0000000000 Binary files a/front/public/images/large/witchery/hunterboots/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterbootsgarlicked/0.png b/front/public/images/large/witchery/hunterbootsgarlicked/0.png deleted file mode 100644 index a2234e6569..0000000000 Binary files a/front/public/images/large/witchery/hunterbootsgarlicked/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterbootssilvered/0.png b/front/public/images/large/witchery/hunterbootssilvered/0.png deleted file mode 100644 index a2234e6569..0000000000 Binary files a/front/public/images/large/witchery/hunterbootssilvered/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/huntercoat/0.png b/front/public/images/large/witchery/huntercoat/0.png deleted file mode 100644 index 338077531b..0000000000 Binary files a/front/public/images/large/witchery/huntercoat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/huntercoatgarlicked/0.png b/front/public/images/large/witchery/huntercoatgarlicked/0.png deleted file mode 100644 index 24e0682b79..0000000000 Binary files a/front/public/images/large/witchery/huntercoatgarlicked/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/huntercoatsilvered/0.png b/front/public/images/large/witchery/huntercoatsilvered/0.png deleted file mode 100644 index 24e0682b79..0000000000 Binary files a/front/public/images/large/witchery/huntercoatsilvered/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterhat/0.png b/front/public/images/large/witchery/hunterhat/0.png deleted file mode 100644 index 0fc15bf0be..0000000000 Binary files a/front/public/images/large/witchery/hunterhat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterhatgarlicked/0.png b/front/public/images/large/witchery/hunterhatgarlicked/0.png deleted file mode 100644 index 53ff5bae22..0000000000 Binary files a/front/public/images/large/witchery/hunterhatgarlicked/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterhatsilvered/0.png b/front/public/images/large/witchery/hunterhatsilvered/0.png deleted file mode 100644 index 53ff5bae22..0000000000 Binary files a/front/public/images/large/witchery/hunterhatsilvered/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterlegs/0.png b/front/public/images/large/witchery/hunterlegs/0.png deleted file mode 100644 index 6586cf99df..0000000000 Binary files a/front/public/images/large/witchery/hunterlegs/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterlegsgarlicked/0.png b/front/public/images/large/witchery/hunterlegsgarlicked/0.png deleted file mode 100644 index e76b559365..0000000000 Binary files a/front/public/images/large/witchery/hunterlegsgarlicked/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/hunterlegssilvered/0.png b/front/public/images/large/witchery/hunterlegssilvered/0.png deleted file mode 100644 index e76b559365..0000000000 Binary files a/front/public/images/large/witchery/hunterlegssilvered/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/huntsmanspear/0.png b/front/public/images/large/witchery/huntsmanspear/0.png deleted file mode 100644 index 47a59b2613..0000000000 Binary files a/front/public/images/large/witchery/huntsmanspear/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/icedoor/0.png b/front/public/images/large/witchery/icedoor/0.png deleted file mode 100644 index 66a0491960..0000000000 Binary files a/front/public/images/large/witchery/icedoor/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/icedoubleslab/0.png b/front/public/images/large/witchery/icedoubleslab/0.png deleted file mode 100644 index a8e61025d7..0000000000 Binary files a/front/public/images/large/witchery/icedoubleslab/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/icefence/0.png b/front/public/images/large/witchery/icefence/0.png deleted file mode 100644 index 12b4ebbec4..0000000000 Binary files a/front/public/images/large/witchery/icefence/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/icefencegate/0.png b/front/public/images/large/witchery/icefencegate/0.png deleted file mode 100644 index 5ebb460bbc..0000000000 Binary files a/front/public/images/large/witchery/icefencegate/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/icepressureplate/0.png b/front/public/images/large/witchery/icepressureplate/0.png deleted file mode 100644 index 4c6d239334..0000000000 Binary files a/front/public/images/large/witchery/icepressureplate/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/iceslab/0.png b/front/public/images/large/witchery/iceslab/0.png deleted file mode 100644 index 790c66fc6f..0000000000 Binary files a/front/public/images/large/witchery/iceslab/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/iceslippers/0.png b/front/public/images/large/witchery/iceslippers/0.png deleted file mode 100644 index 4342610e5b..0000000000 Binary files a/front/public/images/large/witchery/iceslippers/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/icestairs/0.png b/front/public/images/large/witchery/icestairs/0.png deleted file mode 100644 index 2d90967f69..0000000000 Binary files a/front/public/images/large/witchery/icestairs/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/icestockade/0.png b/front/public/images/large/witchery/icestockade/0.png deleted file mode 100644 index c8ba9ce8d6..0000000000 Binary files a/front/public/images/large/witchery/icestockade/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/infinityegg/0.png b/front/public/images/large/witchery/infinityegg/0.png deleted file mode 100644 index f7b6cc4ef3..0000000000 Binary files a/front/public/images/large/witchery/infinityegg/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/0.png b/front/public/images/large/witchery/ingredient/0.png deleted file mode 100644 index 3029aa07fb..0000000000 Binary files a/front/public/images/large/witchery/ingredient/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/1.png b/front/public/images/large/witchery/ingredient/1.png deleted file mode 100644 index 6368563a7b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/10.png b/front/public/images/large/witchery/ingredient/10.png deleted file mode 100644 index 37341a15de..0000000000 Binary files a/front/public/images/large/witchery/ingredient/10.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/100.png b/front/public/images/large/witchery/ingredient/100.png deleted file mode 100644 index 775bace980..0000000000 Binary files a/front/public/images/large/witchery/ingredient/100.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/101.png b/front/public/images/large/witchery/ingredient/101.png deleted file mode 100644 index 3f5e14f115..0000000000 Binary files a/front/public/images/large/witchery/ingredient/101.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/102.png b/front/public/images/large/witchery/ingredient/102.png deleted file mode 100644 index 2221e524ea..0000000000 Binary files a/front/public/images/large/witchery/ingredient/102.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/103.png b/front/public/images/large/witchery/ingredient/103.png deleted file mode 100644 index ed129ca364..0000000000 Binary files a/front/public/images/large/witchery/ingredient/103.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/104.png b/front/public/images/large/witchery/ingredient/104.png deleted file mode 100644 index 97d5645f00..0000000000 Binary files a/front/public/images/large/witchery/ingredient/104.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/105.png b/front/public/images/large/witchery/ingredient/105.png deleted file mode 100644 index d7c068416f..0000000000 Binary files a/front/public/images/large/witchery/ingredient/105.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/106.png b/front/public/images/large/witchery/ingredient/106.png deleted file mode 100644 index a17125e8b6..0000000000 Binary files a/front/public/images/large/witchery/ingredient/106.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/107.png b/front/public/images/large/witchery/ingredient/107.png deleted file mode 100644 index 85d454efc2..0000000000 Binary files a/front/public/images/large/witchery/ingredient/107.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/108.png b/front/public/images/large/witchery/ingredient/108.png deleted file mode 100644 index 6606863b5f..0000000000 Binary files a/front/public/images/large/witchery/ingredient/108.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/109.png b/front/public/images/large/witchery/ingredient/109.png deleted file mode 100644 index 0f41f778b9..0000000000 Binary files a/front/public/images/large/witchery/ingredient/109.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/11.png b/front/public/images/large/witchery/ingredient/11.png deleted file mode 100644 index 7f3ef12c36..0000000000 Binary files a/front/public/images/large/witchery/ingredient/11.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/110.png b/front/public/images/large/witchery/ingredient/110.png deleted file mode 100644 index bc9ff31f1e..0000000000 Binary files a/front/public/images/large/witchery/ingredient/110.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/111.png b/front/public/images/large/witchery/ingredient/111.png deleted file mode 100644 index ec06e530fc..0000000000 Binary files a/front/public/images/large/witchery/ingredient/111.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/112.png b/front/public/images/large/witchery/ingredient/112.png deleted file mode 100644 index 4f652b8bd4..0000000000 Binary files a/front/public/images/large/witchery/ingredient/112.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/113.png b/front/public/images/large/witchery/ingredient/113.png deleted file mode 100644 index 713422f795..0000000000 Binary files a/front/public/images/large/witchery/ingredient/113.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/114.png b/front/public/images/large/witchery/ingredient/114.png deleted file mode 100644 index 664240e03c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/114.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/115.png b/front/public/images/large/witchery/ingredient/115.png deleted file mode 100644 index 654847a419..0000000000 Binary files a/front/public/images/large/witchery/ingredient/115.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/116.png b/front/public/images/large/witchery/ingredient/116.png deleted file mode 100644 index c3b1ced6f2..0000000000 Binary files a/front/public/images/large/witchery/ingredient/116.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/117.png b/front/public/images/large/witchery/ingredient/117.png deleted file mode 100644 index 81239d315c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/117.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/118.png b/front/public/images/large/witchery/ingredient/118.png deleted file mode 100644 index 624303efba..0000000000 Binary files a/front/public/images/large/witchery/ingredient/118.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/119.png b/front/public/images/large/witchery/ingredient/119.png deleted file mode 100644 index cada6ea8f8..0000000000 Binary files a/front/public/images/large/witchery/ingredient/119.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/12.png b/front/public/images/large/witchery/ingredient/12.png deleted file mode 100644 index 060d6da42c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/12.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/120.png b/front/public/images/large/witchery/ingredient/120.png deleted file mode 100644 index 94b0fd3ef0..0000000000 Binary files a/front/public/images/large/witchery/ingredient/120.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/121.png b/front/public/images/large/witchery/ingredient/121.png deleted file mode 100644 index 2cf60f6642..0000000000 Binary files a/front/public/images/large/witchery/ingredient/121.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/122.png b/front/public/images/large/witchery/ingredient/122.png deleted file mode 100644 index 49209e233c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/122.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/123.png b/front/public/images/large/witchery/ingredient/123.png deleted file mode 100644 index 526d6cff8e..0000000000 Binary files a/front/public/images/large/witchery/ingredient/123.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/124.png b/front/public/images/large/witchery/ingredient/124.png deleted file mode 100644 index 123c972c6b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/124.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/125.png b/front/public/images/large/witchery/ingredient/125.png deleted file mode 100644 index 6e323d9bfe..0000000000 Binary files a/front/public/images/large/witchery/ingredient/125.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/126.png b/front/public/images/large/witchery/ingredient/126.png deleted file mode 100644 index 5366a0ba9d..0000000000 Binary files a/front/public/images/large/witchery/ingredient/126.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/127.png b/front/public/images/large/witchery/ingredient/127.png deleted file mode 100644 index e714b0c2cf..0000000000 Binary files a/front/public/images/large/witchery/ingredient/127.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/128.png b/front/public/images/large/witchery/ingredient/128.png deleted file mode 100644 index 7e11fd872c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/128.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/129.png b/front/public/images/large/witchery/ingredient/129.png deleted file mode 100644 index ad14b4e9a0..0000000000 Binary files a/front/public/images/large/witchery/ingredient/129.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/130.png b/front/public/images/large/witchery/ingredient/130.png deleted file mode 100644 index eef3496adf..0000000000 Binary files a/front/public/images/large/witchery/ingredient/130.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/131.png b/front/public/images/large/witchery/ingredient/131.png deleted file mode 100644 index 52990b44f6..0000000000 Binary files a/front/public/images/large/witchery/ingredient/131.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/132.png b/front/public/images/large/witchery/ingredient/132.png deleted file mode 100644 index 2f78e2ee47..0000000000 Binary files a/front/public/images/large/witchery/ingredient/132.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/133.png b/front/public/images/large/witchery/ingredient/133.png deleted file mode 100644 index c45cf96757..0000000000 Binary files a/front/public/images/large/witchery/ingredient/133.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/134.png b/front/public/images/large/witchery/ingredient/134.png deleted file mode 100644 index 133092d0f1..0000000000 Binary files a/front/public/images/large/witchery/ingredient/134.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/135.png b/front/public/images/large/witchery/ingredient/135.png deleted file mode 100644 index c260abee8b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/135.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/136.png b/front/public/images/large/witchery/ingredient/136.png deleted file mode 100644 index 0d4d297211..0000000000 Binary files a/front/public/images/large/witchery/ingredient/136.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/137.png b/front/public/images/large/witchery/ingredient/137.png deleted file mode 100644 index 900ab65446..0000000000 Binary files a/front/public/images/large/witchery/ingredient/137.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/138.png b/front/public/images/large/witchery/ingredient/138.png deleted file mode 100644 index 3b4f2334e7..0000000000 Binary files a/front/public/images/large/witchery/ingredient/138.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/139.png b/front/public/images/large/witchery/ingredient/139.png deleted file mode 100644 index 7c86aef43a..0000000000 Binary files a/front/public/images/large/witchery/ingredient/139.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/14.png b/front/public/images/large/witchery/ingredient/14.png deleted file mode 100644 index cea262a2d6..0000000000 Binary files a/front/public/images/large/witchery/ingredient/14.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/140.png b/front/public/images/large/witchery/ingredient/140.png deleted file mode 100644 index c09b08874a..0000000000 Binary files a/front/public/images/large/witchery/ingredient/140.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/141.png b/front/public/images/large/witchery/ingredient/141.png deleted file mode 100644 index 75472437da..0000000000 Binary files a/front/public/images/large/witchery/ingredient/141.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/142.png b/front/public/images/large/witchery/ingredient/142.png deleted file mode 100644 index 544b8a4993..0000000000 Binary files a/front/public/images/large/witchery/ingredient/142.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/143.png b/front/public/images/large/witchery/ingredient/143.png deleted file mode 100644 index ea9e6c9728..0000000000 Binary files a/front/public/images/large/witchery/ingredient/143.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/144.png b/front/public/images/large/witchery/ingredient/144.png deleted file mode 100644 index f2539ccdd7..0000000000 Binary files a/front/public/images/large/witchery/ingredient/144.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/145.png b/front/public/images/large/witchery/ingredient/145.png deleted file mode 100644 index 32ad5d659e..0000000000 Binary files a/front/public/images/large/witchery/ingredient/145.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/146.png b/front/public/images/large/witchery/ingredient/146.png deleted file mode 100644 index 78a6e4be96..0000000000 Binary files a/front/public/images/large/witchery/ingredient/146.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/148.png b/front/public/images/large/witchery/ingredient/148.png deleted file mode 100644 index 13bb82bb70..0000000000 Binary files a/front/public/images/large/witchery/ingredient/148.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/149.png b/front/public/images/large/witchery/ingredient/149.png deleted file mode 100644 index 4b5cc74ebe..0000000000 Binary files a/front/public/images/large/witchery/ingredient/149.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/15.png b/front/public/images/large/witchery/ingredient/15.png deleted file mode 100644 index 177802a57d..0000000000 Binary files a/front/public/images/large/witchery/ingredient/15.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/150.png b/front/public/images/large/witchery/ingredient/150.png deleted file mode 100644 index f2af302c1f..0000000000 Binary files a/front/public/images/large/witchery/ingredient/150.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/151.png b/front/public/images/large/witchery/ingredient/151.png deleted file mode 100644 index d339c531db..0000000000 Binary files a/front/public/images/large/witchery/ingredient/151.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/152.png b/front/public/images/large/witchery/ingredient/152.png deleted file mode 100644 index 41e6239ae0..0000000000 Binary files a/front/public/images/large/witchery/ingredient/152.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/153.png b/front/public/images/large/witchery/ingredient/153.png deleted file mode 100644 index 7a26c9ad66..0000000000 Binary files a/front/public/images/large/witchery/ingredient/153.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/154.png b/front/public/images/large/witchery/ingredient/154.png deleted file mode 100644 index 82cda7d93b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/154.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/155.png b/front/public/images/large/witchery/ingredient/155.png deleted file mode 100644 index 317db941fe..0000000000 Binary files a/front/public/images/large/witchery/ingredient/155.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/156.png b/front/public/images/large/witchery/ingredient/156.png deleted file mode 100644 index ef1fd8d45a..0000000000 Binary files a/front/public/images/large/witchery/ingredient/156.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/157.png b/front/public/images/large/witchery/ingredient/157.png deleted file mode 100644 index 263ee6985f..0000000000 Binary files a/front/public/images/large/witchery/ingredient/157.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/158.png b/front/public/images/large/witchery/ingredient/158.png deleted file mode 100644 index 9783aa2081..0000000000 Binary files a/front/public/images/large/witchery/ingredient/158.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/159.png b/front/public/images/large/witchery/ingredient/159.png deleted file mode 100644 index c240d04c45..0000000000 Binary files a/front/public/images/large/witchery/ingredient/159.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/16.png b/front/public/images/large/witchery/ingredient/16.png deleted file mode 100644 index 78f76a7f36..0000000000 Binary files a/front/public/images/large/witchery/ingredient/16.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/160.png b/front/public/images/large/witchery/ingredient/160.png deleted file mode 100644 index 2f0daae0a4..0000000000 Binary files a/front/public/images/large/witchery/ingredient/160.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/161.png b/front/public/images/large/witchery/ingredient/161.png deleted file mode 100644 index 42b4a716f5..0000000000 Binary files a/front/public/images/large/witchery/ingredient/161.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/162.png b/front/public/images/large/witchery/ingredient/162.png deleted file mode 100644 index 124a643380..0000000000 Binary files a/front/public/images/large/witchery/ingredient/162.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/163.png b/front/public/images/large/witchery/ingredient/163.png deleted file mode 100644 index 368f87d09d..0000000000 Binary files a/front/public/images/large/witchery/ingredient/163.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/164.png b/front/public/images/large/witchery/ingredient/164.png deleted file mode 100644 index 1c8459bb50..0000000000 Binary files a/front/public/images/large/witchery/ingredient/164.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/165.png b/front/public/images/large/witchery/ingredient/165.png deleted file mode 100644 index b5519ec289..0000000000 Binary files a/front/public/images/large/witchery/ingredient/165.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/17.png b/front/public/images/large/witchery/ingredient/17.png deleted file mode 100644 index 94d481dad4..0000000000 Binary files a/front/public/images/large/witchery/ingredient/17.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/18.png b/front/public/images/large/witchery/ingredient/18.png deleted file mode 100644 index 58c805b287..0000000000 Binary files a/front/public/images/large/witchery/ingredient/18.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/2.png b/front/public/images/large/witchery/ingredient/2.png deleted file mode 100644 index 93772448d8..0000000000 Binary files a/front/public/images/large/witchery/ingredient/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/21.png b/front/public/images/large/witchery/ingredient/21.png deleted file mode 100644 index 36a5f7b0a6..0000000000 Binary files a/front/public/images/large/witchery/ingredient/21.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/22.png b/front/public/images/large/witchery/ingredient/22.png deleted file mode 100644 index 824dbf0f9b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/22.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/23.png b/front/public/images/large/witchery/ingredient/23.png deleted file mode 100644 index d983806b93..0000000000 Binary files a/front/public/images/large/witchery/ingredient/23.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/24.png b/front/public/images/large/witchery/ingredient/24.png deleted file mode 100644 index 4fbed9c29d..0000000000 Binary files a/front/public/images/large/witchery/ingredient/24.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/25.png b/front/public/images/large/witchery/ingredient/25.png deleted file mode 100644 index eee52dd3f7..0000000000 Binary files a/front/public/images/large/witchery/ingredient/25.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/26.png b/front/public/images/large/witchery/ingredient/26.png deleted file mode 100644 index 275fcf52bc..0000000000 Binary files a/front/public/images/large/witchery/ingredient/26.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/27.png b/front/public/images/large/witchery/ingredient/27.png deleted file mode 100644 index 22cf72327b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/27.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/28.png b/front/public/images/large/witchery/ingredient/28.png deleted file mode 100644 index d65eb63aec..0000000000 Binary files a/front/public/images/large/witchery/ingredient/28.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/29.png b/front/public/images/large/witchery/ingredient/29.png deleted file mode 100644 index c47190b5ba..0000000000 Binary files a/front/public/images/large/witchery/ingredient/29.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/3.png b/front/public/images/large/witchery/ingredient/3.png deleted file mode 100644 index a907e9109a..0000000000 Binary files a/front/public/images/large/witchery/ingredient/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/30.png b/front/public/images/large/witchery/ingredient/30.png deleted file mode 100644 index 37dc460c48..0000000000 Binary files a/front/public/images/large/witchery/ingredient/30.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/31.png b/front/public/images/large/witchery/ingredient/31.png deleted file mode 100644 index 625c8cc56b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/31.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/32.png b/front/public/images/large/witchery/ingredient/32.png deleted file mode 100644 index 270782f3a4..0000000000 Binary files a/front/public/images/large/witchery/ingredient/32.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/33.png b/front/public/images/large/witchery/ingredient/33.png deleted file mode 100644 index 9ae159a230..0000000000 Binary files a/front/public/images/large/witchery/ingredient/33.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/34.png b/front/public/images/large/witchery/ingredient/34.png deleted file mode 100644 index 31423984df..0000000000 Binary files a/front/public/images/large/witchery/ingredient/34.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/35.png b/front/public/images/large/witchery/ingredient/35.png deleted file mode 100644 index d458450198..0000000000 Binary files a/front/public/images/large/witchery/ingredient/35.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/36.png b/front/public/images/large/witchery/ingredient/36.png deleted file mode 100644 index ac33f230fc..0000000000 Binary files a/front/public/images/large/witchery/ingredient/36.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/37.png b/front/public/images/large/witchery/ingredient/37.png deleted file mode 100644 index ba75129831..0000000000 Binary files a/front/public/images/large/witchery/ingredient/37.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/38.png b/front/public/images/large/witchery/ingredient/38.png deleted file mode 100644 index 462c21ed41..0000000000 Binary files a/front/public/images/large/witchery/ingredient/38.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/39.png b/front/public/images/large/witchery/ingredient/39.png deleted file mode 100644 index 4f09681472..0000000000 Binary files a/front/public/images/large/witchery/ingredient/39.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/4.png b/front/public/images/large/witchery/ingredient/4.png deleted file mode 100644 index 861bd37a09..0000000000 Binary files a/front/public/images/large/witchery/ingredient/4.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/40.png b/front/public/images/large/witchery/ingredient/40.png deleted file mode 100644 index 4c9f88c47c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/40.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/41.png b/front/public/images/large/witchery/ingredient/41.png deleted file mode 100644 index ce800ccc36..0000000000 Binary files a/front/public/images/large/witchery/ingredient/41.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/42.png b/front/public/images/large/witchery/ingredient/42.png deleted file mode 100644 index 32e98455ec..0000000000 Binary files a/front/public/images/large/witchery/ingredient/42.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/43.png b/front/public/images/large/witchery/ingredient/43.png deleted file mode 100644 index 538e35178c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/43.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/44.png b/front/public/images/large/witchery/ingredient/44.png deleted file mode 100644 index d00a46b23b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/44.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/45.png b/front/public/images/large/witchery/ingredient/45.png deleted file mode 100644 index b9f3037cc0..0000000000 Binary files a/front/public/images/large/witchery/ingredient/45.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/46.png b/front/public/images/large/witchery/ingredient/46.png deleted file mode 100644 index e9026237af..0000000000 Binary files a/front/public/images/large/witchery/ingredient/46.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/47.png b/front/public/images/large/witchery/ingredient/47.png deleted file mode 100644 index 02f3b6886c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/47.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/48.png b/front/public/images/large/witchery/ingredient/48.png deleted file mode 100644 index 484f7b1cc7..0000000000 Binary files a/front/public/images/large/witchery/ingredient/48.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/49.png b/front/public/images/large/witchery/ingredient/49.png deleted file mode 100644 index cfe89fd8c1..0000000000 Binary files a/front/public/images/large/witchery/ingredient/49.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/5.png b/front/public/images/large/witchery/ingredient/5.png deleted file mode 100644 index 135acd735a..0000000000 Binary files a/front/public/images/large/witchery/ingredient/5.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/50.png b/front/public/images/large/witchery/ingredient/50.png deleted file mode 100644 index fa2c332b7e..0000000000 Binary files a/front/public/images/large/witchery/ingredient/50.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/51.png b/front/public/images/large/witchery/ingredient/51.png deleted file mode 100644 index dde5a222aa..0000000000 Binary files a/front/public/images/large/witchery/ingredient/51.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/52.png b/front/public/images/large/witchery/ingredient/52.png deleted file mode 100644 index bab9ef3f9c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/52.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/53.png b/front/public/images/large/witchery/ingredient/53.png deleted file mode 100644 index 1c45e12343..0000000000 Binary files a/front/public/images/large/witchery/ingredient/53.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/54.png b/front/public/images/large/witchery/ingredient/54.png deleted file mode 100644 index 387f8710b5..0000000000 Binary files a/front/public/images/large/witchery/ingredient/54.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/55.png b/front/public/images/large/witchery/ingredient/55.png deleted file mode 100644 index 270832f0d9..0000000000 Binary files a/front/public/images/large/witchery/ingredient/55.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/56.png b/front/public/images/large/witchery/ingredient/56.png deleted file mode 100644 index 0351d7b8e3..0000000000 Binary files a/front/public/images/large/witchery/ingredient/56.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/57.png b/front/public/images/large/witchery/ingredient/57.png deleted file mode 100644 index 510c3e547d..0000000000 Binary files a/front/public/images/large/witchery/ingredient/57.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/58.png b/front/public/images/large/witchery/ingredient/58.png deleted file mode 100644 index 22f0300be1..0000000000 Binary files a/front/public/images/large/witchery/ingredient/58.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/59.png b/front/public/images/large/witchery/ingredient/59.png deleted file mode 100644 index e0707ce119..0000000000 Binary files a/front/public/images/large/witchery/ingredient/59.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/6.png b/front/public/images/large/witchery/ingredient/6.png deleted file mode 100644 index 0c83a8d45c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/6.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/60.png b/front/public/images/large/witchery/ingredient/60.png deleted file mode 100644 index 9f6dd7319d..0000000000 Binary files a/front/public/images/large/witchery/ingredient/60.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/61.png b/front/public/images/large/witchery/ingredient/61.png deleted file mode 100644 index 816379d985..0000000000 Binary files a/front/public/images/large/witchery/ingredient/61.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/62.png b/front/public/images/large/witchery/ingredient/62.png deleted file mode 100644 index cfcc9301ce..0000000000 Binary files a/front/public/images/large/witchery/ingredient/62.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/63.png b/front/public/images/large/witchery/ingredient/63.png deleted file mode 100644 index 762488ea17..0000000000 Binary files a/front/public/images/large/witchery/ingredient/63.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/64.png b/front/public/images/large/witchery/ingredient/64.png deleted file mode 100644 index 6b66148e4c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/64.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/65.png b/front/public/images/large/witchery/ingredient/65.png deleted file mode 100644 index bf93066d3b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/65.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/66.png b/front/public/images/large/witchery/ingredient/66.png deleted file mode 100644 index bc3c8fd4ea..0000000000 Binary files a/front/public/images/large/witchery/ingredient/66.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/67.png b/front/public/images/large/witchery/ingredient/67.png deleted file mode 100644 index 7678110788..0000000000 Binary files a/front/public/images/large/witchery/ingredient/67.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/69.png b/front/public/images/large/witchery/ingredient/69.png deleted file mode 100644 index 77e4cda404..0000000000 Binary files a/front/public/images/large/witchery/ingredient/69.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/7.png b/front/public/images/large/witchery/ingredient/7.png deleted file mode 100644 index 204badd5ee..0000000000 Binary files a/front/public/images/large/witchery/ingredient/7.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/70.png b/front/public/images/large/witchery/ingredient/70.png deleted file mode 100644 index 9a8ef037c9..0000000000 Binary files a/front/public/images/large/witchery/ingredient/70.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/71.png b/front/public/images/large/witchery/ingredient/71.png deleted file mode 100644 index d76eb0e351..0000000000 Binary files a/front/public/images/large/witchery/ingredient/71.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/72.png b/front/public/images/large/witchery/ingredient/72.png deleted file mode 100644 index a7196935a1..0000000000 Binary files a/front/public/images/large/witchery/ingredient/72.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/73.png b/front/public/images/large/witchery/ingredient/73.png deleted file mode 100644 index fb0a0918e1..0000000000 Binary files a/front/public/images/large/witchery/ingredient/73.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/74.png b/front/public/images/large/witchery/ingredient/74.png deleted file mode 100644 index 431d3cd891..0000000000 Binary files a/front/public/images/large/witchery/ingredient/74.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/75.png b/front/public/images/large/witchery/ingredient/75.png deleted file mode 100644 index 53b23c94d1..0000000000 Binary files a/front/public/images/large/witchery/ingredient/75.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/76.png b/front/public/images/large/witchery/ingredient/76.png deleted file mode 100644 index f3da4d42be..0000000000 Binary files a/front/public/images/large/witchery/ingredient/76.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/77.png b/front/public/images/large/witchery/ingredient/77.png deleted file mode 100644 index 326804d997..0000000000 Binary files a/front/public/images/large/witchery/ingredient/77.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/78.png b/front/public/images/large/witchery/ingredient/78.png deleted file mode 100644 index 5b2ffa549b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/78.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/79.png b/front/public/images/large/witchery/ingredient/79.png deleted file mode 100644 index 45f3f2d8ca..0000000000 Binary files a/front/public/images/large/witchery/ingredient/79.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/8.png b/front/public/images/large/witchery/ingredient/8.png deleted file mode 100644 index 5b58d3ea3f..0000000000 Binary files a/front/public/images/large/witchery/ingredient/8.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/80.png b/front/public/images/large/witchery/ingredient/80.png deleted file mode 100644 index 1905012577..0000000000 Binary files a/front/public/images/large/witchery/ingredient/80.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/81.png b/front/public/images/large/witchery/ingredient/81.png deleted file mode 100644 index 3359460d10..0000000000 Binary files a/front/public/images/large/witchery/ingredient/81.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/82.png b/front/public/images/large/witchery/ingredient/82.png deleted file mode 100644 index 1ab4eac38c..0000000000 Binary files a/front/public/images/large/witchery/ingredient/82.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/83.png b/front/public/images/large/witchery/ingredient/83.png deleted file mode 100644 index 1974046fc8..0000000000 Binary files a/front/public/images/large/witchery/ingredient/83.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/84.png b/front/public/images/large/witchery/ingredient/84.png deleted file mode 100644 index 38265b0b42..0000000000 Binary files a/front/public/images/large/witchery/ingredient/84.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/85.png b/front/public/images/large/witchery/ingredient/85.png deleted file mode 100644 index 698b954719..0000000000 Binary files a/front/public/images/large/witchery/ingredient/85.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/86.png b/front/public/images/large/witchery/ingredient/86.png deleted file mode 100644 index 32aace69c7..0000000000 Binary files a/front/public/images/large/witchery/ingredient/86.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/87.png b/front/public/images/large/witchery/ingredient/87.png deleted file mode 100644 index 08424900c9..0000000000 Binary files a/front/public/images/large/witchery/ingredient/87.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/88.png b/front/public/images/large/witchery/ingredient/88.png deleted file mode 100644 index 6bf901abc0..0000000000 Binary files a/front/public/images/large/witchery/ingredient/88.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/89.png b/front/public/images/large/witchery/ingredient/89.png deleted file mode 100644 index db5bf6c927..0000000000 Binary files a/front/public/images/large/witchery/ingredient/89.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/9.png b/front/public/images/large/witchery/ingredient/9.png deleted file mode 100644 index 1f772214e6..0000000000 Binary files a/front/public/images/large/witchery/ingredient/9.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/90.png b/front/public/images/large/witchery/ingredient/90.png deleted file mode 100644 index bd6697d52f..0000000000 Binary files a/front/public/images/large/witchery/ingredient/90.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/91.png b/front/public/images/large/witchery/ingredient/91.png deleted file mode 100644 index 8185341125..0000000000 Binary files a/front/public/images/large/witchery/ingredient/91.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/92.png b/front/public/images/large/witchery/ingredient/92.png deleted file mode 100644 index 0c65e977bb..0000000000 Binary files a/front/public/images/large/witchery/ingredient/92.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/93.png b/front/public/images/large/witchery/ingredient/93.png deleted file mode 100644 index 0af3aeccf1..0000000000 Binary files a/front/public/images/large/witchery/ingredient/93.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/94.png b/front/public/images/large/witchery/ingredient/94.png deleted file mode 100644 index 1695274ee0..0000000000 Binary files a/front/public/images/large/witchery/ingredient/94.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/95.png b/front/public/images/large/witchery/ingredient/95.png deleted file mode 100644 index 95a4e47f79..0000000000 Binary files a/front/public/images/large/witchery/ingredient/95.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/96.png b/front/public/images/large/witchery/ingredient/96.png deleted file mode 100644 index 4c9c3d278d..0000000000 Binary files a/front/public/images/large/witchery/ingredient/96.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/97.png b/front/public/images/large/witchery/ingredient/97.png deleted file mode 100644 index 5771fda24b..0000000000 Binary files a/front/public/images/large/witchery/ingredient/97.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/98.png b/front/public/images/large/witchery/ingredient/98.png deleted file mode 100644 index 87dce347b8..0000000000 Binary files a/front/public/images/large/witchery/ingredient/98.png and /dev/null differ diff --git a/front/public/images/large/witchery/ingredient/99.png b/front/public/images/large/witchery/ingredient/99.png deleted file mode 100644 index cb64d76509..0000000000 Binary files a/front/public/images/large/witchery/ingredient/99.png and /dev/null differ diff --git a/front/public/images/large/witchery/kettle/0.png b/front/public/images/large/witchery/kettle/0.png deleted file mode 100644 index 10de65c003..0000000000 Binary files a/front/public/images/large/witchery/kettle/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/kobolditehelm/0.png b/front/public/images/large/witchery/kobolditehelm/0.png deleted file mode 100644 index 0848b66faf..0000000000 Binary files a/front/public/images/large/witchery/kobolditehelm/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/kobolditepickaxe/0.png b/front/public/images/large/witchery/kobolditepickaxe/0.png deleted file mode 100644 index 2a82432c7e..0000000000 Binary files a/front/public/images/large/witchery/kobolditepickaxe/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/leapinglily/0.png b/front/public/images/large/witchery/leapinglily/0.png deleted file mode 100644 index f239b765d7..0000000000 Binary files a/front/public/images/large/witchery/leapinglily/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/leechchest/0.png b/front/public/images/large/witchery/leechchest/0.png deleted file mode 100644 index 3e426e30a1..0000000000 Binary files a/front/public/images/large/witchery/leechchest/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/leonardsurn/0.png b/front/public/images/large/witchery/leonardsurn/0.png deleted file mode 100644 index 91c9c721f8..0000000000 Binary files a/front/public/images/large/witchery/leonardsurn/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/leonardsurn/1.png b/front/public/images/large/witchery/leonardsurn/1.png deleted file mode 100644 index f99ad29b07..0000000000 Binary files a/front/public/images/large/witchery/leonardsurn/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/leonardsurn/2.png b/front/public/images/large/witchery/leonardsurn/2.png deleted file mode 100644 index 322aef4193..0000000000 Binary files a/front/public/images/large/witchery/leonardsurn/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/leonardsurn/3.png b/front/public/images/large/witchery/leonardsurn/3.png deleted file mode 100644 index 7630b48842..0000000000 Binary files a/front/public/images/large/witchery/leonardsurn/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/light/0.png b/front/public/images/large/witchery/light/0.png deleted file mode 100644 index 4f66c16bc1..0000000000 Binary files a/front/public/images/large/witchery/light/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/lilypad/0.png b/front/public/images/large/witchery/lilypad/0.png deleted file mode 100644 index 9e0332531e..0000000000 Binary files a/front/public/images/large/witchery/lilypad/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/louse/0.png b/front/public/images/large/witchery/louse/0.png deleted file mode 100644 index d730d72ec8..0000000000 Binary files a/front/public/images/large/witchery/louse/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mandrake/0.png b/front/public/images/large/witchery/mandrake/0.png deleted file mode 100644 index 395053f013..0000000000 Binary files a/front/public/images/large/witchery/mandrake/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mindrake/0.png b/front/public/images/large/witchery/mindrake/0.png deleted file mode 100644 index d202611c37..0000000000 Binary files a/front/public/images/large/witchery/mindrake/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mirror/0.png b/front/public/images/large/witchery/mirror/0.png deleted file mode 100644 index 093e0b2bde..0000000000 Binary files a/front/public/images/large/witchery/mirror/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mirrorblock/0.png b/front/public/images/large/witchery/mirrorblock/0.png deleted file mode 100644 index 854ec2295d..0000000000 Binary files a/front/public/images/large/witchery/mirrorblock/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mirrorblock2/0.png b/front/public/images/large/witchery/mirrorblock2/0.png deleted file mode 100644 index 854ec2295d..0000000000 Binary files a/front/public/images/large/witchery/mirrorblock2/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mirrorwall/0.png b/front/public/images/large/witchery/mirrorwall/0.png deleted file mode 100644 index 51596a7005..0000000000 Binary files a/front/public/images/large/witchery/mirrorwall/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mooncharm/0.png b/front/public/images/large/witchery/mooncharm/0.png deleted file mode 100644 index bb4c92603c..0000000000 Binary files a/front/public/images/large/witchery/mooncharm/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mutator/0.png b/front/public/images/large/witchery/mutator/0.png deleted file mode 100644 index 63f1925cb6..0000000000 Binary files a/front/public/images/large/witchery/mutator/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/mysticbranch/0.png b/front/public/images/large/witchery/mysticbranch/0.png deleted file mode 100644 index 1ab4eac38c..0000000000 Binary files a/front/public/images/large/witchery/mysticbranch/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/necromancerrobe/0.png b/front/public/images/large/witchery/necromancerrobe/0.png deleted file mode 100644 index e53b16a624..0000000000 Binary files a/front/public/images/large/witchery/necromancerrobe/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/perpetualice/0.png b/front/public/images/large/witchery/perpetualice/0.png deleted file mode 100644 index a8e61025d7..0000000000 Binary files a/front/public/images/large/witchery/perpetualice/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/pitdirt/0.png b/front/public/images/large/witchery/pitdirt/0.png deleted file mode 100644 index cb611ac271..0000000000 Binary files a/front/public/images/large/witchery/pitdirt/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/pitgrass/0.png b/front/public/images/large/witchery/pitgrass/0.png deleted file mode 100644 index 459035779f..0000000000 Binary files a/front/public/images/large/witchery/pitgrass/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/placeditem/0.png b/front/public/images/large/witchery/placeditem/0.png deleted file mode 100644 index 997b92cfa0..0000000000 Binary files a/front/public/images/large/witchery/placeditem/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/0.png b/front/public/images/large/witchery/plantmine/0.png deleted file mode 100644 index 7f20a1ebb1..0000000000 Binary files a/front/public/images/large/witchery/plantmine/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/1.png b/front/public/images/large/witchery/plantmine/1.png deleted file mode 100644 index 7f20a1ebb1..0000000000 Binary files a/front/public/images/large/witchery/plantmine/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/10.png b/front/public/images/large/witchery/plantmine/10.png deleted file mode 100644 index 427841e883..0000000000 Binary files a/front/public/images/large/witchery/plantmine/10.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/11.png b/front/public/images/large/witchery/plantmine/11.png deleted file mode 100644 index 427841e883..0000000000 Binary files a/front/public/images/large/witchery/plantmine/11.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/2.png b/front/public/images/large/witchery/plantmine/2.png deleted file mode 100644 index 7f20a1ebb1..0000000000 Binary files a/front/public/images/large/witchery/plantmine/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/3.png b/front/public/images/large/witchery/plantmine/3.png deleted file mode 100644 index 7f20a1ebb1..0000000000 Binary files a/front/public/images/large/witchery/plantmine/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/4.png b/front/public/images/large/witchery/plantmine/4.png deleted file mode 100644 index 9fb57b7921..0000000000 Binary files a/front/public/images/large/witchery/plantmine/4.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/5.png b/front/public/images/large/witchery/plantmine/5.png deleted file mode 100644 index 9fb57b7921..0000000000 Binary files a/front/public/images/large/witchery/plantmine/5.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/6.png b/front/public/images/large/witchery/plantmine/6.png deleted file mode 100644 index 9fb57b7921..0000000000 Binary files a/front/public/images/large/witchery/plantmine/6.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/7.png b/front/public/images/large/witchery/plantmine/7.png deleted file mode 100644 index 9fb57b7921..0000000000 Binary files a/front/public/images/large/witchery/plantmine/7.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/8.png b/front/public/images/large/witchery/plantmine/8.png deleted file mode 100644 index 427841e883..0000000000 Binary files a/front/public/images/large/witchery/plantmine/8.png and /dev/null differ diff --git a/front/public/images/large/witchery/plantmine/9.png b/front/public/images/large/witchery/plantmine/9.png deleted file mode 100644 index 427841e883..0000000000 Binary files a/front/public/images/large/witchery/plantmine/9.png and /dev/null differ diff --git a/front/public/images/large/witchery/playercompass/0.png b/front/public/images/large/witchery/playercompass/0.png deleted file mode 100644 index 5d0e5a134a..0000000000 Binary files a/front/public/images/large/witchery/playercompass/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/polynesiacharm/0.png b/front/public/images/large/witchery/polynesiacharm/0.png deleted file mode 100644 index d3032477d3..0000000000 Binary files a/front/public/images/large/witchery/polynesiacharm/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/0.png b/front/public/images/large/witchery/poppet/0.png deleted file mode 100644 index 18e08fdb2f..0000000000 Binary files a/front/public/images/large/witchery/poppet/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/1.png b/front/public/images/large/witchery/poppet/1.png deleted file mode 100644 index 3af53f5537..0000000000 Binary files a/front/public/images/large/witchery/poppet/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/10.png b/front/public/images/large/witchery/poppet/10.png deleted file mode 100644 index c8c5e99b16..0000000000 Binary files a/front/public/images/large/witchery/poppet/10.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/11.png b/front/public/images/large/witchery/poppet/11.png deleted file mode 100644 index 1ccc5ab091..0000000000 Binary files a/front/public/images/large/witchery/poppet/11.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/2.png b/front/public/images/large/witchery/poppet/2.png deleted file mode 100644 index 288a7c176e..0000000000 Binary files a/front/public/images/large/witchery/poppet/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/3.png b/front/public/images/large/witchery/poppet/3.png deleted file mode 100644 index 88788b6de8..0000000000 Binary files a/front/public/images/large/witchery/poppet/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/4.png b/front/public/images/large/witchery/poppet/4.png deleted file mode 100644 index 42cb6aa725..0000000000 Binary files a/front/public/images/large/witchery/poppet/4.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/5.png b/front/public/images/large/witchery/poppet/5.png deleted file mode 100644 index 534c4cdcab..0000000000 Binary files a/front/public/images/large/witchery/poppet/5.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/6.png b/front/public/images/large/witchery/poppet/6.png deleted file mode 100644 index 16e26c2a54..0000000000 Binary files a/front/public/images/large/witchery/poppet/6.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/7.png b/front/public/images/large/witchery/poppet/7.png deleted file mode 100644 index 9eb7c526c3..0000000000 Binary files a/front/public/images/large/witchery/poppet/7.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/8.png b/front/public/images/large/witchery/poppet/8.png deleted file mode 100644 index 24dd4f144d..0000000000 Binary files a/front/public/images/large/witchery/poppet/8.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppet/9.png b/front/public/images/large/witchery/poppet/9.png deleted file mode 100644 index 770e9ac280..0000000000 Binary files a/front/public/images/large/witchery/poppet/9.png and /dev/null differ diff --git a/front/public/images/large/witchery/poppetshelf/0.png b/front/public/images/large/witchery/poppetshelf/0.png deleted file mode 100644 index 126416d336..0000000000 Binary files a/front/public/images/large/witchery/poppetshelf/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/potion/0.png b/front/public/images/large/witchery/potion/0.png deleted file mode 100644 index f13dc8f3be..0000000000 Binary files a/front/public/images/large/witchery/potion/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/quiverofmog/0.png b/front/public/images/large/witchery/quiverofmog/0.png deleted file mode 100644 index de4599d02e..0000000000 Binary files a/front/public/images/large/witchery/quiverofmog/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/refillingchest/0.png b/front/public/images/large/witchery/refillingchest/0.png deleted file mode 100644 index df029e7057..0000000000 Binary files a/front/public/images/large/witchery/refillingchest/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/rowanwooddoor/0.png b/front/public/images/large/witchery/rowanwooddoor/0.png deleted file mode 100644 index 676ede01be..0000000000 Binary files a/front/public/images/large/witchery/rowanwooddoor/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/rubyslippers/0.png b/front/public/images/large/witchery/rubyslippers/0.png deleted file mode 100644 index a36e08dd97..0000000000 Binary files a/front/public/images/large/witchery/rubyslippers/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/scarecrow/0.png b/front/public/images/large/witchery/scarecrow/0.png deleted file mode 100644 index f0dc90b98c..0000000000 Binary files a/front/public/images/large/witchery/scarecrow/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seedsartichoke/0.png b/front/public/images/large/witchery/seedsartichoke/0.png deleted file mode 100644 index e8d8ad7459..0000000000 Binary files a/front/public/images/large/witchery/seedsartichoke/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seedsbelladonna/0.png b/front/public/images/large/witchery/seedsbelladonna/0.png deleted file mode 100644 index c80daeb4ec..0000000000 Binary files a/front/public/images/large/witchery/seedsbelladonna/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seedsmandrake/0.png b/front/public/images/large/witchery/seedsmandrake/0.png deleted file mode 100644 index 418379bc0b..0000000000 Binary files a/front/public/images/large/witchery/seedsmandrake/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seedsmindrake/0.png b/front/public/images/large/witchery/seedsmindrake/0.png deleted file mode 100644 index 249861a127..0000000000 Binary files a/front/public/images/large/witchery/seedsmindrake/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seedssnowbell/0.png b/front/public/images/large/witchery/seedssnowbell/0.png deleted file mode 100644 index a46ec9d547..0000000000 Binary files a/front/public/images/large/witchery/seedssnowbell/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seedswolfsbane/0.png b/front/public/images/large/witchery/seedswolfsbane/0.png deleted file mode 100644 index e5fbb60fef..0000000000 Binary files a/front/public/images/large/witchery/seedswolfsbane/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seedswormwood/0.png b/front/public/images/large/witchery/seedswormwood/0.png deleted file mode 100644 index 2895349a4e..0000000000 Binary files a/front/public/images/large/witchery/seedswormwood/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/seepingshoes/0.png b/front/public/images/large/witchery/seepingshoes/0.png deleted file mode 100644 index cc4080c514..0000000000 Binary files a/front/public/images/large/witchery/seepingshoes/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/0.png b/front/public/images/large/witchery/shadedglass/0.png deleted file mode 100644 index 7c1e456a38..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/1.png b/front/public/images/large/witchery/shadedglass/1.png deleted file mode 100644 index 95e826e778..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/10.png b/front/public/images/large/witchery/shadedglass/10.png deleted file mode 100644 index f8a25e29b9..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/10.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/11.png b/front/public/images/large/witchery/shadedglass/11.png deleted file mode 100644 index 740099a815..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/11.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/12.png b/front/public/images/large/witchery/shadedglass/12.png deleted file mode 100644 index 6e1f52e440..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/12.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/13.png b/front/public/images/large/witchery/shadedglass/13.png deleted file mode 100644 index c40b7e1022..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/13.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/14.png b/front/public/images/large/witchery/shadedglass/14.png deleted file mode 100644 index 3c3aae9e81..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/14.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/15.png b/front/public/images/large/witchery/shadedglass/15.png deleted file mode 100644 index 93373f9235..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/15.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/2.png b/front/public/images/large/witchery/shadedglass/2.png deleted file mode 100644 index 0615f3b0d8..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/3.png b/front/public/images/large/witchery/shadedglass/3.png deleted file mode 100644 index e37fa5ec05..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/4.png b/front/public/images/large/witchery/shadedglass/4.png deleted file mode 100644 index 7dce6314dd..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/4.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/5.png b/front/public/images/large/witchery/shadedglass/5.png deleted file mode 100644 index f8fac05db3..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/5.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/6.png b/front/public/images/large/witchery/shadedglass/6.png deleted file mode 100644 index b2d813b5b9..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/6.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/7.png b/front/public/images/large/witchery/shadedglass/7.png deleted file mode 100644 index 339afd9637..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/7.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/8.png b/front/public/images/large/witchery/shadedglass/8.png deleted file mode 100644 index 6d3a9aed05..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/8.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass/9.png b/front/public/images/large/witchery/shadedglass/9.png deleted file mode 100644 index dc40e4ece1..0000000000 Binary files a/front/public/images/large/witchery/shadedglass/9.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/0.png b/front/public/images/large/witchery/shadedglass_active/0.png deleted file mode 100644 index b7796b76a7..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/1.png b/front/public/images/large/witchery/shadedglass_active/1.png deleted file mode 100644 index 68a81ee55e..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/10.png b/front/public/images/large/witchery/shadedglass_active/10.png deleted file mode 100644 index ae8562c348..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/10.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/11.png b/front/public/images/large/witchery/shadedglass_active/11.png deleted file mode 100644 index 30488ca2c0..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/11.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/12.png b/front/public/images/large/witchery/shadedglass_active/12.png deleted file mode 100644 index b8963ab8f9..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/12.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/13.png b/front/public/images/large/witchery/shadedglass_active/13.png deleted file mode 100644 index 776a684152..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/13.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/14.png b/front/public/images/large/witchery/shadedglass_active/14.png deleted file mode 100644 index c4de6e1833..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/14.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/15.png b/front/public/images/large/witchery/shadedglass_active/15.png deleted file mode 100644 index 748726dbae..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/15.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/2.png b/front/public/images/large/witchery/shadedglass_active/2.png deleted file mode 100644 index 4fb02f5ed7..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/3.png b/front/public/images/large/witchery/shadedglass_active/3.png deleted file mode 100644 index 3df1d34843..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/4.png b/front/public/images/large/witchery/shadedglass_active/4.png deleted file mode 100644 index bb9ee6f92e..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/4.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/5.png b/front/public/images/large/witchery/shadedglass_active/5.png deleted file mode 100644 index e4c14bad38..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/5.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/6.png b/front/public/images/large/witchery/shadedglass_active/6.png deleted file mode 100644 index c0d1337134..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/6.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/7.png b/front/public/images/large/witchery/shadedglass_active/7.png deleted file mode 100644 index 7525b5b6f1..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/7.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/8.png b/front/public/images/large/witchery/shadedglass_active/8.png deleted file mode 100644 index 61ca33b8ef..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/8.png and /dev/null differ diff --git a/front/public/images/large/witchery/shadedglass_active/9.png b/front/public/images/large/witchery/shadedglass_active/9.png deleted file mode 100644 index 0ccbb7315b..0000000000 Binary files a/front/public/images/large/witchery/shadedglass_active/9.png and /dev/null differ diff --git a/front/public/images/large/witchery/shelfcompass/0.png b/front/public/images/large/witchery/shelfcompass/0.png deleted file mode 100644 index 056c704997..0000000000 Binary files a/front/public/images/large/witchery/shelfcompass/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/silversword/0.png b/front/public/images/large/witchery/silversword/0.png deleted file mode 100644 index 8bd406183d..0000000000 Binary files a/front/public/images/large/witchery/silversword/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/silvervat/0.png b/front/public/images/large/witchery/silvervat/0.png deleted file mode 100644 index e1a9adf742..0000000000 Binary files a/front/public/images/large/witchery/silvervat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/slurp/0.png b/front/public/images/large/witchery/slurp/0.png deleted file mode 100644 index 7086f2655c..0000000000 Binary files a/front/public/images/large/witchery/slurp/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/snowbell/0.png b/front/public/images/large/witchery/snowbell/0.png deleted file mode 100644 index 24262f07dd..0000000000 Binary files a/front/public/images/large/witchery/snowbell/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/snowdoubleslab/0.png b/front/public/images/large/witchery/snowdoubleslab/0.png deleted file mode 100644 index 3dc5b6bc97..0000000000 Binary files a/front/public/images/large/witchery/snowdoubleslab/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/snowpressureplate/0.png b/front/public/images/large/witchery/snowpressureplate/0.png deleted file mode 100644 index 6a4cccf5f2..0000000000 Binary files a/front/public/images/large/witchery/snowpressureplate/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/snowslab/0.png b/front/public/images/large/witchery/snowslab/0.png deleted file mode 100644 index 80bd49d5b0..0000000000 Binary files a/front/public/images/large/witchery/snowslab/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/snowstairs/0.png b/front/public/images/large/witchery/snowstairs/0.png deleted file mode 100644 index 04f9490017..0000000000 Binary files a/front/public/images/large/witchery/snowstairs/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/somniancotton/0.png b/front/public/images/large/witchery/somniancotton/0.png deleted file mode 100644 index c773a6ef44..0000000000 Binary files a/front/public/images/large/witchery/somniancotton/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/spanishmoss/0.png b/front/public/images/large/witchery/spanishmoss/0.png deleted file mode 100644 index c989f04238..0000000000 Binary files a/front/public/images/large/witchery/spanishmoss/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/spectralstone/0.png b/front/public/images/large/witchery/spectralstone/0.png deleted file mode 100644 index ee4d1c8c23..0000000000 Binary files a/front/public/images/large/witchery/spectralstone/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/spectralstone/17.png b/front/public/images/large/witchery/spectralstone/17.png deleted file mode 100644 index 54a26d7eb7..0000000000 Binary files a/front/public/images/large/witchery/spectralstone/17.png and /dev/null differ diff --git a/front/public/images/large/witchery/spectralstone/18.png b/front/public/images/large/witchery/spectralstone/18.png deleted file mode 100644 index ed840e00aa..0000000000 Binary files a/front/public/images/large/witchery/spectralstone/18.png and /dev/null differ diff --git a/front/public/images/large/witchery/spectralstone/19.png b/front/public/images/large/witchery/spectralstone/19.png deleted file mode 100644 index 008e4ebc8d..0000000000 Binary files a/front/public/images/large/witchery/spectralstone/19.png and /dev/null differ diff --git a/front/public/images/large/witchery/spinningwheel/0.png b/front/public/images/large/witchery/spinningwheel/0.png deleted file mode 100644 index f36c2e30a0..0000000000 Binary files a/front/public/images/large/witchery/spinningwheel/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/spiritflowing/0.png b/front/public/images/large/witchery/spiritflowing/0.png deleted file mode 100644 index 67a4161e4b..0000000000 Binary files a/front/public/images/large/witchery/spiritflowing/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/spiritportal/0.png b/front/public/images/large/witchery/spiritportal/0.png deleted file mode 100644 index f578f882fd..0000000000 Binary files a/front/public/images/large/witchery/spiritportal/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/stairswoodalder/0.png b/front/public/images/large/witchery/stairswoodalder/0.png deleted file mode 100644 index 8bdfc87171..0000000000 Binary files a/front/public/images/large/witchery/stairswoodalder/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/stairswoodhawthorn/0.png b/front/public/images/large/witchery/stairswoodhawthorn/0.png deleted file mode 100644 index a4e561e02f..0000000000 Binary files a/front/public/images/large/witchery/stairswoodhawthorn/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/stairswoodrowan/0.png b/front/public/images/large/witchery/stairswoodrowan/0.png deleted file mode 100644 index d85d4a4c81..0000000000 Binary files a/front/public/images/large/witchery/stairswoodrowan/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/statuegoddess/0.png b/front/public/images/large/witchery/statuegoddess/0.png deleted file mode 100644 index 1304f78c17..0000000000 Binary files a/front/public/images/large/witchery/statuegoddess/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/statueofworship/0.png b/front/public/images/large/witchery/statueofworship/0.png deleted file mode 100644 index 88863b7d57..0000000000 Binary files a/front/public/images/large/witchery/statueofworship/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/stew/0.png b/front/public/images/large/witchery/stew/0.png deleted file mode 100644 index a2f303e6a6..0000000000 Binary files a/front/public/images/large/witchery/stew/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/stewraw/0.png b/front/public/images/large/witchery/stewraw/0.png deleted file mode 100644 index 1767309e7f..0000000000 Binary files a/front/public/images/large/witchery/stewraw/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/0.png b/front/public/images/large/witchery/stockade/0.png deleted file mode 100644 index ca6cf14e38..0000000000 Binary files a/front/public/images/large/witchery/stockade/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/1.png b/front/public/images/large/witchery/stockade/1.png deleted file mode 100644 index c3eaa37aac..0000000000 Binary files a/front/public/images/large/witchery/stockade/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/2.png b/front/public/images/large/witchery/stockade/2.png deleted file mode 100644 index 5c901f8c52..0000000000 Binary files a/front/public/images/large/witchery/stockade/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/3.png b/front/public/images/large/witchery/stockade/3.png deleted file mode 100644 index 06b52e9176..0000000000 Binary files a/front/public/images/large/witchery/stockade/3.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/4.png b/front/public/images/large/witchery/stockade/4.png deleted file mode 100644 index 59bb6305fa..0000000000 Binary files a/front/public/images/large/witchery/stockade/4.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/5.png b/front/public/images/large/witchery/stockade/5.png deleted file mode 100644 index 999444c4bb..0000000000 Binary files a/front/public/images/large/witchery/stockade/5.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/6.png b/front/public/images/large/witchery/stockade/6.png deleted file mode 100644 index 138f01da89..0000000000 Binary files a/front/public/images/large/witchery/stockade/6.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/7.png b/front/public/images/large/witchery/stockade/7.png deleted file mode 100644 index dd931db85c..0000000000 Binary files a/front/public/images/large/witchery/stockade/7.png and /dev/null differ diff --git a/front/public/images/large/witchery/stockade/8.png b/front/public/images/large/witchery/stockade/8.png deleted file mode 100644 index 59964b7ea4..0000000000 Binary files a/front/public/images/large/witchery/stockade/8.png and /dev/null differ diff --git a/front/public/images/large/witchery/sungrenade/0.png b/front/public/images/large/witchery/sungrenade/0.png deleted file mode 100644 index 1786ece260..0000000000 Binary files a/front/public/images/large/witchery/sungrenade/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/taglockkit/0.png b/front/public/images/large/witchery/taglockkit/0.png deleted file mode 100644 index c2e6e0cf60..0000000000 Binary files a/front/public/images/large/witchery/taglockkit/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/tormentportal/0.png b/front/public/images/large/witchery/tormentportal/0.png deleted file mode 100644 index f578f882fd..0000000000 Binary files a/front/public/images/large/witchery/tormentportal/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/tormentstone/0.png b/front/public/images/large/witchery/tormentstone/0.png deleted file mode 100644 index 4ebf923995..0000000000 Binary files a/front/public/images/large/witchery/tormentstone/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/trent/0.png b/front/public/images/large/witchery/trent/0.png deleted file mode 100644 index a699f5b7fe..0000000000 Binary files a/front/public/images/large/witchery/trent/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirebook/0.png b/front/public/images/large/witchery/vampirebook/0.png deleted file mode 100644 index 8fb687f314..0000000000 Binary files a/front/public/images/large/witchery/vampirebook/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirebook/9.png b/front/public/images/large/witchery/vampirebook/9.png deleted file mode 100644 index 8fb687f314..0000000000 Binary files a/front/public/images/large/witchery/vampirebook/9.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampireboots/0.png b/front/public/images/large/witchery/vampireboots/0.png deleted file mode 100644 index b21a638ccd..0000000000 Binary files a/front/public/images/large/witchery/vampireboots/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirechaincoat/0.png b/front/public/images/large/witchery/vampirechaincoat/0.png deleted file mode 100644 index a2cba4095d..0000000000 Binary files a/front/public/images/large/witchery/vampirechaincoat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirechaincoat_female/0.png b/front/public/images/large/witchery/vampirechaincoat_female/0.png deleted file mode 100644 index a2cba4095d..0000000000 Binary files a/front/public/images/large/witchery/vampirechaincoat_female/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirecoat/0.png b/front/public/images/large/witchery/vampirecoat/0.png deleted file mode 100644 index 56339de17b..0000000000 Binary files a/front/public/images/large/witchery/vampirecoat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirecoat_female/0.png b/front/public/images/large/witchery/vampirecoat_female/0.png deleted file mode 100644 index 56339de17b..0000000000 Binary files a/front/public/images/large/witchery/vampirecoat_female/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirehat/0.png b/front/public/images/large/witchery/vampirehat/0.png deleted file mode 100644 index 64f69ca823..0000000000 Binary files a/front/public/images/large/witchery/vampirehat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirehelmet/0.png b/front/public/images/large/witchery/vampirehelmet/0.png deleted file mode 100644 index 13fb2037c3..0000000000 Binary files a/front/public/images/large/witchery/vampirehelmet/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirelegs/0.png b/front/public/images/large/witchery/vampirelegs/0.png deleted file mode 100644 index 9a54f5b5b9..0000000000 Binary files a/front/public/images/large/witchery/vampirelegs/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vampirelegs_kilt/0.png b/front/public/images/large/witchery/vampirelegs_kilt/0.png deleted file mode 100644 index b61cb2ab36..0000000000 Binary files a/front/public/images/large/witchery/vampirelegs_kilt/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/vine/0.png b/front/public/images/large/witchery/vine/0.png deleted file mode 100644 index 8b073fea60..0000000000 Binary files a/front/public/images/large/witchery/vine/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/voidbramble/0.png b/front/public/images/large/witchery/voidbramble/0.png deleted file mode 100644 index 939c1feb5b..0000000000 Binary files a/front/public/images/large/witchery/voidbramble/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wallgen/0.png b/front/public/images/large/witchery/wallgen/0.png deleted file mode 100644 index d3b3d63c2b..0000000000 Binary files a/front/public/images/large/witchery/wallgen/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/web/0.png b/front/public/images/large/witchery/web/0.png deleted file mode 100644 index 8563f31437..0000000000 Binary files a/front/public/images/large/witchery/web/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wickerbundle/0.png b/front/public/images/large/witchery/wickerbundle/0.png deleted file mode 100644 index d7a67ac7ea..0000000000 Binary files a/front/public/images/large/witchery/wickerbundle/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wickerbundle/1.png b/front/public/images/large/witchery/wickerbundle/1.png deleted file mode 100644 index ec363a7e96..0000000000 Binary files a/front/public/images/large/witchery/wickerbundle/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchesovenburning/0.png b/front/public/images/large/witchery/witchesovenburning/0.png deleted file mode 100644 index 70a4bd5d8c..0000000000 Binary files a/front/public/images/large/witchery/witchesovenburning/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchesovenidle/0.png b/front/public/images/large/witchery/witchesovenidle/0.png deleted file mode 100644 index e0a12d4f32..0000000000 Binary files a/front/public/images/large/witchery/witchesovenidle/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchhand/0.png b/front/public/images/large/witchery/witchhand/0.png deleted file mode 100644 index 5e3401c771..0000000000 Binary files a/front/public/images/large/witchery/witchhand/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchhat/0.png b/front/public/images/large/witchery/witchhat/0.png deleted file mode 100644 index 904d38ab42..0000000000 Binary files a/front/public/images/large/witchery/witchhat/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchleaves/0.png b/front/public/images/large/witchery/witchleaves/0.png deleted file mode 100644 index 35332e09ce..0000000000 Binary files a/front/public/images/large/witchery/witchleaves/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchleaves/1.png b/front/public/images/large/witchery/witchleaves/1.png deleted file mode 100644 index d132ceadb2..0000000000 Binary files a/front/public/images/large/witchery/witchleaves/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchleaves/2.png b/front/public/images/large/witchery/witchleaves/2.png deleted file mode 100644 index 8a0deebc31..0000000000 Binary files a/front/public/images/large/witchery/witchleaves/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchlog/0.png b/front/public/images/large/witchery/witchlog/0.png deleted file mode 100644 index 4000d56420..0000000000 Binary files a/front/public/images/large/witchery/witchlog/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchlog/1.png b/front/public/images/large/witchery/witchlog/1.png deleted file mode 100644 index e1ee810ce4..0000000000 Binary files a/front/public/images/large/witchery/witchlog/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchlog/2.png b/front/public/images/large/witchery/witchlog/2.png deleted file mode 100644 index 53e8ba4c8a..0000000000 Binary files a/front/public/images/large/witchery/witchlog/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchrobe/0.png b/front/public/images/large/witchery/witchrobe/0.png deleted file mode 100644 index 973e856d42..0000000000 Binary files a/front/public/images/large/witchery/witchrobe/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchsapling/0.png b/front/public/images/large/witchery/witchsapling/0.png deleted file mode 100644 index 12b7aa69ca..0000000000 Binary files a/front/public/images/large/witchery/witchsapling/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchsapling/1.png b/front/public/images/large/witchery/witchsapling/1.png deleted file mode 100644 index d994e27573..0000000000 Binary files a/front/public/images/large/witchery/witchsapling/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchsapling/2.png b/front/public/images/large/witchery/witchsapling/2.png deleted file mode 100644 index 7a0d8a1f29..0000000000 Binary files a/front/public/images/large/witchery/witchsapling/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchsladder/0.png b/front/public/images/large/witchery/witchsladder/0.png deleted file mode 100644 index 3f848a919b..0000000000 Binary files a/front/public/images/large/witchery/witchsladder/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwood/0.png b/front/public/images/large/witchery/witchwood/0.png deleted file mode 100644 index f61780f902..0000000000 Binary files a/front/public/images/large/witchery/witchwood/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwood/1.png b/front/public/images/large/witchery/witchwood/1.png deleted file mode 100644 index fe50645491..0000000000 Binary files a/front/public/images/large/witchery/witchwood/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwood/2.png b/front/public/images/large/witchery/witchwood/2.png deleted file mode 100644 index 3b62cdbd63..0000000000 Binary files a/front/public/images/large/witchery/witchwood/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwooddoubleslab/0.png b/front/public/images/large/witchery/witchwooddoubleslab/0.png deleted file mode 100644 index f61780f902..0000000000 Binary files a/front/public/images/large/witchery/witchwooddoubleslab/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwooddoubleslab/1.png b/front/public/images/large/witchery/witchwooddoubleslab/1.png deleted file mode 100644 index fe50645491..0000000000 Binary files a/front/public/images/large/witchery/witchwooddoubleslab/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwooddoubleslab/2.png b/front/public/images/large/witchery/witchwooddoubleslab/2.png deleted file mode 100644 index 3b62cdbd63..0000000000 Binary files a/front/public/images/large/witchery/witchwooddoubleslab/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwoodslab/0.png b/front/public/images/large/witchery/witchwoodslab/0.png deleted file mode 100644 index 0c9b260034..0000000000 Binary files a/front/public/images/large/witchery/witchwoodslab/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwoodslab/1.png b/front/public/images/large/witchery/witchwoodslab/1.png deleted file mode 100644 index 8ddfc329b4..0000000000 Binary files a/front/public/images/large/witchery/witchwoodslab/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/witchwoodslab/2.png b/front/public/images/large/witchery/witchwoodslab/2.png deleted file mode 100644 index a19eca3369..0000000000 Binary files a/front/public/images/large/witchery/witchwoodslab/2.png and /dev/null differ diff --git a/front/public/images/large/witchery/wolfaltar/0.png b/front/public/images/large/witchery/wolfaltar/0.png deleted file mode 100644 index 3f698c2fba..0000000000 Binary files a/front/public/images/large/witchery/wolfaltar/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wolfhead/0.png b/front/public/images/large/witchery/wolfhead/0.png deleted file mode 100644 index 3b1cd45858..0000000000 Binary files a/front/public/images/large/witchery/wolfhead/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wolfhead/1.png b/front/public/images/large/witchery/wolfhead/1.png deleted file mode 100644 index abfbc02e86..0000000000 Binary files a/front/public/images/large/witchery/wolfhead/1.png and /dev/null differ diff --git a/front/public/images/large/witchery/wolfsbane/0.png b/front/public/images/large/witchery/wolfsbane/0.png deleted file mode 100644 index cebb1cac96..0000000000 Binary files a/front/public/images/large/witchery/wolfsbane/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wolftoken/0.png b/front/public/images/large/witchery/wolftoken/0.png deleted file mode 100644 index 603d8f4c9e..0000000000 Binary files a/front/public/images/large/witchery/wolftoken/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wolftrap/0.png b/front/public/images/large/witchery/wolftrap/0.png deleted file mode 100644 index 54543d86a2..0000000000 Binary files a/front/public/images/large/witchery/wolftrap/0.png and /dev/null differ diff --git a/front/public/images/large/witchery/wormwood/0.png b/front/public/images/large/witchery/wormwood/0.png deleted file mode 100644 index 4cd7b8a8cc..0000000000 Binary files a/front/public/images/large/witchery/wormwood/0.png and /dev/null differ diff --git a/front/public/images/none_large.png b/front/public/images/none_large.png deleted file mode 100644 index ba06777084..0000000000 Binary files a/front/public/images/none_large.png and /dev/null differ diff --git a/front/public/images/none_small.png b/front/public/images/none_small.png deleted file mode 100644 index 49f832a784..0000000000 Binary files a/front/public/images/none_small.png and /dev/null differ diff --git a/front/public/images/small/AFSU/AFSU/0.png b/front/public/images/small/AFSU/AFSU/0.png deleted file mode 100644 index aad7919bf2..0000000000 Binary files a/front/public/images/small/AFSU/AFSU/0.png and /dev/null differ diff --git a/front/public/images/small/AFSU/AFSU/1.png b/front/public/images/small/AFSU/AFSU/1.png deleted file mode 100644 index aad7919bf2..0000000000 Binary files a/front/public/images/small/AFSU/AFSU/1.png and /dev/null differ diff --git a/front/public/images/small/AFSU/ALC/0.png b/front/public/images/small/AFSU/ALC/0.png deleted file mode 100644 index 50e06587c0..0000000000 Binary files a/front/public/images/small/AFSU/ALC/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/0.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/0.png deleted file mode 100644 index 1ba0846ea8..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/1.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/1.png deleted file mode 100644 index 9c2c882d13..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/2.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/2.png deleted file mode 100644 index 843a3c1b4c..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/3.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/3.png deleted file mode 100644 index 1772e445a8..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/4.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/4.png deleted file mode 100644 index d22a81a3c8..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/4.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/5.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/5.png deleted file mode 100644 index 840f74dd0e..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/5.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/6.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/6.png deleted file mode 100644 index 70f6634512..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrybloodRune/6.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/0.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/0.png deleted file mode 100644 index 1ffc2ae925..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/1.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/1.png deleted file mode 100644 index 9b2034a261..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/2.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/2.png deleted file mode 100644 index a32c67a4b7..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/3.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/3.png deleted file mode 100644 index a6375995af..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEffect/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/0.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/0.png deleted file mode 100644 index a3ffe0707b..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/1.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/1.png deleted file mode 100644 index 03fbab4b5d..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/10.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/10.png deleted file mode 100644 index 72465789f3..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/10.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/11.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/11.png deleted file mode 100644 index 6a0737a904..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/11.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/12.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/12.png deleted file mode 100644 index 9f88251ae0..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/12.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/13.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/13.png deleted file mode 100644 index 43385cabd2..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/13.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/14.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/14.png deleted file mode 100644 index a3ffe0707b..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/14.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/2.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/2.png deleted file mode 100644 index 7318e006a8..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/3.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/3.png deleted file mode 100644 index b6c1f24a34..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/4.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/4.png deleted file mode 100644 index a3ffe0707b..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/4.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/5.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/5.png deleted file mode 100644 index 5526815412..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/5.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/6.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/6.png deleted file mode 100644 index 02dfda5b23..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/6.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/7.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/7.png deleted file mode 100644 index edc016283e..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/7.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/8.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/8.png deleted file mode 100644 index 8c6deb57b9..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/8.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/9.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/9.png deleted file mode 100644 index a3ffe0707b..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellEnhancement/9.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/0.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/0.png deleted file mode 100644 index d5f74217f7..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/1.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/1.png deleted file mode 100644 index 37c5e78938..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/2.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/2.png deleted file mode 100644 index 43c7e8577e..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/3.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/3.png deleted file mode 100644 index 72cbd74fca..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellModifier/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/0.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/0.png deleted file mode 100644 index 28c1177deb..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/1.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/1.png deleted file mode 100644 index 684e0a64a9..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/2.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/2.png deleted file mode 100644 index 9701fc9e0a..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/3.png b/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/3.png deleted file mode 100644 index a07e2a899e..0000000000 Binary files a/front/public/images/small/AWWayofTime/AlchemicalWizardrytile.blockSpellParadigm/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/Altar/0.png b/front/public/images/small/AWWayofTime/Altar/0.png deleted file mode 100644 index 4486c483fd..0000000000 Binary files a/front/public/images/small/AWWayofTime/Altar/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/activationCrystal/0.png b/front/public/images/small/AWWayofTime/activationCrystal/0.png deleted file mode 100644 index 79033a13f7..0000000000 Binary files a/front/public/images/small/AWWayofTime/activationCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/activationCrystal/1.png b/front/public/images/small/AWWayofTime/activationCrystal/1.png deleted file mode 100644 index 53f4de3fc0..0000000000 Binary files a/front/public/images/small/AWWayofTime/activationCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/activationCrystal/2.png b/front/public/images/small/AWWayofTime/activationCrystal/2.png deleted file mode 100644 index 79033a13f7..0000000000 Binary files a/front/public/images/small/AWWayofTime/activationCrystal/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/aether/0.png b/front/public/images/small/AWWayofTime/aether/0.png deleted file mode 100644 index fe13d5a87d..0000000000 Binary files a/front/public/images/small/AWWayofTime/aether/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/airScribeTool/0.png b/front/public/images/small/AWWayofTime/airScribeTool/0.png deleted file mode 100644 index cb22f91808..0000000000 Binary files a/front/public/images/small/AWWayofTime/airScribeTool/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/airSigil/0.png b/front/public/images/small/AWWayofTime/airSigil/0.png deleted file mode 100644 index ec21b0b08e..0000000000 Binary files a/front/public/images/small/AWWayofTime/airSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/alchemyFlask/0.png b/front/public/images/small/AWWayofTime/alchemyFlask/0.png deleted file mode 100644 index 1dc7b673f0..0000000000 Binary files a/front/public/images/small/AWWayofTime/alchemyFlask/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/apprenticeBloodOrb/0.png b/front/public/images/small/AWWayofTime/apprenticeBloodOrb/0.png deleted file mode 100644 index 4d01987fbc..0000000000 Binary files a/front/public/images/small/AWWayofTime/apprenticeBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/aquasalus/0.png b/front/public/images/small/AWWayofTime/aquasalus/0.png deleted file mode 100644 index 365bc29e5b..0000000000 Binary files a/front/public/images/small/AWWayofTime/aquasalus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/archmageBloodOrb/0.png b/front/public/images/small/AWWayofTime/archmageBloodOrb/0.png deleted file mode 100644 index c93b4efba1..0000000000 Binary files a/front/public/images/small/AWWayofTime/archmageBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/armourForge/0.png b/front/public/images/small/AWWayofTime/armourForge/0.png deleted file mode 100644 index 60aaee51dc..0000000000 Binary files a/front/public/images/small/AWWayofTime/armourForge/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/armourInhibitor/0.png b/front/public/images/small/AWWayofTime/armourInhibitor/0.png deleted file mode 100644 index 6c1de93d2d..0000000000 Binary files a/front/public/images/small/AWWayofTime/armourInhibitor/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/averageLengtheningCatalyst/0.png b/front/public/images/small/AWWayofTime/averageLengtheningCatalyst/0.png deleted file mode 100644 index cebf6d3014..0000000000 Binary files a/front/public/images/small/AWWayofTime/averageLengtheningCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/averagePowerCatalyst/0.png b/front/public/images/small/AWWayofTime/averagePowerCatalyst/0.png deleted file mode 100644 index cbe7b52fc3..0000000000 Binary files a/front/public/images/small/AWWayofTime/averagePowerCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blankSlate/0.png b/front/public/images/small/AWWayofTime/blankSlate/0.png deleted file mode 100644 index 0ffdc8a492..0000000000 Binary files a/front/public/images/small/AWWayofTime/blankSlate/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blankSpell/0.png b/front/public/images/small/AWWayofTime/blankSpell/0.png deleted file mode 100644 index 1e172ca5ff..0000000000 Binary files a/front/public/images/small/AWWayofTime/blankSpell/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockAlchemicCalcinator/0.png b/front/public/images/small/AWWayofTime/blockAlchemicCalcinator/0.png deleted file mode 100644 index 603fce007a..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockAlchemicCalcinator/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockConduit/0.png b/front/public/images/small/AWWayofTime/blockConduit/0.png deleted file mode 100644 index 74aaafa963..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockConduit/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockCrucible/0.png b/front/public/images/small/AWWayofTime/blockCrucible/0.png deleted file mode 100644 index 4db356457d..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockCrucible/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockCrystal/0.png b/front/public/images/small/AWWayofTime/blockCrystal/0.png deleted file mode 100644 index 6aa3c6f727..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockCrystal/1.png b/front/public/images/small/AWWayofTime/blockCrystal/1.png deleted file mode 100644 index 6bd40f4a63..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockCrystalBelljar/0.png b/front/public/images/small/AWWayofTime/blockCrystalBelljar/0.png deleted file mode 100644 index 9fb9eec684..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockCrystalBelljar/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockDemonChest/0.png b/front/public/images/small/AWWayofTime/blockDemonChest/0.png deleted file mode 100644 index f018215d97..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockDemonChest/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockEnchantmentGlyph/0.png b/front/public/images/small/AWWayofTime/blockEnchantmentGlyph/0.png deleted file mode 100644 index ec9240c74f..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockEnchantmentGlyph/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockEnchantmentGlyph/1.png b/front/public/images/small/AWWayofTime/blockEnchantmentGlyph/1.png deleted file mode 100644 index af50170a96..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockEnchantmentGlyph/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockHomHeart/0.png b/front/public/images/small/AWWayofTime/blockHomHeart/0.png deleted file mode 100644 index e5b367a326..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockHomHeart/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockMimic/0.png b/front/public/images/small/AWWayofTime/blockMimic/0.png deleted file mode 100644 index 75514210cb..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockMimic/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockPedestal/0.png b/front/public/images/small/AWWayofTime/blockPedestal/0.png deleted file mode 100644 index a1d98c4940..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockPedestal/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockPlinth/0.png b/front/public/images/small/AWWayofTime/blockPlinth/0.png deleted file mode 100644 index 30530dd4f8..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockPlinth/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockReagentConduit/0.png b/front/public/images/small/AWWayofTime/blockReagentConduit/0.png deleted file mode 100644 index 90e85aef24..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockReagentConduit/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockSchemSaver/0.png b/front/public/images/small/AWWayofTime/blockSchemSaver/0.png deleted file mode 100644 index 75514210cb..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockSchemSaver/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockStabilityGlyph/0.png b/front/public/images/small/AWWayofTime/blockStabilityGlyph/0.png deleted file mode 100644 index b2d9224dd0..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockStabilityGlyph/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockTeleposer/0.png b/front/public/images/small/AWWayofTime/blockTeleposer/0.png deleted file mode 100644 index 40d7452f9f..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockTeleposer/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/blockWritingTable/0.png b/front/public/images/small/AWWayofTime/blockWritingTable/0.png deleted file mode 100644 index 7e489ca058..0000000000 Binary files a/front/public/images/small/AWWayofTime/blockWritingTable/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodLight/0.png b/front/public/images/small/AWWayofTime/bloodLight/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodLight/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/0.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/0.png deleted file mode 100644 index 44164d8f11..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/1.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/1.png deleted file mode 100644 index 0309765156..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/2.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/2.png deleted file mode 100644 index 0f69270ee0..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/3.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/3.png deleted file mode 100644 index 5e7a50b9a9..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/4.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/4.png deleted file mode 100644 index f4a71ae2f1..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/4.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/5.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/5.png deleted file mode 100644 index d49e971fbd..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/5.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/6.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/6.png deleted file mode 100644 index 9c250f4893..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/6.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/7.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/7.png deleted file mode 100644 index d545d5872d..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/7.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/8.png b/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/8.png deleted file mode 100644 index acafde7e57..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseAlchemyItems/8.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/0.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/0.png deleted file mode 100644 index 754d7b41d5..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/1.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/1.png deleted file mode 100644 index 2670ccbc79..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/10.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/10.png deleted file mode 100644 index c85a54f35d..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/10.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/11.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/11.png deleted file mode 100644 index 3da517b5e3..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/11.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/12.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/12.png deleted file mode 100644 index d883747929..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/12.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/13.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/13.png deleted file mode 100644 index 03fe5b3dd5..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/13.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/14.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/14.png deleted file mode 100644 index edc43389e6..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/14.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/15.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/15.png deleted file mode 100644 index f7c56d9b31..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/15.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/16.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/16.png deleted file mode 100644 index 917d026c0f..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/16.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/17.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/17.png deleted file mode 100644 index 052fd60f32..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/17.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/18.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/18.png deleted file mode 100644 index 359f8c69ce..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/18.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/19.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/19.png deleted file mode 100644 index 7801ecd62e..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/19.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/2.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/2.png deleted file mode 100644 index 1755913470..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/20.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/20.png deleted file mode 100644 index 0abf96b26f..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/20.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/21.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/21.png deleted file mode 100644 index 4b7914d76c..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/21.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/22.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/22.png deleted file mode 100644 index 6e9cc60dd1..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/22.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/23.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/23.png deleted file mode 100644 index 025e8bdd96..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/23.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/24.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/24.png deleted file mode 100644 index a9056095f2..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/24.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/25.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/25.png deleted file mode 100644 index fcc45c9093..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/25.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/26.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/26.png deleted file mode 100644 index 18bf1ed225..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/26.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/27.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/27.png deleted file mode 100644 index 756c1a5833..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/27.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/28.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/28.png deleted file mode 100644 index b71de8ce26..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/28.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/29.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/29.png deleted file mode 100644 index 4bbcd9b935..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/29.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/3.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/3.png deleted file mode 100644 index a3f00e537d..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/30.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/30.png deleted file mode 100644 index a97cd5f30c..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/30.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/31.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/31.png deleted file mode 100644 index b33343fb5d..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/31.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/32.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/32.png deleted file mode 100644 index eab3fae91d..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/32.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/4.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/4.png deleted file mode 100644 index 9075632820..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/4.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/5.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/5.png deleted file mode 100644 index 6880f88461..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/5.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/6.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/6.png deleted file mode 100644 index 3aca84f49e..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/6.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/7.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/7.png deleted file mode 100644 index b17b5f0cf3..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/7.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/8.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/8.png deleted file mode 100644 index 3e1e0eafcb..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/8.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/9.png b/front/public/images/small/AWWayofTime/bloodMagicBaseItems/9.png deleted file mode 100644 index f60dfbdcd7..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicBaseItems/9.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/0.png b/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/0.png deleted file mode 100644 index 3f31aa2fc5..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/1.png b/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/1.png deleted file mode 100644 index 8bf88c9603..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/2.png b/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/2.png deleted file mode 100644 index 5bacc3fda5..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/3.png b/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/3.png deleted file mode 100644 index 07824e42cc..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/4.png b/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/4.png deleted file mode 100644 index d0624ec455..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodMagicIncenseItem/4.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodSocket/0.png b/front/public/images/small/AWWayofTime/bloodSocket/0.png deleted file mode 100644 index bb7cb74179..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodSocket/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bloodStoneBrick/0.png b/front/public/images/small/AWWayofTime/bloodStoneBrick/0.png deleted file mode 100644 index ae4eb9b7c4..0000000000 Binary files a/front/public/images/small/AWWayofTime/bloodStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundAxe/0.png b/front/public/images/small/AWWayofTime/boundAxe/0.png deleted file mode 100644 index 2a02b08294..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundAxe/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundBoots/0.png b/front/public/images/small/AWWayofTime/boundBoots/0.png deleted file mode 100644 index 7d60796901..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundBoots/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundBootsEarth/0.png b/front/public/images/small/AWWayofTime/boundBootsEarth/0.png deleted file mode 100644 index 99c3549d67..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundBootsEarth/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundBootsFire/0.png b/front/public/images/small/AWWayofTime/boundBootsFire/0.png deleted file mode 100644 index f5cfbdaf7b..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundBootsFire/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundBootsWater/0.png b/front/public/images/small/AWWayofTime/boundBootsWater/0.png deleted file mode 100644 index 96faaf6dfa..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundBootsWater/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundBootsWind/0.png b/front/public/images/small/AWWayofTime/boundBootsWind/0.png deleted file mode 100644 index 990e725669..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundBootsWind/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundHelmet/0.png b/front/public/images/small/AWWayofTime/boundHelmet/0.png deleted file mode 100644 index fd53b4d69a..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundHelmetEarth/0.png b/front/public/images/small/AWWayofTime/boundHelmetEarth/0.png deleted file mode 100644 index 48cb76b3e3..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundHelmetEarth/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundHelmetFire/0.png b/front/public/images/small/AWWayofTime/boundHelmetFire/0.png deleted file mode 100644 index b70f6c8507..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundHelmetFire/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundHelmetWater/0.png b/front/public/images/small/AWWayofTime/boundHelmetWater/0.png deleted file mode 100644 index 4ef6329a4c..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundHelmetWater/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundHelmetWind/0.png b/front/public/images/small/AWWayofTime/boundHelmetWind/0.png deleted file mode 100644 index 28301875ec..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundHelmetWind/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundLeggings/0.png b/front/public/images/small/AWWayofTime/boundLeggings/0.png deleted file mode 100644 index 3a81bbe317..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundLeggingsEarth/0.png b/front/public/images/small/AWWayofTime/boundLeggingsEarth/0.png deleted file mode 100644 index 5d47bc117b..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundLeggingsEarth/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundLeggingsFire/0.png b/front/public/images/small/AWWayofTime/boundLeggingsFire/0.png deleted file mode 100644 index c357c9e2cb..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundLeggingsFire/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundLeggingsWater/0.png b/front/public/images/small/AWWayofTime/boundLeggingsWater/0.png deleted file mode 100644 index 2e3fd83c2e..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundLeggingsWater/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundLeggingsWind/0.png b/front/public/images/small/AWWayofTime/boundLeggingsWind/0.png deleted file mode 100644 index c4ae0b4129..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundLeggingsWind/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundPickaxe/0.png b/front/public/images/small/AWWayofTime/boundPickaxe/0.png deleted file mode 100644 index 0a37511541..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundPlate/0.png b/front/public/images/small/AWWayofTime/boundPlate/0.png deleted file mode 100644 index f2c5d5f3fb..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundPlate/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundPlateEarth/0.png b/front/public/images/small/AWWayofTime/boundPlateEarth/0.png deleted file mode 100644 index 445b93188f..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundPlateEarth/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundPlateFire/0.png b/front/public/images/small/AWWayofTime/boundPlateFire/0.png deleted file mode 100644 index 10958249cf..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundPlateFire/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundPlateWater/0.png b/front/public/images/small/AWWayofTime/boundPlateWater/0.png deleted file mode 100644 index a785bdb158..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundPlateWater/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundPlateWind/0.png b/front/public/images/small/AWWayofTime/boundPlateWind/0.png deleted file mode 100644 index aaa757d711..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundPlateWind/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/boundShovel/0.png b/front/public/images/small/AWWayofTime/boundShovel/0.png deleted file mode 100644 index 6e430b2538..0000000000 Binary files a/front/public/images/small/AWWayofTime/boundShovel/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/bucketLife/0.png b/front/public/images/small/AWWayofTime/bucketLife/0.png deleted file mode 100644 index 47beb077ad..0000000000 Binary files a/front/public/images/small/AWWayofTime/bucketLife/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/creativeDagger/0.png b/front/public/images/small/AWWayofTime/creativeDagger/0.png deleted file mode 100644 index da1f98ae8e..0000000000 Binary files a/front/public/images/small/AWWayofTime/creativeDagger/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/creativeFiller/0.png b/front/public/images/small/AWWayofTime/creativeFiller/0.png deleted file mode 100644 index 446b328693..0000000000 Binary files a/front/public/images/small/AWWayofTime/creativeFiller/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/crepitous/0.png b/front/public/images/small/AWWayofTime/crepitous/0.png deleted file mode 100644 index f8f40e69c7..0000000000 Binary files a/front/public/images/small/AWWayofTime/crepitous/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/crystallos/0.png b/front/public/images/small/AWWayofTime/crystallos/0.png deleted file mode 100644 index 97d8416781..0000000000 Binary files a/front/public/images/small/AWWayofTime/crystallos/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/customTool/0.png b/front/public/images/small/AWWayofTime/customTool/0.png deleted file mode 100644 index 90d0adc820..0000000000 Binary files a/front/public/images/small/AWWayofTime/customTool/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/daggerOfSacrifice/0.png b/front/public/images/small/AWWayofTime/daggerOfSacrifice/0.png deleted file mode 100644 index 8debf4d28d..0000000000 Binary files a/front/public/images/small/AWWayofTime/daggerOfSacrifice/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/dawnScribeTool/0.png b/front/public/images/small/AWWayofTime/dawnScribeTool/0.png deleted file mode 100644 index 7e24fc7ed4..0000000000 Binary files a/front/public/images/small/AWWayofTime/dawnScribeTool/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/demonBloodShard/0.png b/front/public/images/small/AWWayofTime/demonBloodShard/0.png deleted file mode 100644 index 601e92a7c3..0000000000 Binary files a/front/public/images/small/AWWayofTime/demonBloodShard/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/demonPlacer/0.png b/front/public/images/small/AWWayofTime/demonPlacer/0.png deleted file mode 100644 index 6872c737f1..0000000000 Binary files a/front/public/images/small/AWWayofTime/demonPlacer/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/demonPortalMain/0.png b/front/public/images/small/AWWayofTime/demonPortalMain/0.png deleted file mode 100644 index 6b9565587c..0000000000 Binary files a/front/public/images/small/AWWayofTime/demonPortalMain/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/demonicSlate/0.png b/front/public/images/small/AWWayofTime/demonicSlate/0.png deleted file mode 100644 index 7c1a4f8af2..0000000000 Binary files a/front/public/images/small/AWWayofTime/demonicSlate/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/demonicTelepositionFocus/0.png b/front/public/images/small/AWWayofTime/demonicTelepositionFocus/0.png deleted file mode 100644 index 414d33fd79..0000000000 Binary files a/front/public/images/small/AWWayofTime/demonicTelepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/divinationSigil/0.png b/front/public/images/small/AWWayofTime/divinationSigil/0.png deleted file mode 100644 index d7c66caa04..0000000000 Binary files a/front/public/images/small/AWWayofTime/divinationSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/duskScribeTool/0.png b/front/public/images/small/AWWayofTime/duskScribeTool/0.png deleted file mode 100644 index 897f5492dd..0000000000 Binary files a/front/public/images/small/AWWayofTime/duskScribeTool/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/earthScribeTool/0.png b/front/public/images/small/AWWayofTime/earthScribeTool/0.png deleted file mode 100644 index 6e303e7870..0000000000 Binary files a/front/public/images/small/AWWayofTime/earthScribeTool/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/efficiencyRune/0.png b/front/public/images/small/AWWayofTime/efficiencyRune/0.png deleted file mode 100644 index 48c6691c50..0000000000 Binary files a/front/public/images/small/AWWayofTime/efficiencyRune/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/emptySocket/0.png b/front/public/images/small/AWWayofTime/emptySocket/0.png deleted file mode 100644 index 5aefaed47e..0000000000 Binary files a/front/public/images/small/AWWayofTime/emptySocket/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/energyBazooka/0.png b/front/public/images/small/AWWayofTime/energyBazooka/0.png deleted file mode 100644 index feaa1e8a5b..0000000000 Binary files a/front/public/images/small/AWWayofTime/energyBazooka/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/energyBazookaSecondTier/0.png b/front/public/images/small/AWWayofTime/energyBazookaSecondTier/0.png deleted file mode 100644 index feaa1e8a5b..0000000000 Binary files a/front/public/images/small/AWWayofTime/energyBazookaSecondTier/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/energyBazookaThirdTier/0.png b/front/public/images/small/AWWayofTime/energyBazookaThirdTier/0.png deleted file mode 100644 index feaa1e8a5b..0000000000 Binary files a/front/public/images/small/AWWayofTime/energyBazookaThirdTier/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/energyBlaster/0.png b/front/public/images/small/AWWayofTime/energyBlaster/0.png deleted file mode 100644 index 2944addd20..0000000000 Binary files a/front/public/images/small/AWWayofTime/energyBlaster/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/energyBlasterSecondTier/0.png b/front/public/images/small/AWWayofTime/energyBlasterSecondTier/0.png deleted file mode 100644 index 2944addd20..0000000000 Binary files a/front/public/images/small/AWWayofTime/energyBlasterSecondTier/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/energyBlasterThirdTier/0.png b/front/public/images/small/AWWayofTime/energyBlasterThirdTier/0.png deleted file mode 100644 index 2944addd20..0000000000 Binary files a/front/public/images/small/AWWayofTime/energyBlasterThirdTier/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/energySword/0.png b/front/public/images/small/AWWayofTime/energySword/0.png deleted file mode 100644 index 76da1128c0..0000000000 Binary files a/front/public/images/small/AWWayofTime/energySword/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/enhancedFillingAgent/0.png b/front/public/images/small/AWWayofTime/enhancedFillingAgent/0.png deleted file mode 100644 index 715298f824..0000000000 Binary files a/front/public/images/small/AWWayofTime/enhancedFillingAgent/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/enhancedTelepositionFocus/0.png b/front/public/images/small/AWWayofTime/enhancedTelepositionFocus/0.png deleted file mode 100644 index 9ab3bc7327..0000000000 Binary files a/front/public/images/small/AWWayofTime/enhancedTelepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/fireScribeTool/0.png b/front/public/images/small/AWWayofTime/fireScribeTool/0.png deleted file mode 100644 index 92094a21f6..0000000000 Binary files a/front/public/images/small/AWWayofTime/fireScribeTool/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/fluidSigil/0.png b/front/public/images/small/AWWayofTime/fluidSigil/0.png deleted file mode 100644 index 38143c0587..0000000000 Binary files a/front/public/images/small/AWWayofTime/fluidSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/greaterLengtheningCatalyst/0.png b/front/public/images/small/AWWayofTime/greaterLengtheningCatalyst/0.png deleted file mode 100644 index a67ef08ba6..0000000000 Binary files a/front/public/images/small/AWWayofTime/greaterLengtheningCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/greaterPowerCatalyst/0.png b/front/public/images/small/AWWayofTime/greaterPowerCatalyst/0.png deleted file mode 100644 index 70680f72f3..0000000000 Binary files a/front/public/images/small/AWWayofTime/greaterPowerCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/growthSigil/0.png b/front/public/images/small/AWWayofTime/growthSigil/0.png deleted file mode 100644 index 077de5be39..0000000000 Binary files a/front/public/images/small/AWWayofTime/growthSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/imbuedSlate/0.png b/front/public/images/small/AWWayofTime/imbuedSlate/0.png deleted file mode 100644 index 6c8f317b3f..0000000000 Binary files a/front/public/images/small/AWWayofTime/imbuedSlate/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/imperfectRitualStone/0.png b/front/public/images/small/AWWayofTime/imperfectRitualStone/0.png deleted file mode 100644 index a5b14b4ec2..0000000000 Binary files a/front/public/images/small/AWWayofTime/imperfectRitualStone/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/incendium/0.png b/front/public/images/small/AWWayofTime/incendium/0.png deleted file mode 100644 index 45098ec41a..0000000000 Binary files a/front/public/images/small/AWWayofTime/incendium/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/inputRoutingFocus/0.png b/front/public/images/small/AWWayofTime/inputRoutingFocus/0.png deleted file mode 100644 index b0f5e0c087..0000000000 Binary files a/front/public/images/small/AWWayofTime/inputRoutingFocus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemAssassinSigil/0.png b/front/public/images/small/AWWayofTime/itemAssassinSigil/0.png deleted file mode 100644 index 38143c0587..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemAssassinSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemAttunedCrystal/0.png b/front/public/images/small/AWWayofTime/itemAttunedCrystal/0.png deleted file mode 100644 index f6552738fd..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemAttunedCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemBloodLightSigil/0.png b/front/public/images/small/AWWayofTime/itemBloodLightSigil/0.png deleted file mode 100644 index 6fd44f9c99..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemBloodLightSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemBloodPack/0.png b/front/public/images/small/AWWayofTime/itemBloodPack/0.png deleted file mode 100644 index f283f17e1f..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemBloodPack/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemCombinationalCatalyst/0.png b/front/public/images/small/AWWayofTime/itemCombinationalCatalyst/0.png deleted file mode 100644 index 19ee8ee322..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemCombinationalCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemComplexSpellCrystal/0.png b/front/public/images/small/AWWayofTime/itemComplexSpellCrystal/0.png deleted file mode 100644 index 38bbb6644a..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemComplexSpellCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemCompressionSigil/0.png b/front/public/images/small/AWWayofTime/itemCompressionSigil/0.png deleted file mode 100644 index 83610df928..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemCompressionSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemDestinationClearer/0.png b/front/public/images/small/AWWayofTime/itemDestinationClearer/0.png deleted file mode 100644 index e4ec0df01e..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemDestinationClearer/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemHarvestSigil/0.png b/front/public/images/small/AWWayofTime/itemHarvestSigil/0.png deleted file mode 100644 index 4118766cfc..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemHarvestSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemKeyOfDiablo/0.png b/front/public/images/small/AWWayofTime/itemKeyOfDiablo/0.png deleted file mode 100644 index c3978e789a..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemKeyOfDiablo/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemRitualDiviner/0.png b/front/public/images/small/AWWayofTime/itemRitualDiviner/0.png deleted file mode 100644 index d38a2a70a4..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemRitualDiviner/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemRitualDiviner/1.png b/front/public/images/small/AWWayofTime/itemRitualDiviner/1.png deleted file mode 100644 index d38a2a70a4..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemRitualDiviner/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemRitualDiviner/2.png b/front/public/images/small/AWWayofTime/itemRitualDiviner/2.png deleted file mode 100644 index d38a2a70a4..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemRitualDiviner/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/itemTankSegmenter/0.png b/front/public/images/small/AWWayofTime/itemTankSegmenter/0.png deleted file mode 100644 index cbb977be10..0000000000 Binary files a/front/public/images/small/AWWayofTime/itemTankSegmenter/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/largeBloodStoneBrick/0.png b/front/public/images/small/AWWayofTime/largeBloodStoneBrick/0.png deleted file mode 100644 index 7edd92f39f..0000000000 Binary files a/front/public/images/small/AWWayofTime/largeBloodStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/lavaCrystal/0.png b/front/public/images/small/AWWayofTime/lavaCrystal/0.png deleted file mode 100644 index 4c48aa8fdc..0000000000 Binary files a/front/public/images/small/AWWayofTime/lavaCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/lavaSigil/0.png b/front/public/images/small/AWWayofTime/lavaSigil/0.png deleted file mode 100644 index 9e49843ef1..0000000000 Binary files a/front/public/images/small/AWWayofTime/lavaSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/lifeEssence/0.png b/front/public/images/small/AWWayofTime/lifeEssence/0.png deleted file mode 100644 index d7f4141cfb..0000000000 Binary files a/front/public/images/small/AWWayofTime/lifeEssence/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/magicales/0.png b/front/public/images/small/AWWayofTime/magicales/0.png deleted file mode 100644 index d85edcc14f..0000000000 Binary files a/front/public/images/small/AWWayofTime/magicales/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/magicianBloodOrb/0.png b/front/public/images/small/AWWayofTime/magicianBloodOrb/0.png deleted file mode 100644 index 80da45642e..0000000000 Binary files a/front/public/images/small/AWWayofTime/magicianBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/masterBloodOrb/0.png b/front/public/images/small/AWWayofTime/masterBloodOrb/0.png deleted file mode 100644 index f3b67ff60b..0000000000 Binary files a/front/public/images/small/AWWayofTime/masterBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/masterStone/0.png b/front/public/images/small/AWWayofTime/masterStone/0.png deleted file mode 100644 index 5527f96456..0000000000 Binary files a/front/public/images/small/AWWayofTime/masterStone/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/mundaneLengtheningCatalyst/0.png b/front/public/images/small/AWWayofTime/mundaneLengtheningCatalyst/0.png deleted file mode 100644 index d0c841c11f..0000000000 Binary files a/front/public/images/small/AWWayofTime/mundaneLengtheningCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/mundanePowerCatalyst/0.png b/front/public/images/small/AWWayofTime/mundanePowerCatalyst/0.png deleted file mode 100644 index 74e74f3bd5..0000000000 Binary files a/front/public/images/small/AWWayofTime/mundanePowerCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/outputRoutingFocus/0.png b/front/public/images/small/AWWayofTime/outputRoutingFocus/0.png deleted file mode 100644 index 55552bcda5..0000000000 Binary files a/front/public/images/small/AWWayofTime/outputRoutingFocus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/outputRoutingFocus/1.png b/front/public/images/small/AWWayofTime/outputRoutingFocus/1.png deleted file mode 100644 index ca158f32a7..0000000000 Binary files a/front/public/images/small/AWWayofTime/outputRoutingFocus/1.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/outputRoutingFocus/2.png b/front/public/images/small/AWWayofTime/outputRoutingFocus/2.png deleted file mode 100644 index 1ffbede019..0000000000 Binary files a/front/public/images/small/AWWayofTime/outputRoutingFocus/2.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/outputRoutingFocus/3.png b/front/public/images/small/AWWayofTime/outputRoutingFocus/3.png deleted file mode 100644 index ef5f7b37f8..0000000000 Binary files a/front/public/images/small/AWWayofTime/outputRoutingFocus/3.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/outputRoutingFocus/4.png b/front/public/images/small/AWWayofTime/outputRoutingFocus/4.png deleted file mode 100644 index d8d79ea23a..0000000000 Binary files a/front/public/images/small/AWWayofTime/outputRoutingFocus/4.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/reinforcedSlate/0.png b/front/public/images/small/AWWayofTime/reinforcedSlate/0.png deleted file mode 100644 index 3885004e0e..0000000000 Binary files a/front/public/images/small/AWWayofTime/reinforcedSlate/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/reinforcedTelepositionFocus/0.png b/front/public/images/small/AWWayofTime/reinforcedTelepositionFocus/0.png deleted file mode 100644 index a6a88bea11..0000000000 Binary files a/front/public/images/small/AWWayofTime/reinforcedTelepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/ritualDismantler/0.png b/front/public/images/small/AWWayofTime/ritualDismantler/0.png deleted file mode 100644 index 75f5e8020b..0000000000 Binary files a/front/public/images/small/AWWayofTime/ritualDismantler/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/ritualStone/0.png b/front/public/images/small/AWWayofTime/ritualStone/0.png deleted file mode 100644 index 38813506e3..0000000000 Binary files a/front/public/images/small/AWWayofTime/ritualStone/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/runeOfSacrifice/0.png b/front/public/images/small/AWWayofTime/runeOfSacrifice/0.png deleted file mode 100644 index 81dd3eb178..0000000000 Binary files a/front/public/images/small/AWWayofTime/runeOfSacrifice/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/runeOfSelfSacrifice/0.png b/front/public/images/small/AWWayofTime/runeOfSelfSacrifice/0.png deleted file mode 100644 index 446a6e95d2..0000000000 Binary files a/front/public/images/small/AWWayofTime/runeOfSelfSacrifice/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sacrificialKnife/0.png b/front/public/images/small/AWWayofTime/sacrificialKnife/0.png deleted file mode 100644 index da1f98ae8e..0000000000 Binary files a/front/public/images/small/AWWayofTime/sacrificialKnife/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sanctus/0.png b/front/public/images/small/AWWayofTime/sanctus/0.png deleted file mode 100644 index 2f077c4955..0000000000 Binary files a/front/public/images/small/AWWayofTime/sanctus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/seerSigil/0.png b/front/public/images/small/AWWayofTime/seerSigil/0.png deleted file mode 100644 index a3799484cc..0000000000 Binary files a/front/public/images/small/AWWayofTime/seerSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfElementalAffinity/0.png b/front/public/images/small/AWWayofTime/sigilOfElementalAffinity/0.png deleted file mode 100644 index 1b57b43093..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfElementalAffinity/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfEnderSeverance/0.png b/front/public/images/small/AWWayofTime/sigilOfEnderSeverance/0.png deleted file mode 100644 index 766511a63b..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfEnderSeverance/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfHaste/0.png b/front/public/images/small/AWWayofTime/sigilOfHaste/0.png deleted file mode 100644 index 08466f43d9..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfHaste/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfHolding/0.png b/front/public/images/small/AWWayofTime/sigilOfHolding/0.png deleted file mode 100644 index 15219d244e..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfHolding/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfMagnetism/0.png b/front/public/images/small/AWWayofTime/sigilOfMagnetism/0.png deleted file mode 100644 index 74ebf1e132..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfMagnetism/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfSupression/0.png b/front/public/images/small/AWWayofTime/sigilOfSupression/0.png deleted file mode 100644 index de44656d4b..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfSupression/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfTheBridge/0.png b/front/public/images/small/AWWayofTime/sigilOfTheBridge/0.png deleted file mode 100644 index eb113f3e3a..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfTheBridge/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfTheFastMiner/0.png b/front/public/images/small/AWWayofTime/sigilOfTheFastMiner/0.png deleted file mode 100644 index 437ecf2742..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfTheFastMiner/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/sigilOfWind/0.png b/front/public/images/small/AWWayofTime/sigilOfWind/0.png deleted file mode 100644 index eaddf1b797..0000000000 Binary files a/front/public/images/small/AWWayofTime/sigilOfWind/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/simpleCatalyst/0.png b/front/public/images/small/AWWayofTime/simpleCatalyst/0.png deleted file mode 100644 index fcd5892318..0000000000 Binary files a/front/public/images/small/AWWayofTime/simpleCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/spectralBlock/0.png b/front/public/images/small/AWWayofTime/spectralBlock/0.png deleted file mode 100644 index ed4226d427..0000000000 Binary files a/front/public/images/small/AWWayofTime/spectralBlock/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/spectralContainer/0.png b/front/public/images/small/AWWayofTime/spectralContainer/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/AWWayofTime/spectralContainer/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/speedRune/0.png b/front/public/images/small/AWWayofTime/speedRune/0.png deleted file mode 100644 index 888691747b..0000000000 Binary files a/front/public/images/small/AWWayofTime/speedRune/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/standardBindingAgent/0.png b/front/public/images/small/AWWayofTime/standardBindingAgent/0.png deleted file mode 100644 index 0d6867b306..0000000000 Binary files a/front/public/images/small/AWWayofTime/standardBindingAgent/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/standardFillingAgent/0.png b/front/public/images/small/AWWayofTime/standardFillingAgent/0.png deleted file mode 100644 index ecee3cc795..0000000000 Binary files a/front/public/images/small/AWWayofTime/standardFillingAgent/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/telepositionFocus/0.png b/front/public/images/small/AWWayofTime/telepositionFocus/0.png deleted file mode 100644 index 1798662c93..0000000000 Binary files a/front/public/images/small/AWWayofTime/telepositionFocus/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/tennebrae/0.png b/front/public/images/small/AWWayofTime/tennebrae/0.png deleted file mode 100644 index 7b6efd3d39..0000000000 Binary files a/front/public/images/small/AWWayofTime/tennebrae/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/terrae/0.png b/front/public/images/small/AWWayofTime/terrae/0.png deleted file mode 100644 index a47eed7993..0000000000 Binary files a/front/public/images/small/AWWayofTime/terrae/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/transcendentBloodOrb/0.png b/front/public/images/small/AWWayofTime/transcendentBloodOrb/0.png deleted file mode 100644 index db42e50658..0000000000 Binary files a/front/public/images/small/AWWayofTime/transcendentBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/voidSigil/0.png b/front/public/images/small/AWWayofTime/voidSigil/0.png deleted file mode 100644 index c3ae062b16..0000000000 Binary files a/front/public/images/small/AWWayofTime/voidSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/waterScribeTool/0.png b/front/public/images/small/AWWayofTime/waterScribeTool/0.png deleted file mode 100644 index f5977068e2..0000000000 Binary files a/front/public/images/small/AWWayofTime/waterScribeTool/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/waterSigil/0.png b/front/public/images/small/AWWayofTime/waterSigil/0.png deleted file mode 100644 index 38143c0587..0000000000 Binary files a/front/public/images/small/AWWayofTime/waterSigil/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/weakBindingAgent/0.png b/front/public/images/small/AWWayofTime/weakBindingAgent/0.png deleted file mode 100644 index 426176c4f2..0000000000 Binary files a/front/public/images/small/AWWayofTime/weakBindingAgent/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/weakBloodOrb/0.png b/front/public/images/small/AWWayofTime/weakBloodOrb/0.png deleted file mode 100644 index 446b328693..0000000000 Binary files a/front/public/images/small/AWWayofTime/weakBloodOrb/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/weakBloodShard/0.png b/front/public/images/small/AWWayofTime/weakBloodShard/0.png deleted file mode 100644 index 7dcce6aa58..0000000000 Binary files a/front/public/images/small/AWWayofTime/weakBloodShard/0.png and /dev/null differ diff --git a/front/public/images/small/AWWayofTime/weakFillingAgent/0.png b/front/public/images/small/AWWayofTime/weakFillingAgent/0.png deleted file mode 100644 index b49862965b..0000000000 Binary files a/front/public/images/small/AWWayofTime/weakFillingAgent/0.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/0.png b/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/0.png deleted file mode 100644 index a5ab8124b7..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/1.png b/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/1.png deleted file mode 100644 index bf35b28942..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/1.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/2.png b/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/2.png deleted file mode 100644 index 462d36ac7e..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/2.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/3.png b/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/3.png deleted file mode 100644 index 05ed092958..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/3.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/4.png b/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/4.png deleted file mode 100644 index 71e63baaaf..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/BlockAdvSolarPanel/4.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/BlockMolecularTransformer/0.png b/front/public/images/small/AdvancedSolarPanel/BlockMolecularTransformer/0.png deleted file mode 100644 index 174252b176..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/BlockMolecularTransformer/0.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/advanced_solar_helmet/1.png b/front/public/images/small/AdvancedSolarPanel/advanced_solar_helmet/1.png deleted file mode 100644 index 602deaaa79..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/advanced_solar_helmet/1.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/advanced_solar_helmet/27.png b/front/public/images/small/AdvancedSolarPanel/advanced_solar_helmet/27.png deleted file mode 100644 index 602deaaa79..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/advanced_solar_helmet/27.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/0.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/0.png deleted file mode 100644 index 6f85b8d4f3..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/0.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/1.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/1.png deleted file mode 100644 index c50054ee47..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/1.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/10.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/10.png deleted file mode 100644 index 58befa12b4..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/10.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/11.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/11.png deleted file mode 100644 index 68434a4a3d..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/11.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/12.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/12.png deleted file mode 100644 index 2033a145a6..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/12.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/13.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/13.png deleted file mode 100644 index 73d59f374e..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/13.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/2.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/2.png deleted file mode 100644 index e95c249498..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/2.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/3.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/3.png deleted file mode 100644 index 564386375c..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/3.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/4.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/4.png deleted file mode 100644 index d0752b1a1e..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/4.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/5.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/5.png deleted file mode 100644 index 242229895f..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/5.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/6.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/6.png deleted file mode 100644 index cd8566de34..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/6.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/7.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/7.png deleted file mode 100644 index 784aaf0511..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/7.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/8.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/8.png deleted file mode 100644 index 1f6abf09a0..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/8.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/9.png b/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/9.png deleted file mode 100644 index 733c90d48a..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/asp_crafting_items/9.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/hybrid_solar_helmet/1.png b/front/public/images/small/AdvancedSolarPanel/hybrid_solar_helmet/1.png deleted file mode 100644 index 4b2d11ad94..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/hybrid_solar_helmet/1.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/hybrid_solar_helmet/27.png b/front/public/images/small/AdvancedSolarPanel/hybrid_solar_helmet/27.png deleted file mode 100644 index 4b2d11ad94..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/hybrid_solar_helmet/27.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/ultimate_solar_helmet/1.png b/front/public/images/small/AdvancedSolarPanel/ultimate_solar_helmet/1.png deleted file mode 100644 index 59b40a4548..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/ultimate_solar_helmet/1.png and /dev/null differ diff --git a/front/public/images/small/AdvancedSolarPanel/ultimate_solar_helmet/27.png b/front/public/images/small/AdvancedSolarPanel/ultimate_solar_helmet/27.png deleted file mode 100644 index 59b40a4548..0000000000 Binary files a/front/public/images/small/AdvancedSolarPanel/ultimate_solar_helmet/27.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/chisel/0.png b/front/public/images/small/ArchitectureCraft/chisel/0.png deleted file mode 100644 index 01f16e0351..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/chisel/0.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/cladding/0.png b/front/public/images/small/ArchitectureCraft/cladding/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/cladding/0.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/hammer/0.png b/front/public/images/small/ArchitectureCraft/hammer/0.png deleted file mode 100644 index 6fa0efbe71..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/hammer/0.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/largePulley/0.png b/front/public/images/small/ArchitectureCraft/largePulley/0.png deleted file mode 100644 index c801eb71ff..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/largePulley/0.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/sawbench/0.png b/front/public/images/small/ArchitectureCraft/sawbench/0.png deleted file mode 100644 index fb1b0f83f0..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/sawbench/0.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/sawblade/0.png b/front/public/images/small/ArchitectureCraft/sawblade/0.png deleted file mode 100644 index 4b6b01bba0..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/sawblade/0.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/shape/0.png b/front/public/images/small/ArchitectureCraft/shape/0.png deleted file mode 100644 index 96a3997616..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/shape/0.png and /dev/null differ diff --git a/front/public/images/small/ArchitectureCraft/shapeSE/0.png b/front/public/images/small/ArchitectureCraft/shapeSE/0.png deleted file mode 100644 index 96a3997616..0000000000 Binary files a/front/public/images/small/ArchitectureCraft/shapeSE/0.png and /dev/null differ diff --git a/front/public/images/small/Aroma1997Core/wrench/0.png b/front/public/images/small/Aroma1997Core/wrench/0.png deleted file mode 100644 index 30085fa893..0000000000 Binary files a/front/public/images/small/Aroma1997Core/wrench/0.png and /dev/null differ diff --git a/front/public/images/small/Aroma1997Core/wrenched/0.png b/front/public/images/small/Aroma1997Core/wrenched/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Aroma1997Core/wrenched/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/autoHandMirror/0.png b/front/public/images/small/Automagy/autoHandMirror/0.png deleted file mode 100644 index a684e2c07b..0000000000 Binary files a/front/public/images/small/Automagy/autoHandMirror/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/avaricePearl/0.png b/front/public/images/small/Automagy/avaricePearl/0.png deleted file mode 100644 index 1507e18c5d..0000000000 Binary files a/front/public/images/small/Automagy/avaricePearl/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/avaricePearl/1.png b/front/public/images/small/Automagy/avaricePearl/1.png deleted file mode 100644 index c1e4be098c..0000000000 Binary files a/front/public/images/small/Automagy/avaricePearl/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/baubleEnderDisjunction/0.png b/front/public/images/small/Automagy/baubleEnderDisjunction/0.png deleted file mode 100644 index a2e1b803a6..0000000000 Binary files a/front/public/images/small/Automagy/baubleEnderDisjunction/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/baubleEnderDisjunction/1.png b/front/public/images/small/Automagy/baubleEnderDisjunction/1.png deleted file mode 100644 index 1de5ef89ef..0000000000 Binary files a/front/public/images/small/Automagy/baubleEnderDisjunction/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockAmnesiac/0.png b/front/public/images/small/Automagy/blockAmnesiac/0.png deleted file mode 100644 index d1b574eaf4..0000000000 Binary files a/front/public/images/small/Automagy/blockAmnesiac/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockBoiler/0.png b/front/public/images/small/Automagy/blockBoiler/0.png deleted file mode 100644 index 61337148e3..0000000000 Binary files a/front/public/images/small/Automagy/blockBoiler/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockBookshelfEnchanted/0.png b/front/public/images/small/Automagy/blockBookshelfEnchanted/0.png deleted file mode 100644 index 88a1f55780..0000000000 Binary files a/front/public/images/small/Automagy/blockBookshelfEnchanted/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockBookshelfEnchanted/1.png b/front/public/images/small/Automagy/blockBookshelfEnchanted/1.png deleted file mode 100644 index e8aa1c26f4..0000000000 Binary files a/front/public/images/small/Automagy/blockBookshelfEnchanted/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockCreativeJar/3.png b/front/public/images/small/Automagy/blockCreativeJar/3.png deleted file mode 100644 index 9447708bd0..0000000000 Binary files a/front/public/images/small/Automagy/blockCreativeJar/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockDimensionLure/0.png b/front/public/images/small/Automagy/blockDimensionLure/0.png deleted file mode 100644 index 1415a85b69..0000000000 Binary files a/front/public/images/small/Automagy/blockDimensionLure/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockEagerChest/0.png b/front/public/images/small/Automagy/blockEagerChest/0.png deleted file mode 100644 index 50436fe2fa..0000000000 Binary files a/front/public/images/small/Automagy/blockEagerChest/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockEntitySignal/0.png b/front/public/images/small/Automagy/blockEntitySignal/0.png deleted file mode 100644 index 6c1bc2d5a2..0000000000 Binary files a/front/public/images/small/Automagy/blockEntitySignal/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockEssentiaLocus/0.png b/front/public/images/small/Automagy/blockEssentiaLocus/0.png deleted file mode 100644 index a410eac17d..0000000000 Binary files a/front/public/images/small/Automagy/blockEssentiaLocus/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockEssentiaLocusAggregator/0.png b/front/public/images/small/Automagy/blockEssentiaLocusAggregator/0.png deleted file mode 100644 index 9f3b8b6a69..0000000000 Binary files a/front/public/images/small/Automagy/blockEssentiaLocusAggregator/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockFinicalMaw/0.png b/front/public/images/small/Automagy/blockFinicalMaw/0.png deleted file mode 100644 index aa3127e02c..0000000000 Binary files a/front/public/images/small/Automagy/blockFinicalMaw/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockFluidMilk/0.png b/front/public/images/small/Automagy/blockFluidMilk/0.png deleted file mode 100644 index 08b72a23a7..0000000000 Binary files a/front/public/images/small/Automagy/blockFluidMilk/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockFluidMushroom/0.png b/front/public/images/small/Automagy/blockFluidMushroom/0.png deleted file mode 100644 index aa403691aa..0000000000 Binary files a/front/public/images/small/Automagy/blockFluidMushroom/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockFluidVishroom/0.png b/front/public/images/small/Automagy/blockFluidVishroom/0.png deleted file mode 100644 index 3e0b8a8c40..0000000000 Binary files a/front/public/images/small/Automagy/blockFluidVishroom/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockGolemInhibitor/0.png b/front/public/images/small/Automagy/blockGolemInhibitor/0.png deleted file mode 100644 index 50127187dc..0000000000 Binary files a/front/public/images/small/Automagy/blockGolemInhibitor/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockGolemTaskmaster/0.png b/front/public/images/small/Automagy/blockGolemTaskmaster/0.png deleted file mode 100644 index 8be2516765..0000000000 Binary files a/front/public/images/small/Automagy/blockGolemTaskmaster/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockGolemWorkbench/0.png b/front/public/images/small/Automagy/blockGolemWorkbench/0.png deleted file mode 100644 index 724402606d..0000000000 Binary files a/front/public/images/small/Automagy/blockGolemWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockGreedyChest/0.png b/front/public/images/small/Automagy/blockGreedyChest/0.png deleted file mode 100644 index a4f5b88bb6..0000000000 Binary files a/front/public/images/small/Automagy/blockGreedyChest/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockHourglass/0.png b/front/public/images/small/Automagy/blockHourglass/0.png deleted file mode 100644 index f9e2790590..0000000000 Binary files a/front/public/images/small/Automagy/blockHourglass/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockHourglassMagic/0.png b/front/public/images/small/Automagy/blockHourglassMagic/0.png deleted file mode 100644 index a6c1e126c0..0000000000 Binary files a/front/public/images/small/Automagy/blockHourglassMagic/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockHungryMaw/0.png b/front/public/images/small/Automagy/blockHungryMaw/0.png deleted file mode 100644 index fff6e6a325..0000000000 Binary files a/front/public/images/small/Automagy/blockHungryMaw/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockInventarium/0.png b/front/public/images/small/Automagy/blockInventarium/0.png deleted file mode 100644 index b89714c8d9..0000000000 Binary files a/front/public/images/small/Automagy/blockInventarium/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockMetalGlow/0.png b/front/public/images/small/Automagy/blockMetalGlow/0.png deleted file mode 100644 index 2fb8ce6afe..0000000000 Binary files a/front/public/images/small/Automagy/blockMetalGlow/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockMirrorAlt/0.png b/front/public/images/small/Automagy/blockMirrorAlt/0.png deleted file mode 100644 index 151c009016..0000000000 Binary files a/front/public/images/small/Automagy/blockMirrorAlt/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockMirrorMultiDest/0.png b/front/public/images/small/Automagy/blockMirrorMultiDest/0.png deleted file mode 100644 index d6cc1a1a48..0000000000 Binary files a/front/public/images/small/Automagy/blockMirrorMultiDest/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockMobLure/0.png b/front/public/images/small/Automagy/blockMobLure/0.png deleted file mode 100644 index 6b0fe9ce40..0000000000 Binary files a/front/public/images/small/Automagy/blockMobLure/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRune/0.png b/front/public/images/small/Automagy/blockNetherRune/0.png deleted file mode 100644 index a40336fab8..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRune/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRune/1.png b/front/public/images/small/Automagy/blockNetherRune/1.png deleted file mode 100644 index 1773ce68e4..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRune/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRune/2.png b/front/public/images/small/Automagy/blockNetherRune/2.png deleted file mode 100644 index e78f435d98..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRune/2.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRune/3.png b/front/public/images/small/Automagy/blockNetherRune/3.png deleted file mode 100644 index 3248535435..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRune/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRune/4.png b/front/public/images/small/Automagy/blockNetherRune/4.png deleted file mode 100644 index 93933fea06..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRune/4.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRune/6.png b/front/public/images/small/Automagy/blockNetherRune/6.png deleted file mode 100644 index 43e2b27f97..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRune/6.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRuneMob/0.png b/front/public/images/small/Automagy/blockNetherRuneMob/0.png deleted file mode 100644 index 9681215146..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRuneMob/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRuneMob/1.png b/front/public/images/small/Automagy/blockNetherRuneMob/1.png deleted file mode 100644 index 1593c535d2..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRuneMob/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRuneMob/2.png b/front/public/images/small/Automagy/blockNetherRuneMob/2.png deleted file mode 100644 index 0d577df2d5..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRuneMob/2.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRuneMob/3.png b/front/public/images/small/Automagy/blockNetherRuneMob/3.png deleted file mode 100644 index 5fa9da8627..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRuneMob/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRuneMob/4.png b/front/public/images/small/Automagy/blockNetherRuneMob/4.png deleted file mode 100644 index 861a888da8..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRuneMob/4.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRuneMob/5.png b/front/public/images/small/Automagy/blockNetherRuneMob/5.png deleted file mode 100644 index fcd9d4fbc3..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRuneMob/5.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNetherRuneMob/6.png b/front/public/images/small/Automagy/blockNetherRuneMob/6.png deleted file mode 100644 index 4c6fc37d07..0000000000 Binary files a/front/public/images/small/Automagy/blockNetherRuneMob/6.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockNethermind/0.png b/front/public/images/small/Automagy/blockNethermind/0.png deleted file mode 100644 index 691d5dcbe1..0000000000 Binary files a/front/public/images/small/Automagy/blockNethermind/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockPhenomenon/0.png b/front/public/images/small/Automagy/blockPhenomenon/0.png deleted file mode 100644 index 76399e536c..0000000000 Binary files a/front/public/images/small/Automagy/blockPhenomenon/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRedcrystal/0.png b/front/public/images/small/Automagy/blockRedcrystal/0.png deleted file mode 100644 index 0c76daaca1..0000000000 Binary files a/front/public/images/small/Automagy/blockRedcrystal/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRedcrystalAmp/0.png b/front/public/images/small/Automagy/blockRedcrystalAmp/0.png deleted file mode 100644 index b53a6379b1..0000000000 Binary files a/front/public/images/small/Automagy/blockRedcrystalAmp/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRedcrystalDense/0.png b/front/public/images/small/Automagy/blockRedcrystalDense/0.png deleted file mode 100644 index 0c6d8f7420..0000000000 Binary files a/front/public/images/small/Automagy/blockRedcrystalDense/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRedcrystalDim/0.png b/front/public/images/small/Automagy/blockRedcrystalDim/0.png deleted file mode 100644 index a5fe9f6684..0000000000 Binary files a/front/public/images/small/Automagy/blockRedcrystalDim/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRedcrystalMerc/0.png b/front/public/images/small/Automagy/blockRedcrystalMerc/0.png deleted file mode 100644 index 090379f1bb..0000000000 Binary files a/front/public/images/small/Automagy/blockRedcrystalMerc/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRedcrystalRes/0.png b/front/public/images/small/Automagy/blockRedcrystalRes/0.png deleted file mode 100644 index fc301f5851..0000000000 Binary files a/front/public/images/small/Automagy/blockRedcrystalRes/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRemoteComparator/0.png b/front/public/images/small/Automagy/blockRemoteComparator/0.png deleted file mode 100644 index 1aa6f939e1..0000000000 Binary files a/front/public/images/small/Automagy/blockRemoteComparator/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockReqTome/0.png b/front/public/images/small/Automagy/blockReqTome/0.png deleted file mode 100644 index 5456e7bebc..0000000000 Binary files a/front/public/images/small/Automagy/blockReqTome/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockRunedObsidian/0.png b/front/public/images/small/Automagy/blockRunedObsidian/0.png deleted file mode 100644 index efbcaa54a3..0000000000 Binary files a/front/public/images/small/Automagy/blockRunedObsidian/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockScribePointer/0.png b/front/public/images/small/Automagy/blockScribePointer/0.png deleted file mode 100644 index 4959ed988c..0000000000 Binary files a/front/public/images/small/Automagy/blockScribePointer/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTally/0.png b/front/public/images/small/Automagy/blockTally/0.png deleted file mode 100644 index d9e8a2d700..0000000000 Binary files a/front/public/images/small/Automagy/blockTally/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTallyLensDrops/0.png b/front/public/images/small/Automagy/blockTallyLensDrops/0.png deleted file mode 100644 index 63a32ccd44..0000000000 Binary files a/front/public/images/small/Automagy/blockTallyLensDrops/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTallyLensWorld/0.png b/front/public/images/small/Automagy/blockTallyLensWorld/0.png deleted file mode 100644 index 59e4b3c434..0000000000 Binary files a/front/public/images/small/Automagy/blockTallyLensWorld/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTenaciousChest/0.png b/front/public/images/small/Automagy/blockTenaciousChest/0.png deleted file mode 100644 index 826fc74bdf..0000000000 Binary files a/front/public/images/small/Automagy/blockTenaciousChest/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockThaumostaticPylon/0.png b/front/public/images/small/Automagy/blockThaumostaticPylon/0.png deleted file mode 100644 index 3a3db9c653..0000000000 Binary files a/front/public/images/small/Automagy/blockThaumostaticPylon/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockThaumostaticPylon/1.png b/front/public/images/small/Automagy/blockThaumostaticPylon/1.png deleted file mode 100644 index 8379048bde..0000000000 Binary files a/front/public/images/small/Automagy/blockThaumostaticPylon/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockThaumostaticSpire/0.png b/front/public/images/small/Automagy/blockThaumostaticSpire/0.png deleted file mode 100644 index 7ccd8b2b48..0000000000 Binary files a/front/public/images/small/Automagy/blockThaumostaticSpire/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockThirstyTank/0.png b/front/public/images/small/Automagy/blockThirstyTank/0.png deleted file mode 100644 index cbfd9cad5d..0000000000 Binary files a/front/public/images/small/Automagy/blockThirstyTank/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTorchInversion/0.png b/front/public/images/small/Automagy/blockTorchInversion/0.png deleted file mode 100644 index 182ec74424..0000000000 Binary files a/front/public/images/small/Automagy/blockTorchInversion/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTorchInversion_off/0.png b/front/public/images/small/Automagy/blockTorchInversion_off/0.png deleted file mode 100644 index 7737a72b9a..0000000000 Binary files a/front/public/images/small/Automagy/blockTorchInversion_off/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTranslucent/0.png b/front/public/images/small/Automagy/blockTranslucent/0.png deleted file mode 100644 index bf80b3dc69..0000000000 Binary files a/front/public/images/small/Automagy/blockTranslucent/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockTranslucent/1.png b/front/public/images/small/Automagy/blockTranslucent/1.png deleted file mode 100644 index 8779977dd2..0000000000 Binary files a/front/public/images/small/Automagy/blockTranslucent/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockUnseenScribe/0.png b/front/public/images/small/Automagy/blockUnseenScribe/0.png deleted file mode 100644 index 384da8a937..0000000000 Binary files a/front/public/images/small/Automagy/blockUnseenScribe/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockVisReader/0.png b/front/public/images/small/Automagy/blockVisReader/0.png deleted file mode 100644 index e7bebc1342..0000000000 Binary files a/front/public/images/small/Automagy/blockVisReader/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockXPJar/0.png b/front/public/images/small/Automagy/blockXPJar/0.png deleted file mode 100644 index 90104223eb..0000000000 Binary files a/front/public/images/small/Automagy/blockXPJar/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/blockXPStone/0.png b/front/public/images/small/Automagy/blockXPStone/0.png deleted file mode 100644 index 77d0d9cafd..0000000000 Binary files a/front/public/images/small/Automagy/blockXPStone/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/bucketMushroom/0.png b/front/public/images/small/Automagy/bucketMushroom/0.png deleted file mode 100644 index aeb1dfd566..0000000000 Binary files a/front/public/images/small/Automagy/bucketMushroom/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/bucketVishroom/0.png b/front/public/images/small/Automagy/bucketVishroom/0.png deleted file mode 100644 index b74c531d39..0000000000 Binary files a/front/public/images/small/Automagy/bucketVishroom/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/creativeTool/0.png b/front/public/images/small/Automagy/creativeTool/0.png deleted file mode 100644 index b54a83b4b0..0000000000 Binary files a/front/public/images/small/Automagy/creativeTool/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalBrain/0.png b/front/public/images/small/Automagy/crystalBrain/0.png deleted file mode 100644 index eb955b5bd7..0000000000 Binary files a/front/public/images/small/Automagy/crystalBrain/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalBrain/1.png b/front/public/images/small/Automagy/crystalBrain/1.png deleted file mode 100644 index 72d024ccfb..0000000000 Binary files a/front/public/images/small/Automagy/crystalBrain/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalBrain/2.png b/front/public/images/small/Automagy/crystalBrain/2.png deleted file mode 100644 index 633710b2e4..0000000000 Binary files a/front/public/images/small/Automagy/crystalBrain/2.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalBrain/3.png b/front/public/images/small/Automagy/crystalBrain/3.png deleted file mode 100644 index 8a6f399f62..0000000000 Binary files a/front/public/images/small/Automagy/crystalBrain/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalBrain/4.png b/front/public/images/small/Automagy/crystalBrain/4.png deleted file mode 100644 index cb25132266..0000000000 Binary files a/front/public/images/small/Automagy/crystalBrain/4.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalBrain/5.png b/front/public/images/small/Automagy/crystalBrain/5.png deleted file mode 100644 index d1eeeab864..0000000000 Binary files a/front/public/images/small/Automagy/crystalBrain/5.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalEntityEye/0.png b/front/public/images/small/Automagy/crystalEntityEye/0.png deleted file mode 100644 index e7730a40cb..0000000000 Binary files a/front/public/images/small/Automagy/crystalEntityEye/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/crystalEye/0.png b/front/public/images/small/Automagy/crystalEye/0.png deleted file mode 100644 index 0073517693..0000000000 Binary files a/front/public/images/small/Automagy/crystalEye/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/edible/0.png b/front/public/images/small/Automagy/edible/0.png deleted file mode 100644 index f0f5b33ba5..0000000000 Binary files a/front/public/images/small/Automagy/edible/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/enchantedPaper/0.png b/front/public/images/small/Automagy/enchantedPaper/0.png deleted file mode 100644 index 651a0b39a6..0000000000 Binary files a/front/public/images/small/Automagy/enchantedPaper/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/enchantedPaper/1.png b/front/public/images/small/Automagy/enchantedPaper/1.png deleted file mode 100644 index 49bfd9a822..0000000000 Binary files a/front/public/images/small/Automagy/enchantedPaper/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/enchantedPaper/2.png b/front/public/images/small/Automagy/enchantedPaper/2.png deleted file mode 100644 index c488783ea2..0000000000 Binary files a/front/public/images/small/Automagy/enchantedPaper/2.png and /dev/null differ diff --git a/front/public/images/small/Automagy/enchantedPaper/3.png b/front/public/images/small/Automagy/enchantedPaper/3.png deleted file mode 100644 index ee1412cb08..0000000000 Binary files a/front/public/images/small/Automagy/enchantedPaper/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/focusCrafting/0.png b/front/public/images/small/Automagy/focusCrafting/0.png deleted file mode 100644 index 5e94bf6ba2..0000000000 Binary files a/front/public/images/small/Automagy/focusCrafting/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/foodstuff/0.png b/front/public/images/small/Automagy/foodstuff/0.png deleted file mode 100644 index ac75b7513d..0000000000 Binary files a/front/public/images/small/Automagy/foodstuff/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/0.png b/front/public/images/small/Automagy/glyph/0.png deleted file mode 100644 index 12066665b8..0000000000 Binary files a/front/public/images/small/Automagy/glyph/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/1.png b/front/public/images/small/Automagy/glyph/1.png deleted file mode 100644 index c768aac40a..0000000000 Binary files a/front/public/images/small/Automagy/glyph/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/2.png b/front/public/images/small/Automagy/glyph/2.png deleted file mode 100644 index 5d83a8d996..0000000000 Binary files a/front/public/images/small/Automagy/glyph/2.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/3.png b/front/public/images/small/Automagy/glyph/3.png deleted file mode 100644 index a586fe5493..0000000000 Binary files a/front/public/images/small/Automagy/glyph/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/4.png b/front/public/images/small/Automagy/glyph/4.png deleted file mode 100644 index bf24dd126b..0000000000 Binary files a/front/public/images/small/Automagy/glyph/4.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/5.png b/front/public/images/small/Automagy/glyph/5.png deleted file mode 100644 index 7add468310..0000000000 Binary files a/front/public/images/small/Automagy/glyph/5.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/6.png b/front/public/images/small/Automagy/glyph/6.png deleted file mode 100644 index 809d5118c9..0000000000 Binary files a/front/public/images/small/Automagy/glyph/6.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/7.png b/front/public/images/small/Automagy/glyph/7.png deleted file mode 100644 index a34eb6c693..0000000000 Binary files a/front/public/images/small/Automagy/glyph/7.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/8.png b/front/public/images/small/Automagy/glyph/8.png deleted file mode 100644 index d4fecbc2ff..0000000000 Binary files a/front/public/images/small/Automagy/glyph/8.png and /dev/null differ diff --git a/front/public/images/small/Automagy/glyph/9.png b/front/public/images/small/Automagy/glyph/9.png deleted file mode 100644 index 744a0f4182..0000000000 Binary files a/front/public/images/small/Automagy/glyph/9.png and /dev/null differ diff --git a/front/public/images/small/Automagy/golemLinker/0.png b/front/public/images/small/Automagy/golemLinker/0.png deleted file mode 100644 index b79c963c10..0000000000 Binary files a/front/public/images/small/Automagy/golemLinker/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/golemWorkbenchUpgrade/0.png b/front/public/images/small/Automagy/golemWorkbenchUpgrade/0.png deleted file mode 100644 index edf61415a1..0000000000 Binary files a/front/public/images/small/Automagy/golemWorkbenchUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/golemWorkbenchUpgrade/1.png b/front/public/images/small/Automagy/golemWorkbenchUpgrade/1.png deleted file mode 100644 index 9eb4a5ef2a..0000000000 Binary files a/front/public/images/small/Automagy/golemWorkbenchUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/golemWorkbenchUpgrade/3.png b/front/public/images/small/Automagy/golemWorkbenchUpgrade/3.png deleted file mode 100644 index 35e0fad987..0000000000 Binary files a/front/public/images/small/Automagy/golemWorkbenchUpgrade/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/golemWorkbenchUpgrade/5.png b/front/public/images/small/Automagy/golemWorkbenchUpgrade/5.png deleted file mode 100644 index 30e25719f4..0000000000 Binary files a/front/public/images/small/Automagy/golemWorkbenchUpgrade/5.png and /dev/null differ diff --git a/front/public/images/small/Automagy/horizontal/0.png b/front/public/images/small/Automagy/horizontal/0.png deleted file mode 100644 index 62d5b955a7..0000000000 Binary files a/front/public/images/small/Automagy/horizontal/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/ingredient/0.png b/front/public/images/small/Automagy/ingredient/0.png deleted file mode 100644 index b60735b2e5..0000000000 Binary files a/front/public/images/small/Automagy/ingredient/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/netherHeart/0.png b/front/public/images/small/Automagy/netherHeart/0.png deleted file mode 100644 index 7673b3b565..0000000000 Binary files a/front/public/images/small/Automagy/netherHeart/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/phialExtra/0.png b/front/public/images/small/Automagy/phialExtra/0.png deleted file mode 100644 index 770361d890..0000000000 Binary files a/front/public/images/small/Automagy/phialExtra/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/shardSliver/0.png b/front/public/images/small/Automagy/shardSliver/0.png deleted file mode 100644 index 68b6b02706..0000000000 Binary files a/front/public/images/small/Automagy/shardSliver/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/shardSliver/1.png b/front/public/images/small/Automagy/shardSliver/1.png deleted file mode 100644 index 3abf3b8404..0000000000 Binary files a/front/public/images/small/Automagy/shardSliver/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/shardSliver/2.png b/front/public/images/small/Automagy/shardSliver/2.png deleted file mode 100644 index 8d6e316bcb..0000000000 Binary files a/front/public/images/small/Automagy/shardSliver/2.png and /dev/null differ diff --git a/front/public/images/small/Automagy/shardSliver/3.png b/front/public/images/small/Automagy/shardSliver/3.png deleted file mode 100644 index 419460b5bc..0000000000 Binary files a/front/public/images/small/Automagy/shardSliver/3.png and /dev/null differ diff --git a/front/public/images/small/Automagy/shardSliver/4.png b/front/public/images/small/Automagy/shardSliver/4.png deleted file mode 100644 index c01c549ec0..0000000000 Binary files a/front/public/images/small/Automagy/shardSliver/4.png and /dev/null differ diff --git a/front/public/images/small/Automagy/shardSliver/5.png b/front/public/images/small/Automagy/shardSliver/5.png deleted file mode 100644 index ef29ec747e..0000000000 Binary files a/front/public/images/small/Automagy/shardSliver/5.png and /dev/null differ diff --git a/front/public/images/small/Automagy/tallyLens/0.png b/front/public/images/small/Automagy/tallyLens/0.png deleted file mode 100644 index 0a76d3bdd7..0000000000 Binary files a/front/public/images/small/Automagy/tallyLens/0.png and /dev/null differ diff --git a/front/public/images/small/Automagy/tallyLens/1.png b/front/public/images/small/Automagy/tallyLens/1.png deleted file mode 100644 index 7dd73aa0d7..0000000000 Binary files a/front/public/images/small/Automagy/tallyLens/1.png and /dev/null differ diff --git a/front/public/images/small/Automagy/tallyLens/2.png b/front/public/images/small/Automagy/tallyLens/2.png deleted file mode 100644 index 1d34587c98..0000000000 Binary files a/front/public/images/small/Automagy/tallyLens/2.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Cosmic_Meatballs/0.png b/front/public/images/small/Avaritia/Cosmic_Meatballs/0.png deleted file mode 100644 index 83e68182e1..0000000000 Binary files a/front/public/images/small/Avaritia/Cosmic_Meatballs/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Crystal_Matrix/0.png b/front/public/images/small/Avaritia/Crystal_Matrix/0.png deleted file mode 100644 index 13e61d8195..0000000000 Binary files a/front/public/images/small/Avaritia/Crystal_Matrix/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Dire_Crafting/0.png b/front/public/images/small/Avaritia/Dire_Crafting/0.png deleted file mode 100644 index 6630788a4b..0000000000 Binary files a/front/public/images/small/Avaritia/Dire_Crafting/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Double_Craft/0.png b/front/public/images/small/Avaritia/Double_Craft/0.png deleted file mode 100644 index 0f67762548..0000000000 Binary files a/front/public/images/small/Avaritia/Double_Craft/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Endest_Pearl/0.png b/front/public/images/small/Avaritia/Endest_Pearl/0.png deleted file mode 100644 index ac74c5e619..0000000000 Binary files a/front/public/images/small/Avaritia/Endest_Pearl/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Axe/0.png b/front/public/images/small/Avaritia/Infinity_Axe/0.png deleted file mode 100644 index 6b8568846d..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Axe/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Bow/0.png b/front/public/images/small/Avaritia/Infinity_Bow/0.png deleted file mode 100644 index 7175ba84cc..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Bow/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Chest/0.png b/front/public/images/small/Avaritia/Infinity_Chest/0.png deleted file mode 100644 index bdd2fe302a..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Chest/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Helm/0.png b/front/public/images/small/Avaritia/Infinity_Helm/0.png deleted file mode 100644 index 6b1c4b2e18..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Helm/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Pants/0.png b/front/public/images/small/Avaritia/Infinity_Pants/0.png deleted file mode 100644 index 2d8f8e157c..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Pants/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Pickaxe/0.png b/front/public/images/small/Avaritia/Infinity_Pickaxe/0.png deleted file mode 100644 index 9d18642254..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Shoes/0.png b/front/public/images/small/Avaritia/Infinity_Shoes/0.png deleted file mode 100644 index 7b34318c4c..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Shoes/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Shovel/0.png b/front/public/images/small/Avaritia/Infinity_Shovel/0.png deleted file mode 100644 index f54e2a392a..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Shovel/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Infinity_Sword/0.png b/front/public/images/small/Avaritia/Infinity_Sword/0.png deleted file mode 100644 index e12bb84173..0000000000 Binary files a/front/public/images/small/Avaritia/Infinity_Sword/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Matter_Cluster/0.png b/front/public/images/small/Avaritia/Matter_Cluster/0.png deleted file mode 100644 index ada29e85aa..0000000000 Binary files a/front/public/images/small/Avaritia/Matter_Cluster/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Neutron_Collector/0.png b/front/public/images/small/Avaritia/Neutron_Collector/0.png deleted file mode 100644 index e2124c15ab..0000000000 Binary files a/front/public/images/small/Avaritia/Neutron_Collector/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Neutronium_Compressor/0.png b/front/public/images/small/Avaritia/Neutronium_Compressor/0.png deleted file mode 100644 index f3408e032f..0000000000 Binary files a/front/public/images/small/Avaritia/Neutronium_Compressor/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/0.png b/front/public/images/small/Avaritia/Resource/0.png deleted file mode 100644 index b5ee834330..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/1.png b/front/public/images/small/Avaritia/Resource/1.png deleted file mode 100644 index 56e1914ef7..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/1.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/2.png b/front/public/images/small/Avaritia/Resource/2.png deleted file mode 100644 index c8391ee603..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/2.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/3.png b/front/public/images/small/Avaritia/Resource/3.png deleted file mode 100644 index 14412f3c13..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/3.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/4.png b/front/public/images/small/Avaritia/Resource/4.png deleted file mode 100644 index 05bca63abc..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/4.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/5.png b/front/public/images/small/Avaritia/Resource/5.png deleted file mode 100644 index 83c4caf711..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/5.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/6.png b/front/public/images/small/Avaritia/Resource/6.png deleted file mode 100644 index de3e712c33..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/6.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/7.png b/front/public/images/small/Avaritia/Resource/7.png deleted file mode 100644 index bc3d67699c..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/7.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/8.png b/front/public/images/small/Avaritia/Resource/8.png deleted file mode 100644 index 87b21b0da4..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/8.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource/9.png b/front/public/images/small/Avaritia/Resource/9.png deleted file mode 100644 index 3645981742..0000000000 Binary files a/front/public/images/small/Avaritia/Resource/9.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource_Block/0.png b/front/public/images/small/Avaritia/Resource_Block/0.png deleted file mode 100644 index 18d8c8cbad..0000000000 Binary files a/front/public/images/small/Avaritia/Resource_Block/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Resource_Block/1.png b/front/public/images/small/Avaritia/Resource_Block/1.png deleted file mode 100644 index 96db88c929..0000000000 Binary files a/front/public/images/small/Avaritia/Resource_Block/1.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/0.png b/front/public/images/small/Avaritia/Singularity/0.png deleted file mode 100644 index 490c360924..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/1.png b/front/public/images/small/Avaritia/Singularity/1.png deleted file mode 100644 index d1fa76d009..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/1.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/10.png b/front/public/images/small/Avaritia/Singularity/10.png deleted file mode 100644 index 050c0405c9..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/10.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/11.png b/front/public/images/small/Avaritia/Singularity/11.png deleted file mode 100644 index 878573344f..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/11.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/2.png b/front/public/images/small/Avaritia/Singularity/2.png deleted file mode 100644 index 9c9c8b2368..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/2.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/3.png b/front/public/images/small/Avaritia/Singularity/3.png deleted file mode 100644 index df80c80de1..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/3.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/4.png b/front/public/images/small/Avaritia/Singularity/4.png deleted file mode 100644 index a7fff76409..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/4.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/5.png b/front/public/images/small/Avaritia/Singularity/5.png deleted file mode 100644 index c02bf8b923..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/5.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/6.png b/front/public/images/small/Avaritia/Singularity/6.png deleted file mode 100644 index 2419e96acd..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/6.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/7.png b/front/public/images/small/Avaritia/Singularity/7.png deleted file mode 100644 index 2877a0c8f0..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/7.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/8.png b/front/public/images/small/Avaritia/Singularity/8.png deleted file mode 100644 index ef288f5d4d..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/8.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Singularity/9.png b/front/public/images/small/Avaritia/Singularity/9.png deleted file mode 100644 index 8cb7f71873..0000000000 Binary files a/front/public/images/small/Avaritia/Singularity/9.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Skull_Sword/0.png b/front/public/images/small/Avaritia/Skull_Sword/0.png deleted file mode 100644 index 821633683c..0000000000 Binary files a/front/public/images/small/Avaritia/Skull_Sword/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Triple_Craft/0.png b/front/public/images/small/Avaritia/Triple_Craft/0.png deleted file mode 100644 index 9211774a27..0000000000 Binary files a/front/public/images/small/Avaritia/Triple_Craft/0.png and /dev/null differ diff --git a/front/public/images/small/Avaritia/Ultimate_Stew/0.png b/front/public/images/small/Avaritia/Ultimate_Stew/0.png deleted file mode 100644 index ad73371d04..0000000000 Binary files a/front/public/images/small/Avaritia/Ultimate_Stew/0.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/0.png b/front/public/images/small/Backpack/backpack/0.png deleted file mode 100644 index 6bd8269886..0000000000 Binary files a/front/public/images/small/Backpack/backpack/0.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/1.png b/front/public/images/small/Backpack/backpack/1.png deleted file mode 100644 index 2ba27d3888..0000000000 Binary files a/front/public/images/small/Backpack/backpack/1.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/10.png b/front/public/images/small/Backpack/backpack/10.png deleted file mode 100644 index a49bd4b803..0000000000 Binary files a/front/public/images/small/Backpack/backpack/10.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/100.png b/front/public/images/small/Backpack/backpack/100.png deleted file mode 100644 index fa0d988473..0000000000 Binary files a/front/public/images/small/Backpack/backpack/100.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/101.png b/front/public/images/small/Backpack/backpack/101.png deleted file mode 100644 index 782b0f8dca..0000000000 Binary files a/front/public/images/small/Backpack/backpack/101.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/102.png b/front/public/images/small/Backpack/backpack/102.png deleted file mode 100644 index 27884c5f4f..0000000000 Binary files a/front/public/images/small/Backpack/backpack/102.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/103.png b/front/public/images/small/Backpack/backpack/103.png deleted file mode 100644 index e89ef38dd2..0000000000 Binary files a/front/public/images/small/Backpack/backpack/103.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/104.png b/front/public/images/small/Backpack/backpack/104.png deleted file mode 100644 index 228d275862..0000000000 Binary files a/front/public/images/small/Backpack/backpack/104.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/105.png b/front/public/images/small/Backpack/backpack/105.png deleted file mode 100644 index 46ab0097ca..0000000000 Binary files a/front/public/images/small/Backpack/backpack/105.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/106.png b/front/public/images/small/Backpack/backpack/106.png deleted file mode 100644 index d4371de394..0000000000 Binary files a/front/public/images/small/Backpack/backpack/106.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/107.png b/front/public/images/small/Backpack/backpack/107.png deleted file mode 100644 index 9367cc81d5..0000000000 Binary files a/front/public/images/small/Backpack/backpack/107.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/108.png b/front/public/images/small/Backpack/backpack/108.png deleted file mode 100644 index ec0cfd4c6a..0000000000 Binary files a/front/public/images/small/Backpack/backpack/108.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/109.png b/front/public/images/small/Backpack/backpack/109.png deleted file mode 100644 index 3ffbc6864e..0000000000 Binary files a/front/public/images/small/Backpack/backpack/109.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/11.png b/front/public/images/small/Backpack/backpack/11.png deleted file mode 100644 index 919882a679..0000000000 Binary files a/front/public/images/small/Backpack/backpack/11.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/110.png b/front/public/images/small/Backpack/backpack/110.png deleted file mode 100644 index 38c74a6e0a..0000000000 Binary files a/front/public/images/small/Backpack/backpack/110.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/111.png b/front/public/images/small/Backpack/backpack/111.png deleted file mode 100644 index 3ee74119e2..0000000000 Binary files a/front/public/images/small/Backpack/backpack/111.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/112.png b/front/public/images/small/Backpack/backpack/112.png deleted file mode 100644 index 82ad7971ad..0000000000 Binary files a/front/public/images/small/Backpack/backpack/112.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/113.png b/front/public/images/small/Backpack/backpack/113.png deleted file mode 100644 index bf07cd7c0e..0000000000 Binary files a/front/public/images/small/Backpack/backpack/113.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/114.png b/front/public/images/small/Backpack/backpack/114.png deleted file mode 100644 index 87e9de383c..0000000000 Binary files a/front/public/images/small/Backpack/backpack/114.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/115.png b/front/public/images/small/Backpack/backpack/115.png deleted file mode 100644 index c63755813f..0000000000 Binary files a/front/public/images/small/Backpack/backpack/115.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/116.png b/front/public/images/small/Backpack/backpack/116.png deleted file mode 100644 index 45d7128946..0000000000 Binary files a/front/public/images/small/Backpack/backpack/116.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/12.png b/front/public/images/small/Backpack/backpack/12.png deleted file mode 100644 index 3abbb83061..0000000000 Binary files a/front/public/images/small/Backpack/backpack/12.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/13.png b/front/public/images/small/Backpack/backpack/13.png deleted file mode 100644 index af95ea9eb4..0000000000 Binary files a/front/public/images/small/Backpack/backpack/13.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/14.png b/front/public/images/small/Backpack/backpack/14.png deleted file mode 100644 index 070a82323f..0000000000 Binary files a/front/public/images/small/Backpack/backpack/14.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/15.png b/front/public/images/small/Backpack/backpack/15.png deleted file mode 100644 index 48f6e72c66..0000000000 Binary files a/front/public/images/small/Backpack/backpack/15.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/16.png b/front/public/images/small/Backpack/backpack/16.png deleted file mode 100644 index 65044c4c74..0000000000 Binary files a/front/public/images/small/Backpack/backpack/16.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/2.png b/front/public/images/small/Backpack/backpack/2.png deleted file mode 100644 index 04afab286f..0000000000 Binary files a/front/public/images/small/Backpack/backpack/2.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/200.png b/front/public/images/small/Backpack/backpack/200.png deleted file mode 100644 index f6401e4a20..0000000000 Binary files a/front/public/images/small/Backpack/backpack/200.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/201.png b/front/public/images/small/Backpack/backpack/201.png deleted file mode 100644 index b06295b2e4..0000000000 Binary files a/front/public/images/small/Backpack/backpack/201.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/202.png b/front/public/images/small/Backpack/backpack/202.png deleted file mode 100644 index aaf6443f99..0000000000 Binary files a/front/public/images/small/Backpack/backpack/202.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/203.png b/front/public/images/small/Backpack/backpack/203.png deleted file mode 100644 index b2cbcebf31..0000000000 Binary files a/front/public/images/small/Backpack/backpack/203.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/204.png b/front/public/images/small/Backpack/backpack/204.png deleted file mode 100644 index f73c1f84c3..0000000000 Binary files a/front/public/images/small/Backpack/backpack/204.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/205.png b/front/public/images/small/Backpack/backpack/205.png deleted file mode 100644 index 146b758a5e..0000000000 Binary files a/front/public/images/small/Backpack/backpack/205.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/206.png b/front/public/images/small/Backpack/backpack/206.png deleted file mode 100644 index d4c6651b82..0000000000 Binary files a/front/public/images/small/Backpack/backpack/206.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/207.png b/front/public/images/small/Backpack/backpack/207.png deleted file mode 100644 index f94e8fe4c1..0000000000 Binary files a/front/public/images/small/Backpack/backpack/207.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/208.png b/front/public/images/small/Backpack/backpack/208.png deleted file mode 100644 index 09be4857e8..0000000000 Binary files a/front/public/images/small/Backpack/backpack/208.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/209.png b/front/public/images/small/Backpack/backpack/209.png deleted file mode 100644 index 19e61a3709..0000000000 Binary files a/front/public/images/small/Backpack/backpack/209.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/210.png b/front/public/images/small/Backpack/backpack/210.png deleted file mode 100644 index db2e6ff4de..0000000000 Binary files a/front/public/images/small/Backpack/backpack/210.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/211.png b/front/public/images/small/Backpack/backpack/211.png deleted file mode 100644 index efd16da4da..0000000000 Binary files a/front/public/images/small/Backpack/backpack/211.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/212.png b/front/public/images/small/Backpack/backpack/212.png deleted file mode 100644 index 1905203e95..0000000000 Binary files a/front/public/images/small/Backpack/backpack/212.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/213.png b/front/public/images/small/Backpack/backpack/213.png deleted file mode 100644 index 2703629fa7..0000000000 Binary files a/front/public/images/small/Backpack/backpack/213.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/214.png b/front/public/images/small/Backpack/backpack/214.png deleted file mode 100644 index 1288821a24..0000000000 Binary files a/front/public/images/small/Backpack/backpack/214.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/215.png b/front/public/images/small/Backpack/backpack/215.png deleted file mode 100644 index fbc8491e3e..0000000000 Binary files a/front/public/images/small/Backpack/backpack/215.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/216.png b/front/public/images/small/Backpack/backpack/216.png deleted file mode 100644 index 8b3ec520e2..0000000000 Binary files a/front/public/images/small/Backpack/backpack/216.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/3.png b/front/public/images/small/Backpack/backpack/3.png deleted file mode 100644 index 5646c94194..0000000000 Binary files a/front/public/images/small/Backpack/backpack/3.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/31999.png b/front/public/images/small/Backpack/backpack/31999.png deleted file mode 100644 index 40bf217cb3..0000000000 Binary files a/front/public/images/small/Backpack/backpack/31999.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/4.png b/front/public/images/small/Backpack/backpack/4.png deleted file mode 100644 index 82654693ce..0000000000 Binary files a/front/public/images/small/Backpack/backpack/4.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/5.png b/front/public/images/small/Backpack/backpack/5.png deleted file mode 100644 index 8744f3a950..0000000000 Binary files a/front/public/images/small/Backpack/backpack/5.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/6.png b/front/public/images/small/Backpack/backpack/6.png deleted file mode 100644 index 4a401293af..0000000000 Binary files a/front/public/images/small/Backpack/backpack/6.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/7.png b/front/public/images/small/Backpack/backpack/7.png deleted file mode 100644 index b4ff21afde..0000000000 Binary files a/front/public/images/small/Backpack/backpack/7.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/8.png b/front/public/images/small/Backpack/backpack/8.png deleted file mode 100644 index df56954fb2..0000000000 Binary files a/front/public/images/small/Backpack/backpack/8.png and /dev/null differ diff --git a/front/public/images/small/Backpack/backpack/9.png b/front/public/images/small/Backpack/backpack/9.png deleted file mode 100644 index 688d31deab..0000000000 Binary files a/front/public/images/small/Backpack/backpack/9.png and /dev/null differ diff --git a/front/public/images/small/Backpack/boundLeather/0.png b/front/public/images/small/Backpack/boundLeather/0.png deleted file mode 100644 index 702044da94..0000000000 Binary files a/front/public/images/small/Backpack/boundLeather/0.png and /dev/null differ diff --git a/front/public/images/small/Backpack/tannedLeather/0.png b/front/public/images/small/Backpack/tannedLeather/0.png deleted file mode 100644 index c48f8efc51..0000000000 Binary files a/front/public/images/small/Backpack/tannedLeather/0.png and /dev/null differ diff --git a/front/public/images/small/Backpack/workbenchbackpack/17.png b/front/public/images/small/Backpack/workbenchbackpack/17.png deleted file mode 100644 index 990866d11c..0000000000 Binary files a/front/public/images/small/Backpack/workbenchbackpack/17.png and /dev/null differ diff --git a/front/public/images/small/Backpack/workbenchbackpack/217.png b/front/public/images/small/Backpack/workbenchbackpack/217.png deleted file mode 100644 index b212a022fb..0000000000 Binary files a/front/public/images/small/Backpack/workbenchbackpack/217.png and /dev/null differ diff --git a/front/public/images/small/Baubles/Ring/0.png b/front/public/images/small/Baubles/Ring/0.png deleted file mode 100644 index e9eac02943..0000000000 Binary files a/front/public/images/small/Baubles/Ring/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Armor Stand/0.png b/front/public/images/small/BiblioCraft/Armor Stand/0.png deleted file mode 100644 index 1362f780c3..0000000000 Binary files a/front/public/images/small/BiblioCraft/Armor Stand/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBell/0.png b/front/public/images/small/BiblioCraft/BiblioBell/0.png deleted file mode 100644 index 94fd14a8d2..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBell/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/0.png b/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/0.png deleted file mode 100644 index 76a6776ec0..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/1.png b/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/1.png deleted file mode 100644 index 3bb48c35ab..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/2.png b/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/2.png deleted file mode 100644 index b0f954f593..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/3.png b/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/3.png deleted file mode 100644 index ea6e7c9c90..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/4.png b/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/4.png deleted file mode 100644 index 00f4b8302f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/5.png b/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/5.png deleted file mode 100644 index 7cf3355a3c..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/6.png b/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/6.png deleted file mode 100644 index cc5ea8ef65..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioBorderlessPainting/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioCase/0.png b/front/public/images/small/BiblioCraft/BiblioCase/0.png deleted file mode 100644 index bf2035c880..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioCase/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioCase/1.png b/front/public/images/small/BiblioCraft/BiblioCase/1.png deleted file mode 100644 index 1b7da32899..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioCase/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioCase/2.png b/front/public/images/small/BiblioCraft/BiblioCase/2.png deleted file mode 100644 index 53d75ccdbf..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioCase/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioCase/3.png b/front/public/images/small/BiblioCraft/BiblioCase/3.png deleted file mode 100644 index 81b52fd334..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioCase/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioCase/4.png b/front/public/images/small/BiblioCraft/BiblioCase/4.png deleted file mode 100644 index 3e47c41cbc..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioCase/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioCase/5.png b/front/public/images/small/BiblioCraft/BiblioCase/5.png deleted file mode 100644 index 25febac35e..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioCase/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioCase/6.png b/front/public/images/small/BiblioCraft/BiblioCase/6.png deleted file mode 100644 index 74377c7c80..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioCase/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClipboard/0.png b/front/public/images/small/BiblioCraft/BiblioClipboard/0.png deleted file mode 100644 index 0b5108337c..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClipboard/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClock/0.png b/front/public/images/small/BiblioCraft/BiblioClock/0.png deleted file mode 100644 index a307eacf2a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClock/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClock/1.png b/front/public/images/small/BiblioCraft/BiblioClock/1.png deleted file mode 100644 index 8e9c3605b4..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClock/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClock/2.png b/front/public/images/small/BiblioCraft/BiblioClock/2.png deleted file mode 100644 index 8368f7a4f9..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClock/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClock/3.png b/front/public/images/small/BiblioCraft/BiblioClock/3.png deleted file mode 100644 index 0b56163e06..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClock/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClock/4.png b/front/public/images/small/BiblioCraft/BiblioClock/4.png deleted file mode 100644 index 8768851625..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClock/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClock/5.png b/front/public/images/small/BiblioCraft/BiblioClock/5.png deleted file mode 100644 index d81f776962..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClock/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioClock/6.png b/front/public/images/small/BiblioCraft/BiblioClock/6.png deleted file mode 100644 index bcff0540ef..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioClock/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioDesk/0.png b/front/public/images/small/BiblioCraft/BiblioDesk/0.png deleted file mode 100644 index be0085c399..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioDesk/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioDesk/1.png b/front/public/images/small/BiblioCraft/BiblioDesk/1.png deleted file mode 100644 index b751638648..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioDesk/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioDesk/2.png b/front/public/images/small/BiblioCraft/BiblioDesk/2.png deleted file mode 100644 index a8d3417948..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioDesk/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioDesk/3.png b/front/public/images/small/BiblioCraft/BiblioDesk/3.png deleted file mode 100644 index c2cc7ed6ef..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioDesk/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioDesk/4.png b/front/public/images/small/BiblioCraft/BiblioDesk/4.png deleted file mode 100644 index fcdfa66b61..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioDesk/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioDesk/5.png b/front/public/images/small/BiblioCraft/BiblioDesk/5.png deleted file mode 100644 index 76757954f5..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioDesk/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioDesk/6.png b/front/public/images/small/BiblioCraft/BiblioDesk/6.png deleted file mode 100644 index 1e83bf9565..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioDesk/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancyPainting/0.png b/front/public/images/small/BiblioCraft/BiblioFancyPainting/0.png deleted file mode 100644 index 5c80dbd3ad..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancyPainting/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancyPainting/1.png b/front/public/images/small/BiblioCraft/BiblioFancyPainting/1.png deleted file mode 100644 index 6d4f3cfa0a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancyPainting/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancyPainting/2.png b/front/public/images/small/BiblioCraft/BiblioFancyPainting/2.png deleted file mode 100644 index c7e3bab58b..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancyPainting/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancyPainting/3.png b/front/public/images/small/BiblioCraft/BiblioFancyPainting/3.png deleted file mode 100644 index f2df31f423..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancyPainting/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancyPainting/4.png b/front/public/images/small/BiblioCraft/BiblioFancyPainting/4.png deleted file mode 100644 index 309a6fa286..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancyPainting/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancyPainting/5.png b/front/public/images/small/BiblioCraft/BiblioFancyPainting/5.png deleted file mode 100644 index 31532c60b6..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancyPainting/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancyPainting/6.png b/front/public/images/small/BiblioCraft/BiblioFancyPainting/6.png deleted file mode 100644 index 657abd6702..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancyPainting/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancySign/0.png b/front/public/images/small/BiblioCraft/BiblioFancySign/0.png deleted file mode 100644 index a4c336f7ca..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancySign/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancySign/1.png b/front/public/images/small/BiblioCraft/BiblioFancySign/1.png deleted file mode 100644 index a5c5f554c9..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancySign/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancySign/2.png b/front/public/images/small/BiblioCraft/BiblioFancySign/2.png deleted file mode 100644 index 241c34a456..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancySign/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancySign/3.png b/front/public/images/small/BiblioCraft/BiblioFancySign/3.png deleted file mode 100644 index d93ea2093f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancySign/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancySign/4.png b/front/public/images/small/BiblioCraft/BiblioFancySign/4.png deleted file mode 100644 index 3144fe1a24..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancySign/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancySign/5.png b/front/public/images/small/BiblioCraft/BiblioFancySign/5.png deleted file mode 100644 index 14475eeabe..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancySign/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFancySign/6.png b/front/public/images/small/BiblioCraft/BiblioFancySign/6.png deleted file mode 100644 index 9c0919c1c0..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFancySign/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFlatPainting/0.png b/front/public/images/small/BiblioCraft/BiblioFlatPainting/0.png deleted file mode 100644 index 788e72ef0a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFlatPainting/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFlatPainting/1.png b/front/public/images/small/BiblioCraft/BiblioFlatPainting/1.png deleted file mode 100644 index d5c9610f6c..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFlatPainting/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFlatPainting/2.png b/front/public/images/small/BiblioCraft/BiblioFlatPainting/2.png deleted file mode 100644 index 091c0538bb..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFlatPainting/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFlatPainting/3.png b/front/public/images/small/BiblioCraft/BiblioFlatPainting/3.png deleted file mode 100644 index 0d6a6a4d3e..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFlatPainting/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFlatPainting/4.png b/front/public/images/small/BiblioCraft/BiblioFlatPainting/4.png deleted file mode 100644 index 7da1e1bd04..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFlatPainting/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFlatPainting/5.png b/front/public/images/small/BiblioCraft/BiblioFlatPainting/5.png deleted file mode 100644 index 72328eebff..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFlatPainting/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioFlatPainting/6.png b/front/public/images/small/BiblioCraft/BiblioFlatPainting/6.png deleted file mode 100644 index 4c6af0312a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioFlatPainting/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/0.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/0.png deleted file mode 100644 index cc316406a8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/1.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/1.png deleted file mode 100644 index c467914a4d..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/10.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/10.png deleted file mode 100644 index f5c80ca5d1..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/11.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/11.png deleted file mode 100644 index 4c16b4ebe1..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/12.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/12.png deleted file mode 100644 index 3551c27dd2..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/13.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/13.png deleted file mode 100644 index 08892aab4d..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/14.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/14.png deleted file mode 100644 index 3fc8998735..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/15.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/15.png deleted file mode 100644 index c285689085..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/2.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/2.png deleted file mode 100644 index b5a1da04c5..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/3.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/3.png deleted file mode 100644 index 36d2d737ca..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/4.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/4.png deleted file mode 100644 index 88223d6220..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/5.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/5.png deleted file mode 100644 index f4aeb09083..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/6.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/6.png deleted file mode 100644 index 114afd15c1..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/7.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/7.png deleted file mode 100644 index b15e3f2ce7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/8.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/8.png deleted file mode 100644 index b18339fa89..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLamp/9.png b/front/public/images/small/BiblioCraft/BiblioIronLamp/9.png deleted file mode 100644 index 5745defbe7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLamp/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/0.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/0.png deleted file mode 100644 index beecfd7508..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/1.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/1.png deleted file mode 100644 index 1b908b899a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/10.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/10.png deleted file mode 100644 index 156f8f9b3c..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/11.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/11.png deleted file mode 100644 index 34383e4c4d..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/12.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/12.png deleted file mode 100644 index ba4602a2a0..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/13.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/13.png deleted file mode 100644 index e19b3020f6..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/14.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/14.png deleted file mode 100644 index d41d026382..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/15.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/15.png deleted file mode 100644 index ddaab074d2..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/2.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/2.png deleted file mode 100644 index 0c821a301e..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/3.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/3.png deleted file mode 100644 index e60205e810..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/4.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/4.png deleted file mode 100644 index 119fdac825..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/5.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/5.png deleted file mode 100644 index b2c0efcb6e..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/6.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/6.png deleted file mode 100644 index 07604f4851..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/7.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/7.png deleted file mode 100644 index c8a43018cc..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/8.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/8.png deleted file mode 100644 index 6734bc8ec8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioIronLantern/9.png b/front/public/images/small/BiblioCraft/BiblioIronLantern/9.png deleted file mode 100644 index 300d6dba43..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioIronLantern/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLabel/0.png b/front/public/images/small/BiblioCraft/BiblioLabel/0.png deleted file mode 100644 index 6a18a97082..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLabel/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLabel/1.png b/front/public/images/small/BiblioCraft/BiblioLabel/1.png deleted file mode 100644 index cde5c1e54f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLabel/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLabel/2.png b/front/public/images/small/BiblioCraft/BiblioLabel/2.png deleted file mode 100644 index 2252fae366..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLabel/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLabel/3.png b/front/public/images/small/BiblioCraft/BiblioLabel/3.png deleted file mode 100644 index 8abc3dd169..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLabel/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLabel/4.png b/front/public/images/small/BiblioCraft/BiblioLabel/4.png deleted file mode 100644 index acdfa96fcb..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLabel/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLabel/5.png b/front/public/images/small/BiblioCraft/BiblioLabel/5.png deleted file mode 100644 index 540b0281fc..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLabel/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLabel/6.png b/front/public/images/small/BiblioCraft/BiblioLabel/6.png deleted file mode 100644 index ca0de6e9a6..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLabel/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/0.png b/front/public/images/small/BiblioCraft/BiblioLamp/0.png deleted file mode 100644 index 62b42369a8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/1.png b/front/public/images/small/BiblioCraft/BiblioLamp/1.png deleted file mode 100644 index ec360c7913..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/10.png b/front/public/images/small/BiblioCraft/BiblioLamp/10.png deleted file mode 100644 index 360bd1a408..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/11.png b/front/public/images/small/BiblioCraft/BiblioLamp/11.png deleted file mode 100644 index 8739ba32a3..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/12.png b/front/public/images/small/BiblioCraft/BiblioLamp/12.png deleted file mode 100644 index 6691956546..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/13.png b/front/public/images/small/BiblioCraft/BiblioLamp/13.png deleted file mode 100644 index 5f233e678e..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/14.png b/front/public/images/small/BiblioCraft/BiblioLamp/14.png deleted file mode 100644 index cbd9e4dd79..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/15.png b/front/public/images/small/BiblioCraft/BiblioLamp/15.png deleted file mode 100644 index ce6d759168..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/2.png b/front/public/images/small/BiblioCraft/BiblioLamp/2.png deleted file mode 100644 index be92641623..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/3.png b/front/public/images/small/BiblioCraft/BiblioLamp/3.png deleted file mode 100644 index 2cd8100485..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/4.png b/front/public/images/small/BiblioCraft/BiblioLamp/4.png deleted file mode 100644 index 3d640c2fae..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/5.png b/front/public/images/small/BiblioCraft/BiblioLamp/5.png deleted file mode 100644 index 2fdbfb8e83..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/6.png b/front/public/images/small/BiblioCraft/BiblioLamp/6.png deleted file mode 100644 index 506c07eb65..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/7.png b/front/public/images/small/BiblioCraft/BiblioLamp/7.png deleted file mode 100644 index 6debb242b7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/8.png b/front/public/images/small/BiblioCraft/BiblioLamp/8.png deleted file mode 100644 index 0634860d09..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLamp/9.png b/front/public/images/small/BiblioCraft/BiblioLamp/9.png deleted file mode 100644 index f0d272eaa8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLamp/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/0.png b/front/public/images/small/BiblioCraft/BiblioLantern/0.png deleted file mode 100644 index fde2b75c32..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/1.png b/front/public/images/small/BiblioCraft/BiblioLantern/1.png deleted file mode 100644 index 193f42d2e8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/10.png b/front/public/images/small/BiblioCraft/BiblioLantern/10.png deleted file mode 100644 index 5220cf7534..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/11.png b/front/public/images/small/BiblioCraft/BiblioLantern/11.png deleted file mode 100644 index 927d1bd682..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/12.png b/front/public/images/small/BiblioCraft/BiblioLantern/12.png deleted file mode 100644 index f1ceb68d96..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/13.png b/front/public/images/small/BiblioCraft/BiblioLantern/13.png deleted file mode 100644 index 487b7664fd..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/14.png b/front/public/images/small/BiblioCraft/BiblioLantern/14.png deleted file mode 100644 index 5c2b8ccac8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/15.png b/front/public/images/small/BiblioCraft/BiblioLantern/15.png deleted file mode 100644 index bde93b6e7d..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/2.png b/front/public/images/small/BiblioCraft/BiblioLantern/2.png deleted file mode 100644 index e92f4c56d2..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/3.png b/front/public/images/small/BiblioCraft/BiblioLantern/3.png deleted file mode 100644 index 928b25123f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/4.png b/front/public/images/small/BiblioCraft/BiblioLantern/4.png deleted file mode 100644 index 03576f8ace..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/5.png b/front/public/images/small/BiblioCraft/BiblioLantern/5.png deleted file mode 100644 index 169d8237c4..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/6.png b/front/public/images/small/BiblioCraft/BiblioLantern/6.png deleted file mode 100644 index b5d898f304..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/7.png b/front/public/images/small/BiblioCraft/BiblioLantern/7.png deleted file mode 100644 index 602c5cad18..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/8.png b/front/public/images/small/BiblioCraft/BiblioLantern/8.png deleted file mode 100644 index c2c6ecdb29..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioLantern/9.png b/front/public/images/small/BiblioCraft/BiblioLantern/9.png deleted file mode 100644 index 122a2df1d6..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioLantern/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMapFrames/0.png b/front/public/images/small/BiblioCraft/BiblioMapFrames/0.png deleted file mode 100644 index 2beac37329..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMapFrames/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMapFrames/1.png b/front/public/images/small/BiblioCraft/BiblioMapFrames/1.png deleted file mode 100644 index 992cab826f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMapFrames/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMapFrames/2.png b/front/public/images/small/BiblioCraft/BiblioMapFrames/2.png deleted file mode 100644 index 4d465f90e8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMapFrames/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMapFrames/3.png b/front/public/images/small/BiblioCraft/BiblioMapFrames/3.png deleted file mode 100644 index 3de1ac7e19..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMapFrames/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMapFrames/4.png b/front/public/images/small/BiblioCraft/BiblioMapFrames/4.png deleted file mode 100644 index e5f50ee046..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMapFrames/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMapFrames/5.png b/front/public/images/small/BiblioCraft/BiblioMapFrames/5.png deleted file mode 100644 index 975424dc42..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMapFrames/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMapFrames/6.png b/front/public/images/small/BiblioCraft/BiblioMapFrames/6.png deleted file mode 100644 index 504d274504..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMapFrames/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/0.png b/front/public/images/small/BiblioCraft/BiblioMiddlePainting/0.png deleted file mode 100644 index 25744852df..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/1.png b/front/public/images/small/BiblioCraft/BiblioMiddlePainting/1.png deleted file mode 100644 index 49dfbdc29d..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/2.png b/front/public/images/small/BiblioCraft/BiblioMiddlePainting/2.png deleted file mode 100644 index 5c2ce47a23..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/3.png b/front/public/images/small/BiblioCraft/BiblioMiddlePainting/3.png deleted file mode 100644 index 88e1a5b338..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/4.png b/front/public/images/small/BiblioCraft/BiblioMiddlePainting/4.png deleted file mode 100644 index 7d729a00c5..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/5.png b/front/public/images/small/BiblioCraft/BiblioMiddlePainting/5.png deleted file mode 100644 index d94f771fe2..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/6.png b/front/public/images/small/BiblioCraft/BiblioMiddlePainting/6.png deleted file mode 100644 index 8d87e627a8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioMiddlePainting/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaintPress/0.png b/front/public/images/small/BiblioCraft/BiblioPaintPress/0.png deleted file mode 100644 index 72a14eab2e..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaintPress/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaneler/0.png b/front/public/images/small/BiblioCraft/BiblioPaneler/0.png deleted file mode 100644 index 920ca739fd..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaneler/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaneler/1.png b/front/public/images/small/BiblioCraft/BiblioPaneler/1.png deleted file mode 100644 index aa95a58d31..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaneler/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaneler/2.png b/front/public/images/small/BiblioCraft/BiblioPaneler/2.png deleted file mode 100644 index d75effa940..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaneler/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaneler/3.png b/front/public/images/small/BiblioCraft/BiblioPaneler/3.png deleted file mode 100644 index d32ebb9c60..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaneler/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaneler/4.png b/front/public/images/small/BiblioCraft/BiblioPaneler/4.png deleted file mode 100644 index e328fc151f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaneler/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaneler/5.png b/front/public/images/small/BiblioCraft/BiblioPaneler/5.png deleted file mode 100644 index d394c85b99..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaneler/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPaneler/6.png b/front/public/images/small/BiblioCraft/BiblioPaneler/6.png deleted file mode 100644 index e966164af4..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPaneler/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPotionShelf/0.png b/front/public/images/small/BiblioCraft/BiblioPotionShelf/0.png deleted file mode 100644 index 5dd63e6360..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPotionShelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPotionShelf/1.png b/front/public/images/small/BiblioCraft/BiblioPotionShelf/1.png deleted file mode 100644 index 3621d73d83..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPotionShelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPotionShelf/2.png b/front/public/images/small/BiblioCraft/BiblioPotionShelf/2.png deleted file mode 100644 index d4e860b11f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPotionShelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPotionShelf/3.png b/front/public/images/small/BiblioCraft/BiblioPotionShelf/3.png deleted file mode 100644 index 5a52071a0d..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPotionShelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPotionShelf/4.png b/front/public/images/small/BiblioCraft/BiblioPotionShelf/4.png deleted file mode 100644 index b19e7a87f4..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPotionShelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPotionShelf/5.png b/front/public/images/small/BiblioCraft/BiblioPotionShelf/5.png deleted file mode 100644 index 08d5f47cb2..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPotionShelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioPotionShelf/6.png b/front/public/images/small/BiblioCraft/BiblioPotionShelf/6.png deleted file mode 100644 index 98a5f2f411..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioPotionShelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioRack/0.png b/front/public/images/small/BiblioCraft/BiblioRack/0.png deleted file mode 100644 index 3e1a77b20b..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioRack/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioRack/1.png b/front/public/images/small/BiblioCraft/BiblioRack/1.png deleted file mode 100644 index 6316b9f4bb..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioRack/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioRack/2.png b/front/public/images/small/BiblioCraft/BiblioRack/2.png deleted file mode 100644 index 7f0de1ac01..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioRack/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioRack/3.png b/front/public/images/small/BiblioCraft/BiblioRack/3.png deleted file mode 100644 index e71c4bd3b7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioRack/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioRack/4.png b/front/public/images/small/BiblioCraft/BiblioRack/4.png deleted file mode 100644 index 36b6bc1a43..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioRack/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioRack/5.png b/front/public/images/small/BiblioCraft/BiblioRack/5.png deleted file mode 100644 index fd600d6257..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioRack/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioRack/6.png b/front/public/images/small/BiblioCraft/BiblioRack/6.png deleted file mode 100644 index bc046d7258..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioRack/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSeats/0.png b/front/public/images/small/BiblioCraft/BiblioSeats/0.png deleted file mode 100644 index 89411d7d6b..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSeats/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSeats/1.png b/front/public/images/small/BiblioCraft/BiblioSeats/1.png deleted file mode 100644 index 91f061cdd8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSeats/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSeats/2.png b/front/public/images/small/BiblioCraft/BiblioSeats/2.png deleted file mode 100644 index f640db1a4e..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSeats/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSeats/3.png b/front/public/images/small/BiblioCraft/BiblioSeats/3.png deleted file mode 100644 index e12d8b0fe0..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSeats/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSeats/4.png b/front/public/images/small/BiblioCraft/BiblioSeats/4.png deleted file mode 100644 index dd94e819ac..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSeats/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSeats/5.png b/front/public/images/small/BiblioCraft/BiblioSeats/5.png deleted file mode 100644 index 458cae93dd..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSeats/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSeats/6.png b/front/public/images/small/BiblioCraft/BiblioSeats/6.png deleted file mode 100644 index 8eed6595fa..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSeats/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioShelf/0.png b/front/public/images/small/BiblioCraft/BiblioShelf/0.png deleted file mode 100644 index e6ce0b0958..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioShelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioShelf/1.png b/front/public/images/small/BiblioCraft/BiblioShelf/1.png deleted file mode 100644 index 8d535bf8b0..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioShelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioShelf/2.png b/front/public/images/small/BiblioCraft/BiblioShelf/2.png deleted file mode 100644 index 35569e1d32..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioShelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioShelf/3.png b/front/public/images/small/BiblioCraft/BiblioShelf/3.png deleted file mode 100644 index 8668e0ee85..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioShelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioShelf/4.png b/front/public/images/small/BiblioCraft/BiblioShelf/4.png deleted file mode 100644 index b1105f3dc7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioShelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioShelf/5.png b/front/public/images/small/BiblioCraft/BiblioShelf/5.png deleted file mode 100644 index 55187e5780..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioShelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioShelf/6.png b/front/public/images/small/BiblioCraft/BiblioShelf/6.png deleted file mode 100644 index af4cbcc37f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioShelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSimplePainting/0.png b/front/public/images/small/BiblioCraft/BiblioSimplePainting/0.png deleted file mode 100644 index 483c5c04bf..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSimplePainting/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSimplePainting/1.png b/front/public/images/small/BiblioCraft/BiblioSimplePainting/1.png deleted file mode 100644 index 59f837a774..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSimplePainting/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSimplePainting/2.png b/front/public/images/small/BiblioCraft/BiblioSimplePainting/2.png deleted file mode 100644 index 277337e3dd..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSimplePainting/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSimplePainting/3.png b/front/public/images/small/BiblioCraft/BiblioSimplePainting/3.png deleted file mode 100644 index 2f6d367b1a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSimplePainting/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSimplePainting/4.png b/front/public/images/small/BiblioCraft/BiblioSimplePainting/4.png deleted file mode 100644 index 7e99e997ce..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSimplePainting/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSimplePainting/5.png b/front/public/images/small/BiblioCraft/BiblioSimplePainting/5.png deleted file mode 100644 index cf816e857c..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSimplePainting/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSimplePainting/6.png b/front/public/images/small/BiblioCraft/BiblioSimplePainting/6.png deleted file mode 100644 index 03ae7c7d44..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSimplePainting/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioStuffs/0.png b/front/public/images/small/BiblioCraft/BiblioStuffs/0.png deleted file mode 100644 index 88ae60ccf3..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioStuffs/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioStuffs/2.png b/front/public/images/small/BiblioCraft/BiblioStuffs/2.png deleted file mode 100644 index 372762e5f7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioStuffs/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioStuffs/3.png b/front/public/images/small/BiblioCraft/BiblioStuffs/3.png deleted file mode 100644 index 997332f1b5..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioStuffs/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/0.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/0.png deleted file mode 100644 index fff176c06f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/1.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/1.png deleted file mode 100644 index c67ef1fe22..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/10.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/10.png deleted file mode 100644 index f66cb24625..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/11.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/11.png deleted file mode 100644 index 2a2b912b15..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/12.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/12.png deleted file mode 100644 index f6d5277d93..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/13.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/13.png deleted file mode 100644 index ec46aa4163..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/14.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/14.png deleted file mode 100644 index bde54a84fc..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/15.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/15.png deleted file mode 100644 index df63555395..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/2.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/2.png deleted file mode 100644 index c1b8c4bfa1..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/3.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/3.png deleted file mode 100644 index 0aacb35d54..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/4.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/4.png deleted file mode 100644 index 0988ee49d0..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/5.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/5.png deleted file mode 100644 index 3517276d2a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/6.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/6.png deleted file mode 100644 index 04a790c19b..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/7.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/7.png deleted file mode 100644 index 46cf3173bd..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/8.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/8.png deleted file mode 100644 index a956a3bb4d..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/9.png b/front/public/images/small/BiblioCraft/BiblioSwordPedestal/9.png deleted file mode 100644 index f5107f875f..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioSwordPedestal/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTable/0.png b/front/public/images/small/BiblioCraft/BiblioTable/0.png deleted file mode 100644 index d722d22ef2..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTable/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTable/1.png b/front/public/images/small/BiblioCraft/BiblioTable/1.png deleted file mode 100644 index 096ed7be34..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTable/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTable/2.png b/front/public/images/small/BiblioCraft/BiblioTable/2.png deleted file mode 100644 index 357293e929..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTable/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTable/3.png b/front/public/images/small/BiblioCraft/BiblioTable/3.png deleted file mode 100644 index 9ee0216a05..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTable/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTable/4.png b/front/public/images/small/BiblioCraft/BiblioTable/4.png deleted file mode 100644 index 2c6969b5db..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTable/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTable/5.png b/front/public/images/small/BiblioCraft/BiblioTable/5.png deleted file mode 100644 index 5776489d30..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTable/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTable/6.png b/front/public/images/small/BiblioCraft/BiblioTable/6.png deleted file mode 100644 index 65d5492186..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTable/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/0.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/0.png deleted file mode 100644 index c9646f84b8..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/1.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/1.png deleted file mode 100644 index 0d591df3bb..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/10.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/10.png deleted file mode 100644 index 3965b274d6..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/11.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/11.png deleted file mode 100644 index c45ae4400a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/12.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/12.png deleted file mode 100644 index 900b5fbc01..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/13.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/13.png deleted file mode 100644 index 0ac7852186..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/14.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/14.png deleted file mode 100644 index aee38d3002..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/15.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/15.png deleted file mode 100644 index dc313b5620..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/2.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/2.png deleted file mode 100644 index 34be9ae9e4..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/3.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/3.png deleted file mode 100644 index 334d84e365..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/4.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/4.png deleted file mode 100644 index 41d13d0466..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/5.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/5.png deleted file mode 100644 index e7f8628846..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/6.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/6.png deleted file mode 100644 index 6b71462646..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/7.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/7.png deleted file mode 100644 index 3f901fc509..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/8.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/8.png deleted file mode 100644 index af0a73e124..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioTypewriter/9.png b/front/public/images/small/BiblioCraft/BiblioTypewriter/9.png deleted file mode 100644 index 846fde9fd0..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioTypewriter/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioWorkbench/0.png b/front/public/images/small/BiblioCraft/BiblioWorkbench/0.png deleted file mode 100644 index 9b31b517bd..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioWorkbench/1.png b/front/public/images/small/BiblioCraft/BiblioWorkbench/1.png deleted file mode 100644 index 680769da09..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioWorkbench/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioWorkbench/2.png b/front/public/images/small/BiblioCraft/BiblioWorkbench/2.png deleted file mode 100644 index 253a5a914a..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioWorkbench/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioWorkbench/3.png b/front/public/images/small/BiblioCraft/BiblioWorkbench/3.png deleted file mode 100644 index 6ca99c16de..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioWorkbench/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioWorkbench/4.png b/front/public/images/small/BiblioCraft/BiblioWorkbench/4.png deleted file mode 100644 index ab54bf3823..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioWorkbench/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioWorkbench/5.png b/front/public/images/small/BiblioCraft/BiblioWorkbench/5.png deleted file mode 100644 index e525b2ec21..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioWorkbench/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BiblioWorkbench/6.png b/front/public/images/small/BiblioCraft/BiblioWorkbench/6.png deleted file mode 100644 index d1bc37ffd9..0000000000 Binary files a/front/public/images/small/BiblioCraft/BiblioWorkbench/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Bibliotheca/0.png b/front/public/images/small/BiblioCraft/Bibliotheca/0.png deleted file mode 100644 index 35a04fab50..0000000000 Binary files a/front/public/images/small/BiblioCraft/Bibliotheca/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Bibliotheca/1.png b/front/public/images/small/BiblioCraft/Bibliotheca/1.png deleted file mode 100644 index 25a42ea7ca..0000000000 Binary files a/front/public/images/small/BiblioCraft/Bibliotheca/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Bibliotheca/2.png b/front/public/images/small/BiblioCraft/Bibliotheca/2.png deleted file mode 100644 index cb793f7cf8..0000000000 Binary files a/front/public/images/small/BiblioCraft/Bibliotheca/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Bibliotheca/3.png b/front/public/images/small/BiblioCraft/Bibliotheca/3.png deleted file mode 100644 index 2a68b619b9..0000000000 Binary files a/front/public/images/small/BiblioCraft/Bibliotheca/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Bibliotheca/4.png b/front/public/images/small/BiblioCraft/Bibliotheca/4.png deleted file mode 100644 index fdb07632f2..0000000000 Binary files a/front/public/images/small/BiblioCraft/Bibliotheca/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Bibliotheca/5.png b/front/public/images/small/BiblioCraft/Bibliotheca/5.png deleted file mode 100644 index 6dc2ec9d85..0000000000 Binary files a/front/public/images/small/BiblioCraft/Bibliotheca/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Bibliotheca/6.png b/front/public/images/small/BiblioCraft/Bibliotheca/6.png deleted file mode 100644 index db25884217..0000000000 Binary files a/front/public/images/small/BiblioCraft/Bibliotheca/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BookcaseFilled/0.png b/front/public/images/small/BiblioCraft/BookcaseFilled/0.png deleted file mode 100644 index a1d6b625e1..0000000000 Binary files a/front/public/images/small/BiblioCraft/BookcaseFilled/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BookcaseFilled/1.png b/front/public/images/small/BiblioCraft/BookcaseFilled/1.png deleted file mode 100644 index 1279210caa..0000000000 Binary files a/front/public/images/small/BiblioCraft/BookcaseFilled/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BookcaseFilled/2.png b/front/public/images/small/BiblioCraft/BookcaseFilled/2.png deleted file mode 100644 index d8d6ddc8e7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BookcaseFilled/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BookcaseFilled/3.png b/front/public/images/small/BiblioCraft/BookcaseFilled/3.png deleted file mode 100644 index 6350023e86..0000000000 Binary files a/front/public/images/small/BiblioCraft/BookcaseFilled/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BookcaseFilled/4.png b/front/public/images/small/BiblioCraft/BookcaseFilled/4.png deleted file mode 100644 index f5ace9ca75..0000000000 Binary files a/front/public/images/small/BiblioCraft/BookcaseFilled/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BookcaseFilled/5.png b/front/public/images/small/BiblioCraft/BookcaseFilled/5.png deleted file mode 100644 index 6962b01be4..0000000000 Binary files a/front/public/images/small/BiblioCraft/BookcaseFilled/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/BookcaseFilled/6.png b/front/public/images/small/BiblioCraft/BookcaseFilled/6.png deleted file mode 100644 index c22e4a22b7..0000000000 Binary files a/front/public/images/small/BiblioCraft/BookcaseFilled/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Printing Press/0.png b/front/public/images/small/BiblioCraft/Printing Press/0.png deleted file mode 100644 index f50f9f194c..0000000000 Binary files a/front/public/images/small/BiblioCraft/Printing Press/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/Typesetting Machine/0.png b/front/public/images/small/BiblioCraft/Typesetting Machine/0.png deleted file mode 100644 index d2f252785b..0000000000 Binary files a/front/public/images/small/BiblioCraft/Typesetting Machine/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.AtlasBook/0.png b/front/public/images/small/BiblioCraft/item.AtlasBook/0.png deleted file mode 100644 index 77acccf3d0..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.AtlasBook/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.AtlasPlate/0.png b/front/public/images/small/BiblioCraft/item.AtlasPlate/0.png deleted file mode 100644 index 3b7b6800f9..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.AtlasPlate/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioChase/0.png b/front/public/images/small/BiblioCraft/item.BiblioChase/0.png deleted file mode 100644 index 6639489c78..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioChase/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioClipboard/0.png b/front/public/images/small/BiblioCraft/item.BiblioClipboard/0.png deleted file mode 100644 index 78fb44c799..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioClipboard/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioCreativeLock/0.png b/front/public/images/small/BiblioCraft/item.BiblioCreativeLock/0.png deleted file mode 100644 index 1db49294fa..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioCreativeLock/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioDrill/0.png b/front/public/images/small/BiblioCraft/item.BiblioDrill/0.png deleted file mode 100644 index 20df011226..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioDrill/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioGlasses/0.png b/front/public/images/small/BiblioCraft/item.BiblioGlasses/0.png deleted file mode 100644 index a1a2fdc9ac..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioGlasses/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioGlasses/1.png b/front/public/images/small/BiblioCraft/item.BiblioGlasses/1.png deleted file mode 100644 index 0f65234f17..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioGlasses/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioGlasses/2.png b/front/public/images/small/BiblioCraft/item.BiblioGlasses/2.png deleted file mode 100644 index f96023006f..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioGlasses/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioMapTool/0.png b/front/public/images/small/BiblioCraft/item.BiblioMapTool/0.png deleted file mode 100644 index 7945edbf4f..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioMapTool/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioRedBook/0.png b/front/public/images/small/BiblioCraft/item.BiblioRedBook/0.png deleted file mode 100644 index a6f17f2f96..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioRedBook/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BiblioWayPointCompass/0.png b/front/public/images/small/BiblioCraft/item.BiblioWayPointCompass/0.png deleted file mode 100644 index defbf86c4d..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BiblioWayPointCompass/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.BigBook/0.png b/front/public/images/small/BiblioCraft/item.BigBook/0.png deleted file mode 100644 index ffd681bf58..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.BigBook/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.DeathCompass/0.png b/front/public/images/small/BiblioCraft/item.DeathCompass/0.png deleted file mode 100644 index a67798dadd..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.DeathCompass/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.EnchantedPlate/0.png b/front/public/images/small/BiblioCraft/item.EnchantedPlate/0.png deleted file mode 100644 index 3b7b6800f9..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.EnchantedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.FramingBoard/0.png b/front/public/images/small/BiblioCraft/item.FramingBoard/0.png deleted file mode 100644 index fccc236744..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.FramingBoard/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.FramingSaw/0.png b/front/public/images/small/BiblioCraft/item.FramingSaw/0.png deleted file mode 100644 index f1947871a6..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.FramingSaw/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.FramingSheet/0.png b/front/public/images/small/BiblioCraft/item.FramingSheet/0.png deleted file mode 100644 index 079bdfe51c..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.FramingSheet/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.HandDrill/0.png b/front/public/images/small/BiblioCraft/item.HandDrill/0.png deleted file mode 100644 index 11c302afed..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.HandDrill/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.PaintingCanvas/0.png b/front/public/images/small/BiblioCraft/item.PaintingCanvas/0.png deleted file mode 100644 index 6317ec4572..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.PaintingCanvas/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.PlumbLine/0.png b/front/public/images/small/BiblioCraft/item.PlumbLine/0.png deleted file mode 100644 index b1ca9c28dd..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.PlumbLine/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.PrintPlate/0.png b/front/public/images/small/BiblioCraft/item.PrintPlate/0.png deleted file mode 100644 index 3b7b6800f9..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.PrintPlate/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.RecipeBook/0.png b/front/public/images/small/BiblioCraft/item.RecipeBook/0.png deleted file mode 100644 index a332e0d591..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.RecipeBook/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.SlottedBook/0.png b/front/public/images/small/BiblioCraft/item.SlottedBook/0.png deleted file mode 100644 index a6f17f2f96..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.SlottedBook/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.StockroomCatalog/0.png b/front/public/images/small/BiblioCraft/item.StockroomCatalog/0.png deleted file mode 100644 index cb69414711..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.StockroomCatalog/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.TesterItem/0.png b/front/public/images/small/BiblioCraft/item.TesterItem/0.png deleted file mode 100644 index a6f17f2f96..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.TesterItem/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack/0.png b/front/public/images/small/BiblioCraft/item.seatBack/0.png deleted file mode 100644 index 6425d4371a..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack/1.png b/front/public/images/small/BiblioCraft/item.seatBack/1.png deleted file mode 100644 index 2472ff1c80..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack/2.png b/front/public/images/small/BiblioCraft/item.seatBack/2.png deleted file mode 100644 index 9168864399..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack/3.png b/front/public/images/small/BiblioCraft/item.seatBack/3.png deleted file mode 100644 index fa8171d189..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack/4.png b/front/public/images/small/BiblioCraft/item.seatBack/4.png deleted file mode 100644 index a3f9152f95..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack/5.png b/front/public/images/small/BiblioCraft/item.seatBack/5.png deleted file mode 100644 index 5fca4d759b..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack/6.png b/front/public/images/small/BiblioCraft/item.seatBack/6.png deleted file mode 100644 index 44d018af9e..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack2/0.png b/front/public/images/small/BiblioCraft/item.seatBack2/0.png deleted file mode 100644 index 9fd9d18a7a..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack2/1.png b/front/public/images/small/BiblioCraft/item.seatBack2/1.png deleted file mode 100644 index 3bb92aa214..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack2/2.png b/front/public/images/small/BiblioCraft/item.seatBack2/2.png deleted file mode 100644 index bf6ad2c949..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack2/3.png b/front/public/images/small/BiblioCraft/item.seatBack2/3.png deleted file mode 100644 index d1ad09cbed..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack2/4.png b/front/public/images/small/BiblioCraft/item.seatBack2/4.png deleted file mode 100644 index 2adb60d249..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack2/5.png b/front/public/images/small/BiblioCraft/item.seatBack2/5.png deleted file mode 100644 index 40349ede77..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack2/6.png b/front/public/images/small/BiblioCraft/item.seatBack2/6.png deleted file mode 100644 index b42895ea60..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack3/0.png b/front/public/images/small/BiblioCraft/item.seatBack3/0.png deleted file mode 100644 index aa11e7209c..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack3/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack3/1.png b/front/public/images/small/BiblioCraft/item.seatBack3/1.png deleted file mode 100644 index 77f649e179..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack3/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack3/2.png b/front/public/images/small/BiblioCraft/item.seatBack3/2.png deleted file mode 100644 index f6ac434c37..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack3/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack3/3.png b/front/public/images/small/BiblioCraft/item.seatBack3/3.png deleted file mode 100644 index 77437f7462..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack3/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack3/4.png b/front/public/images/small/BiblioCraft/item.seatBack3/4.png deleted file mode 100644 index 3a39d95056..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack3/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack3/5.png b/front/public/images/small/BiblioCraft/item.seatBack3/5.png deleted file mode 100644 index 0deded6b01..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack3/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack3/6.png b/front/public/images/small/BiblioCraft/item.seatBack3/6.png deleted file mode 100644 index 5de5a2966b..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack3/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack4/0.png b/front/public/images/small/BiblioCraft/item.seatBack4/0.png deleted file mode 100644 index 1447c29350..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack4/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack4/1.png b/front/public/images/small/BiblioCraft/item.seatBack4/1.png deleted file mode 100644 index 28d805e442..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack4/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack4/2.png b/front/public/images/small/BiblioCraft/item.seatBack4/2.png deleted file mode 100644 index 8165f40d36..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack4/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack4/3.png b/front/public/images/small/BiblioCraft/item.seatBack4/3.png deleted file mode 100644 index 8aaaca88d6..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack4/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack4/4.png b/front/public/images/small/BiblioCraft/item.seatBack4/4.png deleted file mode 100644 index 49359caaf0..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack4/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack4/5.png b/front/public/images/small/BiblioCraft/item.seatBack4/5.png deleted file mode 100644 index 60c5abf4b2..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack4/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack4/6.png b/front/public/images/small/BiblioCraft/item.seatBack4/6.png deleted file mode 100644 index 1f000e24c9..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack4/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack5/0.png b/front/public/images/small/BiblioCraft/item.seatBack5/0.png deleted file mode 100644 index 96a4ec27f3..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack5/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack5/1.png b/front/public/images/small/BiblioCraft/item.seatBack5/1.png deleted file mode 100644 index d825480e24..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack5/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack5/2.png b/front/public/images/small/BiblioCraft/item.seatBack5/2.png deleted file mode 100644 index 71ef9eeaf7..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack5/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack5/3.png b/front/public/images/small/BiblioCraft/item.seatBack5/3.png deleted file mode 100644 index fd9f181a78..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack5/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack5/4.png b/front/public/images/small/BiblioCraft/item.seatBack5/4.png deleted file mode 100644 index 74344d8730..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack5/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack5/5.png b/front/public/images/small/BiblioCraft/item.seatBack5/5.png deleted file mode 100644 index 7555298ba0..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack5/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.seatBack5/6.png b/front/public/images/small/BiblioCraft/item.seatBack5/6.png deleted file mode 100644 index a94a16782a..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.seatBack5/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.tape/0.png b/front/public/images/small/BiblioCraft/item.tape/0.png deleted file mode 100644 index f0e2ae54ec..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.tape/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/item.tapeMeasure/0.png b/front/public/images/small/BiblioCraft/item.tapeMeasure/0.png deleted file mode 100644 index c7a3fe539b..0000000000 Binary files a/front/public/images/small/BiblioCraft/item.tapeMeasure/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioCraft/tile.BiblioFramedChest/0.png b/front/public/images/small/BiblioCraft/tile.BiblioFramedChest/0.png deleted file mode 100644 index 8a93da55bf..0000000000 Binary files a/front/public/images/small/BiblioCraft/tile.BiblioFramedChest/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/0.png deleted file mode 100644 index 3fdccddc70..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/1.png deleted file mode 100644 index b0714c8758..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/10.png deleted file mode 100644 index 0dbb651d34..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/11.png deleted file mode 100644 index fedaf05752..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/12.png deleted file mode 100644 index 22cb047f35..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/13.png deleted file mode 100644 index 665f05075e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/2.png deleted file mode 100644 index 60dbd1bc91..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/3.png deleted file mode 100644 index bbd26bd36d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/4.png deleted file mode 100644 index cb9fec454b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/5.png deleted file mode 100644 index bce936a20d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/6.png deleted file mode 100644 index ac703f269e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/7.png deleted file mode 100644 index 784bfc6dfc..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/8.png deleted file mode 100644 index 59e82f0600..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/9.png deleted file mode 100644 index 882420f255..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodBookcase/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/0.png deleted file mode 100644 index 77af8fe51b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/1.png deleted file mode 100644 index 696aa02de9..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/10.png deleted file mode 100644 index d137d1ae72..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/11.png deleted file mode 100644 index 950be4b745..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/12.png deleted file mode 100644 index ed8f8448a5..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/13.png deleted file mode 100644 index 9f1060c51b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/2.png deleted file mode 100644 index 0c21dc06da..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/3.png deleted file mode 100644 index 31a7eaeb85..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/4.png deleted file mode 100644 index 7dbcae6866..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/5.png deleted file mode 100644 index 178e64bf3d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/6.png deleted file mode 100644 index 8a03806626..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/7.png deleted file mode 100644 index a9e73cf97c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/8.png deleted file mode 100644 index b1feab6bb7..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/9.png deleted file mode 100644 index 4da6faf9d1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodClock/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/0.png deleted file mode 100644 index e18e9a3e44..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/1.png deleted file mode 100644 index 397dc26ce9..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/10.png deleted file mode 100644 index 859e2930f2..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/11.png deleted file mode 100644 index 3b256b2589..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/12.png deleted file mode 100644 index b36fb64928..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/13.png deleted file mode 100644 index 56dc85c5b1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/2.png deleted file mode 100644 index df491e4c17..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/3.png deleted file mode 100644 index ef7c0bfb94..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/4.png deleted file mode 100644 index 5004b4ebff..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/5.png deleted file mode 100644 index fe4dd11655..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/6.png deleted file mode 100644 index 071445279d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/7.png deleted file mode 100644 index be5568e2ba..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/8.png deleted file mode 100644 index 0e4fff8f75..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/9.png deleted file mode 100644 index 9dcf5a8ade..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancySign/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/0.png deleted file mode 100644 index 23e241b9d3..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/1.png deleted file mode 100644 index 590e403bbe..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/10.png deleted file mode 100644 index 7953ade411..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/11.png deleted file mode 100644 index 81cc609d67..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/12.png deleted file mode 100644 index 8bb4c15225..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/13.png deleted file mode 100644 index e7f8a3d044..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/2.png deleted file mode 100644 index a42a4777f2..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/3.png deleted file mode 100644 index 7797ec3b03..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/4.png deleted file mode 100644 index d8e00487f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/5.png deleted file mode 100644 index 5d3949ca6d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/6.png deleted file mode 100644 index 6a15aeaace..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/7.png deleted file mode 100644 index 193ace09c1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/8.png deleted file mode 100644 index 82e9979b45..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/9.png deleted file mode 100644 index 1154981aba..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodFancyWorkbench/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/0.png deleted file mode 100644 index 410446de27..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/1.png deleted file mode 100644 index 08fa2e5375..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/10.png deleted file mode 100644 index 8dacd3f8db..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/11.png deleted file mode 100644 index 57cba3a689..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/12.png deleted file mode 100644 index 95c86781ef..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/13.png deleted file mode 100644 index c1cc5e2587..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/2.png deleted file mode 100644 index 82546f4ded..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/3.png deleted file mode 100644 index 906dffa4c7..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/4.png deleted file mode 100644 index a0faaeb110..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/5.png deleted file mode 100644 index c646f1cd6d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/6.png deleted file mode 100644 index 3675a63935..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/7.png deleted file mode 100644 index eac69670f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/8.png deleted file mode 100644 index ee8ca99cd4..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/9.png deleted file mode 100644 index 46895f7d9a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodMapFrame/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/0.png deleted file mode 100644 index 476419fd41..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/1.png deleted file mode 100644 index fc52e94d5e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/10.png deleted file mode 100644 index bc5085b4fa..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/11.png deleted file mode 100644 index 3a684bf21f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/12.png deleted file mode 100644 index 3f38786546..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/13.png deleted file mode 100644 index e9ecd706dd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/2.png deleted file mode 100644 index 3a92d351ad..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/3.png deleted file mode 100644 index 091b44c6ec..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/4.png deleted file mode 100644 index b3b4e37f46..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/5.png deleted file mode 100644 index 50da09ca6c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/6.png deleted file mode 100644 index 61d5b58a4b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/7.png deleted file mode 100644 index 9f8a963e45..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/8.png deleted file mode 100644 index 1111a2804b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/9.png deleted file mode 100644 index 432ad6b691..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT0/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/0.png deleted file mode 100644 index 91b49d546a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/1.png deleted file mode 100644 index 175a7fa4a8..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/10.png deleted file mode 100644 index be3399ade2..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/11.png deleted file mode 100644 index 21bc1fb726..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/12.png deleted file mode 100644 index 51553cf902..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/13.png deleted file mode 100644 index 1ca3244d44..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/2.png deleted file mode 100644 index 6c50f7c790..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/3.png deleted file mode 100644 index 91d9e3a999..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/4.png deleted file mode 100644 index 066f49b5a9..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/5.png deleted file mode 100644 index 329aba94ba..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/6.png deleted file mode 100644 index 0d201eb718..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/7.png deleted file mode 100644 index 4a78cded6f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/8.png deleted file mode 100644 index d90fa52149..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/9.png deleted file mode 100644 index 97846f06c3..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT1/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/0.png deleted file mode 100644 index adfe8a5c1d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/1.png deleted file mode 100644 index 2d96721aa5..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/10.png deleted file mode 100644 index ce25984ed3..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/11.png deleted file mode 100644 index 955180f3fc..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/12.png deleted file mode 100644 index 96e2abc25d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/13.png deleted file mode 100644 index 4854679486..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/2.png deleted file mode 100644 index ad7dd69d03..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/3.png deleted file mode 100644 index 0e71af3eb6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/4.png deleted file mode 100644 index d8fc68905e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/5.png deleted file mode 100644 index acfa9f1270..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/6.png deleted file mode 100644 index f993b2b0d5..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/7.png deleted file mode 100644 index 1647e78f0a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/8.png deleted file mode 100644 index 3861bb5e49..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/9.png deleted file mode 100644 index bce426dd66..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT2/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/0.png deleted file mode 100644 index 00b4500a16..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/1.png deleted file mode 100644 index 981fc6893c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/10.png deleted file mode 100644 index 9285f8c04c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/11.png deleted file mode 100644 index e6a0a58b45..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/12.png deleted file mode 100644 index 2e38a01f24..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/13.png deleted file mode 100644 index a9d8964b88..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/2.png deleted file mode 100644 index 5e80e3e182..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/3.png deleted file mode 100644 index 6cae9928ba..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/4.png deleted file mode 100644 index cefc8bdcec..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/5.png deleted file mode 100644 index e52ea3d5a5..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/6.png deleted file mode 100644 index fb6ff54264..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/7.png deleted file mode 100644 index 0834dc7916..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/8.png deleted file mode 100644 index 64ee3e7350..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/9.png deleted file mode 100644 index e8299fcec5..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT3/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/0.png deleted file mode 100644 index a1dd4d637a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/1.png deleted file mode 100644 index 49de1e3aeb..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/10.png deleted file mode 100644 index 10a575b79d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/11.png deleted file mode 100644 index 80f6ec3636..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/12.png deleted file mode 100644 index d78c0b6f63..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/13.png deleted file mode 100644 index cdc714fed0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/2.png deleted file mode 100644 index 5d7e0d91d9..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/3.png deleted file mode 100644 index d0bad83a1e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/4.png deleted file mode 100644 index 16d8a34e4f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/5.png deleted file mode 100644 index e64fb9b059..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/6.png deleted file mode 100644 index 69df231801..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/7.png deleted file mode 100644 index 9168a2272b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/8.png deleted file mode 100644 index be6886e863..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/9.png deleted file mode 100644 index cdcc102747..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodPaintingT4/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/0.png deleted file mode 100644 index d1ff8c872f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/1.png deleted file mode 100644 index c09755cbb7..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/10.png deleted file mode 100644 index d4569bc0dd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/11.png deleted file mode 100644 index b1d4721bbd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/12.png deleted file mode 100644 index 2650c5e71d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/13.png deleted file mode 100644 index cd2fb1b9f3..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/2.png deleted file mode 100644 index c0dd2d0e31..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/3.png deleted file mode 100644 index 142ec3bab5..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/4.png deleted file mode 100644 index c78dfadcd6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/5.png deleted file mode 100644 index c4ad27ce27..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/6.png deleted file mode 100644 index 25c52bd39b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/7.png deleted file mode 100644 index 2b18c901dc..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/8.png deleted file mode 100644 index 28c5479fa6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/9.png deleted file mode 100644 index 1951dcd1da..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodSeat/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/0.png deleted file mode 100644 index 91cd65ffa7..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/1.png deleted file mode 100644 index 40b7226476..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/10.png deleted file mode 100644 index c02f22a812..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/11.png deleted file mode 100644 index 5d59fa1770..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/12.png deleted file mode 100644 index d2345fceca..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/13.png deleted file mode 100644 index 4666ef64f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/2.png deleted file mode 100644 index 30576f88bb..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/3.png deleted file mode 100644 index aba7f903fe..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/4.png deleted file mode 100644 index 380e76b8d4..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/5.png deleted file mode 100644 index d859e8f7cd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/6.png deleted file mode 100644 index 8d0fe865e8..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/7.png deleted file mode 100644 index ae007e1bb2..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/8.png deleted file mode 100644 index b231297903..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/9.png deleted file mode 100644 index fa5c198c66..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodcase/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/0.png deleted file mode 100644 index 64a767d879..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/1.png deleted file mode 100644 index df2b05eb46..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/10.png deleted file mode 100644 index 33d09db9df..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/11.png deleted file mode 100644 index 1c398a425d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/12.png deleted file mode 100644 index ace5a59016..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/13.png deleted file mode 100644 index 685af448f1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/2.png deleted file mode 100644 index ace43a7e5a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/3.png deleted file mode 100644 index a340ccfd55..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/4.png deleted file mode 100644 index 329a38e190..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/5.png deleted file mode 100644 index 65fd8eb788..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/6.png deleted file mode 100644 index 44fa2c67fe..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/7.png deleted file mode 100644 index 6f9d00c191..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/8.png deleted file mode 100644 index a542fc8e40..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/9.png deleted file mode 100644 index c5fd9a9cfc..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWooddesk/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/0.png deleted file mode 100644 index cc4ff118e0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/1.png deleted file mode 100644 index 874534122f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/10.png deleted file mode 100644 index 82b14c3a9b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/11.png deleted file mode 100644 index 311eed5602..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/12.png deleted file mode 100644 index 7db3686f30..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/13.png deleted file mode 100644 index f34d4c45ad..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/2.png deleted file mode 100644 index 4b15d6cfa6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/3.png deleted file mode 100644 index cc5b7cda84..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/4.png deleted file mode 100644 index f92b310bae..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/5.png deleted file mode 100644 index be25dc1a7a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/6.png deleted file mode 100644 index 57df75c08d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/7.png deleted file mode 100644 index 985d3b55f1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/8.png deleted file mode 100644 index 19dc936230..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/9.png deleted file mode 100644 index 4948a6f367..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodlabel/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/0.png deleted file mode 100644 index 293781fe2e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/1.png deleted file mode 100644 index 7746782c6c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/10.png deleted file mode 100644 index ed9a10a438..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/11.png deleted file mode 100644 index ec4921067b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/12.png deleted file mode 100644 index be03fd5334..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/13.png deleted file mode 100644 index 208288fad1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/2.png deleted file mode 100644 index 316bd49bf9..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/3.png deleted file mode 100644 index 3586e0a127..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/4.png deleted file mode 100644 index 412ea4990e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/5.png deleted file mode 100644 index e01a695bf0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/6.png deleted file mode 100644 index fd6b8f887f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/7.png deleted file mode 100644 index 3447f6101a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/8.png deleted file mode 100644 index 329b35196f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/9.png deleted file mode 100644 index 6d465a381e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodpotshelf/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/0.png deleted file mode 100644 index b93830cebb..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/1.png deleted file mode 100644 index a981662878..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/10.png deleted file mode 100644 index 14c6974be8..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/11.png deleted file mode 100644 index 4bca40580e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/12.png deleted file mode 100644 index 62c91929c7..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/13.png deleted file mode 100644 index 50a59ba9fd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/2.png deleted file mode 100644 index 4ba648876c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/3.png deleted file mode 100644 index de307a3ddf..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/4.png deleted file mode 100644 index bff86f53cf..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/5.png deleted file mode 100644 index 94c9b53003..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/6.png deleted file mode 100644 index f7e1a2f723..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/7.png deleted file mode 100644 index 76da174412..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/8.png deleted file mode 100644 index cb6056d81b..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/9.png deleted file mode 100644 index f4e47fed80..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodrack/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/0.png deleted file mode 100644 index 7849b2fd33..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/1.png deleted file mode 100644 index 7b75828568..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/10.png deleted file mode 100644 index 532c8b157e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/11.png deleted file mode 100644 index 4e14313c28..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/12.png deleted file mode 100644 index 2a5fcf5621..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/13.png deleted file mode 100644 index fd11bfcf55..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/2.png deleted file mode 100644 index 6408a0b35d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/3.png deleted file mode 100644 index d7fb77b5d6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/4.png deleted file mode 100644 index 260840def8..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/5.png deleted file mode 100644 index f3852620dd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/6.png deleted file mode 100644 index 7220e9332d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/7.png deleted file mode 100644 index f495597610..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/8.png deleted file mode 100644 index c203d53b95..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/9.png deleted file mode 100644 index 992ab01e28..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodshelf/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/0.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/0.png deleted file mode 100644 index 1a97bf7178..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/1.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/1.png deleted file mode 100644 index 477cb8ed84..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/10.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/10.png deleted file mode 100644 index 36790a033a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/11.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/11.png deleted file mode 100644 index 256d6e4948..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/12.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/12.png deleted file mode 100644 index 539cfb182e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/13.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/13.png deleted file mode 100644 index 0b02c14b88..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/2.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/2.png deleted file mode 100644 index 385e1f1d2c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/3.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/3.png deleted file mode 100644 index 8ea0c1a6d4..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/4.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/4.png deleted file mode 100644 index 17de96f4b1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/5.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/5.png deleted file mode 100644 index eb9588b80c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/6.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/6.png deleted file mode 100644 index 2ab4893017..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/7.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/7.png deleted file mode 100644 index cb62c5b675..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/8.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/8.png deleted file mode 100644 index c27954d6c0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/9.png b/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/9.png deleted file mode 100644 index 94f1353047..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/BiblioWoodtable/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/0.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/0.png deleted file mode 100644 index b65aa53bdc..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/1.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/1.png deleted file mode 100644 index 30c6832b10..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/10.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/10.png deleted file mode 100644 index 7a6ac45b9d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/11.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/11.png deleted file mode 100644 index 60c0724b3c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/12.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/12.png deleted file mode 100644 index 9b54a45629..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/13.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/13.png deleted file mode 100644 index b049530f23..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/2.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/2.png deleted file mode 100644 index 0659395c83..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/3.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/3.png deleted file mode 100644 index 87e8d09534..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/4.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/4.png deleted file mode 100644 index 5ea74f8eba..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/5.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/5.png deleted file mode 100644 index 70a21ce714..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/6.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/6.png deleted file mode 100644 index d70811c4d8..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/7.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/7.png deleted file mode 100644 index 4d8576bc98..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/8.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/8.png deleted file mode 100644 index 41fd32b093..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack1/9.png b/front/public/images/small/BiblioWoodsBoP/seatBack1/9.png deleted file mode 100644 index 20222f2323..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack1/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/0.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/0.png deleted file mode 100644 index 93b3459df6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/1.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/1.png deleted file mode 100644 index cfa454f5da..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/10.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/10.png deleted file mode 100644 index a5b08ab3f6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/11.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/11.png deleted file mode 100644 index 04d3c4cff3..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/12.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/12.png deleted file mode 100644 index 5f749d92aa..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/13.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/13.png deleted file mode 100644 index 25b41ced4a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/2.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/2.png deleted file mode 100644 index 04f2390e8c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/3.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/3.png deleted file mode 100644 index b2cdd5d873..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/4.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/4.png deleted file mode 100644 index d10ed30aa4..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/5.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/5.png deleted file mode 100644 index 5b8a22c073..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/6.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/6.png deleted file mode 100644 index 614807447a..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/7.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/7.png deleted file mode 100644 index b5229fbf3e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/8.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/8.png deleted file mode 100644 index 8c09649475..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack2/9.png b/front/public/images/small/BiblioWoodsBoP/seatBack2/9.png deleted file mode 100644 index aa71bccd79..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack2/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/0.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/0.png deleted file mode 100644 index 331f2c46d4..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/1.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/1.png deleted file mode 100644 index 4c1c5b99ed..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/10.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/10.png deleted file mode 100644 index 650f1bae31..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/11.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/11.png deleted file mode 100644 index 7d749177d3..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/12.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/12.png deleted file mode 100644 index e0837f2f13..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/13.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/13.png deleted file mode 100644 index 8ec3cf9b23..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/2.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/2.png deleted file mode 100644 index 6f8cce7f2e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/3.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/3.png deleted file mode 100644 index ba6a720318..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/4.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/4.png deleted file mode 100644 index c8f9f68b8e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/5.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/5.png deleted file mode 100644 index 7a68c64344..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/6.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/6.png deleted file mode 100644 index 7bdd45ea96..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/7.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/7.png deleted file mode 100644 index be883026d1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/8.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/8.png deleted file mode 100644 index 35cf12baf6..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack3/9.png b/front/public/images/small/BiblioWoodsBoP/seatBack3/9.png deleted file mode 100644 index 30ab24e5d3..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack3/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/0.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/0.png deleted file mode 100644 index 6b5bfcdd49..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/1.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/1.png deleted file mode 100644 index a2ad17bdb1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/10.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/10.png deleted file mode 100644 index 4664767df2..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/11.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/11.png deleted file mode 100644 index 4f54e40c12..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/12.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/12.png deleted file mode 100644 index dec53be7d0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/13.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/13.png deleted file mode 100644 index 7319e420ea..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/2.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/2.png deleted file mode 100644 index 7ed58f4129..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/3.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/3.png deleted file mode 100644 index b95b238386..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/4.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/4.png deleted file mode 100644 index 76cb48296e..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/5.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/5.png deleted file mode 100644 index 6bbc9e5416..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/6.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/6.png deleted file mode 100644 index edf5fad4d5..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/7.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/7.png deleted file mode 100644 index 99557a8abd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/8.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/8.png deleted file mode 100644 index 605a28d8cd..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack4/9.png b/front/public/images/small/BiblioWoodsBoP/seatBack4/9.png deleted file mode 100644 index 1048f4248f..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack4/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/0.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/0.png deleted file mode 100644 index 43a64b1846..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/1.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/1.png deleted file mode 100644 index ee9015d870..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/10.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/10.png deleted file mode 100644 index ee3ef544f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/11.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/11.png deleted file mode 100644 index 8180cbe677..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/12.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/12.png deleted file mode 100644 index 41c9d69ee1..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/13.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/13.png deleted file mode 100644 index 2fa3370c01..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/2.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/2.png deleted file mode 100644 index d4359bddcf..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/3.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/3.png deleted file mode 100644 index a96243245d..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/4.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/4.png deleted file mode 100644 index 3d4bcbfb6c..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/5.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/5.png deleted file mode 100644 index ad06ef3045..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/6.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/6.png deleted file mode 100644 index fbefecc2ae..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/7.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/7.png deleted file mode 100644 index e75171d487..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/8.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/8.png deleted file mode 100644 index 256d056a85..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsBoP/seatBack5/9.png b/front/public/images/small/BiblioWoodsBoP/seatBack5/9.png deleted file mode 100644 index fbb31018e7..0000000000 Binary files a/front/public/images/small/BiblioWoodsBoP/seatBack5/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/0.png deleted file mode 100644 index 3206b7982a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/1.png deleted file mode 100644 index 743de34069..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/10.png deleted file mode 100644 index 3a41785294..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/11.png deleted file mode 100644 index 2c4f0e59a9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/12.png deleted file mode 100644 index e9c133fd2f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/13.png deleted file mode 100644 index c2a2f5be72..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/14.png deleted file mode 100644 index 46fb842a88..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/15.png deleted file mode 100644 index 60e0c71137..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/2.png deleted file mode 100644 index ba5b086316..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/3.png deleted file mode 100644 index e226e3f5e6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/4.png deleted file mode 100644 index 76f3af0077..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/5.png deleted file mode 100644 index 5b5f9ca3d6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/6.png deleted file mode 100644 index 6de6827f08..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/7.png deleted file mode 100644 index 529fc2f672..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/8.png deleted file mode 100644 index 1b2745f57a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/9.png deleted file mode 100644 index aab48203b2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/0.png deleted file mode 100644 index b49e3f7eb3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/1.png deleted file mode 100644 index a3dd626130..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/2.png deleted file mode 100644 index 1eb60ba466..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/3.png deleted file mode 100644 index b58ade29b4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/4.png deleted file mode 100644 index 2cc18176a4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/5.png deleted file mode 100644 index b10c974eb4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/6.png deleted file mode 100644 index 11284d7834..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/7.png deleted file mode 100644 index 2f7fb5ce43..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodClock2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/0.png deleted file mode 100644 index 05d916e894..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/1.png deleted file mode 100644 index 7c4b337dd8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/10.png deleted file mode 100644 index 7677b7fedb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/11.png deleted file mode 100644 index 35d5e5b254..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/12.png deleted file mode 100644 index 80495f841e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/13.png deleted file mode 100644 index 6b47ed47a1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/14.png deleted file mode 100644 index 800b75c5de..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/15.png deleted file mode 100644 index 588c262057..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/2.png deleted file mode 100644 index 2dbd537b26..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/3.png deleted file mode 100644 index ec82042204..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/4.png deleted file mode 100644 index ea33ccab1b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/5.png deleted file mode 100644 index fa9f79ff7f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/6.png deleted file mode 100644 index 4d02c3948e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/7.png deleted file mode 100644 index 0bdebcaf09..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/8.png deleted file mode 100644 index 875e73bda6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/9.png deleted file mode 100644 index e20d3504e4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/0.png deleted file mode 100644 index b12b79a0cf..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/1.png deleted file mode 100644 index b45ec00a48..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/2.png deleted file mode 100644 index a08ca93a54..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/3.png deleted file mode 100644 index 20f6e2c189..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/4.png deleted file mode 100644 index baeef4ed04..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/5.png deleted file mode 100644 index a4b86610ce..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/6.png deleted file mode 100644 index d4908261aa..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/7.png deleted file mode 100644 index 434609d880..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancySign2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/0.png deleted file mode 100644 index 857200ab60..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/1.png deleted file mode 100644 index 74efaf831c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/10.png deleted file mode 100644 index 96f10a035b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/11.png deleted file mode 100644 index eb756e31f8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/12.png deleted file mode 100644 index c27d6bd87b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/13.png deleted file mode 100644 index 278d7ec811..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/14.png deleted file mode 100644 index 02cb60e2da..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/15.png deleted file mode 100644 index 40c96e0130..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/2.png deleted file mode 100644 index 851c1847f6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/3.png deleted file mode 100644 index b730e8c30c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/4.png deleted file mode 100644 index e69d5317c5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/5.png deleted file mode 100644 index 0ac9727b94..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/6.png deleted file mode 100644 index 48c5c53c64..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/7.png deleted file mode 100644 index ba4d0c5130..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/8.png deleted file mode 100644 index 0c8b444479..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/9.png deleted file mode 100644 index ab754a9379..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/0.png deleted file mode 100644 index 66fa033260..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/1.png deleted file mode 100644 index bdf4f0d479..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/2.png deleted file mode 100644 index 2780aed0df..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/3.png deleted file mode 100644 index 27d90ab83e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/4.png deleted file mode 100644 index 88ffe38508..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/5.png deleted file mode 100644 index 35acce3ad7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/6.png deleted file mode 100644 index 162705a646..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/7.png deleted file mode 100644 index 0f2cbdc417..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFancyWorkbench2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/0.png deleted file mode 100644 index 7db380b69b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/1.png deleted file mode 100644 index ba2eef3f83..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/10.png deleted file mode 100644 index b363943e1f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/11.png deleted file mode 100644 index 35409f63e1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/12.png deleted file mode 100644 index c6c03816cc..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/13.png deleted file mode 100644 index 3575630e18..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/14.png deleted file mode 100644 index 0635a0b36f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/15.png deleted file mode 100644 index 0607cb3a3d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/2.png deleted file mode 100644 index c05651da70..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/3.png deleted file mode 100644 index 1c6d30cf30..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/4.png deleted file mode 100644 index 1da1428bd0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/5.png deleted file mode 100644 index 1c5b04a81b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/6.png deleted file mode 100644 index 6de65cd156..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/7.png deleted file mode 100644 index 9faf2a80c1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/8.png deleted file mode 100644 index e4da1bd1e6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/9.png deleted file mode 100644 index 41eb46b4c9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/0.png deleted file mode 100644 index dfa2c2abde..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/1.png deleted file mode 100644 index e1d4bf4b97..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/2.png deleted file mode 100644 index 7ce2343aad..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/3.png deleted file mode 100644 index 4cb21c08b4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/4.png deleted file mode 100644 index 2de06dfa5f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/5.png deleted file mode 100644 index f59b3554da..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/6.png deleted file mode 100644 index 41f8c77693..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/7.png deleted file mode 100644 index 15dbbccdcb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstBookcase2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/0.png deleted file mode 100644 index 564f52b740..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/1.png deleted file mode 100644 index dd38293ded..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/10.png deleted file mode 100644 index a6ef98e2be..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/11.png deleted file mode 100644 index d8c820f7b1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/12.png deleted file mode 100644 index aedf9a1642..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/13.png deleted file mode 100644 index 20619e1f8c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/14.png deleted file mode 100644 index 59cc9504bb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/15.png deleted file mode 100644 index 993f4cd7f1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/2.png deleted file mode 100644 index e386235d86..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/3.png deleted file mode 100644 index c3c4e97c29..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/4.png deleted file mode 100644 index 5dc090efeb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/5.png deleted file mode 100644 index 22c73f2750..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/6.png deleted file mode 100644 index d336cb4e25..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/7.png deleted file mode 100644 index 56663d5edf..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/8.png deleted file mode 100644 index 3c51832c3c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/9.png deleted file mode 100644 index 1350407347..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase0/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/0.png deleted file mode 100644 index 404adcea31..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/1.png deleted file mode 100644 index 1e3c6350b6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/2.png deleted file mode 100644 index 0d6e562526..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/3.png deleted file mode 100644 index 150b1e7d92..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/4.png deleted file mode 100644 index e33e0392ed..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/5.png deleted file mode 100644 index b109440941..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/6.png deleted file mode 100644 index 3894aa84fa..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/7.png deleted file mode 100644 index d3711c047a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstcase1/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/0.png deleted file mode 100644 index 7b6deec1f1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/1.png deleted file mode 100644 index e3868f4163..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/10.png deleted file mode 100644 index ebd77ab288..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/11.png deleted file mode 100644 index e9747d9482..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/12.png deleted file mode 100644 index 590024e594..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/13.png deleted file mode 100644 index 6198e8021a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/14.png deleted file mode 100644 index 94a1583d20..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/15.png deleted file mode 100644 index 0cca69f2e5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/2.png deleted file mode 100644 index 63b05ca067..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/3.png deleted file mode 100644 index 3655c6ca9f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/4.png deleted file mode 100644 index 7458fb2769..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/5.png deleted file mode 100644 index a1821a350f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/6.png deleted file mode 100644 index eaed7b3169..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/7.png deleted file mode 100644 index 87d02a2049..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/8.png deleted file mode 100644 index c24574d52d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/9.png deleted file mode 100644 index 1cecf30fc3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/0.png deleted file mode 100644 index b178a51dc2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/1.png deleted file mode 100644 index cd7fd5936a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/2.png deleted file mode 100644 index 1f11ee49f5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/3.png deleted file mode 100644 index 654215ee90..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/4.png deleted file mode 100644 index e8a86f8a80..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/5.png deleted file mode 100644 index 504d77d807..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/6.png deleted file mode 100644 index aa2c35dec4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/7.png deleted file mode 100644 index 32c64e15f9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstdesk2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/0.png deleted file mode 100644 index 9239d10142..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/1.png deleted file mode 100644 index 449ab6dfab..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/10.png deleted file mode 100644 index 9df1bab487..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/11.png deleted file mode 100644 index 8c5ae4e75d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/12.png deleted file mode 100644 index 26b8cfd248..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/13.png deleted file mode 100644 index 62e8cc4636..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/14.png deleted file mode 100644 index 16b6c60e68..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/15.png deleted file mode 100644 index 0f0746a06f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/2.png deleted file mode 100644 index 9b8e7d4808..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/3.png deleted file mode 100644 index c3b66e41a7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/4.png deleted file mode 100644 index 5953a37ca8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/5.png deleted file mode 100644 index 057a547901..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/6.png deleted file mode 100644 index cccff756e7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/7.png deleted file mode 100644 index 3994985c63..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/8.png deleted file mode 100644 index ce30c99d72..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/9.png deleted file mode 100644 index 05e0b7d2ea..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/0.png deleted file mode 100644 index d95f198bc6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/1.png deleted file mode 100644 index 931232ad89..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/2.png deleted file mode 100644 index c11a3e8918..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/3.png deleted file mode 100644 index e799b03f88..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/4.png deleted file mode 100644 index 0511c8b813..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/5.png deleted file mode 100644 index 667640f9eb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/6.png deleted file mode 100644 index 92beefdf50..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/7.png deleted file mode 100644 index 3d5b5ffbf1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstlabel2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/0.png deleted file mode 100644 index f60b437501..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/1.png deleted file mode 100644 index a1d2521e16..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/10.png deleted file mode 100644 index 713ce83bce..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/11.png deleted file mode 100644 index e76df5bfd1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/12.png deleted file mode 100644 index 8bd138f245..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/13.png deleted file mode 100644 index f91d3effbc..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/14.png deleted file mode 100644 index bcfb0c2510..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/15.png deleted file mode 100644 index 37133ecec8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/2.png deleted file mode 100644 index 8c14ccf63a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/3.png deleted file mode 100644 index e8fef47883..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/4.png deleted file mode 100644 index bbfc28160a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/5.png deleted file mode 100644 index f60f3a2dae..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/6.png deleted file mode 100644 index 903e1ada04..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/7.png deleted file mode 100644 index 0eef33c751..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/8.png deleted file mode 100644 index 0a2a22dd3a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/9.png deleted file mode 100644 index 6f37e14bcd..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/0.png deleted file mode 100644 index 19fb362ce1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/1.png deleted file mode 100644 index 9da8b14a75..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/2.png deleted file mode 100644 index bcf5f7acd3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/3.png deleted file mode 100644 index 40cf522246..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/4.png deleted file mode 100644 index 4ac4962aa9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/5.png deleted file mode 100644 index 802d0ca55f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/6.png deleted file mode 100644 index 3fe865f9e3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/7.png deleted file mode 100644 index 44b9e00322..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstpotshelf2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/0.png deleted file mode 100644 index 824236aa17..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/1.png deleted file mode 100644 index 5162070d16..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/10.png deleted file mode 100644 index 013016159c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/11.png deleted file mode 100644 index 04cb928e9e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/12.png deleted file mode 100644 index a638764661..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/13.png deleted file mode 100644 index 6675e3b2af..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/14.png deleted file mode 100644 index 639cfc3cb3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/15.png deleted file mode 100644 index 5933ca09d4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/2.png deleted file mode 100644 index 0415559078..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/3.png deleted file mode 100644 index 77a1a67905..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/4.png deleted file mode 100644 index 920b518ac3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/5.png deleted file mode 100644 index 2fc331885c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/6.png deleted file mode 100644 index c80bf9332b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/7.png deleted file mode 100644 index a9905afbf9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/8.png deleted file mode 100644 index 4cabcaaef6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/9.png deleted file mode 100644 index 705a470837..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/0.png deleted file mode 100644 index fa4abe2b9c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/1.png deleted file mode 100644 index 714b7cb948..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/2.png deleted file mode 100644 index 34d6b0559f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/3.png deleted file mode 100644 index e80cdd60c1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/4.png deleted file mode 100644 index 927b19d79f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/5.png deleted file mode 100644 index ccaa522dad..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/6.png deleted file mode 100644 index ce61f7f0de..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/7.png deleted file mode 100644 index 00512c913b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstrack2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/0.png deleted file mode 100644 index a05f2aee46..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/1.png deleted file mode 100644 index 6fe7e319af..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/10.png deleted file mode 100644 index 75977b81d8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/11.png deleted file mode 100644 index c800c3e3e6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/12.png deleted file mode 100644 index fd3c9b8479..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/13.png deleted file mode 100644 index a0d8f5f5f1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/14.png deleted file mode 100644 index a403e51b14..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/15.png deleted file mode 100644 index 78ab1ddcd5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/2.png deleted file mode 100644 index 54e596af7b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/3.png deleted file mode 100644 index e28e1e04d4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/4.png deleted file mode 100644 index a83a8c9adc..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/5.png deleted file mode 100644 index 57e2c007bf..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/6.png deleted file mode 100644 index 4b1900df50..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/7.png deleted file mode 100644 index 68889c3e02..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/8.png deleted file mode 100644 index 2b312b0db4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/9.png deleted file mode 100644 index 69e1a69060..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/0.png deleted file mode 100644 index 243dec3889..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/1.png deleted file mode 100644 index 733aaee71d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/2.png deleted file mode 100644 index 5df73a8a16..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/3.png deleted file mode 100644 index 5dccb427c5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/4.png deleted file mode 100644 index deddab61cd..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/5.png deleted file mode 100644 index 01bb9cad58..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/6.png deleted file mode 100644 index 37c802cc3a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/7.png deleted file mode 100644 index 59f94561b2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFstshelf2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/0.png deleted file mode 100644 index deac0ffb09..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/1.png deleted file mode 100644 index e508264108..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/10.png deleted file mode 100644 index f2a7aee5a8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/11.png deleted file mode 100644 index 96f92bfb68..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/12.png deleted file mode 100644 index 67420a0757..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/13.png deleted file mode 100644 index 00c5e9f5f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/14.png deleted file mode 100644 index 073a29573b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/15.png deleted file mode 100644 index b8a776a7f3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/2.png deleted file mode 100644 index 46c5f930f1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/3.png deleted file mode 100644 index a9b6b670bd..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/4.png deleted file mode 100644 index 4ade58e3af..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/5.png deleted file mode 100644 index 719351c0dc..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/6.png deleted file mode 100644 index 9b19dd4893..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/7.png deleted file mode 100644 index 2f8d57ad48..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/8.png deleted file mode 100644 index abc153e7f2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/9.png deleted file mode 100644 index e7c8ed7eff..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/0.png deleted file mode 100644 index fe8be105c5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/1.png deleted file mode 100644 index 504fbda83e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/2.png deleted file mode 100644 index f747229944..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/3.png deleted file mode 100644 index d64962c9d6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/4.png deleted file mode 100644 index b80738f700..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/5.png deleted file mode 100644 index 16cd7e253f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/6.png deleted file mode 100644 index ea657896fb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/7.png deleted file mode 100644 index adf5be6b39..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodFsttable2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/0.png deleted file mode 100644 index f8d94eda2a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/1.png deleted file mode 100644 index 56c86ca294..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/10.png deleted file mode 100644 index 826421e6cf..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/11.png deleted file mode 100644 index 7d8ca08373..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/12.png deleted file mode 100644 index 8d02a4da1f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/13.png deleted file mode 100644 index 5820744557..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/14.png deleted file mode 100644 index c0b405e15a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/15.png deleted file mode 100644 index c77f2df966..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/2.png deleted file mode 100644 index b5cf734dac..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/3.png deleted file mode 100644 index 88be732a85..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/4.png deleted file mode 100644 index 987bd1e04f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/5.png deleted file mode 100644 index c2bbc5a425..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/6.png deleted file mode 100644 index 060d04828d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/7.png deleted file mode 100644 index c4631d0d00..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/8.png deleted file mode 100644 index 38753536c0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/9.png deleted file mode 100644 index a402ae9605..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/0.png deleted file mode 100644 index 06f14c80a7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/1.png deleted file mode 100644 index df615035c4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/2.png deleted file mode 100644 index afd11b468e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/3.png deleted file mode 100644 index 39a8a7e591..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/4.png deleted file mode 100644 index 27a7c732e4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/5.png deleted file mode 100644 index f6fba5e80d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/6.png deleted file mode 100644 index 1a056dce32..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/7.png deleted file mode 100644 index fe7976645b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodMapFrame2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/0.png deleted file mode 100644 index f8637eef9f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/1.png deleted file mode 100644 index 398cb44a86..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/10.png deleted file mode 100644 index 7842cfbe97..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/11.png deleted file mode 100644 index 773a3dd0c3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/12.png deleted file mode 100644 index c80b7f671c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/13.png deleted file mode 100644 index 5dac0118bc..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/14.png deleted file mode 100644 index 587075928a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/15.png deleted file mode 100644 index 64e7ad7700..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/2.png deleted file mode 100644 index e5aed031b3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/3.png deleted file mode 100644 index d4091ca3aa..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/4.png deleted file mode 100644 index 47aad60da0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/5.png deleted file mode 100644 index 93653f35d9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/6.png deleted file mode 100644 index 037e55b76a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/7.png deleted file mode 100644 index 10a6e8e06d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/8.png deleted file mode 100644 index b856e012be..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/9.png deleted file mode 100644 index 966dc81a17..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/0.png deleted file mode 100644 index f8637eef9f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/1.png deleted file mode 100644 index 398cb44a86..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/2.png deleted file mode 100644 index e5aed031b3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/3.png deleted file mode 100644 index d4091ca3aa..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/4.png deleted file mode 100644 index 47aad60da0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/5.png deleted file mode 100644 index 93653f35d9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/6.png deleted file mode 100644 index 037e55b76a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/7.png deleted file mode 100644 index 10a6e8e06d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT0b/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/0.png deleted file mode 100644 index d2e64d52b9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/1.png deleted file mode 100644 index fd2a4ce8b3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/10.png deleted file mode 100644 index 3fae3f9d31..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/11.png deleted file mode 100644 index 3125a3536b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/12.png deleted file mode 100644 index a5642fb0f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/13.png deleted file mode 100644 index c271b8da1a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/14.png deleted file mode 100644 index c4f98a8fb3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/15.png deleted file mode 100644 index 5d5050b5ef..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/2.png deleted file mode 100644 index 18a3b83008..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/3.png deleted file mode 100644 index 35d6bda856..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/4.png deleted file mode 100644 index 2f484382c3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/5.png deleted file mode 100644 index c1292e5dfb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/6.png deleted file mode 100644 index af2d732d08..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/7.png deleted file mode 100644 index 00a9a72723..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/8.png deleted file mode 100644 index 8f5afc650d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/9.png deleted file mode 100644 index 7d2e342f07..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/0.png deleted file mode 100644 index d2e64d52b9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/1.png deleted file mode 100644 index fd2a4ce8b3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/2.png deleted file mode 100644 index 18a3b83008..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/3.png deleted file mode 100644 index 35d6bda856..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/4.png deleted file mode 100644 index 2f484382c3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/5.png deleted file mode 100644 index c1292e5dfb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/6.png deleted file mode 100644 index af2d732d08..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/7.png deleted file mode 100644 index 00a9a72723..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT1b/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/0.png deleted file mode 100644 index 1bad9061a4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/1.png deleted file mode 100644 index a6169259c2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/10.png deleted file mode 100644 index 2dd8feb7d8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/11.png deleted file mode 100644 index 6e0e67284c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/12.png deleted file mode 100644 index 9e995f7003..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/13.png deleted file mode 100644 index a86bca1874..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/14.png deleted file mode 100644 index d8122ac8b5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/15.png deleted file mode 100644 index 5d74ee2622..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/2.png deleted file mode 100644 index ffd8dc3d2c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/3.png deleted file mode 100644 index a28c7eb81e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/4.png deleted file mode 100644 index 4aba453612..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/5.png deleted file mode 100644 index cd371ccc85..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/6.png deleted file mode 100644 index 922bbfb3b7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/7.png deleted file mode 100644 index 8a959b50a1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/8.png deleted file mode 100644 index 1f8d87934c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/9.png deleted file mode 100644 index 3a3ba34b63..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/0.png deleted file mode 100644 index 1bad9061a4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/1.png deleted file mode 100644 index a6169259c2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/2.png deleted file mode 100644 index ffd8dc3d2c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/3.png deleted file mode 100644 index a28c7eb81e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/4.png deleted file mode 100644 index 4aba453612..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/5.png deleted file mode 100644 index cd371ccc85..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/6.png deleted file mode 100644 index 922bbfb3b7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/7.png deleted file mode 100644 index 8a959b50a1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT2b/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/0.png deleted file mode 100644 index f558e73d67..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/1.png deleted file mode 100644 index fa94483b54..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/10.png deleted file mode 100644 index 8baa25f43e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/11.png deleted file mode 100644 index 75b6eda62c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/12.png deleted file mode 100644 index ac1bedb50f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/13.png deleted file mode 100644 index 8424593a20..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/14.png deleted file mode 100644 index 4bb62e3461..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/15.png deleted file mode 100644 index a5a47ead54..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/2.png deleted file mode 100644 index a2110d0b06..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/3.png deleted file mode 100644 index d13bb294fa..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/4.png deleted file mode 100644 index 52677295b0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/5.png deleted file mode 100644 index b87389ef1b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/6.png deleted file mode 100644 index 67b4772e9d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/7.png deleted file mode 100644 index 6f3d8ee51e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/8.png deleted file mode 100644 index ca3b7d1932..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/9.png deleted file mode 100644 index fd3a618493..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/0.png deleted file mode 100644 index f558e73d67..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/1.png deleted file mode 100644 index fa94483b54..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/2.png deleted file mode 100644 index a2110d0b06..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/3.png deleted file mode 100644 index d13bb294fa..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/4.png deleted file mode 100644 index 52677295b0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/5.png deleted file mode 100644 index b87389ef1b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/6.png deleted file mode 100644 index 67b4772e9d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/7.png deleted file mode 100644 index 6f3d8ee51e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT3b/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/0.png deleted file mode 100644 index 507f722d46..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/1.png deleted file mode 100644 index 7e8f98ce1c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/10.png deleted file mode 100644 index 3177140702..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/11.png deleted file mode 100644 index d742b1c346..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/12.png deleted file mode 100644 index f16e862672..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/13.png deleted file mode 100644 index 5bacb60cb3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/14.png deleted file mode 100644 index c306b01735..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/15.png deleted file mode 100644 index 57c8a55f6a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/2.png deleted file mode 100644 index 0011d7a431..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/3.png deleted file mode 100644 index f0945e885e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/4.png deleted file mode 100644 index f683612c4e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/5.png deleted file mode 100644 index 4cb932e213..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/6.png deleted file mode 100644 index 0d585d24c8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/7.png deleted file mode 100644 index 02d52700f2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/8.png deleted file mode 100644 index 1a10338c4a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/9.png deleted file mode 100644 index d08690ec86..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/0.png deleted file mode 100644 index 507f722d46..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/1.png deleted file mode 100644 index 7e8f98ce1c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/2.png deleted file mode 100644 index 0011d7a431..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/3.png deleted file mode 100644 index f0945e885e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/4.png deleted file mode 100644 index f683612c4e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/5.png deleted file mode 100644 index 4cb932e213..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/6.png deleted file mode 100644 index 0d585d24c8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/7.png deleted file mode 100644 index 02d52700f2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodPaintingT4b/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/0.png deleted file mode 100644 index b21a808c04..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/1.png deleted file mode 100644 index 6e0382f93b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/10.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/10.png deleted file mode 100644 index eb550f61f3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/11.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/11.png deleted file mode 100644 index e163c2faed..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/12.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/12.png deleted file mode 100644 index 4825bdecfd..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/13.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/13.png deleted file mode 100644 index 99c931e687..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/14.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/14.png deleted file mode 100644 index 661b181b0f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/15.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/15.png deleted file mode 100644 index 88ae372002..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/2.png deleted file mode 100644 index 1cd28035c7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/3.png deleted file mode 100644 index 7eb40e7fd3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/4.png deleted file mode 100644 index 2bea2f31a8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/5.png deleted file mode 100644 index 215afc0df1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/6.png deleted file mode 100644 index fef722da57..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/7.png deleted file mode 100644 index d8cf47e79a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/8.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/8.png deleted file mode 100644 index 2cb2c35cb1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/9.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/9.png deleted file mode 100644 index 5f6d339e3b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/0.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/0.png deleted file mode 100644 index 8309a99026..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/1.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/1.png deleted file mode 100644 index b4b21efa39..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/2.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/2.png deleted file mode 100644 index 10166e8e51..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/3.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/3.png deleted file mode 100644 index 7db8901ece..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/4.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/4.png deleted file mode 100644 index 30397ecdb0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/5.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/5.png deleted file mode 100644 index e0ce775b0b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/6.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/6.png deleted file mode 100644 index 4bee4b671f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/7.png b/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/7.png deleted file mode 100644 index 15e695707e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/BiblioWoodSeat2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/0.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/0.png deleted file mode 100644 index ed2caeb38a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/1.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/1.png deleted file mode 100644 index 9339ebdae6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/10.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/10.png deleted file mode 100644 index 4e3020dfa6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/11.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/11.png deleted file mode 100644 index 8cc82880ec..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/12.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/12.png deleted file mode 100644 index 5ad032041d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/13.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/13.png deleted file mode 100644 index 0da1c3faea..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/14.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/14.png deleted file mode 100644 index ea00711b14..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/15.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/15.png deleted file mode 100644 index a61da6ac24..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/16.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/16.png deleted file mode 100644 index 281bc13bdc..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/16.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/17.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/17.png deleted file mode 100644 index 1bc9d2ed47..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/17.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/18.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/18.png deleted file mode 100644 index 24fb243391..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/18.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/19.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/19.png deleted file mode 100644 index 398eeaf294..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/19.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/2.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/2.png deleted file mode 100644 index 00011e6c9c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/20.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/20.png deleted file mode 100644 index 40539a9189..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/20.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/21.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/21.png deleted file mode 100644 index 7fecf5c6be..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/21.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/22.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/22.png deleted file mode 100644 index 8b52c8b9f6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/22.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/23.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/23.png deleted file mode 100644 index 6a5d6a1b8c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/23.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/3.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/3.png deleted file mode 100644 index 3564148c2e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/4.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/4.png deleted file mode 100644 index 580abfcd3a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/5.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/5.png deleted file mode 100644 index 053a711ead..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/6.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/6.png deleted file mode 100644 index 91a5f45c79..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/7.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/7.png deleted file mode 100644 index fb937f1ae4..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/8.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/8.png deleted file mode 100644 index d982fa0e66..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack1/9.png b/front/public/images/small/BiblioWoodsForestry/seatBack1/9.png deleted file mode 100644 index 03058b077e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack1/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/0.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/0.png deleted file mode 100644 index 7d6cc2b305..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/1.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/1.png deleted file mode 100644 index 22e3c75df5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/10.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/10.png deleted file mode 100644 index 96179bcabe..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/11.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/11.png deleted file mode 100644 index 42e18e6eda..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/12.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/12.png deleted file mode 100644 index 90e3a47c61..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/13.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/13.png deleted file mode 100644 index 6e199f56d8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/14.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/14.png deleted file mode 100644 index 561166e6cd..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/15.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/15.png deleted file mode 100644 index e8e29f3508..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/16.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/16.png deleted file mode 100644 index 5ab55b6a70..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/16.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/17.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/17.png deleted file mode 100644 index 66c3865076..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/17.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/18.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/18.png deleted file mode 100644 index 5546b7fb89..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/18.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/19.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/19.png deleted file mode 100644 index 059de86585..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/19.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/2.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/2.png deleted file mode 100644 index 31e8ba9dd9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/20.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/20.png deleted file mode 100644 index 0d6d19e0e6..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/20.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/21.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/21.png deleted file mode 100644 index 9b4637614c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/21.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/22.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/22.png deleted file mode 100644 index 1ca1f968a9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/22.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/23.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/23.png deleted file mode 100644 index 1f7daf4ef7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/23.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/3.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/3.png deleted file mode 100644 index fed564686b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/4.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/4.png deleted file mode 100644 index 8db3c829d2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/5.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/5.png deleted file mode 100644 index 9cca8dc78a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/6.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/6.png deleted file mode 100644 index fe8a0483f9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/7.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/7.png deleted file mode 100644 index b65c444dad..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/8.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/8.png deleted file mode 100644 index 75e96e6f92..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack2/9.png b/front/public/images/small/BiblioWoodsForestry/seatBack2/9.png deleted file mode 100644 index 7baa7a3cc7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack2/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/0.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/0.png deleted file mode 100644 index 07991fc637..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/1.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/1.png deleted file mode 100644 index 5fca54a08d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/10.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/10.png deleted file mode 100644 index c9bf4bdbde..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/11.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/11.png deleted file mode 100644 index b3591ccb24..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/12.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/12.png deleted file mode 100644 index 97cceaccfc..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/13.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/13.png deleted file mode 100644 index f01305f7e2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/14.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/14.png deleted file mode 100644 index a74f85472f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/15.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/15.png deleted file mode 100644 index ecb4aa790f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/16.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/16.png deleted file mode 100644 index ce29f7c74f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/16.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/17.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/17.png deleted file mode 100644 index bf0bd7d748..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/17.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/18.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/18.png deleted file mode 100644 index 73319559ea..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/18.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/19.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/19.png deleted file mode 100644 index fc51d9b5fb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/19.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/2.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/2.png deleted file mode 100644 index 15314d1156..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/20.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/20.png deleted file mode 100644 index 66a070c258..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/20.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/21.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/21.png deleted file mode 100644 index 81e8d763ea..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/21.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/22.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/22.png deleted file mode 100644 index 18e3fbe64f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/22.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/23.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/23.png deleted file mode 100644 index fd48a223c3..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/23.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/3.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/3.png deleted file mode 100644 index dc82cc5546..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/4.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/4.png deleted file mode 100644 index b8ed85190d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/5.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/5.png deleted file mode 100644 index 5babaf0be2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/6.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/6.png deleted file mode 100644 index eafa66d4bb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/7.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/7.png deleted file mode 100644 index 03a9f758ff..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/8.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/8.png deleted file mode 100644 index 0cc3b6b335..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack3/9.png b/front/public/images/small/BiblioWoodsForestry/seatBack3/9.png deleted file mode 100644 index e4f9e587d1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack3/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/0.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/0.png deleted file mode 100644 index 766aa09b2c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/1.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/1.png deleted file mode 100644 index ca1eee3723..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/10.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/10.png deleted file mode 100644 index 2dcf21c6f1..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/11.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/11.png deleted file mode 100644 index 58c9db0ad0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/12.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/12.png deleted file mode 100644 index f57c86c15e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/13.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/13.png deleted file mode 100644 index 83cc408c57..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/14.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/14.png deleted file mode 100644 index 5b96762971..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/15.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/15.png deleted file mode 100644 index 92797177ae..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/16.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/16.png deleted file mode 100644 index b8050aef81..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/16.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/17.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/17.png deleted file mode 100644 index 4136021c85..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/17.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/18.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/18.png deleted file mode 100644 index a19efb9131..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/18.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/19.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/19.png deleted file mode 100644 index a31925c4e5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/19.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/2.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/2.png deleted file mode 100644 index 1762738633..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/20.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/20.png deleted file mode 100644 index dba7a96a8f..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/20.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/21.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/21.png deleted file mode 100644 index ff183c6440..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/21.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/22.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/22.png deleted file mode 100644 index 7575038a33..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/22.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/23.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/23.png deleted file mode 100644 index c42731e58d..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/23.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/3.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/3.png deleted file mode 100644 index b8edd05097..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/4.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/4.png deleted file mode 100644 index 9a7fad7148..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/5.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/5.png deleted file mode 100644 index 67f30eb976..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/6.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/6.png deleted file mode 100644 index c2006bdf00..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/7.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/7.png deleted file mode 100644 index 10c85fc30e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/8.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/8.png deleted file mode 100644 index 75c5cf3c46..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack4/9.png b/front/public/images/small/BiblioWoodsForestry/seatBack4/9.png deleted file mode 100644 index 25ac9ddd98..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack4/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/0.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/0.png deleted file mode 100644 index f8c074149a..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/1.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/1.png deleted file mode 100644 index c5bf0548f8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/10.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/10.png deleted file mode 100644 index dc97f53e90..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/11.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/11.png deleted file mode 100644 index 85cf4877f8..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/12.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/12.png deleted file mode 100644 index c6f7c570f9..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/13.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/13.png deleted file mode 100644 index 1ed4dc4961..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/13.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/14.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/14.png deleted file mode 100644 index 89ea0842c5..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/14.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/15.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/15.png deleted file mode 100644 index d1a84cb79c..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/15.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/16.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/16.png deleted file mode 100644 index ccbcf74222..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/16.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/17.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/17.png deleted file mode 100644 index 6496b461ec..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/17.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/18.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/18.png deleted file mode 100644 index 269580c2e7..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/18.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/19.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/19.png deleted file mode 100644 index c25b2b5f89..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/19.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/2.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/2.png deleted file mode 100644 index 69ebacb630..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/20.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/20.png deleted file mode 100644 index c9649ff37e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/20.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/21.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/21.png deleted file mode 100644 index 08da907eb2..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/21.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/22.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/22.png deleted file mode 100644 index 5232f654cb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/22.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/23.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/23.png deleted file mode 100644 index 98f5d22fee..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/23.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/3.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/3.png deleted file mode 100644 index 2ef2e6f119..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/4.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/4.png deleted file mode 100644 index 6be68e882e..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/5.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/5.png deleted file mode 100644 index c20eee6ffd..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/6.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/6.png deleted file mode 100644 index d1b42ad0dd..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/7.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/7.png deleted file mode 100644 index 73bc3d1b5b..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/8.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/8.png deleted file mode 100644 index 48ed996ea0..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsForestry/seatBack5/9.png b/front/public/images/small/BiblioWoodsForestry/seatBack5/9.png deleted file mode 100644 index a25b2edcfb..0000000000 Binary files a/front/public/images/small/BiblioWoodsForestry/seatBack5/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/0.png deleted file mode 100644 index 58d52f7906..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/1.png deleted file mode 100644 index e423496328..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/10.png deleted file mode 100644 index 870383d3ad..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/11.png deleted file mode 100644 index d1257acbf6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/12.png deleted file mode 100644 index c1ee30d8af..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/2.png deleted file mode 100644 index 2318277da9..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/3.png deleted file mode 100644 index 66c96f03ce..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/4.png deleted file mode 100644 index 19703bf182..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/5.png deleted file mode 100644 index a1b5db5dbc..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/6.png deleted file mode 100644 index 3ca5839faa..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/7.png deleted file mode 100644 index be5a7fa3e8..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/8.png deleted file mode 100644 index 277640c9b3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/9.png deleted file mode 100644 index 3b0731cb7d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodBookcase/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/0.png deleted file mode 100644 index 4b4f8bfccc..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/1.png deleted file mode 100644 index 1ecd61ef2c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/10.png deleted file mode 100644 index 6268449461..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/11.png deleted file mode 100644 index 95c992275a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/12.png deleted file mode 100644 index 7bc883c966..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/2.png deleted file mode 100644 index c51bcc75cb..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/3.png deleted file mode 100644 index 11c2430780..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/4.png deleted file mode 100644 index 094a2b2167..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/5.png deleted file mode 100644 index d7fd7ba4fa..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/6.png deleted file mode 100644 index 5e272ce7f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/7.png deleted file mode 100644 index 45fe9d77b9..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/8.png deleted file mode 100644 index a36ae4a6d1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/9.png deleted file mode 100644 index b1a1d1886b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodClock/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/0.png deleted file mode 100644 index 845a9d29c3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/1.png deleted file mode 100644 index 2e9584bc76..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/10.png deleted file mode 100644 index b8f4f94dfc..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/11.png deleted file mode 100644 index 760efc0bd8..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/12.png deleted file mode 100644 index e2a006ae9f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/2.png deleted file mode 100644 index 0ae48e9880..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/3.png deleted file mode 100644 index 519c8b1413..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/4.png deleted file mode 100644 index cf17823c37..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/5.png deleted file mode 100644 index d7b96e2c81..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/6.png deleted file mode 100644 index b60199dd4b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/7.png deleted file mode 100644 index ebea8be139..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/8.png deleted file mode 100644 index b628c9de12..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/9.png deleted file mode 100644 index 835156636d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancySign/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/0.png deleted file mode 100644 index 817fd2e044..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/1.png deleted file mode 100644 index 80bc1d4894..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/10.png deleted file mode 100644 index 356ccc0697..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/11.png deleted file mode 100644 index 0b817657fb..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/12.png deleted file mode 100644 index 95250ccf75..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/2.png deleted file mode 100644 index 1bf1e7ad6a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/3.png deleted file mode 100644 index 956b0adc3c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/4.png deleted file mode 100644 index 8f8aa4789e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/5.png deleted file mode 100644 index 5a2ccd1b41..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/6.png deleted file mode 100644 index 966a29bdcd..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/7.png deleted file mode 100644 index 5d4b409e7e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/8.png deleted file mode 100644 index 1b414ec9b3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/9.png deleted file mode 100644 index 67440c8171..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodFancyWorkbench/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/0.png deleted file mode 100644 index f8c72ac6fe..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/1.png deleted file mode 100644 index 314a562114..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/10.png deleted file mode 100644 index 85a7fa9c3c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/11.png deleted file mode 100644 index 3a63834b5e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/12.png deleted file mode 100644 index 96573f8d14..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/2.png deleted file mode 100644 index 73a36a9f3d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/3.png deleted file mode 100644 index 7afa7faf83..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/4.png deleted file mode 100644 index 43305293f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/5.png deleted file mode 100644 index b26044ce4f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/6.png deleted file mode 100644 index 88b0559b31..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/7.png deleted file mode 100644 index 1feb5fd77b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/8.png deleted file mode 100644 index 16f56c23c5..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/9.png deleted file mode 100644 index e8fedeb10c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodMapFrame/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/0.png deleted file mode 100644 index 08fa3b9771..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/1.png deleted file mode 100644 index 5adb1296ea..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/10.png deleted file mode 100644 index 34d78d7474..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/11.png deleted file mode 100644 index 0def663b6b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/12.png deleted file mode 100644 index 8900625c49..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/2.png deleted file mode 100644 index 93bd56b409..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/3.png deleted file mode 100644 index c5a14589be..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/4.png deleted file mode 100644 index 2891f9ca00..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/5.png deleted file mode 100644 index f706e63f49..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/6.png deleted file mode 100644 index c49e15772e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/7.png deleted file mode 100644 index 541b3e79a7..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/8.png deleted file mode 100644 index c0c38fda73..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/9.png deleted file mode 100644 index 78eaa0a910..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT0/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/0.png deleted file mode 100644 index 315fbc724e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/1.png deleted file mode 100644 index 5b12840a30..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/10.png deleted file mode 100644 index a3c593300d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/11.png deleted file mode 100644 index 2fac85eb95..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/12.png deleted file mode 100644 index e7e441d80d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/2.png deleted file mode 100644 index 85554f317c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/3.png deleted file mode 100644 index 622622539e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/4.png deleted file mode 100644 index 96e003f875..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/5.png deleted file mode 100644 index 5779eb31cb..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/6.png deleted file mode 100644 index 0d166f91c2..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/7.png deleted file mode 100644 index 7c39976188..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/8.png deleted file mode 100644 index 936bbc3ab9..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/9.png deleted file mode 100644 index 11ceedeff1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT1/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/0.png deleted file mode 100644 index cf8603a5a4..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/1.png deleted file mode 100644 index 05c8aa882c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/10.png deleted file mode 100644 index 1f6f992b85..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/11.png deleted file mode 100644 index a057ad089c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/12.png deleted file mode 100644 index dce680cb94..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/2.png deleted file mode 100644 index c4769fb7bd..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/3.png deleted file mode 100644 index d58385234f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/4.png deleted file mode 100644 index 671f1bd4b4..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/5.png deleted file mode 100644 index 93ce058a1a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/6.png deleted file mode 100644 index 258d65f586..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/7.png deleted file mode 100644 index 6890d89062..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/8.png deleted file mode 100644 index 07276a93e6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/9.png deleted file mode 100644 index 294367c969..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT2/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/0.png deleted file mode 100644 index 056de4d071..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/1.png deleted file mode 100644 index 9a705ff09f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/10.png deleted file mode 100644 index b3f4a04bfb..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/11.png deleted file mode 100644 index bf20ce6f06..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/12.png deleted file mode 100644 index 8a0eca053c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/2.png deleted file mode 100644 index 10ebba9a21..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/3.png deleted file mode 100644 index aa53b26935..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/4.png deleted file mode 100644 index d9098607cd..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/5.png deleted file mode 100644 index d7722cf2d4..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/6.png deleted file mode 100644 index 26201c3851..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/7.png deleted file mode 100644 index 00797790be..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/8.png deleted file mode 100644 index a4e9f12870..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/9.png deleted file mode 100644 index bec937fe32..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT3/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/0.png deleted file mode 100644 index e7f34c3933..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/1.png deleted file mode 100644 index df4cf4b0c2..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/10.png deleted file mode 100644 index 35f6023784..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/11.png deleted file mode 100644 index 73c4545806..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/12.png deleted file mode 100644 index 14d7d2d4d7..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/2.png deleted file mode 100644 index c83352cf2d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/3.png deleted file mode 100644 index 702885f119..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/4.png deleted file mode 100644 index e708a7fe08..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/5.png deleted file mode 100644 index 6fc8b6653d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/6.png deleted file mode 100644 index 18c308a8e0..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/7.png deleted file mode 100644 index 22dbe26bd1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/8.png deleted file mode 100644 index 81515f1b6d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/9.png deleted file mode 100644 index ae9495bc27..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodPaintingT4/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/0.png deleted file mode 100644 index a804f94441..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/1.png deleted file mode 100644 index f842ffc42b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/10.png deleted file mode 100644 index ad4a241730..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/11.png deleted file mode 100644 index ef8d283e7f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/12.png deleted file mode 100644 index 65a1d1dd8c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/2.png deleted file mode 100644 index 81c1c6ccea..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/3.png deleted file mode 100644 index f459e1a91b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/4.png deleted file mode 100644 index 2cbd640a03..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/5.png deleted file mode 100644 index 297407d5b9..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/6.png deleted file mode 100644 index 34b283f921..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/7.png deleted file mode 100644 index cae1062e07..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/8.png deleted file mode 100644 index cf2a6d2785..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/9.png deleted file mode 100644 index 14bbdc7568..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodSeat/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/0.png deleted file mode 100644 index ef504a5a06..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/1.png deleted file mode 100644 index 9ce825f157..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/10.png deleted file mode 100644 index bb271304d3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/11.png deleted file mode 100644 index 45053b7641..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/12.png deleted file mode 100644 index 1e9a597faf..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/2.png deleted file mode 100644 index 8f54a44c4d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/3.png deleted file mode 100644 index 4baa236ac1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/4.png deleted file mode 100644 index add990488b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/5.png deleted file mode 100644 index 6c6bac917b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/6.png deleted file mode 100644 index a1d020df69..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/7.png deleted file mode 100644 index 25d5966dec..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/8.png deleted file mode 100644 index 8f1d01506e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/9.png deleted file mode 100644 index 261f8b7450..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodcase0/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/0.png deleted file mode 100644 index 337c1e906a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/1.png deleted file mode 100644 index 8c10dd41fc..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/10.png deleted file mode 100644 index 3edcf12777..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/11.png deleted file mode 100644 index 2bbd3cc876..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/12.png deleted file mode 100644 index 21771cc948..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/2.png deleted file mode 100644 index 627e9c4683..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/3.png deleted file mode 100644 index 3584e50f99..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/4.png deleted file mode 100644 index e4e44c1477..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/5.png deleted file mode 100644 index 093894ef11..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/6.png deleted file mode 100644 index 25521968b9..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/7.png deleted file mode 100644 index 3555586a4c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/8.png deleted file mode 100644 index f05efd7ce4..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/9.png deleted file mode 100644 index 632a2dbb78..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWooddesk/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/0.png deleted file mode 100644 index 5b8a63f180..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/1.png deleted file mode 100644 index 2fe68628d4..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/10.png deleted file mode 100644 index 025e8dd7aa..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/11.png deleted file mode 100644 index 9a03ac9bf3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/12.png deleted file mode 100644 index 32f4c1a2ae..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/2.png deleted file mode 100644 index 4ddcf24291..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/3.png deleted file mode 100644 index 8ff7c9efda..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/4.png deleted file mode 100644 index 79785927e3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/5.png deleted file mode 100644 index c4fddb0006..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/6.png deleted file mode 100644 index af544e3f72..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/7.png deleted file mode 100644 index 0aa0898394..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/8.png deleted file mode 100644 index a61da6a447..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/9.png deleted file mode 100644 index 347237ac22..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodlabel/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/0.png deleted file mode 100644 index 302b840ea2..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/1.png deleted file mode 100644 index e9f5cf55e5..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/10.png deleted file mode 100644 index e3e6c994f6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/11.png deleted file mode 100644 index c2c17a367f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/12.png deleted file mode 100644 index eccfae9882..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/2.png deleted file mode 100644 index 070a08353e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/3.png deleted file mode 100644 index 9204b6ea96..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/4.png deleted file mode 100644 index ac2fbbc547..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/5.png deleted file mode 100644 index c273b36711..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/6.png deleted file mode 100644 index 57520e79c1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/7.png deleted file mode 100644 index f9a6e59084..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/8.png deleted file mode 100644 index e09d250735..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/9.png deleted file mode 100644 index 79f3548e36..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodpotshelf/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/0.png deleted file mode 100644 index 80e8d61165..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/1.png deleted file mode 100644 index b624cb62cf..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/10.png deleted file mode 100644 index df5111ca11..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/11.png deleted file mode 100644 index 137337813f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/12.png deleted file mode 100644 index c20db92564..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/2.png deleted file mode 100644 index bf8fdec408..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/3.png deleted file mode 100644 index b020612e0e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/4.png deleted file mode 100644 index 36c08af5fb..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/5.png deleted file mode 100644 index a21ebe8c1b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/6.png deleted file mode 100644 index 88ee554c18..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/7.png deleted file mode 100644 index 8c7eec69b6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/8.png deleted file mode 100644 index 010c8b0dd0..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/9.png deleted file mode 100644 index 0fdda2189d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodrack/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/0.png deleted file mode 100644 index 89cc2cd4ea..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/1.png deleted file mode 100644 index 5a8e5f444e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/10.png deleted file mode 100644 index 9071bcd6a1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/11.png deleted file mode 100644 index 025948b287..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/12.png deleted file mode 100644 index 3476c0c0ab..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/2.png deleted file mode 100644 index 172e9c0de3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/3.png deleted file mode 100644 index ebb098de9b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/4.png deleted file mode 100644 index 0aac7b50da..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/5.png deleted file mode 100644 index 79ff132c03..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/6.png deleted file mode 100644 index e4cd725f38..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/7.png deleted file mode 100644 index af0ce3472d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/8.png deleted file mode 100644 index 595a943a6a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/9.png deleted file mode 100644 index 316980c408..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodshelf/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/0.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/0.png deleted file mode 100644 index 3ddfafd1d3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/1.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/1.png deleted file mode 100644 index b634bb344d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/10.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/10.png deleted file mode 100644 index 2fd96064f0..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/11.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/11.png deleted file mode 100644 index 622ea1ceaa..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/12.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/12.png deleted file mode 100644 index 8f92c9e9e6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/2.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/2.png deleted file mode 100644 index 05efa42ba1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/3.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/3.png deleted file mode 100644 index 8427c066c0..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/4.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/4.png deleted file mode 100644 index af6f560da6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/5.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/5.png deleted file mode 100644 index 96124ecf66..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/6.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/6.png deleted file mode 100644 index 4d6d897f0c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/7.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/7.png deleted file mode 100644 index b6b8340c18..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/8.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/8.png deleted file mode 100644 index f6448e8bfd..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/9.png b/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/9.png deleted file mode 100644 index 421b80b3b7..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/BiblioWoodtable/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/0.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/0.png deleted file mode 100644 index 8309ea0284..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/1.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/1.png deleted file mode 100644 index f211094293..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/10.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/10.png deleted file mode 100644 index ff923e3448..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/11.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/11.png deleted file mode 100644 index 38627cea5f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/12.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/12.png deleted file mode 100644 index 32db7a907c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/2.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/2.png deleted file mode 100644 index ff95fe2bb2..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/3.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/3.png deleted file mode 100644 index 59e6ae9ea4..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/4.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/4.png deleted file mode 100644 index 65a7d97692..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/5.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/5.png deleted file mode 100644 index 34302f6af7..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/6.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/6.png deleted file mode 100644 index a2b739098c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/7.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/7.png deleted file mode 100644 index 954c42ef7a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/8.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/8.png deleted file mode 100644 index 1f74785a52..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack1/9.png b/front/public/images/small/BiblioWoodsNatura/seatBack1/9.png deleted file mode 100644 index 9dc8debc08..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack1/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/0.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/0.png deleted file mode 100644 index a47ce06b12..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/1.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/1.png deleted file mode 100644 index 88257aa540..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/10.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/10.png deleted file mode 100644 index c1143a9c29..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/11.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/11.png deleted file mode 100644 index 30a54a2423..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/12.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/12.png deleted file mode 100644 index d03eef8928..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/2.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/2.png deleted file mode 100644 index 640a329dd5..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/3.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/3.png deleted file mode 100644 index be8e398f1e..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/4.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/4.png deleted file mode 100644 index a7c5b9a0c5..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/5.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/5.png deleted file mode 100644 index 076418ac3f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/6.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/6.png deleted file mode 100644 index 3be70a7617..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/7.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/7.png deleted file mode 100644 index f6a9823e88..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/8.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/8.png deleted file mode 100644 index 947f044fc6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack2/9.png b/front/public/images/small/BiblioWoodsNatura/seatBack2/9.png deleted file mode 100644 index 4ea360046b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack2/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/0.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/0.png deleted file mode 100644 index b1d90dac37..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/1.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/1.png deleted file mode 100644 index 8d36246554..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/10.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/10.png deleted file mode 100644 index 182a002d8c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/11.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/11.png deleted file mode 100644 index 9e9b861e35..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/12.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/12.png deleted file mode 100644 index 22c33150d8..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/2.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/2.png deleted file mode 100644 index b08b2b4e8b..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/3.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/3.png deleted file mode 100644 index 14130437e3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/4.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/4.png deleted file mode 100644 index 8bee1f5c50..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/5.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/5.png deleted file mode 100644 index 66dcab6fc6..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/6.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/6.png deleted file mode 100644 index bc5126c85d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/7.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/7.png deleted file mode 100644 index 0bada6db3f..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/8.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/8.png deleted file mode 100644 index e828d82e61..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack3/9.png b/front/public/images/small/BiblioWoodsNatura/seatBack3/9.png deleted file mode 100644 index a6b1a61d21..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack3/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/0.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/0.png deleted file mode 100644 index 9d9809ee58..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/1.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/1.png deleted file mode 100644 index 9da0ffcebe..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/10.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/10.png deleted file mode 100644 index 38c7e47a2c..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/11.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/11.png deleted file mode 100644 index c2d86463bc..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/12.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/12.png deleted file mode 100644 index c365dd6efe..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/2.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/2.png deleted file mode 100644 index 26e83f92ea..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/3.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/3.png deleted file mode 100644 index a0b68a59a1..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/4.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/4.png deleted file mode 100644 index c1e8c17f52..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/5.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/5.png deleted file mode 100644 index a548b6e36a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/6.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/6.png deleted file mode 100644 index 26e1276915..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/7.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/7.png deleted file mode 100644 index 9718acc8a9..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/8.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/8.png deleted file mode 100644 index e1a2acca19..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack4/9.png b/front/public/images/small/BiblioWoodsNatura/seatBack4/9.png deleted file mode 100644 index 0c121d518a..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack4/9.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/0.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/0.png deleted file mode 100644 index 9e85aecb90..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/0.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/1.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/1.png deleted file mode 100644 index 8a728c5740..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/1.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/10.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/10.png deleted file mode 100644 index 86eb30dead..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/10.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/11.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/11.png deleted file mode 100644 index d2a7f7e854..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/11.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/12.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/12.png deleted file mode 100644 index 7910309370..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/12.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/2.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/2.png deleted file mode 100644 index 2160ec1300..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/2.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/3.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/3.png deleted file mode 100644 index a8df2f5b9d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/3.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/4.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/4.png deleted file mode 100644 index f96d8f38a2..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/4.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/5.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/5.png deleted file mode 100644 index 65dcf48891..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/5.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/6.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/6.png deleted file mode 100644 index 084fa4d11d..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/6.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/7.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/7.png deleted file mode 100644 index 361ebdabc2..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/7.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/8.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/8.png deleted file mode 100644 index 11823caef3..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/8.png and /dev/null differ diff --git a/front/public/images/small/BiblioWoodsNatura/seatBack5/9.png b/front/public/images/small/BiblioWoodsNatura/seatBack5/9.png deleted file mode 100644 index 13a3582144..0000000000 Binary files a/front/public/images/small/BiblioWoodsNatura/seatBack5/9.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerBucket/128.png b/front/public/images/small/BinnieCore/containerBucket/128.png deleted file mode 100644 index 95898f1b75..0000000000 Binary files a/front/public/images/small/BinnieCore/containerBucket/128.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerBucket/129.png b/front/public/images/small/BinnieCore/containerBucket/129.png deleted file mode 100644 index 5c2a50d8cc..0000000000 Binary files a/front/public/images/small/BinnieCore/containerBucket/129.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerBucket/130.png b/front/public/images/small/BinnieCore/containerBucket/130.png deleted file mode 100644 index dc4dfa6c39..0000000000 Binary files a/front/public/images/small/BinnieCore/containerBucket/130.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerBucket/131.png b/front/public/images/small/BinnieCore/containerBucket/131.png deleted file mode 100644 index 40fbf2efdb..0000000000 Binary files a/front/public/images/small/BinnieCore/containerBucket/131.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerBucket/64.png b/front/public/images/small/BinnieCore/containerBucket/64.png deleted file mode 100644 index d8f77b24f6..0000000000 Binary files a/front/public/images/small/BinnieCore/containerBucket/64.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerBucket/65.png b/front/public/images/small/BinnieCore/containerBucket/65.png deleted file mode 100644 index 05d81f62bc..0000000000 Binary files a/front/public/images/small/BinnieCore/containerBucket/65.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerBucket/66.png b/front/public/images/small/BinnieCore/containerBucket/66.png deleted file mode 100644 index 05d81f62bc..0000000000 Binary files a/front/public/images/small/BinnieCore/containerBucket/66.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCan/128.png b/front/public/images/small/BinnieCore/containerCan/128.png deleted file mode 100644 index 6bf5a756c3..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCan/128.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCan/129.png b/front/public/images/small/BinnieCore/containerCan/129.png deleted file mode 100644 index dbd501fcac..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCan/129.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCan/130.png b/front/public/images/small/BinnieCore/containerCan/130.png deleted file mode 100644 index 64e76d6830..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCan/130.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCan/131.png b/front/public/images/small/BinnieCore/containerCan/131.png deleted file mode 100644 index 2fa98daa03..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCan/131.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCan/64.png b/front/public/images/small/BinnieCore/containerCan/64.png deleted file mode 100644 index 96c7302ae0..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCan/64.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCan/65.png b/front/public/images/small/BinnieCore/containerCan/65.png deleted file mode 100644 index 3a58880252..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCan/65.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCan/66.png b/front/public/images/small/BinnieCore/containerCan/66.png deleted file mode 100644 index 3a58880252..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCan/66.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCapsule/128.png b/front/public/images/small/BinnieCore/containerCapsule/128.png deleted file mode 100644 index 11e18cb820..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCapsule/128.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCapsule/129.png b/front/public/images/small/BinnieCore/containerCapsule/129.png deleted file mode 100644 index f09725f24d..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCapsule/129.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCapsule/130.png b/front/public/images/small/BinnieCore/containerCapsule/130.png deleted file mode 100644 index 47b716d764..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCapsule/130.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCapsule/131.png b/front/public/images/small/BinnieCore/containerCapsule/131.png deleted file mode 100644 index 17dc8f3e6c..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCapsule/131.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCapsule/64.png b/front/public/images/small/BinnieCore/containerCapsule/64.png deleted file mode 100644 index f5e4e6efb0..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCapsule/64.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCapsule/65.png b/front/public/images/small/BinnieCore/containerCapsule/65.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCapsule/65.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCapsule/66.png b/front/public/images/small/BinnieCore/containerCapsule/66.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCapsule/66.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCylinder/768.png b/front/public/images/small/BinnieCore/containerCylinder/768.png deleted file mode 100644 index 881839c80e..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCylinder/768.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCylinder/769.png b/front/public/images/small/BinnieCore/containerCylinder/769.png deleted file mode 100644 index 4ae5410188..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCylinder/769.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCylinder/770.png b/front/public/images/small/BinnieCore/containerCylinder/770.png deleted file mode 100644 index 478d8abc47..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCylinder/770.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCylinder/771.png b/front/public/images/small/BinnieCore/containerCylinder/771.png deleted file mode 100644 index cebe4315e2..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCylinder/771.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerCylinder/772.png b/front/public/images/small/BinnieCore/containerCylinder/772.png deleted file mode 100644 index 711e67a997..0000000000 Binary files a/front/public/images/small/BinnieCore/containerCylinder/772.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerGlass/0.png b/front/public/images/small/BinnieCore/containerGlass/0.png deleted file mode 100644 index 0483acc0de..0000000000 Binary files a/front/public/images/small/BinnieCore/containerGlass/0.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerRefractory/64.png b/front/public/images/small/BinnieCore/containerRefractory/64.png deleted file mode 100644 index 1ac84094f6..0000000000 Binary files a/front/public/images/small/BinnieCore/containerRefractory/64.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerRefractory/65.png b/front/public/images/small/BinnieCore/containerRefractory/65.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/BinnieCore/containerRefractory/65.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/containerRefractory/66.png b/front/public/images/small/BinnieCore/containerRefractory/66.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/BinnieCore/containerRefractory/66.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/fieldKit/0.png b/front/public/images/small/BinnieCore/fieldKit/0.png deleted file mode 100644 index 5656c6fa5f..0000000000 Binary files a/front/public/images/small/BinnieCore/fieldKit/0.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/genesis/0.png b/front/public/images/small/BinnieCore/genesis/0.png deleted file mode 100644 index a8ae9f5890..0000000000 Binary files a/front/public/images/small/BinnieCore/genesis/0.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/storage/0.png b/front/public/images/small/BinnieCore/storage/0.png deleted file mode 100644 index d492351cbc..0000000000 Binary files a/front/public/images/small/BinnieCore/storage/0.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/storage/1.png b/front/public/images/small/BinnieCore/storage/1.png deleted file mode 100644 index 3a04a3ca0c..0000000000 Binary files a/front/public/images/small/BinnieCore/storage/1.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/storage/2.png b/front/public/images/small/BinnieCore/storage/2.png deleted file mode 100644 index e5fc0d2073..0000000000 Binary files a/front/public/images/small/BinnieCore/storage/2.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/storage/3.png b/front/public/images/small/BinnieCore/storage/3.png deleted file mode 100644 index 2013b2f89f..0000000000 Binary files a/front/public/images/small/BinnieCore/storage/3.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/storage/4.png b/front/public/images/small/BinnieCore/storage/4.png deleted file mode 100644 index 7ec5f695ed..0000000000 Binary files a/front/public/images/small/BinnieCore/storage/4.png and /dev/null differ diff --git a/front/public/images/small/BinnieCore/storage/5.png b/front/public/images/small/BinnieCore/storage/5.png deleted file mode 100644 index c017d29952..0000000000 Binary files a/front/public/images/small/BinnieCore/storage/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ancientStaff/0.png b/front/public/images/small/BiomesOPlenty/ancientStaff/0.png deleted file mode 100644 index 8794c4091b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ancientStaff/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ancientStaff/1.png b/front/public/images/small/BiomesOPlenty/ancientStaff/1.png deleted file mode 100644 index 56dac1c6d8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ancientStaff/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ancientStaff/2.png b/front/public/images/small/BiomesOPlenty/ancientStaff/2.png deleted file mode 100644 index 2bc0fca1bb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ancientStaff/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ancientStaff/3.png b/front/public/images/small/BiomesOPlenty/ancientStaff/3.png deleted file mode 100644 index e2c3c1cc24..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ancientStaff/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ancientStaff/4.png b/front/public/images/small/BiomesOPlenty/ancientStaff/4.png deleted file mode 100644 index bae07aa5bd..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ancientStaff/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/appleLeaves/0.png b/front/public/images/small/BiomesOPlenty/appleLeaves/0.png deleted file mode 100644 index 310f320278..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/appleLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ash/0.png b/front/public/images/small/BiomesOPlenty/ash/0.png deleted file mode 100644 index 44af3c06fd..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ash/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ashStone/0.png b/front/public/images/small/BiomesOPlenty/ashStone/0.png deleted file mode 100644 index 08921ce1af..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ashStone/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/axeAmethyst/0.png b/front/public/images/small/BiomesOPlenty/axeAmethyst/0.png deleted file mode 100644 index 6a7d881d43..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/axeAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/axeMud/0.png b/front/public/images/small/BiomesOPlenty/axeMud/0.png deleted file mode 100644 index fd3c3f078f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/axeMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bamboo/0.png b/front/public/images/small/BiomesOPlenty/bamboo/0.png deleted file mode 100644 index 026ae1ca56..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bamboo/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/biomeBlock/0.png b/front/public/images/small/BiomesOPlenty/biomeBlock/0.png deleted file mode 100644 index bdb5e6d0e9..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/biomeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/biomeEssence/0.png b/front/public/images/small/BiomesOPlenty/biomeEssence/0.png deleted file mode 100644 index 2fb1b1ae10..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/biomeEssence/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/biomeFinder/0.png b/front/public/images/small/BiomesOPlenty/biomeFinder/0.png deleted file mode 100644 index 81f1b1154f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/biomeFinder/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bones/0.png b/front/public/images/small/BiomesOPlenty/bones/0.png deleted file mode 100644 index e863d39cad..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bones/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bones/1.png b/front/public/images/small/BiomesOPlenty/bones/1.png deleted file mode 100644 index f3e197c6ea..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bones/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bones/2.png b/front/public/images/small/BiomesOPlenty/bones/2.png deleted file mode 100644 index eac59a7ac0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bones/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bootsAmethyst/0.png b/front/public/images/small/BiomesOPlenty/bootsAmethyst/0.png deleted file mode 100644 index f73ef98692..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bootsAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bootsMud/0.png b/front/public/images/small/BiomesOPlenty/bootsMud/0.png deleted file mode 100644 index fcc8f31758..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bootsMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bopBucket/0.png b/front/public/images/small/BiomesOPlenty/bopBucket/0.png deleted file mode 100644 index 8f6fb0d061..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bopBucket/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bopGrass/0.png b/front/public/images/small/BiomesOPlenty/bopGrass/0.png deleted file mode 100644 index 2cb6d17a07..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bopGrass/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/bopGrass/1.png b/front/public/images/small/BiomesOPlenty/bopGrass/1.png deleted file mode 100644 index 75ef2604fc..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/bopGrass/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/cherryStairs/0.png b/front/public/images/small/BiomesOPlenty/cherryStairs/0.png deleted file mode 100644 index e897c0c2d3..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/cherryStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/chestplateAmethyst/0.png b/front/public/images/small/BiomesOPlenty/chestplateAmethyst/0.png deleted file mode 100644 index d3c1d7e58f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/chestplateAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/chestplateMud/0.png b/front/public/images/small/BiomesOPlenty/chestplateMud/0.png deleted file mode 100644 index 60af901183..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/chestplateMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/0.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves1/0.png deleted file mode 100644 index 2a6ad357e1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/1.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves1/1.png deleted file mode 100644 index b67ce97742..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/2.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves1/2.png deleted file mode 100644 index 99e8fae5d2..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/3.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves1/3.png deleted file mode 100644 index 81c3de3a59..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves1/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/0.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves2/0.png deleted file mode 100644 index 1a7dff3beb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/1.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves2/1.png deleted file mode 100644 index 6d125a6db5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/2.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves2/2.png deleted file mode 100644 index a20a77aa1f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/3.png b/front/public/images/small/BiomesOPlenty/colorizedLeaves2/3.png deleted file mode 100644 index 90f90c3270..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedLeaves2/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/0.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/0.png deleted file mode 100644 index cc4b1c9c76..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/1.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/1.png deleted file mode 100644 index f2d8c19ea4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/2.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/2.png deleted file mode 100644 index 64d0cd5aa6..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/3.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/3.png deleted file mode 100644 index 0c36749bc0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/4.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/4.png deleted file mode 100644 index cd15576075..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/5.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/5.png deleted file mode 100644 index 076070d685..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/6.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/6.png deleted file mode 100644 index 416c08efe8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/colorizedSaplings/7.png b/front/public/images/small/BiomesOPlenty/colorizedSaplings/7.png deleted file mode 100644 index 1e95841ca5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/colorizedSaplings/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/coral1/11.png b/front/public/images/small/BiomesOPlenty/coral1/11.png deleted file mode 100644 index 5144f4556b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/coral1/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/coral1/12.png b/front/public/images/small/BiomesOPlenty/coral1/12.png deleted file mode 100644 index 3195359897..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/coral1/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/coral1/13.png b/front/public/images/small/BiomesOPlenty/coral1/13.png deleted file mode 100644 index 44ff35839c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/coral1/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/coral1/14.png b/front/public/images/small/BiomesOPlenty/coral1/14.png deleted file mode 100644 index f3408b8360..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/coral1/14.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/coral1/15.png b/front/public/images/small/BiomesOPlenty/coral1/15.png deleted file mode 100644 index 3d43efb9d6..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/coral1/15.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/coral2/8.png b/front/public/images/small/BiomesOPlenty/coral2/8.png deleted file mode 100644 index b12b6298f4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/coral2/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/cragRock/0.png b/front/public/images/small/BiomesOPlenty/cragRock/0.png deleted file mode 100644 index 26bb462089..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/cragRock/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/crystal/0.png b/front/public/images/small/BiomesOPlenty/crystal/0.png deleted file mode 100644 index 5243fabc4e..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/crystal/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/darkStairs/0.png b/front/public/images/small/BiomesOPlenty/darkStairs/0.png deleted file mode 100644 index e5739cf85a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/darkStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/dart/0.png b/front/public/images/small/BiomesOPlenty/dart/0.png deleted file mode 100644 index f0aa5b7db8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/dart/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/dart/1.png b/front/public/images/small/BiomesOPlenty/dart/1.png deleted file mode 100644 index bb1c459ed1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/dart/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/dartBlower/0.png b/front/public/images/small/BiomesOPlenty/dartBlower/0.png deleted file mode 100644 index 41bf42fdb1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/dartBlower/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/driedDirt/0.png b/front/public/images/small/BiomesOPlenty/driedDirt/0.png deleted file mode 100644 index a37f9fc5a5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/driedDirt/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/enderporter/0.png b/front/public/images/small/BiomesOPlenty/enderporter/0.png deleted file mode 100644 index b7bb51e544..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/enderporter/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/etherealStairs/0.png b/front/public/images/small/BiomesOPlenty/etherealStairs/0.png deleted file mode 100644 index eb82520816..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/etherealStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/firStairs/0.png b/front/public/images/small/BiomesOPlenty/firStairs/0.png deleted file mode 100644 index 2c568cbf2d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/firStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flesh/0.png b/front/public/images/small/BiomesOPlenty/flesh/0.png deleted file mode 100644 index 7679484f1c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flesh/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flippers/0.png b/front/public/images/small/BiomesOPlenty/flippers/0.png deleted file mode 100644 index 41cceef2fc..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flippers/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowerBand/0.png b/front/public/images/small/BiomesOPlenty/flowerBand/0.png deleted file mode 100644 index 514b3f9007..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowerBand/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowerBand/1.png b/front/public/images/small/BiomesOPlenty/flowerBand/1.png deleted file mode 100644 index 0df46b3e31..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowerBand/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowerBand/2.png b/front/public/images/small/BiomesOPlenty/flowerBand/2.png deleted file mode 100644 index 73467e0306..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowerBand/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowerBand/3.png b/front/public/images/small/BiomesOPlenty/flowerBand/3.png deleted file mode 100644 index 99b67025ad..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowerBand/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowerVine/0.png b/front/public/images/small/BiomesOPlenty/flowerVine/0.png deleted file mode 100644 index bff9d84ce6..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowerVine/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/0.png b/front/public/images/small/BiomesOPlenty/flowers/0.png deleted file mode 100644 index 63e5d57d73..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/1.png b/front/public/images/small/BiomesOPlenty/flowers/1.png deleted file mode 100644 index af719397b4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/10.png b/front/public/images/small/BiomesOPlenty/flowers/10.png deleted file mode 100644 index ceb06cebfd..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/10.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/11.png b/front/public/images/small/BiomesOPlenty/flowers/11.png deleted file mode 100644 index 66a925acc4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/12.png b/front/public/images/small/BiomesOPlenty/flowers/12.png deleted file mode 100644 index 4667188540..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/13.png b/front/public/images/small/BiomesOPlenty/flowers/13.png deleted file mode 100644 index 380ec06374..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/15.png b/front/public/images/small/BiomesOPlenty/flowers/15.png deleted file mode 100644 index 9a3aaa2dbc..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/15.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/2.png b/front/public/images/small/BiomesOPlenty/flowers/2.png deleted file mode 100644 index 3a5ae07106..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/3.png b/front/public/images/small/BiomesOPlenty/flowers/3.png deleted file mode 100644 index c6920ae59e..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/4.png b/front/public/images/small/BiomesOPlenty/flowers/4.png deleted file mode 100644 index d51379ac87..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/5.png b/front/public/images/small/BiomesOPlenty/flowers/5.png deleted file mode 100644 index b74e1c1c23..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/6.png b/front/public/images/small/BiomesOPlenty/flowers/6.png deleted file mode 100644 index 8f34ea0d48..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/7.png b/front/public/images/small/BiomesOPlenty/flowers/7.png deleted file mode 100644 index fe36c024a8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/8.png b/front/public/images/small/BiomesOPlenty/flowers/8.png deleted file mode 100644 index 4c5f653e32..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers/9.png b/front/public/images/small/BiomesOPlenty/flowers/9.png deleted file mode 100644 index cff5c533a3..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers/9.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/0.png b/front/public/images/small/BiomesOPlenty/flowers2/0.png deleted file mode 100644 index bd19f6bada..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/1.png b/front/public/images/small/BiomesOPlenty/flowers2/1.png deleted file mode 100644 index eea5da3244..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/2.png b/front/public/images/small/BiomesOPlenty/flowers2/2.png deleted file mode 100644 index 928df375b5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/3.png b/front/public/images/small/BiomesOPlenty/flowers2/3.png deleted file mode 100644 index 609b66eb25..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/4.png b/front/public/images/small/BiomesOPlenty/flowers2/4.png deleted file mode 100644 index c8854d4057..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/5.png b/front/public/images/small/BiomesOPlenty/flowers2/5.png deleted file mode 100644 index ed4e2ef486..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/6.png b/front/public/images/small/BiomesOPlenty/flowers2/6.png deleted file mode 100644 index 87a2fa990a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/7.png b/front/public/images/small/BiomesOPlenty/flowers2/7.png deleted file mode 100644 index f978fadab8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/flowers2/8.png b/front/public/images/small/BiomesOPlenty/flowers2/8.png deleted file mode 100644 index 0c5915f71f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/flowers2/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/0.png b/front/public/images/small/BiomesOPlenty/foliage/0.png deleted file mode 100644 index bb2c200b2a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/1.png b/front/public/images/small/BiomesOPlenty/foliage/1.png deleted file mode 100644 index d6e74cfb63..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/10.png b/front/public/images/small/BiomesOPlenty/foliage/10.png deleted file mode 100644 index b067437fcc..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/10.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/11.png b/front/public/images/small/BiomesOPlenty/foliage/11.png deleted file mode 100644 index 456222e963..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/12.png b/front/public/images/small/BiomesOPlenty/foliage/12.png deleted file mode 100644 index 706049b8df..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/13.png b/front/public/images/small/BiomesOPlenty/foliage/13.png deleted file mode 100644 index 8820964d93..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/14.png b/front/public/images/small/BiomesOPlenty/foliage/14.png deleted file mode 100644 index 76a248f0bb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/14.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/15.png b/front/public/images/small/BiomesOPlenty/foliage/15.png deleted file mode 100644 index 564f5a0cd8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/15.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/2.png b/front/public/images/small/BiomesOPlenty/foliage/2.png deleted file mode 100644 index 9a6c578572..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/3.png b/front/public/images/small/BiomesOPlenty/foliage/3.png deleted file mode 100644 index 11c34b3b8d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/4.png b/front/public/images/small/BiomesOPlenty/foliage/4.png deleted file mode 100644 index 18e02e49cb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/5.png b/front/public/images/small/BiomesOPlenty/foliage/5.png deleted file mode 100644 index 125112eefd..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/7.png b/front/public/images/small/BiomesOPlenty/foliage/7.png deleted file mode 100644 index b9a79591ce..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/8.png b/front/public/images/small/BiomesOPlenty/foliage/8.png deleted file mode 100644 index 8b219c9e6b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/foliage/9.png b/front/public/images/small/BiomesOPlenty/foliage/9.png deleted file mode 100644 index db954161db..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/foliage/9.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/0.png b/front/public/images/small/BiomesOPlenty/food/0.png deleted file mode 100644 index 221feba9e1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/1.png b/front/public/images/small/BiomesOPlenty/food/1.png deleted file mode 100644 index 721f2a87bb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/10.png b/front/public/images/small/BiomesOPlenty/food/10.png deleted file mode 100644 index 20fac2872f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/10.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/11.png b/front/public/images/small/BiomesOPlenty/food/11.png deleted file mode 100644 index 49ab113773..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/12.png b/front/public/images/small/BiomesOPlenty/food/12.png deleted file mode 100644 index 3a4567489b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/13.png b/front/public/images/small/BiomesOPlenty/food/13.png deleted file mode 100644 index 39b5881c70..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/2.png b/front/public/images/small/BiomesOPlenty/food/2.png deleted file mode 100644 index c72de12a4c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/3.png b/front/public/images/small/BiomesOPlenty/food/3.png deleted file mode 100644 index 36b8b88040..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/4.png b/front/public/images/small/BiomesOPlenty/food/4.png deleted file mode 100644 index 23e2e23dd9..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/5.png b/front/public/images/small/BiomesOPlenty/food/5.png deleted file mode 100644 index dd7846461a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/6.png b/front/public/images/small/BiomesOPlenty/food/6.png deleted file mode 100644 index b26241017e..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/8.png b/front/public/images/small/BiomesOPlenty/food/8.png deleted file mode 100644 index 65b1020678..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/food/9.png b/front/public/images/small/BiomesOPlenty/food/9.png deleted file mode 100644 index bf671fb449..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/food/9.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/fruitBop/0.png b/front/public/images/small/BiomesOPlenty/fruitBop/0.png deleted file mode 100644 index 3f18e4bfc4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/fruitBop/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/fruitBop/1.png b/front/public/images/small/BiomesOPlenty/fruitBop/1.png deleted file mode 100644 index 1ef61186ba..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/fruitBop/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/fruitBop/2.png b/front/public/images/small/BiomesOPlenty/fruitBop/2.png deleted file mode 100644 index 729e2de075..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/fruitBop/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/fruitBop/3.png b/front/public/images/small/BiomesOPlenty/fruitBop/3.png deleted file mode 100644 index 4fc457f570..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/fruitBop/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/fruitBop/4.png b/front/public/images/small/BiomesOPlenty/fruitBop/4.png deleted file mode 100644 index 9e67f4813d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/fruitBop/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/0.png b/front/public/images/small/BiomesOPlenty/gemOre/0.png deleted file mode 100644 index 042b44b3b5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/1.png b/front/public/images/small/BiomesOPlenty/gemOre/1.png deleted file mode 100644 index c2df560e64..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/10.png b/front/public/images/small/BiomesOPlenty/gemOre/10.png deleted file mode 100644 index a2094fe155..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/10.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/11.png b/front/public/images/small/BiomesOPlenty/gemOre/11.png deleted file mode 100644 index d3b1971670..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/12.png b/front/public/images/small/BiomesOPlenty/gemOre/12.png deleted file mode 100644 index 3d3dffe738..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/13.png b/front/public/images/small/BiomesOPlenty/gemOre/13.png deleted file mode 100644 index 6152b76075..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/14.png b/front/public/images/small/BiomesOPlenty/gemOre/14.png deleted file mode 100644 index 20266c31bb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/14.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/15.png b/front/public/images/small/BiomesOPlenty/gemOre/15.png deleted file mode 100644 index 057c931691..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/15.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/2.png b/front/public/images/small/BiomesOPlenty/gemOre/2.png deleted file mode 100644 index 686f688324..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/3.png b/front/public/images/small/BiomesOPlenty/gemOre/3.png deleted file mode 100644 index 86df26e68c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/4.png b/front/public/images/small/BiomesOPlenty/gemOre/4.png deleted file mode 100644 index cfb47a7304..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/5.png b/front/public/images/small/BiomesOPlenty/gemOre/5.png deleted file mode 100644 index 71b62c5756..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/6.png b/front/public/images/small/BiomesOPlenty/gemOre/6.png deleted file mode 100644 index 27635670fd..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/7.png b/front/public/images/small/BiomesOPlenty/gemOre/7.png deleted file mode 100644 index a82f83bbfb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/8.png b/front/public/images/small/BiomesOPlenty/gemOre/8.png deleted file mode 100644 index cb37f7a3c1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gemOre/9.png b/front/public/images/small/BiomesOPlenty/gemOre/9.png deleted file mode 100644 index 5952f15a2d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gemOre/9.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/0.png b/front/public/images/small/BiomesOPlenty/gems/0.png deleted file mode 100644 index cd6439ccde..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/1.png b/front/public/images/small/BiomesOPlenty/gems/1.png deleted file mode 100644 index 0fabb2c3f5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/2.png b/front/public/images/small/BiomesOPlenty/gems/2.png deleted file mode 100644 index 470906c75f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/3.png b/front/public/images/small/BiomesOPlenty/gems/3.png deleted file mode 100644 index 079819363d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/4.png b/front/public/images/small/BiomesOPlenty/gems/4.png deleted file mode 100644 index 66192d8b85..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/5.png b/front/public/images/small/BiomesOPlenty/gems/5.png deleted file mode 100644 index 004de33dcb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/6.png b/front/public/images/small/BiomesOPlenty/gems/6.png deleted file mode 100644 index d6e8343883..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/gems/7.png b/front/public/images/small/BiomesOPlenty/gems/7.png deleted file mode 100644 index d9b2f4957d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/gems/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/grave/0.png b/front/public/images/small/BiomesOPlenty/grave/0.png deleted file mode 100644 index cf0d34a7b3..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/grave/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hardDirt/0.png b/front/public/images/small/BiomesOPlenty/hardDirt/0.png deleted file mode 100644 index 2bd86da5da..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hardDirt/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hardIce/0.png b/front/public/images/small/BiomesOPlenty/hardIce/0.png deleted file mode 100644 index a17e53cfba..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hardIce/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hardSand/0.png b/front/public/images/small/BiomesOPlenty/hardSand/0.png deleted file mode 100644 index 7c52d50911..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hardSand/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hellBarkStairs/0.png b/front/public/images/small/BiomesOPlenty/hellBarkStairs/0.png deleted file mode 100644 index 3c1ce31c0b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hellBarkStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hell_blood/0.png b/front/public/images/small/BiomesOPlenty/hell_blood/0.png deleted file mode 100644 index e9d064a1fc..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hell_blood/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/helmetAmethyst/0.png b/front/public/images/small/BiomesOPlenty/helmetAmethyst/0.png deleted file mode 100644 index b7c6a1d71a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/helmetAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/helmetMud/0.png b/front/public/images/small/BiomesOPlenty/helmetMud/0.png deleted file mode 100644 index 4f4f4ff9a6..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/helmetMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hive/0.png b/front/public/images/small/BiomesOPlenty/hive/0.png deleted file mode 100644 index ec62c3f0c7..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hive/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hive/1.png b/front/public/images/small/BiomesOPlenty/hive/1.png deleted file mode 100644 index 8fd0f62bec..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hive/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hive/2.png b/front/public/images/small/BiomesOPlenty/hive/2.png deleted file mode 100644 index 6f19be090a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hive/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hive/3.png b/front/public/images/small/BiomesOPlenty/hive/3.png deleted file mode 100644 index ab52adc90f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hive/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hoeAmethyst/0.png b/front/public/images/small/BiomesOPlenty/hoeAmethyst/0.png deleted file mode 100644 index 9ccb6231b2..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hoeAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/hoeMud/0.png b/front/public/images/small/BiomesOPlenty/hoeMud/0.png deleted file mode 100644 index 857b089e49..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/hoeMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/honey/0.png b/front/public/images/small/BiomesOPlenty/honey/0.png deleted file mode 100644 index 22f11cdc33..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/honey/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/honeyBlock/0.png b/front/public/images/small/BiomesOPlenty/honeyBlock/0.png deleted file mode 100644 index d46030e8f0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/honeyBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/ivy/0.png b/front/public/images/small/BiomesOPlenty/ivy/0.png deleted file mode 100644 index 4336d8e4ba..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/ivy/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/jacarandaStairs/0.png b/front/public/images/small/BiomesOPlenty/jacarandaStairs/0.png deleted file mode 100644 index f3b63d6e2d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/jacarandaStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/jarEmpty/0.png b/front/public/images/small/BiomesOPlenty/jarEmpty/0.png deleted file mode 100644 index 48585b31aa..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/jarEmpty/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/jarFilled/0.png b/front/public/images/small/BiomesOPlenty/jarFilled/0.png deleted file mode 100644 index 839f034cbf..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/jarFilled/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/jarFilled/1.png b/front/public/images/small/BiomesOPlenty/jarFilled/1.png deleted file mode 100644 index fc20a9223a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/jarFilled/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/jarFilled/2.png b/front/public/images/small/BiomesOPlenty/jarFilled/2.png deleted file mode 100644 index 732f859d84..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/jarFilled/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves1/0.png b/front/public/images/small/BiomesOPlenty/leaves1/0.png deleted file mode 100644 index dfb59a7def..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves1/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves1/1.png b/front/public/images/small/BiomesOPlenty/leaves1/1.png deleted file mode 100644 index 9a081887c3..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves1/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves1/2.png b/front/public/images/small/BiomesOPlenty/leaves1/2.png deleted file mode 100644 index 62385a968a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves1/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves1/3.png b/front/public/images/small/BiomesOPlenty/leaves1/3.png deleted file mode 100644 index 282a7e59e1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves1/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves2/0.png b/front/public/images/small/BiomesOPlenty/leaves2/0.png deleted file mode 100644 index add7626032..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves2/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves2/1.png b/front/public/images/small/BiomesOPlenty/leaves2/1.png deleted file mode 100644 index 769ca88d97..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves2/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves2/2.png b/front/public/images/small/BiomesOPlenty/leaves2/2.png deleted file mode 100644 index e79fddb105..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves2/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves2/3.png b/front/public/images/small/BiomesOPlenty/leaves2/3.png deleted file mode 100644 index 8b9173fd0f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves2/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves3/0.png b/front/public/images/small/BiomesOPlenty/leaves3/0.png deleted file mode 100644 index 70ac4db7fe..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves3/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves3/1.png b/front/public/images/small/BiomesOPlenty/leaves3/1.png deleted file mode 100644 index c6e6ee2fa6..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves3/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves3/2.png b/front/public/images/small/BiomesOPlenty/leaves3/2.png deleted file mode 100644 index 322310dbb0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves3/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves3/3.png b/front/public/images/small/BiomesOPlenty/leaves3/3.png deleted file mode 100644 index f052ffbb18..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves3/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves4/0.png b/front/public/images/small/BiomesOPlenty/leaves4/0.png deleted file mode 100644 index bd4f30f2e1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves4/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leaves4/1.png b/front/public/images/small/BiomesOPlenty/leaves4/1.png deleted file mode 100644 index 3d89a1f8f0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leaves4/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leggingsAmethyst/0.png b/front/public/images/small/BiomesOPlenty/leggingsAmethyst/0.png deleted file mode 100644 index 69978b65a5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leggingsAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/leggingsMud/0.png b/front/public/images/small/BiomesOPlenty/leggingsMud/0.png deleted file mode 100644 index 9615096da6..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/leggingsMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/lilyBop/0.png b/front/public/images/small/BiomesOPlenty/lilyBop/0.png deleted file mode 100644 index 685087f7f7..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/lilyBop/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/lilyBop/1.png b/front/public/images/small/BiomesOPlenty/lilyBop/1.png deleted file mode 100644 index b9a7ae18bc..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/lilyBop/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/lilyBop/2.png b/front/public/images/small/BiomesOPlenty/lilyBop/2.png deleted file mode 100644 index 316664f128..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/lilyBop/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs1/0.png b/front/public/images/small/BiomesOPlenty/logs1/0.png deleted file mode 100644 index 038b77bcbd..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs1/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs1/1.png b/front/public/images/small/BiomesOPlenty/logs1/1.png deleted file mode 100644 index e9b2002e03..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs1/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs1/2.png b/front/public/images/small/BiomesOPlenty/logs1/2.png deleted file mode 100644 index 33f5c8fc51..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs1/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs1/3.png b/front/public/images/small/BiomesOPlenty/logs1/3.png deleted file mode 100644 index 14f2a17d9d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs1/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs2/0.png b/front/public/images/small/BiomesOPlenty/logs2/0.png deleted file mode 100644 index 301f1cb1af..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs2/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs2/1.png b/front/public/images/small/BiomesOPlenty/logs2/1.png deleted file mode 100644 index e64a393b8f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs2/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs2/2.png b/front/public/images/small/BiomesOPlenty/logs2/2.png deleted file mode 100644 index d620d725a4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs2/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs2/3.png b/front/public/images/small/BiomesOPlenty/logs2/3.png deleted file mode 100644 index 7293a1597b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs2/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs3/0.png b/front/public/images/small/BiomesOPlenty/logs3/0.png deleted file mode 100644 index 313cad69c1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs3/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs3/1.png b/front/public/images/small/BiomesOPlenty/logs3/1.png deleted file mode 100644 index 039a04b345..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs3/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs3/2.png b/front/public/images/small/BiomesOPlenty/logs3/2.png deleted file mode 100644 index 214b38e233..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs3/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs3/3.png b/front/public/images/small/BiomesOPlenty/logs3/3.png deleted file mode 100644 index 6c39f953fe..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs3/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs4/0.png b/front/public/images/small/BiomesOPlenty/logs4/0.png deleted file mode 100644 index d09c7f1f7d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs4/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs4/1.png b/front/public/images/small/BiomesOPlenty/logs4/1.png deleted file mode 100644 index 4a81274042..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs4/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs4/2.png b/front/public/images/small/BiomesOPlenty/logs4/2.png deleted file mode 100644 index 897de2712c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs4/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/logs4/3.png b/front/public/images/small/BiomesOPlenty/logs4/3.png deleted file mode 100644 index 441cc49073..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/logs4/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/longGrass/0.png b/front/public/images/small/BiomesOPlenty/longGrass/0.png deleted file mode 100644 index a0ebfe643f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/longGrass/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/magicStairs/0.png b/front/public/images/small/BiomesOPlenty/magicStairs/0.png deleted file mode 100644 index b4887f75e4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/magicStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mahoganyStairs/0.png b/front/public/images/small/BiomesOPlenty/mahoganyStairs/0.png deleted file mode 100644 index 1883b53e47..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mahoganyStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mangroveStairs/0.png b/front/public/images/small/BiomesOPlenty/mangroveStairs/0.png deleted file mode 100644 index 4ef45d02a3..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mangroveStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/0.png b/front/public/images/small/BiomesOPlenty/misc/0.png deleted file mode 100644 index e60f7427ed..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/1.png b/front/public/images/small/BiomesOPlenty/misc/1.png deleted file mode 100644 index 99e9d82f7a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/10.png b/front/public/images/small/BiomesOPlenty/misc/10.png deleted file mode 100644 index c695ba498e..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/10.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/11.png b/front/public/images/small/BiomesOPlenty/misc/11.png deleted file mode 100644 index 794154cfe0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/12.png b/front/public/images/small/BiomesOPlenty/misc/12.png deleted file mode 100644 index c74cd2fe5a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/13.png b/front/public/images/small/BiomesOPlenty/misc/13.png deleted file mode 100644 index 1f9c701879..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/2.png b/front/public/images/small/BiomesOPlenty/misc/2.png deleted file mode 100644 index d9b0e0038a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/3.png b/front/public/images/small/BiomesOPlenty/misc/3.png deleted file mode 100644 index 034bc21513..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/4.png b/front/public/images/small/BiomesOPlenty/misc/4.png deleted file mode 100644 index 5b36f33d00..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/5.png b/front/public/images/small/BiomesOPlenty/misc/5.png deleted file mode 100644 index 08d0bdcaea..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/6.png b/front/public/images/small/BiomesOPlenty/misc/6.png deleted file mode 100644 index d210053e79..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/7.png b/front/public/images/small/BiomesOPlenty/misc/7.png deleted file mode 100644 index 8a0b07bcdf..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/8.png b/front/public/images/small/BiomesOPlenty/misc/8.png deleted file mode 100644 index 6855471e54..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/misc/9.png b/front/public/images/small/BiomesOPlenty/misc/9.png deleted file mode 100644 index 2d3feb1931..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/misc/9.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/moss/0.png b/front/public/images/small/BiomesOPlenty/moss/0.png deleted file mode 100644 index 79f1f30231..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/moss/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mud/0.png b/front/public/images/small/BiomesOPlenty/mud/0.png deleted file mode 100644 index c36269ebb9..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mud/1.png b/front/public/images/small/BiomesOPlenty/mud/1.png deleted file mode 100644 index 7eeda3d2ac..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mud/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mudBricks/0.png b/front/public/images/small/BiomesOPlenty/mudBricks/0.png deleted file mode 100644 index bf718ebab0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mudBricks/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mudBricksStairs/0.png b/front/public/images/small/BiomesOPlenty/mudBricksStairs/0.png deleted file mode 100644 index a1f17a6b6f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mudBricksStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mudball/0.png b/front/public/images/small/BiomesOPlenty/mudball/0.png deleted file mode 100644 index cfafb3f444..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mudball/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mushrooms/0.png b/front/public/images/small/BiomesOPlenty/mushrooms/0.png deleted file mode 100644 index 59df328ae5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mushrooms/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mushrooms/1.png b/front/public/images/small/BiomesOPlenty/mushrooms/1.png deleted file mode 100644 index d33beb219a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mushrooms/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mushrooms/2.png b/front/public/images/small/BiomesOPlenty/mushrooms/2.png deleted file mode 100644 index d004f69ae8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mushrooms/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mushrooms/3.png b/front/public/images/small/BiomesOPlenty/mushrooms/3.png deleted file mode 100644 index f1ce9a7a62..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mushrooms/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mushrooms/4.png b/front/public/images/small/BiomesOPlenty/mushrooms/4.png deleted file mode 100644 index 382e0feb07..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mushrooms/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/mushrooms/5.png b/front/public/images/small/BiomesOPlenty/mushrooms/5.png deleted file mode 100644 index 13c4443be6..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/mushrooms/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopDirt/0.png b/front/public/images/small/BiomesOPlenty/newBopDirt/0.png deleted file mode 100644 index 470c2b119a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopDirt/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopDirt/1.png b/front/public/images/small/BiomesOPlenty/newBopDirt/1.png deleted file mode 100644 index 9577dfc12b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopDirt/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopDirt/2.png b/front/public/images/small/BiomesOPlenty/newBopDirt/2.png deleted file mode 100644 index c99a6a5027..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopDirt/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopDirt/3.png b/front/public/images/small/BiomesOPlenty/newBopDirt/3.png deleted file mode 100644 index 596a83e348..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopDirt/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopDirt/4.png b/front/public/images/small/BiomesOPlenty/newBopDirt/4.png deleted file mode 100644 index 677c6794ec..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopDirt/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopDirt/5.png b/front/public/images/small/BiomesOPlenty/newBopDirt/5.png deleted file mode 100644 index 32868bc3a5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopDirt/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopFarmland/0.png b/front/public/images/small/BiomesOPlenty/newBopFarmland/0.png deleted file mode 100644 index 5e05983167..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopFarmland/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopFarmland/1.png b/front/public/images/small/BiomesOPlenty/newBopFarmland/1.png deleted file mode 100644 index c9dd0b8a6f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopFarmland/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopFarmland/2.png b/front/public/images/small/BiomesOPlenty/newBopFarmland/2.png deleted file mode 100644 index eab7401114..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopFarmland/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopFarmland/3.png b/front/public/images/small/BiomesOPlenty/newBopFarmland/3.png deleted file mode 100644 index 5e05983167..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopFarmland/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopFarmland/4.png b/front/public/images/small/BiomesOPlenty/newBopFarmland/4.png deleted file mode 100644 index 5e05983167..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopFarmland/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopFarmland/5.png b/front/public/images/small/BiomesOPlenty/newBopFarmland/5.png deleted file mode 100644 index 5e05983167..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopFarmland/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopGrass/0.png b/front/public/images/small/BiomesOPlenty/newBopGrass/0.png deleted file mode 100644 index 9f97202876..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopGrass/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopGrass/1.png b/front/public/images/small/BiomesOPlenty/newBopGrass/1.png deleted file mode 100644 index d210b81135..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopGrass/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/newBopGrass/2.png b/front/public/images/small/BiomesOPlenty/newBopGrass/2.png deleted file mode 100644 index 34bf98e3c5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/newBopGrass/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/originGrass/0.png b/front/public/images/small/BiomesOPlenty/originGrass/0.png deleted file mode 100644 index 8c3fb12fc7..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/originGrass/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/overgrownNetherrack/0.png b/front/public/images/small/BiomesOPlenty/overgrownNetherrack/0.png deleted file mode 100644 index 4f380bc1d0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/overgrownNetherrack/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/palmStairs/0.png b/front/public/images/small/BiomesOPlenty/palmStairs/0.png deleted file mode 100644 index 0a69a733d2..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/palmStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/persimmonLeaves/0.png b/front/public/images/small/BiomesOPlenty/persimmonLeaves/0.png deleted file mode 100644 index f46ca51901..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/persimmonLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/petals/0.png b/front/public/images/small/BiomesOPlenty/petals/0.png deleted file mode 100644 index 19245de502..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/petals/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/petals/1.png b/front/public/images/small/BiomesOPlenty/petals/1.png deleted file mode 100644 index 513aae39d0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/petals/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/pickaxeAmethyst/0.png b/front/public/images/small/BiomesOPlenty/pickaxeAmethyst/0.png deleted file mode 100644 index 3a9474a02a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/pickaxeAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/pickaxeMud/0.png b/front/public/images/small/BiomesOPlenty/pickaxeMud/0.png deleted file mode 100644 index 0c5773da9d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/pickaxeMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/pineStairs/0.png b/front/public/images/small/BiomesOPlenty/pineStairs/0.png deleted file mode 100644 index 59e5d86b24..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/pineStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/0.png b/front/public/images/small/BiomesOPlenty/planks/0.png deleted file mode 100644 index 8fdbb911eb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/1.png b/front/public/images/small/BiomesOPlenty/planks/1.png deleted file mode 100644 index 8badc77d14..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/10.png b/front/public/images/small/BiomesOPlenty/planks/10.png deleted file mode 100644 index cee3397666..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/10.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/11.png b/front/public/images/small/BiomesOPlenty/planks/11.png deleted file mode 100644 index 9bfe4296db..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/12.png b/front/public/images/small/BiomesOPlenty/planks/12.png deleted file mode 100644 index 6cb25c4994..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/13.png b/front/public/images/small/BiomesOPlenty/planks/13.png deleted file mode 100644 index 571296491a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/14.png b/front/public/images/small/BiomesOPlenty/planks/14.png deleted file mode 100644 index 6f08a8b238..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/14.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/2.png b/front/public/images/small/BiomesOPlenty/planks/2.png deleted file mode 100644 index be5d49a74d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/3.png b/front/public/images/small/BiomesOPlenty/planks/3.png deleted file mode 100644 index 8916bc7bcf..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/4.png b/front/public/images/small/BiomesOPlenty/planks/4.png deleted file mode 100644 index 30e477fabe..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/5.png b/front/public/images/small/BiomesOPlenty/planks/5.png deleted file mode 100644 index 9bc34ab12c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/6.png b/front/public/images/small/BiomesOPlenty/planks/6.png deleted file mode 100644 index 4a2185fc0c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/7.png b/front/public/images/small/BiomesOPlenty/planks/7.png deleted file mode 100644 index 77df68ce89..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/8.png b/front/public/images/small/BiomesOPlenty/planks/8.png deleted file mode 100644 index 2af0d7ac09..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/planks/9.png b/front/public/images/small/BiomesOPlenty/planks/9.png deleted file mode 100644 index 0d80bdca29..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/planks/9.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/0.png b/front/public/images/small/BiomesOPlenty/plants/0.png deleted file mode 100644 index 14f7f47d57..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/1.png b/front/public/images/small/BiomesOPlenty/plants/1.png deleted file mode 100644 index e19aa1327a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/12.png b/front/public/images/small/BiomesOPlenty/plants/12.png deleted file mode 100644 index e0b8da3f8c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/13.png b/front/public/images/small/BiomesOPlenty/plants/13.png deleted file mode 100644 index 1954e0841c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/14.png b/front/public/images/small/BiomesOPlenty/plants/14.png deleted file mode 100644 index 2c6af40f0c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/14.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/15.png b/front/public/images/small/BiomesOPlenty/plants/15.png deleted file mode 100644 index be7b3a5e84..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/15.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/2.png b/front/public/images/small/BiomesOPlenty/plants/2.png deleted file mode 100644 index 18df4ecd24..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/3.png b/front/public/images/small/BiomesOPlenty/plants/3.png deleted file mode 100644 index 4acd399dea..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/4.png b/front/public/images/small/BiomesOPlenty/plants/4.png deleted file mode 100644 index 89ca7ed8db..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/5.png b/front/public/images/small/BiomesOPlenty/plants/5.png deleted file mode 100644 index 313eb80d30..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/6.png b/front/public/images/small/BiomesOPlenty/plants/6.png deleted file mode 100644 index afc0a84451..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/7.png b/front/public/images/small/BiomesOPlenty/plants/7.png deleted file mode 100644 index 96f7b43428..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/plants/8.png b/front/public/images/small/BiomesOPlenty/plants/8.png deleted file mode 100644 index d20e2d2ec9..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/plants/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/poison/0.png b/front/public/images/small/BiomesOPlenty/poison/0.png deleted file mode 100644 index 8cfe5ab2fb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/poison/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/record_corruption/0.png b/front/public/images/small/BiomesOPlenty/record_corruption/0.png deleted file mode 100644 index dd2a2946bc..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/record_corruption/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/record_wanderer/0.png b/front/public/images/small/BiomesOPlenty/record_wanderer/0.png deleted file mode 100644 index 58c1722a6a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/record_wanderer/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/redwoodStairs/0.png b/front/public/images/small/BiomesOPlenty/redwoodStairs/0.png deleted file mode 100644 index 99e204b62f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/redwoodStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/rocks/0.png b/front/public/images/small/BiomesOPlenty/rocks/0.png deleted file mode 100644 index 148c1fd223..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/rocks/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/rocks/1.png b/front/public/images/small/BiomesOPlenty/rocks/1.png deleted file mode 100644 index de037e07e1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/rocks/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/rocks/2.png b/front/public/images/small/BiomesOPlenty/rocks/2.png deleted file mode 100644 index 5c8cb9f7cf..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/rocks/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/rocks/3.png b/front/public/images/small/BiomesOPlenty/rocks/3.png deleted file mode 100644 index 7f1147eb78..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/rocks/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/rocks/4.png b/front/public/images/small/BiomesOPlenty/rocks/4.png deleted file mode 100644 index ca4e1960ff..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/rocks/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/rocks/5.png b/front/public/images/small/BiomesOPlenty/rocks/5.png deleted file mode 100644 index ed41653121..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/rocks/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/sacredoakStairs/0.png b/front/public/images/small/BiomesOPlenty/sacredoakStairs/0.png deleted file mode 100644 index fcee66f47f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/sacredoakStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/0.png b/front/public/images/small/BiomesOPlenty/saplings/0.png deleted file mode 100644 index 4f956247d8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/1.png b/front/public/images/small/BiomesOPlenty/saplings/1.png deleted file mode 100644 index 95993601ce..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/10.png b/front/public/images/small/BiomesOPlenty/saplings/10.png deleted file mode 100644 index e3240a1667..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/10.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/11.png b/front/public/images/small/BiomesOPlenty/saplings/11.png deleted file mode 100644 index 072843831f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/11.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/12.png b/front/public/images/small/BiomesOPlenty/saplings/12.png deleted file mode 100644 index 641be72bf1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/12.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/13.png b/front/public/images/small/BiomesOPlenty/saplings/13.png deleted file mode 100644 index 03f94b5be1..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/13.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/14.png b/front/public/images/small/BiomesOPlenty/saplings/14.png deleted file mode 100644 index 4f9a155277..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/14.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/15.png b/front/public/images/small/BiomesOPlenty/saplings/15.png deleted file mode 100644 index a2d6a6c8b5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/15.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/2.png b/front/public/images/small/BiomesOPlenty/saplings/2.png deleted file mode 100644 index 5739850ac5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/3.png b/front/public/images/small/BiomesOPlenty/saplings/3.png deleted file mode 100644 index b5066c2494..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/4.png b/front/public/images/small/BiomesOPlenty/saplings/4.png deleted file mode 100644 index f697d4816b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/5.png b/front/public/images/small/BiomesOPlenty/saplings/5.png deleted file mode 100644 index bdc0584b63..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/6.png b/front/public/images/small/BiomesOPlenty/saplings/6.png deleted file mode 100644 index a6eeec9647..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/7.png b/front/public/images/small/BiomesOPlenty/saplings/7.png deleted file mode 100644 index 409b142ed8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/8.png b/front/public/images/small/BiomesOPlenty/saplings/8.png deleted file mode 100644 index 2e25d7867c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/8.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/saplings/9.png b/front/public/images/small/BiomesOPlenty/saplings/9.png deleted file mode 100644 index d14479c231..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/saplings/9.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/scytheAmethyst/0.png b/front/public/images/small/BiomesOPlenty/scytheAmethyst/0.png deleted file mode 100644 index 8dbb91dc4a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/scytheAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/scytheDiamond/0.png b/front/public/images/small/BiomesOPlenty/scytheDiamond/0.png deleted file mode 100644 index fa3f9f7505..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/scytheDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/scytheGold/0.png b/front/public/images/small/BiomesOPlenty/scytheGold/0.png deleted file mode 100644 index 6beaea948e..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/scytheGold/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/scytheIron/0.png b/front/public/images/small/BiomesOPlenty/scytheIron/0.png deleted file mode 100644 index 5cecc6d302..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/scytheIron/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/scytheMud/0.png b/front/public/images/small/BiomesOPlenty/scytheMud/0.png deleted file mode 100644 index 93d68c464b..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/scytheMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/scytheStone/0.png b/front/public/images/small/BiomesOPlenty/scytheStone/0.png deleted file mode 100644 index 9191e5e159..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/scytheStone/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/scytheWood/0.png b/front/public/images/small/BiomesOPlenty/scytheWood/0.png deleted file mode 100644 index 4ce83f986f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/scytheWood/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/shovelAmethyst/0.png b/front/public/images/small/BiomesOPlenty/shovelAmethyst/0.png deleted file mode 100644 index ca1916a9c8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/shovelAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/shovelMud/0.png b/front/public/images/small/BiomesOPlenty/shovelMud/0.png deleted file mode 100644 index e052794e7d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/shovelMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/stoneDoubleSlab/0.png b/front/public/images/small/BiomesOPlenty/stoneDoubleSlab/0.png deleted file mode 100644 index bf718ebab0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/stoneDoubleSlab/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/stoneFormations/0.png b/front/public/images/small/BiomesOPlenty/stoneFormations/0.png deleted file mode 100644 index 4e1bfb7838..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/stoneFormations/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/stoneFormations/1.png b/front/public/images/small/BiomesOPlenty/stoneFormations/1.png deleted file mode 100644 index 58afa2e03c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/stoneFormations/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/stoneSingleSlab/0.png b/front/public/images/small/BiomesOPlenty/stoneSingleSlab/0.png deleted file mode 100644 index 964118acaa..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/stoneSingleSlab/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/swordAmethyst/0.png b/front/public/images/small/BiomesOPlenty/swordAmethyst/0.png deleted file mode 100644 index 1cadf0889a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/swordAmethyst/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/swordMud/0.png b/front/public/images/small/BiomesOPlenty/swordMud/0.png deleted file mode 100644 index 2b4912abf2..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/swordMud/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/treeMoss/0.png b/front/public/images/small/BiomesOPlenty/treeMoss/0.png deleted file mode 100644 index 0fda1d3d89..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/treeMoss/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/turnip/0.png b/front/public/images/small/BiomesOPlenty/turnip/0.png deleted file mode 100644 index 83059887e4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/turnip/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/turnipSeeds/0.png b/front/public/images/small/BiomesOPlenty/turnipSeeds/0.png deleted file mode 100644 index 26e4370ef7..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/turnipSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/wadingBoots/0.png b/front/public/images/small/BiomesOPlenty/wadingBoots/0.png deleted file mode 100644 index d55889f6d7..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/wadingBoots/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/willow/0.png b/front/public/images/small/BiomesOPlenty/willow/0.png deleted file mode 100644 index 33741d3fa5..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/willow/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/willowStairs/0.png b/front/public/images/small/BiomesOPlenty/willowStairs/0.png deleted file mode 100644 index 658404e27f..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/willowStairs/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/wisteria/0.png b/front/public/images/small/BiomesOPlenty/wisteria/0.png deleted file mode 100644 index 3948d515df..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/wisteria/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/0.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/0.png deleted file mode 100644 index 8fdbb911eb..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/1.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/1.png deleted file mode 100644 index 8badc77d14..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/2.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/2.png deleted file mode 100644 index be5d49a74d..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/3.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/3.png deleted file mode 100644 index 8916bc7bcf..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/4.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/4.png deleted file mode 100644 index 30e477fabe..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/5.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/5.png deleted file mode 100644 index 9bc34ab12c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/6.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/6.png deleted file mode 100644 index 4a2185fc0c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/7.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/7.png deleted file mode 100644 index 77df68ce89..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab1/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/0.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/0.png deleted file mode 100644 index 2af0d7ac09..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/1.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/1.png deleted file mode 100644 index 0d80bdca29..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/2.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/2.png deleted file mode 100644 index 9bfe4296db..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/3.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/3.png deleted file mode 100644 index 6cb25c4994..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/4.png b/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/4.png deleted file mode 100644 index 571296491a..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenDoubleSlab2/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/0.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/0.png deleted file mode 100644 index ccaed2eac8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/1.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/1.png deleted file mode 100644 index 34a2b413c3..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/2.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/2.png deleted file mode 100644 index 8ceb72a9f2..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/3.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/3.png deleted file mode 100644 index 1fc9f57fe4..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/4.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/4.png deleted file mode 100644 index 68cef5e0b9..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/4.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/5.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/5.png deleted file mode 100644 index 34f7f75fb8..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/5.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/6.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/6.png deleted file mode 100644 index 2ec73ebec3..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/6.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/7.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/7.png deleted file mode 100644 index 70623406d0..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab1/7.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/0.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/0.png deleted file mode 100644 index 9b35336917..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/0.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/1.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/1.png deleted file mode 100644 index fcabe5aa3c..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/1.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/2.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/2.png deleted file mode 100644 index 2f54db8333..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/2.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/3.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/3.png deleted file mode 100644 index 0013de0e61..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/3.png and /dev/null differ diff --git a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/4.png b/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/4.png deleted file mode 100644 index 325a8ac786..0000000000 Binary files a/front/public/images/small/BiomesOPlenty/woodenSingleSlab2/4.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/amorphic_catalyst/0.png b/front/public/images/small/BloodArsenal/amorphic_catalyst/0.png deleted file mode 100644 index 58bdeb047b..0000000000 Binary files a/front/public/images/small/BloodArsenal/amorphic_catalyst/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/block_burned_string/0.png b/front/public/images/small/BloodArsenal/block_burned_string/0.png deleted file mode 100644 index f21f1a3fde..0000000000 Binary files a/front/public/images/small/BloodArsenal/block_burned_string/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_burned_string/0.png b/front/public/images/small/BloodArsenal/blood_burned_string/0.png deleted file mode 100644 index 972ba3b50e..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_burned_string/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_cake/0.png b/front/public/images/small/BloodArsenal/blood_cake/0.png deleted file mode 100644 index 75cf3b0d37..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_cake/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_cookie/0.png b/front/public/images/small/BloodArsenal/blood_cookie/0.png deleted file mode 100644 index 6ecc8cf599..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_cookie/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_diamond/0.png b/front/public/images/small/BloodArsenal/blood_diamond/0.png deleted file mode 100644 index 5b3b449bb7..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_axe_diamond/0.png b/front/public/images/small/BloodArsenal/blood_infused_axe_diamond/0.png deleted file mode 100644 index 717ad5e59a..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_axe_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_axe_iron/0.png b/front/public/images/small/BloodArsenal/blood_infused_axe_iron/0.png deleted file mode 100644 index f028f9398d..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_axe_iron/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_axe_wood/0.png b/front/public/images/small/BloodArsenal/blood_infused_axe_wood/0.png deleted file mode 100644 index 3a31db2b55..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_axe_wood/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_diamond_active/0.png b/front/public/images/small/BloodArsenal/blood_infused_diamond_active/0.png deleted file mode 100644 index ea344422ef..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_diamond_active/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_diamond_block/0.png b/front/public/images/small/BloodArsenal/blood_infused_diamond_block/0.png deleted file mode 100644 index d4f101ea7b..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_diamond_block/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_diamond_bound/0.png b/front/public/images/small/BloodArsenal/blood_infused_diamond_bound/0.png deleted file mode 100644 index 2ec3588160..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_diamond_bound/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_diamond_unactive/0.png b/front/public/images/small/BloodArsenal/blood_infused_diamond_unactive/0.png deleted file mode 100644 index 2fb0c8d346..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_diamond_unactive/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_glowstone/0.png b/front/public/images/small/BloodArsenal/blood_infused_glowstone/0.png deleted file mode 100644 index 9588f3d980..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_glowstone/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_glowstone_dust/0.png b/front/public/images/small/BloodArsenal/blood_infused_glowstone_dust/0.png deleted file mode 100644 index 9a5bf1f11f..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_glowstone_dust/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_iron/0.png b/front/public/images/small/BloodArsenal/blood_infused_iron/0.png deleted file mode 100644 index 55b0dd73a0..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_iron/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_iron_block/0.png b/front/public/images/small/BloodArsenal/blood_infused_iron_block/0.png deleted file mode 100644 index 7fe257cae3..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_iron_block/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_pickaxe_diamond/0.png b/front/public/images/small/BloodArsenal/blood_infused_pickaxe_diamond/0.png deleted file mode 100644 index f60100b86c..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_pickaxe_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_pickaxe_iron/0.png b/front/public/images/small/BloodArsenal/blood_infused_pickaxe_iron/0.png deleted file mode 100644 index 3855270f5e..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_pickaxe_iron/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_pickaxe_wood/0.png b/front/public/images/small/BloodArsenal/blood_infused_pickaxe_wood/0.png deleted file mode 100644 index b1dc61c08b..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_pickaxe_wood/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_planks/0.png b/front/public/images/small/BloodArsenal/blood_infused_planks/0.png deleted file mode 100644 index f4ca019a55..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_planks/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_shovel_diamond/0.png b/front/public/images/small/BloodArsenal/blood_infused_shovel_diamond/0.png deleted file mode 100644 index ca77f2978c..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_shovel_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_shovel_iron/0.png b/front/public/images/small/BloodArsenal/blood_infused_shovel_iron/0.png deleted file mode 100644 index 077070faa2..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_shovel_iron/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_shovel_wood/0.png b/front/public/images/small/BloodArsenal/blood_infused_shovel_wood/0.png deleted file mode 100644 index afaf48d58b..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_shovel_wood/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_stick/0.png b/front/public/images/small/BloodArsenal/blood_infused_stick/0.png deleted file mode 100644 index d1c28476fb..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_stick/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_sword_diamond/0.png b/front/public/images/small/BloodArsenal/blood_infused_sword_diamond/0.png deleted file mode 100644 index 859a53375c..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_sword_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_sword_iron/0.png b/front/public/images/small/BloodArsenal/blood_infused_sword_iron/0.png deleted file mode 100644 index f4ced7c5ea..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_sword_iron/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_sword_wood/0.png b/front/public/images/small/BloodArsenal/blood_infused_sword_wood/0.png deleted file mode 100644 index 1a7d767207..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_sword_wood/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_infused_wood/0.png b/front/public/images/small/BloodArsenal/blood_infused_wood/0.png deleted file mode 100644 index a2bcd6924a..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_infused_wood/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_lamp/0.png b/front/public/images/small/BloodArsenal/blood_lamp/0.png deleted file mode 100644 index 0a589ee910..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_lamp/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_money/0.png b/front/public/images/small/BloodArsenal/blood_money/0.png deleted file mode 100644 index a10dcedadd..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_money/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_money/1.png b/front/public/images/small/BloodArsenal/blood_money/1.png deleted file mode 100644 index 8394c10a07..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_money/1.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_money/2.png b/front/public/images/small/BloodArsenal/blood_money/2.png deleted file mode 100644 index 62be4ac701..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_money/2.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_money/3.png b/front/public/images/small/BloodArsenal/blood_money/3.png deleted file mode 100644 index 53eea55592..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_money/3.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_orange/0.png b/front/public/images/small/BloodArsenal/blood_orange/0.png deleted file mode 100644 index f87dfa8d14..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_orange/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stained_glass/0.png b/front/public/images/small/BloodArsenal/blood_stained_glass/0.png deleted file mode 100644 index df47a85925..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stained_glass/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stained_ice/0.png b/front/public/images/small/BloodArsenal/blood_stained_ice/0.png deleted file mode 100644 index 4e6bc74216..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stained_ice/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stained_ice_packed/0.png b/front/public/images/small/BloodArsenal/blood_stained_ice_packed/0.png deleted file mode 100644 index 24d8ad00cb..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stained_ice_packed/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stone/0.png b/front/public/images/small/BloodArsenal/blood_stone/0.png deleted file mode 100644 index 7d64bd01f8..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stone/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stone/1.png b/front/public/images/small/BloodArsenal/blood_stone/1.png deleted file mode 100644 index 3b0b0f2adf..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stone/1.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stone/2.png b/front/public/images/small/BloodArsenal/blood_stone/2.png deleted file mode 100644 index 3765f406ce..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stone/2.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stone/3.png b/front/public/images/small/BloodArsenal/blood_stone/3.png deleted file mode 100644 index aa7605453b..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stone/3.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_stone/4.png b/front/public/images/small/BloodArsenal/blood_stone/4.png deleted file mode 100644 index 9081fa7f53..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_stone/4.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_tnt/0.png b/front/public/images/small/BloodArsenal/blood_tnt/0.png deleted file mode 100644 index f340668950..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_tnt/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/blood_torch/0.png b/front/public/images/small/BloodArsenal/blood_torch/0.png deleted file mode 100644 index c4c8b50a3e..0000000000 Binary files a/front/public/images/small/BloodArsenal/blood_torch/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_bow/0.png b/front/public/images/small/BloodArsenal/bound_bow/0.png deleted file mode 100644 index cb5c7fa3d6..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_bow/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_diamond_shard/0.png b/front/public/images/small/BloodArsenal/bound_diamond_shard/0.png deleted file mode 100644 index 3c47f06687..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_diamond_shard/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_diamond_shard/1.png b/front/public/images/small/BloodArsenal/bound_diamond_shard/1.png deleted file mode 100644 index 2cf328a608..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_diamond_shard/1.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_diamond_shard/2.png b/front/public/images/small/BloodArsenal/bound_diamond_shard/2.png deleted file mode 100644 index 145d79699b..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_diamond_shard/2.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_diamond_shard/3.png b/front/public/images/small/BloodArsenal/bound_diamond_shard/3.png deleted file mode 100644 index 110002c754..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_diamond_shard/3.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_diamond_shard/4.png b/front/public/images/small/BloodArsenal/bound_diamond_shard/4.png deleted file mode 100644 index f0845fd6a1..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_diamond_shard/4.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_diamond_shard/5.png b/front/public/images/small/BloodArsenal/bound_diamond_shard/5.png deleted file mode 100644 index d6ec3cbb72..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_diamond_shard/5.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_diamond_shard/6.png b/front/public/images/small/BloodArsenal/bound_diamond_shard/6.png deleted file mode 100644 index 960b8c6517..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_diamond_shard/6.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_igniter/0.png b/front/public/images/small/BloodArsenal/bound_igniter/0.png deleted file mode 100644 index dc770f2da1..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_igniter/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_shears/0.png b/front/public/images/small/BloodArsenal/bound_shears/0.png deleted file mode 100644 index 061add722b..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_shears/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/bound_sickle/0.png b/front/public/images/small/BloodArsenal/bound_sickle/0.png deleted file mode 100644 index e91a9df998..0000000000 Binary files a/front/public/images/small/BloodArsenal/bound_sickle/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/compacted_mrs/0.png b/front/public/images/small/BloodArsenal/compacted_mrs/0.png deleted file mode 100644 index 9aa6c4ead9..0000000000 Binary files a/front/public/images/small/BloodArsenal/compacted_mrs/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/compacter/0.png b/front/public/images/small/BloodArsenal/compacter/0.png deleted file mode 100644 index fd05c90a77..0000000000 Binary files a/front/public/images/small/BloodArsenal/compacter/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/glass_boots/0.png b/front/public/images/small/BloodArsenal/glass_boots/0.png deleted file mode 100644 index f9734048a0..0000000000 Binary files a/front/public/images/small/BloodArsenal/glass_boots/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/glass_chestplate/0.png b/front/public/images/small/BloodArsenal/glass_chestplate/0.png deleted file mode 100644 index 0f67a6464f..0000000000 Binary files a/front/public/images/small/BloodArsenal/glass_chestplate/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/glass_dagger_of_sacrifice/0.png b/front/public/images/small/BloodArsenal/glass_dagger_of_sacrifice/0.png deleted file mode 100644 index 34195d6533..0000000000 Binary files a/front/public/images/small/BloodArsenal/glass_dagger_of_sacrifice/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/glass_helmet/0.png b/front/public/images/small/BloodArsenal/glass_helmet/0.png deleted file mode 100644 index f945d0996c..0000000000 Binary files a/front/public/images/small/BloodArsenal/glass_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/glass_leggings/0.png b/front/public/images/small/BloodArsenal/glass_leggings/0.png deleted file mode 100644 index 96dbd44154..0000000000 Binary files a/front/public/images/small/BloodArsenal/glass_leggings/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/glass_sacrificial_dagger/0.png b/front/public/images/small/BloodArsenal/glass_sacrificial_dagger/0.png deleted file mode 100644 index 466f0e634e..0000000000 Binary files a/front/public/images/small/BloodArsenal/glass_sacrificial_dagger/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/glass_shard/0.png b/front/public/images/small/BloodArsenal/glass_shard/0.png deleted file mode 100644 index 3aefe7e393..0000000000 Binary files a/front/public/images/small/BloodArsenal/glass_shard/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/heart/0.png b/front/public/images/small/BloodArsenal/heart/0.png deleted file mode 100644 index 1229ca24e5..0000000000 Binary files a/front/public/images/small/BloodArsenal/heart/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/item_blood_cake/0.png b/front/public/images/small/BloodArsenal/item_blood_cake/0.png deleted file mode 100644 index 5a7404d156..0000000000 Binary files a/front/public/images/small/BloodArsenal/item_blood_cake/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/juice_and_cookies/0.png b/front/public/images/small/BloodArsenal/juice_and_cookies/0.png deleted file mode 100644 index d2d172acb4..0000000000 Binary files a/front/public/images/small/BloodArsenal/juice_and_cookies/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/life_imbued_boots/0.png b/front/public/images/small/BloodArsenal/life_imbued_boots/0.png deleted file mode 100644 index e7d5394baf..0000000000 Binary files a/front/public/images/small/BloodArsenal/life_imbued_boots/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/life_imbued_chestplate/0.png b/front/public/images/small/BloodArsenal/life_imbued_chestplate/0.png deleted file mode 100644 index 1dbcc9d9ad..0000000000 Binary files a/front/public/images/small/BloodArsenal/life_imbued_chestplate/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/life_imbued_helmet/0.png b/front/public/images/small/BloodArsenal/life_imbued_helmet/0.png deleted file mode 100644 index 8aa6bc443a..0000000000 Binary files a/front/public/images/small/BloodArsenal/life_imbued_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/life_imbued_leggings/0.png b/front/public/images/small/BloodArsenal/life_imbued_leggings/0.png deleted file mode 100644 index 8cbde6923c..0000000000 Binary files a/front/public/images/small/BloodArsenal/life_imbued_leggings/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/life_infuser/0.png b/front/public/images/small/BloodArsenal/life_infuser/0.png deleted file mode 100644 index f1276dae3b..0000000000 Binary files a/front/public/images/small/BloodArsenal/life_infuser/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/lp_materializer/0.png b/front/public/images/small/BloodArsenal/lp_materializer/0.png deleted file mode 100644 index 52aeff4039..0000000000 Binary files a/front/public/images/small/BloodArsenal/lp_materializer/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/orange_juice/0.png b/front/public/images/small/BloodArsenal/orange_juice/0.png deleted file mode 100644 index aa657ee043..0000000000 Binary files a/front/public/images/small/BloodArsenal/orange_juice/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/portable_altar/0.png b/front/public/images/small/BloodArsenal/portable_altar/0.png deleted file mode 100644 index abc53ca547..0000000000 Binary files a/front/public/images/small/BloodArsenal/portable_altar/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/sigil_of_augmented_holding/0.png b/front/public/images/small/BloodArsenal/sigil_of_augmented_holding/0.png deleted file mode 100644 index c918259930..0000000000 Binary files a/front/public/images/small/BloodArsenal/sigil_of_augmented_holding/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/sigil_of_divinity/0.png b/front/public/images/small/BloodArsenal/sigil_of_divinity/0.png deleted file mode 100644 index ef7362eb2b..0000000000 Binary files a/front/public/images/small/BloodArsenal/sigil_of_divinity/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/sigil_of_ender/0.png b/front/public/images/small/BloodArsenal/sigil_of_ender/0.png deleted file mode 100644 index 6e3d4bff53..0000000000 Binary files a/front/public/images/small/BloodArsenal/sigil_of_ender/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/sigil_of_lightning/0.png b/front/public/images/small/BloodArsenal/sigil_of_lightning/0.png deleted file mode 100644 index 1891f859d1..0000000000 Binary files a/front/public/images/small/BloodArsenal/sigil_of_lightning/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/sigil_of_swimming/0.png b/front/public/images/small/BloodArsenal/sigil_of_swimming/0.png deleted file mode 100644 index aa419e7298..0000000000 Binary files a/front/public/images/small/BloodArsenal/sigil_of_swimming/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/soul_booster/0.png b/front/public/images/small/BloodArsenal/soul_booster/0.png deleted file mode 100644 index b500abe94a..0000000000 Binary files a/front/public/images/small/BloodArsenal/soul_booster/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/soul_fragment/0.png b/front/public/images/small/BloodArsenal/soul_fragment/0.png deleted file mode 100644 index 4ab6956404..0000000000 Binary files a/front/public/images/small/BloodArsenal/soul_fragment/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/soul_nullifier/0.png b/front/public/images/small/BloodArsenal/soul_nullifier/0.png deleted file mode 100644 index d1dae00f3c..0000000000 Binary files a/front/public/images/small/BloodArsenal/soul_nullifier/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/transparent_orb/0.png b/front/public/images/small/BloodArsenal/transparent_orb/0.png deleted file mode 100644 index 282ac7d10c..0000000000 Binary files a/front/public/images/small/BloodArsenal/transparent_orb/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/vampire_boots/0.png b/front/public/images/small/BloodArsenal/vampire_boots/0.png deleted file mode 100644 index b58e54c8f6..0000000000 Binary files a/front/public/images/small/BloodArsenal/vampire_boots/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/vampire_cape/0.png b/front/public/images/small/BloodArsenal/vampire_cape/0.png deleted file mode 100644 index adabca21ec..0000000000 Binary files a/front/public/images/small/BloodArsenal/vampire_cape/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/vampire_greaves/0.png b/front/public/images/small/BloodArsenal/vampire_greaves/0.png deleted file mode 100644 index 615cd77734..0000000000 Binary files a/front/public/images/small/BloodArsenal/vampire_greaves/0.png and /dev/null differ diff --git a/front/public/images/small/BloodArsenal/wolf_hide/0.png b/front/public/images/small/BloodArsenal/wolf_hide/0.png deleted file mode 100644 index a6a574bbf4..0000000000 Binary files a/front/public/images/small/BloodArsenal/wolf_hide/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/aesirRing/0.png b/front/public/images/small/Botania/aesirRing/0.png deleted file mode 100644 index f30c1d1e8e..0000000000 Binary files a/front/public/images/small/Botania/aesirRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/alchemyCatalyst/0.png b/front/public/images/small/Botania/alchemyCatalyst/0.png deleted file mode 100644 index 83583c488a..0000000000 Binary files a/front/public/images/small/Botania/alchemyCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/alfheimPortal/0.png b/front/public/images/small/Botania/alfheimPortal/0.png deleted file mode 100644 index 94214b3d15..0000000000 Binary files a/front/public/images/small/Botania/alfheimPortal/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/altGrass/0.png b/front/public/images/small/Botania/altGrass/0.png deleted file mode 100644 index c089e37b10..0000000000 Binary files a/front/public/images/small/Botania/altGrass/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/altGrass/1.png b/front/public/images/small/Botania/altGrass/1.png deleted file mode 100644 index 366d1c93b6..0000000000 Binary files a/front/public/images/small/Botania/altGrass/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/altGrass/2.png b/front/public/images/small/Botania/altGrass/2.png deleted file mode 100644 index 3c4c09f077..0000000000 Binary files a/front/public/images/small/Botania/altGrass/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/altGrass/3.png b/front/public/images/small/Botania/altGrass/3.png deleted file mode 100644 index 4bf84ff840..0000000000 Binary files a/front/public/images/small/Botania/altGrass/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/altGrass/4.png b/front/public/images/small/Botania/altGrass/4.png deleted file mode 100644 index 608d7652c6..0000000000 Binary files a/front/public/images/small/Botania/altGrass/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/altGrass/5.png b/front/public/images/small/Botania/altGrass/5.png deleted file mode 100644 index 0c752bacc8..0000000000 Binary files a/front/public/images/small/Botania/altGrass/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/0.png b/front/public/images/small/Botania/altar/0.png deleted file mode 100644 index a91dcdd0b6..0000000000 Binary files a/front/public/images/small/Botania/altar/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/1.png b/front/public/images/small/Botania/altar/1.png deleted file mode 100644 index 9aa8206322..0000000000 Binary files a/front/public/images/small/Botania/altar/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/2.png b/front/public/images/small/Botania/altar/2.png deleted file mode 100644 index 2048bc7e4b..0000000000 Binary files a/front/public/images/small/Botania/altar/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/3.png b/front/public/images/small/Botania/altar/3.png deleted file mode 100644 index d80f34b061..0000000000 Binary files a/front/public/images/small/Botania/altar/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/4.png b/front/public/images/small/Botania/altar/4.png deleted file mode 100644 index 1df8fcc3cc..0000000000 Binary files a/front/public/images/small/Botania/altar/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/5.png b/front/public/images/small/Botania/altar/5.png deleted file mode 100644 index dc4fb69392..0000000000 Binary files a/front/public/images/small/Botania/altar/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/6.png b/front/public/images/small/Botania/altar/6.png deleted file mode 100644 index a595af708a..0000000000 Binary files a/front/public/images/small/Botania/altar/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/7.png b/front/public/images/small/Botania/altar/7.png deleted file mode 100644 index 5c36821155..0000000000 Binary files a/front/public/images/small/Botania/altar/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/altar/8.png b/front/public/images/small/Botania/altar/8.png deleted file mode 100644 index 2f056194ad..0000000000 Binary files a/front/public/images/small/Botania/altar/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/ancientWill/0.png b/front/public/images/small/Botania/ancientWill/0.png deleted file mode 100644 index 2e859e908c..0000000000 Binary files a/front/public/images/small/Botania/ancientWill/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/ancientWill/1.png b/front/public/images/small/Botania/ancientWill/1.png deleted file mode 100644 index 0e5fcb1bc3..0000000000 Binary files a/front/public/images/small/Botania/ancientWill/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/ancientWill/2.png b/front/public/images/small/Botania/ancientWill/2.png deleted file mode 100644 index 7acf77ad1d..0000000000 Binary files a/front/public/images/small/Botania/ancientWill/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/ancientWill/3.png b/front/public/images/small/Botania/ancientWill/3.png deleted file mode 100644 index a79c6e70e2..0000000000 Binary files a/front/public/images/small/Botania/ancientWill/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/ancientWill/4.png b/front/public/images/small/Botania/ancientWill/4.png deleted file mode 100644 index e937fff200..0000000000 Binary files a/front/public/images/small/Botania/ancientWill/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/ancientWill/5.png b/front/public/images/small/Botania/ancientWill/5.png deleted file mode 100644 index 78a76b61d5..0000000000 Binary files a/front/public/images/small/Botania/ancientWill/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/auraRing/0.png b/front/public/images/small/Botania/auraRing/0.png deleted file mode 100644 index 2043173a3f..0000000000 Binary files a/front/public/images/small/Botania/auraRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/auraRingGreater/0.png b/front/public/images/small/Botania/auraRingGreater/0.png deleted file mode 100644 index d05188236c..0000000000 Binary files a/front/public/images/small/Botania/auraRingGreater/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/autocraftingHalo/0.png b/front/public/images/small/Botania/autocraftingHalo/0.png deleted file mode 100644 index 3b0b3de55f..0000000000 Binary files a/front/public/images/small/Botania/autocraftingHalo/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/avatar/0.png b/front/public/images/small/Botania/avatar/0.png deleted file mode 100644 index d965f282bd..0000000000 Binary files a/front/public/images/small/Botania/avatar/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/baubleBox/0.png b/front/public/images/small/Botania/baubleBox/0.png deleted file mode 100644 index feee79dc89..0000000000 Binary files a/front/public/images/small/Botania/baubleBox/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/bellows/0.png b/front/public/images/small/Botania/bellows/0.png deleted file mode 100644 index aa0f3ded9f..0000000000 Binary files a/front/public/images/small/Botania/bellows/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/bifrost/0.png b/front/public/images/small/Botania/bifrost/0.png deleted file mode 100644 index 7063934001..0000000000 Binary files a/front/public/images/small/Botania/bifrost/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/bifrostPerm/0.png b/front/public/images/small/Botania/bifrostPerm/0.png deleted file mode 100644 index 7063934001..0000000000 Binary files a/front/public/images/small/Botania/bifrostPerm/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/bifrostPermPane/0.png b/front/public/images/small/Botania/bifrostPermPane/0.png deleted file mode 100644 index c77cf7a496..0000000000 Binary files a/front/public/images/small/Botania/bifrostPermPane/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/0.png b/front/public/images/small/Botania/biomeStoneA/0.png deleted file mode 100644 index d9987568ba..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/1.png b/front/public/images/small/Botania/biomeStoneA/1.png deleted file mode 100644 index 41e100a323..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/10.png b/front/public/images/small/Botania/biomeStoneA/10.png deleted file mode 100644 index 19b4e42b20..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/11.png b/front/public/images/small/Botania/biomeStoneA/11.png deleted file mode 100644 index d499a49657..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/12.png b/front/public/images/small/Botania/biomeStoneA/12.png deleted file mode 100644 index 3881493dbc..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/13.png b/front/public/images/small/Botania/biomeStoneA/13.png deleted file mode 100644 index 601534a447..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/14.png b/front/public/images/small/Botania/biomeStoneA/14.png deleted file mode 100644 index 7147de450a..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/15.png b/front/public/images/small/Botania/biomeStoneA/15.png deleted file mode 100644 index 4e01fd4886..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/2.png b/front/public/images/small/Botania/biomeStoneA/2.png deleted file mode 100644 index 1698614583..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/3.png b/front/public/images/small/Botania/biomeStoneA/3.png deleted file mode 100644 index 50035e8f99..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/4.png b/front/public/images/small/Botania/biomeStoneA/4.png deleted file mode 100644 index 57e8b6b291..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/5.png b/front/public/images/small/Botania/biomeStoneA/5.png deleted file mode 100644 index ced4e80963..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/6.png b/front/public/images/small/Botania/biomeStoneA/6.png deleted file mode 100644 index fdb658b4fb..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/7.png b/front/public/images/small/Botania/biomeStoneA/7.png deleted file mode 100644 index d96aac0324..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/8.png b/front/public/images/small/Botania/biomeStoneA/8.png deleted file mode 100644 index 1d19ba7447..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA/9.png b/front/public/images/small/Botania/biomeStoneA/9.png deleted file mode 100644 index 03e1e8add4..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Slab/0.png b/front/public/images/small/Botania/biomeStoneA0Slab/0.png deleted file mode 100644 index b588e95cb7..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA0SlabFull/0.png deleted file mode 100644 index d9987568ba..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Stairs/0.png b/front/public/images/small/Botania/biomeStoneA0Stairs/0.png deleted file mode 100644 index 5fa74425a9..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/0.png b/front/public/images/small/Botania/biomeStoneA0Wall/0.png deleted file mode 100644 index 09e5ed7f81..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/1.png b/front/public/images/small/Botania/biomeStoneA0Wall/1.png deleted file mode 100644 index 1c18c09ddc..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/2.png b/front/public/images/small/Botania/biomeStoneA0Wall/2.png deleted file mode 100644 index 07f1a03419..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/3.png b/front/public/images/small/Botania/biomeStoneA0Wall/3.png deleted file mode 100644 index ac31ffa799..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/4.png b/front/public/images/small/Botania/biomeStoneA0Wall/4.png deleted file mode 100644 index 90168346bc..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/5.png b/front/public/images/small/Botania/biomeStoneA0Wall/5.png deleted file mode 100644 index 1060cd8ec5..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/6.png b/front/public/images/small/Botania/biomeStoneA0Wall/6.png deleted file mode 100644 index c39fc2984b..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA0Wall/7.png b/front/public/images/small/Botania/biomeStoneA0Wall/7.png deleted file mode 100644 index 73d87a6f3d..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA0Wall/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA10Slab/0.png b/front/public/images/small/Botania/biomeStoneA10Slab/0.png deleted file mode 100644 index 27a0b918b0..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA10Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA10SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA10SlabFull/0.png deleted file mode 100644 index 19b4e42b20..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA10SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA10Stairs/0.png b/front/public/images/small/Botania/biomeStoneA10Stairs/0.png deleted file mode 100644 index 33cd9c863d..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA10Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA11Slab/0.png b/front/public/images/small/Botania/biomeStoneA11Slab/0.png deleted file mode 100644 index f0824efb27..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA11Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA11SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA11SlabFull/0.png deleted file mode 100644 index d499a49657..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA11SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA11Stairs/0.png b/front/public/images/small/Botania/biomeStoneA11Stairs/0.png deleted file mode 100644 index e7a1c03310..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA11Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA12Slab/0.png b/front/public/images/small/Botania/biomeStoneA12Slab/0.png deleted file mode 100644 index dc9b753de9..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA12Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA12SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA12SlabFull/0.png deleted file mode 100644 index 3881493dbc..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA12SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA12Stairs/0.png b/front/public/images/small/Botania/biomeStoneA12Stairs/0.png deleted file mode 100644 index 0fc4dc98b4..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA12Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA13Slab/0.png b/front/public/images/small/Botania/biomeStoneA13Slab/0.png deleted file mode 100644 index faa3c9fdb2..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA13Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA13SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA13SlabFull/0.png deleted file mode 100644 index 601534a447..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA13SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA13Stairs/0.png b/front/public/images/small/Botania/biomeStoneA13Stairs/0.png deleted file mode 100644 index b7ccb2b54b..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA13Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA14Slab/0.png b/front/public/images/small/Botania/biomeStoneA14Slab/0.png deleted file mode 100644 index 262680ee05..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA14Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA14SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA14SlabFull/0.png deleted file mode 100644 index 7147de450a..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA14SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA14Stairs/0.png b/front/public/images/small/Botania/biomeStoneA14Stairs/0.png deleted file mode 100644 index 973755f25c..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA14Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA15Slab/0.png b/front/public/images/small/Botania/biomeStoneA15Slab/0.png deleted file mode 100644 index 7424f38268..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA15Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA15SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA15SlabFull/0.png deleted file mode 100644 index 4e01fd4886..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA15SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA15Stairs/0.png b/front/public/images/small/Botania/biomeStoneA15Stairs/0.png deleted file mode 100644 index 209eb6218e..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA15Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA1Slab/0.png b/front/public/images/small/Botania/biomeStoneA1Slab/0.png deleted file mode 100644 index 47fb59bdc3..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA1SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA1SlabFull/0.png deleted file mode 100644 index 41e100a323..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA1Stairs/0.png b/front/public/images/small/Botania/biomeStoneA1Stairs/0.png deleted file mode 100644 index f978109a85..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA2Slab/0.png b/front/public/images/small/Botania/biomeStoneA2Slab/0.png deleted file mode 100644 index 940dbee28f..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA2Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA2SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA2SlabFull/0.png deleted file mode 100644 index 1698614583..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA2Stairs/0.png b/front/public/images/small/Botania/biomeStoneA2Stairs/0.png deleted file mode 100644 index 3547d5dc86..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA2Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA3Slab/0.png b/front/public/images/small/Botania/biomeStoneA3Slab/0.png deleted file mode 100644 index 4c0e58abe9..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA3Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA3SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA3SlabFull/0.png deleted file mode 100644 index 50035e8f99..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA3Stairs/0.png b/front/public/images/small/Botania/biomeStoneA3Stairs/0.png deleted file mode 100644 index 666649f7ff..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA3Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA4Slab/0.png b/front/public/images/small/Botania/biomeStoneA4Slab/0.png deleted file mode 100644 index 6672524b47..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA4Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA4SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA4SlabFull/0.png deleted file mode 100644 index 57e8b6b291..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA4SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA4Stairs/0.png b/front/public/images/small/Botania/biomeStoneA4Stairs/0.png deleted file mode 100644 index 57f0464334..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA4Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA5Slab/0.png b/front/public/images/small/Botania/biomeStoneA5Slab/0.png deleted file mode 100644 index 4e918d5e3e..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA5Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA5SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA5SlabFull/0.png deleted file mode 100644 index ced4e80963..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA5SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA5Stairs/0.png b/front/public/images/small/Botania/biomeStoneA5Stairs/0.png deleted file mode 100644 index f681e1769e..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA5Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA6Slab/0.png b/front/public/images/small/Botania/biomeStoneA6Slab/0.png deleted file mode 100644 index 1132efaf64..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA6Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA6SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA6SlabFull/0.png deleted file mode 100644 index fdb658b4fb..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA6SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA6Stairs/0.png b/front/public/images/small/Botania/biomeStoneA6Stairs/0.png deleted file mode 100644 index 0042cd9721..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA6Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA7Slab/0.png b/front/public/images/small/Botania/biomeStoneA7Slab/0.png deleted file mode 100644 index 4e21e19da1..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA7Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA7SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA7SlabFull/0.png deleted file mode 100644 index d96aac0324..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA7SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA7Stairs/0.png b/front/public/images/small/Botania/biomeStoneA7Stairs/0.png deleted file mode 100644 index 5afc24c5cd..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA7Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA8Slab/0.png b/front/public/images/small/Botania/biomeStoneA8Slab/0.png deleted file mode 100644 index c85146c7e1..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA8Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA8SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA8SlabFull/0.png deleted file mode 100644 index 1d19ba7447..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA8SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA8Stairs/0.png b/front/public/images/small/Botania/biomeStoneA8Stairs/0.png deleted file mode 100644 index 6896672bd9..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA8Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA9Slab/0.png b/front/public/images/small/Botania/biomeStoneA9Slab/0.png deleted file mode 100644 index bf7f5c6c97..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA9Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA9SlabFull/0.png b/front/public/images/small/Botania/biomeStoneA9SlabFull/0.png deleted file mode 100644 index 03e1e8add4..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA9SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneA9Stairs/0.png b/front/public/images/small/Botania/biomeStoneA9Stairs/0.png deleted file mode 100644 index 458d90fce4..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneA9Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/0.png b/front/public/images/small/Botania/biomeStoneB/0.png deleted file mode 100644 index 202e305e6d..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/1.png b/front/public/images/small/Botania/biomeStoneB/1.png deleted file mode 100644 index 54d04fa6ee..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/10.png b/front/public/images/small/Botania/biomeStoneB/10.png deleted file mode 100644 index df85925be4..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/11.png b/front/public/images/small/Botania/biomeStoneB/11.png deleted file mode 100644 index 373320494c..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/12.png b/front/public/images/small/Botania/biomeStoneB/12.png deleted file mode 100644 index 7e46e39765..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/13.png b/front/public/images/small/Botania/biomeStoneB/13.png deleted file mode 100644 index a15e33a16d..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/14.png b/front/public/images/small/Botania/biomeStoneB/14.png deleted file mode 100644 index 37bfc8a550..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/15.png b/front/public/images/small/Botania/biomeStoneB/15.png deleted file mode 100644 index b0a938a793..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/2.png b/front/public/images/small/Botania/biomeStoneB/2.png deleted file mode 100644 index 26c05d2edb..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/3.png b/front/public/images/small/Botania/biomeStoneB/3.png deleted file mode 100644 index cc9fea3352..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/4.png b/front/public/images/small/Botania/biomeStoneB/4.png deleted file mode 100644 index 55fff66cbd..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/5.png b/front/public/images/small/Botania/biomeStoneB/5.png deleted file mode 100644 index 91845e7023..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/6.png b/front/public/images/small/Botania/biomeStoneB/6.png deleted file mode 100644 index b01776a1b9..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/7.png b/front/public/images/small/Botania/biomeStoneB/7.png deleted file mode 100644 index 4c955f5d3d..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/8.png b/front/public/images/small/Botania/biomeStoneB/8.png deleted file mode 100644 index 0ea77dc408..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB/9.png b/front/public/images/small/Botania/biomeStoneB/9.png deleted file mode 100644 index 314cb258f2..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB0Slab/0.png b/front/public/images/small/Botania/biomeStoneB0Slab/0.png deleted file mode 100644 index a6f98d0167..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB0SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB0SlabFull/0.png deleted file mode 100644 index 202e305e6d..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB0Stairs/0.png b/front/public/images/small/Botania/biomeStoneB0Stairs/0.png deleted file mode 100644 index eb53584407..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB1Slab/0.png b/front/public/images/small/Botania/biomeStoneB1Slab/0.png deleted file mode 100644 index 178aa50412..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB1SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB1SlabFull/0.png deleted file mode 100644 index 54d04fa6ee..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB1Stairs/0.png b/front/public/images/small/Botania/biomeStoneB1Stairs/0.png deleted file mode 100644 index 9311aa0dfe..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB2Slab/0.png b/front/public/images/small/Botania/biomeStoneB2Slab/0.png deleted file mode 100644 index 0682b63b4f..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB2Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB2SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB2SlabFull/0.png deleted file mode 100644 index 26c05d2edb..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB2Stairs/0.png b/front/public/images/small/Botania/biomeStoneB2Stairs/0.png deleted file mode 100644 index 1dee15c15e..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB2Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB3Slab/0.png b/front/public/images/small/Botania/biomeStoneB3Slab/0.png deleted file mode 100644 index 437ce167fe..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB3Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB3SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB3SlabFull/0.png deleted file mode 100644 index cc9fea3352..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB3Stairs/0.png b/front/public/images/small/Botania/biomeStoneB3Stairs/0.png deleted file mode 100644 index 4a2dfdf771..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB3Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB4Slab/0.png b/front/public/images/small/Botania/biomeStoneB4Slab/0.png deleted file mode 100644 index 1d98047191..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB4Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB4SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB4SlabFull/0.png deleted file mode 100644 index 55fff66cbd..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB4SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB4Stairs/0.png b/front/public/images/small/Botania/biomeStoneB4Stairs/0.png deleted file mode 100644 index 4ae357e874..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB4Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB5Slab/0.png b/front/public/images/small/Botania/biomeStoneB5Slab/0.png deleted file mode 100644 index 22d0bec8de..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB5Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB5SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB5SlabFull/0.png deleted file mode 100644 index 91845e7023..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB5SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB5Stairs/0.png b/front/public/images/small/Botania/biomeStoneB5Stairs/0.png deleted file mode 100644 index dbde1974d1..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB5Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB6Slab/0.png b/front/public/images/small/Botania/biomeStoneB6Slab/0.png deleted file mode 100644 index a0fe8450f0..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB6Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB6SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB6SlabFull/0.png deleted file mode 100644 index b01776a1b9..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB6SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB6Stairs/0.png b/front/public/images/small/Botania/biomeStoneB6Stairs/0.png deleted file mode 100644 index 12fc6999dc..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB6Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB7Slab/0.png b/front/public/images/small/Botania/biomeStoneB7Slab/0.png deleted file mode 100644 index c459f47f16..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB7Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB7SlabFull/0.png b/front/public/images/small/Botania/biomeStoneB7SlabFull/0.png deleted file mode 100644 index 4c955f5d3d..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB7SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/biomeStoneB7Stairs/0.png b/front/public/images/small/Botania/biomeStoneB7Stairs/0.png deleted file mode 100644 index 29271d3250..0000000000 Binary files a/front/public/images/small/Botania/biomeStoneB7Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/blackHoleTalisman/0.png b/front/public/images/small/Botania/blackHoleTalisman/0.png deleted file mode 100644 index fcfbc2a2a8..0000000000 Binary files a/front/public/images/small/Botania/blackHoleTalisman/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/blackLotus/0.png b/front/public/images/small/Botania/blackLotus/0.png deleted file mode 100644 index 8ad2adf326..0000000000 Binary files a/front/public/images/small/Botania/blackLotus/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/blackLotus/1.png b/front/public/images/small/Botania/blackLotus/1.png deleted file mode 100644 index 8ad2adf326..0000000000 Binary files a/front/public/images/small/Botania/blackLotus/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/blazeBlock/0.png b/front/public/images/small/Botania/blazeBlock/0.png deleted file mode 100644 index 48f75601eb..0000000000 Binary files a/front/public/images/small/Botania/blazeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/bloodPendant/0.png b/front/public/images/small/Botania/bloodPendant/0.png deleted file mode 100644 index a7489e98e7..0000000000 Binary files a/front/public/images/small/Botania/bloodPendant/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/brewFlask/0.png b/front/public/images/small/Botania/brewFlask/0.png deleted file mode 100644 index 17b774454d..0000000000 Binary files a/front/public/images/small/Botania/brewFlask/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/brewVial/0.png b/front/public/images/small/Botania/brewVial/0.png deleted file mode 100644 index 8e693f308b..0000000000 Binary files a/front/public/images/small/Botania/brewVial/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/brewery/0.png b/front/public/images/small/Botania/brewery/0.png deleted file mode 100644 index 909fbdf7b2..0000000000 Binary files a/front/public/images/small/Botania/brewery/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/0.png b/front/public/images/small/Botania/buriedPetals/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/1.png b/front/public/images/small/Botania/buriedPetals/1.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/10.png b/front/public/images/small/Botania/buriedPetals/10.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/11.png b/front/public/images/small/Botania/buriedPetals/11.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/12.png b/front/public/images/small/Botania/buriedPetals/12.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/13.png b/front/public/images/small/Botania/buriedPetals/13.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/14.png b/front/public/images/small/Botania/buriedPetals/14.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/15.png b/front/public/images/small/Botania/buriedPetals/15.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/2.png b/front/public/images/small/Botania/buriedPetals/2.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/3.png b/front/public/images/small/Botania/buriedPetals/3.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/4.png b/front/public/images/small/Botania/buriedPetals/4.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/5.png b/front/public/images/small/Botania/buriedPetals/5.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/6.png b/front/public/images/small/Botania/buriedPetals/6.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/7.png b/front/public/images/small/Botania/buriedPetals/7.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/8.png b/front/public/images/small/Botania/buriedPetals/8.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/buriedPetals/9.png b/front/public/images/small/Botania/buriedPetals/9.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/buriedPetals/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/cacophonium/0.png b/front/public/images/small/Botania/cacophonium/0.png deleted file mode 100644 index e7bf76c99b..0000000000 Binary files a/front/public/images/small/Botania/cacophonium/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/cacophoniumBlock/0.png b/front/public/images/small/Botania/cacophoniumBlock/0.png deleted file mode 100644 index c9f5785bf1..0000000000 Binary files a/front/public/images/small/Botania/cacophoniumBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/cellBlock/0.png b/front/public/images/small/Botania/cellBlock/0.png deleted file mode 100644 index 0e5ec125bb..0000000000 Binary files a/front/public/images/small/Botania/cellBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/clip/0.png b/front/public/images/small/Botania/clip/0.png deleted file mode 100644 index 1b5dc8278f..0000000000 Binary files a/front/public/images/small/Botania/clip/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/cobbleRod/0.png b/front/public/images/small/Botania/cobbleRod/0.png deleted file mode 100644 index c9c40336a3..0000000000 Binary files a/front/public/images/small/Botania/cobbleRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/cocoon/0.png b/front/public/images/small/Botania/cocoon/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/cocoon/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/conjurationCatalyst/0.png b/front/public/images/small/Botania/conjurationCatalyst/0.png deleted file mode 100644 index 18628f4af2..0000000000 Binary files a/front/public/images/small/Botania/conjurationCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/corporeaCrystalCube/0.png b/front/public/images/small/Botania/corporeaCrystalCube/0.png deleted file mode 100644 index d096e78638..0000000000 Binary files a/front/public/images/small/Botania/corporeaCrystalCube/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/corporeaFunnel/0.png b/front/public/images/small/Botania/corporeaFunnel/0.png deleted file mode 100644 index a3d16aedb8..0000000000 Binary files a/front/public/images/small/Botania/corporeaFunnel/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/corporeaIndex/0.png b/front/public/images/small/Botania/corporeaIndex/0.png deleted file mode 100644 index 54618335ea..0000000000 Binary files a/front/public/images/small/Botania/corporeaIndex/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/corporeaInterceptor/0.png b/front/public/images/small/Botania/corporeaInterceptor/0.png deleted file mode 100644 index 8c6e7b8d30..0000000000 Binary files a/front/public/images/small/Botania/corporeaInterceptor/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/corporeaRetainer/0.png b/front/public/images/small/Botania/corporeaRetainer/0.png deleted file mode 100644 index 5ee079c42a..0000000000 Binary files a/front/public/images/small/Botania/corporeaRetainer/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/corporeaSpark/0.png b/front/public/images/small/Botania/corporeaSpark/0.png deleted file mode 100644 index 1c07842aa8..0000000000 Binary files a/front/public/images/small/Botania/corporeaSpark/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/corporeaSpark/1.png b/front/public/images/small/Botania/corporeaSpark/1.png deleted file mode 100644 index 0aa357b335..0000000000 Binary files a/front/public/images/small/Botania/corporeaSpark/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/0.png b/front/public/images/small/Botania/cosmetic/0.png deleted file mode 100644 index adccf2cbdd..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/1.png b/front/public/images/small/Botania/cosmetic/1.png deleted file mode 100644 index 73929a3112..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/10.png b/front/public/images/small/Botania/cosmetic/10.png deleted file mode 100644 index a88f3745d7..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/11.png b/front/public/images/small/Botania/cosmetic/11.png deleted file mode 100644 index 7a1fd8fcf8..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/12.png b/front/public/images/small/Botania/cosmetic/12.png deleted file mode 100644 index f42a0116f0..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/13.png b/front/public/images/small/Botania/cosmetic/13.png deleted file mode 100644 index 7cbc232702..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/14.png b/front/public/images/small/Botania/cosmetic/14.png deleted file mode 100644 index 20262215d0..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/15.png b/front/public/images/small/Botania/cosmetic/15.png deleted file mode 100644 index 0b02ae7aa5..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/16.png b/front/public/images/small/Botania/cosmetic/16.png deleted file mode 100644 index 7a48c7aaa8..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/16.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/17.png b/front/public/images/small/Botania/cosmetic/17.png deleted file mode 100644 index 3b4a5f490c..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/17.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/18.png b/front/public/images/small/Botania/cosmetic/18.png deleted file mode 100644 index c4876fa934..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/18.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/19.png b/front/public/images/small/Botania/cosmetic/19.png deleted file mode 100644 index 843364d9d8..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/19.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/2.png b/front/public/images/small/Botania/cosmetic/2.png deleted file mode 100644 index 5026622583..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/20.png b/front/public/images/small/Botania/cosmetic/20.png deleted file mode 100644 index 02b7c90a1d..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/20.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/21.png b/front/public/images/small/Botania/cosmetic/21.png deleted file mode 100644 index 0fc01930ea..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/21.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/22.png b/front/public/images/small/Botania/cosmetic/22.png deleted file mode 100644 index 13c6d0c3f8..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/22.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/23.png b/front/public/images/small/Botania/cosmetic/23.png deleted file mode 100644 index 155a9be002..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/23.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/24.png b/front/public/images/small/Botania/cosmetic/24.png deleted file mode 100644 index e571ad310f..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/24.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/25.png b/front/public/images/small/Botania/cosmetic/25.png deleted file mode 100644 index 8e3ea5290d..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/25.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/26.png b/front/public/images/small/Botania/cosmetic/26.png deleted file mode 100644 index 5a28dfe5fc..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/26.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/27.png b/front/public/images/small/Botania/cosmetic/27.png deleted file mode 100644 index da15c0e655..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/27.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/28.png b/front/public/images/small/Botania/cosmetic/28.png deleted file mode 100644 index 5731ee2ccb..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/28.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/29.png b/front/public/images/small/Botania/cosmetic/29.png deleted file mode 100644 index 68eee39b38..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/29.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/3.png b/front/public/images/small/Botania/cosmetic/3.png deleted file mode 100644 index 8199f4ba6d..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/30.png b/front/public/images/small/Botania/cosmetic/30.png deleted file mode 100644 index ca762f13c9..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/30.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/31.png b/front/public/images/small/Botania/cosmetic/31.png deleted file mode 100644 index 16064d4baa..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/31.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/4.png b/front/public/images/small/Botania/cosmetic/4.png deleted file mode 100644 index e4fef74dca..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/5.png b/front/public/images/small/Botania/cosmetic/5.png deleted file mode 100644 index 810bb8b208..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/6.png b/front/public/images/small/Botania/cosmetic/6.png deleted file mode 100644 index 4b74d8ac1b..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/7.png b/front/public/images/small/Botania/cosmetic/7.png deleted file mode 100644 index 0b3ec01cea..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/8.png b/front/public/images/small/Botania/cosmetic/8.png deleted file mode 100644 index 5e2d18f2de..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/cosmetic/9.png b/front/public/images/small/Botania/cosmetic/9.png deleted file mode 100644 index b8cfb351a3..0000000000 Binary files a/front/public/images/small/Botania/cosmetic/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/0.png b/front/public/images/small/Botania/craftPattern/0.png deleted file mode 100644 index c3d60b2983..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/1.png b/front/public/images/small/Botania/craftPattern/1.png deleted file mode 100644 index 1ff8483bbe..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/2.png b/front/public/images/small/Botania/craftPattern/2.png deleted file mode 100644 index f99dbc5c87..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/3.png b/front/public/images/small/Botania/craftPattern/3.png deleted file mode 100644 index dcb80ee201..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/4.png b/front/public/images/small/Botania/craftPattern/4.png deleted file mode 100644 index a01ef4c533..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/5.png b/front/public/images/small/Botania/craftPattern/5.png deleted file mode 100644 index 99277b1318..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/6.png b/front/public/images/small/Botania/craftPattern/6.png deleted file mode 100644 index ae306827cc..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/7.png b/front/public/images/small/Botania/craftPattern/7.png deleted file mode 100644 index 040df6f41b..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftPattern/8.png b/front/public/images/small/Botania/craftPattern/8.png deleted file mode 100644 index 52a7e52ef0..0000000000 Binary files a/front/public/images/small/Botania/craftPattern/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/craftingHalo/0.png b/front/public/images/small/Botania/craftingHalo/0.png deleted file mode 100644 index b0971f63c3..0000000000 Binary files a/front/public/images/small/Botania/craftingHalo/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/crystalBow/0.png b/front/public/images/small/Botania/crystalBow/0.png deleted file mode 100644 index 32587d21f6..0000000000 Binary files a/front/public/images/small/Botania/crystalBow/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/0.png b/front/public/images/small/Botania/customBrick/0.png deleted file mode 100644 index dedbf27fff..0000000000 Binary files a/front/public/images/small/Botania/customBrick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/1.png b/front/public/images/small/Botania/customBrick/1.png deleted file mode 100644 index 9382476418..0000000000 Binary files a/front/public/images/small/Botania/customBrick/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/10.png b/front/public/images/small/Botania/customBrick/10.png deleted file mode 100644 index 953f24f9a4..0000000000 Binary files a/front/public/images/small/Botania/customBrick/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/11.png b/front/public/images/small/Botania/customBrick/11.png deleted file mode 100644 index 81998445ff..0000000000 Binary files a/front/public/images/small/Botania/customBrick/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/12.png b/front/public/images/small/Botania/customBrick/12.png deleted file mode 100644 index 456b10d107..0000000000 Binary files a/front/public/images/small/Botania/customBrick/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/13.png b/front/public/images/small/Botania/customBrick/13.png deleted file mode 100644 index 5a079926fc..0000000000 Binary files a/front/public/images/small/Botania/customBrick/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/14.png b/front/public/images/small/Botania/customBrick/14.png deleted file mode 100644 index fbd6ef9b01..0000000000 Binary files a/front/public/images/small/Botania/customBrick/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/15.png b/front/public/images/small/Botania/customBrick/15.png deleted file mode 100644 index 7af18bf4e4..0000000000 Binary files a/front/public/images/small/Botania/customBrick/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/2.png b/front/public/images/small/Botania/customBrick/2.png deleted file mode 100644 index 8b16a80ca8..0000000000 Binary files a/front/public/images/small/Botania/customBrick/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/3.png b/front/public/images/small/Botania/customBrick/3.png deleted file mode 100644 index a9e466465a..0000000000 Binary files a/front/public/images/small/Botania/customBrick/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/4.png b/front/public/images/small/Botania/customBrick/4.png deleted file mode 100644 index 7f9b3f64c8..0000000000 Binary files a/front/public/images/small/Botania/customBrick/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/5.png b/front/public/images/small/Botania/customBrick/5.png deleted file mode 100644 index 6205dd8fe0..0000000000 Binary files a/front/public/images/small/Botania/customBrick/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/6.png b/front/public/images/small/Botania/customBrick/6.png deleted file mode 100644 index b3a603a5bb..0000000000 Binary files a/front/public/images/small/Botania/customBrick/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/7.png b/front/public/images/small/Botania/customBrick/7.png deleted file mode 100644 index e7c8219b38..0000000000 Binary files a/front/public/images/small/Botania/customBrick/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/8.png b/front/public/images/small/Botania/customBrick/8.png deleted file mode 100644 index ff9720433e..0000000000 Binary files a/front/public/images/small/Botania/customBrick/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick/9.png b/front/public/images/small/Botania/customBrick/9.png deleted file mode 100644 index 5e91067f30..0000000000 Binary files a/front/public/images/small/Botania/customBrick/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick0Slab/0.png b/front/public/images/small/Botania/customBrick0Slab/0.png deleted file mode 100644 index 29e5df6825..0000000000 Binary files a/front/public/images/small/Botania/customBrick0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick0SlabFull/0.png b/front/public/images/small/Botania/customBrick0SlabFull/0.png deleted file mode 100644 index dedbf27fff..0000000000 Binary files a/front/public/images/small/Botania/customBrick0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick0Stairs/0.png b/front/public/images/small/Botania/customBrick0Stairs/0.png deleted file mode 100644 index 3f0dded09e..0000000000 Binary files a/front/public/images/small/Botania/customBrick0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick1Slab/0.png b/front/public/images/small/Botania/customBrick1Slab/0.png deleted file mode 100644 index 9570b891a8..0000000000 Binary files a/front/public/images/small/Botania/customBrick1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick1SlabFull/0.png b/front/public/images/small/Botania/customBrick1SlabFull/0.png deleted file mode 100644 index 9382476418..0000000000 Binary files a/front/public/images/small/Botania/customBrick1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick1Stairs/0.png b/front/public/images/small/Botania/customBrick1Stairs/0.png deleted file mode 100644 index a285de0794..0000000000 Binary files a/front/public/images/small/Botania/customBrick1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick2Slab/0.png b/front/public/images/small/Botania/customBrick2Slab/0.png deleted file mode 100644 index 27d517d63e..0000000000 Binary files a/front/public/images/small/Botania/customBrick2Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick2SlabFull/0.png b/front/public/images/small/Botania/customBrick2SlabFull/0.png deleted file mode 100644 index 8b16a80ca8..0000000000 Binary files a/front/public/images/small/Botania/customBrick2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick2Stairs/0.png b/front/public/images/small/Botania/customBrick2Stairs/0.png deleted file mode 100644 index 43a814a675..0000000000 Binary files a/front/public/images/small/Botania/customBrick2Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick3Slab/0.png b/front/public/images/small/Botania/customBrick3Slab/0.png deleted file mode 100644 index fb0162ecbb..0000000000 Binary files a/front/public/images/small/Botania/customBrick3Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick3SlabFull/0.png b/front/public/images/small/Botania/customBrick3SlabFull/0.png deleted file mode 100644 index a9e466465a..0000000000 Binary files a/front/public/images/small/Botania/customBrick3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/customBrick3Stairs/0.png b/front/public/images/small/Botania/customBrick3Stairs/0.png deleted file mode 100644 index d22de181e9..0000000000 Binary files a/front/public/images/small/Botania/customBrick3Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dice/0.png b/front/public/images/small/Botania/dice/0.png deleted file mode 100644 index 35eecc0a26..0000000000 Binary files a/front/public/images/small/Botania/dice/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dirtPath/0.png b/front/public/images/small/Botania/dirtPath/0.png deleted file mode 100644 index b18dcfee03..0000000000 Binary files a/front/public/images/small/Botania/dirtPath/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dirtPath0Slab/0.png b/front/public/images/small/Botania/dirtPath0Slab/0.png deleted file mode 100644 index a7f91feeb4..0000000000 Binary files a/front/public/images/small/Botania/dirtPath0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dirtPath0SlabFull/0.png b/front/public/images/small/Botania/dirtPath0SlabFull/0.png deleted file mode 100644 index 619d446254..0000000000 Binary files a/front/public/images/small/Botania/dirtPath0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dirtRod/0.png b/front/public/images/small/Botania/dirtRod/0.png deleted file mode 100644 index 525cbb8869..0000000000 Binary files a/front/public/images/small/Botania/dirtRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/distributor/0.png b/front/public/images/small/Botania/distributor/0.png deleted file mode 100644 index 830b4c9054..0000000000 Binary files a/front/public/images/small/Botania/distributor/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/divaCharm/0.png b/front/public/images/small/Botania/divaCharm/0.png deleted file mode 100644 index 4b4b4caa3e..0000000000 Binary files a/front/public/images/small/Botania/divaCharm/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/diviningRod/0.png b/front/public/images/small/Botania/diviningRod/0.png deleted file mode 100644 index c218a0a20d..0000000000 Binary files a/front/public/images/small/Botania/diviningRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/0.png b/front/public/images/small/Botania/doubleFlower1/0.png deleted file mode 100644 index ceea0d4df9..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/1.png b/front/public/images/small/Botania/doubleFlower1/1.png deleted file mode 100644 index 493eb90851..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/2.png b/front/public/images/small/Botania/doubleFlower1/2.png deleted file mode 100644 index cc0d5ddcc3..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/3.png b/front/public/images/small/Botania/doubleFlower1/3.png deleted file mode 100644 index 48b397848c..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/4.png b/front/public/images/small/Botania/doubleFlower1/4.png deleted file mode 100644 index 0b9216efc7..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/5.png b/front/public/images/small/Botania/doubleFlower1/5.png deleted file mode 100644 index 36f0cd7b4d..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/6.png b/front/public/images/small/Botania/doubleFlower1/6.png deleted file mode 100644 index d9ed7910ae..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower1/7.png b/front/public/images/small/Botania/doubleFlower1/7.png deleted file mode 100644 index fe741b61ef..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower1/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/0.png b/front/public/images/small/Botania/doubleFlower2/0.png deleted file mode 100644 index 48fb86e18a..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/1.png b/front/public/images/small/Botania/doubleFlower2/1.png deleted file mode 100644 index d4851493dd..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/2.png b/front/public/images/small/Botania/doubleFlower2/2.png deleted file mode 100644 index 71b00a84e4..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/3.png b/front/public/images/small/Botania/doubleFlower2/3.png deleted file mode 100644 index dcc92c5f60..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/4.png b/front/public/images/small/Botania/doubleFlower2/4.png deleted file mode 100644 index 0fa103709a..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/5.png b/front/public/images/small/Botania/doubleFlower2/5.png deleted file mode 100644 index 1aaa7d087c..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/6.png b/front/public/images/small/Botania/doubleFlower2/6.png deleted file mode 100644 index 6f69c137e0..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/doubleFlower2/7.png b/front/public/images/small/Botania/doubleFlower2/7.png deleted file mode 100644 index c809ebe1cb..0000000000 Binary files a/front/public/images/small/Botania/doubleFlower2/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood/0.png b/front/public/images/small/Botania/dreamwood/0.png deleted file mode 100644 index 72ab995e9a..0000000000 Binary files a/front/public/images/small/Botania/dreamwood/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood/1.png b/front/public/images/small/Botania/dreamwood/1.png deleted file mode 100644 index da880bcd6d..0000000000 Binary files a/front/public/images/small/Botania/dreamwood/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood/2.png b/front/public/images/small/Botania/dreamwood/2.png deleted file mode 100644 index bed4ffa8fd..0000000000 Binary files a/front/public/images/small/Botania/dreamwood/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood/3.png b/front/public/images/small/Botania/dreamwood/3.png deleted file mode 100644 index 9a3f82da64..0000000000 Binary files a/front/public/images/small/Botania/dreamwood/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood/4.png b/front/public/images/small/Botania/dreamwood/4.png deleted file mode 100644 index 61977de87c..0000000000 Binary files a/front/public/images/small/Botania/dreamwood/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood/5.png b/front/public/images/small/Botania/dreamwood/5.png deleted file mode 100644 index 20c19e5de9..0000000000 Binary files a/front/public/images/small/Botania/dreamwood/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood0Slab/0.png b/front/public/images/small/Botania/dreamwood0Slab/0.png deleted file mode 100644 index e221e95857..0000000000 Binary files a/front/public/images/small/Botania/dreamwood0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood0SlabFull/0.png b/front/public/images/small/Botania/dreamwood0SlabFull/0.png deleted file mode 100644 index 72ab995e9a..0000000000 Binary files a/front/public/images/small/Botania/dreamwood0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood0Stairs/0.png b/front/public/images/small/Botania/dreamwood0Stairs/0.png deleted file mode 100644 index c35ea65d4a..0000000000 Binary files a/front/public/images/small/Botania/dreamwood0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood0Wall/0.png b/front/public/images/small/Botania/dreamwood0Wall/0.png deleted file mode 100644 index eb51557191..0000000000 Binary files a/front/public/images/small/Botania/dreamwood0Wall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood1Slab/0.png b/front/public/images/small/Botania/dreamwood1Slab/0.png deleted file mode 100644 index 988fe2eff8..0000000000 Binary files a/front/public/images/small/Botania/dreamwood1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood1SlabFull/0.png b/front/public/images/small/Botania/dreamwood1SlabFull/0.png deleted file mode 100644 index da880bcd6d..0000000000 Binary files a/front/public/images/small/Botania/dreamwood1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dreamwood1Stairs/0.png b/front/public/images/small/Botania/dreamwood1Stairs/0.png deleted file mode 100644 index e8b246b3ab..0000000000 Binary files a/front/public/images/small/Botania/dreamwood1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/0.png b/front/public/images/small/Botania/dye/0.png deleted file mode 100644 index 3f4ac2c4d8..0000000000 Binary files a/front/public/images/small/Botania/dye/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/1.png b/front/public/images/small/Botania/dye/1.png deleted file mode 100644 index 337f40cdf4..0000000000 Binary files a/front/public/images/small/Botania/dye/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/10.png b/front/public/images/small/Botania/dye/10.png deleted file mode 100644 index 82c460537b..0000000000 Binary files a/front/public/images/small/Botania/dye/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/11.png b/front/public/images/small/Botania/dye/11.png deleted file mode 100644 index 6fd6a67f8b..0000000000 Binary files a/front/public/images/small/Botania/dye/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/12.png b/front/public/images/small/Botania/dye/12.png deleted file mode 100644 index 0a4957b2e1..0000000000 Binary files a/front/public/images/small/Botania/dye/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/13.png b/front/public/images/small/Botania/dye/13.png deleted file mode 100644 index 5b38789acd..0000000000 Binary files a/front/public/images/small/Botania/dye/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/14.png b/front/public/images/small/Botania/dye/14.png deleted file mode 100644 index e43ff4d050..0000000000 Binary files a/front/public/images/small/Botania/dye/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/15.png b/front/public/images/small/Botania/dye/15.png deleted file mode 100644 index cafd4cadb7..0000000000 Binary files a/front/public/images/small/Botania/dye/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/2.png b/front/public/images/small/Botania/dye/2.png deleted file mode 100644 index faa0ca8795..0000000000 Binary files a/front/public/images/small/Botania/dye/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/3.png b/front/public/images/small/Botania/dye/3.png deleted file mode 100644 index 09d5bb805f..0000000000 Binary files a/front/public/images/small/Botania/dye/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/4.png b/front/public/images/small/Botania/dye/4.png deleted file mode 100644 index 1f940608d4..0000000000 Binary files a/front/public/images/small/Botania/dye/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/5.png b/front/public/images/small/Botania/dye/5.png deleted file mode 100644 index 860b9570db..0000000000 Binary files a/front/public/images/small/Botania/dye/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/6.png b/front/public/images/small/Botania/dye/6.png deleted file mode 100644 index 44c97a4dcf..0000000000 Binary files a/front/public/images/small/Botania/dye/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/7.png b/front/public/images/small/Botania/dye/7.png deleted file mode 100644 index 1bbde38b0a..0000000000 Binary files a/front/public/images/small/Botania/dye/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/8.png b/front/public/images/small/Botania/dye/8.png deleted file mode 100644 index 610142b3ff..0000000000 Binary files a/front/public/images/small/Botania/dye/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/dye/9.png b/front/public/images/small/Botania/dye/9.png deleted file mode 100644 index 0b8d9488aa..0000000000 Binary files a/front/public/images/small/Botania/dye/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumAxe/0.png b/front/public/images/small/Botania/elementiumAxe/0.png deleted file mode 100644 index a4419e1c51..0000000000 Binary files a/front/public/images/small/Botania/elementiumAxe/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumBoots/0.png b/front/public/images/small/Botania/elementiumBoots/0.png deleted file mode 100644 index 3807028c40..0000000000 Binary files a/front/public/images/small/Botania/elementiumBoots/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumChest/0.png b/front/public/images/small/Botania/elementiumChest/0.png deleted file mode 100644 index 4739212818..0000000000 Binary files a/front/public/images/small/Botania/elementiumChest/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumHelm/0.png b/front/public/images/small/Botania/elementiumHelm/0.png deleted file mode 100644 index cacc13ca15..0000000000 Binary files a/front/public/images/small/Botania/elementiumHelm/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumHelmReveal/0.png b/front/public/images/small/Botania/elementiumHelmReveal/0.png deleted file mode 100644 index 60615fed0f..0000000000 Binary files a/front/public/images/small/Botania/elementiumHelmReveal/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumLegs/0.png b/front/public/images/small/Botania/elementiumLegs/0.png deleted file mode 100644 index ca3ded89c9..0000000000 Binary files a/front/public/images/small/Botania/elementiumLegs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumPick/0.png b/front/public/images/small/Botania/elementiumPick/0.png deleted file mode 100644 index f177df16cc..0000000000 Binary files a/front/public/images/small/Botania/elementiumPick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumShears/0.png b/front/public/images/small/Botania/elementiumShears/0.png deleted file mode 100644 index 6835a00ea1..0000000000 Binary files a/front/public/images/small/Botania/elementiumShears/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumShovel/0.png b/front/public/images/small/Botania/elementiumShovel/0.png deleted file mode 100644 index e99f8b99ac..0000000000 Binary files a/front/public/images/small/Botania/elementiumShovel/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elementiumSword/0.png b/front/public/images/small/Botania/elementiumSword/0.png deleted file mode 100644 index a666c08136..0000000000 Binary files a/front/public/images/small/Botania/elementiumSword/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elfGlass/0.png b/front/public/images/small/Botania/elfGlass/0.png deleted file mode 100644 index f1c6dc2ca3..0000000000 Binary files a/front/public/images/small/Botania/elfGlass/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/elfGlassPane/0.png b/front/public/images/small/Botania/elfGlassPane/0.png deleted file mode 100644 index 95125c0470..0000000000 Binary files a/front/public/images/small/Botania/elfGlassPane/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/enchantedSoil/0.png b/front/public/images/small/Botania/enchantedSoil/0.png deleted file mode 100644 index 9e3610791c..0000000000 Binary files a/front/public/images/small/Botania/enchantedSoil/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/enchanter/0.png b/front/public/images/small/Botania/enchanter/0.png deleted file mode 100644 index f165c21453..0000000000 Binary files a/front/public/images/small/Botania/enchanter/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick/0.png b/front/public/images/small/Botania/endStoneBrick/0.png deleted file mode 100644 index 362673ea76..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick/1.png b/front/public/images/small/Botania/endStoneBrick/1.png deleted file mode 100644 index 99d9f87a03..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick/2.png b/front/public/images/small/Botania/endStoneBrick/2.png deleted file mode 100644 index 7a11cbd7ee..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick/3.png b/front/public/images/small/Botania/endStoneBrick/3.png deleted file mode 100644 index 808ac06fa2..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick0Slab/0.png b/front/public/images/small/Botania/endStoneBrick0Slab/0.png deleted file mode 100644 index f0522afefb..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick0SlabFull/0.png b/front/public/images/small/Botania/endStoneBrick0SlabFull/0.png deleted file mode 100644 index 362673ea76..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick0Stairs/0.png b/front/public/images/small/Botania/endStoneBrick0Stairs/0.png deleted file mode 100644 index a9a91d6e8c..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick2Slab/0.png b/front/public/images/small/Botania/endStoneBrick2Slab/0.png deleted file mode 100644 index 132d1308b8..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick2Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick2SlabFull/0.png b/front/public/images/small/Botania/endStoneBrick2SlabFull/0.png deleted file mode 100644 index 7a11cbd7ee..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/endStoneBrick2Stairs/0.png b/front/public/images/small/Botania/endStoneBrick2Stairs/0.png deleted file mode 100644 index 27fe303eba..0000000000 Binary files a/front/public/images/small/Botania/endStoneBrick2Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/enderDagger/0.png b/front/public/images/small/Botania/enderDagger/0.png deleted file mode 100644 index 05a8353351..0000000000 Binary files a/front/public/images/small/Botania/enderDagger/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/enderEyeBlock/0.png b/front/public/images/small/Botania/enderEyeBlock/0.png deleted file mode 100644 index 06c8a73484..0000000000 Binary files a/front/public/images/small/Botania/enderEyeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/enderHand/0.png b/front/public/images/small/Botania/enderHand/0.png deleted file mode 100644 index af9bc2be65..0000000000 Binary files a/front/public/images/small/Botania/enderHand/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/exchangeRod/0.png b/front/public/images/small/Botania/exchangeRod/0.png deleted file mode 100644 index f04332ccc9..0000000000 Binary files a/front/public/images/small/Botania/exchangeRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/fakeAir/0.png b/front/public/images/small/Botania/fakeAir/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/fakeAir/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/felPumpkin/0.png b/front/public/images/small/Botania/felPumpkin/0.png deleted file mode 100644 index 6d6c8bc16b..0000000000 Binary files a/front/public/images/small/Botania/felPumpkin/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/fertilizer/0.png b/front/public/images/small/Botania/fertilizer/0.png deleted file mode 100644 index 8d066e6203..0000000000 Binary files a/front/public/images/small/Botania/fertilizer/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/fireRod/0.png b/front/public/images/small/Botania/fireRod/0.png deleted file mode 100644 index ad283418e8..0000000000 Binary files a/front/public/images/small/Botania/fireRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/0.png b/front/public/images/small/Botania/flightTiara/0.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/1.png b/front/public/images/small/Botania/flightTiara/1.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/2.png b/front/public/images/small/Botania/flightTiara/2.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/3.png b/front/public/images/small/Botania/flightTiara/3.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/4.png b/front/public/images/small/Botania/flightTiara/4.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/5.png b/front/public/images/small/Botania/flightTiara/5.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/6.png b/front/public/images/small/Botania/flightTiara/6.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/7.png b/front/public/images/small/Botania/flightTiara/7.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/flightTiara/8.png b/front/public/images/small/Botania/flightTiara/8.png deleted file mode 100644 index 4cd713cba7..0000000000 Binary files a/front/public/images/small/Botania/flightTiara/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/floatingSpecialFlower/0.png b/front/public/images/small/Botania/floatingSpecialFlower/0.png deleted file mode 100644 index ae97de24c3..0000000000 Binary files a/front/public/images/small/Botania/floatingSpecialFlower/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/0.png b/front/public/images/small/Botania/flower/0.png deleted file mode 100644 index afb7e6d22f..0000000000 Binary files a/front/public/images/small/Botania/flower/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/1.png b/front/public/images/small/Botania/flower/1.png deleted file mode 100644 index f2ff9e457e..0000000000 Binary files a/front/public/images/small/Botania/flower/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/10.png b/front/public/images/small/Botania/flower/10.png deleted file mode 100644 index 8e706ad514..0000000000 Binary files a/front/public/images/small/Botania/flower/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/11.png b/front/public/images/small/Botania/flower/11.png deleted file mode 100644 index b8dbb01935..0000000000 Binary files a/front/public/images/small/Botania/flower/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/12.png b/front/public/images/small/Botania/flower/12.png deleted file mode 100644 index b5229634ed..0000000000 Binary files a/front/public/images/small/Botania/flower/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/13.png b/front/public/images/small/Botania/flower/13.png deleted file mode 100644 index 4b26fde834..0000000000 Binary files a/front/public/images/small/Botania/flower/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/14.png b/front/public/images/small/Botania/flower/14.png deleted file mode 100644 index 37b0c97dfb..0000000000 Binary files a/front/public/images/small/Botania/flower/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/15.png b/front/public/images/small/Botania/flower/15.png deleted file mode 100644 index fcb6a4895c..0000000000 Binary files a/front/public/images/small/Botania/flower/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/2.png b/front/public/images/small/Botania/flower/2.png deleted file mode 100644 index 2840202d58..0000000000 Binary files a/front/public/images/small/Botania/flower/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/3.png b/front/public/images/small/Botania/flower/3.png deleted file mode 100644 index 6c2d63e20a..0000000000 Binary files a/front/public/images/small/Botania/flower/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/4.png b/front/public/images/small/Botania/flower/4.png deleted file mode 100644 index aff68a152e..0000000000 Binary files a/front/public/images/small/Botania/flower/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/5.png b/front/public/images/small/Botania/flower/5.png deleted file mode 100644 index 7797bc0423..0000000000 Binary files a/front/public/images/small/Botania/flower/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/6.png b/front/public/images/small/Botania/flower/6.png deleted file mode 100644 index e6d21121e6..0000000000 Binary files a/front/public/images/small/Botania/flower/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/7.png b/front/public/images/small/Botania/flower/7.png deleted file mode 100644 index df1adc1616..0000000000 Binary files a/front/public/images/small/Botania/flower/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/8.png b/front/public/images/small/Botania/flower/8.png deleted file mode 100644 index 4b76c129cc..0000000000 Binary files a/front/public/images/small/Botania/flower/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/flower/9.png b/front/public/images/small/Botania/flower/9.png deleted file mode 100644 index 9f64351634..0000000000 Binary files a/front/public/images/small/Botania/flower/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/flowerBag/0.png b/front/public/images/small/Botania/flowerBag/0.png deleted file mode 100644 index adb8467834..0000000000 Binary files a/front/public/images/small/Botania/flowerBag/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/flugelEye/0.png b/front/public/images/small/Botania/flugelEye/0.png deleted file mode 100644 index 58185149d4..0000000000 Binary files a/front/public/images/small/Botania/flugelEye/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/forestDrum/0.png b/front/public/images/small/Botania/forestDrum/0.png deleted file mode 100644 index cab4c3ffa4..0000000000 Binary files a/front/public/images/small/Botania/forestDrum/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/forestDrum/1.png b/front/public/images/small/Botania/forestDrum/1.png deleted file mode 100644 index e16e06d514..0000000000 Binary files a/front/public/images/small/Botania/forestDrum/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/forestDrum/2.png b/front/public/images/small/Botania/forestDrum/2.png deleted file mode 100644 index ca0427971b..0000000000 Binary files a/front/public/images/small/Botania/forestDrum/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/forestEye/0.png b/front/public/images/small/Botania/forestEye/0.png deleted file mode 100644 index df4625a163..0000000000 Binary files a/front/public/images/small/Botania/forestEye/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/gaiaHead/0.png b/front/public/images/small/Botania/gaiaHead/0.png deleted file mode 100644 index 36e6eca7ed..0000000000 Binary files a/front/public/images/small/Botania/gaiaHead/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/gaiaHeadBlock/0.png b/front/public/images/small/Botania/gaiaHeadBlock/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Botania/gaiaHeadBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/ghostRail/0.png b/front/public/images/small/Botania/ghostRail/0.png deleted file mode 100644 index 021af43bfd..0000000000 Binary files a/front/public/images/small/Botania/ghostRail/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/glassPick/0.png b/front/public/images/small/Botania/glassPick/0.png deleted file mode 100644 index a41a15ff75..0000000000 Binary files a/front/public/images/small/Botania/glassPick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/goldenLaurel/0.png b/front/public/images/small/Botania/goldenLaurel/0.png deleted file mode 100644 index 1f77efc55b..0000000000 Binary files a/front/public/images/small/Botania/goldenLaurel/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassHorn/0.png b/front/public/images/small/Botania/grassHorn/0.png deleted file mode 100644 index ae38327fcd..0000000000 Binary files a/front/public/images/small/Botania/grassHorn/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassHorn/1.png b/front/public/images/small/Botania/grassHorn/1.png deleted file mode 100644 index 8b7bf15d27..0000000000 Binary files a/front/public/images/small/Botania/grassHorn/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassHorn/2.png b/front/public/images/small/Botania/grassHorn/2.png deleted file mode 100644 index d62822233b..0000000000 Binary files a/front/public/images/small/Botania/grassHorn/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/0.png b/front/public/images/small/Botania/grassSeeds/0.png deleted file mode 100644 index 1ced6e52ab..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/1.png b/front/public/images/small/Botania/grassSeeds/1.png deleted file mode 100644 index b06ed910b2..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/2.png b/front/public/images/small/Botania/grassSeeds/2.png deleted file mode 100644 index 95ec106999..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/3.png b/front/public/images/small/Botania/grassSeeds/3.png deleted file mode 100644 index 26d7186d10..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/4.png b/front/public/images/small/Botania/grassSeeds/4.png deleted file mode 100644 index 36277517af..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/5.png b/front/public/images/small/Botania/grassSeeds/5.png deleted file mode 100644 index 9dda500602..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/6.png b/front/public/images/small/Botania/grassSeeds/6.png deleted file mode 100644 index 9feb9c76fe..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/7.png b/front/public/images/small/Botania/grassSeeds/7.png deleted file mode 100644 index b7505eb276..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/grassSeeds/8.png b/front/public/images/small/Botania/grassSeeds/8.png deleted file mode 100644 index 5e8fab7e1b..0000000000 Binary files a/front/public/images/small/Botania/grassSeeds/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/gravityRod/0.png b/front/public/images/small/Botania/gravityRod/0.png deleted file mode 100644 index c04a7b2566..0000000000 Binary files a/front/public/images/small/Botania/gravityRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/holyCloak/0.png b/front/public/images/small/Botania/holyCloak/0.png deleted file mode 100644 index 6b7debd53c..0000000000 Binary files a/front/public/images/small/Botania/holyCloak/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/hourglass/0.png b/front/public/images/small/Botania/hourglass/0.png deleted file mode 100644 index b5bc3c254e..0000000000 Binary files a/front/public/images/small/Botania/hourglass/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/icePendant/0.png b/front/public/images/small/Botania/icePendant/0.png deleted file mode 100644 index 6611fc8e73..0000000000 Binary files a/front/public/images/small/Botania/icePendant/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/incensePlate/0.png b/front/public/images/small/Botania/incensePlate/0.png deleted file mode 100644 index 91f33910b1..0000000000 Binary files a/front/public/images/small/Botania/incensePlate/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/incenseStick/0.png b/front/public/images/small/Botania/incenseStick/0.png deleted file mode 100644 index 62f2a973b4..0000000000 Binary files a/front/public/images/small/Botania/incenseStick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/infiniteFruit/0.png b/front/public/images/small/Botania/infiniteFruit/0.png deleted file mode 100644 index 86f0008a68..0000000000 Binary files a/front/public/images/small/Botania/infiniteFruit/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/itemFinder/0.png b/front/public/images/small/Botania/itemFinder/0.png deleted file mode 100644 index f8ab68aa95..0000000000 Binary files a/front/public/images/small/Botania/itemFinder/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/keepIvy/0.png b/front/public/images/small/Botania/keepIvy/0.png deleted file mode 100644 index 568a28ea59..0000000000 Binary files a/front/public/images/small/Botania/keepIvy/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/kingKey/0.png b/front/public/images/small/Botania/kingKey/0.png deleted file mode 100644 index 1756fe6fb6..0000000000 Binary files a/front/public/images/small/Botania/kingKey/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/knockbackBelt/0.png b/front/public/images/small/Botania/knockbackBelt/0.png deleted file mode 100644 index 9d20cb61af..0000000000 Binary files a/front/public/images/small/Botania/knockbackBelt/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/laputaShard/0.png b/front/public/images/small/Botania/laputaShard/0.png deleted file mode 100644 index b3f170a2fb..0000000000 Binary files a/front/public/images/small/Botania/laputaShard/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/laputaShard/14.png b/front/public/images/small/Botania/laputaShard/14.png deleted file mode 100644 index b3f170a2fb..0000000000 Binary files a/front/public/images/small/Botania/laputaShard/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/laputaShard/19.png b/front/public/images/small/Botania/laputaShard/19.png deleted file mode 100644 index b3f170a2fb..0000000000 Binary files a/front/public/images/small/Botania/laputaShard/19.png and /dev/null differ diff --git a/front/public/images/small/Botania/laputaShard/4.png b/front/public/images/small/Botania/laputaShard/4.png deleted file mode 100644 index b3f170a2fb..0000000000 Binary files a/front/public/images/small/Botania/laputaShard/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/laputaShard/9.png b/front/public/images/small/Botania/laputaShard/9.png deleted file mode 100644 index b3f170a2fb..0000000000 Binary files a/front/public/images/small/Botania/laputaShard/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/lavaPendant/0.png b/front/public/images/small/Botania/lavaPendant/0.png deleted file mode 100644 index 20850f7ac8..0000000000 Binary files a/front/public/images/small/Botania/lavaPendant/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/0.png b/front/public/images/small/Botania/lens/0.png deleted file mode 100644 index fa4409a43d..0000000000 Binary files a/front/public/images/small/Botania/lens/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/1.png b/front/public/images/small/Botania/lens/1.png deleted file mode 100644 index 2f5f241f71..0000000000 Binary files a/front/public/images/small/Botania/lens/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/10.png b/front/public/images/small/Botania/lens/10.png deleted file mode 100644 index b3f46308ef..0000000000 Binary files a/front/public/images/small/Botania/lens/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/11.png b/front/public/images/small/Botania/lens/11.png deleted file mode 100644 index 515adcef6e..0000000000 Binary files a/front/public/images/small/Botania/lens/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/12.png b/front/public/images/small/Botania/lens/12.png deleted file mode 100644 index 87cf1b1618..0000000000 Binary files a/front/public/images/small/Botania/lens/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/13.png b/front/public/images/small/Botania/lens/13.png deleted file mode 100644 index 535671edf6..0000000000 Binary files a/front/public/images/small/Botania/lens/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/14.png b/front/public/images/small/Botania/lens/14.png deleted file mode 100644 index b2427a5757..0000000000 Binary files a/front/public/images/small/Botania/lens/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/15.png b/front/public/images/small/Botania/lens/15.png deleted file mode 100644 index e4eb4b44c0..0000000000 Binary files a/front/public/images/small/Botania/lens/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/16.png b/front/public/images/small/Botania/lens/16.png deleted file mode 100644 index 009be5133c..0000000000 Binary files a/front/public/images/small/Botania/lens/16.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/17.png b/front/public/images/small/Botania/lens/17.png deleted file mode 100644 index e6ae80e15b..0000000000 Binary files a/front/public/images/small/Botania/lens/17.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/18.png b/front/public/images/small/Botania/lens/18.png deleted file mode 100644 index 5c76b049b8..0000000000 Binary files a/front/public/images/small/Botania/lens/18.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/19.png b/front/public/images/small/Botania/lens/19.png deleted file mode 100644 index b7bf7a7c66..0000000000 Binary files a/front/public/images/small/Botania/lens/19.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/2.png b/front/public/images/small/Botania/lens/2.png deleted file mode 100644 index d961fd1794..0000000000 Binary files a/front/public/images/small/Botania/lens/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/20.png b/front/public/images/small/Botania/lens/20.png deleted file mode 100644 index b25dcee1ee..0000000000 Binary files a/front/public/images/small/Botania/lens/20.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/21.png b/front/public/images/small/Botania/lens/21.png deleted file mode 100644 index 9b8528ed6e..0000000000 Binary files a/front/public/images/small/Botania/lens/21.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/3.png b/front/public/images/small/Botania/lens/3.png deleted file mode 100644 index 2fd94db216..0000000000 Binary files a/front/public/images/small/Botania/lens/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/4.png b/front/public/images/small/Botania/lens/4.png deleted file mode 100644 index 157af01fa3..0000000000 Binary files a/front/public/images/small/Botania/lens/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/5.png b/front/public/images/small/Botania/lens/5.png deleted file mode 100644 index 0c49512039..0000000000 Binary files a/front/public/images/small/Botania/lens/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/6.png b/front/public/images/small/Botania/lens/6.png deleted file mode 100644 index e65839f2be..0000000000 Binary files a/front/public/images/small/Botania/lens/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/7.png b/front/public/images/small/Botania/lens/7.png deleted file mode 100644 index 7d9ae5f5fc..0000000000 Binary files a/front/public/images/small/Botania/lens/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/8.png b/front/public/images/small/Botania/lens/8.png deleted file mode 100644 index 9094ef759c..0000000000 Binary files a/front/public/images/small/Botania/lens/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/lens/9.png b/front/public/images/small/Botania/lens/9.png deleted file mode 100644 index c950e92996..0000000000 Binary files a/front/public/images/small/Botania/lens/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/lexicon/0.png b/front/public/images/small/Botania/lexicon/0.png deleted file mode 100644 index e39ba9f1bb..0000000000 Binary files a/front/public/images/small/Botania/lexicon/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/lightLauncher/0.png b/front/public/images/small/Botania/lightLauncher/0.png deleted file mode 100644 index 4c80d50337..0000000000 Binary files a/front/public/images/small/Botania/lightLauncher/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/lightRelay/0.png b/front/public/images/small/Botania/lightRelay/0.png deleted file mode 100644 index 485dd9cd2d..0000000000 Binary files a/front/public/images/small/Botania/lightRelay/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/lightRelay/1.png b/front/public/images/small/Botania/lightRelay/1.png deleted file mode 100644 index 586cd5df53..0000000000 Binary files a/front/public/images/small/Botania/lightRelay/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock/0.png b/front/public/images/small/Botania/livingrock/0.png deleted file mode 100644 index 047b829c15..0000000000 Binary files a/front/public/images/small/Botania/livingrock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock/1.png b/front/public/images/small/Botania/livingrock/1.png deleted file mode 100644 index e9f1823ebe..0000000000 Binary files a/front/public/images/small/Botania/livingrock/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock/2.png b/front/public/images/small/Botania/livingrock/2.png deleted file mode 100644 index ea5dadc6aa..0000000000 Binary files a/front/public/images/small/Botania/livingrock/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock/3.png b/front/public/images/small/Botania/livingrock/3.png deleted file mode 100644 index fb43c75a6f..0000000000 Binary files a/front/public/images/small/Botania/livingrock/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock/4.png b/front/public/images/small/Botania/livingrock/4.png deleted file mode 100644 index d571c69adb..0000000000 Binary files a/front/public/images/small/Botania/livingrock/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock0Slab/0.png b/front/public/images/small/Botania/livingrock0Slab/0.png deleted file mode 100644 index 1985d92e46..0000000000 Binary files a/front/public/images/small/Botania/livingrock0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock0SlabFull/0.png b/front/public/images/small/Botania/livingrock0SlabFull/0.png deleted file mode 100644 index 047b829c15..0000000000 Binary files a/front/public/images/small/Botania/livingrock0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock0Stairs/0.png b/front/public/images/small/Botania/livingrock0Stairs/0.png deleted file mode 100644 index b17c49d263..0000000000 Binary files a/front/public/images/small/Botania/livingrock0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock0Wall/0.png b/front/public/images/small/Botania/livingrock0Wall/0.png deleted file mode 100644 index 05dacaa8cd..0000000000 Binary files a/front/public/images/small/Botania/livingrock0Wall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock1Slab/0.png b/front/public/images/small/Botania/livingrock1Slab/0.png deleted file mode 100644 index a9a2e3e4f0..0000000000 Binary files a/front/public/images/small/Botania/livingrock1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock1SlabFull/0.png b/front/public/images/small/Botania/livingrock1SlabFull/0.png deleted file mode 100644 index e9f1823ebe..0000000000 Binary files a/front/public/images/small/Botania/livingrock1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingrock1Stairs/0.png b/front/public/images/small/Botania/livingrock1Stairs/0.png deleted file mode 100644 index 65a3c54b41..0000000000 Binary files a/front/public/images/small/Botania/livingrock1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood/0.png b/front/public/images/small/Botania/livingwood/0.png deleted file mode 100644 index 60bf7daff2..0000000000 Binary files a/front/public/images/small/Botania/livingwood/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood/1.png b/front/public/images/small/Botania/livingwood/1.png deleted file mode 100644 index 704d5229e4..0000000000 Binary files a/front/public/images/small/Botania/livingwood/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood/2.png b/front/public/images/small/Botania/livingwood/2.png deleted file mode 100644 index a3744cb090..0000000000 Binary files a/front/public/images/small/Botania/livingwood/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood/3.png b/front/public/images/small/Botania/livingwood/3.png deleted file mode 100644 index 1417fb8480..0000000000 Binary files a/front/public/images/small/Botania/livingwood/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood/4.png b/front/public/images/small/Botania/livingwood/4.png deleted file mode 100644 index ef08164c41..0000000000 Binary files a/front/public/images/small/Botania/livingwood/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood/5.png b/front/public/images/small/Botania/livingwood/5.png deleted file mode 100644 index 93a92d4781..0000000000 Binary files a/front/public/images/small/Botania/livingwood/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood0Slab/0.png b/front/public/images/small/Botania/livingwood0Slab/0.png deleted file mode 100644 index 29834ee47e..0000000000 Binary files a/front/public/images/small/Botania/livingwood0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood0SlabFull/0.png b/front/public/images/small/Botania/livingwood0SlabFull/0.png deleted file mode 100644 index 60bf7daff2..0000000000 Binary files a/front/public/images/small/Botania/livingwood0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood0Stairs/0.png b/front/public/images/small/Botania/livingwood0Stairs/0.png deleted file mode 100644 index 862b98ff9f..0000000000 Binary files a/front/public/images/small/Botania/livingwood0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood0Wall/0.png b/front/public/images/small/Botania/livingwood0Wall/0.png deleted file mode 100644 index 37bb199e04..0000000000 Binary files a/front/public/images/small/Botania/livingwood0Wall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood1Slab/0.png b/front/public/images/small/Botania/livingwood1Slab/0.png deleted file mode 100644 index 5fe0a8275d..0000000000 Binary files a/front/public/images/small/Botania/livingwood1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood1SlabFull/0.png b/front/public/images/small/Botania/livingwood1SlabFull/0.png deleted file mode 100644 index 704d5229e4..0000000000 Binary files a/front/public/images/small/Botania/livingwood1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwood1Stairs/0.png b/front/public/images/small/Botania/livingwood1Stairs/0.png deleted file mode 100644 index aabf7f3456..0000000000 Binary files a/front/public/images/small/Botania/livingwood1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/livingwoodBow/0.png b/front/public/images/small/Botania/livingwoodBow/0.png deleted file mode 100644 index 57d010a9d6..0000000000 Binary files a/front/public/images/small/Botania/livingwoodBow/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/lokiRing/0.png b/front/public/images/small/Botania/lokiRing/0.png deleted file mode 100644 index 286cd14865..0000000000 Binary files a/front/public/images/small/Botania/lokiRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/magnetRing/0.png b/front/public/images/small/Botania/magnetRing/0.png deleted file mode 100644 index 248db2b862..0000000000 Binary files a/front/public/images/small/Botania/magnetRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/magnetRingGreater/0.png b/front/public/images/small/Botania/magnetRingGreater/0.png deleted file mode 100644 index 4ef2f3bc34..0000000000 Binary files a/front/public/images/small/Botania/magnetRingGreater/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/0.png b/front/public/images/small/Botania/manaBeacon/0.png deleted file mode 100644 index 56fdae7bae..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/1.png b/front/public/images/small/Botania/manaBeacon/1.png deleted file mode 100644 index 0e8e13aa3b..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/10.png b/front/public/images/small/Botania/manaBeacon/10.png deleted file mode 100644 index 5bdff2f13f..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/11.png b/front/public/images/small/Botania/manaBeacon/11.png deleted file mode 100644 index 80a8a31449..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/12.png b/front/public/images/small/Botania/manaBeacon/12.png deleted file mode 100644 index ec5ef34c42..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/13.png b/front/public/images/small/Botania/manaBeacon/13.png deleted file mode 100644 index 91ce975bc4..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/14.png b/front/public/images/small/Botania/manaBeacon/14.png deleted file mode 100644 index 488071a7f4..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/15.png b/front/public/images/small/Botania/manaBeacon/15.png deleted file mode 100644 index 08a11ebaad..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/2.png b/front/public/images/small/Botania/manaBeacon/2.png deleted file mode 100644 index 829c2463e1..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/3.png b/front/public/images/small/Botania/manaBeacon/3.png deleted file mode 100644 index 19c0e98a92..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/4.png b/front/public/images/small/Botania/manaBeacon/4.png deleted file mode 100644 index 4bfe289aaf..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/5.png b/front/public/images/small/Botania/manaBeacon/5.png deleted file mode 100644 index 4968b58f76..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/6.png b/front/public/images/small/Botania/manaBeacon/6.png deleted file mode 100644 index 4a54c7843f..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/7.png b/front/public/images/small/Botania/manaBeacon/7.png deleted file mode 100644 index 1f94542f73..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/8.png b/front/public/images/small/Botania/manaBeacon/8.png deleted file mode 100644 index a2fa1f9212..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBeacon/9.png b/front/public/images/small/Botania/manaBeacon/9.png deleted file mode 100644 index b6aa77dde3..0000000000 Binary files a/front/public/images/small/Botania/manaBeacon/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBomb/0.png b/front/public/images/small/Botania/manaBomb/0.png deleted file mode 100644 index 6877398099..0000000000 Binary files a/front/public/images/small/Botania/manaBomb/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaBottle/0.png b/front/public/images/small/Botania/manaBottle/0.png deleted file mode 100644 index 61146032de..0000000000 Binary files a/front/public/images/small/Botania/manaBottle/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaCookie/0.png b/front/public/images/small/Botania/manaCookie/0.png deleted file mode 100644 index 068d0cf8a6..0000000000 Binary files a/front/public/images/small/Botania/manaCookie/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaDetector/0.png b/front/public/images/small/Botania/manaDetector/0.png deleted file mode 100644 index 7865d73dea..0000000000 Binary files a/front/public/images/small/Botania/manaDetector/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaFlame/0.png b/front/public/images/small/Botania/manaFlame/0.png deleted file mode 100644 index b81ca7f504..0000000000 Binary files a/front/public/images/small/Botania/manaFlame/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaGlass/0.png b/front/public/images/small/Botania/manaGlass/0.png deleted file mode 100644 index 5f6ed76b3e..0000000000 Binary files a/front/public/images/small/Botania/manaGlass/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaGlassPane/0.png b/front/public/images/small/Botania/manaGlassPane/0.png deleted file mode 100644 index 893954b651..0000000000 Binary files a/front/public/images/small/Botania/manaGlassPane/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaGun/0.png b/front/public/images/small/Botania/manaGun/0.png deleted file mode 100644 index 4d7d3a92ad..0000000000 Binary files a/front/public/images/small/Botania/manaGun/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaInkwell/150.png b/front/public/images/small/Botania/manaInkwell/150.png deleted file mode 100644 index d0b421c0e8..0000000000 Binary files a/front/public/images/small/Botania/manaInkwell/150.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaMirror/1000.png b/front/public/images/small/Botania/manaMirror/1000.png deleted file mode 100644 index 432da931ac..0000000000 Binary files a/front/public/images/small/Botania/manaMirror/1000.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/0.png b/front/public/images/small/Botania/manaResource/0.png deleted file mode 100644 index 98965dacbb..0000000000 Binary files a/front/public/images/small/Botania/manaResource/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/1.png b/front/public/images/small/Botania/manaResource/1.png deleted file mode 100644 index 95937acca0..0000000000 Binary files a/front/public/images/small/Botania/manaResource/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/10.png b/front/public/images/small/Botania/manaResource/10.png deleted file mode 100644 index 4dbc3b7b4d..0000000000 Binary files a/front/public/images/small/Botania/manaResource/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/11.png b/front/public/images/small/Botania/manaResource/11.png deleted file mode 100644 index c6720b90bb..0000000000 Binary files a/front/public/images/small/Botania/manaResource/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/12.png b/front/public/images/small/Botania/manaResource/12.png deleted file mode 100644 index b11f868708..0000000000 Binary files a/front/public/images/small/Botania/manaResource/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/13.png b/front/public/images/small/Botania/manaResource/13.png deleted file mode 100644 index 7e785bebec..0000000000 Binary files a/front/public/images/small/Botania/manaResource/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/14.png b/front/public/images/small/Botania/manaResource/14.png deleted file mode 100644 index d6e2f97cde..0000000000 Binary files a/front/public/images/small/Botania/manaResource/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/15.png b/front/public/images/small/Botania/manaResource/15.png deleted file mode 100644 index 61b5f36ae5..0000000000 Binary files a/front/public/images/small/Botania/manaResource/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/16.png b/front/public/images/small/Botania/manaResource/16.png deleted file mode 100644 index 1bdc734e7e..0000000000 Binary files a/front/public/images/small/Botania/manaResource/16.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/17.png b/front/public/images/small/Botania/manaResource/17.png deleted file mode 100644 index 34985fb93f..0000000000 Binary files a/front/public/images/small/Botania/manaResource/17.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/18.png b/front/public/images/small/Botania/manaResource/18.png deleted file mode 100644 index c500cae3c7..0000000000 Binary files a/front/public/images/small/Botania/manaResource/18.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/19.png b/front/public/images/small/Botania/manaResource/19.png deleted file mode 100644 index 104f6a36ee..0000000000 Binary files a/front/public/images/small/Botania/manaResource/19.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/2.png b/front/public/images/small/Botania/manaResource/2.png deleted file mode 100644 index 857e3c1ce3..0000000000 Binary files a/front/public/images/small/Botania/manaResource/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/22.png b/front/public/images/small/Botania/manaResource/22.png deleted file mode 100644 index eb4e13112d..0000000000 Binary files a/front/public/images/small/Botania/manaResource/22.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/23.png b/front/public/images/small/Botania/manaResource/23.png deleted file mode 100644 index 880fe7225b..0000000000 Binary files a/front/public/images/small/Botania/manaResource/23.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/3.png b/front/public/images/small/Botania/manaResource/3.png deleted file mode 100644 index 6f3c893a7c..0000000000 Binary files a/front/public/images/small/Botania/manaResource/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/4.png b/front/public/images/small/Botania/manaResource/4.png deleted file mode 100644 index d91e7b16fa..0000000000 Binary files a/front/public/images/small/Botania/manaResource/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/5.png b/front/public/images/small/Botania/manaResource/5.png deleted file mode 100644 index a72a4e40ef..0000000000 Binary files a/front/public/images/small/Botania/manaResource/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/6.png b/front/public/images/small/Botania/manaResource/6.png deleted file mode 100644 index c13a2defe3..0000000000 Binary files a/front/public/images/small/Botania/manaResource/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/7.png b/front/public/images/small/Botania/manaResource/7.png deleted file mode 100644 index 8c33fce6c6..0000000000 Binary files a/front/public/images/small/Botania/manaResource/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/8.png b/front/public/images/small/Botania/manaResource/8.png deleted file mode 100644 index 4fb15f911a..0000000000 Binary files a/front/public/images/small/Botania/manaResource/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaResource/9.png b/front/public/images/small/Botania/manaResource/9.png deleted file mode 100644 index 935380b997..0000000000 Binary files a/front/public/images/small/Botania/manaResource/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaRing/1000.png b/front/public/images/small/Botania/manaRing/1000.png deleted file mode 100644 index 95da3bed4b..0000000000 Binary files a/front/public/images/small/Botania/manaRing/1000.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaRingGreater/1000.png b/front/public/images/small/Botania/manaRingGreater/1000.png deleted file mode 100644 index 435926f8f5..0000000000 Binary files a/front/public/images/small/Botania/manaRingGreater/1000.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaTablet/0.png b/front/public/images/small/Botania/manaTablet/0.png deleted file mode 100644 index a811c0f5c3..0000000000 Binary files a/front/public/images/small/Botania/manaTablet/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaVoid/0.png b/front/public/images/small/Botania/manaVoid/0.png deleted file mode 100644 index cdbfa91ed2..0000000000 Binary files a/front/public/images/small/Botania/manaVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelAxe/0.png b/front/public/images/small/Botania/manasteelAxe/0.png deleted file mode 100644 index 9eeb0c2213..0000000000 Binary files a/front/public/images/small/Botania/manasteelAxe/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelBoots/0.png b/front/public/images/small/Botania/manasteelBoots/0.png deleted file mode 100644 index b73940187f..0000000000 Binary files a/front/public/images/small/Botania/manasteelBoots/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelChest/0.png b/front/public/images/small/Botania/manasteelChest/0.png deleted file mode 100644 index dc0ed4d635..0000000000 Binary files a/front/public/images/small/Botania/manasteelChest/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelHelm/0.png b/front/public/images/small/Botania/manasteelHelm/0.png deleted file mode 100644 index b7b2905ae1..0000000000 Binary files a/front/public/images/small/Botania/manasteelHelm/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelHelmReveal/0.png b/front/public/images/small/Botania/manasteelHelmReveal/0.png deleted file mode 100644 index 7789a1a9f5..0000000000 Binary files a/front/public/images/small/Botania/manasteelHelmReveal/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelLegs/0.png b/front/public/images/small/Botania/manasteelLegs/0.png deleted file mode 100644 index 23183044e5..0000000000 Binary files a/front/public/images/small/Botania/manasteelLegs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelPick/0.png b/front/public/images/small/Botania/manasteelPick/0.png deleted file mode 100644 index 195d8b8460..0000000000 Binary files a/front/public/images/small/Botania/manasteelPick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelShears/0.png b/front/public/images/small/Botania/manasteelShears/0.png deleted file mode 100644 index 71b03d3ed9..0000000000 Binary files a/front/public/images/small/Botania/manasteelShears/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelShovel/0.png b/front/public/images/small/Botania/manasteelShovel/0.png deleted file mode 100644 index ab4d16eb53..0000000000 Binary files a/front/public/images/small/Botania/manasteelShovel/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manasteelSword/0.png b/front/public/images/small/Botania/manasteelSword/0.png deleted file mode 100644 index 266ff29b92..0000000000 Binary files a/front/public/images/small/Botania/manasteelSword/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaweaveBoots/0.png b/front/public/images/small/Botania/manaweaveBoots/0.png deleted file mode 100644 index 9ebb57b10e..0000000000 Binary files a/front/public/images/small/Botania/manaweaveBoots/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaweaveChest/0.png b/front/public/images/small/Botania/manaweaveChest/0.png deleted file mode 100644 index 3a6b8c7906..0000000000 Binary files a/front/public/images/small/Botania/manaweaveChest/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaweaveHelm/0.png b/front/public/images/small/Botania/manaweaveHelm/0.png deleted file mode 100644 index 2a8b84545b..0000000000 Binary files a/front/public/images/small/Botania/manaweaveHelm/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/manaweaveLegs/0.png b/front/public/images/small/Botania/manaweaveLegs/0.png deleted file mode 100644 index 44e8791a8e..0000000000 Binary files a/front/public/images/small/Botania/manaweaveLegs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/0.png b/front/public/images/small/Botania/miniIsland/0.png deleted file mode 100644 index ae636a9d21..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/1.png b/front/public/images/small/Botania/miniIsland/1.png deleted file mode 100644 index ac53a4d16e..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/10.png b/front/public/images/small/Botania/miniIsland/10.png deleted file mode 100644 index 96392f9512..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/11.png b/front/public/images/small/Botania/miniIsland/11.png deleted file mode 100644 index 7a267f150b..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/12.png b/front/public/images/small/Botania/miniIsland/12.png deleted file mode 100644 index 8c15df58c5..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/13.png b/front/public/images/small/Botania/miniIsland/13.png deleted file mode 100644 index 74f0cbaac9..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/14.png b/front/public/images/small/Botania/miniIsland/14.png deleted file mode 100644 index 1f46995e9b..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/15.png b/front/public/images/small/Botania/miniIsland/15.png deleted file mode 100644 index 73729a74bb..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/2.png b/front/public/images/small/Botania/miniIsland/2.png deleted file mode 100644 index c6fc2316a6..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/3.png b/front/public/images/small/Botania/miniIsland/3.png deleted file mode 100644 index 67457f5b12..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/4.png b/front/public/images/small/Botania/miniIsland/4.png deleted file mode 100644 index 2af321b38d..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/5.png b/front/public/images/small/Botania/miniIsland/5.png deleted file mode 100644 index 7f47fa3577..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/6.png b/front/public/images/small/Botania/miniIsland/6.png deleted file mode 100644 index c7f5a5ea9a..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/7.png b/front/public/images/small/Botania/miniIsland/7.png deleted file mode 100644 index 6f76b8e932..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/8.png b/front/public/images/small/Botania/miniIsland/8.png deleted file mode 100644 index 9cc6a92250..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/miniIsland/9.png b/front/public/images/small/Botania/miniIsland/9.png deleted file mode 100644 index 2162118119..0000000000 Binary files a/front/public/images/small/Botania/miniIsland/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/miningRing/0.png b/front/public/images/small/Botania/miningRing/0.png deleted file mode 100644 index c49fd45aa7..0000000000 Binary files a/front/public/images/small/Botania/miningRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/missileRod/0.png b/front/public/images/small/Botania/missileRod/0.png deleted file mode 100644 index df48bc9f95..0000000000 Binary files a/front/public/images/small/Botania/missileRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/monocle/0.png b/front/public/images/small/Botania/monocle/0.png deleted file mode 100644 index dd4119d753..0000000000 Binary files a/front/public/images/small/Botania/monocle/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/0.png b/front/public/images/small/Botania/mushroom/0.png deleted file mode 100644 index 1e92bbc90a..0000000000 Binary files a/front/public/images/small/Botania/mushroom/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/1.png b/front/public/images/small/Botania/mushroom/1.png deleted file mode 100644 index c18391de81..0000000000 Binary files a/front/public/images/small/Botania/mushroom/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/10.png b/front/public/images/small/Botania/mushroom/10.png deleted file mode 100644 index dc5c32bb06..0000000000 Binary files a/front/public/images/small/Botania/mushroom/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/11.png b/front/public/images/small/Botania/mushroom/11.png deleted file mode 100644 index 5aa5ac93b0..0000000000 Binary files a/front/public/images/small/Botania/mushroom/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/12.png b/front/public/images/small/Botania/mushroom/12.png deleted file mode 100644 index 3193c07d9d..0000000000 Binary files a/front/public/images/small/Botania/mushroom/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/13.png b/front/public/images/small/Botania/mushroom/13.png deleted file mode 100644 index 5295570f6f..0000000000 Binary files a/front/public/images/small/Botania/mushroom/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/14.png b/front/public/images/small/Botania/mushroom/14.png deleted file mode 100644 index c43fa37a5e..0000000000 Binary files a/front/public/images/small/Botania/mushroom/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/15.png b/front/public/images/small/Botania/mushroom/15.png deleted file mode 100644 index d8e88ee106..0000000000 Binary files a/front/public/images/small/Botania/mushroom/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/2.png b/front/public/images/small/Botania/mushroom/2.png deleted file mode 100644 index 98932434cb..0000000000 Binary files a/front/public/images/small/Botania/mushroom/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/3.png b/front/public/images/small/Botania/mushroom/3.png deleted file mode 100644 index a68a454670..0000000000 Binary files a/front/public/images/small/Botania/mushroom/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/4.png b/front/public/images/small/Botania/mushroom/4.png deleted file mode 100644 index f4e23c584b..0000000000 Binary files a/front/public/images/small/Botania/mushroom/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/5.png b/front/public/images/small/Botania/mushroom/5.png deleted file mode 100644 index 5855904cbb..0000000000 Binary files a/front/public/images/small/Botania/mushroom/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/6.png b/front/public/images/small/Botania/mushroom/6.png deleted file mode 100644 index 978b942400..0000000000 Binary files a/front/public/images/small/Botania/mushroom/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/7.png b/front/public/images/small/Botania/mushroom/7.png deleted file mode 100644 index e510d9a602..0000000000 Binary files a/front/public/images/small/Botania/mushroom/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/8.png b/front/public/images/small/Botania/mushroom/8.png deleted file mode 100644 index b5d9157289..0000000000 Binary files a/front/public/images/small/Botania/mushroom/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/mushroom/9.png b/front/public/images/small/Botania/mushroom/9.png deleted file mode 100644 index 77aa88a672..0000000000 Binary files a/front/public/images/small/Botania/mushroom/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/obedienceStick/0.png b/front/public/images/small/Botania/obedienceStick/0.png deleted file mode 100644 index 0d1b42c2e0..0000000000 Binary files a/front/public/images/small/Botania/obedienceStick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/odinRing/0.png b/front/public/images/small/Botania/odinRing/0.png deleted file mode 100644 index 92c06bf506..0000000000 Binary files a/front/public/images/small/Botania/odinRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/openBucket/0.png b/front/public/images/small/Botania/openBucket/0.png deleted file mode 100644 index ae23a416f2..0000000000 Binary files a/front/public/images/small/Botania/openBucket/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/openCrate/0.png b/front/public/images/small/Botania/openCrate/0.png deleted file mode 100644 index 935bf1e7bf..0000000000 Binary files a/front/public/images/small/Botania/openCrate/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/openCrate/1.png b/front/public/images/small/Botania/openCrate/1.png deleted file mode 100644 index 481680ad4b..0000000000 Binary files a/front/public/images/small/Botania/openCrate/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/overgrowthSeed/0.png b/front/public/images/small/Botania/overgrowthSeed/0.png deleted file mode 100644 index 05cb955b05..0000000000 Binary files a/front/public/images/small/Botania/overgrowthSeed/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement/0.png b/front/public/images/small/Botania/pavement/0.png deleted file mode 100644 index 40cf636ff5..0000000000 Binary files a/front/public/images/small/Botania/pavement/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement/1.png b/front/public/images/small/Botania/pavement/1.png deleted file mode 100644 index d070b4e2fb..0000000000 Binary files a/front/public/images/small/Botania/pavement/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement/2.png b/front/public/images/small/Botania/pavement/2.png deleted file mode 100644 index 6901595012..0000000000 Binary files a/front/public/images/small/Botania/pavement/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement/3.png b/front/public/images/small/Botania/pavement/3.png deleted file mode 100644 index b3eefec7b2..0000000000 Binary files a/front/public/images/small/Botania/pavement/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement/4.png b/front/public/images/small/Botania/pavement/4.png deleted file mode 100644 index adc1b01db0..0000000000 Binary files a/front/public/images/small/Botania/pavement/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement/5.png b/front/public/images/small/Botania/pavement/5.png deleted file mode 100644 index 0fa0e9f8ed..0000000000 Binary files a/front/public/images/small/Botania/pavement/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement0Slab/0.png b/front/public/images/small/Botania/pavement0Slab/0.png deleted file mode 100644 index 6ac1bee6ad..0000000000 Binary files a/front/public/images/small/Botania/pavement0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement0SlabFull/0.png b/front/public/images/small/Botania/pavement0SlabFull/0.png deleted file mode 100644 index 40cf636ff5..0000000000 Binary files a/front/public/images/small/Botania/pavement0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement0Stairs/0.png b/front/public/images/small/Botania/pavement0Stairs/0.png deleted file mode 100644 index 846fe9dbbd..0000000000 Binary files a/front/public/images/small/Botania/pavement0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement1Slab/0.png b/front/public/images/small/Botania/pavement1Slab/0.png deleted file mode 100644 index 8c37ab050b..0000000000 Binary files a/front/public/images/small/Botania/pavement1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement1SlabFull/0.png b/front/public/images/small/Botania/pavement1SlabFull/0.png deleted file mode 100644 index d070b4e2fb..0000000000 Binary files a/front/public/images/small/Botania/pavement1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement1Stairs/0.png b/front/public/images/small/Botania/pavement1Stairs/0.png deleted file mode 100644 index 78fd3605b7..0000000000 Binary files a/front/public/images/small/Botania/pavement1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement2Slab/0.png b/front/public/images/small/Botania/pavement2Slab/0.png deleted file mode 100644 index 55ecf742d5..0000000000 Binary files a/front/public/images/small/Botania/pavement2Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement2SlabFull/0.png b/front/public/images/small/Botania/pavement2SlabFull/0.png deleted file mode 100644 index 6901595012..0000000000 Binary files a/front/public/images/small/Botania/pavement2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement2Stairs/0.png b/front/public/images/small/Botania/pavement2Stairs/0.png deleted file mode 100644 index fa06f774aa..0000000000 Binary files a/front/public/images/small/Botania/pavement2Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement3Slab/0.png b/front/public/images/small/Botania/pavement3Slab/0.png deleted file mode 100644 index 276290bd2f..0000000000 Binary files a/front/public/images/small/Botania/pavement3Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement3SlabFull/0.png b/front/public/images/small/Botania/pavement3SlabFull/0.png deleted file mode 100644 index b3eefec7b2..0000000000 Binary files a/front/public/images/small/Botania/pavement3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement3Stairs/0.png b/front/public/images/small/Botania/pavement3Stairs/0.png deleted file mode 100644 index a410b2c66b..0000000000 Binary files a/front/public/images/small/Botania/pavement3Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement4Slab/0.png b/front/public/images/small/Botania/pavement4Slab/0.png deleted file mode 100644 index 188166a967..0000000000 Binary files a/front/public/images/small/Botania/pavement4Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement4SlabFull/0.png b/front/public/images/small/Botania/pavement4SlabFull/0.png deleted file mode 100644 index adc1b01db0..0000000000 Binary files a/front/public/images/small/Botania/pavement4SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement4Stairs/0.png b/front/public/images/small/Botania/pavement4Stairs/0.png deleted file mode 100644 index 4f2a84df9e..0000000000 Binary files a/front/public/images/small/Botania/pavement4Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement5Slab/0.png b/front/public/images/small/Botania/pavement5Slab/0.png deleted file mode 100644 index b93ac1a5f3..0000000000 Binary files a/front/public/images/small/Botania/pavement5Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement5SlabFull/0.png b/front/public/images/small/Botania/pavement5SlabFull/0.png deleted file mode 100644 index 0fa0e9f8ed..0000000000 Binary files a/front/public/images/small/Botania/pavement5SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pavement5Stairs/0.png b/front/public/images/small/Botania/pavement5Stairs/0.png deleted file mode 100644 index 68b2cdff9e..0000000000 Binary files a/front/public/images/small/Botania/pavement5Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pestleAndMortar/0.png b/front/public/images/small/Botania/pestleAndMortar/0.png deleted file mode 100644 index 546c20d667..0000000000 Binary files a/front/public/images/small/Botania/pestleAndMortar/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/0.png b/front/public/images/small/Botania/petal/0.png deleted file mode 100644 index 99173bb471..0000000000 Binary files a/front/public/images/small/Botania/petal/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/1.png b/front/public/images/small/Botania/petal/1.png deleted file mode 100644 index f520922746..0000000000 Binary files a/front/public/images/small/Botania/petal/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/10.png b/front/public/images/small/Botania/petal/10.png deleted file mode 100644 index 056d209c44..0000000000 Binary files a/front/public/images/small/Botania/petal/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/11.png b/front/public/images/small/Botania/petal/11.png deleted file mode 100644 index d6267246cb..0000000000 Binary files a/front/public/images/small/Botania/petal/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/12.png b/front/public/images/small/Botania/petal/12.png deleted file mode 100644 index a23955070c..0000000000 Binary files a/front/public/images/small/Botania/petal/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/13.png b/front/public/images/small/Botania/petal/13.png deleted file mode 100644 index b4756edae1..0000000000 Binary files a/front/public/images/small/Botania/petal/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/14.png b/front/public/images/small/Botania/petal/14.png deleted file mode 100644 index ab79292e22..0000000000 Binary files a/front/public/images/small/Botania/petal/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/15.png b/front/public/images/small/Botania/petal/15.png deleted file mode 100644 index 92c3c1e781..0000000000 Binary files a/front/public/images/small/Botania/petal/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/2.png b/front/public/images/small/Botania/petal/2.png deleted file mode 100644 index b6fba19c27..0000000000 Binary files a/front/public/images/small/Botania/petal/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/3.png b/front/public/images/small/Botania/petal/3.png deleted file mode 100644 index 4ff007addb..0000000000 Binary files a/front/public/images/small/Botania/petal/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/4.png b/front/public/images/small/Botania/petal/4.png deleted file mode 100644 index 70adedd529..0000000000 Binary files a/front/public/images/small/Botania/petal/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/5.png b/front/public/images/small/Botania/petal/5.png deleted file mode 100644 index 6778912cf9..0000000000 Binary files a/front/public/images/small/Botania/petal/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/6.png b/front/public/images/small/Botania/petal/6.png deleted file mode 100644 index cf85bad2aa..0000000000 Binary files a/front/public/images/small/Botania/petal/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/7.png b/front/public/images/small/Botania/petal/7.png deleted file mode 100644 index e4f1611b87..0000000000 Binary files a/front/public/images/small/Botania/petal/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/8.png b/front/public/images/small/Botania/petal/8.png deleted file mode 100644 index 517deab573..0000000000 Binary files a/front/public/images/small/Botania/petal/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/petal/9.png b/front/public/images/small/Botania/petal/9.png deleted file mode 100644 index e312a08343..0000000000 Binary files a/front/public/images/small/Botania/petal/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/0.png b/front/public/images/small/Botania/petalBlock/0.png deleted file mode 100644 index f219347178..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/1.png b/front/public/images/small/Botania/petalBlock/1.png deleted file mode 100644 index e0607b505a..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/10.png b/front/public/images/small/Botania/petalBlock/10.png deleted file mode 100644 index 3ec50b5d1b..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/11.png b/front/public/images/small/Botania/petalBlock/11.png deleted file mode 100644 index 6fe41d4986..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/12.png b/front/public/images/small/Botania/petalBlock/12.png deleted file mode 100644 index 0d8a50aaad..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/13.png b/front/public/images/small/Botania/petalBlock/13.png deleted file mode 100644 index 15811dc61d..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/14.png b/front/public/images/small/Botania/petalBlock/14.png deleted file mode 100644 index 6b45c1a145..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/15.png b/front/public/images/small/Botania/petalBlock/15.png deleted file mode 100644 index b460a79d18..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/2.png b/front/public/images/small/Botania/petalBlock/2.png deleted file mode 100644 index 7e3a713d0b..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/3.png b/front/public/images/small/Botania/petalBlock/3.png deleted file mode 100644 index 670950490d..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/4.png b/front/public/images/small/Botania/petalBlock/4.png deleted file mode 100644 index 46c25a8c35..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/5.png b/front/public/images/small/Botania/petalBlock/5.png deleted file mode 100644 index a0b6665154..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/6.png b/front/public/images/small/Botania/petalBlock/6.png deleted file mode 100644 index 3da15a0eab..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/7.png b/front/public/images/small/Botania/petalBlock/7.png deleted file mode 100644 index 13df13db23..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/8.png b/front/public/images/small/Botania/petalBlock/8.png deleted file mode 100644 index d8d496e400..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/petalBlock/9.png b/front/public/images/small/Botania/petalBlock/9.png deleted file mode 100644 index bd6f2f5b37..0000000000 Binary files a/front/public/images/small/Botania/petalBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/phantomInk/0.png b/front/public/images/small/Botania/phantomInk/0.png deleted file mode 100644 index b06be645cd..0000000000 Binary files a/front/public/images/small/Botania/phantomInk/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pinkinator/0.png b/front/public/images/small/Botania/pinkinator/0.png deleted file mode 100644 index 4ef571c727..0000000000 Binary files a/front/public/images/small/Botania/pinkinator/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pistonRelay/0.png b/front/public/images/small/Botania/pistonRelay/0.png deleted file mode 100644 index fb965c28fa..0000000000 Binary files a/front/public/images/small/Botania/pistonRelay/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pixieRing/0.png b/front/public/images/small/Botania/pixieRing/0.png deleted file mode 100644 index 81543bc44d..0000000000 Binary files a/front/public/images/small/Botania/pixieRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/platform/0.png b/front/public/images/small/Botania/platform/0.png deleted file mode 100644 index 49dc3bbf16..0000000000 Binary files a/front/public/images/small/Botania/platform/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/platform/1.png b/front/public/images/small/Botania/platform/1.png deleted file mode 100644 index e985c6a150..0000000000 Binary files a/front/public/images/small/Botania/platform/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/platform/2.png b/front/public/images/small/Botania/platform/2.png deleted file mode 100644 index 5655480a41..0000000000 Binary files a/front/public/images/small/Botania/platform/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/pool/0.png b/front/public/images/small/Botania/pool/0.png deleted file mode 100644 index 4e3d084d36..0000000000 Binary files a/front/public/images/small/Botania/pool/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pool/1.png b/front/public/images/small/Botania/pool/1.png deleted file mode 100644 index 033c0ad275..0000000000 Binary files a/front/public/images/small/Botania/pool/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/pool/2.png b/front/public/images/small/Botania/pool/2.png deleted file mode 100644 index 140868308a..0000000000 Binary files a/front/public/images/small/Botania/pool/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/pool/3.png b/front/public/images/small/Botania/pool/3.png deleted file mode 100644 index a02b6ea85b..0000000000 Binary files a/front/public/images/small/Botania/pool/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/poolMinecart/0.png b/front/public/images/small/Botania/poolMinecart/0.png deleted file mode 100644 index 11fe6b87cd..0000000000 Binary files a/front/public/images/small/Botania/poolMinecart/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prism/0.png b/front/public/images/small/Botania/prism/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Botania/prism/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine/0.png b/front/public/images/small/Botania/prismarine/0.png deleted file mode 100644 index 9b920ab131..0000000000 Binary files a/front/public/images/small/Botania/prismarine/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine/1.png b/front/public/images/small/Botania/prismarine/1.png deleted file mode 100644 index 6385e0360f..0000000000 Binary files a/front/public/images/small/Botania/prismarine/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine/2.png b/front/public/images/small/Botania/prismarine/2.png deleted file mode 100644 index 0f2568d7d3..0000000000 Binary files a/front/public/images/small/Botania/prismarine/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine0Slab/0.png b/front/public/images/small/Botania/prismarine0Slab/0.png deleted file mode 100644 index b43a440217..0000000000 Binary files a/front/public/images/small/Botania/prismarine0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine0SlabFull/0.png b/front/public/images/small/Botania/prismarine0SlabFull/0.png deleted file mode 100644 index 9b920ab131..0000000000 Binary files a/front/public/images/small/Botania/prismarine0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine0Stairs/0.png b/front/public/images/small/Botania/prismarine0Stairs/0.png deleted file mode 100644 index 67271aaccd..0000000000 Binary files a/front/public/images/small/Botania/prismarine0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine0Wall/0.png b/front/public/images/small/Botania/prismarine0Wall/0.png deleted file mode 100644 index c8baec6905..0000000000 Binary files a/front/public/images/small/Botania/prismarine0Wall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine1Slab/0.png b/front/public/images/small/Botania/prismarine1Slab/0.png deleted file mode 100644 index db477b1956..0000000000 Binary files a/front/public/images/small/Botania/prismarine1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine1SlabFull/0.png b/front/public/images/small/Botania/prismarine1SlabFull/0.png deleted file mode 100644 index 6385e0360f..0000000000 Binary files a/front/public/images/small/Botania/prismarine1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine1Stairs/0.png b/front/public/images/small/Botania/prismarine1Stairs/0.png deleted file mode 100644 index cea6c3dc3e..0000000000 Binary files a/front/public/images/small/Botania/prismarine1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine2Slab/0.png b/front/public/images/small/Botania/prismarine2Slab/0.png deleted file mode 100644 index 56d95eb6ee..0000000000 Binary files a/front/public/images/small/Botania/prismarine2Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine2SlabFull/0.png b/front/public/images/small/Botania/prismarine2SlabFull/0.png deleted file mode 100644 index 0f2568d7d3..0000000000 Binary files a/front/public/images/small/Botania/prismarine2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/prismarine2Stairs/0.png b/front/public/images/small/Botania/prismarine2Stairs/0.png deleted file mode 100644 index c4543906a1..0000000000 Binary files a/front/public/images/small/Botania/prismarine2Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pump/0.png b/front/public/images/small/Botania/pump/0.png deleted file mode 100644 index 1636213b46..0000000000 Binary files a/front/public/images/small/Botania/pump/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pylon/0.png b/front/public/images/small/Botania/pylon/0.png deleted file mode 100644 index 54e2a6ecfb..0000000000 Binary files a/front/public/images/small/Botania/pylon/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/pylon/1.png b/front/public/images/small/Botania/pylon/1.png deleted file mode 100644 index 17d70027cd..0000000000 Binary files a/front/public/images/small/Botania/pylon/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/pylon/2.png b/front/public/images/small/Botania/pylon/2.png deleted file mode 100644 index 21cdc3bc03..0000000000 Binary files a/front/public/images/small/Botania/pylon/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartz/0.png b/front/public/images/small/Botania/quartz/0.png deleted file mode 100644 index c4d4cb91b0..0000000000 Binary files a/front/public/images/small/Botania/quartz/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartz/1.png b/front/public/images/small/Botania/quartz/1.png deleted file mode 100644 index 8d70825462..0000000000 Binary files a/front/public/images/small/Botania/quartz/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartz/2.png b/front/public/images/small/Botania/quartz/2.png deleted file mode 100644 index 7012189cbf..0000000000 Binary files a/front/public/images/small/Botania/quartz/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartz/3.png b/front/public/images/small/Botania/quartz/3.png deleted file mode 100644 index 4bb2cbfe4c..0000000000 Binary files a/front/public/images/small/Botania/quartz/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartz/4.png b/front/public/images/small/Botania/quartz/4.png deleted file mode 100644 index dbbcfa697f..0000000000 Binary files a/front/public/images/small/Botania/quartz/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartz/5.png b/front/public/images/small/Botania/quartz/5.png deleted file mode 100644 index e983015371..0000000000 Binary files a/front/public/images/small/Botania/quartz/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartz/6.png b/front/public/images/small/Botania/quartz/6.png deleted file mode 100644 index 4ea4fb8670..0000000000 Binary files a/front/public/images/small/Botania/quartz/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabBlazeFull/0.png b/front/public/images/small/Botania/quartzSlabBlazeFull/0.png deleted file mode 100644 index 9c32689c70..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabBlazeFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabBlazeHalf/0.png b/front/public/images/small/Botania/quartzSlabBlazeHalf/0.png deleted file mode 100644 index 859c4fcf65..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabBlazeHalf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabDarkFull/0.png b/front/public/images/small/Botania/quartzSlabDarkFull/0.png deleted file mode 100644 index 1eb625895a..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabDarkFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabDarkHalf/0.png b/front/public/images/small/Botania/quartzSlabDarkHalf/0.png deleted file mode 100644 index f915c44944..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabDarkHalf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabElfFull/0.png b/front/public/images/small/Botania/quartzSlabElfFull/0.png deleted file mode 100644 index b20812e6af..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabElfFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabElfHalf/0.png b/front/public/images/small/Botania/quartzSlabElfHalf/0.png deleted file mode 100644 index e73f0aa996..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabElfHalf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabLavenderFull/0.png b/front/public/images/small/Botania/quartzSlabLavenderFull/0.png deleted file mode 100644 index cc1ee4c8fe..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabLavenderFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabLavenderHalf/0.png b/front/public/images/small/Botania/quartzSlabLavenderHalf/0.png deleted file mode 100644 index d30593eefa..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabLavenderHalf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabManaFull/0.png b/front/public/images/small/Botania/quartzSlabManaFull/0.png deleted file mode 100644 index 88b81f1c39..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabManaFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabManaHalf/0.png b/front/public/images/small/Botania/quartzSlabManaHalf/0.png deleted file mode 100644 index ddcd6a1482..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabManaHalf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabRedFull/0.png b/front/public/images/small/Botania/quartzSlabRedFull/0.png deleted file mode 100644 index cb99d43e6e..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabRedFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabRedHalf/0.png b/front/public/images/small/Botania/quartzSlabRedHalf/0.png deleted file mode 100644 index 528efee565..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabRedHalf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabSunnyFull/0.png b/front/public/images/small/Botania/quartzSlabSunnyFull/0.png deleted file mode 100644 index ba8a1c42f1..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabSunnyFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzSlabSunnyHalf/0.png b/front/public/images/small/Botania/quartzSlabSunnyHalf/0.png deleted file mode 100644 index e37d5decaa..0000000000 Binary files a/front/public/images/small/Botania/quartzSlabSunnyHalf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzStairsBlaze/0.png b/front/public/images/small/Botania/quartzStairsBlaze/0.png deleted file mode 100644 index 0754c3c863..0000000000 Binary files a/front/public/images/small/Botania/quartzStairsBlaze/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzStairsDark/0.png b/front/public/images/small/Botania/quartzStairsDark/0.png deleted file mode 100644 index 10fdaf84ec..0000000000 Binary files a/front/public/images/small/Botania/quartzStairsDark/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzStairsElf/0.png b/front/public/images/small/Botania/quartzStairsElf/0.png deleted file mode 100644 index eb3e63db3c..0000000000 Binary files a/front/public/images/small/Botania/quartzStairsElf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzStairsLavender/0.png b/front/public/images/small/Botania/quartzStairsLavender/0.png deleted file mode 100644 index d89144daab..0000000000 Binary files a/front/public/images/small/Botania/quartzStairsLavender/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzStairsMana/0.png b/front/public/images/small/Botania/quartzStairsMana/0.png deleted file mode 100644 index 2a19aeb1b9..0000000000 Binary files a/front/public/images/small/Botania/quartzStairsMana/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzStairsRed/0.png b/front/public/images/small/Botania/quartzStairsRed/0.png deleted file mode 100644 index d68ae3f25d..0000000000 Binary files a/front/public/images/small/Botania/quartzStairsRed/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzStairsSunny/0.png b/front/public/images/small/Botania/quartzStairsSunny/0.png deleted file mode 100644 index 8b2c475f38..0000000000 Binary files a/front/public/images/small/Botania/quartzStairsSunny/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeBlaze/0.png b/front/public/images/small/Botania/quartzTypeBlaze/0.png deleted file mode 100644 index 9c32689c70..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeBlaze/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeBlaze/1.png b/front/public/images/small/Botania/quartzTypeBlaze/1.png deleted file mode 100644 index 051723ddd2..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeBlaze/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeBlaze/2.png b/front/public/images/small/Botania/quartzTypeBlaze/2.png deleted file mode 100644 index c937d669d5..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeBlaze/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeDark/0.png b/front/public/images/small/Botania/quartzTypeDark/0.png deleted file mode 100644 index 1eb625895a..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeDark/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeDark/1.png b/front/public/images/small/Botania/quartzTypeDark/1.png deleted file mode 100644 index 802dfebbb9..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeDark/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeDark/2.png b/front/public/images/small/Botania/quartzTypeDark/2.png deleted file mode 100644 index 020bbc8d0a..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeDark/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeElf/0.png b/front/public/images/small/Botania/quartzTypeElf/0.png deleted file mode 100644 index b20812e6af..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeElf/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeElf/1.png b/front/public/images/small/Botania/quartzTypeElf/1.png deleted file mode 100644 index 222f86fd44..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeElf/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeElf/2.png b/front/public/images/small/Botania/quartzTypeElf/2.png deleted file mode 100644 index 779698d970..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeElf/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeLavender/0.png b/front/public/images/small/Botania/quartzTypeLavender/0.png deleted file mode 100644 index cc1ee4c8fe..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeLavender/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeLavender/1.png b/front/public/images/small/Botania/quartzTypeLavender/1.png deleted file mode 100644 index 8a064e1888..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeLavender/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeLavender/2.png b/front/public/images/small/Botania/quartzTypeLavender/2.png deleted file mode 100644 index dfca8ec940..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeLavender/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeMana/0.png b/front/public/images/small/Botania/quartzTypeMana/0.png deleted file mode 100644 index 88b81f1c39..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeMana/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeMana/1.png b/front/public/images/small/Botania/quartzTypeMana/1.png deleted file mode 100644 index 19332ce1a2..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeMana/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeMana/2.png b/front/public/images/small/Botania/quartzTypeMana/2.png deleted file mode 100644 index c4d07051a3..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeMana/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeRed/0.png b/front/public/images/small/Botania/quartzTypeRed/0.png deleted file mode 100644 index cb99d43e6e..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeRed/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeRed/1.png b/front/public/images/small/Botania/quartzTypeRed/1.png deleted file mode 100644 index 28dd4182c2..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeRed/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeRed/2.png b/front/public/images/small/Botania/quartzTypeRed/2.png deleted file mode 100644 index c567fc5cfc..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeRed/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeSunny/0.png b/front/public/images/small/Botania/quartzTypeSunny/0.png deleted file mode 100644 index ba8a1c42f1..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeSunny/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeSunny/1.png b/front/public/images/small/Botania/quartzTypeSunny/1.png deleted file mode 100644 index 42b435a5bf..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeSunny/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/quartzTypeSunny/2.png b/front/public/images/small/Botania/quartzTypeSunny/2.png deleted file mode 100644 index 245d05ef24..0000000000 Binary files a/front/public/images/small/Botania/quartzTypeSunny/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/rainbowRod/0.png b/front/public/images/small/Botania/rainbowRod/0.png deleted file mode 100644 index 7b5f02546e..0000000000 Binary files a/front/public/images/small/Botania/rainbowRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/reachRing/0.png b/front/public/images/small/Botania/reachRing/0.png deleted file mode 100644 index 9ab95f369f..0000000000 Binary files a/front/public/images/small/Botania/reachRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/recordGaia1/0.png b/front/public/images/small/Botania/recordGaia1/0.png deleted file mode 100644 index 1a5c980802..0000000000 Binary files a/front/public/images/small/Botania/recordGaia1/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/recordGaia2/0.png b/front/public/images/small/Botania/recordGaia2/0.png deleted file mode 100644 index 9041a409bd..0000000000 Binary files a/front/public/images/small/Botania/recordGaia2/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/redStringComparator/0.png b/front/public/images/small/Botania/redStringComparator/0.png deleted file mode 100644 index 00c02ec2b1..0000000000 Binary files a/front/public/images/small/Botania/redStringComparator/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/redStringContainer/0.png b/front/public/images/small/Botania/redStringContainer/0.png deleted file mode 100644 index 089fcb51d8..0000000000 Binary files a/front/public/images/small/Botania/redStringContainer/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/redStringDispenser/0.png b/front/public/images/small/Botania/redStringDispenser/0.png deleted file mode 100644 index 47a546aed8..0000000000 Binary files a/front/public/images/small/Botania/redStringDispenser/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/redStringFertilizer/0.png b/front/public/images/small/Botania/redStringFertilizer/0.png deleted file mode 100644 index 2da81ca245..0000000000 Binary files a/front/public/images/small/Botania/redStringFertilizer/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/redStringInterceptor/0.png b/front/public/images/small/Botania/redStringInterceptor/0.png deleted file mode 100644 index bfa6ccc077..0000000000 Binary files a/front/public/images/small/Botania/redStringInterceptor/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/redStringRelay/0.png b/front/public/images/small/Botania/redStringRelay/0.png deleted file mode 100644 index 9121fe09f3..0000000000 Binary files a/front/public/images/small/Botania/redStringRelay/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/reedBlock/0.png b/front/public/images/small/Botania/reedBlock/0.png deleted file mode 100644 index ec94d6a497..0000000000 Binary files a/front/public/images/small/Botania/reedBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/reedBlock0Slab/0.png b/front/public/images/small/Botania/reedBlock0Slab/0.png deleted file mode 100644 index df44505626..0000000000 Binary files a/front/public/images/small/Botania/reedBlock0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/reedBlock0SlabFull/0.png b/front/public/images/small/Botania/reedBlock0SlabFull/0.png deleted file mode 100644 index ec94d6a497..0000000000 Binary files a/front/public/images/small/Botania/reedBlock0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/reedBlock0Stairs/0.png b/front/public/images/small/Botania/reedBlock0Stairs/0.png deleted file mode 100644 index e60cd591d6..0000000000 Binary files a/front/public/images/small/Botania/reedBlock0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/reedBlock0Wall/0.png b/front/public/images/small/Botania/reedBlock0Wall/0.png deleted file mode 100644 index b0dcf179e7..0000000000 Binary files a/front/public/images/small/Botania/reedBlock0Wall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/regenIvy/0.png b/front/public/images/small/Botania/regenIvy/0.png deleted file mode 100644 index 884f1d77b9..0000000000 Binary files a/front/public/images/small/Botania/regenIvy/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/rfGenerator/0.png b/front/public/images/small/Botania/rfGenerator/0.png deleted file mode 100644 index d50af89eae..0000000000 Binary files a/front/public/images/small/Botania/rfGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/root/0.png b/front/public/images/small/Botania/root/0.png deleted file mode 100644 index fcf72f9baa..0000000000 Binary files a/front/public/images/small/Botania/root/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/0.png b/front/public/images/small/Botania/rune/0.png deleted file mode 100644 index e9ac2a8772..0000000000 Binary files a/front/public/images/small/Botania/rune/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/1.png b/front/public/images/small/Botania/rune/1.png deleted file mode 100644 index baab9f85a6..0000000000 Binary files a/front/public/images/small/Botania/rune/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/10.png b/front/public/images/small/Botania/rune/10.png deleted file mode 100644 index 9c8edca506..0000000000 Binary files a/front/public/images/small/Botania/rune/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/11.png b/front/public/images/small/Botania/rune/11.png deleted file mode 100644 index 98b0f01d9e..0000000000 Binary files a/front/public/images/small/Botania/rune/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/12.png b/front/public/images/small/Botania/rune/12.png deleted file mode 100644 index c0a92e6858..0000000000 Binary files a/front/public/images/small/Botania/rune/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/13.png b/front/public/images/small/Botania/rune/13.png deleted file mode 100644 index f97a11e203..0000000000 Binary files a/front/public/images/small/Botania/rune/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/14.png b/front/public/images/small/Botania/rune/14.png deleted file mode 100644 index cda698675f..0000000000 Binary files a/front/public/images/small/Botania/rune/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/15.png b/front/public/images/small/Botania/rune/15.png deleted file mode 100644 index c71253692f..0000000000 Binary files a/front/public/images/small/Botania/rune/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/2.png b/front/public/images/small/Botania/rune/2.png deleted file mode 100644 index b2066a1c7c..0000000000 Binary files a/front/public/images/small/Botania/rune/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/3.png b/front/public/images/small/Botania/rune/3.png deleted file mode 100644 index fea4299667..0000000000 Binary files a/front/public/images/small/Botania/rune/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/4.png b/front/public/images/small/Botania/rune/4.png deleted file mode 100644 index ac8cf1c5b2..0000000000 Binary files a/front/public/images/small/Botania/rune/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/5.png b/front/public/images/small/Botania/rune/5.png deleted file mode 100644 index f0e3759478..0000000000 Binary files a/front/public/images/small/Botania/rune/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/6.png b/front/public/images/small/Botania/rune/6.png deleted file mode 100644 index 7704cfccce..0000000000 Binary files a/front/public/images/small/Botania/rune/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/7.png b/front/public/images/small/Botania/rune/7.png deleted file mode 100644 index e7736fdd21..0000000000 Binary files a/front/public/images/small/Botania/rune/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/8.png b/front/public/images/small/Botania/rune/8.png deleted file mode 100644 index 8b215c3ec5..0000000000 Binary files a/front/public/images/small/Botania/rune/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/rune/9.png b/front/public/images/small/Botania/rune/9.png deleted file mode 100644 index b9fd0ef63f..0000000000 Binary files a/front/public/images/small/Botania/rune/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/runeAltar/0.png b/front/public/images/small/Botania/runeAltar/0.png deleted file mode 100644 index ec40b14500..0000000000 Binary files a/front/public/images/small/Botania/runeAltar/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/seaLamp/0.png b/front/public/images/small/Botania/seaLamp/0.png deleted file mode 100644 index a40804039c..0000000000 Binary files a/front/public/images/small/Botania/seaLamp/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/sextant/0.png b/front/public/images/small/Botania/sextant/0.png deleted file mode 100644 index 8c4c59a4dc..0000000000 Binary files a/front/public/images/small/Botania/sextant/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerrock/0.png b/front/public/images/small/Botania/shimmerrock/0.png deleted file mode 100644 index e60f47a260..0000000000 Binary files a/front/public/images/small/Botania/shimmerrock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerrock0Slab/0.png b/front/public/images/small/Botania/shimmerrock0Slab/0.png deleted file mode 100644 index 055626a19f..0000000000 Binary files a/front/public/images/small/Botania/shimmerrock0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerrock0SlabFull/0.png b/front/public/images/small/Botania/shimmerrock0SlabFull/0.png deleted file mode 100644 index e60f47a260..0000000000 Binary files a/front/public/images/small/Botania/shimmerrock0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerrock0Stairs/0.png b/front/public/images/small/Botania/shimmerrock0Stairs/0.png deleted file mode 100644 index 5530b9b01a..0000000000 Binary files a/front/public/images/small/Botania/shimmerrock0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerwoodPlanks/0.png b/front/public/images/small/Botania/shimmerwoodPlanks/0.png deleted file mode 100644 index 90199b89a9..0000000000 Binary files a/front/public/images/small/Botania/shimmerwoodPlanks/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerwoodPlanks0Slab/0.png b/front/public/images/small/Botania/shimmerwoodPlanks0Slab/0.png deleted file mode 100644 index 0c2042b2e8..0000000000 Binary files a/front/public/images/small/Botania/shimmerwoodPlanks0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerwoodPlanks0SlabFull/0.png b/front/public/images/small/Botania/shimmerwoodPlanks0SlabFull/0.png deleted file mode 100644 index 90199b89a9..0000000000 Binary files a/front/public/images/small/Botania/shimmerwoodPlanks0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shimmerwoodPlanks0Stairs/0.png b/front/public/images/small/Botania/shimmerwoodPlanks0Stairs/0.png deleted file mode 100644 index 5ec88b4712..0000000000 Binary files a/front/public/images/small/Botania/shimmerwoodPlanks0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/0.png b/front/public/images/small/Botania/shinyFlower/0.png deleted file mode 100644 index eeeaffb9ef..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/1.png b/front/public/images/small/Botania/shinyFlower/1.png deleted file mode 100644 index abd66d789b..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/10.png b/front/public/images/small/Botania/shinyFlower/10.png deleted file mode 100644 index 4a930445c0..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/11.png b/front/public/images/small/Botania/shinyFlower/11.png deleted file mode 100644 index 70adc49d45..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/12.png b/front/public/images/small/Botania/shinyFlower/12.png deleted file mode 100644 index ba6b9a1464..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/13.png b/front/public/images/small/Botania/shinyFlower/13.png deleted file mode 100644 index a43f96c1ed..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/14.png b/front/public/images/small/Botania/shinyFlower/14.png deleted file mode 100644 index e08d7a29ea..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/15.png b/front/public/images/small/Botania/shinyFlower/15.png deleted file mode 100644 index d3dedab747..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/2.png b/front/public/images/small/Botania/shinyFlower/2.png deleted file mode 100644 index 7c313725ff..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/3.png b/front/public/images/small/Botania/shinyFlower/3.png deleted file mode 100644 index 2d50648107..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/4.png b/front/public/images/small/Botania/shinyFlower/4.png deleted file mode 100644 index 9571c5d9cb..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/5.png b/front/public/images/small/Botania/shinyFlower/5.png deleted file mode 100644 index c81dc69bfa..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/6.png b/front/public/images/small/Botania/shinyFlower/6.png deleted file mode 100644 index f9c5515c56..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/7.png b/front/public/images/small/Botania/shinyFlower/7.png deleted file mode 100644 index 3cd5e0cc5a..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/8.png b/front/public/images/small/Botania/shinyFlower/8.png deleted file mode 100644 index 01607dd4be..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/shinyFlower/9.png b/front/public/images/small/Botania/shinyFlower/9.png deleted file mode 100644 index 352f3562f6..0000000000 Binary files a/front/public/images/small/Botania/shinyFlower/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/shroomBag/0.png b/front/public/images/small/Botania/shroomBag/0.png deleted file mode 100644 index 3da1d87789..0000000000 Binary files a/front/public/images/small/Botania/shroomBag/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/signalFlare/0.png b/front/public/images/small/Botania/signalFlare/0.png deleted file mode 100644 index 68b06a41fb..0000000000 Binary files a/front/public/images/small/Botania/signalFlare/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/skyDirtRod/0.png b/front/public/images/small/Botania/skyDirtRod/0.png deleted file mode 100644 index ffb2d534cd..0000000000 Binary files a/front/public/images/small/Botania/skyDirtRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/slimeBottle/0.png b/front/public/images/small/Botania/slimeBottle/0.png deleted file mode 100644 index 55e8e5cb56..0000000000 Binary files a/front/public/images/small/Botania/slimeBottle/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/slingshot/0.png b/front/public/images/small/Botania/slingshot/0.png deleted file mode 100644 index 90866c95c2..0000000000 Binary files a/front/public/images/small/Botania/slingshot/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/smeltRod/0.png b/front/public/images/small/Botania/smeltRod/0.png deleted file mode 100644 index c7af402dba..0000000000 Binary files a/front/public/images/small/Botania/smeltRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/solidVine/0.png b/front/public/images/small/Botania/solidVine/0.png deleted file mode 100644 index 3f21845e07..0000000000 Binary files a/front/public/images/small/Botania/solidVine/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/spark/0.png b/front/public/images/small/Botania/spark/0.png deleted file mode 100644 index 7884d19beb..0000000000 Binary files a/front/public/images/small/Botania/spark/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/sparkChanger/0.png b/front/public/images/small/Botania/sparkChanger/0.png deleted file mode 100644 index fd0cc19bdd..0000000000 Binary files a/front/public/images/small/Botania/sparkChanger/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/sparkUpgrade/0.png b/front/public/images/small/Botania/sparkUpgrade/0.png deleted file mode 100644 index b32ebce270..0000000000 Binary files a/front/public/images/small/Botania/sparkUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/sparkUpgrade/1.png b/front/public/images/small/Botania/sparkUpgrade/1.png deleted file mode 100644 index 59992d2eee..0000000000 Binary files a/front/public/images/small/Botania/sparkUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/sparkUpgrade/2.png b/front/public/images/small/Botania/sparkUpgrade/2.png deleted file mode 100644 index e8938c9cf3..0000000000 Binary files a/front/public/images/small/Botania/sparkUpgrade/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/sparkUpgrade/3.png b/front/public/images/small/Botania/sparkUpgrade/3.png deleted file mode 100644 index bb778501e6..0000000000 Binary files a/front/public/images/small/Botania/sparkUpgrade/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/spawnerClaw/0.png b/front/public/images/small/Botania/spawnerClaw/0.png deleted file mode 100644 index fa95be3e59..0000000000 Binary files a/front/public/images/small/Botania/spawnerClaw/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/spawnerMover/0.png b/front/public/images/small/Botania/spawnerMover/0.png deleted file mode 100644 index 7e3eb71f3f..0000000000 Binary files a/front/public/images/small/Botania/spawnerMover/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/specialFlower/0.png b/front/public/images/small/Botania/specialFlower/0.png deleted file mode 100644 index df3bd0aa7a..0000000000 Binary files a/front/public/images/small/Botania/specialFlower/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/speedUpBelt/0.png b/front/public/images/small/Botania/speedUpBelt/0.png deleted file mode 100644 index 53d74a2def..0000000000 Binary files a/front/public/images/small/Botania/speedUpBelt/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/spellCloth/0.png b/front/public/images/small/Botania/spellCloth/0.png deleted file mode 100644 index e293d67872..0000000000 Binary files a/front/public/images/small/Botania/spellCloth/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/spreader/0.png b/front/public/images/small/Botania/spreader/0.png deleted file mode 100644 index 8632bac765..0000000000 Binary files a/front/public/images/small/Botania/spreader/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/spreader/1.png b/front/public/images/small/Botania/spreader/1.png deleted file mode 100644 index 47cbc08002..0000000000 Binary files a/front/public/images/small/Botania/spreader/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/spreader/2.png b/front/public/images/small/Botania/spreader/2.png deleted file mode 100644 index c67d223006..0000000000 Binary files a/front/public/images/small/Botania/spreader/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/spreader/3.png b/front/public/images/small/Botania/spreader/3.png deleted file mode 100644 index afb3056823..0000000000 Binary files a/front/public/images/small/Botania/spreader/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/starSword/0.png b/front/public/images/small/Botania/starSword/0.png deleted file mode 100644 index 31fd5d1162..0000000000 Binary files a/front/public/images/small/Botania/starSword/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/starfield/0.png b/front/public/images/small/Botania/starfield/0.png deleted file mode 100644 index 15a62fb5c8..0000000000 Binary files a/front/public/images/small/Botania/starfield/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/0.png b/front/public/images/small/Botania/stone/0.png deleted file mode 100644 index fd60c808b4..0000000000 Binary files a/front/public/images/small/Botania/stone/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/1.png b/front/public/images/small/Botania/stone/1.png deleted file mode 100644 index c937a7a68a..0000000000 Binary files a/front/public/images/small/Botania/stone/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/10.png b/front/public/images/small/Botania/stone/10.png deleted file mode 100644 index d42d2409ba..0000000000 Binary files a/front/public/images/small/Botania/stone/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/11.png b/front/public/images/small/Botania/stone/11.png deleted file mode 100644 index 8d968ebfe2..0000000000 Binary files a/front/public/images/small/Botania/stone/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/12.png b/front/public/images/small/Botania/stone/12.png deleted file mode 100644 index 54ed0bbe22..0000000000 Binary files a/front/public/images/small/Botania/stone/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/13.png b/front/public/images/small/Botania/stone/13.png deleted file mode 100644 index 457cc47447..0000000000 Binary files a/front/public/images/small/Botania/stone/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/14.png b/front/public/images/small/Botania/stone/14.png deleted file mode 100644 index b095382880..0000000000 Binary files a/front/public/images/small/Botania/stone/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/15.png b/front/public/images/small/Botania/stone/15.png deleted file mode 100644 index d23bbfc9f1..0000000000 Binary files a/front/public/images/small/Botania/stone/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/2.png b/front/public/images/small/Botania/stone/2.png deleted file mode 100644 index 178974365b..0000000000 Binary files a/front/public/images/small/Botania/stone/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/3.png b/front/public/images/small/Botania/stone/3.png deleted file mode 100644 index 3046e86285..0000000000 Binary files a/front/public/images/small/Botania/stone/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/4.png b/front/public/images/small/Botania/stone/4.png deleted file mode 100644 index fda1dbfcf0..0000000000 Binary files a/front/public/images/small/Botania/stone/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/5.png b/front/public/images/small/Botania/stone/5.png deleted file mode 100644 index 32036195cf..0000000000 Binary files a/front/public/images/small/Botania/stone/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/6.png b/front/public/images/small/Botania/stone/6.png deleted file mode 100644 index d34b0510bf..0000000000 Binary files a/front/public/images/small/Botania/stone/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/7.png b/front/public/images/small/Botania/stone/7.png deleted file mode 100644 index abf2e96829..0000000000 Binary files a/front/public/images/small/Botania/stone/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/8.png b/front/public/images/small/Botania/stone/8.png deleted file mode 100644 index bc66d864f4..0000000000 Binary files a/front/public/images/small/Botania/stone/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone/9.png b/front/public/images/small/Botania/stone/9.png deleted file mode 100644 index 91ad40b567..0000000000 Binary files a/front/public/images/small/Botania/stone/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone0Slab/0.png b/front/public/images/small/Botania/stone0Slab/0.png deleted file mode 100644 index 9771d0938b..0000000000 Binary files a/front/public/images/small/Botania/stone0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone0SlabFull/0.png b/front/public/images/small/Botania/stone0SlabFull/0.png deleted file mode 100644 index fd60c808b4..0000000000 Binary files a/front/public/images/small/Botania/stone0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone0Stairs/0.png b/front/public/images/small/Botania/stone0Stairs/0.png deleted file mode 100644 index 23ca757e34..0000000000 Binary files a/front/public/images/small/Botania/stone0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone0Wall/0.png b/front/public/images/small/Botania/stone0Wall/0.png deleted file mode 100644 index 3f0d0a97f3..0000000000 Binary files a/front/public/images/small/Botania/stone0Wall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone0Wall/1.png b/front/public/images/small/Botania/stone0Wall/1.png deleted file mode 100644 index 07fa38379b..0000000000 Binary files a/front/public/images/small/Botania/stone0Wall/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone0Wall/2.png b/front/public/images/small/Botania/stone0Wall/2.png deleted file mode 100644 index b29deb7a39..0000000000 Binary files a/front/public/images/small/Botania/stone0Wall/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone0Wall/3.png b/front/public/images/small/Botania/stone0Wall/3.png deleted file mode 100644 index 7cb8a986d4..0000000000 Binary files a/front/public/images/small/Botania/stone0Wall/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone10Slab/0.png b/front/public/images/small/Botania/stone10Slab/0.png deleted file mode 100644 index e0117c015d..0000000000 Binary files a/front/public/images/small/Botania/stone10Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone10SlabFull/0.png b/front/public/images/small/Botania/stone10SlabFull/0.png deleted file mode 100644 index d42d2409ba..0000000000 Binary files a/front/public/images/small/Botania/stone10SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone10Stairs/0.png b/front/public/images/small/Botania/stone10Stairs/0.png deleted file mode 100644 index e26f27e7be..0000000000 Binary files a/front/public/images/small/Botania/stone10Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone11Slab/0.png b/front/public/images/small/Botania/stone11Slab/0.png deleted file mode 100644 index 07bcfa32ef..0000000000 Binary files a/front/public/images/small/Botania/stone11Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone11SlabFull/0.png b/front/public/images/small/Botania/stone11SlabFull/0.png deleted file mode 100644 index 8d968ebfe2..0000000000 Binary files a/front/public/images/small/Botania/stone11SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone11Stairs/0.png b/front/public/images/small/Botania/stone11Stairs/0.png deleted file mode 100644 index 1f60c74fc8..0000000000 Binary files a/front/public/images/small/Botania/stone11Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone1Slab/0.png b/front/public/images/small/Botania/stone1Slab/0.png deleted file mode 100644 index 1793fe4e7f..0000000000 Binary files a/front/public/images/small/Botania/stone1Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone1SlabFull/0.png b/front/public/images/small/Botania/stone1SlabFull/0.png deleted file mode 100644 index c937a7a68a..0000000000 Binary files a/front/public/images/small/Botania/stone1SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone1Stairs/0.png b/front/public/images/small/Botania/stone1Stairs/0.png deleted file mode 100644 index effc1eb6a8..0000000000 Binary files a/front/public/images/small/Botania/stone1Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone2Slab/0.png b/front/public/images/small/Botania/stone2Slab/0.png deleted file mode 100644 index 71b3dd3650..0000000000 Binary files a/front/public/images/small/Botania/stone2Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone2SlabFull/0.png b/front/public/images/small/Botania/stone2SlabFull/0.png deleted file mode 100644 index 178974365b..0000000000 Binary files a/front/public/images/small/Botania/stone2SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone2Stairs/0.png b/front/public/images/small/Botania/stone2Stairs/0.png deleted file mode 100644 index a3aaca3a23..0000000000 Binary files a/front/public/images/small/Botania/stone2Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone3Slab/0.png b/front/public/images/small/Botania/stone3Slab/0.png deleted file mode 100644 index 8c9790b6aa..0000000000 Binary files a/front/public/images/small/Botania/stone3Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone3SlabFull/0.png b/front/public/images/small/Botania/stone3SlabFull/0.png deleted file mode 100644 index 3046e86285..0000000000 Binary files a/front/public/images/small/Botania/stone3SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone3Stairs/0.png b/front/public/images/small/Botania/stone3Stairs/0.png deleted file mode 100644 index 54d8ec598b..0000000000 Binary files a/front/public/images/small/Botania/stone3Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone8Slab/0.png b/front/public/images/small/Botania/stone8Slab/0.png deleted file mode 100644 index 2b723fa3d0..0000000000 Binary files a/front/public/images/small/Botania/stone8Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone8SlabFull/0.png b/front/public/images/small/Botania/stone8SlabFull/0.png deleted file mode 100644 index bc66d864f4..0000000000 Binary files a/front/public/images/small/Botania/stone8SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone8Stairs/0.png b/front/public/images/small/Botania/stone8Stairs/0.png deleted file mode 100644 index 1fd05befeb..0000000000 Binary files a/front/public/images/small/Botania/stone8Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone9Slab/0.png b/front/public/images/small/Botania/stone9Slab/0.png deleted file mode 100644 index 9a0e9a69d2..0000000000 Binary files a/front/public/images/small/Botania/stone9Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone9SlabFull/0.png b/front/public/images/small/Botania/stone9SlabFull/0.png deleted file mode 100644 index 91ad40b567..0000000000 Binary files a/front/public/images/small/Botania/stone9SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/stone9Stairs/0.png b/front/public/images/small/Botania/stone9Stairs/0.png deleted file mode 100644 index 0f9662efd3..0000000000 Binary files a/front/public/images/small/Botania/stone9Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/storage/0.png b/front/public/images/small/Botania/storage/0.png deleted file mode 100644 index 00b65f6ccf..0000000000 Binary files a/front/public/images/small/Botania/storage/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/storage/1.png b/front/public/images/small/Botania/storage/1.png deleted file mode 100644 index 7827cc45f9..0000000000 Binary files a/front/public/images/small/Botania/storage/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/storage/2.png b/front/public/images/small/Botania/storage/2.png deleted file mode 100644 index 5428a0cf28..0000000000 Binary files a/front/public/images/small/Botania/storage/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/storage/3.png b/front/public/images/small/Botania/storage/3.png deleted file mode 100644 index 9b5f6851b2..0000000000 Binary files a/front/public/images/small/Botania/storage/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/storage/4.png b/front/public/images/small/Botania/storage/4.png deleted file mode 100644 index afebadfacf..0000000000 Binary files a/front/public/images/small/Botania/storage/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/superLavaPendant/0.png b/front/public/images/small/Botania/superLavaPendant/0.png deleted file mode 100644 index ad66af2b17..0000000000 Binary files a/front/public/images/small/Botania/superLavaPendant/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/superTravelBelt/0.png b/front/public/images/small/Botania/superTravelBelt/0.png deleted file mode 100644 index 84b6b08265..0000000000 Binary files a/front/public/images/small/Botania/superTravelBelt/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/swapRing/0.png b/front/public/images/small/Botania/swapRing/0.png deleted file mode 100644 index acb310cc76..0000000000 Binary files a/front/public/images/small/Botania/swapRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/temperanceStone/0.png b/front/public/images/small/Botania/temperanceStone/0.png deleted file mode 100644 index eea83d972f..0000000000 Binary files a/front/public/images/small/Botania/temperanceStone/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terraAxe/0.png b/front/public/images/small/Botania/terraAxe/0.png deleted file mode 100644 index e5aa819a63..0000000000 Binary files a/front/public/images/small/Botania/terraAxe/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terraPick/0.png b/front/public/images/small/Botania/terraPick/0.png deleted file mode 100644 index 126a9a50c3..0000000000 Binary files a/front/public/images/small/Botania/terraPick/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terraPlate/0.png b/front/public/images/small/Botania/terraPlate/0.png deleted file mode 100644 index 804f6d207e..0000000000 Binary files a/front/public/images/small/Botania/terraPlate/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terraSword/0.png b/front/public/images/small/Botania/terraSword/0.png deleted file mode 100644 index 7417988ff0..0000000000 Binary files a/front/public/images/small/Botania/terraSword/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terraformRod/0.png b/front/public/images/small/Botania/terraformRod/0.png deleted file mode 100644 index 40104ccb60..0000000000 Binary files a/front/public/images/small/Botania/terraformRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terrasteelBoots/0.png b/front/public/images/small/Botania/terrasteelBoots/0.png deleted file mode 100644 index ad156165b7..0000000000 Binary files a/front/public/images/small/Botania/terrasteelBoots/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terrasteelChest/0.png b/front/public/images/small/Botania/terrasteelChest/0.png deleted file mode 100644 index 3a8c0f1553..0000000000 Binary files a/front/public/images/small/Botania/terrasteelChest/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terrasteelHelm/0.png b/front/public/images/small/Botania/terrasteelHelm/0.png deleted file mode 100644 index 960ee56bc7..0000000000 Binary files a/front/public/images/small/Botania/terrasteelHelm/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terrasteelHelmReveal/0.png b/front/public/images/small/Botania/terrasteelHelmReveal/0.png deleted file mode 100644 index e6a5ce3092..0000000000 Binary files a/front/public/images/small/Botania/terrasteelHelmReveal/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/terrasteelLegs/0.png b/front/public/images/small/Botania/terrasteelLegs/0.png deleted file mode 100644 index 2fbdeda0b1..0000000000 Binary files a/front/public/images/small/Botania/terrasteelLegs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/teruTeruBozu/0.png b/front/public/images/small/Botania/teruTeruBozu/0.png deleted file mode 100644 index 5a80cb7145..0000000000 Binary files a/front/public/images/small/Botania/teruTeruBozu/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/thatch/0.png b/front/public/images/small/Botania/thatch/0.png deleted file mode 100644 index 83bd2b42ec..0000000000 Binary files a/front/public/images/small/Botania/thatch/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/thatch0Slab/0.png b/front/public/images/small/Botania/thatch0Slab/0.png deleted file mode 100644 index 12d1e1ad21..0000000000 Binary files a/front/public/images/small/Botania/thatch0Slab/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/thatch0SlabFull/0.png b/front/public/images/small/Botania/thatch0SlabFull/0.png deleted file mode 100644 index 83bd2b42ec..0000000000 Binary files a/front/public/images/small/Botania/thatch0SlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/thatch0Stairs/0.png b/front/public/images/small/Botania/thatch0Stairs/0.png deleted file mode 100644 index eb227755a6..0000000000 Binary files a/front/public/images/small/Botania/thatch0Stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/thorRing/0.png b/front/public/images/small/Botania/thorRing/0.png deleted file mode 100644 index 3f157ed4ff..0000000000 Binary files a/front/public/images/small/Botania/thorRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/thornChakram/0.png b/front/public/images/small/Botania/thornChakram/0.png deleted file mode 100644 index 979497e57f..0000000000 Binary files a/front/public/images/small/Botania/thornChakram/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/thornChakram/1.png b/front/public/images/small/Botania/thornChakram/1.png deleted file mode 100644 index 28c52ea6c7..0000000000 Binary files a/front/public/images/small/Botania/thornChakram/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/thunderSword/0.png b/front/public/images/small/Botania/thunderSword/0.png deleted file mode 100644 index 303ea0051e..0000000000 Binary files a/front/public/images/small/Botania/thunderSword/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/tinyPlanet/0.png b/front/public/images/small/Botania/tinyPlanet/0.png deleted file mode 100644 index cde3160395..0000000000 Binary files a/front/public/images/small/Botania/tinyPlanet/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/tinyPlanetBlock/0.png b/front/public/images/small/Botania/tinyPlanetBlock/0.png deleted file mode 100644 index 3a168d5daf..0000000000 Binary files a/front/public/images/small/Botania/tinyPlanetBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/tinyPotato/0.png b/front/public/images/small/Botania/tinyPotato/0.png deleted file mode 100644 index ad023fda89..0000000000 Binary files a/front/public/images/small/Botania/tinyPotato/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/tornadoRod/0.png b/front/public/images/small/Botania/tornadoRod/0.png deleted file mode 100644 index f025ee22d9..0000000000 Binary files a/front/public/images/small/Botania/tornadoRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/travelBelt/0.png b/front/public/images/small/Botania/travelBelt/0.png deleted file mode 100644 index 3969ac4d6a..0000000000 Binary files a/front/public/images/small/Botania/travelBelt/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/turntable/0.png b/front/public/images/small/Botania/turntable/0.png deleted file mode 100644 index cbfb9ff338..0000000000 Binary files a/front/public/images/small/Botania/turntable/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/twigWand/0.png b/front/public/images/small/Botania/twigWand/0.png deleted file mode 100644 index 788d29abf9..0000000000 Binary files a/front/public/images/small/Botania/twigWand/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/unholyCloak/0.png b/front/public/images/small/Botania/unholyCloak/0.png deleted file mode 100644 index dbb97f9538..0000000000 Binary files a/front/public/images/small/Botania/unholyCloak/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/0.png b/front/public/images/small/Botania/unstableBlock/0.png deleted file mode 100644 index 4622d1a629..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/1.png b/front/public/images/small/Botania/unstableBlock/1.png deleted file mode 100644 index f50e50f157..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/10.png b/front/public/images/small/Botania/unstableBlock/10.png deleted file mode 100644 index e167141108..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/11.png b/front/public/images/small/Botania/unstableBlock/11.png deleted file mode 100644 index c49cb1bb85..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/12.png b/front/public/images/small/Botania/unstableBlock/12.png deleted file mode 100644 index bf4b9831da..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/13.png b/front/public/images/small/Botania/unstableBlock/13.png deleted file mode 100644 index 47bec15032..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/14.png b/front/public/images/small/Botania/unstableBlock/14.png deleted file mode 100644 index ea88f22114..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/15.png b/front/public/images/small/Botania/unstableBlock/15.png deleted file mode 100644 index d91c4e05cc..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/2.png b/front/public/images/small/Botania/unstableBlock/2.png deleted file mode 100644 index 9a9074bbac..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/3.png b/front/public/images/small/Botania/unstableBlock/3.png deleted file mode 100644 index d0cd3b3a68..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/4.png b/front/public/images/small/Botania/unstableBlock/4.png deleted file mode 100644 index d8a5cce83e..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/5.png b/front/public/images/small/Botania/unstableBlock/5.png deleted file mode 100644 index 112327b3f0..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/6.png b/front/public/images/small/Botania/unstableBlock/6.png deleted file mode 100644 index ce2636db79..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/7.png b/front/public/images/small/Botania/unstableBlock/7.png deleted file mode 100644 index 54985d5682..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/8.png b/front/public/images/small/Botania/unstableBlock/8.png deleted file mode 100644 index 22abf6aaa8..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Botania/unstableBlock/9.png b/front/public/images/small/Botania/unstableBlock/9.png deleted file mode 100644 index 4112346720..0000000000 Binary files a/front/public/images/small/Botania/unstableBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Botania/vial/0.png b/front/public/images/small/Botania/vial/0.png deleted file mode 100644 index 1a9ad409e3..0000000000 Binary files a/front/public/images/small/Botania/vial/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/vial/1.png b/front/public/images/small/Botania/vial/1.png deleted file mode 100644 index 9165eb5493..0000000000 Binary files a/front/public/images/small/Botania/vial/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/vineBall/0.png b/front/public/images/small/Botania/vineBall/0.png deleted file mode 100644 index 20b173b6b3..0000000000 Binary files a/front/public/images/small/Botania/vineBall/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/virus/0.png b/front/public/images/small/Botania/virus/0.png deleted file mode 100644 index e6f2d5e4fa..0000000000 Binary files a/front/public/images/small/Botania/virus/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/virus/1.png b/front/public/images/small/Botania/virus/1.png deleted file mode 100644 index ae6b4cca4e..0000000000 Binary files a/front/public/images/small/Botania/virus/1.png and /dev/null differ diff --git a/front/public/images/small/Botania/waterBowl/0.png b/front/public/images/small/Botania/waterBowl/0.png deleted file mode 100644 index 16a3643594..0000000000 Binary files a/front/public/images/small/Botania/waterBowl/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/waterRing/0.png b/front/public/images/small/Botania/waterRing/0.png deleted file mode 100644 index 832ebbd420..0000000000 Binary files a/front/public/images/small/Botania/waterRing/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/waterRod/0.png b/front/public/images/small/Botania/waterRod/0.png deleted file mode 100644 index 64f3bcba71..0000000000 Binary files a/front/public/images/small/Botania/waterRod/0.png and /dev/null differ diff --git a/front/public/images/small/Botania/worldSeed/0.png b/front/public/images/small/Botania/worldSeed/0.png deleted file mode 100644 index e719f3860d..0000000000 Binary files a/front/public/images/small/Botania/worldSeed/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/0.png b/front/public/images/small/Botany/ceramic/0.png deleted file mode 100644 index 984b5b65e9..0000000000 Binary files a/front/public/images/small/Botany/ceramic/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/1.png b/front/public/images/small/Botany/ceramic/1.png deleted file mode 100644 index 96b1eb5b8e..0000000000 Binary files a/front/public/images/small/Botany/ceramic/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/10.png b/front/public/images/small/Botany/ceramic/10.png deleted file mode 100644 index e796c92414..0000000000 Binary files a/front/public/images/small/Botany/ceramic/10.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/11.png b/front/public/images/small/Botany/ceramic/11.png deleted file mode 100644 index 353d3d37af..0000000000 Binary files a/front/public/images/small/Botany/ceramic/11.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/12.png b/front/public/images/small/Botany/ceramic/12.png deleted file mode 100644 index 27bc91a051..0000000000 Binary files a/front/public/images/small/Botany/ceramic/12.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/13.png b/front/public/images/small/Botany/ceramic/13.png deleted file mode 100644 index cf7d916f99..0000000000 Binary files a/front/public/images/small/Botany/ceramic/13.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/14.png b/front/public/images/small/Botany/ceramic/14.png deleted file mode 100644 index d380f8e867..0000000000 Binary files a/front/public/images/small/Botany/ceramic/14.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/15.png b/front/public/images/small/Botany/ceramic/15.png deleted file mode 100644 index b70c523ff1..0000000000 Binary files a/front/public/images/small/Botany/ceramic/15.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/16.png b/front/public/images/small/Botany/ceramic/16.png deleted file mode 100644 index d55aa77c73..0000000000 Binary files a/front/public/images/small/Botany/ceramic/16.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/17.png b/front/public/images/small/Botany/ceramic/17.png deleted file mode 100644 index 8a0d9517c7..0000000000 Binary files a/front/public/images/small/Botany/ceramic/17.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/18.png b/front/public/images/small/Botany/ceramic/18.png deleted file mode 100644 index a357c120a8..0000000000 Binary files a/front/public/images/small/Botany/ceramic/18.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/19.png b/front/public/images/small/Botany/ceramic/19.png deleted file mode 100644 index 227fd5089a..0000000000 Binary files a/front/public/images/small/Botany/ceramic/19.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/2.png b/front/public/images/small/Botany/ceramic/2.png deleted file mode 100644 index 355b59a0b7..0000000000 Binary files a/front/public/images/small/Botany/ceramic/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/20.png b/front/public/images/small/Botany/ceramic/20.png deleted file mode 100644 index 27dd27cf10..0000000000 Binary files a/front/public/images/small/Botany/ceramic/20.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/21.png b/front/public/images/small/Botany/ceramic/21.png deleted file mode 100644 index d4aea11d10..0000000000 Binary files a/front/public/images/small/Botany/ceramic/21.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/22.png b/front/public/images/small/Botany/ceramic/22.png deleted file mode 100644 index 8406ccaff9..0000000000 Binary files a/front/public/images/small/Botany/ceramic/22.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/23.png b/front/public/images/small/Botany/ceramic/23.png deleted file mode 100644 index f0ca0fe1a8..0000000000 Binary files a/front/public/images/small/Botany/ceramic/23.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/24.png b/front/public/images/small/Botany/ceramic/24.png deleted file mode 100644 index 0ccd2e61b0..0000000000 Binary files a/front/public/images/small/Botany/ceramic/24.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/25.png b/front/public/images/small/Botany/ceramic/25.png deleted file mode 100644 index ba490e3854..0000000000 Binary files a/front/public/images/small/Botany/ceramic/25.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/26.png b/front/public/images/small/Botany/ceramic/26.png deleted file mode 100644 index aa720c526a..0000000000 Binary files a/front/public/images/small/Botany/ceramic/26.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/27.png b/front/public/images/small/Botany/ceramic/27.png deleted file mode 100644 index 7d6aea6ba6..0000000000 Binary files a/front/public/images/small/Botany/ceramic/27.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/28.png b/front/public/images/small/Botany/ceramic/28.png deleted file mode 100644 index 20e6603a79..0000000000 Binary files a/front/public/images/small/Botany/ceramic/28.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/29.png b/front/public/images/small/Botany/ceramic/29.png deleted file mode 100644 index 8a74970d6e..0000000000 Binary files a/front/public/images/small/Botany/ceramic/29.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/3.png b/front/public/images/small/Botany/ceramic/3.png deleted file mode 100644 index 09cb37b3ac..0000000000 Binary files a/front/public/images/small/Botany/ceramic/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/30.png b/front/public/images/small/Botany/ceramic/30.png deleted file mode 100644 index fe4290d13b..0000000000 Binary files a/front/public/images/small/Botany/ceramic/30.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/31.png b/front/public/images/small/Botany/ceramic/31.png deleted file mode 100644 index 26c33c02fd..0000000000 Binary files a/front/public/images/small/Botany/ceramic/31.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/32.png b/front/public/images/small/Botany/ceramic/32.png deleted file mode 100644 index a7526f4a98..0000000000 Binary files a/front/public/images/small/Botany/ceramic/32.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/33.png b/front/public/images/small/Botany/ceramic/33.png deleted file mode 100644 index 63d1883afb..0000000000 Binary files a/front/public/images/small/Botany/ceramic/33.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/34.png b/front/public/images/small/Botany/ceramic/34.png deleted file mode 100644 index 3654f8edb2..0000000000 Binary files a/front/public/images/small/Botany/ceramic/34.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/35.png b/front/public/images/small/Botany/ceramic/35.png deleted file mode 100644 index 31ecda3b4e..0000000000 Binary files a/front/public/images/small/Botany/ceramic/35.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/36.png b/front/public/images/small/Botany/ceramic/36.png deleted file mode 100644 index 81d191639d..0000000000 Binary files a/front/public/images/small/Botany/ceramic/36.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/37.png b/front/public/images/small/Botany/ceramic/37.png deleted file mode 100644 index 8b493e8249..0000000000 Binary files a/front/public/images/small/Botany/ceramic/37.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/38.png b/front/public/images/small/Botany/ceramic/38.png deleted file mode 100644 index 8b238639dc..0000000000 Binary files a/front/public/images/small/Botany/ceramic/38.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/39.png b/front/public/images/small/Botany/ceramic/39.png deleted file mode 100644 index cdf47484b8..0000000000 Binary files a/front/public/images/small/Botany/ceramic/39.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/4.png b/front/public/images/small/Botany/ceramic/4.png deleted file mode 100644 index 0216bc9aaa..0000000000 Binary files a/front/public/images/small/Botany/ceramic/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/40.png b/front/public/images/small/Botany/ceramic/40.png deleted file mode 100644 index 2e3a689775..0000000000 Binary files a/front/public/images/small/Botany/ceramic/40.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/41.png b/front/public/images/small/Botany/ceramic/41.png deleted file mode 100644 index 5823a8cb4d..0000000000 Binary files a/front/public/images/small/Botany/ceramic/41.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/42.png b/front/public/images/small/Botany/ceramic/42.png deleted file mode 100644 index 7fac8b4398..0000000000 Binary files a/front/public/images/small/Botany/ceramic/42.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/43.png b/front/public/images/small/Botany/ceramic/43.png deleted file mode 100644 index ba8cdc59c9..0000000000 Binary files a/front/public/images/small/Botany/ceramic/43.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/44.png b/front/public/images/small/Botany/ceramic/44.png deleted file mode 100644 index b907030554..0000000000 Binary files a/front/public/images/small/Botany/ceramic/44.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/45.png b/front/public/images/small/Botany/ceramic/45.png deleted file mode 100644 index 8946e4f50d..0000000000 Binary files a/front/public/images/small/Botany/ceramic/45.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/46.png b/front/public/images/small/Botany/ceramic/46.png deleted file mode 100644 index 6f098031b7..0000000000 Binary files a/front/public/images/small/Botany/ceramic/46.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/47.png b/front/public/images/small/Botany/ceramic/47.png deleted file mode 100644 index 00b29c34c6..0000000000 Binary files a/front/public/images/small/Botany/ceramic/47.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/48.png b/front/public/images/small/Botany/ceramic/48.png deleted file mode 100644 index de52fe5abf..0000000000 Binary files a/front/public/images/small/Botany/ceramic/48.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/49.png b/front/public/images/small/Botany/ceramic/49.png deleted file mode 100644 index a1124664ea..0000000000 Binary files a/front/public/images/small/Botany/ceramic/49.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/5.png b/front/public/images/small/Botany/ceramic/5.png deleted file mode 100644 index 4ed6a95054..0000000000 Binary files a/front/public/images/small/Botany/ceramic/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/50.png b/front/public/images/small/Botany/ceramic/50.png deleted file mode 100644 index b4dbf24f66..0000000000 Binary files a/front/public/images/small/Botany/ceramic/50.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/51.png b/front/public/images/small/Botany/ceramic/51.png deleted file mode 100644 index 73fa4d7153..0000000000 Binary files a/front/public/images/small/Botany/ceramic/51.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/52.png b/front/public/images/small/Botany/ceramic/52.png deleted file mode 100644 index d2e31131ef..0000000000 Binary files a/front/public/images/small/Botany/ceramic/52.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/53.png b/front/public/images/small/Botany/ceramic/53.png deleted file mode 100644 index a58829c088..0000000000 Binary files a/front/public/images/small/Botany/ceramic/53.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/54.png b/front/public/images/small/Botany/ceramic/54.png deleted file mode 100644 index bf49808fb9..0000000000 Binary files a/front/public/images/small/Botany/ceramic/54.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/55.png b/front/public/images/small/Botany/ceramic/55.png deleted file mode 100644 index 0b4e2d9736..0000000000 Binary files a/front/public/images/small/Botany/ceramic/55.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/56.png b/front/public/images/small/Botany/ceramic/56.png deleted file mode 100644 index b71ea305d5..0000000000 Binary files a/front/public/images/small/Botany/ceramic/56.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/57.png b/front/public/images/small/Botany/ceramic/57.png deleted file mode 100644 index 48628c6737..0000000000 Binary files a/front/public/images/small/Botany/ceramic/57.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/58.png b/front/public/images/small/Botany/ceramic/58.png deleted file mode 100644 index bb67c60018..0000000000 Binary files a/front/public/images/small/Botany/ceramic/58.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/59.png b/front/public/images/small/Botany/ceramic/59.png deleted file mode 100644 index 64eb6ec28c..0000000000 Binary files a/front/public/images/small/Botany/ceramic/59.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/6.png b/front/public/images/small/Botany/ceramic/6.png deleted file mode 100644 index 7fafd040fe..0000000000 Binary files a/front/public/images/small/Botany/ceramic/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/60.png b/front/public/images/small/Botany/ceramic/60.png deleted file mode 100644 index 9f4d8bfa54..0000000000 Binary files a/front/public/images/small/Botany/ceramic/60.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/61.png b/front/public/images/small/Botany/ceramic/61.png deleted file mode 100644 index a7ce7db657..0000000000 Binary files a/front/public/images/small/Botany/ceramic/61.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/62.png b/front/public/images/small/Botany/ceramic/62.png deleted file mode 100644 index c99086e37c..0000000000 Binary files a/front/public/images/small/Botany/ceramic/62.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/63.png b/front/public/images/small/Botany/ceramic/63.png deleted file mode 100644 index ba326bfa7a..0000000000 Binary files a/front/public/images/small/Botany/ceramic/63.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/64.png b/front/public/images/small/Botany/ceramic/64.png deleted file mode 100644 index 71f390fa48..0000000000 Binary files a/front/public/images/small/Botany/ceramic/64.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/65.png b/front/public/images/small/Botany/ceramic/65.png deleted file mode 100644 index b4f9e69386..0000000000 Binary files a/front/public/images/small/Botany/ceramic/65.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/66.png b/front/public/images/small/Botany/ceramic/66.png deleted file mode 100644 index 82dc2c1902..0000000000 Binary files a/front/public/images/small/Botany/ceramic/66.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/67.png b/front/public/images/small/Botany/ceramic/67.png deleted file mode 100644 index 2edec7eb8e..0000000000 Binary files a/front/public/images/small/Botany/ceramic/67.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/68.png b/front/public/images/small/Botany/ceramic/68.png deleted file mode 100644 index 18bd8faab0..0000000000 Binary files a/front/public/images/small/Botany/ceramic/68.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/69.png b/front/public/images/small/Botany/ceramic/69.png deleted file mode 100644 index f80f5ec562..0000000000 Binary files a/front/public/images/small/Botany/ceramic/69.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/7.png b/front/public/images/small/Botany/ceramic/7.png deleted file mode 100644 index c08e3ac39e..0000000000 Binary files a/front/public/images/small/Botany/ceramic/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/70.png b/front/public/images/small/Botany/ceramic/70.png deleted file mode 100644 index 6eefd28d55..0000000000 Binary files a/front/public/images/small/Botany/ceramic/70.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/71.png b/front/public/images/small/Botany/ceramic/71.png deleted file mode 100644 index 3e50ef37fe..0000000000 Binary files a/front/public/images/small/Botany/ceramic/71.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/72.png b/front/public/images/small/Botany/ceramic/72.png deleted file mode 100644 index 21643b886d..0000000000 Binary files a/front/public/images/small/Botany/ceramic/72.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/73.png b/front/public/images/small/Botany/ceramic/73.png deleted file mode 100644 index 139c67fca4..0000000000 Binary files a/front/public/images/small/Botany/ceramic/73.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/74.png b/front/public/images/small/Botany/ceramic/74.png deleted file mode 100644 index 9664565db4..0000000000 Binary files a/front/public/images/small/Botany/ceramic/74.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/75.png b/front/public/images/small/Botany/ceramic/75.png deleted file mode 100644 index ce74b5b843..0000000000 Binary files a/front/public/images/small/Botany/ceramic/75.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/76.png b/front/public/images/small/Botany/ceramic/76.png deleted file mode 100644 index 63baabc2cc..0000000000 Binary files a/front/public/images/small/Botany/ceramic/76.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/77.png b/front/public/images/small/Botany/ceramic/77.png deleted file mode 100644 index 85647610ba..0000000000 Binary files a/front/public/images/small/Botany/ceramic/77.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/78.png b/front/public/images/small/Botany/ceramic/78.png deleted file mode 100644 index 77151ef241..0000000000 Binary files a/front/public/images/small/Botany/ceramic/78.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/79.png b/front/public/images/small/Botany/ceramic/79.png deleted file mode 100644 index 49407e3f42..0000000000 Binary files a/front/public/images/small/Botany/ceramic/79.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/8.png b/front/public/images/small/Botany/ceramic/8.png deleted file mode 100644 index a114e5b8dc..0000000000 Binary files a/front/public/images/small/Botany/ceramic/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramic/9.png b/front/public/images/small/Botany/ceramic/9.png deleted file mode 100644 index d4289f65a5..0000000000 Binary files a/front/public/images/small/Botany/ceramic/9.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/0.png b/front/public/images/small/Botany/ceramicBrick/0.png deleted file mode 100644 index f311bd7477..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/10023.png b/front/public/images/small/Botany/ceramicBrick/10023.png deleted file mode 100644 index 8c5c0fde44..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/10023.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/1028.png b/front/public/images/small/Botany/ceramicBrick/1028.png deleted file mode 100644 index 9b017ba070..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/1028.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/10280.png b/front/public/images/small/Botany/ceramicBrick/10280.png deleted file mode 100644 index 75701c8187..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/10280.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/10537.png b/front/public/images/small/Botany/ceramicBrick/10537.png deleted file mode 100644 index 06b9d5f518..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/10537.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/10794.png b/front/public/images/small/Botany/ceramicBrick/10794.png deleted file mode 100644 index 30449398db..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/10794.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/11051.png b/front/public/images/small/Botany/ceramicBrick/11051.png deleted file mode 100644 index 9e9fbdeb6c..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/11051.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/11308.png b/front/public/images/small/Botany/ceramicBrick/11308.png deleted file mode 100644 index bc8d84b7dc..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/11308.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/11565.png b/front/public/images/small/Botany/ceramicBrick/11565.png deleted file mode 100644 index cb4dbb1f26..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/11565.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/11822.png b/front/public/images/small/Botany/ceramicBrick/11822.png deleted file mode 100644 index 36bbf5ed2e..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/11822.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/12079.png b/front/public/images/small/Botany/ceramicBrick/12079.png deleted file mode 100644 index 3b50f4f3cb..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/12079.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/12336.png b/front/public/images/small/Botany/ceramicBrick/12336.png deleted file mode 100644 index aa5e0a0325..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/12336.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/12593.png b/front/public/images/small/Botany/ceramicBrick/12593.png deleted file mode 100644 index 77ae8ce2c6..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/12593.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/1285.png b/front/public/images/small/Botany/ceramicBrick/1285.png deleted file mode 100644 index 25cf72f995..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/1285.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/12850.png b/front/public/images/small/Botany/ceramicBrick/12850.png deleted file mode 100644 index 596f622e32..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/12850.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/13107.png b/front/public/images/small/Botany/ceramicBrick/13107.png deleted file mode 100644 index afd9e0d7ef..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/13107.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/13364.png b/front/public/images/small/Botany/ceramicBrick/13364.png deleted file mode 100644 index b0393d8910..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/13364.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/13621.png b/front/public/images/small/Botany/ceramicBrick/13621.png deleted file mode 100644 index bd6f837bd3..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/13621.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/13878.png b/front/public/images/small/Botany/ceramicBrick/13878.png deleted file mode 100644 index 68b925a97a..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/13878.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/14135.png b/front/public/images/small/Botany/ceramicBrick/14135.png deleted file mode 100644 index 8991d04a71..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/14135.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/14392.png b/front/public/images/small/Botany/ceramicBrick/14392.png deleted file mode 100644 index 905c320f0e..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/14392.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/14649.png b/front/public/images/small/Botany/ceramicBrick/14649.png deleted file mode 100644 index 507afffded..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/14649.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/14906.png b/front/public/images/small/Botany/ceramicBrick/14906.png deleted file mode 100644 index 5c65d5d675..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/14906.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/15163.png b/front/public/images/small/Botany/ceramicBrick/15163.png deleted file mode 100644 index e50836011d..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/15163.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/1542.png b/front/public/images/small/Botany/ceramicBrick/1542.png deleted file mode 100644 index 9ffe63f505..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/1542.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/15420.png b/front/public/images/small/Botany/ceramicBrick/15420.png deleted file mode 100644 index cf46035d1d..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/15420.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/15677.png b/front/public/images/small/Botany/ceramicBrick/15677.png deleted file mode 100644 index 11761deaa4..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/15677.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/15934.png b/front/public/images/small/Botany/ceramicBrick/15934.png deleted file mode 100644 index 463bb2a0e4..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/15934.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/16191.png b/front/public/images/small/Botany/ceramicBrick/16191.png deleted file mode 100644 index eaeb5e2bb8..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/16191.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/16387.png b/front/public/images/small/Botany/ceramicBrick/16387.png deleted file mode 100644 index f91ff461d4..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/16387.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/1799.png b/front/public/images/small/Botany/ceramicBrick/1799.png deleted file mode 100644 index 7fd2510b07..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/1799.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/2056.png b/front/public/images/small/Botany/ceramicBrick/2056.png deleted file mode 100644 index d17fe8b1b6..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/2056.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/2313.png b/front/public/images/small/Botany/ceramicBrick/2313.png deleted file mode 100644 index 1228d5e3a2..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/2313.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/257.png b/front/public/images/small/Botany/ceramicBrick/257.png deleted file mode 100644 index eff4296066..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/257.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/2570.png b/front/public/images/small/Botany/ceramicBrick/2570.png deleted file mode 100644 index b0cd964d27..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/2570.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/2827.png b/front/public/images/small/Botany/ceramicBrick/2827.png deleted file mode 100644 index 0bf653c19d..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/2827.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/3084.png b/front/public/images/small/Botany/ceramicBrick/3084.png deleted file mode 100644 index 8a20646771..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/3084.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/3341.png b/front/public/images/small/Botany/ceramicBrick/3341.png deleted file mode 100644 index 20f287f049..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/3341.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/3598.png b/front/public/images/small/Botany/ceramicBrick/3598.png deleted file mode 100644 index 64099763e4..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/3598.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/3855.png b/front/public/images/small/Botany/ceramicBrick/3855.png deleted file mode 100644 index 393854abcb..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/3855.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/4112.png b/front/public/images/small/Botany/ceramicBrick/4112.png deleted file mode 100644 index 0a7418e4ec..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/4112.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/4369.png b/front/public/images/small/Botany/ceramicBrick/4369.png deleted file mode 100644 index 86a8764af4..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/4369.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/4626.png b/front/public/images/small/Botany/ceramicBrick/4626.png deleted file mode 100644 index 5d097d76fb..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/4626.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/4883.png b/front/public/images/small/Botany/ceramicBrick/4883.png deleted file mode 100644 index 9fe73a13cf..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/4883.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/514.png b/front/public/images/small/Botany/ceramicBrick/514.png deleted file mode 100644 index 2ffd5939fc..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/514.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/5140.png b/front/public/images/small/Botany/ceramicBrick/5140.png deleted file mode 100644 index 92ab4b87d0..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/5140.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/5397.png b/front/public/images/small/Botany/ceramicBrick/5397.png deleted file mode 100644 index b953571807..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/5397.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/5654.png b/front/public/images/small/Botany/ceramicBrick/5654.png deleted file mode 100644 index 62aa96f945..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/5654.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/5911.png b/front/public/images/small/Botany/ceramicBrick/5911.png deleted file mode 100644 index b29f9857d5..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/5911.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/6168.png b/front/public/images/small/Botany/ceramicBrick/6168.png deleted file mode 100644 index 59eedc53e6..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/6168.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/6425.png b/front/public/images/small/Botany/ceramicBrick/6425.png deleted file mode 100644 index 855d90f329..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/6425.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/6682.png b/front/public/images/small/Botany/ceramicBrick/6682.png deleted file mode 100644 index ac6ae97328..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/6682.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/6939.png b/front/public/images/small/Botany/ceramicBrick/6939.png deleted file mode 100644 index 398265d163..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/6939.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/7196.png b/front/public/images/small/Botany/ceramicBrick/7196.png deleted file mode 100644 index e9ab8fc87f..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/7196.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/7453.png b/front/public/images/small/Botany/ceramicBrick/7453.png deleted file mode 100644 index 0661d200a6..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/7453.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/771.png b/front/public/images/small/Botany/ceramicBrick/771.png deleted file mode 100644 index e6d24a629e..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/771.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/7710.png b/front/public/images/small/Botany/ceramicBrick/7710.png deleted file mode 100644 index 7088696ea0..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/7710.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/7967.png b/front/public/images/small/Botany/ceramicBrick/7967.png deleted file mode 100644 index f2dc183ce8..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/7967.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/8224.png b/front/public/images/small/Botany/ceramicBrick/8224.png deleted file mode 100644 index 2b7a51285f..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/8224.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/8481.png b/front/public/images/small/Botany/ceramicBrick/8481.png deleted file mode 100644 index 77053a05fd..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/8481.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/8738.png b/front/public/images/small/Botany/ceramicBrick/8738.png deleted file mode 100644 index 4443d28b99..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/8738.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/8995.png b/front/public/images/small/Botany/ceramicBrick/8995.png deleted file mode 100644 index 01ed841ca5..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/8995.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/9252.png b/front/public/images/small/Botany/ceramicBrick/9252.png deleted file mode 100644 index e9ccb89257..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/9252.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/9509.png b/front/public/images/small/Botany/ceramicBrick/9509.png deleted file mode 100644 index 0b8c0886dc..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/9509.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicBrick/9766.png b/front/public/images/small/Botany/ceramicBrick/9766.png deleted file mode 100644 index d88a170665..0000000000 Binary files a/front/public/images/small/Botany/ceramicBrick/9766.png and /dev/null differ diff --git a/front/public/images/small/Botany/ceramicPattern/16387.png b/front/public/images/small/Botany/ceramicPattern/16387.png deleted file mode 100644 index 17254d67a4..0000000000 Binary files a/front/public/images/small/Botany/ceramicPattern/16387.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/0.png b/front/public/images/small/Botany/clay/0.png deleted file mode 100644 index 1510088eca..0000000000 Binary files a/front/public/images/small/Botany/clay/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/1.png b/front/public/images/small/Botany/clay/1.png deleted file mode 100644 index 7ebae047c4..0000000000 Binary files a/front/public/images/small/Botany/clay/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/10.png b/front/public/images/small/Botany/clay/10.png deleted file mode 100644 index 2880cf78b1..0000000000 Binary files a/front/public/images/small/Botany/clay/10.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/11.png b/front/public/images/small/Botany/clay/11.png deleted file mode 100644 index 022c162683..0000000000 Binary files a/front/public/images/small/Botany/clay/11.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/12.png b/front/public/images/small/Botany/clay/12.png deleted file mode 100644 index 7be4043fe9..0000000000 Binary files a/front/public/images/small/Botany/clay/12.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/13.png b/front/public/images/small/Botany/clay/13.png deleted file mode 100644 index cec26387ad..0000000000 Binary files a/front/public/images/small/Botany/clay/13.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/14.png b/front/public/images/small/Botany/clay/14.png deleted file mode 100644 index 5ced719813..0000000000 Binary files a/front/public/images/small/Botany/clay/14.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/15.png b/front/public/images/small/Botany/clay/15.png deleted file mode 100644 index 84011fa432..0000000000 Binary files a/front/public/images/small/Botany/clay/15.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/16.png b/front/public/images/small/Botany/clay/16.png deleted file mode 100644 index 1200d5d630..0000000000 Binary files a/front/public/images/small/Botany/clay/16.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/17.png b/front/public/images/small/Botany/clay/17.png deleted file mode 100644 index 0aaf2b528e..0000000000 Binary files a/front/public/images/small/Botany/clay/17.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/18.png b/front/public/images/small/Botany/clay/18.png deleted file mode 100644 index 1d9f852188..0000000000 Binary files a/front/public/images/small/Botany/clay/18.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/19.png b/front/public/images/small/Botany/clay/19.png deleted file mode 100644 index 1a975d981d..0000000000 Binary files a/front/public/images/small/Botany/clay/19.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/2.png b/front/public/images/small/Botany/clay/2.png deleted file mode 100644 index 558e6b844e..0000000000 Binary files a/front/public/images/small/Botany/clay/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/20.png b/front/public/images/small/Botany/clay/20.png deleted file mode 100644 index 643e5c6a3b..0000000000 Binary files a/front/public/images/small/Botany/clay/20.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/21.png b/front/public/images/small/Botany/clay/21.png deleted file mode 100644 index 78bd64e794..0000000000 Binary files a/front/public/images/small/Botany/clay/21.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/22.png b/front/public/images/small/Botany/clay/22.png deleted file mode 100644 index a60fd6466a..0000000000 Binary files a/front/public/images/small/Botany/clay/22.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/23.png b/front/public/images/small/Botany/clay/23.png deleted file mode 100644 index 1fb58b420f..0000000000 Binary files a/front/public/images/small/Botany/clay/23.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/24.png b/front/public/images/small/Botany/clay/24.png deleted file mode 100644 index 3ccc91448c..0000000000 Binary files a/front/public/images/small/Botany/clay/24.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/25.png b/front/public/images/small/Botany/clay/25.png deleted file mode 100644 index f64ae22956..0000000000 Binary files a/front/public/images/small/Botany/clay/25.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/26.png b/front/public/images/small/Botany/clay/26.png deleted file mode 100644 index ae45546cf4..0000000000 Binary files a/front/public/images/small/Botany/clay/26.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/27.png b/front/public/images/small/Botany/clay/27.png deleted file mode 100644 index 710ac8ce62..0000000000 Binary files a/front/public/images/small/Botany/clay/27.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/28.png b/front/public/images/small/Botany/clay/28.png deleted file mode 100644 index 5cbf770373..0000000000 Binary files a/front/public/images/small/Botany/clay/28.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/29.png b/front/public/images/small/Botany/clay/29.png deleted file mode 100644 index 1735caa876..0000000000 Binary files a/front/public/images/small/Botany/clay/29.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/3.png b/front/public/images/small/Botany/clay/3.png deleted file mode 100644 index cda69e3aae..0000000000 Binary files a/front/public/images/small/Botany/clay/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/30.png b/front/public/images/small/Botany/clay/30.png deleted file mode 100644 index 935b819e41..0000000000 Binary files a/front/public/images/small/Botany/clay/30.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/31.png b/front/public/images/small/Botany/clay/31.png deleted file mode 100644 index e4cdedc0a9..0000000000 Binary files a/front/public/images/small/Botany/clay/31.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/32.png b/front/public/images/small/Botany/clay/32.png deleted file mode 100644 index f82573dc9a..0000000000 Binary files a/front/public/images/small/Botany/clay/32.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/33.png b/front/public/images/small/Botany/clay/33.png deleted file mode 100644 index c99dfd6636..0000000000 Binary files a/front/public/images/small/Botany/clay/33.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/34.png b/front/public/images/small/Botany/clay/34.png deleted file mode 100644 index 58080f6085..0000000000 Binary files a/front/public/images/small/Botany/clay/34.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/35.png b/front/public/images/small/Botany/clay/35.png deleted file mode 100644 index 7257339dda..0000000000 Binary files a/front/public/images/small/Botany/clay/35.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/36.png b/front/public/images/small/Botany/clay/36.png deleted file mode 100644 index aec1cdf9f9..0000000000 Binary files a/front/public/images/small/Botany/clay/36.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/37.png b/front/public/images/small/Botany/clay/37.png deleted file mode 100644 index b23c202136..0000000000 Binary files a/front/public/images/small/Botany/clay/37.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/38.png b/front/public/images/small/Botany/clay/38.png deleted file mode 100644 index bdab2796a2..0000000000 Binary files a/front/public/images/small/Botany/clay/38.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/39.png b/front/public/images/small/Botany/clay/39.png deleted file mode 100644 index d85bc2dd87..0000000000 Binary files a/front/public/images/small/Botany/clay/39.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/4.png b/front/public/images/small/Botany/clay/4.png deleted file mode 100644 index 4cf188581e..0000000000 Binary files a/front/public/images/small/Botany/clay/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/40.png b/front/public/images/small/Botany/clay/40.png deleted file mode 100644 index 636245db5d..0000000000 Binary files a/front/public/images/small/Botany/clay/40.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/41.png b/front/public/images/small/Botany/clay/41.png deleted file mode 100644 index b910b9e472..0000000000 Binary files a/front/public/images/small/Botany/clay/41.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/42.png b/front/public/images/small/Botany/clay/42.png deleted file mode 100644 index 092ff88314..0000000000 Binary files a/front/public/images/small/Botany/clay/42.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/43.png b/front/public/images/small/Botany/clay/43.png deleted file mode 100644 index ff60d96ecf..0000000000 Binary files a/front/public/images/small/Botany/clay/43.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/44.png b/front/public/images/small/Botany/clay/44.png deleted file mode 100644 index 3ab4e9ad60..0000000000 Binary files a/front/public/images/small/Botany/clay/44.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/45.png b/front/public/images/small/Botany/clay/45.png deleted file mode 100644 index 29cc54c4e6..0000000000 Binary files a/front/public/images/small/Botany/clay/45.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/46.png b/front/public/images/small/Botany/clay/46.png deleted file mode 100644 index 7a08fa5308..0000000000 Binary files a/front/public/images/small/Botany/clay/46.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/47.png b/front/public/images/small/Botany/clay/47.png deleted file mode 100644 index 70c80c2dad..0000000000 Binary files a/front/public/images/small/Botany/clay/47.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/48.png b/front/public/images/small/Botany/clay/48.png deleted file mode 100644 index 251537251c..0000000000 Binary files a/front/public/images/small/Botany/clay/48.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/49.png b/front/public/images/small/Botany/clay/49.png deleted file mode 100644 index e14eb0452f..0000000000 Binary files a/front/public/images/small/Botany/clay/49.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/5.png b/front/public/images/small/Botany/clay/5.png deleted file mode 100644 index 2b835d0856..0000000000 Binary files a/front/public/images/small/Botany/clay/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/50.png b/front/public/images/small/Botany/clay/50.png deleted file mode 100644 index 46544c22cd..0000000000 Binary files a/front/public/images/small/Botany/clay/50.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/51.png b/front/public/images/small/Botany/clay/51.png deleted file mode 100644 index 340db91d3a..0000000000 Binary files a/front/public/images/small/Botany/clay/51.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/52.png b/front/public/images/small/Botany/clay/52.png deleted file mode 100644 index 7843bb1c67..0000000000 Binary files a/front/public/images/small/Botany/clay/52.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/53.png b/front/public/images/small/Botany/clay/53.png deleted file mode 100644 index 4c3e5919e1..0000000000 Binary files a/front/public/images/small/Botany/clay/53.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/54.png b/front/public/images/small/Botany/clay/54.png deleted file mode 100644 index c5a2bb4929..0000000000 Binary files a/front/public/images/small/Botany/clay/54.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/55.png b/front/public/images/small/Botany/clay/55.png deleted file mode 100644 index 4f7eb38fb7..0000000000 Binary files a/front/public/images/small/Botany/clay/55.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/56.png b/front/public/images/small/Botany/clay/56.png deleted file mode 100644 index 876bdbca08..0000000000 Binary files a/front/public/images/small/Botany/clay/56.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/57.png b/front/public/images/small/Botany/clay/57.png deleted file mode 100644 index 92e54476d4..0000000000 Binary files a/front/public/images/small/Botany/clay/57.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/58.png b/front/public/images/small/Botany/clay/58.png deleted file mode 100644 index 306853452c..0000000000 Binary files a/front/public/images/small/Botany/clay/58.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/59.png b/front/public/images/small/Botany/clay/59.png deleted file mode 100644 index e936a9eed0..0000000000 Binary files a/front/public/images/small/Botany/clay/59.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/6.png b/front/public/images/small/Botany/clay/6.png deleted file mode 100644 index 37673b9cba..0000000000 Binary files a/front/public/images/small/Botany/clay/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/60.png b/front/public/images/small/Botany/clay/60.png deleted file mode 100644 index 5f400736e6..0000000000 Binary files a/front/public/images/small/Botany/clay/60.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/61.png b/front/public/images/small/Botany/clay/61.png deleted file mode 100644 index c271217920..0000000000 Binary files a/front/public/images/small/Botany/clay/61.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/62.png b/front/public/images/small/Botany/clay/62.png deleted file mode 100644 index ab4a132e27..0000000000 Binary files a/front/public/images/small/Botany/clay/62.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/63.png b/front/public/images/small/Botany/clay/63.png deleted file mode 100644 index 8bbbb8a803..0000000000 Binary files a/front/public/images/small/Botany/clay/63.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/64.png b/front/public/images/small/Botany/clay/64.png deleted file mode 100644 index ee86f52c1f..0000000000 Binary files a/front/public/images/small/Botany/clay/64.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/65.png b/front/public/images/small/Botany/clay/65.png deleted file mode 100644 index 21642f3a60..0000000000 Binary files a/front/public/images/small/Botany/clay/65.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/66.png b/front/public/images/small/Botany/clay/66.png deleted file mode 100644 index 9ad5621f36..0000000000 Binary files a/front/public/images/small/Botany/clay/66.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/67.png b/front/public/images/small/Botany/clay/67.png deleted file mode 100644 index 1cb039dab8..0000000000 Binary files a/front/public/images/small/Botany/clay/67.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/68.png b/front/public/images/small/Botany/clay/68.png deleted file mode 100644 index bf7007c729..0000000000 Binary files a/front/public/images/small/Botany/clay/68.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/69.png b/front/public/images/small/Botany/clay/69.png deleted file mode 100644 index 94fe3271be..0000000000 Binary files a/front/public/images/small/Botany/clay/69.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/7.png b/front/public/images/small/Botany/clay/7.png deleted file mode 100644 index a72eb781c4..0000000000 Binary files a/front/public/images/small/Botany/clay/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/70.png b/front/public/images/small/Botany/clay/70.png deleted file mode 100644 index dd40fefe88..0000000000 Binary files a/front/public/images/small/Botany/clay/70.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/71.png b/front/public/images/small/Botany/clay/71.png deleted file mode 100644 index 581a12f97b..0000000000 Binary files a/front/public/images/small/Botany/clay/71.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/72.png b/front/public/images/small/Botany/clay/72.png deleted file mode 100644 index 66da073d9a..0000000000 Binary files a/front/public/images/small/Botany/clay/72.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/73.png b/front/public/images/small/Botany/clay/73.png deleted file mode 100644 index 52930008d5..0000000000 Binary files a/front/public/images/small/Botany/clay/73.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/74.png b/front/public/images/small/Botany/clay/74.png deleted file mode 100644 index 6d1fc0c906..0000000000 Binary files a/front/public/images/small/Botany/clay/74.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/75.png b/front/public/images/small/Botany/clay/75.png deleted file mode 100644 index 5e8b2071e4..0000000000 Binary files a/front/public/images/small/Botany/clay/75.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/76.png b/front/public/images/small/Botany/clay/76.png deleted file mode 100644 index c27687f447..0000000000 Binary files a/front/public/images/small/Botany/clay/76.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/77.png b/front/public/images/small/Botany/clay/77.png deleted file mode 100644 index e536fa2952..0000000000 Binary files a/front/public/images/small/Botany/clay/77.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/78.png b/front/public/images/small/Botany/clay/78.png deleted file mode 100644 index b49ed4a22a..0000000000 Binary files a/front/public/images/small/Botany/clay/78.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/79.png b/front/public/images/small/Botany/clay/79.png deleted file mode 100644 index 4c3fbdde87..0000000000 Binary files a/front/public/images/small/Botany/clay/79.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/8.png b/front/public/images/small/Botany/clay/8.png deleted file mode 100644 index 1d9e1f5908..0000000000 Binary files a/front/public/images/small/Botany/clay/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/clay/9.png b/front/public/images/small/Botany/clay/9.png deleted file mode 100644 index e97ce7fda8..0000000000 Binary files a/front/public/images/small/Botany/clay/9.png and /dev/null differ diff --git a/front/public/images/small/Botany/database/0.png b/front/public/images/small/Botany/database/0.png deleted file mode 100644 index 3512bb88fb..0000000000 Binary files a/front/public/images/small/Botany/database/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/database/1.png b/front/public/images/small/Botany/database/1.png deleted file mode 100644 index 17f19f8c17..0000000000 Binary files a/front/public/images/small/Botany/database/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/flower/0.png b/front/public/images/small/Botany/flower/0.png deleted file mode 100644 index 9cdf7c5f77..0000000000 Binary files a/front/public/images/small/Botany/flower/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/0.png b/front/public/images/small/Botany/flowerbed/0.png deleted file mode 100644 index 1d7c3e82ff..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/1.png b/front/public/images/small/Botany/flowerbed/1.png deleted file mode 100644 index c74962672e..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/2.png b/front/public/images/small/Botany/flowerbed/2.png deleted file mode 100644 index b882d84b34..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/3.png b/front/public/images/small/Botany/flowerbed/3.png deleted file mode 100644 index 21ecb25d09..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/4.png b/front/public/images/small/Botany/flowerbed/4.png deleted file mode 100644 index 97e1e9d61f..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/5.png b/front/public/images/small/Botany/flowerbed/5.png deleted file mode 100644 index 96a4b3c21d..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/6.png b/front/public/images/small/Botany/flowerbed/6.png deleted file mode 100644 index 215b2d3293..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/7.png b/front/public/images/small/Botany/flowerbed/7.png deleted file mode 100644 index dbcbd7a579..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbed/8.png b/front/public/images/small/Botany/flowerbed/8.png deleted file mode 100644 index 589a11fbc5..0000000000 Binary files a/front/public/images/small/Botany/flowerbed/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/0.png b/front/public/images/small/Botany/flowerbedNoWeed/0.png deleted file mode 100644 index aa9bc41c8d..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/1.png b/front/public/images/small/Botany/flowerbedNoWeed/1.png deleted file mode 100644 index be1a7ce78b..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/2.png b/front/public/images/small/Botany/flowerbedNoWeed/2.png deleted file mode 100644 index cc0cb39795..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/3.png b/front/public/images/small/Botany/flowerbedNoWeed/3.png deleted file mode 100644 index 87e2ad9b4e..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/4.png b/front/public/images/small/Botany/flowerbedNoWeed/4.png deleted file mode 100644 index 784479942c..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/5.png b/front/public/images/small/Botany/flowerbedNoWeed/5.png deleted file mode 100644 index dbbc9d8b67..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/6.png b/front/public/images/small/Botany/flowerbedNoWeed/6.png deleted file mode 100644 index 3362cc7e5e..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/7.png b/front/public/images/small/Botany/flowerbedNoWeed/7.png deleted file mode 100644 index 4481d63162..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/flowerbedNoWeed/8.png b/front/public/images/small/Botany/flowerbedNoWeed/8.png deleted file mode 100644 index 1cb15984f7..0000000000 Binary files a/front/public/images/small/Botany/flowerbedNoWeed/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/0.png b/front/public/images/small/Botany/insulatedTube/0.png deleted file mode 100644 index 734cadbba4..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/1.png b/front/public/images/small/Botany/insulatedTube/1.png deleted file mode 100644 index e975ad8f7d..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/128.png b/front/public/images/small/Botany/insulatedTube/128.png deleted file mode 100644 index 8d6d5f55e4..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/128.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/129.png b/front/public/images/small/Botany/insulatedTube/129.png deleted file mode 100644 index 49d12d434f..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/129.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/130.png b/front/public/images/small/Botany/insulatedTube/130.png deleted file mode 100644 index 6f8d2572d8..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/130.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/131.png b/front/public/images/small/Botany/insulatedTube/131.png deleted file mode 100644 index 12e87b2da3..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/131.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/2.png b/front/public/images/small/Botany/insulatedTube/2.png deleted file mode 100644 index 93899f6b72..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/256.png b/front/public/images/small/Botany/insulatedTube/256.png deleted file mode 100644 index e8da54cf57..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/256.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/257.png b/front/public/images/small/Botany/insulatedTube/257.png deleted file mode 100644 index 51e651732d..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/257.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/258.png b/front/public/images/small/Botany/insulatedTube/258.png deleted file mode 100644 index b259c22411..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/258.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/259.png b/front/public/images/small/Botany/insulatedTube/259.png deleted file mode 100644 index 603743beda..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/259.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/3.png b/front/public/images/small/Botany/insulatedTube/3.png deleted file mode 100644 index fd1e0959e2..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/384.png b/front/public/images/small/Botany/insulatedTube/384.png deleted file mode 100644 index ce8cdc9a41..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/384.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/385.png b/front/public/images/small/Botany/insulatedTube/385.png deleted file mode 100644 index f7565df480..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/385.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/386.png b/front/public/images/small/Botany/insulatedTube/386.png deleted file mode 100644 index 4f9a1f26ba..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/386.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/387.png b/front/public/images/small/Botany/insulatedTube/387.png deleted file mode 100644 index f31197e43d..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/387.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/512.png b/front/public/images/small/Botany/insulatedTube/512.png deleted file mode 100644 index 00c9eb5e5b..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/512.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/513.png b/front/public/images/small/Botany/insulatedTube/513.png deleted file mode 100644 index 854e20fcfd..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/513.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/514.png b/front/public/images/small/Botany/insulatedTube/514.png deleted file mode 100644 index 880ccd403b..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/514.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/515.png b/front/public/images/small/Botany/insulatedTube/515.png deleted file mode 100644 index c1db0bc41a..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/515.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/640.png b/front/public/images/small/Botany/insulatedTube/640.png deleted file mode 100644 index 5374abc3f8..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/640.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/641.png b/front/public/images/small/Botany/insulatedTube/641.png deleted file mode 100644 index 6d3f8c0075..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/641.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/642.png b/front/public/images/small/Botany/insulatedTube/642.png deleted file mode 100644 index 46fe748b29..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/642.png and /dev/null differ diff --git a/front/public/images/small/Botany/insulatedTube/643.png b/front/public/images/small/Botany/insulatedTube/643.png deleted file mode 100644 index 17f747c1b4..0000000000 Binary files a/front/public/images/small/Botany/insulatedTube/643.png and /dev/null differ diff --git a/front/public/images/small/Botany/itemFlower/0.png b/front/public/images/small/Botany/itemFlower/0.png deleted file mode 100644 index 9ca8e8f3d7..0000000000 Binary files a/front/public/images/small/Botany/itemFlower/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/0.png b/front/public/images/small/Botany/loam/0.png deleted file mode 100644 index 8c29023083..0000000000 Binary files a/front/public/images/small/Botany/loam/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/1.png b/front/public/images/small/Botany/loam/1.png deleted file mode 100644 index aa8df0e0a9..0000000000 Binary files a/front/public/images/small/Botany/loam/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/2.png b/front/public/images/small/Botany/loam/2.png deleted file mode 100644 index 660b03ead5..0000000000 Binary files a/front/public/images/small/Botany/loam/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/3.png b/front/public/images/small/Botany/loam/3.png deleted file mode 100644 index 11eafa28d9..0000000000 Binary files a/front/public/images/small/Botany/loam/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/4.png b/front/public/images/small/Botany/loam/4.png deleted file mode 100644 index 899ee9afaf..0000000000 Binary files a/front/public/images/small/Botany/loam/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/5.png b/front/public/images/small/Botany/loam/5.png deleted file mode 100644 index e277c51219..0000000000 Binary files a/front/public/images/small/Botany/loam/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/6.png b/front/public/images/small/Botany/loam/6.png deleted file mode 100644 index f461727bf6..0000000000 Binary files a/front/public/images/small/Botany/loam/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/7.png b/front/public/images/small/Botany/loam/7.png deleted file mode 100644 index 7da452bb7e..0000000000 Binary files a/front/public/images/small/Botany/loam/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/loam/8.png b/front/public/images/small/Botany/loam/8.png deleted file mode 100644 index 0a73411ca3..0000000000 Binary files a/front/public/images/small/Botany/loam/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/0.png b/front/public/images/small/Botany/loamNoWeed/0.png deleted file mode 100644 index 19ce6b83ba..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/1.png b/front/public/images/small/Botany/loamNoWeed/1.png deleted file mode 100644 index 20e02cc603..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/2.png b/front/public/images/small/Botany/loamNoWeed/2.png deleted file mode 100644 index 0324cb0f0a..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/3.png b/front/public/images/small/Botany/loamNoWeed/3.png deleted file mode 100644 index 9d9f1ff4ef..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/4.png b/front/public/images/small/Botany/loamNoWeed/4.png deleted file mode 100644 index cc75300dfe..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/5.png b/front/public/images/small/Botany/loamNoWeed/5.png deleted file mode 100644 index 752a83c168..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/6.png b/front/public/images/small/Botany/loamNoWeed/6.png deleted file mode 100644 index 1c6a024e31..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/7.png b/front/public/images/small/Botany/loamNoWeed/7.png deleted file mode 100644 index 63951059c8..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/loamNoWeed/8.png b/front/public/images/small/Botany/loamNoWeed/8.png deleted file mode 100644 index 021f0d1705..0000000000 Binary files a/front/public/images/small/Botany/loamNoWeed/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/0.png b/front/public/images/small/Botany/misc/0.png deleted file mode 100644 index c6f95909e4..0000000000 Binary files a/front/public/images/small/Botany/misc/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/1.png b/front/public/images/small/Botany/misc/1.png deleted file mode 100644 index 9e86c9353f..0000000000 Binary files a/front/public/images/small/Botany/misc/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/2.png b/front/public/images/small/Botany/misc/2.png deleted file mode 100644 index 2754062ac9..0000000000 Binary files a/front/public/images/small/Botany/misc/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/3.png b/front/public/images/small/Botany/misc/3.png deleted file mode 100644 index 80c9d4c395..0000000000 Binary files a/front/public/images/small/Botany/misc/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/4.png b/front/public/images/small/Botany/misc/4.png deleted file mode 100644 index ad99c55a14..0000000000 Binary files a/front/public/images/small/Botany/misc/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/5.png b/front/public/images/small/Botany/misc/5.png deleted file mode 100644 index 5eb59d0dba..0000000000 Binary files a/front/public/images/small/Botany/misc/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/6.png b/front/public/images/small/Botany/misc/6.png deleted file mode 100644 index 706fc62ecd..0000000000 Binary files a/front/public/images/small/Botany/misc/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/misc/7.png b/front/public/images/small/Botany/misc/7.png deleted file mode 100644 index 82ab827950..0000000000 Binary files a/front/public/images/small/Botany/misc/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/0.png b/front/public/images/small/Botany/pigment/0.png deleted file mode 100644 index 112af37eee..0000000000 Binary files a/front/public/images/small/Botany/pigment/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/1.png b/front/public/images/small/Botany/pigment/1.png deleted file mode 100644 index d6c0e2f190..0000000000 Binary files a/front/public/images/small/Botany/pigment/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/10.png b/front/public/images/small/Botany/pigment/10.png deleted file mode 100644 index c95e221f32..0000000000 Binary files a/front/public/images/small/Botany/pigment/10.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/11.png b/front/public/images/small/Botany/pigment/11.png deleted file mode 100644 index ca69818a74..0000000000 Binary files a/front/public/images/small/Botany/pigment/11.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/12.png b/front/public/images/small/Botany/pigment/12.png deleted file mode 100644 index 2a1b4c8b32..0000000000 Binary files a/front/public/images/small/Botany/pigment/12.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/13.png b/front/public/images/small/Botany/pigment/13.png deleted file mode 100644 index e56477799f..0000000000 Binary files a/front/public/images/small/Botany/pigment/13.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/14.png b/front/public/images/small/Botany/pigment/14.png deleted file mode 100644 index cd0496c804..0000000000 Binary files a/front/public/images/small/Botany/pigment/14.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/15.png b/front/public/images/small/Botany/pigment/15.png deleted file mode 100644 index b589d6e017..0000000000 Binary files a/front/public/images/small/Botany/pigment/15.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/16.png b/front/public/images/small/Botany/pigment/16.png deleted file mode 100644 index 1ac6b6bb26..0000000000 Binary files a/front/public/images/small/Botany/pigment/16.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/17.png b/front/public/images/small/Botany/pigment/17.png deleted file mode 100644 index 10cdb68a6b..0000000000 Binary files a/front/public/images/small/Botany/pigment/17.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/18.png b/front/public/images/small/Botany/pigment/18.png deleted file mode 100644 index 0880299152..0000000000 Binary files a/front/public/images/small/Botany/pigment/18.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/19.png b/front/public/images/small/Botany/pigment/19.png deleted file mode 100644 index bac73e3287..0000000000 Binary files a/front/public/images/small/Botany/pigment/19.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/2.png b/front/public/images/small/Botany/pigment/2.png deleted file mode 100644 index 36a1c17277..0000000000 Binary files a/front/public/images/small/Botany/pigment/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/20.png b/front/public/images/small/Botany/pigment/20.png deleted file mode 100644 index 022d338bb5..0000000000 Binary files a/front/public/images/small/Botany/pigment/20.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/21.png b/front/public/images/small/Botany/pigment/21.png deleted file mode 100644 index ebb1609234..0000000000 Binary files a/front/public/images/small/Botany/pigment/21.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/22.png b/front/public/images/small/Botany/pigment/22.png deleted file mode 100644 index 956b06afa7..0000000000 Binary files a/front/public/images/small/Botany/pigment/22.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/23.png b/front/public/images/small/Botany/pigment/23.png deleted file mode 100644 index c128f33a8b..0000000000 Binary files a/front/public/images/small/Botany/pigment/23.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/24.png b/front/public/images/small/Botany/pigment/24.png deleted file mode 100644 index 81e44ed7b9..0000000000 Binary files a/front/public/images/small/Botany/pigment/24.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/25.png b/front/public/images/small/Botany/pigment/25.png deleted file mode 100644 index 1f64f084f4..0000000000 Binary files a/front/public/images/small/Botany/pigment/25.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/26.png b/front/public/images/small/Botany/pigment/26.png deleted file mode 100644 index b291edd6d9..0000000000 Binary files a/front/public/images/small/Botany/pigment/26.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/27.png b/front/public/images/small/Botany/pigment/27.png deleted file mode 100644 index f166049b3d..0000000000 Binary files a/front/public/images/small/Botany/pigment/27.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/28.png b/front/public/images/small/Botany/pigment/28.png deleted file mode 100644 index 70f3a56c11..0000000000 Binary files a/front/public/images/small/Botany/pigment/28.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/29.png b/front/public/images/small/Botany/pigment/29.png deleted file mode 100644 index 20f4e5b1a9..0000000000 Binary files a/front/public/images/small/Botany/pigment/29.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/3.png b/front/public/images/small/Botany/pigment/3.png deleted file mode 100644 index 3faef9a874..0000000000 Binary files a/front/public/images/small/Botany/pigment/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/30.png b/front/public/images/small/Botany/pigment/30.png deleted file mode 100644 index 67941d8aad..0000000000 Binary files a/front/public/images/small/Botany/pigment/30.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/31.png b/front/public/images/small/Botany/pigment/31.png deleted file mode 100644 index 4d16bedec1..0000000000 Binary files a/front/public/images/small/Botany/pigment/31.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/32.png b/front/public/images/small/Botany/pigment/32.png deleted file mode 100644 index 0f41e5e4cc..0000000000 Binary files a/front/public/images/small/Botany/pigment/32.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/33.png b/front/public/images/small/Botany/pigment/33.png deleted file mode 100644 index 7ca78e289a..0000000000 Binary files a/front/public/images/small/Botany/pigment/33.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/34.png b/front/public/images/small/Botany/pigment/34.png deleted file mode 100644 index 780aba2e0c..0000000000 Binary files a/front/public/images/small/Botany/pigment/34.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/35.png b/front/public/images/small/Botany/pigment/35.png deleted file mode 100644 index f9829a7ab4..0000000000 Binary files a/front/public/images/small/Botany/pigment/35.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/36.png b/front/public/images/small/Botany/pigment/36.png deleted file mode 100644 index 278f63cc33..0000000000 Binary files a/front/public/images/small/Botany/pigment/36.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/37.png b/front/public/images/small/Botany/pigment/37.png deleted file mode 100644 index 2ad2c13550..0000000000 Binary files a/front/public/images/small/Botany/pigment/37.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/38.png b/front/public/images/small/Botany/pigment/38.png deleted file mode 100644 index dbd9c78b56..0000000000 Binary files a/front/public/images/small/Botany/pigment/38.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/39.png b/front/public/images/small/Botany/pigment/39.png deleted file mode 100644 index 8741abac3b..0000000000 Binary files a/front/public/images/small/Botany/pigment/39.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/4.png b/front/public/images/small/Botany/pigment/4.png deleted file mode 100644 index b2dfabfb1b..0000000000 Binary files a/front/public/images/small/Botany/pigment/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/40.png b/front/public/images/small/Botany/pigment/40.png deleted file mode 100644 index 9539dd05d8..0000000000 Binary files a/front/public/images/small/Botany/pigment/40.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/41.png b/front/public/images/small/Botany/pigment/41.png deleted file mode 100644 index 7ded82d47c..0000000000 Binary files a/front/public/images/small/Botany/pigment/41.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/42.png b/front/public/images/small/Botany/pigment/42.png deleted file mode 100644 index a0074dab24..0000000000 Binary files a/front/public/images/small/Botany/pigment/42.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/43.png b/front/public/images/small/Botany/pigment/43.png deleted file mode 100644 index b806acb782..0000000000 Binary files a/front/public/images/small/Botany/pigment/43.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/44.png b/front/public/images/small/Botany/pigment/44.png deleted file mode 100644 index 11c5d6cd7b..0000000000 Binary files a/front/public/images/small/Botany/pigment/44.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/45.png b/front/public/images/small/Botany/pigment/45.png deleted file mode 100644 index 0c1ea0691c..0000000000 Binary files a/front/public/images/small/Botany/pigment/45.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/46.png b/front/public/images/small/Botany/pigment/46.png deleted file mode 100644 index b272dd286b..0000000000 Binary files a/front/public/images/small/Botany/pigment/46.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/47.png b/front/public/images/small/Botany/pigment/47.png deleted file mode 100644 index b4a2ac08a8..0000000000 Binary files a/front/public/images/small/Botany/pigment/47.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/48.png b/front/public/images/small/Botany/pigment/48.png deleted file mode 100644 index 3f282e191c..0000000000 Binary files a/front/public/images/small/Botany/pigment/48.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/49.png b/front/public/images/small/Botany/pigment/49.png deleted file mode 100644 index b537bab1e4..0000000000 Binary files a/front/public/images/small/Botany/pigment/49.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/5.png b/front/public/images/small/Botany/pigment/5.png deleted file mode 100644 index d82299674d..0000000000 Binary files a/front/public/images/small/Botany/pigment/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/50.png b/front/public/images/small/Botany/pigment/50.png deleted file mode 100644 index 0a2999f56f..0000000000 Binary files a/front/public/images/small/Botany/pigment/50.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/51.png b/front/public/images/small/Botany/pigment/51.png deleted file mode 100644 index 4857241848..0000000000 Binary files a/front/public/images/small/Botany/pigment/51.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/52.png b/front/public/images/small/Botany/pigment/52.png deleted file mode 100644 index 45be23b2f6..0000000000 Binary files a/front/public/images/small/Botany/pigment/52.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/53.png b/front/public/images/small/Botany/pigment/53.png deleted file mode 100644 index 547f27d430..0000000000 Binary files a/front/public/images/small/Botany/pigment/53.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/54.png b/front/public/images/small/Botany/pigment/54.png deleted file mode 100644 index 3d8108cb75..0000000000 Binary files a/front/public/images/small/Botany/pigment/54.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/55.png b/front/public/images/small/Botany/pigment/55.png deleted file mode 100644 index 7912df0b2d..0000000000 Binary files a/front/public/images/small/Botany/pigment/55.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/56.png b/front/public/images/small/Botany/pigment/56.png deleted file mode 100644 index 400a38787d..0000000000 Binary files a/front/public/images/small/Botany/pigment/56.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/57.png b/front/public/images/small/Botany/pigment/57.png deleted file mode 100644 index 9c5e1cc14a..0000000000 Binary files a/front/public/images/small/Botany/pigment/57.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/58.png b/front/public/images/small/Botany/pigment/58.png deleted file mode 100644 index 5204d0417c..0000000000 Binary files a/front/public/images/small/Botany/pigment/58.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/59.png b/front/public/images/small/Botany/pigment/59.png deleted file mode 100644 index 3939ae293b..0000000000 Binary files a/front/public/images/small/Botany/pigment/59.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/6.png b/front/public/images/small/Botany/pigment/6.png deleted file mode 100644 index 0472d5ceb5..0000000000 Binary files a/front/public/images/small/Botany/pigment/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/60.png b/front/public/images/small/Botany/pigment/60.png deleted file mode 100644 index f83eccbea8..0000000000 Binary files a/front/public/images/small/Botany/pigment/60.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/61.png b/front/public/images/small/Botany/pigment/61.png deleted file mode 100644 index f4e26918f1..0000000000 Binary files a/front/public/images/small/Botany/pigment/61.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/62.png b/front/public/images/small/Botany/pigment/62.png deleted file mode 100644 index c950806ec7..0000000000 Binary files a/front/public/images/small/Botany/pigment/62.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/63.png b/front/public/images/small/Botany/pigment/63.png deleted file mode 100644 index e677704d19..0000000000 Binary files a/front/public/images/small/Botany/pigment/63.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/64.png b/front/public/images/small/Botany/pigment/64.png deleted file mode 100644 index cc7e981c5f..0000000000 Binary files a/front/public/images/small/Botany/pigment/64.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/65.png b/front/public/images/small/Botany/pigment/65.png deleted file mode 100644 index 195f19c93d..0000000000 Binary files a/front/public/images/small/Botany/pigment/65.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/66.png b/front/public/images/small/Botany/pigment/66.png deleted file mode 100644 index 1b21a04e0e..0000000000 Binary files a/front/public/images/small/Botany/pigment/66.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/67.png b/front/public/images/small/Botany/pigment/67.png deleted file mode 100644 index 5d0394b6ac..0000000000 Binary files a/front/public/images/small/Botany/pigment/67.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/68.png b/front/public/images/small/Botany/pigment/68.png deleted file mode 100644 index 14a557a3fa..0000000000 Binary files a/front/public/images/small/Botany/pigment/68.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/69.png b/front/public/images/small/Botany/pigment/69.png deleted file mode 100644 index 94a8e6726f..0000000000 Binary files a/front/public/images/small/Botany/pigment/69.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/7.png b/front/public/images/small/Botany/pigment/7.png deleted file mode 100644 index 72bfbca92a..0000000000 Binary files a/front/public/images/small/Botany/pigment/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/70.png b/front/public/images/small/Botany/pigment/70.png deleted file mode 100644 index 5cdab895dd..0000000000 Binary files a/front/public/images/small/Botany/pigment/70.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/71.png b/front/public/images/small/Botany/pigment/71.png deleted file mode 100644 index de3d5d7f40..0000000000 Binary files a/front/public/images/small/Botany/pigment/71.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/72.png b/front/public/images/small/Botany/pigment/72.png deleted file mode 100644 index dedcddd551..0000000000 Binary files a/front/public/images/small/Botany/pigment/72.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/73.png b/front/public/images/small/Botany/pigment/73.png deleted file mode 100644 index 010482bd53..0000000000 Binary files a/front/public/images/small/Botany/pigment/73.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/74.png b/front/public/images/small/Botany/pigment/74.png deleted file mode 100644 index 41ada7a7bc..0000000000 Binary files a/front/public/images/small/Botany/pigment/74.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/75.png b/front/public/images/small/Botany/pigment/75.png deleted file mode 100644 index c203a2ecc5..0000000000 Binary files a/front/public/images/small/Botany/pigment/75.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/76.png b/front/public/images/small/Botany/pigment/76.png deleted file mode 100644 index 73ee7b5184..0000000000 Binary files a/front/public/images/small/Botany/pigment/76.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/77.png b/front/public/images/small/Botany/pigment/77.png deleted file mode 100644 index f574f07d2e..0000000000 Binary files a/front/public/images/small/Botany/pigment/77.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/78.png b/front/public/images/small/Botany/pigment/78.png deleted file mode 100644 index ee61b891d8..0000000000 Binary files a/front/public/images/small/Botany/pigment/78.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/79.png b/front/public/images/small/Botany/pigment/79.png deleted file mode 100644 index c3c328f7da..0000000000 Binary files a/front/public/images/small/Botany/pigment/79.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/8.png b/front/public/images/small/Botany/pigment/8.png deleted file mode 100644 index 0cc11e5c6e..0000000000 Binary files a/front/public/images/small/Botany/pigment/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/pigment/9.png b/front/public/images/small/Botany/pigment/9.png deleted file mode 100644 index ca98852bd3..0000000000 Binary files a/front/public/images/small/Botany/pigment/9.png and /dev/null differ diff --git a/front/public/images/small/Botany/plant/0.png b/front/public/images/small/Botany/plant/0.png deleted file mode 100644 index 3a6faae531..0000000000 Binary files a/front/public/images/small/Botany/plant/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/plant/1.png b/front/public/images/small/Botany/plant/1.png deleted file mode 100644 index 2098d24edb..0000000000 Binary files a/front/public/images/small/Botany/plant/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/plant/2.png b/front/public/images/small/Botany/plant/2.png deleted file mode 100644 index de06956782..0000000000 Binary files a/front/public/images/small/Botany/plant/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/plant/3.png b/front/public/images/small/Botany/plant/3.png deleted file mode 100644 index 3c43fcd2ac..0000000000 Binary files a/front/public/images/small/Botany/plant/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/plant/4.png b/front/public/images/small/Botany/plant/4.png deleted file mode 100644 index 1d17825fb5..0000000000 Binary files a/front/public/images/small/Botany/plant/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/pollen/0.png b/front/public/images/small/Botany/pollen/0.png deleted file mode 100644 index ad789e0043..0000000000 Binary files a/front/public/images/small/Botany/pollen/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/seed/0.png b/front/public/images/small/Botany/seed/0.png deleted file mode 100644 index e11bf5962f..0000000000 Binary files a/front/public/images/small/Botany/seed/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/0.png b/front/public/images/small/Botany/soil/0.png deleted file mode 100644 index 859cc606fa..0000000000 Binary files a/front/public/images/small/Botany/soil/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/1.png b/front/public/images/small/Botany/soil/1.png deleted file mode 100644 index ecdee0f7bb..0000000000 Binary files a/front/public/images/small/Botany/soil/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/2.png b/front/public/images/small/Botany/soil/2.png deleted file mode 100644 index 01cfeed747..0000000000 Binary files a/front/public/images/small/Botany/soil/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/3.png b/front/public/images/small/Botany/soil/3.png deleted file mode 100644 index f0e0dae7c7..0000000000 Binary files a/front/public/images/small/Botany/soil/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/4.png b/front/public/images/small/Botany/soil/4.png deleted file mode 100644 index fc3c11e078..0000000000 Binary files a/front/public/images/small/Botany/soil/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/5.png b/front/public/images/small/Botany/soil/5.png deleted file mode 100644 index 26b15d8307..0000000000 Binary files a/front/public/images/small/Botany/soil/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/6.png b/front/public/images/small/Botany/soil/6.png deleted file mode 100644 index 2e371c05d8..0000000000 Binary files a/front/public/images/small/Botany/soil/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/7.png b/front/public/images/small/Botany/soil/7.png deleted file mode 100644 index 0768f0d170..0000000000 Binary files a/front/public/images/small/Botany/soil/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/soil/8.png b/front/public/images/small/Botany/soil/8.png deleted file mode 100644 index f99709eabb..0000000000 Binary files a/front/public/images/small/Botany/soil/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilMeter/0.png b/front/public/images/small/Botany/soilMeter/0.png deleted file mode 100644 index ed0bc75bf7..0000000000 Binary files a/front/public/images/small/Botany/soilMeter/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/0.png b/front/public/images/small/Botany/soilNoWeed/0.png deleted file mode 100644 index 2690e76fb8..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/1.png b/front/public/images/small/Botany/soilNoWeed/1.png deleted file mode 100644 index a1dcd08a93..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/2.png b/front/public/images/small/Botany/soilNoWeed/2.png deleted file mode 100644 index 84608454fb..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/3.png b/front/public/images/small/Botany/soilNoWeed/3.png deleted file mode 100644 index ff91668852..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/4.png b/front/public/images/small/Botany/soilNoWeed/4.png deleted file mode 100644 index 1de1356336..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/5.png b/front/public/images/small/Botany/soilNoWeed/5.png deleted file mode 100644 index a4ab0cdc29..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/6.png b/front/public/images/small/Botany/soilNoWeed/6.png deleted file mode 100644 index 79c463c5ea..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/7.png b/front/public/images/small/Botany/soilNoWeed/7.png deleted file mode 100644 index 50469b56dc..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/soilNoWeed/8.png b/front/public/images/small/Botany/soilNoWeed/8.png deleted file mode 100644 index c33b110f91..0000000000 Binary files a/front/public/images/small/Botany/soilNoWeed/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/0.png b/front/public/images/small/Botany/stained/0.png deleted file mode 100644 index 24aeddc860..0000000000 Binary files a/front/public/images/small/Botany/stained/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/1.png b/front/public/images/small/Botany/stained/1.png deleted file mode 100644 index ebccc80d91..0000000000 Binary files a/front/public/images/small/Botany/stained/1.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/10.png b/front/public/images/small/Botany/stained/10.png deleted file mode 100644 index a5088450b7..0000000000 Binary files a/front/public/images/small/Botany/stained/10.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/11.png b/front/public/images/small/Botany/stained/11.png deleted file mode 100644 index f8fbc2f996..0000000000 Binary files a/front/public/images/small/Botany/stained/11.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/12.png b/front/public/images/small/Botany/stained/12.png deleted file mode 100644 index 6ccda2ad48..0000000000 Binary files a/front/public/images/small/Botany/stained/12.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/13.png b/front/public/images/small/Botany/stained/13.png deleted file mode 100644 index 389056cba4..0000000000 Binary files a/front/public/images/small/Botany/stained/13.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/14.png b/front/public/images/small/Botany/stained/14.png deleted file mode 100644 index faa9ba8776..0000000000 Binary files a/front/public/images/small/Botany/stained/14.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/15.png b/front/public/images/small/Botany/stained/15.png deleted file mode 100644 index 382b6eccc2..0000000000 Binary files a/front/public/images/small/Botany/stained/15.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/16.png b/front/public/images/small/Botany/stained/16.png deleted file mode 100644 index 66c8569f44..0000000000 Binary files a/front/public/images/small/Botany/stained/16.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/17.png b/front/public/images/small/Botany/stained/17.png deleted file mode 100644 index 45913e7ee5..0000000000 Binary files a/front/public/images/small/Botany/stained/17.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/18.png b/front/public/images/small/Botany/stained/18.png deleted file mode 100644 index 14b9d60c7b..0000000000 Binary files a/front/public/images/small/Botany/stained/18.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/19.png b/front/public/images/small/Botany/stained/19.png deleted file mode 100644 index 51b0cbab99..0000000000 Binary files a/front/public/images/small/Botany/stained/19.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/2.png b/front/public/images/small/Botany/stained/2.png deleted file mode 100644 index 93f35945c0..0000000000 Binary files a/front/public/images/small/Botany/stained/2.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/20.png b/front/public/images/small/Botany/stained/20.png deleted file mode 100644 index 558da7a5a6..0000000000 Binary files a/front/public/images/small/Botany/stained/20.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/21.png b/front/public/images/small/Botany/stained/21.png deleted file mode 100644 index 9e8c9bebff..0000000000 Binary files a/front/public/images/small/Botany/stained/21.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/22.png b/front/public/images/small/Botany/stained/22.png deleted file mode 100644 index e34f798af6..0000000000 Binary files a/front/public/images/small/Botany/stained/22.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/23.png b/front/public/images/small/Botany/stained/23.png deleted file mode 100644 index 2532530046..0000000000 Binary files a/front/public/images/small/Botany/stained/23.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/24.png b/front/public/images/small/Botany/stained/24.png deleted file mode 100644 index c92961fc54..0000000000 Binary files a/front/public/images/small/Botany/stained/24.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/25.png b/front/public/images/small/Botany/stained/25.png deleted file mode 100644 index 41a7edc92c..0000000000 Binary files a/front/public/images/small/Botany/stained/25.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/26.png b/front/public/images/small/Botany/stained/26.png deleted file mode 100644 index c3ea9ba3c3..0000000000 Binary files a/front/public/images/small/Botany/stained/26.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/27.png b/front/public/images/small/Botany/stained/27.png deleted file mode 100644 index 6cd32dcae1..0000000000 Binary files a/front/public/images/small/Botany/stained/27.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/28.png b/front/public/images/small/Botany/stained/28.png deleted file mode 100644 index 90c39fba1e..0000000000 Binary files a/front/public/images/small/Botany/stained/28.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/29.png b/front/public/images/small/Botany/stained/29.png deleted file mode 100644 index 8b4b292db4..0000000000 Binary files a/front/public/images/small/Botany/stained/29.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/3.png b/front/public/images/small/Botany/stained/3.png deleted file mode 100644 index a56e0c9e90..0000000000 Binary files a/front/public/images/small/Botany/stained/3.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/30.png b/front/public/images/small/Botany/stained/30.png deleted file mode 100644 index 2960ad9b2a..0000000000 Binary files a/front/public/images/small/Botany/stained/30.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/31.png b/front/public/images/small/Botany/stained/31.png deleted file mode 100644 index 5dec0d8cff..0000000000 Binary files a/front/public/images/small/Botany/stained/31.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/32.png b/front/public/images/small/Botany/stained/32.png deleted file mode 100644 index 57d7ec6bb9..0000000000 Binary files a/front/public/images/small/Botany/stained/32.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/33.png b/front/public/images/small/Botany/stained/33.png deleted file mode 100644 index 4dc4d87315..0000000000 Binary files a/front/public/images/small/Botany/stained/33.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/34.png b/front/public/images/small/Botany/stained/34.png deleted file mode 100644 index 1774eee070..0000000000 Binary files a/front/public/images/small/Botany/stained/34.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/35.png b/front/public/images/small/Botany/stained/35.png deleted file mode 100644 index 13475a076e..0000000000 Binary files a/front/public/images/small/Botany/stained/35.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/36.png b/front/public/images/small/Botany/stained/36.png deleted file mode 100644 index 504fcaec8e..0000000000 Binary files a/front/public/images/small/Botany/stained/36.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/37.png b/front/public/images/small/Botany/stained/37.png deleted file mode 100644 index 3770ea2e54..0000000000 Binary files a/front/public/images/small/Botany/stained/37.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/38.png b/front/public/images/small/Botany/stained/38.png deleted file mode 100644 index 98fd6fd841..0000000000 Binary files a/front/public/images/small/Botany/stained/38.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/39.png b/front/public/images/small/Botany/stained/39.png deleted file mode 100644 index 94a77ecab2..0000000000 Binary files a/front/public/images/small/Botany/stained/39.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/4.png b/front/public/images/small/Botany/stained/4.png deleted file mode 100644 index a071359eaa..0000000000 Binary files a/front/public/images/small/Botany/stained/4.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/40.png b/front/public/images/small/Botany/stained/40.png deleted file mode 100644 index acb150bb09..0000000000 Binary files a/front/public/images/small/Botany/stained/40.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/41.png b/front/public/images/small/Botany/stained/41.png deleted file mode 100644 index 38f79e1b24..0000000000 Binary files a/front/public/images/small/Botany/stained/41.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/42.png b/front/public/images/small/Botany/stained/42.png deleted file mode 100644 index 469e07d9f1..0000000000 Binary files a/front/public/images/small/Botany/stained/42.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/43.png b/front/public/images/small/Botany/stained/43.png deleted file mode 100644 index 2fdcb015eb..0000000000 Binary files a/front/public/images/small/Botany/stained/43.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/44.png b/front/public/images/small/Botany/stained/44.png deleted file mode 100644 index 190b9b65fc..0000000000 Binary files a/front/public/images/small/Botany/stained/44.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/45.png b/front/public/images/small/Botany/stained/45.png deleted file mode 100644 index e4579d918a..0000000000 Binary files a/front/public/images/small/Botany/stained/45.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/46.png b/front/public/images/small/Botany/stained/46.png deleted file mode 100644 index d5e5e1d2bd..0000000000 Binary files a/front/public/images/small/Botany/stained/46.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/47.png b/front/public/images/small/Botany/stained/47.png deleted file mode 100644 index b0d6bcfc48..0000000000 Binary files a/front/public/images/small/Botany/stained/47.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/48.png b/front/public/images/small/Botany/stained/48.png deleted file mode 100644 index 0b423a3f79..0000000000 Binary files a/front/public/images/small/Botany/stained/48.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/49.png b/front/public/images/small/Botany/stained/49.png deleted file mode 100644 index e629d2cd08..0000000000 Binary files a/front/public/images/small/Botany/stained/49.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/5.png b/front/public/images/small/Botany/stained/5.png deleted file mode 100644 index 3210128d2e..0000000000 Binary files a/front/public/images/small/Botany/stained/5.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/50.png b/front/public/images/small/Botany/stained/50.png deleted file mode 100644 index 496a1e771e..0000000000 Binary files a/front/public/images/small/Botany/stained/50.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/51.png b/front/public/images/small/Botany/stained/51.png deleted file mode 100644 index 6a26b3e0cf..0000000000 Binary files a/front/public/images/small/Botany/stained/51.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/52.png b/front/public/images/small/Botany/stained/52.png deleted file mode 100644 index f099962e3e..0000000000 Binary files a/front/public/images/small/Botany/stained/52.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/53.png b/front/public/images/small/Botany/stained/53.png deleted file mode 100644 index d1f3f55864..0000000000 Binary files a/front/public/images/small/Botany/stained/53.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/54.png b/front/public/images/small/Botany/stained/54.png deleted file mode 100644 index 4c53337a1a..0000000000 Binary files a/front/public/images/small/Botany/stained/54.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/55.png b/front/public/images/small/Botany/stained/55.png deleted file mode 100644 index 1f75356c1c..0000000000 Binary files a/front/public/images/small/Botany/stained/55.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/56.png b/front/public/images/small/Botany/stained/56.png deleted file mode 100644 index a6b14543fc..0000000000 Binary files a/front/public/images/small/Botany/stained/56.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/57.png b/front/public/images/small/Botany/stained/57.png deleted file mode 100644 index 99117867bc..0000000000 Binary files a/front/public/images/small/Botany/stained/57.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/58.png b/front/public/images/small/Botany/stained/58.png deleted file mode 100644 index bb5a7c82b8..0000000000 Binary files a/front/public/images/small/Botany/stained/58.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/59.png b/front/public/images/small/Botany/stained/59.png deleted file mode 100644 index b02b8e8b49..0000000000 Binary files a/front/public/images/small/Botany/stained/59.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/6.png b/front/public/images/small/Botany/stained/6.png deleted file mode 100644 index 845a53a96b..0000000000 Binary files a/front/public/images/small/Botany/stained/6.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/60.png b/front/public/images/small/Botany/stained/60.png deleted file mode 100644 index e5073939c6..0000000000 Binary files a/front/public/images/small/Botany/stained/60.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/61.png b/front/public/images/small/Botany/stained/61.png deleted file mode 100644 index d30ad5ce11..0000000000 Binary files a/front/public/images/small/Botany/stained/61.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/62.png b/front/public/images/small/Botany/stained/62.png deleted file mode 100644 index d342acf1a5..0000000000 Binary files a/front/public/images/small/Botany/stained/62.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/63.png b/front/public/images/small/Botany/stained/63.png deleted file mode 100644 index fdb22a6812..0000000000 Binary files a/front/public/images/small/Botany/stained/63.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/64.png b/front/public/images/small/Botany/stained/64.png deleted file mode 100644 index 38574762c2..0000000000 Binary files a/front/public/images/small/Botany/stained/64.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/65.png b/front/public/images/small/Botany/stained/65.png deleted file mode 100644 index 5bdba35773..0000000000 Binary files a/front/public/images/small/Botany/stained/65.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/66.png b/front/public/images/small/Botany/stained/66.png deleted file mode 100644 index dea7cab1ca..0000000000 Binary files a/front/public/images/small/Botany/stained/66.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/67.png b/front/public/images/small/Botany/stained/67.png deleted file mode 100644 index 0923594e9c..0000000000 Binary files a/front/public/images/small/Botany/stained/67.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/68.png b/front/public/images/small/Botany/stained/68.png deleted file mode 100644 index 243f8914d9..0000000000 Binary files a/front/public/images/small/Botany/stained/68.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/69.png b/front/public/images/small/Botany/stained/69.png deleted file mode 100644 index 19de53bd45..0000000000 Binary files a/front/public/images/small/Botany/stained/69.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/7.png b/front/public/images/small/Botany/stained/7.png deleted file mode 100644 index a221038178..0000000000 Binary files a/front/public/images/small/Botany/stained/7.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/70.png b/front/public/images/small/Botany/stained/70.png deleted file mode 100644 index 21d20b0ee4..0000000000 Binary files a/front/public/images/small/Botany/stained/70.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/71.png b/front/public/images/small/Botany/stained/71.png deleted file mode 100644 index 4fb094142b..0000000000 Binary files a/front/public/images/small/Botany/stained/71.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/72.png b/front/public/images/small/Botany/stained/72.png deleted file mode 100644 index 95bf2b4eb4..0000000000 Binary files a/front/public/images/small/Botany/stained/72.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/73.png b/front/public/images/small/Botany/stained/73.png deleted file mode 100644 index 05934155bf..0000000000 Binary files a/front/public/images/small/Botany/stained/73.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/74.png b/front/public/images/small/Botany/stained/74.png deleted file mode 100644 index 44a58c6c58..0000000000 Binary files a/front/public/images/small/Botany/stained/74.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/75.png b/front/public/images/small/Botany/stained/75.png deleted file mode 100644 index 74cf0834b8..0000000000 Binary files a/front/public/images/small/Botany/stained/75.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/76.png b/front/public/images/small/Botany/stained/76.png deleted file mode 100644 index ee3b0066fe..0000000000 Binary files a/front/public/images/small/Botany/stained/76.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/77.png b/front/public/images/small/Botany/stained/77.png deleted file mode 100644 index fbefd60c74..0000000000 Binary files a/front/public/images/small/Botany/stained/77.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/78.png b/front/public/images/small/Botany/stained/78.png deleted file mode 100644 index fa1b00bd76..0000000000 Binary files a/front/public/images/small/Botany/stained/78.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/79.png b/front/public/images/small/Botany/stained/79.png deleted file mode 100644 index 301685888b..0000000000 Binary files a/front/public/images/small/Botany/stained/79.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/8.png b/front/public/images/small/Botany/stained/8.png deleted file mode 100644 index 9e0ea1df27..0000000000 Binary files a/front/public/images/small/Botany/stained/8.png and /dev/null differ diff --git a/front/public/images/small/Botany/stained/9.png b/front/public/images/small/Botany/stained/9.png deleted file mode 100644 index eb4ede1b61..0000000000 Binary files a/front/public/images/small/Botany/stained/9.png and /dev/null differ diff --git a/front/public/images/small/Botany/trowelDiamond/0.png b/front/public/images/small/Botany/trowelDiamond/0.png deleted file mode 100644 index d4cb0f274f..0000000000 Binary files a/front/public/images/small/Botany/trowelDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/trowelGold/0.png b/front/public/images/small/Botany/trowelGold/0.png deleted file mode 100644 index 38decc45cc..0000000000 Binary files a/front/public/images/small/Botany/trowelGold/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/trowelIron/0.png b/front/public/images/small/Botany/trowelIron/0.png deleted file mode 100644 index 0f3a3fd995..0000000000 Binary files a/front/public/images/small/Botany/trowelIron/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/trowelStone/0.png b/front/public/images/small/Botany/trowelStone/0.png deleted file mode 100644 index 359b7c4272..0000000000 Binary files a/front/public/images/small/Botany/trowelStone/0.png and /dev/null differ diff --git a/front/public/images/small/Botany/trowelWood/0.png b/front/public/images/small/Botany/trowelWood/0.png deleted file mode 100644 index 1ed2e541a9..0000000000 Binary files a/front/public/images/small/Botany/trowelWood/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/architectBlock/0.png b/front/public/images/small/BuildCraft_Builders/architectBlock/0.png deleted file mode 100644 index e91d81ebf4..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/architectBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/blueprintItem/0.png b/front/public/images/small/BuildCraft_Builders/blueprintItem/0.png deleted file mode 100644 index 2650bb7762..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/blueprintItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/builderBlock/0.png b/front/public/images/small/BuildCraft_Builders/builderBlock/0.png deleted file mode 100644 index 4f15b560eb..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/builderBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/constructionMarkerBlock/0.png b/front/public/images/small/BuildCraft_Builders/constructionMarkerBlock/0.png deleted file mode 100644 index 5826f8447c..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/constructionMarkerBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/fillerBlock/0.png b/front/public/images/small/BuildCraft_Builders/fillerBlock/0.png deleted file mode 100644 index d497ccc0f8..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/fillerBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/frameBlock/0.png b/front/public/images/small/BuildCraft_Builders/frameBlock/0.png deleted file mode 100644 index 1528c4bbdf..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/frameBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/libraryBlock/0.png b/front/public/images/small/BuildCraft_Builders/libraryBlock/0.png deleted file mode 100644 index 29e96d885b..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/libraryBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/machineBlock/0.png b/front/public/images/small/BuildCraft_Builders/machineBlock/0.png deleted file mode 100644 index fad59d4341..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/machineBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Builders/templateItem/0.png b/front/public/images/small/BuildCraft_Builders/templateItem/0.png deleted file mode 100644 index 63fbc53cd8..0000000000 Binary files a/front/public/images/small/BuildCraft_Builders/templateItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Compat/item.buildcraftPipe.pipeitemspropolis/0.png b/front/public/images/small/BuildCraft_Compat/item.buildcraftPipe.pipeitemspropolis/0.png deleted file mode 100644 index 5962e0051c..0000000000 Binary files a/front/public/images/small/BuildCraft_Compat/item.buildcraftPipe.pipeitemspropolis/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/buildToolBlock/0.png b/front/public/images/small/BuildCraft_Core/buildToolBlock/0.png deleted file mode 100644 index ca3de16369..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/buildToolBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/debugger/0.png b/front/public/images/small/BuildCraft_Core/debugger/0.png deleted file mode 100644 index 432fe60458..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/debugger/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/diamondGearItem/0.png b/front/public/images/small/BuildCraft_Core/diamondGearItem/0.png deleted file mode 100644 index b6f21045c6..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/diamondGearItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/engineBlock/0.png b/front/public/images/small/BuildCraft_Core/engineBlock/0.png deleted file mode 100644 index bbba308330..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/engineBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/engineBlock/1.png b/front/public/images/small/BuildCraft_Core/engineBlock/1.png deleted file mode 100644 index 2c7eed2d26..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/engineBlock/1.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/engineBlock/2.png b/front/public/images/small/BuildCraft_Core/engineBlock/2.png deleted file mode 100644 index 1a38d5842c..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/engineBlock/2.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/engineBlock/3.png b/front/public/images/small/BuildCraft_Core/engineBlock/3.png deleted file mode 100644 index 68648b28ce..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/engineBlock/3.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/eternalSpring/0.png b/front/public/images/small/BuildCraft_Core/eternalSpring/0.png deleted file mode 100644 index bffe679a4c..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/eternalSpring/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/eternalSpring/1.png b/front/public/images/small/BuildCraft_Core/eternalSpring/1.png deleted file mode 100644 index bffe679a4c..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/eternalSpring/1.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/goldGearItem/0.png b/front/public/images/small/BuildCraft_Core/goldGearItem/0.png deleted file mode 100644 index 5536264432..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/goldGearItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/ironGearItem/0.png b/front/public/images/small/BuildCraft_Core/ironGearItem/0.png deleted file mode 100644 index 2c29c268a8..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/ironGearItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/list/0.png b/front/public/images/small/BuildCraft_Core/list/0.png deleted file mode 100644 index cadd0bc735..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/list/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/list/1.png b/front/public/images/small/BuildCraft_Core/list/1.png deleted file mode 100644 index cadd0bc735..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/list/1.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/mapLocation/0.png b/front/public/images/small/BuildCraft_Core/mapLocation/0.png deleted file mode 100644 index a14702651d..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/mapLocation/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/markerBlock/0.png b/front/public/images/small/BuildCraft_Core/markerBlock/0.png deleted file mode 100644 index d1c0e1456f..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/markerBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/paintbrush/0.png b/front/public/images/small/BuildCraft_Core/paintbrush/0.png deleted file mode 100644 index 451bcba4d2..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/paintbrush/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/pathMarkerBlock/0.png b/front/public/images/small/BuildCraft_Core/pathMarkerBlock/0.png deleted file mode 100644 index 859cb2a7bf..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/pathMarkerBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/stoneGearItem/0.png b/front/public/images/small/BuildCraft_Core/stoneGearItem/0.png deleted file mode 100644 index e8a2a1ec1c..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/stoneGearItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/woodenGearItem/0.png b/front/public/images/small/BuildCraft_Core/woodenGearItem/0.png deleted file mode 100644 index cd61e13315..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/woodenGearItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Core/wrenchItem/0.png b/front/public/images/small/BuildCraft_Core/wrenchItem/0.png deleted file mode 100644 index 7ad5e31330..0000000000 Binary files a/front/public/images/small/BuildCraft_Core/wrenchItem/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Energy/blockFuel/0.png b/front/public/images/small/BuildCraft_Energy/blockFuel/0.png deleted file mode 100644 index 3b7446b23c..0000000000 Binary files a/front/public/images/small/BuildCraft_Energy/blockFuel/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Energy/blockOil/0.png b/front/public/images/small/BuildCraft_Energy/blockOil/0.png deleted file mode 100644 index 59ee9dd9ce..0000000000 Binary files a/front/public/images/small/BuildCraft_Energy/blockOil/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Energy/blockRedPlasma/0.png b/front/public/images/small/BuildCraft_Energy/blockRedPlasma/0.png deleted file mode 100644 index 27d8e0412b..0000000000 Binary files a/front/public/images/small/BuildCraft_Energy/blockRedPlasma/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Energy/bucketFuel/0.png b/front/public/images/small/BuildCraft_Energy/bucketFuel/0.png deleted file mode 100644 index 37cbf623c9..0000000000 Binary files a/front/public/images/small/BuildCraft_Energy/bucketFuel/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Energy/bucketOil/0.png b/front/public/images/small/BuildCraft_Energy/bucketOil/0.png deleted file mode 100644 index f3c5938cc3..0000000000 Binary files a/front/public/images/small/BuildCraft_Energy/bucketOil/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/autoWorkbenchBlock/0.png b/front/public/images/small/BuildCraft_Factory/autoWorkbenchBlock/0.png deleted file mode 100644 index d340dc1fb7..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/autoWorkbenchBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/blockHopper/0.png b/front/public/images/small/BuildCraft_Factory/blockHopper/0.png deleted file mode 100644 index b0209bde6a..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/blockHopper/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/floodGateBlock/0.png b/front/public/images/small/BuildCraft_Factory/floodGateBlock/0.png deleted file mode 100644 index 167c3fc842..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/floodGateBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/miningWellBlock/0.png b/front/public/images/small/BuildCraft_Factory/miningWellBlock/0.png deleted file mode 100644 index 9aa47025c8..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/miningWellBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/plainPipeBlock/0.png b/front/public/images/small/BuildCraft_Factory/plainPipeBlock/0.png deleted file mode 100644 index 2d8825dd0f..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/plainPipeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/pumpBlock/0.png b/front/public/images/small/BuildCraft_Factory/pumpBlock/0.png deleted file mode 100644 index f2e933a8af..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/pumpBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/refineryBlock/0.png b/front/public/images/small/BuildCraft_Factory/refineryBlock/0.png deleted file mode 100644 index 7c92a27fa0..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/refineryBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Factory/tankBlock/0.png b/front/public/images/small/BuildCraft_Factory/tankBlock/0.png deleted file mode 100644 index 5e0626c139..0000000000 Binary files a/front/public/images/small/BuildCraft_Factory/tankBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Robotics/redstone_board/0.png b/front/public/images/small/BuildCraft_Robotics/redstone_board/0.png deleted file mode 100644 index 101d47acc8..0000000000 Binary files a/front/public/images/small/BuildCraft_Robotics/redstone_board/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Robotics/requester/0.png b/front/public/images/small/BuildCraft_Robotics/requester/0.png deleted file mode 100644 index e36855f54c..0000000000 Binary files a/front/public/images/small/BuildCraft_Robotics/requester/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Robotics/robot/0.png b/front/public/images/small/BuildCraft_Robotics/robot/0.png deleted file mode 100644 index 877d4e264b..0000000000 Binary files a/front/public/images/small/BuildCraft_Robotics/robot/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Robotics/robotStation/0.png b/front/public/images/small/BuildCraft_Robotics/robotStation/0.png deleted file mode 100644 index 36dc73b213..0000000000 Binary files a/front/public/images/small/BuildCraft_Robotics/robotStation/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Robotics/zonePlan/0.png b/front/public/images/small/BuildCraft_Robotics/zonePlan/0.png deleted file mode 100644 index 4e0e757a23..0000000000 Binary files a/front/public/images/small/BuildCraft_Robotics/zonePlan/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/laserBlock/0.png b/front/public/images/small/BuildCraft_Silicon/laserBlock/0.png deleted file mode 100644 index d8a233a860..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/laserBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/0.png b/front/public/images/small/BuildCraft_Silicon/laserTableBlock/0.png deleted file mode 100644 index 4a0c1d152d..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/1.png b/front/public/images/small/BuildCraft_Silicon/laserTableBlock/1.png deleted file mode 100644 index 228775f197..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/1.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/2.png b/front/public/images/small/BuildCraft_Silicon/laserTableBlock/2.png deleted file mode 100644 index dcdbb50814..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/2.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/3.png b/front/public/images/small/BuildCraft_Silicon/laserTableBlock/3.png deleted file mode 100644 index 8ce8aea89c..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/3.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/4.png b/front/public/images/small/BuildCraft_Silicon/laserTableBlock/4.png deleted file mode 100644 index 97b4d8f185..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/4.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/5.png b/front/public/images/small/BuildCraft_Silicon/laserTableBlock/5.png deleted file mode 100644 index 073597775e..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/laserTableBlock/5.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/package/0.png b/front/public/images/small/BuildCraft_Silicon/package/0.png deleted file mode 100644 index 2c1b2775cb..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/package/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/packagerBlock/0.png b/front/public/images/small/BuildCraft_Silicon/packagerBlock/0.png deleted file mode 100644 index c3450ae464..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/packagerBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/0.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/0.png deleted file mode 100644 index 64f601b238..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/1.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/1.png deleted file mode 100644 index df17fe8a31..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/1.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/2.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/2.png deleted file mode 100644 index 19a926d9e5..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/2.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/3.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/3.png deleted file mode 100644 index 58ff446ef3..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/3.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/4.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/4.png deleted file mode 100644 index bb8544f832..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/4.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/5.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/5.png deleted file mode 100644 index 944a191908..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/5.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/6.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/6.png deleted file mode 100644 index 64f601b238..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/6.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/7.png b/front/public/images/small/BuildCraft_Silicon/redstoneChipset/7.png deleted file mode 100644 index b5c4e603b5..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneChipset/7.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Silicon/redstoneCrystal/0.png b/front/public/images/small/BuildCraft_Silicon/redstoneCrystal/0.png deleted file mode 100644 index eaee403aff..0000000000 Binary files a/front/public/images/small/BuildCraft_Silicon/redstoneCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/filteredBufferBlock/0.png b/front/public/images/small/BuildCraft_Transport/filteredBufferBlock/0.png deleted file mode 100644 index 2f7ade41fc..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/filteredBufferBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/gateCopier/0.png b/front/public/images/small/BuildCraft_Transport/gateCopier/0.png deleted file mode 100644 index df7b14d4d2..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/gateCopier/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsclay/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsclay/0.png deleted file mode 100644 index 08c59919a2..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsclay/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidscobblestone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidscobblestone/0.png deleted file mode 100644 index 1c63074d53..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidscobblestone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsdiamond/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsdiamond/0.png deleted file mode 100644 index fb2a509a8d..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsdiamond/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsemerald/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsemerald/0.png deleted file mode 100644 index 03202d0034..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsemerald/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsgold/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsgold/0.png deleted file mode 100644 index 4c7dc09bcb..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsgold/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsiron/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsiron/0.png deleted file mode 100644 index 67528a30d5..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsiron/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsquartz/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsquartz/0.png deleted file mode 100644 index 696d8b99c6..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsquartz/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidssandstone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidssandstone/0.png deleted file mode 100644 index 38b82ae6b8..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidssandstone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsstone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsstone/0.png deleted file mode 100644 index 3f5860a209..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsstone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsvoid/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsvoid/0.png deleted file mode 100644 index 5b64e372f6..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidsvoid/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidswood/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidswood/0.png deleted file mode 100644 index 003dba9c8a..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipefluidswood/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsclay/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsclay/0.png deleted file mode 100644 index 39818ea979..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsclay/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemscobblestone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemscobblestone/0.png deleted file mode 100644 index 2d196d82a6..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemscobblestone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdaizuli/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdaizuli/0.png deleted file mode 100644 index ae46d84a7e..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdaizuli/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdiamond/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdiamond/0.png deleted file mode 100644 index 2b4d29519c..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsdiamond/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemerald/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemerald/0.png deleted file mode 100644 index 3719b51c71..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemerald/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemzuli/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemzuli/0.png deleted file mode 100644 index eb5f5ea4c7..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsemzuli/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsgold/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsgold/0.png deleted file mode 100644 index 34798efa9e..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsgold/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsiron/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsiron/0.png deleted file mode 100644 index aff37cc71f..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsiron/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemslapis/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemslapis/0.png deleted file mode 100644 index 360b54d9d8..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemslapis/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsobsidian/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsobsidian/0.png deleted file mode 100644 index 0db4276973..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsobsidian/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsquartz/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsquartz/0.png deleted file mode 100644 index 6a4b4041fe..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsquartz/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemssandstone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemssandstone/0.png deleted file mode 100644 index 0de527ea5b..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemssandstone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstone/0.png deleted file mode 100644 index d2819f177f..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstripes/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstripes/0.png deleted file mode 100644 index 9ce5211144..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsstripes/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsvoid/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsvoid/0.png deleted file mode 100644 index ead73648bc..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemsvoid/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemswood/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemswood/0.png deleted file mode 100644 index f4f7bd20fb..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipeitemswood/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowercobblestone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowercobblestone/0.png deleted file mode 100644 index 0ee272bda9..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowercobblestone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerdiamond/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerdiamond/0.png deleted file mode 100644 index c8cfc8db03..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerdiamond/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepoweremerald/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepoweremerald/0.png deleted file mode 100644 index 221f60c09c..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepoweremerald/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowergold/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowergold/0.png deleted file mode 100644 index f47d0b9c1c..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowergold/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepoweriron/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepoweriron/0.png deleted file mode 100644 index a67a6e6c0b..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepoweriron/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerquartz/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerquartz/0.png deleted file mode 100644 index e25bb91e76..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerquartz/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowersandstone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowersandstone/0.png deleted file mode 100644 index e0556e9c64..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowersandstone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerstone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerstone/0.png deleted file mode 100644 index 6d5c591f9a..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerstone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerwood/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerwood/0.png deleted file mode 100644 index b9e7d09fc1..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipepowerwood/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipestructurecobblestone/0.png b/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipestructurecobblestone/0.png deleted file mode 100644 index 9990fe23bf..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/item.buildcraftPipe.pipestructurecobblestone/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeBlock/0.png b/front/public/images/small/BuildCraft_Transport/pipeBlock/0.png deleted file mode 100644 index 0eabf11b4e..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeFacade/0.png b/front/public/images/small/BuildCraft_Transport/pipeFacade/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeFacade/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeGate/0.png b/front/public/images/small/BuildCraft_Transport/pipeGate/0.png deleted file mode 100644 index c7285f72cc..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeGate/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/0.png b/front/public/images/small/BuildCraft_Transport/pipeLens/0.png deleted file mode 100644 index 78bf382573..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/1.png b/front/public/images/small/BuildCraft_Transport/pipeLens/1.png deleted file mode 100644 index 6aef3e2678..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/1.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/10.png b/front/public/images/small/BuildCraft_Transport/pipeLens/10.png deleted file mode 100644 index 44119e826e..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/10.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/11.png b/front/public/images/small/BuildCraft_Transport/pipeLens/11.png deleted file mode 100644 index 7a04a846d9..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/11.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/12.png b/front/public/images/small/BuildCraft_Transport/pipeLens/12.png deleted file mode 100644 index 87c8d8d656..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/12.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/13.png b/front/public/images/small/BuildCraft_Transport/pipeLens/13.png deleted file mode 100644 index ceedfd99a2..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/13.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/14.png b/front/public/images/small/BuildCraft_Transport/pipeLens/14.png deleted file mode 100644 index 16a8b7f70f..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/14.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/15.png b/front/public/images/small/BuildCraft_Transport/pipeLens/15.png deleted file mode 100644 index 053747a426..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/15.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/16.png b/front/public/images/small/BuildCraft_Transport/pipeLens/16.png deleted file mode 100644 index bbf884c9b6..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/16.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/17.png b/front/public/images/small/BuildCraft_Transport/pipeLens/17.png deleted file mode 100644 index 82213c7c2a..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/17.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/18.png b/front/public/images/small/BuildCraft_Transport/pipeLens/18.png deleted file mode 100644 index f34cb67551..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/18.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/19.png b/front/public/images/small/BuildCraft_Transport/pipeLens/19.png deleted file mode 100644 index 7733659832..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/19.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/2.png b/front/public/images/small/BuildCraft_Transport/pipeLens/2.png deleted file mode 100644 index e09b4e009b..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/2.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/20.png b/front/public/images/small/BuildCraft_Transport/pipeLens/20.png deleted file mode 100644 index 9c9ce7781d..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/20.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/21.png b/front/public/images/small/BuildCraft_Transport/pipeLens/21.png deleted file mode 100644 index c78625d168..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/21.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/22.png b/front/public/images/small/BuildCraft_Transport/pipeLens/22.png deleted file mode 100644 index 7f161fd04b..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/22.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/23.png b/front/public/images/small/BuildCraft_Transport/pipeLens/23.png deleted file mode 100644 index 8fedf701d1..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/23.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/24.png b/front/public/images/small/BuildCraft_Transport/pipeLens/24.png deleted file mode 100644 index d82605644e..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/24.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/25.png b/front/public/images/small/BuildCraft_Transport/pipeLens/25.png deleted file mode 100644 index ed427d9617..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/25.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/26.png b/front/public/images/small/BuildCraft_Transport/pipeLens/26.png deleted file mode 100644 index ad1f26c605..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/26.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/27.png b/front/public/images/small/BuildCraft_Transport/pipeLens/27.png deleted file mode 100644 index 83083b70ba..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/27.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/28.png b/front/public/images/small/BuildCraft_Transport/pipeLens/28.png deleted file mode 100644 index 190aefec51..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/28.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/29.png b/front/public/images/small/BuildCraft_Transport/pipeLens/29.png deleted file mode 100644 index 791301671d..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/29.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/3.png b/front/public/images/small/BuildCraft_Transport/pipeLens/3.png deleted file mode 100644 index 4940924d37..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/3.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/30.png b/front/public/images/small/BuildCraft_Transport/pipeLens/30.png deleted file mode 100644 index a0aa189b24..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/30.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/31.png b/front/public/images/small/BuildCraft_Transport/pipeLens/31.png deleted file mode 100644 index b8bbfdb632..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/31.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/32.png b/front/public/images/small/BuildCraft_Transport/pipeLens/32.png deleted file mode 100644 index d6b8c7fc81..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/32.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/33.png b/front/public/images/small/BuildCraft_Transport/pipeLens/33.png deleted file mode 100644 index c232be3e54..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/33.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/4.png b/front/public/images/small/BuildCraft_Transport/pipeLens/4.png deleted file mode 100644 index ce67a8cdb9..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/4.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/5.png b/front/public/images/small/BuildCraft_Transport/pipeLens/5.png deleted file mode 100644 index 1a0e981f81..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/5.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/6.png b/front/public/images/small/BuildCraft_Transport/pipeLens/6.png deleted file mode 100644 index d88885401f..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/6.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/7.png b/front/public/images/small/BuildCraft_Transport/pipeLens/7.png deleted file mode 100644 index ce5d2a5751..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/7.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/8.png b/front/public/images/small/BuildCraft_Transport/pipeLens/8.png deleted file mode 100644 index b17028effc..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/8.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeLens/9.png b/front/public/images/small/BuildCraft_Transport/pipeLens/9.png deleted file mode 100644 index 89983a9af9..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeLens/9.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipePlug/0.png b/front/public/images/small/BuildCraft_Transport/pipePlug/0.png deleted file mode 100644 index 396b42f7f0..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipePlug/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipePowerAdapter/0.png b/front/public/images/small/BuildCraft_Transport/pipePowerAdapter/0.png deleted file mode 100644 index a5e9d09356..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipePowerAdapter/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeWaterproof/0.png b/front/public/images/small/BuildCraft_Transport/pipeWaterproof/0.png deleted file mode 100644 index 3ad183678e..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeWaterproof/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeWire/0.png b/front/public/images/small/BuildCraft_Transport/pipeWire/0.png deleted file mode 100644 index 7febe48405..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeWire/0.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeWire/1.png b/front/public/images/small/BuildCraft_Transport/pipeWire/1.png deleted file mode 100644 index 90a744442d..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeWire/1.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeWire/2.png b/front/public/images/small/BuildCraft_Transport/pipeWire/2.png deleted file mode 100644 index 701119d8cd..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeWire/2.png and /dev/null differ diff --git a/front/public/images/small/BuildCraft_Transport/pipeWire/3.png b/front/public/images/small/BuildCraft_Transport/pipeWire/3.png deleted file mode 100644 index 65fd72782c..0000000000 Binary files a/front/public/images/small/BuildCraft_Transport/pipeWire/3.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersBarrier/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersBarrier/0.png deleted file mode 100644 index f50ff21d78..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersBarrier/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersBed/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersBed/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersBed/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersBlock/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersBlock/0.png deleted file mode 100644 index f3c6c573cf..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersBlock/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersButton/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersButton/0.png deleted file mode 100644 index a1e11318f5..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersButton/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersCollapsibleBlock/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersCollapsibleBlock/0.png deleted file mode 100644 index fd4c862749..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersCollapsibleBlock/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersDaylightSensor/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersDaylightSensor/0.png deleted file mode 100644 index c837506095..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersDaylightSensor/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersDoor/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersDoor/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersDoor/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersFlowerPot/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersFlowerPot/0.png deleted file mode 100644 index 15cf525d7f..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersFlowerPot/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersGarageDoor/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersGarageDoor/0.png deleted file mode 100644 index 47085fdfa3..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersGarageDoor/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersGate/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersGate/0.png deleted file mode 100644 index 3ee3028e45..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersGate/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersHatch/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersHatch/0.png deleted file mode 100644 index 35b34b85c1..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersHatch/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersLadder/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersLadder/0.png deleted file mode 100644 index 285baf0726..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersLadder/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersLever/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersLever/0.png deleted file mode 100644 index 424339349f..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersLever/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersPressurePlate/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersPressurePlate/0.png deleted file mode 100644 index 1439326cd2..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersPressurePlate/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersSafe/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersSafe/0.png deleted file mode 100644 index 26b9aab412..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersSafe/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/0.png deleted file mode 100644 index ce375a4db9..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/1.png b/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/1.png deleted file mode 100644 index 85509dab7f..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/1.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/2.png b/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/2.png deleted file mode 100644 index a0bd27e902..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/2.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/3.png b/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/3.png deleted file mode 100644 index 989d248ef7..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/3.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/4.png b/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/4.png deleted file mode 100644 index 9e74f9b039..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersSlope/4.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersStairs/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersStairs/0.png deleted file mode 100644 index 887f6d63f5..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersStairs/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/blockCarpentersTorch/0.png b/front/public/images/small/CarpentersBlocks/blockCarpentersTorch/0.png deleted file mode 100644 index f1ead32755..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/blockCarpentersTorch/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/itemCarpentersBed/0.png b/front/public/images/small/CarpentersBlocks/itemCarpentersBed/0.png deleted file mode 100644 index 0b26bcc514..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/itemCarpentersBed/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/itemCarpentersChisel/0.png b/front/public/images/small/CarpentersBlocks/itemCarpentersChisel/0.png deleted file mode 100644 index 37fdbb270e..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/itemCarpentersChisel/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/itemCarpentersDoor/0.png b/front/public/images/small/CarpentersBlocks/itemCarpentersDoor/0.png deleted file mode 100644 index 20720eb68d..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/itemCarpentersDoor/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/itemCarpentersHammer/0.png b/front/public/images/small/CarpentersBlocks/itemCarpentersHammer/0.png deleted file mode 100644 index 6e53faee7c..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/itemCarpentersHammer/0.png and /dev/null differ diff --git a/front/public/images/small/CarpentersBlocks/itemCarpentersTile/0.png b/front/public/images/small/CarpentersBlocks/itemCarpentersTile/0.png deleted file mode 100644 index 404e98b334..0000000000 Binary files a/front/public/images/small/CarpentersBlocks/itemCarpentersTile/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/adminSpawnEgg/0.png b/front/public/images/small/DraconicEvolution/adminSpawnEgg/0.png deleted file mode 100644 index b9b6efda81..0000000000 Binary files a/front/public/images/small/DraconicEvolution/adminSpawnEgg/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/awakenedCore/0.png b/front/public/images/small/DraconicEvolution/awakenedCore/0.png deleted file mode 100644 index 5960e53bbc..0000000000 Binary files a/front/public/images/small/DraconicEvolution/awakenedCore/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/cKeyStone/0.png b/front/public/images/small/DraconicEvolution/cKeyStone/0.png deleted file mode 100644 index 4fc0025348..0000000000 Binary files a/front/public/images/small/DraconicEvolution/cKeyStone/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/cKeyStone/1.png b/front/public/images/small/DraconicEvolution/cKeyStone/1.png deleted file mode 100644 index 4fc0025348..0000000000 Binary files a/front/public/images/small/DraconicEvolution/cKeyStone/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/cKeyStone/2.png b/front/public/images/small/DraconicEvolution/cKeyStone/2.png deleted file mode 100644 index 4fc0025348..0000000000 Binary files a/front/public/images/small/DraconicEvolution/cKeyStone/2.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/cKeyStone/3.png b/front/public/images/small/DraconicEvolution/cKeyStone/3.png deleted file mode 100644 index 4fc0025348..0000000000 Binary files a/front/public/images/small/DraconicEvolution/cKeyStone/3.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/chaosCrystal/0.png b/front/public/images/small/DraconicEvolution/chaosCrystal/0.png deleted file mode 100644 index df698b33d7..0000000000 Binary files a/front/public/images/small/DraconicEvolution/chaosCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/chaosFragment/0.png b/front/public/images/small/DraconicEvolution/chaosFragment/0.png deleted file mode 100644 index 6b03e06391..0000000000 Binary files a/front/public/images/small/DraconicEvolution/chaosFragment/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/chaosFragment/1.png b/front/public/images/small/DraconicEvolution/chaosFragment/1.png deleted file mode 100644 index 263d7ab7cc..0000000000 Binary files a/front/public/images/small/DraconicEvolution/chaosFragment/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/chaosFragment/2.png b/front/public/images/small/DraconicEvolution/chaosFragment/2.png deleted file mode 100644 index 7e5965d170..0000000000 Binary files a/front/public/images/small/DraconicEvolution/chaosFragment/2.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/chaosShard/0.png b/front/public/images/small/DraconicEvolution/chaosShard/0.png deleted file mode 100644 index df698b33d7..0000000000 Binary files a/front/public/images/small/DraconicEvolution/chaosShard/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/chaosShardAtmos/0.png b/front/public/images/small/DraconicEvolution/chaosShardAtmos/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/DraconicEvolution/chaosShardAtmos/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/chaoticCore/0.png b/front/public/images/small/DraconicEvolution/chaoticCore/0.png deleted file mode 100644 index e50c037a1f..0000000000 Binary files a/front/public/images/small/DraconicEvolution/chaoticCore/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/creativeStructureSpawner/0.png b/front/public/images/small/DraconicEvolution/creativeStructureSpawner/0.png deleted file mode 100644 index 5c7e3bc374..0000000000 Binary files a/front/public/images/small/DraconicEvolution/creativeStructureSpawner/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/creativeStructureSpawner/1.png b/front/public/images/small/DraconicEvolution/creativeStructureSpawner/1.png deleted file mode 100644 index 5c7e3bc374..0000000000 Binary files a/front/public/images/small/DraconicEvolution/creativeStructureSpawner/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/customSpawner/0.png b/front/public/images/small/DraconicEvolution/customSpawner/0.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/DraconicEvolution/customSpawner/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/dezilsMarshmallow/0.png b/front/public/images/small/DraconicEvolution/dezilsMarshmallow/0.png deleted file mode 100644 index e6d3795907..0000000000 Binary files a/front/public/images/small/DraconicEvolution/dezilsMarshmallow/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/dislocatorReceptacle/0.png b/front/public/images/small/DraconicEvolution/dislocatorReceptacle/0.png deleted file mode 100644 index a768503c54..0000000000 Binary files a/front/public/images/small/DraconicEvolution/dislocatorReceptacle/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/dissEnchanter/0.png b/front/public/images/small/DraconicEvolution/dissEnchanter/0.png deleted file mode 100644 index 21a12ca2ff..0000000000 Binary files a/front/public/images/small/DraconicEvolution/dissEnchanter/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicAxe/0.png b/front/public/images/small/DraconicEvolution/draconicAxe/0.png deleted file mode 100644 index 70ced50ac9..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicAxe/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicBlock/0.png b/front/public/images/small/DraconicEvolution/draconicBlock/0.png deleted file mode 100644 index 26b5a8d6c8..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicBlock/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicBoots/0.png b/front/public/images/small/DraconicEvolution/draconicBoots/0.png deleted file mode 100644 index aa77fc484c..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicBoots/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicBow/0.png b/front/public/images/small/DraconicEvolution/draconicBow/0.png deleted file mode 100644 index 6e489c69b3..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicBow/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicChest/0.png b/front/public/images/small/DraconicEvolution/draconicChest/0.png deleted file mode 100644 index 97482beffe..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicChest/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicCore/0.png b/front/public/images/small/DraconicEvolution/draconicCore/0.png deleted file mode 100644 index f72629f234..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicCore/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicDistructionStaff/0.png b/front/public/images/small/DraconicEvolution/draconicDistructionStaff/0.png deleted file mode 100644 index 796a257dfe..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicDistructionStaff/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicHelm/0.png b/front/public/images/small/DraconicEvolution/draconicHelm/0.png deleted file mode 100644 index cd59e5ed96..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicHelm/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicHoe/0.png b/front/public/images/small/DraconicEvolution/draconicHoe/0.png deleted file mode 100644 index 0c11378594..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicHoe/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicIngot/0.png b/front/public/images/small/DraconicEvolution/draconicIngot/0.png deleted file mode 100644 index 107b6d7b5d..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicIngot/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicLeggs/0.png b/front/public/images/small/DraconicEvolution/draconicLeggs/0.png deleted file mode 100644 index 67c4a61f3d..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicLeggs/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicPickaxe/0.png b/front/public/images/small/DraconicEvolution/draconicPickaxe/0.png deleted file mode 100644 index cd4ec2d986..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicShovel/0.png b/front/public/images/small/DraconicEvolution/draconicShovel/0.png deleted file mode 100644 index 8b8fa5da60..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicShovel/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconicSword/0.png b/front/public/images/small/DraconicEvolution/draconicSword/0.png deleted file mode 100644 index c16d6ce1ab..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconicSword/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconium/0.png b/front/public/images/small/DraconicEvolution/draconium/0.png deleted file mode 100644 index 30ffe38ef4..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconium/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconium/1.png b/front/public/images/small/DraconicEvolution/draconium/1.png deleted file mode 100644 index 9dff372cb2..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconium/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconium/2.png b/front/public/images/small/DraconicEvolution/draconium/2.png deleted file mode 100644 index 65ff1b1d59..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconium/2.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumBlend/0.png b/front/public/images/small/DraconicEvolution/draconiumBlend/0.png deleted file mode 100644 index f7f0e90e9f..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumBlend/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumChest/0.png b/front/public/images/small/DraconicEvolution/draconiumChest/0.png deleted file mode 100644 index 8e71ca964c..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumChest/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumDust/0.png b/front/public/images/small/DraconicEvolution/draconiumDust/0.png deleted file mode 100644 index 886c2eb263..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumDust/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumEnergyCore/0.png b/front/public/images/small/DraconicEvolution/draconiumEnergyCore/0.png deleted file mode 100644 index 0df01ed189..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumEnergyCore/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumEnergyCore/1.png b/front/public/images/small/DraconicEvolution/draconiumEnergyCore/1.png deleted file mode 100644 index 5cef6a45e5..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumEnergyCore/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumFluxCapacitor/0.png b/front/public/images/small/DraconicEvolution/draconiumFluxCapacitor/0.png deleted file mode 100644 index 6be3f407cc..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumFluxCapacitor/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumFluxCapacitor/1.png b/front/public/images/small/DraconicEvolution/draconiumFluxCapacitor/1.png deleted file mode 100644 index dbc4b71a70..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumFluxCapacitor/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumIngot/0.png b/front/public/images/small/DraconicEvolution/draconiumIngot/0.png deleted file mode 100644 index bac610dc29..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumIngot/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/draconiumOre/0.png b/front/public/images/small/DraconicEvolution/draconiumOre/0.png deleted file mode 100644 index 9f659717e8..0000000000 Binary files a/front/public/images/small/DraconicEvolution/draconiumOre/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/dragonHeart/0.png b/front/public/images/small/DraconicEvolution/dragonHeart/0.png deleted file mode 100644 index 0d535ac46e..0000000000 Binary files a/front/public/images/small/DraconicEvolution/dragonHeart/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/earth/0.png b/front/public/images/small/DraconicEvolution/earth/0.png deleted file mode 100644 index 9a8861ed53..0000000000 Binary files a/front/public/images/small/DraconicEvolution/earth/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/enderArrow/0.png b/front/public/images/small/DraconicEvolution/enderArrow/0.png deleted file mode 100644 index 8910e28bd9..0000000000 Binary files a/front/public/images/small/DraconicEvolution/enderArrow/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyCrystal/0.png b/front/public/images/small/DraconicEvolution/energyCrystal/0.png deleted file mode 100644 index b498afea6f..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyCrystal/1.png b/front/public/images/small/DraconicEvolution/energyCrystal/1.png deleted file mode 100644 index 3a20878070..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyCrystal/2.png b/front/public/images/small/DraconicEvolution/energyCrystal/2.png deleted file mode 100644 index 58d1f76cdc..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyCrystal/2.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyCrystal/3.png b/front/public/images/small/DraconicEvolution/energyCrystal/3.png deleted file mode 100644 index 735c77633d..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyCrystal/3.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyCrystal/4.png b/front/public/images/small/DraconicEvolution/energyCrystal/4.png deleted file mode 100644 index b498afea6f..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyCrystal/4.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyCrystal/5.png b/front/public/images/small/DraconicEvolution/energyCrystal/5.png deleted file mode 100644 index 3a20878070..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyCrystal/5.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyInfuser/0.png b/front/public/images/small/DraconicEvolution/energyInfuser/0.png deleted file mode 100644 index 54535f78bf..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyInfuser/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyPylon/0.png b/front/public/images/small/DraconicEvolution/energyPylon/0.png deleted file mode 100644 index 8d355cad68..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyPylon/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/energyStorageCore/0.png b/front/public/images/small/DraconicEvolution/energyStorageCore/0.png deleted file mode 100644 index 1941694968..0000000000 Binary files a/front/public/images/small/DraconicEvolution/energyStorageCore/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/flowGate/0.png b/front/public/images/small/DraconicEvolution/flowGate/0.png deleted file mode 100644 index 027d2e4d2d..0000000000 Binary files a/front/public/images/small/DraconicEvolution/flowGate/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/flowGate/6.png b/front/public/images/small/DraconicEvolution/flowGate/6.png deleted file mode 100644 index 9f89788e58..0000000000 Binary files a/front/public/images/small/DraconicEvolution/flowGate/6.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/generator/3.png b/front/public/images/small/DraconicEvolution/generator/3.png deleted file mode 100644 index 021176581a..0000000000 Binary files a/front/public/images/small/DraconicEvolution/generator/3.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/grinder/3.png b/front/public/images/small/DraconicEvolution/grinder/3.png deleted file mode 100644 index 7c0f2a3532..0000000000 Binary files a/front/public/images/small/DraconicEvolution/grinder/3.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/infoTablet/0.png b/front/public/images/small/DraconicEvolution/infoTablet/0.png deleted file mode 100644 index 52f2faefee..0000000000 Binary files a/front/public/images/small/DraconicEvolution/infoTablet/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/infusedObsidian/0.png b/front/public/images/small/DraconicEvolution/infusedObsidian/0.png deleted file mode 100644 index 7ca27908e8..0000000000 Binary files a/front/public/images/small/DraconicEvolution/infusedObsidian/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/invisibleMultiblock/0.png b/front/public/images/small/DraconicEvolution/invisibleMultiblock/0.png deleted file mode 100644 index 28b4558d09..0000000000 Binary files a/front/public/images/small/DraconicEvolution/invisibleMultiblock/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/key/0.png b/front/public/images/small/DraconicEvolution/key/0.png deleted file mode 100644 index 173334a807..0000000000 Binary files a/front/public/images/small/DraconicEvolution/key/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/key/1.png b/front/public/images/small/DraconicEvolution/key/1.png deleted file mode 100644 index 173334a807..0000000000 Binary files a/front/public/images/small/DraconicEvolution/key/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/longRangeDislocator/1.png b/front/public/images/small/DraconicEvolution/longRangeDislocator/1.png deleted file mode 100644 index ba7e84b648..0000000000 Binary files a/front/public/images/small/DraconicEvolution/longRangeDislocator/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/magnet/0.png b/front/public/images/small/DraconicEvolution/magnet/0.png deleted file mode 100644 index 69a8020283..0000000000 Binary files a/front/public/images/small/DraconicEvolution/magnet/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/magnet/1.png b/front/public/images/small/DraconicEvolution/magnet/1.png deleted file mode 100644 index d3b7400f30..0000000000 Binary files a/front/public/images/small/DraconicEvolution/magnet/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/mobSoul/0.png b/front/public/images/small/DraconicEvolution/mobSoul/0.png deleted file mode 100644 index d84d16a990..0000000000 Binary files a/front/public/images/small/DraconicEvolution/mobSoul/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/nugget/0.png b/front/public/images/small/DraconicEvolution/nugget/0.png deleted file mode 100644 index 58d6c50b44..0000000000 Binary files a/front/public/images/small/DraconicEvolution/nugget/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/nugget/1.png b/front/public/images/small/DraconicEvolution/nugget/1.png deleted file mode 100644 index a0b948c5c6..0000000000 Binary files a/front/public/images/small/DraconicEvolution/nugget/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/particleGenerator/0.png b/front/public/images/small/DraconicEvolution/particleGenerator/0.png deleted file mode 100644 index 67e1325957..0000000000 Binary files a/front/public/images/small/DraconicEvolution/particleGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/placedItem/0.png b/front/public/images/small/DraconicEvolution/placedItem/0.png deleted file mode 100644 index b8022a6ea4..0000000000 Binary files a/front/public/images/small/DraconicEvolution/placedItem/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/playerDetector/0.png b/front/public/images/small/DraconicEvolution/playerDetector/0.png deleted file mode 100644 index a4151197aa..0000000000 Binary files a/front/public/images/small/DraconicEvolution/playerDetector/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/playerDetectorAdvanced/0.png b/front/public/images/small/DraconicEvolution/playerDetectorAdvanced/0.png deleted file mode 100644 index d12a261007..0000000000 Binary files a/front/public/images/small/DraconicEvolution/playerDetectorAdvanced/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/portal/0.png b/front/public/images/small/DraconicEvolution/portal/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/DraconicEvolution/portal/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/potentiometer/0.png b/front/public/images/small/DraconicEvolution/potentiometer/0.png deleted file mode 100644 index 3ddf1a1154..0000000000 Binary files a/front/public/images/small/DraconicEvolution/potentiometer/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/rainSensor/0.png b/front/public/images/small/DraconicEvolution/rainSensor/0.png deleted file mode 100644 index 3c706f15cb..0000000000 Binary files a/front/public/images/small/DraconicEvolution/rainSensor/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorCore/0.png b/front/public/images/small/DraconicEvolution/reactorCore/0.png deleted file mode 100644 index 7d2b42f07f..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorCore/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorCraftingPart/0.png b/front/public/images/small/DraconicEvolution/reactorCraftingPart/0.png deleted file mode 100644 index a7099471ee..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorCraftingPart/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorCraftingPart/1.png b/front/public/images/small/DraconicEvolution/reactorCraftingPart/1.png deleted file mode 100644 index 96d35cf37f..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorCraftingPart/1.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorCraftingPart/2.png b/front/public/images/small/DraconicEvolution/reactorCraftingPart/2.png deleted file mode 100644 index 2e055204ed..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorCraftingPart/2.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorCraftingPart/3.png b/front/public/images/small/DraconicEvolution/reactorCraftingPart/3.png deleted file mode 100644 index 9724436add..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorCraftingPart/3.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorCraftingPart/4.png b/front/public/images/small/DraconicEvolution/reactorCraftingPart/4.png deleted file mode 100644 index c76a3da462..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorCraftingPart/4.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorEnergyInjector/0.png b/front/public/images/small/DraconicEvolution/reactorEnergyInjector/0.png deleted file mode 100644 index 46f5eb0fde..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorEnergyInjector/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/reactorStabilizer/0.png b/front/public/images/small/DraconicEvolution/reactorStabilizer/0.png deleted file mode 100644 index 7a474d3b80..0000000000 Binary files a/front/public/images/small/DraconicEvolution/reactorStabilizer/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/safetyFlame/0.png b/front/public/images/small/DraconicEvolution/safetyFlame/0.png deleted file mode 100644 index b81ca7f504..0000000000 Binary files a/front/public/images/small/DraconicEvolution/safetyFlame/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/safetyMatch/0.png b/front/public/images/small/DraconicEvolution/safetyMatch/0.png deleted file mode 100644 index 03d4e9ad87..0000000000 Binary files a/front/public/images/small/DraconicEvolution/safetyMatch/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/safetyMatch/1000.png b/front/public/images/small/DraconicEvolution/safetyMatch/1000.png deleted file mode 100644 index 50ccaa979d..0000000000 Binary files a/front/public/images/small/DraconicEvolution/safetyMatch/1000.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/sunDial/0.png b/front/public/images/small/DraconicEvolution/sunDial/0.png deleted file mode 100644 index f30825ea0a..0000000000 Binary files a/front/public/images/small/DraconicEvolution/sunDial/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/sunFocus/0.png b/front/public/images/small/DraconicEvolution/sunFocus/0.png deleted file mode 100644 index 0dd25e5d26..0000000000 Binary files a/front/public/images/small/DraconicEvolution/sunFocus/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/tclogo/0.png b/front/public/images/small/DraconicEvolution/tclogo/0.png deleted file mode 100644 index 705b38c1e0..0000000000 Binary files a/front/public/images/small/DraconicEvolution/tclogo/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/teleporterMKI/0.png b/front/public/images/small/DraconicEvolution/teleporterMKI/0.png deleted file mode 100644 index 17d574de25..0000000000 Binary files a/front/public/images/small/DraconicEvolution/teleporterMKI/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/teleporterMKII/0.png b/front/public/images/small/DraconicEvolution/teleporterMKII/0.png deleted file mode 100644 index 6f503aa0ec..0000000000 Binary files a/front/public/images/small/DraconicEvolution/teleporterMKII/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/teleporterStand/0.png b/front/public/images/small/DraconicEvolution/teleporterStand/0.png deleted file mode 100644 index cfccc411af..0000000000 Binary files a/front/public/images/small/DraconicEvolution/teleporterStand/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/upgradeModifier/0.png b/front/public/images/small/DraconicEvolution/upgradeModifier/0.png deleted file mode 100644 index fb6b9852dd..0000000000 Binary files a/front/public/images/small/DraconicEvolution/upgradeModifier/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/weatherController/0.png b/front/public/images/small/DraconicEvolution/weatherController/0.png deleted file mode 100644 index 5a7e2aa171..0000000000 Binary files a/front/public/images/small/DraconicEvolution/weatherController/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wrench/0.png b/front/public/images/small/DraconicEvolution/wrench/0.png deleted file mode 100644 index 93c40a5dea..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wrench/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernBoots/0.png b/front/public/images/small/DraconicEvolution/wyvernBoots/0.png deleted file mode 100644 index 451344ec00..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernBoots/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernBow/0.png b/front/public/images/small/DraconicEvolution/wyvernBow/0.png deleted file mode 100644 index 7edf74ef39..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernBow/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernChest/0.png b/front/public/images/small/DraconicEvolution/wyvernChest/0.png deleted file mode 100644 index 5ada309b42..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernChest/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernCore/0.png b/front/public/images/small/DraconicEvolution/wyvernCore/0.png deleted file mode 100644 index 468277fe4b..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernCore/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernHelm/0.png b/front/public/images/small/DraconicEvolution/wyvernHelm/0.png deleted file mode 100644 index ebe5c60d4d..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernHelm/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernLeggs/0.png b/front/public/images/small/DraconicEvolution/wyvernLeggs/0.png deleted file mode 100644 index 332f20727e..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernLeggs/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernPickaxe/0.png b/front/public/images/small/DraconicEvolution/wyvernPickaxe/0.png deleted file mode 100644 index 9c6a1457a1..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernShovel/0.png b/front/public/images/small/DraconicEvolution/wyvernShovel/0.png deleted file mode 100644 index 8491fbc0d7..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernShovel/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/wyvernSword/0.png b/front/public/images/small/DraconicEvolution/wyvernSword/0.png deleted file mode 100644 index e0376ccd4b..0000000000 Binary files a/front/public/images/small/DraconicEvolution/wyvernSword/0.png and /dev/null differ diff --git a/front/public/images/small/DraconicEvolution/xRayBlock/0.png b/front/public/images/small/DraconicEvolution/xRayBlock/0.png deleted file mode 100644 index c9defa18c1..0000000000 Binary files a/front/public/images/small/DraconicEvolution/xRayBlock/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/BaseBaubles/0.png b/front/public/images/small/EMT/BaseBaubles/0.png deleted file mode 100644 index 7e84a6d8f1..0000000000 Binary files a/front/public/images/small/EMT/BaseBaubles/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/ChainsawStream/1.png b/front/public/images/small/EMT/ChainsawStream/1.png deleted file mode 100644 index ff9c6f5581..0000000000 Binary files a/front/public/images/small/EMT/ChainsawStream/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ChainsawStream/27.png b/front/public/images/small/EMT/ChainsawStream/27.png deleted file mode 100644 index ff9c6f5581..0000000000 Binary files a/front/public/images/small/EMT/ChainsawStream/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/ChargingFocus/0.png b/front/public/images/small/EMT/ChargingFocus/0.png deleted file mode 100644 index 8f52c363e3..0000000000 Binary files a/front/public/images/small/EMT/ChargingFocus/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/ChristmasFocus/0.png b/front/public/images/small/EMT/ChristmasFocus/0.png deleted file mode 100644 index 04a5c42356..0000000000 Binary files a/front/public/images/small/EMT/ChristmasFocus/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/Diamond Omnitool/1.png b/front/public/images/small/EMT/Diamond Omnitool/1.png deleted file mode 100644 index ca8298e621..0000000000 Binary files a/front/public/images/small/EMT/Diamond Omnitool/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/Diamond Omnitool/27.png b/front/public/images/small/EMT/Diamond Omnitool/27.png deleted file mode 100644 index ca8298e621..0000000000 Binary files a/front/public/images/small/EMT/Diamond Omnitool/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/DiamondChainsaw/1.png b/front/public/images/small/EMT/DiamondChainsaw/1.png deleted file mode 100644 index 89e041a64e..0000000000 Binary files a/front/public/images/small/EMT/DiamondChainsaw/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/DiamondChainsaw/27.png b/front/public/images/small/EMT/DiamondChainsaw/27.png deleted file mode 100644 index 89e041a64e..0000000000 Binary files a/front/public/images/small/EMT/DiamondChainsaw/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/DrillRockbreaker/1.png b/front/public/images/small/EMT/DrillRockbreaker/1.png deleted file mode 100644 index 9c8f962dd8..0000000000 Binary files a/front/public/images/small/EMT/DrillRockbreaker/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/DrillRockbreaker/27.png b/front/public/images/small/EMT/DrillRockbreaker/27.png deleted file mode 100644 index 9c8f962dd8..0000000000 Binary files a/front/public/images/small/EMT/DrillRockbreaker/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTBaubles/0.png b/front/public/images/small/EMT/EMTBaubles/0.png deleted file mode 100644 index 7ce4c7e3e0..0000000000 Binary files a/front/public/images/small/EMT/EMTBaubles/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTBaubles/1.png b/front/public/images/small/EMT/EMTBaubles/1.png deleted file mode 100644 index fa1e6c6d80..0000000000 Binary files a/front/public/images/small/EMT/EMTBaubles/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/1.png b/front/public/images/small/EMT/EMTItems/1.png deleted file mode 100644 index c97dfa5581..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/10.png b/front/public/images/small/EMT/EMTItems/10.png deleted file mode 100644 index 8b69e98b47..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/10.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/11.png b/front/public/images/small/EMT/EMTItems/11.png deleted file mode 100644 index 4a1b8d925d..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/11.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/12.png b/front/public/images/small/EMT/EMTItems/12.png deleted file mode 100644 index 1ce0c779c3..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/12.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/13.png b/front/public/images/small/EMT/EMTItems/13.png deleted file mode 100644 index 7ef944d5e7..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/13.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/14.png b/front/public/images/small/EMT/EMTItems/14.png deleted file mode 100644 index f91d49b554..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/14.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/15.png b/front/public/images/small/EMT/EMTItems/15.png deleted file mode 100644 index d6d1ffa316..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/15.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/16.png b/front/public/images/small/EMT/EMTItems/16.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/16.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/17.png b/front/public/images/small/EMT/EMTItems/17.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/17.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/18.png b/front/public/images/small/EMT/EMTItems/18.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/18.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/19.png b/front/public/images/small/EMT/EMTItems/19.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/19.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/2.png b/front/public/images/small/EMT/EMTItems/2.png deleted file mode 100644 index 8208d9e81d..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/3.png b/front/public/images/small/EMT/EMTItems/3.png deleted file mode 100644 index 1835ffca3a..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/3.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/4.png b/front/public/images/small/EMT/EMTItems/4.png deleted file mode 100644 index 4ae3b8a580..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/4.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/5.png b/front/public/images/small/EMT/EMTItems/5.png deleted file mode 100644 index 5004b9201f..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/5.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/6.png b/front/public/images/small/EMT/EMTItems/6.png deleted file mode 100644 index 130e03e463..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/6.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/7.png b/front/public/images/small/EMT/EMTItems/7.png deleted file mode 100644 index 3f4e0495d5..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/7.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/8.png b/front/public/images/small/EMT/EMTItems/8.png deleted file mode 100644 index f6a044ad60..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/8.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTItems/9.png b/front/public/images/small/EMT/EMTItems/9.png deleted file mode 100644 index f68ae0ea1a..0000000000 Binary files a/front/public/images/small/EMT/EMTItems/9.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTMachines/0.png b/front/public/images/small/EMT/EMTMachines/0.png deleted file mode 100644 index 794fa1d0aa..0000000000 Binary files a/front/public/images/small/EMT/EMTMachines/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTMachines/1.png b/front/public/images/small/EMT/EMTMachines/1.png deleted file mode 100644 index fd5b80b25e..0000000000 Binary files a/front/public/images/small/EMT/EMTMachines/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTMachines/2.png b/front/public/images/small/EMT/EMTMachines/2.png deleted file mode 100644 index 43bf240634..0000000000 Binary files a/front/public/images/small/EMT/EMTMachines/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/0.png b/front/public/images/small/EMT/EMTSolars/0.png deleted file mode 100644 index d7313fd21e..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/1.png b/front/public/images/small/EMT/EMTSolars/1.png deleted file mode 100644 index cfc8b70efe..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/10.png b/front/public/images/small/EMT/EMTSolars/10.png deleted file mode 100644 index 492cc4d35b..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/10.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/11.png b/front/public/images/small/EMT/EMTSolars/11.png deleted file mode 100644 index ce222e2fcf..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/11.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/12.png b/front/public/images/small/EMT/EMTSolars/12.png deleted file mode 100644 index eaa3834e26..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/12.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/13.png b/front/public/images/small/EMT/EMTSolars/13.png deleted file mode 100644 index 37744f0c33..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/13.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/14.png b/front/public/images/small/EMT/EMTSolars/14.png deleted file mode 100644 index 67799d0c4c..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/14.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/15.png b/front/public/images/small/EMT/EMTSolars/15.png deleted file mode 100644 index afca51e303..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/15.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/2.png b/front/public/images/small/EMT/EMTSolars/2.png deleted file mode 100644 index 87c70438d6..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/3.png b/front/public/images/small/EMT/EMTSolars/3.png deleted file mode 100644 index af5007b39b..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/3.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/4.png b/front/public/images/small/EMT/EMTSolars/4.png deleted file mode 100644 index dc849f3e80..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/4.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/5.png b/front/public/images/small/EMT/EMTSolars/5.png deleted file mode 100644 index c6105e62a9..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/5.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/6.png b/front/public/images/small/EMT/EMTSolars/6.png deleted file mode 100644 index 0ae9731c62..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/6.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/7.png b/front/public/images/small/EMT/EMTSolars/7.png deleted file mode 100644 index 3e5bb0e7f3..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/7.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/8.png b/front/public/images/small/EMT/EMTSolars/8.png deleted file mode 100644 index 9002c4d3c2..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/8.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars/9.png b/front/public/images/small/EMT/EMTSolars/9.png deleted file mode 100644 index 662df18f61..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars/9.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars2/0.png b/front/public/images/small/EMT/EMTSolars2/0.png deleted file mode 100644 index 774da6c6c8..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars2/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars2/1.png b/front/public/images/small/EMT/EMTSolars2/1.png deleted file mode 100644 index f44f3ed77a..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars2/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars2/2.png b/front/public/images/small/EMT/EMTSolars2/2.png deleted file mode 100644 index 654c707460..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars2/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars2/3.png b/front/public/images/small/EMT/EMTSolars2/3.png deleted file mode 100644 index 577ceb6d44..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars2/3.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars2/4.png b/front/public/images/small/EMT/EMTSolars2/4.png deleted file mode 100644 index 6113344527..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars2/4.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/0.png b/front/public/images/small/EMT/EMTSolars3/0.png deleted file mode 100644 index 87c70438d6..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/1.png b/front/public/images/small/EMT/EMTSolars3/1.png deleted file mode 100644 index ce222e2fcf..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/10.png b/front/public/images/small/EMT/EMTSolars3/10.png deleted file mode 100644 index f44f3ed77a..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/10.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/11.png b/front/public/images/small/EMT/EMTSolars3/11.png deleted file mode 100644 index 6113344527..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/11.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/12.png b/front/public/images/small/EMT/EMTSolars3/12.png deleted file mode 100644 index c6105e62a9..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/12.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/13.png b/front/public/images/small/EMT/EMTSolars3/13.png deleted file mode 100644 index 67799d0c4c..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/13.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/14.png b/front/public/images/small/EMT/EMTSolars3/14.png deleted file mode 100644 index 87c70438d6..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/14.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/15.png b/front/public/images/small/EMT/EMTSolars3/15.png deleted file mode 100644 index ce222e2fcf..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/15.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/2.png b/front/public/images/small/EMT/EMTSolars3/2.png deleted file mode 100644 index 9002c4d3c2..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/3.png b/front/public/images/small/EMT/EMTSolars3/3.png deleted file mode 100644 index f44f3ed77a..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/3.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/4.png b/front/public/images/small/EMT/EMTSolars3/4.png deleted file mode 100644 index 6113344527..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/4.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/5.png b/front/public/images/small/EMT/EMTSolars3/5.png deleted file mode 100644 index c6105e62a9..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/5.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/6.png b/front/public/images/small/EMT/EMTSolars3/6.png deleted file mode 100644 index 67799d0c4c..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/6.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/7.png b/front/public/images/small/EMT/EMTSolars3/7.png deleted file mode 100644 index 87c70438d6..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/7.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/8.png b/front/public/images/small/EMT/EMTSolars3/8.png deleted file mode 100644 index ce222e2fcf..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/8.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars3/9.png b/front/public/images/small/EMT/EMTSolars3/9.png deleted file mode 100644 index 9002c4d3c2..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars3/9.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/0.png b/front/public/images/small/EMT/EMTSolars4/0.png deleted file mode 100644 index 9002c4d3c2..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/1.png b/front/public/images/small/EMT/EMTSolars4/1.png deleted file mode 100644 index f44f3ed77a..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/10.png b/front/public/images/small/EMT/EMTSolars4/10.png deleted file mode 100644 index c6105e62a9..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/10.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/11.png b/front/public/images/small/EMT/EMTSolars4/11.png deleted file mode 100644 index 67799d0c4c..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/11.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/12.png b/front/public/images/small/EMT/EMTSolars4/12.png deleted file mode 100644 index 87c70438d6..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/12.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/13.png b/front/public/images/small/EMT/EMTSolars4/13.png deleted file mode 100644 index ce222e2fcf..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/13.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/14.png b/front/public/images/small/EMT/EMTSolars4/14.png deleted file mode 100644 index 9002c4d3c2..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/14.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/15.png b/front/public/images/small/EMT/EMTSolars4/15.png deleted file mode 100644 index f44f3ed77a..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/15.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/2.png b/front/public/images/small/EMT/EMTSolars4/2.png deleted file mode 100644 index 6113344527..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/3.png b/front/public/images/small/EMT/EMTSolars4/3.png deleted file mode 100644 index c6105e62a9..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/3.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/4.png b/front/public/images/small/EMT/EMTSolars4/4.png deleted file mode 100644 index 67799d0c4c..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/4.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/5.png b/front/public/images/small/EMT/EMTSolars4/5.png deleted file mode 100644 index 87c70438d6..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/5.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/6.png b/front/public/images/small/EMT/EMTSolars4/6.png deleted file mode 100644 index ce222e2fcf..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/6.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/7.png b/front/public/images/small/EMT/EMTSolars4/7.png deleted file mode 100644 index 9002c4d3c2..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/7.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/8.png b/front/public/images/small/EMT/EMTSolars4/8.png deleted file mode 100644 index f44f3ed77a..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/8.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars4/9.png b/front/public/images/small/EMT/EMTSolars4/9.png deleted file mode 100644 index 6113344527..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars4/9.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars5/0.png b/front/public/images/small/EMT/EMTSolars5/0.png deleted file mode 100644 index 6113344527..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars5/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars5/1.png b/front/public/images/small/EMT/EMTSolars5/1.png deleted file mode 100644 index c6105e62a9..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars5/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EMTSolars5/2.png b/front/public/images/small/EMT/EMTSolars5/2.png deleted file mode 100644 index 67799d0c4c..0000000000 Binary files a/front/public/images/small/EMT/EMTSolars5/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricBootsTraveller/1.png b/front/public/images/small/EMT/ElectricBootsTraveller/1.png deleted file mode 100644 index ec92545fed..0000000000 Binary files a/front/public/images/small/EMT/ElectricBootsTraveller/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricBootsTraveller/27.png b/front/public/images/small/EMT/ElectricBootsTraveller/27.png deleted file mode 100644 index ec92545fed..0000000000 Binary files a/front/public/images/small/EMT/ElectricBootsTraveller/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricGogglesRevealing/1.png b/front/public/images/small/EMT/ElectricGogglesRevealing/1.png deleted file mode 100644 index e0229109b0..0000000000 Binary files a/front/public/images/small/EMT/ElectricGogglesRevealing/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricGogglesRevealing/165.png b/front/public/images/small/EMT/ElectricGogglesRevealing/165.png deleted file mode 100644 index e0229109b0..0000000000 Binary files a/front/public/images/small/EMT/ElectricGogglesRevealing/165.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricHoeGrowth/1.png b/front/public/images/small/EMT/ElectricHoeGrowth/1.png deleted file mode 100644 index 4d274dd0d5..0000000000 Binary files a/front/public/images/small/EMT/ElectricHoeGrowth/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricHoeGrowth/1561.png b/front/public/images/small/EMT/ElectricHoeGrowth/1561.png deleted file mode 100644 index 4d274dd0d5..0000000000 Binary files a/front/public/images/small/EMT/ElectricHoeGrowth/1561.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricScribingTools/1.png b/front/public/images/small/EMT/ElectricScribingTools/1.png deleted file mode 100644 index 6c5a9fed66..0000000000 Binary files a/front/public/images/small/EMT/ElectricScribingTools/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ElectricScribingTools/400.png b/front/public/images/small/EMT/ElectricScribingTools/400.png deleted file mode 100644 index 6c5a9fed66..0000000000 Binary files a/front/public/images/small/EMT/ElectricScribingTools/400.png and /dev/null differ diff --git a/front/public/images/small/EMT/EnergyBallFocus/0.png b/front/public/images/small/EMT/EnergyBallFocus/0.png deleted file mode 100644 index 9f9fc4afda..0000000000 Binary files a/front/public/images/small/EMT/EnergyBallFocus/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EssentiaGenerators/0.png b/front/public/images/small/EMT/EssentiaGenerators/0.png deleted file mode 100644 index 25c930ee71..0000000000 Binary files a/front/public/images/small/EMT/EssentiaGenerators/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/EssentiaGenerators/1.png b/front/public/images/small/EMT/EssentiaGenerators/1.png deleted file mode 100644 index 17f5038bd8..0000000000 Binary files a/front/public/images/small/EMT/EssentiaGenerators/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/EssentiaGenerators/2.png b/front/public/images/small/EMT/EssentiaGenerators/2.png deleted file mode 100644 index 297f8a58df..0000000000 Binary files a/front/public/images/small/EMT/EssentiaGenerators/2.png and /dev/null differ diff --git a/front/public/images/small/EMT/EssentiaGenerators/3.png b/front/public/images/small/EMT/EssentiaGenerators/3.png deleted file mode 100644 index 10a7ac6c8e..0000000000 Binary files a/front/public/images/small/EMT/EssentiaGenerators/3.png and /dev/null differ diff --git a/front/public/images/small/EMT/EssentiaGenerators/4.png b/front/public/images/small/EMT/EssentiaGenerators/4.png deleted file mode 100644 index 371a8400c1..0000000000 Binary files a/front/public/images/small/EMT/EssentiaGenerators/4.png and /dev/null differ diff --git a/front/public/images/small/EMT/EssentiaGenerators/5.png b/front/public/images/small/EMT/EssentiaGenerators/5.png deleted file mode 100644 index 371a8400c1..0000000000 Binary files a/front/public/images/small/EMT/EssentiaGenerators/5.png and /dev/null differ diff --git a/front/public/images/small/EMT/ExplosionFocus/0.png b/front/public/images/small/EMT/ExplosionFocus/0.png deleted file mode 100644 index bc9f3d89d4..0000000000 Binary files a/front/public/images/small/EMT/ExplosionFocus/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/FeatherWing/0.png b/front/public/images/small/EMT/FeatherWing/0.png deleted file mode 100644 index f1f53d7060..0000000000 Binary files a/front/public/images/small/EMT/FeatherWing/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/MaintenanceFocus/0.png b/front/public/images/small/EMT/MaintenanceFocus/0.png deleted file mode 100644 index 289bb4780f..0000000000 Binary files a/front/public/images/small/EMT/MaintenanceFocus/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/Mjolnir/0.png b/front/public/images/small/EMT/Mjolnir/0.png deleted file mode 100644 index 15fbbad136..0000000000 Binary files a/front/public/images/small/EMT/Mjolnir/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/NanoBootsTraveller/1.png b/front/public/images/small/EMT/NanoBootsTraveller/1.png deleted file mode 100644 index da0947489b..0000000000 Binary files a/front/public/images/small/EMT/NanoBootsTraveller/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/NanoBootsTraveller/27.png b/front/public/images/small/EMT/NanoBootsTraveller/27.png deleted file mode 100644 index da0947489b..0000000000 Binary files a/front/public/images/small/EMT/NanoBootsTraveller/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/NanosuitGogglesRevealing/1.png b/front/public/images/small/EMT/NanosuitGogglesRevealing/1.png deleted file mode 100644 index 4533899b1a..0000000000 Binary files a/front/public/images/small/EMT/NanosuitGogglesRevealing/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/NanosuitGogglesRevealing/27.png b/front/public/images/small/EMT/NanosuitGogglesRevealing/27.png deleted file mode 100644 index 4533899b1a..0000000000 Binary files a/front/public/images/small/EMT/NanosuitGogglesRevealing/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/NanosuitWing/1.png b/front/public/images/small/EMT/NanosuitWing/1.png deleted file mode 100644 index 255aaf01b7..0000000000 Binary files a/front/public/images/small/EMT/NanosuitWing/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/NanosuitWing/27.png b/front/public/images/small/EMT/NanosuitWing/27.png deleted file mode 100644 index 255aaf01b7..0000000000 Binary files a/front/public/images/small/EMT/NanosuitWing/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/Omnitool/1.png b/front/public/images/small/EMT/Omnitool/1.png deleted file mode 100644 index cc9fa94864..0000000000 Binary files a/front/public/images/small/EMT/Omnitool/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/Omnitool/27.png b/front/public/images/small/EMT/Omnitool/27.png deleted file mode 100644 index cc9fa94864..0000000000 Binary files a/front/public/images/small/EMT/Omnitool/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/PortableNode/0.png b/front/public/images/small/EMT/PortableNode/0.png deleted file mode 100644 index 3008b57891..0000000000 Binary files a/front/public/images/small/EMT/PortableNode/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/QuantumBootsTraveller/1.png b/front/public/images/small/EMT/QuantumBootsTraveller/1.png deleted file mode 100644 index a88a169def..0000000000 Binary files a/front/public/images/small/EMT/QuantumBootsTraveller/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/QuantumBootsTraveller/27.png b/front/public/images/small/EMT/QuantumBootsTraveller/27.png deleted file mode 100644 index a88a169def..0000000000 Binary files a/front/public/images/small/EMT/QuantumBootsTraveller/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/QuantumGogglesRevealing/1.png b/front/public/images/small/EMT/QuantumGogglesRevealing/1.png deleted file mode 100644 index 6a303004b2..0000000000 Binary files a/front/public/images/small/EMT/QuantumGogglesRevealing/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/QuantumGogglesRevealing/27.png b/front/public/images/small/EMT/QuantumGogglesRevealing/27.png deleted file mode 100644 index 6a303004b2..0000000000 Binary files a/front/public/images/small/EMT/QuantumGogglesRevealing/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/QuantumWing/1.png b/front/public/images/small/EMT/QuantumWing/1.png deleted file mode 100644 index f90b8b83fd..0000000000 Binary files a/front/public/images/small/EMT/QuantumWing/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/QuantumWing/27.png b/front/public/images/small/EMT/QuantumWing/27.png deleted file mode 100644 index f90b8b83fd..0000000000 Binary files a/front/public/images/small/EMT/QuantumWing/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/ShieldBlock/0.png b/front/public/images/small/EMT/ShieldBlock/0.png deleted file mode 100644 index 8096b18bd4..0000000000 Binary files a/front/public/images/small/EMT/ShieldBlock/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/ShieldFocus/0.png b/front/public/images/small/EMT/ShieldFocus/0.png deleted file mode 100644 index 9aead806fd..0000000000 Binary files a/front/public/images/small/EMT/ShieldFocus/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/SolarHelmetRevealing/1.png b/front/public/images/small/EMT/SolarHelmetRevealing/1.png deleted file mode 100644 index f1a23c62c1..0000000000 Binary files a/front/public/images/small/EMT/SolarHelmetRevealing/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/SolarHelmetRevealing/27.png b/front/public/images/small/EMT/SolarHelmetRevealing/27.png deleted file mode 100644 index f1a23c62c1..0000000000 Binary files a/front/public/images/small/EMT/SolarHelmetRevealing/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/SuperchargedMjolnir/1.png b/front/public/images/small/EMT/SuperchargedMjolnir/1.png deleted file mode 100644 index 0c005b090b..0000000000 Binary files a/front/public/images/small/EMT/SuperchargedMjolnir/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/SuperchargedMjolnir/27.png b/front/public/images/small/EMT/SuperchargedMjolnir/27.png deleted file mode 100644 index 0c005b090b..0000000000 Binary files a/front/public/images/small/EMT/SuperchargedMjolnir/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/TaintedMjolnir/0.png b/front/public/images/small/EMT/TaintedMjolnir/0.png deleted file mode 100644 index 060f3357df..0000000000 Binary files a/front/public/images/small/EMT/TaintedMjolnir/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/ThaumiumChainsaw/1.png b/front/public/images/small/EMT/ThaumiumChainsaw/1.png deleted file mode 100644 index 5478fd9b20..0000000000 Binary files a/front/public/images/small/EMT/ThaumiumChainsaw/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ThaumiumChainsaw/27.png b/front/public/images/small/EMT/ThaumiumChainsaw/27.png deleted file mode 100644 index 5478fd9b20..0000000000 Binary files a/front/public/images/small/EMT/ThaumiumChainsaw/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/ThaumiumDrill/1.png b/front/public/images/small/EMT/ThaumiumDrill/1.png deleted file mode 100644 index a7ddf71b22..0000000000 Binary files a/front/public/images/small/EMT/ThaumiumDrill/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ThaumiumDrill/27.png b/front/public/images/small/EMT/ThaumiumDrill/27.png deleted file mode 100644 index a7ddf71b22..0000000000 Binary files a/front/public/images/small/EMT/ThaumiumDrill/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/ThaumiumOmnitool/1.png b/front/public/images/small/EMT/ThaumiumOmnitool/1.png deleted file mode 100644 index 3a6d69f676..0000000000 Binary files a/front/public/images/small/EMT/ThaumiumOmnitool/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/ThaumiumOmnitool/27.png b/front/public/images/small/EMT/ThaumiumOmnitool/27.png deleted file mode 100644 index 3a6d69f676..0000000000 Binary files a/front/public/images/small/EMT/ThaumiumOmnitool/27.png and /dev/null differ diff --git a/front/public/images/small/EMT/ThaumiumWing/0.png b/front/public/images/small/EMT/ThaumiumWing/0.png deleted file mode 100644 index 54b7564e8f..0000000000 Binary files a/front/public/images/small/EMT/ThaumiumWing/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/WandChargingFocus/0.png b/front/public/images/small/EMT/WandChargingFocus/0.png deleted file mode 100644 index b419d69db0..0000000000 Binary files a/front/public/images/small/EMT/WandChargingFocus/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/electricCloud/0.png b/front/public/images/small/EMT/electricCloud/0.png deleted file mode 100644 index fcd078f9b9..0000000000 Binary files a/front/public/images/small/EMT/electricCloud/0.png and /dev/null differ diff --git a/front/public/images/small/EMT/itemArmorQuantumChestplate/1.png b/front/public/images/small/EMT/itemArmorQuantumChestplate/1.png deleted file mode 100644 index cdf48dfbc1..0000000000 Binary files a/front/public/images/small/EMT/itemArmorQuantumChestplate/1.png and /dev/null differ diff --git a/front/public/images/small/EMT/itemArmorQuantumChestplate/27.png b/front/public/images/small/EMT/itemArmorQuantumChestplate/27.png deleted file mode 100644 index cdf48dfbc1..0000000000 Binary files a/front/public/images/small/EMT/itemArmorQuantumChestplate/27.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockAlloySmelter/0.png b/front/public/images/small/EnderIO/blockAlloySmelter/0.png deleted file mode 100644 index c9ba7502db..0000000000 Binary files a/front/public/images/small/EnderIO/blockAlloySmelter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockAttractor/0.png b/front/public/images/small/EnderIO/blockAttractor/0.png deleted file mode 100644 index 96361131fe..0000000000 Binary files a/front/public/images/small/EnderIO/blockAttractor/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockBuffer/0.png b/front/public/images/small/EnderIO/blockBuffer/0.png deleted file mode 100644 index dad727ce2b..0000000000 Binary files a/front/public/images/small/EnderIO/blockBuffer/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockBuffer/1.png b/front/public/images/small/EnderIO/blockBuffer/1.png deleted file mode 100644 index e4b89c6ae6..0000000000 Binary files a/front/public/images/small/EnderIO/blockBuffer/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockBuffer/2.png b/front/public/images/small/EnderIO/blockBuffer/2.png deleted file mode 100644 index a3b3543201..0000000000 Binary files a/front/public/images/small/EnderIO/blockBuffer/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockBuffer/3.png b/front/public/images/small/EnderIO/blockBuffer/3.png deleted file mode 100644 index 9d7bd01d6f..0000000000 Binary files a/front/public/images/small/EnderIO/blockBuffer/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCapBank/0.png b/front/public/images/small/EnderIO/blockCapBank/0.png deleted file mode 100644 index 8b57233fc9..0000000000 Binary files a/front/public/images/small/EnderIO/blockCapBank/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCapBank/1.png b/front/public/images/small/EnderIO/blockCapBank/1.png deleted file mode 100644 index b274ae686d..0000000000 Binary files a/front/public/images/small/EnderIO/blockCapBank/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCapBank/2.png b/front/public/images/small/EnderIO/blockCapBank/2.png deleted file mode 100644 index 33734cab4b..0000000000 Binary files a/front/public/images/small/EnderIO/blockCapBank/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCapBank/3.png b/front/public/images/small/EnderIO/blockCapBank/3.png deleted file mode 100644 index 21a9a9f0e1..0000000000 Binary files a/front/public/images/small/EnderIO/blockCapBank/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCapacitorBank/0.png b/front/public/images/small/EnderIO/blockCapacitorBank/0.png deleted file mode 100644 index 2b007303d2..0000000000 Binary files a/front/public/images/small/EnderIO/blockCapacitorBank/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCapacitorBank/1.png b/front/public/images/small/EnderIO/blockCapacitorBank/1.png deleted file mode 100644 index 361f86d8e8..0000000000 Binary files a/front/public/images/small/EnderIO/blockCapacitorBank/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCloud_seed/0.png b/front/public/images/small/EnderIO/blockCloud_seed/0.png deleted file mode 100644 index de8a9dda4e..0000000000 Binary files a/front/public/images/small/EnderIO/blockCloud_seed/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCloud_seed_concentrated/0.png b/front/public/images/small/EnderIO/blockCloud_seed_concentrated/0.png deleted file mode 100644 index 0f4d87fb72..0000000000 Binary files a/front/public/images/small/EnderIO/blockCloud_seed_concentrated/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCombustionGenerator/0.png b/front/public/images/small/EnderIO/blockCombustionGenerator/0.png deleted file mode 100644 index 895549bb00..0000000000 Binary files a/front/public/images/small/EnderIO/blockCombustionGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockConduitBundle/0.png b/front/public/images/small/EnderIO/blockConduitBundle/0.png deleted file mode 100644 index b1f63b4c37..0000000000 Binary files a/front/public/images/small/EnderIO/blockConduitBundle/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockConduitFacade/0.png b/front/public/images/small/EnderIO/blockConduitFacade/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/EnderIO/blockConduitFacade/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockCrafter/0.png b/front/public/images/small/EnderIO/blockCrafter/0.png deleted file mode 100644 index 3a66afc2a2..0000000000 Binary files a/front/public/images/small/EnderIO/blockCrafter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockDarkIronBars/0.png b/front/public/images/small/EnderIO/blockDarkIronBars/0.png deleted file mode 100644 index 321eb4934d..0000000000 Binary files a/front/public/images/small/EnderIO/blockDarkIronBars/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockDarkSteelAnvil/0.png b/front/public/images/small/EnderIO/blockDarkSteelAnvil/0.png deleted file mode 100644 index cea971b3c5..0000000000 Binary files a/front/public/images/small/EnderIO/blockDarkSteelAnvil/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockDarkSteelAnvil/1.png b/front/public/images/small/EnderIO/blockDarkSteelAnvil/1.png deleted file mode 100644 index a899fef8ef..0000000000 Binary files a/front/public/images/small/EnderIO/blockDarkSteelAnvil/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockDarkSteelAnvil/2.png b/front/public/images/small/EnderIO/blockDarkSteelAnvil/2.png deleted file mode 100644 index 2635dfd9f0..0000000000 Binary files a/front/public/images/small/EnderIO/blockDarkSteelAnvil/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockDarkSteelLadder/0.png b/front/public/images/small/EnderIO/blockDarkSteelLadder/0.png deleted file mode 100644 index c5a20524e5..0000000000 Binary files a/front/public/images/small/EnderIO/blockDarkSteelLadder/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockDarkSteelPressurePlate/0.png b/front/public/images/small/EnderIO/blockDarkSteelPressurePlate/0.png deleted file mode 100644 index 9195aeac67..0000000000 Binary files a/front/public/images/small/EnderIO/blockDarkSteelPressurePlate/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockDarkSteelPressurePlate/1.png b/front/public/images/small/EnderIO/blockDarkSteelPressurePlate/1.png deleted file mode 100644 index 9195aeac67..0000000000 Binary files a/front/public/images/small/EnderIO/blockDarkSteelPressurePlate/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockElectricLight/0.png b/front/public/images/small/EnderIO/blockElectricLight/0.png deleted file mode 100644 index 1051c799fd..0000000000 Binary files a/front/public/images/small/EnderIO/blockElectricLight/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockElectricLight/1.png b/front/public/images/small/EnderIO/blockElectricLight/1.png deleted file mode 100644 index 1051c799fd..0000000000 Binary files a/front/public/images/small/EnderIO/blockElectricLight/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockElectricLight/2.png b/front/public/images/small/EnderIO/blockElectricLight/2.png deleted file mode 100644 index 1051c799fd..0000000000 Binary files a/front/public/images/small/EnderIO/blockElectricLight/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockElectricLight/3.png b/front/public/images/small/EnderIO/blockElectricLight/3.png deleted file mode 100644 index 1051c799fd..0000000000 Binary files a/front/public/images/small/EnderIO/blockElectricLight/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockElectricLight/4.png b/front/public/images/small/EnderIO/blockElectricLight/4.png deleted file mode 100644 index 1051c799fd..0000000000 Binary files a/front/public/images/small/EnderIO/blockElectricLight/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockElectricLight/5.png b/front/public/images/small/EnderIO/blockElectricLight/5.png deleted file mode 100644 index 1051c799fd..0000000000 Binary files a/front/public/images/small/EnderIO/blockElectricLight/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEnchanter/0.png b/front/public/images/small/EnderIO/blockEnchanter/0.png deleted file mode 100644 index 8995c59c15..0000000000 Binary files a/front/public/images/small/EnderIO/blockEnchanter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEndSteelBars/0.png b/front/public/images/small/EnderIO/blockEndSteelBars/0.png deleted file mode 100644 index cb1ca05f50..0000000000 Binary files a/front/public/images/small/EnderIO/blockEndSteelBars/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEnderGenerator/0.png b/front/public/images/small/EnderIO/blockEnderGenerator/0.png deleted file mode 100644 index d067525efc..0000000000 Binary files a/front/public/images/small/EnderIO/blockEnderGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEnderIo/0.png b/front/public/images/small/EnderIO/blockEnderIo/0.png deleted file mode 100644 index f70f60e818..0000000000 Binary files a/front/public/images/small/EnderIO/blockEnderIo/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEnderRail/0.png b/front/public/images/small/EnderIO/blockEnderRail/0.png deleted file mode 100644 index d1af29f407..0000000000 Binary files a/front/public/images/small/EnderIO/blockEnderRail/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEnder_distillation/0.png b/front/public/images/small/EnderIO/blockEnder_distillation/0.png deleted file mode 100644 index 450cd810a4..0000000000 Binary files a/front/public/images/small/EnderIO/blockEnder_distillation/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEndermanSkull/0.png b/front/public/images/small/EnderIO/blockEndermanSkull/0.png deleted file mode 100644 index 2f815d233b..0000000000 Binary files a/front/public/images/small/EnderIO/blockEndermanSkull/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockEndermanSkull/2.png b/front/public/images/small/EnderIO/blockEndermanSkull/2.png deleted file mode 100644 index 29f9020eb8..0000000000 Binary files a/front/public/images/small/EnderIO/blockEndermanSkull/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockExperienceObelisk/0.png b/front/public/images/small/EnderIO/blockExperienceObelisk/0.png deleted file mode 100644 index 3248bac758..0000000000 Binary files a/front/public/images/small/EnderIO/blockExperienceObelisk/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFarmStation/0.png b/front/public/images/small/EnderIO/blockFarmStation/0.png deleted file mode 100644 index 50b6dafbe1..0000000000 Binary files a/front/public/images/small/EnderIO/blockFarmStation/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFire_water/0.png b/front/public/images/small/EnderIO/blockFire_water/0.png deleted file mode 100644 index f2a6c653eb..0000000000 Binary files a/front/public/images/small/EnderIO/blockFire_water/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFrankenzombieGenerator/0.png b/front/public/images/small/EnderIO/blockFrankenzombieGenerator/0.png deleted file mode 100644 index 3d1863a596..0000000000 Binary files a/front/public/images/small/EnderIO/blockFrankenzombieGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFusedQuartz/0.png b/front/public/images/small/EnderIO/blockFusedQuartz/0.png deleted file mode 100644 index 91e260dccc..0000000000 Binary files a/front/public/images/small/EnderIO/blockFusedQuartz/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFusedQuartz/1.png b/front/public/images/small/EnderIO/blockFusedQuartz/1.png deleted file mode 100644 index 1ea670dc67..0000000000 Binary files a/front/public/images/small/EnderIO/blockFusedQuartz/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFusedQuartz/2.png b/front/public/images/small/EnderIO/blockFusedQuartz/2.png deleted file mode 100644 index 91e260dccc..0000000000 Binary files a/front/public/images/small/EnderIO/blockFusedQuartz/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFusedQuartz/3.png b/front/public/images/small/EnderIO/blockFusedQuartz/3.png deleted file mode 100644 index 1ea670dc67..0000000000 Binary files a/front/public/images/small/EnderIO/blockFusedQuartz/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFusedQuartz/4.png b/front/public/images/small/EnderIO/blockFusedQuartz/4.png deleted file mode 100644 index 91e260dccc..0000000000 Binary files a/front/public/images/small/EnderIO/blockFusedQuartz/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockFusedQuartz/5.png b/front/public/images/small/EnderIO/blockFusedQuartz/5.png deleted file mode 100644 index 1ea670dc67..0000000000 Binary files a/front/public/images/small/EnderIO/blockFusedQuartz/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockHootch/0.png b/front/public/images/small/EnderIO/blockHootch/0.png deleted file mode 100644 index b0d7c941b1..0000000000 Binary files a/front/public/images/small/EnderIO/blockHootch/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockHyperCube/0.png b/front/public/images/small/EnderIO/blockHyperCube/0.png deleted file mode 100644 index cf51875bc6..0000000000 Binary files a/front/public/images/small/EnderIO/blockHyperCube/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/0.png b/front/public/images/small/EnderIO/blockIngotStorage/0.png deleted file mode 100644 index f284ddcb65..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/1.png b/front/public/images/small/EnderIO/blockIngotStorage/1.png deleted file mode 100644 index a43747f430..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/2.png b/front/public/images/small/EnderIO/blockIngotStorage/2.png deleted file mode 100644 index 68c7fb6a39..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/3.png b/front/public/images/small/EnderIO/blockIngotStorage/3.png deleted file mode 100644 index b2303902f5..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/4.png b/front/public/images/small/EnderIO/blockIngotStorage/4.png deleted file mode 100644 index 06d7edb030..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/5.png b/front/public/images/small/EnderIO/blockIngotStorage/5.png deleted file mode 100644 index de34cbc4a8..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/6.png b/front/public/images/small/EnderIO/blockIngotStorage/6.png deleted file mode 100644 index 74d444e7e1..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/7.png b/front/public/images/small/EnderIO/blockIngotStorage/7.png deleted file mode 100644 index b41345a7bf..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/7.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorage/8.png b/front/public/images/small/EnderIO/blockIngotStorage/8.png deleted file mode 100644 index 8edd34a5b7..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorage/8.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorageEndergy/0.png b/front/public/images/small/EnderIO/blockIngotStorageEndergy/0.png deleted file mode 100644 index e5ef7287d2..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorageEndergy/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorageEndergy/1.png b/front/public/images/small/EnderIO/blockIngotStorageEndergy/1.png deleted file mode 100644 index da56f1c7d0..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorageEndergy/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorageEndergy/2.png b/front/public/images/small/EnderIO/blockIngotStorageEndergy/2.png deleted file mode 100644 index 1c67ede9a1..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorageEndergy/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorageEndergy/3.png b/front/public/images/small/EnderIO/blockIngotStorageEndergy/3.png deleted file mode 100644 index 366b7b906e..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorageEndergy/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorageEndergy/4.png b/front/public/images/small/EnderIO/blockIngotStorageEndergy/4.png deleted file mode 100644 index 6af11064a2..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorageEndergy/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorageEndergy/5.png b/front/public/images/small/EnderIO/blockIngotStorageEndergy/5.png deleted file mode 100644 index 17d95f4cb2..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorageEndergy/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockIngotStorageEndergy/6.png b/front/public/images/small/EnderIO/blockIngotStorageEndergy/6.png deleted file mode 100644 index 2215657e77..0000000000 Binary files a/front/public/images/small/EnderIO/blockIngotStorageEndergy/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockInhibitorObelisk/0.png b/front/public/images/small/EnderIO/blockInhibitorObelisk/0.png deleted file mode 100644 index ec930f2104..0000000000 Binary files a/front/public/images/small/EnderIO/blockInhibitorObelisk/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockInventoryPanel/0.png b/front/public/images/small/EnderIO/blockInventoryPanel/0.png deleted file mode 100644 index 65a3667354..0000000000 Binary files a/front/public/images/small/EnderIO/blockInventoryPanel/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockKillerJoe/0.png b/front/public/images/small/EnderIO/blockKillerJoe/0.png deleted file mode 100644 index 1fb36ed2e6..0000000000 Binary files a/front/public/images/small/EnderIO/blockKillerJoe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockLightNode/0.png b/front/public/images/small/EnderIO/blockLightNode/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/EnderIO/blockLightNode/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockLiquid_sunshine/0.png b/front/public/images/small/EnderIO/blockLiquid_sunshine/0.png deleted file mode 100644 index 0b9ca298f9..0000000000 Binary files a/front/public/images/small/EnderIO/blockLiquid_sunshine/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockNutrient_distillation/0.png b/front/public/images/small/EnderIO/blockNutrient_distillation/0.png deleted file mode 100644 index b4d3ef46d1..0000000000 Binary files a/front/public/images/small/EnderIO/blockNutrient_distillation/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedCarpet/0.png b/front/public/images/small/EnderIO/blockPaintedCarpet/0.png deleted file mode 100644 index b1bf73ed78..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedCarpet/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedDoubleSlab/0.png b/front/public/images/small/EnderIO/blockPaintedDoubleSlab/0.png deleted file mode 100644 index eed2c7001e..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedDoubleSlab/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedFence/0.png b/front/public/images/small/EnderIO/blockPaintedFence/0.png deleted file mode 100644 index e872f41d0e..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedFence/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedFenceGate/0.png b/front/public/images/small/EnderIO/blockPaintedFenceGate/0.png deleted file mode 100644 index f7b40ed6b2..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedFenceGate/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedGlowstone/0.png b/front/public/images/small/EnderIO/blockPaintedGlowstone/0.png deleted file mode 100644 index f8e4964fc4..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedGlowstone/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedSlab/0.png b/front/public/images/small/EnderIO/blockPaintedSlab/0.png deleted file mode 100644 index f9bfe3d71a..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedSlab/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedStair/0.png b/front/public/images/small/EnderIO/blockPaintedStair/0.png deleted file mode 100644 index 0a50926d4b..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedStair/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPaintedWall/0.png b/front/public/images/small/EnderIO/blockPaintedWall/0.png deleted file mode 100644 index 0371acd4fd..0000000000 Binary files a/front/public/images/small/EnderIO/blockPaintedWall/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPainter/0.png b/front/public/images/small/EnderIO/blockPainter/0.png deleted file mode 100644 index d450665b39..0000000000 Binary files a/front/public/images/small/EnderIO/blockPainter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPowerMonitor/0.png b/front/public/images/small/EnderIO/blockPowerMonitor/0.png deleted file mode 100644 index 790cec27bb..0000000000 Binary files a/front/public/images/small/EnderIO/blockPowerMonitor/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockPoweredSpawner/0.png b/front/public/images/small/EnderIO/blockPoweredSpawner/0.png deleted file mode 100644 index 48af776b26..0000000000 Binary files a/front/public/images/small/EnderIO/blockPoweredSpawner/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockReinforcedObsidian/0.png b/front/public/images/small/EnderIO/blockReinforcedObsidian/0.png deleted file mode 100644 index 4e12435cf1..0000000000 Binary files a/front/public/images/small/EnderIO/blockReinforcedObsidian/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockReservoir/0.png b/front/public/images/small/EnderIO/blockReservoir/0.png deleted file mode 100644 index 330d2d3a00..0000000000 Binary files a/front/public/images/small/EnderIO/blockReservoir/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockRocket_fuel/0.png b/front/public/images/small/EnderIO/blockRocket_fuel/0.png deleted file mode 100644 index 3c452e10a1..0000000000 Binary files a/front/public/images/small/EnderIO/blockRocket_fuel/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSagMill/0.png b/front/public/images/small/EnderIO/blockSagMill/0.png deleted file mode 100644 index afc5e9dffe..0000000000 Binary files a/front/public/images/small/EnderIO/blockSagMill/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSliceAndSplice/0.png b/front/public/images/small/EnderIO/blockSliceAndSplice/0.png deleted file mode 100644 index 470bc33313..0000000000 Binary files a/front/public/images/small/EnderIO/blockSliceAndSplice/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSolarPanel/0.png b/front/public/images/small/EnderIO/blockSolarPanel/0.png deleted file mode 100644 index 771109e090..0000000000 Binary files a/front/public/images/small/EnderIO/blockSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSolarPanel/1.png b/front/public/images/small/EnderIO/blockSolarPanel/1.png deleted file mode 100644 index dbbf00d56b..0000000000 Binary files a/front/public/images/small/EnderIO/blockSolarPanel/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSolarPanel/2.png b/front/public/images/small/EnderIO/blockSolarPanel/2.png deleted file mode 100644 index 1ec8266338..0000000000 Binary files a/front/public/images/small/EnderIO/blockSolarPanel/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSoulBinder/0.png b/front/public/images/small/EnderIO/blockSoulBinder/0.png deleted file mode 100644 index 1dd2f493dc..0000000000 Binary files a/front/public/images/small/EnderIO/blockSoulBinder/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSoulariumBars/0.png b/front/public/images/small/EnderIO/blockSoulariumBars/0.png deleted file mode 100644 index 33effa3a96..0000000000 Binary files a/front/public/images/small/EnderIO/blockSoulariumBars/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockSpawnGuard/0.png b/front/public/images/small/EnderIO/blockSpawnGuard/0.png deleted file mode 100644 index 24f67c7b46..0000000000 Binary files a/front/public/images/small/EnderIO/blockSpawnGuard/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockStirlingGenerator/0.png b/front/public/images/small/EnderIO/blockStirlingGenerator/0.png deleted file mode 100644 index 712a15dbbe..0000000000 Binary files a/front/public/images/small/EnderIO/blockStirlingGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockTank/0.png b/front/public/images/small/EnderIO/blockTank/0.png deleted file mode 100644 index 46661f8745..0000000000 Binary files a/front/public/images/small/EnderIO/blockTank/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockTank/1.png b/front/public/images/small/EnderIO/blockTank/1.png deleted file mode 100644 index bba1472e27..0000000000 Binary files a/front/public/images/small/EnderIO/blockTank/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockTelePad/0.png b/front/public/images/small/EnderIO/blockTelePad/0.png deleted file mode 100644 index 629f63f03d..0000000000 Binary files a/front/public/images/small/EnderIO/blockTelePad/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockTransceiver/0.png b/front/public/images/small/EnderIO/blockTransceiver/0.png deleted file mode 100644 index 6040e0346a..0000000000 Binary files a/front/public/images/small/EnderIO/blockTransceiver/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockTravelAnchor/0.png b/front/public/images/small/EnderIO/blockTravelAnchor/0.png deleted file mode 100644 index a56c935942..0000000000 Binary files a/front/public/images/small/EnderIO/blockTravelAnchor/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockVacuumChest/0.png b/front/public/images/small/EnderIO/blockVacuumChest/0.png deleted file mode 100644 index 7cb1f7ee74..0000000000 Binary files a/front/public/images/small/EnderIO/blockVacuumChest/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockVapor_of_levity/0.png b/front/public/images/small/EnderIO/blockVapor_of_levity/0.png deleted file mode 100644 index 62b470fd3d..0000000000 Binary files a/front/public/images/small/EnderIO/blockVapor_of_levity/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockVat/0.png b/front/public/images/small/EnderIO/blockVat/0.png deleted file mode 100644 index 0bfb02b1ec..0000000000 Binary files a/front/public/images/small/EnderIO/blockVat/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockWeatherObelisk/0.png b/front/public/images/small/EnderIO/blockWeatherObelisk/0.png deleted file mode 100644 index 654deb7eb1..0000000000 Binary files a/front/public/images/small/EnderIO/blockWeatherObelisk/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockWirelessCharger/0.png b/front/public/images/small/EnderIO/blockWirelessCharger/0.png deleted file mode 100644 index be38965d3d..0000000000 Binary files a/front/public/images/small/EnderIO/blockWirelessCharger/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/blockZombieGenerator/0.png b/front/public/images/small/EnderIO/blockZombieGenerator/0.png deleted file mode 100644 index 72b5925424..0000000000 Binary files a/front/public/images/small/EnderIO/blockZombieGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketCloud_seed/0.png b/front/public/images/small/EnderIO/bucketCloud_seed/0.png deleted file mode 100644 index a120a72ca7..0000000000 Binary files a/front/public/images/small/EnderIO/bucketCloud_seed/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketCloud_seed_concentrated/0.png b/front/public/images/small/EnderIO/bucketCloud_seed_concentrated/0.png deleted file mode 100644 index 5c25c34094..0000000000 Binary files a/front/public/images/small/EnderIO/bucketCloud_seed_concentrated/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketEnder_distillation/0.png b/front/public/images/small/EnderIO/bucketEnder_distillation/0.png deleted file mode 100644 index 4eea68affa..0000000000 Binary files a/front/public/images/small/EnderIO/bucketEnder_distillation/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketFire_water/0.png b/front/public/images/small/EnderIO/bucketFire_water/0.png deleted file mode 100644 index 86e56954df..0000000000 Binary files a/front/public/images/small/EnderIO/bucketFire_water/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketHootch/0.png b/front/public/images/small/EnderIO/bucketHootch/0.png deleted file mode 100644 index 62a6de39ee..0000000000 Binary files a/front/public/images/small/EnderIO/bucketHootch/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketLiquid_sunshine/0.png b/front/public/images/small/EnderIO/bucketLiquid_sunshine/0.png deleted file mode 100644 index ca8f4546e9..0000000000 Binary files a/front/public/images/small/EnderIO/bucketLiquid_sunshine/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketNutrient_distillation/0.png b/front/public/images/small/EnderIO/bucketNutrient_distillation/0.png deleted file mode 100644 index 348f8dcd71..0000000000 Binary files a/front/public/images/small/EnderIO/bucketNutrient_distillation/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketRocket_fuel/0.png b/front/public/images/small/EnderIO/bucketRocket_fuel/0.png deleted file mode 100644 index f159c78d25..0000000000 Binary files a/front/public/images/small/EnderIO/bucketRocket_fuel/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/bucketVapor_of_levity/0.png b/front/public/images/small/EnderIO/bucketVapor_of_levity/0.png deleted file mode 100644 index a4a429019f..0000000000 Binary files a/front/public/images/small/EnderIO/bucketVapor_of_levity/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_axe/0.png b/front/public/images/small/EnderIO/item.darkSteel_axe/0.png deleted file mode 100644 index 5bde29a05c..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_axe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_boots/0.png b/front/public/images/small/EnderIO/item.darkSteel_boots/0.png deleted file mode 100644 index b7b8304d9a..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_boots/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_chestplate/0.png b/front/public/images/small/EnderIO/item.darkSteel_chestplate/0.png deleted file mode 100644 index 7054ee96f5..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_chestplate/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_helmet/0.png b/front/public/images/small/EnderIO/item.darkSteel_helmet/0.png deleted file mode 100644 index f7fb312eb9..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_leggings/0.png b/front/public/images/small/EnderIO/item.darkSteel_leggings/0.png deleted file mode 100644 index 0428e8a4e4..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_leggings/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_pickaxe/0.png b/front/public/images/small/EnderIO/item.darkSteel_pickaxe/0.png deleted file mode 100644 index 032302a185..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_shears/0.png b/front/public/images/small/EnderIO/item.darkSteel_shears/0.png deleted file mode 100644 index 83a9a60cf8..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_shears/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.darkSteel_sword/0.png b/front/public/images/small/EnderIO/item.darkSteel_sword/0.png deleted file mode 100644 index e4feefbb98..0000000000 Binary files a/front/public/images/small/EnderIO/item.darkSteel_sword/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.endSteel_axe/0.png b/front/public/images/small/EnderIO/item.endSteel_axe/0.png deleted file mode 100644 index d996dd1e03..0000000000 Binary files a/front/public/images/small/EnderIO/item.endSteel_axe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.endSteel_boots/0.png b/front/public/images/small/EnderIO/item.endSteel_boots/0.png deleted file mode 100644 index 30c3665b1c..0000000000 Binary files a/front/public/images/small/EnderIO/item.endSteel_boots/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.endSteel_chestplate/0.png b/front/public/images/small/EnderIO/item.endSteel_chestplate/0.png deleted file mode 100644 index a98f9b1ee8..0000000000 Binary files a/front/public/images/small/EnderIO/item.endSteel_chestplate/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.endSteel_helmet/0.png b/front/public/images/small/EnderIO/item.endSteel_helmet/0.png deleted file mode 100644 index 4aa4e6f2c9..0000000000 Binary files a/front/public/images/small/EnderIO/item.endSteel_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.endSteel_leggings/0.png b/front/public/images/small/EnderIO/item.endSteel_leggings/0.png deleted file mode 100644 index 8d1b5f4a0b..0000000000 Binary files a/front/public/images/small/EnderIO/item.endSteel_leggings/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.endSteel_pickaxe/0.png b/front/public/images/small/EnderIO/item.endSteel_pickaxe/0.png deleted file mode 100644 index a1e4a8f263..0000000000 Binary files a/front/public/images/small/EnderIO/item.endSteel_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.endSteel_sword/0.png b/front/public/images/small/EnderIO/item.endSteel_sword/0.png deleted file mode 100644 index f752b2a0ac..0000000000 Binary files a/front/public/images/small/EnderIO/item.endSteel_sword/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.stellar_axe/0.png b/front/public/images/small/EnderIO/item.stellar_axe/0.png deleted file mode 100644 index c7c6a65d84..0000000000 Binary files a/front/public/images/small/EnderIO/item.stellar_axe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.stellar_boots/0.png b/front/public/images/small/EnderIO/item.stellar_boots/0.png deleted file mode 100644 index fae7dd7719..0000000000 Binary files a/front/public/images/small/EnderIO/item.stellar_boots/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.stellar_chestplate/0.png b/front/public/images/small/EnderIO/item.stellar_chestplate/0.png deleted file mode 100644 index ced02ddd79..0000000000 Binary files a/front/public/images/small/EnderIO/item.stellar_chestplate/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.stellar_helmet/0.png b/front/public/images/small/EnderIO/item.stellar_helmet/0.png deleted file mode 100644 index ea5d32414e..0000000000 Binary files a/front/public/images/small/EnderIO/item.stellar_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.stellar_leggings/0.png b/front/public/images/small/EnderIO/item.stellar_leggings/0.png deleted file mode 100644 index 3b600e173e..0000000000 Binary files a/front/public/images/small/EnderIO/item.stellar_leggings/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.stellar_pickaxe/0.png b/front/public/images/small/EnderIO/item.stellar_pickaxe/0.png deleted file mode 100644 index 662cedc443..0000000000 Binary files a/front/public/images/small/EnderIO/item.stellar_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/item.stellar_sword/0.png b/front/public/images/small/EnderIO/item.stellar_sword/0.png deleted file mode 100644 index 138cf458e8..0000000000 Binary files a/front/public/images/small/EnderIO/item.stellar_sword/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/0.png b/front/public/images/small/EnderIO/itemAlloy/0.png deleted file mode 100644 index 9007096d46..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/1.png b/front/public/images/small/EnderIO/itemAlloy/1.png deleted file mode 100644 index 13a37b5e83..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/2.png b/front/public/images/small/EnderIO/itemAlloy/2.png deleted file mode 100644 index 23b49657cd..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/3.png b/front/public/images/small/EnderIO/itemAlloy/3.png deleted file mode 100644 index 8cca04f9c5..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/4.png b/front/public/images/small/EnderIO/itemAlloy/4.png deleted file mode 100644 index 8e80b6b50f..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/5.png b/front/public/images/small/EnderIO/itemAlloy/5.png deleted file mode 100644 index 29c7db35a2..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/6.png b/front/public/images/small/EnderIO/itemAlloy/6.png deleted file mode 100644 index c32a07be67..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/7.png b/front/public/images/small/EnderIO/itemAlloy/7.png deleted file mode 100644 index 65062281f5..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/7.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloy/8.png b/front/public/images/small/EnderIO/itemAlloy/8.png deleted file mode 100644 index f219ce7c5d..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloy/8.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloyEndergy/0.png b/front/public/images/small/EnderIO/itemAlloyEndergy/0.png deleted file mode 100644 index b401d84f58..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloyEndergy/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloyEndergy/1.png b/front/public/images/small/EnderIO/itemAlloyEndergy/1.png deleted file mode 100644 index eb7858e6f0..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloyEndergy/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloyEndergy/2.png b/front/public/images/small/EnderIO/itemAlloyEndergy/2.png deleted file mode 100644 index c6de88bcfe..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloyEndergy/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloyEndergy/3.png b/front/public/images/small/EnderIO/itemAlloyEndergy/3.png deleted file mode 100644 index 2d086565ce..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloyEndergy/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloyEndergy/4.png b/front/public/images/small/EnderIO/itemAlloyEndergy/4.png deleted file mode 100644 index 9ecab30f8d..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloyEndergy/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloyEndergy/5.png b/front/public/images/small/EnderIO/itemAlloyEndergy/5.png deleted file mode 100644 index ba176c61ec..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloyEndergy/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemAlloyEndergy/6.png b/front/public/images/small/EnderIO/itemAlloyEndergy/6.png deleted file mode 100644 index 349efbb33f..0000000000 Binary files a/front/public/images/small/EnderIO/itemAlloyEndergy/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/0.png b/front/public/images/small/EnderIO/itemBasicCapacitor/0.png deleted file mode 100644 index 60580fb216..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/1.png b/front/public/images/small/EnderIO/itemBasicCapacitor/1.png deleted file mode 100644 index f7ee4e2bf6..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/2.png b/front/public/images/small/EnderIO/itemBasicCapacitor/2.png deleted file mode 100644 index 87693e3b81..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/3.png b/front/public/images/small/EnderIO/itemBasicCapacitor/3.png deleted file mode 100644 index 4aab48d368..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/4.png b/front/public/images/small/EnderIO/itemBasicCapacitor/4.png deleted file mode 100644 index f7ff0d80d1..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/5.png b/front/public/images/small/EnderIO/itemBasicCapacitor/5.png deleted file mode 100644 index 938f53ddd4..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/6.png b/front/public/images/small/EnderIO/itemBasicCapacitor/6.png deleted file mode 100644 index 62d7e2ad3c..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/7.png b/front/public/images/small/EnderIO/itemBasicCapacitor/7.png deleted file mode 100644 index f673c1e523..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/7.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/8.png b/front/public/images/small/EnderIO/itemBasicCapacitor/8.png deleted file mode 100644 index 7e7567db87..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/8.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicCapacitor/9.png b/front/public/images/small/EnderIO/itemBasicCapacitor/9.png deleted file mode 100644 index a8496126c0..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicCapacitor/9.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicFilterUpgrade/0.png b/front/public/images/small/EnderIO/itemBasicFilterUpgrade/0.png deleted file mode 100644 index 94595dc593..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicFilterUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBasicFilterUpgrade/1.png b/front/public/images/small/EnderIO/itemBasicFilterUpgrade/1.png deleted file mode 100644 index d9e95eb0e9..0000000000 Binary files a/front/public/images/small/EnderIO/itemBasicFilterUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBigFilterUpgrade/0.png b/front/public/images/small/EnderIO/itemBigFilterUpgrade/0.png deleted file mode 100644 index 8846d3c399..0000000000 Binary files a/front/public/images/small/EnderIO/itemBigFilterUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBigFilterUpgrade/1.png b/front/public/images/small/EnderIO/itemBigFilterUpgrade/1.png deleted file mode 100644 index 7077d9c38a..0000000000 Binary files a/front/public/images/small/EnderIO/itemBigFilterUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemBrokenSpawner/0.png b/front/public/images/small/EnderIO/itemBrokenSpawner/0.png deleted file mode 100644 index ee98e7f857..0000000000 Binary files a/front/public/images/small/EnderIO/itemBrokenSpawner/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemConduitFacade/0.png b/front/public/images/small/EnderIO/itemConduitFacade/0.png deleted file mode 100644 index 8e6f8d0999..0000000000 Binary files a/front/public/images/small/EnderIO/itemConduitFacade/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemConduitFacade/1.png b/front/public/images/small/EnderIO/itemConduitFacade/1.png deleted file mode 100644 index e0db4d3ae1..0000000000 Binary files a/front/public/images/small/EnderIO/itemConduitFacade/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemConduitProbe/0.png b/front/public/images/small/EnderIO/itemConduitProbe/0.png deleted file mode 100644 index 49e8d4a608..0000000000 Binary files a/front/public/images/small/EnderIO/itemConduitProbe/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemCoordSelector/0.png b/front/public/images/small/EnderIO/itemCoordSelector/0.png deleted file mode 100644 index 5647e38f83..0000000000 Binary files a/front/public/images/small/EnderIO/itemCoordSelector/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemEnderFood/0.png b/front/public/images/small/EnderIO/itemEnderFood/0.png deleted file mode 100644 index d6fd48d7a6..0000000000 Binary files a/front/public/images/small/EnderIO/itemEnderFood/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemEnderface/0.png b/front/public/images/small/EnderIO/itemEnderface/0.png deleted file mode 100644 index 8b7d2d88b5..0000000000 Binary files a/front/public/images/small/EnderIO/itemEnderface/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemExistingItemFilter/0.png b/front/public/images/small/EnderIO/itemExistingItemFilter/0.png deleted file mode 100644 index 5f1b3aeab6..0000000000 Binary files a/front/public/images/small/EnderIO/itemExistingItemFilter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemExtractSpeedUpgrade/0.png b/front/public/images/small/EnderIO/itemExtractSpeedUpgrade/0.png deleted file mode 100644 index e1edfd1b48..0000000000 Binary files a/front/public/images/small/EnderIO/itemExtractSpeedUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemExtractSpeedUpgrade/1.png b/front/public/images/small/EnderIO/itemExtractSpeedUpgrade/1.png deleted file mode 100644 index 46c848b55a..0000000000 Binary files a/front/public/images/small/EnderIO/itemExtractSpeedUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFrankenSkull/0.png b/front/public/images/small/EnderIO/itemFrankenSkull/0.png deleted file mode 100644 index 867f141027..0000000000 Binary files a/front/public/images/small/EnderIO/itemFrankenSkull/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFrankenSkull/1.png b/front/public/images/small/EnderIO/itemFrankenSkull/1.png deleted file mode 100644 index a666bbeddb..0000000000 Binary files a/front/public/images/small/EnderIO/itemFrankenSkull/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFrankenSkull/2.png b/front/public/images/small/EnderIO/itemFrankenSkull/2.png deleted file mode 100644 index a666bbeddb..0000000000 Binary files a/front/public/images/small/EnderIO/itemFrankenSkull/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFrankenSkull/3.png b/front/public/images/small/EnderIO/itemFrankenSkull/3.png deleted file mode 100644 index 3daf058bd6..0000000000 Binary files a/front/public/images/small/EnderIO/itemFrankenSkull/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFrankenSkull/4.png b/front/public/images/small/EnderIO/itemFrankenSkull/4.png deleted file mode 100644 index 3daf058bd6..0000000000 Binary files a/front/public/images/small/EnderIO/itemFrankenSkull/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFrankenSkull/5.png b/front/public/images/small/EnderIO/itemFrankenSkull/5.png deleted file mode 100644 index b81ff117ca..0000000000 Binary files a/front/public/images/small/EnderIO/itemFrankenSkull/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFrankenSkull/6.png b/front/public/images/small/EnderIO/itemFrankenSkull/6.png deleted file mode 100644 index e1f5c8a519..0000000000 Binary files a/front/public/images/small/EnderIO/itemFrankenSkull/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFunctionUpgrade/0.png b/front/public/images/small/EnderIO/itemFunctionUpgrade/0.png deleted file mode 100644 index 945457e712..0000000000 Binary files a/front/public/images/small/EnderIO/itemFunctionUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemFusedQuartzFrame/0.png b/front/public/images/small/EnderIO/itemFusedQuartzFrame/0.png deleted file mode 100644 index 6db945e6c9..0000000000 Binary files a/front/public/images/small/EnderIO/itemFusedQuartzFrame/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGliderWing/0.png b/front/public/images/small/EnderIO/itemGliderWing/0.png deleted file mode 100644 index ee483a8c25..0000000000 Binary files a/front/public/images/small/EnderIO/itemGliderWing/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGliderWing/1.png b/front/public/images/small/EnderIO/itemGliderWing/1.png deleted file mode 100644 index 95ab4020f7..0000000000 Binary files a/front/public/images/small/EnderIO/itemGliderWing/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/0.png b/front/public/images/small/EnderIO/itemGrindingBall/0.png deleted file mode 100644 index 169c88a452..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/1.png b/front/public/images/small/EnderIO/itemGrindingBall/1.png deleted file mode 100644 index f1c7cefbad..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/2.png b/front/public/images/small/EnderIO/itemGrindingBall/2.png deleted file mode 100644 index f14fc6bed3..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/3.png b/front/public/images/small/EnderIO/itemGrindingBall/3.png deleted file mode 100644 index 7566475cde..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/4.png b/front/public/images/small/EnderIO/itemGrindingBall/4.png deleted file mode 100644 index 9cf148bf9a..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/5.png b/front/public/images/small/EnderIO/itemGrindingBall/5.png deleted file mode 100644 index f930a6d7a1..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/6.png b/front/public/images/small/EnderIO/itemGrindingBall/6.png deleted file mode 100644 index df1ae6b5b4..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/7.png b/front/public/images/small/EnderIO/itemGrindingBall/7.png deleted file mode 100644 index 64d52ff7a4..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/7.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBall/8.png b/front/public/images/small/EnderIO/itemGrindingBall/8.png deleted file mode 100644 index 9c592f005b..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBall/8.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBallEndergy/0.png b/front/public/images/small/EnderIO/itemGrindingBallEndergy/0.png deleted file mode 100644 index b7c0e6fd3f..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBallEndergy/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBallEndergy/1.png b/front/public/images/small/EnderIO/itemGrindingBallEndergy/1.png deleted file mode 100644 index 9ccb79c2be..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBallEndergy/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBallEndergy/2.png b/front/public/images/small/EnderIO/itemGrindingBallEndergy/2.png deleted file mode 100644 index c18a7e53ea..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBallEndergy/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBallEndergy/3.png b/front/public/images/small/EnderIO/itemGrindingBallEndergy/3.png deleted file mode 100644 index 1921629b5d..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBallEndergy/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBallEndergy/4.png b/front/public/images/small/EnderIO/itemGrindingBallEndergy/4.png deleted file mode 100644 index ff11ef9199..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBallEndergy/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBallEndergy/5.png b/front/public/images/small/EnderIO/itemGrindingBallEndergy/5.png deleted file mode 100644 index fa7b6e6abe..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBallEndergy/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemGrindingBallEndergy/6.png b/front/public/images/small/EnderIO/itemGrindingBallEndergy/6.png deleted file mode 100644 index 73bf9f4c23..0000000000 Binary files a/front/public/images/small/EnderIO/itemGrindingBallEndergy/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemItemConduit/0.png b/front/public/images/small/EnderIO/itemItemConduit/0.png deleted file mode 100644 index 56683363af..0000000000 Binary files a/front/public/images/small/EnderIO/itemItemConduit/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLimitedItemFilter/0.png b/front/public/images/small/EnderIO/itemLimitedItemFilter/0.png deleted file mode 100644 index 6a15369818..0000000000 Binary files a/front/public/images/small/EnderIO/itemLimitedItemFilter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLiquidConduit/0.png b/front/public/images/small/EnderIO/itemLiquidConduit/0.png deleted file mode 100644 index 86b923a132..0000000000 Binary files a/front/public/images/small/EnderIO/itemLiquidConduit/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLiquidConduit/1.png b/front/public/images/small/EnderIO/itemLiquidConduit/1.png deleted file mode 100644 index 956cb0cfbb..0000000000 Binary files a/front/public/images/small/EnderIO/itemLiquidConduit/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLiquidConduit/2.png b/front/public/images/small/EnderIO/itemLiquidConduit/2.png deleted file mode 100644 index abfd2bb1be..0000000000 Binary files a/front/public/images/small/EnderIO/itemLiquidConduit/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLiquidConduit/3.png b/front/public/images/small/EnderIO/itemLiquidConduit/3.png deleted file mode 100644 index 05062c2841..0000000000 Binary files a/front/public/images/small/EnderIO/itemLiquidConduit/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLiquidConduit/4.png b/front/public/images/small/EnderIO/itemLiquidConduit/4.png deleted file mode 100644 index 257c8fd7d5..0000000000 Binary files a/front/public/images/small/EnderIO/itemLiquidConduit/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLiquidConduit/5.png b/front/public/images/small/EnderIO/itemLiquidConduit/5.png deleted file mode 100644 index 40152ec1f1..0000000000 Binary files a/front/public/images/small/EnderIO/itemLiquidConduit/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemLiquidConduit/6.png b/front/public/images/small/EnderIO/itemLiquidConduit/6.png deleted file mode 100644 index a4897358b4..0000000000 Binary files a/front/public/images/small/EnderIO/itemLiquidConduit/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMEConduit/0.png b/front/public/images/small/EnderIO/itemMEConduit/0.png deleted file mode 100644 index 27c43adf3d..0000000000 Binary files a/front/public/images/small/EnderIO/itemMEConduit/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMEConduit/1.png b/front/public/images/small/EnderIO/itemMEConduit/1.png deleted file mode 100644 index ca6f28a22d..0000000000 Binary files a/front/public/images/small/EnderIO/itemMEConduit/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMEConduit/2.png b/front/public/images/small/EnderIO/itemMEConduit/2.png deleted file mode 100644 index f38e0ca91a..0000000000 Binary files a/front/public/images/small/EnderIO/itemMEConduit/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMachinePart/0.png b/front/public/images/small/EnderIO/itemMachinePart/0.png deleted file mode 100644 index 7fb8b4b719..0000000000 Binary files a/front/public/images/small/EnderIO/itemMachinePart/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMachinePart/1.png b/front/public/images/small/EnderIO/itemMachinePart/1.png deleted file mode 100644 index 2c29c268a8..0000000000 Binary files a/front/public/images/small/EnderIO/itemMachinePart/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMachinePart/2.png b/front/public/images/small/EnderIO/itemMachinePart/2.png deleted file mode 100644 index 44b7e8cafa..0000000000 Binary files a/front/public/images/small/EnderIO/itemMachinePart/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMachinePart/3.png b/front/public/images/small/EnderIO/itemMachinePart/3.png deleted file mode 100644 index 5c765acd03..0000000000 Binary files a/front/public/images/small/EnderIO/itemMachinePart/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMagnet/0.png b/front/public/images/small/EnderIO/itemMagnet/0.png deleted file mode 100644 index 103cc7f7d3..0000000000 Binary files a/front/public/images/small/EnderIO/itemMagnet/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMagnet/16.png b/front/public/images/small/EnderIO/itemMagnet/16.png deleted file mode 100644 index 103cc7f7d3..0000000000 Binary files a/front/public/images/small/EnderIO/itemMagnet/16.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/0.png b/front/public/images/small/EnderIO/itemMaterial/0.png deleted file mode 100644 index 50a1635b20..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/1.png b/front/public/images/small/EnderIO/itemMaterial/1.png deleted file mode 100644 index 214e36c095..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/10.png b/front/public/images/small/EnderIO/itemMaterial/10.png deleted file mode 100644 index 3aeff65d87..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/10.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/11.png b/front/public/images/small/EnderIO/itemMaterial/11.png deleted file mode 100644 index 6aa8db6150..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/11.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/12.png b/front/public/images/small/EnderIO/itemMaterial/12.png deleted file mode 100644 index 3ee0ef949b..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/12.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/13.png b/front/public/images/small/EnderIO/itemMaterial/13.png deleted file mode 100644 index 62d141e972..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/13.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/14.png b/front/public/images/small/EnderIO/itemMaterial/14.png deleted file mode 100644 index 9ee4d94004..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/14.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/15.png b/front/public/images/small/EnderIO/itemMaterial/15.png deleted file mode 100644 index d025f042e7..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/15.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/16.png b/front/public/images/small/EnderIO/itemMaterial/16.png deleted file mode 100644 index d73e661117..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/16.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/17.png b/front/public/images/small/EnderIO/itemMaterial/17.png deleted file mode 100644 index 3513d3f990..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/17.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/2.png b/front/public/images/small/EnderIO/itemMaterial/2.png deleted file mode 100644 index 3853ccd8c4..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/3.png b/front/public/images/small/EnderIO/itemMaterial/3.png deleted file mode 100644 index 8ba4595edf..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/4.png b/front/public/images/small/EnderIO/itemMaterial/4.png deleted file mode 100644 index 0ddb33e271..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/5.png b/front/public/images/small/EnderIO/itemMaterial/5.png deleted file mode 100644 index eef4ae9766..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/6.png b/front/public/images/small/EnderIO/itemMaterial/6.png deleted file mode 100644 index fe6495ce88..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/7.png b/front/public/images/small/EnderIO/itemMaterial/7.png deleted file mode 100644 index df1ae6b5b4..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/7.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/8.png b/front/public/images/small/EnderIO/itemMaterial/8.png deleted file mode 100644 index 250bd1e014..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/8.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemMaterial/9.png b/front/public/images/small/EnderIO/itemMaterial/9.png deleted file mode 100644 index a4aaf8e889..0000000000 Binary files a/front/public/images/small/EnderIO/itemMaterial/9.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemModItemFilter/0.png b/front/public/images/small/EnderIO/itemModItemFilter/0.png deleted file mode 100644 index d66e141cbd..0000000000 Binary files a/front/public/images/small/EnderIO/itemModItemFilter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemOCConduit/0.png b/front/public/images/small/EnderIO/itemOCConduit/0.png deleted file mode 100644 index 76159321a7..0000000000 Binary files a/front/public/images/small/EnderIO/itemOCConduit/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/0.png b/front/public/images/small/EnderIO/itemPowderIngot/0.png deleted file mode 100644 index a02b1c20f0..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/1.png b/front/public/images/small/EnderIO/itemPowderIngot/1.png deleted file mode 100644 index 83f2ac7f43..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/2.png b/front/public/images/small/EnderIO/itemPowderIngot/2.png deleted file mode 100644 index f3cbc573b0..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/3.png b/front/public/images/small/EnderIO/itemPowderIngot/3.png deleted file mode 100644 index c989c76475..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/4.png b/front/public/images/small/EnderIO/itemPowderIngot/4.png deleted file mode 100644 index eef4749d19..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/6.png b/front/public/images/small/EnderIO/itemPowderIngot/6.png deleted file mode 100644 index df61fed961..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/7.png b/front/public/images/small/EnderIO/itemPowderIngot/7.png deleted file mode 100644 index 5b1678b944..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/7.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowderIngot/8.png b/front/public/images/small/EnderIO/itemPowderIngot/8.png deleted file mode 100644 index 927794175b..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowderIngot/8.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduit/0.png b/front/public/images/small/EnderIO/itemPowerConduit/0.png deleted file mode 100644 index da2f48be98..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduit/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduit/1.png b/front/public/images/small/EnderIO/itemPowerConduit/1.png deleted file mode 100644 index 93f353ac90..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduit/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduit/2.png b/front/public/images/small/EnderIO/itemPowerConduit/2.png deleted file mode 100644 index 5035e008e0..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduit/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/0.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/0.png deleted file mode 100644 index 86552ac8ad..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/1.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/1.png deleted file mode 100644 index fb9bf92bb3..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/10.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/10.png deleted file mode 100644 index ae7c7a4239..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/10.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/11.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/11.png deleted file mode 100644 index 95c8f19f49..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/11.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/2.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/2.png deleted file mode 100644 index d2fde60b7d..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/3.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/3.png deleted file mode 100644 index 7e3b8bd6fb..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/3.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/4.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/4.png deleted file mode 100644 index c46083dff1..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/4.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/5.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/5.png deleted file mode 100644 index aa2bbc7089..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/5.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/6.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/6.png deleted file mode 100644 index 0788389dd7..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/6.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/7.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/7.png deleted file mode 100644 index e54abc09a7..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/7.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/8.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/8.png deleted file mode 100644 index d48b293312..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/8.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerConduitEndergy/9.png b/front/public/images/small/EnderIO/itemPowerConduitEndergy/9.png deleted file mode 100644 index e4f9616022..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerConduitEndergy/9.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemPowerItemFilter/0.png b/front/public/images/small/EnderIO/itemPowerItemFilter/0.png deleted file mode 100644 index 7f1775c2d9..0000000000 Binary files a/front/public/images/small/EnderIO/itemPowerItemFilter/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemRedstoneConduit/0.png b/front/public/images/small/EnderIO/itemRedstoneConduit/0.png deleted file mode 100644 index 9b5c065352..0000000000 Binary files a/front/public/images/small/EnderIO/itemRedstoneConduit/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemRedstoneConduit/1.png b/front/public/images/small/EnderIO/itemRedstoneConduit/1.png deleted file mode 100644 index ad78dfc799..0000000000 Binary files a/front/public/images/small/EnderIO/itemRedstoneConduit/1.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemRedstoneConduit/2.png b/front/public/images/small/EnderIO/itemRedstoneConduit/2.png deleted file mode 100644 index b816e4d794..0000000000 Binary files a/front/public/images/small/EnderIO/itemRedstoneConduit/2.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemSoulVessel/0.png b/front/public/images/small/EnderIO/itemSoulVessel/0.png deleted file mode 100644 index 59dfe9c290..0000000000 Binary files a/front/public/images/small/EnderIO/itemSoulVessel/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemTeleportStaff/0.png b/front/public/images/small/EnderIO/itemTeleportStaff/0.png deleted file mode 100644 index 506d9cd4d5..0000000000 Binary files a/front/public/images/small/EnderIO/itemTeleportStaff/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemTravelStaff/0.png b/front/public/images/small/EnderIO/itemTravelStaff/0.png deleted file mode 100644 index 8e5f6c691c..0000000000 Binary files a/front/public/images/small/EnderIO/itemTravelStaff/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemTravelStaff/16.png b/front/public/images/small/EnderIO/itemTravelStaff/16.png deleted file mode 100644 index 8e5f6c691c..0000000000 Binary files a/front/public/images/small/EnderIO/itemTravelStaff/16.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemXpTransfer/0.png b/front/public/images/small/EnderIO/itemXpTransfer/0.png deleted file mode 100644 index 90fc1d9d0a..0000000000 Binary files a/front/public/images/small/EnderIO/itemXpTransfer/0.png and /dev/null differ diff --git a/front/public/images/small/EnderIO/itemYetaWrench/0.png b/front/public/images/small/EnderIO/itemYetaWrench/0.png deleted file mode 100644 index 74e80b6e63..0000000000 Binary files a/front/public/images/small/EnderIO/itemYetaWrench/0.png and /dev/null differ diff --git a/front/public/images/small/EnderStorage/enderChest/0.png b/front/public/images/small/EnderStorage/enderChest/0.png deleted file mode 100644 index 06d6d3ec50..0000000000 Binary files a/front/public/images/small/EnderStorage/enderChest/0.png and /dev/null differ diff --git a/front/public/images/small/EnderStorage/enderChest/4096.png b/front/public/images/small/EnderStorage/enderChest/4096.png deleted file mode 100644 index 73f5d63104..0000000000 Binary files a/front/public/images/small/EnderStorage/enderChest/4096.png and /dev/null differ diff --git a/front/public/images/small/EnderStorage/enderPouch/0.png b/front/public/images/small/EnderStorage/enderPouch/0.png deleted file mode 100644 index a37272afbc..0000000000 Binary files a/front/public/images/small/EnderStorage/enderPouch/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/blockConcussionCharge/0.png b/front/public/images/small/EnderZoo/blockConcussionCharge/0.png deleted file mode 100644 index 01d69437f1..0000000000 Binary files a/front/public/images/small/EnderZoo/blockConcussionCharge/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/blockConfusingCharge/0.png b/front/public/images/small/EnderZoo/blockConfusingCharge/0.png deleted file mode 100644 index 281e6f88f9..0000000000 Binary files a/front/public/images/small/EnderZoo/blockConfusingCharge/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/blockEnderCharge/0.png b/front/public/images/small/EnderZoo/blockEnderCharge/0.png deleted file mode 100644 index 48f076a1d3..0000000000 Binary files a/front/public/images/small/EnderZoo/blockEnderCharge/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/confusingDust/0.png b/front/public/images/small/EnderZoo/confusingDust/0.png deleted file mode 100644 index f3285980f3..0000000000 Binary files a/front/public/images/small/EnderZoo/confusingDust/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/enderFragment/0.png b/front/public/images/small/EnderZoo/enderFragment/0.png deleted file mode 100644 index a431f226ad..0000000000 Binary files a/front/public/images/small/EnderZoo/enderFragment/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/enderZooIcon/0.png b/front/public/images/small/EnderZoo/enderZooIcon/0.png deleted file mode 100644 index 57648fa53f..0000000000 Binary files a/front/public/images/small/EnderZoo/enderZooIcon/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/guardiansBow/0.png b/front/public/images/small/EnderZoo/guardiansBow/0.png deleted file mode 100644 index a464dc1041..0000000000 Binary files a/front/public/images/small/EnderZoo/guardiansBow/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/0.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/0.png deleted file mode 100644 index 23c58f7a94..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/0.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/1.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/1.png deleted file mode 100644 index 91db3c7dd9..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/1.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/2.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/2.png deleted file mode 100644 index 3deea6e8d5..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/2.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/3.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/3.png deleted file mode 100644 index dc48c9a5f7..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/3.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/4.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/4.png deleted file mode 100644 index c20dafee75..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/4.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/5.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/5.png deleted file mode 100644 index af219240f8..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/5.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/6.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/6.png deleted file mode 100644 index 564d572e8f..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/6.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/7.png b/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/7.png deleted file mode 100644 index 69dd0934ae..0000000000 Binary files a/front/public/images/small/EnderZoo/itemSpawnEggEnderZoo/7.png and /dev/null differ diff --git a/front/public/images/small/EnderZoo/witheringDust/0.png b/front/public/images/small/EnderZoo/witheringDust/0.png deleted file mode 100644 index 802bababa9..0000000000 Binary files a/front/public/images/small/EnderZoo/witheringDust/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/0.png b/front/public/images/small/ExtraBees/alveary/0.png deleted file mode 100644 index 494426addd..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/1.png b/front/public/images/small/ExtraBees/alveary/1.png deleted file mode 100644 index fef62da2cc..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/2.png b/front/public/images/small/ExtraBees/alveary/2.png deleted file mode 100644 index 8ca02530d2..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/3.png b/front/public/images/small/ExtraBees/alveary/3.png deleted file mode 100644 index 339c7e5eee..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/4.png b/front/public/images/small/ExtraBees/alveary/4.png deleted file mode 100644 index acef91195b..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/5.png b/front/public/images/small/ExtraBees/alveary/5.png deleted file mode 100644 index d09ece842a..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/6.png b/front/public/images/small/ExtraBees/alveary/6.png deleted file mode 100644 index f65e1523f1..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/alveary/7.png b/front/public/images/small/ExtraBees/alveary/7.png deleted file mode 100644 index 11959b013b..0000000000 Binary files a/front/public/images/small/ExtraBees/alveary/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/dictionary/0.png b/front/public/images/small/ExtraBees/dictionary/0.png deleted file mode 100644 index f3d7e3c91a..0000000000 Binary files a/front/public/images/small/ExtraBees/dictionary/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/dictionary/1.png b/front/public/images/small/ExtraBees/dictionary/1.png deleted file mode 100644 index cd47eb7bdb..0000000000 Binary files a/front/public/images/small/ExtraBees/dictionary/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/ectoplasm/0.png b/front/public/images/small/ExtraBees/ectoplasm/0.png deleted file mode 100644 index 4018151eeb..0000000000 Binary files a/front/public/images/small/ExtraBees/ectoplasm/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hive/0.png b/front/public/images/small/ExtraBees/hive/0.png deleted file mode 100644 index b5fe915b16..0000000000 Binary files a/front/public/images/small/ExtraBees/hive/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hive/1.png b/front/public/images/small/ExtraBees/hive/1.png deleted file mode 100644 index fbdae51d2f..0000000000 Binary files a/front/public/images/small/ExtraBees/hive/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hive/2.png b/front/public/images/small/ExtraBees/hive/2.png deleted file mode 100644 index fa774dbba1..0000000000 Binary files a/front/public/images/small/ExtraBees/hive/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hive/3.png b/front/public/images/small/ExtraBees/hive/3.png deleted file mode 100644 index 0c67c7c4be..0000000000 Binary files a/front/public/images/small/ExtraBees/hive/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hiveFrame.cage/0.png b/front/public/images/small/ExtraBees/hiveFrame.cage/0.png deleted file mode 100644 index 60b0f9a4ce..0000000000 Binary files a/front/public/images/small/ExtraBees/hiveFrame.cage/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hiveFrame.clay/0.png b/front/public/images/small/ExtraBees/hiveFrame.clay/0.png deleted file mode 100644 index 8ebe122848..0000000000 Binary files a/front/public/images/small/ExtraBees/hiveFrame.clay/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hiveFrame.cocoa/0.png b/front/public/images/small/ExtraBees/hiveFrame.cocoa/0.png deleted file mode 100644 index 3b816d7d72..0000000000 Binary files a/front/public/images/small/ExtraBees/hiveFrame.cocoa/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hiveFrame.debug/0.png b/front/public/images/small/ExtraBees/hiveFrame.debug/0.png deleted file mode 100644 index a3ebce1c08..0000000000 Binary files a/front/public/images/small/ExtraBees/hiveFrame.debug/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/hiveFrame.soul/0.png b/front/public/images/small/ExtraBees/hiveFrame.soul/0.png deleted file mode 100644 index c360b4fba6..0000000000 Binary files a/front/public/images/small/ExtraBees/hiveFrame.soul/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/10.png b/front/public/images/small/ExtraBees/honeyComb/10.png deleted file mode 100644 index c81345fd65..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/13.png b/front/public/images/small/ExtraBees/honeyComb/13.png deleted file mode 100644 index 616dc74114..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/15.png b/front/public/images/small/ExtraBees/honeyComb/15.png deleted file mode 100644 index c8e43b57a9..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/16.png b/front/public/images/small/ExtraBees/honeyComb/16.png deleted file mode 100644 index f66efd6427..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/17.png b/front/public/images/small/ExtraBees/honeyComb/17.png deleted file mode 100644 index 9d8c4c9434..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/18.png b/front/public/images/small/ExtraBees/honeyComb/18.png deleted file mode 100644 index f7727cbc6f..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/19.png b/front/public/images/small/ExtraBees/honeyComb/19.png deleted file mode 100644 index 1ab4d48749..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/20.png b/front/public/images/small/ExtraBees/honeyComb/20.png deleted file mode 100644 index 5d36e0bdbf..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/24.png b/front/public/images/small/ExtraBees/honeyComb/24.png deleted file mode 100644 index 3f8a05311f..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/24.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/25.png b/front/public/images/small/ExtraBees/honeyComb/25.png deleted file mode 100644 index 04fb2b85dd..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/25.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/26.png b/front/public/images/small/ExtraBees/honeyComb/26.png deleted file mode 100644 index ec7a7fbb0f..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/26.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/27.png b/front/public/images/small/ExtraBees/honeyComb/27.png deleted file mode 100644 index 1509e09f57..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/27.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/3.png b/front/public/images/small/ExtraBees/honeyComb/3.png deleted file mode 100644 index ccbb4cac26..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/30.png b/front/public/images/small/ExtraBees/honeyComb/30.png deleted file mode 100644 index ddb1b3ec77..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/30.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/31.png b/front/public/images/small/ExtraBees/honeyComb/31.png deleted file mode 100644 index 92c83ae7b0..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/31.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/32.png b/front/public/images/small/ExtraBees/honeyComb/32.png deleted file mode 100644 index 05c5964505..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/33.png b/front/public/images/small/ExtraBees/honeyComb/33.png deleted file mode 100644 index 11a6d432b4..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/34.png b/front/public/images/small/ExtraBees/honeyComb/34.png deleted file mode 100644 index d1a2167591..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/35.png b/front/public/images/small/ExtraBees/honeyComb/35.png deleted file mode 100644 index dd9c72c84e..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/35.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/36.png b/front/public/images/small/ExtraBees/honeyComb/36.png deleted file mode 100644 index 5e08e60982..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/36.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/37.png b/front/public/images/small/ExtraBees/honeyComb/37.png deleted file mode 100644 index 11a6d432b4..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/37.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/39.png b/front/public/images/small/ExtraBees/honeyComb/39.png deleted file mode 100644 index c57826e2bc..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/39.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/4.png b/front/public/images/small/ExtraBees/honeyComb/4.png deleted file mode 100644 index d31152fba3..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/40.png b/front/public/images/small/ExtraBees/honeyComb/40.png deleted file mode 100644 index 138f2e90d7..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/40.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/41.png b/front/public/images/small/ExtraBees/honeyComb/41.png deleted file mode 100644 index 3b13c13162..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/41.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/42.png b/front/public/images/small/ExtraBees/honeyComb/42.png deleted file mode 100644 index 1576bfef6d..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/42.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/5.png b/front/public/images/small/ExtraBees/honeyComb/5.png deleted file mode 100644 index e2c448b079..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/59.png b/front/public/images/small/ExtraBees/honeyComb/59.png deleted file mode 100644 index 0c04743ac8..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/59.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/6.png b/front/public/images/small/ExtraBees/honeyComb/6.png deleted file mode 100644 index d66f12ed07..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/61.png b/front/public/images/small/ExtraBees/honeyComb/61.png deleted file mode 100644 index f307147197..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/61.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/62.png b/front/public/images/small/ExtraBees/honeyComb/62.png deleted file mode 100644 index f8cddf732e..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/62.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/64.png b/front/public/images/small/ExtraBees/honeyComb/64.png deleted file mode 100644 index e8c7d6d240..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/64.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/65.png b/front/public/images/small/ExtraBees/honeyComb/65.png deleted file mode 100644 index 3417e200c5..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/65.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/7.png b/front/public/images/small/ExtraBees/honeyComb/7.png deleted file mode 100644 index fba01bc17b..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/8.png b/front/public/images/small/ExtraBees/honeyComb/8.png deleted file mode 100644 index b6f65f6b8c..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyComb/9.png b/front/public/images/small/ExtraBees/honeyComb/9.png deleted file mode 100644 index f2d6190ced..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyComb/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/1.png b/front/public/images/small/ExtraBees/honeyDrop/1.png deleted file mode 100644 index 8bc72b6eb9..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/10.png b/front/public/images/small/ExtraBees/honeyDrop/10.png deleted file mode 100644 index fffdb9a4e2..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/11.png b/front/public/images/small/ExtraBees/honeyDrop/11.png deleted file mode 100644 index 1f6052a37c..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/12.png b/front/public/images/small/ExtraBees/honeyDrop/12.png deleted file mode 100644 index 96aaf1bf92..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/13.png b/front/public/images/small/ExtraBees/honeyDrop/13.png deleted file mode 100644 index 056bc144e6..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/14.png b/front/public/images/small/ExtraBees/honeyDrop/14.png deleted file mode 100644 index 4af5d47b35..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/15.png b/front/public/images/small/ExtraBees/honeyDrop/15.png deleted file mode 100644 index 95ae043136..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/16.png b/front/public/images/small/ExtraBees/honeyDrop/16.png deleted file mode 100644 index d3b95ee4f1..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/17.png b/front/public/images/small/ExtraBees/honeyDrop/17.png deleted file mode 100644 index d362429dab..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/18.png b/front/public/images/small/ExtraBees/honeyDrop/18.png deleted file mode 100644 index e2285e8ff3..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/19.png b/front/public/images/small/ExtraBees/honeyDrop/19.png deleted file mode 100644 index ce2dc5ff50..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/2.png b/front/public/images/small/ExtraBees/honeyDrop/2.png deleted file mode 100644 index 50b6e24559..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/20.png b/front/public/images/small/ExtraBees/honeyDrop/20.png deleted file mode 100644 index 42d0bc2e82..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/21.png b/front/public/images/small/ExtraBees/honeyDrop/21.png deleted file mode 100644 index 691bb29ad2..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/21.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/22.png b/front/public/images/small/ExtraBees/honeyDrop/22.png deleted file mode 100644 index f57720e678..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/22.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/23.png b/front/public/images/small/ExtraBees/honeyDrop/23.png deleted file mode 100644 index ec545bd87e..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/23.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/3.png b/front/public/images/small/ExtraBees/honeyDrop/3.png deleted file mode 100644 index 6dcfadc809..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/4.png b/front/public/images/small/ExtraBees/honeyDrop/4.png deleted file mode 100644 index 9bead670d7..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/5.png b/front/public/images/small/ExtraBees/honeyDrop/5.png deleted file mode 100644 index 5472414a02..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/6.png b/front/public/images/small/ExtraBees/honeyDrop/6.png deleted file mode 100644 index 4088719be9..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/7.png b/front/public/images/small/ExtraBees/honeyDrop/7.png deleted file mode 100644 index 93675df376..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/8.png b/front/public/images/small/ExtraBees/honeyDrop/8.png deleted file mode 100644 index 0835df497b..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/honeyDrop/9.png b/front/public/images/small/ExtraBees/honeyDrop/9.png deleted file mode 100644 index 1595daceaa..0000000000 Binary files a/front/public/images/small/ExtraBees/honeyDrop/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/0.png b/front/public/images/small/ExtraBees/misc/0.png deleted file mode 100644 index bfaeb4647c..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/1.png b/front/public/images/small/ExtraBees/misc/1.png deleted file mode 100644 index 56decf47c8..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/10.png b/front/public/images/small/ExtraBees/misc/10.png deleted file mode 100644 index e1f9acce85..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/11.png b/front/public/images/small/ExtraBees/misc/11.png deleted file mode 100644 index c49c250510..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/12.png b/front/public/images/small/ExtraBees/misc/12.png deleted file mode 100644 index f60e629c5f..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/13.png b/front/public/images/small/ExtraBees/misc/13.png deleted file mode 100644 index 99fdcdac64..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/14.png b/front/public/images/small/ExtraBees/misc/14.png deleted file mode 100644 index e99044edfe..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/15.png b/front/public/images/small/ExtraBees/misc/15.png deleted file mode 100644 index be37ce7bee..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/16.png b/front/public/images/small/ExtraBees/misc/16.png deleted file mode 100644 index 0011670aad..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/17.png b/front/public/images/small/ExtraBees/misc/17.png deleted file mode 100644 index 6c8e046d54..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/18.png b/front/public/images/small/ExtraBees/misc/18.png deleted file mode 100644 index cc13fb7e00..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/19.png b/front/public/images/small/ExtraBees/misc/19.png deleted file mode 100644 index 877df04aa9..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/2.png b/front/public/images/small/ExtraBees/misc/2.png deleted file mode 100644 index 7754aee0a0..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/20.png b/front/public/images/small/ExtraBees/misc/20.png deleted file mode 100644 index 9053fd9653..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/21.png b/front/public/images/small/ExtraBees/misc/21.png deleted file mode 100644 index bdd9da27f0..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/21.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/22.png b/front/public/images/small/ExtraBees/misc/22.png deleted file mode 100644 index 050916c308..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/22.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/23.png b/front/public/images/small/ExtraBees/misc/23.png deleted file mode 100644 index 0ab35e5406..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/23.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/24.png b/front/public/images/small/ExtraBees/misc/24.png deleted file mode 100644 index 8404fe2917..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/24.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/25.png b/front/public/images/small/ExtraBees/misc/25.png deleted file mode 100644 index 26ffb4e74d..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/25.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/26.png b/front/public/images/small/ExtraBees/misc/26.png deleted file mode 100644 index ccbb56a44c..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/26.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/3.png b/front/public/images/small/ExtraBees/misc/3.png deleted file mode 100644 index e995c10092..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/4.png b/front/public/images/small/ExtraBees/misc/4.png deleted file mode 100644 index b30f126c03..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/5.png b/front/public/images/small/ExtraBees/misc/5.png deleted file mode 100644 index fb452ca730..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/6.png b/front/public/images/small/ExtraBees/misc/6.png deleted file mode 100644 index 0640fc6773..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/7.png b/front/public/images/small/ExtraBees/misc/7.png deleted file mode 100644 index a3d3a515e1..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/8.png b/front/public/images/small/ExtraBees/misc/8.png deleted file mode 100644 index 4a1bbac351..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/misc/9.png b/front/public/images/small/ExtraBees/misc/9.png deleted file mode 100644 index 0c04061d0c..0000000000 Binary files a/front/public/images/small/ExtraBees/misc/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/propolis/0.png b/front/public/images/small/ExtraBees/propolis/0.png deleted file mode 100644 index 97ab17f057..0000000000 Binary files a/front/public/images/small/ExtraBees/propolis/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/propolis/1.png b/front/public/images/small/ExtraBees/propolis/1.png deleted file mode 100644 index 531881e76e..0000000000 Binary files a/front/public/images/small/ExtraBees/propolis/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/propolis/2.png b/front/public/images/small/ExtraBees/propolis/2.png deleted file mode 100644 index cd16c55154..0000000000 Binary files a/front/public/images/small/ExtraBees/propolis/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraBees/propolis/3.png b/front/public/images/small/ExtraBees/propolis/3.png deleted file mode 100644 index d8c7b74a11..0000000000 Binary files a/front/public/images/small/ExtraBees/propolis/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/carpentry/0.png b/front/public/images/small/ExtraTrees/carpentry/0.png deleted file mode 100644 index ffec8c8a46..0000000000 Binary files a/front/public/images/small/ExtraTrees/carpentry/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/carpentry/1.png b/front/public/images/small/ExtraTrees/carpentry/1.png deleted file mode 100644 index fb2ffb974c..0000000000 Binary files a/front/public/images/small/ExtraTrees/carpentry/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/carpentry/2.png b/front/public/images/small/ExtraTrees/carpentry/2.png deleted file mode 100644 index c6dfeee36e..0000000000 Binary files a/front/public/images/small/ExtraTrees/carpentry/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/carpentry/3.png b/front/public/images/small/ExtraTrees/carpentry/3.png deleted file mode 100644 index fcca7fd881..0000000000 Binary files a/front/public/images/small/ExtraTrees/carpentry/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/carpentry/4.png b/front/public/images/small/ExtraTrees/carpentry/4.png deleted file mode 100644 index 47269af999..0000000000 Binary files a/front/public/images/small/ExtraTrees/carpentry/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/carpentry/5.png b/front/public/images/small/ExtraTrees/carpentry/5.png deleted file mode 100644 index aae0f79303..0000000000 Binary files a/front/public/images/small/ExtraTrees/carpentry/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/carpentry/6.png b/front/public/images/small/ExtraTrees/carpentry/6.png deleted file mode 100644 index 39d93a4bed..0000000000 Binary files a/front/public/images/small/ExtraTrees/carpentry/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/database/0.png b/front/public/images/small/ExtraTrees/database/0.png deleted file mode 100644 index 4d41798fb1..0000000000 Binary files a/front/public/images/small/ExtraTrees/database/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/database/1.png b/front/public/images/small/ExtraTrees/database/1.png deleted file mode 100644 index cf9eeb261e..0000000000 Binary files a/front/public/images/small/ExtraTrees/database/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/databaseMoth/0.png b/front/public/images/small/ExtraTrees/databaseMoth/0.png deleted file mode 100644 index d82e7ab311..0000000000 Binary files a/front/public/images/small/ExtraTrees/databaseMoth/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/databaseMoth/1.png b/front/public/images/small/ExtraTrees/databaseMoth/1.png deleted file mode 100644 index 2ba7319840..0000000000 Binary files a/front/public/images/small/ExtraTrees/databaseMoth/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/0.png b/front/public/images/small/ExtraTrees/door/0.png deleted file mode 100644 index b836e6a39f..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/1.png b/front/public/images/small/ExtraTrees/door/1.png deleted file mode 100644 index ee16a711f4..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/128.png b/front/public/images/small/ExtraTrees/door/128.png deleted file mode 100644 index bb4d05d60a..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/128.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/129.png b/front/public/images/small/ExtraTrees/door/129.png deleted file mode 100644 index 2009e77971..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/129.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/130.png b/front/public/images/small/ExtraTrees/door/130.png deleted file mode 100644 index 091e237fa0..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/130.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/131.png b/front/public/images/small/ExtraTrees/door/131.png deleted file mode 100644 index 9de623969c..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/131.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/132.png b/front/public/images/small/ExtraTrees/door/132.png deleted file mode 100644 index de8ab5129b..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/132.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/133.png b/front/public/images/small/ExtraTrees/door/133.png deleted file mode 100644 index 660399e9e3..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/133.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/134.png b/front/public/images/small/ExtraTrees/door/134.png deleted file mode 100644 index bb544d64f9..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/134.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/135.png b/front/public/images/small/ExtraTrees/door/135.png deleted file mode 100644 index 8829c589fe..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/135.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/136.png b/front/public/images/small/ExtraTrees/door/136.png deleted file mode 100644 index 70fff306c6..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/136.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/137.png b/front/public/images/small/ExtraTrees/door/137.png deleted file mode 100644 index 7530760d42..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/137.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/138.png b/front/public/images/small/ExtraTrees/door/138.png deleted file mode 100644 index bc6f08be68..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/138.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/139.png b/front/public/images/small/ExtraTrees/door/139.png deleted file mode 100644 index 6876ee406b..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/139.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/140.png b/front/public/images/small/ExtraTrees/door/140.png deleted file mode 100644 index fe9a62a46e..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/140.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/141.png b/front/public/images/small/ExtraTrees/door/141.png deleted file mode 100644 index 0afc26dc73..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/141.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/142.png b/front/public/images/small/ExtraTrees/door/142.png deleted file mode 100644 index 9aeb8b6cf0..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/142.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/143.png b/front/public/images/small/ExtraTrees/door/143.png deleted file mode 100644 index 0bf2219a7c..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/143.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/144.png b/front/public/images/small/ExtraTrees/door/144.png deleted file mode 100644 index f21fd4c25b..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/144.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/145.png b/front/public/images/small/ExtraTrees/door/145.png deleted file mode 100644 index e4c434c383..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/145.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/146.png b/front/public/images/small/ExtraTrees/door/146.png deleted file mode 100644 index 2a91ddd3ba..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/146.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/147.png b/front/public/images/small/ExtraTrees/door/147.png deleted file mode 100644 index 2012be5f30..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/147.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/148.png b/front/public/images/small/ExtraTrees/door/148.png deleted file mode 100644 index 28e99fed17..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/148.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/149.png b/front/public/images/small/ExtraTrees/door/149.png deleted file mode 100644 index 0a8b99a494..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/149.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/150.png b/front/public/images/small/ExtraTrees/door/150.png deleted file mode 100644 index ec025f1259..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/150.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/151.png b/front/public/images/small/ExtraTrees/door/151.png deleted file mode 100644 index ee07038012..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/151.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/152.png b/front/public/images/small/ExtraTrees/door/152.png deleted file mode 100644 index bd4d6d1664..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/152.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/153.png b/front/public/images/small/ExtraTrees/door/153.png deleted file mode 100644 index fd774d6c1c..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/153.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/154.png b/front/public/images/small/ExtraTrees/door/154.png deleted file mode 100644 index d0e6a436a2..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/154.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/155.png b/front/public/images/small/ExtraTrees/door/155.png deleted file mode 100644 index a563be7367..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/155.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/156.png b/front/public/images/small/ExtraTrees/door/156.png deleted file mode 100644 index d42eca9922..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/156.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/2.png b/front/public/images/small/ExtraTrees/door/2.png deleted file mode 100644 index df4d50960e..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/3.png b/front/public/images/small/ExtraTrees/door/3.png deleted file mode 100644 index 562eaaf916..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/32.png b/front/public/images/small/ExtraTrees/door/32.png deleted file mode 100644 index 5e376677fe..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/33.png b/front/public/images/small/ExtraTrees/door/33.png deleted file mode 100644 index 1ca5998db2..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/34.png b/front/public/images/small/ExtraTrees/door/34.png deleted file mode 100644 index 6c75711890..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/35.png b/front/public/images/small/ExtraTrees/door/35.png deleted file mode 100644 index 7872abf985..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/35.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/36.png b/front/public/images/small/ExtraTrees/door/36.png deleted file mode 100644 index 9ffb185c02..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/36.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/37.png b/front/public/images/small/ExtraTrees/door/37.png deleted file mode 100644 index 0eca2c8d40..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/37.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/38.png b/front/public/images/small/ExtraTrees/door/38.png deleted file mode 100644 index 9e92788a36..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/38.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/39.png b/front/public/images/small/ExtraTrees/door/39.png deleted file mode 100644 index 2dc240c2e2..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/39.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/4.png b/front/public/images/small/ExtraTrees/door/4.png deleted file mode 100644 index e2ca84badb..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/40.png b/front/public/images/small/ExtraTrees/door/40.png deleted file mode 100644 index 6177936e4e..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/40.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/41.png b/front/public/images/small/ExtraTrees/door/41.png deleted file mode 100644 index 63aa59b580..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/41.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/42.png b/front/public/images/small/ExtraTrees/door/42.png deleted file mode 100644 index f7169d3de8..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/42.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/43.png b/front/public/images/small/ExtraTrees/door/43.png deleted file mode 100644 index e206abc07a..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/43.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/44.png b/front/public/images/small/ExtraTrees/door/44.png deleted file mode 100644 index a585f797f4..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/44.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/45.png b/front/public/images/small/ExtraTrees/door/45.png deleted file mode 100644 index 7497ee9126..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/45.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/46.png b/front/public/images/small/ExtraTrees/door/46.png deleted file mode 100644 index 8c739ae401..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/46.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/47.png b/front/public/images/small/ExtraTrees/door/47.png deleted file mode 100644 index 12adbb0022..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/47.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/48.png b/front/public/images/small/ExtraTrees/door/48.png deleted file mode 100644 index 68712fe6bf..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/48.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/49.png b/front/public/images/small/ExtraTrees/door/49.png deleted file mode 100644 index 494f0d9262..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/49.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/5.png b/front/public/images/small/ExtraTrees/door/5.png deleted file mode 100644 index 460787436f..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/50.png b/front/public/images/small/ExtraTrees/door/50.png deleted file mode 100644 index d378737812..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/50.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/51.png b/front/public/images/small/ExtraTrees/door/51.png deleted file mode 100644 index 1181c7caa1..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/51.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/52.png b/front/public/images/small/ExtraTrees/door/52.png deleted file mode 100644 index 366844177e..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/52.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/53.png b/front/public/images/small/ExtraTrees/door/53.png deleted file mode 100644 index a8b1d23b22..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/53.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/54.png b/front/public/images/small/ExtraTrees/door/54.png deleted file mode 100644 index e6a67421de..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/54.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/55.png b/front/public/images/small/ExtraTrees/door/55.png deleted file mode 100644 index 6b26e7f4c5..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/55.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/56.png b/front/public/images/small/ExtraTrees/door/56.png deleted file mode 100644 index 8c4805741e..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/56.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/57.png b/front/public/images/small/ExtraTrees/door/57.png deleted file mode 100644 index 234816d1cd..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/57.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/58.png b/front/public/images/small/ExtraTrees/door/58.png deleted file mode 100644 index 096b393fbe..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/58.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/59.png b/front/public/images/small/ExtraTrees/door/59.png deleted file mode 100644 index fbf75fb158..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/59.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/60.png b/front/public/images/small/ExtraTrees/door/60.png deleted file mode 100644 index 68b75028c9..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/60.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/61.png b/front/public/images/small/ExtraTrees/door/61.png deleted file mode 100644 index adb109a879..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/61.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/62.png b/front/public/images/small/ExtraTrees/door/62.png deleted file mode 100644 index 0c63d64c1a..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/62.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/63.png b/front/public/images/small/ExtraTrees/door/63.png deleted file mode 100644 index 01d7079e86..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/63.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/64.png b/front/public/images/small/ExtraTrees/door/64.png deleted file mode 100644 index 6b169554d3..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/64.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/65.png b/front/public/images/small/ExtraTrees/door/65.png deleted file mode 100644 index bdfa2fd0ed..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/65.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/door/66.png b/front/public/images/small/ExtraTrees/door/66.png deleted file mode 100644 index 330debdba9..0000000000 Binary files a/front/public/images/small/ExtraTrees/door/66.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/0.png b/front/public/images/small/ExtraTrees/doubleSlab/0.png deleted file mode 100644 index c62a6d8cac..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/1.png b/front/public/images/small/ExtraTrees/doubleSlab/1.png deleted file mode 100644 index 0a018aa069..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/10.png b/front/public/images/small/ExtraTrees/doubleSlab/10.png deleted file mode 100644 index 88dcf91446..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/11.png b/front/public/images/small/ExtraTrees/doubleSlab/11.png deleted file mode 100644 index 821af77603..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/12.png b/front/public/images/small/ExtraTrees/doubleSlab/12.png deleted file mode 100644 index 2face4a78f..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/13.png b/front/public/images/small/ExtraTrees/doubleSlab/13.png deleted file mode 100644 index dfcf0a20af..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/14.png b/front/public/images/small/ExtraTrees/doubleSlab/14.png deleted file mode 100644 index a42d4075ce..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/15.png b/front/public/images/small/ExtraTrees/doubleSlab/15.png deleted file mode 100644 index ec078641c8..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/2.png b/front/public/images/small/ExtraTrees/doubleSlab/2.png deleted file mode 100644 index aca5750a46..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/3.png b/front/public/images/small/ExtraTrees/doubleSlab/3.png deleted file mode 100644 index b1693f96d0..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/4.png b/front/public/images/small/ExtraTrees/doubleSlab/4.png deleted file mode 100644 index f320b1b222..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/5.png b/front/public/images/small/ExtraTrees/doubleSlab/5.png deleted file mode 100644 index 5e509d2839..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/6.png b/front/public/images/small/ExtraTrees/doubleSlab/6.png deleted file mode 100644 index 74abc7c275..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/7.png b/front/public/images/small/ExtraTrees/doubleSlab/7.png deleted file mode 100644 index af94e65648..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/8.png b/front/public/images/small/ExtraTrees/doubleSlab/8.png deleted file mode 100644 index 25ad8f112a..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/doubleSlab/9.png b/front/public/images/small/ExtraTrees/doubleSlab/9.png deleted file mode 100644 index d46f6e3df0..0000000000 Binary files a/front/public/images/small/ExtraTrees/doubleSlab/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/durableHammer/0.png b/front/public/images/small/ExtraTrees/durableHammer/0.png deleted file mode 100644 index edbaf34759..0000000000 Binary files a/front/public/images/small/ExtraTrees/durableHammer/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/1.png b/front/public/images/small/ExtraTrees/fence/1.png deleted file mode 100644 index 408878a06d..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/2.png b/front/public/images/small/ExtraTrees/fence/2.png deleted file mode 100644 index 1a52888e86..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/3.png b/front/public/images/small/ExtraTrees/fence/3.png deleted file mode 100644 index 1c62778ca1..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/32.png b/front/public/images/small/ExtraTrees/fence/32.png deleted file mode 100644 index fce0780584..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/33.png b/front/public/images/small/ExtraTrees/fence/33.png deleted file mode 100644 index 2125d83e1d..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/34.png b/front/public/images/small/ExtraTrees/fence/34.png deleted file mode 100644 index a6b01c37d8..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/35.png b/front/public/images/small/ExtraTrees/fence/35.png deleted file mode 100644 index b71bb7bd8e..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/35.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/36.png b/front/public/images/small/ExtraTrees/fence/36.png deleted file mode 100644 index 652958cd59..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/36.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/37.png b/front/public/images/small/ExtraTrees/fence/37.png deleted file mode 100644 index b25bb1cf95..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/37.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/38.png b/front/public/images/small/ExtraTrees/fence/38.png deleted file mode 100644 index 9db0e71ee2..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/38.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/39.png b/front/public/images/small/ExtraTrees/fence/39.png deleted file mode 100644 index 2e95847246..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/39.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/4.png b/front/public/images/small/ExtraTrees/fence/4.png deleted file mode 100644 index d0a0dffba8..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/40.png b/front/public/images/small/ExtraTrees/fence/40.png deleted file mode 100644 index 56166f32fe..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/40.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/41.png b/front/public/images/small/ExtraTrees/fence/41.png deleted file mode 100644 index f0a943a7df..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/41.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/42.png b/front/public/images/small/ExtraTrees/fence/42.png deleted file mode 100644 index ffa59029f3..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/42.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/43.png b/front/public/images/small/ExtraTrees/fence/43.png deleted file mode 100644 index dd4159bce6..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/43.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/44.png b/front/public/images/small/ExtraTrees/fence/44.png deleted file mode 100644 index cc7797138a..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/44.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/45.png b/front/public/images/small/ExtraTrees/fence/45.png deleted file mode 100644 index 6cbad40080..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/45.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/46.png b/front/public/images/small/ExtraTrees/fence/46.png deleted file mode 100644 index bc86b0540b..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/46.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/47.png b/front/public/images/small/ExtraTrees/fence/47.png deleted file mode 100644 index 0611ee429b..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/47.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/48.png b/front/public/images/small/ExtraTrees/fence/48.png deleted file mode 100644 index 10825c031f..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/48.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/49.png b/front/public/images/small/ExtraTrees/fence/49.png deleted file mode 100644 index 7e1b33b0fd..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/49.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/5.png b/front/public/images/small/ExtraTrees/fence/5.png deleted file mode 100644 index 3eea056e1d..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/50.png b/front/public/images/small/ExtraTrees/fence/50.png deleted file mode 100644 index 27be1679e7..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/50.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/51.png b/front/public/images/small/ExtraTrees/fence/51.png deleted file mode 100644 index 06663aca36..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/51.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/52.png b/front/public/images/small/ExtraTrees/fence/52.png deleted file mode 100644 index 130541cfbf..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/52.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/53.png b/front/public/images/small/ExtraTrees/fence/53.png deleted file mode 100644 index ca4e1f95d4..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/53.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/54.png b/front/public/images/small/ExtraTrees/fence/54.png deleted file mode 100644 index e73e4359a3..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/54.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/55.png b/front/public/images/small/ExtraTrees/fence/55.png deleted file mode 100644 index 9bbf3cb984..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/55.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/56.png b/front/public/images/small/ExtraTrees/fence/56.png deleted file mode 100644 index 6fd5e6f917..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/56.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/57.png b/front/public/images/small/ExtraTrees/fence/57.png deleted file mode 100644 index 92dcd08349..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/57.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/58.png b/front/public/images/small/ExtraTrees/fence/58.png deleted file mode 100644 index b45e83f67c..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/58.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/59.png b/front/public/images/small/ExtraTrees/fence/59.png deleted file mode 100644 index 2398235313..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/59.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/60.png b/front/public/images/small/ExtraTrees/fence/60.png deleted file mode 100644 index 624c3b34ab..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/60.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/61.png b/front/public/images/small/ExtraTrees/fence/61.png deleted file mode 100644 index cd9082b0f8..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/61.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/62.png b/front/public/images/small/ExtraTrees/fence/62.png deleted file mode 100644 index 85ae649090..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/62.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/63.png b/front/public/images/small/ExtraTrees/fence/63.png deleted file mode 100644 index 723fff9a3f..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/63.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/64.png b/front/public/images/small/ExtraTrees/fence/64.png deleted file mode 100644 index a326c1269f..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/64.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/65.png b/front/public/images/small/ExtraTrees/fence/65.png deleted file mode 100644 index a933aff43c..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/65.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/fence/66.png b/front/public/images/small/ExtraTrees/fence/66.png deleted file mode 100644 index 9ad348db77..0000000000 Binary files a/front/public/images/small/ExtraTrees/fence/66.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/0.png b/front/public/images/small/ExtraTrees/food/0.png deleted file mode 100644 index da502ee02a..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/1.png b/front/public/images/small/ExtraTrees/food/1.png deleted file mode 100644 index 84214b57ea..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/10.png b/front/public/images/small/ExtraTrees/food/10.png deleted file mode 100644 index 0cfa5a443e..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/11.png b/front/public/images/small/ExtraTrees/food/11.png deleted file mode 100644 index c5d08c94a3..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/12.png b/front/public/images/small/ExtraTrees/food/12.png deleted file mode 100644 index 5c58c4ec4c..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/13.png b/front/public/images/small/ExtraTrees/food/13.png deleted file mode 100644 index 642549b0a9..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/14.png b/front/public/images/small/ExtraTrees/food/14.png deleted file mode 100644 index bf04306c0b..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/15.png b/front/public/images/small/ExtraTrees/food/15.png deleted file mode 100644 index 8fe787c730..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/16.png b/front/public/images/small/ExtraTrees/food/16.png deleted file mode 100644 index 1f352b7cbd..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/17.png b/front/public/images/small/ExtraTrees/food/17.png deleted file mode 100644 index 51a70847fa..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/18.png b/front/public/images/small/ExtraTrees/food/18.png deleted file mode 100644 index b74868f417..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/19.png b/front/public/images/small/ExtraTrees/food/19.png deleted file mode 100644 index 2dc3081aaa..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/2.png b/front/public/images/small/ExtraTrees/food/2.png deleted file mode 100644 index 856fa36e7c..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/20.png b/front/public/images/small/ExtraTrees/food/20.png deleted file mode 100644 index aa4fbfaf49..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/21.png b/front/public/images/small/ExtraTrees/food/21.png deleted file mode 100644 index a4c1fb11a5..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/21.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/22.png b/front/public/images/small/ExtraTrees/food/22.png deleted file mode 100644 index d365e78d9a..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/22.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/23.png b/front/public/images/small/ExtraTrees/food/23.png deleted file mode 100644 index 237fbfaf35..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/23.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/24.png b/front/public/images/small/ExtraTrees/food/24.png deleted file mode 100644 index bcd4784e16..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/24.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/25.png b/front/public/images/small/ExtraTrees/food/25.png deleted file mode 100644 index ba22f28e42..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/25.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/26.png b/front/public/images/small/ExtraTrees/food/26.png deleted file mode 100644 index 3c9d981da1..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/26.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/27.png b/front/public/images/small/ExtraTrees/food/27.png deleted file mode 100644 index 4365bca64c..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/27.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/28.png b/front/public/images/small/ExtraTrees/food/28.png deleted file mode 100644 index 1d134174f5..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/28.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/29.png b/front/public/images/small/ExtraTrees/food/29.png deleted file mode 100644 index a674053565..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/29.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/3.png b/front/public/images/small/ExtraTrees/food/3.png deleted file mode 100644 index 5e8c36ea99..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/30.png b/front/public/images/small/ExtraTrees/food/30.png deleted file mode 100644 index b43901e527..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/30.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/31.png b/front/public/images/small/ExtraTrees/food/31.png deleted file mode 100644 index 946445fee1..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/31.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/32.png b/front/public/images/small/ExtraTrees/food/32.png deleted file mode 100644 index dc2cf29613..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/33.png b/front/public/images/small/ExtraTrees/food/33.png deleted file mode 100644 index bdcdeba9be..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/34.png b/front/public/images/small/ExtraTrees/food/34.png deleted file mode 100644 index 0f7afc0633..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/35.png b/front/public/images/small/ExtraTrees/food/35.png deleted file mode 100644 index 1559f10801..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/35.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/36.png b/front/public/images/small/ExtraTrees/food/36.png deleted file mode 100644 index bb86710776..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/36.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/37.png b/front/public/images/small/ExtraTrees/food/37.png deleted file mode 100644 index ed9c82757e..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/37.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/38.png b/front/public/images/small/ExtraTrees/food/38.png deleted file mode 100644 index 24c030a993..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/38.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/39.png b/front/public/images/small/ExtraTrees/food/39.png deleted file mode 100644 index 1a9b89386a..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/39.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/4.png b/front/public/images/small/ExtraTrees/food/4.png deleted file mode 100644 index 9c6a494f28..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/40.png b/front/public/images/small/ExtraTrees/food/40.png deleted file mode 100644 index a9c0d2ca3e..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/40.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/41.png b/front/public/images/small/ExtraTrees/food/41.png deleted file mode 100644 index d3a2b6c74c..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/41.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/42.png b/front/public/images/small/ExtraTrees/food/42.png deleted file mode 100644 index 6ae0348358..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/42.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/43.png b/front/public/images/small/ExtraTrees/food/43.png deleted file mode 100644 index 024172f583..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/43.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/44.png b/front/public/images/small/ExtraTrees/food/44.png deleted file mode 100644 index f0176a6303..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/44.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/45.png b/front/public/images/small/ExtraTrees/food/45.png deleted file mode 100644 index cfafa3f365..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/45.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/46.png b/front/public/images/small/ExtraTrees/food/46.png deleted file mode 100644 index 5d055e8791..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/46.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/47.png b/front/public/images/small/ExtraTrees/food/47.png deleted file mode 100644 index 274c2574a7..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/47.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/48.png b/front/public/images/small/ExtraTrees/food/48.png deleted file mode 100644 index 08e869a457..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/48.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/49.png b/front/public/images/small/ExtraTrees/food/49.png deleted file mode 100644 index 25107b3dc4..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/49.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/5.png b/front/public/images/small/ExtraTrees/food/5.png deleted file mode 100644 index b35833f616..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/50.png b/front/public/images/small/ExtraTrees/food/50.png deleted file mode 100644 index b64bf2d2e0..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/50.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/51.png b/front/public/images/small/ExtraTrees/food/51.png deleted file mode 100644 index 9f69d313c6..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/51.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/52.png b/front/public/images/small/ExtraTrees/food/52.png deleted file mode 100644 index 9675d7340a..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/52.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/53.png b/front/public/images/small/ExtraTrees/food/53.png deleted file mode 100644 index 90456d5901..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/53.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/54.png b/front/public/images/small/ExtraTrees/food/54.png deleted file mode 100644 index c220f5e953..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/54.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/55.png b/front/public/images/small/ExtraTrees/food/55.png deleted file mode 100644 index ddb6908816..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/55.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/56.png b/front/public/images/small/ExtraTrees/food/56.png deleted file mode 100644 index 16357e52f0..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/56.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/57.png b/front/public/images/small/ExtraTrees/food/57.png deleted file mode 100644 index 73ef1e3809..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/57.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/58.png b/front/public/images/small/ExtraTrees/food/58.png deleted file mode 100644 index e29c5237f3..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/58.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/59.png b/front/public/images/small/ExtraTrees/food/59.png deleted file mode 100644 index 5ce2d21ae2..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/59.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/6.png b/front/public/images/small/ExtraTrees/food/6.png deleted file mode 100644 index 7a10f66651..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/7.png b/front/public/images/small/ExtraTrees/food/7.png deleted file mode 100644 index 9c79f93dfa..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/8.png b/front/public/images/small/ExtraTrees/food/8.png deleted file mode 100644 index 5453789043..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/food/9.png b/front/public/images/small/ExtraTrees/food/9.png deleted file mode 100644 index 5adf8f6949..0000000000 Binary files a/front/public/images/small/ExtraTrees/food/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/1.png b/front/public/images/small/ExtraTrees/gate/1.png deleted file mode 100644 index b1d74cbf88..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/128.png b/front/public/images/small/ExtraTrees/gate/128.png deleted file mode 100644 index a6c8785cdb..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/128.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/129.png b/front/public/images/small/ExtraTrees/gate/129.png deleted file mode 100644 index b19d2e489d..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/129.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/130.png b/front/public/images/small/ExtraTrees/gate/130.png deleted file mode 100644 index 6dd2254f06..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/130.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/131.png b/front/public/images/small/ExtraTrees/gate/131.png deleted file mode 100644 index 19af215a09..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/131.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/132.png b/front/public/images/small/ExtraTrees/gate/132.png deleted file mode 100644 index 8217fb1779..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/132.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/133.png b/front/public/images/small/ExtraTrees/gate/133.png deleted file mode 100644 index e59aa8f13a..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/133.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/134.png b/front/public/images/small/ExtraTrees/gate/134.png deleted file mode 100644 index 88a935b693..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/134.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/135.png b/front/public/images/small/ExtraTrees/gate/135.png deleted file mode 100644 index 408496dcd7..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/135.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/136.png b/front/public/images/small/ExtraTrees/gate/136.png deleted file mode 100644 index 42cdfab01e..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/136.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/137.png b/front/public/images/small/ExtraTrees/gate/137.png deleted file mode 100644 index e3145b86ac..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/137.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/138.png b/front/public/images/small/ExtraTrees/gate/138.png deleted file mode 100644 index 6212d18f47..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/138.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/139.png b/front/public/images/small/ExtraTrees/gate/139.png deleted file mode 100644 index ed23102b30..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/139.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/140.png b/front/public/images/small/ExtraTrees/gate/140.png deleted file mode 100644 index 285e9da2b2..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/140.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/141.png b/front/public/images/small/ExtraTrees/gate/141.png deleted file mode 100644 index b6b37d5599..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/141.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/142.png b/front/public/images/small/ExtraTrees/gate/142.png deleted file mode 100644 index 26b74ade5a..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/142.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/143.png b/front/public/images/small/ExtraTrees/gate/143.png deleted file mode 100644 index db546a082b..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/143.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/144.png b/front/public/images/small/ExtraTrees/gate/144.png deleted file mode 100644 index c38a050a1c..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/144.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/145.png b/front/public/images/small/ExtraTrees/gate/145.png deleted file mode 100644 index 49f5c21fb3..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/145.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/146.png b/front/public/images/small/ExtraTrees/gate/146.png deleted file mode 100644 index 75bb1b5c69..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/146.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/147.png b/front/public/images/small/ExtraTrees/gate/147.png deleted file mode 100644 index 4be5f546b6..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/147.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/148.png b/front/public/images/small/ExtraTrees/gate/148.png deleted file mode 100644 index ec0cbb8cd4..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/148.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/149.png b/front/public/images/small/ExtraTrees/gate/149.png deleted file mode 100644 index 590b3852db..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/149.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/150.png b/front/public/images/small/ExtraTrees/gate/150.png deleted file mode 100644 index 1de8925035..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/150.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/151.png b/front/public/images/small/ExtraTrees/gate/151.png deleted file mode 100644 index 2fbb564224..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/151.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/152.png b/front/public/images/small/ExtraTrees/gate/152.png deleted file mode 100644 index 259222a4b6..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/152.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/153.png b/front/public/images/small/ExtraTrees/gate/153.png deleted file mode 100644 index df59199dd6..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/153.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/154.png b/front/public/images/small/ExtraTrees/gate/154.png deleted file mode 100644 index fec1d1ebf6..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/154.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/155.png b/front/public/images/small/ExtraTrees/gate/155.png deleted file mode 100644 index 1540627f2d..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/155.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/156.png b/front/public/images/small/ExtraTrees/gate/156.png deleted file mode 100644 index 0671be06d1..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/156.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/2.png b/front/public/images/small/ExtraTrees/gate/2.png deleted file mode 100644 index 6eb5376da3..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/3.png b/front/public/images/small/ExtraTrees/gate/3.png deleted file mode 100644 index 5e4d3a42c8..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/32.png b/front/public/images/small/ExtraTrees/gate/32.png deleted file mode 100644 index 2508a04063..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/33.png b/front/public/images/small/ExtraTrees/gate/33.png deleted file mode 100644 index b3b27c6ba7..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/34.png b/front/public/images/small/ExtraTrees/gate/34.png deleted file mode 100644 index 2d1d05a7a4..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/35.png b/front/public/images/small/ExtraTrees/gate/35.png deleted file mode 100644 index fdd922a29c..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/35.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/36.png b/front/public/images/small/ExtraTrees/gate/36.png deleted file mode 100644 index 695932dd8a..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/36.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/37.png b/front/public/images/small/ExtraTrees/gate/37.png deleted file mode 100644 index 7ba715a4d2..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/37.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/38.png b/front/public/images/small/ExtraTrees/gate/38.png deleted file mode 100644 index a8ab8fbb48..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/38.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/39.png b/front/public/images/small/ExtraTrees/gate/39.png deleted file mode 100644 index ac8ff13512..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/39.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/4.png b/front/public/images/small/ExtraTrees/gate/4.png deleted file mode 100644 index 5b0de8c793..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/40.png b/front/public/images/small/ExtraTrees/gate/40.png deleted file mode 100644 index 65f8c51c6a..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/40.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/41.png b/front/public/images/small/ExtraTrees/gate/41.png deleted file mode 100644 index 43ef91e72b..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/41.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/42.png b/front/public/images/small/ExtraTrees/gate/42.png deleted file mode 100644 index 3055231e2c..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/42.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/43.png b/front/public/images/small/ExtraTrees/gate/43.png deleted file mode 100644 index 91fb8124e8..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/43.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/44.png b/front/public/images/small/ExtraTrees/gate/44.png deleted file mode 100644 index 0578339595..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/44.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/45.png b/front/public/images/small/ExtraTrees/gate/45.png deleted file mode 100644 index b5aca8f93f..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/45.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/46.png b/front/public/images/small/ExtraTrees/gate/46.png deleted file mode 100644 index 7fb8d2df5b..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/46.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/47.png b/front/public/images/small/ExtraTrees/gate/47.png deleted file mode 100644 index aa9965c4a0..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/47.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/48.png b/front/public/images/small/ExtraTrees/gate/48.png deleted file mode 100644 index 33fc2f0219..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/48.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/49.png b/front/public/images/small/ExtraTrees/gate/49.png deleted file mode 100644 index 5fbeaf3c8d..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/49.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/5.png b/front/public/images/small/ExtraTrees/gate/5.png deleted file mode 100644 index 366948f1b0..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/50.png b/front/public/images/small/ExtraTrees/gate/50.png deleted file mode 100644 index e2fdee28d2..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/50.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/51.png b/front/public/images/small/ExtraTrees/gate/51.png deleted file mode 100644 index 8d5879b97f..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/51.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/52.png b/front/public/images/small/ExtraTrees/gate/52.png deleted file mode 100644 index 646fad8fb8..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/52.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/53.png b/front/public/images/small/ExtraTrees/gate/53.png deleted file mode 100644 index 7217527df2..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/53.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/54.png b/front/public/images/small/ExtraTrees/gate/54.png deleted file mode 100644 index db40e68665..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/54.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/55.png b/front/public/images/small/ExtraTrees/gate/55.png deleted file mode 100644 index 39d77c7694..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/55.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/56.png b/front/public/images/small/ExtraTrees/gate/56.png deleted file mode 100644 index 5deb9b8167..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/56.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/57.png b/front/public/images/small/ExtraTrees/gate/57.png deleted file mode 100644 index 6f85d8d51f..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/57.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/58.png b/front/public/images/small/ExtraTrees/gate/58.png deleted file mode 100644 index 01239bcef2..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/58.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/59.png b/front/public/images/small/ExtraTrees/gate/59.png deleted file mode 100644 index 3f37e92e5b..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/59.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/60.png b/front/public/images/small/ExtraTrees/gate/60.png deleted file mode 100644 index 470190a77a..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/60.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/61.png b/front/public/images/small/ExtraTrees/gate/61.png deleted file mode 100644 index f9f8d51a4f..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/61.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/62.png b/front/public/images/small/ExtraTrees/gate/62.png deleted file mode 100644 index 64d0b93df5..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/62.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/63.png b/front/public/images/small/ExtraTrees/gate/63.png deleted file mode 100644 index cba279bc0f..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/63.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/64.png b/front/public/images/small/ExtraTrees/gate/64.png deleted file mode 100644 index b25ecea115..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/64.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/65.png b/front/public/images/small/ExtraTrees/gate/65.png deleted file mode 100644 index 778818cadb..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/65.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/gate/66.png b/front/public/images/small/ExtraTrees/gate/66.png deleted file mode 100644 index d735ebc7fb..0000000000 Binary files a/front/public/images/small/ExtraTrees/gate/66.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/hammer/0.png b/front/public/images/small/ExtraTrees/hammer/0.png deleted file mode 100644 index dc06adb8ad..0000000000 Binary files a/front/public/images/small/ExtraTrees/hammer/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/0.png b/front/public/images/small/ExtraTrees/log/0.png deleted file mode 100644 index 45b9e8a350..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/1.png b/front/public/images/small/ExtraTrees/log/1.png deleted file mode 100644 index 5791a156ff..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/10.png b/front/public/images/small/ExtraTrees/log/10.png deleted file mode 100644 index fd82a32153..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/11.png b/front/public/images/small/ExtraTrees/log/11.png deleted file mode 100644 index ed098e4f56..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/12.png b/front/public/images/small/ExtraTrees/log/12.png deleted file mode 100644 index b20ee20a63..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/13.png b/front/public/images/small/ExtraTrees/log/13.png deleted file mode 100644 index 5a084a9b90..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/14.png b/front/public/images/small/ExtraTrees/log/14.png deleted file mode 100644 index 60403c36ca..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/15.png b/front/public/images/small/ExtraTrees/log/15.png deleted file mode 100644 index 5c6ec45464..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/16.png b/front/public/images/small/ExtraTrees/log/16.png deleted file mode 100644 index 0e0e4ccc17..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/17.png b/front/public/images/small/ExtraTrees/log/17.png deleted file mode 100644 index 80a1e89113..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/18.png b/front/public/images/small/ExtraTrees/log/18.png deleted file mode 100644 index d9b614620c..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/19.png b/front/public/images/small/ExtraTrees/log/19.png deleted file mode 100644 index 0b8d37ed6f..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/2.png b/front/public/images/small/ExtraTrees/log/2.png deleted file mode 100644 index 1c4cf62603..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/20.png b/front/public/images/small/ExtraTrees/log/20.png deleted file mode 100644 index 0990b066d0..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/21.png b/front/public/images/small/ExtraTrees/log/21.png deleted file mode 100644 index 2b29f6e191..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/21.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/22.png b/front/public/images/small/ExtraTrees/log/22.png deleted file mode 100644 index e515144a6d..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/22.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/23.png b/front/public/images/small/ExtraTrees/log/23.png deleted file mode 100644 index 79c2727aa8..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/23.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/24.png b/front/public/images/small/ExtraTrees/log/24.png deleted file mode 100644 index bfddc1d8ec..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/24.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/25.png b/front/public/images/small/ExtraTrees/log/25.png deleted file mode 100644 index c9ed30685b..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/25.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/26.png b/front/public/images/small/ExtraTrees/log/26.png deleted file mode 100644 index 121f7f9037..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/26.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/27.png b/front/public/images/small/ExtraTrees/log/27.png deleted file mode 100644 index 0d1de26a55..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/27.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/28.png b/front/public/images/small/ExtraTrees/log/28.png deleted file mode 100644 index f882198fac..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/28.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/29.png b/front/public/images/small/ExtraTrees/log/29.png deleted file mode 100644 index 4505b8085d..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/29.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/3.png b/front/public/images/small/ExtraTrees/log/3.png deleted file mode 100644 index 1d03a4e977..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/30.png b/front/public/images/small/ExtraTrees/log/30.png deleted file mode 100644 index f2356c3978..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/30.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/31.png b/front/public/images/small/ExtraTrees/log/31.png deleted file mode 100644 index 240005b428..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/31.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/32.png b/front/public/images/small/ExtraTrees/log/32.png deleted file mode 100644 index ac1fcef2d9..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/33.png b/front/public/images/small/ExtraTrees/log/33.png deleted file mode 100644 index ba54ac0584..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/34.png b/front/public/images/small/ExtraTrees/log/34.png deleted file mode 100644 index 8d96265c6c..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/35.png b/front/public/images/small/ExtraTrees/log/35.png deleted file mode 100644 index a3eff8bc29..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/35.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/36.png b/front/public/images/small/ExtraTrees/log/36.png deleted file mode 100644 index ed580f4053..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/36.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/37.png b/front/public/images/small/ExtraTrees/log/37.png deleted file mode 100644 index 8c3543dae6..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/37.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/38.png b/front/public/images/small/ExtraTrees/log/38.png deleted file mode 100644 index 7fdf9d8348..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/38.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/39.png b/front/public/images/small/ExtraTrees/log/39.png deleted file mode 100644 index 3ede152f7f..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/39.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/4.png b/front/public/images/small/ExtraTrees/log/4.png deleted file mode 100644 index d50d25eb11..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/5.png b/front/public/images/small/ExtraTrees/log/5.png deleted file mode 100644 index 3b6cb3c22d..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/6.png b/front/public/images/small/ExtraTrees/log/6.png deleted file mode 100644 index 8077646473..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/7.png b/front/public/images/small/ExtraTrees/log/7.png deleted file mode 100644 index 81abb9816e..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/8.png b/front/public/images/small/ExtraTrees/log/8.png deleted file mode 100644 index 36767f276d..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/log/9.png b/front/public/images/small/ExtraTrees/log/9.png deleted file mode 100644 index c74135f423..0000000000 Binary files a/front/public/images/small/ExtraTrees/log/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/machine/0.png b/front/public/images/small/ExtraTrees/machine/0.png deleted file mode 100644 index 726a42de58..0000000000 Binary files a/front/public/images/small/ExtraTrees/machine/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/machine/1.png b/front/public/images/small/ExtraTrees/machine/1.png deleted file mode 100644 index 3dc94344f1..0000000000 Binary files a/front/public/images/small/ExtraTrees/machine/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/machine/2.png b/front/public/images/small/ExtraTrees/machine/2.png deleted file mode 100644 index 23770af648..0000000000 Binary files a/front/public/images/small/ExtraTrees/machine/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/machine/3.png b/front/public/images/small/ExtraTrees/machine/3.png deleted file mode 100644 index 23770af648..0000000000 Binary files a/front/public/images/small/ExtraTrees/machine/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/machine/4.png b/front/public/images/small/ExtraTrees/machine/4.png deleted file mode 100644 index b44a2f0e3a..0000000000 Binary files a/front/public/images/small/ExtraTrees/machine/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/misc/1.png b/front/public/images/small/ExtraTrees/misc/1.png deleted file mode 100644 index 03fb802684..0000000000 Binary files a/front/public/images/small/ExtraTrees/misc/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/misc/2.png b/front/public/images/small/ExtraTrees/misc/2.png deleted file mode 100644 index 91a8999bcf..0000000000 Binary files a/front/public/images/small/ExtraTrees/misc/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/misc/3.png b/front/public/images/small/ExtraTrees/misc/3.png deleted file mode 100644 index 739fd8ca3b..0000000000 Binary files a/front/public/images/small/ExtraTrees/misc/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/misc/4.png b/front/public/images/small/ExtraTrees/misc/4.png deleted file mode 100644 index e92ff74e67..0000000000 Binary files a/front/public/images/small/ExtraTrees/misc/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/misc/5.png b/front/public/images/small/ExtraTrees/misc/5.png deleted file mode 100644 index e035a30151..0000000000 Binary files a/front/public/images/small/ExtraTrees/misc/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/multifence/16387.png b/front/public/images/small/ExtraTrees/multifence/16387.png deleted file mode 100644 index c35f23b7bb..0000000000 Binary files a/front/public/images/small/ExtraTrees/multifence/16387.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/panel/0.png b/front/public/images/small/ExtraTrees/panel/0.png deleted file mode 100644 index 0336b6fffa..0000000000 Binary files a/front/public/images/small/ExtraTrees/panel/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/panel/1.png b/front/public/images/small/ExtraTrees/panel/1.png deleted file mode 100644 index eaab8de15c..0000000000 Binary files a/front/public/images/small/ExtraTrees/panel/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/panel/2.png b/front/public/images/small/ExtraTrees/panel/2.png deleted file mode 100644 index dda528d734..0000000000 Binary files a/front/public/images/small/ExtraTrees/panel/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/panel/3.png b/front/public/images/small/ExtraTrees/panel/3.png deleted file mode 100644 index e8c50d6446..0000000000 Binary files a/front/public/images/small/ExtraTrees/panel/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/panel/4.png b/front/public/images/small/ExtraTrees/panel/4.png deleted file mode 100644 index d354485516..0000000000 Binary files a/front/public/images/small/ExtraTrees/panel/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/panel/5.png b/front/public/images/small/ExtraTrees/panel/5.png deleted file mode 100644 index 32651784d1..0000000000 Binary files a/front/public/images/small/ExtraTrees/panel/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/panel/6.png b/front/public/images/small/ExtraTrees/panel/6.png deleted file mode 100644 index c81649898a..0000000000 Binary files a/front/public/images/small/ExtraTrees/panel/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/0.png b/front/public/images/small/ExtraTrees/planks/0.png deleted file mode 100644 index c62a6d8cac..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/1.png b/front/public/images/small/ExtraTrees/planks/1.png deleted file mode 100644 index 0a018aa069..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/10.png b/front/public/images/small/ExtraTrees/planks/10.png deleted file mode 100644 index 88dcf91446..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/11.png b/front/public/images/small/ExtraTrees/planks/11.png deleted file mode 100644 index 821af77603..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/12.png b/front/public/images/small/ExtraTrees/planks/12.png deleted file mode 100644 index 2face4a78f..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/13.png b/front/public/images/small/ExtraTrees/planks/13.png deleted file mode 100644 index dfcf0a20af..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/14.png b/front/public/images/small/ExtraTrees/planks/14.png deleted file mode 100644 index a42d4075ce..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/15.png b/front/public/images/small/ExtraTrees/planks/15.png deleted file mode 100644 index ec078641c8..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/16.png b/front/public/images/small/ExtraTrees/planks/16.png deleted file mode 100644 index d111f82f83..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/17.png b/front/public/images/small/ExtraTrees/planks/17.png deleted file mode 100644 index 48a1aff0cb..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/18.png b/front/public/images/small/ExtraTrees/planks/18.png deleted file mode 100644 index 2f78b89d6a..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/19.png b/front/public/images/small/ExtraTrees/planks/19.png deleted file mode 100644 index 6629f71bae..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/2.png b/front/public/images/small/ExtraTrees/planks/2.png deleted file mode 100644 index aca5750a46..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/20.png b/front/public/images/small/ExtraTrees/planks/20.png deleted file mode 100644 index 82e2ffe85c..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/21.png b/front/public/images/small/ExtraTrees/planks/21.png deleted file mode 100644 index 227754ffb4..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/21.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/22.png b/front/public/images/small/ExtraTrees/planks/22.png deleted file mode 100644 index 9363b52e6d..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/22.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/23.png b/front/public/images/small/ExtraTrees/planks/23.png deleted file mode 100644 index 2a6fe0862e..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/23.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/24.png b/front/public/images/small/ExtraTrees/planks/24.png deleted file mode 100644 index 5f93857c0d..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/24.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/25.png b/front/public/images/small/ExtraTrees/planks/25.png deleted file mode 100644 index 687e3baaac..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/25.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/26.png b/front/public/images/small/ExtraTrees/planks/26.png deleted file mode 100644 index 5311359a2c..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/26.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/27.png b/front/public/images/small/ExtraTrees/planks/27.png deleted file mode 100644 index 971c96932c..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/27.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/28.png b/front/public/images/small/ExtraTrees/planks/28.png deleted file mode 100644 index 85d9d3c8f6..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/28.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/29.png b/front/public/images/small/ExtraTrees/planks/29.png deleted file mode 100644 index c20064a8d5..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/29.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/3.png b/front/public/images/small/ExtraTrees/planks/3.png deleted file mode 100644 index b1693f96d0..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/30.png b/front/public/images/small/ExtraTrees/planks/30.png deleted file mode 100644 index e1fe8dbc62..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/30.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/31.png b/front/public/images/small/ExtraTrees/planks/31.png deleted file mode 100644 index c83f3cbfa9..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/31.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/32.png b/front/public/images/small/ExtraTrees/planks/32.png deleted file mode 100644 index 34ae5ade45..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/33.png b/front/public/images/small/ExtraTrees/planks/33.png deleted file mode 100644 index fe07985f5d..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/34.png b/front/public/images/small/ExtraTrees/planks/34.png deleted file mode 100644 index fe63988ba0..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/4.png b/front/public/images/small/ExtraTrees/planks/4.png deleted file mode 100644 index f320b1b222..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/5.png b/front/public/images/small/ExtraTrees/planks/5.png deleted file mode 100644 index 5e509d2839..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/6.png b/front/public/images/small/ExtraTrees/planks/6.png deleted file mode 100644 index 74abc7c275..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/7.png b/front/public/images/small/ExtraTrees/planks/7.png deleted file mode 100644 index af94e65648..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/8.png b/front/public/images/small/ExtraTrees/planks/8.png deleted file mode 100644 index 25ad8f112a..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/planks/9.png b/front/public/images/small/ExtraTrees/planks/9.png deleted file mode 100644 index d46f6e3df0..0000000000 Binary files a/front/public/images/small/ExtraTrees/planks/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/0.png b/front/public/images/small/ExtraTrees/slab/0.png deleted file mode 100644 index 9991bf7c07..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/1.png b/front/public/images/small/ExtraTrees/slab/1.png deleted file mode 100644 index e349593be1..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/10.png b/front/public/images/small/ExtraTrees/slab/10.png deleted file mode 100644 index 55bd4c6b56..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/11.png b/front/public/images/small/ExtraTrees/slab/11.png deleted file mode 100644 index 03efc7a557..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/12.png b/front/public/images/small/ExtraTrees/slab/12.png deleted file mode 100644 index c884e83805..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/13.png b/front/public/images/small/ExtraTrees/slab/13.png deleted file mode 100644 index 60aa857b6e..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/14.png b/front/public/images/small/ExtraTrees/slab/14.png deleted file mode 100644 index fcadc36898..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/15.png b/front/public/images/small/ExtraTrees/slab/15.png deleted file mode 100644 index 907695a82a..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/16.png b/front/public/images/small/ExtraTrees/slab/16.png deleted file mode 100644 index ce10816489..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/17.png b/front/public/images/small/ExtraTrees/slab/17.png deleted file mode 100644 index 4e320d7333..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/18.png b/front/public/images/small/ExtraTrees/slab/18.png deleted file mode 100644 index 918a840ac2..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/19.png b/front/public/images/small/ExtraTrees/slab/19.png deleted file mode 100644 index 8af2c480c1..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/2.png b/front/public/images/small/ExtraTrees/slab/2.png deleted file mode 100644 index 53a21d37d4..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/20.png b/front/public/images/small/ExtraTrees/slab/20.png deleted file mode 100644 index 2da1148ffe..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/21.png b/front/public/images/small/ExtraTrees/slab/21.png deleted file mode 100644 index 75461b5a98..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/21.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/22.png b/front/public/images/small/ExtraTrees/slab/22.png deleted file mode 100644 index 7175710592..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/22.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/23.png b/front/public/images/small/ExtraTrees/slab/23.png deleted file mode 100644 index bdd65aade3..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/23.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/24.png b/front/public/images/small/ExtraTrees/slab/24.png deleted file mode 100644 index a2915c759b..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/24.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/25.png b/front/public/images/small/ExtraTrees/slab/25.png deleted file mode 100644 index 8c96d1178e..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/25.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/26.png b/front/public/images/small/ExtraTrees/slab/26.png deleted file mode 100644 index e49f462b14..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/26.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/27.png b/front/public/images/small/ExtraTrees/slab/27.png deleted file mode 100644 index ecc097728c..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/27.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/28.png b/front/public/images/small/ExtraTrees/slab/28.png deleted file mode 100644 index c697b25f8b..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/28.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/29.png b/front/public/images/small/ExtraTrees/slab/29.png deleted file mode 100644 index e6db72c551..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/29.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/3.png b/front/public/images/small/ExtraTrees/slab/3.png deleted file mode 100644 index 70744f217b..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/30.png b/front/public/images/small/ExtraTrees/slab/30.png deleted file mode 100644 index c97785c872..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/30.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/31.png b/front/public/images/small/ExtraTrees/slab/31.png deleted file mode 100644 index 5f8ee9ceac..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/31.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/32.png b/front/public/images/small/ExtraTrees/slab/32.png deleted file mode 100644 index a7940e9b4f..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/33.png b/front/public/images/small/ExtraTrees/slab/33.png deleted file mode 100644 index dc055da1ce..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/34.png b/front/public/images/small/ExtraTrees/slab/34.png deleted file mode 100644 index ef3bad60d5..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/4.png b/front/public/images/small/ExtraTrees/slab/4.png deleted file mode 100644 index f4d0e008d3..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/5.png b/front/public/images/small/ExtraTrees/slab/5.png deleted file mode 100644 index 10b103bb54..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/6.png b/front/public/images/small/ExtraTrees/slab/6.png deleted file mode 100644 index 5b5a7e79e3..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/7.png b/front/public/images/small/ExtraTrees/slab/7.png deleted file mode 100644 index 24927e8aa1..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/8.png b/front/public/images/small/ExtraTrees/slab/8.png deleted file mode 100644 index aab7d95853..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/slab/9.png b/front/public/images/small/ExtraTrees/slab/9.png deleted file mode 100644 index b8332cadf4..0000000000 Binary files a/front/public/images/small/ExtraTrees/slab/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stainedglass/16387.png b/front/public/images/small/ExtraTrees/stainedglass/16387.png deleted file mode 100644 index fbefd60c74..0000000000 Binary files a/front/public/images/small/ExtraTrees/stainedglass/16387.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/0.png b/front/public/images/small/ExtraTrees/stairs/0.png deleted file mode 100644 index 905b8a5a22..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/1.png b/front/public/images/small/ExtraTrees/stairs/1.png deleted file mode 100644 index e514419294..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/10.png b/front/public/images/small/ExtraTrees/stairs/10.png deleted file mode 100644 index 3473bbfc74..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/11.png b/front/public/images/small/ExtraTrees/stairs/11.png deleted file mode 100644 index 92900b85f7..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/12.png b/front/public/images/small/ExtraTrees/stairs/12.png deleted file mode 100644 index 1ea01f6f92..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/13.png b/front/public/images/small/ExtraTrees/stairs/13.png deleted file mode 100644 index f36d4a5536..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/14.png b/front/public/images/small/ExtraTrees/stairs/14.png deleted file mode 100644 index 319c194e5c..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/15.png b/front/public/images/small/ExtraTrees/stairs/15.png deleted file mode 100644 index d6306705f5..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/16.png b/front/public/images/small/ExtraTrees/stairs/16.png deleted file mode 100644 index 0741d2d3dd..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/16.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/17.png b/front/public/images/small/ExtraTrees/stairs/17.png deleted file mode 100644 index 1deb5c31b2..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/17.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/18.png b/front/public/images/small/ExtraTrees/stairs/18.png deleted file mode 100644 index de974368ee..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/18.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/19.png b/front/public/images/small/ExtraTrees/stairs/19.png deleted file mode 100644 index 37baed886b..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/19.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/2.png b/front/public/images/small/ExtraTrees/stairs/2.png deleted file mode 100644 index 140679ece8..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/20.png b/front/public/images/small/ExtraTrees/stairs/20.png deleted file mode 100644 index 079f59a0b5..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/20.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/21.png b/front/public/images/small/ExtraTrees/stairs/21.png deleted file mode 100644 index 4b8d7125e3..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/21.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/22.png b/front/public/images/small/ExtraTrees/stairs/22.png deleted file mode 100644 index 28b1665691..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/22.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/23.png b/front/public/images/small/ExtraTrees/stairs/23.png deleted file mode 100644 index 411dfc5fd9..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/23.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/24.png b/front/public/images/small/ExtraTrees/stairs/24.png deleted file mode 100644 index 7b58ac15d3..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/24.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/25.png b/front/public/images/small/ExtraTrees/stairs/25.png deleted file mode 100644 index 04c1dbbb11..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/25.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/26.png b/front/public/images/small/ExtraTrees/stairs/26.png deleted file mode 100644 index 4979cbce3e..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/26.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/27.png b/front/public/images/small/ExtraTrees/stairs/27.png deleted file mode 100644 index 3ebedc4808..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/27.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/28.png b/front/public/images/small/ExtraTrees/stairs/28.png deleted file mode 100644 index f7b9ddb8a9..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/28.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/29.png b/front/public/images/small/ExtraTrees/stairs/29.png deleted file mode 100644 index 3b9371f154..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/29.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/3.png b/front/public/images/small/ExtraTrees/stairs/3.png deleted file mode 100644 index d71aae979f..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/30.png b/front/public/images/small/ExtraTrees/stairs/30.png deleted file mode 100644 index da7f37fb4f..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/30.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/31.png b/front/public/images/small/ExtraTrees/stairs/31.png deleted file mode 100644 index 0b7b84b932..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/31.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/32.png b/front/public/images/small/ExtraTrees/stairs/32.png deleted file mode 100644 index 5121d6fb8d..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/32.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/33.png b/front/public/images/small/ExtraTrees/stairs/33.png deleted file mode 100644 index e85dbb9476..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/33.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/34.png b/front/public/images/small/ExtraTrees/stairs/34.png deleted file mode 100644 index f798048c1b..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/34.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/4.png b/front/public/images/small/ExtraTrees/stairs/4.png deleted file mode 100644 index 13cb30ba5f..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/5.png b/front/public/images/small/ExtraTrees/stairs/5.png deleted file mode 100644 index 62b5841d16..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/6.png b/front/public/images/small/ExtraTrees/stairs/6.png deleted file mode 100644 index 0a33c68ddb..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/7.png b/front/public/images/small/ExtraTrees/stairs/7.png deleted file mode 100644 index a9870a9d26..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/8.png b/front/public/images/small/ExtraTrees/stairs/8.png deleted file mode 100644 index 921bfb057b..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraTrees/stairs/9.png b/front/public/images/small/ExtraTrees/stairs/9.png deleted file mode 100644 index b6c5a04ebc..0000000000 Binary files a/front/public/images/small/ExtraTrees/stairs/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/angelBlock/0.png b/front/public/images/small/ExtraUtilities/angelBlock/0.png deleted file mode 100644 index 9d8a44df2e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/angelBlock/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/angelRing/0.png b/front/public/images/small/ExtraUtilities/angelRing/0.png deleted file mode 100644 index 840bd701fe..0000000000 Binary files a/front/public/images/small/ExtraUtilities/angelRing/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/angelRing/1.png b/front/public/images/small/ExtraUtilities/angelRing/1.png deleted file mode 100644 index 840bd701fe..0000000000 Binary files a/front/public/images/small/ExtraUtilities/angelRing/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/angelRing/2.png b/front/public/images/small/ExtraUtilities/angelRing/2.png deleted file mode 100644 index 840bd701fe..0000000000 Binary files a/front/public/images/small/ExtraUtilities/angelRing/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/angelRing/3.png b/front/public/images/small/ExtraUtilities/angelRing/3.png deleted file mode 100644 index 840bd701fe..0000000000 Binary files a/front/public/images/small/ExtraUtilities/angelRing/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/angelRing/4.png b/front/public/images/small/ExtraUtilities/angelRing/4.png deleted file mode 100644 index 840bd701fe..0000000000 Binary files a/front/public/images/small/ExtraUtilities/angelRing/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/bedrockiumIngot/0.png b/front/public/images/small/ExtraUtilities/bedrockiumIngot/0.png deleted file mode 100644 index 126d49ef29..0000000000 Binary files a/front/public/images/small/ExtraUtilities/bedrockiumIngot/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/block_bedrockium/0.png b/front/public/images/small/ExtraUtilities/block_bedrockium/0.png deleted file mode 100644 index 8bc5c749f1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/block_bedrockium/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/budoff/0.png b/front/public/images/small/ExtraUtilities/budoff/0.png deleted file mode 100644 index b3399f4200..0000000000 Binary files a/front/public/images/small/ExtraUtilities/budoff/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/budoff/3.png b/front/public/images/small/ExtraUtilities/budoff/3.png deleted file mode 100644 index 15e97996ca..0000000000 Binary files a/front/public/images/small/ExtraUtilities/budoff/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/builderswand/0.png b/front/public/images/small/ExtraUtilities/builderswand/0.png deleted file mode 100644 index 466e6ac4ea..0000000000 Binary files a/front/public/images/small/ExtraUtilities/builderswand/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/chandelier/0.png b/front/public/images/small/ExtraUtilities/chandelier/0.png deleted file mode 100644 index 6250cb99c9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/chandelier/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/chestFull/0.png b/front/public/images/small/ExtraUtilities/chestFull/0.png deleted file mode 100644 index f12a4f7c62..0000000000 Binary files a/front/public/images/small/ExtraUtilities/chestFull/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/chestMini/0.png b/front/public/images/small/ExtraUtilities/chestMini/0.png deleted file mode 100644 index fe332b4752..0000000000 Binary files a/front/public/images/small/ExtraUtilities/chestMini/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/0.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/0.png deleted file mode 100644 index 735759b3e6..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/1.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/1.png deleted file mode 100644 index 5572ddde05..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/10.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/10.png deleted file mode 100644 index cc780f8031..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/11.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/11.png deleted file mode 100644 index c152e668db..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/12.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/12.png deleted file mode 100644 index f095159746..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/13.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/13.png deleted file mode 100644 index 34f437df1d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/14.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/14.png deleted file mode 100644 index 554ef4f285..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/15.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/15.png deleted file mode 100644 index 161b510075..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/2.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/2.png deleted file mode 100644 index ad89ed66bd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/3.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/3.png deleted file mode 100644 index 1716b9befb..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/4.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/4.png deleted file mode 100644 index 49f1b7a995..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/5.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/5.png deleted file mode 100644 index f3e4a55d79..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/6.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/6.png deleted file mode 100644 index e2b9e4fa56..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/7.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/7.png deleted file mode 100644 index 1eb6d2b50c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/8.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/8.png deleted file mode 100644 index 2bc53f3843..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cobblestone_compressed/9.png b/front/public/images/small/ExtraUtilities/cobblestone_compressed/9.png deleted file mode 100644 index 30f892917c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cobblestone_compressed/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/0.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/0.png deleted file mode 100644 index 5787f72a26..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/1.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/1.png deleted file mode 100644 index 0dbac90819..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/10.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/10.png deleted file mode 100644 index df7a4b3905..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/11.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/11.png deleted file mode 100644 index fcd47aa19b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/12.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/12.png deleted file mode 100644 index 9c20efec3d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/13.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/13.png deleted file mode 100644 index 744884a82a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/14.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/14.png deleted file mode 100644 index 32aab8e82f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/15.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/15.png deleted file mode 100644 index 525800cb9b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/2.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/2.png deleted file mode 100644 index e00c11eda4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/3.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/3.png deleted file mode 100644 index 7f3f4cf2e1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/4.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/4.png deleted file mode 100644 index f41120611e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/5.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/5.png deleted file mode 100644 index cc1e7ce977..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/6.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/6.png deleted file mode 100644 index de8392da28..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/7.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/7.png deleted file mode 100644 index b81dc033b5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/8.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/8.png deleted file mode 100644 index 283f85d438..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorStoneBrick/9.png b/front/public/images/small/ExtraUtilities/colorStoneBrick/9.png deleted file mode 100644 index 283b7dc955..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorStoneBrick/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/0.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/0.png deleted file mode 100644 index 915b5108f8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/1.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/1.png deleted file mode 100644 index 38c7c57d6a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/10.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/10.png deleted file mode 100644 index faa2d799d3..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/11.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/11.png deleted file mode 100644 index 94f6eaf038..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/12.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/12.png deleted file mode 100644 index 253f03d8ff..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/13.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/13.png deleted file mode 100644 index 817f490248..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/14.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/14.png deleted file mode 100644 index a75167311a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/15.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/15.png deleted file mode 100644 index b1cd16c228..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/2.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/2.png deleted file mode 100644 index 7c36527564..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/3.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/3.png deleted file mode 100644 index 01b2a2a49b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/4.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/4.png deleted file mode 100644 index 09934ff74d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/5.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/5.png deleted file mode 100644 index 33cc7f32e8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/6.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/6.png deleted file mode 100644 index d0dcbb38df..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/7.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/7.png deleted file mode 100644 index 554de141d8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/8.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/8.png deleted file mode 100644 index e4e25e65f0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/colorWoodPlanks/9.png b/front/public/images/small/ExtraUtilities/colorWoodPlanks/9.png deleted file mode 100644 index a27b32c4d7..0000000000 Binary files a/front/public/images/small/ExtraUtilities/colorWoodPlanks/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/0.png b/front/public/images/small/ExtraUtilities/color_blockCoal/0.png deleted file mode 100644 index 52845db9fd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/1.png b/front/public/images/small/ExtraUtilities/color_blockCoal/1.png deleted file mode 100644 index ad6c0c95c4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/10.png b/front/public/images/small/ExtraUtilities/color_blockCoal/10.png deleted file mode 100644 index 54ed7ce5f5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/11.png b/front/public/images/small/ExtraUtilities/color_blockCoal/11.png deleted file mode 100644 index 2000aa5257..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/12.png b/front/public/images/small/ExtraUtilities/color_blockCoal/12.png deleted file mode 100644 index 72a12fb69e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/13.png b/front/public/images/small/ExtraUtilities/color_blockCoal/13.png deleted file mode 100644 index b2ed8e5920..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/14.png b/front/public/images/small/ExtraUtilities/color_blockCoal/14.png deleted file mode 100644 index ceaf8c9297..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/15.png b/front/public/images/small/ExtraUtilities/color_blockCoal/15.png deleted file mode 100644 index 74c2a6ed36..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/2.png b/front/public/images/small/ExtraUtilities/color_blockCoal/2.png deleted file mode 100644 index 59a45c922e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/3.png b/front/public/images/small/ExtraUtilities/color_blockCoal/3.png deleted file mode 100644 index 294ebfb51d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/4.png b/front/public/images/small/ExtraUtilities/color_blockCoal/4.png deleted file mode 100644 index 7d3bfa54a4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/5.png b/front/public/images/small/ExtraUtilities/color_blockCoal/5.png deleted file mode 100644 index 87e4ed89f2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/6.png b/front/public/images/small/ExtraUtilities/color_blockCoal/6.png deleted file mode 100644 index 40a20de131..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/7.png b/front/public/images/small/ExtraUtilities/color_blockCoal/7.png deleted file mode 100644 index 2aaa512d28..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/8.png b/front/public/images/small/ExtraUtilities/color_blockCoal/8.png deleted file mode 100644 index 9a3846db64..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockCoal/9.png b/front/public/images/small/ExtraUtilities/color_blockCoal/9.png deleted file mode 100644 index 04b9429be7..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockCoal/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/0.png b/front/public/images/small/ExtraUtilities/color_blockLapis/0.png deleted file mode 100644 index 62bd698587..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/1.png b/front/public/images/small/ExtraUtilities/color_blockLapis/1.png deleted file mode 100644 index 83f94a5155..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/10.png b/front/public/images/small/ExtraUtilities/color_blockLapis/10.png deleted file mode 100644 index fde9c31a4d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/11.png b/front/public/images/small/ExtraUtilities/color_blockLapis/11.png deleted file mode 100644 index cfe62c81d7..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/12.png b/front/public/images/small/ExtraUtilities/color_blockLapis/12.png deleted file mode 100644 index 99adedf12d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/13.png b/front/public/images/small/ExtraUtilities/color_blockLapis/13.png deleted file mode 100644 index 82a096a6ba..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/14.png b/front/public/images/small/ExtraUtilities/color_blockLapis/14.png deleted file mode 100644 index 951c89d0eb..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/15.png b/front/public/images/small/ExtraUtilities/color_blockLapis/15.png deleted file mode 100644 index 54e3ef9a60..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/2.png b/front/public/images/small/ExtraUtilities/color_blockLapis/2.png deleted file mode 100644 index d4e8198d35..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/3.png b/front/public/images/small/ExtraUtilities/color_blockLapis/3.png deleted file mode 100644 index 21f845d16f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/4.png b/front/public/images/small/ExtraUtilities/color_blockLapis/4.png deleted file mode 100644 index c81eff6f1e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/5.png b/front/public/images/small/ExtraUtilities/color_blockLapis/5.png deleted file mode 100644 index 5f1c9fd1e5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/6.png b/front/public/images/small/ExtraUtilities/color_blockLapis/6.png deleted file mode 100644 index 035c6ecea0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/7.png b/front/public/images/small/ExtraUtilities/color_blockLapis/7.png deleted file mode 100644 index 34d1bfeb08..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/8.png b/front/public/images/small/ExtraUtilities/color_blockLapis/8.png deleted file mode 100644 index 23176c394c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockLapis/9.png b/front/public/images/small/ExtraUtilities/color_blockLapis/9.png deleted file mode 100644 index 10af8add59..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockLapis/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/0.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/0.png deleted file mode 100644 index 7b87580e40..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/1.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/1.png deleted file mode 100644 index 8ca8b54c0a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/10.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/10.png deleted file mode 100644 index 280672d9b0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/11.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/11.png deleted file mode 100644 index 58bb5ef70a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/12.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/12.png deleted file mode 100644 index c948bdc4dc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/13.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/13.png deleted file mode 100644 index 84f66405ac..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/14.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/14.png deleted file mode 100644 index 6c2b311f70..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/15.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/15.png deleted file mode 100644 index 42e32dfb26..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/2.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/2.png deleted file mode 100644 index ed59d07825..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/3.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/3.png deleted file mode 100644 index 575e4dceda..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/4.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/4.png deleted file mode 100644 index c2358bac78..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/5.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/5.png deleted file mode 100644 index 31d9cd6521..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/6.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/6.png deleted file mode 100644 index 6e7ecc9268..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/7.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/7.png deleted file mode 100644 index bfc507547d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/8.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/8.png deleted file mode 100644 index 30033690fa..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_blockRedstone/9.png b/front/public/images/small/ExtraUtilities/color_blockRedstone/9.png deleted file mode 100644 index 7d9553ca59..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_blockRedstone/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/0.png b/front/public/images/small/ExtraUtilities/color_brick/0.png deleted file mode 100644 index b1ee48c3ff..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/1.png b/front/public/images/small/ExtraUtilities/color_brick/1.png deleted file mode 100644 index f5fb485073..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/10.png b/front/public/images/small/ExtraUtilities/color_brick/10.png deleted file mode 100644 index 3342ad0a54..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/11.png b/front/public/images/small/ExtraUtilities/color_brick/11.png deleted file mode 100644 index 3ca9961ee1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/12.png b/front/public/images/small/ExtraUtilities/color_brick/12.png deleted file mode 100644 index 98ac2a9f67..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/13.png b/front/public/images/small/ExtraUtilities/color_brick/13.png deleted file mode 100644 index ba21a7a4ce..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/14.png b/front/public/images/small/ExtraUtilities/color_brick/14.png deleted file mode 100644 index 56a315da20..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/15.png b/front/public/images/small/ExtraUtilities/color_brick/15.png deleted file mode 100644 index 98d457557a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/2.png b/front/public/images/small/ExtraUtilities/color_brick/2.png deleted file mode 100644 index a1bba6bb99..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/3.png b/front/public/images/small/ExtraUtilities/color_brick/3.png deleted file mode 100644 index 03ad5ad684..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/4.png b/front/public/images/small/ExtraUtilities/color_brick/4.png deleted file mode 100644 index 82e9c5c94d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/5.png b/front/public/images/small/ExtraUtilities/color_brick/5.png deleted file mode 100644 index 3dc3f86782..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/6.png b/front/public/images/small/ExtraUtilities/color_brick/6.png deleted file mode 100644 index 1317555934..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/7.png b/front/public/images/small/ExtraUtilities/color_brick/7.png deleted file mode 100644 index e5e0314f25..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/8.png b/front/public/images/small/ExtraUtilities/color_brick/8.png deleted file mode 100644 index d232005963..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_brick/9.png b/front/public/images/small/ExtraUtilities/color_brick/9.png deleted file mode 100644 index e8c9537024..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_brick/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/0.png b/front/public/images/small/ExtraUtilities/color_hellsand/0.png deleted file mode 100644 index 3d6a22c7e8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/1.png b/front/public/images/small/ExtraUtilities/color_hellsand/1.png deleted file mode 100644 index b2c94a1b32..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/10.png b/front/public/images/small/ExtraUtilities/color_hellsand/10.png deleted file mode 100644 index 0bb4fe8fb5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/11.png b/front/public/images/small/ExtraUtilities/color_hellsand/11.png deleted file mode 100644 index 0893170bca..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/12.png b/front/public/images/small/ExtraUtilities/color_hellsand/12.png deleted file mode 100644 index f452b77b98..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/13.png b/front/public/images/small/ExtraUtilities/color_hellsand/13.png deleted file mode 100644 index 1fff0712f5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/14.png b/front/public/images/small/ExtraUtilities/color_hellsand/14.png deleted file mode 100644 index d297d80e96..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/15.png b/front/public/images/small/ExtraUtilities/color_hellsand/15.png deleted file mode 100644 index 35ab0818a3..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/2.png b/front/public/images/small/ExtraUtilities/color_hellsand/2.png deleted file mode 100644 index ab23d2515a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/3.png b/front/public/images/small/ExtraUtilities/color_hellsand/3.png deleted file mode 100644 index 3480d30b14..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/4.png b/front/public/images/small/ExtraUtilities/color_hellsand/4.png deleted file mode 100644 index a2519a1f1a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/5.png b/front/public/images/small/ExtraUtilities/color_hellsand/5.png deleted file mode 100644 index 886e9784bd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/6.png b/front/public/images/small/ExtraUtilities/color_hellsand/6.png deleted file mode 100644 index 47e3a9ce10..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/7.png b/front/public/images/small/ExtraUtilities/color_hellsand/7.png deleted file mode 100644 index f5a46e7bbe..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/8.png b/front/public/images/small/ExtraUtilities/color_hellsand/8.png deleted file mode 100644 index 9b0ce1e49e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_hellsand/9.png b/front/public/images/small/ExtraUtilities/color_hellsand/9.png deleted file mode 100644 index 8442d5f14a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_hellsand/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/0.png b/front/public/images/small/ExtraUtilities/color_lightgem/0.png deleted file mode 100644 index 9f6d547c8e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/1.png b/front/public/images/small/ExtraUtilities/color_lightgem/1.png deleted file mode 100644 index 90b63e721f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/10.png b/front/public/images/small/ExtraUtilities/color_lightgem/10.png deleted file mode 100644 index 199ce17211..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/11.png b/front/public/images/small/ExtraUtilities/color_lightgem/11.png deleted file mode 100644 index 7883c3a45c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/12.png b/front/public/images/small/ExtraUtilities/color_lightgem/12.png deleted file mode 100644 index 502747e1d0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/13.png b/front/public/images/small/ExtraUtilities/color_lightgem/13.png deleted file mode 100644 index 15843df890..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/14.png b/front/public/images/small/ExtraUtilities/color_lightgem/14.png deleted file mode 100644 index bd92289428..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/15.png b/front/public/images/small/ExtraUtilities/color_lightgem/15.png deleted file mode 100644 index c31b2ecf78..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/2.png b/front/public/images/small/ExtraUtilities/color_lightgem/2.png deleted file mode 100644 index c40ca69b4c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/3.png b/front/public/images/small/ExtraUtilities/color_lightgem/3.png deleted file mode 100644 index 6d8924ccf8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/4.png b/front/public/images/small/ExtraUtilities/color_lightgem/4.png deleted file mode 100644 index 8bb1fbfe42..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/5.png b/front/public/images/small/ExtraUtilities/color_lightgem/5.png deleted file mode 100644 index bad4b05453..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/6.png b/front/public/images/small/ExtraUtilities/color_lightgem/6.png deleted file mode 100644 index 532478f5fa..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/7.png b/front/public/images/small/ExtraUtilities/color_lightgem/7.png deleted file mode 100644 index dd6c2eccfb..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/8.png b/front/public/images/small/ExtraUtilities/color_lightgem/8.png deleted file mode 100644 index f7dd3ba3bd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_lightgem/9.png b/front/public/images/small/ExtraUtilities/color_lightgem/9.png deleted file mode 100644 index ca89e76fef..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_lightgem/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/0.png b/front/public/images/small/ExtraUtilities/color_obsidian/0.png deleted file mode 100644 index d81c878b53..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/1.png b/front/public/images/small/ExtraUtilities/color_obsidian/1.png deleted file mode 100644 index 1411dfb70a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/10.png b/front/public/images/small/ExtraUtilities/color_obsidian/10.png deleted file mode 100644 index e00c9f1497..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/11.png b/front/public/images/small/ExtraUtilities/color_obsidian/11.png deleted file mode 100644 index 8263ef2244..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/12.png b/front/public/images/small/ExtraUtilities/color_obsidian/12.png deleted file mode 100644 index 31f88f4594..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/13.png b/front/public/images/small/ExtraUtilities/color_obsidian/13.png deleted file mode 100644 index d32941336b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/14.png b/front/public/images/small/ExtraUtilities/color_obsidian/14.png deleted file mode 100644 index 0c005e63d2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/15.png b/front/public/images/small/ExtraUtilities/color_obsidian/15.png deleted file mode 100644 index 6f3f0f114d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/2.png b/front/public/images/small/ExtraUtilities/color_obsidian/2.png deleted file mode 100644 index bc7f74ab37..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/3.png b/front/public/images/small/ExtraUtilities/color_obsidian/3.png deleted file mode 100644 index 7cbae004b2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/4.png b/front/public/images/small/ExtraUtilities/color_obsidian/4.png deleted file mode 100644 index 8d5f2b2d1b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/5.png b/front/public/images/small/ExtraUtilities/color_obsidian/5.png deleted file mode 100644 index 0e437ab22a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/6.png b/front/public/images/small/ExtraUtilities/color_obsidian/6.png deleted file mode 100644 index 60eed85384..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/7.png b/front/public/images/small/ExtraUtilities/color_obsidian/7.png deleted file mode 100644 index 9f8b5e607e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/8.png b/front/public/images/small/ExtraUtilities/color_obsidian/8.png deleted file mode 100644 index af679ae031..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_obsidian/9.png b/front/public/images/small/ExtraUtilities/color_obsidian/9.png deleted file mode 100644 index e1309e1c4b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_obsidian/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/0.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/0.png deleted file mode 100644 index 45dd924791..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/1.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/1.png deleted file mode 100644 index faffaa480c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/10.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/10.png deleted file mode 100644 index bc645b4c4b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/11.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/11.png deleted file mode 100644 index 618db5ea04..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/12.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/12.png deleted file mode 100644 index 2c37f3ae53..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/13.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/13.png deleted file mode 100644 index e2cc506feb..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/14.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/14.png deleted file mode 100644 index 3183425eb8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/15.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/15.png deleted file mode 100644 index f2cbc12a7b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/2.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/2.png deleted file mode 100644 index e7f61dc63a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/3.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/3.png deleted file mode 100644 index 72b4f49cba..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/4.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/4.png deleted file mode 100644 index 70903c05a0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/5.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/5.png deleted file mode 100644 index 544f67eebd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/6.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/6.png deleted file mode 100644 index 55713bd70a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/7.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/7.png deleted file mode 100644 index 6f57989396..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/8.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/8.png deleted file mode 100644 index d9657f95c2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_quartzBlock/9.png b/front/public/images/small/ExtraUtilities/color_quartzBlock/9.png deleted file mode 100644 index 57aa9713b2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_quartzBlock/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/0.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/0.png deleted file mode 100644 index 412b99abb5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/1.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/1.png deleted file mode 100644 index 927385b843..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/10.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/10.png deleted file mode 100644 index f3ee9c8b40..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/11.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/11.png deleted file mode 100644 index 13e66cf909..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/12.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/12.png deleted file mode 100644 index ef4cde11cc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/13.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/13.png deleted file mode 100644 index 5aae0e1e43..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/14.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/14.png deleted file mode 100644 index f7b983a55a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/15.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/15.png deleted file mode 100644 index 6fc803ad84..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/2.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/2.png deleted file mode 100644 index 4142e29e9a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/3.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/3.png deleted file mode 100644 index c77216bc09..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/4.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/4.png deleted file mode 100644 index c40c1607e3..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/5.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/5.png deleted file mode 100644 index 77af9c382f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/6.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/6.png deleted file mode 100644 index 36ab8a512a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/7.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/7.png deleted file mode 100644 index 110c433897..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/8.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/8.png deleted file mode 100644 index 204d1c68c2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_redstoneLight/9.png b/front/public/images/small/ExtraUtilities/color_redstoneLight/9.png deleted file mode 100644 index b428cecf98..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_redstoneLight/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/0.png b/front/public/images/small/ExtraUtilities/color_stone/0.png deleted file mode 100644 index 10b10fc8f0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/1.png b/front/public/images/small/ExtraUtilities/color_stone/1.png deleted file mode 100644 index 8b9f4ad910..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/10.png b/front/public/images/small/ExtraUtilities/color_stone/10.png deleted file mode 100644 index 426fb6afbc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/11.png b/front/public/images/small/ExtraUtilities/color_stone/11.png deleted file mode 100644 index 639a4ce95a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/12.png b/front/public/images/small/ExtraUtilities/color_stone/12.png deleted file mode 100644 index 095ece9fc0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/13.png b/front/public/images/small/ExtraUtilities/color_stone/13.png deleted file mode 100644 index bfe047231e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/14.png b/front/public/images/small/ExtraUtilities/color_stone/14.png deleted file mode 100644 index e2420e8a54..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/15.png b/front/public/images/small/ExtraUtilities/color_stone/15.png deleted file mode 100644 index 97ece72c08..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/2.png b/front/public/images/small/ExtraUtilities/color_stone/2.png deleted file mode 100644 index 0a9e1b040d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/3.png b/front/public/images/small/ExtraUtilities/color_stone/3.png deleted file mode 100644 index 0a8107e0d3..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/4.png b/front/public/images/small/ExtraUtilities/color_stone/4.png deleted file mode 100644 index a95dac54da..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/5.png b/front/public/images/small/ExtraUtilities/color_stone/5.png deleted file mode 100644 index 197af62c0a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/6.png b/front/public/images/small/ExtraUtilities/color_stone/6.png deleted file mode 100644 index 86b62572e1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/7.png b/front/public/images/small/ExtraUtilities/color_stone/7.png deleted file mode 100644 index 19a3b78216..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/8.png b/front/public/images/small/ExtraUtilities/color_stone/8.png deleted file mode 100644 index da32940a21..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stone/9.png b/front/public/images/small/ExtraUtilities/color_stone/9.png deleted file mode 100644 index 358fcfced5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stone/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/0.png b/front/public/images/small/ExtraUtilities/color_stonebrick/0.png deleted file mode 100644 index 3e554387e2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/1.png b/front/public/images/small/ExtraUtilities/color_stonebrick/1.png deleted file mode 100644 index bd9369f08f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/10.png b/front/public/images/small/ExtraUtilities/color_stonebrick/10.png deleted file mode 100644 index 1b24ff8a83..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/11.png b/front/public/images/small/ExtraUtilities/color_stonebrick/11.png deleted file mode 100644 index 0d5e43a149..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/12.png b/front/public/images/small/ExtraUtilities/color_stonebrick/12.png deleted file mode 100644 index c2d80c08d9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/13.png b/front/public/images/small/ExtraUtilities/color_stonebrick/13.png deleted file mode 100644 index 79bbe9fba5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/14.png b/front/public/images/small/ExtraUtilities/color_stonebrick/14.png deleted file mode 100644 index 21df2c8763..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/15.png b/front/public/images/small/ExtraUtilities/color_stonebrick/15.png deleted file mode 100644 index 042715a2eb..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/2.png b/front/public/images/small/ExtraUtilities/color_stonebrick/2.png deleted file mode 100644 index 06b277fc24..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/3.png b/front/public/images/small/ExtraUtilities/color_stonebrick/3.png deleted file mode 100644 index 7a4559f93e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/4.png b/front/public/images/small/ExtraUtilities/color_stonebrick/4.png deleted file mode 100644 index 85c36e5581..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/5.png b/front/public/images/small/ExtraUtilities/color_stonebrick/5.png deleted file mode 100644 index 1a6b90909f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/6.png b/front/public/images/small/ExtraUtilities/color_stonebrick/6.png deleted file mode 100644 index 395bddbfe3..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/7.png b/front/public/images/small/ExtraUtilities/color_stonebrick/7.png deleted file mode 100644 index 0a739fa4bd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/8.png b/front/public/images/small/ExtraUtilities/color_stonebrick/8.png deleted file mode 100644 index 5edc823d7a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/color_stonebrick/9.png b/front/public/images/small/ExtraUtilities/color_stonebrick/9.png deleted file mode 100644 index 1cacf5a771..0000000000 Binary files a/front/public/images/small/ExtraUtilities/color_stonebrick/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/conveyor/0.png b/front/public/images/small/ExtraUtilities/conveyor/0.png deleted file mode 100644 index 6aa39cd649..0000000000 Binary files a/front/public/images/small/ExtraUtilities/conveyor/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/creativebuilderswand/0.png b/front/public/images/small/ExtraUtilities/creativebuilderswand/0.png deleted file mode 100644 index d3101a5c7f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/creativebuilderswand/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/cursedearthside/0.png b/front/public/images/small/ExtraUtilities/cursedearthside/0.png deleted file mode 100644 index cab5ba5875..0000000000 Binary files a/front/public/images/small/ExtraUtilities/cursedearthside/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/curtains/0.png b/front/public/images/small/ExtraUtilities/curtains/0.png deleted file mode 100644 index 2bc6c9d868..0000000000 Binary files a/front/public/images/small/ExtraUtilities/curtains/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/dark_portal/0.png b/front/public/images/small/ExtraUtilities/dark_portal/0.png deleted file mode 100644 index fdf331cc3d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/dark_portal/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/dark_portal/2.png b/front/public/images/small/ExtraUtilities/dark_portal/2.png deleted file mode 100644 index ee80e97be2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/dark_portal/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/datablock/0.png b/front/public/images/small/ExtraUtilities/datablock/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/datablock/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/0.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/0.png deleted file mode 100644 index 7c4cfe0320..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/1.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/1.png deleted file mode 100644 index d9513593e2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/10.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/10.png deleted file mode 100644 index f70791f056..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/11.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/11.png deleted file mode 100644 index fd2663c7b8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/12.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/12.png deleted file mode 100644 index c74a7a184b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/13.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/13.png deleted file mode 100644 index cb547637d4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/14.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/14.png deleted file mode 100644 index d42bfc401e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/2.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/2.png deleted file mode 100644 index 3d9c076c11..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/3.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/3.png deleted file mode 100644 index f5f7070b14..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/4.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/4.png deleted file mode 100644 index 21431afc3b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/5.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/5.png deleted file mode 100644 index 71603d704b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/6.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/6.png deleted file mode 100644 index ab67af6f3e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/7.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/7.png deleted file mode 100644 index b72c7e33c9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/8.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/8.png deleted file mode 100644 index 6882d732ae..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock1/9.png b/front/public/images/small/ExtraUtilities/decorativeBlock1/9.png deleted file mode 100644 index 1e29efbf64..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock1/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/0.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/0.png deleted file mode 100644 index b36057a602..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/1.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/1.png deleted file mode 100644 index c077ac2080..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/10.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/10.png deleted file mode 100644 index ed2ec2f25b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/11.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/11.png deleted file mode 100644 index 9ef4a05502..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/2.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/2.png deleted file mode 100644 index 81b8fce1d4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/3.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/3.png deleted file mode 100644 index 524e8e6da1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/4.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/4.png deleted file mode 100644 index 7ac2572eb7..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/5.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/5.png deleted file mode 100644 index f5692cc3c1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/6.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/6.png deleted file mode 100644 index e0bace4fc7..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/7.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/7.png deleted file mode 100644 index 0c40a9cfb1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/8.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/8.png deleted file mode 100644 index a85bf2323c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/decorativeBlock2/9.png b/front/public/images/small/ExtraUtilities/decorativeBlock2/9.png deleted file mode 100644 index 29477d604d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/decorativeBlock2/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/defoliageAxe/0.png b/front/public/images/small/ExtraUtilities/defoliageAxe/0.png deleted file mode 100644 index df7122bf1d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/defoliageAxe/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/destructionpickaxe/0.png b/front/public/images/small/ExtraUtilities/destructionpickaxe/0.png deleted file mode 100644 index bb6a96ae5d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/destructionpickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/divisionSigil/0.png b/front/public/images/small/ExtraUtilities/divisionSigil/0.png deleted file mode 100644 index 8778460cff..0000000000 Binary files a/front/public/images/small/ExtraUtilities/divisionSigil/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/drum/0.png b/front/public/images/small/ExtraUtilities/drum/0.png deleted file mode 100644 index f4b3abcdae..0000000000 Binary files a/front/public/images/small/ExtraUtilities/drum/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/drum/1.png b/front/public/images/small/ExtraUtilities/drum/1.png deleted file mode 100644 index ac8759ae5a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/drum/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/endConstructor/0.png b/front/public/images/small/ExtraUtilities/endConstructor/0.png deleted file mode 100644 index ae107086a9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/endConstructor/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/endConstructor/2.png b/front/public/images/small/ExtraUtilities/endConstructor/2.png deleted file mode 100644 index f9aa0e16f8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/endConstructor/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/endMarker/0.png b/front/public/images/small/ExtraUtilities/endMarker/0.png deleted file mode 100644 index 232ccdfb85..0000000000 Binary files a/front/public/images/small/ExtraUtilities/endMarker/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderCollector/0.png b/front/public/images/small/ExtraUtilities/enderCollector/0.png deleted file mode 100644 index 125ac3edf3..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderCollector/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarry/0.png b/front/public/images/small/ExtraUtilities/enderQuarry/0.png deleted file mode 100644 index 04a14fc993..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarry/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/0.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/0.png deleted file mode 100644 index 913d4aba2f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/1.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/1.png deleted file mode 100644 index d8b3514bd8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/2.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/2.png deleted file mode 100644 index 376f6961a0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/3.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/3.png deleted file mode 100644 index 81fa555122..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/4.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/4.png deleted file mode 100644 index 827f4b65db..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/5.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/5.png deleted file mode 100644 index 25b9858146..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/6.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/6.png deleted file mode 100644 index fbbce35e7a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/7.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/7.png deleted file mode 100644 index 9dd2099e29..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/8.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/8.png deleted file mode 100644 index 7d8b072a3c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/9.png b/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/9.png deleted file mode 100644 index b8022248ae..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderQuarryUpgrade/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/enderThermicPump/0.png b/front/public/images/small/ExtraUtilities/enderThermicPump/0.png deleted file mode 100644 index 1975d33a5e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/enderThermicPump/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/erosionShovel/0.png b/front/public/images/small/ExtraUtilities/erosionShovel/0.png deleted file mode 100644 index 3c22457e2e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/erosionShovel/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/etherealglass/0.png b/front/public/images/small/ExtraUtilities/etherealglass/0.png deleted file mode 100644 index 67cfc10be1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/etherealglass/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/etherealglass/1.png b/front/public/images/small/ExtraUtilities/etherealglass/1.png deleted file mode 100644 index 94ffbcd535..0000000000 Binary files a/front/public/images/small/ExtraUtilities/etherealglass/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/etherealglass/2.png b/front/public/images/small/ExtraUtilities/etherealglass/2.png deleted file mode 100644 index 21ede14b25..0000000000 Binary files a/front/public/images/small/ExtraUtilities/etherealglass/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/etherealglass/3.png b/front/public/images/small/ExtraUtilities/etherealglass/3.png deleted file mode 100644 index 0b58cb5c2a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/etherealglass/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/etherealglass/4.png b/front/public/images/small/ExtraUtilities/etherealglass/4.png deleted file mode 100644 index a9744fa9b4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/etherealglass/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/etherealglass/5.png b/front/public/images/small/ExtraUtilities/etherealglass/5.png deleted file mode 100644 index 7eccacd26d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/etherealglass/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/ethericsword/0.png b/front/public/images/small/ExtraUtilities/ethericsword/0.png deleted file mode 100644 index 8745b8cfc4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/ethericsword/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/extractor_base/0.png b/front/public/images/small/ExtraUtilities/extractor_base/0.png deleted file mode 100644 index 723dad3fdc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/extractor_base/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/extractor_base/12.png b/front/public/images/small/ExtraUtilities/extractor_base/12.png deleted file mode 100644 index 972286a3d2..0000000000 Binary files a/front/public/images/small/ExtraUtilities/extractor_base/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/extractor_base/13.png b/front/public/images/small/ExtraUtilities/extractor_base/13.png deleted file mode 100644 index 754771835a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/extractor_base/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/extractor_base/6.png b/front/public/images/small/ExtraUtilities/extractor_base/6.png deleted file mode 100644 index 256f6e4a78..0000000000 Binary files a/front/public/images/small/ExtraUtilities/extractor_base/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/extractor_base_remote/0.png b/front/public/images/small/ExtraUtilities/extractor_base_remote/0.png deleted file mode 100644 index e2dec1f663..0000000000 Binary files a/front/public/images/small/ExtraUtilities/extractor_base_remote/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/extractor_base_remote/6.png b/front/public/images/small/ExtraUtilities/extractor_base_remote/6.png deleted file mode 100644 index 210cf7ecdc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/extractor_base_remote/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/filing/0.png b/front/public/images/small/ExtraUtilities/filing/0.png deleted file mode 100644 index d0ebf88fb9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/filing/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/filing/1.png b/front/public/images/small/ExtraUtilities/filing/1.png deleted file mode 100644 index 12e8e26423..0000000000 Binary files a/front/public/images/small/ExtraUtilities/filing/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/0.png b/front/public/images/small/ExtraUtilities/generator.64/0.png deleted file mode 100644 index 1c8ba6317d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/1.png b/front/public/images/small/ExtraUtilities/generator.64/1.png deleted file mode 100644 index 1321da9895..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/10.png b/front/public/images/small/ExtraUtilities/generator.64/10.png deleted file mode 100644 index c32c8bfd10..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/11.png b/front/public/images/small/ExtraUtilities/generator.64/11.png deleted file mode 100644 index 41a1753f2e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/2.png b/front/public/images/small/ExtraUtilities/generator.64/2.png deleted file mode 100644 index 8ef58cec6e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/3.png b/front/public/images/small/ExtraUtilities/generator.64/3.png deleted file mode 100644 index 6e9a212d00..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/4.png b/front/public/images/small/ExtraUtilities/generator.64/4.png deleted file mode 100644 index ccab8e9813..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/5.png b/front/public/images/small/ExtraUtilities/generator.64/5.png deleted file mode 100644 index 20e3cb551f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/6.png b/front/public/images/small/ExtraUtilities/generator.64/6.png deleted file mode 100644 index 6ea975c386..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/7.png b/front/public/images/small/ExtraUtilities/generator.64/7.png deleted file mode 100644 index e07ae24bc9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/8.png b/front/public/images/small/ExtraUtilities/generator.64/8.png deleted file mode 100644 index a63eecdf1e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.64/9.png b/front/public/images/small/ExtraUtilities/generator.64/9.png deleted file mode 100644 index 059b65898d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.64/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/0.png b/front/public/images/small/ExtraUtilities/generator.8/0.png deleted file mode 100644 index 62adcf2cfd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/1.png b/front/public/images/small/ExtraUtilities/generator.8/1.png deleted file mode 100644 index 2a5e45582c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/10.png b/front/public/images/small/ExtraUtilities/generator.8/10.png deleted file mode 100644 index ca10dfbea0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/11.png b/front/public/images/small/ExtraUtilities/generator.8/11.png deleted file mode 100644 index ecaf677524..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/2.png b/front/public/images/small/ExtraUtilities/generator.8/2.png deleted file mode 100644 index 2dc1b26c4c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/3.png b/front/public/images/small/ExtraUtilities/generator.8/3.png deleted file mode 100644 index 27ae0310a5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/4.png b/front/public/images/small/ExtraUtilities/generator.8/4.png deleted file mode 100644 index b85e013fdc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/5.png b/front/public/images/small/ExtraUtilities/generator.8/5.png deleted file mode 100644 index 2bbc7fc7d8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/6.png b/front/public/images/small/ExtraUtilities/generator.8/6.png deleted file mode 100644 index 9e0e1db3bd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/7.png b/front/public/images/small/ExtraUtilities/generator.8/7.png deleted file mode 100644 index bcd99efd92..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/8.png b/front/public/images/small/ExtraUtilities/generator.8/8.png deleted file mode 100644 index d51a839e02..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator.8/9.png b/front/public/images/small/ExtraUtilities/generator.8/9.png deleted file mode 100644 index f968e074c1..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator.8/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/0.png b/front/public/images/small/ExtraUtilities/generator/0.png deleted file mode 100644 index 278789e0c6..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/1.png b/front/public/images/small/ExtraUtilities/generator/1.png deleted file mode 100644 index 3e897f8c3e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/10.png b/front/public/images/small/ExtraUtilities/generator/10.png deleted file mode 100644 index ec12f4b037..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/11.png b/front/public/images/small/ExtraUtilities/generator/11.png deleted file mode 100644 index 83a8ae9cb0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/2.png b/front/public/images/small/ExtraUtilities/generator/2.png deleted file mode 100644 index cf665b201d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/3.png b/front/public/images/small/ExtraUtilities/generator/3.png deleted file mode 100644 index bd5236e055..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/4.png b/front/public/images/small/ExtraUtilities/generator/4.png deleted file mode 100644 index 297a7d5f7a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/5.png b/front/public/images/small/ExtraUtilities/generator/5.png deleted file mode 100644 index 7a7bce50f9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/6.png b/front/public/images/small/ExtraUtilities/generator/6.png deleted file mode 100644 index 530df783aa..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/7.png b/front/public/images/small/ExtraUtilities/generator/7.png deleted file mode 100644 index e9fc1ce73b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/8.png b/front/public/images/small/ExtraUtilities/generator/8.png deleted file mode 100644 index fc4e98cb3c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/generator/9.png b/front/public/images/small/ExtraUtilities/generator/9.png deleted file mode 100644 index 03fd471b28..0000000000 Binary files a/front/public/images/small/ExtraUtilities/generator/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/glove/0.png b/front/public/images/small/ExtraUtilities/glove/0.png deleted file mode 100644 index 3244c4c3d3..0000000000 Binary files a/front/public/images/small/ExtraUtilities/glove/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/golden_lasso/0.png b/front/public/images/small/ExtraUtilities/golden_lasso/0.png deleted file mode 100644 index 2306888fe8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/golden_lasso/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/0.png b/front/public/images/small/ExtraUtilities/greenscreen/0.png deleted file mode 100644 index 7dcf62b272..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/1.png b/front/public/images/small/ExtraUtilities/greenscreen/1.png deleted file mode 100644 index 0dc8063bdf..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/10.png b/front/public/images/small/ExtraUtilities/greenscreen/10.png deleted file mode 100644 index 6449c26d09..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/11.png b/front/public/images/small/ExtraUtilities/greenscreen/11.png deleted file mode 100644 index a65679b252..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/12.png b/front/public/images/small/ExtraUtilities/greenscreen/12.png deleted file mode 100644 index 1cac9f7143..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/13.png b/front/public/images/small/ExtraUtilities/greenscreen/13.png deleted file mode 100644 index ae8e95d26f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/14.png b/front/public/images/small/ExtraUtilities/greenscreen/14.png deleted file mode 100644 index 774a5c038b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/15.png b/front/public/images/small/ExtraUtilities/greenscreen/15.png deleted file mode 100644 index 9b4c405310..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/15.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/2.png b/front/public/images/small/ExtraUtilities/greenscreen/2.png deleted file mode 100644 index 6036f5ac01..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/3.png b/front/public/images/small/ExtraUtilities/greenscreen/3.png deleted file mode 100644 index 7d729f115b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/4.png b/front/public/images/small/ExtraUtilities/greenscreen/4.png deleted file mode 100644 index 9fb9ea6eff..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/5.png b/front/public/images/small/ExtraUtilities/greenscreen/5.png deleted file mode 100644 index 403f5fd57a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/6.png b/front/public/images/small/ExtraUtilities/greenscreen/6.png deleted file mode 100644 index 049ec6c5b0..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/7.png b/front/public/images/small/ExtraUtilities/greenscreen/7.png deleted file mode 100644 index 874c4ecccb..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/8.png b/front/public/images/small/ExtraUtilities/greenscreen/8.png deleted file mode 100644 index 3f38d9164e..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/greenscreen/9.png b/front/public/images/small/ExtraUtilities/greenscreen/9.png deleted file mode 100644 index 100dc393e7..0000000000 Binary files a/front/public/images/small/ExtraUtilities/greenscreen/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/heatingElement/0.png b/front/public/images/small/ExtraUtilities/heatingElement/0.png deleted file mode 100644 index 13a17adf52..0000000000 Binary files a/front/public/images/small/ExtraUtilities/heatingElement/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/lawSword/0.png b/front/public/images/small/ExtraUtilities/lawSword/0.png deleted file mode 100644 index 2e41bdb378..0000000000 Binary files a/front/public/images/small/ExtraUtilities/lawSword/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/magnumTorch/0.png b/front/public/images/small/ExtraUtilities/magnumTorch/0.png deleted file mode 100644 index b9cd2e727b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/magnumTorch/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/mini-soul/0.png b/front/public/images/small/ExtraUtilities/mini-soul/0.png deleted file mode 100644 index f182be9a65..0000000000 Binary files a/front/public/images/small/ExtraUtilities/mini-soul/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/mini-soul/3.png b/front/public/images/small/ExtraUtilities/mini-soul/3.png deleted file mode 100644 index f182be9a65..0000000000 Binary files a/front/public/images/small/ExtraUtilities/mini-soul/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/0.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/0.png deleted file mode 100644 index 2fc48a5a6f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/1.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/1.png deleted file mode 100644 index 50a0b7a894..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/10.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/10.png deleted file mode 100644 index 02ad82838b..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/2.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/2.png deleted file mode 100644 index 84e49338ab..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/3.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/3.png deleted file mode 100644 index 8598ab872a..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/3.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/4.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/4.png deleted file mode 100644 index 95056d4e10..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/4.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/5.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/5.png deleted file mode 100644 index 3a434582ae..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/5.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/6.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/6.png deleted file mode 100644 index c2dc30c979..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/6.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/7.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/7.png deleted file mode 100644 index e27741d3cf..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/7.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/8.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/8.png deleted file mode 100644 index 69e35d20e8..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/nodeUpgrade/9.png b/front/public/images/small/ExtraUtilities/nodeUpgrade/9.png deleted file mode 100644 index 9701778197..0000000000 Binary files a/front/public/images/small/ExtraUtilities/nodeUpgrade/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/paintbrush/0.png b/front/public/images/small/ExtraUtilities/paintbrush/0.png deleted file mode 100644 index 1b1eca2897..0000000000 Binary files a/front/public/images/small/ExtraUtilities/paintbrush/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes.1/0.png b/front/public/images/small/ExtraUtilities/pipes.1/0.png deleted file mode 100644 index 0bf4edbd42..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes.1/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/0.png b/front/public/images/small/ExtraUtilities/pipes/0.png deleted file mode 100644 index 55e1dd6379..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/10.png b/front/public/images/small/ExtraUtilities/pipes/10.png deleted file mode 100644 index c03b4fb03f..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/10.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/11.png b/front/public/images/small/ExtraUtilities/pipes/11.png deleted file mode 100644 index ef07482f48..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/11.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/12.png b/front/public/images/small/ExtraUtilities/pipes/12.png deleted file mode 100644 index 3cb1d8d309..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/12.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/13.png b/front/public/images/small/ExtraUtilities/pipes/13.png deleted file mode 100644 index e24ac6bcfb..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/13.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/14.png b/front/public/images/small/ExtraUtilities/pipes/14.png deleted file mode 100644 index 995749a67c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/14.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/8.png b/front/public/images/small/ExtraUtilities/pipes/8.png deleted file mode 100644 index 9099958d4c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/8.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pipes/9.png b/front/public/images/small/ExtraUtilities/pipes/9.png deleted file mode 100644 index cf477d3d42..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pipes/9.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/pureLove/0.png b/front/public/images/small/ExtraUtilities/pureLove/0.png deleted file mode 100644 index 8021f36fbd..0000000000 Binary files a/front/public/images/small/ExtraUtilities/pureLove/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/scanner/0.png b/front/public/images/small/ExtraUtilities/scanner/0.png deleted file mode 100644 index 61d2feab1c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/scanner/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/shears/0.png b/front/public/images/small/ExtraUtilities/shears/0.png deleted file mode 100644 index 81393f25bc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/shears/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/sonar_goggles/0.png b/front/public/images/small/ExtraUtilities/sonar_goggles/0.png deleted file mode 100644 index e54990c908..0000000000 Binary files a/front/public/images/small/ExtraUtilities/sonar_goggles/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/sound_muffler/0.png b/front/public/images/small/ExtraUtilities/sound_muffler/0.png deleted file mode 100644 index 7e53657a06..0000000000 Binary files a/front/public/images/small/ExtraUtilities/sound_muffler/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/sound_muffler/1.png b/front/public/images/small/ExtraUtilities/sound_muffler/1.png deleted file mode 100644 index 3b372727d4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/sound_muffler/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/spike_base/0.png b/front/public/images/small/ExtraUtilities/spike_base/0.png deleted file mode 100644 index 46f9abd8c9..0000000000 Binary files a/front/public/images/small/ExtraUtilities/spike_base/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/spike_base_diamond/0.png b/front/public/images/small/ExtraUtilities/spike_base_diamond/0.png deleted file mode 100644 index 3f04004a6d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/spike_base_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/spike_base_gold/0.png b/front/public/images/small/ExtraUtilities/spike_base_gold/0.png deleted file mode 100644 index 03ddcf54cc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/spike_base_gold/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/spike_base_wood/0.png b/front/public/images/small/ExtraUtilities/spike_base_wood/0.png deleted file mode 100644 index 3f55e08b9d..0000000000 Binary files a/front/public/images/small/ExtraUtilities/spike_base_wood/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/temporalHoe/0.png b/front/public/images/small/ExtraUtilities/temporalHoe/0.png deleted file mode 100644 index b5999649e5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/temporalHoe/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/timer/0.png b/front/public/images/small/ExtraUtilities/timer/0.png deleted file mode 100644 index bd4abf22e7..0000000000 Binary files a/front/public/images/small/ExtraUtilities/timer/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/trading_post/0.png b/front/public/images/small/ExtraUtilities/trading_post/0.png deleted file mode 100644 index 48c0ff3589..0000000000 Binary files a/front/public/images/small/ExtraUtilities/trading_post/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/trashcan/0.png b/front/public/images/small/ExtraUtilities/trashcan/0.png deleted file mode 100644 index bb4c4090dc..0000000000 Binary files a/front/public/images/small/ExtraUtilities/trashcan/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/trashcan/1.png b/front/public/images/small/ExtraUtilities/trashcan/1.png deleted file mode 100644 index 605bb2d44c..0000000000 Binary files a/front/public/images/small/ExtraUtilities/trashcan/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/trashcan/2.png b/front/public/images/small/ExtraUtilities/trashcan/2.png deleted file mode 100644 index 380f1bb293..0000000000 Binary files a/front/public/images/small/ExtraUtilities/trashcan/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/unstableingot/0.png b/front/public/images/small/ExtraUtilities/unstableingot/0.png deleted file mode 100644 index 93f6e4b7ac..0000000000 Binary files a/front/public/images/small/ExtraUtilities/unstableingot/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/unstableingot/1.png b/front/public/images/small/ExtraUtilities/unstableingot/1.png deleted file mode 100644 index c69756cfd5..0000000000 Binary files a/front/public/images/small/ExtraUtilities/unstableingot/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/unstableingot/2.png b/front/public/images/small/ExtraUtilities/unstableingot/2.png deleted file mode 100644 index 93f6e4b7ac..0000000000 Binary files a/front/public/images/small/ExtraUtilities/unstableingot/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/watering_can/0.png b/front/public/images/small/ExtraUtilities/watering_can/0.png deleted file mode 100644 index 3a176df9f4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/watering_can/0.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/watering_can/1.png b/front/public/images/small/ExtraUtilities/watering_can/1.png deleted file mode 100644 index 3a176df9f4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/watering_can/1.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/watering_can/2.png b/front/public/images/small/ExtraUtilities/watering_can/2.png deleted file mode 100644 index 2e828df4d4..0000000000 Binary files a/front/public/images/small/ExtraUtilities/watering_can/2.png and /dev/null differ diff --git a/front/public/images/small/ExtraUtilities/watering_can/3.png b/front/public/images/small/ExtraUtilities/watering_can/3.png deleted file mode 100644 index bdcc23e5ea..0000000000 Binary files a/front/public/images/small/ExtraUtilities/watering_can/3.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/carbonDissolver/0.png b/front/public/images/small/FloodLights/carbonDissolver/0.png deleted file mode 100644 index 3fa865e0d4..0000000000 Binary files a/front/public/images/small/FloodLights/carbonDissolver/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/carbonFloodlight/0.png b/front/public/images/small/FloodLights/carbonFloodlight/0.png deleted file mode 100644 index ddcefafda6..0000000000 Binary files a/front/public/images/small/FloodLights/carbonFloodlight/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/carbonLantern/0.png b/front/public/images/small/FloodLights/carbonLantern/0.png deleted file mode 100644 index 1ab93041a7..0000000000 Binary files a/front/public/images/small/FloodLights/carbonLantern/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/electricFloodlight/0.png b/front/public/images/small/FloodLights/electricFloodlight/0.png deleted file mode 100644 index 48e04ca5be..0000000000 Binary files a/front/public/images/small/FloodLights/electricFloodlight/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/electricIncandescentLightBulb/0.png b/front/public/images/small/FloodLights/electricIncandescentLightBulb/0.png deleted file mode 100644 index f9083b2ea8..0000000000 Binary files a/front/public/images/small/FloodLights/electricIncandescentLightBulb/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/glowingFilament/0.png b/front/public/images/small/FloodLights/glowingFilament/0.png deleted file mode 100644 index eb2685a2bf..0000000000 Binary files a/front/public/images/small/FloodLights/glowingFilament/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/growLight/0.png b/front/public/images/small/FloodLights/growLight/0.png deleted file mode 100644 index 818879d41c..0000000000 Binary files a/front/public/images/small/FloodLights/growLight/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/lightDebugTool/0.png b/front/public/images/small/FloodLights/lightDebugTool/0.png deleted file mode 100644 index 4d1fd33318..0000000000 Binary files a/front/public/images/small/FloodLights/lightDebugTool/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/mantle/0.png b/front/public/images/small/FloodLights/mantle/0.png deleted file mode 100644 index 2f024676df..0000000000 Binary files a/front/public/images/small/FloodLights/mantle/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/rawFilament/0.png b/front/public/images/small/FloodLights/rawFilament/0.png deleted file mode 100644 index c2950892d7..0000000000 Binary files a/front/public/images/small/FloodLights/rawFilament/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/smallElectricFloodlightMetaBlock/0.png b/front/public/images/small/FloodLights/smallElectricFloodlightMetaBlock/0.png deleted file mode 100644 index 855637b38d..0000000000 Binary files a/front/public/images/small/FloodLights/smallElectricFloodlightMetaBlock/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/smallElectricFloodlightMetaBlock/1.png b/front/public/images/small/FloodLights/smallElectricFloodlightMetaBlock/1.png deleted file mode 100644 index 9aeb9d5fdb..0000000000 Binary files a/front/public/images/small/FloodLights/smallElectricFloodlightMetaBlock/1.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/tilePhantomLight/0.png b/front/public/images/small/FloodLights/tilePhantomLight/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/FloodLights/tilePhantomLight/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/tileUVLight/0.png b/front/public/images/small/FloodLights/tileUVLight/0.png deleted file mode 100644 index ee1f5c0b15..0000000000 Binary files a/front/public/images/small/FloodLights/tileUVLight/0.png and /dev/null differ diff --git a/front/public/images/small/FloodLights/uvFloodlight/0.png b/front/public/images/small/FloodLights/uvFloodlight/0.png deleted file mode 100644 index cc7f1015a5..0000000000 Binary files a/front/public/images/small/FloodLights/uvFloodlight/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/ArcaneCake/0.png b/front/public/images/small/ForbiddenMagic/ArcaneCake/0.png deleted file mode 100644 index 433b874bb5..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/ArcaneCake/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/ArcaneCakeItem/0.png b/front/public/images/small/ForbiddenMagic/ArcaneCakeItem/0.png deleted file mode 100644 index 5bf27b8a20..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/ArcaneCakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/BlinkFocus/0.png b/front/public/images/small/ForbiddenMagic/BlinkFocus/0.png deleted file mode 100644 index 5287890ff5..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/BlinkFocus/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/BloodRapier/0.png b/front/public/images/small/ForbiddenMagic/BloodRapier/0.png deleted file mode 100644 index 9cb19e884a..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/BloodRapier/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/Bloodwell/0.png b/front/public/images/small/ForbiddenMagic/Bloodwell/0.png deleted file mode 100644 index 417fd35e67..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/Bloodwell/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/Boundwell/0.png b/front/public/images/small/ForbiddenMagic/Boundwell/0.png deleted file mode 100644 index 09c92e9254..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/Boundwell/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/Crystalwell/0.png b/front/public/images/small/ForbiddenMagic/Crystalwell/0.png deleted file mode 100644 index 4cd5b6c91a..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/Crystalwell/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/DiabolistFork/0.png b/front/public/images/small/ForbiddenMagic/DiabolistFork/0.png deleted file mode 100644 index 2ab3835641..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/DiabolistFork/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/EldritchOrb/0.png b/front/public/images/small/ForbiddenMagic/EldritchOrb/0.png deleted file mode 100644 index a7c4068ea5..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/EldritchOrb/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/FMResource/0.png b/front/public/images/small/ForbiddenMagic/FMResource/0.png deleted file mode 100644 index 3ce8d19fec..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/FMResource/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/FMResource/1.png b/front/public/images/small/ForbiddenMagic/FMResource/1.png deleted file mode 100644 index 8d911ee387..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/FMResource/1.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/FMResource/2.png b/front/public/images/small/ForbiddenMagic/FMResource/2.png deleted file mode 100644 index 5f15dcff02..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/FMResource/2.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/FMResource/3.png b/front/public/images/small/ForbiddenMagic/FMResource/3.png deleted file mode 100644 index b7607288fa..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/FMResource/3.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/FMResource/4.png b/front/public/images/small/ForbiddenMagic/FMResource/4.png deleted file mode 100644 index a1ee68f302..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/FMResource/4.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/GluttonyShard/0.png b/front/public/images/small/ForbiddenMagic/GluttonyShard/0.png deleted file mode 100644 index 91295c8b45..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/GluttonyShard/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/InkFlower/0.png b/front/public/images/small/ForbiddenMagic/InkFlower/0.png deleted file mode 100644 index 538a082784..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/InkFlower/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/MobCrystal/0.png b/front/public/images/small/ForbiddenMagic/MobCrystal/0.png deleted file mode 100644 index 4b7c327ba1..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/MobCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/MorphAxe/0.png b/front/public/images/small/ForbiddenMagic/MorphAxe/0.png deleted file mode 100644 index c935458781..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/MorphAxe/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/MorphPickaxe/0.png b/front/public/images/small/ForbiddenMagic/MorphPickaxe/0.png deleted file mode 100644 index 3cb7d4cf42..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/MorphPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/MorphShovel/0.png b/front/public/images/small/ForbiddenMagic/MorphShovel/0.png deleted file mode 100644 index 06baaadb06..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/MorphShovel/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/MorphSword/0.png b/front/public/images/small/ForbiddenMagic/MorphSword/0.png deleted file mode 100644 index fab7a7f907..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/MorphSword/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/NetherShard/0.png b/front/public/images/small/ForbiddenMagic/NetherShard/0.png deleted file mode 100644 index b8cb385e39..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/NetherShard/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/NetherShard/1.png b/front/public/images/small/ForbiddenMagic/NetherShard/1.png deleted file mode 100644 index be55961c04..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/NetherShard/1.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/NetherShard/2.png b/front/public/images/small/ForbiddenMagic/NetherShard/2.png deleted file mode 100644 index d8f827937f..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/NetherShard/2.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/NetherShard/3.png b/front/public/images/small/ForbiddenMagic/NetherShard/3.png deleted file mode 100644 index 0471bd965f..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/NetherShard/3.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/NetherShard/4.png b/front/public/images/small/ForbiddenMagic/NetherShard/4.png deleted file mode 100644 index f8069ebb2c..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/NetherShard/4.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/NetherShard/5.png b/front/public/images/small/ForbiddenMagic/NetherShard/5.png deleted file mode 100644 index faea4da225..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/NetherShard/5.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/NetherShard/6.png b/front/public/images/small/ForbiddenMagic/NetherShard/6.png deleted file mode 100644 index 2972d21164..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/NetherShard/6.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/Primewell/0.png b/front/public/images/small/ForbiddenMagic/Primewell/0.png deleted file mode 100644 index 3572c70a6a..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/Primewell/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/RidingCrop/0.png b/front/public/images/small/ForbiddenMagic/RidingCrop/0.png deleted file mode 100644 index 61b74b2e7b..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/RidingCrop/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/RingNutrition/0.png b/front/public/images/small/ForbiddenMagic/RingNutrition/0.png deleted file mode 100644 index c39f489d3b..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/RingNutrition/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/SkullAxe/0.png b/front/public/images/small/ForbiddenMagic/SkullAxe/0.png deleted file mode 100644 index 8513ed4608..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/SkullAxe/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/StarBlock/0.png b/front/public/images/small/ForbiddenMagic/StarBlock/0.png deleted file mode 100644 index 80b87119a6..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/StarBlock/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/SubCollar/0.png b/front/public/images/small/ForbiddenMagic/SubCollar/0.png deleted file mode 100644 index 618fff9940..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/SubCollar/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintBlock/0.png b/front/public/images/small/ForbiddenMagic/TaintBlock/0.png deleted file mode 100644 index e10a16aa0f..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintBlock/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintBlock/1.png b/front/public/images/small/ForbiddenMagic/TaintBlock/1.png deleted file mode 100644 index f6bb838938..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintBlock/1.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintCoal/0.png b/front/public/images/small/ForbiddenMagic/TaintCoal/0.png deleted file mode 100644 index fd8def5302..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintCoal/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintFruit/0.png b/front/public/images/small/ForbiddenMagic/TaintFruit/0.png deleted file mode 100644 index 6e42d9d852..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintFruit/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintLeaves/0.png b/front/public/images/small/ForbiddenMagic/TaintLeaves/0.png deleted file mode 100644 index e934e9482d..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintLog/0.png b/front/public/images/small/ForbiddenMagic/TaintLog/0.png deleted file mode 100644 index c2b3cf7ff8..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintLog/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintPickaxe/0.png b/front/public/images/small/ForbiddenMagic/TaintPickaxe/0.png deleted file mode 100644 index 99692b527c..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintPlank/0.png b/front/public/images/small/ForbiddenMagic/TaintPlank/0.png deleted file mode 100644 index 84823911c6..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintPlank/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintSapling/0.png b/front/public/images/small/ForbiddenMagic/TaintSapling/0.png deleted file mode 100644 index 581ca4cad8..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintSapling/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/TaintShovel/0.png b/front/public/images/small/ForbiddenMagic/TaintShovel/0.png deleted file mode 100644 index 3a130dcd89..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/TaintShovel/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/UmbralBush/0.png b/front/public/images/small/ForbiddenMagic/UmbralBush/0.png deleted file mode 100644 index ddf32a0873..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/UmbralBush/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCaps/0.png b/front/public/images/small/ForbiddenMagic/WandCaps/0.png deleted file mode 100644 index b2c5d7e76a..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCaps/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCaps/1.png b/front/public/images/small/ForbiddenMagic/WandCaps/1.png deleted file mode 100644 index d70d257ec6..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCaps/1.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCaps/2.png b/front/public/images/small/ForbiddenMagic/WandCaps/2.png deleted file mode 100644 index dadc4c2f1f..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCaps/2.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCaps/3.png b/front/public/images/small/ForbiddenMagic/WandCaps/3.png deleted file mode 100644 index 2f02c8dcbc..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCaps/3.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCaps/4.png b/front/public/images/small/ForbiddenMagic/WandCaps/4.png deleted file mode 100644 index 255861a65c..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCaps/4.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCaps/5.png b/front/public/images/small/ForbiddenMagic/WandCaps/5.png deleted file mode 100644 index 8946c32a9a..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCaps/5.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCaps/6.png b/front/public/images/small/ForbiddenMagic/WandCaps/6.png deleted file mode 100644 index d91ef54f09..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCaps/6.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/0.png b/front/public/images/small/ForbiddenMagic/WandCores/0.png deleted file mode 100644 index 63d7db388b..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/0.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/1.png b/front/public/images/small/ForbiddenMagic/WandCores/1.png deleted file mode 100644 index 7ae6c1bc54..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/1.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/10.png b/front/public/images/small/ForbiddenMagic/WandCores/10.png deleted file mode 100644 index 450e75d11c..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/10.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/11.png b/front/public/images/small/ForbiddenMagic/WandCores/11.png deleted file mode 100644 index cfbf289bb2..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/11.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/12.png b/front/public/images/small/ForbiddenMagic/WandCores/12.png deleted file mode 100644 index 447d39f25e..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/12.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/13.png b/front/public/images/small/ForbiddenMagic/WandCores/13.png deleted file mode 100644 index b6c73ae0d3..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/13.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/2.png b/front/public/images/small/ForbiddenMagic/WandCores/2.png deleted file mode 100644 index 481bd29603..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/2.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/3.png b/front/public/images/small/ForbiddenMagic/WandCores/3.png deleted file mode 100644 index 5c9be0ff5d..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/3.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/4.png b/front/public/images/small/ForbiddenMagic/WandCores/4.png deleted file mode 100644 index 45416ee0f7..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/4.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/5.png b/front/public/images/small/ForbiddenMagic/WandCores/5.png deleted file mode 100644 index 1686b4b8d5..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/5.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/6.png b/front/public/images/small/ForbiddenMagic/WandCores/6.png deleted file mode 100644 index 1a51bdb973..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/6.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/7.png b/front/public/images/small/ForbiddenMagic/WandCores/7.png deleted file mode 100644 index 93dee0cfc7..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/7.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/8.png b/front/public/images/small/ForbiddenMagic/WandCores/8.png deleted file mode 100644 index 066fef8138..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/8.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WandCores/9.png b/front/public/images/small/ForbiddenMagic/WandCores/9.png deleted file mode 100644 index 66a4ee4177..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WandCores/9.png and /dev/null differ diff --git a/front/public/images/small/ForbiddenMagic/WrathCage/0.png b/front/public/images/small/ForbiddenMagic/WrathCage/0.png deleted file mode 100644 index a973629729..0000000000 Binary files a/front/public/images/small/ForbiddenMagic/WrathCage/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/adventurerBag/0.png b/front/public/images/small/Forestry/adventurerBag/0.png deleted file mode 100644 index 14c9feff97..0000000000 Binary files a/front/public/images/small/Forestry/adventurerBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/adventurerBagT2/0.png b/front/public/images/small/Forestry/adventurerBagT2/0.png deleted file mode 100644 index ba11885272..0000000000 Binary files a/front/public/images/small/Forestry/adventurerBagT2/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/alveary/0.png b/front/public/images/small/Forestry/alveary/0.png deleted file mode 100644 index f4304e2994..0000000000 Binary files a/front/public/images/small/Forestry/alveary/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/alveary/2.png b/front/public/images/small/Forestry/alveary/2.png deleted file mode 100644 index ed529c3a7b..0000000000 Binary files a/front/public/images/small/Forestry/alveary/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/alveary/3.png b/front/public/images/small/Forestry/alveary/3.png deleted file mode 100644 index d9205886f0..0000000000 Binary files a/front/public/images/small/Forestry/alveary/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/alveary/4.png b/front/public/images/small/Forestry/alveary/4.png deleted file mode 100644 index 51885efa04..0000000000 Binary files a/front/public/images/small/Forestry/alveary/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/alveary/5.png b/front/public/images/small/Forestry/alveary/5.png deleted file mode 100644 index a8c310b863..0000000000 Binary files a/front/public/images/small/Forestry/alveary/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/alveary/6.png b/front/public/images/small/Forestry/alveary/6.png deleted file mode 100644 index f99f5da2b4..0000000000 Binary files a/front/public/images/small/Forestry/alveary/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/alveary/7.png b/front/public/images/small/Forestry/alveary/7.png deleted file mode 100644 index 27d1417dbf..0000000000 Binary files a/front/public/images/small/Forestry/alveary/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ambrosia/0.png b/front/public/images/small/Forestry/ambrosia/0.png deleted file mode 100644 index 0c5176ca3e..0000000000 Binary files a/front/public/images/small/Forestry/ambrosia/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apatite/0.png b/front/public/images/small/Forestry/apatite/0.png deleted file mode 100644 index 904b9271f5..0000000000 Binary files a/front/public/images/small/Forestry/apatite/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apiaristBag/0.png b/front/public/images/small/Forestry/apiaristBag/0.png deleted file mode 100644 index fd32ee12ac..0000000000 Binary files a/front/public/images/small/Forestry/apiaristBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apiaristBoots/0.png b/front/public/images/small/Forestry/apiaristBoots/0.png deleted file mode 100644 index b5f1ebab18..0000000000 Binary files a/front/public/images/small/Forestry/apiaristBoots/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apiaristChest/0.png b/front/public/images/small/Forestry/apiaristChest/0.png deleted file mode 100644 index 00072948d2..0000000000 Binary files a/front/public/images/small/Forestry/apiaristChest/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apiaristHelmet/0.png b/front/public/images/small/Forestry/apiaristHelmet/0.png deleted file mode 100644 index 3eb67ceaa1..0000000000 Binary files a/front/public/images/small/Forestry/apiaristHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apiaristLegs/0.png b/front/public/images/small/Forestry/apiaristLegs/0.png deleted file mode 100644 index 769ba075b9..0000000000 Binary files a/front/public/images/small/Forestry/apiaristLegs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apiculture/0.png b/front/public/images/small/Forestry/apiculture/0.png deleted file mode 100644 index e988b17749..0000000000 Binary files a/front/public/images/small/Forestry/apiculture/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apiculture/2.png b/front/public/images/small/Forestry/apiculture/2.png deleted file mode 100644 index 0fa77f4742..0000000000 Binary files a/front/public/images/small/Forestry/apiculture/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/apicultureChest/0.png b/front/public/images/small/Forestry/apicultureChest/0.png deleted file mode 100644 index a949e4085a..0000000000 Binary files a/front/public/images/small/Forestry/apicultureChest/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/arboriculture/0.png b/front/public/images/small/Forestry/arboriculture/0.png deleted file mode 100644 index 0e01c90270..0000000000 Binary files a/front/public/images/small/Forestry/arboriculture/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ash/0.png b/front/public/images/small/Forestry/ash/0.png deleted file mode 100644 index 330c3fdeee..0000000000 Binary files a/front/public/images/small/Forestry/ash/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/0.png b/front/public/images/small/Forestry/beeCombs/0.png deleted file mode 100644 index 51f4a457b0..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/15.png b/front/public/images/small/Forestry/beeCombs/15.png deleted file mode 100644 index 9ec6eb7c3f..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/16.png b/front/public/images/small/Forestry/beeCombs/16.png deleted file mode 100644 index c262529e12..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/2.png b/front/public/images/small/Forestry/beeCombs/2.png deleted file mode 100644 index e0b732cd25..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/3.png b/front/public/images/small/Forestry/beeCombs/3.png deleted file mode 100644 index bb5cb6d3a8..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/4.png b/front/public/images/small/Forestry/beeCombs/4.png deleted file mode 100644 index a1e6a7d85f..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/5.png b/front/public/images/small/Forestry/beeCombs/5.png deleted file mode 100644 index 98cc65cb83..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/6.png b/front/public/images/small/Forestry/beeCombs/6.png deleted file mode 100644 index 40d64abb23..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeCombs/7.png b/front/public/images/small/Forestry/beeCombs/7.png deleted file mode 100644 index ae91948a83..0000000000 Binary files a/front/public/images/small/Forestry/beeCombs/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeDroneGE/0.png b/front/public/images/small/Forestry/beeDroneGE/0.png deleted file mode 100644 index 1efd0482c2..0000000000 Binary files a/front/public/images/small/Forestry/beeDroneGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeLarvaeGE/0.png b/front/public/images/small/Forestry/beeLarvaeGE/0.png deleted file mode 100644 index 50895e4225..0000000000 Binary files a/front/public/images/small/Forestry/beeLarvaeGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beePrincessGE/0.png b/front/public/images/small/Forestry/beePrincessGE/0.png deleted file mode 100644 index 6624b32641..0000000000 Binary files a/front/public/images/small/Forestry/beePrincessGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeQueenGE/0.png b/front/public/images/small/Forestry/beeQueenGE/0.png deleted file mode 100644 index 8d2fb70d59..0000000000 Binary files a/front/public/images/small/Forestry/beeQueenGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beealyzer/0.png b/front/public/images/small/Forestry/beealyzer/0.png deleted file mode 100644 index f76213f4b7..0000000000 Binary files a/front/public/images/small/Forestry/beealyzer/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beehives/1.png b/front/public/images/small/Forestry/beehives/1.png deleted file mode 100644 index e97dd63a88..0000000000 Binary files a/front/public/images/small/Forestry/beehives/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beehives/2.png b/front/public/images/small/Forestry/beehives/2.png deleted file mode 100644 index 6bcf9a5a9a..0000000000 Binary files a/front/public/images/small/Forestry/beehives/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beehives/3.png b/front/public/images/small/Forestry/beehives/3.png deleted file mode 100644 index f91880032e..0000000000 Binary files a/front/public/images/small/Forestry/beehives/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beehives/4.png b/front/public/images/small/Forestry/beehives/4.png deleted file mode 100644 index ee91f37d6c..0000000000 Binary files a/front/public/images/small/Forestry/beehives/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beehives/6.png b/front/public/images/small/Forestry/beehives/6.png deleted file mode 100644 index 5294b95e2e..0000000000 Binary files a/front/public/images/small/Forestry/beehives/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beehives/7.png b/front/public/images/small/Forestry/beehives/7.png deleted file mode 100644 index 69378317ab..0000000000 Binary files a/front/public/images/small/Forestry/beehives/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beeswax/0.png b/front/public/images/small/Forestry/beeswax/0.png deleted file mode 100644 index 555c3266ac..0000000000 Binary files a/front/public/images/small/Forestry/beeswax/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beverage/0.png b/front/public/images/small/Forestry/beverage/0.png deleted file mode 100644 index dda7c1e477..0000000000 Binary files a/front/public/images/small/Forestry/beverage/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beverage/1.png b/front/public/images/small/Forestry/beverage/1.png deleted file mode 100644 index 6e924cec9c..0000000000 Binary files a/front/public/images/small/Forestry/beverage/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/beverage/2.png b/front/public/images/small/Forestry/beverage/2.png deleted file mode 100644 index 9eca9d088c..0000000000 Binary files a/front/public/images/small/Forestry/beverage/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bituminousPeat/0.png b/front/public/images/small/Forestry/bituminousPeat/0.png deleted file mode 100644 index a4459d7f94..0000000000 Binary files a/front/public/images/small/Forestry/bituminousPeat/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/brokenBronzePickaxe/0.png b/front/public/images/small/Forestry/brokenBronzePickaxe/0.png deleted file mode 100644 index 492a3fdba6..0000000000 Binary files a/front/public/images/small/Forestry/brokenBronzePickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/brokenBronzeShovel/0.png b/front/public/images/small/Forestry/brokenBronzeShovel/0.png deleted file mode 100644 index cb75db575b..0000000000 Binary files a/front/public/images/small/Forestry/brokenBronzeShovel/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bronzePickaxe/0.png b/front/public/images/small/Forestry/bronzePickaxe/0.png deleted file mode 100644 index 1628710cd6..0000000000 Binary files a/front/public/images/small/Forestry/bronzePickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bronzeShovel/0.png b/front/public/images/small/Forestry/bronzeShovel/0.png deleted file mode 100644 index e606c00b37..0000000000 Binary files a/front/public/images/small/Forestry/bronzeShovel/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketBiomass/0.png b/front/public/images/small/Forestry/bucketBiomass/0.png deleted file mode 100644 index 9e6ccbf9f6..0000000000 Binary files a/front/public/images/small/Forestry/bucketBiomass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketEthanol/0.png b/front/public/images/small/Forestry/bucketEthanol/0.png deleted file mode 100644 index 7bae0322c2..0000000000 Binary files a/front/public/images/small/Forestry/bucketEthanol/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketGlass/0.png b/front/public/images/small/Forestry/bucketGlass/0.png deleted file mode 100644 index d4b6bd386a..0000000000 Binary files a/front/public/images/small/Forestry/bucketGlass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketHoney/0.png b/front/public/images/small/Forestry/bucketHoney/0.png deleted file mode 100644 index 9cd760fa83..0000000000 Binary files a/front/public/images/small/Forestry/bucketHoney/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketIce/0.png b/front/public/images/small/Forestry/bucketIce/0.png deleted file mode 100644 index 3b51537a57..0000000000 Binary files a/front/public/images/small/Forestry/bucketIce/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketJuice/0.png b/front/public/images/small/Forestry/bucketJuice/0.png deleted file mode 100644 index b4f3c16481..0000000000 Binary files a/front/public/images/small/Forestry/bucketJuice/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketMead/0.png b/front/public/images/small/Forestry/bucketMead/0.png deleted file mode 100644 index 21fbc1e80e..0000000000 Binary files a/front/public/images/small/Forestry/bucketMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketSeedOil/0.png b/front/public/images/small/Forestry/bucketSeedOil/0.png deleted file mode 100644 index 37307ae12f..0000000000 Binary files a/front/public/images/small/Forestry/bucketSeedOil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/bucketShortMead/0.png b/front/public/images/small/Forestry/bucketShortMead/0.png deleted file mode 100644 index d694babf5e..0000000000 Binary files a/front/public/images/small/Forestry/bucketShortMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/builderBag/0.png b/front/public/images/small/Forestry/builderBag/0.png deleted file mode 100644 index 857b8399f9..0000000000 Binary files a/front/public/images/small/Forestry/builderBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/builderBagT2/0.png b/front/public/images/small/Forestry/builderBagT2/0.png deleted file mode 100644 index bc7f96b8a2..0000000000 Binary files a/front/public/images/small/Forestry/builderBagT2/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/butterflyGE/0.png b/front/public/images/small/Forestry/butterflyGE/0.png deleted file mode 100644 index c832264cc0..0000000000 Binary files a/front/public/images/small/Forestry/butterflyGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canBiomass/0.png b/front/public/images/small/Forestry/canBiomass/0.png deleted file mode 100644 index 13b4c9d0eb..0000000000 Binary files a/front/public/images/small/Forestry/canBiomass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canEmpty/0.png b/front/public/images/small/Forestry/canEmpty/0.png deleted file mode 100644 index 726984ab01..0000000000 Binary files a/front/public/images/small/Forestry/canEmpty/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canEthanol/0.png b/front/public/images/small/Forestry/canEthanol/0.png deleted file mode 100644 index ee2e4fd41d..0000000000 Binary files a/front/public/images/small/Forestry/canEthanol/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canFuel/0.png b/front/public/images/small/Forestry/canFuel/0.png deleted file mode 100644 index be21ce08e4..0000000000 Binary files a/front/public/images/small/Forestry/canFuel/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canHoney/0.png b/front/public/images/small/Forestry/canHoney/0.png deleted file mode 100644 index cef3bd8003..0000000000 Binary files a/front/public/images/small/Forestry/canHoney/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canIce/0.png b/front/public/images/small/Forestry/canIce/0.png deleted file mode 100644 index 2a8c9c5f16..0000000000 Binary files a/front/public/images/small/Forestry/canIce/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canJuice/0.png b/front/public/images/small/Forestry/canJuice/0.png deleted file mode 100644 index b6771e47a7..0000000000 Binary files a/front/public/images/small/Forestry/canJuice/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canLava/0.png b/front/public/images/small/Forestry/canLava/0.png deleted file mode 100644 index 3db34a1896..0000000000 Binary files a/front/public/images/small/Forestry/canLava/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canMead/0.png b/front/public/images/small/Forestry/canMead/0.png deleted file mode 100644 index 7e59cf95ae..0000000000 Binary files a/front/public/images/small/Forestry/canMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canOil/0.png b/front/public/images/small/Forestry/canOil/0.png deleted file mode 100644 index bab8c035b4..0000000000 Binary files a/front/public/images/small/Forestry/canOil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canSeedOil/0.png b/front/public/images/small/Forestry/canSeedOil/0.png deleted file mode 100644 index dc2b254536..0000000000 Binary files a/front/public/images/small/Forestry/canSeedOil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canShortMead/0.png b/front/public/images/small/Forestry/canShortMead/0.png deleted file mode 100644 index 365a16dd48..0000000000 Binary files a/front/public/images/small/Forestry/canShortMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/canWater/0.png b/front/public/images/small/Forestry/canWater/0.png deleted file mode 100644 index be2cd83fe2..0000000000 Binary files a/front/public/images/small/Forestry/canWater/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/candle/0.png b/front/public/images/small/Forestry/candle/0.png deleted file mode 100644 index bf6a22ec29..0000000000 Binary files a/front/public/images/small/Forestry/candle/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cart.beehouse/0.png b/front/public/images/small/Forestry/cart.beehouse/0.png deleted file mode 100644 index ff2c110d8a..0000000000 Binary files a/front/public/images/small/Forestry/cart.beehouse/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cart.beehouse/1.png b/front/public/images/small/Forestry/cart.beehouse/1.png deleted file mode 100644 index 13f5b31e43..0000000000 Binary files a/front/public/images/small/Forestry/cart.beehouse/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/carton/0.png b/front/public/images/small/Forestry/carton/0.png deleted file mode 100644 index 7172a559e0..0000000000 Binary files a/front/public/images/small/Forestry/carton/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/catalogue/0.png b/front/public/images/small/Forestry/catalogue/0.png deleted file mode 100644 index cdb5c14ef0..0000000000 Binary files a/front/public/images/small/Forestry/catalogue/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/caterpillarGE/0.png b/front/public/images/small/Forestry/caterpillarGE/0.png deleted file mode 100644 index 7ca1c026bb..0000000000 Binary files a/front/public/images/small/Forestry/caterpillarGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/chipsets/0.png b/front/public/images/small/Forestry/chipsets/0.png deleted file mode 100644 index de78fc72d9..0000000000 Binary files a/front/public/images/small/Forestry/chipsets/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/chipsets/1.png b/front/public/images/small/Forestry/chipsets/1.png deleted file mode 100644 index d60ee30359..0000000000 Binary files a/front/public/images/small/Forestry/chipsets/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/chipsets/2.png b/front/public/images/small/Forestry/chipsets/2.png deleted file mode 100644 index f47b4e970f..0000000000 Binary files a/front/public/images/small/Forestry/chipsets/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/chipsets/3.png b/front/public/images/small/Forestry/chipsets/3.png deleted file mode 100644 index 399246ab69..0000000000 Binary files a/front/public/images/small/Forestry/chipsets/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/core/0.png b/front/public/images/small/Forestry/core/0.png deleted file mode 100644 index ea728f34d2..0000000000 Binary files a/front/public/images/small/Forestry/core/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/core/1.png b/front/public/images/small/Forestry/core/1.png deleted file mode 100644 index ac53be0b4d..0000000000 Binary files a/front/public/images/small/Forestry/core/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/craftingMaterial/0.png b/front/public/images/small/Forestry/craftingMaterial/0.png deleted file mode 100644 index ee26ef19f9..0000000000 Binary files a/front/public/images/small/Forestry/craftingMaterial/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/craftingMaterial/1.png b/front/public/images/small/Forestry/craftingMaterial/1.png deleted file mode 100644 index ee67676bb3..0000000000 Binary files a/front/public/images/small/Forestry/craftingMaterial/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/craftingMaterial/2.png b/front/public/images/small/Forestry/craftingMaterial/2.png deleted file mode 100644 index aad92f69c9..0000000000 Binary files a/front/public/images/small/Forestry/craftingMaterial/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/craftingMaterial/3.png b/front/public/images/small/Forestry/craftingMaterial/3.png deleted file mode 100644 index c2de9e21ff..0000000000 Binary files a/front/public/images/small/Forestry/craftingMaterial/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/craftingMaterial/4.png b/front/public/images/small/Forestry/craftingMaterial/4.png deleted file mode 100644 index f2741113bc..0000000000 Binary files a/front/public/images/small/Forestry/craftingMaterial/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/craftingMaterial/5.png b/front/public/images/small/Forestry/craftingMaterial/5.png deleted file mode 100644 index 9c8b859c9b..0000000000 Binary files a/front/public/images/small/Forestry/craftingMaterial/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/craftingMaterial/6.png b/front/public/images/small/Forestry/craftingMaterial/6.png deleted file mode 100644 index 4964bb2809..0000000000 Binary files a/front/public/images/small/Forestry/craftingMaterial/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/crate/0.png b/front/public/images/small/Forestry/crate/0.png deleted file mode 100644 index 8c53a1ee3e..0000000000 Binary files a/front/public/images/small/Forestry/crate/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedAcaciaSapling/0.png b/front/public/images/small/Forestry/cratedAcaciaSapling/0.png deleted file mode 100644 index 0d9b7b5c1e..0000000000 Binary files a/front/public/images/small/Forestry/cratedAcaciaSapling/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedAcaciaWood/0.png b/front/public/images/small/Forestry/cratedAcaciaWood/0.png deleted file mode 100644 index bba71920ea..0000000000 Binary files a/front/public/images/small/Forestry/cratedAcaciaWood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedApatite/0.png b/front/public/images/small/Forestry/cratedApatite/0.png deleted file mode 100644 index 0fa9e3ff41..0000000000 Binary files a/front/public/images/small/Forestry/cratedApatite/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedApples/0.png b/front/public/images/small/Forestry/cratedApples/0.png deleted file mode 100644 index 7c624c0171..0000000000 Binary files a/front/public/images/small/Forestry/cratedApples/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedAsh/0.png b/front/public/images/small/Forestry/cratedAsh/0.png deleted file mode 100644 index 38c19d574a..0000000000 Binary files a/front/public/images/small/Forestry/cratedAsh/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedBeeswax/0.png b/front/public/images/small/Forestry/cratedBeeswax/0.png deleted file mode 100644 index 8817e6aa4c..0000000000 Binary files a/front/public/images/small/Forestry/cratedBeeswax/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedBirchSapling/0.png b/front/public/images/small/Forestry/cratedBirchSapling/0.png deleted file mode 100644 index 26b737284b..0000000000 Binary files a/front/public/images/small/Forestry/cratedBirchSapling/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedBirchWood/0.png b/front/public/images/small/Forestry/cratedBirchWood/0.png deleted file mode 100644 index 15d2f9fc77..0000000000 Binary files a/front/public/images/small/Forestry/cratedBirchWood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedBogearth/0.png b/front/public/images/small/Forestry/cratedBogearth/0.png deleted file mode 100644 index a7541dcda3..0000000000 Binary files a/front/public/images/small/Forestry/cratedBogearth/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedBrass/0.png b/front/public/images/small/Forestry/cratedBrass/0.png deleted file mode 100644 index 295ebadd46..0000000000 Binary files a/front/public/images/small/Forestry/cratedBrass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedBrick/0.png b/front/public/images/small/Forestry/cratedBrick/0.png deleted file mode 100644 index 175cab9dd1..0000000000 Binary files a/front/public/images/small/Forestry/cratedBrick/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedBronze/0.png b/front/public/images/small/Forestry/cratedBronze/0.png deleted file mode 100644 index 664e29841e..0000000000 Binary files a/front/public/images/small/Forestry/cratedBronze/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCacti/0.png b/front/public/images/small/Forestry/cratedCacti/0.png deleted file mode 100644 index c3c956065b..0000000000 Binary files a/front/public/images/small/Forestry/cratedCacti/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCarrots/0.png b/front/public/images/small/Forestry/cratedCarrots/0.png deleted file mode 100644 index 7c7803dbac..0000000000 Binary files a/front/public/images/small/Forestry/cratedCarrots/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCharcoal/0.png b/front/public/images/small/Forestry/cratedCharcoal/0.png deleted file mode 100644 index c6f205fa3d..0000000000 Binary files a/front/public/images/small/Forestry/cratedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCherry/0.png b/front/public/images/small/Forestry/cratedCherry/0.png deleted file mode 100644 index f613ea2b54..0000000000 Binary files a/front/public/images/small/Forestry/cratedCherry/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedChestnut/0.png b/front/public/images/small/Forestry/cratedChestnut/0.png deleted file mode 100644 index 5401df426a..0000000000 Binary files a/front/public/images/small/Forestry/cratedChestnut/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedClay/0.png b/front/public/images/small/Forestry/cratedClay/0.png deleted file mode 100644 index 43a43e6ffd..0000000000 Binary files a/front/public/images/small/Forestry/cratedClay/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCoal/0.png b/front/public/images/small/Forestry/cratedCoal/0.png deleted file mode 100644 index 86cbecce91..0000000000 Binary files a/front/public/images/small/Forestry/cratedCoal/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCobblestone/0.png b/front/public/images/small/Forestry/cratedCobblestone/0.png deleted file mode 100644 index 4a180a3719..0000000000 Binary files a/front/public/images/small/Forestry/cratedCobblestone/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCocoaComb/0.png b/front/public/images/small/Forestry/cratedCocoaComb/0.png deleted file mode 100644 index 07c654243d..0000000000 Binary files a/front/public/images/small/Forestry/cratedCocoaComb/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCookies/0.png b/front/public/images/small/Forestry/cratedCookies/0.png deleted file mode 100644 index fccf1b81bc..0000000000 Binary files a/front/public/images/small/Forestry/cratedCookies/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCopper/0.png b/front/public/images/small/Forestry/cratedCopper/0.png deleted file mode 100644 index efae497c82..0000000000 Binary files a/front/public/images/small/Forestry/cratedCopper/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedCrystallinePollen/0.png b/front/public/images/small/Forestry/cratedCrystallinePollen/0.png deleted file mode 100644 index 04a0f7a000..0000000000 Binary files a/front/public/images/small/Forestry/cratedCrystallinePollen/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedDarkOakSapling/0.png b/front/public/images/small/Forestry/cratedDarkOakSapling/0.png deleted file mode 100644 index 7bde42ac63..0000000000 Binary files a/front/public/images/small/Forestry/cratedDarkOakSapling/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedDarkOakWood/0.png b/front/public/images/small/Forestry/cratedDarkOakWood/0.png deleted file mode 100644 index b31d4ac3f2..0000000000 Binary files a/front/public/images/small/Forestry/cratedDarkOakWood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedDates/0.png b/front/public/images/small/Forestry/cratedDates/0.png deleted file mode 100644 index 0c02c3d0e1..0000000000 Binary files a/front/public/images/small/Forestry/cratedDates/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedDirt/0.png b/front/public/images/small/Forestry/cratedDirt/0.png deleted file mode 100644 index 8976d4fcf6..0000000000 Binary files a/front/public/images/small/Forestry/cratedDirt/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedDrippingCombs/0.png b/front/public/images/small/Forestry/cratedDrippingCombs/0.png deleted file mode 100644 index 2465c1b773..0000000000 Binary files a/front/public/images/small/Forestry/cratedDrippingCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedFertilizer/0.png b/front/public/images/small/Forestry/cratedFertilizer/0.png deleted file mode 100644 index 1ffa39350d..0000000000 Binary files a/front/public/images/small/Forestry/cratedFertilizer/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedFrozenCombs/0.png b/front/public/images/small/Forestry/cratedFrozenCombs/0.png deleted file mode 100644 index 3dedd01ade..0000000000 Binary files a/front/public/images/small/Forestry/cratedFrozenCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedGlowstone/0.png b/front/public/images/small/Forestry/cratedGlowstone/0.png deleted file mode 100644 index 9aa09d4d7a..0000000000 Binary files a/front/public/images/small/Forestry/cratedGlowstone/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedGravel/0.png b/front/public/images/small/Forestry/cratedGravel/0.png deleted file mode 100644 index d852afa068..0000000000 Binary files a/front/public/images/small/Forestry/cratedGravel/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedHoneycombs/0.png b/front/public/images/small/Forestry/cratedHoneycombs/0.png deleted file mode 100644 index ad4d00d123..0000000000 Binary files a/front/public/images/small/Forestry/cratedHoneycombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedHoneydew/0.png b/front/public/images/small/Forestry/cratedHoneydew/0.png deleted file mode 100644 index 0f961b3fff..0000000000 Binary files a/front/public/images/small/Forestry/cratedHoneydew/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedHumus/0.png b/front/public/images/small/Forestry/cratedHumus/0.png deleted file mode 100644 index ec556273b9..0000000000 Binary files a/front/public/images/small/Forestry/cratedHumus/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedJungleSapling/0.png b/front/public/images/small/Forestry/cratedJungleSapling/0.png deleted file mode 100644 index 10f831bb23..0000000000 Binary files a/front/public/images/small/Forestry/cratedJungleSapling/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedJungleWood/0.png b/front/public/images/small/Forestry/cratedJungleWood/0.png deleted file mode 100644 index 6278336ec2..0000000000 Binary files a/front/public/images/small/Forestry/cratedJungleWood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedLapis/0.png b/front/public/images/small/Forestry/cratedLapis/0.png deleted file mode 100644 index ec7eb60bfe..0000000000 Binary files a/front/public/images/small/Forestry/cratedLapis/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedLemon/0.png b/front/public/images/small/Forestry/cratedLemon/0.png deleted file mode 100644 index fd68010f05..0000000000 Binary files a/front/public/images/small/Forestry/cratedLemon/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedMellowCombs/0.png b/front/public/images/small/Forestry/cratedMellowCombs/0.png deleted file mode 100644 index 41581e100a..0000000000 Binary files a/front/public/images/small/Forestry/cratedMellowCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedMossyCombs/0.png b/front/public/images/small/Forestry/cratedMossyCombs/0.png deleted file mode 100644 index 16a6b20647..0000000000 Binary files a/front/public/images/small/Forestry/cratedMossyCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedMulch/0.png b/front/public/images/small/Forestry/cratedMulch/0.png deleted file mode 100644 index af1de8ed9e..0000000000 Binary files a/front/public/images/small/Forestry/cratedMulch/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedMycelium/0.png b/front/public/images/small/Forestry/cratedMycelium/0.png deleted file mode 100644 index 56489ea9f5..0000000000 Binary files a/front/public/images/small/Forestry/cratedMycelium/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedMysteriousCombs/0.png b/front/public/images/small/Forestry/cratedMysteriousCombs/0.png deleted file mode 100644 index ab48423cd2..0000000000 Binary files a/front/public/images/small/Forestry/cratedMysteriousCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBarley/0.png b/front/public/images/small/Forestry/cratedNaturaBarley/0.png deleted file mode 100644 index f9e7dc0dc7..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBarley/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerryBlack/0.png b/front/public/images/small/Forestry/cratedNaturaBerryBlack/0.png deleted file mode 100644 index 971b1114ba..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerryBlack/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerryBlight/0.png b/front/public/images/small/Forestry/cratedNaturaBerryBlight/0.png deleted file mode 100644 index 60992e7426..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerryBlight/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerryBlue/0.png b/front/public/images/small/Forestry/cratedNaturaBerryBlue/0.png deleted file mode 100644 index 85e477f38d..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerryBlue/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerryDusk/0.png b/front/public/images/small/Forestry/cratedNaturaBerryDusk/0.png deleted file mode 100644 index 2b9bb5553d..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerryDusk/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerryMalo/0.png b/front/public/images/small/Forestry/cratedNaturaBerryMalo/0.png deleted file mode 100644 index 5361f92412..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerryMalo/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerryRasp/0.png b/front/public/images/small/Forestry/cratedNaturaBerryRasp/0.png deleted file mode 100644 index 8c0d439985..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerryRasp/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerrySky/0.png b/front/public/images/small/Forestry/cratedNaturaBerrySky/0.png deleted file mode 100644 index 6352a3e948..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerrySky/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBerrySting/0.png b/front/public/images/small/Forestry/cratedNaturaBerrySting/0.png deleted file mode 100644 index de5ae97d51..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBerrySting/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBlockHeatsand/0.png b/front/public/images/small/Forestry/cratedNaturaBlockHeatsand/0.png deleted file mode 100644 index c0ac91249d..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBlockHeatsand/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBlockTainted/0.png b/front/public/images/small/Forestry/cratedNaturaBlockTainted/0.png deleted file mode 100644 index 033ad7f519..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBlockTainted/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaBlueGlowshroom/0.png b/front/public/images/small/Forestry/cratedNaturaBlueGlowshroom/0.png deleted file mode 100644 index 682ff57b18..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaBlueGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaGreenGlowshroom/0.png b/front/public/images/small/Forestry/cratedNaturaGreenGlowshroom/0.png deleted file mode 100644 index 1fe290fac7..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaGreenGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogBloodwood/0.png b/front/public/images/small/Forestry/cratedNaturaLogBloodwood/0.png deleted file mode 100644 index 8035f97ac2..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogBloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogDarkwood/0.png b/front/public/images/small/Forestry/cratedNaturaLogDarkwood/0.png deleted file mode 100644 index 03257a039a..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogDarkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogEucalyptus/0.png b/front/public/images/small/Forestry/cratedNaturaLogEucalyptus/0.png deleted file mode 100644 index b5195beb76..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogEucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogFusewood/0.png b/front/public/images/small/Forestry/cratedNaturaLogFusewood/0.png deleted file mode 100644 index 03257a039a..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogFusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogGhostwood/0.png b/front/public/images/small/Forestry/cratedNaturaLogGhostwood/0.png deleted file mode 100644 index b5195beb76..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogGhostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogHopseed/0.png b/front/public/images/small/Forestry/cratedNaturaLogHopseed/0.png deleted file mode 100644 index b5195beb76..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogHopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogSakura/0.png b/front/public/images/small/Forestry/cratedNaturaLogSakura/0.png deleted file mode 100644 index b5195beb76..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogSakura/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaLogWillow/0.png b/front/public/images/small/Forestry/cratedNaturaLogWillow/0.png deleted file mode 100644 index e7c2027a60..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaLogWillow/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaPotashApple/0.png b/front/public/images/small/Forestry/cratedNaturaPotashApple/0.png deleted file mode 100644 index 4d36338b75..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaPotashApple/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaPurpleGlowshroom/0.png b/front/public/images/small/Forestry/cratedNaturaPurpleGlowshroom/0.png deleted file mode 100644 index 93a5978c4a..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaPurpleGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingBlood/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingBlood/0.png deleted file mode 100644 index 701938f757..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingBlood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingDarkwood/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingDarkwood/0.png deleted file mode 100644 index a8cc1dd694..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingDarkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingEucalyptus/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingEucalyptus/0.png deleted file mode 100644 index 48236cd46d..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingEucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingFusewood/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingFusewood/0.png deleted file mode 100644 index 7cb17d83c2..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingFusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingGhostwood/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingGhostwood/0.png deleted file mode 100644 index f5e7969693..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingGhostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingHopseed/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingHopseed/0.png deleted file mode 100644 index 9b447e5745..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingHopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingMaple/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingMaple/0.png deleted file mode 100644 index 9998cfbd3d..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingMaple/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingPurpleheart/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingPurpleheart/0.png deleted file mode 100644 index 3d65de84f2..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingPurpleheart/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingRedwood/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingRedwood/0.png deleted file mode 100644 index 3ce89070f5..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingRedwood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingSakura/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingSakura/0.png deleted file mode 100644 index ba9ff282d0..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingSakura/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingSilverbell/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingSilverbell/0.png deleted file mode 100644 index f2a25c8382..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingSilverbell/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingTiger/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingTiger/0.png deleted file mode 100644 index 9ad6d579da..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingTiger/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNaturaSaplingWillow/0.png b/front/public/images/small/Forestry/cratedNaturaSaplingWillow/0.png deleted file mode 100644 index 461be5381c..0000000000 Binary files a/front/public/images/small/Forestry/cratedNaturaSaplingWillow/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNetherbrick/0.png b/front/public/images/small/Forestry/cratedNetherbrick/0.png deleted file mode 100644 index cda55bba13..0000000000 Binary files a/front/public/images/small/Forestry/cratedNetherbrick/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNetherrack/0.png b/front/public/images/small/Forestry/cratedNetherrack/0.png deleted file mode 100644 index 8a43d4ab83..0000000000 Binary files a/front/public/images/small/Forestry/cratedNetherrack/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedNetherwart/0.png b/front/public/images/small/Forestry/cratedNetherwart/0.png deleted file mode 100644 index feb92ad6d4..0000000000 Binary files a/front/public/images/small/Forestry/cratedNetherwart/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedObsidian/0.png b/front/public/images/small/Forestry/cratedObsidian/0.png deleted file mode 100644 index ea64a5ca9f..0000000000 Binary files a/front/public/images/small/Forestry/cratedObsidian/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPapaya/0.png b/front/public/images/small/Forestry/cratedPapaya/0.png deleted file mode 100644 index 4f0cdfbd1f..0000000000 Binary files a/front/public/images/small/Forestry/cratedPapaya/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedParchedCombs/0.png b/front/public/images/small/Forestry/cratedParchedCombs/0.png deleted file mode 100644 index cd44b43886..0000000000 Binary files a/front/public/images/small/Forestry/cratedParchedCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPeat/0.png b/front/public/images/small/Forestry/cratedPeat/0.png deleted file mode 100644 index 97c9b777b7..0000000000 Binary files a/front/public/images/small/Forestry/cratedPeat/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPhosphor/0.png b/front/public/images/small/Forestry/cratedPhosphor/0.png deleted file mode 100644 index a5a0161dc0..0000000000 Binary files a/front/public/images/small/Forestry/cratedPhosphor/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPlum/0.png b/front/public/images/small/Forestry/cratedPlum/0.png deleted file mode 100644 index 96a3b383d5..0000000000 Binary files a/front/public/images/small/Forestry/cratedPlum/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPodzol/0.png b/front/public/images/small/Forestry/cratedPodzol/0.png deleted file mode 100644 index 5a9a173bda..0000000000 Binary files a/front/public/images/small/Forestry/cratedPodzol/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPollen/0.png b/front/public/images/small/Forestry/cratedPollen/0.png deleted file mode 100644 index 3e03fa4e00..0000000000 Binary files a/front/public/images/small/Forestry/cratedPollen/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPotatoes/0.png b/front/public/images/small/Forestry/cratedPotatoes/0.png deleted file mode 100644 index b1d61b4947..0000000000 Binary files a/front/public/images/small/Forestry/cratedPotatoes/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPowderyCombs/0.png b/front/public/images/small/Forestry/cratedPowderyCombs/0.png deleted file mode 100644 index 47bb6b29c0..0000000000 Binary files a/front/public/images/small/Forestry/cratedPowderyCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedPropolis/0.png b/front/public/images/small/Forestry/cratedPropolis/0.png deleted file mode 100644 index a6c156d893..0000000000 Binary files a/front/public/images/small/Forestry/cratedPropolis/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedRedSand/0.png b/front/public/images/small/Forestry/cratedRedSand/0.png deleted file mode 100644 index 8b2cee36a5..0000000000 Binary files a/front/public/images/small/Forestry/cratedRedSand/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedRedstone/0.png b/front/public/images/small/Forestry/cratedRedstone/0.png deleted file mode 100644 index a9f6598f81..0000000000 Binary files a/front/public/images/small/Forestry/cratedRedstone/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedReeds/0.png b/front/public/images/small/Forestry/cratedReeds/0.png deleted file mode 100644 index 9fa33f79d3..0000000000 Binary files a/front/public/images/small/Forestry/cratedReeds/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedRefractoryWax/0.png b/front/public/images/small/Forestry/cratedRefractoryWax/0.png deleted file mode 100644 index 2f969fe6d5..0000000000 Binary files a/front/public/images/small/Forestry/cratedRefractoryWax/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedResin/0.png b/front/public/images/small/Forestry/cratedResin/0.png deleted file mode 100644 index 2eb776d89b..0000000000 Binary files a/front/public/images/small/Forestry/cratedResin/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedRoyalJelly/0.png b/front/public/images/small/Forestry/cratedRoyalJelly/0.png deleted file mode 100644 index 0dd884edae..0000000000 Binary files a/front/public/images/small/Forestry/cratedRoyalJelly/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedRubber/0.png b/front/public/images/small/Forestry/cratedRubber/0.png deleted file mode 100644 index f01f711eb5..0000000000 Binary files a/front/public/images/small/Forestry/cratedRubber/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSand/0.png b/front/public/images/small/Forestry/cratedSand/0.png deleted file mode 100644 index 98afa14fe0..0000000000 Binary files a/front/public/images/small/Forestry/cratedSand/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSandstone/0.png b/front/public/images/small/Forestry/cratedSandstone/0.png deleted file mode 100644 index 6e32454c70..0000000000 Binary files a/front/public/images/small/Forestry/cratedSandstone/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSaplings/0.png b/front/public/images/small/Forestry/cratedSaplings/0.png deleted file mode 100644 index dc1ca20efb..0000000000 Binary files a/front/public/images/small/Forestry/cratedSaplings/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedScrap/0.png b/front/public/images/small/Forestry/cratedScrap/0.png deleted file mode 100644 index 88865c0723..0000000000 Binary files a/front/public/images/small/Forestry/cratedScrap/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSeeds/0.png b/front/public/images/small/Forestry/cratedSeeds/0.png deleted file mode 100644 index 2809696d3a..0000000000 Binary files a/front/public/images/small/Forestry/cratedSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSilkyCombs/0.png b/front/public/images/small/Forestry/cratedSilkyCombs/0.png deleted file mode 100644 index bfc962895f..0000000000 Binary files a/front/public/images/small/Forestry/cratedSilkyCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSilver/0.png b/front/public/images/small/Forestry/cratedSilver/0.png deleted file mode 100644 index d04e04d96d..0000000000 Binary files a/front/public/images/small/Forestry/cratedSilver/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSimmeringCombs/0.png b/front/public/images/small/Forestry/cratedSimmeringCombs/0.png deleted file mode 100644 index 6835e9c997..0000000000 Binary files a/front/public/images/small/Forestry/cratedSimmeringCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSoulsand/0.png b/front/public/images/small/Forestry/cratedSoulsand/0.png deleted file mode 100644 index c78fe070b9..0000000000 Binary files a/front/public/images/small/Forestry/cratedSoulsand/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSpruceSapling/0.png b/front/public/images/small/Forestry/cratedSpruceSapling/0.png deleted file mode 100644 index 9a8e016d98..0000000000 Binary files a/front/public/images/small/Forestry/cratedSpruceSapling/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedSpruceWood/0.png b/front/public/images/small/Forestry/cratedSpruceWood/0.png deleted file mode 100644 index cf20137a3f..0000000000 Binary files a/front/public/images/small/Forestry/cratedSpruceWood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedStone/0.png b/front/public/images/small/Forestry/cratedStone/0.png deleted file mode 100644 index e748add2a1..0000000000 Binary files a/front/public/images/small/Forestry/cratedStone/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedStringyCombs/0.png b/front/public/images/small/Forestry/cratedStringyCombs/0.png deleted file mode 100644 index 04518ff70c..0000000000 Binary files a/front/public/images/small/Forestry/cratedStringyCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedTin/0.png b/front/public/images/small/Forestry/cratedTin/0.png deleted file mode 100644 index d30803cbe0..0000000000 Binary files a/front/public/images/small/Forestry/cratedTin/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedWalnut/0.png b/front/public/images/small/Forestry/cratedWalnut/0.png deleted file mode 100644 index c7926250cd..0000000000 Binary files a/front/public/images/small/Forestry/cratedWalnut/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedWheat/0.png b/front/public/images/small/Forestry/cratedWheat/0.png deleted file mode 100644 index 9616f19908..0000000000 Binary files a/front/public/images/small/Forestry/cratedWheat/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedWheatenCombs/0.png b/front/public/images/small/Forestry/cratedWheatenCombs/0.png deleted file mode 100644 index d0a4e698d4..0000000000 Binary files a/front/public/images/small/Forestry/cratedWheatenCombs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/cratedWood/0.png b/front/public/images/small/Forestry/cratedWood/0.png deleted file mode 100644 index 91b5f64bcd..0000000000 Binary files a/front/public/images/small/Forestry/cratedWood/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/decayingWheat/0.png b/front/public/images/small/Forestry/decayingWheat/0.png deleted file mode 100644 index 95b8cde386..0000000000 Binary files a/front/public/images/small/Forestry/decayingWheat/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/diggerBag/0.png b/front/public/images/small/Forestry/diggerBag/0.png deleted file mode 100644 index d71cfc4430..0000000000 Binary files a/front/public/images/small/Forestry/diggerBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/diggerBagT2/0.png b/front/public/images/small/Forestry/diggerBagT2/0.png deleted file mode 100644 index b97180af71..0000000000 Binary files a/front/public/images/small/Forestry/diggerBagT2/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/engine/0.png b/front/public/images/small/Forestry/engine/0.png deleted file mode 100644 index ad85a0e7ca..0000000000 Binary files a/front/public/images/small/Forestry/engine/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/engine/1.png b/front/public/images/small/Forestry/engine/1.png deleted file mode 100644 index d92a8dde37..0000000000 Binary files a/front/public/images/small/Forestry/engine/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/engine/2.png b/front/public/images/small/Forestry/engine/2.png deleted file mode 100644 index 709569e8f2..0000000000 Binary files a/front/public/images/small/Forestry/engine/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/engine/3.png b/front/public/images/small/Forestry/engine/3.png deleted file mode 100644 index 1c02974956..0000000000 Binary files a/front/public/images/small/Forestry/engine/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/engine/4.png b/front/public/images/small/Forestry/engine/4.png deleted file mode 100644 index 2d00890965..0000000000 Binary files a/front/public/images/small/Forestry/engine/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/0.png b/front/public/images/small/Forestry/factory/0.png deleted file mode 100644 index e16cdf4c77..0000000000 Binary files a/front/public/images/small/Forestry/factory/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/1.png b/front/public/images/small/Forestry/factory/1.png deleted file mode 100644 index be6aa364b8..0000000000 Binary files a/front/public/images/small/Forestry/factory/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/2.png b/front/public/images/small/Forestry/factory/2.png deleted file mode 100644 index e4bf37f38e..0000000000 Binary files a/front/public/images/small/Forestry/factory/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/3.png b/front/public/images/small/Forestry/factory/3.png deleted file mode 100644 index 7b6aed8834..0000000000 Binary files a/front/public/images/small/Forestry/factory/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/4.png b/front/public/images/small/Forestry/factory/4.png deleted file mode 100644 index b2e1a713c8..0000000000 Binary files a/front/public/images/small/Forestry/factory/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/5.png b/front/public/images/small/Forestry/factory/5.png deleted file mode 100644 index b0e234f9de..0000000000 Binary files a/front/public/images/small/Forestry/factory/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/6.png b/front/public/images/small/Forestry/factory/6.png deleted file mode 100644 index d386c36213..0000000000 Binary files a/front/public/images/small/Forestry/factory/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory/7.png b/front/public/images/small/Forestry/factory/7.png deleted file mode 100644 index 7597d578eb..0000000000 Binary files a/front/public/images/small/Forestry/factory/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory2/0.png b/front/public/images/small/Forestry/factory2/0.png deleted file mode 100644 index 1a78bde108..0000000000 Binary files a/front/public/images/small/Forestry/factory2/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory2/1.png b/front/public/images/small/Forestry/factory2/1.png deleted file mode 100644 index b143fee704..0000000000 Binary files a/front/public/images/small/Forestry/factory2/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/factory2/2.png b/front/public/images/small/Forestry/factory2/2.png deleted file mode 100644 index 8753c97f71..0000000000 Binary files a/front/public/images/small/Forestry/factory2/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/0.png b/front/public/images/small/Forestry/fences/0.png deleted file mode 100644 index 9ac248d0bb..0000000000 Binary files a/front/public/images/small/Forestry/fences/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/1.png b/front/public/images/small/Forestry/fences/1.png deleted file mode 100644 index 3ac3e98194..0000000000 Binary files a/front/public/images/small/Forestry/fences/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/10.png b/front/public/images/small/Forestry/fences/10.png deleted file mode 100644 index 0e70dcac2b..0000000000 Binary files a/front/public/images/small/Forestry/fences/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/11.png b/front/public/images/small/Forestry/fences/11.png deleted file mode 100644 index bce4c10565..0000000000 Binary files a/front/public/images/small/Forestry/fences/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/12.png b/front/public/images/small/Forestry/fences/12.png deleted file mode 100644 index 0d354bf27a..0000000000 Binary files a/front/public/images/small/Forestry/fences/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/13.png b/front/public/images/small/Forestry/fences/13.png deleted file mode 100644 index 4e49a2d698..0000000000 Binary files a/front/public/images/small/Forestry/fences/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/14.png b/front/public/images/small/Forestry/fences/14.png deleted file mode 100644 index 8dbb295fa8..0000000000 Binary files a/front/public/images/small/Forestry/fences/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/15.png b/front/public/images/small/Forestry/fences/15.png deleted file mode 100644 index aea2408e0b..0000000000 Binary files a/front/public/images/small/Forestry/fences/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/16.png b/front/public/images/small/Forestry/fences/16.png deleted file mode 100644 index 5a5d09ee0d..0000000000 Binary files a/front/public/images/small/Forestry/fences/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/17.png b/front/public/images/small/Forestry/fences/17.png deleted file mode 100644 index 4baeaaaa83..0000000000 Binary files a/front/public/images/small/Forestry/fences/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/18.png b/front/public/images/small/Forestry/fences/18.png deleted file mode 100644 index 3cc4d95da2..0000000000 Binary files a/front/public/images/small/Forestry/fences/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/19.png b/front/public/images/small/Forestry/fences/19.png deleted file mode 100644 index 243fe9e924..0000000000 Binary files a/front/public/images/small/Forestry/fences/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/2.png b/front/public/images/small/Forestry/fences/2.png deleted file mode 100644 index 20c7f9337b..0000000000 Binary files a/front/public/images/small/Forestry/fences/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/20.png b/front/public/images/small/Forestry/fences/20.png deleted file mode 100644 index 4f860f5412..0000000000 Binary files a/front/public/images/small/Forestry/fences/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/21.png b/front/public/images/small/Forestry/fences/21.png deleted file mode 100644 index bfd0d688de..0000000000 Binary files a/front/public/images/small/Forestry/fences/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/22.png b/front/public/images/small/Forestry/fences/22.png deleted file mode 100644 index 6ff8745bfb..0000000000 Binary files a/front/public/images/small/Forestry/fences/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/23.png b/front/public/images/small/Forestry/fences/23.png deleted file mode 100644 index 86060573ac..0000000000 Binary files a/front/public/images/small/Forestry/fences/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/24.png b/front/public/images/small/Forestry/fences/24.png deleted file mode 100644 index e0decc3f84..0000000000 Binary files a/front/public/images/small/Forestry/fences/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/25.png b/front/public/images/small/Forestry/fences/25.png deleted file mode 100644 index 27216314e2..0000000000 Binary files a/front/public/images/small/Forestry/fences/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/26.png b/front/public/images/small/Forestry/fences/26.png deleted file mode 100644 index e9a07c10e7..0000000000 Binary files a/front/public/images/small/Forestry/fences/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/27.png b/front/public/images/small/Forestry/fences/27.png deleted file mode 100644 index 02b4669556..0000000000 Binary files a/front/public/images/small/Forestry/fences/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/28.png b/front/public/images/small/Forestry/fences/28.png deleted file mode 100644 index e17a9cd551..0000000000 Binary files a/front/public/images/small/Forestry/fences/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/3.png b/front/public/images/small/Forestry/fences/3.png deleted file mode 100644 index 30257b3896..0000000000 Binary files a/front/public/images/small/Forestry/fences/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/4.png b/front/public/images/small/Forestry/fences/4.png deleted file mode 100644 index ed4e059a71..0000000000 Binary files a/front/public/images/small/Forestry/fences/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/5.png b/front/public/images/small/Forestry/fences/5.png deleted file mode 100644 index f751343203..0000000000 Binary files a/front/public/images/small/Forestry/fences/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/6.png b/front/public/images/small/Forestry/fences/6.png deleted file mode 100644 index 820864c879..0000000000 Binary files a/front/public/images/small/Forestry/fences/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/7.png b/front/public/images/small/Forestry/fences/7.png deleted file mode 100644 index 431a7ee647..0000000000 Binary files a/front/public/images/small/Forestry/fences/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/8.png b/front/public/images/small/Forestry/fences/8.png deleted file mode 100644 index d9a73c9bc0..0000000000 Binary files a/front/public/images/small/Forestry/fences/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fences/9.png b/front/public/images/small/Forestry/fences/9.png deleted file mode 100644 index 58ebb446d2..0000000000 Binary files a/front/public/images/small/Forestry/fences/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/0.png b/front/public/images/small/Forestry/fencesFireproof/0.png deleted file mode 100644 index 9ac248d0bb..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/1.png b/front/public/images/small/Forestry/fencesFireproof/1.png deleted file mode 100644 index 3ac3e98194..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/10.png b/front/public/images/small/Forestry/fencesFireproof/10.png deleted file mode 100644 index 0e70dcac2b..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/11.png b/front/public/images/small/Forestry/fencesFireproof/11.png deleted file mode 100644 index bce4c10565..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/12.png b/front/public/images/small/Forestry/fencesFireproof/12.png deleted file mode 100644 index 0d354bf27a..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/13.png b/front/public/images/small/Forestry/fencesFireproof/13.png deleted file mode 100644 index 4e49a2d698..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/14.png b/front/public/images/small/Forestry/fencesFireproof/14.png deleted file mode 100644 index 8dbb295fa8..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/15.png b/front/public/images/small/Forestry/fencesFireproof/15.png deleted file mode 100644 index aea2408e0b..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/16.png b/front/public/images/small/Forestry/fencesFireproof/16.png deleted file mode 100644 index 5a5d09ee0d..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/17.png b/front/public/images/small/Forestry/fencesFireproof/17.png deleted file mode 100644 index 4baeaaaa83..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/18.png b/front/public/images/small/Forestry/fencesFireproof/18.png deleted file mode 100644 index 3cc4d95da2..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/19.png b/front/public/images/small/Forestry/fencesFireproof/19.png deleted file mode 100644 index 243fe9e924..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/2.png b/front/public/images/small/Forestry/fencesFireproof/2.png deleted file mode 100644 index 20c7f9337b..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/20.png b/front/public/images/small/Forestry/fencesFireproof/20.png deleted file mode 100644 index 4f860f5412..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/21.png b/front/public/images/small/Forestry/fencesFireproof/21.png deleted file mode 100644 index bfd0d688de..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/22.png b/front/public/images/small/Forestry/fencesFireproof/22.png deleted file mode 100644 index 6ff8745bfb..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/23.png b/front/public/images/small/Forestry/fencesFireproof/23.png deleted file mode 100644 index 86060573ac..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/24.png b/front/public/images/small/Forestry/fencesFireproof/24.png deleted file mode 100644 index e0decc3f84..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/25.png b/front/public/images/small/Forestry/fencesFireproof/25.png deleted file mode 100644 index 27216314e2..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/26.png b/front/public/images/small/Forestry/fencesFireproof/26.png deleted file mode 100644 index e9a07c10e7..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/27.png b/front/public/images/small/Forestry/fencesFireproof/27.png deleted file mode 100644 index 02b4669556..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/28.png b/front/public/images/small/Forestry/fencesFireproof/28.png deleted file mode 100644 index e17a9cd551..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/3.png b/front/public/images/small/Forestry/fencesFireproof/3.png deleted file mode 100644 index 30257b3896..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/4.png b/front/public/images/small/Forestry/fencesFireproof/4.png deleted file mode 100644 index ed4e059a71..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/5.png b/front/public/images/small/Forestry/fencesFireproof/5.png deleted file mode 100644 index f751343203..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/6.png b/front/public/images/small/Forestry/fencesFireproof/6.png deleted file mode 100644 index 820864c879..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/7.png b/front/public/images/small/Forestry/fencesFireproof/7.png deleted file mode 100644 index 431a7ee647..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/8.png b/front/public/images/small/Forestry/fencesFireproof/8.png deleted file mode 100644 index d9a73c9bc0..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fencesFireproof/9.png b/front/public/images/small/Forestry/fencesFireproof/9.png deleted file mode 100644 index 58ebb446d2..0000000000 Binary files a/front/public/images/small/Forestry/fencesFireproof/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fertilizerBio/0.png b/front/public/images/small/Forestry/fertilizerBio/0.png deleted file mode 100644 index 1bb107249b..0000000000 Binary files a/front/public/images/small/Forestry/fertilizerBio/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fertilizerCompound/0.png b/front/public/images/small/Forestry/fertilizerCompound/0.png deleted file mode 100644 index c634b567eb..0000000000 Binary files a/front/public/images/small/Forestry/fertilizerCompound/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ffarm/0.png b/front/public/images/small/Forestry/ffarm/0.png deleted file mode 100644 index 0e711aa223..0000000000 Binary files a/front/public/images/small/Forestry/ffarm/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ffarm/2.png b/front/public/images/small/Forestry/ffarm/2.png deleted file mode 100644 index 4cf66d246b..0000000000 Binary files a/front/public/images/small/Forestry/ffarm/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ffarm/3.png b/front/public/images/small/Forestry/ffarm/3.png deleted file mode 100644 index 6f1259f6f2..0000000000 Binary files a/front/public/images/small/Forestry/ffarm/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ffarm/4.png b/front/public/images/small/Forestry/ffarm/4.png deleted file mode 100644 index 5faa39cd47..0000000000 Binary files a/front/public/images/small/Forestry/ffarm/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ffarm/5.png b/front/public/images/small/Forestry/ffarm/5.png deleted file mode 100644 index 68acb4ce84..0000000000 Binary files a/front/public/images/small/Forestry/ffarm/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.bioethanol/0.png b/front/public/images/small/Forestry/fluid.bioethanol/0.png deleted file mode 100644 index b775c9ad27..0000000000 Binary files a/front/public/images/small/Forestry/fluid.bioethanol/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.biomass/0.png b/front/public/images/small/Forestry/fluid.biomass/0.png deleted file mode 100644 index f5811e2b20..0000000000 Binary files a/front/public/images/small/Forestry/fluid.biomass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.glass/0.png b/front/public/images/small/Forestry/fluid.glass/0.png deleted file mode 100644 index a3e315e4d2..0000000000 Binary files a/front/public/images/small/Forestry/fluid.glass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.honey/0.png b/front/public/images/small/Forestry/fluid.honey/0.png deleted file mode 100644 index 914bcdc1d1..0000000000 Binary files a/front/public/images/small/Forestry/fluid.honey/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.ice/0.png b/front/public/images/small/Forestry/fluid.ice/0.png deleted file mode 100644 index 87459e20bd..0000000000 Binary files a/front/public/images/small/Forestry/fluid.ice/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.juice/0.png b/front/public/images/small/Forestry/fluid.juice/0.png deleted file mode 100644 index 07f3e47e04..0000000000 Binary files a/front/public/images/small/Forestry/fluid.juice/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.mead/0.png b/front/public/images/small/Forestry/fluid.mead/0.png deleted file mode 100644 index 8d63ea5dd8..0000000000 Binary files a/front/public/images/small/Forestry/fluid.mead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.seedoil/0.png b/front/public/images/small/Forestry/fluid.seedoil/0.png deleted file mode 100644 index 41c03086a6..0000000000 Binary files a/front/public/images/small/Forestry/fluid.seedoil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fluid.short.mead/0.png b/front/public/images/small/Forestry/fluid.short.mead/0.png deleted file mode 100644 index a1609e4239..0000000000 Binary files a/front/public/images/small/Forestry/fluid.short.mead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/flutterlyzer/0.png b/front/public/images/small/Forestry/flutterlyzer/0.png deleted file mode 100644 index e9d5cf5f5a..0000000000 Binary files a/front/public/images/small/Forestry/flutterlyzer/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/foresterBag/0.png b/front/public/images/small/Forestry/foresterBag/0.png deleted file mode 100644 index dc5abf0c53..0000000000 Binary files a/front/public/images/small/Forestry/foresterBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/foresterBagT2/0.png b/front/public/images/small/Forestry/foresterBagT2/0.png deleted file mode 100644 index a16d9fd1c4..0000000000 Binary files a/front/public/images/small/Forestry/foresterBagT2/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/frameImpregnated/0.png b/front/public/images/small/Forestry/frameImpregnated/0.png deleted file mode 100644 index fa59cb0bf6..0000000000 Binary files a/front/public/images/small/Forestry/frameImpregnated/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/frameProven/0.png b/front/public/images/small/Forestry/frameProven/0.png deleted file mode 100644 index 85cd2d030c..0000000000 Binary files a/front/public/images/small/Forestry/frameProven/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/frameUntreated/0.png b/front/public/images/small/Forestry/frameUntreated/0.png deleted file mode 100644 index 8e2f9c009c..0000000000 Binary files a/front/public/images/small/Forestry/frameUntreated/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fruits/0.png b/front/public/images/small/Forestry/fruits/0.png deleted file mode 100644 index 10e8a3aba7..0000000000 Binary files a/front/public/images/small/Forestry/fruits/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fruits/1.png b/front/public/images/small/Forestry/fruits/1.png deleted file mode 100644 index e30c825b53..0000000000 Binary files a/front/public/images/small/Forestry/fruits/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fruits/2.png b/front/public/images/small/Forestry/fruits/2.png deleted file mode 100644 index 40c463e351..0000000000 Binary files a/front/public/images/small/Forestry/fruits/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fruits/3.png b/front/public/images/small/Forestry/fruits/3.png deleted file mode 100644 index 73aa159e47..0000000000 Binary files a/front/public/images/small/Forestry/fruits/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fruits/4.png b/front/public/images/small/Forestry/fruits/4.png deleted file mode 100644 index 960ab1819d..0000000000 Binary files a/front/public/images/small/Forestry/fruits/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fruits/5.png b/front/public/images/small/Forestry/fruits/5.png deleted file mode 100644 index 82bfa082d0..0000000000 Binary files a/front/public/images/small/Forestry/fruits/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/fruits/6.png b/front/public/images/small/Forestry/fruits/6.png deleted file mode 100644 index e28288a373..0000000000 Binary files a/front/public/images/small/Forestry/fruits/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/gearBronze/0.png b/front/public/images/small/Forestry/gearBronze/0.png deleted file mode 100644 index 0e28d082aa..0000000000 Binary files a/front/public/images/small/Forestry/gearBronze/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/gearCopper/0.png b/front/public/images/small/Forestry/gearCopper/0.png deleted file mode 100644 index 9f3e240e3c..0000000000 Binary files a/front/public/images/small/Forestry/gearCopper/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/gearTin/0.png b/front/public/images/small/Forestry/gearTin/0.png deleted file mode 100644 index 19e4becbea..0000000000 Binary files a/front/public/images/small/Forestry/gearTin/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/grafter/0.png b/front/public/images/small/Forestry/grafter/0.png deleted file mode 100644 index fa300a2fe6..0000000000 Binary files a/front/public/images/small/Forestry/grafter/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/grafterProven/0.png b/front/public/images/small/Forestry/grafterProven/0.png deleted file mode 100644 index 80e5e63ee4..0000000000 Binary files a/front/public/images/small/Forestry/grafterProven/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/habitatLocator/0.png b/front/public/images/small/Forestry/habitatLocator/0.png deleted file mode 100644 index 29db579607..0000000000 Binary files a/front/public/images/small/Forestry/habitatLocator/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/hardenedMachine/0.png b/front/public/images/small/Forestry/hardenedMachine/0.png deleted file mode 100644 index 0b0832e481..0000000000 Binary files a/front/public/images/small/Forestry/hardenedMachine/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/honeyDrop/0.png b/front/public/images/small/Forestry/honeyDrop/0.png deleted file mode 100644 index 618f1138da..0000000000 Binary files a/front/public/images/small/Forestry/honeyDrop/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/honeyPot/0.png b/front/public/images/small/Forestry/honeyPot/0.png deleted file mode 100644 index 0ef6829d76..0000000000 Binary files a/front/public/images/small/Forestry/honeyPot/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/honeydew/0.png b/front/public/images/small/Forestry/honeydew/0.png deleted file mode 100644 index 249c409dd0..0000000000 Binary files a/front/public/images/small/Forestry/honeydew/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/honeyedSlice/0.png b/front/public/images/small/Forestry/honeyedSlice/0.png deleted file mode 100644 index 5ef57381e0..0000000000 Binary files a/front/public/images/small/Forestry/honeyedSlice/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/hunterBag/0.png b/front/public/images/small/Forestry/hunterBag/0.png deleted file mode 100644 index db87e0fdf2..0000000000 Binary files a/front/public/images/small/Forestry/hunterBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/hunterBagT2/0.png b/front/public/images/small/Forestry/hunterBagT2/0.png deleted file mode 100644 index c52a7ac1e5..0000000000 Binary files a/front/public/images/small/Forestry/hunterBagT2/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/impregnatedCasing/0.png b/front/public/images/small/Forestry/impregnatedCasing/0.png deleted file mode 100644 index 37d16ec71f..0000000000 Binary files a/front/public/images/small/Forestry/impregnatedCasing/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/imprinter/0.png b/front/public/images/small/Forestry/imprinter/0.png deleted file mode 100644 index dff8ae3d93..0000000000 Binary files a/front/public/images/small/Forestry/imprinter/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/infuser/0.png b/front/public/images/small/Forestry/infuser/0.png deleted file mode 100644 index 2fb1c12579..0000000000 Binary files a/front/public/images/small/Forestry/infuser/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ingotBronze/0.png b/front/public/images/small/Forestry/ingotBronze/0.png deleted file mode 100644 index 1fd75fd481..0000000000 Binary files a/front/public/images/small/Forestry/ingotBronze/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ingotCopper/0.png b/front/public/images/small/Forestry/ingotCopper/0.png deleted file mode 100644 index 11af17e1a0..0000000000 Binary files a/front/public/images/small/Forestry/ingotCopper/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/ingotTin/0.png b/front/public/images/small/Forestry/ingotTin/0.png deleted file mode 100644 index 137c448566..0000000000 Binary files a/front/public/images/small/Forestry/ingotTin/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/iodineCapsule/0.png b/front/public/images/small/Forestry/iodineCapsule/0.png deleted file mode 100644 index a754a639a8..0000000000 Binary files a/front/public/images/small/Forestry/iodineCapsule/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/kitPickaxe/0.png b/front/public/images/small/Forestry/kitPickaxe/0.png deleted file mode 100644 index a394cb052d..0000000000 Binary files a/front/public/images/small/Forestry/kitPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/kitShovel/0.png b/front/public/images/small/Forestry/kitShovel/0.png deleted file mode 100644 index b9977a95c5..0000000000 Binary files a/front/public/images/small/Forestry/kitShovel/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/leaves/0.png b/front/public/images/small/Forestry/leaves/0.png deleted file mode 100644 index 63e02ec195..0000000000 Binary files a/front/public/images/small/Forestry/leaves/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/lepidopteristBag/0.png b/front/public/images/small/Forestry/lepidopteristBag/0.png deleted file mode 100644 index 52512b81c9..0000000000 Binary files a/front/public/images/small/Forestry/lepidopteristBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/lepidopterology/0.png b/front/public/images/small/Forestry/lepidopterology/0.png deleted file mode 100644 index 54c9305d4e..0000000000 Binary files a/front/public/images/small/Forestry/lepidopterology/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/0.png b/front/public/images/small/Forestry/letters/0.png deleted file mode 100644 index 0c9a7b0da8..0000000000 Binary files a/front/public/images/small/Forestry/letters/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/1.png b/front/public/images/small/Forestry/letters/1.png deleted file mode 100644 index b32d8ef0b4..0000000000 Binary files a/front/public/images/small/Forestry/letters/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/16.png b/front/public/images/small/Forestry/letters/16.png deleted file mode 100644 index 5ec72a7375..0000000000 Binary files a/front/public/images/small/Forestry/letters/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/17.png b/front/public/images/small/Forestry/letters/17.png deleted file mode 100644 index 6c54e1c178..0000000000 Binary files a/front/public/images/small/Forestry/letters/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/18.png b/front/public/images/small/Forestry/letters/18.png deleted file mode 100644 index 77a2e0a6e9..0000000000 Binary files a/front/public/images/small/Forestry/letters/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/19.png b/front/public/images/small/Forestry/letters/19.png deleted file mode 100644 index 850cc09623..0000000000 Binary files a/front/public/images/small/Forestry/letters/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/2.png b/front/public/images/small/Forestry/letters/2.png deleted file mode 100644 index bc98a546d4..0000000000 Binary files a/front/public/images/small/Forestry/letters/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/3.png b/front/public/images/small/Forestry/letters/3.png deleted file mode 100644 index fbf090ded3..0000000000 Binary files a/front/public/images/small/Forestry/letters/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/32.png b/front/public/images/small/Forestry/letters/32.png deleted file mode 100644 index 4dd36ab4e4..0000000000 Binary files a/front/public/images/small/Forestry/letters/32.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/33.png b/front/public/images/small/Forestry/letters/33.png deleted file mode 100644 index 2bda7add71..0000000000 Binary files a/front/public/images/small/Forestry/letters/33.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/34.png b/front/public/images/small/Forestry/letters/34.png deleted file mode 100644 index b9db85b703..0000000000 Binary files a/front/public/images/small/Forestry/letters/34.png and /dev/null differ diff --git a/front/public/images/small/Forestry/letters/35.png b/front/public/images/small/Forestry/letters/35.png deleted file mode 100644 index 71d990c7ff..0000000000 Binary files a/front/public/images/small/Forestry/letters/35.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/0.png b/front/public/images/small/Forestry/logsFireproof/0.png deleted file mode 100644 index 5c8e961adb..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/1.png b/front/public/images/small/Forestry/logsFireproof/1.png deleted file mode 100644 index f124ae8b18..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/10.png b/front/public/images/small/Forestry/logsFireproof/10.png deleted file mode 100644 index 71c95fd7a7..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/11.png b/front/public/images/small/Forestry/logsFireproof/11.png deleted file mode 100644 index f502e42614..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/12.png b/front/public/images/small/Forestry/logsFireproof/12.png deleted file mode 100644 index ecca322212..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/13.png b/front/public/images/small/Forestry/logsFireproof/13.png deleted file mode 100644 index 60322c257f..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/14.png b/front/public/images/small/Forestry/logsFireproof/14.png deleted file mode 100644 index d2620f52b5..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/15.png b/front/public/images/small/Forestry/logsFireproof/15.png deleted file mode 100644 index bfd0619858..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/16.png b/front/public/images/small/Forestry/logsFireproof/16.png deleted file mode 100644 index 300605a419..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/17.png b/front/public/images/small/Forestry/logsFireproof/17.png deleted file mode 100644 index cb56f44280..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/18.png b/front/public/images/small/Forestry/logsFireproof/18.png deleted file mode 100644 index 5af572817d..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/19.png b/front/public/images/small/Forestry/logsFireproof/19.png deleted file mode 100644 index 1b3c21b684..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/2.png b/front/public/images/small/Forestry/logsFireproof/2.png deleted file mode 100644 index 35acf5fe05..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/20.png b/front/public/images/small/Forestry/logsFireproof/20.png deleted file mode 100644 index 3fd3c7ff6f..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/21.png b/front/public/images/small/Forestry/logsFireproof/21.png deleted file mode 100644 index 6cdb58b433..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/22.png b/front/public/images/small/Forestry/logsFireproof/22.png deleted file mode 100644 index 5d173572ec..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/23.png b/front/public/images/small/Forestry/logsFireproof/23.png deleted file mode 100644 index 7f6267ab58..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/24.png b/front/public/images/small/Forestry/logsFireproof/24.png deleted file mode 100644 index 05278eb4f9..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/25.png b/front/public/images/small/Forestry/logsFireproof/25.png deleted file mode 100644 index 83432f439c..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/26.png b/front/public/images/small/Forestry/logsFireproof/26.png deleted file mode 100644 index 94393e780b..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/27.png b/front/public/images/small/Forestry/logsFireproof/27.png deleted file mode 100644 index d4df5e4e56..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/28.png b/front/public/images/small/Forestry/logsFireproof/28.png deleted file mode 100644 index e9a7beefe7..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/3.png b/front/public/images/small/Forestry/logsFireproof/3.png deleted file mode 100644 index 3803076c4d..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/4.png b/front/public/images/small/Forestry/logsFireproof/4.png deleted file mode 100644 index aa8db80987..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/5.png b/front/public/images/small/Forestry/logsFireproof/5.png deleted file mode 100644 index 903482fe7d..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/6.png b/front/public/images/small/Forestry/logsFireproof/6.png deleted file mode 100644 index e63739a5c6..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/7.png b/front/public/images/small/Forestry/logsFireproof/7.png deleted file mode 100644 index 534cdd12b1..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/8.png b/front/public/images/small/Forestry/logsFireproof/8.png deleted file mode 100644 index 7f67a8d286..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/logsFireproof/9.png b/front/public/images/small/Forestry/logsFireproof/9.png deleted file mode 100644 index f0c07ffb73..0000000000 Binary files a/front/public/images/small/Forestry/logsFireproof/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/mail/0.png b/front/public/images/small/Forestry/mail/0.png deleted file mode 100644 index 39fdda50a4..0000000000 Binary files a/front/public/images/small/Forestry/mail/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/mail/1.png b/front/public/images/small/Forestry/mail/1.png deleted file mode 100644 index 7139846fc2..0000000000 Binary files a/front/public/images/small/Forestry/mail/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/mail/2.png b/front/public/images/small/Forestry/mail/2.png deleted file mode 100644 index 55be9a5230..0000000000 Binary files a/front/public/images/small/Forestry/mail/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/minerBag/0.png b/front/public/images/small/Forestry/minerBag/0.png deleted file mode 100644 index f781ca3a5d..0000000000 Binary files a/front/public/images/small/Forestry/minerBag/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/minerBagT2/0.png b/front/public/images/small/Forestry/minerBagT2/0.png deleted file mode 100644 index cf45566884..0000000000 Binary files a/front/public/images/small/Forestry/minerBagT2/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/mouldyWheat/0.png b/front/public/images/small/Forestry/mouldyWheat/0.png deleted file mode 100644 index 91910c4fa7..0000000000 Binary files a/front/public/images/small/Forestry/mouldyWheat/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/mulch/0.png b/front/public/images/small/Forestry/mulch/0.png deleted file mode 100644 index ba04803202..0000000000 Binary files a/front/public/images/small/Forestry/mulch/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/mushroom/0.png b/front/public/images/small/Forestry/mushroom/0.png deleted file mode 100644 index 6732e58553..0000000000 Binary files a/front/public/images/small/Forestry/mushroom/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/mushroom/1.png b/front/public/images/small/Forestry/mushroom/1.png deleted file mode 100644 index a32dc93f64..0000000000 Binary files a/front/public/images/small/Forestry/mushroom/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/naturalistHelmet/0.png b/front/public/images/small/Forestry/naturalistHelmet/0.png deleted file mode 100644 index 130b267045..0000000000 Binary files a/front/public/images/small/Forestry/naturalistHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/oakStick/0.png b/front/public/images/small/Forestry/oakStick/0.png deleted file mode 100644 index 2ce7a2e2d5..0000000000 Binary files a/front/public/images/small/Forestry/oakStick/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/peat/0.png b/front/public/images/small/Forestry/peat/0.png deleted file mode 100644 index 547a103460..0000000000 Binary files a/front/public/images/small/Forestry/peat/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/phosphor/0.png b/front/public/images/small/Forestry/phosphor/0.png deleted file mode 100644 index 7903e00e44..0000000000 Binary files a/front/public/images/small/Forestry/phosphor/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/pipette/0.png b/front/public/images/small/Forestry/pipette/0.png deleted file mode 100644 index 1602537267..0000000000 Binary files a/front/public/images/small/Forestry/pipette/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/0.png b/front/public/images/small/Forestry/planks/0.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/planks/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/1.png b/front/public/images/small/Forestry/planks/1.png deleted file mode 100644 index 231a6d6f55..0000000000 Binary files a/front/public/images/small/Forestry/planks/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/10.png b/front/public/images/small/Forestry/planks/10.png deleted file mode 100644 index 6da2b0417a..0000000000 Binary files a/front/public/images/small/Forestry/planks/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/11.png b/front/public/images/small/Forestry/planks/11.png deleted file mode 100644 index 40fcf59cfc..0000000000 Binary files a/front/public/images/small/Forestry/planks/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/12.png b/front/public/images/small/Forestry/planks/12.png deleted file mode 100644 index 0c12dbc816..0000000000 Binary files a/front/public/images/small/Forestry/planks/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/13.png b/front/public/images/small/Forestry/planks/13.png deleted file mode 100644 index d2b568f5da..0000000000 Binary files a/front/public/images/small/Forestry/planks/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/14.png b/front/public/images/small/Forestry/planks/14.png deleted file mode 100644 index 9a7723779f..0000000000 Binary files a/front/public/images/small/Forestry/planks/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/15.png b/front/public/images/small/Forestry/planks/15.png deleted file mode 100644 index 3fa8693471..0000000000 Binary files a/front/public/images/small/Forestry/planks/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/16.png b/front/public/images/small/Forestry/planks/16.png deleted file mode 100644 index bbb244b588..0000000000 Binary files a/front/public/images/small/Forestry/planks/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/17.png b/front/public/images/small/Forestry/planks/17.png deleted file mode 100644 index 7f3ac5b9b8..0000000000 Binary files a/front/public/images/small/Forestry/planks/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/18.png b/front/public/images/small/Forestry/planks/18.png deleted file mode 100644 index 212bf77cd5..0000000000 Binary files a/front/public/images/small/Forestry/planks/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/19.png b/front/public/images/small/Forestry/planks/19.png deleted file mode 100644 index 4e410efef8..0000000000 Binary files a/front/public/images/small/Forestry/planks/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/2.png b/front/public/images/small/Forestry/planks/2.png deleted file mode 100644 index d87b1425c5..0000000000 Binary files a/front/public/images/small/Forestry/planks/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/20.png b/front/public/images/small/Forestry/planks/20.png deleted file mode 100644 index 95e5f94ae1..0000000000 Binary files a/front/public/images/small/Forestry/planks/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/21.png b/front/public/images/small/Forestry/planks/21.png deleted file mode 100644 index 1d602ca706..0000000000 Binary files a/front/public/images/small/Forestry/planks/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/22.png b/front/public/images/small/Forestry/planks/22.png deleted file mode 100644 index 4b3c0600d7..0000000000 Binary files a/front/public/images/small/Forestry/planks/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/23.png b/front/public/images/small/Forestry/planks/23.png deleted file mode 100644 index 579db6b2fb..0000000000 Binary files a/front/public/images/small/Forestry/planks/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/24.png b/front/public/images/small/Forestry/planks/24.png deleted file mode 100644 index af003c056b..0000000000 Binary files a/front/public/images/small/Forestry/planks/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/25.png b/front/public/images/small/Forestry/planks/25.png deleted file mode 100644 index 565d92ec04..0000000000 Binary files a/front/public/images/small/Forestry/planks/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/26.png b/front/public/images/small/Forestry/planks/26.png deleted file mode 100644 index 7a31ceb9fb..0000000000 Binary files a/front/public/images/small/Forestry/planks/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/27.png b/front/public/images/small/Forestry/planks/27.png deleted file mode 100644 index 6bc94c8539..0000000000 Binary files a/front/public/images/small/Forestry/planks/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/28.png b/front/public/images/small/Forestry/planks/28.png deleted file mode 100644 index 04588e3f17..0000000000 Binary files a/front/public/images/small/Forestry/planks/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/3.png b/front/public/images/small/Forestry/planks/3.png deleted file mode 100644 index 333e4231c2..0000000000 Binary files a/front/public/images/small/Forestry/planks/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/4.png b/front/public/images/small/Forestry/planks/4.png deleted file mode 100644 index f3f4d1037a..0000000000 Binary files a/front/public/images/small/Forestry/planks/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/5.png b/front/public/images/small/Forestry/planks/5.png deleted file mode 100644 index 76953c6d88..0000000000 Binary files a/front/public/images/small/Forestry/planks/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/6.png b/front/public/images/small/Forestry/planks/6.png deleted file mode 100644 index 9b43bec8bb..0000000000 Binary files a/front/public/images/small/Forestry/planks/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/7.png b/front/public/images/small/Forestry/planks/7.png deleted file mode 100644 index 98c385cf03..0000000000 Binary files a/front/public/images/small/Forestry/planks/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/8.png b/front/public/images/small/Forestry/planks/8.png deleted file mode 100644 index 3929c85c22..0000000000 Binary files a/front/public/images/small/Forestry/planks/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planks/9.png b/front/public/images/small/Forestry/planks/9.png deleted file mode 100644 index 5805e8b724..0000000000 Binary files a/front/public/images/small/Forestry/planks/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/0.png b/front/public/images/small/Forestry/planksFireproof/0.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/1.png b/front/public/images/small/Forestry/planksFireproof/1.png deleted file mode 100644 index 231a6d6f55..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/10.png b/front/public/images/small/Forestry/planksFireproof/10.png deleted file mode 100644 index 6da2b0417a..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/11.png b/front/public/images/small/Forestry/planksFireproof/11.png deleted file mode 100644 index 40fcf59cfc..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/12.png b/front/public/images/small/Forestry/planksFireproof/12.png deleted file mode 100644 index 0c12dbc816..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/13.png b/front/public/images/small/Forestry/planksFireproof/13.png deleted file mode 100644 index d2b568f5da..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/14.png b/front/public/images/small/Forestry/planksFireproof/14.png deleted file mode 100644 index 9a7723779f..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/15.png b/front/public/images/small/Forestry/planksFireproof/15.png deleted file mode 100644 index 3fa8693471..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/16.png b/front/public/images/small/Forestry/planksFireproof/16.png deleted file mode 100644 index bbb244b588..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/17.png b/front/public/images/small/Forestry/planksFireproof/17.png deleted file mode 100644 index 7f3ac5b9b8..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/18.png b/front/public/images/small/Forestry/planksFireproof/18.png deleted file mode 100644 index 212bf77cd5..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/19.png b/front/public/images/small/Forestry/planksFireproof/19.png deleted file mode 100644 index 4e410efef8..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/2.png b/front/public/images/small/Forestry/planksFireproof/2.png deleted file mode 100644 index d87b1425c5..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/20.png b/front/public/images/small/Forestry/planksFireproof/20.png deleted file mode 100644 index 95e5f94ae1..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/21.png b/front/public/images/small/Forestry/planksFireproof/21.png deleted file mode 100644 index 1d602ca706..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/22.png b/front/public/images/small/Forestry/planksFireproof/22.png deleted file mode 100644 index 4b3c0600d7..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/23.png b/front/public/images/small/Forestry/planksFireproof/23.png deleted file mode 100644 index 579db6b2fb..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/24.png b/front/public/images/small/Forestry/planksFireproof/24.png deleted file mode 100644 index af003c056b..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/25.png b/front/public/images/small/Forestry/planksFireproof/25.png deleted file mode 100644 index 565d92ec04..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/26.png b/front/public/images/small/Forestry/planksFireproof/26.png deleted file mode 100644 index 7a31ceb9fb..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/27.png b/front/public/images/small/Forestry/planksFireproof/27.png deleted file mode 100644 index 6bc94c8539..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/28.png b/front/public/images/small/Forestry/planksFireproof/28.png deleted file mode 100644 index 04588e3f17..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/3.png b/front/public/images/small/Forestry/planksFireproof/3.png deleted file mode 100644 index 333e4231c2..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/4.png b/front/public/images/small/Forestry/planksFireproof/4.png deleted file mode 100644 index f3f4d1037a..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/5.png b/front/public/images/small/Forestry/planksFireproof/5.png deleted file mode 100644 index 76953c6d88..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/6.png b/front/public/images/small/Forestry/planksFireproof/6.png deleted file mode 100644 index 9b43bec8bb..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/7.png b/front/public/images/small/Forestry/planksFireproof/7.png deleted file mode 100644 index 98c385cf03..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/8.png b/front/public/images/small/Forestry/planksFireproof/8.png deleted file mode 100644 index 3929c85c22..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/planksFireproof/9.png b/front/public/images/small/Forestry/planksFireproof/9.png deleted file mode 100644 index 5805e8b724..0000000000 Binary files a/front/public/images/small/Forestry/planksFireproof/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/pods/0.png b/front/public/images/small/Forestry/pods/0.png deleted file mode 100644 index 257bbdfc3b..0000000000 Binary files a/front/public/images/small/Forestry/pods/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/pollen/0.png b/front/public/images/small/Forestry/pollen/0.png deleted file mode 100644 index dc2c58c008..0000000000 Binary files a/front/public/images/small/Forestry/pollen/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/pollen/1.png b/front/public/images/small/Forestry/pollen/1.png deleted file mode 100644 index 4b4a7802fa..0000000000 Binary files a/front/public/images/small/Forestry/pollen/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/pollenFertile/0.png b/front/public/images/small/Forestry/pollenFertile/0.png deleted file mode 100644 index 6ee99227c3..0000000000 Binary files a/front/public/images/small/Forestry/pollenFertile/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/propolis/0.png b/front/public/images/small/Forestry/propolis/0.png deleted file mode 100644 index e96836dcbf..0000000000 Binary files a/front/public/images/small/Forestry/propolis/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/propolis/1.png b/front/public/images/small/Forestry/propolis/1.png deleted file mode 100644 index f48723f6cd..0000000000 Binary files a/front/public/images/small/Forestry/propolis/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/propolis/3.png b/front/public/images/small/Forestry/propolis/3.png deleted file mode 100644 index 975ed59303..0000000000 Binary files a/front/public/images/small/Forestry/propolis/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryBiomass/0.png b/front/public/images/small/Forestry/refractoryBiomass/0.png deleted file mode 100644 index aad06de737..0000000000 Binary files a/front/public/images/small/Forestry/refractoryBiomass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryEmpty/0.png b/front/public/images/small/Forestry/refractoryEmpty/0.png deleted file mode 100644 index 0f59c022c4..0000000000 Binary files a/front/public/images/small/Forestry/refractoryEmpty/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryEthanol/0.png b/front/public/images/small/Forestry/refractoryEthanol/0.png deleted file mode 100644 index c7235fd57a..0000000000 Binary files a/front/public/images/small/Forestry/refractoryEthanol/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryFuel/0.png b/front/public/images/small/Forestry/refractoryFuel/0.png deleted file mode 100644 index b01381e3b9..0000000000 Binary files a/front/public/images/small/Forestry/refractoryFuel/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryHoney/0.png b/front/public/images/small/Forestry/refractoryHoney/0.png deleted file mode 100644 index 0ff0d39759..0000000000 Binary files a/front/public/images/small/Forestry/refractoryHoney/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryIce/0.png b/front/public/images/small/Forestry/refractoryIce/0.png deleted file mode 100644 index cd9351a742..0000000000 Binary files a/front/public/images/small/Forestry/refractoryIce/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryJuice/0.png b/front/public/images/small/Forestry/refractoryJuice/0.png deleted file mode 100644 index 0603b29830..0000000000 Binary files a/front/public/images/small/Forestry/refractoryJuice/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryLava/0.png b/front/public/images/small/Forestry/refractoryLava/0.png deleted file mode 100644 index a83dff282f..0000000000 Binary files a/front/public/images/small/Forestry/refractoryLava/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryMead/0.png b/front/public/images/small/Forestry/refractoryMead/0.png deleted file mode 100644 index dbe1ceec79..0000000000 Binary files a/front/public/images/small/Forestry/refractoryMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryOil/0.png b/front/public/images/small/Forestry/refractoryOil/0.png deleted file mode 100644 index 211cd05ee5..0000000000 Binary files a/front/public/images/small/Forestry/refractoryOil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractorySeedOil/0.png b/front/public/images/small/Forestry/refractorySeedOil/0.png deleted file mode 100644 index c09f97eda0..0000000000 Binary files a/front/public/images/small/Forestry/refractorySeedOil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryShortMead/0.png b/front/public/images/small/Forestry/refractoryShortMead/0.png deleted file mode 100644 index ec188981e7..0000000000 Binary files a/front/public/images/small/Forestry/refractoryShortMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryWater/0.png b/front/public/images/small/Forestry/refractoryWater/0.png deleted file mode 100644 index ef1de17dfe..0000000000 Binary files a/front/public/images/small/Forestry/refractoryWater/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/refractoryWax/0.png b/front/public/images/small/Forestry/refractoryWax/0.png deleted file mode 100644 index 95c7e6c39c..0000000000 Binary files a/front/public/images/small/Forestry/refractoryWax/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/researchNote/0.png b/front/public/images/small/Forestry/researchNote/0.png deleted file mode 100644 index 93b57b5819..0000000000 Binary files a/front/public/images/small/Forestry/researchNote/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/resourceStorage/0.png b/front/public/images/small/Forestry/resourceStorage/0.png deleted file mode 100644 index d1f3592d68..0000000000 Binary files a/front/public/images/small/Forestry/resourceStorage/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/resourceStorage/1.png b/front/public/images/small/Forestry/resourceStorage/1.png deleted file mode 100644 index 2b39081931..0000000000 Binary files a/front/public/images/small/Forestry/resourceStorage/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/resourceStorage/2.png b/front/public/images/small/Forestry/resourceStorage/2.png deleted file mode 100644 index 313dc1249f..0000000000 Binary files a/front/public/images/small/Forestry/resourceStorage/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/resourceStorage/3.png b/front/public/images/small/Forestry/resourceStorage/3.png deleted file mode 100644 index 756efae808..0000000000 Binary files a/front/public/images/small/Forestry/resourceStorage/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/resources/0.png b/front/public/images/small/Forestry/resources/0.png deleted file mode 100644 index f2b9b3c6f9..0000000000 Binary files a/front/public/images/small/Forestry/resources/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/resources/1.png b/front/public/images/small/Forestry/resources/1.png deleted file mode 100644 index 4e3b9d23b8..0000000000 Binary files a/front/public/images/small/Forestry/resources/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/resources/2.png b/front/public/images/small/Forestry/resources/2.png deleted file mode 100644 index 3686cfccff..0000000000 Binary files a/front/public/images/small/Forestry/resources/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/royalJelly/0.png b/front/public/images/small/Forestry/royalJelly/0.png deleted file mode 100644 index aeca27fbe9..0000000000 Binary files a/front/public/images/small/Forestry/royalJelly/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/sapling/0.png b/front/public/images/small/Forestry/sapling/0.png deleted file mode 100644 index 0ebc20f00a..0000000000 Binary files a/front/public/images/small/Forestry/sapling/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/saplingGE/0.png b/front/public/images/small/Forestry/saplingGE/0.png deleted file mode 100644 index 86c9795fa5..0000000000 Binary files a/front/public/images/small/Forestry/saplingGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/scoop/0.png b/front/public/images/small/Forestry/scoop/0.png deleted file mode 100644 index 8e30d5fa8f..0000000000 Binary files a/front/public/images/small/Forestry/scoop/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/serumGE/0.png b/front/public/images/small/Forestry/serumGE/0.png deleted file mode 100644 index 1e10d0ea89..0000000000 Binary files a/front/public/images/small/Forestry/serumGE/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/0.png b/front/public/images/small/Forestry/slabs/0.png deleted file mode 100644 index bb7134b98e..0000000000 Binary files a/front/public/images/small/Forestry/slabs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/1.png b/front/public/images/small/Forestry/slabs/1.png deleted file mode 100644 index 43440c9cfe..0000000000 Binary files a/front/public/images/small/Forestry/slabs/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/10.png b/front/public/images/small/Forestry/slabs/10.png deleted file mode 100644 index 862256edce..0000000000 Binary files a/front/public/images/small/Forestry/slabs/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/11.png b/front/public/images/small/Forestry/slabs/11.png deleted file mode 100644 index 5f93c4b144..0000000000 Binary files a/front/public/images/small/Forestry/slabs/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/12.png b/front/public/images/small/Forestry/slabs/12.png deleted file mode 100644 index 0634e91387..0000000000 Binary files a/front/public/images/small/Forestry/slabs/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/13.png b/front/public/images/small/Forestry/slabs/13.png deleted file mode 100644 index 8121c0d21c..0000000000 Binary files a/front/public/images/small/Forestry/slabs/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/14.png b/front/public/images/small/Forestry/slabs/14.png deleted file mode 100644 index 3e65bbacd8..0000000000 Binary files a/front/public/images/small/Forestry/slabs/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/15.png b/front/public/images/small/Forestry/slabs/15.png deleted file mode 100644 index 6459406d63..0000000000 Binary files a/front/public/images/small/Forestry/slabs/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/16.png b/front/public/images/small/Forestry/slabs/16.png deleted file mode 100644 index 850279a6fa..0000000000 Binary files a/front/public/images/small/Forestry/slabs/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/17.png b/front/public/images/small/Forestry/slabs/17.png deleted file mode 100644 index 35b0f2faa6..0000000000 Binary files a/front/public/images/small/Forestry/slabs/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/18.png b/front/public/images/small/Forestry/slabs/18.png deleted file mode 100644 index cfee1e7197..0000000000 Binary files a/front/public/images/small/Forestry/slabs/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/19.png b/front/public/images/small/Forestry/slabs/19.png deleted file mode 100644 index 36b358954c..0000000000 Binary files a/front/public/images/small/Forestry/slabs/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/2.png b/front/public/images/small/Forestry/slabs/2.png deleted file mode 100644 index 2003c6634d..0000000000 Binary files a/front/public/images/small/Forestry/slabs/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/20.png b/front/public/images/small/Forestry/slabs/20.png deleted file mode 100644 index f35bf90e65..0000000000 Binary files a/front/public/images/small/Forestry/slabs/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/21.png b/front/public/images/small/Forestry/slabs/21.png deleted file mode 100644 index 957f1f02c0..0000000000 Binary files a/front/public/images/small/Forestry/slabs/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/22.png b/front/public/images/small/Forestry/slabs/22.png deleted file mode 100644 index e465dcdee9..0000000000 Binary files a/front/public/images/small/Forestry/slabs/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/23.png b/front/public/images/small/Forestry/slabs/23.png deleted file mode 100644 index 67623eb535..0000000000 Binary files a/front/public/images/small/Forestry/slabs/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/24.png b/front/public/images/small/Forestry/slabs/24.png deleted file mode 100644 index a3a5bfcb44..0000000000 Binary files a/front/public/images/small/Forestry/slabs/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/25.png b/front/public/images/small/Forestry/slabs/25.png deleted file mode 100644 index 6b31350422..0000000000 Binary files a/front/public/images/small/Forestry/slabs/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/26.png b/front/public/images/small/Forestry/slabs/26.png deleted file mode 100644 index edf82e41fe..0000000000 Binary files a/front/public/images/small/Forestry/slabs/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/27.png b/front/public/images/small/Forestry/slabs/27.png deleted file mode 100644 index e76ab80d63..0000000000 Binary files a/front/public/images/small/Forestry/slabs/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/28.png b/front/public/images/small/Forestry/slabs/28.png deleted file mode 100644 index 3ebb0ebb80..0000000000 Binary files a/front/public/images/small/Forestry/slabs/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/3.png b/front/public/images/small/Forestry/slabs/3.png deleted file mode 100644 index 83f7bafbfb..0000000000 Binary files a/front/public/images/small/Forestry/slabs/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/4.png b/front/public/images/small/Forestry/slabs/4.png deleted file mode 100644 index 95338da184..0000000000 Binary files a/front/public/images/small/Forestry/slabs/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/5.png b/front/public/images/small/Forestry/slabs/5.png deleted file mode 100644 index 5eaae91277..0000000000 Binary files a/front/public/images/small/Forestry/slabs/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/6.png b/front/public/images/small/Forestry/slabs/6.png deleted file mode 100644 index 2375c1b3d4..0000000000 Binary files a/front/public/images/small/Forestry/slabs/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/7.png b/front/public/images/small/Forestry/slabs/7.png deleted file mode 100644 index b2c3f51507..0000000000 Binary files a/front/public/images/small/Forestry/slabs/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/8.png b/front/public/images/small/Forestry/slabs/8.png deleted file mode 100644 index 8d696f9a53..0000000000 Binary files a/front/public/images/small/Forestry/slabs/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabs/9.png b/front/public/images/small/Forestry/slabs/9.png deleted file mode 100644 index c17b0f563e..0000000000 Binary files a/front/public/images/small/Forestry/slabs/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/0.png b/front/public/images/small/Forestry/slabsDouble/0.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/1.png b/front/public/images/small/Forestry/slabsDouble/1.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/10.png b/front/public/images/small/Forestry/slabsDouble/10.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/11.png b/front/public/images/small/Forestry/slabsDouble/11.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/12.png b/front/public/images/small/Forestry/slabsDouble/12.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/13.png b/front/public/images/small/Forestry/slabsDouble/13.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/14.png b/front/public/images/small/Forestry/slabsDouble/14.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/15.png b/front/public/images/small/Forestry/slabsDouble/15.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/2.png b/front/public/images/small/Forestry/slabsDouble/2.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/3.png b/front/public/images/small/Forestry/slabsDouble/3.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/4.png b/front/public/images/small/Forestry/slabsDouble/4.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/5.png b/front/public/images/small/Forestry/slabsDouble/5.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/6.png b/front/public/images/small/Forestry/slabsDouble/6.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/7.png b/front/public/images/small/Forestry/slabsDouble/7.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/8.png b/front/public/images/small/Forestry/slabsDouble/8.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDouble/9.png b/front/public/images/small/Forestry/slabsDouble/9.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDouble/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/0.png b/front/public/images/small/Forestry/slabsDoubleFireproof/0.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/1.png b/front/public/images/small/Forestry/slabsDoubleFireproof/1.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/10.png b/front/public/images/small/Forestry/slabsDoubleFireproof/10.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/11.png b/front/public/images/small/Forestry/slabsDoubleFireproof/11.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/12.png b/front/public/images/small/Forestry/slabsDoubleFireproof/12.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/13.png b/front/public/images/small/Forestry/slabsDoubleFireproof/13.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/14.png b/front/public/images/small/Forestry/slabsDoubleFireproof/14.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/15.png b/front/public/images/small/Forestry/slabsDoubleFireproof/15.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/2.png b/front/public/images/small/Forestry/slabsDoubleFireproof/2.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/3.png b/front/public/images/small/Forestry/slabsDoubleFireproof/3.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/4.png b/front/public/images/small/Forestry/slabsDoubleFireproof/4.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/5.png b/front/public/images/small/Forestry/slabsDoubleFireproof/5.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/6.png b/front/public/images/small/Forestry/slabsDoubleFireproof/6.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/7.png b/front/public/images/small/Forestry/slabsDoubleFireproof/7.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/8.png b/front/public/images/small/Forestry/slabsDoubleFireproof/8.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsDoubleFireproof/9.png b/front/public/images/small/Forestry/slabsDoubleFireproof/9.png deleted file mode 100644 index 5bea70a067..0000000000 Binary files a/front/public/images/small/Forestry/slabsDoubleFireproof/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/0.png b/front/public/images/small/Forestry/slabsFireproof/0.png deleted file mode 100644 index bb7134b98e..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/1.png b/front/public/images/small/Forestry/slabsFireproof/1.png deleted file mode 100644 index 43440c9cfe..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/10.png b/front/public/images/small/Forestry/slabsFireproof/10.png deleted file mode 100644 index 862256edce..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/11.png b/front/public/images/small/Forestry/slabsFireproof/11.png deleted file mode 100644 index 5f93c4b144..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/12.png b/front/public/images/small/Forestry/slabsFireproof/12.png deleted file mode 100644 index 0634e91387..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/13.png b/front/public/images/small/Forestry/slabsFireproof/13.png deleted file mode 100644 index 8121c0d21c..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/14.png b/front/public/images/small/Forestry/slabsFireproof/14.png deleted file mode 100644 index 3e65bbacd8..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/15.png b/front/public/images/small/Forestry/slabsFireproof/15.png deleted file mode 100644 index 6459406d63..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/16.png b/front/public/images/small/Forestry/slabsFireproof/16.png deleted file mode 100644 index 850279a6fa..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/17.png b/front/public/images/small/Forestry/slabsFireproof/17.png deleted file mode 100644 index 35b0f2faa6..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/18.png b/front/public/images/small/Forestry/slabsFireproof/18.png deleted file mode 100644 index cfee1e7197..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/19.png b/front/public/images/small/Forestry/slabsFireproof/19.png deleted file mode 100644 index 36b358954c..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/2.png b/front/public/images/small/Forestry/slabsFireproof/2.png deleted file mode 100644 index 2003c6634d..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/20.png b/front/public/images/small/Forestry/slabsFireproof/20.png deleted file mode 100644 index f35bf90e65..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/21.png b/front/public/images/small/Forestry/slabsFireproof/21.png deleted file mode 100644 index 957f1f02c0..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/22.png b/front/public/images/small/Forestry/slabsFireproof/22.png deleted file mode 100644 index e465dcdee9..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/23.png b/front/public/images/small/Forestry/slabsFireproof/23.png deleted file mode 100644 index 67623eb535..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/24.png b/front/public/images/small/Forestry/slabsFireproof/24.png deleted file mode 100644 index a3a5bfcb44..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/25.png b/front/public/images/small/Forestry/slabsFireproof/25.png deleted file mode 100644 index 6b31350422..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/26.png b/front/public/images/small/Forestry/slabsFireproof/26.png deleted file mode 100644 index edf82e41fe..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/27.png b/front/public/images/small/Forestry/slabsFireproof/27.png deleted file mode 100644 index e76ab80d63..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/28.png b/front/public/images/small/Forestry/slabsFireproof/28.png deleted file mode 100644 index 3ebb0ebb80..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/3.png b/front/public/images/small/Forestry/slabsFireproof/3.png deleted file mode 100644 index 83f7bafbfb..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/4.png b/front/public/images/small/Forestry/slabsFireproof/4.png deleted file mode 100644 index 95338da184..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/5.png b/front/public/images/small/Forestry/slabsFireproof/5.png deleted file mode 100644 index 5eaae91277..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/6.png b/front/public/images/small/Forestry/slabsFireproof/6.png deleted file mode 100644 index 2375c1b3d4..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/7.png b/front/public/images/small/Forestry/slabsFireproof/7.png deleted file mode 100644 index b2c3f51507..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/8.png b/front/public/images/small/Forestry/slabsFireproof/8.png deleted file mode 100644 index 8d696f9a53..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/slabsFireproof/9.png b/front/public/images/small/Forestry/slabsFireproof/9.png deleted file mode 100644 index c17b0f563e..0000000000 Binary files a/front/public/images/small/Forestry/slabsFireproof/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/soil/0.png b/front/public/images/small/Forestry/soil/0.png deleted file mode 100644 index 67ea36187e..0000000000 Binary files a/front/public/images/small/Forestry/soil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/soil/1.png b/front/public/images/small/Forestry/soil/1.png deleted file mode 100644 index 89188a3d3c..0000000000 Binary files a/front/public/images/small/Forestry/soil/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/solderingIron/0.png b/front/public/images/small/Forestry/solderingIron/0.png deleted file mode 100644 index 2b1734e56c..0000000000 Binary files a/front/public/images/small/Forestry/solderingIron/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/0.png b/front/public/images/small/Forestry/stairs/0.png deleted file mode 100644 index dd603b4702..0000000000 Binary files a/front/public/images/small/Forestry/stairs/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/1.png b/front/public/images/small/Forestry/stairs/1.png deleted file mode 100644 index 013739c5f9..0000000000 Binary files a/front/public/images/small/Forestry/stairs/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/10.png b/front/public/images/small/Forestry/stairs/10.png deleted file mode 100644 index d58641a8a8..0000000000 Binary files a/front/public/images/small/Forestry/stairs/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/11.png b/front/public/images/small/Forestry/stairs/11.png deleted file mode 100644 index 37121c1569..0000000000 Binary files a/front/public/images/small/Forestry/stairs/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/12.png b/front/public/images/small/Forestry/stairs/12.png deleted file mode 100644 index b2b233a472..0000000000 Binary files a/front/public/images/small/Forestry/stairs/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/13.png b/front/public/images/small/Forestry/stairs/13.png deleted file mode 100644 index d3f948f7fd..0000000000 Binary files a/front/public/images/small/Forestry/stairs/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/14.png b/front/public/images/small/Forestry/stairs/14.png deleted file mode 100644 index 30f9438f75..0000000000 Binary files a/front/public/images/small/Forestry/stairs/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/15.png b/front/public/images/small/Forestry/stairs/15.png deleted file mode 100644 index d75652b911..0000000000 Binary files a/front/public/images/small/Forestry/stairs/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/16.png b/front/public/images/small/Forestry/stairs/16.png deleted file mode 100644 index a58f0b5326..0000000000 Binary files a/front/public/images/small/Forestry/stairs/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/17.png b/front/public/images/small/Forestry/stairs/17.png deleted file mode 100644 index 31dbc31d33..0000000000 Binary files a/front/public/images/small/Forestry/stairs/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/18.png b/front/public/images/small/Forestry/stairs/18.png deleted file mode 100644 index 376dba6ff9..0000000000 Binary files a/front/public/images/small/Forestry/stairs/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/19.png b/front/public/images/small/Forestry/stairs/19.png deleted file mode 100644 index b259bc2eac..0000000000 Binary files a/front/public/images/small/Forestry/stairs/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/2.png b/front/public/images/small/Forestry/stairs/2.png deleted file mode 100644 index cfbdddcefa..0000000000 Binary files a/front/public/images/small/Forestry/stairs/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/20.png b/front/public/images/small/Forestry/stairs/20.png deleted file mode 100644 index 19ddbf6bf6..0000000000 Binary files a/front/public/images/small/Forestry/stairs/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/21.png b/front/public/images/small/Forestry/stairs/21.png deleted file mode 100644 index 9b911748ac..0000000000 Binary files a/front/public/images/small/Forestry/stairs/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/22.png b/front/public/images/small/Forestry/stairs/22.png deleted file mode 100644 index 900de578f6..0000000000 Binary files a/front/public/images/small/Forestry/stairs/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/23.png b/front/public/images/small/Forestry/stairs/23.png deleted file mode 100644 index 4040dd97c6..0000000000 Binary files a/front/public/images/small/Forestry/stairs/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/24.png b/front/public/images/small/Forestry/stairs/24.png deleted file mode 100644 index 93850dc71e..0000000000 Binary files a/front/public/images/small/Forestry/stairs/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/25.png b/front/public/images/small/Forestry/stairs/25.png deleted file mode 100644 index c2ea72b7b3..0000000000 Binary files a/front/public/images/small/Forestry/stairs/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/26.png b/front/public/images/small/Forestry/stairs/26.png deleted file mode 100644 index f43f49ee68..0000000000 Binary files a/front/public/images/small/Forestry/stairs/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/27.png b/front/public/images/small/Forestry/stairs/27.png deleted file mode 100644 index 455c73c8ec..0000000000 Binary files a/front/public/images/small/Forestry/stairs/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/28.png b/front/public/images/small/Forestry/stairs/28.png deleted file mode 100644 index f8f8a9b657..0000000000 Binary files a/front/public/images/small/Forestry/stairs/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/3.png b/front/public/images/small/Forestry/stairs/3.png deleted file mode 100644 index 265a28cdba..0000000000 Binary files a/front/public/images/small/Forestry/stairs/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/4.png b/front/public/images/small/Forestry/stairs/4.png deleted file mode 100644 index 45a0522485..0000000000 Binary files a/front/public/images/small/Forestry/stairs/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/5.png b/front/public/images/small/Forestry/stairs/5.png deleted file mode 100644 index 83e71ff4df..0000000000 Binary files a/front/public/images/small/Forestry/stairs/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/6.png b/front/public/images/small/Forestry/stairs/6.png deleted file mode 100644 index 1558835456..0000000000 Binary files a/front/public/images/small/Forestry/stairs/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/7.png b/front/public/images/small/Forestry/stairs/7.png deleted file mode 100644 index a91f2c51a7..0000000000 Binary files a/front/public/images/small/Forestry/stairs/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/8.png b/front/public/images/small/Forestry/stairs/8.png deleted file mode 100644 index a9f01f14f6..0000000000 Binary files a/front/public/images/small/Forestry/stairs/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairs/9.png b/front/public/images/small/Forestry/stairs/9.png deleted file mode 100644 index 882a5a7746..0000000000 Binary files a/front/public/images/small/Forestry/stairs/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/0.png b/front/public/images/small/Forestry/stairsFireproof/0.png deleted file mode 100644 index dd603b4702..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/1.png b/front/public/images/small/Forestry/stairsFireproof/1.png deleted file mode 100644 index 013739c5f9..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/10.png b/front/public/images/small/Forestry/stairsFireproof/10.png deleted file mode 100644 index d58641a8a8..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/11.png b/front/public/images/small/Forestry/stairsFireproof/11.png deleted file mode 100644 index 37121c1569..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/12.png b/front/public/images/small/Forestry/stairsFireproof/12.png deleted file mode 100644 index b2b233a472..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/13.png b/front/public/images/small/Forestry/stairsFireproof/13.png deleted file mode 100644 index d3f948f7fd..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/14.png b/front/public/images/small/Forestry/stairsFireproof/14.png deleted file mode 100644 index 30f9438f75..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/14.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/15.png b/front/public/images/small/Forestry/stairsFireproof/15.png deleted file mode 100644 index d75652b911..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/15.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/16.png b/front/public/images/small/Forestry/stairsFireproof/16.png deleted file mode 100644 index a58f0b5326..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/16.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/17.png b/front/public/images/small/Forestry/stairsFireproof/17.png deleted file mode 100644 index 31dbc31d33..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/17.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/18.png b/front/public/images/small/Forestry/stairsFireproof/18.png deleted file mode 100644 index 376dba6ff9..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/18.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/19.png b/front/public/images/small/Forestry/stairsFireproof/19.png deleted file mode 100644 index b259bc2eac..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/19.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/2.png b/front/public/images/small/Forestry/stairsFireproof/2.png deleted file mode 100644 index cfbdddcefa..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/20.png b/front/public/images/small/Forestry/stairsFireproof/20.png deleted file mode 100644 index 19ddbf6bf6..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/20.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/21.png b/front/public/images/small/Forestry/stairsFireproof/21.png deleted file mode 100644 index 9b911748ac..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/21.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/22.png b/front/public/images/small/Forestry/stairsFireproof/22.png deleted file mode 100644 index 900de578f6..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/22.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/23.png b/front/public/images/small/Forestry/stairsFireproof/23.png deleted file mode 100644 index 4040dd97c6..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/23.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/24.png b/front/public/images/small/Forestry/stairsFireproof/24.png deleted file mode 100644 index 93850dc71e..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/24.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/25.png b/front/public/images/small/Forestry/stairsFireproof/25.png deleted file mode 100644 index c2ea72b7b3..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/25.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/26.png b/front/public/images/small/Forestry/stairsFireproof/26.png deleted file mode 100644 index f43f49ee68..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/26.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/27.png b/front/public/images/small/Forestry/stairsFireproof/27.png deleted file mode 100644 index 455c73c8ec..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/27.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/28.png b/front/public/images/small/Forestry/stairsFireproof/28.png deleted file mode 100644 index f8f8a9b657..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/28.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/3.png b/front/public/images/small/Forestry/stairsFireproof/3.png deleted file mode 100644 index 265a28cdba..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/4.png b/front/public/images/small/Forestry/stairsFireproof/4.png deleted file mode 100644 index 45a0522485..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/5.png b/front/public/images/small/Forestry/stairsFireproof/5.png deleted file mode 100644 index 83e71ff4df..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/6.png b/front/public/images/small/Forestry/stairsFireproof/6.png deleted file mode 100644 index 1558835456..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/7.png b/front/public/images/small/Forestry/stairsFireproof/7.png deleted file mode 100644 index a91f2c51a7..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/8.png b/front/public/images/small/Forestry/stairsFireproof/8.png deleted file mode 100644 index a9f01f14f6..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stairsFireproof/9.png b/front/public/images/small/Forestry/stairsFireproof/9.png deleted file mode 100644 index 882a5a7746..0000000000 Binary files a/front/public/images/small/Forestry/stairsFireproof/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stamps/0.png b/front/public/images/small/Forestry/stamps/0.png deleted file mode 100644 index 971f143b8e..0000000000 Binary files a/front/public/images/small/Forestry/stamps/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stamps/1.png b/front/public/images/small/Forestry/stamps/1.png deleted file mode 100644 index cb6bb4c86f..0000000000 Binary files a/front/public/images/small/Forestry/stamps/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stamps/2.png b/front/public/images/small/Forestry/stamps/2.png deleted file mode 100644 index 2a3ca38431..0000000000 Binary files a/front/public/images/small/Forestry/stamps/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stamps/3.png b/front/public/images/small/Forestry/stamps/3.png deleted file mode 100644 index 364c543729..0000000000 Binary files a/front/public/images/small/Forestry/stamps/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stamps/4.png b/front/public/images/small/Forestry/stamps/4.png deleted file mode 100644 index 69acd27d9a..0000000000 Binary files a/front/public/images/small/Forestry/stamps/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stamps/5.png b/front/public/images/small/Forestry/stamps/5.png deleted file mode 100644 index 29c3c5ff1e..0000000000 Binary files a/front/public/images/small/Forestry/stamps/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stamps/6.png b/front/public/images/small/Forestry/stamps/6.png deleted file mode 100644 index 7b369587bf..0000000000 Binary files a/front/public/images/small/Forestry/stamps/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/stump/0.png b/front/public/images/small/Forestry/stump/0.png deleted file mode 100644 index bf6a22ec29..0000000000 Binary files a/front/public/images/small/Forestry/stump/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/sturdyMachine/0.png b/front/public/images/small/Forestry/sturdyMachine/0.png deleted file mode 100644 index 0a45993b89..0000000000 Binary files a/front/public/images/small/Forestry/sturdyMachine/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/0.png b/front/public/images/small/Forestry/thermionicTubes/0.png deleted file mode 100644 index 76fc919b22..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/1.png b/front/public/images/small/Forestry/thermionicTubes/1.png deleted file mode 100644 index 31dbe351da..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/1.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/10.png b/front/public/images/small/Forestry/thermionicTubes/10.png deleted file mode 100644 index d70ad69517..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/10.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/11.png b/front/public/images/small/Forestry/thermionicTubes/11.png deleted file mode 100644 index 9baf3772da..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/11.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/12.png b/front/public/images/small/Forestry/thermionicTubes/12.png deleted file mode 100644 index 8207dfe317..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/12.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/13.png b/front/public/images/small/Forestry/thermionicTubes/13.png deleted file mode 100644 index f7a556c564..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/13.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/2.png b/front/public/images/small/Forestry/thermionicTubes/2.png deleted file mode 100644 index 55a26d4df7..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/2.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/3.png b/front/public/images/small/Forestry/thermionicTubes/3.png deleted file mode 100644 index 83b09f068e..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/3.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/4.png b/front/public/images/small/Forestry/thermionicTubes/4.png deleted file mode 100644 index 6c4a716215..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/4.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/5.png b/front/public/images/small/Forestry/thermionicTubes/5.png deleted file mode 100644 index 8e9ddf5ead..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/5.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/6.png b/front/public/images/small/Forestry/thermionicTubes/6.png deleted file mode 100644 index b7db97c4e8..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/6.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/7.png b/front/public/images/small/Forestry/thermionicTubes/7.png deleted file mode 100644 index f97909012c..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/7.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/8.png b/front/public/images/small/Forestry/thermionicTubes/8.png deleted file mode 100644 index 43f13f7a24..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/8.png and /dev/null differ diff --git a/front/public/images/small/Forestry/thermionicTubes/9.png b/front/public/images/small/Forestry/thermionicTubes/9.png deleted file mode 100644 index 9e6a8e724c..0000000000 Binary files a/front/public/images/small/Forestry/thermionicTubes/9.png and /dev/null differ diff --git a/front/public/images/small/Forestry/treealyzer/0.png b/front/public/images/small/Forestry/treealyzer/0.png deleted file mode 100644 index a7862be88d..0000000000 Binary files a/front/public/images/small/Forestry/treealyzer/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsule/0.png b/front/public/images/small/Forestry/waxCapsule/0.png deleted file mode 100644 index d8b24344cd..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsule/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleBiomass/0.png b/front/public/images/small/Forestry/waxCapsuleBiomass/0.png deleted file mode 100644 index afb0c1dbbd..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleBiomass/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleEthanol/0.png b/front/public/images/small/Forestry/waxCapsuleEthanol/0.png deleted file mode 100644 index 34581d05da..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleEthanol/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleFuel/0.png b/front/public/images/small/Forestry/waxCapsuleFuel/0.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleFuel/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleHoney/0.png b/front/public/images/small/Forestry/waxCapsuleHoney/0.png deleted file mode 100644 index ed6408ea89..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleHoney/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleIce/0.png b/front/public/images/small/Forestry/waxCapsuleIce/0.png deleted file mode 100644 index aee0244528..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleIce/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleJuice/0.png b/front/public/images/small/Forestry/waxCapsuleJuice/0.png deleted file mode 100644 index 93633ca102..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleJuice/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleMead/0.png b/front/public/images/small/Forestry/waxCapsuleMead/0.png deleted file mode 100644 index f7a5d6d959..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleOil/0.png b/front/public/images/small/Forestry/waxCapsuleOil/0.png deleted file mode 100644 index 6809dea7dc..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleOil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleSeedOil/0.png b/front/public/images/small/Forestry/waxCapsuleSeedOil/0.png deleted file mode 100644 index 7ce57b8977..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleSeedOil/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleShortMead/0.png b/front/public/images/small/Forestry/waxCapsuleShortMead/0.png deleted file mode 100644 index 8f63d5dc7e..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleShortMead/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCapsuleWater/0.png b/front/public/images/small/Forestry/waxCapsuleWater/0.png deleted file mode 100644 index 840c3fe8b8..0000000000 Binary files a/front/public/images/small/Forestry/waxCapsuleWater/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/waxCast/0.png b/front/public/images/small/Forestry/waxCast/0.png deleted file mode 100644 index 75d4d4b323..0000000000 Binary files a/front/public/images/small/Forestry/waxCast/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/woodPulp/0.png b/front/public/images/small/Forestry/woodPulp/0.png deleted file mode 100644 index bea4d54fd1..0000000000 Binary files a/front/public/images/small/Forestry/woodPulp/0.png and /dev/null differ diff --git a/front/public/images/small/Forestry/wrench/0.png b/front/public/images/small/Forestry/wrench/0.png deleted file mode 100644 index 1c9695fe90..0000000000 Binary files a/front/public/images/small/Forestry/wrench/0.png and /dev/null differ diff --git a/front/public/images/small/ForgeMicroblock/sawDiamond/0.png b/front/public/images/small/ForgeMicroblock/sawDiamond/0.png deleted file mode 100644 index 431aaf27ec..0000000000 Binary files a/front/public/images/small/ForgeMicroblock/sawDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/ForgeMicroblock/sawIron/0.png b/front/public/images/small/ForgeMicroblock/sawIron/0.png deleted file mode 100644 index 10867118a2..0000000000 Binary files a/front/public/images/small/ForgeMicroblock/sawIron/0.png and /dev/null differ diff --git a/front/public/images/small/ForgeMicroblock/sawStone/0.png b/front/public/images/small/ForgeMicroblock/sawStone/0.png deleted file mode 100644 index 22fbe597ae..0000000000 Binary files a/front/public/images/small/ForgeMicroblock/sawStone/0.png and /dev/null differ diff --git a/front/public/images/small/ForgeMicroblock/stoneRod/0.png b/front/public/images/small/ForgeMicroblock/stoneRod/0.png deleted file mode 100644 index c67c429463..0000000000 Binary files a/front/public/images/small/ForgeMicroblock/stoneRod/0.png and /dev/null differ diff --git a/front/public/images/small/ForgeRelocation/relocation.blockmovingrow/0.png b/front/public/images/small/ForgeRelocation/relocation.blockmovingrow/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/ForgeRelocation/relocation.blockmovingrow/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/0.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/0.png deleted file mode 100644 index 16c7f056b6..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/1.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/1.png deleted file mode 100644 index b9b7801745..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/10.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/10.png deleted file mode 100644 index 0a7a107369..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/10.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/11.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/11.png deleted file mode 100644 index 662f2f40b4..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/11.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/12.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/12.png deleted file mode 100644 index 5efb2bf366..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/13.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/13.png deleted file mode 100644 index ceb106db6a..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/13.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/14.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/14.png deleted file mode 100644 index a4832cf4bb..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/14.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/15.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/15.png deleted file mode 100644 index ed05678856..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/15.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/16.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/16.png deleted file mode 100644 index abe540bae6..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/16.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/17.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/17.png deleted file mode 100644 index f124e5d22e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/17.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/18.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/18.png deleted file mode 100644 index 5dd4b857a2..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/18.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/19.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/19.png deleted file mode 100644 index c17a0bf85d..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/19.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/2.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/2.png deleted file mode 100644 index eed695ca73..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/20.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/20.png deleted file mode 100644 index 6f0b2b61b3..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/20.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/21.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/21.png deleted file mode 100644 index b06ea1cc11..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/21.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/22.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/22.png deleted file mode 100644 index 04af6d029e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/22.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/23.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/23.png deleted file mode 100644 index f27b5e1ddf..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/23.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/24.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/24.png deleted file mode 100644 index 7daf94b4af..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/24.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/25.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/25.png deleted file mode 100644 index 5f5a8465d7..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/25.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/26.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/26.png deleted file mode 100644 index d571a62bfa..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/26.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/27.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/27.png deleted file mode 100644 index ac707d96c8..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/27.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/28.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/28.png deleted file mode 100644 index 8e96f5285a..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/28.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/29.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/29.png deleted file mode 100644 index e75a2d9096..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/29.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/3.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/3.png deleted file mode 100644 index 0301ae0efc..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/30.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/30.png deleted file mode 100644 index 04e18d483e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/30.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/4.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/4.png deleted file mode 100644 index d008465033..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/5.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/5.png deleted file mode 100644 index 4a572ed62c..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/6.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/6.png deleted file mode 100644 index 64c147d2ab..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/7.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/7.png deleted file mode 100644 index 9bde62f8f7..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/8.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/8.png deleted file mode 100644 index f09ecebfda..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.baseItem/9.png b/front/public/images/small/GalacticraftAmunRa/item.baseItem/9.png deleted file mode 100644 index c7afcaeda6..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.baseItem/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-ender/0.png b/front/public/images/small/GalacticraftAmunRa/item.battery-ender/0.png deleted file mode 100644 index e266664f20..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-ender/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-ender/100.png b/front/public/images/small/GalacticraftAmunRa/item.battery-ender/100.png deleted file mode 100644 index e266664f20..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-ender/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-lithium/0.png b/front/public/images/small/GalacticraftAmunRa/item.battery-lithium/0.png deleted file mode 100644 index 038352f048..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-lithium/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-lithium/100.png b/front/public/images/small/GalacticraftAmunRa/item.battery-lithium/100.png deleted file mode 100644 index 038352f048..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-lithium/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-nuclear/0.png b/front/public/images/small/GalacticraftAmunRa/item.battery-nuclear/0.png deleted file mode 100644 index 4fdcdd7d73..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-nuclear/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-nuclear/100.png b/front/public/images/small/GalacticraftAmunRa/item.battery-nuclear/100.png deleted file mode 100644 index 4fdcdd7d73..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-nuclear/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-quantum/0.png b/front/public/images/small/GalacticraftAmunRa/item.battery-quantum/0.png deleted file mode 100644 index aa21c67c18..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-quantum/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.battery-quantum/100.png b/front/public/images/small/GalacticraftAmunRa/item.battery-quantum/100.png deleted file mode 100644 index aa21c67c18..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.battery-quantum/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.cryogun/0.png b/front/public/images/small/GalacticraftAmunRa/item.cryogun/0.png deleted file mode 100644 index e292e4352c..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.cryogun/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.cryogun/100.png b/front/public/images/small/GalacticraftAmunRa/item.cryogun/100.png deleted file mode 100644 index e292e4352c..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.cryogun/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/0.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/0.png deleted file mode 100644 index ed741f0d5b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/1.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/1.png deleted file mode 100644 index f076ecfbfa..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/12.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/12.png deleted file mode 100644 index f732bb2768..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/15.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/15.png deleted file mode 100644 index 52836b1d05..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/15.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/2.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/2.png deleted file mode 100644 index 8967ca3716..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/3.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/3.png deleted file mode 100644 index a04449a78b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/4.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/4.png deleted file mode 100644 index 982370f25b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/5.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/5.png deleted file mode 100644 index 235388638d..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/6.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/6.png deleted file mode 100644 index c74be579a7..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/8.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/8.png deleted file mode 100644 index 4dc2f7c0bc..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/9.png b/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/9.png deleted file mode 100644 index 54c2b89572..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.itemShuttle/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.nanotool/0.png b/front/public/images/small/GalacticraftAmunRa/item.nanotool/0.png deleted file mode 100644 index 7ec562b74a..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.nanotool/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.nanotool/100.png b/front/public/images/small/GalacticraftAmunRa/item.nanotool/100.png deleted file mode 100644 index 810a90d4f5..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.nanotool/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.raygun/0.png b/front/public/images/small/GalacticraftAmunRa/item.raygun/0.png deleted file mode 100644 index 44cf5fb91e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.raygun/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.raygun/100.png b/front/public/images/small/GalacticraftAmunRa/item.raygun/100.png deleted file mode 100644 index 44cf5fb91e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.raygun/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.schematic/0.png b/front/public/images/small/GalacticraftAmunRa/item.schematic/0.png deleted file mode 100644 index 5f4681b41e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.schematic/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/0.png b/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/0.png deleted file mode 100644 index 91bc2409bd..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/1.png b/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/1.png deleted file mode 100644 index d938d8774e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/2.png b/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/2.png deleted file mode 100644 index 0271302557..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/3.png b/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/3.png deleted file mode 100644 index a4681661d0..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/item.thermalSuit/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.aluChest/0.png b/front/public/images/small/GalacticraftAmunRa/tile.aluChest/0.png deleted file mode 100644 index 51825fa00c..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.aluChest/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.alucrate.stairs/0.png b/front/public/images/small/GalacticraftAmunRa/tile.alucrate.stairs/0.png deleted file mode 100644 index 5f7c526d46..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.alucrate.stairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/0.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/0.png deleted file mode 100644 index bed248af11..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/1.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/1.png deleted file mode 100644 index 6b18b8dbc4..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/2.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/2.png deleted file mode 100644 index db2b5e8542..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/3.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/3.png deleted file mode 100644 index cdf1b63329..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/4.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/4.png deleted file mode 100644 index 233c29399b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/5.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/5.png deleted file mode 100644 index 7f318d584b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/6.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/6.png deleted file mode 100644 index 8283918e9e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/7.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/7.png deleted file mode 100644 index c09178e184..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/8.png b/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/8.png deleted file mode 100644 index 1c3ccf2c69..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.asteroidMultiOre1/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basalt.stairs/0.png b/front/public/images/small/GalacticraftAmunRa/tile.basalt.stairs/0.png deleted file mode 100644 index 6e3486310b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basalt.stairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/0.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/0.png deleted file mode 100644 index bd0552fe17..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/1.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/1.png deleted file mode 100644 index 9ebfecc267..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/10.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/10.png deleted file mode 100644 index 4aa9da4763..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/10.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/2.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/2.png deleted file mode 100644 index 20d88c9ef1..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/3.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/3.png deleted file mode 100644 index af6a1997aa..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/4.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/4.png deleted file mode 100644 index 7e38ce4c71..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/5.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/5.png deleted file mode 100644 index b9ad1fffc1..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/6.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/6.png deleted file mode 100644 index b53ae8dcaa..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/7.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/7.png deleted file mode 100644 index 385e76eea2..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/8.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/8.png deleted file mode 100644 index d7a8d42c0f..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/9.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/9.png deleted file mode 100644 index 2a5bbf16c5..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltMultiOre/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basaltbrick.stairs/0.png b/front/public/images/small/GalacticraftAmunRa/tile.basaltbrick.stairs/0.png deleted file mode 100644 index 337dbd3ef0..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basaltbrick.stairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockCrystal/0.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockCrystal/0.png deleted file mode 100644 index b3c796b89b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockGround/0.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockGround/0.png deleted file mode 100644 index ee29b823df..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockGround/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockGround/1.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockGround/1.png deleted file mode 100644 index 9cabdc5f34..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockGround/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/0.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/0.png deleted file mode 100644 index b87e3d9fc0..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/1.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/1.png deleted file mode 100644 index 63bd2b055d..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/10.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/10.png deleted file mode 100644 index 1bbbf6bd76..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/10.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/11.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/11.png deleted file mode 100644 index d14785bd6d..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/11.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/12.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/12.png deleted file mode 100644 index a002d72835..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/13.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/13.png deleted file mode 100644 index e1a34fad0e..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/13.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/14.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/14.png deleted file mode 100644 index 8da0439426..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/14.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/2.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/2.png deleted file mode 100644 index 82d15416ec..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/3.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/3.png deleted file mode 100644 index ab495ba6ae..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/4.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/4.png deleted file mode 100644 index 41b559e40f..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/5.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/5.png deleted file mode 100644 index 4911d06207..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/6.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/6.png deleted file mode 100644 index 809a911586..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/7.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/7.png deleted file mode 100644 index c93ee79cec..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/8.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/8.png deleted file mode 100644 index ddaf09bd8f..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/9.png b/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/9.png deleted file mode 100644 index f4355cf784..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseBlockRock/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/0.png b/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/0.png deleted file mode 100644 index f097add795..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/1.png b/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/1.png deleted file mode 100644 index d1763847c6..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/2.png b/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/2.png deleted file mode 100644 index 5044157cba..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseFalling/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/0.png b/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/0.png deleted file mode 100644 index 9565ce2fbb..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/1.png b/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/1.png deleted file mode 100644 index 3a35dd5536..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/2.png b/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/2.png deleted file mode 100644 index 61fc95ca78..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.baseGrass/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.basePlant/0.png b/front/public/images/small/GalacticraftAmunRa/tile.basePlant/0.png deleted file mode 100644 index e1cc46fd24..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.basePlant/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.blockFake/0.png b/front/public/images/small/GalacticraftAmunRa/tile.blockFake/0.png deleted file mode 100644 index 6d80436587..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.blockFake/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.bossSpawner/0.png b/front/public/images/small/GalacticraftAmunRa/tile.bossSpawner/0.png deleted file mode 100644 index 75514210cb..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.bossSpawner/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/0.png b/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/0.png deleted file mode 100644 index e7ebf01675..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/1.png b/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/1.png deleted file mode 100644 index d642ce031b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/2.png b/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/2.png deleted file mode 100644 index 5d86396b54..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/3.png b/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/3.png deleted file mode 100644 index 231b86d7fe..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/4.png b/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/4.png deleted file mode 100644 index 5a6bd413bc..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/5.png b/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/5.png deleted file mode 100644 index 981ca35da8..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.hardClayMultiOre/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.log1/0.png b/front/public/images/small/GalacticraftAmunRa/tile.log1/0.png deleted file mode 100644 index b61ae56410..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.log1/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines1/0.png b/front/public/images/small/GalacticraftAmunRa/tile.machines1/0.png deleted file mode 100644 index 81e8820f64..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines1/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines1/1.png b/front/public/images/small/GalacticraftAmunRa/tile.machines1/1.png deleted file mode 100644 index 230316b9be..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines1/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines1/2.png b/front/public/images/small/GalacticraftAmunRa/tile.machines1/2.png deleted file mode 100644 index cbdcf423f1..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines1/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines1/3.png b/front/public/images/small/GalacticraftAmunRa/tile.machines1/3.png deleted file mode 100644 index 23d61746af..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines1/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines2/0.png b/front/public/images/small/GalacticraftAmunRa/tile.machines2/0.png deleted file mode 100644 index 36d2aa38c5..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines2/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines2/1.png b/front/public/images/small/GalacticraftAmunRa/tile.machines2/1.png deleted file mode 100644 index ba3cb7fce6..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines2/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines3/0.png b/front/public/images/small/GalacticraftAmunRa/tile.machines3/0.png deleted file mode 100644 index c25531549a..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines3/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines3/1.png b/front/public/images/small/GalacticraftAmunRa/tile.machines3/1.png deleted file mode 100644 index a32be4b95f..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines3/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines4/0.png b/front/public/images/small/GalacticraftAmunRa/tile.machines4/0.png deleted file mode 100644 index f8f8149c4b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines4/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.machines4/1.png b/front/public/images/small/GalacticraftAmunRa/tile.machines4/1.png deleted file mode 100644 index 8fe74c0022..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.machines4/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.methanePlanks.stairs/0.png b/front/public/images/small/GalacticraftAmunRa/tile.methanePlanks.stairs/0.png deleted file mode 100644 index 89a2944f7f..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.methanePlanks.stairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.msBoosters1/0.png b/front/public/images/small/GalacticraftAmunRa/tile.msBoosters1/0.png deleted file mode 100644 index c177537313..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.msBoosters1/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.msBoosters1/1.png b/front/public/images/small/GalacticraftAmunRa/tile.msBoosters1/1.png deleted file mode 100644 index 2ad5d5eaae..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.msBoosters1/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.null/0.png b/front/public/images/small/GalacticraftAmunRa/tile.null/0.png deleted file mode 100644 index c232a9697b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.null/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/0.png b/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/0.png deleted file mode 100644 index aadd61dd03..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/1.png b/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/1.png deleted file mode 100644 index 9cab34fa5a..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/2.png b/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/2.png deleted file mode 100644 index 5f9b1b5f88..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/3.png b/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/3.png deleted file mode 100644 index da49337281..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/9.png b/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/9.png deleted file mode 100644 index 628fdeb763..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.obsidianMultiOre/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.obsidianbrick.stairs/0.png b/front/public/images/small/GalacticraftAmunRa/tile.obsidianbrick.stairs/0.png deleted file mode 100644 index 4d89a45c5d..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.obsidianbrick.stairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.oldConcreteOre/0.png b/front/public/images/small/GalacticraftAmunRa/tile.oldConcreteOre/0.png deleted file mode 100644 index 495325373b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.oldConcreteOre/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.oldConcreteOre/1.png b/front/public/images/small/GalacticraftAmunRa/tile.oldConcreteOre/1.png deleted file mode 100644 index 2d1b5951e1..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.oldConcreteOre/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.podPlanks.stairs/0.png b/front/public/images/small/GalacticraftAmunRa/tile.podPlanks.stairs/0.png deleted file mode 100644 index 593e4f0df7..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.podPlanks.stairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/0.png b/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/0.png deleted file mode 100644 index 63bd2b055d..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/1.png b/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/1.png deleted file mode 100644 index c93ee79cec..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/2.png b/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/2.png deleted file mode 100644 index ddaf09bd8f..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/3.png b/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/3.png deleted file mode 100644 index f4355cf784..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/4.png b/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/4.png deleted file mode 100644 index 809a911586..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockDoubleslab/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/0.png b/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/0.png deleted file mode 100644 index 32db6e3d21..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/1.png b/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/1.png deleted file mode 100644 index 4e70819bbb..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/2.png b/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/2.png deleted file mode 100644 index 5099516713..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/3.png b/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/3.png deleted file mode 100644 index b6b475e4f5..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/4.png b/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/4.png deleted file mode 100644 index b42bd201c7..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.rockSlab/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.saplings/0.png b/front/public/images/small/GalacticraftAmunRa/tile.saplings/0.png deleted file mode 100644 index 975ce62bbb..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.saplings/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.saplings/1.png b/front/public/images/small/GalacticraftAmunRa/tile.saplings/1.png deleted file mode 100644 index 1a2a6676ce..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.saplings/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.smoothbasalt.stairs/0.png b/front/public/images/small/GalacticraftAmunRa/tile.smoothbasalt.stairs/0.png deleted file mode 100644 index 1b39d433e3..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.smoothbasalt.stairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.steelChest/0.png b/front/public/images/small/GalacticraftAmunRa/tile.steelChest/0.png deleted file mode 100644 index d8bda8aa73..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.steelChest/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.wood1/0.png b/front/public/images/small/GalacticraftAmunRa/tile.wood1/0.png deleted file mode 100644 index ad80ab289c..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.wood1/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.wood1/1.png b/front/public/images/small/GalacticraftAmunRa/tile.wood1/1.png deleted file mode 100644 index 061851b285..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.wood1/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.wood1/2.png b/front/public/images/small/GalacticraftAmunRa/tile.wood1/2.png deleted file mode 100644 index 25ad34686b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.wood1/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.wood1/3.png b/front/public/images/small/GalacticraftAmunRa/tile.wood1/3.png deleted file mode 100644 index 9a5b4e8f11..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.wood1/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.woodDoubleslab/0.png b/front/public/images/small/GalacticraftAmunRa/tile.woodDoubleslab/0.png deleted file mode 100644 index 9a5b4e8f11..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.woodDoubleslab/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.woodDoubleslab/1.png b/front/public/images/small/GalacticraftAmunRa/tile.woodDoubleslab/1.png deleted file mode 100644 index 25ad34686b..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.woodDoubleslab/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.woodSlab/0.png b/front/public/images/small/GalacticraftAmunRa/tile.woodSlab/0.png deleted file mode 100644 index 28a3173bbc..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.woodSlab/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftAmunRa/tile.woodSlab/1.png b/front/public/images/small/GalacticraftAmunRa/tile.woodSlab/1.png deleted file mode 100644 index 674261ffb3..0000000000 Binary files a/front/public/images/small/GalacticraftAmunRa/tile.woodSlab/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.airFan/0.png b/front/public/images/small/GalacticraftCore/item.airFan/0.png deleted file mode 100644 index 2fb5e90b0f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.airFan/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.airVent/0.png b/front/public/images/small/GalacticraftCore/item.airVent/0.png deleted file mode 100644 index e147eceb2f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.airVent/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/0.png b/front/public/images/small/GalacticraftCore/item.basicItem/0.png deleted file mode 100644 index 78f52ed634..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/1.png b/front/public/images/small/GalacticraftCore/item.basicItem/1.png deleted file mode 100644 index 49f7c7957c..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/10.png b/front/public/images/small/GalacticraftCore/item.basicItem/10.png deleted file mode 100644 index 4d39880efe..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/10.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/11.png b/front/public/images/small/GalacticraftCore/item.basicItem/11.png deleted file mode 100644 index bfb6f89279..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/11.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/12.png b/front/public/images/small/GalacticraftCore/item.basicItem/12.png deleted file mode 100644 index b357fba93c..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/13.png b/front/public/images/small/GalacticraftCore/item.basicItem/13.png deleted file mode 100644 index ca740f7cd4..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/13.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/14.png b/front/public/images/small/GalacticraftCore/item.basicItem/14.png deleted file mode 100644 index fdb7c6f370..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/14.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/15.png b/front/public/images/small/GalacticraftCore/item.basicItem/15.png deleted file mode 100644 index 07ebc47571..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/15.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/16.png b/front/public/images/small/GalacticraftCore/item.basicItem/16.png deleted file mode 100644 index 84cdeecb2c..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/16.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/17.png b/front/public/images/small/GalacticraftCore/item.basicItem/17.png deleted file mode 100644 index 259c256a99..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/17.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/18.png b/front/public/images/small/GalacticraftCore/item.basicItem/18.png deleted file mode 100644 index da55b0c1b3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/18.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/19.png b/front/public/images/small/GalacticraftCore/item.basicItem/19.png deleted file mode 100644 index aa575961a0..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/19.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/2.png b/front/public/images/small/GalacticraftCore/item.basicItem/2.png deleted file mode 100644 index 961d2fcf59..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/20.png b/front/public/images/small/GalacticraftCore/item.basicItem/20.png deleted file mode 100644 index 684dab64df..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/20.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/3.png b/front/public/images/small/GalacticraftCore/item.basicItem/3.png deleted file mode 100644 index 1d36682c65..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/4.png b/front/public/images/small/GalacticraftCore/item.basicItem/4.png deleted file mode 100644 index 4d93b30244..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/5.png b/front/public/images/small/GalacticraftCore/item.basicItem/5.png deleted file mode 100644 index 053ca9cbc2..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/6.png b/front/public/images/small/GalacticraftCore/item.basicItem/6.png deleted file mode 100644 index 3ca35c83c2..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/7.png b/front/public/images/small/GalacticraftCore/item.basicItem/7.png deleted file mode 100644 index 1d083d2275..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/8.png b/front/public/images/small/GalacticraftCore/item.basicItem/8.png deleted file mode 100644 index 9bb5bf7bfb..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.basicItem/9.png b/front/public/images/small/GalacticraftCore/item.basicItem/9.png deleted file mode 100644 index de1a1e56d3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.basicItem/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.battery/0.png b/front/public/images/small/GalacticraftCore/item.battery/0.png deleted file mode 100644 index 38602f677d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.battery/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.battery/100.png b/front/public/images/small/GalacticraftCore/item.battery/100.png deleted file mode 100644 index 38602f677d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.battery/100.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.bucketFuel/0.png b/front/public/images/small/GalacticraftCore/item.bucketFuel/0.png deleted file mode 100644 index a3dcfe5e9b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.bucketFuel/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.bucketOil/0.png b/front/public/images/small/GalacticraftCore/item.bucketOil/0.png deleted file mode 100644 index 5283d39058..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.bucketOil/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.buggy/0.png b/front/public/images/small/GalacticraftCore/item.buggy/0.png deleted file mode 100644 index 8e0a9370bb..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.buggy/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.buggy/1.png b/front/public/images/small/GalacticraftCore/item.buggy/1.png deleted file mode 100644 index cdbcadbce5..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.buggy/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.buggy/2.png b/front/public/images/small/GalacticraftCore/item.buggy/2.png deleted file mode 100644 index a32a6e6e40..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.buggy/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.buggy/3.png b/front/public/images/small/GalacticraftCore/item.buggy/3.png deleted file mode 100644 index 63a9a73009..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.buggy/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.buggymat/0.png b/front/public/images/small/GalacticraftCore/item.buggymat/0.png deleted file mode 100644 index 7d93163146..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.buggymat/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.buggymat/1.png b/front/public/images/small/GalacticraftCore/item.buggymat/1.png deleted file mode 100644 index deadaadd32..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.buggymat/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.buggymat/2.png b/front/public/images/small/GalacticraftCore/item.buggymat/2.png deleted file mode 100644 index 2e793b0f89..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.buggymat/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.canister/0.png b/front/public/images/small/GalacticraftCore/item.canister/0.png deleted file mode 100644 index 97637611d2..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.canister/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.canister/1.png b/front/public/images/small/GalacticraftCore/item.canister/1.png deleted file mode 100644 index c648050a48..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.canister/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.canvas/0.png b/front/public/images/small/GalacticraftCore/item.canvas/0.png deleted file mode 100644 index fade289e75..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.canvas/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.cheeseCurd/0.png b/front/public/images/small/GalacticraftCore/item.cheeseCurd/0.png deleted file mode 100644 index de149ea1d7..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.cheeseCurd/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.engine/0.png b/front/public/images/small/GalacticraftCore/item.engine/0.png deleted file mode 100644 index c07e8d78fa..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.engine/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.engine/1.png b/front/public/images/small/GalacticraftCore/item.engine/1.png deleted file mode 100644 index e3ad38cb00..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.engine/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.flag/0.png b/front/public/images/small/GalacticraftCore/item.flag/0.png deleted file mode 100644 index 96ffeef085..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.flag/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.fuelCanisterPartial/1.png b/front/public/images/small/GalacticraftCore/item.fuelCanisterPartial/1.png deleted file mode 100644 index cbf4eae359..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.fuelCanisterPartial/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.heavyPlating/0.png b/front/public/images/small/GalacticraftCore/item.heavyPlating/0.png deleted file mode 100644 index 9196cac455..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.heavyPlating/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.infiniteBattery/0.png b/front/public/images/small/GalacticraftCore/item.infiniteBattery/0.png deleted file mode 100644 index 5de45c8464..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.infiniteBattery/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.infiniteOxygen/0.png b/front/public/images/small/GalacticraftCore/item.infiniteOxygen/0.png deleted file mode 100644 index de3bea5e50..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.infiniteOxygen/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.key/0.png b/front/public/images/small/GalacticraftCore/item.key/0.png deleted file mode 100644 index 9f71b01c0d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.key/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.meteoricIronIngot/0.png b/front/public/images/small/GalacticraftCore/item.meteoricIronIngot/0.png deleted file mode 100644 index e1122dde70..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.meteoricIronIngot/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.meteoricIronIngot/1.png b/front/public/images/small/GalacticraftCore/item.meteoricIronIngot/1.png deleted file mode 100644 index 4ad32c3124..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.meteoricIronIngot/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.meteoricIronRaw/0.png b/front/public/images/small/GalacticraftCore/item.meteoricIronRaw/0.png deleted file mode 100644 index d77350a08c..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.meteoricIronRaw/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.noseCone/0.png b/front/public/images/small/GalacticraftCore/item.noseCone/0.png deleted file mode 100644 index 95e7125330..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.noseCone/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.null/0.png b/front/public/images/small/GalacticraftCore/item.null/0.png deleted file mode 100644 index d076d1e1cd..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.null/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.null/1.png b/front/public/images/small/GalacticraftCore/item.null/1.png deleted file mode 100644 index 4bcc4f82f2..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.null/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oilCanisterPartial/1.png b/front/public/images/small/GalacticraftCore/item.oilCanisterPartial/1.png deleted file mode 100644 index 81b06f3e5e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oilCanisterPartial/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oilCanisterPartial/1001.png b/front/public/images/small/GalacticraftCore/item.oilCanisterPartial/1001.png deleted file mode 100644 index 2f07c6f0ac..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oilCanisterPartial/1001.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oilExtractor/0.png b/front/public/images/small/GalacticraftCore/item.oilExtractor/0.png deleted file mode 100644 index a16af5cb4f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oilExtractor/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenConcentrator/0.png b/front/public/images/small/GalacticraftCore/item.oxygenConcentrator/0.png deleted file mode 100644 index 22ba700880..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenConcentrator/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenGear/0.png b/front/public/images/small/GalacticraftCore/item.oxygenGear/0.png deleted file mode 100644 index 4d8172c241..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenGear/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenMask/0.png b/front/public/images/small/GalacticraftCore/item.oxygenMask/0.png deleted file mode 100644 index a3ba5d6407..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenMask/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankHeavyFull/0.png b/front/public/images/small/GalacticraftCore/item.oxygenTankHeavyFull/0.png deleted file mode 100644 index 0cee4ce292..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankHeavyFull/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankHeavyFull/4000.png b/front/public/images/small/GalacticraftCore/item.oxygenTankHeavyFull/4000.png deleted file mode 100644 index 0cee4ce292..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankHeavyFull/4000.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankLightFull/0.png b/front/public/images/small/GalacticraftCore/item.oxygenTankLightFull/0.png deleted file mode 100644 index b5453bc73b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankLightFull/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankLightFull/1000.png b/front/public/images/small/GalacticraftCore/item.oxygenTankLightFull/1000.png deleted file mode 100644 index b5453bc73b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankLightFull/1000.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankMedFull/0.png b/front/public/images/small/GalacticraftCore/item.oxygenTankMedFull/0.png deleted file mode 100644 index 489db2a948..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankMedFull/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankMedFull/2000.png b/front/public/images/small/GalacticraftCore/item.oxygenTankMedFull/2000.png deleted file mode 100644 index 489db2a948..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankMedFull/2000.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankSuperHeavyFull/0.png b/front/public/images/small/GalacticraftCore/item.oxygenTankSuperHeavyFull/0.png deleted file mode 100644 index 089998e464..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankSuperHeavyFull/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankSuperHeavyFull/8000.png b/front/public/images/small/GalacticraftCore/item.oxygenTankSuperHeavyFull/8000.png deleted file mode 100644 index 089998e464..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankSuperHeavyFull/8000.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankUltraHeavyFull/0.png b/front/public/images/small/GalacticraftCore/item.oxygenTankUltraHeavyFull/0.png deleted file mode 100644 index 8ea2f1d8f0..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankUltraHeavyFull/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.oxygenTankUltraHeavyFull/16000.png b/front/public/images/small/GalacticraftCore/item.oxygenTankUltraHeavyFull/16000.png deleted file mode 100644 index 8ea2f1d8f0..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.oxygenTankUltraHeavyFull/16000.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/0.png b/front/public/images/small/GalacticraftCore/item.parachute/0.png deleted file mode 100644 index fb01fa5613..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/1.png b/front/public/images/small/GalacticraftCore/item.parachute/1.png deleted file mode 100644 index 435edb2237..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/10.png b/front/public/images/small/GalacticraftCore/item.parachute/10.png deleted file mode 100644 index 67487aff30..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/10.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/11.png b/front/public/images/small/GalacticraftCore/item.parachute/11.png deleted file mode 100644 index 9fc1237a84..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/11.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/12.png b/front/public/images/small/GalacticraftCore/item.parachute/12.png deleted file mode 100644 index 3d83c96858..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/13.png b/front/public/images/small/GalacticraftCore/item.parachute/13.png deleted file mode 100644 index b4c3b4327b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/13.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/14.png b/front/public/images/small/GalacticraftCore/item.parachute/14.png deleted file mode 100644 index 7113026bdf..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/14.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/15.png b/front/public/images/small/GalacticraftCore/item.parachute/15.png deleted file mode 100644 index bcc62eea65..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/15.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/2.png b/front/public/images/small/GalacticraftCore/item.parachute/2.png deleted file mode 100644 index 6a0b1ae9c3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/3.png b/front/public/images/small/GalacticraftCore/item.parachute/3.png deleted file mode 100644 index 72da0d262e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/4.png b/front/public/images/small/GalacticraftCore/item.parachute/4.png deleted file mode 100644 index e5885610de..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/5.png b/front/public/images/small/GalacticraftCore/item.parachute/5.png deleted file mode 100644 index 8998907fab..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/6.png b/front/public/images/small/GalacticraftCore/item.parachute/6.png deleted file mode 100644 index a1ac54da93..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/7.png b/front/public/images/small/GalacticraftCore/item.parachute/7.png deleted file mode 100644 index bcb6feed81..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/8.png b/front/public/images/small/GalacticraftCore/item.parachute/8.png deleted file mode 100644 index 9d643e433c..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.parachute/9.png b/front/public/images/small/GalacticraftCore/item.parachute/9.png deleted file mode 100644 index bab57cc2e7..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.parachute/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.rocketFins/0.png b/front/public/images/small/GalacticraftCore/item.rocketFins/0.png deleted file mode 100644 index aa276e93c4..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.rocketFins/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.schematic/0.png b/front/public/images/small/GalacticraftCore/item.schematic/0.png deleted file mode 100644 index f8539880c3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.schematic/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.schematic/1.png b/front/public/images/small/GalacticraftCore/item.schematic/1.png deleted file mode 100644 index ec4b73c74e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.schematic/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.sensorGlasses/0.png b/front/public/images/small/GalacticraftCore/item.sensorGlasses/0.png deleted file mode 100644 index 5f7eb7e601..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.sensorGlasses/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.sensorLens/0.png b/front/public/images/small/GalacticraftCore/item.sensorLens/0.png deleted file mode 100644 index 6375748913..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.sensorLens/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.spaceship/0.png b/front/public/images/small/GalacticraftCore/item.spaceship/0.png deleted file mode 100644 index 950399b046..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.spaceship/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.spaceship/1.png b/front/public/images/small/GalacticraftCore/item.spaceship/1.png deleted file mode 100644 index b0273020f3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.spaceship/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.spaceship/2.png b/front/public/images/small/GalacticraftCore/item.spaceship/2.png deleted file mode 100644 index 4ec90301ee..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.spaceship/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.spaceship/3.png b/front/public/images/small/GalacticraftCore/item.spaceship/3.png deleted file mode 100644 index c673ee62a3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.spaceship/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.spaceship/4.png b/front/public/images/small/GalacticraftCore/item.spaceship/4.png deleted file mode 100644 index 9864f30eb8..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.spaceship/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.standardWrench/0.png b/front/public/images/small/GalacticraftCore/item.standardWrench/0.png deleted file mode 100644 index 5dd33d23fd..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.standardWrench/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steelPole/0.png b/front/public/images/small/GalacticraftCore/item.steelPole/0.png deleted file mode 100644 index 52c79fc0f4..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steelPole/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_axe/0.png b/front/public/images/small/GalacticraftCore/item.steel_axe/0.png deleted file mode 100644 index 02288e121e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_axe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_boots/0.png b/front/public/images/small/GalacticraftCore/item.steel_boots/0.png deleted file mode 100644 index 2b5241b9bd..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_boots/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_chestplate/0.png b/front/public/images/small/GalacticraftCore/item.steel_chestplate/0.png deleted file mode 100644 index abeffc33a5..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_chestplate/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_helmet/0.png b/front/public/images/small/GalacticraftCore/item.steel_helmet/0.png deleted file mode 100644 index 1f6be51db7..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_hoe/0.png b/front/public/images/small/GalacticraftCore/item.steel_hoe/0.png deleted file mode 100644 index c1b4c25444..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_hoe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_leggings/0.png b/front/public/images/small/GalacticraftCore/item.steel_leggings/0.png deleted file mode 100644 index c48b752c86..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_leggings/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_pickaxe/0.png b/front/public/images/small/GalacticraftCore/item.steel_pickaxe/0.png deleted file mode 100644 index 9c621d4ba4..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_shovel/0.png b/front/public/images/small/GalacticraftCore/item.steel_shovel/0.png deleted file mode 100644 index 3c66048f31..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_shovel/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/item.steel_sword/0.png b/front/public/images/small/GalacticraftCore/item.steel_sword/0.png deleted file mode 100644 index 65a4663ad2..0000000000 Binary files a/front/public/images/small/GalacticraftCore/item.steel_sword/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCDouble/0.png b/front/public/images/small/GalacticraftCore/slabGCDouble/0.png deleted file mode 100644 index a002d72835..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCDouble/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCDouble/1.png b/front/public/images/small/GalacticraftCore/slabGCDouble/1.png deleted file mode 100644 index 8b5ae06757..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCDouble/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCDouble/2.png b/front/public/images/small/GalacticraftCore/slabGCDouble/2.png deleted file mode 100644 index 7f2f14472d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCDouble/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCDouble/3.png b/front/public/images/small/GalacticraftCore/slabGCDouble/3.png deleted file mode 100644 index f3bb54a30b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCDouble/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCDouble/4.png b/front/public/images/small/GalacticraftCore/slabGCDouble/4.png deleted file mode 100644 index f7bfb8272d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCDouble/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCDouble/5.png b/front/public/images/small/GalacticraftCore/slabGCDouble/5.png deleted file mode 100644 index 1d47de2a9e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCDouble/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCHalf/0.png b/front/public/images/small/GalacticraftCore/slabGCHalf/0.png deleted file mode 100644 index 04d15a78c5..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCHalf/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCHalf/1.png b/front/public/images/small/GalacticraftCore/slabGCHalf/1.png deleted file mode 100644 index df4e6db3d5..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCHalf/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCHalf/2.png b/front/public/images/small/GalacticraftCore/slabGCHalf/2.png deleted file mode 100644 index f1b55793ad..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCHalf/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCHalf/3.png b/front/public/images/small/GalacticraftCore/slabGCHalf/3.png deleted file mode 100644 index 115c2ed8e4..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCHalf/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCHalf/4.png b/front/public/images/small/GalacticraftCore/slabGCHalf/4.png deleted file mode 100644 index 8b749909ed..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCHalf/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/slabGCHalf/5.png b/front/public/images/small/GalacticraftCore/slabGCHalf/5.png deleted file mode 100644 index b56a473ef2..0000000000 Binary files a/front/public/images/small/GalacticraftCore/slabGCHalf/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.airLockFrame/0.png b/front/public/images/small/GalacticraftCore/tile.airLockFrame/0.png deleted file mode 100644 index 5f97d95985..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.airLockFrame/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.airLockFrame/1.png b/front/public/images/small/GalacticraftCore/tile.airLockFrame/1.png deleted file mode 100644 index f28c50c102..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.airLockFrame/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.airLockSeal/0.png b/front/public/images/small/GalacticraftCore/tile.airLockSeal/0.png deleted file mode 100644 index a002d72835..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.airLockSeal/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.aluminumWire/0.png b/front/public/images/small/GalacticraftCore/tile.aluminumWire/0.png deleted file mode 100644 index 7d9171cbe1..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.aluminumWire/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.aluminumWire/1.png b/front/public/images/small/GalacticraftCore/tile.aluminumWire/1.png deleted file mode 100644 index 386ef20b1c..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.aluminumWire/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.arclamp/0.png b/front/public/images/small/GalacticraftCore/tile.arclamp/0.png deleted file mode 100644 index 940fe34968..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.arclamp/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.breatheableAir/0.png b/front/public/images/small/GalacticraftCore/tile.breatheableAir/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.breatheableAir/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.brightAir/0.png b/front/public/images/small/GalacticraftCore/tile.brightAir/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.brightAir/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.brightBreathableAir/0.png b/front/public/images/small/GalacticraftCore/tile.brightBreathableAir/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.brightBreathableAir/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.cargo/0.png b/front/public/images/small/GalacticraftCore/tile.cargo/0.png deleted file mode 100644 index a34e7dbc16..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.cargo/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.cargo/4.png b/front/public/images/small/GalacticraftCore/tile.cargo/4.png deleted file mode 100644 index e4690f68e5..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.cargo/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.cheeseBlock/0.png b/front/public/images/small/GalacticraftCore/tile.cheeseBlock/0.png deleted file mode 100644 index 0963a30cc0..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.cheeseBlock/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.dish/0.png b/front/public/images/small/GalacticraftCore/tile.dish/0.png deleted file mode 100644 index 2ca25e76f0..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.dish/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.distributor/0.png b/front/public/images/small/GalacticraftCore/tile.distributor/0.png deleted file mode 100644 index 4b0121fd39..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.distributor/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.dummyblock/0.png b/front/public/images/small/GalacticraftCore/tile.dummyblock/0.png deleted file mode 100644 index 5f9adbe00f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.dummyblock/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.enclosed/1.png b/front/public/images/small/GalacticraftCore/tile.enclosed/1.png deleted file mode 100644 index 3102c1e47d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.enclosed/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.enclosed/14.png b/front/public/images/small/GalacticraftCore/tile.enclosed/14.png deleted file mode 100644 index aa6dcbe520..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.enclosed/14.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.enclosed/15.png b/front/public/images/small/GalacticraftCore/tile.enclosed/15.png deleted file mode 100644 index 0fbd001194..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.enclosed/15.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.fallenMeteor/0.png b/front/public/images/small/GalacticraftCore/tile.fallenMeteor/0.png deleted file mode 100644 index 63226b571d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.fallenMeteor/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.fuelLoader/0.png b/front/public/images/small/GalacticraftCore/tile.fuelLoader/0.png deleted file mode 100644 index 22e2569f61..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.fuelLoader/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/10.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/10.png deleted file mode 100644 index daa142d2d8..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/10.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/11.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/11.png deleted file mode 100644 index 18bdeef9f7..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/11.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/12.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/12.png deleted file mode 100644 index a486207b3d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/3.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/3.png deleted file mode 100644 index 8b5ae06757..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/4.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/4.png deleted file mode 100644 index a002d72835..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/5.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/5.png deleted file mode 100644 index 0e781e14a9..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/6.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/6.png deleted file mode 100644 index 67b923ac4a..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/7.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/7.png deleted file mode 100644 index df231d8730..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/8.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/8.png deleted file mode 100644 index 3b4975bc0b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/9.png b/front/public/images/small/GalacticraftCore/tile.gcBlockCore/9.png deleted file mode 100644 index 9ea0f4541f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.gcBlockCore/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.glowstoneTorch/0.png b/front/public/images/small/GalacticraftCore/tile.glowstoneTorch/0.png deleted file mode 100644 index f411379c91..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.glowstoneTorch/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.landingPad/0.png b/front/public/images/small/GalacticraftCore/tile.landingPad/0.png deleted file mode 100644 index f4e9332841..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.landingPad/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.landingPad/1.png b/front/public/images/small/GalacticraftCore/tile.landingPad/1.png deleted file mode 100644 index ab7859882a..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.landingPad/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.landingPadFull/0.png b/front/public/images/small/GalacticraftCore/tile.landingPadFull/0.png deleted file mode 100644 index 1ebd0302ee..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.landingPadFull/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machine/0.png b/front/public/images/small/GalacticraftCore/tile.machine/0.png deleted file mode 100644 index 67d1aae413..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machine/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machine/12.png b/front/public/images/small/GalacticraftCore/tile.machine/12.png deleted file mode 100644 index c4b2db36a2..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machine/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machine2/0.png b/front/public/images/small/GalacticraftCore/tile.machine2/0.png deleted file mode 100644 index cf09f816f8..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machine2/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machine2/4.png b/front/public/images/small/GalacticraftCore/tile.machine2/4.png deleted file mode 100644 index e78756f3a0..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machine2/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machine2/8.png b/front/public/images/small/GalacticraftCore/tile.machine2/8.png deleted file mode 100644 index 49400dfd87..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machine2/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machineTiered/0.png b/front/public/images/small/GalacticraftCore/tile.machineTiered/0.png deleted file mode 100644 index 3dac656fe6..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machineTiered/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machineTiered/12.png b/front/public/images/small/GalacticraftCore/tile.machineTiered/12.png deleted file mode 100644 index 56d969e595..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machineTiered/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machineTiered/4.png b/front/public/images/small/GalacticraftCore/tile.machineTiered/4.png deleted file mode 100644 index 1e8992e528..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machineTiered/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.machineTiered/8.png b/front/public/images/small/GalacticraftCore/tile.machineTiered/8.png deleted file mode 100644 index bc0251d1ae..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.machineTiered/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBlock/0.png b/front/public/images/small/GalacticraftCore/tile.moonBlock/0.png deleted file mode 100644 index ba14e932bc..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBlock/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBlock/1.png b/front/public/images/small/GalacticraftCore/tile.moonBlock/1.png deleted file mode 100644 index 3a1d5fcc7b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBlock/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBlock/14.png b/front/public/images/small/GalacticraftCore/tile.moonBlock/14.png deleted file mode 100644 index f3bb54a30b..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBlock/14.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBlock/2.png b/front/public/images/small/GalacticraftCore/tile.moonBlock/2.png deleted file mode 100644 index 884f7c5b85..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBlock/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBlock/3.png b/front/public/images/small/GalacticraftCore/tile.moonBlock/3.png deleted file mode 100644 index ea8da14b7d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBlock/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBlock/4.png b/front/public/images/small/GalacticraftCore/tile.moonBlock/4.png deleted file mode 100644 index 7f2f14472d..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBlock/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBlock/5.png b/front/public/images/small/GalacticraftCore/tile.moonBlock/5.png deleted file mode 100644 index bc77693c7f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBlock/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonBricksStairs/0.png b/front/public/images/small/GalacticraftCore/tile.moonBricksStairs/0.png deleted file mode 100644 index f6ccb4a4b0..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonBricksStairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.moonStoneStairs/0.png b/front/public/images/small/GalacticraftCore/tile.moonStoneStairs/0.png deleted file mode 100644 index fe388ceb1f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.moonStoneStairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.oxygenCollector/0.png b/front/public/images/small/GalacticraftCore/tile.oxygenCollector/0.png deleted file mode 100644 index 55dec17a40..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.oxygenCollector/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.oxygenCompressor/0.png b/front/public/images/small/GalacticraftCore/tile.oxygenCompressor/0.png deleted file mode 100644 index a9fcc3d45f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.oxygenCompressor/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.oxygenCompressor/4.png b/front/public/images/small/GalacticraftCore/tile.oxygenCompressor/4.png deleted file mode 100644 index 17ec86eecc..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.oxygenCompressor/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.oxygenDetector/0.png b/front/public/images/small/GalacticraftCore/tile.oxygenDetector/0.png deleted file mode 100644 index dad94179ec..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.oxygenDetector/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.oxygenPipe/0.png b/front/public/images/small/GalacticraftCore/tile.oxygenPipe/0.png deleted file mode 100644 index 257222bf65..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.oxygenPipe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.parachest/0.png b/front/public/images/small/GalacticraftCore/tile.parachest/0.png deleted file mode 100644 index 374cfb8ca7..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.parachest/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.refinery/0.png b/front/public/images/small/GalacticraftCore/tile.refinery/0.png deleted file mode 100644 index ca3667e8b9..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.refinery/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.rocketWorkbench/0.png b/front/public/images/small/GalacticraftCore/tile.rocketWorkbench/0.png deleted file mode 100644 index 1bfdd91f77..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.rocketWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.sealer/0.png b/front/public/images/small/GalacticraftCore/tile.sealer/0.png deleted file mode 100644 index dbe89084d5..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.sealer/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.solar/0.png b/front/public/images/small/GalacticraftCore/tile.solar/0.png deleted file mode 100644 index b7e5c23072..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.solar/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.solar/4.png b/front/public/images/small/GalacticraftCore/tile.solar/4.png deleted file mode 100644 index 56861f8ccb..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.solar/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.spaceStationBase/0.png b/front/public/images/small/GalacticraftCore/tile.spaceStationBase/0.png deleted file mode 100644 index ea9decbe29..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.spaceStationBase/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.spinThruster/0.png b/front/public/images/small/GalacticraftCore/tile.spinThruster/0.png deleted file mode 100644 index 315b348011..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.spinThruster/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.telemetry/0.png b/front/public/images/small/GalacticraftCore/tile.telemetry/0.png deleted file mode 100644 index 0f9f5a47a6..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.telemetry/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.tinStairs1/0.png b/front/public/images/small/GalacticraftCore/tile.tinStairs1/0.png deleted file mode 100644 index 4054ac57fa..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.tinStairs1/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.tinStairs2/0.png b/front/public/images/small/GalacticraftCore/tile.tinStairs2/0.png deleted file mode 100644 index 92ff495bb9..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.tinStairs2/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.treasureChest/0.png b/front/public/images/small/GalacticraftCore/tile.treasureChest/0.png deleted file mode 100644 index 006cdf4730..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.treasureChest/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.unlitTorch/0.png b/front/public/images/small/GalacticraftCore/tile.unlitTorch/0.png deleted file mode 100644 index e60b85d198..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.unlitTorch/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.unlitTorchLit/0.png b/front/public/images/small/GalacticraftCore/tile.unlitTorchLit/0.png deleted file mode 100644 index c2ab06ceb3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.unlitTorchLit/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.unlitTorchLit_Stone/0.png b/front/public/images/small/GalacticraftCore/tile.unlitTorchLit_Stone/0.png deleted file mode 100644 index 839c5412ba..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.unlitTorchLit_Stone/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.unlitTorch_Stone/0.png b/front/public/images/small/GalacticraftCore/tile.unlitTorch_Stone/0.png deleted file mode 100644 index d5e4a35fe4..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.unlitTorch_Stone/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.viewScreen/0.png b/front/public/images/small/GalacticraftCore/tile.viewScreen/0.png deleted file mode 100644 index 52e6bdf6d6..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.viewScreen/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.wallGC/0.png b/front/public/images/small/GalacticraftCore/tile.wallGC/0.png deleted file mode 100644 index 25f522874f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.wallGC/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.wallGC/1.png b/front/public/images/small/GalacticraftCore/tile.wallGC/1.png deleted file mode 100644 index d1a8dd5cc3..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.wallGC/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.wallGC/2.png b/front/public/images/small/GalacticraftCore/tile.wallGC/2.png deleted file mode 100644 index c00f6d77a4..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.wallGC/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.wallGC/3.png b/front/public/images/small/GalacticraftCore/tile.wallGC/3.png deleted file mode 100644 index 74bba6d27f..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.wallGC/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.wallGC/4.png b/front/public/images/small/GalacticraftCore/tile.wallGC/4.png deleted file mode 100644 index 70aa5ca937..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.wallGC/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftCore/tile.wallGC/5.png b/front/public/images/small/GalacticraftCore/tile.wallGC/5.png deleted file mode 100644 index 5f7d27fd87..0000000000 Binary files a/front/public/images/small/GalacticraftCore/tile.wallGC/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.atmosphericValve/0.png b/front/public/images/small/GalacticraftMars/item.atmosphericValve/0.png deleted file mode 100644 index 73ba8bf186..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.atmosphericValve/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.bucketSludge/0.png b/front/public/images/small/GalacticraftMars/item.bucketSludge/0.png deleted file mode 100644 index d25feae07f..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.bucketSludge/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.canisterPartialLN2/1.png b/front/public/images/small/GalacticraftMars/item.canisterPartialLN2/1.png deleted file mode 100644 index d07feb0501..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.canisterPartialLN2/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.canisterPartialLOX/1.png b/front/public/images/small/GalacticraftMars/item.canisterPartialLOX/1.png deleted file mode 100644 index d10e7c01ce..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.canisterPartialLOX/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.carbonFragments/0.png b/front/public/images/small/GalacticraftMars/item.carbonFragments/0.png deleted file mode 100644 index b672b53811..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.carbonFragments/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshAxe/0.png b/front/public/images/small/GalacticraftMars/item.deshAxe/0.png deleted file mode 100644 index 7d5748b9d0..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshAxe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshBoots/0.png b/front/public/images/small/GalacticraftMars/item.deshBoots/0.png deleted file mode 100644 index 161110f59b..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshBoots/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshChestplate/0.png b/front/public/images/small/GalacticraftMars/item.deshChestplate/0.png deleted file mode 100644 index 81faa217e5..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshHelmet/0.png b/front/public/images/small/GalacticraftMars/item.deshHelmet/0.png deleted file mode 100644 index f1cf3823c2..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshHoe/0.png b/front/public/images/small/GalacticraftMars/item.deshHoe/0.png deleted file mode 100644 index ba06762384..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshHoe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshLeggings/0.png b/front/public/images/small/GalacticraftMars/item.deshLeggings/0.png deleted file mode 100644 index 5a3aefb2d6..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshPick/0.png b/front/public/images/small/GalacticraftMars/item.deshPick/0.png deleted file mode 100644 index cdcad07132..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshPick/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshPickSlime/0.png b/front/public/images/small/GalacticraftMars/item.deshPickSlime/0.png deleted file mode 100644 index 0575da31a1..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshPickSlime/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshSpade/0.png b/front/public/images/small/GalacticraftMars/item.deshSpade/0.png deleted file mode 100644 index 68ab412e45..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshSpade/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.deshSword/0.png b/front/public/images/small/GalacticraftMars/item.deshSword/0.png deleted file mode 100644 index 9630f2bc1d..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.deshSword/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.grapple/0.png b/front/public/images/small/GalacticraftMars/item.grapple/0.png deleted file mode 100644 index 9fb62cd9f9..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.grapple/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.heavyNoseCone/0.png b/front/public/images/small/GalacticraftMars/item.heavyNoseCone/0.png deleted file mode 100644 index 9e186b7a62..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.heavyNoseCone/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemAstroMiner/0.png b/front/public/images/small/GalacticraftMars/item.itemAstroMiner/0.png deleted file mode 100644 index d14811b790..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemAstroMiner/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/0.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/0.png deleted file mode 100644 index 3d8bdc952c..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/1.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/1.png deleted file mode 100644 index 886ebc03be..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/2.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/2.png deleted file mode 100644 index 149471b444..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/3.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/3.png deleted file mode 100644 index c59bc8c783..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/4.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/4.png deleted file mode 100644 index 147b4f9410..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/5.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/5.png deleted file mode 100644 index 81a408b720..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/6.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/6.png deleted file mode 100644 index 905e875278..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/7.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/7.png deleted file mode 100644 index 254c7dcb6f..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/8.png b/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/8.png deleted file mode 100644 index 0016063b47..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemBasicAsteroids/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/0.png b/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/0.png deleted file mode 100644 index 08fb638e17..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/1.png b/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/1.png deleted file mode 100644 index 4e64af6c3e..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/2.png b/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/2.png deleted file mode 100644 index c8b778826b..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/3.png b/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/3.png deleted file mode 100644 index 4b13e174eb..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/4.png b/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/4.png deleted file mode 100644 index 85239f1638..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.itemTier3Rocket/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.key/0.png b/front/public/images/small/GalacticraftMars/item.key/0.png deleted file mode 100644 index fea7c098eb..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.key/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.methaneCanisterPartial/1.png b/front/public/images/small/GalacticraftMars/item.methaneCanisterPartial/1.png deleted file mode 100644 index a5fe5cd922..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.methaneCanisterPartial/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.null/0.png b/front/public/images/small/GalacticraftMars/item.null/0.png deleted file mode 100644 index f1b85b745d..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.null/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.null/1.png b/front/public/images/small/GalacticraftMars/item.null/1.png deleted file mode 100644 index d94d549125..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.null/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.null/2.png b/front/public/images/small/GalacticraftMars/item.null/2.png deleted file mode 100644 index 96331f0aeb..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.null/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.null/3.png b/front/public/images/small/GalacticraftMars/item.null/3.png deleted file mode 100644 index 767bd1b3d7..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.null/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.null/4.png b/front/public/images/small/GalacticraftMars/item.null/4.png deleted file mode 100644 index eb03014448..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.null/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.null/5.png b/front/public/images/small/GalacticraftMars/item.null/5.png deleted file mode 100644 index 294d6c60a2..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.null/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.null/6.png b/front/public/images/small/GalacticraftMars/item.null/6.png deleted file mode 100644 index 27fc00d42e..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.null/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.orionDrive/0.png b/front/public/images/small/GalacticraftMars/item.orionDrive/0.png deleted file mode 100644 index 34b29bb6bb..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.orionDrive/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.schematic/0.png b/front/public/images/small/GalacticraftMars/item.schematic/0.png deleted file mode 100644 index 039d499645..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.schematic/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.schematic/1.png b/front/public/images/small/GalacticraftMars/item.schematic/1.png deleted file mode 100644 index dd5f71aa42..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.schematic/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.schematic/2.png b/front/public/images/small/GalacticraftMars/item.schematic/2.png deleted file mode 100644 index 23ac6cdad8..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.schematic/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/0.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/0.png deleted file mode 100644 index 7547a0cb8a..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/1.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/1.png deleted file mode 100644 index ccc2af56a1..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/11.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/11.png deleted file mode 100644 index c698876bd5..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/11.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/12.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/12.png deleted file mode 100644 index bad15772a4..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/12.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/13.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/13.png deleted file mode 100644 index 386ede9aa6..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/13.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/14.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/14.png deleted file mode 100644 index 37016cd131..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/14.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/2.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/2.png deleted file mode 100644 index 2878438cf4..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/3.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/3.png deleted file mode 100644 index 78943bb198..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/4.png b/front/public/images/small/GalacticraftMars/item.spaceshipTier2/4.png deleted file mode 100644 index b84674721d..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.spaceshipTier2/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.thermalPadding/0.png b/front/public/images/small/GalacticraftMars/item.thermalPadding/0.png deleted file mode 100644 index 96b531f372..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.thermalPadding/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.thermalPadding/1.png b/front/public/images/small/GalacticraftMars/item.thermalPadding/1.png deleted file mode 100644 index f6246bea02..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.thermalPadding/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.thermalPadding/2.png b/front/public/images/small/GalacticraftMars/item.thermalPadding/2.png deleted file mode 100644 index f76cab222c..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.thermalPadding/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.thermalPadding/3.png b/front/public/images/small/GalacticraftMars/item.thermalPadding/3.png deleted file mode 100644 index 2f54328e8d..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.thermalPadding/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_axe/0.png b/front/public/images/small/GalacticraftMars/item.titanium_axe/0.png deleted file mode 100644 index 22667c88dc..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_axe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_boots/0.png b/front/public/images/small/GalacticraftMars/item.titanium_boots/0.png deleted file mode 100644 index 8b7e34097b..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_boots/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_chestplate/0.png b/front/public/images/small/GalacticraftMars/item.titanium_chestplate/0.png deleted file mode 100644 index 4a2495bcf0..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_chestplate/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_helmet/0.png b/front/public/images/small/GalacticraftMars/item.titanium_helmet/0.png deleted file mode 100644 index 52ba932a61..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_hoe/0.png b/front/public/images/small/GalacticraftMars/item.titanium_hoe/0.png deleted file mode 100644 index e9264ca060..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_hoe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_leggings/0.png b/front/public/images/small/GalacticraftMars/item.titanium_leggings/0.png deleted file mode 100644 index b07a590d45..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_leggings/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_pickaxe/0.png b/front/public/images/small/GalacticraftMars/item.titanium_pickaxe/0.png deleted file mode 100644 index c16b72e152..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_shovel/0.png b/front/public/images/small/GalacticraftMars/item.titanium_shovel/0.png deleted file mode 100644 index c40cfb0c32..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_shovel/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/item.titanium_sword/0.png b/front/public/images/small/GalacticraftMars/item.titanium_sword/0.png deleted file mode 100644 index 445b9ff5a7..0000000000 Binary files a/front/public/images/small/GalacticraftMars/item.titanium_sword/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/0.png b/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/0.png deleted file mode 100644 index 3584e1e725..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/1.png b/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/1.png deleted file mode 100644 index b7d9f9922b..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/2.png b/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/2.png deleted file mode 100644 index 2357e5260c..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/3.png b/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/3.png deleted file mode 100644 index df70ea2258..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/4.png b/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/4.png deleted file mode 100644 index d6c0c83a19..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/5.png b/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/5.png deleted file mode 100644 index b27f00c4c7..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.asteroidsBlock/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.beamReceiver/0.png b/front/public/images/small/GalacticraftMars/tile.beamReceiver/0.png deleted file mode 100644 index 401e1362f5..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.beamReceiver/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.beamReflector/0.png b/front/public/images/small/GalacticraftMars/tile.beamReflector/0.png deleted file mode 100644 index bb504276cf..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.beamReflector/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.cavernVines/0.png b/front/public/images/small/GalacticraftMars/tile.cavernVines/0.png deleted file mode 100644 index 65a79b724e..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.cavernVines/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.creeperEgg/0.png b/front/public/images/small/GalacticraftMars/tile.creeperEgg/0.png deleted file mode 100644 index fb90226f1e..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.creeperEgg/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.denseIce/0.png b/front/public/images/small/GalacticraftMars/tile.denseIce/0.png deleted file mode 100644 index bb6713ca7e..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.denseIce/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.hydrogenPipe/0.png b/front/public/images/small/GalacticraftMars/tile.hydrogenPipe/0.png deleted file mode 100644 index c0bbc25038..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.hydrogenPipe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/0.png b/front/public/images/small/GalacticraftMars/tile.mars/0.png deleted file mode 100644 index 2cc96d2611..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/1.png b/front/public/images/small/GalacticraftMars/tile.mars/1.png deleted file mode 100644 index 03b339db19..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/2.png b/front/public/images/small/GalacticraftMars/tile.mars/2.png deleted file mode 100644 index 858bba9fd4..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/3.png b/front/public/images/small/GalacticraftMars/tile.mars/3.png deleted file mode 100644 index cac99e0293..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/3.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/4.png b/front/public/images/small/GalacticraftMars/tile.mars/4.png deleted file mode 100644 index f7bfb8272d..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/5.png b/front/public/images/small/GalacticraftMars/tile.mars/5.png deleted file mode 100644 index 244bc8a617..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/5.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/6.png b/front/public/images/small/GalacticraftMars/tile.mars/6.png deleted file mode 100644 index 63a674b804..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/6.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/7.png b/front/public/images/small/GalacticraftMars/tile.mars/7.png deleted file mode 100644 index 1d47de2a9e..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/7.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/8.png b/front/public/images/small/GalacticraftMars/tile.mars/8.png deleted file mode 100644 index bae44cd097..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.mars/9.png b/front/public/images/small/GalacticraftMars/tile.mars/9.png deleted file mode 100644 index e719ca3414..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.mars/9.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsCobblestoneStairs/0.png b/front/public/images/small/GalacticraftMars/tile.marsCobblestoneStairs/0.png deleted file mode 100644 index f8d5d6ef16..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsCobblestoneStairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsDungeonBricksStairs/0.png b/front/public/images/small/GalacticraftMars/tile.marsDungeonBricksStairs/0.png deleted file mode 100644 index e9227dee08..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsDungeonBricksStairs/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsMachine/0.png b/front/public/images/small/GalacticraftMars/tile.marsMachine/0.png deleted file mode 100644 index 8f955cbf89..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsMachine/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsMachine/4.png b/front/public/images/small/GalacticraftMars/tile.marsMachine/4.png deleted file mode 100644 index af99724d34..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsMachine/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsMachine/8.png b/front/public/images/small/GalacticraftMars/tile.marsMachine/8.png deleted file mode 100644 index ba4e29e23f..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsMachine/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsMachineT2/0.png b/front/public/images/small/GalacticraftMars/tile.marsMachineT2/0.png deleted file mode 100644 index 14be4b6ef1..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsMachineT2/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsMachineT2/4.png b/front/public/images/small/GalacticraftMars/tile.marsMachineT2/4.png deleted file mode 100644 index 3a1cd22a31..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsMachineT2/4.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.marsMachineT2/8.png b/front/public/images/small/GalacticraftMars/tile.marsMachineT2/8.png deleted file mode 100644 index 9929f4ebfe..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.marsMachineT2/8.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.minerBase/0.png b/front/public/images/small/GalacticraftMars/tile.minerBase/0.png deleted file mode 100644 index 705dc7283f..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.minerBase/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.minerBaseFull/0.png b/front/public/images/small/GalacticraftMars/tile.minerBaseFull/0.png deleted file mode 100644 index 2dcc1dbef7..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.minerBaseFull/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.slimelingEgg/0.png b/front/public/images/small/GalacticraftMars/tile.slimelingEgg/0.png deleted file mode 100644 index 9f0eb06bcf..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.slimelingEgg/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.slimelingEgg/1.png b/front/public/images/small/GalacticraftMars/tile.slimelingEgg/1.png deleted file mode 100644 index 3f276043a3..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.slimelingEgg/1.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.slimelingEgg/2.png b/front/public/images/small/GalacticraftMars/tile.slimelingEgg/2.png deleted file mode 100644 index 596a8e5e96..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.slimelingEgg/2.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.sludge/0.png b/front/public/images/small/GalacticraftMars/tile.sludge/0.png deleted file mode 100644 index 61d8bbb613..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.sludge/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.telepadFake/0.png b/front/public/images/small/GalacticraftMars/tile.telepadFake/0.png deleted file mode 100644 index 8121af03de..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.telepadFake/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.telepadShort/0.png b/front/public/images/small/GalacticraftMars/tile.telepadShort/0.png deleted file mode 100644 index 5fb25ee184..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.telepadShort/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.treasureT2/0.png b/front/public/images/small/GalacticraftMars/tile.treasureT2/0.png deleted file mode 100644 index 90c9879784..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.treasureT2/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.treasureT3/0.png b/front/public/images/small/GalacticraftMars/tile.treasureT3/0.png deleted file mode 100644 index 7d030f394f..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.treasureT3/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.walkway/0.png b/front/public/images/small/GalacticraftMars/tile.walkway/0.png deleted file mode 100644 index 109820dcf5..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.walkway/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.walkwayOxygenPipe/0.png b/front/public/images/small/GalacticraftMars/tile.walkwayOxygenPipe/0.png deleted file mode 100644 index 13f4c5b8aa..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.walkwayOxygenPipe/0.png and /dev/null differ diff --git a/front/public/images/small/GalacticraftMars/tile.walkwayWire/0.png b/front/public/images/small/GalacticraftMars/tile.walkwayWire/0.png deleted file mode 100644 index 99961b6859..0000000000 Binary files a/front/public/images/small/GalacticraftMars/tile.walkwayWire/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/acentauribbgrunt/0.png b/front/public/images/small/GalaxySpace/acentauribbgrunt/0.png deleted file mode 100644 index 7f65eec066..0000000000 Binary files a/front/public/images/small/GalaxySpace/acentauribbgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/acentauribbsubgrunt/0.png b/front/public/images/small/GalaxySpace/acentauribbsubgrunt/0.png deleted file mode 100644 index 24b84c9d8a..0000000000 Binary files a/front/public/images/small/GalaxySpace/acentauribbsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/assemblymachine/0.png b/front/public/images/small/GalaxySpace/assemblymachine/0.png deleted file mode 100644 index d2d7796c54..0000000000 Binary files a/front/public/images/small/GalaxySpace/assemblymachine/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCcrystal/0.png b/front/public/images/small/GalaxySpace/barnardaCcrystal/0.png deleted file mode 100644 index da99c66ec1..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCcrystal/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCdandelion3/0.png b/front/public/images/small/GalaxySpace/barnardaCdandelion3/0.png deleted file mode 100644 index 5ba2bee4cd..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCdandelion3/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCdandelions/0.png b/front/public/images/small/GalaxySpace/barnardaCdandelions/0.png deleted file mode 100644 index c790447bdb..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCdandelions/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCdandelions/1.png b/front/public/images/small/GalaxySpace/barnardaCdandelions/1.png deleted file mode 100644 index 9b9fc70438..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCdandelions/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCdirt/0.png b/front/public/images/small/GalaxySpace/barnardaCdirt/0.png deleted file mode 100644 index 904df48c93..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCdirt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCgrass/0.png b/front/public/images/small/GalaxySpace/barnardaCgrass/0.png deleted file mode 100644 index 3f7c244d06..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCgrass/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCleaves/0.png b/front/public/images/small/GalaxySpace/barnardaCleaves/0.png deleted file mode 100644 index 3ee50856a5..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCleaves/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaClog/0.png b/front/public/images/small/GalaxySpace/barnardaClog/0.png deleted file mode 100644 index b1598ae762..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaClog/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCplanks/0.png b/front/public/images/small/GalaxySpace/barnardaCplanks/0.png deleted file mode 100644 index 1a265c3e43..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCplanks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCreed/0.png b/front/public/images/small/GalaxySpace/barnardaCreed/0.png deleted file mode 100644 index 8a1ef53559..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCreed/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaCsapling/0.png b/front/public/images/small/GalaxySpace/barnardaCsapling/0.png deleted file mode 100644 index a20ca24c0f..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaCsapling/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaEgrunt/0.png b/front/public/images/small/GalaxySpace/barnardaEgrunt/0.png deleted file mode 100644 index 3e394954d5..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaEgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaEoregold/0.png b/front/public/images/small/GalaxySpace/barnardaEoregold/0.png deleted file mode 100644 index 49af6f9a1c..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaEoregold/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaEoreiron/0.png b/front/public/images/small/GalaxySpace/barnardaEoreiron/0.png deleted file mode 100644 index 3419cde399..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaEoreiron/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaEsubgrunt/0.png b/front/public/images/small/GalaxySpace/barnardaEsubgrunt/0.png deleted file mode 100644 index d8ad409bd9..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaEsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaFgrunt/0.png b/front/public/images/small/GalaxySpace/barnardaFgrunt/0.png deleted file mode 100644 index 53676a96a2..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaFgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/barnardaFsubgrunt/0.png b/front/public/images/small/GalaxySpace/barnardaFsubgrunt/0.png deleted file mode 100644 index cd27a1542b..0000000000 Binary files a/front/public/images/small/GalaxySpace/barnardaFsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/biofuel/0.png b/front/public/images/small/GalaxySpace/biofuel/0.png deleted file mode 100644 index 4924953353..0000000000 Binary files a/front/public/images/small/GalaxySpace/biofuel/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/callistoblocks/0.png b/front/public/images/small/GalaxySpace/callistoblocks/0.png deleted file mode 100644 index c9babbe390..0000000000 Binary files a/front/public/images/small/GalaxySpace/callistoblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/callistoblocks/1.png b/front/public/images/small/GalaxySpace/callistoblocks/1.png deleted file mode 100644 index 6512a22dd4..0000000000 Binary files a/front/public/images/small/GalaxySpace/callistoblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresTChestT4/0.png b/front/public/images/small/GalaxySpace/ceresTChestT4/0.png deleted file mode 100644 index ecb777fa4d..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresTChestT4/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresblocks/0.png b/front/public/images/small/GalaxySpace/ceresblocks/0.png deleted file mode 100644 index f3585ea5e5..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresblocks/1.png b/front/public/images/small/GalaxySpace/ceresblocks/1.png deleted file mode 100644 index a6c174236c..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresblocks/2.png b/front/public/images/small/GalaxySpace/ceresblocks/2.png deleted file mode 100644 index 042b26a53a..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresblocks/3.png b/front/public/images/small/GalaxySpace/ceresblocks/3.png deleted file mode 100644 index 49ec0ea479..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresblocks/4.png b/front/public/images/small/GalaxySpace/ceresblocks/4.png deleted file mode 100644 index d7d4c42e1b..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresblocks/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresblocks/5.png b/front/public/images/small/GalaxySpace/ceresblocks/5.png deleted file mode 100644 index fbbfa7ef5e..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresblocks/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresglowstone/0.png b/front/public/images/small/GalaxySpace/ceresglowstone/0.png deleted file mode 100644 index ab342df311..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresglowstone/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ceresweb/0.png b/front/public/images/small/GalaxySpace/ceresweb/0.png deleted file mode 100644 index 4a4c01b20f..0000000000 Binary files a/front/public/images/small/GalaxySpace/ceresweb/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/convertersurface/0.png b/front/public/images/small/GalaxySpace/convertersurface/0.png deleted file mode 100644 index 58f37e67c1..0000000000 Binary files a/front/public/images/small/GalaxySpace/convertersurface/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/deimosblocks/0.png b/front/public/images/small/GalaxySpace/deimosblocks/0.png deleted file mode 100644 index 5ba2ca1e96..0000000000 Binary files a/front/public/images/small/GalaxySpace/deimosblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/deimosblocks/1.png b/front/public/images/small/GalaxySpace/deimosblocks/1.png deleted file mode 100644 index 819ca1dcca..0000000000 Binary files a/front/public/images/small/GalaxySpace/deimosblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/deimosblocks/2.png b/front/public/images/small/GalaxySpace/deimosblocks/2.png deleted file mode 100644 index 5231114700..0000000000 Binary files a/front/public/images/small/GalaxySpace/deimosblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/deimosblocks/3.png b/front/public/images/small/GalaxySpace/deimosblocks/3.png deleted file mode 100644 index 906b72f089..0000000000 Binary files a/front/public/images/small/GalaxySpace/deimosblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/0.png b/front/public/images/small/GalaxySpace/dysonswarmparts/0.png deleted file mode 100644 index 3a39c585c6..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/1.png b/front/public/images/small/GalaxySpace/dysonswarmparts/1.png deleted file mode 100644 index a01eb9cf72..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/2.png b/front/public/images/small/GalaxySpace/dysonswarmparts/2.png deleted file mode 100644 index fef1d2b465..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/3.png b/front/public/images/small/GalaxySpace/dysonswarmparts/3.png deleted file mode 100644 index 8bce40e3a0..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/4.png b/front/public/images/small/GalaxySpace/dysonswarmparts/4.png deleted file mode 100644 index 0036d57ebe..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/5.png b/front/public/images/small/GalaxySpace/dysonswarmparts/5.png deleted file mode 100644 index 10c6336118..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/6.png b/front/public/images/small/GalaxySpace/dysonswarmparts/6.png deleted file mode 100644 index f712194568..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/7.png b/front/public/images/small/GalaxySpace/dysonswarmparts/7.png deleted file mode 100644 index f594a26f18..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/7.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/8.png b/front/public/images/small/GalaxySpace/dysonswarmparts/8.png deleted file mode 100644 index cb7d99049b..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/8.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/dysonswarmparts/9.png b/front/public/images/small/GalaxySpace/dysonswarmparts/9.png deleted file mode 100644 index dc15abeabf..0000000000 Binary files a/front/public/images/small/GalaxySpace/dysonswarmparts/9.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/enceladusTChestT6/0.png b/front/public/images/small/GalaxySpace/enceladusTChestT6/0.png deleted file mode 100644 index 80ec27c10a..0000000000 Binary files a/front/public/images/small/GalaxySpace/enceladusTChestT6/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/enceladusblocks/0.png b/front/public/images/small/GalaxySpace/enceladusblocks/0.png deleted file mode 100644 index e45b0e9962..0000000000 Binary files a/front/public/images/small/GalaxySpace/enceladusblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/enceladusblocks/1.png b/front/public/images/small/GalaxySpace/enceladusblocks/1.png deleted file mode 100644 index a67f770953..0000000000 Binary files a/front/public/images/small/GalaxySpace/enceladusblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/enceladusblocks/2.png b/front/public/images/small/GalaxySpace/enceladusblocks/2.png deleted file mode 100644 index 4289ff8dc3..0000000000 Binary files a/front/public/images/small/GalaxySpace/enceladusblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/enceladusblocks/3.png b/front/public/images/small/GalaxySpace/enceladusblocks/3.png deleted file mode 100644 index a053aab78f..0000000000 Binary files a/front/public/images/small/GalaxySpace/enceladusblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/enceladuscrystal/0.png b/front/public/images/small/GalaxySpace/enceladuscrystal/0.png deleted file mode 100644 index da99c66ec1..0000000000 Binary files a/front/public/images/small/GalaxySpace/enceladuscrystal/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/enceladusglowstone/0.png b/front/public/images/small/GalaxySpace/enceladusglowstone/0.png deleted file mode 100644 index 6897fe8111..0000000000 Binary files a/front/public/images/small/GalaxySpace/enceladusglowstone/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/europageyser/0.png b/front/public/images/small/GalaxySpace/europageyser/0.png deleted file mode 100644 index 890b4cdf19..0000000000 Binary files a/front/public/images/small/GalaxySpace/europageyser/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/europagrunt/0.png b/front/public/images/small/GalaxySpace/europagrunt/0.png deleted file mode 100644 index 7bc26a583d..0000000000 Binary files a/front/public/images/small/GalaxySpace/europagrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/europagrunt/1.png b/front/public/images/small/GalaxySpace/europagrunt/1.png deleted file mode 100644 index c4fe5e3229..0000000000 Binary files a/front/public/images/small/GalaxySpace/europagrunt/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/europaunderwatergeyser/0.png b/front/public/images/small/GalaxySpace/europaunderwatergeyser/0.png deleted file mode 100644 index 3a8516b396..0000000000 Binary files a/front/public/images/small/GalaxySpace/europaunderwatergeyser/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/fuelgenerator/0.png b/front/public/images/small/GalaxySpace/fuelgenerator/0.png deleted file mode 100644 index 5ed32b8de4..0000000000 Binary files a/front/public/images/small/GalaxySpace/fuelgenerator/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglass/0.png b/front/public/images/small/GalaxySpace/futureglass/0.png deleted file mode 100644 index c0c5c2b31d..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglass/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/0.png b/front/public/images/small/GalaxySpace/futureglasses/0.png deleted file mode 100644 index fd8403d550..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/1.png b/front/public/images/small/GalaxySpace/futureglasses/1.png deleted file mode 100644 index d5c750cf90..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/10.png b/front/public/images/small/GalaxySpace/futureglasses/10.png deleted file mode 100644 index 9f6b180221..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/10.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/11.png b/front/public/images/small/GalaxySpace/futureglasses/11.png deleted file mode 100644 index c6b5439a60..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/11.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/12.png b/front/public/images/small/GalaxySpace/futureglasses/12.png deleted file mode 100644 index e2994c9dcd..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/12.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/13.png b/front/public/images/small/GalaxySpace/futureglasses/13.png deleted file mode 100644 index 1bd5517cbc..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/13.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/14.png b/front/public/images/small/GalaxySpace/futureglasses/14.png deleted file mode 100644 index 17b930f71d..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/14.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/15.png b/front/public/images/small/GalaxySpace/futureglasses/15.png deleted file mode 100644 index d0eb2e88a3..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/15.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/2.png b/front/public/images/small/GalaxySpace/futureglasses/2.png deleted file mode 100644 index ca717377b5..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/3.png b/front/public/images/small/GalaxySpace/futureglasses/3.png deleted file mode 100644 index adbaeab287..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/4.png b/front/public/images/small/GalaxySpace/futureglasses/4.png deleted file mode 100644 index 26831c36ec..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/5.png b/front/public/images/small/GalaxySpace/futureglasses/5.png deleted file mode 100644 index 860cf4c668..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/6.png b/front/public/images/small/GalaxySpace/futureglasses/6.png deleted file mode 100644 index 94b9b681b7..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/7.png b/front/public/images/small/GalaxySpace/futureglasses/7.png deleted file mode 100644 index e7bb9f41d0..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/7.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/8.png b/front/public/images/small/GalaxySpace/futureglasses/8.png deleted file mode 100644 index cbc5ae2db1..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/8.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/futureglasses/9.png b/front/public/images/small/GalaxySpace/futureglasses/9.png deleted file mode 100644 index da3de560ad..0000000000 Binary files a/front/public/images/small/GalaxySpace/futureglasses/9.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ganymedeblocks/0.png b/front/public/images/small/GalaxySpace/ganymedeblocks/0.png deleted file mode 100644 index a828dd6e9f..0000000000 Binary files a/front/public/images/small/GalaxySpace/ganymedeblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ganymedeblocks/1.png b/front/public/images/small/GalaxySpace/ganymedeblocks/1.png deleted file mode 100644 index 43f6060667..0000000000 Binary files a/front/public/images/small/GalaxySpace/ganymedeblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ganymedeblocks/2.png b/front/public/images/small/GalaxySpace/ganymedeblocks/2.png deleted file mode 100644 index 72d8564011..0000000000 Binary files a/front/public/images/small/GalaxySpace/ganymedeblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ganymedeblocks/3.png b/front/public/images/small/GalaxySpace/ganymedeblocks/3.png deleted file mode 100644 index 05cb06d02c..0000000000 Binary files a/front/public/images/small/GalaxySpace/ganymedeblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/geothermalgenerator/0.png b/front/public/images/small/GalaxySpace/geothermalgenerator/0.png deleted file mode 100644 index f86f55ddba..0000000000 Binary files a/front/public/images/small/GalaxySpace/geothermalgenerator/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/haumeablocks/0.png b/front/public/images/small/GalaxySpace/haumeablocks/0.png deleted file mode 100644 index 9af2aebe33..0000000000 Binary files a/front/public/images/small/GalaxySpace/haumeablocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioTChestT5/0.png b/front/public/images/small/GalaxySpace/ioTChestT5/0.png deleted file mode 100644 index 9a534b2ebd..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioTChestT5/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/0.png b/front/public/images/small/GalaxySpace/ioblocks/0.png deleted file mode 100644 index b6e6d854ff..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/1.png b/front/public/images/small/GalaxySpace/ioblocks/1.png deleted file mode 100644 index 1b89291496..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/2.png b/front/public/images/small/GalaxySpace/ioblocks/2.png deleted file mode 100644 index 7da0d1be2b..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/3.png b/front/public/images/small/GalaxySpace/ioblocks/3.png deleted file mode 100644 index c906673e8f..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/4.png b/front/public/images/small/GalaxySpace/ioblocks/4.png deleted file mode 100644 index b0a795e49f..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/5.png b/front/public/images/small/GalaxySpace/ioblocks/5.png deleted file mode 100644 index 5bb6a914f1..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/6.png b/front/public/images/small/GalaxySpace/ioblocks/6.png deleted file mode 100644 index a439f00d9c..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/7.png b/front/public/images/small/GalaxySpace/ioblocks/7.png deleted file mode 100644 index 96bba4825b..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/7.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioblocks/8.png b/front/public/images/small/GalaxySpace/ioblocks/8.png deleted file mode 100644 index 9b2f9e36b6..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioblocks/8.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/iodualstone/0.png b/front/public/images/small/GalaxySpace/iodualstone/0.png deleted file mode 100644 index be5db3784c..0000000000 Binary files a/front/public/images/small/GalaxySpace/iodualstone/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioglowstone/0.png b/front/public/images/small/GalaxySpace/ioglowstone/0.png deleted file mode 100644 index 01be903f6c..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioglowstone/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/ioweb/0.png b/front/public/images/small/GalaxySpace/ioweb/0.png deleted file mode 100644 index 2769cc3d90..0000000000 Binary files a/front/public/images/small/GalaxySpace/ioweb/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.BarnardaCStrawberry/0.png b/front/public/images/small/GalaxySpace/item.BarnardaCStrawberry/0.png deleted file mode 100644 index 1f13d00400..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.BarnardaCStrawberry/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedCoal/0.png b/front/public/images/small/GalaxySpace/item.CompressedCoal/0.png deleted file mode 100644 index b41512025c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedDualAluminium/0.png b/front/public/images/small/GalaxySpace/item.CompressedDualAluminium/0.png deleted file mode 100644 index defe051af6..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedDualAluminium/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedDualBronze/0.png b/front/public/images/small/GalaxySpace/item.CompressedDualBronze/0.png deleted file mode 100644 index fd5c12aaa5..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedDualBronze/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/0.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/0.png deleted file mode 100644 index 68252aee5a..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/1.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/1.png deleted file mode 100644 index ae34bfc7c7..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/2.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/2.png deleted file mode 100644 index 00cca908c0..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/3.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/3.png deleted file mode 100644 index 118473e59f..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/4.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/4.png deleted file mode 100644 index c679b111a7..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/5.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/5.png deleted file mode 100644 index e3ae694955..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/6.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/6.png deleted file mode 100644 index c9c60667b4..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/7.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/7.png deleted file mode 100644 index f0f7f94557..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/7.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/8.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/8.png deleted file mode 100644 index 83999c65ce..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/8.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedPlates/9.png b/front/public/images/small/GalaxySpace/item.CompressedPlates/9.png deleted file mode 100644 index 84b0161c45..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedPlates/9.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.CompressedSDHD120/0.png b/front/public/images/small/GalaxySpace/item.CompressedSDHD120/0.png deleted file mode 100644 index 36e21e2eb4..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.CompressedSDHD120/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/0.png b/front/public/images/small/GalaxySpace/item.DysonSwarmParts/0.png deleted file mode 100644 index 921015cc9e..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/1.png b/front/public/images/small/GalaxySpace/item.DysonSwarmParts/1.png deleted file mode 100644 index 57fc5ed4ef..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/2.png b/front/public/images/small/GalaxySpace/item.DysonSwarmParts/2.png deleted file mode 100644 index 232c7654ef..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/3.png b/front/public/images/small/GalaxySpace/item.DysonSwarmParts/3.png deleted file mode 100644 index fa4d8ede71..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/4.png b/front/public/images/small/GalaxySpace/item.DysonSwarmParts/4.png deleted file mode 100644 index 53acf83fbf..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/5.png b/front/public/images/small/GalaxySpace/item.DysonSwarmParts/5.png deleted file mode 100644 index 7093f4dc97..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.DysonSwarmParts/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/0.png b/front/public/images/small/GalaxySpace/item.GlowstoneDusts/0.png deleted file mode 100644 index 25b8b52eb9..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/1.png b/front/public/images/small/GalaxySpace/item.GlowstoneDusts/1.png deleted file mode 100644 index 69a4045f0b..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/2.png b/front/public/images/small/GalaxySpace/item.GlowstoneDusts/2.png deleted file mode 100644 index 5d8da37310..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/3.png b/front/public/images/small/GalaxySpace/item.GlowstoneDusts/3.png deleted file mode 100644 index 017449c9fc..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/4.png b/front/public/images/small/GalaxySpace/item.GlowstoneDusts/4.png deleted file mode 100644 index e4bf3881c1..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.GlowstoneDusts/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate4/0.png b/front/public/images/small/GalaxySpace/item.HeavyDutyPlate4/0.png deleted file mode 100644 index ed7ca7d98d..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate4/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate5/0.png b/front/public/images/small/GalaxySpace/item.HeavyDutyPlate5/0.png deleted file mode 100644 index 3e257d8ff7..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate5/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate6/0.png b/front/public/images/small/GalaxySpace/item.HeavyDutyPlate6/0.png deleted file mode 100644 index 0c514c4604..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate6/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate7/0.png b/front/public/images/small/GalaxySpace/item.HeavyDutyPlate7/0.png deleted file mode 100644 index e1b9d8df85..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate7/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate8/0.png b/front/public/images/small/GalaxySpace/item.HeavyDutyPlate8/0.png deleted file mode 100644 index d3b2a50131..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.HeavyDutyPlate8/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Icon/0.png b/front/public/images/small/GalaxySpace/item.Icon/0.png deleted file mode 100644 index bbf557d2d3..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Icon/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/0.png b/front/public/images/small/GalaxySpace/item.Ingots/0.png deleted file mode 100644 index ac85345726..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/1.png b/front/public/images/small/GalaxySpace/item.Ingots/1.png deleted file mode 100644 index d704385784..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/2.png b/front/public/images/small/GalaxySpace/item.Ingots/2.png deleted file mode 100644 index e940c170f6..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/3.png b/front/public/images/small/GalaxySpace/item.Ingots/3.png deleted file mode 100644 index 553b1eaa8e..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/4.png b/front/public/images/small/GalaxySpace/item.Ingots/4.png deleted file mode 100644 index 48006b6ed2..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/5.png b/front/public/images/small/GalaxySpace/item.Ingots/5.png deleted file mode 100644 index f0f5a99964..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/6.png b/front/public/images/small/GalaxySpace/item.Ingots/6.png deleted file mode 100644 index 34a49c6350..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/7.png b/front/public/images/small/GalaxySpace/item.Ingots/7.png deleted file mode 100644 index 0ded899069..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/7.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/8.png b/front/public/images/small/GalaxySpace/item.Ingots/8.png deleted file mode 100644 index 83f18bc5cc..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/8.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Ingots/9.png b/front/public/images/small/GalaxySpace/item.Ingots/9.png deleted file mode 100644 index ef6b034aa2..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Ingots/9.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ItemBioFuelCanister/1.png b/front/public/images/small/GalaxySpace/item.ItemBioFuelCanister/1.png deleted file mode 100644 index 6a55cf8348..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ItemBioFuelCanister/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.JetPack/0.png b/front/public/images/small/GalaxySpace/item.JetPack/0.png deleted file mode 100644 index 0d4cbaf4a2..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.JetPack/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.JetPack/100.png b/front/public/images/small/GalaxySpace/item.JetPack/100.png deleted file mode 100644 index 0d4cbaf4a2..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.JetPack/100.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.LeadBattery/0.png b/front/public/images/small/GalaxySpace/item.LeadBattery/0.png deleted file mode 100644 index c584f21edf..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.LeadBattery/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.LeadBattery/100.png b/front/public/images/small/GalaxySpace/item.LeadBattery/100.png deleted file mode 100644 index c584f21edf..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.LeadBattery/100.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.MethaneBucket/0.png b/front/public/images/small/GalaxySpace/item.MethaneBucket/0.png deleted file mode 100644 index 6706f15501..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.MethaneBucket/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ModuleLander/0.png b/front/public/images/small/GalaxySpace/item.ModuleLander/0.png deleted file mode 100644 index 7958bc563f..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ModuleLander/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ModuleLander2/0.png b/front/public/images/small/GalaxySpace/item.ModuleLander2/0.png deleted file mode 100644 index aec026ec96..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ModuleLander2/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ModuleLander3/0.png b/front/public/images/small/GalaxySpace/item.ModuleLander3/0.png deleted file mode 100644 index 9999e07d54..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ModuleLander3/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ModuleSmallCanister/0.png b/front/public/images/small/GalaxySpace/item.ModuleSmallCanister/0.png deleted file mode 100644 index 502e2584c7..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ModuleSmallCanister/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ModuleSmallFuelCanister/0.png b/front/public/images/small/GalaxySpace/item.ModuleSmallFuelCanister/0.png deleted file mode 100644 index 39f40d7b15..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ModuleSmallFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.QuantBow/0.png b/front/public/images/small/GalaxySpace/item.QuantBow/0.png deleted file mode 100644 index dd7b049512..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.QuantBow/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RobotArm/0.png b/front/public/images/small/GalaxySpace/item.RobotArm/0.png deleted file mode 100644 index 539ad44ed4..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RobotArm/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/1.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/1.png deleted file mode 100644 index b3042c7059..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/100.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/100.png deleted file mode 100644 index 529d76ca40..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/100.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/101.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/101.png deleted file mode 100644 index 9c857bb4d8..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/101.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/102.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/102.png deleted file mode 100644 index f6af63a9d5..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/102.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/2.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/2.png deleted file mode 100644 index 75c3d54b4c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/3.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/3.png deleted file mode 100644 index 1f9cb017f8..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/4.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/4.png deleted file mode 100644 index 4ae4432713..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/5.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/5.png deleted file mode 100644 index cb4623831c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/6.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/6.png deleted file mode 100644 index ef48ce2ecb..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/7.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/7.png deleted file mode 100644 index 210dfde170..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/7.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketControlComputer/8.png b/front/public/images/small/GalaxySpace/item.RocketControlComputer/8.png deleted file mode 100644 index ca1fc9a55a..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketControlComputer/8.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketParts/0.png b/front/public/images/small/GalaxySpace/item.RocketParts/0.png deleted file mode 100644 index 4f4f54b725..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketParts/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketParts/1.png b/front/public/images/small/GalaxySpace/item.RocketParts/1.png deleted file mode 100644 index a33e0fed4a..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketParts/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketParts/2.png b/front/public/images/small/GalaxySpace/item.RocketParts/2.png deleted file mode 100644 index 8904f7d3bc..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketParts/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.RocketParts/3.png b/front/public/images/small/GalaxySpace/item.RocketParts/3.png deleted file mode 100644 index 6e2d7e4646..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.RocketParts/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.SchematicTier4/0.png b/front/public/images/small/GalaxySpace/item.SchematicTier4/0.png deleted file mode 100644 index d9c0cc7b67..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.SchematicTier4/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.SchematicTier5/0.png b/front/public/images/small/GalaxySpace/item.SchematicTier5/0.png deleted file mode 100644 index 2a380a3c4b..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.SchematicTier5/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.SchematicTier6/0.png b/front/public/images/small/GalaxySpace/item.SchematicTier6/0.png deleted file mode 100644 index 603f52112b..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.SchematicTier6/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.SchematicTier7/0.png b/front/public/images/small/GalaxySpace/item.SchematicTier7/0.png deleted file mode 100644 index 5f18e3c931..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.SchematicTier7/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.SchematicTier8/0.png b/front/public/images/small/GalaxySpace/item.SchematicTier8/0.png deleted file mode 100644 index 1dc253d29c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.SchematicTier8/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.SolarFlares/0.png b/front/public/images/small/GalaxySpace/item.SolarFlares/0.png deleted file mode 100644 index e249b37ec6..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.SolarFlares/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.SolarFlares/1.png b/front/public/images/small/GalaxySpace/item.SolarFlares/1.png deleted file mode 100644 index 17dcf0f291..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.SolarFlares/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Sulfur/0.png b/front/public/images/small/GalaxySpace/item.Sulfur/0.png deleted file mode 100644 index 89b894fc74..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Sulfur/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ThermalClothT2/0.png b/front/public/images/small/GalaxySpace/item.ThermalClothT2/0.png deleted file mode 100644 index 50fa8264c1..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ThermalClothT2/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/0.png b/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/0.png deleted file mode 100644 index 6b365113db..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/1.png b/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/1.png deleted file mode 100644 index c8d570551a..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/2.png b/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/2.png deleted file mode 100644 index c319d924b6..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/3.png b/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/3.png deleted file mode 100644 index 66306e13c6..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.ThermalPaddingT2/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier4Key/0.png b/front/public/images/small/GalaxySpace/item.Tier4Key/0.png deleted file mode 100644 index 02bc4497b9..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier4Key/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier4Rocket/0.png b/front/public/images/small/GalaxySpace/item.Tier4Rocket/0.png deleted file mode 100644 index 37f06627d2..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier4Rocket/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier4Rocket/1.png b/front/public/images/small/GalaxySpace/item.Tier4Rocket/1.png deleted file mode 100644 index b0d95dfbfb..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier4Rocket/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier4Rocket/2.png b/front/public/images/small/GalaxySpace/item.Tier4Rocket/2.png deleted file mode 100644 index 03f3383b2f..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier4Rocket/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier4Rocket/3.png b/front/public/images/small/GalaxySpace/item.Tier4Rocket/3.png deleted file mode 100644 index 82eb047f39..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier4Rocket/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier4Rocket/4.png b/front/public/images/small/GalaxySpace/item.Tier4Rocket/4.png deleted file mode 100644 index 3995606a70..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier4Rocket/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier5Key/0.png b/front/public/images/small/GalaxySpace/item.Tier5Key/0.png deleted file mode 100644 index 7b897f4abf..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier5Key/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier5Rocket/0.png b/front/public/images/small/GalaxySpace/item.Tier5Rocket/0.png deleted file mode 100644 index ba49e91b14..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier5Rocket/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier5Rocket/1.png b/front/public/images/small/GalaxySpace/item.Tier5Rocket/1.png deleted file mode 100644 index 77965c8b37..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier5Rocket/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier5Rocket/2.png b/front/public/images/small/GalaxySpace/item.Tier5Rocket/2.png deleted file mode 100644 index ac044b8048..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier5Rocket/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier5Rocket/3.png b/front/public/images/small/GalaxySpace/item.Tier5Rocket/3.png deleted file mode 100644 index 9bfed2d285..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier5Rocket/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier5Rocket/4.png b/front/public/images/small/GalaxySpace/item.Tier5Rocket/4.png deleted file mode 100644 index 32b9dc23c8..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier5Rocket/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier6Key/0.png b/front/public/images/small/GalaxySpace/item.Tier6Key/0.png deleted file mode 100644 index dd40e19628..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier6Key/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier6Rocket/0.png b/front/public/images/small/GalaxySpace/item.Tier6Rocket/0.png deleted file mode 100644 index 8b6852e4be..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier6Rocket/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier6Rocket/1.png b/front/public/images/small/GalaxySpace/item.Tier6Rocket/1.png deleted file mode 100644 index a10e7d8c68..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier6Rocket/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier6Rocket/2.png b/front/public/images/small/GalaxySpace/item.Tier6Rocket/2.png deleted file mode 100644 index 30918d0bf3..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier6Rocket/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier6Rocket/3.png b/front/public/images/small/GalaxySpace/item.Tier6Rocket/3.png deleted file mode 100644 index dd536c3b50..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier6Rocket/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier6Rocket/4.png b/front/public/images/small/GalaxySpace/item.Tier6Rocket/4.png deleted file mode 100644 index 269a19d61a..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier6Rocket/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier7Key/0.png b/front/public/images/small/GalaxySpace/item.Tier7Key/0.png deleted file mode 100644 index 3d1f2608c0..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier7Key/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier7Rocket/0.png b/front/public/images/small/GalaxySpace/item.Tier7Rocket/0.png deleted file mode 100644 index 40eb6cbe8d..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier7Rocket/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier7Rocket/1.png b/front/public/images/small/GalaxySpace/item.Tier7Rocket/1.png deleted file mode 100644 index f6b44fffcb..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier7Rocket/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier7Rocket/2.png b/front/public/images/small/GalaxySpace/item.Tier7Rocket/2.png deleted file mode 100644 index e2c14b1d31..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier7Rocket/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier7Rocket/3.png b/front/public/images/small/GalaxySpace/item.Tier7Rocket/3.png deleted file mode 100644 index d64ab568ec..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier7Rocket/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier7Rocket/4.png b/front/public/images/small/GalaxySpace/item.Tier7Rocket/4.png deleted file mode 100644 index 0f57fca0d1..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier7Rocket/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier8Key/0.png b/front/public/images/small/GalaxySpace/item.Tier8Key/0.png deleted file mode 100644 index eb9151a699..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier8Key/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier8Rocket/0.png b/front/public/images/small/GalaxySpace/item.Tier8Rocket/0.png deleted file mode 100644 index 7194e80c8f..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier8Rocket/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier8Rocket/1.png b/front/public/images/small/GalaxySpace/item.Tier8Rocket/1.png deleted file mode 100644 index e2970d794c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier8Rocket/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier8Rocket/2.png b/front/public/images/small/GalaxySpace/item.Tier8Rocket/2.png deleted file mode 100644 index dc2341f509..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier8Rocket/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier8Rocket/3.png b/front/public/images/small/GalaxySpace/item.Tier8Rocket/3.png deleted file mode 100644 index 64cd43f53e..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier8Rocket/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.Tier8Rocket/4.png b/front/public/images/small/GalaxySpace/item.Tier8Rocket/4.png deleted file mode 100644 index eacd63403e..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.Tier8Rocket/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.UnknowCrystal/0.png b/front/public/images/small/GalaxySpace/item.UnknowCrystal/0.png deleted file mode 100644 index f77896511c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.UnknowCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.UnknowWaterBucket/0.png b/front/public/images/small/GalaxySpace/item.UnknowWaterBucket/0.png deleted file mode 100644 index 599744bfe5..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.UnknowWaterBucket/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.cobaltum_boots/0.png b/front/public/images/small/GalaxySpace/item.cobaltum_boots/0.png deleted file mode 100644 index 8ce6b02047..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.cobaltum_boots/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.cobaltum_helmet/0.png b/front/public/images/small/GalaxySpace/item.cobaltum_helmet/0.png deleted file mode 100644 index efc89c6669..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.cobaltum_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.cobaltum_leg/0.png b/front/public/images/small/GalaxySpace/item.cobaltum_leg/0.png deleted file mode 100644 index a83d2f16e9..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.cobaltum_leg/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.cobaltum_plate/0.png b/front/public/images/small/GalaxySpace/item.cobaltum_plate/0.png deleted file mode 100644 index 9c577997e5..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.cobaltum_plate/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.lead_boots/0.png b/front/public/images/small/GalaxySpace/item.lead_boots/0.png deleted file mode 100644 index 58280571a7..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.lead_boots/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.lead_helmet/0.png b/front/public/images/small/GalaxySpace/item.lead_helmet/0.png deleted file mode 100644 index ea0d3e891c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.lead_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.lead_leg/0.png b/front/public/images/small/GalaxySpace/item.lead_leg/0.png deleted file mode 100644 index 92ec8d2a5f..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.lead_leg/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.lead_plate/0.png b/front/public/images/small/GalaxySpace/item.lead_plate/0.png deleted file mode 100644 index 3e13a4a7f5..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.lead_plate/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.plasmaaxe/0.png b/front/public/images/small/GalaxySpace/item.plasmaaxe/0.png deleted file mode 100644 index 27df15789c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.plasmaaxe/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.plasmahoe/0.png b/front/public/images/small/GalaxySpace/item.plasmahoe/0.png deleted file mode 100644 index 91068b7d46..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.plasmahoe/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.plasmapickaxe/0.png b/front/public/images/small/GalaxySpace/item.plasmapickaxe/0.png deleted file mode 100644 index 21d88c2a70..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.plasmapickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.plasmashovel/0.png b/front/public/images/small/GalaxySpace/item.plasmashovel/0.png deleted file mode 100644 index 3d17a79eef..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.plasmashovel/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.plasmasword/0.png b/front/public/images/small/GalaxySpace/item.plasmasword/0.png deleted file mode 100644 index 7bb5f7c284..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.plasmasword/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.spacesuit_boots/0.png b/front/public/images/small/GalaxySpace/item.spacesuit_boots/0.png deleted file mode 100644 index 8d3bfceb86..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.spacesuit_boots/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.spacesuit_gravityboots/0.png b/front/public/images/small/GalaxySpace/item.spacesuit_gravityboots/0.png deleted file mode 100644 index 753b5d78e1..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.spacesuit_gravityboots/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.spacesuit_helmet/0.png b/front/public/images/small/GalaxySpace/item.spacesuit_helmet/0.png deleted file mode 100644 index 22c82f5b87..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.spacesuit_helmet/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.spacesuit_helmetglasses/0.png b/front/public/images/small/GalaxySpace/item.spacesuit_helmetglasses/0.png deleted file mode 100644 index d92ff41411..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.spacesuit_helmetglasses/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.spacesuit_jetplate/0.png b/front/public/images/small/GalaxySpace/item.spacesuit_jetplate/0.png deleted file mode 100644 index f46a2f9fb7..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.spacesuit_jetplate/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.spacesuit_leg/0.png b/front/public/images/small/GalaxySpace/item.spacesuit_leg/0.png deleted file mode 100644 index e2105c894c..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.spacesuit_leg/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/item.spacesuit_plate/0.png b/front/public/images/small/GalaxySpace/item.spacesuit_plate/0.png deleted file mode 100644 index 42d6eb83d1..0000000000 Binary files a/front/public/images/small/GalaxySpace/item.spacesuit_plate/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/leadore/0.png b/front/public/images/small/GalaxySpace/leadore/0.png deleted file mode 100644 index 756db4de12..0000000000 Binary files a/front/public/images/small/GalaxySpace/leadore/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/liquidmethane/0.png b/front/public/images/small/GalaxySpace/liquidmethane/0.png deleted file mode 100644 index 4924953353..0000000000 Binary files a/front/public/images/small/GalaxySpace/liquidmethane/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/machineframes/0.png b/front/public/images/small/GalaxySpace/machineframes/0.png deleted file mode 100644 index e8b68675ba..0000000000 Binary files a/front/public/images/small/GalaxySpace/machineframes/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/makemakegrunt/0.png b/front/public/images/small/GalaxySpace/makemakegrunt/0.png deleted file mode 100644 index b93c5fc84d..0000000000 Binary files a/front/public/images/small/GalaxySpace/makemakegrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/makemakegrunt/1.png b/front/public/images/small/GalaxySpace/makemakegrunt/1.png deleted file mode 100644 index cf903ff9a4..0000000000 Binary files a/front/public/images/small/GalaxySpace/makemakegrunt/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mercuryblocks/0.png b/front/public/images/small/GalaxySpace/mercuryblocks/0.png deleted file mode 100644 index 78b378b4f2..0000000000 Binary files a/front/public/images/small/GalaxySpace/mercuryblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mercuryblocks/1.png b/front/public/images/small/GalaxySpace/mercuryblocks/1.png deleted file mode 100644 index 29575bf629..0000000000 Binary files a/front/public/images/small/GalaxySpace/mercuryblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mercuryblocks/2.png b/front/public/images/small/GalaxySpace/mercuryblocks/2.png deleted file mode 100644 index 059d2bc919..0000000000 Binary files a/front/public/images/small/GalaxySpace/mercuryblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mercuryblocks/3.png b/front/public/images/small/GalaxySpace/mercuryblocks/3.png deleted file mode 100644 index 35dc9be316..0000000000 Binary files a/front/public/images/small/GalaxySpace/mercuryblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mercuryblocks/4.png b/front/public/images/small/GalaxySpace/mercuryblocks/4.png deleted file mode 100644 index e8c4fed17d..0000000000 Binary files a/front/public/images/small/GalaxySpace/mercuryblocks/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mercuryblocks/5.png b/front/public/images/small/GalaxySpace/mercuryblocks/5.png deleted file mode 100644 index 98f9518a62..0000000000 Binary files a/front/public/images/small/GalaxySpace/mercuryblocks/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/0.png b/front/public/images/small/GalaxySpace/metalsblock/0.png deleted file mode 100644 index 2f233fd618..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/1.png b/front/public/images/small/GalaxySpace/metalsblock/1.png deleted file mode 100644 index 93688ee646..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/2.png b/front/public/images/small/GalaxySpace/metalsblock/2.png deleted file mode 100644 index 8082d0d956..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/3.png b/front/public/images/small/GalaxySpace/metalsblock/3.png deleted file mode 100644 index ee9626a053..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/4.png b/front/public/images/small/GalaxySpace/metalsblock/4.png deleted file mode 100644 index 4c128fcaf0..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/5.png b/front/public/images/small/GalaxySpace/metalsblock/5.png deleted file mode 100644 index 3cde6df582..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/6.png b/front/public/images/small/GalaxySpace/metalsblock/6.png deleted file mode 100644 index 70d652b6ce..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/7.png b/front/public/images/small/GalaxySpace/metalsblock/7.png deleted file mode 100644 index 6b453f7aa0..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/7.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/8.png b/front/public/images/small/GalaxySpace/metalsblock/8.png deleted file mode 100644 index 58d4712436..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/8.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/metalsblock/9.png b/front/public/images/small/GalaxySpace/metalsblock/9.png deleted file mode 100644 index 8438987e7f..0000000000 Binary files a/front/public/images/small/GalaxySpace/metalsblock/9.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mirandablocks/0.png b/front/public/images/small/GalaxySpace/mirandablocks/0.png deleted file mode 100644 index 78401510bc..0000000000 Binary files a/front/public/images/small/GalaxySpace/mirandablocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mirandablocks/1.png b/front/public/images/small/GalaxySpace/mirandablocks/1.png deleted file mode 100644 index 327a024d93..0000000000 Binary files a/front/public/images/small/GalaxySpace/mirandablocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mirandablocks/2.png b/front/public/images/small/GalaxySpace/mirandablocks/2.png deleted file mode 100644 index 2a6afa2a0c..0000000000 Binary files a/front/public/images/small/GalaxySpace/mirandablocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/mirandablocks/3.png b/front/public/images/small/GalaxySpace/mirandablocks/3.png deleted file mode 100644 index 879814e445..0000000000 Binary files a/front/public/images/small/GalaxySpace/mirandablocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/oberonblocks/0.png b/front/public/images/small/GalaxySpace/oberonblocks/0.png deleted file mode 100644 index 0fe6a3bfaf..0000000000 Binary files a/front/public/images/small/GalaxySpace/oberonblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/oberonblocks/1.png b/front/public/images/small/GalaxySpace/oberonblocks/1.png deleted file mode 100644 index d100155600..0000000000 Binary files a/front/public/images/small/GalaxySpace/oberonblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/oberonblocks/2.png b/front/public/images/small/GalaxySpace/oberonblocks/2.png deleted file mode 100644 index 97fc891524..0000000000 Binary files a/front/public/images/small/GalaxySpace/oberonblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/oberonblocks/3.png b/front/public/images/small/GalaxySpace/oberonblocks/3.png deleted file mode 100644 index 74c36b5bd1..0000000000 Binary files a/front/public/images/small/GalaxySpace/oberonblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/oxstoragemoduleT2/0.png b/front/public/images/small/GalaxySpace/oxstoragemoduleT2/0.png deleted file mode 100644 index 00ce39b2e2..0000000000 Binary files a/front/public/images/small/GalaxySpace/oxstoragemoduleT2/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/phobosblocks/0.png b/front/public/images/small/GalaxySpace/phobosblocks/0.png deleted file mode 100644 index 5bf7c3ac74..0000000000 Binary files a/front/public/images/small/GalaxySpace/phobosblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/phobosblocks/1.png b/front/public/images/small/GalaxySpace/phobosblocks/1.png deleted file mode 100644 index 89e0534cff..0000000000 Binary files a/front/public/images/small/GalaxySpace/phobosblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/phobosblocks/2.png b/front/public/images/small/GalaxySpace/phobosblocks/2.png deleted file mode 100644 index 1a660ae8e7..0000000000 Binary files a/front/public/images/small/GalaxySpace/phobosblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/phobosblocks/3.png b/front/public/images/small/GalaxySpace/phobosblocks/3.png deleted file mode 100644 index a3ec5eceb0..0000000000 Binary files a/front/public/images/small/GalaxySpace/phobosblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/phobosblocks/4.png b/front/public/images/small/GalaxySpace/phobosblocks/4.png deleted file mode 100644 index 4e167d4d54..0000000000 Binary files a/front/public/images/small/GalaxySpace/phobosblocks/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoTChestT8/0.png b/front/public/images/small/GalaxySpace/plutoTChestT8/0.png deleted file mode 100644 index df0e1f0fb3..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoTChestT8/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoblocks/0.png b/front/public/images/small/GalaxySpace/plutoblocks/0.png deleted file mode 100644 index a99f661af3..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoblocks/1.png b/front/public/images/small/GalaxySpace/plutoblocks/1.png deleted file mode 100644 index 53ac030661..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoblocks/2.png b/front/public/images/small/GalaxySpace/plutoblocks/2.png deleted file mode 100644 index 88f738932e..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoblocks/3.png b/front/public/images/small/GalaxySpace/plutoblocks/3.png deleted file mode 100644 index 90b468b060..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoblocks/4.png b/front/public/images/small/GalaxySpace/plutoblocks/4.png deleted file mode 100644 index c28e0b3b3c..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoblocks/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoblocks/5.png b/front/public/images/small/GalaxySpace/plutoblocks/5.png deleted file mode 100644 index 94f7b2a8d0..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoblocks/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoblocks/6.png b/front/public/images/small/GalaxySpace/plutoblocks/6.png deleted file mode 100644 index 20f2d03d3c..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoblocks/6.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/plutoglowstone/0.png b/front/public/images/small/GalaxySpace/plutoglowstone/0.png deleted file mode 100644 index 5597619c00..0000000000 Binary files a/front/public/images/small/GalaxySpace/plutoglowstone/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusTChestT7/0.png b/front/public/images/small/GalaxySpace/proteusTChestT7/0.png deleted file mode 100644 index b725786ef4..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusTChestT7/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusblocks/0.png b/front/public/images/small/GalaxySpace/proteusblocks/0.png deleted file mode 100644 index 18fdd807d8..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusblocks/1.png b/front/public/images/small/GalaxySpace/proteusblocks/1.png deleted file mode 100644 index e8c998fc01..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusblocks/2.png b/front/public/images/small/GalaxySpace/proteusblocks/2.png deleted file mode 100644 index 44f16b32a1..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusblocks/3.png b/front/public/images/small/GalaxySpace/proteusblocks/3.png deleted file mode 100644 index 18dc88de6f..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusblocks/4.png b/front/public/images/small/GalaxySpace/proteusblocks/4.png deleted file mode 100644 index 9e51c4c909..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusblocks/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusblocks/5.png b/front/public/images/small/GalaxySpace/proteusblocks/5.png deleted file mode 100644 index edfae0602d..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusblocks/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/proteusglowstone/0.png b/front/public/images/small/GalaxySpace/proteusglowstone/0.png deleted file mode 100644 index 288d1be9d9..0000000000 Binary files a/front/public/images/small/GalaxySpace/proteusglowstone/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/solarPanel/0.png b/front/public/images/small/GalaxySpace/solarPanel/0.png deleted file mode 100644 index f04631ee38..0000000000 Binary files a/front/public/images/small/GalaxySpace/solarPanel/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/solarwindpanel/0.png b/front/public/images/small/GalaxySpace/solarwindpanel/0.png deleted file mode 100644 index 9e99794b68..0000000000 Binary files a/front/public/images/small/GalaxySpace/solarwindpanel/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/storagemoduleT3/0.png b/front/public/images/small/GalaxySpace/storagemoduleT3/0.png deleted file mode 100644 index ca7daf4d22..0000000000 Binary files a/front/public/images/small/GalaxySpace/storagemoduleT3/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tcetieblocks/0.png b/front/public/images/small/GalaxySpace/tcetieblocks/0.png deleted file mode 100644 index 25f8e3e219..0000000000 Binary files a/front/public/images/small/GalaxySpace/tcetieblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tcetieblocks/1.png b/front/public/images/small/GalaxySpace/tcetieblocks/1.png deleted file mode 100644 index 98b803d24c..0000000000 Binary files a/front/public/images/small/GalaxySpace/tcetieblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tcetieblocks/2.png b/front/public/images/small/GalaxySpace/tcetieblocks/2.png deleted file mode 100644 index 84912e13a5..0000000000 Binary files a/front/public/images/small/GalaxySpace/tcetieblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tcetiedandelions/0.png b/front/public/images/small/GalaxySpace/tcetiedandelions/0.png deleted file mode 100644 index 1d48a3c8d1..0000000000 Binary files a/front/public/images/small/GalaxySpace/tcetiedandelions/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tcetiedandelions/3.png b/front/public/images/small/GalaxySpace/tcetiedandelions/3.png deleted file mode 100644 index a281fff2dd..0000000000 Binary files a/front/public/images/small/GalaxySpace/tcetiedandelions/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tcetiedandelions/4.png b/front/public/images/small/GalaxySpace/tcetiedandelions/4.png deleted file mode 100644 index 3369fc93e5..0000000000 Binary files a/front/public/images/small/GalaxySpace/tcetiedandelions/4.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tcetiedandelions/5.png b/front/public/images/small/GalaxySpace/tcetiedandelions/5.png deleted file mode 100644 index f804672995..0000000000 Binary files a/front/public/images/small/GalaxySpace/tcetiedandelions/5.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/titanblocks/0.png b/front/public/images/small/GalaxySpace/titanblocks/0.png deleted file mode 100644 index 4bb83060cf..0000000000 Binary files a/front/public/images/small/GalaxySpace/titanblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/titanblocks/1.png b/front/public/images/small/GalaxySpace/titanblocks/1.png deleted file mode 100644 index 02067fce94..0000000000 Binary files a/front/public/images/small/GalaxySpace/titanblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/titanblocks/2.png b/front/public/images/small/GalaxySpace/titanblocks/2.png deleted file mode 100644 index 7d5eef4e7c..0000000000 Binary files a/front/public/images/small/GalaxySpace/titanblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tritonblocks/0.png b/front/public/images/small/GalaxySpace/tritonblocks/0.png deleted file mode 100644 index d809869dbf..0000000000 Binary files a/front/public/images/small/GalaxySpace/tritonblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tritonblocks/1.png b/front/public/images/small/GalaxySpace/tritonblocks/1.png deleted file mode 100644 index 1ec25319f8..0000000000 Binary files a/front/public/images/small/GalaxySpace/tritonblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tritonblocks/2.png b/front/public/images/small/GalaxySpace/tritonblocks/2.png deleted file mode 100644 index 12a2b60613..0000000000 Binary files a/front/public/images/small/GalaxySpace/tritonblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/tritonblocks/3.png b/front/public/images/small/GalaxySpace/tritonblocks/3.png deleted file mode 100644 index a44a6bbc1e..0000000000 Binary files a/front/public/images/small/GalaxySpace/tritonblocks/3.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/unknowwater/0.png b/front/public/images/small/GalaxySpace/unknowwater/0.png deleted file mode 100644 index 4d0f1964c3..0000000000 Binary files a/front/public/images/small/GalaxySpace/unknowwater/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/vegabgrunt/0.png b/front/public/images/small/GalaxySpace/vegabgrunt/0.png deleted file mode 100644 index b63c5e2faa..0000000000 Binary files a/front/public/images/small/GalaxySpace/vegabgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/vegabsubgrunt/0.png b/front/public/images/small/GalaxySpace/vegabsubgrunt/0.png deleted file mode 100644 index 52df02c8d5..0000000000 Binary files a/front/public/images/small/GalaxySpace/vegabsubgrunt/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/venusblocks/0.png b/front/public/images/small/GalaxySpace/venusblocks/0.png deleted file mode 100644 index 5d555c435a..0000000000 Binary files a/front/public/images/small/GalaxySpace/venusblocks/0.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/venusblocks/1.png b/front/public/images/small/GalaxySpace/venusblocks/1.png deleted file mode 100644 index 21af8ddf64..0000000000 Binary files a/front/public/images/small/GalaxySpace/venusblocks/1.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/venusblocks/2.png b/front/public/images/small/GalaxySpace/venusblocks/2.png deleted file mode 100644 index bdc602e7d0..0000000000 Binary files a/front/public/images/small/GalaxySpace/venusblocks/2.png and /dev/null differ diff --git a/front/public/images/small/GalaxySpace/venusblocks/3.png b/front/public/images/small/GalaxySpace/venusblocks/3.png deleted file mode 100644 index 4c574d26cc..0000000000 Binary files a/front/public/images/small/GalaxySpace/venusblocks/3.png and /dev/null differ diff --git a/front/public/images/small/Genetics/advMachine/0.png b/front/public/images/small/Genetics/advMachine/0.png deleted file mode 100644 index 521a9db07c..0000000000 Binary files a/front/public/images/small/Genetics/advMachine/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/analyst/0.png b/front/public/images/small/Genetics/analyst/0.png deleted file mode 100644 index 6014519275..0000000000 Binary files a/front/public/images/small/Genetics/analyst/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/database/0.png b/front/public/images/small/Genetics/database/0.png deleted file mode 100644 index 0d867dc522..0000000000 Binary files a/front/public/images/small/Genetics/database/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/database/1.png b/front/public/images/small/Genetics/database/1.png deleted file mode 100644 index 97b08e0dbc..0000000000 Binary files a/front/public/images/small/Genetics/database/1.png and /dev/null differ diff --git a/front/public/images/small/Genetics/labMachine/0.png b/front/public/images/small/Genetics/labMachine/0.png deleted file mode 100644 index dbcb74cfe9..0000000000 Binary files a/front/public/images/small/Genetics/labMachine/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/labMachine/1.png b/front/public/images/small/Genetics/labMachine/1.png deleted file mode 100644 index 78d7a68ecc..0000000000 Binary files a/front/public/images/small/Genetics/labMachine/1.png and /dev/null differ diff --git a/front/public/images/small/Genetics/labMachine/2.png b/front/public/images/small/Genetics/labMachine/2.png deleted file mode 100644 index 16ecb64dff..0000000000 Binary files a/front/public/images/small/Genetics/labMachine/2.png and /dev/null differ diff --git a/front/public/images/small/Genetics/labMachine/3.png b/front/public/images/small/Genetics/labMachine/3.png deleted file mode 100644 index d79e8d3d58..0000000000 Binary files a/front/public/images/small/Genetics/labMachine/3.png and /dev/null differ diff --git a/front/public/images/small/Genetics/labMachine/4.png b/front/public/images/small/Genetics/labMachine/4.png deleted file mode 100644 index b5f14e5f1e..0000000000 Binary files a/front/public/images/small/Genetics/labMachine/4.png and /dev/null differ diff --git a/front/public/images/small/Genetics/machine/0.png b/front/public/images/small/Genetics/machine/0.png deleted file mode 100644 index 34f5f05104..0000000000 Binary files a/front/public/images/small/Genetics/machine/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/machine/1.png b/front/public/images/small/Genetics/machine/1.png deleted file mode 100644 index 82e29800f8..0000000000 Binary files a/front/public/images/small/Genetics/machine/1.png and /dev/null differ diff --git a/front/public/images/small/Genetics/machine/2.png b/front/public/images/small/Genetics/machine/2.png deleted file mode 100644 index 3846414250..0000000000 Binary files a/front/public/images/small/Genetics/machine/2.png and /dev/null differ diff --git a/front/public/images/small/Genetics/machine/3.png b/front/public/images/small/Genetics/machine/3.png deleted file mode 100644 index 165390df31..0000000000 Binary files a/front/public/images/small/Genetics/machine/3.png and /dev/null differ diff --git a/front/public/images/small/Genetics/masterRegistry/0.png b/front/public/images/small/Genetics/masterRegistry/0.png deleted file mode 100644 index 7fe09a1c9f..0000000000 Binary files a/front/public/images/small/Genetics/masterRegistry/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/0.png b/front/public/images/small/Genetics/misc/0.png deleted file mode 100644 index ec1c24a513..0000000000 Binary files a/front/public/images/small/Genetics/misc/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/1.png b/front/public/images/small/Genetics/misc/1.png deleted file mode 100644 index bd05669bc2..0000000000 Binary files a/front/public/images/small/Genetics/misc/1.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/10.png b/front/public/images/small/Genetics/misc/10.png deleted file mode 100644 index d6671d5f1a..0000000000 Binary files a/front/public/images/small/Genetics/misc/10.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/11.png b/front/public/images/small/Genetics/misc/11.png deleted file mode 100644 index 6fd51cb05c..0000000000 Binary files a/front/public/images/small/Genetics/misc/11.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/2.png b/front/public/images/small/Genetics/misc/2.png deleted file mode 100644 index 1ff5148e8a..0000000000 Binary files a/front/public/images/small/Genetics/misc/2.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/3.png b/front/public/images/small/Genetics/misc/3.png deleted file mode 100644 index 3839b3df4e..0000000000 Binary files a/front/public/images/small/Genetics/misc/3.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/4.png b/front/public/images/small/Genetics/misc/4.png deleted file mode 100644 index 4891580c25..0000000000 Binary files a/front/public/images/small/Genetics/misc/4.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/5.png b/front/public/images/small/Genetics/misc/5.png deleted file mode 100644 index 6c37c4b944..0000000000 Binary files a/front/public/images/small/Genetics/misc/5.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/6.png b/front/public/images/small/Genetics/misc/6.png deleted file mode 100644 index 8bcaaf60ae..0000000000 Binary files a/front/public/images/small/Genetics/misc/6.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/7.png b/front/public/images/small/Genetics/misc/7.png deleted file mode 100644 index 7e96a5381c..0000000000 Binary files a/front/public/images/small/Genetics/misc/7.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/8.png b/front/public/images/small/Genetics/misc/8.png deleted file mode 100644 index 405556a1ab..0000000000 Binary files a/front/public/images/small/Genetics/misc/8.png and /dev/null differ diff --git a/front/public/images/small/Genetics/misc/9.png b/front/public/images/small/Genetics/misc/9.png deleted file mode 100644 index bdbc564813..0000000000 Binary files a/front/public/images/small/Genetics/misc/9.png and /dev/null differ diff --git a/front/public/images/small/Genetics/registry/0.png b/front/public/images/small/Genetics/registry/0.png deleted file mode 100644 index 2e4461684c..0000000000 Binary files a/front/public/images/small/Genetics/registry/0.png and /dev/null differ diff --git a/front/public/images/small/Genetics/sequence/5.png b/front/public/images/small/Genetics/sequence/5.png deleted file mode 100644 index 6e2ce4d3a6..0000000000 Binary files a/front/public/images/small/Genetics/sequence/5.png and /dev/null differ diff --git a/front/public/images/small/Genetics/serumArray/0.png b/front/public/images/small/Genetics/serumArray/0.png deleted file mode 100644 index 759866283b..0000000000 Binary files a/front/public/images/small/Genetics/serumArray/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/FRF_Casings/0.png b/front/public/images/small/GoodGenerator/FRF_Casings/0.png deleted file mode 100644 index 8565deeca2..0000000000 Binary files a/front/public/images/small/GoodGenerator/FRF_Casings/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/FRF_Coil_1/0.png b/front/public/images/small/GoodGenerator/FRF_Coil_1/0.png deleted file mode 100644 index 1e95b2a4c6..0000000000 Binary files a/front/public/images/small/GoodGenerator/FRF_Coil_1/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/FRF_Coil_2/0.png b/front/public/images/small/GoodGenerator/FRF_Coil_2/0.png deleted file mode 100644 index ac22a26c86..0000000000 Binary files a/front/public/images/small/GoodGenerator/FRF_Coil_2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/FRF_Coil_3/0.png b/front/public/images/small/GoodGenerator/FRF_Coil_3/0.png deleted file mode 100644 index 5fcfa64b79..0000000000 Binary files a/front/public/images/small/GoodGenerator/FRF_Coil_3/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/FRF_Coil_4/0.png b/front/public/images/small/GoodGenerator/FRF_Coil_4/0.png deleted file mode 100644 index 52c4c56789..0000000000 Binary files a/front/public/images/small/GoodGenerator/FRF_Coil_4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/MAR_Casing/0.png b/front/public/images/small/GoodGenerator/MAR_Casing/0.png deleted file mode 100644 index 4b5a971857..0000000000 Binary files a/front/public/images/small/GoodGenerator/MAR_Casing/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/_null_/0.png b/front/public/images/small/GoodGenerator/_null_/0.png deleted file mode 100644 index a28ee08b51..0000000000 Binary files a/front/public/images/small/GoodGenerator/_null_/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/advancedFuelRod/0.png b/front/public/images/small/GoodGenerator/advancedFuelRod/0.png deleted file mode 100644 index 96391240e5..0000000000 Binary files a/front/public/images/small/GoodGenerator/advancedFuelRod/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/advancedRadiationProtectionPlate/0.png b/front/public/images/small/GoodGenerator/advancedRadiationProtectionPlate/0.png deleted file mode 100644 index 01e926d9d4..0000000000 Binary files a/front/public/images/small/GoodGenerator/advancedRadiationProtectionPlate/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/aluminumNitride/0.png b/front/public/images/small/GoodGenerator/aluminumNitride/0.png deleted file mode 100644 index a4e064efb6..0000000000 Binary files a/front/public/images/small/GoodGenerator/aluminumNitride/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/0.png b/front/public/images/small/GoodGenerator/circuitWrap/0.png deleted file mode 100644 index f1e550eddf..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/1.png b/front/public/images/small/GoodGenerator/circuitWrap/1.png deleted file mode 100644 index bb156151e8..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/10.png b/front/public/images/small/GoodGenerator/circuitWrap/10.png deleted file mode 100644 index b9cb2fc745..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/10.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/11.png b/front/public/images/small/GoodGenerator/circuitWrap/11.png deleted file mode 100644 index c8ea24a3c7..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/11.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/12.png b/front/public/images/small/GoodGenerator/circuitWrap/12.png deleted file mode 100644 index d7b1be74ff..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/12.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/13.png b/front/public/images/small/GoodGenerator/circuitWrap/13.png deleted file mode 100644 index bf4bbf61d6..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/13.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/14.png b/front/public/images/small/GoodGenerator/circuitWrap/14.png deleted file mode 100644 index 4dd00cb14d..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/14.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/2.png b/front/public/images/small/GoodGenerator/circuitWrap/2.png deleted file mode 100644 index 629cf0acf7..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/3.png b/front/public/images/small/GoodGenerator/circuitWrap/3.png deleted file mode 100644 index 96db24672b..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/4.png b/front/public/images/small/GoodGenerator/circuitWrap/4.png deleted file mode 100644 index 1183dac2fd..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/4.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/5.png b/front/public/images/small/GoodGenerator/circuitWrap/5.png deleted file mode 100644 index 9cedde0ab9..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/5.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/6.png b/front/public/images/small/GoodGenerator/circuitWrap/6.png deleted file mode 100644 index e4a641f0eb..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/6.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/7.png b/front/public/images/small/GoodGenerator/circuitWrap/7.png deleted file mode 100644 index 3db9d57a55..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/7.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/8.png b/front/public/images/small/GoodGenerator/circuitWrap/8.png deleted file mode 100644 index 212c4deb1e..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/8.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/circuitWrap/9.png b/front/public/images/small/GoodGenerator/circuitWrap/9.png deleted file mode 100644 index 2111b645d8..0000000000 Binary files a/front/public/images/small/GoodGenerator/circuitWrap/9.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/coalTar/0.png b/front/public/images/small/GoodGenerator/coalTar/0.png deleted file mode 100644 index e9ccb5718b..0000000000 Binary files a/front/public/images/small/GoodGenerator/coalTar/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/combustionPromotor/0.png b/front/public/images/small/GoodGenerator/combustionPromotor/0.png deleted file mode 100644 index 880699b2f6..0000000000 Binary files a/front/public/images/small/GoodGenerator/combustionPromotor/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/compactFusionCoil/0.png b/front/public/images/small/GoodGenerator/compactFusionCoil/0.png deleted file mode 100644 index 38451af939..0000000000 Binary files a/front/public/images/small/GoodGenerator/compactFusionCoil/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/compactFusionCoil/1.png b/front/public/images/small/GoodGenerator/compactFusionCoil/1.png deleted file mode 100644 index d02ddb5657..0000000000 Binary files a/front/public/images/small/GoodGenerator/compactFusionCoil/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/compactFusionCoil/2.png b/front/public/images/small/GoodGenerator/compactFusionCoil/2.png deleted file mode 100644 index 2f7388178d..0000000000 Binary files a/front/public/images/small/GoodGenerator/compactFusionCoil/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/compactFusionCoil/3.png b/front/public/images/small/GoodGenerator/compactFusionCoil/3.png deleted file mode 100644 index eac2306d48..0000000000 Binary files a/front/public/images/small/GoodGenerator/compactFusionCoil/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/compactFusionCoil/4.png b/front/public/images/small/GoodGenerator/compactFusionCoil/4.png deleted file mode 100644 index ee4cbb271d..0000000000 Binary files a/front/public/images/small/GoodGenerator/compactFusionCoil/4.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/0.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/0.png deleted file mode 100644 index e3e3d164c1..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/1.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/1.png deleted file mode 100644 index 91116794b6..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/10.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/10.png deleted file mode 100644 index af443a0214..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/10.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/11.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/11.png deleted file mode 100644 index 53a5522a95..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/11.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/12.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/12.png deleted file mode 100644 index fcd718d136..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/12.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/13.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/13.png deleted file mode 100644 index 0f1962789b..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/13.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/2.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/2.png deleted file mode 100644 index 7cdfb14c0f..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/3.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/3.png deleted file mode 100644 index 757713a2dc..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/4.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/4.png deleted file mode 100644 index 8fd270e592..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/4.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/5.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/5.png deleted file mode 100644 index 53a46cfbaa..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/5.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/6.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/6.png deleted file mode 100644 index 0044a049af..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/6.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/7.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/7.png deleted file mode 100644 index 936d145185..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/7.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/8.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/8.png deleted file mode 100644 index 070b335412..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/8.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/9.png b/front/public/images/small/GoodGenerator/componentAssemblylineCasing/9.png deleted file mode 100644 index 47bf9908dc..0000000000 Binary files a/front/public/images/small/GoodGenerator/componentAssemblylineCasing/9.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/enrichedNaquadahMass/0.png b/front/public/images/small/GoodGenerator/enrichedNaquadahMass/0.png deleted file mode 100644 index 2f7228cf8b..0000000000 Binary files a/front/public/images/small/GoodGenerator/enrichedNaquadahMass/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaCell/0.png b/front/public/images/small/GoodGenerator/essentiaCell/0.png deleted file mode 100644 index fe67e7a378..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaCell/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaCell/1.png b/front/public/images/small/GoodGenerator/essentiaCell/1.png deleted file mode 100644 index c2cd34f70f..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaCell/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaCell/2.png b/front/public/images/small/GoodGenerator/essentiaCell/2.png deleted file mode 100644 index 63341537e9..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaCell/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaCell/3.png b/front/public/images/small/GoodGenerator/essentiaCell/3.png deleted file mode 100644 index 2e39d25b29..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaCell/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaFilterCasing/0.png b/front/public/images/small/GoodGenerator/essentiaFilterCasing/0.png deleted file mode 100644 index 9eb5455184..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaFilterCasing/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaHatch/0.png b/front/public/images/small/GoodGenerator/essentiaHatch/0.png deleted file mode 100644 index e21a2befec..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaHatch/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaOutputHatch/0.png b/front/public/images/small/GoodGenerator/essentiaOutputHatch/0.png deleted file mode 100644 index 70e4b4e74b..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaOutputHatch/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/essentiaOutputHatch_ME/0.png b/front/public/images/small/GoodGenerator/essentiaOutputHatch_ME/0.png deleted file mode 100644 index 35aa949416..0000000000 Binary files a/front/public/images/small/GoodGenerator/essentiaOutputHatch_ME/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fieldRestrictingGlass/0.png b/front/public/images/small/GoodGenerator/fieldRestrictingGlass/0.png deleted file mode 100644 index cfed798fa7..0000000000 Binary files a/front/public/images/small/GoodGenerator/fieldRestrictingGlass/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/0.png b/front/public/images/small/GoodGenerator/fluidCore/0.png deleted file mode 100644 index dee20a88d9..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/1.png b/front/public/images/small/GoodGenerator/fluidCore/1.png deleted file mode 100644 index ed67efe470..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/2.png b/front/public/images/small/GoodGenerator/fluidCore/2.png deleted file mode 100644 index fb99c07e50..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/3.png b/front/public/images/small/GoodGenerator/fluidCore/3.png deleted file mode 100644 index 1c9327abd5..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/4.png b/front/public/images/small/GoodGenerator/fluidCore/4.png deleted file mode 100644 index 82c3ae8dd7..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/4.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/5.png b/front/public/images/small/GoodGenerator/fluidCore/5.png deleted file mode 100644 index 057440139c..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/5.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/6.png b/front/public/images/small/GoodGenerator/fluidCore/6.png deleted file mode 100644 index e0162e0f2e..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/6.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/7.png b/front/public/images/small/GoodGenerator/fluidCore/7.png deleted file mode 100644 index e121c43eac..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/7.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/8.png b/front/public/images/small/GoodGenerator/fluidCore/8.png deleted file mode 100644 index 0f3232b17e..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/8.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/fluidCore/9.png b/front/public/images/small/GoodGenerator/fluidCore/9.png deleted file mode 100644 index f725f4ee7a..0000000000 Binary files a/front/public/images/small/GoodGenerator/fluidCore/9.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/heavilyCrackedHeavyNaquadahFuel/0.png b/front/public/images/small/GoodGenerator/heavilyCrackedHeavyNaquadahFuel/0.png deleted file mode 100644 index 0e36ebbde9..0000000000 Binary files a/front/public/images/small/GoodGenerator/heavilyCrackedHeavyNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/heavilyCrackedLightNaquadahFuel/0.png b/front/public/images/small/GoodGenerator/heavilyCrackedLightNaquadahFuel/0.png deleted file mode 100644 index 385bd66160..0000000000 Binary files a/front/public/images/small/GoodGenerator/heavilyCrackedLightNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/heavilyCrackedNaquadahAsphalt/0.png b/front/public/images/small/GoodGenerator/heavilyCrackedNaquadahAsphalt/0.png deleted file mode 100644 index 4b87b4f673..0000000000 Binary files a/front/public/images/small/GoodGenerator/heavilyCrackedNaquadahAsphalt/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/heavilyCrackedNaquadahGas/0.png b/front/public/images/small/GoodGenerator/heavilyCrackedNaquadahGas/0.png deleted file mode 100644 index 684c60a309..0000000000 Binary files a/front/public/images/small/GoodGenerator/heavilyCrackedNaquadahGas/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/highDensityPlutonium/0.png b/front/public/images/small/GoodGenerator/highDensityPlutonium/0.png deleted file mode 100644 index 11e8d2608c..0000000000 Binary files a/front/public/images/small/GoodGenerator/highDensityPlutonium/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/highDensityPlutoniumNugget/0.png b/front/public/images/small/GoodGenerator/highDensityPlutoniumNugget/0.png deleted file mode 100644 index af6e765440..0000000000 Binary files a/front/public/images/small/GoodGenerator/highDensityPlutoniumNugget/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/highDensityThorium/0.png b/front/public/images/small/GoodGenerator/highDensityThorium/0.png deleted file mode 100644 index 05fa7c40f9..0000000000 Binary files a/front/public/images/small/GoodGenerator/highDensityThorium/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/highDensityThoriumNugget/0.png b/front/public/images/small/GoodGenerator/highDensityThoriumNugget/0.png deleted file mode 100644 index b0a84d9675..0000000000 Binary files a/front/public/images/small/GoodGenerator/highDensityThoriumNugget/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/highDensityUranium/0.png b/front/public/images/small/GoodGenerator/highDensityUranium/0.png deleted file mode 100644 index d5f062b9ac..0000000000 Binary files a/front/public/images/small/GoodGenerator/highDensityUranium/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/highDensityUraniumNugget/0.png b/front/public/images/small/GoodGenerator/highDensityUraniumNugget/0.png deleted file mode 100644 index 1b873a2637..0000000000 Binary files a/front/public/images/small/GoodGenerator/highDensityUraniumNugget/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/highEnergyMixture/0.png b/front/public/images/small/GoodGenerator/highEnergyMixture/0.png deleted file mode 100644 index e8f7ac295d..0000000000 Binary files a/front/public/images/small/GoodGenerator/highEnergyMixture/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/huiCircuit/0.png b/front/public/images/small/GoodGenerator/huiCircuit/0.png deleted file mode 100644 index 50710dbada..0000000000 Binary files a/front/public/images/small/GoodGenerator/huiCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/huiCircuit/1.png b/front/public/images/small/GoodGenerator/huiCircuit/1.png deleted file mode 100644 index baa7fe4533..0000000000 Binary files a/front/public/images/small/GoodGenerator/huiCircuit/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/huiCircuit/2.png b/front/public/images/small/GoodGenerator/huiCircuit/2.png deleted file mode 100644 index 8dc2759dc3..0000000000 Binary files a/front/public/images/small/GoodGenerator/huiCircuit/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/huiCircuit/3.png b/front/public/images/small/GoodGenerator/huiCircuit/3.png deleted file mode 100644 index f2d835a0d6..0000000000 Binary files a/front/public/images/small/GoodGenerator/huiCircuit/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/huiCircuit/4.png b/front/public/images/small/GoodGenerator/huiCircuit/4.png deleted file mode 100644 index 959a9fd913..0000000000 Binary files a/front/public/images/small/GoodGenerator/huiCircuit/4.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/inverter/0.png b/front/public/images/small/GoodGenerator/inverter/0.png deleted file mode 100644 index 3706e34411..0000000000 Binary files a/front/public/images/small/GoodGenerator/inverter/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/lightlyCrackedHeavyNaquadahFuel/0.png b/front/public/images/small/GoodGenerator/lightlyCrackedHeavyNaquadahFuel/0.png deleted file mode 100644 index 0e36ebbde9..0000000000 Binary files a/front/public/images/small/GoodGenerator/lightlyCrackedHeavyNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/lightlyCrackedLightNaquadahFuel/0.png b/front/public/images/small/GoodGenerator/lightlyCrackedLightNaquadahFuel/0.png deleted file mode 100644 index 385bd66160..0000000000 Binary files a/front/public/images/small/GoodGenerator/lightlyCrackedLightNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/lightlyCrackedNaquadahAsphalt/0.png b/front/public/images/small/GoodGenerator/lightlyCrackedNaquadahAsphalt/0.png deleted file mode 100644 index 4b87b4f673..0000000000 Binary files a/front/public/images/small/GoodGenerator/lightlyCrackedNaquadahAsphalt/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/lightlyCrackedNaquadahGas/0.png b/front/public/images/small/GoodGenerator/lightlyCrackedNaquadahGas/0.png deleted file mode 100644 index 684c60a309..0000000000 Binary files a/front/public/images/small/GoodGenerator/lightlyCrackedNaquadahGas/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/magicCasing/0.png b/front/public/images/small/GoodGenerator/magicCasing/0.png deleted file mode 100644 index 1852e8610e..0000000000 Binary files a/front/public/images/small/GoodGenerator/magicCasing/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/microHeater/0.png b/front/public/images/small/GoodGenerator/microHeater/0.png deleted file mode 100644 index c640ce8c0e..0000000000 Binary files a/front/public/images/small/GoodGenerator/microHeater/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/moderatelyCrackedHeavyNaquadahFuel/0.png b/front/public/images/small/GoodGenerator/moderatelyCrackedHeavyNaquadahFuel/0.png deleted file mode 100644 index 0e36ebbde9..0000000000 Binary files a/front/public/images/small/GoodGenerator/moderatelyCrackedHeavyNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/moderatelyCrackedLightNaquadahFuel/0.png b/front/public/images/small/GoodGenerator/moderatelyCrackedLightNaquadahFuel/0.png deleted file mode 100644 index 385bd66160..0000000000 Binary files a/front/public/images/small/GoodGenerator/moderatelyCrackedLightNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/moderatelyCrackedNaquadahAsphalt/0.png b/front/public/images/small/GoodGenerator/moderatelyCrackedNaquadahAsphalt/0.png deleted file mode 100644 index 4b87b4f673..0000000000 Binary files a/front/public/images/small/GoodGenerator/moderatelyCrackedNaquadahAsphalt/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/moderatelyCrackedNaquadahGas/0.png b/front/public/images/small/GoodGenerator/moderatelyCrackedNaquadahGas/0.png deleted file mode 100644 index 684c60a309..0000000000 Binary files a/front/public/images/small/GoodGenerator/moderatelyCrackedNaquadahGas/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/naquadahMass/0.png b/front/public/images/small/GoodGenerator/naquadahMass/0.png deleted file mode 100644 index be185d2433..0000000000 Binary files a/front/public/images/small/GoodGenerator/naquadahMass/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/naquadriaMass/0.png b/front/public/images/small/GoodGenerator/naquadriaMass/0.png deleted file mode 100644 index ba3c904ace..0000000000 Binary files a/front/public/images/small/GoodGenerator/naquadriaMass/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/neutronSource/0.png b/front/public/images/small/GoodGenerator/neutronSource/0.png deleted file mode 100644 index df0da6b094..0000000000 Binary files a/front/public/images/small/GoodGenerator/neutronSource/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/plasticCase/0.png b/front/public/images/small/GoodGenerator/plasticCase/0.png deleted file mode 100644 index 570272fa54..0000000000 Binary files a/front/public/images/small/GoodGenerator/plasticCase/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/preciseUnitCasing/0.png b/front/public/images/small/GoodGenerator/preciseUnitCasing/0.png deleted file mode 100644 index e09605142b..0000000000 Binary files a/front/public/images/small/GoodGenerator/preciseUnitCasing/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/preciseUnitCasing/1.png b/front/public/images/small/GoodGenerator/preciseUnitCasing/1.png deleted file mode 100644 index 6c887d6fd9..0000000000 Binary files a/front/public/images/small/GoodGenerator/preciseUnitCasing/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/preciseUnitCasing/2.png b/front/public/images/small/GoodGenerator/preciseUnitCasing/2.png deleted file mode 100644 index e70e6a0cb6..0000000000 Binary files a/front/public/images/small/GoodGenerator/preciseUnitCasing/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/pressureResistantWalls/0.png b/front/public/images/small/GoodGenerator/pressureResistantWalls/0.png deleted file mode 100644 index af1ad59a85..0000000000 Binary files a/front/public/images/small/GoodGenerator/pressureResistantWalls/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/quartzCrystalResonator/0.png b/front/public/images/small/GoodGenerator/quartzCrystalResonator/0.png deleted file mode 100644 index a1cda5ddae..0000000000 Binary files a/front/public/images/small/GoodGenerator/quartzCrystalResonator/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/quartzWafer/0.png b/front/public/images/small/GoodGenerator/quartzWafer/0.png deleted file mode 100644 index 9354c8babc..0000000000 Binary files a/front/public/images/small/GoodGenerator/quartzWafer/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/radiationProtectionPlate/0.png b/front/public/images/small/GoodGenerator/radiationProtectionPlate/0.png deleted file mode 100644 index ccba6da6db..0000000000 Binary files a/front/public/images/small/GoodGenerator/radiationProtectionPlate/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/radiationProtectionSteelFrame/0.png b/front/public/images/small/GoodGenerator/radiationProtectionSteelFrame/0.png deleted file mode 100644 index 097a5ed24f..0000000000 Binary files a/front/public/images/small/GoodGenerator/radiationProtectionSteelFrame/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/radioactiveWaste/0.png b/front/public/images/small/GoodGenerator/radioactiveWaste/0.png deleted file mode 100644 index 211062dab4..0000000000 Binary files a/front/public/images/small/GoodGenerator/radioactiveWaste/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rawAtomicSeparationCatalyst/0.png b/front/public/images/small/GoodGenerator/rawAtomicSeparationCatalyst/0.png deleted file mode 100644 index da68116b6d..0000000000 Binary files a/front/public/images/small/GoodGenerator/rawAtomicSeparationCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rawCylinder/0.png b/front/public/images/small/GoodGenerator/rawCylinder/0.png deleted file mode 100644 index b19ed57c1d..0000000000 Binary files a/front/public/images/small/GoodGenerator/rawCylinder/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedPlutonium/0.png b/front/public/images/small/GoodGenerator/rodCompressedPlutonium/0.png deleted file mode 100644 index 8a37469162..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedPlutonium/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedPlutonium2/0.png b/front/public/images/small/GoodGenerator/rodCompressedPlutonium2/0.png deleted file mode 100644 index 9eeb9a86cb..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedPlutonium2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedPlutonium4/0.png b/front/public/images/small/GoodGenerator/rodCompressedPlutonium4/0.png deleted file mode 100644 index dd8175f89b..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedPlutonium4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted/0.png b/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted/0.png deleted file mode 100644 index 4df2d5198d..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted2/0.png b/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted2/0.png deleted file mode 100644 index a3a45562c4..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted4/0.png b/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted4/0.png deleted file mode 100644 index 7ad02b26d1..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedPlutoniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedUranium/0.png b/front/public/images/small/GoodGenerator/rodCompressedUranium/0.png deleted file mode 100644 index 4ab2463497..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedUranium/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedUranium2/0.png b/front/public/images/small/GoodGenerator/rodCompressedUranium2/0.png deleted file mode 100644 index 2e10346c39..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedUranium2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedUranium4/0.png b/front/public/images/small/GoodGenerator/rodCompressedUranium4/0.png deleted file mode 100644 index ecd1b276fb..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedUranium4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted/0.png b/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted/0.png deleted file mode 100644 index c3dd4ee765..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted2/0.png b/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted2/0.png deleted file mode 100644 index 81b06fdeab..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted4/0.png b/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted4/0.png deleted file mode 100644 index 416d87a856..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodCompressedUraniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidPlutonium/0.png b/front/public/images/small/GoodGenerator/rodLiquidPlutonium/0.png deleted file mode 100644 index 15b7589936..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidPlutonium/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidPlutonium2/0.png b/front/public/images/small/GoodGenerator/rodLiquidPlutonium2/0.png deleted file mode 100644 index 3553f528b1..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidPlutonium2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidPlutonium4/0.png b/front/public/images/small/GoodGenerator/rodLiquidPlutonium4/0.png deleted file mode 100644 index 3eed4a2cad..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidPlutonium4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted/0.png b/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted/0.png deleted file mode 100644 index f50ed6b64a..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted2/0.png b/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted2/0.png deleted file mode 100644 index 1bcc592138..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted4/0.png b/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted4/0.png deleted file mode 100644 index fc91d3a1b2..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidPlutoniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidUranium/0.png b/front/public/images/small/GoodGenerator/rodLiquidUranium/0.png deleted file mode 100644 index ec8585f6b8..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidUranium/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidUranium2/0.png b/front/public/images/small/GoodGenerator/rodLiquidUranium2/0.png deleted file mode 100644 index 3ae73feda5..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidUranium2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidUranium4/0.png b/front/public/images/small/GoodGenerator/rodLiquidUranium4/0.png deleted file mode 100644 index 381351691a..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidUranium4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted/0.png b/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted/0.png deleted file mode 100644 index 7be0ed08c9..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted2/0.png b/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted2/0.png deleted file mode 100644 index 1b62b3b1d0..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted2/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted4/0.png b/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted4/0.png deleted file mode 100644 index 500013eee3..0000000000 Binary files a/front/public/images/small/GoodGenerator/rodLiquidUraniumDepleted4/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/saltyRoot/0.png b/front/public/images/small/GoodGenerator/saltyRoot/0.png deleted file mode 100644 index eb515bfbb4..0000000000 Binary files a/front/public/images/small/GoodGenerator/saltyRoot/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/specialCeramics/0.png b/front/public/images/small/GoodGenerator/specialCeramics/0.png deleted file mode 100644 index 4e9a35955f..0000000000 Binary files a/front/public/images/small/GoodGenerator/specialCeramics/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/specialCeramicsPlate/0.png b/front/public/images/small/GoodGenerator/specialCeramicsPlate/0.png deleted file mode 100644 index 2044a9a74e..0000000000 Binary files a/front/public/images/small/GoodGenerator/specialCeramicsPlate/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/speedingPipe/0.png b/front/public/images/small/GoodGenerator/speedingPipe/0.png deleted file mode 100644 index f55f2ba0e3..0000000000 Binary files a/front/public/images/small/GoodGenerator/speedingPipe/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/supercriticalFluidTurbineCasing/0.png b/front/public/images/small/GoodGenerator/supercriticalFluidTurbineCasing/0.png deleted file mode 100644 index e4aa431542..0000000000 Binary files a/front/public/images/small/GoodGenerator/supercriticalFluidTurbineCasing/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/supercriticalSteam/0.png b/front/public/images/small/GoodGenerator/supercriticalSteam/0.png deleted file mode 100644 index 8441ddca36..0000000000 Binary files a/front/public/images/small/GoodGenerator/supercriticalSteam/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/titaniumPlatedCylinder/0.png b/front/public/images/small/GoodGenerator/titaniumPlatedCylinder/0.png deleted file mode 100644 index d1966e7b92..0000000000 Binary files a/front/public/images/small/GoodGenerator/titaniumPlatedCylinder/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/0.png b/front/public/images/small/GoodGenerator/upgradeEssentia/0.png deleted file mode 100644 index d0f1c9cc0b..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/1.png b/front/public/images/small/GoodGenerator/upgradeEssentia/1.png deleted file mode 100644 index 176d166a5d..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/2.png b/front/public/images/small/GoodGenerator/upgradeEssentia/2.png deleted file mode 100644 index f5c1ead08e..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/3.png b/front/public/images/small/GoodGenerator/upgradeEssentia/3.png deleted file mode 100644 index a4d4f20c77..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/4.png b/front/public/images/small/GoodGenerator/upgradeEssentia/4.png deleted file mode 100644 index c0310ae07b..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/4.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/5.png b/front/public/images/small/GoodGenerator/upgradeEssentia/5.png deleted file mode 100644 index 7861fd5dec..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/5.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/6.png b/front/public/images/small/GoodGenerator/upgradeEssentia/6.png deleted file mode 100644 index f547181905..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/6.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/7.png b/front/public/images/small/GoodGenerator/upgradeEssentia/7.png deleted file mode 100644 index fed329bfaa..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/7.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/8.png b/front/public/images/small/GoodGenerator/upgradeEssentia/8.png deleted file mode 100644 index 271ad30e83..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/8.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/upgradeEssentia/9.png b/front/public/images/small/GoodGenerator/upgradeEssentia/9.png deleted file mode 100644 index e9cab0501a..0000000000 Binary files a/front/public/images/small/GoodGenerator/upgradeEssentia/9.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/wrappedPlutoniumIngot/0.png b/front/public/images/small/GoodGenerator/wrappedPlutoniumIngot/0.png deleted file mode 100644 index 8a8856ec31..0000000000 Binary files a/front/public/images/small/GoodGenerator/wrappedPlutoniumIngot/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/wrappedThoriumIngot/0.png b/front/public/images/small/GoodGenerator/wrappedThoriumIngot/0.png deleted file mode 100644 index cb437cb95c..0000000000 Binary files a/front/public/images/small/GoodGenerator/wrappedThoriumIngot/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/wrappedUraniumIngot/0.png b/front/public/images/small/GoodGenerator/wrappedUraniumIngot/0.png deleted file mode 100644 index 6ee0296bd4..0000000000 Binary files a/front/public/images/small/GoodGenerator/wrappedUraniumIngot/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCasing/0.png b/front/public/images/small/GoodGenerator/yottaFluidTankCasing/0.png deleted file mode 100644 index 33482443ba..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCasing/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/0.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/0.png deleted file mode 100644 index f613f24547..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/0.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/1.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/1.png deleted file mode 100644 index 15b25d581b..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/1.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/2.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/2.png deleted file mode 100644 index 9a8381cfa4..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/2.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/3.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/3.png deleted file mode 100644 index 731e72cbe7..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/3.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/4.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/4.png deleted file mode 100644 index 9404607383..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/4.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/5.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/5.png deleted file mode 100644 index a495680bcd..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/5.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/6.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/6.png deleted file mode 100644 index ab22b0be5d..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/6.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/7.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/7.png deleted file mode 100644 index 438afc0a5d..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/7.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/8.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/8.png deleted file mode 100644 index 5fc04183e2..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/8.png and /dev/null differ diff --git a/front/public/images/small/GoodGenerator/yottaFluidTankCells/9.png b/front/public/images/small/GoodGenerator/yottaFluidTankCells/9.png deleted file mode 100644 index af07d79231..0000000000 Binary files a/front/public/images/small/GoodGenerator/yottaFluidTankCells/9.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/BlockRelocatorPortal/0.png b/front/public/images/small/GraviSuite/BlockRelocatorPortal/0.png deleted file mode 100644 index 96cf810f40..0000000000 Binary files a/front/public/images/small/GraviSuite/BlockRelocatorPortal/0.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advChainsaw/1.png b/front/public/images/small/GraviSuite/advChainsaw/1.png deleted file mode 100644 index e581b2d108..0000000000 Binary files a/front/public/images/small/GraviSuite/advChainsaw/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advChainsaw/27.png b/front/public/images/small/GraviSuite/advChainsaw/27.png deleted file mode 100644 index e581b2d108..0000000000 Binary files a/front/public/images/small/GraviSuite/advChainsaw/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advDDrill/1.png b/front/public/images/small/GraviSuite/advDDrill/1.png deleted file mode 100644 index e72a08d73e..0000000000 Binary files a/front/public/images/small/GraviSuite/advDDrill/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advDDrill/27.png b/front/public/images/small/GraviSuite/advDDrill/27.png deleted file mode 100644 index e72a08d73e..0000000000 Binary files a/front/public/images/small/GraviSuite/advDDrill/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advJetpack/1.png b/front/public/images/small/GraviSuite/advJetpack/1.png deleted file mode 100644 index e0234bdceb..0000000000 Binary files a/front/public/images/small/GraviSuite/advJetpack/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advJetpack/27.png b/front/public/images/small/GraviSuite/advJetpack/27.png deleted file mode 100644 index e0234bdceb..0000000000 Binary files a/front/public/images/small/GraviSuite/advJetpack/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advLappack/1.png b/front/public/images/small/GraviSuite/advLappack/1.png deleted file mode 100644 index 532bc40efb..0000000000 Binary files a/front/public/images/small/GraviSuite/advLappack/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advLappack/27.png b/front/public/images/small/GraviSuite/advLappack/27.png deleted file mode 100644 index 532bc40efb..0000000000 Binary files a/front/public/images/small/GraviSuite/advLappack/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advNanoChestPlate/1.png b/front/public/images/small/GraviSuite/advNanoChestPlate/1.png deleted file mode 100644 index 586967f816..0000000000 Binary files a/front/public/images/small/GraviSuite/advNanoChestPlate/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/advNanoChestPlate/27.png b/front/public/images/small/GraviSuite/advNanoChestPlate/27.png deleted file mode 100644 index 586967f816..0000000000 Binary files a/front/public/images/small/GraviSuite/advNanoChestPlate/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/graviChestPlate/1.png b/front/public/images/small/GraviSuite/graviChestPlate/1.png deleted file mode 100644 index 92fe1c4563..0000000000 Binary files a/front/public/images/small/GraviSuite/graviChestPlate/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/graviChestPlate/27.png b/front/public/images/small/GraviSuite/graviChestPlate/27.png deleted file mode 100644 index 92fe1c4563..0000000000 Binary files a/front/public/images/small/GraviSuite/graviChestPlate/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/graviTool/1.png b/front/public/images/small/GraviSuite/graviTool/1.png deleted file mode 100644 index d52008d0f7..0000000000 Binary files a/front/public/images/small/GraviSuite/graviTool/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/graviTool/27.png b/front/public/images/small/GraviSuite/graviTool/27.png deleted file mode 100644 index d52008d0f7..0000000000 Binary files a/front/public/images/small/GraviSuite/graviTool/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/0.png b/front/public/images/small/GraviSuite/itemSimpleItem/0.png deleted file mode 100644 index 37056fad37..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/0.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/1.png b/front/public/images/small/GraviSuite/itemSimpleItem/1.png deleted file mode 100644 index 2689df1126..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/2.png b/front/public/images/small/GraviSuite/itemSimpleItem/2.png deleted file mode 100644 index a826cd32f9..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/2.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/3.png b/front/public/images/small/GraviSuite/itemSimpleItem/3.png deleted file mode 100644 index 29fc1a62ef..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/3.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/4.png b/front/public/images/small/GraviSuite/itemSimpleItem/4.png deleted file mode 100644 index 0154a0de0a..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/4.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/5.png b/front/public/images/small/GraviSuite/itemSimpleItem/5.png deleted file mode 100644 index 0864e394d7..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/5.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/6.png b/front/public/images/small/GraviSuite/itemSimpleItem/6.png deleted file mode 100644 index 2f0d945e46..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/6.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/itemSimpleItem/7.png b/front/public/images/small/GraviSuite/itemSimpleItem/7.png deleted file mode 100644 index 4f764363a5..0000000000 Binary files a/front/public/images/small/GraviSuite/itemSimpleItem/7.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/relocator/1.png b/front/public/images/small/GraviSuite/relocator/1.png deleted file mode 100644 index 3b3c395f77..0000000000 Binary files a/front/public/images/small/GraviSuite/relocator/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/relocator/27.png b/front/public/images/small/GraviSuite/relocator/27.png deleted file mode 100644 index 3b3c395f77..0000000000 Binary files a/front/public/images/small/GraviSuite/relocator/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/ultimateLappack/1.png b/front/public/images/small/GraviSuite/ultimateLappack/1.png deleted file mode 100644 index fd142421e5..0000000000 Binary files a/front/public/images/small/GraviSuite/ultimateLappack/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/ultimateLappack/27.png b/front/public/images/small/GraviSuite/ultimateLappack/27.png deleted file mode 100644 index fd142421e5..0000000000 Binary files a/front/public/images/small/GraviSuite/ultimateLappack/27.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/vajra/1.png b/front/public/images/small/GraviSuite/vajra/1.png deleted file mode 100644 index fe4f28a4bc..0000000000 Binary files a/front/public/images/small/GraviSuite/vajra/1.png and /dev/null differ diff --git a/front/public/images/small/GraviSuite/vajra/27.png b/front/public/images/small/GraviSuite/vajra/27.png deleted file mode 100644 index fe4f28a4bc..0000000000 Binary files a/front/public/images/small/GraviSuite/vajra/27.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/accumulation_table/0.png b/front/public/images/small/HardcoreEnderExpansion/accumulation_table/0.png deleted file mode 100644 index 97653cfb5d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/accumulation_table/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/adventurers_diary/0.png b/front/public/images/small/HardcoreEnderExpansion/adventurers_diary/0.png deleted file mode 100644 index dd93e2834f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/adventurers_diary/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/altar_nexus/0.png b/front/public/images/small/HardcoreEnderExpansion/altar_nexus/0.png deleted file mode 100644 index b9afdc10b2..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/altar_nexus/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/arcane_shard/0.png b/front/public/images/small/HardcoreEnderExpansion/arcane_shard/0.png deleted file mode 100644 index 6b9c871d14..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/arcane_shard/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/auricion/0.png b/front/public/images/small/HardcoreEnderExpansion/auricion/0.png deleted file mode 100644 index 65780d175c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/auricion/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/biome_compass/0.png b/front/public/images/small/HardcoreEnderExpansion/biome_compass/0.png deleted file mode 100644 index fe5a0aa2d0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/biome_compass/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/biome_core/0.png b/front/public/images/small/HardcoreEnderExpansion/biome_core/0.png deleted file mode 100644 index e33f2faaf9..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/biome_core/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/blank_gem/0.png b/front/public/images/small/HardcoreEnderExpansion/blank_gem/0.png deleted file mode 100644 index 0125bedaf0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/blank_gem/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/1.png b/front/public/images/small/HardcoreEnderExpansion/block_special_effects/1.png deleted file mode 100644 index b12f8474d6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/2.png b/front/public/images/small/HardcoreEnderExpansion/block_special_effects/2.png deleted file mode 100644 index 0646bd5492..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/3.png b/front/public/images/small/HardcoreEnderExpansion/block_special_effects/3.png deleted file mode 100644 index 4b2e346a38..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/4.png b/front/public/images/small/HardcoreEnderExpansion/block_special_effects/4.png deleted file mode 100644 index b15340cb41..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/5.png b/front/public/images/small/HardcoreEnderExpansion/block_special_effects/5.png deleted file mode 100644 index 67b2aa60d9..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/block_special_effects/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/bucket_ender_goo/0.png b/front/public/images/small/HardcoreEnderExpansion/bucket_ender_goo/0.png deleted file mode 100644 index e81a5a91f6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/bucket_ender_goo/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/0.png b/front/public/images/small/HardcoreEnderExpansion/charm/0.png deleted file mode 100644 index 28455046e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/1.png b/front/public/images/small/HardcoreEnderExpansion/charm/1.png deleted file mode 100644 index 28455046e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/10.png b/front/public/images/small/HardcoreEnderExpansion/charm/10.png deleted file mode 100644 index 508586d529..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/10.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/11.png b/front/public/images/small/HardcoreEnderExpansion/charm/11.png deleted file mode 100644 index 508586d529..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/11.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/12.png b/front/public/images/small/HardcoreEnderExpansion/charm/12.png deleted file mode 100644 index f92a8d9e5f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/12.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/13.png b/front/public/images/small/HardcoreEnderExpansion/charm/13.png deleted file mode 100644 index f92a8d9e5f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/13.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/14.png b/front/public/images/small/HardcoreEnderExpansion/charm/14.png deleted file mode 100644 index f92a8d9e5f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/14.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/17.png b/front/public/images/small/HardcoreEnderExpansion/charm/17.png deleted file mode 100644 index 0733392b52..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/17.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/18.png b/front/public/images/small/HardcoreEnderExpansion/charm/18.png deleted file mode 100644 index 95e7ea8ac5..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/18.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/19.png b/front/public/images/small/HardcoreEnderExpansion/charm/19.png deleted file mode 100644 index a80547bc49..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/19.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/2.png b/front/public/images/small/HardcoreEnderExpansion/charm/2.png deleted file mode 100644 index 28455046e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/20.png b/front/public/images/small/HardcoreEnderExpansion/charm/20.png deleted file mode 100644 index a80547bc49..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/20.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/21.png b/front/public/images/small/HardcoreEnderExpansion/charm/21.png deleted file mode 100644 index a80547bc49..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/21.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/22.png b/front/public/images/small/HardcoreEnderExpansion/charm/22.png deleted file mode 100644 index da0f39cddd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/22.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/23.png b/front/public/images/small/HardcoreEnderExpansion/charm/23.png deleted file mode 100644 index da0f39cddd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/23.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/24.png b/front/public/images/small/HardcoreEnderExpansion/charm/24.png deleted file mode 100644 index da0f39cddd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/24.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/25.png b/front/public/images/small/HardcoreEnderExpansion/charm/25.png deleted file mode 100644 index c44fb0ebd0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/25.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/26.png b/front/public/images/small/HardcoreEnderExpansion/charm/26.png deleted file mode 100644 index c44fb0ebd0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/26.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/27.png b/front/public/images/small/HardcoreEnderExpansion/charm/27.png deleted file mode 100644 index c44fb0ebd0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/27.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/28.png b/front/public/images/small/HardcoreEnderExpansion/charm/28.png deleted file mode 100644 index 665b04c701..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/28.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/3.png b/front/public/images/small/HardcoreEnderExpansion/charm/3.png deleted file mode 100644 index b9981f014e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/30.png b/front/public/images/small/HardcoreEnderExpansion/charm/30.png deleted file mode 100644 index 665b04c701..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/30.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/31.png b/front/public/images/small/HardcoreEnderExpansion/charm/31.png deleted file mode 100644 index 76d9a3a453..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/31.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/32.png b/front/public/images/small/HardcoreEnderExpansion/charm/32.png deleted file mode 100644 index 76d9a3a453..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/32.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/33.png b/front/public/images/small/HardcoreEnderExpansion/charm/33.png deleted file mode 100644 index 76d9a3a453..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/33.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/34.png b/front/public/images/small/HardcoreEnderExpansion/charm/34.png deleted file mode 100644 index 76d9a3a453..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/34.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/35.png b/front/public/images/small/HardcoreEnderExpansion/charm/35.png deleted file mode 100644 index 76d9a3a453..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/35.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/36.png b/front/public/images/small/HardcoreEnderExpansion/charm/36.png deleted file mode 100644 index 76d9a3a453..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/36.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/37.png b/front/public/images/small/HardcoreEnderExpansion/charm/37.png deleted file mode 100644 index 5e0b1529fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/37.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/38.png b/front/public/images/small/HardcoreEnderExpansion/charm/38.png deleted file mode 100644 index 5e0b1529fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/38.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/39.png b/front/public/images/small/HardcoreEnderExpansion/charm/39.png deleted file mode 100644 index 5e0b1529fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/39.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/4.png b/front/public/images/small/HardcoreEnderExpansion/charm/4.png deleted file mode 100644 index b9981f014e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/40.png b/front/public/images/small/HardcoreEnderExpansion/charm/40.png deleted file mode 100644 index 5e0b1529fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/40.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/41.png b/front/public/images/small/HardcoreEnderExpansion/charm/41.png deleted file mode 100644 index 5e0b1529fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/41.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/42.png b/front/public/images/small/HardcoreEnderExpansion/charm/42.png deleted file mode 100644 index 5e0b1529fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/42.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/43.png b/front/public/images/small/HardcoreEnderExpansion/charm/43.png deleted file mode 100644 index 5e0b1529fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/43.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/45.png b/front/public/images/small/HardcoreEnderExpansion/charm/45.png deleted file mode 100644 index a00e177340..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/45.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/46.png b/front/public/images/small/HardcoreEnderExpansion/charm/46.png deleted file mode 100644 index a00e177340..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/46.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/49.png b/front/public/images/small/HardcoreEnderExpansion/charm/49.png deleted file mode 100644 index 097c7713bd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/49.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/5.png b/front/public/images/small/HardcoreEnderExpansion/charm/5.png deleted file mode 100644 index b9981f014e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/50.png b/front/public/images/small/HardcoreEnderExpansion/charm/50.png deleted file mode 100644 index 097c7713bd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/50.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/51.png b/front/public/images/small/HardcoreEnderExpansion/charm/51.png deleted file mode 100644 index 2287fb585b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/51.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/52.png b/front/public/images/small/HardcoreEnderExpansion/charm/52.png deleted file mode 100644 index 2287fb585b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/52.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/53.png b/front/public/images/small/HardcoreEnderExpansion/charm/53.png deleted file mode 100644 index 2287fb585b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/53.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/54.png b/front/public/images/small/HardcoreEnderExpansion/charm/54.png deleted file mode 100644 index e0174c6237..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/54.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/55.png b/front/public/images/small/HardcoreEnderExpansion/charm/55.png deleted file mode 100644 index e0174c6237..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/55.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/56.png b/front/public/images/small/HardcoreEnderExpansion/charm/56.png deleted file mode 100644 index e0174c6237..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/56.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/57.png b/front/public/images/small/HardcoreEnderExpansion/charm/57.png deleted file mode 100644 index e0174c6237..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/57.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/58.png b/front/public/images/small/HardcoreEnderExpansion/charm/58.png deleted file mode 100644 index e0174c6237..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/58.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/59.png b/front/public/images/small/HardcoreEnderExpansion/charm/59.png deleted file mode 100644 index e0174c6237..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/59.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/6.png b/front/public/images/small/HardcoreEnderExpansion/charm/6.png deleted file mode 100644 index 968d89ade4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/6.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/60.png b/front/public/images/small/HardcoreEnderExpansion/charm/60.png deleted file mode 100644 index 466923b8e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/60.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/61.png b/front/public/images/small/HardcoreEnderExpansion/charm/61.png deleted file mode 100644 index 466923b8e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/61.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/62.png b/front/public/images/small/HardcoreEnderExpansion/charm/62.png deleted file mode 100644 index 466923b8e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/62.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/63.png b/front/public/images/small/HardcoreEnderExpansion/charm/63.png deleted file mode 100644 index 466923b8e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/63.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/64.png b/front/public/images/small/HardcoreEnderExpansion/charm/64.png deleted file mode 100644 index 466923b8e4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/64.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/65.png b/front/public/images/small/HardcoreEnderExpansion/charm/65.png deleted file mode 100644 index a00e177340..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/65.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/66.png b/front/public/images/small/HardcoreEnderExpansion/charm/66.png deleted file mode 100644 index 0733392b52..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/66.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/67.png b/front/public/images/small/HardcoreEnderExpansion/charm/67.png deleted file mode 100644 index 0733392b52..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/67.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/68.png b/front/public/images/small/HardcoreEnderExpansion/charm/68.png deleted file mode 100644 index 0733392b52..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/68.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/69.png b/front/public/images/small/HardcoreEnderExpansion/charm/69.png deleted file mode 100644 index 0733392b52..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/69.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/7.png b/front/public/images/small/HardcoreEnderExpansion/charm/7.png deleted file mode 100644 index 968d89ade4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/7.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/70.png b/front/public/images/small/HardcoreEnderExpansion/charm/70.png deleted file mode 100644 index 0733392b52..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/70.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/71.png b/front/public/images/small/HardcoreEnderExpansion/charm/71.png deleted file mode 100644 index 8168f58d20..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/71.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/72.png b/front/public/images/small/HardcoreEnderExpansion/charm/72.png deleted file mode 100644 index 8168f58d20..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/72.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/73.png b/front/public/images/small/HardcoreEnderExpansion/charm/73.png deleted file mode 100644 index 8168f58d20..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/73.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/74.png b/front/public/images/small/HardcoreEnderExpansion/charm/74.png deleted file mode 100644 index f79ef9a34d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/74.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/75.png b/front/public/images/small/HardcoreEnderExpansion/charm/75.png deleted file mode 100644 index f79ef9a34d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/75.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/76.png b/front/public/images/small/HardcoreEnderExpansion/charm/76.png deleted file mode 100644 index f79ef9a34d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/76.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/77.png b/front/public/images/small/HardcoreEnderExpansion/charm/77.png deleted file mode 100644 index 9b5fa2b12e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/77.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/78.png b/front/public/images/small/HardcoreEnderExpansion/charm/78.png deleted file mode 100644 index 9b5fa2b12e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/78.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/79.png b/front/public/images/small/HardcoreEnderExpansion/charm/79.png deleted file mode 100644 index 9b5fa2b12e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/79.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/8.png b/front/public/images/small/HardcoreEnderExpansion/charm/8.png deleted file mode 100644 index 968d89ade4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/8.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm/9.png b/front/public/images/small/HardcoreEnderExpansion/charm/9.png deleted file mode 100644 index 508586d529..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm/9.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/charm_pouch/0.png b/front/public/images/small/HardcoreEnderExpansion/charm_pouch/0.png deleted file mode 100644 index 9af7594315..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/charm_pouch/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/cinder/0.png b/front/public/images/small/HardcoreEnderExpansion/cinder/0.png deleted file mode 100644 index 237a13b0ea..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/cinder/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/corrupted_energy_high/0.png b/front/public/images/small/HardcoreEnderExpansion/corrupted_energy_high/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/corrupted_energy_high/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/corrupted_energy_low/0.png b/front/public/images/small/HardcoreEnderExpansion/corrupted_energy_low/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/corrupted_energy_low/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/10.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/10.png deleted file mode 100644 index a20d3431bf..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/10.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/11.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/11.png deleted file mode 100644 index 175c4b2cef..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/11.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/12.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/12.png deleted file mode 100644 index e5e47aa45e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/12.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/13.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/13.png deleted file mode 100644 index 02b03cb62c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/13.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/2.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/2.png deleted file mode 100644 index 3a91291df6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/3.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/3.png deleted file mode 100644 index 490c296792..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/4.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/4.png deleted file mode 100644 index 0140c829fc..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/5.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/5.png deleted file mode 100644 index 3396674750..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/6.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/6.png deleted file mode 100644 index 686b63123f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/6.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/7.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/7.png deleted file mode 100644 index 9a91cac071..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/7.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/8.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/8.png deleted file mode 100644 index 61b1f84e44..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/8.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/9.png b/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/9.png deleted file mode 100644 index abe4bebb17..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/crossed_decoration/9.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/0.png b/front/public/images/small/HardcoreEnderExpansion/curse/0.png deleted file mode 100644 index 9439f5c08b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/1.png b/front/public/images/small/HardcoreEnderExpansion/curse/1.png deleted file mode 100644 index 6182bd5ec5..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/10.png b/front/public/images/small/HardcoreEnderExpansion/curse/10.png deleted file mode 100644 index 0cf645107e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/10.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/2.png b/front/public/images/small/HardcoreEnderExpansion/curse/2.png deleted file mode 100644 index bb22f40994..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/256.png b/front/public/images/small/HardcoreEnderExpansion/curse/256.png deleted file mode 100644 index 9439f5c08b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/256.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/257.png b/front/public/images/small/HardcoreEnderExpansion/curse/257.png deleted file mode 100644 index 6182bd5ec5..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/257.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/258.png b/front/public/images/small/HardcoreEnderExpansion/curse/258.png deleted file mode 100644 index bb22f40994..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/258.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/259.png b/front/public/images/small/HardcoreEnderExpansion/curse/259.png deleted file mode 100644 index 8fcd7b3acc..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/259.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/260.png b/front/public/images/small/HardcoreEnderExpansion/curse/260.png deleted file mode 100644 index af6b0633fe..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/260.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/261.png b/front/public/images/small/HardcoreEnderExpansion/curse/261.png deleted file mode 100644 index 3196233964..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/261.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/262.png b/front/public/images/small/HardcoreEnderExpansion/curse/262.png deleted file mode 100644 index c5f670e145..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/262.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/263.png b/front/public/images/small/HardcoreEnderExpansion/curse/263.png deleted file mode 100644 index 25997889ad..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/263.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/264.png b/front/public/images/small/HardcoreEnderExpansion/curse/264.png deleted file mode 100644 index 1892d2caf1..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/264.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/265.png b/front/public/images/small/HardcoreEnderExpansion/curse/265.png deleted file mode 100644 index 4ecdbf1590..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/265.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/266.png b/front/public/images/small/HardcoreEnderExpansion/curse/266.png deleted file mode 100644 index 0cf645107e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/266.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/3.png b/front/public/images/small/HardcoreEnderExpansion/curse/3.png deleted file mode 100644 index 8fcd7b3acc..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/4.png b/front/public/images/small/HardcoreEnderExpansion/curse/4.png deleted file mode 100644 index af6b0633fe..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/5.png b/front/public/images/small/HardcoreEnderExpansion/curse/5.png deleted file mode 100644 index 3196233964..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/6.png b/front/public/images/small/HardcoreEnderExpansion/curse/6.png deleted file mode 100644 index c5f670e145..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/6.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/7.png b/front/public/images/small/HardcoreEnderExpansion/curse/7.png deleted file mode 100644 index 25997889ad..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/7.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/8.png b/front/public/images/small/HardcoreEnderExpansion/curse/8.png deleted file mode 100644 index 1892d2caf1..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/8.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse/9.png b/front/public/images/small/HardcoreEnderExpansion/curse/9.png deleted file mode 100644 index 4ecdbf1590..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse/9.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/curse_amulet/0.png b/front/public/images/small/HardcoreEnderExpansion/curse_amulet/0.png deleted file mode 100644 index 1f5175d147..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/curse_amulet/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/custom_spawner/0.png b/front/public/images/small/HardcoreEnderExpansion/custom_spawner/0.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/custom_spawner/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/death_flower/0.png b/front/public/images/small/HardcoreEnderExpansion/death_flower/0.png deleted file mode 100644 index 444ffa0516..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/death_flower/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/death_flower/15.png b/front/public/images/small/HardcoreEnderExpansion/death_flower/15.png deleted file mode 100644 index 0abcb13f2b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/death_flower/15.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/death_flower_pot/0.png b/front/public/images/small/HardcoreEnderExpansion/death_flower_pot/0.png deleted file mode 100644 index 19babe4148..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/death_flower_pot/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/decomposition_table/0.png b/front/public/images/small/HardcoreEnderExpansion/decomposition_table/0.png deleted file mode 100644 index 806e44be01..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/decomposition_table/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dry_splinter/0.png b/front/public/images/small/HardcoreEnderExpansion/dry_splinter/0.png deleted file mode 100644 index 183d98e25e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dry_splinter/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/0.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/0.png deleted file mode 100644 index c61130e2c8..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/1.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/1.png deleted file mode 100644 index 979eb99018..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/12.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/12.png deleted file mode 100644 index 7aa9227ca0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/12.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/13.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/13.png deleted file mode 100644 index eedec796c4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/13.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/14.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/14.png deleted file mode 100644 index 22885076fa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/14.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/15.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/15.png deleted file mode 100644 index 979eb99018..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/15.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/2.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/2.png deleted file mode 100644 index 384dd2f177..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/3.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/3.png deleted file mode 100644 index fab44b7f90..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/4.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/4.png deleted file mode 100644 index 765b48963d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/5.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/5.png deleted file mode 100644 index 0d5cc19aa6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/6.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/6.png deleted file mode 100644 index 47e20ce0aa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/6.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/7.png b/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/7.png deleted file mode 100644 index 4d7cc8853e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/dungeon_puzzle/7.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/end_powder/0.png b/front/public/images/small/HardcoreEnderExpansion/end_powder/0.png deleted file mode 100644 index a99df6828e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/end_powder/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/end_powder_ore/0.png b/front/public/images/small/HardcoreEnderExpansion/end_powder_ore/0.png deleted file mode 100644 index cc898c4dac..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/end_powder_ore/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/0.png b/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/0.png deleted file mode 100644 index b4845a4b2f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/1.png b/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/1.png deleted file mode 100644 index 30d3d484d0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/2.png b/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/2.png deleted file mode 100644 index 55d06f9be4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/end_stone_terrain/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ender_goo/0.png b/front/public/images/small/HardcoreEnderExpansion/ender_goo/0.png deleted file mode 100644 index 28dbf2ce97..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ender_goo/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/enderman_head/0.png b/front/public/images/small/HardcoreEnderExpansion/enderman_head/0.png deleted file mode 100644 index 3324cea133..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/enderman_head/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/enderman_head_block/0.png b/front/public/images/small/HardcoreEnderExpansion/enderman_head_block/0.png deleted file mode 100644 index 3ec22941ca..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/enderman_head_block/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/endium_block/0.png b/front/public/images/small/HardcoreEnderExpansion/endium_block/0.png deleted file mode 100644 index 61ea00aaa4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/endium_block/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/endium_ingot/0.png b/front/public/images/small/HardcoreEnderExpansion/endium_ingot/0.png deleted file mode 100644 index 3b3f0a56a3..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/endium_ingot/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/endium_ore/0.png b/front/public/images/small/HardcoreEnderExpansion/endium_ore/0.png deleted file mode 100644 index 6e015ed46c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/endium_ore/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/endoplasm/0.png b/front/public/images/small/HardcoreEnderExpansion/endoplasm/0.png deleted file mode 100644 index 33dd14f6f7..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/endoplasm/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/energy_cluster/0.png b/front/public/images/small/HardcoreEnderExpansion/energy_cluster/0.png deleted file mode 100644 index 9d631875e9..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/energy_cluster/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/energy_extraction_table/0.png b/front/public/images/small/HardcoreEnderExpansion/energy_extraction_table/0.png deleted file mode 100644 index 34d426be93..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/energy_extraction_table/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/energy_wand/0.png b/front/public/images/small/HardcoreEnderExpansion/energy_wand/0.png deleted file mode 100644 index 75a70f3e14..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/energy_wand/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/energy_wand_core/0.png b/front/public/images/small/HardcoreEnderExpansion/energy_wand_core/0.png deleted file mode 100644 index a7873baaff..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/energy_wand_core/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/enhanced_brewing_stand/0.png b/front/public/images/small/HardcoreEnderExpansion/enhanced_brewing_stand/0.png deleted file mode 100644 index f0f3541aae..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/enhanced_brewing_stand/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/enhanced_brewing_stand_block/0.png b/front/public/images/small/HardcoreEnderExpansion/enhanced_brewing_stand_block/0.png deleted file mode 100644 index 6b3c2ae05f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/enhanced_brewing_stand_block/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/enhanced_ender_pearl/0.png b/front/public/images/small/HardcoreEnderExpansion/enhanced_ender_pearl/0.png deleted file mode 100644 index a2a2543d7d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/enhanced_ender_pearl/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/enhanced_tnt/0.png b/front/public/images/small/HardcoreEnderExpansion/enhanced_tnt/0.png deleted file mode 100644 index 652dc8c4fb..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/enhanced_tnt/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/essence/0.png b/front/public/images/small/HardcoreEnderExpansion/essence/0.png deleted file mode 100644 index f5f25815a0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/essence/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/essence/1.png b/front/public/images/small/HardcoreEnderExpansion/essence/1.png deleted file mode 100644 index 72fbfcc6ce..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/essence/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/essence/2.png b/front/public/images/small/HardcoreEnderExpansion/essence/2.png deleted file mode 100644 index 36e7299513..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/essence/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/essence_altar/0.png b/front/public/images/small/HardcoreEnderExpansion/essence_altar/0.png deleted file mode 100644 index 8136b6be00..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/essence_altar/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/essence_altar/1.png b/front/public/images/small/HardcoreEnderExpansion/essence_altar/1.png deleted file mode 100644 index 758247b145..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/essence_altar/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/essence_altar/2.png b/front/public/images/small/HardcoreEnderExpansion/essence_altar/2.png deleted file mode 100644 index 51c118b564..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/essence_altar/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/essence_altar/3.png b/front/public/images/small/HardcoreEnderExpansion/essence_altar/3.png deleted file mode 100644 index 1315af2679..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/essence_altar/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/exp_bottle_consistent/0.png b/front/public/images/small/HardcoreEnderExpansion/exp_bottle_consistent/0.png deleted file mode 100644 index d1d86e8c05..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/exp_bottle_consistent/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/experience_table/0.png b/front/public/images/small/HardcoreEnderExpansion/experience_table/0.png deleted file mode 100644 index 49816426a1..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/experience_table/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/fire_shard/0.png b/front/public/images/small/HardcoreEnderExpansion/fire_shard/0.png deleted file mode 100644 index d4cd424e86..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/fire_shard/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ghost_amulet/0.png b/front/public/images/small/HardcoreEnderExpansion/ghost_amulet/0.png deleted file mode 100644 index 00e6510717..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ghost_amulet/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ghost_amulet/1.png b/front/public/images/small/HardcoreEnderExpansion/ghost_amulet/1.png deleted file mode 100644 index ec1fe03675..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ghost_amulet/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/igneous_rock/0.png b/front/public/images/small/HardcoreEnderExpansion/igneous_rock/0.png deleted file mode 100644 index 96f3a84a5b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/igneous_rock/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/igneous_rock_ore/0.png b/front/public/images/small/HardcoreEnderExpansion/igneous_rock_ore/0.png deleted file mode 100644 index 44077971d9..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/igneous_rock_ore/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/infestation_remedy/0.png b/front/public/images/small/HardcoreEnderExpansion/infestation_remedy/0.png deleted file mode 100644 index be8f30171e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/infestation_remedy/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/instability_orb/0.png b/front/public/images/small/HardcoreEnderExpansion/instability_orb/0.png deleted file mode 100644 index 081ea0c937..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/instability_orb/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/instability_orb_ore/0.png b/front/public/images/small/HardcoreEnderExpansion/instability_orb_ore/0.png deleted file mode 100644 index 4df5da070e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/instability_orb_ore/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/item_special_effects/0.png b/front/public/images/small/HardcoreEnderExpansion/item_special_effects/0.png deleted file mode 100644 index 7f5d861098..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/item_special_effects/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/knowledge_note/0.png b/front/public/images/small/HardcoreEnderExpansion/knowledge_note/0.png deleted file mode 100644 index c2ca990da1..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/knowledge_note/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/laboratory_floor/0.png b/front/public/images/small/HardcoreEnderExpansion/laboratory_floor/0.png deleted file mode 100644 index 450ecffb80..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/laboratory_floor/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/laboratory_glass/0.png b/front/public/images/small/HardcoreEnderExpansion/laboratory_glass/0.png deleted file mode 100644 index 043caa0cb7..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/laboratory_glass/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/laboratory_obsidian/0.png b/front/public/images/small/HardcoreEnderExpansion/laboratory_obsidian/0.png deleted file mode 100644 index 48f06d5b4c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/laboratory_obsidian/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/laboratory_stairs/0.png b/front/public/images/small/HardcoreEnderExpansion/laboratory_stairs/0.png deleted file mode 100644 index 30c9bf8399..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/laboratory_stairs/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/laser_beam/0.png b/front/public/images/small/HardcoreEnderExpansion/laser_beam/0.png deleted file mode 100644 index bee3a58371..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/laser_beam/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/living_matter/0.png b/front/public/images/small/HardcoreEnderExpansion/living_matter/0.png deleted file mode 100644 index 4fa33de368..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/living_matter/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/0.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/0.png deleted file mode 100644 index 5b29b9326d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/1.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/1.png deleted file mode 100644 index c9a04ce4ae..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/2.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/2.png deleted file mode 100644 index b3583e8662..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/3.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/3.png deleted file mode 100644 index cadd416d10..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/4.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/4.png deleted file mode 100644 index 0259f40558..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/5.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/5.png deleted file mode 100644 index 619a692126..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/6.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/6.png deleted file mode 100644 index 761d7c60aa..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/6.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/7.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/7.png deleted file mode 100644 index 0d2998e2f2..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/7.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/8.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/8.png deleted file mode 100644 index b99b87c903..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/8.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/music_disk/9.png b/front/public/images/small/HardcoreEnderExpansion/music_disk/9.png deleted file mode 100644 index 9f149a3a15..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/music_disk/9.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_end/0.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_end/0.png deleted file mode 100644 index df60bd3e19..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_end/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_fragment/0.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_fragment/0.png deleted file mode 100644 index bf6f29020c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_fragment/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_rod/0.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_rod/0.png deleted file mode 100644 index 6fe2882c0e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_rod/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_special/0.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_special/0.png deleted file mode 100644 index 297d7a304f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_special/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_special/1.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_special/1.png deleted file mode 100644 index 3d2965452c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_special/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_special/2.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_special/2.png deleted file mode 100644 index b10f421ce0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_special/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/0.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/0.png deleted file mode 100644 index 297d7a304f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/1.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/1.png deleted file mode 100644 index 3d2965452c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/2.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/2.png deleted file mode 100644 index b10f421ce0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_special_glow/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/obsidian_stairs/0.png b/front/public/images/small/HardcoreEnderExpansion/obsidian_stairs/0.png deleted file mode 100644 index 78d16f3891..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/obsidian_stairs/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/0.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/0.png deleted file mode 100644 index 61b54d7e57..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/1.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/1.png deleted file mode 100644 index d0d8dfde17..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/10.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/10.png deleted file mode 100644 index 94ace57b08..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/10.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/11.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/11.png deleted file mode 100644 index d884a5d53d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/11.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/12.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/12.png deleted file mode 100644 index a932c29192..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/12.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/13.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/13.png deleted file mode 100644 index becc5d340a..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/13.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/14.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/14.png deleted file mode 100644 index 351f2563ca..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/14.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/15.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/15.png deleted file mode 100644 index 35a891ddb5..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/15.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/2.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/2.png deleted file mode 100644 index 4dd6d3492f..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/3.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/3.png deleted file mode 100644 index 2df2a0eb22..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/4.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/4.png deleted file mode 100644 index 136242cbb9..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/5.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/5.png deleted file mode 100644 index a87a3ddc36..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/6.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/6.png deleted file mode 100644 index 246058c022..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/6.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/7.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/7.png deleted file mode 100644 index 74ec3ddd27..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/7.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/8.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/8.png deleted file mode 100644 index 5153d865dd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/8.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/persegrit/9.png b/front/public/images/small/HardcoreEnderExpansion/persegrit/9.png deleted file mode 100644 index 770384fce3..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/persegrit/9.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/potion_of_instability/0.png b/front/public/images/small/HardcoreEnderExpansion/potion_of_instability/0.png deleted file mode 100644 index 137bec9c4d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/potion_of_instability/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/potion_of_instability/1.png b/front/public/images/small/HardcoreEnderExpansion/potion_of_instability/1.png deleted file mode 100644 index 2fc3216dca..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/potion_of_instability/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/potion_of_purity/0.png b/front/public/images/small/HardcoreEnderExpansion/potion_of_purity/0.png deleted file mode 100644 index c4b33783f1..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/potion_of_purity/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/potion_of_purity/1.png b/front/public/images/small/HardcoreEnderExpansion/potion_of_purity/1.png deleted file mode 100644 index 78384d97a0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/potion_of_purity/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/0.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/0.png deleted file mode 100644 index dbe74db286..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/1.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/1.png deleted file mode 100644 index fe1e2e13a5..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/2.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/2.png deleted file mode 100644 index b9faf31c48..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/3.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/3.png deleted file mode 100644 index cb71779fac..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/4.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/4.png deleted file mode 100644 index a884a9f7ec..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/5.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/5.png deleted file mode 100644 index d047c9b070..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_fence/0.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_fence/0.png deleted file mode 100644 index 44e1d64da5..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_fence/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_glow/0.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_glow/0.png deleted file mode 100644 index 41b43c714c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_glow/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_slab/0.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_slab/0.png deleted file mode 100644 index 1107d37830..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_slab/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_smooth/0.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_smooth/0.png deleted file mode 100644 index bf73aa442b..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_smooth/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_stairs/0.png b/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_stairs/0.png deleted file mode 100644 index d074b21bbf..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/ravaged_brick_stairs/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/rune/0.png b/front/public/images/small/HardcoreEnderExpansion/rune/0.png deleted file mode 100644 index 2f16906161..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/rune/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/rune/1.png b/front/public/images/small/HardcoreEnderExpansion/rune/1.png deleted file mode 100644 index 6e8995f6f6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/rune/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/rune/2.png b/front/public/images/small/HardcoreEnderExpansion/rune/2.png deleted file mode 100644 index c13ee46a76..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/rune/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/rune/3.png b/front/public/images/small/HardcoreEnderExpansion/rune/3.png deleted file mode 100644 index 08f9e120f0..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/rune/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/rune/4.png b/front/public/images/small/HardcoreEnderExpansion/rune/4.png deleted file mode 100644 index c9925add99..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/rune/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/rune/5.png b/front/public/images/small/HardcoreEnderExpansion/rune/5.png deleted file mode 100644 index 64b8ec10ba..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/rune/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/schorching_pickaxe/0.png b/front/public/images/small/HardcoreEnderExpansion/schorching_pickaxe/0.png deleted file mode 100644 index ccc668d402..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/schorching_pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/silverfish_blood/0.png b/front/public/images/small/HardcoreEnderExpansion/silverfish_blood/0.png deleted file mode 100644 index dd99f25055..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/silverfish_blood/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spatial_dash_gem/0.png b/front/public/images/small/HardcoreEnderExpansion/spatial_dash_gem/0.png deleted file mode 100644 index e585d69aea..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spatial_dash_gem/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/0.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/0.png deleted file mode 100644 index b9de210bbd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/1.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/1.png deleted file mode 100644 index 2422f2ae70..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/10.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/10.png deleted file mode 100644 index edf9afb225..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/10.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/11.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/11.png deleted file mode 100644 index 0f34dd5c25..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/11.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/12.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/12.png deleted file mode 100644 index 410f611274..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/12.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/13.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/13.png deleted file mode 100644 index bf2feffccd..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/13.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/14.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/14.png deleted file mode 100644 index 4356d82e81..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/14.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/2.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/2.png deleted file mode 100644 index fdc9d78473..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/2.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/3.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/3.png deleted file mode 100644 index 0effd3878a..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/3.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/4.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/4.png deleted file mode 100644 index 4f35a4d770..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/4.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/5.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/5.png deleted file mode 100644 index 77f326dc5c..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/5.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/6.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/6.png deleted file mode 100644 index 253ce27010..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/6.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/7.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/7.png deleted file mode 100644 index 3e59797cb6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/7.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/8.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/8.png deleted file mode 100644 index b1339fbb17..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/8.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/9.png b/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/9.png deleted file mode 100644 index 5449d66b81..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spawn_eggs/9.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spectral_tear/0.png b/front/public/images/small/HardcoreEnderExpansion/spectral_tear/0.png deleted file mode 100644 index 9d33d4607e..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spectral_tear/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/sphalerite/0.png b/front/public/images/small/HardcoreEnderExpansion/sphalerite/0.png deleted file mode 100644 index b8995b0176..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/sphalerite/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/sphalerite/1.png b/front/public/images/small/HardcoreEnderExpansion/sphalerite/1.png deleted file mode 100644 index c0eea0f460..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/sphalerite/1.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spooky_leaves/0.png b/front/public/images/small/HardcoreEnderExpansion/spooky_leaves/0.png deleted file mode 100644 index 98bb1ad110..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spooky_leaves/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/spooky_log/0.png b/front/public/images/small/HardcoreEnderExpansion/spooky_log/0.png deleted file mode 100644 index fbef4451ce..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/spooky_log/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/stardust/0.png b/front/public/images/small/HardcoreEnderExpansion/stardust/0.png deleted file mode 100644 index 80918828e6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/stardust/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/stardust_ore/0.png b/front/public/images/small/HardcoreEnderExpansion/stardust_ore/0.png deleted file mode 100644 index db319e1680..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/stardust_ore/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/temple_caller/0.png b/front/public/images/small/HardcoreEnderExpansion/temple_caller/0.png deleted file mode 100644 index 213d9985a6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/temple_caller/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/temple_caller/50.png b/front/public/images/small/HardcoreEnderExpansion/temple_caller/50.png deleted file mode 100644 index 213d9985a6..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/temple_caller/50.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/temple_end_portal/0.png b/front/public/images/small/HardcoreEnderExpansion/temple_end_portal/0.png deleted file mode 100644 index 8c16f1888d..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/temple_end_portal/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/transference_gem/0.png b/front/public/images/small/HardcoreEnderExpansion/transference_gem/0.png deleted file mode 100644 index d99cba8dde..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/transference_gem/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/transport_beacon/0.png b/front/public/images/small/HardcoreEnderExpansion/transport_beacon/0.png deleted file mode 100644 index f818fa86c9..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/transport_beacon/0.png and /dev/null differ diff --git a/front/public/images/small/HardcoreEnderExpansion/void_chest/0.png b/front/public/images/small/HardcoreEnderExpansion/void_chest/0.png deleted file mode 100644 index c08ac1c1a4..0000000000 Binary files a/front/public/images/small/HardcoreEnderExpansion/void_chest/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockAlloy/0.png b/front/public/images/small/IC2/blockAlloy/0.png deleted file mode 100644 index 0fb551add3..0000000000 Binary files a/front/public/images/small/IC2/blockAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockAlloyGlass/0.png b/front/public/images/small/IC2/blockAlloyGlass/0.png deleted file mode 100644 index 5c687e4511..0000000000 Binary files a/front/public/images/small/IC2/blockAlloyGlass/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockBarrel/0.png b/front/public/images/small/IC2/blockBarrel/0.png deleted file mode 100644 index 6201865376..0000000000 Binary files a/front/public/images/small/IC2/blockBarrel/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockBasalt/0.png b/front/public/images/small/IC2/blockBasalt/0.png deleted file mode 100644 index 8a0b15b550..0000000000 Binary files a/front/public/images/small/IC2/blockBasalt/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockCable/0.png b/front/public/images/small/IC2/blockCable/0.png deleted file mode 100644 index 5e51be34aa..0000000000 Binary files a/front/public/images/small/IC2/blockCable/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockChargepad/0.png b/front/public/images/small/IC2/blockChargepad/0.png deleted file mode 100644 index 26d823f69f..0000000000 Binary files a/front/public/images/small/IC2/blockChargepad/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockChargepad/1.png b/front/public/images/small/IC2/blockChargepad/1.png deleted file mode 100644 index 1a8f805a18..0000000000 Binary files a/front/public/images/small/IC2/blockChargepad/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockChargepad/2.png b/front/public/images/small/IC2/blockChargepad/2.png deleted file mode 100644 index c62f835683..0000000000 Binary files a/front/public/images/small/IC2/blockChargepad/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockChargepad/3.png b/front/public/images/small/IC2/blockChargepad/3.png deleted file mode 100644 index 4f034bde4f..0000000000 Binary files a/front/public/images/small/IC2/blockChargepad/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockCrop/0.png b/front/public/images/small/IC2/blockCrop/0.png deleted file mode 100644 index 261dff09cc..0000000000 Binary files a/front/public/images/small/IC2/blockCrop/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockDoorAlloy/0.png b/front/public/images/small/IC2/blockDoorAlloy/0.png deleted file mode 100644 index d69b723685..0000000000 Binary files a/front/public/images/small/IC2/blockDoorAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockDynamite/0.png b/front/public/images/small/IC2/blockDynamite/0.png deleted file mode 100644 index 6d7364c156..0000000000 Binary files a/front/public/images/small/IC2/blockDynamite/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockDynamiteRemote/0.png b/front/public/images/small/IC2/blockDynamiteRemote/0.png deleted file mode 100644 index 246743720b..0000000000 Binary files a/front/public/images/small/IC2/blockDynamiteRemote/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/0.png b/front/public/images/small/IC2/blockElectric/0.png deleted file mode 100644 index d6120bdd04..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/1.png b/front/public/images/small/IC2/blockElectric/1.png deleted file mode 100644 index 1650221662..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/2.png b/front/public/images/small/IC2/blockElectric/2.png deleted file mode 100644 index fe18003132..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/3.png b/front/public/images/small/IC2/blockElectric/3.png deleted file mode 100644 index fab79d6ba1..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/4.png b/front/public/images/small/IC2/blockElectric/4.png deleted file mode 100644 index 7c23db9669..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/5.png b/front/public/images/small/IC2/blockElectric/5.png deleted file mode 100644 index 2cb187f4d8..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/6.png b/front/public/images/small/IC2/blockElectric/6.png deleted file mode 100644 index b7988b3296..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockElectric/7.png b/front/public/images/small/IC2/blockElectric/7.png deleted file mode 100644 index 5a34e40769..0000000000 Binary files a/front/public/images/small/IC2/blockElectric/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockFenceIron/0.png b/front/public/images/small/IC2/blockFenceIron/0.png deleted file mode 100644 index d90858a5bd..0000000000 Binary files a/front/public/images/small/IC2/blockFenceIron/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockFoam/0.png b/front/public/images/small/IC2/blockFoam/0.png deleted file mode 100644 index 1fbc84a8f4..0000000000 Binary files a/front/public/images/small/IC2/blockFoam/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/0.png b/front/public/images/small/IC2/blockGenerator/0.png deleted file mode 100644 index 8f0344f365..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/1.png b/front/public/images/small/IC2/blockGenerator/1.png deleted file mode 100644 index ebc631a900..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/2.png b/front/public/images/small/IC2/blockGenerator/2.png deleted file mode 100644 index b02c445b17..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/3.png b/front/public/images/small/IC2/blockGenerator/3.png deleted file mode 100644 index f2e9225674..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/4.png b/front/public/images/small/IC2/blockGenerator/4.png deleted file mode 100644 index 8b4a7172ff..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/5.png b/front/public/images/small/IC2/blockGenerator/5.png deleted file mode 100644 index 1e3bc378d6..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/6.png b/front/public/images/small/IC2/blockGenerator/6.png deleted file mode 100644 index d09382c8eb..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/7.png b/front/public/images/small/IC2/blockGenerator/7.png deleted file mode 100644 index af9431c6f8..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/8.png b/front/public/images/small/IC2/blockGenerator/8.png deleted file mode 100644 index b9b8e7bf1a..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockGenerator/9.png b/front/public/images/small/IC2/blockGenerator/9.png deleted file mode 100644 index c3925cb730..0000000000 Binary files a/front/public/images/small/IC2/blockGenerator/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockHarz/0.png b/front/public/images/small/IC2/blockHarz/0.png deleted file mode 100644 index 7ed479bf2b..0000000000 Binary files a/front/public/images/small/IC2/blockHarz/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockHeatGenerator/0.png b/front/public/images/small/IC2/blockHeatGenerator/0.png deleted file mode 100644 index dcbfcb85d5..0000000000 Binary files a/front/public/images/small/IC2/blockHeatGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockHeatGenerator/1.png b/front/public/images/small/IC2/blockHeatGenerator/1.png deleted file mode 100644 index 69feee23f9..0000000000 Binary files a/front/public/images/small/IC2/blockHeatGenerator/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockHeatGenerator/2.png b/front/public/images/small/IC2/blockHeatGenerator/2.png deleted file mode 100644 index 4e203ef1d2..0000000000 Binary files a/front/public/images/small/IC2/blockHeatGenerator/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockHeatGenerator/3.png b/front/public/images/small/IC2/blockHeatGenerator/3.png deleted file mode 100644 index a0848f85d3..0000000000 Binary files a/front/public/images/small/IC2/blockHeatGenerator/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockITNT/0.png b/front/public/images/small/IC2/blockITNT/0.png deleted file mode 100644 index ed4ddd6f74..0000000000 Binary files a/front/public/images/small/IC2/blockITNT/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockIronScaffold/0.png b/front/public/images/small/IC2/blockIronScaffold/0.png deleted file mode 100644 index 95f9b3fa04..0000000000 Binary files a/front/public/images/small/IC2/blockIronScaffold/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockKineticGenerator/0.png b/front/public/images/small/IC2/blockKineticGenerator/0.png deleted file mode 100644 index c3925cb730..0000000000 Binary files a/front/public/images/small/IC2/blockKineticGenerator/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockKineticGenerator/1.png b/front/public/images/small/IC2/blockKineticGenerator/1.png deleted file mode 100644 index d620fb0bc8..0000000000 Binary files a/front/public/images/small/IC2/blockKineticGenerator/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockKineticGenerator/2.png b/front/public/images/small/IC2/blockKineticGenerator/2.png deleted file mode 100644 index 1f50ff01ef..0000000000 Binary files a/front/public/images/small/IC2/blockKineticGenerator/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockKineticGenerator/3.png b/front/public/images/small/IC2/blockKineticGenerator/3.png deleted file mode 100644 index 38b3a39e7d..0000000000 Binary files a/front/public/images/small/IC2/blockKineticGenerator/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockKineticGenerator/4.png b/front/public/images/small/IC2/blockKineticGenerator/4.png deleted file mode 100644 index 8b4a7172ff..0000000000 Binary files a/front/public/images/small/IC2/blockKineticGenerator/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockKineticGenerator/5.png b/front/public/images/small/IC2/blockKineticGenerator/5.png deleted file mode 100644 index e96532fbf4..0000000000 Binary files a/front/public/images/small/IC2/blockKineticGenerator/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockLuminator/0.png b/front/public/images/small/IC2/blockLuminator/0.png deleted file mode 100644 index 5ea6fea71c..0000000000 Binary files a/front/public/images/small/IC2/blockLuminator/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockLuminatorDark/0.png b/front/public/images/small/IC2/blockLuminatorDark/0.png deleted file mode 100644 index 2154736870..0000000000 Binary files a/front/public/images/small/IC2/blockLuminatorDark/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/0.png b/front/public/images/small/IC2/blockMachine/0.png deleted file mode 100644 index 7c4d4479c0..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/1.png b/front/public/images/small/IC2/blockMachine/1.png deleted file mode 100644 index c2f28ea5d0..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/10.png b/front/public/images/small/IC2/blockMachine/10.png deleted file mode 100644 index 55e8c48ff0..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/11.png b/front/public/images/small/IC2/blockMachine/11.png deleted file mode 100644 index 06a1635072..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/11.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/12.png b/front/public/images/small/IC2/blockMachine/12.png deleted file mode 100644 index 09e35b7b51..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/12.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/13.png b/front/public/images/small/IC2/blockMachine/13.png deleted file mode 100644 index 524e732c5d..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/13.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/14.png b/front/public/images/small/IC2/blockMachine/14.png deleted file mode 100644 index 47b6d5e16f..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/14.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/15.png b/front/public/images/small/IC2/blockMachine/15.png deleted file mode 100644 index 6faefe89d9..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/15.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/2.png b/front/public/images/small/IC2/blockMachine/2.png deleted file mode 100644 index 580960fffe..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/3.png b/front/public/images/small/IC2/blockMachine/3.png deleted file mode 100644 index 2e91bdca5f..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/4.png b/front/public/images/small/IC2/blockMachine/4.png deleted file mode 100644 index fec147694d..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/5.png b/front/public/images/small/IC2/blockMachine/5.png deleted file mode 100644 index 013201597d..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/6.png b/front/public/images/small/IC2/blockMachine/6.png deleted file mode 100644 index fe118c689a..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/7.png b/front/public/images/small/IC2/blockMachine/7.png deleted file mode 100644 index a7e44786b7..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/8.png b/front/public/images/small/IC2/blockMachine/8.png deleted file mode 100644 index 3d505431a8..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine/9.png b/front/public/images/small/IC2/blockMachine/9.png deleted file mode 100644 index a542c7f520..0000000000 Binary files a/front/public/images/small/IC2/blockMachine/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/0.png b/front/public/images/small/IC2/blockMachine2/0.png deleted file mode 100644 index 8213f9ce7d..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/1.png b/front/public/images/small/IC2/blockMachine2/1.png deleted file mode 100644 index 3d59e32728..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/10.png b/front/public/images/small/IC2/blockMachine2/10.png deleted file mode 100644 index 100e2b002c..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/11.png b/front/public/images/small/IC2/blockMachine2/11.png deleted file mode 100644 index c3189fa866..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/11.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/12.png b/front/public/images/small/IC2/blockMachine2/12.png deleted file mode 100644 index 4ee74e9d1f..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/12.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/13.png b/front/public/images/small/IC2/blockMachine2/13.png deleted file mode 100644 index 6a28f5a4b9..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/13.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/14.png b/front/public/images/small/IC2/blockMachine2/14.png deleted file mode 100644 index 1dd60e9d12..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/14.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/15.png b/front/public/images/small/IC2/blockMachine2/15.png deleted file mode 100644 index 57037f7033..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/15.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/2.png b/front/public/images/small/IC2/blockMachine2/2.png deleted file mode 100644 index daf689f7aa..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/3.png b/front/public/images/small/IC2/blockMachine2/3.png deleted file mode 100644 index 61305c9e3b..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/4.png b/front/public/images/small/IC2/blockMachine2/4.png deleted file mode 100644 index c1884566fb..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/5.png b/front/public/images/small/IC2/blockMachine2/5.png deleted file mode 100644 index e2e92d48ef..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/6.png b/front/public/images/small/IC2/blockMachine2/6.png deleted file mode 100644 index 658426f018..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/7.png b/front/public/images/small/IC2/blockMachine2/7.png deleted file mode 100644 index 0c5d22aacf..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/8.png b/front/public/images/small/IC2/blockMachine2/8.png deleted file mode 100644 index a6756b5bc7..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine2/9.png b/front/public/images/small/IC2/blockMachine2/9.png deleted file mode 100644 index 3f1c7b3226..0000000000 Binary files a/front/public/images/small/IC2/blockMachine2/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/0.png b/front/public/images/small/IC2/blockMachine3/0.png deleted file mode 100644 index e30f4a21b5..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/1.png b/front/public/images/small/IC2/blockMachine3/1.png deleted file mode 100644 index 9ba0147215..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/2.png b/front/public/images/small/IC2/blockMachine3/2.png deleted file mode 100644 index aa8e8b166f..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/3.png b/front/public/images/small/IC2/blockMachine3/3.png deleted file mode 100644 index ef03d1798d..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/4.png b/front/public/images/small/IC2/blockMachine3/4.png deleted file mode 100644 index 20143a5440..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/5.png b/front/public/images/small/IC2/blockMachine3/5.png deleted file mode 100644 index b230b3a88e..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/6.png b/front/public/images/small/IC2/blockMachine3/6.png deleted file mode 100644 index 7865f25816..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/7.png b/front/public/images/small/IC2/blockMachine3/7.png deleted file mode 100644 index 66579d5329..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMachine3/8.png b/front/public/images/small/IC2/blockMachine3/8.png deleted file mode 100644 index 3bdcf36e7e..0000000000 Binary files a/front/public/images/small/IC2/blockMachine3/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMetal/0.png b/front/public/images/small/IC2/blockMetal/0.png deleted file mode 100644 index 634979fefb..0000000000 Binary files a/front/public/images/small/IC2/blockMetal/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMetal/1.png b/front/public/images/small/IC2/blockMetal/1.png deleted file mode 100644 index 40e8574bd3..0000000000 Binary files a/front/public/images/small/IC2/blockMetal/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMetal/2.png b/front/public/images/small/IC2/blockMetal/2.png deleted file mode 100644 index 399d3d60ed..0000000000 Binary files a/front/public/images/small/IC2/blockMetal/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMetal/3.png b/front/public/images/small/IC2/blockMetal/3.png deleted file mode 100644 index 79c290e6fe..0000000000 Binary files a/front/public/images/small/IC2/blockMetal/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMetal/4.png b/front/public/images/small/IC2/blockMetal/4.png deleted file mode 100644 index 615c92d9a8..0000000000 Binary files a/front/public/images/small/IC2/blockMetal/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMetal/5.png b/front/public/images/small/IC2/blockMetal/5.png deleted file mode 100644 index 11c5fe0655..0000000000 Binary files a/front/public/images/small/IC2/blockMetal/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMiningPipe/0.png b/front/public/images/small/IC2/blockMiningPipe/0.png deleted file mode 100644 index 3c76518c47..0000000000 Binary files a/front/public/images/small/IC2/blockMiningPipe/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockMiningTip/0.png b/front/public/images/small/IC2/blockMiningTip/0.png deleted file mode 100644 index 28fc3af4d6..0000000000 Binary files a/front/public/images/small/IC2/blockMiningTip/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockNuke/0.png b/front/public/images/small/IC2/blockNuke/0.png deleted file mode 100644 index c441315ce8..0000000000 Binary files a/front/public/images/small/IC2/blockNuke/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockOreCopper/0.png b/front/public/images/small/IC2/blockOreCopper/0.png deleted file mode 100644 index 9e668fb83c..0000000000 Binary files a/front/public/images/small/IC2/blockOreCopper/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockOreLead/0.png b/front/public/images/small/IC2/blockOreLead/0.png deleted file mode 100644 index 88a52ba5f1..0000000000 Binary files a/front/public/images/small/IC2/blockOreLead/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockOreTin/0.png b/front/public/images/small/IC2/blockOreTin/0.png deleted file mode 100644 index 8a6d40b55a..0000000000 Binary files a/front/public/images/small/IC2/blockOreTin/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockOreUran/0.png b/front/public/images/small/IC2/blockOreUran/0.png deleted file mode 100644 index c65164a888..0000000000 Binary files a/front/public/images/small/IC2/blockOreUran/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockPersonal/0.png b/front/public/images/small/IC2/blockPersonal/0.png deleted file mode 100644 index 7218174887..0000000000 Binary files a/front/public/images/small/IC2/blockPersonal/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockPersonal/1.png b/front/public/images/small/IC2/blockPersonal/1.png deleted file mode 100644 index a9841d9e9a..0000000000 Binary files a/front/public/images/small/IC2/blockPersonal/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockPersonal/2.png b/front/public/images/small/IC2/blockPersonal/2.png deleted file mode 100644 index 9e783be419..0000000000 Binary files a/front/public/images/small/IC2/blockPersonal/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockReactorAccessHatch/0.png b/front/public/images/small/IC2/blockReactorAccessHatch/0.png deleted file mode 100644 index 59ec10ecca..0000000000 Binary files a/front/public/images/small/IC2/blockReactorAccessHatch/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockReactorChamber/0.png b/front/public/images/small/IC2/blockReactorChamber/0.png deleted file mode 100644 index b787ff6eb5..0000000000 Binary files a/front/public/images/small/IC2/blockReactorChamber/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockReactorFluidPort/0.png b/front/public/images/small/IC2/blockReactorFluidPort/0.png deleted file mode 100644 index 85980cd5a6..0000000000 Binary files a/front/public/images/small/IC2/blockReactorFluidPort/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockReactorRedstonePort/0.png b/front/public/images/small/IC2/blockReactorRedstonePort/0.png deleted file mode 100644 index 29d2ca4f81..0000000000 Binary files a/front/public/images/small/IC2/blockReactorRedstonePort/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockReinforcedFoam/0.png b/front/public/images/small/IC2/blockReinforcedFoam/0.png deleted file mode 100644 index 856821f19b..0000000000 Binary files a/front/public/images/small/IC2/blockReinforcedFoam/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockRubLeaves/0.png b/front/public/images/small/IC2/blockRubLeaves/0.png deleted file mode 100644 index 98764b634b..0000000000 Binary files a/front/public/images/small/IC2/blockRubLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockRubSapling/0.png b/front/public/images/small/IC2/blockRubSapling/0.png deleted file mode 100644 index 080c128191..0000000000 Binary files a/front/public/images/small/IC2/blockRubSapling/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockRubWood/0.png b/front/public/images/small/IC2/blockRubWood/0.png deleted file mode 100644 index f62a07aa27..0000000000 Binary files a/front/public/images/small/IC2/blockRubWood/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockRubber/0.png b/front/public/images/small/IC2/blockRubber/0.png deleted file mode 100644 index 820f3bbf4f..0000000000 Binary files a/front/public/images/small/IC2/blockRubber/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockScaffold/0.png b/front/public/images/small/IC2/blockScaffold/0.png deleted file mode 100644 index fa6d95a7d6..0000000000 Binary files a/front/public/images/small/IC2/blockScaffold/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/0.png b/front/public/images/small/IC2/blockWall/0.png deleted file mode 100644 index 54324f4b9e..0000000000 Binary files a/front/public/images/small/IC2/blockWall/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/1.png b/front/public/images/small/IC2/blockWall/1.png deleted file mode 100644 index cc3d339146..0000000000 Binary files a/front/public/images/small/IC2/blockWall/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/10.png b/front/public/images/small/IC2/blockWall/10.png deleted file mode 100644 index 8dd619ea4b..0000000000 Binary files a/front/public/images/small/IC2/blockWall/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/11.png b/front/public/images/small/IC2/blockWall/11.png deleted file mode 100644 index 69d497ad11..0000000000 Binary files a/front/public/images/small/IC2/blockWall/11.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/12.png b/front/public/images/small/IC2/blockWall/12.png deleted file mode 100644 index c206ade5bf..0000000000 Binary files a/front/public/images/small/IC2/blockWall/12.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/13.png b/front/public/images/small/IC2/blockWall/13.png deleted file mode 100644 index a92f51cbcd..0000000000 Binary files a/front/public/images/small/IC2/blockWall/13.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/14.png b/front/public/images/small/IC2/blockWall/14.png deleted file mode 100644 index 0a3a5ea784..0000000000 Binary files a/front/public/images/small/IC2/blockWall/14.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/15.png b/front/public/images/small/IC2/blockWall/15.png deleted file mode 100644 index ec78cb8440..0000000000 Binary files a/front/public/images/small/IC2/blockWall/15.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/2.png b/front/public/images/small/IC2/blockWall/2.png deleted file mode 100644 index 8fbe7db6f9..0000000000 Binary files a/front/public/images/small/IC2/blockWall/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/3.png b/front/public/images/small/IC2/blockWall/3.png deleted file mode 100644 index 07600186d1..0000000000 Binary files a/front/public/images/small/IC2/blockWall/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/4.png b/front/public/images/small/IC2/blockWall/4.png deleted file mode 100644 index f6f14ee145..0000000000 Binary files a/front/public/images/small/IC2/blockWall/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/5.png b/front/public/images/small/IC2/blockWall/5.png deleted file mode 100644 index 73a392d8d4..0000000000 Binary files a/front/public/images/small/IC2/blockWall/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/6.png b/front/public/images/small/IC2/blockWall/6.png deleted file mode 100644 index 9bd7c627df..0000000000 Binary files a/front/public/images/small/IC2/blockWall/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/7.png b/front/public/images/small/IC2/blockWall/7.png deleted file mode 100644 index 74a775983e..0000000000 Binary files a/front/public/images/small/IC2/blockWall/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/8.png b/front/public/images/small/IC2/blockWall/8.png deleted file mode 100644 index 5695317da5..0000000000 Binary files a/front/public/images/small/IC2/blockWall/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockWall/9.png b/front/public/images/small/IC2/blockWall/9.png deleted file mode 100644 index 6f789a30ef..0000000000 Binary files a/front/public/images/small/IC2/blockWall/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/blockreactorvessel/0.png b/front/public/images/small/IC2/blockreactorvessel/0.png deleted file mode 100644 index 769b8bd380..0000000000 Binary files a/front/public/images/small/IC2/blockreactorvessel/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidBiogas/0.png b/front/public/images/small/IC2/fluidBiogas/0.png deleted file mode 100644 index 6c01260849..0000000000 Binary files a/front/public/images/small/IC2/fluidBiogas/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidBiomass/0.png b/front/public/images/small/IC2/fluidBiomass/0.png deleted file mode 100644 index b3e285f98f..0000000000 Binary files a/front/public/images/small/IC2/fluidBiomass/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidConstructionFoam/0.png b/front/public/images/small/IC2/fluidConstructionFoam/0.png deleted file mode 100644 index f197e964c7..0000000000 Binary files a/front/public/images/small/IC2/fluidConstructionFoam/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidCoolant/0.png b/front/public/images/small/IC2/fluidCoolant/0.png deleted file mode 100644 index e4358a78c6..0000000000 Binary files a/front/public/images/small/IC2/fluidCoolant/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidDistilledWater/0.png b/front/public/images/small/IC2/fluidDistilledWater/0.png deleted file mode 100644 index 230531b36b..0000000000 Binary files a/front/public/images/small/IC2/fluidDistilledWater/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidHotCoolant/0.png b/front/public/images/small/IC2/fluidHotCoolant/0.png deleted file mode 100644 index 3cee00346e..0000000000 Binary files a/front/public/images/small/IC2/fluidHotCoolant/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidHotWater/0.png b/front/public/images/small/IC2/fluidHotWater/0.png deleted file mode 100644 index e738d0fe28..0000000000 Binary files a/front/public/images/small/IC2/fluidHotWater/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidPahoehoeLava/0.png b/front/public/images/small/IC2/fluidPahoehoeLava/0.png deleted file mode 100644 index 99e207ae17..0000000000 Binary files a/front/public/images/small/IC2/fluidPahoehoeLava/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidSteam/0.png b/front/public/images/small/IC2/fluidSteam/0.png deleted file mode 100644 index 217c3c0725..0000000000 Binary files a/front/public/images/small/IC2/fluidSteam/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidSuperheatedSteam/0.png b/front/public/images/small/IC2/fluidSuperheatedSteam/0.png deleted file mode 100644 index 70d1ad59cb..0000000000 Binary files a/front/public/images/small/IC2/fluidSuperheatedSteam/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/fluidUuMatter/0.png b/front/public/images/small/IC2/fluidUuMatter/0.png deleted file mode 100644 index 92231459c0..0000000000 Binary files a/front/public/images/small/IC2/fluidUuMatter/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemAdvBat/1.png b/front/public/images/small/IC2/itemAdvBat/1.png deleted file mode 100644 index 5a5749127b..0000000000 Binary files a/front/public/images/small/IC2/itemAdvBat/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemAdvBat/26.png b/front/public/images/small/IC2/itemAdvBat/26.png deleted file mode 100644 index 36e1097e23..0000000000 Binary files a/front/public/images/small/IC2/itemAdvBat/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemAdvIronBlockCuttingBlade/0.png b/front/public/images/small/IC2/itemAdvIronBlockCuttingBlade/0.png deleted file mode 100644 index 949aefe125..0000000000 Binary files a/front/public/images/small/IC2/itemAdvIronBlockCuttingBlade/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorAdvBatpack/1.png b/front/public/images/small/IC2/itemArmorAdvBatpack/1.png deleted file mode 100644 index 14d271fa37..0000000000 Binary files a/front/public/images/small/IC2/itemArmorAdvBatpack/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorAdvBatpack/27.png b/front/public/images/small/IC2/itemArmorAdvBatpack/27.png deleted file mode 100644 index 14d271fa37..0000000000 Binary files a/front/public/images/small/IC2/itemArmorAdvBatpack/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorAlloyChestplate/0.png b/front/public/images/small/IC2/itemArmorAlloyChestplate/0.png deleted file mode 100644 index 02673534e4..0000000000 Binary files a/front/public/images/small/IC2/itemArmorAlloyChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorBatpack/1.png b/front/public/images/small/IC2/itemArmorBatpack/1.png deleted file mode 100644 index 2ec4ac9d1e..0000000000 Binary files a/front/public/images/small/IC2/itemArmorBatpack/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorBatpack/27.png b/front/public/images/small/IC2/itemArmorBatpack/27.png deleted file mode 100644 index 2ec4ac9d1e..0000000000 Binary files a/front/public/images/small/IC2/itemArmorBatpack/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorBronzeBoots/0.png b/front/public/images/small/IC2/itemArmorBronzeBoots/0.png deleted file mode 100644 index 8d98dcb141..0000000000 Binary files a/front/public/images/small/IC2/itemArmorBronzeBoots/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorBronzeChestplate/0.png b/front/public/images/small/IC2/itemArmorBronzeChestplate/0.png deleted file mode 100644 index dc58242aea..0000000000 Binary files a/front/public/images/small/IC2/itemArmorBronzeChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorBronzeHelmet/0.png b/front/public/images/small/IC2/itemArmorBronzeHelmet/0.png deleted file mode 100644 index 6f3fffc95e..0000000000 Binary files a/front/public/images/small/IC2/itemArmorBronzeHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorBronzeLegs/0.png b/front/public/images/small/IC2/itemArmorBronzeLegs/0.png deleted file mode 100644 index 7691af1f76..0000000000 Binary files a/front/public/images/small/IC2/itemArmorBronzeLegs/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorCFPack/1.png b/front/public/images/small/IC2/itemArmorCFPack/1.png deleted file mode 100644 index ac80885ddd..0000000000 Binary files a/front/public/images/small/IC2/itemArmorCFPack/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorCFPack/27.png b/front/public/images/small/IC2/itemArmorCFPack/27.png deleted file mode 100644 index ac80885ddd..0000000000 Binary files a/front/public/images/small/IC2/itemArmorCFPack/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorEnergypack/1.png b/front/public/images/small/IC2/itemArmorEnergypack/1.png deleted file mode 100644 index a5a05ab619..0000000000 Binary files a/front/public/images/small/IC2/itemArmorEnergypack/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorEnergypack/27.png b/front/public/images/small/IC2/itemArmorEnergypack/27.png deleted file mode 100644 index a5a05ab619..0000000000 Binary files a/front/public/images/small/IC2/itemArmorEnergypack/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorHazmatChestplate/0.png b/front/public/images/small/IC2/itemArmorHazmatChestplate/0.png deleted file mode 100644 index af00dd31ff..0000000000 Binary files a/front/public/images/small/IC2/itemArmorHazmatChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorHazmatHelmet/0.png b/front/public/images/small/IC2/itemArmorHazmatHelmet/0.png deleted file mode 100644 index 1d124b83c0..0000000000 Binary files a/front/public/images/small/IC2/itemArmorHazmatHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorHazmatLeggings/0.png b/front/public/images/small/IC2/itemArmorHazmatLeggings/0.png deleted file mode 100644 index 6e8f3fed1a..0000000000 Binary files a/front/public/images/small/IC2/itemArmorHazmatLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorJetpack/1.png b/front/public/images/small/IC2/itemArmorJetpack/1.png deleted file mode 100644 index e7dceeeaa8..0000000000 Binary files a/front/public/images/small/IC2/itemArmorJetpack/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorJetpack/27.png b/front/public/images/small/IC2/itemArmorJetpack/27.png deleted file mode 100644 index e7dceeeaa8..0000000000 Binary files a/front/public/images/small/IC2/itemArmorJetpack/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorJetpackElectric/1.png b/front/public/images/small/IC2/itemArmorJetpackElectric/1.png deleted file mode 100644 index 87d05588a9..0000000000 Binary files a/front/public/images/small/IC2/itemArmorJetpackElectric/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorJetpackElectric/27.png b/front/public/images/small/IC2/itemArmorJetpackElectric/27.png deleted file mode 100644 index 87d05588a9..0000000000 Binary files a/front/public/images/small/IC2/itemArmorJetpackElectric/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoBoots/1.png b/front/public/images/small/IC2/itemArmorNanoBoots/1.png deleted file mode 100644 index 91407ba8e5..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoBoots/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoBoots/27.png b/front/public/images/small/IC2/itemArmorNanoBoots/27.png deleted file mode 100644 index 91407ba8e5..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoBoots/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoChestplate/1.png b/front/public/images/small/IC2/itemArmorNanoChestplate/1.png deleted file mode 100644 index 828db4495a..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoChestplate/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoChestplate/27.png b/front/public/images/small/IC2/itemArmorNanoChestplate/27.png deleted file mode 100644 index 828db4495a..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoChestplate/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoHelmet/1.png b/front/public/images/small/IC2/itemArmorNanoHelmet/1.png deleted file mode 100644 index 8c63efb3a6..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoHelmet/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoHelmet/27.png b/front/public/images/small/IC2/itemArmorNanoHelmet/27.png deleted file mode 100644 index 8c63efb3a6..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoHelmet/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoLegs/1.png b/front/public/images/small/IC2/itemArmorNanoLegs/1.png deleted file mode 100644 index 33ec8b31a7..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoLegs/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorNanoLegs/27.png b/front/public/images/small/IC2/itemArmorNanoLegs/27.png deleted file mode 100644 index 33ec8b31a7..0000000000 Binary files a/front/public/images/small/IC2/itemArmorNanoLegs/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumBoots/1.png b/front/public/images/small/IC2/itemArmorQuantumBoots/1.png deleted file mode 100644 index bf6e283924..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumBoots/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumBoots/27.png b/front/public/images/small/IC2/itemArmorQuantumBoots/27.png deleted file mode 100644 index bf6e283924..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumBoots/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumChestplate/1.png b/front/public/images/small/IC2/itemArmorQuantumChestplate/1.png deleted file mode 100644 index b6dffd4cc3..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumChestplate/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumChestplate/27.png b/front/public/images/small/IC2/itemArmorQuantumChestplate/27.png deleted file mode 100644 index b6dffd4cc3..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumChestplate/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumHelmet/1.png b/front/public/images/small/IC2/itemArmorQuantumHelmet/1.png deleted file mode 100644 index ab1eaa466d..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumHelmet/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumHelmet/27.png b/front/public/images/small/IC2/itemArmorQuantumHelmet/27.png deleted file mode 100644 index ab1eaa466d..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumHelmet/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumLegs/1.png b/front/public/images/small/IC2/itemArmorQuantumLegs/1.png deleted file mode 100644 index d3cb2f4271..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumLegs/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorQuantumLegs/27.png b/front/public/images/small/IC2/itemArmorQuantumLegs/27.png deleted file mode 100644 index d3cb2f4271..0000000000 Binary files a/front/public/images/small/IC2/itemArmorQuantumLegs/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemArmorRubBoots/0.png b/front/public/images/small/IC2/itemArmorRubBoots/0.png deleted file mode 100644 index d89bdbb19f..0000000000 Binary files a/front/public/images/small/IC2/itemArmorRubBoots/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBarrel/0.png b/front/public/images/small/IC2/itemBarrel/0.png deleted file mode 100644 index 0ec2b9cca2..0000000000 Binary files a/front/public/images/small/IC2/itemBarrel/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeAdv/1.png b/front/public/images/small/IC2/itemBatChargeAdv/1.png deleted file mode 100644 index 24bd23e40d..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeAdv/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeAdv/26.png b/front/public/images/small/IC2/itemBatChargeAdv/26.png deleted file mode 100644 index 50d56886a6..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeAdv/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeCrystal/1.png b/front/public/images/small/IC2/itemBatChargeCrystal/1.png deleted file mode 100644 index d2c9a8cf1f..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeCrystal/26.png b/front/public/images/small/IC2/itemBatChargeCrystal/26.png deleted file mode 100644 index 1ab4b9147a..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeCrystal/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeLamaCrystal/1.png b/front/public/images/small/IC2/itemBatChargeLamaCrystal/1.png deleted file mode 100644 index 77d97e2267..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeLamaCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeLamaCrystal/26.png b/front/public/images/small/IC2/itemBatChargeLamaCrystal/26.png deleted file mode 100644 index c2dda43222..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeLamaCrystal/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeRE/1.png b/front/public/images/small/IC2/itemBatChargeRE/1.png deleted file mode 100644 index baf77276c9..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeRE/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatChargeRE/26.png b/front/public/images/small/IC2/itemBatChargeRE/26.png deleted file mode 100644 index e9d8dc36d6..0000000000 Binary files a/front/public/images/small/IC2/itemBatChargeRE/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatCrystal/1.png b/front/public/images/small/IC2/itemBatCrystal/1.png deleted file mode 100644 index e9445be323..0000000000 Binary files a/front/public/images/small/IC2/itemBatCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatCrystal/26.png b/front/public/images/small/IC2/itemBatCrystal/26.png deleted file mode 100644 index 0a9af08ce4..0000000000 Binary files a/front/public/images/small/IC2/itemBatCrystal/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatLamaCrystal/1.png b/front/public/images/small/IC2/itemBatLamaCrystal/1.png deleted file mode 100644 index 4396cbf9ae..0000000000 Binary files a/front/public/images/small/IC2/itemBatLamaCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatLamaCrystal/26.png b/front/public/images/small/IC2/itemBatLamaCrystal/26.png deleted file mode 100644 index 83e912f7fb..0000000000 Binary files a/front/public/images/small/IC2/itemBatLamaCrystal/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatRE/1.png b/front/public/images/small/IC2/itemBatRE/1.png deleted file mode 100644 index 55250e7277..0000000000 Binary files a/front/public/images/small/IC2/itemBatRE/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatREDischarged/0.png b/front/public/images/small/IC2/itemBatREDischarged/0.png deleted file mode 100644 index 9001908bf9..0000000000 Binary files a/front/public/images/small/IC2/itemBatREDischarged/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBatSU/0.png b/front/public/images/small/IC2/itemBatSU/0.png deleted file mode 100644 index 6c9ea52989..0000000000 Binary files a/front/public/images/small/IC2/itemBatSU/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBiochaff/0.png b/front/public/images/small/IC2/itemBiochaff/0.png deleted file mode 100644 index 4e875c7823..0000000000 Binary files a/front/public/images/small/IC2/itemBiochaff/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBoat/0.png b/front/public/images/small/IC2/itemBoat/0.png deleted file mode 100644 index 81e932dbfa..0000000000 Binary files a/front/public/images/small/IC2/itemBoat/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBoat/1.png b/front/public/images/small/IC2/itemBoat/1.png deleted file mode 100644 index 811b4219b9..0000000000 Binary files a/front/public/images/small/IC2/itemBoat/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBoat/2.png b/front/public/images/small/IC2/itemBoat/2.png deleted file mode 100644 index 7ed08b6836..0000000000 Binary files a/front/public/images/small/IC2/itemBoat/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemBoat/3.png b/front/public/images/small/IC2/itemBoat/3.png deleted file mode 100644 index cf2d76579d..0000000000 Binary files a/front/public/images/small/IC2/itemBoat/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/0.png b/front/public/images/small/IC2/itemCable/0.png deleted file mode 100644 index f21fdc8fc0..0000000000 Binary files a/front/public/images/small/IC2/itemCable/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/1.png b/front/public/images/small/IC2/itemCable/1.png deleted file mode 100644 index 00a709a118..0000000000 Binary files a/front/public/images/small/IC2/itemCable/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/10.png b/front/public/images/small/IC2/itemCable/10.png deleted file mode 100644 index 6879fb3470..0000000000 Binary files a/front/public/images/small/IC2/itemCable/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/11.png b/front/public/images/small/IC2/itemCable/11.png deleted file mode 100644 index 83232e63e3..0000000000 Binary files a/front/public/images/small/IC2/itemCable/11.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/12.png b/front/public/images/small/IC2/itemCable/12.png deleted file mode 100644 index a85310cf23..0000000000 Binary files a/front/public/images/small/IC2/itemCable/12.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/13.png b/front/public/images/small/IC2/itemCable/13.png deleted file mode 100644 index 06509d19f8..0000000000 Binary files a/front/public/images/small/IC2/itemCable/13.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/2.png b/front/public/images/small/IC2/itemCable/2.png deleted file mode 100644 index 3583b92532..0000000000 Binary files a/front/public/images/small/IC2/itemCable/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/3.png b/front/public/images/small/IC2/itemCable/3.png deleted file mode 100644 index bbf8728a26..0000000000 Binary files a/front/public/images/small/IC2/itemCable/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/5.png b/front/public/images/small/IC2/itemCable/5.png deleted file mode 100644 index 025f04d582..0000000000 Binary files a/front/public/images/small/IC2/itemCable/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/6.png b/front/public/images/small/IC2/itemCable/6.png deleted file mode 100644 index 276b1135ac..0000000000 Binary files a/front/public/images/small/IC2/itemCable/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCable/9.png b/front/public/images/small/IC2/itemCable/9.png deleted file mode 100644 index 44ef03f11f..0000000000 Binary files a/front/public/images/small/IC2/itemCable/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCasing/0.png b/front/public/images/small/IC2/itemCasing/0.png deleted file mode 100644 index f90f41e962..0000000000 Binary files a/front/public/images/small/IC2/itemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCasing/1.png b/front/public/images/small/IC2/itemCasing/1.png deleted file mode 100644 index 56f2fb760c..0000000000 Binary files a/front/public/images/small/IC2/itemCasing/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCasing/2.png b/front/public/images/small/IC2/itemCasing/2.png deleted file mode 100644 index 8bd2a65dc4..0000000000 Binary files a/front/public/images/small/IC2/itemCasing/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCasing/3.png b/front/public/images/small/IC2/itemCasing/3.png deleted file mode 100644 index 2c3fe29da2..0000000000 Binary files a/front/public/images/small/IC2/itemCasing/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCasing/4.png b/front/public/images/small/IC2/itemCasing/4.png deleted file mode 100644 index a98736ae00..0000000000 Binary files a/front/public/images/small/IC2/itemCasing/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCasing/5.png b/front/public/images/small/IC2/itemCasing/5.png deleted file mode 100644 index 5818a31494..0000000000 Binary files a/front/public/images/small/IC2/itemCasing/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCasing/6.png b/front/public/images/small/IC2/itemCasing/6.png deleted file mode 100644 index c7228c7dd6..0000000000 Binary files a/front/public/images/small/IC2/itemCasing/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/0.png b/front/public/images/small/IC2/itemCellEmpty/0.png deleted file mode 100644 index 11c614f10e..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/1.png b/front/public/images/small/IC2/itemCellEmpty/1.png deleted file mode 100644 index a106d6f97a..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/10.png b/front/public/images/small/IC2/itemCellEmpty/10.png deleted file mode 100644 index 279870de5e..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/11.png b/front/public/images/small/IC2/itemCellEmpty/11.png deleted file mode 100644 index 345a5f9d5d..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/11.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/12.png b/front/public/images/small/IC2/itemCellEmpty/12.png deleted file mode 100644 index 8239c7c3b1..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/12.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/13.png b/front/public/images/small/IC2/itemCellEmpty/13.png deleted file mode 100644 index 95468148d3..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/13.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/14.png b/front/public/images/small/IC2/itemCellEmpty/14.png deleted file mode 100644 index 212624ffb3..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/14.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/15.png b/front/public/images/small/IC2/itemCellEmpty/15.png deleted file mode 100644 index f8f796e12e..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/15.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/16.png b/front/public/images/small/IC2/itemCellEmpty/16.png deleted file mode 100644 index 65dce5d8ec..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/16.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/17.png b/front/public/images/small/IC2/itemCellEmpty/17.png deleted file mode 100644 index 162c854356..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/17.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/18.png b/front/public/images/small/IC2/itemCellEmpty/18.png deleted file mode 100644 index b987991b90..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/18.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/19.png b/front/public/images/small/IC2/itemCellEmpty/19.png deleted file mode 100644 index f19044f44d..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/19.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/2.png b/front/public/images/small/IC2/itemCellEmpty/2.png deleted file mode 100644 index eb981647c7..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/20.png b/front/public/images/small/IC2/itemCellEmpty/20.png deleted file mode 100644 index 33745028f8..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/20.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/3.png b/front/public/images/small/IC2/itemCellEmpty/3.png deleted file mode 100644 index 600a605489..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/4.png b/front/public/images/small/IC2/itemCellEmpty/4.png deleted file mode 100644 index 5e6dd5e452..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/5.png b/front/public/images/small/IC2/itemCellEmpty/5.png deleted file mode 100644 index 61f3964861..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/6.png b/front/public/images/small/IC2/itemCellEmpty/6.png deleted file mode 100644 index d882af8cad..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/7.png b/front/public/images/small/IC2/itemCellEmpty/7.png deleted file mode 100644 index dcecc1fce2..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/8.png b/front/public/images/small/IC2/itemCellEmpty/8.png deleted file mode 100644 index 04650d9e9f..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellEmpty/9.png b/front/public/images/small/IC2/itemCellEmpty/9.png deleted file mode 100644 index 2c5b101d0f..0000000000 Binary files a/front/public/images/small/IC2/itemCellEmpty/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCellHydrant/1.png b/front/public/images/small/IC2/itemCellHydrant/1.png deleted file mode 100644 index 1db55e3a0f..0000000000 Binary files a/front/public/images/small/IC2/itemCellHydrant/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCofeeBeans/0.png b/front/public/images/small/IC2/itemCofeeBeans/0.png deleted file mode 100644 index 8ed167a47a..0000000000 Binary files a/front/public/images/small/IC2/itemCofeeBeans/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCofeePowder/0.png b/front/public/images/small/IC2/itemCofeePowder/0.png deleted file mode 100644 index 7b0a5afa7e..0000000000 Binary files a/front/public/images/small/IC2/itemCofeePowder/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCoin/0.png b/front/public/images/small/IC2/itemCoin/0.png deleted file mode 100644 index ce196e469b..0000000000 Binary files a/front/public/images/small/IC2/itemCoin/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemContainmentbox/0.png b/front/public/images/small/IC2/itemContainmentbox/0.png deleted file mode 100644 index afa4c6680a..0000000000 Binary files a/front/public/images/small/IC2/itemContainmentbox/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCropSeed/0.png b/front/public/images/small/IC2/itemCropSeed/0.png deleted file mode 100644 index 023403cbd9..0000000000 Binary files a/front/public/images/small/IC2/itemCropSeed/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCropnalyzer/1.png b/front/public/images/small/IC2/itemCropnalyzer/1.png deleted file mode 100644 index b386674d31..0000000000 Binary files a/front/public/images/small/IC2/itemCropnalyzer/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCropnalyzer/26.png b/front/public/images/small/IC2/itemCropnalyzer/26.png deleted file mode 100644 index b386674d31..0000000000 Binary files a/front/public/images/small/IC2/itemCropnalyzer/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCrushedOre/0.png b/front/public/images/small/IC2/itemCrushedOre/0.png deleted file mode 100644 index 14d72b69f2..0000000000 Binary files a/front/public/images/small/IC2/itemCrushedOre/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCrushedOre/1.png b/front/public/images/small/IC2/itemCrushedOre/1.png deleted file mode 100644 index a8ff8f06b0..0000000000 Binary files a/front/public/images/small/IC2/itemCrushedOre/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCrushedOre/2.png b/front/public/images/small/IC2/itemCrushedOre/2.png deleted file mode 100644 index ddc78a6527..0000000000 Binary files a/front/public/images/small/IC2/itemCrushedOre/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCrushedOre/3.png b/front/public/images/small/IC2/itemCrushedOre/3.png deleted file mode 100644 index e5c3cd6a82..0000000000 Binary files a/front/public/images/small/IC2/itemCrushedOre/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCrushedOre/4.png b/front/public/images/small/IC2/itemCrushedOre/4.png deleted file mode 100644 index 4ee1850331..0000000000 Binary files a/front/public/images/small/IC2/itemCrushedOre/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCrushedOre/5.png b/front/public/images/small/IC2/itemCrushedOre/5.png deleted file mode 100644 index 73084bca24..0000000000 Binary files a/front/public/images/small/IC2/itemCrushedOre/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemCrushedOre/6.png b/front/public/images/small/IC2/itemCrushedOre/6.png deleted file mode 100644 index aeadfb0aa0..0000000000 Binary files a/front/public/images/small/IC2/itemCrushedOre/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDebug/0.png b/front/public/images/small/IC2/itemDebug/0.png deleted file mode 100644 index 9abc0674f6..0000000000 Binary files a/front/public/images/small/IC2/itemDebug/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/0.png b/front/public/images/small/IC2/itemDensePlates/0.png deleted file mode 100644 index ae05c3fcd0..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/1.png b/front/public/images/small/IC2/itemDensePlates/1.png deleted file mode 100644 index d6924d7dca..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/2.png b/front/public/images/small/IC2/itemDensePlates/2.png deleted file mode 100644 index 8999f33ad1..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/3.png b/front/public/images/small/IC2/itemDensePlates/3.png deleted file mode 100644 index 074674af1f..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/4.png b/front/public/images/small/IC2/itemDensePlates/4.png deleted file mode 100644 index 8738d4820c..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/5.png b/front/public/images/small/IC2/itemDensePlates/5.png deleted file mode 100644 index 067ee29de0..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/6.png b/front/public/images/small/IC2/itemDensePlates/6.png deleted file mode 100644 index 376d0b2a2c..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/7.png b/front/public/images/small/IC2/itemDensePlates/7.png deleted file mode 100644 index 7df841bf55..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDensePlates/8.png b/front/public/images/small/IC2/itemDensePlates/8.png deleted file mode 100644 index 6824fe5bd5..0000000000 Binary files a/front/public/images/small/IC2/itemDensePlates/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDiamondBlockCuttingBlade/0.png b/front/public/images/small/IC2/itemDiamondBlockCuttingBlade/0.png deleted file mode 100644 index 3bbe32fa9c..0000000000 Binary files a/front/public/images/small/IC2/itemDiamondBlockCuttingBlade/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDoorAlloy/0.png b/front/public/images/small/IC2/itemDoorAlloy/0.png deleted file mode 100644 index 5a31870f2f..0000000000 Binary files a/front/public/images/small/IC2/itemDoorAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/0.png b/front/public/images/small/IC2/itemDust/0.png deleted file mode 100644 index 2fb40c28e4..0000000000 Binary files a/front/public/images/small/IC2/itemDust/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/1.png b/front/public/images/small/IC2/itemDust/1.png deleted file mode 100644 index a1223adaab..0000000000 Binary files a/front/public/images/small/IC2/itemDust/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/10.png b/front/public/images/small/IC2/itemDust/10.png deleted file mode 100644 index a58ee326e7..0000000000 Binary files a/front/public/images/small/IC2/itemDust/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/11.png b/front/public/images/small/IC2/itemDust/11.png deleted file mode 100644 index efc3c825f3..0000000000 Binary files a/front/public/images/small/IC2/itemDust/11.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/12.png b/front/public/images/small/IC2/itemDust/12.png deleted file mode 100644 index dc9b00a0b2..0000000000 Binary files a/front/public/images/small/IC2/itemDust/12.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/13.png b/front/public/images/small/IC2/itemDust/13.png deleted file mode 100644 index e9242c5531..0000000000 Binary files a/front/public/images/small/IC2/itemDust/13.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/14.png b/front/public/images/small/IC2/itemDust/14.png deleted file mode 100644 index d6f9c512be..0000000000 Binary files a/front/public/images/small/IC2/itemDust/14.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/2.png b/front/public/images/small/IC2/itemDust/2.png deleted file mode 100644 index cc6372c3ff..0000000000 Binary files a/front/public/images/small/IC2/itemDust/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/3.png b/front/public/images/small/IC2/itemDust/3.png deleted file mode 100644 index d62ccd7f26..0000000000 Binary files a/front/public/images/small/IC2/itemDust/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/4.png b/front/public/images/small/IC2/itemDust/4.png deleted file mode 100644 index 66eded3024..0000000000 Binary files a/front/public/images/small/IC2/itemDust/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/5.png b/front/public/images/small/IC2/itemDust/5.png deleted file mode 100644 index ee49c23404..0000000000 Binary files a/front/public/images/small/IC2/itemDust/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/6.png b/front/public/images/small/IC2/itemDust/6.png deleted file mode 100644 index 9ad02e3841..0000000000 Binary files a/front/public/images/small/IC2/itemDust/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/7.png b/front/public/images/small/IC2/itemDust/7.png deleted file mode 100644 index 14b96e806d..0000000000 Binary files a/front/public/images/small/IC2/itemDust/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/8.png b/front/public/images/small/IC2/itemDust/8.png deleted file mode 100644 index 71a775d160..0000000000 Binary files a/front/public/images/small/IC2/itemDust/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust/9.png b/front/public/images/small/IC2/itemDust/9.png deleted file mode 100644 index ee3b63c5e3..0000000000 Binary files a/front/public/images/small/IC2/itemDust/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust2/0.png b/front/public/images/small/IC2/itemDust2/0.png deleted file mode 100644 index 6ef18dd9fe..0000000000 Binary files a/front/public/images/small/IC2/itemDust2/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust2/1.png b/front/public/images/small/IC2/itemDust2/1.png deleted file mode 100644 index b4a6205e22..0000000000 Binary files a/front/public/images/small/IC2/itemDust2/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust2/2.png b/front/public/images/small/IC2/itemDust2/2.png deleted file mode 100644 index 6313aedd16..0000000000 Binary files a/front/public/images/small/IC2/itemDust2/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDust2/3.png b/front/public/images/small/IC2/itemDust2/3.png deleted file mode 100644 index 8156fc1913..0000000000 Binary files a/front/public/images/small/IC2/itemDust2/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/0.png b/front/public/images/small/IC2/itemDustSmall/0.png deleted file mode 100644 index 60baf1039f..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/1.png b/front/public/images/small/IC2/itemDustSmall/1.png deleted file mode 100644 index 00620171c7..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/10.png b/front/public/images/small/IC2/itemDustSmall/10.png deleted file mode 100644 index a755cb10c3..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/2.png b/front/public/images/small/IC2/itemDustSmall/2.png deleted file mode 100644 index f9d7d11c5a..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/3.png b/front/public/images/small/IC2/itemDustSmall/3.png deleted file mode 100644 index 8e5e28e0b9..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/4.png b/front/public/images/small/IC2/itemDustSmall/4.png deleted file mode 100644 index e869904d2e..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/5.png b/front/public/images/small/IC2/itemDustSmall/5.png deleted file mode 100644 index d84b7b76f5..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/6.png b/front/public/images/small/IC2/itemDustSmall/6.png deleted file mode 100644 index 4bedbf2f87..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/7.png b/front/public/images/small/IC2/itemDustSmall/7.png deleted file mode 100644 index c5a30fd85a..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/8.png b/front/public/images/small/IC2/itemDustSmall/8.png deleted file mode 100644 index 3cfce8644e..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDustSmall/9.png b/front/public/images/small/IC2/itemDustSmall/9.png deleted file mode 100644 index 0ad62e4eda..0000000000 Binary files a/front/public/images/small/IC2/itemDustSmall/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDynamite/0.png b/front/public/images/small/IC2/itemDynamite/0.png deleted file mode 100644 index bff11300dc..0000000000 Binary files a/front/public/images/small/IC2/itemDynamite/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemDynamiteSticky/0.png b/front/public/images/small/IC2/itemDynamiteSticky/0.png deleted file mode 100644 index 7cb29b1ff4..0000000000 Binary files a/front/public/images/small/IC2/itemDynamiteSticky/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemFertilizer/0.png b/front/public/images/small/IC2/itemFertilizer/0.png deleted file mode 100644 index adaf804080..0000000000 Binary files a/front/public/images/small/IC2/itemFertilizer/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemFluidCell/0.png b/front/public/images/small/IC2/itemFluidCell/0.png deleted file mode 100644 index 4e481cbecf..0000000000 Binary files a/front/public/images/small/IC2/itemFluidCell/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemFoamSprayer/0.png b/front/public/images/small/IC2/itemFoamSprayer/0.png deleted file mode 100644 index b82b553c5c..0000000000 Binary files a/front/public/images/small/IC2/itemFoamSprayer/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemFreq/0.png b/front/public/images/small/IC2/itemFreq/0.png deleted file mode 100644 index 949fc1f78d..0000000000 Binary files a/front/public/images/small/IC2/itemFreq/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemFuelPlantBall/0.png b/front/public/images/small/IC2/itemFuelPlantBall/0.png deleted file mode 100644 index d77f639ea3..0000000000 Binary files a/front/public/images/small/IC2/itemFuelPlantBall/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemFuelRod/0.png b/front/public/images/small/IC2/itemFuelRod/0.png deleted file mode 100644 index 9834c88cab..0000000000 Binary files a/front/public/images/small/IC2/itemFuelRod/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemGrinPowder/0.png b/front/public/images/small/IC2/itemGrinPowder/0.png deleted file mode 100644 index c521627328..0000000000 Binary files a/front/public/images/small/IC2/itemGrinPowder/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemHarz/0.png b/front/public/images/small/IC2/itemHarz/0.png deleted file mode 100644 index cc25e3a267..0000000000 Binary files a/front/public/images/small/IC2/itemHarz/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemHops/0.png b/front/public/images/small/IC2/itemHops/0.png deleted file mode 100644 index 9be3b597da..0000000000 Binary files a/front/public/images/small/IC2/itemHops/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIngot/0.png b/front/public/images/small/IC2/itemIngot/0.png deleted file mode 100644 index 91da1b916d..0000000000 Binary files a/front/public/images/small/IC2/itemIngot/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIngot/1.png b/front/public/images/small/IC2/itemIngot/1.png deleted file mode 100644 index 28ad015f5c..0000000000 Binary files a/front/public/images/small/IC2/itemIngot/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIngot/2.png b/front/public/images/small/IC2/itemIngot/2.png deleted file mode 100644 index a04187022a..0000000000 Binary files a/front/public/images/small/IC2/itemIngot/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIngot/3.png b/front/public/images/small/IC2/itemIngot/3.png deleted file mode 100644 index 406a662cd4..0000000000 Binary files a/front/public/images/small/IC2/itemIngot/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIngot/4.png b/front/public/images/small/IC2/itemIngot/4.png deleted file mode 100644 index f61ce88c68..0000000000 Binary files a/front/public/images/small/IC2/itemIngot/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIngot/5.png b/front/public/images/small/IC2/itemIngot/5.png deleted file mode 100644 index bf5716a73c..0000000000 Binary files a/front/public/images/small/IC2/itemIngot/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIngot/6.png b/front/public/images/small/IC2/itemIngot/6.png deleted file mode 100644 index 621be40b51..0000000000 Binary files a/front/public/images/small/IC2/itemIngot/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemIronBlockCuttingBlade/0.png b/front/public/images/small/IC2/itemIronBlockCuttingBlade/0.png deleted file mode 100644 index 98fd0816e0..0000000000 Binary files a/front/public/images/small/IC2/itemIronBlockCuttingBlade/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemLathingTool/0.png b/front/public/images/small/IC2/itemLathingTool/0.png deleted file mode 100644 index d2e2359ae8..0000000000 Binary files a/front/public/images/small/IC2/itemLathingTool/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemMOX/0.png b/front/public/images/small/IC2/itemMOX/0.png deleted file mode 100644 index 726704a15b..0000000000 Binary files a/front/public/images/small/IC2/itemMOX/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemMugBooze/0.png b/front/public/images/small/IC2/itemMugBooze/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/IC2/itemMugBooze/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemMugCoffee/0.png b/front/public/images/small/IC2/itemMugCoffee/0.png deleted file mode 100644 index 00715fc353..0000000000 Binary files a/front/public/images/small/IC2/itemMugCoffee/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemMugCoffee/1.png b/front/public/images/small/IC2/itemMugCoffee/1.png deleted file mode 100644 index b6bbc43c32..0000000000 Binary files a/front/public/images/small/IC2/itemMugCoffee/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemMugCoffee/2.png b/front/public/images/small/IC2/itemMugCoffee/2.png deleted file mode 100644 index b9610737bc..0000000000 Binary files a/front/public/images/small/IC2/itemMugCoffee/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemMugEmpty/0.png b/front/public/images/small/IC2/itemMugEmpty/0.png deleted file mode 100644 index 9604349886..0000000000 Binary files a/front/public/images/small/IC2/itemMugEmpty/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemNanoSaber/1.png b/front/public/images/small/IC2/itemNanoSaber/1.png deleted file mode 100644 index d69605534f..0000000000 Binary files a/front/public/images/small/IC2/itemNanoSaber/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemNanoSaber/26.png b/front/public/images/small/IC2/itemNanoSaber/26.png deleted file mode 100644 index d69605534f..0000000000 Binary files a/front/public/images/small/IC2/itemNanoSaber/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemNightvisionGoggles/1.png b/front/public/images/small/IC2/itemNightvisionGoggles/1.png deleted file mode 100644 index 888c91cd13..0000000000 Binary files a/front/public/images/small/IC2/itemNightvisionGoggles/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemNightvisionGoggles/27.png b/front/public/images/small/IC2/itemNightvisionGoggles/27.png deleted file mode 100644 index 888c91cd13..0000000000 Binary files a/front/public/images/small/IC2/itemNightvisionGoggles/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemOreIridium/0.png b/front/public/images/small/IC2/itemOreIridium/0.png deleted file mode 100644 index 45d722fc30..0000000000 Binary files a/front/public/images/small/IC2/itemOreIridium/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartAlloy/0.png b/front/public/images/small/IC2/itemPartAlloy/0.png deleted file mode 100644 index 1e9acaeb41..0000000000 Binary files a/front/public/images/small/IC2/itemPartAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCFPowder/0.png b/front/public/images/small/IC2/itemPartCFPowder/0.png deleted file mode 100644 index 57e5352cf2..0000000000 Binary files a/front/public/images/small/IC2/itemPartCFPowder/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCarbonFibre/0.png b/front/public/images/small/IC2/itemPartCarbonFibre/0.png deleted file mode 100644 index c10d830f00..0000000000 Binary files a/front/public/images/small/IC2/itemPartCarbonFibre/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCarbonMesh/0.png b/front/public/images/small/IC2/itemPartCarbonMesh/0.png deleted file mode 100644 index 856d7038ef..0000000000 Binary files a/front/public/images/small/IC2/itemPartCarbonMesh/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCarbonPlate/0.png b/front/public/images/small/IC2/itemPartCarbonPlate/0.png deleted file mode 100644 index 19ae77e732..0000000000 Binary files a/front/public/images/small/IC2/itemPartCarbonPlate/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCircuit/0.png b/front/public/images/small/IC2/itemPartCircuit/0.png deleted file mode 100644 index f0344a5f31..0000000000 Binary files a/front/public/images/small/IC2/itemPartCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCircuitAdv/0.png b/front/public/images/small/IC2/itemPartCircuitAdv/0.png deleted file mode 100644 index c595ec9447..0000000000 Binary files a/front/public/images/small/IC2/itemPartCircuitAdv/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCoalBall/0.png b/front/public/images/small/IC2/itemPartCoalBall/0.png deleted file mode 100644 index bd7d1d8250..0000000000 Binary files a/front/public/images/small/IC2/itemPartCoalBall/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCoalBlock/0.png b/front/public/images/small/IC2/itemPartCoalBlock/0.png deleted file mode 100644 index 78c7e9dd08..0000000000 Binary files a/front/public/images/small/IC2/itemPartCoalBlock/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartCoalChunk/0.png b/front/public/images/small/IC2/itemPartCoalChunk/0.png deleted file mode 100644 index 8867443d3c..0000000000 Binary files a/front/public/images/small/IC2/itemPartCoalChunk/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartIndustrialDiamond/0.png b/front/public/images/small/IC2/itemPartIndustrialDiamond/0.png deleted file mode 100644 index b8f41c41ff..0000000000 Binary files a/front/public/images/small/IC2/itemPartIndustrialDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPartIridium/0.png b/front/public/images/small/IC2/itemPartIridium/0.png deleted file mode 100644 index 2e1a19cced..0000000000 Binary files a/front/public/images/small/IC2/itemPartIridium/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/0.png b/front/public/images/small/IC2/itemPlates/0.png deleted file mode 100644 index 78e572cc79..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/1.png b/front/public/images/small/IC2/itemPlates/1.png deleted file mode 100644 index 3363e0338f..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/2.png b/front/public/images/small/IC2/itemPlates/2.png deleted file mode 100644 index 6a137dbcf4..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/3.png b/front/public/images/small/IC2/itemPlates/3.png deleted file mode 100644 index 1862b9a3c8..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/4.png b/front/public/images/small/IC2/itemPlates/4.png deleted file mode 100644 index 5807643b1e..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/5.png b/front/public/images/small/IC2/itemPlates/5.png deleted file mode 100644 index 22b6166584..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/6.png b/front/public/images/small/IC2/itemPlates/6.png deleted file mode 100644 index f355f0e4f1..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/7.png b/front/public/images/small/IC2/itemPlates/7.png deleted file mode 100644 index a8712e7875..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlates/8.png b/front/public/images/small/IC2/itemPlates/8.png deleted file mode 100644 index e3e0289116..0000000000 Binary files a/front/public/images/small/IC2/itemPlates/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlutonium/0.png b/front/public/images/small/IC2/itemPlutonium/0.png deleted file mode 100644 index 14dff17d95..0000000000 Binary files a/front/public/images/small/IC2/itemPlutonium/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPlutoniumSmall/0.png b/front/public/images/small/IC2/itemPlutoniumSmall/0.png deleted file mode 100644 index 23c0074b20..0000000000 Binary files a/front/public/images/small/IC2/itemPlutoniumSmall/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPurifiedCrushedOre/0.png b/front/public/images/small/IC2/itemPurifiedCrushedOre/0.png deleted file mode 100644 index fa90e04104..0000000000 Binary files a/front/public/images/small/IC2/itemPurifiedCrushedOre/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPurifiedCrushedOre/1.png b/front/public/images/small/IC2/itemPurifiedCrushedOre/1.png deleted file mode 100644 index f8c17431ae..0000000000 Binary files a/front/public/images/small/IC2/itemPurifiedCrushedOre/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPurifiedCrushedOre/2.png b/front/public/images/small/IC2/itemPurifiedCrushedOre/2.png deleted file mode 100644 index 6030436fcb..0000000000 Binary files a/front/public/images/small/IC2/itemPurifiedCrushedOre/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPurifiedCrushedOre/3.png b/front/public/images/small/IC2/itemPurifiedCrushedOre/3.png deleted file mode 100644 index 462ea29d8b..0000000000 Binary files a/front/public/images/small/IC2/itemPurifiedCrushedOre/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPurifiedCrushedOre/4.png b/front/public/images/small/IC2/itemPurifiedCrushedOre/4.png deleted file mode 100644 index 7c22fe4326..0000000000 Binary files a/front/public/images/small/IC2/itemPurifiedCrushedOre/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPurifiedCrushedOre/5.png b/front/public/images/small/IC2/itemPurifiedCrushedOre/5.png deleted file mode 100644 index b779c9dcf8..0000000000 Binary files a/front/public/images/small/IC2/itemPurifiedCrushedOre/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemPurifiedCrushedOre/6.png b/front/public/images/small/IC2/itemPurifiedCrushedOre/6.png deleted file mode 100644 index e30873aa6d..0000000000 Binary files a/front/public/images/small/IC2/itemPurifiedCrushedOre/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRTGPellet/0.png b/front/public/images/small/IC2/itemRTGPellet/0.png deleted file mode 100644 index 529098b993..0000000000 Binary files a/front/public/images/small/IC2/itemRTGPellet/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/0.png b/front/public/images/small/IC2/itemRecipePart/0.png deleted file mode 100644 index 77759556ee..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/1.png b/front/public/images/small/IC2/itemRecipePart/1.png deleted file mode 100644 index 3d0036cb09..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/10.png b/front/public/images/small/IC2/itemRecipePart/10.png deleted file mode 100644 index 9af1a6c285..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/10.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/11.png b/front/public/images/small/IC2/itemRecipePart/11.png deleted file mode 100644 index 76f15f00f8..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/11.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/12.png b/front/public/images/small/IC2/itemRecipePart/12.png deleted file mode 100644 index 4aec4a8fdb..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/12.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/2.png b/front/public/images/small/IC2/itemRecipePart/2.png deleted file mode 100644 index df735a409a..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/3.png b/front/public/images/small/IC2/itemRecipePart/3.png deleted file mode 100644 index 3a34251347..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/4.png b/front/public/images/small/IC2/itemRecipePart/4.png deleted file mode 100644 index 35cb5d2b04..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/5.png b/front/public/images/small/IC2/itemRecipePart/5.png deleted file mode 100644 index 45eace610d..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/6.png b/front/public/images/small/IC2/itemRecipePart/6.png deleted file mode 100644 index bc9ce72477..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/7.png b/front/public/images/small/IC2/itemRecipePart/7.png deleted file mode 100644 index c9b02e600d..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/7.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/8.png b/front/public/images/small/IC2/itemRecipePart/8.png deleted file mode 100644 index 679bbcce20..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/8.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRecipePart/9.png b/front/public/images/small/IC2/itemRecipePart/9.png deleted file mode 100644 index faad2727d7..0000000000 Binary files a/front/public/images/small/IC2/itemRecipePart/9.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRemote/0.png b/front/public/images/small/IC2/itemRemote/0.png deleted file mode 100644 index 69621fe1d7..0000000000 Binary files a/front/public/images/small/IC2/itemRemote/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemRubber/0.png b/front/public/images/small/IC2/itemRubber/0.png deleted file mode 100644 index daf42ea258..0000000000 Binary files a/front/public/images/small/IC2/itemRubber/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemScanner/1.png b/front/public/images/small/IC2/itemScanner/1.png deleted file mode 100644 index ceab0c6701..0000000000 Binary files a/front/public/images/small/IC2/itemScanner/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemScanner/26.png b/front/public/images/small/IC2/itemScanner/26.png deleted file mode 100644 index ceab0c6701..0000000000 Binary files a/front/public/images/small/IC2/itemScanner/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemScannerAdv/1.png b/front/public/images/small/IC2/itemScannerAdv/1.png deleted file mode 100644 index ceab0c6701..0000000000 Binary files a/front/public/images/small/IC2/itemScannerAdv/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemScannerAdv/26.png b/front/public/images/small/IC2/itemScannerAdv/26.png deleted file mode 100644 index ceab0c6701..0000000000 Binary files a/front/public/images/small/IC2/itemScannerAdv/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemScrap/0.png b/front/public/images/small/IC2/itemScrap/0.png deleted file mode 100644 index 077daa4292..0000000000 Binary files a/front/public/images/small/IC2/itemScrap/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemScrapbox/0.png b/front/public/images/small/IC2/itemScrapbox/0.png deleted file mode 100644 index 21f11b5aec..0000000000 Binary files a/front/public/images/small/IC2/itemScrapbox/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemShardIridium/0.png b/front/public/images/small/IC2/itemShardIridium/0.png deleted file mode 100644 index f57a7f3b5d..0000000000 Binary files a/front/public/images/small/IC2/itemShardIridium/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemSlag/0.png b/front/public/images/small/IC2/itemSlag/0.png deleted file mode 100644 index b4532ad40b..0000000000 Binary files a/front/public/images/small/IC2/itemSlag/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemSolarHelmet/0.png b/front/public/images/small/IC2/itemSolarHelmet/0.png deleted file mode 100644 index 38c5c3bb8f..0000000000 Binary files a/front/public/images/small/IC2/itemSolarHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemStaticBoots/0.png b/front/public/images/small/IC2/itemStaticBoots/0.png deleted file mode 100644 index d89bdbb19f..0000000000 Binary files a/front/public/images/small/IC2/itemStaticBoots/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemSteamTurbine/1.png b/front/public/images/small/IC2/itemSteamTurbine/1.png deleted file mode 100644 index d927b84b7c..0000000000 Binary files a/front/public/images/small/IC2/itemSteamTurbine/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemSteamTurbineBlade/0.png b/front/public/images/small/IC2/itemSteamTurbineBlade/0.png deleted file mode 100644 index 278ba351a6..0000000000 Binary files a/front/public/images/small/IC2/itemSteamTurbineBlade/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTFBP/0.png b/front/public/images/small/IC2/itemTFBP/0.png deleted file mode 100644 index 76ca04fd06..0000000000 Binary files a/front/public/images/small/IC2/itemTFBP/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTFBPChilling/0.png b/front/public/images/small/IC2/itemTFBPChilling/0.png deleted file mode 100644 index ffe4beaf04..0000000000 Binary files a/front/public/images/small/IC2/itemTFBPChilling/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTFBPCultivation/0.png b/front/public/images/small/IC2/itemTFBPCultivation/0.png deleted file mode 100644 index acad82b5a4..0000000000 Binary files a/front/public/images/small/IC2/itemTFBPCultivation/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTFBPDesertification/0.png b/front/public/images/small/IC2/itemTFBPDesertification/0.png deleted file mode 100644 index 480925646c..0000000000 Binary files a/front/public/images/small/IC2/itemTFBPDesertification/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTFBPFlatification/0.png b/front/public/images/small/IC2/itemTFBPFlatification/0.png deleted file mode 100644 index 9bba5b7038..0000000000 Binary files a/front/public/images/small/IC2/itemTFBPFlatification/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTFBPIrrigation/0.png b/front/public/images/small/IC2/itemTFBPIrrigation/0.png deleted file mode 100644 index 290b7b7a60..0000000000 Binary files a/front/public/images/small/IC2/itemTFBPIrrigation/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTFBPMushroom/0.png b/front/public/images/small/IC2/itemTFBPMushroom/0.png deleted file mode 100644 index 929cbd0f0b..0000000000 Binary files a/front/public/images/small/IC2/itemTFBPMushroom/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTerraWart/0.png b/front/public/images/small/IC2/itemTerraWart/0.png deleted file mode 100644 index 0f01aa1b83..0000000000 Binary files a/front/public/images/small/IC2/itemTerraWart/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTinCan/0.png b/front/public/images/small/IC2/itemTinCan/0.png deleted file mode 100644 index 2108bbb049..0000000000 Binary files a/front/public/images/small/IC2/itemTinCan/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTinCanFilled/0.png b/front/public/images/small/IC2/itemTinCanFilled/0.png deleted file mode 100644 index 1b17ad4d42..0000000000 Binary files a/front/public/images/small/IC2/itemTinCanFilled/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolBronzeAxe/0.png b/front/public/images/small/IC2/itemToolBronzeAxe/0.png deleted file mode 100644 index 884426c868..0000000000 Binary files a/front/public/images/small/IC2/itemToolBronzeAxe/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolBronzeHoe/0.png b/front/public/images/small/IC2/itemToolBronzeHoe/0.png deleted file mode 100644 index e340fd5bb9..0000000000 Binary files a/front/public/images/small/IC2/itemToolBronzeHoe/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolBronzePickaxe/0.png b/front/public/images/small/IC2/itemToolBronzePickaxe/0.png deleted file mode 100644 index 01fb2ad8b4..0000000000 Binary files a/front/public/images/small/IC2/itemToolBronzePickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolBronzeSpade/0.png b/front/public/images/small/IC2/itemToolBronzeSpade/0.png deleted file mode 100644 index 7a5ea9d28e..0000000000 Binary files a/front/public/images/small/IC2/itemToolBronzeSpade/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolBronzeSword/0.png b/front/public/images/small/IC2/itemToolBronzeSword/0.png deleted file mode 100644 index 72f2f78b4c..0000000000 Binary files a/front/public/images/small/IC2/itemToolBronzeSword/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolChainsaw/1.png b/front/public/images/small/IC2/itemToolChainsaw/1.png deleted file mode 100644 index 7e47ad1620..0000000000 Binary files a/front/public/images/small/IC2/itemToolChainsaw/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolChainsaw/26.png b/front/public/images/small/IC2/itemToolChainsaw/26.png deleted file mode 100644 index 7e47ad1620..0000000000 Binary files a/front/public/images/small/IC2/itemToolChainsaw/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolCutter/0.png b/front/public/images/small/IC2/itemToolCutter/0.png deleted file mode 100644 index d0ef12fa08..0000000000 Binary files a/front/public/images/small/IC2/itemToolCutter/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolDDrill/1.png b/front/public/images/small/IC2/itemToolDDrill/1.png deleted file mode 100644 index 8944cece9b..0000000000 Binary files a/front/public/images/small/IC2/itemToolDDrill/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolDDrill/26.png b/front/public/images/small/IC2/itemToolDDrill/26.png deleted file mode 100644 index 8944cece9b..0000000000 Binary files a/front/public/images/small/IC2/itemToolDDrill/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolDrill/1.png b/front/public/images/small/IC2/itemToolDrill/1.png deleted file mode 100644 index a5cb98b719..0000000000 Binary files a/front/public/images/small/IC2/itemToolDrill/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolDrill/26.png b/front/public/images/small/IC2/itemToolDrill/26.png deleted file mode 100644 index a5cb98b719..0000000000 Binary files a/front/public/images/small/IC2/itemToolDrill/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolForgeHammer/0.png b/front/public/images/small/IC2/itemToolForgeHammer/0.png deleted file mode 100644 index b2a57ad91b..0000000000 Binary files a/front/public/images/small/IC2/itemToolForgeHammer/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolHoe/1.png b/front/public/images/small/IC2/itemToolHoe/1.png deleted file mode 100644 index 52b0c7a19c..0000000000 Binary files a/front/public/images/small/IC2/itemToolHoe/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolHoe/26.png b/front/public/images/small/IC2/itemToolHoe/26.png deleted file mode 100644 index 52b0c7a19c..0000000000 Binary files a/front/public/images/small/IC2/itemToolHoe/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolIridiumDrill/1.png b/front/public/images/small/IC2/itemToolIridiumDrill/1.png deleted file mode 100644 index 8a4ed29847..0000000000 Binary files a/front/public/images/small/IC2/itemToolIridiumDrill/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolIridiumDrill/26.png b/front/public/images/small/IC2/itemToolIridiumDrill/26.png deleted file mode 100644 index 8a4ed29847..0000000000 Binary files a/front/public/images/small/IC2/itemToolIridiumDrill/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolMEter/0.png b/front/public/images/small/IC2/itemToolMEter/0.png deleted file mode 100644 index 3ef2441e72..0000000000 Binary files a/front/public/images/small/IC2/itemToolMEter/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolMiningLaser/1.png b/front/public/images/small/IC2/itemToolMiningLaser/1.png deleted file mode 100644 index 008dbbc0fc..0000000000 Binary files a/front/public/images/small/IC2/itemToolMiningLaser/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolMiningLaser/26.png b/front/public/images/small/IC2/itemToolMiningLaser/26.png deleted file mode 100644 index 008dbbc0fc..0000000000 Binary files a/front/public/images/small/IC2/itemToolMiningLaser/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainter/0.png b/front/public/images/small/IC2/itemToolPainter/0.png deleted file mode 100644 index 97c0a7661f..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainter/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterBlack/0.png b/front/public/images/small/IC2/itemToolPainterBlack/0.png deleted file mode 100644 index f07cbca4e0..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterBlack/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterBlue/0.png b/front/public/images/small/IC2/itemToolPainterBlue/0.png deleted file mode 100644 index 7acf07724a..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterBlue/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterBrown/0.png b/front/public/images/small/IC2/itemToolPainterBrown/0.png deleted file mode 100644 index 9add920f17..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterBrown/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterCloud/0.png b/front/public/images/small/IC2/itemToolPainterCloud/0.png deleted file mode 100644 index 3058853a8e..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterCloud/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterCyan/0.png b/front/public/images/small/IC2/itemToolPainterCyan/0.png deleted file mode 100644 index e2572e8430..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterCyan/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterDarkGrey/0.png b/front/public/images/small/IC2/itemToolPainterDarkGrey/0.png deleted file mode 100644 index eb87cad9b3..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterDarkGrey/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterGreen/0.png b/front/public/images/small/IC2/itemToolPainterGreen/0.png deleted file mode 100644 index fd8885db05..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterGreen/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterLightGrey/0.png b/front/public/images/small/IC2/itemToolPainterLightGrey/0.png deleted file mode 100644 index 4faa12aac8..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterLightGrey/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterLime/0.png b/front/public/images/small/IC2/itemToolPainterLime/0.png deleted file mode 100644 index df91e567fc..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterLime/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterMagenta/0.png b/front/public/images/small/IC2/itemToolPainterMagenta/0.png deleted file mode 100644 index d92deec35a..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterMagenta/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterOrange/0.png b/front/public/images/small/IC2/itemToolPainterOrange/0.png deleted file mode 100644 index 996814fba2..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterOrange/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterPink/0.png b/front/public/images/small/IC2/itemToolPainterPink/0.png deleted file mode 100644 index 866558b91f..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterPink/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterPurple/0.png b/front/public/images/small/IC2/itemToolPainterPurple/0.png deleted file mode 100644 index c20ff5d77a..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterPurple/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterRed/0.png b/front/public/images/small/IC2/itemToolPainterRed/0.png deleted file mode 100644 index 77b94a8a86..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterRed/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterWhite/0.png b/front/public/images/small/IC2/itemToolPainterWhite/0.png deleted file mode 100644 index 73e767b1ac..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterWhite/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolPainterYellow/0.png b/front/public/images/small/IC2/itemToolPainterYellow/0.png deleted file mode 100644 index ee185c8218..0000000000 Binary files a/front/public/images/small/IC2/itemToolPainterYellow/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolWrench/0.png b/front/public/images/small/IC2/itemToolWrench/0.png deleted file mode 100644 index a4917b3957..0000000000 Binary files a/front/public/images/small/IC2/itemToolWrench/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolWrenchElectric/1.png b/front/public/images/small/IC2/itemToolWrenchElectric/1.png deleted file mode 100644 index 5fb4c4933a..0000000000 Binary files a/front/public/images/small/IC2/itemToolWrenchElectric/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolWrenchElectric/27.png b/front/public/images/small/IC2/itemToolWrenchElectric/27.png deleted file mode 100644 index 5fb4c4933a..0000000000 Binary files a/front/public/images/small/IC2/itemToolWrenchElectric/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemToolbox/0.png b/front/public/images/small/IC2/itemToolbox/0.png deleted file mode 100644 index b77c31598d..0000000000 Binary files a/front/public/images/small/IC2/itemToolbox/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTreetap/0.png b/front/public/images/small/IC2/itemTreetap/0.png deleted file mode 100644 index d8cc475efc..0000000000 Binary files a/front/public/images/small/IC2/itemTreetap/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTreetapElectric/1.png b/front/public/images/small/IC2/itemTreetapElectric/1.png deleted file mode 100644 index 6c5bb408f2..0000000000 Binary files a/front/public/images/small/IC2/itemTreetapElectric/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTreetapElectric/26.png b/front/public/images/small/IC2/itemTreetapElectric/26.png deleted file mode 100644 index 6c5bb408f2..0000000000 Binary files a/front/public/images/small/IC2/itemTreetapElectric/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTritiumCell/0.png b/front/public/images/small/IC2/itemTritiumCell/0.png deleted file mode 100644 index 1b8c1c94e6..0000000000 Binary files a/front/public/images/small/IC2/itemTritiumCell/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTurningBlanks/349525.png b/front/public/images/small/IC2/itemTurningBlanks/349525.png deleted file mode 100644 index b8bc327546..0000000000 Binary files a/front/public/images/small/IC2/itemTurningBlanks/349525.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemTurningBlanksWood/209715.png b/front/public/images/small/IC2/itemTurningBlanksWood/209715.png deleted file mode 100644 index 83258b3267..0000000000 Binary files a/front/public/images/small/IC2/itemTurningBlanksWood/209715.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemUran/0.png b/front/public/images/small/IC2/itemUran/0.png deleted file mode 100644 index ccb237e7a4..0000000000 Binary files a/front/public/images/small/IC2/itemUran/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemUran235/0.png b/front/public/images/small/IC2/itemUran235/0.png deleted file mode 100644 index 43bbe8bd6e..0000000000 Binary files a/front/public/images/small/IC2/itemUran235/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemUran235small/0.png b/front/public/images/small/IC2/itemUran235small/0.png deleted file mode 100644 index e3090cd45d..0000000000 Binary files a/front/public/images/small/IC2/itemUran235small/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemUran238/0.png b/front/public/images/small/IC2/itemUran238/0.png deleted file mode 100644 index dabcbb7e84..0000000000 Binary files a/front/public/images/small/IC2/itemUran238/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemWeed/0.png b/front/public/images/small/IC2/itemWeed/0.png deleted file mode 100644 index 22c733596e..0000000000 Binary files a/front/public/images/small/IC2/itemWeed/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemWeedEx/0.png b/front/public/images/small/IC2/itemWeedEx/0.png deleted file mode 100644 index f798a00227..0000000000 Binary files a/front/public/images/small/IC2/itemWeedEx/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemWeedingTrowel/0.png b/front/public/images/small/IC2/itemWeedingTrowel/0.png deleted file mode 100644 index d7aca44790..0000000000 Binary files a/front/public/images/small/IC2/itemWeedingTrowel/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemcrystalmemory/0.png b/front/public/images/small/IC2/itemcrystalmemory/0.png deleted file mode 100644 index 5c332964f7..0000000000 Binary files a/front/public/images/small/IC2/itemcrystalmemory/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemironrotor/1.png b/front/public/images/small/IC2/itemironrotor/1.png deleted file mode 100644 index b388e0a2ec..0000000000 Binary files a/front/public/images/small/IC2/itemironrotor/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemsteelrotor/1.png b/front/public/images/small/IC2/itemsteelrotor/1.png deleted file mode 100644 index e4d1955683..0000000000 Binary files a/front/public/images/small/IC2/itemsteelrotor/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemupgradekit/0.png b/front/public/images/small/IC2/itemupgradekit/0.png deleted file mode 100644 index 1c43c9f81b..0000000000 Binary files a/front/public/images/small/IC2/itemupgradekit/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemwcarbonrotor/1.png b/front/public/images/small/IC2/itemwcarbonrotor/1.png deleted file mode 100644 index b08b114309..0000000000 Binary files a/front/public/images/small/IC2/itemwcarbonrotor/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/itemwoodrotor/1.png b/front/public/images/small/IC2/itemwoodrotor/1.png deleted file mode 100644 index e77313468c..0000000000 Binary files a/front/public/images/small/IC2/itemwoodrotor/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/obscurator/1.png b/front/public/images/small/IC2/obscurator/1.png deleted file mode 100644 index dc25279504..0000000000 Binary files a/front/public/images/small/IC2/obscurator/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/obscurator/27.png b/front/public/images/small/IC2/obscurator/27.png deleted file mode 100644 index dc25279504..0000000000 Binary files a/front/public/images/small/IC2/obscurator/27.png and /dev/null differ diff --git a/front/public/images/small/IC2/plasmaLauncher/1.png b/front/public/images/small/IC2/plasmaLauncher/1.png deleted file mode 100644 index e094bd37ee..0000000000 Binary files a/front/public/images/small/IC2/plasmaLauncher/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/plasmaLauncher/26.png b/front/public/images/small/IC2/plasmaLauncher/26.png deleted file mode 100644 index e094bd37ee..0000000000 Binary files a/front/public/images/small/IC2/plasmaLauncher/26.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorCondensator/1.png b/front/public/images/small/IC2/reactorCondensator/1.png deleted file mode 100644 index 67cdb7bcca..0000000000 Binary files a/front/public/images/small/IC2/reactorCondensator/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorCondensatorLap/1.png b/front/public/images/small/IC2/reactorCondensatorLap/1.png deleted file mode 100644 index 7ffca1eb9e..0000000000 Binary files a/front/public/images/small/IC2/reactorCondensatorLap/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorCoolantSimple/1.png b/front/public/images/small/IC2/reactorCoolantSimple/1.png deleted file mode 100644 index 1db55e3a0f..0000000000 Binary files a/front/public/images/small/IC2/reactorCoolantSimple/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorCoolantSix/1.png b/front/public/images/small/IC2/reactorCoolantSix/1.png deleted file mode 100644 index 074faa485e..0000000000 Binary files a/front/public/images/small/IC2/reactorCoolantSix/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorCoolantTriple/1.png b/front/public/images/small/IC2/reactorCoolantTriple/1.png deleted file mode 100644 index ee00732681..0000000000 Binary files a/front/public/images/small/IC2/reactorCoolantTriple/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorHeatSwitch/1.png b/front/public/images/small/IC2/reactorHeatSwitch/1.png deleted file mode 100644 index 0680a9bdd7..0000000000 Binary files a/front/public/images/small/IC2/reactorHeatSwitch/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorHeatSwitchCore/1.png b/front/public/images/small/IC2/reactorHeatSwitchCore/1.png deleted file mode 100644 index 343febf881..0000000000 Binary files a/front/public/images/small/IC2/reactorHeatSwitchCore/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorHeatSwitchDiamond/1.png b/front/public/images/small/IC2/reactorHeatSwitchDiamond/1.png deleted file mode 100644 index 95e6ffa41c..0000000000 Binary files a/front/public/images/small/IC2/reactorHeatSwitchDiamond/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorHeatSwitchSpread/1.png b/front/public/images/small/IC2/reactorHeatSwitchSpread/1.png deleted file mode 100644 index 253ea63268..0000000000 Binary files a/front/public/images/small/IC2/reactorHeatSwitchSpread/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorLithiumCell/1.png b/front/public/images/small/IC2/reactorLithiumCell/1.png deleted file mode 100644 index f0a3d7b9fc..0000000000 Binary files a/front/public/images/small/IC2/reactorLithiumCell/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorMOXDual/1.png b/front/public/images/small/IC2/reactorMOXDual/1.png deleted file mode 100644 index a2f3c8e0d7..0000000000 Binary files a/front/public/images/small/IC2/reactorMOXDual/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorMOXDualdepleted/0.png b/front/public/images/small/IC2/reactorMOXDualdepleted/0.png deleted file mode 100644 index 142841dc90..0000000000 Binary files a/front/public/images/small/IC2/reactorMOXDualdepleted/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorMOXQuad/1.png b/front/public/images/small/IC2/reactorMOXQuad/1.png deleted file mode 100644 index ecaaa72701..0000000000 Binary files a/front/public/images/small/IC2/reactorMOXQuad/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorMOXQuaddepleted/0.png b/front/public/images/small/IC2/reactorMOXQuaddepleted/0.png deleted file mode 100644 index 9eaf21c072..0000000000 Binary files a/front/public/images/small/IC2/reactorMOXQuaddepleted/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorMOXSimple/1.png b/front/public/images/small/IC2/reactorMOXSimple/1.png deleted file mode 100644 index 6725c2f628..0000000000 Binary files a/front/public/images/small/IC2/reactorMOXSimple/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorMOXSimpledepleted/0.png b/front/public/images/small/IC2/reactorMOXSimpledepleted/0.png deleted file mode 100644 index c4c1c14e1e..0000000000 Binary files a/front/public/images/small/IC2/reactorMOXSimpledepleted/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorPlating/0.png b/front/public/images/small/IC2/reactorPlating/0.png deleted file mode 100644 index d7e97490a9..0000000000 Binary files a/front/public/images/small/IC2/reactorPlating/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorPlatingExplosive/0.png b/front/public/images/small/IC2/reactorPlatingExplosive/0.png deleted file mode 100644 index 202525ea3a..0000000000 Binary files a/front/public/images/small/IC2/reactorPlatingExplosive/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorPlatingHeat/0.png b/front/public/images/small/IC2/reactorPlatingHeat/0.png deleted file mode 100644 index 010be5c6c6..0000000000 Binary files a/front/public/images/small/IC2/reactorPlatingHeat/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorReflector/1.png b/front/public/images/small/IC2/reactorReflector/1.png deleted file mode 100644 index d7aeb744c2..0000000000 Binary files a/front/public/images/small/IC2/reactorReflector/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorReflectorThick/1.png b/front/public/images/small/IC2/reactorReflectorThick/1.png deleted file mode 100644 index d6bc79827d..0000000000 Binary files a/front/public/images/small/IC2/reactorReflectorThick/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorUraniumDual/1.png b/front/public/images/small/IC2/reactorUraniumDual/1.png deleted file mode 100644 index 7a88acbcdb..0000000000 Binary files a/front/public/images/small/IC2/reactorUraniumDual/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorUraniumDualdepleted/0.png b/front/public/images/small/IC2/reactorUraniumDualdepleted/0.png deleted file mode 100644 index 0f3c89a2ed..0000000000 Binary files a/front/public/images/small/IC2/reactorUraniumDualdepleted/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorUraniumQuad/1.png b/front/public/images/small/IC2/reactorUraniumQuad/1.png deleted file mode 100644 index 567da5f5ca..0000000000 Binary files a/front/public/images/small/IC2/reactorUraniumQuad/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorUraniumQuaddepleted/0.png b/front/public/images/small/IC2/reactorUraniumQuaddepleted/0.png deleted file mode 100644 index eb5cbb67ae..0000000000 Binary files a/front/public/images/small/IC2/reactorUraniumQuaddepleted/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorUraniumSimple/1.png b/front/public/images/small/IC2/reactorUraniumSimple/1.png deleted file mode 100644 index 33c61b46b8..0000000000 Binary files a/front/public/images/small/IC2/reactorUraniumSimple/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorUraniumSimpledepleted/0.png b/front/public/images/small/IC2/reactorUraniumSimpledepleted/0.png deleted file mode 100644 index bb1f9a6c99..0000000000 Binary files a/front/public/images/small/IC2/reactorUraniumSimpledepleted/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorVent/1.png b/front/public/images/small/IC2/reactorVent/1.png deleted file mode 100644 index edd698c3d6..0000000000 Binary files a/front/public/images/small/IC2/reactorVent/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorVentCore/1.png b/front/public/images/small/IC2/reactorVentCore/1.png deleted file mode 100644 index 3ef207ccf0..0000000000 Binary files a/front/public/images/small/IC2/reactorVentCore/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorVentDiamond/1.png b/front/public/images/small/IC2/reactorVentDiamond/1.png deleted file mode 100644 index 7e4407070f..0000000000 Binary files a/front/public/images/small/IC2/reactorVentDiamond/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorVentGold/1.png b/front/public/images/small/IC2/reactorVentGold/1.png deleted file mode 100644 index 3022ae4f6c..0000000000 Binary files a/front/public/images/small/IC2/reactorVentGold/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/reactorVentSpread/0.png b/front/public/images/small/IC2/reactorVentSpread/0.png deleted file mode 100644 index 1bdd3106a7..0000000000 Binary files a/front/public/images/small/IC2/reactorVentSpread/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/upgradeModule/0.png b/front/public/images/small/IC2/upgradeModule/0.png deleted file mode 100644 index 25f7c7130f..0000000000 Binary files a/front/public/images/small/IC2/upgradeModule/0.png and /dev/null differ diff --git a/front/public/images/small/IC2/upgradeModule/1.png b/front/public/images/small/IC2/upgradeModule/1.png deleted file mode 100644 index e475bd4cd3..0000000000 Binary files a/front/public/images/small/IC2/upgradeModule/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/upgradeModule/2.png b/front/public/images/small/IC2/upgradeModule/2.png deleted file mode 100644 index c39bc9c72e..0000000000 Binary files a/front/public/images/small/IC2/upgradeModule/2.png and /dev/null differ diff --git a/front/public/images/small/IC2/upgradeModule/3.png b/front/public/images/small/IC2/upgradeModule/3.png deleted file mode 100644 index 795acb0cc7..0000000000 Binary files a/front/public/images/small/IC2/upgradeModule/3.png and /dev/null differ diff --git a/front/public/images/small/IC2/upgradeModule/4.png b/front/public/images/small/IC2/upgradeModule/4.png deleted file mode 100644 index bffc109847..0000000000 Binary files a/front/public/images/small/IC2/upgradeModule/4.png and /dev/null differ diff --git a/front/public/images/small/IC2/upgradeModule/5.png b/front/public/images/small/IC2/upgradeModule/5.png deleted file mode 100644 index 713bcb9870..0000000000 Binary files a/front/public/images/small/IC2/upgradeModule/5.png and /dev/null differ diff --git a/front/public/images/small/IC2/upgradeModule/6.png b/front/public/images/small/IC2/upgradeModule/6.png deleted file mode 100644 index 8526b25df0..0000000000 Binary files a/front/public/images/small/IC2/upgradeModule/6.png and /dev/null differ diff --git a/front/public/images/small/IC2/windmeter/1.png b/front/public/images/small/IC2/windmeter/1.png deleted file mode 100644 index fd6b88f350..0000000000 Binary files a/front/public/images/small/IC2/windmeter/1.png and /dev/null differ diff --git a/front/public/images/small/IC2/windmeter/26.png b/front/public/images/small/IC2/windmeter/26.png deleted file mode 100644 index fd6b88f350..0000000000 Binary files a/front/public/images/small/IC2/windmeter/26.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/CardAppeng/0.png b/front/public/images/small/IC2NuclearControl/CardAppeng/0.png deleted file mode 100644 index badd9f979e..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/CardAppeng/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/Item55ReactorCard/0.png b/front/public/images/small/IC2NuclearControl/Item55ReactorCard/0.png deleted file mode 100644 index fde4e38778..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/Item55ReactorCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemEnergyArrayLocationCard/0.png b/front/public/images/small/IC2NuclearControl/ItemEnergyArrayLocationCard/0.png deleted file mode 100644 index 6323909749..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemEnergyArrayLocationCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemEnergySensorKit/0.png b/front/public/images/small/IC2NuclearControl/ItemEnergySensorKit/0.png deleted file mode 100644 index 78b436ddd6..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemEnergySensorKit/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemEnergySensorLocationCard/0.png b/front/public/images/small/IC2NuclearControl/ItemEnergySensorLocationCard/0.png deleted file mode 100644 index e1901e56d5..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemEnergySensorLocationCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemInventoryScannerCard/0.png b/front/public/images/small/IC2NuclearControl/ItemInventoryScannerCard/0.png deleted file mode 100644 index 902f7d3cb9..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemInventoryScannerCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemLiquidArrayLocationCard/0.png b/front/public/images/small/IC2NuclearControl/ItemLiquidArrayLocationCard/0.png deleted file mode 100644 index 27870f019a..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemLiquidArrayLocationCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/0.png b/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/0.png deleted file mode 100644 index af1bc9915d..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/1.png b/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/1.png deleted file mode 100644 index c3fb54e2a6..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/1.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/2.png b/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/2.png deleted file mode 100644 index 96d0b03920..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorKit/2.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/0.png b/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/0.png deleted file mode 100644 index 5c0a73bc0c..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/1.png b/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/1.png deleted file mode 100644 index 31b5eb698f..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/1.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/2.png b/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/2.png deleted file mode 100644 index caac045ec0..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemMultipleSensorLocationCard/2.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemPanelMemoryCard/0.png b/front/public/images/small/IC2NuclearControl/ItemPanelMemoryCard/0.png deleted file mode 100644 index a90d5ee278..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemPanelMemoryCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemRemoteSensorKit/0.png b/front/public/images/small/IC2NuclearControl/ItemRemoteSensorKit/0.png deleted file mode 100644 index db46aac39b..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemRemoteSensorKit/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemSensorLocationCard/0.png b/front/public/images/small/IC2NuclearControl/ItemSensorLocationCard/0.png deleted file mode 100644 index fde4e38778..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemSensorLocationCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemTextCard/0.png b/front/public/images/small/IC2NuclearControl/ItemTextCard/0.png deleted file mode 100644 index 6dcc7f0725..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemTextCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemTimeCard/0.png b/front/public/images/small/IC2NuclearControl/ItemTimeCard/0.png deleted file mode 100644 index f2176fba8f..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemTimeCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemToolDigitalThermometer/1.png b/front/public/images/small/IC2NuclearControl/ItemToolDigitalThermometer/1.png deleted file mode 100644 index 9a82775d99..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemToolDigitalThermometer/1.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemToolDigitalThermometer/101.png b/front/public/images/small/IC2NuclearControl/ItemToolDigitalThermometer/101.png deleted file mode 100644 index 9a82775d99..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemToolDigitalThermometer/101.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemToolThermometer/0.png b/front/public/images/small/IC2NuclearControl/ItemToolThermometer/0.png deleted file mode 100644 index 9559dbbd11..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemToolThermometer/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemUpgrade/0.png b/front/public/images/small/IC2NuclearControl/ItemUpgrade/0.png deleted file mode 100644 index f2f1fbbdc2..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemUpgrade/1.png b/front/public/images/small/IC2NuclearControl/ItemUpgrade/1.png deleted file mode 100644 index f1a9d8828d..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemUpgrade/2.png b/front/public/images/small/IC2NuclearControl/ItemUpgrade/2.png deleted file mode 100644 index e78c50ac7e..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemUpgrade/2.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemVanillaMachineCard/0.png b/front/public/images/small/IC2NuclearControl/ItemVanillaMachineCard/0.png deleted file mode 100644 index 902f7d3cb9..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemVanillaMachineCard/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/ItemVanilliaKit/0.png b/front/public/images/small/IC2NuclearControl/ItemVanilliaKit/0.png deleted file mode 100644 index 95829144d5..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/ItemVanilliaKit/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/KitAppeng/0.png b/front/public/images/small/IC2NuclearControl/KitAppeng/0.png deleted file mode 100644 index 42eeb60e97..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/KitAppeng/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/0.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/0.png deleted file mode 100644 index f10d186940..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/1.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/1.png deleted file mode 100644 index 4c04c7c088..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/1.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/2.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/2.png deleted file mode 100644 index 70392f0dd5..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/2.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/3.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/3.png deleted file mode 100644 index 33bcba3a63..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlLight/3.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/0.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/0.png deleted file mode 100644 index 9e7421a8bc..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/1.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/1.png deleted file mode 100644 index 3f3d92bc5c..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/1.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/10.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/10.png deleted file mode 100644 index eaccc91cfe..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/10.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/2.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/2.png deleted file mode 100644 index 8248e8cb62..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/2.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/3.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/3.png deleted file mode 100644 index f2cfaddcd6..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/3.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/4.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/4.png deleted file mode 100644 index c96cb7729f..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/4.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/5.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/5.png deleted file mode 100644 index 6c06c0fc4a..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/5.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/6.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/6.png deleted file mode 100644 index e82af03885..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/6.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/7.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/7.png deleted file mode 100644 index c7ebe1a9ee..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/7.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/8.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/8.png deleted file mode 100644 index 094b90c9ab..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/8.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/9.png b/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/9.png deleted file mode 100644 index 5236d88c89..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/blockNuclearControlMain/9.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/networkLink/0.png b/front/public/images/small/IC2NuclearControl/networkLink/0.png deleted file mode 100644 index 072200342e..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/networkLink/0.png and /dev/null differ diff --git a/front/public/images/small/IC2NuclearControl/remoteMonitor/0.png b/front/public/images/small/IC2NuclearControl/remoteMonitor/0.png deleted file mode 100644 index 1ce4c1bcfd..0000000000 Binary files a/front/public/images/small/IC2NuclearControl/remoteMonitor/0.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketFired/0.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketFired/0.png deleted file mode 100644 index 832283e987..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketFired/0.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketLava/0.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketLava/0.png deleted file mode 100644 index f8019357da..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketLava/0.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketMilk/0.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketMilk/0.png deleted file mode 100644 index 61632d8222..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketMilk/0.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketUnfired/0.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketUnfired/0.png deleted file mode 100644 index b0f7b39c12..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketUnfired/0.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketWater/0.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketWater/0.png deleted file mode 100644 index 361eddf926..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketWater/0.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/0.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/0.png deleted file mode 100644 index c6bd74d897..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/0.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/1.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/1.png deleted file mode 100644 index 4c2ab8c03f..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/1.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/10.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/10.png deleted file mode 100644 index 6e8f4c5ddb..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/10.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/11.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/11.png deleted file mode 100644 index f45546e0cb..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/11.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/12.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/12.png deleted file mode 100644 index 9bcae754d2..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/12.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/13.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/13.png deleted file mode 100644 index 34694d7ccc..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/13.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/14.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/14.png deleted file mode 100644 index 9bcae754d2..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/14.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/15.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/15.png deleted file mode 100644 index 7e84acd383..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/15.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/16.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/16.png deleted file mode 100644 index c9faffb88b..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/16.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/17.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/17.png deleted file mode 100644 index c6e9e77f11..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/17.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/18.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/18.png deleted file mode 100644 index cb991cc2aa..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/18.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/19.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/19.png deleted file mode 100644 index 1b8d35c3b3..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/19.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/2.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/2.png deleted file mode 100644 index de64536f46..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/2.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/20.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/20.png deleted file mode 100644 index b46bda4ea1..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/20.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/21.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/21.png deleted file mode 100644 index 6c6207f04b..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/21.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/22.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/22.png deleted file mode 100644 index 4bf0c88bcb..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/22.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/23.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/23.png deleted file mode 100644 index ed702e3471..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/23.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/24.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/24.png deleted file mode 100644 index 3527e69743..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/24.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/25.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/25.png deleted file mode 100644 index c3128808b5..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/25.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/26.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/26.png deleted file mode 100644 index 19f8581aea..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/26.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/27.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/27.png deleted file mode 100644 index c8f041e79f..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/27.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/28.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/28.png deleted file mode 100644 index 5214a2dfa4..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/28.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/29.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/29.png deleted file mode 100644 index fb6c1e997a..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/29.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/3.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/3.png deleted file mode 100644 index 95d736063b..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/3.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/30.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/30.png deleted file mode 100644 index df1f92bc24..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/30.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/31.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/31.png deleted file mode 100644 index c53bd1cf44..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/31.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/4.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/4.png deleted file mode 100644 index 8e5bd789d7..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/4.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/5.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/5.png deleted file mode 100644 index 4a31e6c569..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/5.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/6.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/6.png deleted file mode 100644 index 4194281b07..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/6.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/7.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/7.png deleted file mode 100644 index 51c83b5317..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/7.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/8.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/8.png deleted file mode 100644 index 4bf0c88bcb..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/8.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/9.png b/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/9.png deleted file mode 100644 index 3ca7bac2ea..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/clayBucketsTinkers/9.png and /dev/null differ diff --git a/front/public/images/small/IguanaTweaksTConstruct/rubberChicken/0.png b/front/public/images/small/IguanaTweaksTConstruct/rubberChicken/0.png deleted file mode 100644 index 0f8eda859b..0000000000 Binary files a/front/public/images/small/IguanaTweaksTConstruct/rubberChicken/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/0.png b/front/public/images/small/IronChest/BlockIronChest/0.png deleted file mode 100644 index 71e0b79504..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/1.png b/front/public/images/small/IronChest/BlockIronChest/1.png deleted file mode 100644 index bf7888d530..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/1.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/2.png b/front/public/images/small/IronChest/BlockIronChest/2.png deleted file mode 100644 index 243603ccb2..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/2.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/3.png b/front/public/images/small/IronChest/BlockIronChest/3.png deleted file mode 100644 index c5283057f2..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/3.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/4.png b/front/public/images/small/IronChest/BlockIronChest/4.png deleted file mode 100644 index be6de89719..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/4.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/5.png b/front/public/images/small/IronChest/BlockIronChest/5.png deleted file mode 100644 index d397594d7c..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/5.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/6.png b/front/public/images/small/IronChest/BlockIronChest/6.png deleted file mode 100644 index 508c8695b5..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/6.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/7.png b/front/public/images/small/IronChest/BlockIronChest/7.png deleted file mode 100644 index fbebcd9c4d..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/7.png and /dev/null differ diff --git a/front/public/images/small/IronChest/BlockIronChest/9.png b/front/public/images/small/IronChest/BlockIronChest/9.png deleted file mode 100644 index b854ed25d3..0000000000 Binary files a/front/public/images/small/IronChest/BlockIronChest/9.png and /dev/null differ diff --git a/front/public/images/small/IronChest/copperIronUpgrade/0.png b/front/public/images/small/IronChest/copperIronUpgrade/0.png deleted file mode 100644 index 8577c9db56..0000000000 Binary files a/front/public/images/small/IronChest/copperIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/copperSteelUpgrade/0.png b/front/public/images/small/IronChest/copperSteelUpgrade/0.png deleted file mode 100644 index 25117b375b..0000000000 Binary files a/front/public/images/small/IronChest/copperSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/crystalDarkSteelUpgrade/0.png b/front/public/images/small/IronChest/crystalDarkSteelUpgrade/0.png deleted file mode 100644 index e9b6666e40..0000000000 Binary files a/front/public/images/small/IronChest/crystalDarkSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/diamondCrystalUpgrade/0.png b/front/public/images/small/IronChest/diamondCrystalUpgrade/0.png deleted file mode 100644 index afb6282631..0000000000 Binary files a/front/public/images/small/IronChest/diamondCrystalUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/diamondDarkSteelUpgrade/0.png b/front/public/images/small/IronChest/diamondDarkSteelUpgrade/0.png deleted file mode 100644 index 93f62fcf2a..0000000000 Binary files a/front/public/images/small/IronChest/diamondDarkSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/diamondObsidianUpgrade/0.png b/front/public/images/small/IronChest/diamondObsidianUpgrade/0.png deleted file mode 100644 index 31a26c567a..0000000000 Binary files a/front/public/images/small/IronChest/diamondObsidianUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/goldDiamondUpgrade/0.png b/front/public/images/small/IronChest/goldDiamondUpgrade/0.png deleted file mode 100644 index 6e2fe734d8..0000000000 Binary files a/front/public/images/small/IronChest/goldDiamondUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/ironGoldUpgrade/0.png b/front/public/images/small/IronChest/ironGoldUpgrade/0.png deleted file mode 100644 index edefcb5430..0000000000 Binary files a/front/public/images/small/IronChest/ironGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/ironSteelUpgrade/0.png b/front/public/images/small/IronChest/ironSteelUpgrade/0.png deleted file mode 100644 index d21bafcb7d..0000000000 Binary files a/front/public/images/small/IronChest/ironSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/obsidianDarkSteelUpgrade/0.png b/front/public/images/small/IronChest/obsidianDarkSteelUpgrade/0.png deleted file mode 100644 index e0e1abecf6..0000000000 Binary files a/front/public/images/small/IronChest/obsidianDarkSteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/steelGoldUpgrade/0.png b/front/public/images/small/IronChest/steelGoldUpgrade/0.png deleted file mode 100644 index f93ddd02cd..0000000000 Binary files a/front/public/images/small/IronChest/steelGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/woodCopperUpgrade/0.png b/front/public/images/small/IronChest/woodCopperUpgrade/0.png deleted file mode 100644 index 6fe2c40f88..0000000000 Binary files a/front/public/images/small/IronChest/woodCopperUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/IronChest/woodIronUpgrade/0.png b/front/public/images/small/IronChest/woodIronUpgrade/0.png deleted file mode 100644 index f8d17b3ac9..0000000000 Binary files a/front/public/images/small/IronChest/woodIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/barrel/0.png b/front/public/images/small/JABBA/barrel/0.png deleted file mode 100644 index b32f528d4d..0000000000 Binary files a/front/public/images/small/JABBA/barrel/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/0.png b/front/public/images/small/JABBA/hammer/0.png deleted file mode 100644 index 4226ebb778..0000000000 Binary files a/front/public/images/small/JABBA/hammer/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/1.png b/front/public/images/small/JABBA/hammer/1.png deleted file mode 100644 index ff25a0b278..0000000000 Binary files a/front/public/images/small/JABBA/hammer/1.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/2.png b/front/public/images/small/JABBA/hammer/2.png deleted file mode 100644 index 7fd05b2484..0000000000 Binary files a/front/public/images/small/JABBA/hammer/2.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/3.png b/front/public/images/small/JABBA/hammer/3.png deleted file mode 100644 index 269cc3daa8..0000000000 Binary files a/front/public/images/small/JABBA/hammer/3.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/4.png b/front/public/images/small/JABBA/hammer/4.png deleted file mode 100644 index 5a8a3cbf3a..0000000000 Binary files a/front/public/images/small/JABBA/hammer/4.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/5.png b/front/public/images/small/JABBA/hammer/5.png deleted file mode 100644 index 4d525f771c..0000000000 Binary files a/front/public/images/small/JABBA/hammer/5.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/6.png b/front/public/images/small/JABBA/hammer/6.png deleted file mode 100644 index a6de7643c0..0000000000 Binary files a/front/public/images/small/JABBA/hammer/6.png and /dev/null differ diff --git a/front/public/images/small/JABBA/hammer/7.png b/front/public/images/small/JABBA/hammer/7.png deleted file mode 100644 index 75dbb8b1d9..0000000000 Binary files a/front/public/images/small/JABBA/hammer/7.png and /dev/null differ diff --git a/front/public/images/small/JABBA/mover/0.png b/front/public/images/small/JABBA/mover/0.png deleted file mode 100644 index bb74653030..0000000000 Binary files a/front/public/images/small/JABBA/mover/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/moverDiamond/0.png b/front/public/images/small/JABBA/moverDiamond/0.png deleted file mode 100644 index cdaa9ad7f0..0000000000 Binary files a/front/public/images/small/JABBA/moverDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/moverFolded/0.png b/front/public/images/small/JABBA/moverFolded/0.png deleted file mode 100644 index b03aacf5b9..0000000000 Binary files a/front/public/images/small/JABBA/moverFolded/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/tuningFork/0.png b/front/public/images/small/JABBA/tuningFork/0.png deleted file mode 100644 index 09b1cef257..0000000000 Binary files a/front/public/images/small/JABBA/tuningFork/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/0.png b/front/public/images/small/JABBA/upgradeCore/0.png deleted file mode 100644 index fba3eb5b9a..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/1.png b/front/public/images/small/JABBA/upgradeCore/1.png deleted file mode 100644 index 9b58a0a586..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/1.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/10.png b/front/public/images/small/JABBA/upgradeCore/10.png deleted file mode 100644 index 5e32d3c95f..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/10.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/11.png b/front/public/images/small/JABBA/upgradeCore/11.png deleted file mode 100644 index da822d07c4..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/11.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/12.png b/front/public/images/small/JABBA/upgradeCore/12.png deleted file mode 100644 index 8d31bdd5d2..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/12.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/13.png b/front/public/images/small/JABBA/upgradeCore/13.png deleted file mode 100644 index b82ff19128..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/13.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/2.png b/front/public/images/small/JABBA/upgradeCore/2.png deleted file mode 100644 index 8b159ec080..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/2.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/3.png b/front/public/images/small/JABBA/upgradeCore/3.png deleted file mode 100644 index aa5fba6dfc..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/3.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/4.png b/front/public/images/small/JABBA/upgradeCore/4.png deleted file mode 100644 index 944fbbd49a..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/4.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/5.png b/front/public/images/small/JABBA/upgradeCore/5.png deleted file mode 100644 index 432e86ff7c..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/5.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/6.png b/front/public/images/small/JABBA/upgradeCore/6.png deleted file mode 100644 index c793d2a29b..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/6.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/7.png b/front/public/images/small/JABBA/upgradeCore/7.png deleted file mode 100644 index e1810ebcee..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/7.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/8.png b/front/public/images/small/JABBA/upgradeCore/8.png deleted file mode 100644 index ddf55ac75e..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/8.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeCore/9.png b/front/public/images/small/JABBA/upgradeCore/9.png deleted file mode 100644 index 5fb73a22ee..0000000000 Binary files a/front/public/images/small/JABBA/upgradeCore/9.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeSide/0.png b/front/public/images/small/JABBA/upgradeSide/0.png deleted file mode 100644 index 4364b7b4b8..0000000000 Binary files a/front/public/images/small/JABBA/upgradeSide/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeSide/1.png b/front/public/images/small/JABBA/upgradeSide/1.png deleted file mode 100644 index f0cce92325..0000000000 Binary files a/front/public/images/small/JABBA/upgradeSide/1.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeSide/2.png b/front/public/images/small/JABBA/upgradeSide/2.png deleted file mode 100644 index a8cad3a386..0000000000 Binary files a/front/public/images/small/JABBA/upgradeSide/2.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/0.png b/front/public/images/small/JABBA/upgradeStructural/0.png deleted file mode 100644 index cd5fb51f38..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/0.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/1.png b/front/public/images/small/JABBA/upgradeStructural/1.png deleted file mode 100644 index 74e7bb1e30..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/1.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/10.png b/front/public/images/small/JABBA/upgradeStructural/10.png deleted file mode 100644 index 96365088ef..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/10.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/11.png b/front/public/images/small/JABBA/upgradeStructural/11.png deleted file mode 100644 index 82632e0e2a..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/11.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/12.png b/front/public/images/small/JABBA/upgradeStructural/12.png deleted file mode 100644 index 735e5bcfda..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/12.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/13.png b/front/public/images/small/JABBA/upgradeStructural/13.png deleted file mode 100644 index 2bd0c55746..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/13.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/2.png b/front/public/images/small/JABBA/upgradeStructural/2.png deleted file mode 100644 index 45ecf07032..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/2.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/3.png b/front/public/images/small/JABBA/upgradeStructural/3.png deleted file mode 100644 index b518674fce..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/3.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/4.png b/front/public/images/small/JABBA/upgradeStructural/4.png deleted file mode 100644 index ca83aa2cad..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/4.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/5.png b/front/public/images/small/JABBA/upgradeStructural/5.png deleted file mode 100644 index 7740295a83..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/5.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/6.png b/front/public/images/small/JABBA/upgradeStructural/6.png deleted file mode 100644 index a0611df703..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/6.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/7.png b/front/public/images/small/JABBA/upgradeStructural/7.png deleted file mode 100644 index 519cdd7a09..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/7.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/8.png b/front/public/images/small/JABBA/upgradeStructural/8.png deleted file mode 100644 index 6c8a33682c..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/8.png and /dev/null differ diff --git a/front/public/images/small/JABBA/upgradeStructural/9.png b/front/public/images/small/JABBA/upgradeStructural/9.png deleted file mode 100644 index 3f11ddc36f..0000000000 Binary files a/front/public/images/small/JABBA/upgradeStructural/9.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.ItemPipeSignCreator/0.png b/front/public/images/small/LogisticsPipes/item.ItemPipeSignCreator/0.png deleted file mode 100644 index 72c6af110b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.ItemPipeSignCreator/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeBlockRequestTable/0.png b/front/public/images/small/LogisticsPipes/item.PipeBlockRequestTable/0.png deleted file mode 100644 index c18807761a..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeBlockRequestTable/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeFluidBasic/0.png b/front/public/images/small/LogisticsPipes/item.PipeFluidBasic/0.png deleted file mode 100644 index ef19a3df3f..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeFluidBasic/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeFluidExtractor/0.png b/front/public/images/small/LogisticsPipes/item.PipeFluidExtractor/0.png deleted file mode 100644 index 797e1883aa..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeFluidExtractor/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeFluidInsertion/0.png b/front/public/images/small/LogisticsPipes/item.PipeFluidInsertion/0.png deleted file mode 100644 index af4dc03ce7..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeFluidInsertion/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeFluidProvider/0.png b/front/public/images/small/LogisticsPipes/item.PipeFluidProvider/0.png deleted file mode 100644 index 61543232bb..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeFluidProvider/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeFluidRequestLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeFluidRequestLogistics/0.png deleted file mode 100644 index 48a4033533..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeFluidRequestLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeFluidSatellite/0.png b/front/public/images/small/LogisticsPipes/item.PipeFluidSatellite/0.png deleted file mode 100644 index a59cce3c47..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeFluidSatellite/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeFluidSupplierMk2/0.png b/front/public/images/small/LogisticsPipes/item.PipeFluidSupplierMk2/0.png deleted file mode 100644 index af8b0cf1de..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeFluidSupplierMk2/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsApiaristAnalyser/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsApiaristAnalyser/0.png deleted file mode 100644 index a1d84af519..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsApiaristAnalyser/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsApiaristSink/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsApiaristSink/0.png deleted file mode 100644 index 07f7bfc10d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsApiaristSink/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsBasicLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsBasicLogistics/0.png deleted file mode 100644 index b6ea88232f..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsBasicLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsBasicTransport/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsBasicTransport/0.png deleted file mode 100644 index b6ea88232f..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsBasicTransport/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogistics/0.png deleted file mode 100644 index b5b22dc966..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogisticsMk2/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogisticsMk2/0.png deleted file mode 100644 index eb237ab5e3..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogisticsMk2/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogisticsMk3/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogisticsMk3/0.png deleted file mode 100644 index 81cad50155..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsCraftingLogisticsMk3/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsFirewall/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsFirewall/0.png deleted file mode 100644 index 43e60a9f20..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsFirewall/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsFluidSupplier/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsFluidSupplier/0.png deleted file mode 100644 index e0ea949036..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsFluidSupplier/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsInvSysConnector/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsInvSysConnector/0.png deleted file mode 100644 index 1d0d4591eb..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsInvSysConnector/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsProviderLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsProviderLogistics/0.png deleted file mode 100644 index 7bcc57d8d4..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsProviderLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsProviderLogisticsMk2/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsProviderLogisticsMk2/0.png deleted file mode 100644 index 06e3eba575..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsProviderLogisticsMk2/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsRemoteOrdererLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsRemoteOrdererLogistics/0.png deleted file mode 100644 index 2db3de0429..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsRemoteOrdererLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsRequestLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsRequestLogistics/0.png deleted file mode 100644 index 21640c1768..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsRequestLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsRequestLogisticsMk2/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsRequestLogisticsMk2/0.png deleted file mode 100644 index fc5f3bd480..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsRequestLogisticsMk2/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsSatelliteLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsSatelliteLogistics/0.png deleted file mode 100644 index fdafe04716..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsSatelliteLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsSupplierLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsSupplierLogistics/0.png deleted file mode 100644 index 817eb16c77..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsSupplierLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsSystemDestinationLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsSystemDestinationLogistics/0.png deleted file mode 100644 index 59058475e7..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsSystemDestinationLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeItemsSystemEntranceLogistics/0.png b/front/public/images/small/LogisticsPipes/item.PipeItemsSystemEntranceLogistics/0.png deleted file mode 100644 index c8aa6042ac..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeItemsSystemEntranceLogistics/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk1/0.png b/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk1/0.png deleted file mode 100644 index a449a186ee..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk1/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk2/0.png b/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk2/0.png deleted file mode 100644 index f5da483209..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk2/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk3/0.png b/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk3/0.png deleted file mode 100644 index 74aa4e9f97..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk3/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk4/0.png b/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk4/0.png deleted file mode 100644 index 1cf7a3fa1f..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk4/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk5/0.png b/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk5/0.png deleted file mode 100644 index 24b45fa28f..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.PipeLogisticsChassiMk5/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.brokenItem/0.png b/front/public/images/small/LogisticsPipes/item.brokenItem/0.png deleted file mode 100644 index 7866333f6b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.brokenItem/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemDisk/0.png b/front/public/images/small/LogisticsPipes/item.itemDisk/0.png deleted file mode 100644 index 67d9db43b7..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemDisk/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/0.png b/front/public/images/small/LogisticsPipes/item.itemModule/0.png deleted file mode 100644 index 86d33f2021..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/1.png b/front/public/images/small/LogisticsPipes/item.itemModule/1.png deleted file mode 100644 index d3c1ff8d57..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/1.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/10.png b/front/public/images/small/LogisticsPipes/item.itemModule/10.png deleted file mode 100644 index e014d437de..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/10.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/103.png b/front/public/images/small/LogisticsPipes/item.itemModule/103.png deleted file mode 100644 index 33ed3f5678..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/103.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/107.png b/front/public/images/small/LogisticsPipes/item.itemModule/107.png deleted file mode 100644 index 30085d6cbf..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/107.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/11.png b/front/public/images/small/LogisticsPipes/item.itemModule/11.png deleted file mode 100644 index 9fbc480f37..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/11.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/12.png b/front/public/images/small/LogisticsPipes/item.itemModule/12.png deleted file mode 100644 index 6b0b635508..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/12.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/13.png b/front/public/images/small/LogisticsPipes/item.itemModule/13.png deleted file mode 100644 index e306cb0f1e..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/13.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/131.png b/front/public/images/small/LogisticsPipes/item.itemModule/131.png deleted file mode 100644 index 84c69bcb1d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/131.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/14.png b/front/public/images/small/LogisticsPipes/item.itemModule/14.png deleted file mode 100644 index 5caae36b42..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/14.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/15.png b/front/public/images/small/LogisticsPipes/item.itemModule/15.png deleted file mode 100644 index ae0f20f0cf..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/15.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/16.png b/front/public/images/small/LogisticsPipes/item.itemModule/16.png deleted file mode 100644 index bd6d5823f5..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/16.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/17.png b/front/public/images/small/LogisticsPipes/item.itemModule/17.png deleted file mode 100644 index ca54e0829b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/17.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/2.png b/front/public/images/small/LogisticsPipes/item.itemModule/2.png deleted file mode 100644 index ecb6aeb65d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/2.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/203.png b/front/public/images/small/LogisticsPipes/item.itemModule/203.png deleted file mode 100644 index c380abc437..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/203.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/207.png b/front/public/images/small/LogisticsPipes/item.itemModule/207.png deleted file mode 100644 index a41aa5168a..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/207.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/3.png b/front/public/images/small/LogisticsPipes/item.itemModule/3.png deleted file mode 100644 index ea1c0b30d1..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/3.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/30.png b/front/public/images/small/LogisticsPipes/item.itemModule/30.png deleted file mode 100644 index d84860e330..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/30.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/300.png b/front/public/images/small/LogisticsPipes/item.itemModule/300.png deleted file mode 100644 index 73fafdd9c8..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/300.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/301.png b/front/public/images/small/LogisticsPipes/item.itemModule/301.png deleted file mode 100644 index 9fb09f4a90..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/301.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/31.png b/front/public/images/small/LogisticsPipes/item.itemModule/31.png deleted file mode 100644 index 81e25c45ba..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/31.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/4.png b/front/public/images/small/LogisticsPipes/item.itemModule/4.png deleted file mode 100644 index cdfcc98109..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/4.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/5.png b/front/public/images/small/LogisticsPipes/item.itemModule/5.png deleted file mode 100644 index e1fc9bd635..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/5.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/500.png b/front/public/images/small/LogisticsPipes/item.itemModule/500.png deleted file mode 100644 index d453db8471..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/500.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/501.png b/front/public/images/small/LogisticsPipes/item.itemModule/501.png deleted file mode 100644 index 5e77e486f1..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/501.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/502.png b/front/public/images/small/LogisticsPipes/item.itemModule/502.png deleted file mode 100644 index c170d7e510..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/502.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/6.png b/front/public/images/small/LogisticsPipes/item.itemModule/6.png deleted file mode 100644 index 02bd833220..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/6.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/600.png b/front/public/images/small/LogisticsPipes/item.itemModule/600.png deleted file mode 100644 index 8f4db7c35c..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/600.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/601.png b/front/public/images/small/LogisticsPipes/item.itemModule/601.png deleted file mode 100644 index f230a13a5e..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/601.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/602.png b/front/public/images/small/LogisticsPipes/item.itemModule/602.png deleted file mode 100644 index 66a51e31b4..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/602.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/7.png b/front/public/images/small/LogisticsPipes/item.itemModule/7.png deleted file mode 100644 index abc84ced9d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/7.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/8.png b/front/public/images/small/LogisticsPipes/item.itemModule/8.png deleted file mode 100644 index 36e8204f1d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/8.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemModule/9.png b/front/public/images/small/LogisticsPipes/item.itemModule/9.png deleted file mode 100644 index 9ac3147233..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemModule/9.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/0.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/0.png deleted file mode 100644 index 91e487279c..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/1.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/1.png deleted file mode 100644 index 6efc721563..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/10.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/10.png deleted file mode 100644 index ef1624fa6e..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/10.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/11.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/11.png deleted file mode 100644 index 55876fd699..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/11.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/12.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/12.png deleted file mode 100644 index 45ca7ef3fd..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/12.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/13.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/13.png deleted file mode 100644 index 6f36e5171d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/13.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/14.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/14.png deleted file mode 100644 index 62ded61c7f..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/14.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/15.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/15.png deleted file mode 100644 index a3c80c8b85..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/15.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/2.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/2.png deleted file mode 100644 index 91e40c63a6..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/2.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/20.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/20.png deleted file mode 100644 index 291693b6b7..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/20.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/21.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/21.png deleted file mode 100644 index 6bad58085b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/21.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/22.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/22.png deleted file mode 100644 index f11879988c..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/22.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/23.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/23.png deleted file mode 100644 index 079f7a8fb8..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/23.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/24.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/24.png deleted file mode 100644 index f6fe19a376..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/24.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/25.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/25.png deleted file mode 100644 index f9e9e5de15..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/25.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/26.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/26.png deleted file mode 100644 index 86563137b3..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/26.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/3.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/3.png deleted file mode 100644 index df178f2869..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/3.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/30.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/30.png deleted file mode 100644 index 2d08bb6f8c..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/30.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/32.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/32.png deleted file mode 100644 index 69754b5f1e..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/32.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/33.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/33.png deleted file mode 100644 index 54f4169515..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/33.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/34.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/34.png deleted file mode 100644 index b751c00dfc..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/34.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/35.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/35.png deleted file mode 100644 index f99f1e431b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/35.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/36.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/36.png deleted file mode 100644 index e41c298ff3..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/36.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/4.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/4.png deleted file mode 100644 index df3f880ec0..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/4.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/40.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/40.png deleted file mode 100644 index 17dc614c0f..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/40.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/41.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/41.png deleted file mode 100644 index 35000cd923..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/41.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/42.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/42.png deleted file mode 100644 index b4229a64af..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/42.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/44.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/44.png deleted file mode 100644 index 7d6ac4b6d5..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/44.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/5.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/5.png deleted file mode 100644 index 898d77dd20..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/5.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.itemUpgrade/6.png b/front/public/images/small/LogisticsPipes/item.itemUpgrade/6.png deleted file mode 100644 index b8031989ac..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.itemUpgrade/6.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsHUDGlasses/0.png b/front/public/images/small/LogisticsPipes/item.logisticsHUDGlasses/0.png deleted file mode 100644 index eaf4c4dce8..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsHUDGlasses/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsItemCard/0.png b/front/public/images/small/LogisticsPipes/item.logisticsItemCard/0.png deleted file mode 100644 index 778af129e1..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsItemCard/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/0.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/0.png deleted file mode 100644 index a97742a751..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/1.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/1.png deleted file mode 100644 index e45c90f229..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/1.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/2.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/2.png deleted file mode 100644 index b1c1a77e22..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/2.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/3.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/3.png deleted file mode 100644 index a9560c1fbb..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/3.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/4.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/4.png deleted file mode 100644 index 5950b805d7..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/4.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/5.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/5.png deleted file mode 100644 index 5e18516e43..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/5.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/6.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/6.png deleted file mode 100644 index eb519cf425..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/6.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/7.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/7.png deleted file mode 100644 index 96707434ea..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/7.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.logisticsParts/8.png b/front/public/images/small/LogisticsPipes/item.logisticsParts/8.png deleted file mode 100644 index f5031a1ed2..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.logisticsParts/8.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/0.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/0.png deleted file mode 100644 index 5ed168573d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/1.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/1.png deleted file mode 100644 index 267c27cc87..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/1.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/10.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/10.png deleted file mode 100644 index 5596b4456c..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/10.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/11.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/11.png deleted file mode 100644 index 18343643be..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/11.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/12.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/12.png deleted file mode 100644 index d3b4cb2291..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/12.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/13.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/13.png deleted file mode 100644 index 72926c69db..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/13.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/14.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/14.png deleted file mode 100644 index bd878d38db..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/14.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/15.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/15.png deleted file mode 100644 index 53d7e8c28b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/15.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/2.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/2.png deleted file mode 100644 index 5596b4456c..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/2.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/3.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/3.png deleted file mode 100644 index 18343643be..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/3.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/4.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/4.png deleted file mode 100644 index d3b4cb2291..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/4.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/5.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/5.png deleted file mode 100644 index 72926c69db..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/5.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/6.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/6.png deleted file mode 100644 index bd878d38db..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/6.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/7.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/7.png deleted file mode 100644 index 53d7e8c28b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/7.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/8.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/8.png deleted file mode 100644 index 5ed168573d..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/8.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeComponents/9.png b/front/public/images/small/LogisticsPipes/item.pipeComponents/9.png deleted file mode 100644 index 267c27cc87..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeComponents/9.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.pipeController/0.png b/front/public/images/small/LogisticsPipes/item.pipeController/0.png deleted file mode 100644 index 5b0a13dac0..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.pipeController/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/0.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/0.png deleted file mode 100644 index 28b7344eda..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/1.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/1.png deleted file mode 100644 index 70d7a4d992..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/1.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/10.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/10.png deleted file mode 100644 index 9d9ec4f598..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/10.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/11.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/11.png deleted file mode 100644 index c090f1e040..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/11.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/12.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/12.png deleted file mode 100644 index 1061169f2b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/12.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/13.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/13.png deleted file mode 100644 index 146a2b19f1..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/13.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/14.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/14.png deleted file mode 100644 index 7a0c361fe0..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/14.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/15.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/15.png deleted file mode 100644 index 792b592c45..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/15.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/16.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/16.png deleted file mode 100644 index caef2d2e85..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/16.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/2.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/2.png deleted file mode 100644 index 3811a18485..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/2.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/3.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/3.png deleted file mode 100644 index 8df0eeb385..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/3.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/4.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/4.png deleted file mode 100644 index 0cdadc6ff6..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/4.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/5.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/5.png deleted file mode 100644 index d7b7a95a3c..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/5.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/6.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/6.png deleted file mode 100644 index 7ad9aadade..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/6.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/7.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/7.png deleted file mode 100644 index adb48ab72b..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/7.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/8.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/8.png deleted file mode 100644 index 705b4df592..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/8.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/9.png b/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/9.png deleted file mode 100644 index 3f50d7b7af..0000000000 Binary files a/front/public/images/small/LogisticsPipes/item.remoteOrdererItem/9.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsPipeBlock/0.png b/front/public/images/small/LogisticsPipes/logisticsPipeBlock/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsPipeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/0.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/0.png deleted file mode 100644 index a725204c53..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/0.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/1.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/1.png deleted file mode 100644 index cc81608ea1..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/1.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/11.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/11.png deleted file mode 100644 index 689dc3f237..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/11.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/12.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/12.png deleted file mode 100644 index 4ddbe90103..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/12.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/2.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/2.png deleted file mode 100644 index 77dc1b06c7..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/2.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/3.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/3.png deleted file mode 100644 index 18d6e435c9..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/3.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/4.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/4.png deleted file mode 100644 index fb21002e83..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/4.png and /dev/null differ diff --git a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/5.png b/front/public/images/small/LogisticsPipes/logisticsSolidBlock/5.png deleted file mode 100644 index a84d2850f1..0000000000 Binary files a/front/public/images/small/LogisticsPipes/logisticsSolidBlock/5.png and /dev/null differ diff --git a/front/public/images/small/MCFrames/mcframes.frame/0.png b/front/public/images/small/MCFrames/mcframes.frame/0.png deleted file mode 100644 index 9a787a8445..0000000000 Binary files a/front/public/images/small/MCFrames/mcframes.frame/0.png and /dev/null differ diff --git a/front/public/images/small/MCFrames/mcframes.motor/0.png b/front/public/images/small/MCFrames/mcframes.motor/0.png deleted file mode 100644 index 6e2b0e0a97..0000000000 Binary files a/front/public/images/small/MCFrames/mcframes.motor/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/apimancersDrainer/0.png b/front/public/images/small/MagicBees/apimancersDrainer/0.png deleted file mode 100644 index 020e4262a8..0000000000 Binary files a/front/public/images/small/MagicBees/apimancersDrainer/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/backpack.thaumaturgeT1/0.png b/front/public/images/small/MagicBees/backpack.thaumaturgeT1/0.png deleted file mode 100644 index 68ee14d243..0000000000 Binary files a/front/public/images/small/MagicBees/backpack.thaumaturgeT1/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/backpack.thaumaturgeT2/0.png b/front/public/images/small/MagicBees/backpack.thaumaturgeT2/0.png deleted file mode 100644 index 1c5f7f5be6..0000000000 Binary files a/front/public/images/small/MagicBees/backpack.thaumaturgeT2/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/beeNugget/0.png b/front/public/images/small/MagicBees/beeNugget/0.png deleted file mode 100644 index a557888dbc..0000000000 Binary files a/front/public/images/small/MagicBees/beeNugget/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/beeNugget/1.png b/front/public/images/small/MagicBees/beeNugget/1.png deleted file mode 100644 index bf52b54d5d..0000000000 Binary files a/front/public/images/small/MagicBees/beeNugget/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/beeNugget/2.png b/front/public/images/small/MagicBees/beeNugget/2.png deleted file mode 100644 index 7eafd80b5a..0000000000 Binary files a/front/public/images/small/MagicBees/beeNugget/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/beeNugget/3.png b/front/public/images/small/MagicBees/beeNugget/3.png deleted file mode 100644 index a5947a7f1a..0000000000 Binary files a/front/public/images/small/MagicBees/beeNugget/3.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/beeNugget/4.png b/front/public/images/small/MagicBees/beeNugget/4.png deleted file mode 100644 index 9a4471b386..0000000000 Binary files a/front/public/images/small/MagicBees/beeNugget/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/beeRing/0.png b/front/public/images/small/MagicBees/beeRing/0.png deleted file mode 100644 index 141ae29927..0000000000 Binary files a/front/public/images/small/MagicBees/beeRing/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/0.png b/front/public/images/small/MagicBees/capsule.magic/0.png deleted file mode 100644 index fec45ddf2f..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/1.png b/front/public/images/small/MagicBees/capsule.magic/1.png deleted file mode 100644 index 8e029bf388..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/10.png b/front/public/images/small/MagicBees/capsule.magic/10.png deleted file mode 100644 index 9125136b4a..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/10.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/11.png b/front/public/images/small/MagicBees/capsule.magic/11.png deleted file mode 100644 index ae6bc0122e..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/11.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/12.png b/front/public/images/small/MagicBees/capsule.magic/12.png deleted file mode 100644 index bd07f7c7c8..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/12.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/13.png b/front/public/images/small/MagicBees/capsule.magic/13.png deleted file mode 100644 index 8aaf5fd58b..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/13.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/14.png b/front/public/images/small/MagicBees/capsule.magic/14.png deleted file mode 100644 index 6e4e08f4ba..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/14.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/15.png b/front/public/images/small/MagicBees/capsule.magic/15.png deleted file mode 100644 index 10df625113..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/15.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/2.png b/front/public/images/small/MagicBees/capsule.magic/2.png deleted file mode 100644 index 2b7e1a7232..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/3.png b/front/public/images/small/MagicBees/capsule.magic/3.png deleted file mode 100644 index a55f79efd4..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/3.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/4.png b/front/public/images/small/MagicBees/capsule.magic/4.png deleted file mode 100644 index e0656a94ed..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/5.png b/front/public/images/small/MagicBees/capsule.magic/5.png deleted file mode 100644 index 859d1ece71..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/5.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/6.png b/front/public/images/small/MagicBees/capsule.magic/6.png deleted file mode 100644 index 8a1bf91f29..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/6.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/7.png b/front/public/images/small/MagicBees/capsule.magic/7.png deleted file mode 100644 index 0d0df90932..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/7.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/8.png b/front/public/images/small/MagicBees/capsule.magic/8.png deleted file mode 100644 index 04d3d29f47..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/8.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.magic/9.png b/front/public/images/small/MagicBees/capsule.magic/9.png deleted file mode 100644 index 36b158a111..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.magic/9.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/0.png b/front/public/images/small/MagicBees/capsule.void/0.png deleted file mode 100644 index 2bc777cc59..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/1.png b/front/public/images/small/MagicBees/capsule.void/1.png deleted file mode 100644 index 8e2a245aef..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/10.png b/front/public/images/small/MagicBees/capsule.void/10.png deleted file mode 100644 index 020333cf9b..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/10.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/11.png b/front/public/images/small/MagicBees/capsule.void/11.png deleted file mode 100644 index 99c22812e1..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/11.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/12.png b/front/public/images/small/MagicBees/capsule.void/12.png deleted file mode 100644 index 183c809dc5..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/12.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/13.png b/front/public/images/small/MagicBees/capsule.void/13.png deleted file mode 100644 index b78282bacf..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/13.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/14.png b/front/public/images/small/MagicBees/capsule.void/14.png deleted file mode 100644 index 0dea581cf9..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/14.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/15.png b/front/public/images/small/MagicBees/capsule.void/15.png deleted file mode 100644 index cb868cfc5f..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/15.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/2.png b/front/public/images/small/MagicBees/capsule.void/2.png deleted file mode 100644 index 2dfbef2c05..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/3.png b/front/public/images/small/MagicBees/capsule.void/3.png deleted file mode 100644 index 28c2180018..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/3.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/4.png b/front/public/images/small/MagicBees/capsule.void/4.png deleted file mode 100644 index 84deff4408..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/5.png b/front/public/images/small/MagicBees/capsule.void/5.png deleted file mode 100644 index 3f269d2a88..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/5.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/6.png b/front/public/images/small/MagicBees/capsule.void/6.png deleted file mode 100644 index b812f4a37f..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/6.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/7.png b/front/public/images/small/MagicBees/capsule.void/7.png deleted file mode 100644 index be46cf8c40..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/7.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/8.png b/front/public/images/small/MagicBees/capsule.void/8.png deleted file mode 100644 index bb48654d0d..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/8.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/capsule.void/9.png b/front/public/images/small/MagicBees/capsule.void/9.png deleted file mode 100644 index 499063fed4..0000000000 Binary files a/front/public/images/small/MagicBees/capsule.void/9.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/comb/0.png b/front/public/images/small/MagicBees/comb/0.png deleted file mode 100644 index b320675977..0000000000 Binary files a/front/public/images/small/MagicBees/comb/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/comb/1.png b/front/public/images/small/MagicBees/comb/1.png deleted file mode 100644 index 7606bdc3fc..0000000000 Binary files a/front/public/images/small/MagicBees/comb/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/comb/2.png b/front/public/images/small/MagicBees/comb/2.png deleted file mode 100644 index dc822394a1..0000000000 Binary files a/front/public/images/small/MagicBees/comb/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/comb/3.png b/front/public/images/small/MagicBees/comb/3.png deleted file mode 100644 index 642f8f30f9..0000000000 Binary files a/front/public/images/small/MagicBees/comb/3.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/comb/4.png b/front/public/images/small/MagicBees/comb/4.png deleted file mode 100644 index 41b48c1b01..0000000000 Binary files a/front/public/images/small/MagicBees/comb/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/comb/5.png b/front/public/images/small/MagicBees/comb/5.png deleted file mode 100644 index e5e0c29609..0000000000 Binary files a/front/public/images/small/MagicBees/comb/5.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/comb/6.png b/front/public/images/small/MagicBees/comb/6.png deleted file mode 100644 index d15cc06e15..0000000000 Binary files a/front/public/images/small/MagicBees/comb/6.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/drop/0.png b/front/public/images/small/MagicBees/drop/0.png deleted file mode 100644 index 81d15e11e9..0000000000 Binary files a/front/public/images/small/MagicBees/drop/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/drop/1.png b/front/public/images/small/MagicBees/drop/1.png deleted file mode 100644 index e1852e1d59..0000000000 Binary files a/front/public/images/small/MagicBees/drop/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/drop/2.png b/front/public/images/small/MagicBees/drop/2.png deleted file mode 100644 index 46fb9aeff9..0000000000 Binary files a/front/public/images/small/MagicBees/drop/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/drop/3.png b/front/public/images/small/MagicBees/drop/3.png deleted file mode 100644 index 0f1a23ed7e..0000000000 Binary files a/front/public/images/small/MagicBees/drop/3.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/drop/4.png b/front/public/images/small/MagicBees/drop/4.png deleted file mode 100644 index 01eb69b781..0000000000 Binary files a/front/public/images/small/MagicBees/drop/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/drop/5.png b/front/public/images/small/MagicBees/drop/5.png deleted file mode 100644 index 2622f41f57..0000000000 Binary files a/front/public/images/small/MagicBees/drop/5.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/effectJar/0.png b/front/public/images/small/MagicBees/effectJar/0.png deleted file mode 100644 index a03a9105d6..0000000000 Binary files a/front/public/images/small/MagicBees/effectJar/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/frameGentle/0.png b/front/public/images/small/MagicBees/frameGentle/0.png deleted file mode 100644 index e5a461b3eb..0000000000 Binary files a/front/public/images/small/MagicBees/frameGentle/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/frameMagic/0.png b/front/public/images/small/MagicBees/frameMagic/0.png deleted file mode 100644 index 7acb177066..0000000000 Binary files a/front/public/images/small/MagicBees/frameMagic/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/frameMetabolic/0.png b/front/public/images/small/MagicBees/frameMetabolic/0.png deleted file mode 100644 index c03dbc783e..0000000000 Binary files a/front/public/images/small/MagicBees/frameMetabolic/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/frameNecrotic/0.png b/front/public/images/small/MagicBees/frameNecrotic/0.png deleted file mode 100644 index 1c7da542c2..0000000000 Binary files a/front/public/images/small/MagicBees/frameNecrotic/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/frameOblivion/0.png b/front/public/images/small/MagicBees/frameOblivion/0.png deleted file mode 100644 index f87851f9a3..0000000000 Binary files a/front/public/images/small/MagicBees/frameOblivion/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/frameResilient/0.png b/front/public/images/small/MagicBees/frameResilient/0.png deleted file mode 100644 index ab6682322e..0000000000 Binary files a/front/public/images/small/MagicBees/frameResilient/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/frameTemporal/0.png b/front/public/images/small/MagicBees/frameTemporal/0.png deleted file mode 100644 index ed920325da..0000000000 Binary files a/front/public/images/small/MagicBees/frameTemporal/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/hive/0.png b/front/public/images/small/MagicBees/hive/0.png deleted file mode 100644 index 5fcf410ec7..0000000000 Binary files a/front/public/images/small/MagicBees/hive/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/hive/1.png b/front/public/images/small/MagicBees/hive/1.png deleted file mode 100644 index 00fcbe7357..0000000000 Binary files a/front/public/images/small/MagicBees/hive/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/hive/2.png b/front/public/images/small/MagicBees/hive/2.png deleted file mode 100644 index 8effd3cae0..0000000000 Binary files a/front/public/images/small/MagicBees/hive/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.bloodFrame/0.png b/front/public/images/small/MagicBees/item.bloodFrame/0.png deleted file mode 100644 index 805bf8a724..0000000000 Binary files a/front/public/images/small/MagicBees/item.bloodFrame/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.bloodSoakedFrame/0.png b/front/public/images/small/MagicBees/item.bloodSoakedFrame/0.png deleted file mode 100644 index f1765e8206..0000000000 Binary files a/front/public/images/small/MagicBees/item.bloodSoakedFrame/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.frenziedFrame/0.png b/front/public/images/small/MagicBees/item.frenziedFrame/0.png deleted file mode 100644 index cf1aff8331..0000000000 Binary files a/front/public/images/small/MagicBees/item.frenziedFrame/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.manasteelGrafter/0.png b/front/public/images/small/MagicBees/item.manasteelGrafter/0.png deleted file mode 100644 index 93f535fd2e..0000000000 Binary files a/front/public/images/small/MagicBees/item.manasteelGrafter/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.manasteelScoop/0.png b/front/public/images/small/MagicBees/item.manasteelScoop/0.png deleted file mode 100644 index cd5a66ea66..0000000000 Binary files a/front/public/images/small/MagicBees/item.manasteelScoop/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.thaumiumGrafter/0.png b/front/public/images/small/MagicBees/item.thaumiumGrafter/0.png deleted file mode 100644 index 19457f2ef0..0000000000 Binary files a/front/public/images/small/MagicBees/item.thaumiumGrafter/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.thaumiumScoop/0.png b/front/public/images/small/MagicBees/item.thaumiumScoop/0.png deleted file mode 100644 index 1ccfc5c3fc..0000000000 Binary files a/front/public/images/small/MagicBees/item.thaumiumScoop/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.voidGrafter/0.png b/front/public/images/small/MagicBees/item.voidGrafter/0.png deleted file mode 100644 index 55c14209b1..0000000000 Binary files a/front/public/images/small/MagicBees/item.voidGrafter/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/item.voidScoop/0.png b/front/public/images/small/MagicBees/item.voidScoop/0.png deleted file mode 100644 index 8c4f206f8d..0000000000 Binary files a/front/public/images/small/MagicBees/item.voidScoop/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/jellyBabies/0.png b/front/public/images/small/MagicBees/jellyBabies/0.png deleted file mode 100644 index c7a0b520ec..0000000000 Binary files a/front/public/images/small/MagicBees/jellyBabies/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magicApiary/0.png b/front/public/images/small/MagicBees/magicApiary/0.png deleted file mode 100644 index 34a3a7d559..0000000000 Binary files a/front/public/images/small/MagicBees/magicApiary/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magicbees.enchantedEarth/0.png b/front/public/images/small/MagicBees/magicbees.enchantedEarth/0.png deleted file mode 100644 index 14abe477e5..0000000000 Binary files a/front/public/images/small/MagicBees/magicbees.enchantedEarth/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/0.png b/front/public/images/small/MagicBees/magnet/0.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/10.png b/front/public/images/small/MagicBees/magnet/10.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/10.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/12.png b/front/public/images/small/MagicBees/magnet/12.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/12.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/14.png b/front/public/images/small/MagicBees/magnet/14.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/14.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/16.png b/front/public/images/small/MagicBees/magnet/16.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/16.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/2.png b/front/public/images/small/MagicBees/magnet/2.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/4.png b/front/public/images/small/MagicBees/magnet/4.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/6.png b/front/public/images/small/MagicBees/magnet/6.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/6.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/magnet/8.png b/front/public/images/small/MagicBees/magnet/8.png deleted file mode 100644 index b7a6c89cfe..0000000000 Binary files a/front/public/images/small/MagicBees/magnet/8.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/manaAuraProvider/0.png b/front/public/images/small/MagicBees/manaAuraProvider/0.png deleted file mode 100644 index 090fe1a6ad..0000000000 Binary files a/front/public/images/small/MagicBees/manaAuraProvider/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/0.png b/front/public/images/small/MagicBees/miscResources/0.png deleted file mode 100644 index 59c6685356..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/1.png b/front/public/images/small/MagicBees/miscResources/1.png deleted file mode 100644 index bda270ba75..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/10.png b/front/public/images/small/MagicBees/miscResources/10.png deleted file mode 100644 index 11ad9de4d3..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/10.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/11.png b/front/public/images/small/MagicBees/miscResources/11.png deleted file mode 100644 index 5985ee1060..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/11.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/12.png b/front/public/images/small/MagicBees/miscResources/12.png deleted file mode 100644 index 1464f0ff11..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/12.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/17.png b/front/public/images/small/MagicBees/miscResources/17.png deleted file mode 100644 index 88b79d7c65..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/17.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/18.png b/front/public/images/small/MagicBees/miscResources/18.png deleted file mode 100644 index 652b06aa12..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/18.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/19.png b/front/public/images/small/MagicBees/miscResources/19.png deleted file mode 100644 index 07150b72fa..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/19.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/2.png b/front/public/images/small/MagicBees/miscResources/2.png deleted file mode 100644 index b29c606934..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/20.png b/front/public/images/small/MagicBees/miscResources/20.png deleted file mode 100644 index 0210997008..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/20.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/21.png b/front/public/images/small/MagicBees/miscResources/21.png deleted file mode 100644 index f3509faeae..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/21.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/22.png b/front/public/images/small/MagicBees/miscResources/22.png deleted file mode 100644 index b088fb9957..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/22.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/23.png b/front/public/images/small/MagicBees/miscResources/23.png deleted file mode 100644 index fd791dba63..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/23.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/3.png b/front/public/images/small/MagicBees/miscResources/3.png deleted file mode 100644 index 018c66a6ac..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/3.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/4.png b/front/public/images/small/MagicBees/miscResources/4.png deleted file mode 100644 index d78746759a..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/5.png b/front/public/images/small/MagicBees/miscResources/5.png deleted file mode 100644 index 86530ef1b2..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/5.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/6.png b/front/public/images/small/MagicBees/miscResources/6.png deleted file mode 100644 index 6ec7ffb0fc..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/6.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/7.png b/front/public/images/small/MagicBees/miscResources/7.png deleted file mode 100644 index e0724f137e..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/7.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/8.png b/front/public/images/small/MagicBees/miscResources/8.png deleted file mode 100644 index 34d887c15b..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/8.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/miscResources/9.png b/front/public/images/small/MagicBees/miscResources/9.png deleted file mode 100644 index cd4d4ac20d..0000000000 Binary files a/front/public/images/small/MagicBees/miscResources/9.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/moonDial/0.png b/front/public/images/small/MagicBees/moonDial/0.png deleted file mode 100644 index e2806606c0..0000000000 Binary files a/front/public/images/small/MagicBees/moonDial/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/pollen/0.png b/front/public/images/small/MagicBees/pollen/0.png deleted file mode 100644 index 88bf27c877..0000000000 Binary files a/front/public/images/small/MagicBees/pollen/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/pollen/1.png b/front/public/images/small/MagicBees/pollen/1.png deleted file mode 100644 index 601bacadaf..0000000000 Binary files a/front/public/images/small/MagicBees/pollen/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/propolis/0.png b/front/public/images/small/MagicBees/propolis/0.png deleted file mode 100644 index 01aae0ef8a..0000000000 Binary files a/front/public/images/small/MagicBees/propolis/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/propolis/1.png b/front/public/images/small/MagicBees/propolis/1.png deleted file mode 100644 index e892b7197e..0000000000 Binary files a/front/public/images/small/MagicBees/propolis/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/propolis/2.png b/front/public/images/small/MagicBees/propolis/2.png deleted file mode 100644 index 4a6b646246..0000000000 Binary files a/front/public/images/small/MagicBees/propolis/2.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/propolis/3.png b/front/public/images/small/MagicBees/propolis/3.png deleted file mode 100644 index 996e0512e1..0000000000 Binary files a/front/public/images/small/MagicBees/propolis/3.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/propolis/4.png b/front/public/images/small/MagicBees/propolis/4.png deleted file mode 100644 index 87048124ca..0000000000 Binary files a/front/public/images/small/MagicBees/propolis/4.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/propolis/5.png b/front/public/images/small/MagicBees/propolis/5.png deleted file mode 100644 index 446c713e33..0000000000 Binary files a/front/public/images/small/MagicBees/propolis/5.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/propolis/6.png b/front/public/images/small/MagicBees/propolis/6.png deleted file mode 100644 index 221f5b7319..0000000000 Binary files a/front/public/images/small/MagicBees/propolis/6.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/visAuraProvider/0.png b/front/public/images/small/MagicBees/visAuraProvider/0.png deleted file mode 100644 index 5b57ef22d1..0000000000 Binary files a/front/public/images/small/MagicBees/visAuraProvider/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/wax/0.png b/front/public/images/small/MagicBees/wax/0.png deleted file mode 100644 index 116635a3f7..0000000000 Binary files a/front/public/images/small/MagicBees/wax/0.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/wax/1.png b/front/public/images/small/MagicBees/wax/1.png deleted file mode 100644 index a8773c9a63..0000000000 Binary files a/front/public/images/small/MagicBees/wax/1.png and /dev/null differ diff --git a/front/public/images/small/MagicBees/wax/2.png b/front/public/images/small/MagicBees/wax/2.png deleted file mode 100644 index fe5534caf3..0000000000 Binary files a/front/public/images/small/MagicBees/wax/2.png and /dev/null differ diff --git a/front/public/images/small/Mantle/mantleBook/0.png b/front/public/images/small/Mantle/mantleBook/0.png deleted file mode 100644 index e6cab96d1f..0000000000 Binary files a/front/public/images/small/Mantle/mantleBook/0.png and /dev/null differ diff --git a/front/public/images/small/Mantle/mantleBook/1.png b/front/public/images/small/Mantle/mantleBook/1.png deleted file mode 100644 index e6cab96d1f..0000000000 Binary files a/front/public/images/small/Mantle/mantleBook/1.png and /dev/null differ diff --git a/front/public/images/small/Mantle/mantleBook/2.png b/front/public/images/small/Mantle/mantleBook/2.png deleted file mode 100644 index e6cab96d1f..0000000000 Binary files a/front/public/images/small/Mantle/mantleBook/2.png and /dev/null differ diff --git a/front/public/images/small/Mantle/mantleBook/3.png b/front/public/images/small/Mantle/mantleBook/3.png deleted file mode 100644 index e6cab96d1f..0000000000 Binary files a/front/public/images/small/Mantle/mantleBook/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/BerryBush/12.png b/front/public/images/small/Natura/BerryBush/12.png deleted file mode 100644 index a3723d3e85..0000000000 Binary files a/front/public/images/small/Natura/BerryBush/12.png and /dev/null differ diff --git a/front/public/images/small/Natura/BerryBush/13.png b/front/public/images/small/Natura/BerryBush/13.png deleted file mode 100644 index 8b13feb8b7..0000000000 Binary files a/front/public/images/small/Natura/BerryBush/13.png and /dev/null differ diff --git a/front/public/images/small/Natura/BerryBush/14.png b/front/public/images/small/Natura/BerryBush/14.png deleted file mode 100644 index 6da0bd2279..0000000000 Binary files a/front/public/images/small/Natura/BerryBush/14.png and /dev/null differ diff --git a/front/public/images/small/Natura/BerryBush/15.png b/front/public/images/small/Natura/BerryBush/15.png deleted file mode 100644 index 565cddc098..0000000000 Binary files a/front/public/images/small/Natura/BerryBush/15.png and /dev/null differ diff --git a/front/public/images/small/Natura/Blazerail/0.png b/front/public/images/small/Natura/Blazerail/0.png deleted file mode 100644 index 80322d0ad5..0000000000 Binary files a/front/public/images/small/Natura/Blazerail/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Bluebells/0.png b/front/public/images/small/Natura/Bluebells/0.png deleted file mode 100644 index f5de688d00..0000000000 Binary files a/front/public/images/small/Natura/Bluebells/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/BrailActivator/0.png b/front/public/images/small/Natura/BrailActivator/0.png deleted file mode 100644 index 180b3fe4d1..0000000000 Binary files a/front/public/images/small/Natura/BrailActivator/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/BrailDetector/0.png b/front/public/images/small/Natura/BrailDetector/0.png deleted file mode 100644 index f3e1cfab00..0000000000 Binary files a/front/public/images/small/Natura/BrailDetector/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/BrailPowered/0.png b/front/public/images/small/Natura/BrailPowered/0.png deleted file mode 100644 index 35d768c0d5..0000000000 Binary files a/front/public/images/small/Natura/BrailPowered/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Cloud/0.png b/front/public/images/small/Natura/Cloud/0.png deleted file mode 100644 index 0aa2e5338c..0000000000 Binary files a/front/public/images/small/Natura/Cloud/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Cloud/1.png b/front/public/images/small/Natura/Cloud/1.png deleted file mode 100644 index 3242a16752..0000000000 Binary files a/front/public/images/small/Natura/Cloud/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Cloud/2.png b/front/public/images/small/Natura/Cloud/2.png deleted file mode 100644 index e4bbba0169..0000000000 Binary files a/front/public/images/small/Natura/Cloud/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Cloud/3.png b/front/public/images/small/Natura/Cloud/3.png deleted file mode 100644 index 28d3c80ab6..0000000000 Binary files a/front/public/images/small/Natura/Cloud/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Dark Leaves/0.png b/front/public/images/small/Natura/Dark Leaves/0.png deleted file mode 100644 index 206d260b2c..0000000000 Binary files a/front/public/images/small/Natura/Dark Leaves/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Dark Leaves/1.png b/front/public/images/small/Natura/Dark Leaves/1.png deleted file mode 100644 index 9b43c79b60..0000000000 Binary files a/front/public/images/small/Natura/Dark Leaves/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Dark Leaves/2.png b/front/public/images/small/Natura/Dark Leaves/2.png deleted file mode 100644 index 8c3f40b231..0000000000 Binary files a/front/public/images/small/Natura/Dark Leaves/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Dark Leaves/3.png b/front/public/images/small/Natura/Dark Leaves/3.png deleted file mode 100644 index 74eff7aea5..0000000000 Binary files a/front/public/images/small/Natura/Dark Leaves/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Dark Tree/0.png b/front/public/images/small/Natura/Dark Tree/0.png deleted file mode 100644 index dd964987bd..0000000000 Binary files a/front/public/images/small/Natura/Dark Tree/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Dark Tree/1.png b/front/public/images/small/Natura/Dark Tree/1.png deleted file mode 100644 index d2e6ad5363..0000000000 Binary files a/front/public/images/small/Natura/Dark Tree/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Glowshroom/0.png b/front/public/images/small/Natura/Glowshroom/0.png deleted file mode 100644 index 5fe9a03753..0000000000 Binary files a/front/public/images/small/Natura/Glowshroom/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Glowshroom/1.png b/front/public/images/small/Natura/Glowshroom/1.png deleted file mode 100644 index fc8ed300ed..0000000000 Binary files a/front/public/images/small/Natura/Glowshroom/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Glowshroom/2.png b/front/public/images/small/Natura/Glowshroom/2.png deleted file mode 100644 index 4de6669b7a..0000000000 Binary files a/front/public/images/small/Natura/Glowshroom/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/GrassBlock/0.png b/front/public/images/small/Natura/GrassBlock/0.png deleted file mode 100644 index f87939a408..0000000000 Binary files a/front/public/images/small/Natura/GrassBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/GrassBlock/1.png b/front/public/images/small/Natura/GrassBlock/1.png deleted file mode 100644 index 97d43fa809..0000000000 Binary files a/front/public/images/small/Natura/GrassBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/GrassBlock/2.png b/front/public/images/small/Natura/GrassBlock/2.png deleted file mode 100644 index 5b126deb27..0000000000 Binary files a/front/public/images/small/Natura/GrassBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/GrassSlab/0.png b/front/public/images/small/Natura/GrassSlab/0.png deleted file mode 100644 index 589b35a06b..0000000000 Binary files a/front/public/images/small/Natura/GrassSlab/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/GrassSlab/1.png b/front/public/images/small/Natura/GrassSlab/1.png deleted file mode 100644 index 2e86f85589..0000000000 Binary files a/front/public/images/small/Natura/GrassSlab/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/GrassSlab/2.png b/front/public/images/small/Natura/GrassSlab/2.png deleted file mode 100644 index 2a379a8bb4..0000000000 Binary files a/front/public/images/small/Natura/GrassSlab/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/N Crops/0.png b/front/public/images/small/Natura/N Crops/0.png deleted file mode 100644 index 199f0fc3b2..0000000000 Binary files a/front/public/images/small/Natura/N Crops/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/0.png b/front/public/images/small/Natura/Natura.bookshelf/0.png deleted file mode 100644 index 9e2e049e5a..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/1.png b/front/public/images/small/Natura/Natura.bookshelf/1.png deleted file mode 100644 index eef3ebf19f..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/10.png b/front/public/images/small/Natura/Natura.bookshelf/10.png deleted file mode 100644 index d64cf975b9..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/10.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/11.png b/front/public/images/small/Natura/Natura.bookshelf/11.png deleted file mode 100644 index e068ddb201..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/11.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/12.png b/front/public/images/small/Natura/Natura.bookshelf/12.png deleted file mode 100644 index aa3eaa3f00..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/12.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/2.png b/front/public/images/small/Natura/Natura.bookshelf/2.png deleted file mode 100644 index 26579d9075..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/3.png b/front/public/images/small/Natura/Natura.bookshelf/3.png deleted file mode 100644 index f8e911244c..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/4.png b/front/public/images/small/Natura/Natura.bookshelf/4.png deleted file mode 100644 index 3b004ed115..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/5.png b/front/public/images/small/Natura/Natura.bookshelf/5.png deleted file mode 100644 index 05b48149c4..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/6.png b/front/public/images/small/Natura/Natura.bookshelf/6.png deleted file mode 100644 index 385f766d77..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/7.png b/front/public/images/small/Natura/Natura.bookshelf/7.png deleted file mode 100644 index 8d0d265975..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/8.png b/front/public/images/small/Natura/Natura.bookshelf/8.png deleted file mode 100644 index 56cfc44e2c..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/8.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.bookshelf/9.png b/front/public/images/small/Natura/Natura.bookshelf/9.png deleted file mode 100644 index eac27c8a44..0000000000 Binary files a/front/public/images/small/Natura/Natura.bookshelf/9.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/0.png b/front/public/images/small/Natura/Natura.fence/0.png deleted file mode 100644 index f95757c940..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/1.png b/front/public/images/small/Natura/Natura.fence/1.png deleted file mode 100644 index 968aee9077..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/10.png b/front/public/images/small/Natura/Natura.fence/10.png deleted file mode 100644 index 49e278196c..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/10.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/11.png b/front/public/images/small/Natura/Natura.fence/11.png deleted file mode 100644 index 8426e4b22b..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/11.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/12.png b/front/public/images/small/Natura/Natura.fence/12.png deleted file mode 100644 index ec554d1251..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/12.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/2.png b/front/public/images/small/Natura/Natura.fence/2.png deleted file mode 100644 index f7ca9fd3aa..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/3.png b/front/public/images/small/Natura/Natura.fence/3.png deleted file mode 100644 index 7ef84d4d9f..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/4.png b/front/public/images/small/Natura/Natura.fence/4.png deleted file mode 100644 index 8dbf5bdf18..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/5.png b/front/public/images/small/Natura/Natura.fence/5.png deleted file mode 100644 index 1a9dc495f6..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/6.png b/front/public/images/small/Natura/Natura.fence/6.png deleted file mode 100644 index d717361375..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/7.png b/front/public/images/small/Natura/Natura.fence/7.png deleted file mode 100644 index e1e759da50..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/8.png b/front/public/images/small/Natura/Natura.fence/8.png deleted file mode 100644 index c57ae93cc7..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/8.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.fence/9.png b/front/public/images/small/Natura/Natura.fence/9.png deleted file mode 100644 index 47da4eeb84..0000000000 Binary files a/front/public/images/small/Natura/Natura.fence/9.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.netherfood/0.png b/front/public/images/small/Natura/Natura.netherfood/0.png deleted file mode 100644 index 1326b20ce8..0000000000 Binary files a/front/public/images/small/Natura/Natura.netherfood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/0.png b/front/public/images/small/Natura/Natura.workbench/0.png deleted file mode 100644 index 8128cfa200..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/1.png b/front/public/images/small/Natura/Natura.workbench/1.png deleted file mode 100644 index 9931ec5617..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/10.png b/front/public/images/small/Natura/Natura.workbench/10.png deleted file mode 100644 index 4e3e49f88a..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/10.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/11.png b/front/public/images/small/Natura/Natura.workbench/11.png deleted file mode 100644 index 5e6401be49..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/11.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/12.png b/front/public/images/small/Natura/Natura.workbench/12.png deleted file mode 100644 index 58dc599105..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/12.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/2.png b/front/public/images/small/Natura/Natura.workbench/2.png deleted file mode 100644 index 94e154b11a..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/3.png b/front/public/images/small/Natura/Natura.workbench/3.png deleted file mode 100644 index 882ab7e3da..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/4.png b/front/public/images/small/Natura/Natura.workbench/4.png deleted file mode 100644 index 05d5c1efc9..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/5.png b/front/public/images/small/Natura/Natura.workbench/5.png deleted file mode 100644 index 9bf0143089..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/6.png b/front/public/images/small/Natura/Natura.workbench/6.png deleted file mode 100644 index 7dc66bd7fe..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/7.png b/front/public/images/small/Natura/Natura.workbench/7.png deleted file mode 100644 index b724f63f26..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/8.png b/front/public/images/small/Natura/Natura.workbench/8.png deleted file mode 100644 index d66e2148a1..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/8.png and /dev/null differ diff --git a/front/public/images/small/Natura/Natura.workbench/9.png b/front/public/images/small/Natura/Natura.workbench/9.png deleted file mode 100644 index 3e79c02035..0000000000 Binary files a/front/public/images/small/Natura/Natura.workbench/9.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherBerryBush/12.png b/front/public/images/small/Natura/NetherBerryBush/12.png deleted file mode 100644 index 10a37291a2..0000000000 Binary files a/front/public/images/small/Natura/NetherBerryBush/12.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherBerryBush/13.png b/front/public/images/small/Natura/NetherBerryBush/13.png deleted file mode 100644 index f79985c640..0000000000 Binary files a/front/public/images/small/Natura/NetherBerryBush/13.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherBerryBush/14.png b/front/public/images/small/Natura/NetherBerryBush/14.png deleted file mode 100644 index 7427088868..0000000000 Binary files a/front/public/images/small/Natura/NetherBerryBush/14.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherBerryBush/15.png b/front/public/images/small/Natura/NetherBerryBush/15.png deleted file mode 100644 index 6bd4880c6d..0000000000 Binary files a/front/public/images/small/Natura/NetherBerryBush/15.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherButton/0.png b/front/public/images/small/Natura/NetherButton/0.png deleted file mode 100644 index b4c1cc6d1d..0000000000 Binary files a/front/public/images/small/Natura/NetherButton/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherFurnace/0.png b/front/public/images/small/Natura/NetherFurnace/0.png deleted file mode 100644 index 17a43262f2..0000000000 Binary files a/front/public/images/small/Natura/NetherFurnace/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherGlass/0.png b/front/public/images/small/Natura/NetherGlass/0.png deleted file mode 100644 index 86e5be66d3..0000000000 Binary files a/front/public/images/small/Natura/NetherGlass/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherGlass/1.png b/front/public/images/small/Natura/NetherGlass/1.png deleted file mode 100644 index 4fec94215d..0000000000 Binary files a/front/public/images/small/Natura/NetherGlass/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherHopper/0.png b/front/public/images/small/Natura/NetherHopper/0.png deleted file mode 100644 index cf7d675a7c..0000000000 Binary files a/front/public/images/small/Natura/NetherHopper/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherLever/0.png b/front/public/images/small/Natura/NetherLever/0.png deleted file mode 100644 index 231820db39..0000000000 Binary files a/front/public/images/small/Natura/NetherLever/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/NetherPressurePlate/0.png b/front/public/images/small/Natura/NetherPressurePlate/0.png deleted file mode 100644 index 0c82d284ca..0000000000 Binary files a/front/public/images/small/Natura/NetherPressurePlate/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Obelisk/0.png b/front/public/images/small/Natura/Obelisk/0.png deleted file mode 100644 index d2ae0345b8..0000000000 Binary files a/front/public/images/small/Natura/Obelisk/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Leaves/0.png b/front/public/images/small/Natura/Rare Leaves/0.png deleted file mode 100644 index 840600257c..0000000000 Binary files a/front/public/images/small/Natura/Rare Leaves/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Leaves/1.png b/front/public/images/small/Natura/Rare Leaves/1.png deleted file mode 100644 index 3f4004ef18..0000000000 Binary files a/front/public/images/small/Natura/Rare Leaves/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Leaves/2.png b/front/public/images/small/Natura/Rare Leaves/2.png deleted file mode 100644 index f60d2585f4..0000000000 Binary files a/front/public/images/small/Natura/Rare Leaves/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Leaves/3.png b/front/public/images/small/Natura/Rare Leaves/3.png deleted file mode 100644 index c31565634c..0000000000 Binary files a/front/public/images/small/Natura/Rare Leaves/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Sapling/0.png b/front/public/images/small/Natura/Rare Sapling/0.png deleted file mode 100644 index 4268965f37..0000000000 Binary files a/front/public/images/small/Natura/Rare Sapling/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Sapling/1.png b/front/public/images/small/Natura/Rare Sapling/1.png deleted file mode 100644 index be011da9b7..0000000000 Binary files a/front/public/images/small/Natura/Rare Sapling/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Sapling/2.png b/front/public/images/small/Natura/Rare Sapling/2.png deleted file mode 100644 index d5cd4a88b0..0000000000 Binary files a/front/public/images/small/Natura/Rare Sapling/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Sapling/3.png b/front/public/images/small/Natura/Rare Sapling/3.png deleted file mode 100644 index eaad06a220..0000000000 Binary files a/front/public/images/small/Natura/Rare Sapling/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Sapling/4.png b/front/public/images/small/Natura/Rare Sapling/4.png deleted file mode 100644 index b19edd088a..0000000000 Binary files a/front/public/images/small/Natura/Rare Sapling/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Tree/0.png b/front/public/images/small/Natura/Rare Tree/0.png deleted file mode 100644 index e11ddb4128..0000000000 Binary files a/front/public/images/small/Natura/Rare Tree/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Tree/1.png b/front/public/images/small/Natura/Rare Tree/1.png deleted file mode 100644 index f08b896941..0000000000 Binary files a/front/public/images/small/Natura/Rare Tree/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Tree/2.png b/front/public/images/small/Natura/Rare Tree/2.png deleted file mode 100644 index 7c1667a9dc..0000000000 Binary files a/front/public/images/small/Natura/Rare Tree/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/Rare Tree/3.png b/front/public/images/small/Natura/Rare Tree/3.png deleted file mode 100644 index 75b00b6ec0..0000000000 Binary files a/front/public/images/small/Natura/Rare Tree/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/Saguaro/0.png b/front/public/images/small/Natura/Saguaro/0.png deleted file mode 100644 index 59e4dbaa2d..0000000000 Binary files a/front/public/images/small/Natura/Saguaro/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/Thornvines/0.png b/front/public/images/small/Natura/Thornvines/0.png deleted file mode 100644 index 23ffbab50b..0000000000 Binary files a/front/public/images/small/Natura/Thornvines/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/barley.seed/0.png b/front/public/images/small/Natura/barley.seed/0.png deleted file mode 100644 index 94ff25159c..0000000000 Binary files a/front/public/images/small/Natura/barley.seed/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/barley.seed/1.png b/front/public/images/small/Natura/barley.seed/1.png deleted file mode 100644 index cf1a9fbf00..0000000000 Binary files a/front/public/images/small/Natura/barley.seed/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyBag/0.png b/front/public/images/small/Natura/barleyBag/0.png deleted file mode 100644 index 09fcb9759d..0000000000 Binary files a/front/public/images/small/Natura/barleyBag/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/0.png b/front/public/images/small/Natura/barleyFood/0.png deleted file mode 100644 index 8c044db895..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/1.png b/front/public/images/small/Natura/barleyFood/1.png deleted file mode 100644 index dd53f7b806..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/2.png b/front/public/images/small/Natura/barleyFood/2.png deleted file mode 100644 index 10e0f2697d..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/3.png b/front/public/images/small/Natura/barleyFood/3.png deleted file mode 100644 index 7686dc055d..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/4.png b/front/public/images/small/Natura/barleyFood/4.png deleted file mode 100644 index d69c6a5917..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/5.png b/front/public/images/small/Natura/barleyFood/5.png deleted file mode 100644 index f08eafa372..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/6.png b/front/public/images/small/Natura/barleyFood/6.png deleted file mode 100644 index bc23e44eb5..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/7.png b/front/public/images/small/Natura/barleyFood/7.png deleted file mode 100644 index 0c9c56b4bd..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/barleyFood/8.png b/front/public/images/small/Natura/barleyFood/8.png deleted file mode 100644 index fe9c2320d6..0000000000 Binary files a/front/public/images/small/Natura/barleyFood/8.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry.nether/0.png b/front/public/images/small/Natura/berry.nether/0.png deleted file mode 100644 index d5b94ce328..0000000000 Binary files a/front/public/images/small/Natura/berry.nether/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry.nether/1.png b/front/public/images/small/Natura/berry.nether/1.png deleted file mode 100644 index b2bc76ceea..0000000000 Binary files a/front/public/images/small/Natura/berry.nether/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry.nether/2.png b/front/public/images/small/Natura/berry.nether/2.png deleted file mode 100644 index 34bfeccce0..0000000000 Binary files a/front/public/images/small/Natura/berry.nether/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry.nether/3.png b/front/public/images/small/Natura/berry.nether/3.png deleted file mode 100644 index 7d64cbb931..0000000000 Binary files a/front/public/images/small/Natura/berry.nether/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry/0.png b/front/public/images/small/Natura/berry/0.png deleted file mode 100644 index e0a2a051aa..0000000000 Binary files a/front/public/images/small/Natura/berry/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry/1.png b/front/public/images/small/Natura/berry/1.png deleted file mode 100644 index 15fcb32565..0000000000 Binary files a/front/public/images/small/Natura/berry/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry/2.png b/front/public/images/small/Natura/berry/2.png deleted file mode 100644 index 37e3290600..0000000000 Binary files a/front/public/images/small/Natura/berry/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/berry/3.png b/front/public/images/small/Natura/berry/3.png deleted file mode 100644 index b6336af249..0000000000 Binary files a/front/public/images/small/Natura/berry/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/berryMedley/0.png b/front/public/images/small/Natura/berryMedley/0.png deleted file mode 100644 index 498e0b2483..0000000000 Binary files a/front/public/images/small/Natura/berryMedley/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/bloodwood/0.png b/front/public/images/small/Natura/bloodwood/0.png deleted file mode 100644 index 1c35a09121..0000000000 Binary files a/front/public/images/small/Natura/bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/bloodwood/15.png b/front/public/images/small/Natura/bloodwood/15.png deleted file mode 100644 index fe8a4d3b36..0000000000 Binary files a/front/public/images/small/Natura/bloodwood/15.png and /dev/null differ diff --git a/front/public/images/small/Natura/blueGlowshroom/0.png b/front/public/images/small/Natura/blueGlowshroom/0.png deleted file mode 100644 index 9276bb8375..0000000000 Binary files a/front/public/images/small/Natura/blueGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/boneBag/0.png b/front/public/images/small/Natura/boneBag/0.png deleted file mode 100644 index dddf49c33a..0000000000 Binary files a/front/public/images/small/Natura/boneBag/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.amaranth/0.png b/front/public/images/small/Natura/button.amaranth/0.png deleted file mode 100644 index 080c85dc5a..0000000000 Binary files a/front/public/images/small/Natura/button.amaranth/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.bloodwood/0.png b/front/public/images/small/Natura/button.bloodwood/0.png deleted file mode 100644 index 02b7617a64..0000000000 Binary files a/front/public/images/small/Natura/button.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.darkwood/0.png b/front/public/images/small/Natura/button.darkwood/0.png deleted file mode 100644 index a1bf863e84..0000000000 Binary files a/front/public/images/small/Natura/button.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.eucalyptus/0.png b/front/public/images/small/Natura/button.eucalyptus/0.png deleted file mode 100644 index 188194d13a..0000000000 Binary files a/front/public/images/small/Natura/button.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.fusewood/0.png b/front/public/images/small/Natura/button.fusewood/0.png deleted file mode 100644 index 65540a6928..0000000000 Binary files a/front/public/images/small/Natura/button.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.ghostwood/0.png b/front/public/images/small/Natura/button.ghostwood/0.png deleted file mode 100644 index 8ae0bec5c3..0000000000 Binary files a/front/public/images/small/Natura/button.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.hopseed/0.png b/front/public/images/small/Natura/button.hopseed/0.png deleted file mode 100644 index 3c74894ee6..0000000000 Binary files a/front/public/images/small/Natura/button.hopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.maple/0.png b/front/public/images/small/Natura/button.maple/0.png deleted file mode 100644 index de90d5320f..0000000000 Binary files a/front/public/images/small/Natura/button.maple/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.redwood/0.png b/front/public/images/small/Natura/button.redwood/0.png deleted file mode 100644 index 2ecfb23251..0000000000 Binary files a/front/public/images/small/Natura/button.redwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.sakura/0.png b/front/public/images/small/Natura/button.sakura/0.png deleted file mode 100644 index e0729ff63f..0000000000 Binary files a/front/public/images/small/Natura/button.sakura/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.silverbell/0.png b/front/public/images/small/Natura/button.silverbell/0.png deleted file mode 100644 index dc691df72c..0000000000 Binary files a/front/public/images/small/Natura/button.silverbell/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.tiger/0.png b/front/public/images/small/Natura/button.tiger/0.png deleted file mode 100644 index d0c47d7efa..0000000000 Binary files a/front/public/images/small/Natura/button.tiger/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/button.willow/0.png b/front/public/images/small/Natura/button.willow/0.png deleted file mode 100644 index 32c24b9a4a..0000000000 Binary files a/front/public/images/small/Natura/button.willow/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/carrotBag/0.png b/front/public/images/small/Natura/carrotBag/0.png deleted file mode 100644 index bea0ffd061..0000000000 Binary files a/front/public/images/small/Natura/carrotBag/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/cottonBag/0.png b/front/public/images/small/Natura/cottonBag/0.png deleted file mode 100644 index 6d440fa70f..0000000000 Binary files a/front/public/images/small/Natura/cottonBag/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/door.bloodwood/0.png b/front/public/images/small/Natura/door.bloodwood/0.png deleted file mode 100644 index 199bf866a7..0000000000 Binary files a/front/public/images/small/Natura/door.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/door.eucalyptus/0.png b/front/public/images/small/Natura/door.eucalyptus/0.png deleted file mode 100644 index 12d4387c00..0000000000 Binary files a/front/public/images/small/Natura/door.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/door.ghostwood/0.png b/front/public/images/small/Natura/door.ghostwood/0.png deleted file mode 100644 index 6e096db375..0000000000 Binary files a/front/public/images/small/Natura/door.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/door.hopseed/0.png b/front/public/images/small/Natura/door.hopseed/0.png deleted file mode 100644 index e39c0d931d..0000000000 Binary files a/front/public/images/small/Natura/door.hopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/door.redwood/0.png b/front/public/images/small/Natura/door.redwood/0.png deleted file mode 100644 index 3cdb55658f..0000000000 Binary files a/front/public/images/small/Natura/door.redwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/door.redwoodbark/0.png b/front/public/images/small/Natura/door.redwoodbark/0.png deleted file mode 100644 index 2f376a6fdc..0000000000 Binary files a/front/public/images/small/Natura/door.redwoodbark/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/door.sakura/0.png b/front/public/images/small/Natura/door.sakura/0.png deleted file mode 100644 index 6d2944c890..0000000000 Binary files a/front/public/images/small/Natura/door.sakura/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.amaranth/0.png b/front/public/images/small/Natura/fenceGate.amaranth/0.png deleted file mode 100644 index 05d66d379c..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.amaranth/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.bloodwood/0.png b/front/public/images/small/Natura/fenceGate.bloodwood/0.png deleted file mode 100644 index bb3193a3c3..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.darkwood/0.png b/front/public/images/small/Natura/fenceGate.darkwood/0.png deleted file mode 100644 index 6ba1a498ef..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.eucalyptus/0.png b/front/public/images/small/Natura/fenceGate.eucalyptus/0.png deleted file mode 100644 index 0e678941b0..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.fusewood/0.png b/front/public/images/small/Natura/fenceGate.fusewood/0.png deleted file mode 100644 index c828fd13e7..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.ghostwood/0.png b/front/public/images/small/Natura/fenceGate.ghostwood/0.png deleted file mode 100644 index 239ad43153..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.hopseed/0.png b/front/public/images/small/Natura/fenceGate.hopseed/0.png deleted file mode 100644 index a1f14efc9c..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.hopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.maple/0.png b/front/public/images/small/Natura/fenceGate.maple/0.png deleted file mode 100644 index 22e2ac2183..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.maple/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.redwood/0.png b/front/public/images/small/Natura/fenceGate.redwood/0.png deleted file mode 100644 index 12582f8a77..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.redwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.sakura/0.png b/front/public/images/small/Natura/fenceGate.sakura/0.png deleted file mode 100644 index 52c3ae4863..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.sakura/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.silverbell/0.png b/front/public/images/small/Natura/fenceGate.silverbell/0.png deleted file mode 100644 index 37c389d61e..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.silverbell/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.tiger/0.png b/front/public/images/small/Natura/fenceGate.tiger/0.png deleted file mode 100644 index 5441d2b9ea..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.tiger/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/fenceGate.willow/0.png b/front/public/images/small/Natura/fenceGate.willow/0.png deleted file mode 100644 index 6c93cf1116..0000000000 Binary files a/front/public/images/small/Natura/fenceGate.willow/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/floraleaves/0.png b/front/public/images/small/Natura/floraleaves/0.png deleted file mode 100644 index 25c2775dca..0000000000 Binary files a/front/public/images/small/Natura/floraleaves/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/floraleaves/1.png b/front/public/images/small/Natura/floraleaves/1.png deleted file mode 100644 index 86f14585f4..0000000000 Binary files a/front/public/images/small/Natura/floraleaves/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/floraleaves/2.png b/front/public/images/small/Natura/floraleaves/2.png deleted file mode 100644 index df9a2bbd79..0000000000 Binary files a/front/public/images/small/Natura/floraleaves/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/floraleavesnocolor/0.png b/front/public/images/small/Natura/floraleavesnocolor/0.png deleted file mode 100644 index 69c7d389f7..0000000000 Binary files a/front/public/images/small/Natura/floraleavesnocolor/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/floraleavesnocolor/1.png b/front/public/images/small/Natura/floraleavesnocolor/1.png deleted file mode 100644 index de4894756b..0000000000 Binary files a/front/public/images/small/Natura/floraleavesnocolor/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/floraleavesnocolor/2.png b/front/public/images/small/Natura/floraleavesnocolor/2.png deleted file mode 100644 index 20ca945309..0000000000 Binary files a/front/public/images/small/Natura/floraleavesnocolor/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/floraleavesnocolor/3.png b/front/public/images/small/Natura/floraleavesnocolor/3.png deleted file mode 100644 index dd32507357..0000000000 Binary files a/front/public/images/small/Natura/floraleavesnocolor/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/0.png b/front/public/images/small/Natura/florasapling/0.png deleted file mode 100644 index 9c175ceac2..0000000000 Binary files a/front/public/images/small/Natura/florasapling/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/1.png b/front/public/images/small/Natura/florasapling/1.png deleted file mode 100644 index 3a5252e351..0000000000 Binary files a/front/public/images/small/Natura/florasapling/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/2.png b/front/public/images/small/Natura/florasapling/2.png deleted file mode 100644 index e4808a2575..0000000000 Binary files a/front/public/images/small/Natura/florasapling/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/3.png b/front/public/images/small/Natura/florasapling/3.png deleted file mode 100644 index ab94c8f8c5..0000000000 Binary files a/front/public/images/small/Natura/florasapling/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/4.png b/front/public/images/small/Natura/florasapling/4.png deleted file mode 100644 index d14a9a4395..0000000000 Binary files a/front/public/images/small/Natura/florasapling/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/5.png b/front/public/images/small/Natura/florasapling/5.png deleted file mode 100644 index cdbc556aa3..0000000000 Binary files a/front/public/images/small/Natura/florasapling/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/6.png b/front/public/images/small/Natura/florasapling/6.png deleted file mode 100644 index 039886a239..0000000000 Binary files a/front/public/images/small/Natura/florasapling/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/florasapling/7.png b/front/public/images/small/Natura/florasapling/7.png deleted file mode 100644 index d842ae570d..0000000000 Binary files a/front/public/images/small/Natura/florasapling/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/greenGlowshroom/0.png b/front/public/images/small/Natura/greenGlowshroom/0.png deleted file mode 100644 index e7d3776ad7..0000000000 Binary files a/front/public/images/small/Natura/greenGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/heatsand/0.png b/front/public/images/small/Natura/heatsand/0.png deleted file mode 100644 index a83c7fbb4f..0000000000 Binary files a/front/public/images/small/Natura/heatsand/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/impmeat/0.png b/front/public/images/small/Natura/impmeat/0.png deleted file mode 100644 index df91afecef..0000000000 Binary files a/front/public/images/small/Natura/impmeat/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/impmeat/1.png b/front/public/images/small/Natura/impmeat/1.png deleted file mode 100644 index 2baadd17b4..0000000000 Binary files a/front/public/images/small/Natura/impmeat/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.armor.impboots/0.png b/front/public/images/small/Natura/natura.armor.impboots/0.png deleted file mode 100644 index 07b4a1660c..0000000000 Binary files a/front/public/images/small/Natura/natura.armor.impboots/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.armor.imphelmet/0.png b/front/public/images/small/Natura/natura.armor.imphelmet/0.png deleted file mode 100644 index cc790a0cc7..0000000000 Binary files a/front/public/images/small/Natura/natura.armor.imphelmet/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.armor.impjerkin/0.png b/front/public/images/small/Natura/natura.armor.impjerkin/0.png deleted file mode 100644 index 84f2e29ea2..0000000000 Binary files a/front/public/images/small/Natura/natura.armor.impjerkin/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.armor.impleggings/0.png b/front/public/images/small/Natura/natura.armor.impleggings/0.png deleted file mode 100644 index dedb1fd56b..0000000000 Binary files a/front/public/images/small/Natura/natura.armor.impleggings/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.axe.bloodwood/0.png b/front/public/images/small/Natura/natura.axe.bloodwood/0.png deleted file mode 100644 index c37dc61d8c..0000000000 Binary files a/front/public/images/small/Natura/natura.axe.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.axe.darkwood/0.png b/front/public/images/small/Natura/natura.axe.darkwood/0.png deleted file mode 100644 index 14d9dd1547..0000000000 Binary files a/front/public/images/small/Natura/natura.axe.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.axe.fusewood/0.png b/front/public/images/small/Natura/natura.axe.fusewood/0.png deleted file mode 100644 index e7f6891505..0000000000 Binary files a/front/public/images/small/Natura/natura.axe.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.axe.ghostwood/0.png b/front/public/images/small/Natura/natura.axe.ghostwood/0.png deleted file mode 100644 index b07d616104..0000000000 Binary files a/front/public/images/small/Natura/natura.axe.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.axe.netherquartz/0.png b/front/public/images/small/Natura/natura.axe.netherquartz/0.png deleted file mode 100644 index 757b9e79ab..0000000000 Binary files a/front/public/images/small/Natura/natura.axe.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.bow.bloodwood/0.png b/front/public/images/small/Natura/natura.bow.bloodwood/0.png deleted file mode 100644 index e8c8b1f601..0000000000 Binary files a/front/public/images/small/Natura/natura.bow.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.bow.darkwood/0.png b/front/public/images/small/Natura/natura.bow.darkwood/0.png deleted file mode 100644 index f83782fb6c..0000000000 Binary files a/front/public/images/small/Natura/natura.bow.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.bow.fusewood/0.png b/front/public/images/small/Natura/natura.bow.fusewood/0.png deleted file mode 100644 index 45470a17c7..0000000000 Binary files a/front/public/images/small/Natura/natura.bow.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.bow.ghostwood/0.png b/front/public/images/small/Natura/natura.bow.ghostwood/0.png deleted file mode 100644 index 96410dad6e..0000000000 Binary files a/front/public/images/small/Natura/natura.bow.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.emptybowl/0.png b/front/public/images/small/Natura/natura.emptybowl/0.png deleted file mode 100644 index 137761b9b2..0000000000 Binary files a/front/public/images/small/Natura/natura.emptybowl/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.flintandblaze/0.png b/front/public/images/small/Natura/natura.flintandblaze/0.png deleted file mode 100644 index d837788ac3..0000000000 Binary files a/front/public/images/small/Natura/natura.flintandblaze/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.kama.bloodwood/0.png b/front/public/images/small/Natura/natura.kama.bloodwood/0.png deleted file mode 100644 index ab0ba9c09c..0000000000 Binary files a/front/public/images/small/Natura/natura.kama.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.kama.darkwood/0.png b/front/public/images/small/Natura/natura.kama.darkwood/0.png deleted file mode 100644 index bb39a2a766..0000000000 Binary files a/front/public/images/small/Natura/natura.kama.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.kama.fusewood/0.png b/front/public/images/small/Natura/natura.kama.fusewood/0.png deleted file mode 100644 index be124c3743..0000000000 Binary files a/front/public/images/small/Natura/natura.kama.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.kama.ghostwood/0.png b/front/public/images/small/Natura/natura.kama.ghostwood/0.png deleted file mode 100644 index bd8fd04121..0000000000 Binary files a/front/public/images/small/Natura/natura.kama.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.kama.netherquartz/0.png b/front/public/images/small/Natura/natura.kama.netherquartz/0.png deleted file mode 100644 index 8c0a41867b..0000000000 Binary files a/front/public/images/small/Natura/natura.kama.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.pickaxe.bloodwood/0.png b/front/public/images/small/Natura/natura.pickaxe.bloodwood/0.png deleted file mode 100644 index d4a821a7a0..0000000000 Binary files a/front/public/images/small/Natura/natura.pickaxe.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.pickaxe.darkwood/0.png b/front/public/images/small/Natura/natura.pickaxe.darkwood/0.png deleted file mode 100644 index e69b93a377..0000000000 Binary files a/front/public/images/small/Natura/natura.pickaxe.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.pickaxe.fusewood/0.png b/front/public/images/small/Natura/natura.pickaxe.fusewood/0.png deleted file mode 100644 index e8ccf51d94..0000000000 Binary files a/front/public/images/small/Natura/natura.pickaxe.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.pickaxe.ghostwood/0.png b/front/public/images/small/Natura/natura.pickaxe.ghostwood/0.png deleted file mode 100644 index d3a165f651..0000000000 Binary files a/front/public/images/small/Natura/natura.pickaxe.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.pickaxe.netherquartz/0.png b/front/public/images/small/Natura/natura.pickaxe.netherquartz/0.png deleted file mode 100644 index 4502c29406..0000000000 Binary files a/front/public/images/small/Natura/natura.pickaxe.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.shovel.bloodwood/0.png b/front/public/images/small/Natura/natura.shovel.bloodwood/0.png deleted file mode 100644 index b3f9d5480a..0000000000 Binary files a/front/public/images/small/Natura/natura.shovel.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.shovel.darkwood/0.png b/front/public/images/small/Natura/natura.shovel.darkwood/0.png deleted file mode 100644 index 56fa0ba692..0000000000 Binary files a/front/public/images/small/Natura/natura.shovel.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.shovel.fusewood/0.png b/front/public/images/small/Natura/natura.shovel.fusewood/0.png deleted file mode 100644 index 3a5d9cba9d..0000000000 Binary files a/front/public/images/small/Natura/natura.shovel.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.shovel.ghostwood/0.png b/front/public/images/small/Natura/natura.shovel.ghostwood/0.png deleted file mode 100644 index a0c7a87f88..0000000000 Binary files a/front/public/images/small/Natura/natura.shovel.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.shovel.netherquartz/0.png b/front/public/images/small/Natura/natura.shovel.netherquartz/0.png deleted file mode 100644 index 54b6300c52..0000000000 Binary files a/front/public/images/small/Natura/natura.shovel.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.spawnegg/0.png b/front/public/images/small/Natura/natura.spawnegg/0.png deleted file mode 100644 index e7eee40358..0000000000 Binary files a/front/public/images/small/Natura/natura.spawnegg/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.spawnegg/1.png b/front/public/images/small/Natura/natura.spawnegg/1.png deleted file mode 100644 index 544424d6a5..0000000000 Binary files a/front/public/images/small/Natura/natura.spawnegg/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.spawnegg/2.png b/front/public/images/small/Natura/natura.spawnegg/2.png deleted file mode 100644 index 0638bdb20d..0000000000 Binary files a/front/public/images/small/Natura/natura.spawnegg/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.spawnegg/3.png b/front/public/images/small/Natura/natura.spawnegg/3.png deleted file mode 100644 index 544424d6a5..0000000000 Binary files a/front/public/images/small/Natura/natura.spawnegg/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stewbowl/14.png b/front/public/images/small/Natura/natura.stewbowl/14.png deleted file mode 100644 index 666c39e615..0000000000 Binary files a/front/public/images/small/Natura/natura.stewbowl/14.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/0.png b/front/public/images/small/Natura/natura.stick/0.png deleted file mode 100644 index c1ef042f43..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/1.png b/front/public/images/small/Natura/natura.stick/1.png deleted file mode 100644 index 374569ba5f..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/10.png b/front/public/images/small/Natura/natura.stick/10.png deleted file mode 100644 index 9b99f9c06c..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/10.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/11.png b/front/public/images/small/Natura/natura.stick/11.png deleted file mode 100644 index b2fa52e7ae..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/11.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/12.png b/front/public/images/small/Natura/natura.stick/12.png deleted file mode 100644 index e1816aa645..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/12.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/2.png b/front/public/images/small/Natura/natura.stick/2.png deleted file mode 100644 index f2e714c281..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/3.png b/front/public/images/small/Natura/natura.stick/3.png deleted file mode 100644 index 54deb63462..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/4.png b/front/public/images/small/Natura/natura.stick/4.png deleted file mode 100644 index f0dffd66b0..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/5.png b/front/public/images/small/Natura/natura.stick/5.png deleted file mode 100644 index 9290bebed9..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/6.png b/front/public/images/small/Natura/natura.stick/6.png deleted file mode 100644 index 568e88db6f..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/7.png b/front/public/images/small/Natura/natura.stick/7.png deleted file mode 100644 index 270fdaef85..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/8.png b/front/public/images/small/Natura/natura.stick/8.png deleted file mode 100644 index f66e27e20e..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/8.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.stick/9.png b/front/public/images/small/Natura/natura.stick/9.png deleted file mode 100644 index 7547831166..0000000000 Binary files a/front/public/images/small/Natura/natura.stick/9.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.sword.bloodwood/0.png b/front/public/images/small/Natura/natura.sword.bloodwood/0.png deleted file mode 100644 index ca4bcbe7d7..0000000000 Binary files a/front/public/images/small/Natura/natura.sword.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.sword.darkwood/0.png b/front/public/images/small/Natura/natura.sword.darkwood/0.png deleted file mode 100644 index 249cbf0245..0000000000 Binary files a/front/public/images/small/Natura/natura.sword.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.sword.fusewood/0.png b/front/public/images/small/Natura/natura.sword.fusewood/0.png deleted file mode 100644 index a29242127f..0000000000 Binary files a/front/public/images/small/Natura/natura.sword.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.sword.ghostwood/0.png b/front/public/images/small/Natura/natura.sword.ghostwood/0.png deleted file mode 100644 index 1f0a3aba7b..0000000000 Binary files a/front/public/images/small/Natura/natura.sword.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/natura.sword.netherquartz/0.png b/front/public/images/small/Natura/natura.sword.netherquartz/0.png deleted file mode 100644 index 20d1ab1467..0000000000 Binary files a/front/public/images/small/Natura/natura.sword.netherquartz/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/0.png b/front/public/images/small/Natura/plankSlab1/0.png deleted file mode 100644 index e17b153563..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/1.png b/front/public/images/small/Natura/plankSlab1/1.png deleted file mode 100644 index 7ec8749b1b..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/2.png b/front/public/images/small/Natura/plankSlab1/2.png deleted file mode 100644 index e24e92bc87..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/3.png b/front/public/images/small/Natura/plankSlab1/3.png deleted file mode 100644 index 6367dd5208..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/4.png b/front/public/images/small/Natura/plankSlab1/4.png deleted file mode 100644 index 0d58cb5885..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/5.png b/front/public/images/small/Natura/plankSlab1/5.png deleted file mode 100644 index 8b6396ffe8..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/6.png b/front/public/images/small/Natura/plankSlab1/6.png deleted file mode 100644 index 2f6adad0c9..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab1/7.png b/front/public/images/small/Natura/plankSlab1/7.png deleted file mode 100644 index 4653e153fb..0000000000 Binary files a/front/public/images/small/Natura/plankSlab1/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab2/0.png b/front/public/images/small/Natura/plankSlab2/0.png deleted file mode 100644 index 66a19d3e86..0000000000 Binary files a/front/public/images/small/Natura/plankSlab2/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab2/1.png b/front/public/images/small/Natura/plankSlab2/1.png deleted file mode 100644 index bdaf436308..0000000000 Binary files a/front/public/images/small/Natura/plankSlab2/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab2/2.png b/front/public/images/small/Natura/plankSlab2/2.png deleted file mode 100644 index 1c81542735..0000000000 Binary files a/front/public/images/small/Natura/plankSlab2/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab2/3.png b/front/public/images/small/Natura/plankSlab2/3.png deleted file mode 100644 index 0437524539..0000000000 Binary files a/front/public/images/small/Natura/plankSlab2/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/plankSlab2/4.png b/front/public/images/small/Natura/plankSlab2/4.png deleted file mode 100644 index 8764a5298b..0000000000 Binary files a/front/public/images/small/Natura/plankSlab2/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/0.png b/front/public/images/small/Natura/planks/0.png deleted file mode 100644 index 2b1b5c942c..0000000000 Binary files a/front/public/images/small/Natura/planks/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/1.png b/front/public/images/small/Natura/planks/1.png deleted file mode 100644 index cf2ce4d0bb..0000000000 Binary files a/front/public/images/small/Natura/planks/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/10.png b/front/public/images/small/Natura/planks/10.png deleted file mode 100644 index 3c2b4744c7..0000000000 Binary files a/front/public/images/small/Natura/planks/10.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/11.png b/front/public/images/small/Natura/planks/11.png deleted file mode 100644 index 283937674c..0000000000 Binary files a/front/public/images/small/Natura/planks/11.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/12.png b/front/public/images/small/Natura/planks/12.png deleted file mode 100644 index 97625b7cb9..0000000000 Binary files a/front/public/images/small/Natura/planks/12.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/2.png b/front/public/images/small/Natura/planks/2.png deleted file mode 100644 index b2ed70173e..0000000000 Binary files a/front/public/images/small/Natura/planks/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/3.png b/front/public/images/small/Natura/planks/3.png deleted file mode 100644 index a21cb5b10a..0000000000 Binary files a/front/public/images/small/Natura/planks/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/4.png b/front/public/images/small/Natura/planks/4.png deleted file mode 100644 index af8009d1ed..0000000000 Binary files a/front/public/images/small/Natura/planks/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/5.png b/front/public/images/small/Natura/planks/5.png deleted file mode 100644 index 1d727e0244..0000000000 Binary files a/front/public/images/small/Natura/planks/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/6.png b/front/public/images/small/Natura/planks/6.png deleted file mode 100644 index 725b8520fb..0000000000 Binary files a/front/public/images/small/Natura/planks/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/7.png b/front/public/images/small/Natura/planks/7.png deleted file mode 100644 index 54da0c0a55..0000000000 Binary files a/front/public/images/small/Natura/planks/7.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/8.png b/front/public/images/small/Natura/planks/8.png deleted file mode 100644 index 2ba814a4f5..0000000000 Binary files a/front/public/images/small/Natura/planks/8.png and /dev/null differ diff --git a/front/public/images/small/Natura/planks/9.png b/front/public/images/small/Natura/planks/9.png deleted file mode 100644 index 6447dbfdee..0000000000 Binary files a/front/public/images/small/Natura/planks/9.png and /dev/null differ diff --git a/front/public/images/small/Natura/potatoBag/0.png b/front/public/images/small/Natura/potatoBag/0.png deleted file mode 100644 index 466a1a1b1d..0000000000 Binary files a/front/public/images/small/Natura/potatoBag/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.amaranth/0.png b/front/public/images/small/Natura/pressureplate.amaranth/0.png deleted file mode 100644 index 863e01e9f2..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.amaranth/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.bloodwood/0.png b/front/public/images/small/Natura/pressureplate.bloodwood/0.png deleted file mode 100644 index 4b3693795e..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.darkwood/0.png b/front/public/images/small/Natura/pressureplate.darkwood/0.png deleted file mode 100644 index 103721f206..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.eucalyptus/0.png b/front/public/images/small/Natura/pressureplate.eucalyptus/0.png deleted file mode 100644 index 7708d0ebed..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.fusewood/0.png b/front/public/images/small/Natura/pressureplate.fusewood/0.png deleted file mode 100644 index b263680d1d..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.ghostwood/0.png b/front/public/images/small/Natura/pressureplate.ghostwood/0.png deleted file mode 100644 index f4f68ead27..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.hopseed/0.png b/front/public/images/small/Natura/pressureplate.hopseed/0.png deleted file mode 100644 index 24a9467bec..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.hopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.maple/0.png b/front/public/images/small/Natura/pressureplate.maple/0.png deleted file mode 100644 index a79403b65f..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.maple/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.redwood/0.png b/front/public/images/small/Natura/pressureplate.redwood/0.png deleted file mode 100644 index 8a9e4757af..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.redwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.sakura/0.png b/front/public/images/small/Natura/pressureplate.sakura/0.png deleted file mode 100644 index b96c9001e0..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.sakura/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.silverbell/0.png b/front/public/images/small/Natura/pressureplate.silverbell/0.png deleted file mode 100644 index 0100eb2851..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.silverbell/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.tiger/0.png b/front/public/images/small/Natura/pressureplate.tiger/0.png deleted file mode 100644 index 64d00da52e..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.tiger/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/pressureplate.willow/0.png b/front/public/images/small/Natura/pressureplate.willow/0.png deleted file mode 100644 index 8990443373..0000000000 Binary files a/front/public/images/small/Natura/pressureplate.willow/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/purpleGlowshroom/0.png b/front/public/images/small/Natura/purpleGlowshroom/0.png deleted file mode 100644 index fdcb3003f1..0000000000 Binary files a/front/public/images/small/Natura/purpleGlowshroom/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwood/0.png b/front/public/images/small/Natura/redwood/0.png deleted file mode 100644 index d6e05b53c4..0000000000 Binary files a/front/public/images/small/Natura/redwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwood/1.png b/front/public/images/small/Natura/redwood/1.png deleted file mode 100644 index 9c1e61c862..0000000000 Binary files a/front/public/images/small/Natura/redwood/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwood/2.png b/front/public/images/small/Natura/redwood/2.png deleted file mode 100644 index b2e6b88a2c..0000000000 Binary files a/front/public/images/small/Natura/redwood/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwoodDoorItem/0.png b/front/public/images/small/Natura/redwoodDoorItem/0.png deleted file mode 100644 index 6ffbade4d5..0000000000 Binary files a/front/public/images/small/Natura/redwoodDoorItem/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwoodDoorItem/1.png b/front/public/images/small/Natura/redwoodDoorItem/1.png deleted file mode 100644 index 4a1aeb62bd..0000000000 Binary files a/front/public/images/small/Natura/redwoodDoorItem/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwoodDoorItem/2.png b/front/public/images/small/Natura/redwoodDoorItem/2.png deleted file mode 100644 index d3e6e26dce..0000000000 Binary files a/front/public/images/small/Natura/redwoodDoorItem/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwoodDoorItem/3.png b/front/public/images/small/Natura/redwoodDoorItem/3.png deleted file mode 100644 index 2e3597d90a..0000000000 Binary files a/front/public/images/small/Natura/redwoodDoorItem/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwoodDoorItem/4.png b/front/public/images/small/Natura/redwoodDoorItem/4.png deleted file mode 100644 index 2cdf01f6dd..0000000000 Binary files a/front/public/images/small/Natura/redwoodDoorItem/4.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwoodDoorItem/5.png b/front/public/images/small/Natura/redwoodDoorItem/5.png deleted file mode 100644 index b7a7565e10..0000000000 Binary files a/front/public/images/small/Natura/redwoodDoorItem/5.png and /dev/null differ diff --git a/front/public/images/small/Natura/redwoodDoorItem/6.png b/front/public/images/small/Natura/redwoodDoorItem/6.png deleted file mode 100644 index 9b8fecf37b..0000000000 Binary files a/front/public/images/small/Natura/redwoodDoorItem/6.png and /dev/null differ diff --git a/front/public/images/small/Natura/saguaro.fruit/0.png b/front/public/images/small/Natura/saguaro.fruit/0.png deleted file mode 100644 index 475d079a78..0000000000 Binary files a/front/public/images/small/Natura/saguaro.fruit/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/soil.tainted/0.png b/front/public/images/small/Natura/soil.tainted/0.png deleted file mode 100644 index 1a2eb76d85..0000000000 Binary files a/front/public/images/small/Natura/soil.tainted/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/soil.tainted/1.png b/front/public/images/small/Natura/soil.tainted/1.png deleted file mode 100644 index 1a3c2be9fd..0000000000 Binary files a/front/public/images/small/Natura/soil.tainted/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/soil.tainted/2.png b/front/public/images/small/Natura/soil.tainted/2.png deleted file mode 100644 index 80af812335..0000000000 Binary files a/front/public/images/small/Natura/soil.tainted/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.amaranth/0.png b/front/public/images/small/Natura/stair.amaranth/0.png deleted file mode 100644 index 03260d79a1..0000000000 Binary files a/front/public/images/small/Natura/stair.amaranth/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.bloodwood/0.png b/front/public/images/small/Natura/stair.bloodwood/0.png deleted file mode 100644 index d357f768db..0000000000 Binary files a/front/public/images/small/Natura/stair.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.darkwood/0.png b/front/public/images/small/Natura/stair.darkwood/0.png deleted file mode 100644 index 0ca65f9440..0000000000 Binary files a/front/public/images/small/Natura/stair.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.eucalyptus/0.png b/front/public/images/small/Natura/stair.eucalyptus/0.png deleted file mode 100644 index 8f3a199ed7..0000000000 Binary files a/front/public/images/small/Natura/stair.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.fusewood/0.png b/front/public/images/small/Natura/stair.fusewood/0.png deleted file mode 100644 index e9055105d5..0000000000 Binary files a/front/public/images/small/Natura/stair.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.ghostwood/0.png b/front/public/images/small/Natura/stair.ghostwood/0.png deleted file mode 100644 index efce9f6878..0000000000 Binary files a/front/public/images/small/Natura/stair.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.hopseed/0.png b/front/public/images/small/Natura/stair.hopseed/0.png deleted file mode 100644 index d529f49585..0000000000 Binary files a/front/public/images/small/Natura/stair.hopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.maple/0.png b/front/public/images/small/Natura/stair.maple/0.png deleted file mode 100644 index 6fcc51798d..0000000000 Binary files a/front/public/images/small/Natura/stair.maple/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.redwood/0.png b/front/public/images/small/Natura/stair.redwood/0.png deleted file mode 100644 index 54d1159f60..0000000000 Binary files a/front/public/images/small/Natura/stair.redwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.sakura/0.png b/front/public/images/small/Natura/stair.sakura/0.png deleted file mode 100644 index 12b5fc5386..0000000000 Binary files a/front/public/images/small/Natura/stair.sakura/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.silverbell/0.png b/front/public/images/small/Natura/stair.silverbell/0.png deleted file mode 100644 index 717cdf85a1..0000000000 Binary files a/front/public/images/small/Natura/stair.silverbell/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.tiger/0.png b/front/public/images/small/Natura/stair.tiger/0.png deleted file mode 100644 index 63f0315a1b..0000000000 Binary files a/front/public/images/small/Natura/stair.tiger/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/stair.willow/0.png b/front/public/images/small/Natura/stair.willow/0.png deleted file mode 100644 index 055dcb3291..0000000000 Binary files a/front/public/images/small/Natura/stair.willow/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.amaranth/0.png b/front/public/images/small/Natura/trapdoor.amaranth/0.png deleted file mode 100644 index 0d330255d3..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.amaranth/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.bloodwood/0.png b/front/public/images/small/Natura/trapdoor.bloodwood/0.png deleted file mode 100644 index fadf3aae65..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.bloodwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.darkwood/0.png b/front/public/images/small/Natura/trapdoor.darkwood/0.png deleted file mode 100644 index d741c73d18..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.darkwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.eucalyptus/0.png b/front/public/images/small/Natura/trapdoor.eucalyptus/0.png deleted file mode 100644 index 3c083092f1..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.eucalyptus/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.fusewood/0.png b/front/public/images/small/Natura/trapdoor.fusewood/0.png deleted file mode 100644 index b80cf155b3..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.fusewood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.ghostwood/0.png b/front/public/images/small/Natura/trapdoor.ghostwood/0.png deleted file mode 100644 index c0a8eff162..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.ghostwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.hopseed/0.png b/front/public/images/small/Natura/trapdoor.hopseed/0.png deleted file mode 100644 index 071b1709e5..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.hopseed/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.maple/0.png b/front/public/images/small/Natura/trapdoor.maple/0.png deleted file mode 100644 index fc9b1cc552..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.maple/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.redwood/0.png b/front/public/images/small/Natura/trapdoor.redwood/0.png deleted file mode 100644 index 03648397ba..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.redwood/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.sakura/0.png b/front/public/images/small/Natura/trapdoor.sakura/0.png deleted file mode 100644 index e411d4c1db..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.sakura/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.silverbell/0.png b/front/public/images/small/Natura/trapdoor.silverbell/0.png deleted file mode 100644 index 30025e65ea..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.silverbell/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.tiger/0.png b/front/public/images/small/Natura/trapdoor.tiger/0.png deleted file mode 100644 index 5a8ce68b1f..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.tiger/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/trapdoor.willow/0.png b/front/public/images/small/Natura/trapdoor.willow/0.png deleted file mode 100644 index 401dc882dc..0000000000 Binary files a/front/public/images/small/Natura/trapdoor.willow/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/tree/0.png b/front/public/images/small/Natura/tree/0.png deleted file mode 100644 index e64cb47868..0000000000 Binary files a/front/public/images/small/Natura/tree/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/tree/1.png b/front/public/images/small/Natura/tree/1.png deleted file mode 100644 index fa042a22df..0000000000 Binary files a/front/public/images/small/Natura/tree/1.png and /dev/null differ diff --git a/front/public/images/small/Natura/tree/2.png b/front/public/images/small/Natura/tree/2.png deleted file mode 100644 index b74f773e63..0000000000 Binary files a/front/public/images/small/Natura/tree/2.png and /dev/null differ diff --git a/front/public/images/small/Natura/tree/3.png b/front/public/images/small/Natura/tree/3.png deleted file mode 100644 index 103aa5c51e..0000000000 Binary files a/front/public/images/small/Natura/tree/3.png and /dev/null differ diff --git a/front/public/images/small/Natura/wartBag/0.png b/front/public/images/small/Natura/wartBag/0.png deleted file mode 100644 index 23961ac07f..0000000000 Binary files a/front/public/images/small/Natura/wartBag/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/waterdrop/0.png b/front/public/images/small/Natura/waterdrop/0.png deleted file mode 100644 index 694aebc987..0000000000 Binary files a/front/public/images/small/Natura/waterdrop/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/wheatBag/0.png b/front/public/images/small/Natura/wheatBag/0.png deleted file mode 100644 index 93f536e8ec..0000000000 Binary files a/front/public/images/small/Natura/wheatBag/0.png and /dev/null differ diff --git a/front/public/images/small/Natura/willow/0.png b/front/public/images/small/Natura/willow/0.png deleted file mode 100644 index 2b8020e246..0000000000 Binary files a/front/public/images/small/Natura/willow/0.png and /dev/null differ diff --git a/front/public/images/small/NodalMechanics/item.nodalmechanics.matrix/0.png b/front/public/images/small/NodalMechanics/item.nodalmechanics.matrix/0.png deleted file mode 100644 index 0e1d94913c..0000000000 Binary files a/front/public/images/small/NodalMechanics/item.nodalmechanics.matrix/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/autoanvil/0.png b/front/public/images/small/OpenBlocks/autoanvil/0.png deleted file mode 100644 index dced224dc1..0000000000 Binary files a/front/public/images/small/OpenBlocks/autoanvil/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/autoenchantmenttable/0.png b/front/public/images/small/OpenBlocks/autoenchantmenttable/0.png deleted file mode 100644 index 4284bcc76d..0000000000 Binary files a/front/public/images/small/OpenBlocks/autoenchantmenttable/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/beartrap/0.png b/front/public/images/small/OpenBlocks/beartrap/0.png deleted file mode 100644 index 0609e1c6ff..0000000000 Binary files a/front/public/images/small/OpenBlocks/beartrap/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/bigbutton/0.png b/front/public/images/small/OpenBlocks/bigbutton/0.png deleted file mode 100644 index 07cc2f9c63..0000000000 Binary files a/front/public/images/small/OpenBlocks/bigbutton/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/blockPlacer/0.png b/front/public/images/small/OpenBlocks/blockPlacer/0.png deleted file mode 100644 index 099edbeda3..0000000000 Binary files a/front/public/images/small/OpenBlocks/blockPlacer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/blockbreaker/0.png b/front/public/images/small/OpenBlocks/blockbreaker/0.png deleted file mode 100644 index 93118fc29e..0000000000 Binary files a/front/public/images/small/OpenBlocks/blockbreaker/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/builder_guide/0.png b/front/public/images/small/OpenBlocks/builder_guide/0.png deleted file mode 100644 index a11968a5fb..0000000000 Binary files a/front/public/images/small/OpenBlocks/builder_guide/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/cannon/0.png b/front/public/images/small/OpenBlocks/cannon/0.png deleted file mode 100644 index 05d8129786..0000000000 Binary files a/front/public/images/small/OpenBlocks/cannon/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/canvas/0.png b/front/public/images/small/OpenBlocks/canvas/0.png deleted file mode 100644 index e7cb868ed5..0000000000 Binary files a/front/public/images/small/OpenBlocks/canvas/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/canvasglass/0.png b/front/public/images/small/OpenBlocks/canvasglass/0.png deleted file mode 100644 index 410b1b3418..0000000000 Binary files a/front/public/images/small/OpenBlocks/canvasglass/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/cartographer/0.png b/front/public/images/small/OpenBlocks/cartographer/0.png deleted file mode 100644 index d24bdacb46..0000000000 Binary files a/front/public/images/small/OpenBlocks/cartographer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/craneBackpack/0.png b/front/public/images/small/OpenBlocks/craneBackpack/0.png deleted file mode 100644 index 226b66cc3d..0000000000 Binary files a/front/public/images/small/OpenBlocks/craneBackpack/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/craneControl/0.png b/front/public/images/small/OpenBlocks/craneControl/0.png deleted file mode 100644 index f2382c06b6..0000000000 Binary files a/front/public/images/small/OpenBlocks/craneControl/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/crayonGlasses/0.png b/front/public/images/small/OpenBlocks/crayonGlasses/0.png deleted file mode 100644 index 4007823217..0000000000 Binary files a/front/public/images/small/OpenBlocks/crayonGlasses/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/cursor/0.png b/front/public/images/small/OpenBlocks/cursor/0.png deleted file mode 100644 index d8147f413c..0000000000 Binary files a/front/public/images/small/OpenBlocks/cursor/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/devnull/0.png b/front/public/images/small/OpenBlocks/devnull/0.png deleted file mode 100644 index a83c04f4f7..0000000000 Binary files a/front/public/images/small/OpenBlocks/devnull/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/donationStation/0.png b/front/public/images/small/OpenBlocks/donationStation/0.png deleted file mode 100644 index b88805304c..0000000000 Binary files a/front/public/images/small/OpenBlocks/donationStation/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/drawingtable/0.png b/front/public/images/small/OpenBlocks/drawingtable/0.png deleted file mode 100644 index d6581aaa3b..0000000000 Binary files a/front/public/images/small/OpenBlocks/drawingtable/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/0.png b/front/public/images/small/OpenBlocks/elevator/0.png deleted file mode 100644 index 47e7082f1e..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/1.png b/front/public/images/small/OpenBlocks/elevator/1.png deleted file mode 100644 index fa33060c84..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/1.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/10.png b/front/public/images/small/OpenBlocks/elevator/10.png deleted file mode 100644 index a9e86d38aa..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/10.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/11.png b/front/public/images/small/OpenBlocks/elevator/11.png deleted file mode 100644 index ea6f7143c6..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/11.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/12.png b/front/public/images/small/OpenBlocks/elevator/12.png deleted file mode 100644 index 5723dd62d5..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/12.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/13.png b/front/public/images/small/OpenBlocks/elevator/13.png deleted file mode 100644 index f5503eaa12..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/13.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/14.png b/front/public/images/small/OpenBlocks/elevator/14.png deleted file mode 100644 index 1b40464474..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/14.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/15.png b/front/public/images/small/OpenBlocks/elevator/15.png deleted file mode 100644 index 4c53311a6b..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/15.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/2.png b/front/public/images/small/OpenBlocks/elevator/2.png deleted file mode 100644 index 79cb9179d7..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/2.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/3.png b/front/public/images/small/OpenBlocks/elevator/3.png deleted file mode 100644 index 1b310bae00..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/3.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/4.png b/front/public/images/small/OpenBlocks/elevator/4.png deleted file mode 100644 index 79d3b57833..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/4.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/5.png b/front/public/images/small/OpenBlocks/elevator/5.png deleted file mode 100644 index 186e78c833..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/5.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/6.png b/front/public/images/small/OpenBlocks/elevator/6.png deleted file mode 100644 index a3bb29fc92..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/6.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/7.png b/front/public/images/small/OpenBlocks/elevator/7.png deleted file mode 100644 index 15a926c9e9..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/7.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/8.png b/front/public/images/small/OpenBlocks/elevator/8.png deleted file mode 100644 index 295dbdff8b..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/8.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator/9.png b/front/public/images/small/OpenBlocks/elevator/9.png deleted file mode 100644 index 81bb3fee96..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator/9.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/0.png b/front/public/images/small/OpenBlocks/elevator_rotating/0.png deleted file mode 100644 index 62ca7eef82..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/1.png b/front/public/images/small/OpenBlocks/elevator_rotating/1.png deleted file mode 100644 index 9366be1a69..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/1.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/10.png b/front/public/images/small/OpenBlocks/elevator_rotating/10.png deleted file mode 100644 index f405d4636a..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/10.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/11.png b/front/public/images/small/OpenBlocks/elevator_rotating/11.png deleted file mode 100644 index de884951b4..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/11.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/12.png b/front/public/images/small/OpenBlocks/elevator_rotating/12.png deleted file mode 100644 index 4b99b6525b..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/12.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/13.png b/front/public/images/small/OpenBlocks/elevator_rotating/13.png deleted file mode 100644 index 5bacf2dfa0..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/13.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/14.png b/front/public/images/small/OpenBlocks/elevator_rotating/14.png deleted file mode 100644 index ca9cd777e6..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/14.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/15.png b/front/public/images/small/OpenBlocks/elevator_rotating/15.png deleted file mode 100644 index a458227c54..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/15.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/2.png b/front/public/images/small/OpenBlocks/elevator_rotating/2.png deleted file mode 100644 index 2659f80ab3..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/2.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/3.png b/front/public/images/small/OpenBlocks/elevator_rotating/3.png deleted file mode 100644 index 7992a71ca8..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/3.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/4.png b/front/public/images/small/OpenBlocks/elevator_rotating/4.png deleted file mode 100644 index c0bdc88ed5..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/4.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/5.png b/front/public/images/small/OpenBlocks/elevator_rotating/5.png deleted file mode 100644 index cbb61351c6..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/5.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/6.png b/front/public/images/small/OpenBlocks/elevator_rotating/6.png deleted file mode 100644 index 8261d93a7e..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/6.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/7.png b/front/public/images/small/OpenBlocks/elevator_rotating/7.png deleted file mode 100644 index 58c6315fb5..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/7.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/8.png b/front/public/images/small/OpenBlocks/elevator_rotating/8.png deleted file mode 100644 index bf898692a0..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/8.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/elevator_rotating/9.png b/front/public/images/small/OpenBlocks/elevator_rotating/9.png deleted file mode 100644 index 6ee1ea94e3..0000000000 Binary files a/front/public/images/small/OpenBlocks/elevator_rotating/9.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/emptyMap/0.png b/front/public/images/small/OpenBlocks/emptyMap/0.png deleted file mode 100644 index 91245ffca5..0000000000 Binary files a/front/public/images/small/OpenBlocks/emptyMap/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/epicEraser/0.png b/front/public/images/small/OpenBlocks/epicEraser/0.png deleted file mode 100644 index 5a15bafa33..0000000000 Binary files a/front/public/images/small/OpenBlocks/epicEraser/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/fan/0.png b/front/public/images/small/OpenBlocks/fan/0.png deleted file mode 100644 index 93bf03910b..0000000000 Binary files a/front/public/images/small/OpenBlocks/fan/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/filledbucket/0.png b/front/public/images/small/OpenBlocks/filledbucket/0.png deleted file mode 100644 index 86da80187a..0000000000 Binary files a/front/public/images/small/OpenBlocks/filledbucket/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/flag/0.png b/front/public/images/small/OpenBlocks/flag/0.png deleted file mode 100644 index c1f17024bc..0000000000 Binary files a/front/public/images/small/OpenBlocks/flag/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/0.png b/front/public/images/small/OpenBlocks/generic/0.png deleted file mode 100644 index be86adef8b..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/1.png b/front/public/images/small/OpenBlocks/generic/1.png deleted file mode 100644 index bff8cc857d..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/1.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/10.png b/front/public/images/small/OpenBlocks/generic/10.png deleted file mode 100644 index 1b9ba92bd0..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/10.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/11.png b/front/public/images/small/OpenBlocks/generic/11.png deleted file mode 100644 index ab811f3f89..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/11.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/2.png b/front/public/images/small/OpenBlocks/generic/2.png deleted file mode 100644 index 46d6e10ab4..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/2.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/3.png b/front/public/images/small/OpenBlocks/generic/3.png deleted file mode 100644 index 536785b03e..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/3.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/5.png b/front/public/images/small/OpenBlocks/generic/5.png deleted file mode 100644 index fa8ba74b24..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/5.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/6.png b/front/public/images/small/OpenBlocks/generic/6.png deleted file mode 100644 index 19f32d279c..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/6.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/7.png b/front/public/images/small/OpenBlocks/generic/7.png deleted file mode 100644 index f1c31c9330..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/7.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/generic/9.png b/front/public/images/small/OpenBlocks/generic/9.png deleted file mode 100644 index 1f8e2b451a..0000000000 Binary files a/front/public/images/small/OpenBlocks/generic/9.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/genericUnstackable/0.png b/front/public/images/small/OpenBlocks/genericUnstackable/0.png deleted file mode 100644 index 36e4b6b78d..0000000000 Binary files a/front/public/images/small/OpenBlocks/genericUnstackable/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/goldenEye/0.png b/front/public/images/small/OpenBlocks/goldenEye/0.png deleted file mode 100644 index dc0b74feb1..0000000000 Binary files a/front/public/images/small/OpenBlocks/goldenEye/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/goldenEye/100.png b/front/public/images/small/OpenBlocks/goldenEye/100.png deleted file mode 100644 index dc0b74feb1..0000000000 Binary files a/front/public/images/small/OpenBlocks/goldenEye/100.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/goldenegg/0.png b/front/public/images/small/OpenBlocks/goldenegg/0.png deleted file mode 100644 index 2eb76855b1..0000000000 Binary files a/front/public/images/small/OpenBlocks/goldenegg/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/grave/0.png b/front/public/images/small/OpenBlocks/grave/0.png deleted file mode 100644 index 457f4f4420..0000000000 Binary files a/front/public/images/small/OpenBlocks/grave/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/guide/0.png b/front/public/images/small/OpenBlocks/guide/0.png deleted file mode 100644 index 0911f1fc5a..0000000000 Binary files a/front/public/images/small/OpenBlocks/guide/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/hangglider/0.png b/front/public/images/small/OpenBlocks/hangglider/0.png deleted file mode 100644 index 7a1eff049f..0000000000 Binary files a/front/public/images/small/OpenBlocks/hangglider/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/imaginary/0.png b/front/public/images/small/OpenBlocks/imaginary/0.png deleted file mode 100644 index a4a1b11952..0000000000 Binary files a/front/public/images/small/OpenBlocks/imaginary/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/imaginary/1.png b/front/public/images/small/OpenBlocks/imaginary/1.png deleted file mode 100644 index 72c74e8fb0..0000000000 Binary files a/front/public/images/small/OpenBlocks/imaginary/1.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/infoBook/0.png b/front/public/images/small/OpenBlocks/infoBook/0.png deleted file mode 100644 index a98787209c..0000000000 Binary files a/front/public/images/small/OpenBlocks/infoBook/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/itemDropper/0.png b/front/public/images/small/OpenBlocks/itemDropper/0.png deleted file mode 100644 index 8db66987a0..0000000000 Binary files a/front/public/images/small/OpenBlocks/itemDropper/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/ladder/0.png b/front/public/images/small/OpenBlocks/ladder/0.png deleted file mode 100644 index fc934c8211..0000000000 Binary files a/front/public/images/small/OpenBlocks/ladder/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/luggage/0.png b/front/public/images/small/OpenBlocks/luggage/0.png deleted file mode 100644 index e747ed70de..0000000000 Binary files a/front/public/images/small/OpenBlocks/luggage/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/paintBrush/0.png b/front/public/images/small/OpenBlocks/paintBrush/0.png deleted file mode 100644 index 0838080928..0000000000 Binary files a/front/public/images/small/OpenBlocks/paintBrush/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/paintcan/0.png b/front/public/images/small/OpenBlocks/paintcan/0.png deleted file mode 100644 index 794f22599f..0000000000 Binary files a/front/public/images/small/OpenBlocks/paintcan/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/paintmixer/0.png b/front/public/images/small/OpenBlocks/paintmixer/0.png deleted file mode 100644 index e843dc7a0e..0000000000 Binary files a/front/public/images/small/OpenBlocks/paintmixer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/path/0.png b/front/public/images/small/OpenBlocks/path/0.png deleted file mode 100644 index 9d4c2e315f..0000000000 Binary files a/front/public/images/small/OpenBlocks/path/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/pedometer/0.png b/front/public/images/small/OpenBlocks/pedometer/0.png deleted file mode 100644 index c2049b685e..0000000000 Binary files a/front/public/images/small/OpenBlocks/pedometer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/pencilGlasses/0.png b/front/public/images/small/OpenBlocks/pencilGlasses/0.png deleted file mode 100644 index d087a94911..0000000000 Binary files a/front/public/images/small/OpenBlocks/pencilGlasses/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/projector/0.png b/front/public/images/small/OpenBlocks/projector/0.png deleted file mode 100644 index 1a91dc191a..0000000000 Binary files a/front/public/images/small/OpenBlocks/projector/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/ropeladder/0.png b/front/public/images/small/OpenBlocks/ropeladder/0.png deleted file mode 100644 index 1c39e28014..0000000000 Binary files a/front/public/images/small/OpenBlocks/ropeladder/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/scaffolding/0.png b/front/public/images/small/OpenBlocks/scaffolding/0.png deleted file mode 100644 index b23258e3b2..0000000000 Binary files a/front/public/images/small/OpenBlocks/scaffolding/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/seriousGlasses/0.png b/front/public/images/small/OpenBlocks/seriousGlasses/0.png deleted file mode 100644 index 0831f962f2..0000000000 Binary files a/front/public/images/small/OpenBlocks/seriousGlasses/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/sky/0.png b/front/public/images/small/OpenBlocks/sky/0.png deleted file mode 100644 index 7cd1bd572d..0000000000 Binary files a/front/public/images/small/OpenBlocks/sky/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/sky/1.png b/front/public/images/small/OpenBlocks/sky/1.png deleted file mode 100644 index 7cd1bd572d..0000000000 Binary files a/front/public/images/small/OpenBlocks/sky/1.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/sleepingBag/0.png b/front/public/images/small/OpenBlocks/sleepingBag/0.png deleted file mode 100644 index 0bca1162a1..0000000000 Binary files a/front/public/images/small/OpenBlocks/sleepingBag/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/slimalyzer/0.png b/front/public/images/small/OpenBlocks/slimalyzer/0.png deleted file mode 100644 index 00d851db35..0000000000 Binary files a/front/public/images/small/OpenBlocks/slimalyzer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/sonicglasses/0.png b/front/public/images/small/OpenBlocks/sonicglasses/0.png deleted file mode 100644 index 991cb115a7..0000000000 Binary files a/front/public/images/small/OpenBlocks/sonicglasses/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/sponge/0.png b/front/public/images/small/OpenBlocks/sponge/0.png deleted file mode 100644 index 4f8aef749a..0000000000 Binary files a/front/public/images/small/OpenBlocks/sponge/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/spongeonastick/0.png b/front/public/images/small/OpenBlocks/spongeonastick/0.png deleted file mode 100644 index 7ae1d9210b..0000000000 Binary files a/front/public/images/small/OpenBlocks/spongeonastick/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/sprinkler/0.png b/front/public/images/small/OpenBlocks/sprinkler/0.png deleted file mode 100644 index 2646a31403..0000000000 Binary files a/front/public/images/small/OpenBlocks/sprinkler/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/squeegee/0.png b/front/public/images/small/OpenBlocks/squeegee/0.png deleted file mode 100644 index ef7fcaeac8..0000000000 Binary files a/front/public/images/small/OpenBlocks/squeegee/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/0.png b/front/public/images/small/OpenBlocks/stencil/0.png deleted file mode 100644 index 984774260b..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/1.png b/front/public/images/small/OpenBlocks/stencil/1.png deleted file mode 100644 index ea1aea9748..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/1.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/10.png b/front/public/images/small/OpenBlocks/stencil/10.png deleted file mode 100644 index e1d89e0085..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/10.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/11.png b/front/public/images/small/OpenBlocks/stencil/11.png deleted file mode 100644 index 697aeb3b7c..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/11.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/12.png b/front/public/images/small/OpenBlocks/stencil/12.png deleted file mode 100644 index 1cb75f4617..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/12.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/13.png b/front/public/images/small/OpenBlocks/stencil/13.png deleted file mode 100644 index 66d22246aa..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/13.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/14.png b/front/public/images/small/OpenBlocks/stencil/14.png deleted file mode 100644 index 1ae06ee1a3..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/14.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/2.png b/front/public/images/small/OpenBlocks/stencil/2.png deleted file mode 100644 index 18007ccb61..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/2.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/3.png b/front/public/images/small/OpenBlocks/stencil/3.png deleted file mode 100644 index 1be6335a7b..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/3.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/4.png b/front/public/images/small/OpenBlocks/stencil/4.png deleted file mode 100644 index 8ae0997492..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/4.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/5.png b/front/public/images/small/OpenBlocks/stencil/5.png deleted file mode 100644 index df4e123d07..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/5.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/6.png b/front/public/images/small/OpenBlocks/stencil/6.png deleted file mode 100644 index 2831a2084c..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/6.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/7.png b/front/public/images/small/OpenBlocks/stencil/7.png deleted file mode 100644 index 24ec17c991..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/7.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/8.png b/front/public/images/small/OpenBlocks/stencil/8.png deleted file mode 100644 index bae861b0d7..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/8.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/stencil/9.png b/front/public/images/small/OpenBlocks/stencil/9.png deleted file mode 100644 index eff859a65d..0000000000 Binary files a/front/public/images/small/OpenBlocks/stencil/9.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/target/0.png b/front/public/images/small/OpenBlocks/target/0.png deleted file mode 100644 index 570686f154..0000000000 Binary files a/front/public/images/small/OpenBlocks/target/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/tastyClay/0.png b/front/public/images/small/OpenBlocks/tastyClay/0.png deleted file mode 100644 index 597f41ced0..0000000000 Binary files a/front/public/images/small/OpenBlocks/tastyClay/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/technicolorGlasses/0.png b/front/public/images/small/OpenBlocks/technicolorGlasses/0.png deleted file mode 100644 index 63d731988e..0000000000 Binary files a/front/public/images/small/OpenBlocks/technicolorGlasses/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/trophy/0.png b/front/public/images/small/OpenBlocks/trophy/0.png deleted file mode 100644 index 78e95a663c..0000000000 Binary files a/front/public/images/small/OpenBlocks/trophy/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/vacuumhopper/0.png b/front/public/images/small/OpenBlocks/vacuumhopper/0.png deleted file mode 100644 index 708ad5b7d8..0000000000 Binary files a/front/public/images/small/OpenBlocks/vacuumhopper/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/village_highlighter/0.png b/front/public/images/small/OpenBlocks/village_highlighter/0.png deleted file mode 100644 index 32da3e4bed..0000000000 Binary files a/front/public/images/small/OpenBlocks/village_highlighter/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/wrench/0.png b/front/public/images/small/OpenBlocks/wrench/0.png deleted file mode 100644 index d9c0420850..0000000000 Binary files a/front/public/images/small/OpenBlocks/wrench/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/xpbottler/0.png b/front/public/images/small/OpenBlocks/xpbottler/0.png deleted file mode 100644 index e3d8ec58e6..0000000000 Binary files a/front/public/images/small/OpenBlocks/xpbottler/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/xpdrain/0.png b/front/public/images/small/OpenBlocks/xpdrain/0.png deleted file mode 100644 index f51b506d5d..0000000000 Binary files a/front/public/images/small/OpenBlocks/xpdrain/0.png and /dev/null differ diff --git a/front/public/images/small/OpenBlocks/xpshower/0.png b/front/public/images/small/OpenBlocks/xpshower/0.png deleted file mode 100644 index 22a6cc1ec3..0000000000 Binary files a/front/public/images/small/OpenBlocks/xpshower/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/accessPoint/0.png b/front/public/images/small/OpenComputers/accessPoint/0.png deleted file mode 100644 index f652ff6894..0000000000 Binary files a/front/public/images/small/OpenComputers/accessPoint/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/adapter/0.png b/front/public/images/small/OpenComputers/adapter/0.png deleted file mode 100644 index e1e4126ee0..0000000000 Binary files a/front/public/images/small/OpenComputers/adapter/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/assembler/0.png b/front/public/images/small/OpenComputers/assembler/0.png deleted file mode 100644 index cb02f23299..0000000000 Binary files a/front/public/images/small/OpenComputers/assembler/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/cable/0.png b/front/public/images/small/OpenComputers/cable/0.png deleted file mode 100644 index 0b14dccdc3..0000000000 Binary files a/front/public/images/small/OpenComputers/cable/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/capacitor/0.png b/front/public/images/small/OpenComputers/capacitor/0.png deleted file mode 100644 index 1a38997ee9..0000000000 Binary files a/front/public/images/small/OpenComputers/capacitor/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/carpetedCapacitor/0.png b/front/public/images/small/OpenComputers/carpetedCapacitor/0.png deleted file mode 100644 index ce6004ab47..0000000000 Binary files a/front/public/images/small/OpenComputers/carpetedCapacitor/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/case1/0.png b/front/public/images/small/OpenComputers/case1/0.png deleted file mode 100644 index a404b33446..0000000000 Binary files a/front/public/images/small/OpenComputers/case1/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/case2/0.png b/front/public/images/small/OpenComputers/case2/0.png deleted file mode 100644 index e26f0f2508..0000000000 Binary files a/front/public/images/small/OpenComputers/case2/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/case3/0.png b/front/public/images/small/OpenComputers/case3/0.png deleted file mode 100644 index 8295dc862a..0000000000 Binary files a/front/public/images/small/OpenComputers/case3/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/caseCreative/0.png b/front/public/images/small/OpenComputers/caseCreative/0.png deleted file mode 100644 index c7af3924ee..0000000000 Binary files a/front/public/images/small/OpenComputers/caseCreative/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/chameliumBlock/0.png b/front/public/images/small/OpenComputers/chameliumBlock/0.png deleted file mode 100644 index 2fc95a1ee4..0000000000 Binary files a/front/public/images/small/OpenComputers/chameliumBlock/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/charger/0.png b/front/public/images/small/OpenComputers/charger/0.png deleted file mode 100644 index c676485c7b..0000000000 Binary files a/front/public/images/small/OpenComputers/charger/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/disassembler/0.png b/front/public/images/small/OpenComputers/disassembler/0.png deleted file mode 100644 index 934bae417f..0000000000 Binary files a/front/public/images/small/OpenComputers/disassembler/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/diskDrive/0.png b/front/public/images/small/OpenComputers/diskDrive/0.png deleted file mode 100644 index 6e50559c6b..0000000000 Binary files a/front/public/images/small/OpenComputers/diskDrive/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/eeprom/0.png b/front/public/images/small/OpenComputers/eeprom/0.png deleted file mode 100644 index 39a11bab8a..0000000000 Binary files a/front/public/images/small/OpenComputers/eeprom/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/endstone/0.png b/front/public/images/small/OpenComputers/endstone/0.png deleted file mode 100644 index 5571d014a0..0000000000 Binary files a/front/public/images/small/OpenComputers/endstone/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/geolyzer/0.png b/front/public/images/small/OpenComputers/geolyzer/0.png deleted file mode 100644 index a2ad718397..0000000000 Binary files a/front/public/images/small/OpenComputers/geolyzer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/hologram1/0.png b/front/public/images/small/OpenComputers/hologram1/0.png deleted file mode 100644 index f6e490b089..0000000000 Binary files a/front/public/images/small/OpenComputers/hologram1/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/hologram2/0.png b/front/public/images/small/OpenComputers/hologram2/0.png deleted file mode 100644 index e3310f9b57..0000000000 Binary files a/front/public/images/small/OpenComputers/hologram2/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/hoverBoots/0.png b/front/public/images/small/OpenComputers/hoverBoots/0.png deleted file mode 100644 index cc7bf7292b..0000000000 Binary files a/front/public/images/small/OpenComputers/hoverBoots/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item.ae/0.png b/front/public/images/small/OpenComputers/item.ae/0.png deleted file mode 100644 index bb45cf29ec..0000000000 Binary files a/front/public/images/small/OpenComputers/item.ae/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item.ae/1.png b/front/public/images/small/OpenComputers/item.ae/1.png deleted file mode 100644 index bb45cf29ec..0000000000 Binary files a/front/public/images/small/OpenComputers/item.ae/1.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item.ae/2.png b/front/public/images/small/OpenComputers/item.ae/2.png deleted file mode 100644 index bb45cf29ec..0000000000 Binary files a/front/public/images/small/OpenComputers/item.ae/2.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item.forestry/0.png b/front/public/images/small/OpenComputers/item.forestry/0.png deleted file mode 100644 index 552181affe..0000000000 Binary files a/front/public/images/small/OpenComputers/item.forestry/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/0.png b/front/public/images/small/OpenComputers/item/0.png deleted file mode 100644 index 84a541597b..0000000000 Binary files a/front/public/images/small/OpenComputers/item/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/1.png b/front/public/images/small/OpenComputers/item/1.png deleted file mode 100644 index 7933ef78d6..0000000000 Binary files a/front/public/images/small/OpenComputers/item/1.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/10.png b/front/public/images/small/OpenComputers/item/10.png deleted file mode 100644 index b47d6cd72c..0000000000 Binary files a/front/public/images/small/OpenComputers/item/10.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/100.png b/front/public/images/small/OpenComputers/item/100.png deleted file mode 100644 index 43251b4f04..0000000000 Binary files a/front/public/images/small/OpenComputers/item/100.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/101.png b/front/public/images/small/OpenComputers/item/101.png deleted file mode 100644 index 24f0b14c93..0000000000 Binary files a/front/public/images/small/OpenComputers/item/101.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/102.png b/front/public/images/small/OpenComputers/item/102.png deleted file mode 100644 index 4b1b53e95d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/102.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/103.png b/front/public/images/small/OpenComputers/item/103.png deleted file mode 100644 index 7968e91150..0000000000 Binary files a/front/public/images/small/OpenComputers/item/103.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/104.png b/front/public/images/small/OpenComputers/item/104.png deleted file mode 100644 index 4e9460bd9f..0000000000 Binary files a/front/public/images/small/OpenComputers/item/104.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/105.png b/front/public/images/small/OpenComputers/item/105.png deleted file mode 100644 index 919f710cca..0000000000 Binary files a/front/public/images/small/OpenComputers/item/105.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/106.png b/front/public/images/small/OpenComputers/item/106.png deleted file mode 100644 index 64435a762a..0000000000 Binary files a/front/public/images/small/OpenComputers/item/106.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/107.png b/front/public/images/small/OpenComputers/item/107.png deleted file mode 100644 index e57f2b6460..0000000000 Binary files a/front/public/images/small/OpenComputers/item/107.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/108.png b/front/public/images/small/OpenComputers/item/108.png deleted file mode 100644 index bdf86b16ae..0000000000 Binary files a/front/public/images/small/OpenComputers/item/108.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/109.png b/front/public/images/small/OpenComputers/item/109.png deleted file mode 100644 index 9babdbb279..0000000000 Binary files a/front/public/images/small/OpenComputers/item/109.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/11.png b/front/public/images/small/OpenComputers/item/11.png deleted file mode 100644 index 2b42b4dadf..0000000000 Binary files a/front/public/images/small/OpenComputers/item/11.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/110.png b/front/public/images/small/OpenComputers/item/110.png deleted file mode 100644 index f96690ba96..0000000000 Binary files a/front/public/images/small/OpenComputers/item/110.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/112.png b/front/public/images/small/OpenComputers/item/112.png deleted file mode 100644 index 12fa809f64..0000000000 Binary files a/front/public/images/small/OpenComputers/item/112.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/113.png b/front/public/images/small/OpenComputers/item/113.png deleted file mode 100644 index 050ad21274..0000000000 Binary files a/front/public/images/small/OpenComputers/item/113.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/114.png b/front/public/images/small/OpenComputers/item/114.png deleted file mode 100644 index c13ed157a3..0000000000 Binary files a/front/public/images/small/OpenComputers/item/114.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/115.png b/front/public/images/small/OpenComputers/item/115.png deleted file mode 100644 index f9a97832fb..0000000000 Binary files a/front/public/images/small/OpenComputers/item/115.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/116.png b/front/public/images/small/OpenComputers/item/116.png deleted file mode 100644 index a404c78758..0000000000 Binary files a/front/public/images/small/OpenComputers/item/116.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/117.png b/front/public/images/small/OpenComputers/item/117.png deleted file mode 100644 index 8d08c2ff5f..0000000000 Binary files a/front/public/images/small/OpenComputers/item/117.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/12.png b/front/public/images/small/OpenComputers/item/12.png deleted file mode 100644 index 99d5258099..0000000000 Binary files a/front/public/images/small/OpenComputers/item/12.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/13.png b/front/public/images/small/OpenComputers/item/13.png deleted file mode 100644 index fe91ab1742..0000000000 Binary files a/front/public/images/small/OpenComputers/item/13.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/14.png b/front/public/images/small/OpenComputers/item/14.png deleted file mode 100644 index ac032284bc..0000000000 Binary files a/front/public/images/small/OpenComputers/item/14.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/15.png b/front/public/images/small/OpenComputers/item/15.png deleted file mode 100644 index 02e5cc60b8..0000000000 Binary files a/front/public/images/small/OpenComputers/item/15.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/18.png b/front/public/images/small/OpenComputers/item/18.png deleted file mode 100644 index 24638923ac..0000000000 Binary files a/front/public/images/small/OpenComputers/item/18.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/19.png b/front/public/images/small/OpenComputers/item/19.png deleted file mode 100644 index f69379e44d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/19.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/2.png b/front/public/images/small/OpenComputers/item/2.png deleted file mode 100644 index 06096e1e70..0000000000 Binary files a/front/public/images/small/OpenComputers/item/2.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/24.png b/front/public/images/small/OpenComputers/item/24.png deleted file mode 100644 index a6df07e492..0000000000 Binary files a/front/public/images/small/OpenComputers/item/24.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/25.png b/front/public/images/small/OpenComputers/item/25.png deleted file mode 100644 index a7d444978d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/25.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/26.png b/front/public/images/small/OpenComputers/item/26.png deleted file mode 100644 index 0b560e9561..0000000000 Binary files a/front/public/images/small/OpenComputers/item/26.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/27.png b/front/public/images/small/OpenComputers/item/27.png deleted file mode 100644 index 9aa673832c..0000000000 Binary files a/front/public/images/small/OpenComputers/item/27.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/28.png b/front/public/images/small/OpenComputers/item/28.png deleted file mode 100644 index 88e04dca7d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/28.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/29.png b/front/public/images/small/OpenComputers/item/29.png deleted file mode 100644 index b34adbbcb6..0000000000 Binary files a/front/public/images/small/OpenComputers/item/29.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/3.png b/front/public/images/small/OpenComputers/item/3.png deleted file mode 100644 index fd1a61cbf2..0000000000 Binary files a/front/public/images/small/OpenComputers/item/3.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/33.png b/front/public/images/small/OpenComputers/item/33.png deleted file mode 100644 index e8fb446770..0000000000 Binary files a/front/public/images/small/OpenComputers/item/33.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/34.png b/front/public/images/small/OpenComputers/item/34.png deleted file mode 100644 index 7a9f446a3d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/34.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/35.png b/front/public/images/small/OpenComputers/item/35.png deleted file mode 100644 index d8f17dd4dc..0000000000 Binary files a/front/public/images/small/OpenComputers/item/35.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/36.png b/front/public/images/small/OpenComputers/item/36.png deleted file mode 100644 index 520bfd7181..0000000000 Binary files a/front/public/images/small/OpenComputers/item/36.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/38.png b/front/public/images/small/OpenComputers/item/38.png deleted file mode 100644 index 898f3d1cbf..0000000000 Binary files a/front/public/images/small/OpenComputers/item/38.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/39.png b/front/public/images/small/OpenComputers/item/39.png deleted file mode 100644 index e6fee7b565..0000000000 Binary files a/front/public/images/small/OpenComputers/item/39.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/4.png b/front/public/images/small/OpenComputers/item/4.png deleted file mode 100644 index bbe4426c29..0000000000 Binary files a/front/public/images/small/OpenComputers/item/4.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/40.png b/front/public/images/small/OpenComputers/item/40.png deleted file mode 100644 index c55889ed7f..0000000000 Binary files a/front/public/images/small/OpenComputers/item/40.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/41.png b/front/public/images/small/OpenComputers/item/41.png deleted file mode 100644 index b039ac88d5..0000000000 Binary files a/front/public/images/small/OpenComputers/item/41.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/42.png b/front/public/images/small/OpenComputers/item/42.png deleted file mode 100644 index a66b514593..0000000000 Binary files a/front/public/images/small/OpenComputers/item/42.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/43.png b/front/public/images/small/OpenComputers/item/43.png deleted file mode 100644 index 165c952f0f..0000000000 Binary files a/front/public/images/small/OpenComputers/item/43.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/44.png b/front/public/images/small/OpenComputers/item/44.png deleted file mode 100644 index 1e9874c5fa..0000000000 Binary files a/front/public/images/small/OpenComputers/item/44.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/45.png b/front/public/images/small/OpenComputers/item/45.png deleted file mode 100644 index bb3bc09497..0000000000 Binary files a/front/public/images/small/OpenComputers/item/45.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/46.png b/front/public/images/small/OpenComputers/item/46.png deleted file mode 100644 index 9df4f5532f..0000000000 Binary files a/front/public/images/small/OpenComputers/item/46.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/48.png b/front/public/images/small/OpenComputers/item/48.png deleted file mode 100644 index 1fe5866b3b..0000000000 Binary files a/front/public/images/small/OpenComputers/item/48.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/49.png b/front/public/images/small/OpenComputers/item/49.png deleted file mode 100644 index 3b3cb76e51..0000000000 Binary files a/front/public/images/small/OpenComputers/item/49.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/5.png b/front/public/images/small/OpenComputers/item/5.png deleted file mode 100644 index 42f2e05743..0000000000 Binary files a/front/public/images/small/OpenComputers/item/5.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/50.png b/front/public/images/small/OpenComputers/item/50.png deleted file mode 100644 index cb29ba4538..0000000000 Binary files a/front/public/images/small/OpenComputers/item/50.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/51.png b/front/public/images/small/OpenComputers/item/51.png deleted file mode 100644 index 470852e493..0000000000 Binary files a/front/public/images/small/OpenComputers/item/51.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/52.png b/front/public/images/small/OpenComputers/item/52.png deleted file mode 100644 index ddfda02a50..0000000000 Binary files a/front/public/images/small/OpenComputers/item/52.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/53.png b/front/public/images/small/OpenComputers/item/53.png deleted file mode 100644 index b3fa13c271..0000000000 Binary files a/front/public/images/small/OpenComputers/item/53.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/54.png b/front/public/images/small/OpenComputers/item/54.png deleted file mode 100644 index 28bdfa12ce..0000000000 Binary files a/front/public/images/small/OpenComputers/item/54.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/55.png b/front/public/images/small/OpenComputers/item/55.png deleted file mode 100644 index e4923e655a..0000000000 Binary files a/front/public/images/small/OpenComputers/item/55.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/56.png b/front/public/images/small/OpenComputers/item/56.png deleted file mode 100644 index 0906ecfc50..0000000000 Binary files a/front/public/images/small/OpenComputers/item/56.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/57.png b/front/public/images/small/OpenComputers/item/57.png deleted file mode 100644 index 011a86f573..0000000000 Binary files a/front/public/images/small/OpenComputers/item/57.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/58.png b/front/public/images/small/OpenComputers/item/58.png deleted file mode 100644 index 6437a009f2..0000000000 Binary files a/front/public/images/small/OpenComputers/item/58.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/59.png b/front/public/images/small/OpenComputers/item/59.png deleted file mode 100644 index e8b0875740..0000000000 Binary files a/front/public/images/small/OpenComputers/item/59.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/6.png b/front/public/images/small/OpenComputers/item/6.png deleted file mode 100644 index d0fc14b819..0000000000 Binary files a/front/public/images/small/OpenComputers/item/6.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/61.png b/front/public/images/small/OpenComputers/item/61.png deleted file mode 100644 index 18ce602730..0000000000 Binary files a/front/public/images/small/OpenComputers/item/61.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/62.png b/front/public/images/small/OpenComputers/item/62.png deleted file mode 100644 index a88e12d166..0000000000 Binary files a/front/public/images/small/OpenComputers/item/62.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/63.png b/front/public/images/small/OpenComputers/item/63.png deleted file mode 100644 index e2955e11d8..0000000000 Binary files a/front/public/images/small/OpenComputers/item/63.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/64.png b/front/public/images/small/OpenComputers/item/64.png deleted file mode 100644 index e941c950b9..0000000000 Binary files a/front/public/images/small/OpenComputers/item/64.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/65.png b/front/public/images/small/OpenComputers/item/65.png deleted file mode 100644 index acf80bd4ad..0000000000 Binary files a/front/public/images/small/OpenComputers/item/65.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/66.png b/front/public/images/small/OpenComputers/item/66.png deleted file mode 100644 index be5aa74a81..0000000000 Binary files a/front/public/images/small/OpenComputers/item/66.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/67.png b/front/public/images/small/OpenComputers/item/67.png deleted file mode 100644 index f010376c23..0000000000 Binary files a/front/public/images/small/OpenComputers/item/67.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/68.png b/front/public/images/small/OpenComputers/item/68.png deleted file mode 100644 index 33ae90da05..0000000000 Binary files a/front/public/images/small/OpenComputers/item/68.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/69.png b/front/public/images/small/OpenComputers/item/69.png deleted file mode 100644 index 4fa95a2eea..0000000000 Binary files a/front/public/images/small/OpenComputers/item/69.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/7.png b/front/public/images/small/OpenComputers/item/7.png deleted file mode 100644 index d1880a2356..0000000000 Binary files a/front/public/images/small/OpenComputers/item/7.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/70.png b/front/public/images/small/OpenComputers/item/70.png deleted file mode 100644 index bb6fe9f339..0000000000 Binary files a/front/public/images/small/OpenComputers/item/70.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/71.png b/front/public/images/small/OpenComputers/item/71.png deleted file mode 100644 index 32a85259dc..0000000000 Binary files a/front/public/images/small/OpenComputers/item/71.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/72.png b/front/public/images/small/OpenComputers/item/72.png deleted file mode 100644 index 3a4c777b69..0000000000 Binary files a/front/public/images/small/OpenComputers/item/72.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/73.png b/front/public/images/small/OpenComputers/item/73.png deleted file mode 100644 index 7932852e0d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/73.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/74.png b/front/public/images/small/OpenComputers/item/74.png deleted file mode 100644 index 78cb636b38..0000000000 Binary files a/front/public/images/small/OpenComputers/item/74.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/75.png b/front/public/images/small/OpenComputers/item/75.png deleted file mode 100644 index ca46b046b1..0000000000 Binary files a/front/public/images/small/OpenComputers/item/75.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/76.png b/front/public/images/small/OpenComputers/item/76.png deleted file mode 100644 index 50b91e3c92..0000000000 Binary files a/front/public/images/small/OpenComputers/item/76.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/77.png b/front/public/images/small/OpenComputers/item/77.png deleted file mode 100644 index 8f3fd5c2d2..0000000000 Binary files a/front/public/images/small/OpenComputers/item/77.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/78.png b/front/public/images/small/OpenComputers/item/78.png deleted file mode 100644 index 56bdb82c16..0000000000 Binary files a/front/public/images/small/OpenComputers/item/78.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/79.png b/front/public/images/small/OpenComputers/item/79.png deleted file mode 100644 index 4af8b01593..0000000000 Binary files a/front/public/images/small/OpenComputers/item/79.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/8.png b/front/public/images/small/OpenComputers/item/8.png deleted file mode 100644 index 36219b3bb8..0000000000 Binary files a/front/public/images/small/OpenComputers/item/8.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/80.png b/front/public/images/small/OpenComputers/item/80.png deleted file mode 100644 index 5d78f1b1e1..0000000000 Binary files a/front/public/images/small/OpenComputers/item/80.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/81.png b/front/public/images/small/OpenComputers/item/81.png deleted file mode 100644 index f35aeeff49..0000000000 Binary files a/front/public/images/small/OpenComputers/item/81.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/82.png b/front/public/images/small/OpenComputers/item/82.png deleted file mode 100644 index 69b9ab4fff..0000000000 Binary files a/front/public/images/small/OpenComputers/item/82.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/83.png b/front/public/images/small/OpenComputers/item/83.png deleted file mode 100644 index f9d678b43d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/83.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/84.png b/front/public/images/small/OpenComputers/item/84.png deleted file mode 100644 index 9627b33724..0000000000 Binary files a/front/public/images/small/OpenComputers/item/84.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/85.png b/front/public/images/small/OpenComputers/item/85.png deleted file mode 100644 index 404a8620f1..0000000000 Binary files a/front/public/images/small/OpenComputers/item/85.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/86.png b/front/public/images/small/OpenComputers/item/86.png deleted file mode 100644 index fe7eef25d7..0000000000 Binary files a/front/public/images/small/OpenComputers/item/86.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/87.png b/front/public/images/small/OpenComputers/item/87.png deleted file mode 100644 index 02ec3cec4d..0000000000 Binary files a/front/public/images/small/OpenComputers/item/87.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/89.png b/front/public/images/small/OpenComputers/item/89.png deleted file mode 100644 index 04f097f4bb..0000000000 Binary files a/front/public/images/small/OpenComputers/item/89.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/9.png b/front/public/images/small/OpenComputers/item/9.png deleted file mode 100644 index d6a3c792fd..0000000000 Binary files a/front/public/images/small/OpenComputers/item/9.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/90.png b/front/public/images/small/OpenComputers/item/90.png deleted file mode 100644 index ec114286bb..0000000000 Binary files a/front/public/images/small/OpenComputers/item/90.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/91.png b/front/public/images/small/OpenComputers/item/91.png deleted file mode 100644 index 826eed28ba..0000000000 Binary files a/front/public/images/small/OpenComputers/item/91.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/92.png b/front/public/images/small/OpenComputers/item/92.png deleted file mode 100644 index 19a9c17fe7..0000000000 Binary files a/front/public/images/small/OpenComputers/item/92.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/93.png b/front/public/images/small/OpenComputers/item/93.png deleted file mode 100644 index 13765701d2..0000000000 Binary files a/front/public/images/small/OpenComputers/item/93.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/94.png b/front/public/images/small/OpenComputers/item/94.png deleted file mode 100644 index 246d0c62ae..0000000000 Binary files a/front/public/images/small/OpenComputers/item/94.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/95.png b/front/public/images/small/OpenComputers/item/95.png deleted file mode 100644 index ab065e282e..0000000000 Binary files a/front/public/images/small/OpenComputers/item/95.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/96.png b/front/public/images/small/OpenComputers/item/96.png deleted file mode 100644 index 44e9ffd0d9..0000000000 Binary files a/front/public/images/small/OpenComputers/item/96.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/97.png b/front/public/images/small/OpenComputers/item/97.png deleted file mode 100644 index e9ed8006db..0000000000 Binary files a/front/public/images/small/OpenComputers/item/97.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/98.png b/front/public/images/small/OpenComputers/item/98.png deleted file mode 100644 index fcd6305344..0000000000 Binary files a/front/public/images/small/OpenComputers/item/98.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/item/99.png b/front/public/images/small/OpenComputers/item/99.png deleted file mode 100644 index ca7def8045..0000000000 Binary files a/front/public/images/small/OpenComputers/item/99.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/keyboard/0.png b/front/public/images/small/OpenComputers/keyboard/0.png deleted file mode 100644 index 0d36c6641b..0000000000 Binary files a/front/public/images/small/OpenComputers/keyboard/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/microcontroller/0.png b/front/public/images/small/OpenComputers/microcontroller/0.png deleted file mode 100644 index 48a97a494b..0000000000 Binary files a/front/public/images/small/OpenComputers/microcontroller/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/motionSensor/0.png b/front/public/images/small/OpenComputers/motionSensor/0.png deleted file mode 100644 index 06351c8713..0000000000 Binary files a/front/public/images/small/OpenComputers/motionSensor/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/netSplitter/0.png b/front/public/images/small/OpenComputers/netSplitter/0.png deleted file mode 100644 index 20c90f74d0..0000000000 Binary files a/front/public/images/small/OpenComputers/netSplitter/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/powerConverter/0.png b/front/public/images/small/OpenComputers/powerConverter/0.png deleted file mode 100644 index 9a3a8f7ab8..0000000000 Binary files a/front/public/images/small/OpenComputers/powerConverter/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/powerDistributor/0.png b/front/public/images/small/OpenComputers/powerDistributor/0.png deleted file mode 100644 index 9249ec6f52..0000000000 Binary files a/front/public/images/small/OpenComputers/powerDistributor/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/print/0.png b/front/public/images/small/OpenComputers/print/0.png deleted file mode 100644 index 6fc7700e11..0000000000 Binary files a/front/public/images/small/OpenComputers/print/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/printer/0.png b/front/public/images/small/OpenComputers/printer/0.png deleted file mode 100644 index 96fa2630b1..0000000000 Binary files a/front/public/images/small/OpenComputers/printer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/rack/0.png b/front/public/images/small/OpenComputers/rack/0.png deleted file mode 100644 index cea1ba5144..0000000000 Binary files a/front/public/images/small/OpenComputers/rack/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/raid/0.png b/front/public/images/small/OpenComputers/raid/0.png deleted file mode 100644 index dbf700ee8a..0000000000 Binary files a/front/public/images/small/OpenComputers/raid/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/redstone/0.png b/front/public/images/small/OpenComputers/redstone/0.png deleted file mode 100644 index a7663980e7..0000000000 Binary files a/front/public/images/small/OpenComputers/redstone/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/relay/0.png b/front/public/images/small/OpenComputers/relay/0.png deleted file mode 100644 index f5c3f1654c..0000000000 Binary files a/front/public/images/small/OpenComputers/relay/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/robot/0.png b/front/public/images/small/OpenComputers/robot/0.png deleted file mode 100644 index a534dbc050..0000000000 Binary files a/front/public/images/small/OpenComputers/robot/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/robotAfterimage/0.png b/front/public/images/small/OpenComputers/robotAfterimage/0.png deleted file mode 100644 index 73f71e86e1..0000000000 Binary files a/front/public/images/small/OpenComputers/robotAfterimage/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/screen1/0.png b/front/public/images/small/OpenComputers/screen1/0.png deleted file mode 100644 index 0ff476082b..0000000000 Binary files a/front/public/images/small/OpenComputers/screen1/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/screen2/0.png b/front/public/images/small/OpenComputers/screen2/0.png deleted file mode 100644 index b2e2221caa..0000000000 Binary files a/front/public/images/small/OpenComputers/screen2/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/screen3/0.png b/front/public/images/small/OpenComputers/screen3/0.png deleted file mode 100644 index 1715ed8043..0000000000 Binary files a/front/public/images/small/OpenComputers/screen3/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/switch/0.png b/front/public/images/small/OpenComputers/switch/0.png deleted file mode 100644 index f5c3f1654c..0000000000 Binary files a/front/public/images/small/OpenComputers/switch/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/transposer/0.png b/front/public/images/small/OpenComputers/transposer/0.png deleted file mode 100644 index a5961a816f..0000000000 Binary files a/front/public/images/small/OpenComputers/transposer/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/waypoint/0.png b/front/public/images/small/OpenComputers/waypoint/0.png deleted file mode 100644 index d531692d0f..0000000000 Binary files a/front/public/images/small/OpenComputers/waypoint/0.png and /dev/null differ diff --git a/front/public/images/small/OpenComputers/wrench/0.png b/front/public/images/small/OpenComputers/wrench/0.png deleted file mode 100644 index 9b7d6d2b60..0000000000 Binary files a/front/public/images/small/OpenComputers/wrench/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.datacard/0.png b/front/public/images/small/ProjRed_Core/projectred.core.datacard/0.png deleted file mode 100644 index c359e6dfa1..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.datacard/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.drawplate/0.png b/front/public/images/small/ProjRed_Core/projectred.core.drawplate/0.png deleted file mode 100644 index 54638a1207..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.drawplate/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/0.png b/front/public/images/small/ProjRed_Core/projectred.core.part/0.png deleted file mode 100644 index 19c0d36fd6..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/1.png b/front/public/images/small/ProjRed_Core/projectred.core.part/1.png deleted file mode 100644 index 41fa70ed2b..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/10.png b/front/public/images/small/ProjRed_Core/projectred.core.part/10.png deleted file mode 100644 index 7e9c283c73..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/11.png b/front/public/images/small/ProjRed_Core/projectred.core.part/11.png deleted file mode 100644 index 1012cb434a..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/12.png b/front/public/images/small/ProjRed_Core/projectred.core.part/12.png deleted file mode 100644 index 82001782e4..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/13.png b/front/public/images/small/ProjRed_Core/projectred.core.part/13.png deleted file mode 100644 index ac824aeaa5..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/14.png b/front/public/images/small/ProjRed_Core/projectred.core.part/14.png deleted file mode 100644 index 848784c45b..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/15.png b/front/public/images/small/ProjRed_Core/projectred.core.part/15.png deleted file mode 100644 index 74c523b4ad..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/16.png b/front/public/images/small/ProjRed_Core/projectred.core.part/16.png deleted file mode 100644 index f363f3c1ce..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/16.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/17.png b/front/public/images/small/ProjRed_Core/projectred.core.part/17.png deleted file mode 100644 index 27adf6faac..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/17.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/18.png b/front/public/images/small/ProjRed_Core/projectred.core.part/18.png deleted file mode 100644 index 021c14e6df..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/18.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/19.png b/front/public/images/small/ProjRed_Core/projectred.core.part/19.png deleted file mode 100644 index f9f2273798..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/19.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/2.png b/front/public/images/small/ProjRed_Core/projectred.core.part/2.png deleted file mode 100644 index 78d5cf40b7..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/20.png b/front/public/images/small/ProjRed_Core/projectred.core.part/20.png deleted file mode 100644 index ec9f8d144e..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/20.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/21.png b/front/public/images/small/ProjRed_Core/projectred.core.part/21.png deleted file mode 100644 index 662e5a5e08..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/21.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/22.png b/front/public/images/small/ProjRed_Core/projectred.core.part/22.png deleted file mode 100644 index 8947f9fcb4..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/22.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/23.png b/front/public/images/small/ProjRed_Core/projectred.core.part/23.png deleted file mode 100644 index 30b740761e..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/23.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/24.png b/front/public/images/small/ProjRed_Core/projectred.core.part/24.png deleted file mode 100644 index cff809a398..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/24.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/25.png b/front/public/images/small/ProjRed_Core/projectred.core.part/25.png deleted file mode 100644 index 7a12db1ffb..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/25.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/26.png b/front/public/images/small/ProjRed_Core/projectred.core.part/26.png deleted file mode 100644 index 41330fdb72..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/26.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/27.png b/front/public/images/small/ProjRed_Core/projectred.core.part/27.png deleted file mode 100644 index 4b06e775ef..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/27.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/28.png b/front/public/images/small/ProjRed_Core/projectred.core.part/28.png deleted file mode 100644 index ed64fc188f..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/28.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/29.png b/front/public/images/small/ProjRed_Core/projectred.core.part/29.png deleted file mode 100644 index 4ce241bcc9..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/29.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/3.png b/front/public/images/small/ProjRed_Core/projectred.core.part/3.png deleted file mode 100644 index 7d53071780..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/30.png b/front/public/images/small/ProjRed_Core/projectred.core.part/30.png deleted file mode 100644 index 2db65ad423..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/30.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/31.png b/front/public/images/small/ProjRed_Core/projectred.core.part/31.png deleted file mode 100644 index dffd2aa251..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/31.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/32.png b/front/public/images/small/ProjRed_Core/projectred.core.part/32.png deleted file mode 100644 index 1c91df1042..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/32.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/33.png b/front/public/images/small/ProjRed_Core/projectred.core.part/33.png deleted file mode 100644 index abb4acef92..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/33.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/34.png b/front/public/images/small/ProjRed_Core/projectred.core.part/34.png deleted file mode 100644 index c42a838841..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/34.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/35.png b/front/public/images/small/ProjRed_Core/projectred.core.part/35.png deleted file mode 100644 index 95d3313a14..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/35.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/36.png b/front/public/images/small/ProjRed_Core/projectred.core.part/36.png deleted file mode 100644 index f51628bf03..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/36.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/37.png b/front/public/images/small/ProjRed_Core/projectred.core.part/37.png deleted file mode 100644 index 74776e5e6f..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/37.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/38.png b/front/public/images/small/ProjRed_Core/projectred.core.part/38.png deleted file mode 100644 index b1f4e50ea4..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/38.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/39.png b/front/public/images/small/ProjRed_Core/projectred.core.part/39.png deleted file mode 100644 index 852fdbaec2..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/39.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/4.png b/front/public/images/small/ProjRed_Core/projectred.core.part/4.png deleted file mode 100644 index fc00db7156..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/40.png b/front/public/images/small/ProjRed_Core/projectred.core.part/40.png deleted file mode 100644 index 1ed7c6f295..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/40.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/41.png b/front/public/images/small/ProjRed_Core/projectred.core.part/41.png deleted file mode 100644 index 39b04a905d..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/41.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/42.png b/front/public/images/small/ProjRed_Core/projectred.core.part/42.png deleted file mode 100644 index 1ac886223d..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/42.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/43.png b/front/public/images/small/ProjRed_Core/projectred.core.part/43.png deleted file mode 100644 index e0e9a98a14..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/43.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/44.png b/front/public/images/small/ProjRed_Core/projectred.core.part/44.png deleted file mode 100644 index d2d546f568..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/44.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/45.png b/front/public/images/small/ProjRed_Core/projectred.core.part/45.png deleted file mode 100644 index 513e3b8136..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/45.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/46.png b/front/public/images/small/ProjRed_Core/projectred.core.part/46.png deleted file mode 100644 index b9e7d4ca51..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/46.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/47.png b/front/public/images/small/ProjRed_Core/projectred.core.part/47.png deleted file mode 100644 index d0e67cefa3..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/47.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/48.png b/front/public/images/small/ProjRed_Core/projectred.core.part/48.png deleted file mode 100644 index be406812a8..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/48.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/49.png b/front/public/images/small/ProjRed_Core/projectred.core.part/49.png deleted file mode 100644 index 17306193e0..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/49.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/5.png b/front/public/images/small/ProjRed_Core/projectred.core.part/5.png deleted file mode 100644 index 15e4477ac0..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/50.png b/front/public/images/small/ProjRed_Core/projectred.core.part/50.png deleted file mode 100644 index df353ee153..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/50.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/51.png b/front/public/images/small/ProjRed_Core/projectred.core.part/51.png deleted file mode 100644 index 527142981d..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/51.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/52.png b/front/public/images/small/ProjRed_Core/projectred.core.part/52.png deleted file mode 100644 index f2dfec161a..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/52.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/53.png b/front/public/images/small/ProjRed_Core/projectred.core.part/53.png deleted file mode 100644 index 2b143d3f45..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/53.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/54.png b/front/public/images/small/ProjRed_Core/projectred.core.part/54.png deleted file mode 100644 index c45b7cabbe..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/54.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/55.png b/front/public/images/small/ProjRed_Core/projectred.core.part/55.png deleted file mode 100644 index ea073cf624..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/55.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/56.png b/front/public/images/small/ProjRed_Core/projectred.core.part/56.png deleted file mode 100644 index 4b9a7f88bd..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/56.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/57.png b/front/public/images/small/ProjRed_Core/projectred.core.part/57.png deleted file mode 100644 index f17cc3886e..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/57.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/58.png b/front/public/images/small/ProjRed_Core/projectred.core.part/58.png deleted file mode 100644 index bc50635042..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/58.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/59.png b/front/public/images/small/ProjRed_Core/projectred.core.part/59.png deleted file mode 100644 index d1b5055804..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/59.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/6.png b/front/public/images/small/ProjRed_Core/projectred.core.part/6.png deleted file mode 100644 index 7a9e02b4dc..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/7.png b/front/public/images/small/ProjRed_Core/projectred.core.part/7.png deleted file mode 100644 index 2776286c29..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/8.png b/front/public/images/small/ProjRed_Core/projectred.core.part/8.png deleted file mode 100644 index aa0dd1c125..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.part/9.png b/front/public/images/small/ProjRed_Core/projectred.core.part/9.png deleted file mode 100644 index 9e98761e79..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.part/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.screwdriver/0.png b/front/public/images/small/ProjRed_Core/projectred.core.screwdriver/0.png deleted file mode 100644 index 66c1f77957..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.screwdriver/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Core/projectred.core.wiredebugger/0.png b/front/public/images/small/ProjRed_Core/projectred.core.wiredebugger/0.png deleted file mode 100644 index 4212602a9c..0000000000 Binary files a/front/public/images/small/ProjRed_Core/projectred.core.wiredebugger/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.airousLight/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.airousLight/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.airousLight/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/0.png deleted file mode 100644 index fffea3f5eb..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/1.png deleted file mode 100644 index 01c35a8e6c..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/10.png deleted file mode 100644 index 24e79db6de..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/11.png deleted file mode 100644 index b1f145b067..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/12.png deleted file mode 100644 index 9cfd73b07c..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/13.png deleted file mode 100644 index fa86c1f1cc..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/14.png deleted file mode 100644 index 5fe4be2df7..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/15.png deleted file mode 100644 index 8d0da570b9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/2.png deleted file mode 100644 index 4b7e672770..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/3.png deleted file mode 100644 index 208929f638..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/4.png deleted file mode 100644 index e1bad99a16..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/5.png deleted file mode 100644 index bc8b25764d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/6.png deleted file mode 100644 index 8b44539637..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/7.png deleted file mode 100644 index 9209e6e926..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/8.png deleted file mode 100644 index 30ba9a18bc..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/9.png deleted file mode 100644 index e57cd8c9f8..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp.inv/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/0.png deleted file mode 100644 index d840f3b1de..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/1.png deleted file mode 100644 index 4a990c3ba5..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/10.png deleted file mode 100644 index 517f3acb58..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/11.png deleted file mode 100644 index d508a1084a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/12.png deleted file mode 100644 index b25904edd3..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/13.png deleted file mode 100644 index bb11bc3b22..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/14.png deleted file mode 100644 index c13da08a1f..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/15.png deleted file mode 100644 index e31cef7621..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/2.png deleted file mode 100644 index 17308220a8..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/3.png deleted file mode 100644 index 9afeed23a1..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/4.png deleted file mode 100644 index 4f5d5ed5bb..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/5.png deleted file mode 100644 index e72d9493e1..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/6.png deleted file mode 100644 index ff97c5451c..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/7.png deleted file mode 100644 index b8e9882701..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/8.png deleted file mode 100644 index 2b64f6e6c3..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/9.png deleted file mode 100644 index 1b10242290..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/0.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/1.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/10.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/11.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/12.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/13.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/14.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/15.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/2.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/3.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/4.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/5.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/6.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/7.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/8.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/9.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2.inv/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/0.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/1.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/10.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/11.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/12.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/13.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/14.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/15.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/2.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/3.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/4.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/5.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/6.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/7.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/8.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/9.png deleted file mode 100644 index 3f38641d41..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.cagelamp2/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/0.png deleted file mode 100644 index c4c6f5df8a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/1.png deleted file mode 100644 index 6550b76c0f..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/10.png deleted file mode 100644 index ad86b6a853..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/11.png deleted file mode 100644 index ccbdfdee6d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/12.png deleted file mode 100644 index 5da13a0146..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/13.png deleted file mode 100644 index a1879d8a91..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/14.png deleted file mode 100644 index b2db2ac97c..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/15.png deleted file mode 100644 index c230cad133..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/2.png deleted file mode 100644 index 63ea752058..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/3.png deleted file mode 100644 index f5f29c539d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/4.png deleted file mode 100644 index c20b331aac..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/5.png deleted file mode 100644 index 803c71a4f8..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/6.png deleted file mode 100644 index a9f5cf9911..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/7.png deleted file mode 100644 index 62ea264263..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/8.png deleted file mode 100644 index 52bc800de9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/9.png deleted file mode 100644 index e86c02132a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture.inv/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/0.png deleted file mode 100644 index b54a94cb9d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/1.png deleted file mode 100644 index 38d2f43367..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/10.png deleted file mode 100644 index 3d91c5d5ac..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/11.png deleted file mode 100644 index 2b24472f7b..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/12.png deleted file mode 100644 index aa1961531d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/13.png deleted file mode 100644 index bed72c4753..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/14.png deleted file mode 100644 index 8889ca9730..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/15.png deleted file mode 100644 index dfa0d81007..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/2.png deleted file mode 100644 index 3e77d2f646..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/3.png deleted file mode 100644 index ccc10a9612..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/4.png deleted file mode 100644 index 2c2c8d06d4..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/5.png deleted file mode 100644 index 2e28ca2784..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/6.png deleted file mode 100644 index ae26d13f08..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/7.png deleted file mode 100644 index 3f6ec06417..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/8.png deleted file mode 100644 index dccf8dc85a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/9.png deleted file mode 100644 index 8221c96fed..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.fixture/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/0.png deleted file mode 100644 index c59c00ea3a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/1.png deleted file mode 100644 index 0975649c28..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/10.png deleted file mode 100644 index d6de1164c9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/11.png deleted file mode 100644 index 1429e49324..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/12.png deleted file mode 100644 index dd262056c4..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/13.png deleted file mode 100644 index 948d35cd5d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/14.png deleted file mode 100644 index 9d15ecebb0..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/15.png deleted file mode 100644 index 55db7e9ec4..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/2.png deleted file mode 100644 index ac801abe01..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/3.png deleted file mode 100644 index 8a4358d2be..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/4.png deleted file mode 100644 index f1436d1258..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/5.png deleted file mode 100644 index 246d9b239a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/6.png deleted file mode 100644 index 5179605aa7..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/7.png deleted file mode 100644 index bf446fc430..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/8.png deleted file mode 100644 index 3c3d33a6bf..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/9.png deleted file mode 100644 index 48f79e13d7..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.flightbutton/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/0.png deleted file mode 100644 index b3bc99282a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/1.png deleted file mode 100644 index 81eadcb064..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/10.png deleted file mode 100644 index a43b89616a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/11.png deleted file mode 100644 index f77af2c739..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/12.png deleted file mode 100644 index 499a53e286..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/13.png deleted file mode 100644 index baee19cd5c..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/14.png deleted file mode 100644 index e1aabb0918..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/15.png deleted file mode 100644 index 463dd4e875..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/16.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/16.png deleted file mode 100644 index 087f7983c9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/16.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/17.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/17.png deleted file mode 100644 index 7480f98a2d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/17.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/18.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/18.png deleted file mode 100644 index c0adb1deb1..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/18.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/19.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/19.png deleted file mode 100644 index b793cea894..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/19.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/2.png deleted file mode 100644 index d3e165cda7..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/20.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/20.png deleted file mode 100644 index 3cd71eeb1d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/20.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/21.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/21.png deleted file mode 100644 index bc80c0733b..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/21.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/22.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/22.png deleted file mode 100644 index 2eb86cf517..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/22.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/23.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/23.png deleted file mode 100644 index 6efe47eaed..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/23.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/24.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/24.png deleted file mode 100644 index 49dc15f8b2..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/24.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/25.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/25.png deleted file mode 100644 index a57ef734f4..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/25.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/26.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/26.png deleted file mode 100644 index 88caa83528..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/26.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/27.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/27.png deleted file mode 100644 index 121ff7c291..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/27.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/28.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/28.png deleted file mode 100644 index 76b59e9537..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/28.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/29.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/29.png deleted file mode 100644 index e634080a74..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/29.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/3.png deleted file mode 100644 index e3eebe2615..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/30.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/30.png deleted file mode 100644 index f4b11827a8..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/30.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/31.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/31.png deleted file mode 100644 index b604181667..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/31.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/4.png deleted file mode 100644 index 65b4e96f71..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/5.png deleted file mode 100644 index f58048a162..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/6.png deleted file mode 100644 index 978cefa5d7..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/7.png deleted file mode 100644 index 3baae80aee..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/8.png deleted file mode 100644 index 71643e9d94..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/9.png deleted file mode 100644 index e98b9946ce..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lamp/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/0.png deleted file mode 100644 index 92c16b5fa7..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/1.png deleted file mode 100644 index 8aec0de429..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/10.png deleted file mode 100644 index 8ea41f0932..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/11.png deleted file mode 100644 index c86cbccb06..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/12.png deleted file mode 100644 index 12492a3f38..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/13.png deleted file mode 100644 index f675b7dba2..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/14.png deleted file mode 100644 index a1b26f6531..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/15.png deleted file mode 100644 index a58bc531dd..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/2.png deleted file mode 100644 index 42f8a66ea1..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/3.png deleted file mode 100644 index 509dc448c4..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/4.png deleted file mode 100644 index 8410bbff8d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/5.png deleted file mode 100644 index ed8c72e070..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/6.png deleted file mode 100644 index 078496747f..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/7.png deleted file mode 100644 index 2cf3c28dd1..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/8.png deleted file mode 100644 index 8021f345e9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/9.png deleted file mode 100644 index ba40eb12d6..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern.inv/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/0.png deleted file mode 100644 index 03d6963d99..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/1.png deleted file mode 100644 index 16bfee1afd..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/10.png deleted file mode 100644 index 3706c21986..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/11.png deleted file mode 100644 index ac04eda4c4..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/12.png deleted file mode 100644 index 9e09827504..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/13.png deleted file mode 100644 index eb4c5ffb26..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/14.png deleted file mode 100644 index 19dfaeb2c9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/15.png deleted file mode 100644 index 89e5bcdf98..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/2.png deleted file mode 100644 index 63ae8ac0a2..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/3.png deleted file mode 100644 index 163c589f4a..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/4.png deleted file mode 100644 index 445dda229e..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/5.png deleted file mode 100644 index e156bbdb11..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/6.png deleted file mode 100644 index e5f3822e3e..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/7.png deleted file mode 100644 index b0cccaca6c..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/8.png deleted file mode 100644 index 221800ec32..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/9.png deleted file mode 100644 index a4bafd2d15..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lantern/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/0.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/0.png deleted file mode 100644 index 70fae2608d..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/1.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/1.png deleted file mode 100644 index d00cc971c5..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/10.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/10.png deleted file mode 100644 index 08dc80fc1f..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/11.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/11.png deleted file mode 100644 index 4ab4ac3b82..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/12.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/12.png deleted file mode 100644 index c8f24f1108..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/13.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/13.png deleted file mode 100644 index 40dce6bc98..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/14.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/14.png deleted file mode 100644 index e6997fddbd..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/15.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/15.png deleted file mode 100644 index 6394a9ec88..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/2.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/2.png deleted file mode 100644 index a1028b0286..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/3.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/3.png deleted file mode 100644 index 3d700db303..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/4.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/4.png deleted file mode 100644 index 0b3faa4fad..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/5.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/5.png deleted file mode 100644 index d56d09fcb9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/6.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/6.png deleted file mode 100644 index 6205288b1c..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/7.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/7.png deleted file mode 100644 index 4b665ab8de..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/8.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/8.png deleted file mode 100644 index b17179bf3e..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/9.png b/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/9.png deleted file mode 100644 index a949ee96c9..0000000000 Binary files a/front/public/images/small/ProjRed_Illumination/projectred.illumination.lightbutton/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/0.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/0.png deleted file mode 100644 index 6166c2c332..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/1.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/1.png deleted file mode 100644 index 7a95fde986..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/10.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/10.png deleted file mode 100644 index a1ad6e6863..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/11.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/11.png deleted file mode 100644 index 16aea5377b..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/12.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/12.png deleted file mode 100644 index 8554a05728..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/13.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/13.png deleted file mode 100644 index 5c99ef602c..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/14.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/14.png deleted file mode 100644 index 74f1891027..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/15.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/15.png deleted file mode 100644 index baedf4424c..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/16.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/16.png deleted file mode 100644 index 90c5178962..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/16.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/17.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/17.png deleted file mode 100644 index 7814b17346..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/17.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/2.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/2.png deleted file mode 100644 index 121130b56b..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/3.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/3.png deleted file mode 100644 index 7038144839..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/34.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/34.png deleted file mode 100644 index 643d295f43..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/34.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/4.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/4.png deleted file mode 100644 index 781b6393a7..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/5.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/5.png deleted file mode 100644 index b056a822fd..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/6.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/6.png deleted file mode 100644 index 5fce96f382..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/7.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/7.png deleted file mode 100644 index 67c161bd02..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/8.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/8.png deleted file mode 100644 index 7bd610e6f6..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/9.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/9.png deleted file mode 100644 index 66384a930d..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.framewire/9.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/0.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/0.png deleted file mode 100644 index dd944ec89c..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/0.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/1.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/1.png deleted file mode 100644 index e0744c7c35..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/1.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/10.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/10.png deleted file mode 100644 index a51787b1de..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/10.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/11.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/11.png deleted file mode 100644 index 447e9e2b29..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/11.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/12.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/12.png deleted file mode 100644 index 5bae9cf63d..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/12.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/13.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/13.png deleted file mode 100644 index dbd1be8204..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/13.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/14.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/14.png deleted file mode 100644 index daee09f3ea..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/14.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/15.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/15.png deleted file mode 100644 index f811dd3c79..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/15.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/16.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/16.png deleted file mode 100644 index 65f5096c0b..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/16.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/17.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/17.png deleted file mode 100644 index f723591803..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/17.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/18.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/18.png deleted file mode 100644 index 1606c47885..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/18.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/19.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/19.png deleted file mode 100644 index d7a38c9012..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/19.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/2.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/2.png deleted file mode 100644 index 911f44b3c4..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/2.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/20.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/20.png deleted file mode 100644 index 619b78408a..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/20.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/21.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/21.png deleted file mode 100644 index 72aac80f79..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/21.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/22.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/22.png deleted file mode 100644 index e81dce1d04..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/22.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/23.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/23.png deleted file mode 100644 index e5964039b7..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/23.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/24.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/24.png deleted file mode 100644 index d731960030..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/24.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/25.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/25.png deleted file mode 100644 index e4b415a7de..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/25.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/26.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/26.png deleted file mode 100644 index 865127b92c..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/26.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/27.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/27.png deleted file mode 100644 index c571e4c7e4..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/27.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/28.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/28.png deleted file mode 100644 index e01fcf8e59..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/28.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/29.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/29.png deleted file mode 100644 index c2b8b54920..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/29.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/3.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/3.png deleted file mode 100644 index 441f49346c..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/3.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/30.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/30.png deleted file mode 100644 index 7d7f707d9d..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/30.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/31.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/31.png deleted file mode 100644 index b2ddda9205..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/31.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/32.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/32.png deleted file mode 100644 index 5f0869c004..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/32.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/33.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/33.png deleted file mode 100644 index 388d2e1f06..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/33.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/34.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/34.png deleted file mode 100644 index e20647d6a2..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/34.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/4.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/4.png deleted file mode 100644 index e253558798..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/4.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/5.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/5.png deleted file mode 100644 index 8b161291cd..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/5.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/6.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/6.png deleted file mode 100644 index 5e2fd90fb8..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/6.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/7.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/7.png deleted file mode 100644 index 63c11c3169..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/7.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/8.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/8.png deleted file mode 100644 index 39662d0800..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/8.png and /dev/null differ diff --git a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/9.png b/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/9.png deleted file mode 100644 index f7a29ea445..0000000000 Binary files a/front/public/images/small/ProjRed_Transmission/projectred.transmission.wire/9.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/controlPanel/0.png b/front/public/images/small/ProjectBlue/controlPanel/0.png deleted file mode 100644 index 64866b0696..0000000000 Binary files a/front/public/images/small/ProjectBlue/controlPanel/0.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/emptySprayCan/0.png b/front/public/images/small/ProjectBlue/emptySprayCan/0.png deleted file mode 100644 index 71f6846891..0000000000 Binary files a/front/public/images/small/ProjectBlue/emptySprayCan/0.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/0.png b/front/public/images/small/ProjectBlue/miniatureButton/0.png deleted file mode 100644 index deca838f82..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/0.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/1.png b/front/public/images/small/ProjectBlue/miniatureButton/1.png deleted file mode 100644 index 293b26953e..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/1.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/10.png b/front/public/images/small/ProjectBlue/miniatureButton/10.png deleted file mode 100644 index 6adad7075b..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/10.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/11.png b/front/public/images/small/ProjectBlue/miniatureButton/11.png deleted file mode 100644 index f7f38f69ec..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/11.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/12.png b/front/public/images/small/ProjectBlue/miniatureButton/12.png deleted file mode 100644 index b81b73b96b..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/12.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/13.png b/front/public/images/small/ProjectBlue/miniatureButton/13.png deleted file mode 100644 index 391e27aae4..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/13.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/14.png b/front/public/images/small/ProjectBlue/miniatureButton/14.png deleted file mode 100644 index e25c2ad414..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/14.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/15.png b/front/public/images/small/ProjectBlue/miniatureButton/15.png deleted file mode 100644 index 8d13bb3081..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/15.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/16.png b/front/public/images/small/ProjectBlue/miniatureButton/16.png deleted file mode 100644 index 9c3437f6fc..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/16.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/17.png b/front/public/images/small/ProjectBlue/miniatureButton/17.png deleted file mode 100644 index 33b3682c30..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/17.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/2.png b/front/public/images/small/ProjectBlue/miniatureButton/2.png deleted file mode 100644 index 780f087f7e..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/2.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/3.png b/front/public/images/small/ProjectBlue/miniatureButton/3.png deleted file mode 100644 index fdef54fb98..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/3.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/4.png b/front/public/images/small/ProjectBlue/miniatureButton/4.png deleted file mode 100644 index 3098c0183f..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/4.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/5.png b/front/public/images/small/ProjectBlue/miniatureButton/5.png deleted file mode 100644 index dbb3e5b567..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/5.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/6.png b/front/public/images/small/ProjectBlue/miniatureButton/6.png deleted file mode 100644 index a3f9d8de0f..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/6.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/7.png b/front/public/images/small/ProjectBlue/miniatureButton/7.png deleted file mode 100644 index 7d8bc04118..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/7.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/8.png b/front/public/images/small/ProjectBlue/miniatureButton/8.png deleted file mode 100644 index 0433dd8144..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/8.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureButton/9.png b/front/public/images/small/ProjectBlue/miniatureButton/9.png deleted file mode 100644 index be64761990..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureButton/9.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureCover/0.png b/front/public/images/small/ProjectBlue/miniatureCover/0.png deleted file mode 100644 index 606d8190e4..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureCover/0.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/0.png b/front/public/images/small/ProjectBlue/miniatureLamp/0.png deleted file mode 100644 index af7a8553e9..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/0.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/1.png b/front/public/images/small/ProjectBlue/miniatureLamp/1.png deleted file mode 100644 index 934127f5f0..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/1.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/10.png b/front/public/images/small/ProjectBlue/miniatureLamp/10.png deleted file mode 100644 index b9ccdf3393..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/10.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/11.png b/front/public/images/small/ProjectBlue/miniatureLamp/11.png deleted file mode 100644 index da10c1b697..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/11.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/12.png b/front/public/images/small/ProjectBlue/miniatureLamp/12.png deleted file mode 100644 index 18bc5704d5..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/12.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/13.png b/front/public/images/small/ProjectBlue/miniatureLamp/13.png deleted file mode 100644 index 2b81b79c54..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/13.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/14.png b/front/public/images/small/ProjectBlue/miniatureLamp/14.png deleted file mode 100644 index 37808fc4c9..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/14.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/15.png b/front/public/images/small/ProjectBlue/miniatureLamp/15.png deleted file mode 100644 index 27a7102b86..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/15.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/2.png b/front/public/images/small/ProjectBlue/miniatureLamp/2.png deleted file mode 100644 index 9ca4e24c94..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/2.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/3.png b/front/public/images/small/ProjectBlue/miniatureLamp/3.png deleted file mode 100644 index dd565411a6..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/3.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/4.png b/front/public/images/small/ProjectBlue/miniatureLamp/4.png deleted file mode 100644 index 32a4f8278b..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/4.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/5.png b/front/public/images/small/ProjectBlue/miniatureLamp/5.png deleted file mode 100644 index b352e0bde8..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/5.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/6.png b/front/public/images/small/ProjectBlue/miniatureLamp/6.png deleted file mode 100644 index 4f66b428ee..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/6.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/7.png b/front/public/images/small/ProjectBlue/miniatureLamp/7.png deleted file mode 100644 index a5cd6997ad..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/7.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/8.png b/front/public/images/small/ProjectBlue/miniatureLamp/8.png deleted file mode 100644 index 878332001d..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/8.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLamp/9.png b/front/public/images/small/ProjectBlue/miniatureLamp/9.png deleted file mode 100644 index 3818cea0a2..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLamp/9.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/0.png b/front/public/images/small/ProjectBlue/miniatureLever/0.png deleted file mode 100644 index 5bd920eeda..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/0.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/1.png b/front/public/images/small/ProjectBlue/miniatureLever/1.png deleted file mode 100644 index 46a87dc106..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/1.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/10.png b/front/public/images/small/ProjectBlue/miniatureLever/10.png deleted file mode 100644 index 51d9a3d592..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/10.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/11.png b/front/public/images/small/ProjectBlue/miniatureLever/11.png deleted file mode 100644 index a732c07b92..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/11.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/12.png b/front/public/images/small/ProjectBlue/miniatureLever/12.png deleted file mode 100644 index e102980f88..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/12.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/13.png b/front/public/images/small/ProjectBlue/miniatureLever/13.png deleted file mode 100644 index 4b0e4357c3..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/13.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/14.png b/front/public/images/small/ProjectBlue/miniatureLever/14.png deleted file mode 100644 index 5654b71e52..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/14.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/15.png b/front/public/images/small/ProjectBlue/miniatureLever/15.png deleted file mode 100644 index 5c233a9420..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/15.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/16.png b/front/public/images/small/ProjectBlue/miniatureLever/16.png deleted file mode 100644 index c8e8557386..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/16.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/2.png b/front/public/images/small/ProjectBlue/miniatureLever/2.png deleted file mode 100644 index 71714353cb..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/2.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/3.png b/front/public/images/small/ProjectBlue/miniatureLever/3.png deleted file mode 100644 index c37e684069..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/3.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/4.png b/front/public/images/small/ProjectBlue/miniatureLever/4.png deleted file mode 100644 index edbdf63462..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/4.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/5.png b/front/public/images/small/ProjectBlue/miniatureLever/5.png deleted file mode 100644 index 3faa19c67c..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/5.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/6.png b/front/public/images/small/ProjectBlue/miniatureLever/6.png deleted file mode 100644 index 319a4df76c..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/6.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/7.png b/front/public/images/small/ProjectBlue/miniatureLever/7.png deleted file mode 100644 index b174051475..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/7.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/8.png b/front/public/images/small/ProjectBlue/miniatureLever/8.png deleted file mode 100644 index f0da950333..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/8.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/miniatureLever/9.png b/front/public/images/small/ProjectBlue/miniatureLever/9.png deleted file mode 100644 index d83027b435..0000000000 Binary files a/front/public/images/small/ProjectBlue/miniatureLever/9.png and /dev/null differ diff --git a/front/public/images/small/ProjectBlue/sprayCan/0.png b/front/public/images/small/ProjectBlue/sprayCan/0.png deleted file mode 100644 index 83e9ffed9b..0000000000 Binary files a/front/public/images/small/ProjectBlue/sprayCan/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/intelligentWorkbench/0.png b/front/public/images/small/RIO/intelligentWorkbench/0.png deleted file mode 100644 index 0d6c6a7cba..0000000000 Binary files a/front/public/images/small/RIO/intelligentWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.blank_plate/0.png b/front/public/images/small/RIO/item.blank_plate/0.png deleted file mode 100644 index 37a6829828..0000000000 Binary files a/front/public/images/small/RIO/item.blank_plate/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.location/0.png b/front/public/images/small/RIO/item.chip.location/0.png deleted file mode 100644 index ef863f4572..0000000000 Binary files a/front/public/images/small/RIO/item.chip.location/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.transfer/0.png b/front/public/images/small/RIO/item.chip.transfer/0.png deleted file mode 100644 index 96bc2e0645..0000000000 Binary files a/front/public/images/small/RIO/item.chip.transfer/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.transfer/1.png b/front/public/images/small/RIO/item.chip.transfer/1.png deleted file mode 100644 index 12d9b798f0..0000000000 Binary files a/front/public/images/small/RIO/item.chip.transfer/1.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.transfer/10.png b/front/public/images/small/RIO/item.chip.transfer/10.png deleted file mode 100644 index 7c93d34fa5..0000000000 Binary files a/front/public/images/small/RIO/item.chip.transfer/10.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.transfer/12.png b/front/public/images/small/RIO/item.chip.transfer/12.png deleted file mode 100644 index bd0cfaa8ae..0000000000 Binary files a/front/public/images/small/RIO/item.chip.transfer/12.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.transfer/2.png b/front/public/images/small/RIO/item.chip.transfer/2.png deleted file mode 100644 index 75c94e258b..0000000000 Binary files a/front/public/images/small/RIO/item.chip.transfer/2.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.transfer/20.png b/front/public/images/small/RIO/item.chip.transfer/20.png deleted file mode 100644 index 01a769237d..0000000000 Binary files a/front/public/images/small/RIO/item.chip.transfer/20.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.transfer/21.png b/front/public/images/small/RIO/item.chip.transfer/21.png deleted file mode 100644 index e1e02eb012..0000000000 Binary files a/front/public/images/small/RIO/item.chip.transfer/21.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.upgrade/0.png b/front/public/images/small/RIO/item.chip.upgrade/0.png deleted file mode 100644 index 2d4b5ee48d..0000000000 Binary files a/front/public/images/small/RIO/item.chip.upgrade/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.upgrade/1.png b/front/public/images/small/RIO/item.chip.upgrade/1.png deleted file mode 100644 index 56c05d19b3..0000000000 Binary files a/front/public/images/small/RIO/item.chip.upgrade/1.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.chip.upgrade/2.png b/front/public/images/small/RIO/item.chip.upgrade/2.png deleted file mode 100644 index 4613dde6bd..0000000000 Binary files a/front/public/images/small/RIO/item.chip.upgrade/2.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.io_tool/0.png b/front/public/images/small/RIO/item.io_tool/0.png deleted file mode 100644 index d6338a180e..0000000000 Binary files a/front/public/images/small/RIO/item.io_tool/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.linker/0.png b/front/public/images/small/RIO/item.linker/0.png deleted file mode 100644 index b1a3d6d01a..0000000000 Binary files a/front/public/images/small/RIO/item.linker/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.pda/0.png b/front/public/images/small/RIO/item.pda/0.png deleted file mode 100644 index 3191bfc52b..0000000000 Binary files a/front/public/images/small/RIO/item.pda/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.remoteAccessor/0.png b/front/public/images/small/RIO/item.remoteAccessor/0.png deleted file mode 100644 index 993c2c966b..0000000000 Binary files a/front/public/images/small/RIO/item.remoteAccessor/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/item.wireless_transmitter/0.png b/front/public/images/small/RIO/item.wireless_transmitter/0.png deleted file mode 100644 index a801e39709..0000000000 Binary files a/front/public/images/small/RIO/item.wireless_transmitter/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/skylight/0.png b/front/public/images/small/RIO/skylight/0.png deleted file mode 100644 index 865271439b..0000000000 Binary files a/front/public/images/small/RIO/skylight/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/tile.machine/0.png b/front/public/images/small/RIO/tile.machine/0.png deleted file mode 100644 index f1e4eaa00d..0000000000 Binary files a/front/public/images/small/RIO/tile.machine/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/tile.machine/1.png b/front/public/images/small/RIO/tile.machine/1.png deleted file mode 100644 index b0cf5f2af1..0000000000 Binary files a/front/public/images/small/RIO/tile.machine/1.png and /dev/null differ diff --git a/front/public/images/small/RIO/tile.remote_interface/0.png b/front/public/images/small/RIO/tile.remote_interface/0.png deleted file mode 100644 index 6d73e499d6..0000000000 Binary files a/front/public/images/small/RIO/tile.remote_interface/0.png and /dev/null differ diff --git a/front/public/images/small/RIO/tile.remote_inventory/0.png b/front/public/images/small/RIO/tile.remote_inventory/0.png deleted file mode 100644 index 6056d56c36..0000000000 Binary files a/front/public/images/small/RIO/tile.remote_inventory/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/anvil/0.png b/front/public/images/small/Railcraft/anvil/0.png deleted file mode 100644 index 841771921d..0000000000 Binary files a/front/public/images/small/Railcraft/anvil/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/anvil/1.png b/front/public/images/small/Railcraft/anvil/1.png deleted file mode 100644 index 858f83a6ec..0000000000 Binary files a/front/public/images/small/Railcraft/anvil/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/anvil/2.png b/front/public/images/small/Railcraft/anvil/2.png deleted file mode 100644 index 609da61909..0000000000 Binary files a/front/public/images/small/Railcraft/anvil/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/armor.goggles/0.png b/front/public/images/small/Railcraft/armor.goggles/0.png deleted file mode 100644 index 2bf49c9faf..0000000000 Binary files a/front/public/images/small/Railcraft/armor.goggles/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/armor.overalls/0.png b/front/public/images/small/Railcraft/armor.overalls/0.png deleted file mode 100644 index bfc62681d1..0000000000 Binary files a/front/public/images/small/Railcraft/armor.overalls/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/armor.steel.boots/0.png b/front/public/images/small/Railcraft/armor.steel.boots/0.png deleted file mode 100644 index 7a20a2eb09..0000000000 Binary files a/front/public/images/small/Railcraft/armor.steel.boots/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/armor.steel.helmet/0.png b/front/public/images/small/Railcraft/armor.steel.helmet/0.png deleted file mode 100644 index 7940cd4b6a..0000000000 Binary files a/front/public/images/small/Railcraft/armor.steel.helmet/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/armor.steel.legs/0.png b/front/public/images/small/Railcraft/armor.steel.legs/0.png deleted file mode 100644 index 9d9ac69026..0000000000 Binary files a/front/public/images/small/Railcraft/armor.steel.legs/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/armor.steel.plate/0.png b/front/public/images/small/Railcraft/armor.steel.plate/0.png deleted file mode 100644 index bb0ac121b2..0000000000 Binary files a/front/public/images/small/Railcraft/armor.steel.plate/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/backpack.apothecary.t1/0.png b/front/public/images/small/Railcraft/backpack.apothecary.t1/0.png deleted file mode 100644 index 790311bcad..0000000000 Binary files a/front/public/images/small/Railcraft/backpack.apothecary.t1/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/backpack.apothecary.t2/0.png b/front/public/images/small/Railcraft/backpack.apothecary.t2/0.png deleted file mode 100644 index 1aef807750..0000000000 Binary files a/front/public/images/small/Railcraft/backpack.apothecary.t2/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/backpack.iceman.t1/0.png b/front/public/images/small/Railcraft/backpack.iceman.t1/0.png deleted file mode 100644 index c08fb17bb9..0000000000 Binary files a/front/public/images/small/Railcraft/backpack.iceman.t1/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/backpack.iceman.t2/0.png b/front/public/images/small/Railcraft/backpack.iceman.t2/0.png deleted file mode 100644 index 1b8c8ab5dc..0000000000 Binary files a/front/public/images/small/Railcraft/backpack.iceman.t2/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/backpack.trackman.t1/0.png b/front/public/images/small/Railcraft/backpack.trackman.t1/0.png deleted file mode 100644 index a183cf9763..0000000000 Binary files a/front/public/images/small/Railcraft/backpack.trackman.t1/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/backpack.trackman.t2/0.png b/front/public/images/small/Railcraft/backpack.trackman.t2/0.png deleted file mode 100644 index cd2d8c3461..0000000000 Binary files a/front/public/images/small/Railcraft/backpack.trackman.t2/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/borehead.diamond/0.png b/front/public/images/small/Railcraft/borehead.diamond/0.png deleted file mode 100644 index 5d38cc9443..0000000000 Binary files a/front/public/images/small/Railcraft/borehead.diamond/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/borehead.iron/0.png b/front/public/images/small/Railcraft/borehead.iron/0.png deleted file mode 100644 index 2ecf1c485b..0000000000 Binary files a/front/public/images/small/Railcraft/borehead.iron/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/borehead.steel/0.png b/front/public/images/small/Railcraft/borehead.steel/0.png deleted file mode 100644 index b72a6d754e..0000000000 Binary files a/front/public/images/small/Railcraft/borehead.steel/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.abyssal/0.png b/front/public/images/small/Railcraft/brick.abyssal/0.png deleted file mode 100644 index b656cd624b..0000000000 Binary files a/front/public/images/small/Railcraft/brick.abyssal/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.abyssal/1.png b/front/public/images/small/Railcraft/brick.abyssal/1.png deleted file mode 100644 index 77d6c00a4e..0000000000 Binary files a/front/public/images/small/Railcraft/brick.abyssal/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.abyssal/2.png b/front/public/images/small/Railcraft/brick.abyssal/2.png deleted file mode 100644 index 2b4019239b..0000000000 Binary files a/front/public/images/small/Railcraft/brick.abyssal/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.abyssal/3.png b/front/public/images/small/Railcraft/brick.abyssal/3.png deleted file mode 100644 index f9a012612e..0000000000 Binary files a/front/public/images/small/Railcraft/brick.abyssal/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.abyssal/4.png b/front/public/images/small/Railcraft/brick.abyssal/4.png deleted file mode 100644 index 02346d1485..0000000000 Binary files a/front/public/images/small/Railcraft/brick.abyssal/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.abyssal/5.png b/front/public/images/small/Railcraft/brick.abyssal/5.png deleted file mode 100644 index 1c95be9e66..0000000000 Binary files a/front/public/images/small/Railcraft/brick.abyssal/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bleachedbone/0.png b/front/public/images/small/Railcraft/brick.bleachedbone/0.png deleted file mode 100644 index cbf8a4feec..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bleachedbone/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bleachedbone/1.png b/front/public/images/small/Railcraft/brick.bleachedbone/1.png deleted file mode 100644 index 8471f77f2b..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bleachedbone/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bleachedbone/2.png b/front/public/images/small/Railcraft/brick.bleachedbone/2.png deleted file mode 100644 index 08dcd20edb..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bleachedbone/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bleachedbone/3.png b/front/public/images/small/Railcraft/brick.bleachedbone/3.png deleted file mode 100644 index 004cdd0e9e..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bleachedbone/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bleachedbone/4.png b/front/public/images/small/Railcraft/brick.bleachedbone/4.png deleted file mode 100644 index 9dbf66196c..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bleachedbone/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bleachedbone/5.png b/front/public/images/small/Railcraft/brick.bleachedbone/5.png deleted file mode 100644 index ef564c85bc..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bleachedbone/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bloodstained/0.png b/front/public/images/small/Railcraft/brick.bloodstained/0.png deleted file mode 100644 index 61fcae70e1..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bloodstained/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bloodstained/1.png b/front/public/images/small/Railcraft/brick.bloodstained/1.png deleted file mode 100644 index 68578bc330..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bloodstained/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bloodstained/2.png b/front/public/images/small/Railcraft/brick.bloodstained/2.png deleted file mode 100644 index 9cb557e0ea..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bloodstained/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bloodstained/3.png b/front/public/images/small/Railcraft/brick.bloodstained/3.png deleted file mode 100644 index 67812be133..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bloodstained/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bloodstained/4.png b/front/public/images/small/Railcraft/brick.bloodstained/4.png deleted file mode 100644 index 36ad77d0c1..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bloodstained/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.bloodstained/5.png b/front/public/images/small/Railcraft/brick.bloodstained/5.png deleted file mode 100644 index 2409e292b0..0000000000 Binary files a/front/public/images/small/Railcraft/brick.bloodstained/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.frostbound/0.png b/front/public/images/small/Railcraft/brick.frostbound/0.png deleted file mode 100644 index 03012c4788..0000000000 Binary files a/front/public/images/small/Railcraft/brick.frostbound/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.frostbound/1.png b/front/public/images/small/Railcraft/brick.frostbound/1.png deleted file mode 100644 index 99283b6f99..0000000000 Binary files a/front/public/images/small/Railcraft/brick.frostbound/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.frostbound/2.png b/front/public/images/small/Railcraft/brick.frostbound/2.png deleted file mode 100644 index c49c8eb153..0000000000 Binary files a/front/public/images/small/Railcraft/brick.frostbound/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.frostbound/3.png b/front/public/images/small/Railcraft/brick.frostbound/3.png deleted file mode 100644 index 4824ee3fa0..0000000000 Binary files a/front/public/images/small/Railcraft/brick.frostbound/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.frostbound/4.png b/front/public/images/small/Railcraft/brick.frostbound/4.png deleted file mode 100644 index 9a81e2d77d..0000000000 Binary files a/front/public/images/small/Railcraft/brick.frostbound/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.frostbound/5.png b/front/public/images/small/Railcraft/brick.frostbound/5.png deleted file mode 100644 index cf9729b0f9..0000000000 Binary files a/front/public/images/small/Railcraft/brick.frostbound/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.infernal/0.png b/front/public/images/small/Railcraft/brick.infernal/0.png deleted file mode 100644 index e3cebfb361..0000000000 Binary files a/front/public/images/small/Railcraft/brick.infernal/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.infernal/1.png b/front/public/images/small/Railcraft/brick.infernal/1.png deleted file mode 100644 index c969471cfd..0000000000 Binary files a/front/public/images/small/Railcraft/brick.infernal/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.infernal/2.png b/front/public/images/small/Railcraft/brick.infernal/2.png deleted file mode 100644 index 32da1ed78c..0000000000 Binary files a/front/public/images/small/Railcraft/brick.infernal/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.infernal/3.png b/front/public/images/small/Railcraft/brick.infernal/3.png deleted file mode 100644 index 8a74931b36..0000000000 Binary files a/front/public/images/small/Railcraft/brick.infernal/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.infernal/4.png b/front/public/images/small/Railcraft/brick.infernal/4.png deleted file mode 100644 index 96e9a1392b..0000000000 Binary files a/front/public/images/small/Railcraft/brick.infernal/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.infernal/5.png b/front/public/images/small/Railcraft/brick.infernal/5.png deleted file mode 100644 index 1026c6cfc2..0000000000 Binary files a/front/public/images/small/Railcraft/brick.infernal/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.nether/1.png b/front/public/images/small/Railcraft/brick.nether/1.png deleted file mode 100644 index f9d3a24c42..0000000000 Binary files a/front/public/images/small/Railcraft/brick.nether/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.nether/2.png b/front/public/images/small/Railcraft/brick.nether/2.png deleted file mode 100644 index 24f80eda56..0000000000 Binary files a/front/public/images/small/Railcraft/brick.nether/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.nether/3.png b/front/public/images/small/Railcraft/brick.nether/3.png deleted file mode 100644 index 1e67f1be70..0000000000 Binary files a/front/public/images/small/Railcraft/brick.nether/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.nether/4.png b/front/public/images/small/Railcraft/brick.nether/4.png deleted file mode 100644 index 033dbb7a82..0000000000 Binary files a/front/public/images/small/Railcraft/brick.nether/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.nether/5.png b/front/public/images/small/Railcraft/brick.nether/5.png deleted file mode 100644 index 84eb116a2e..0000000000 Binary files a/front/public/images/small/Railcraft/brick.nether/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.quarried/0.png b/front/public/images/small/Railcraft/brick.quarried/0.png deleted file mode 100644 index 7e8d3aed3f..0000000000 Binary files a/front/public/images/small/Railcraft/brick.quarried/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.quarried/1.png b/front/public/images/small/Railcraft/brick.quarried/1.png deleted file mode 100644 index 4fc02c0720..0000000000 Binary files a/front/public/images/small/Railcraft/brick.quarried/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.quarried/2.png b/front/public/images/small/Railcraft/brick.quarried/2.png deleted file mode 100644 index 3f5e1e01f7..0000000000 Binary files a/front/public/images/small/Railcraft/brick.quarried/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.quarried/3.png b/front/public/images/small/Railcraft/brick.quarried/3.png deleted file mode 100644 index a75b591538..0000000000 Binary files a/front/public/images/small/Railcraft/brick.quarried/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.quarried/4.png b/front/public/images/small/Railcraft/brick.quarried/4.png deleted file mode 100644 index 525f5cc18f..0000000000 Binary files a/front/public/images/small/Railcraft/brick.quarried/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.quarried/5.png b/front/public/images/small/Railcraft/brick.quarried/5.png deleted file mode 100644 index b72ea11e7e..0000000000 Binary files a/front/public/images/small/Railcraft/brick.quarried/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.sandy/0.png b/front/public/images/small/Railcraft/brick.sandy/0.png deleted file mode 100644 index d5df7433c8..0000000000 Binary files a/front/public/images/small/Railcraft/brick.sandy/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.sandy/1.png b/front/public/images/small/Railcraft/brick.sandy/1.png deleted file mode 100644 index d4aec98bc3..0000000000 Binary files a/front/public/images/small/Railcraft/brick.sandy/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.sandy/2.png b/front/public/images/small/Railcraft/brick.sandy/2.png deleted file mode 100644 index ff16034f44..0000000000 Binary files a/front/public/images/small/Railcraft/brick.sandy/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.sandy/3.png b/front/public/images/small/Railcraft/brick.sandy/3.png deleted file mode 100644 index 2679d0d7bd..0000000000 Binary files a/front/public/images/small/Railcraft/brick.sandy/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.sandy/4.png b/front/public/images/small/Railcraft/brick.sandy/4.png deleted file mode 100644 index b4b62c9378..0000000000 Binary files a/front/public/images/small/Railcraft/brick.sandy/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/brick.sandy/5.png b/front/public/images/small/Railcraft/brick.sandy/5.png deleted file mode 100644 index 42fec5a609..0000000000 Binary files a/front/public/images/small/Railcraft/brick.sandy/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.anchor.admin/0.png b/front/public/images/small/Railcraft/cart.anchor.admin/0.png deleted file mode 100644 index bd51d989f9..0000000000 Binary files a/front/public/images/small/Railcraft/cart.anchor.admin/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.anchor.personal/0.png b/front/public/images/small/Railcraft/cart.anchor.personal/0.png deleted file mode 100644 index c2742b01ec..0000000000 Binary files a/front/public/images/small/Railcraft/cart.anchor.personal/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.anchor/0.png b/front/public/images/small/Railcraft/cart.anchor/0.png deleted file mode 100644 index 1ae53c73fc..0000000000 Binary files a/front/public/images/small/Railcraft/cart.anchor/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.bore/0.png b/front/public/images/small/Railcraft/cart.bore/0.png deleted file mode 100644 index 554eecf1bd..0000000000 Binary files a/front/public/images/small/Railcraft/cart.bore/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.cargo/0.png b/front/public/images/small/Railcraft/cart.cargo/0.png deleted file mode 100644 index a47378846c..0000000000 Binary files a/front/public/images/small/Railcraft/cart.cargo/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.energy.batbox/0.png b/front/public/images/small/Railcraft/cart.energy.batbox/0.png deleted file mode 100644 index d896a03e0b..0000000000 Binary files a/front/public/images/small/Railcraft/cart.energy.batbox/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.energy.cesu/0.png b/front/public/images/small/Railcraft/cart.energy.cesu/0.png deleted file mode 100644 index 08ff806aac..0000000000 Binary files a/front/public/images/small/Railcraft/cart.energy.cesu/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.energy.mfe/0.png b/front/public/images/small/Railcraft/cart.energy.mfe/0.png deleted file mode 100644 index 4e431a2e5d..0000000000 Binary files a/front/public/images/small/Railcraft/cart.energy.mfe/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.gift/0.png b/front/public/images/small/Railcraft/cart.gift/0.png deleted file mode 100644 index 232490c5c5..0000000000 Binary files a/front/public/images/small/Railcraft/cart.gift/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.loco.creative/0.png b/front/public/images/small/Railcraft/cart.loco.creative/0.png deleted file mode 100644 index 1c1b661774..0000000000 Binary files a/front/public/images/small/Railcraft/cart.loco.creative/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.loco.electric/0.png b/front/public/images/small/Railcraft/cart.loco.electric/0.png deleted file mode 100644 index 72c784a0ff..0000000000 Binary files a/front/public/images/small/Railcraft/cart.loco.electric/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.loco.steam.solid/0.png b/front/public/images/small/Railcraft/cart.loco.steam.solid/0.png deleted file mode 100644 index 8fd0a28982..0000000000 Binary files a/front/public/images/small/Railcraft/cart.loco.steam.solid/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.pumpkin/0.png b/front/public/images/small/Railcraft/cart.pumpkin/0.png deleted file mode 100644 index 9d0f9e53f3..0000000000 Binary files a/front/public/images/small/Railcraft/cart.pumpkin/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.redstone.flux/0.png b/front/public/images/small/Railcraft/cart.redstone.flux/0.png deleted file mode 100644 index ba73f9e583..0000000000 Binary files a/front/public/images/small/Railcraft/cart.redstone.flux/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.tank/0.png b/front/public/images/small/Railcraft/cart.tank/0.png deleted file mode 100644 index 2c68a007fa..0000000000 Binary files a/front/public/images/small/Railcraft/cart.tank/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.tnt.wood/0.png b/front/public/images/small/Railcraft/cart.tnt.wood/0.png deleted file mode 100644 index 79bf704968..0000000000 Binary files a/front/public/images/small/Railcraft/cart.tnt.wood/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.track.layer/0.png b/front/public/images/small/Railcraft/cart.track.layer/0.png deleted file mode 100644 index 119533d611..0000000000 Binary files a/front/public/images/small/Railcraft/cart.track.layer/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.track.relayer/0.png b/front/public/images/small/Railcraft/cart.track.relayer/0.png deleted file mode 100644 index 0da685928b..0000000000 Binary files a/front/public/images/small/Railcraft/cart.track.relayer/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.track.remover/0.png b/front/public/images/small/Railcraft/cart.track.remover/0.png deleted file mode 100644 index 75ba8b8d73..0000000000 Binary files a/front/public/images/small/Railcraft/cart.track.remover/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.undercutter/0.png b/front/public/images/small/Railcraft/cart.undercutter/0.png deleted file mode 100644 index 760ee90388..0000000000 Binary files a/front/public/images/small/Railcraft/cart.undercutter/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cart.work/0.png b/front/public/images/small/Railcraft/cart.work/0.png deleted file mode 100644 index 1aea420187..0000000000 Binary files a/front/public/images/small/Railcraft/cart.work/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/0.png b/front/public/images/small/Railcraft/cube/0.png deleted file mode 100644 index e2a3d91da6..0000000000 Binary files a/front/public/images/small/Railcraft/cube/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/1.png b/front/public/images/small/Railcraft/cube/1.png deleted file mode 100644 index 4dd301fecb..0000000000 Binary files a/front/public/images/small/Railcraft/cube/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/10.png b/front/public/images/small/Railcraft/cube/10.png deleted file mode 100644 index 81b9b906f5..0000000000 Binary files a/front/public/images/small/Railcraft/cube/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/11.png b/front/public/images/small/Railcraft/cube/11.png deleted file mode 100644 index 8983fa58c4..0000000000 Binary files a/front/public/images/small/Railcraft/cube/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/2.png b/front/public/images/small/Railcraft/cube/2.png deleted file mode 100644 index 142ffd3006..0000000000 Binary files a/front/public/images/small/Railcraft/cube/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/4.png b/front/public/images/small/Railcraft/cube/4.png deleted file mode 100644 index a242a579d0..0000000000 Binary files a/front/public/images/small/Railcraft/cube/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/6.png b/front/public/images/small/Railcraft/cube/6.png deleted file mode 100644 index 7c6cde76e7..0000000000 Binary files a/front/public/images/small/Railcraft/cube/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/7.png b/front/public/images/small/Railcraft/cube/7.png deleted file mode 100644 index 2cbeac023d..0000000000 Binary files a/front/public/images/small/Railcraft/cube/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/8.png b/front/public/images/small/Railcraft/cube/8.png deleted file mode 100644 index 70c04c2c1a..0000000000 Binary files a/front/public/images/small/Railcraft/cube/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/cube/9.png b/front/public/images/small/Railcraft/cube/9.png deleted file mode 100644 index 30d860fb5b..0000000000 Binary files a/front/public/images/small/Railcraft/cube/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/0.png b/front/public/images/small/Railcraft/detector/0.png deleted file mode 100644 index fc09e820e7..0000000000 Binary files a/front/public/images/small/Railcraft/detector/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/1.png b/front/public/images/small/Railcraft/detector/1.png deleted file mode 100644 index c59e9bffa6..0000000000 Binary files a/front/public/images/small/Railcraft/detector/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/10.png b/front/public/images/small/Railcraft/detector/10.png deleted file mode 100644 index 912a4b5771..0000000000 Binary files a/front/public/images/small/Railcraft/detector/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/11.png b/front/public/images/small/Railcraft/detector/11.png deleted file mode 100644 index 485bd0877a..0000000000 Binary files a/front/public/images/small/Railcraft/detector/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/12.png b/front/public/images/small/Railcraft/detector/12.png deleted file mode 100644 index 3c473cfbea..0000000000 Binary files a/front/public/images/small/Railcraft/detector/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/13.png b/front/public/images/small/Railcraft/detector/13.png deleted file mode 100644 index 51df137704..0000000000 Binary files a/front/public/images/small/Railcraft/detector/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/14.png b/front/public/images/small/Railcraft/detector/14.png deleted file mode 100644 index 120bf4e4f6..0000000000 Binary files a/front/public/images/small/Railcraft/detector/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/15.png b/front/public/images/small/Railcraft/detector/15.png deleted file mode 100644 index 9847207577..0000000000 Binary files a/front/public/images/small/Railcraft/detector/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/16.png b/front/public/images/small/Railcraft/detector/16.png deleted file mode 100644 index 936d2703b2..0000000000 Binary files a/front/public/images/small/Railcraft/detector/16.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/2.png b/front/public/images/small/Railcraft/detector/2.png deleted file mode 100644 index 7034ee7815..0000000000 Binary files a/front/public/images/small/Railcraft/detector/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/3.png b/front/public/images/small/Railcraft/detector/3.png deleted file mode 100644 index 2ac88de7b4..0000000000 Binary files a/front/public/images/small/Railcraft/detector/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/4.png b/front/public/images/small/Railcraft/detector/4.png deleted file mode 100644 index 8241ae4bc3..0000000000 Binary files a/front/public/images/small/Railcraft/detector/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/5.png b/front/public/images/small/Railcraft/detector/5.png deleted file mode 100644 index e0e1982c53..0000000000 Binary files a/front/public/images/small/Railcraft/detector/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/6.png b/front/public/images/small/Railcraft/detector/6.png deleted file mode 100644 index 8ea000e446..0000000000 Binary files a/front/public/images/small/Railcraft/detector/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/7.png b/front/public/images/small/Railcraft/detector/7.png deleted file mode 100644 index 09d3103534..0000000000 Binary files a/front/public/images/small/Railcraft/detector/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/8.png b/front/public/images/small/Railcraft/detector/8.png deleted file mode 100644 index 86ecd1020f..0000000000 Binary files a/front/public/images/small/Railcraft/detector/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/detector/9.png b/front/public/images/small/Railcraft/detector/9.png deleted file mode 100644 index 836a49b369..0000000000 Binary files a/front/public/images/small/Railcraft/detector/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/dust/0.png b/front/public/images/small/Railcraft/dust/0.png deleted file mode 100644 index 5762e5ba4e..0000000000 Binary files a/front/public/images/small/Railcraft/dust/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/dust/1.png b/front/public/images/small/Railcraft/dust/1.png deleted file mode 100644 index 133d9aac3f..0000000000 Binary files a/front/public/images/small/Railcraft/dust/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/dust/2.png b/front/public/images/small/Railcraft/dust/2.png deleted file mode 100644 index 81ea732ce9..0000000000 Binary files a/front/public/images/small/Railcraft/dust/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/dust/3.png b/front/public/images/small/Railcraft/dust/3.png deleted file mode 100644 index ada690b07a..0000000000 Binary files a/front/public/images/small/Railcraft/dust/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/firestone.cracked/0.png b/front/public/images/small/Railcraft/firestone.cracked/0.png deleted file mode 100644 index 3020ac67a3..0000000000 Binary files a/front/public/images/small/Railcraft/firestone.cracked/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/firestone.cracked/5000.png b/front/public/images/small/Railcraft/firestone.cracked/5000.png deleted file mode 100644 index 3020ac67a3..0000000000 Binary files a/front/public/images/small/Railcraft/firestone.cracked/5000.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/firestone.cut/0.png b/front/public/images/small/Railcraft/firestone.cut/0.png deleted file mode 100644 index 2934b3f540..0000000000 Binary files a/front/public/images/small/Railcraft/firestone.cut/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/firestone.raw/0.png b/front/public/images/small/Railcraft/firestone.raw/0.png deleted file mode 100644 index 708027ac2c..0000000000 Binary files a/front/public/images/small/Railcraft/firestone.raw/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/firestone.recharge/0.png b/front/public/images/small/Railcraft/firestone.recharge/0.png deleted file mode 100644 index 76399e536c..0000000000 Binary files a/front/public/images/small/Railcraft/firestone.recharge/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/firestone.refined/0.png b/front/public/images/small/Railcraft/firestone.refined/0.png deleted file mode 100644 index 0991e82101..0000000000 Binary files a/front/public/images/small/Railcraft/firestone.refined/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/firestone.refined/5000.png b/front/public/images/small/Railcraft/firestone.refined/5000.png deleted file mode 100644 index 0991e82101..0000000000 Binary files a/front/public/images/small/Railcraft/firestone.refined/5000.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.creosote.bottle/0.png b/front/public/images/small/Railcraft/fluid.creosote.bottle/0.png deleted file mode 100644 index 5a2a3df41f..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.creosote.bottle/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.creosote.bucket/0.png b/front/public/images/small/Railcraft/fluid.creosote.bucket/0.png deleted file mode 100644 index 1425896b41..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.creosote.bucket/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.creosote.can/0.png b/front/public/images/small/Railcraft/fluid.creosote.can/0.png deleted file mode 100644 index 170ffce657..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.creosote.can/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.creosote.cell/0.png b/front/public/images/small/Railcraft/fluid.creosote.cell/0.png deleted file mode 100644 index 03eae46b93..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.creosote.cell/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.creosote.refactory/0.png b/front/public/images/small/Railcraft/fluid.creosote.refactory/0.png deleted file mode 100644 index 76947822b6..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.creosote.refactory/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.creosote.wax/0.png b/front/public/images/small/Railcraft/fluid.creosote.wax/0.png deleted file mode 100644 index 676ec9de11..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.creosote.wax/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.creosote/0.png b/front/public/images/small/Railcraft/fluid.creosote/0.png deleted file mode 100644 index 048ffe45e3..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.creosote/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.steam.bottle/0.png b/front/public/images/small/Railcraft/fluid.steam.bottle/0.png deleted file mode 100644 index 13674e395c..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.steam.bottle/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fluid.steam/0.png b/front/public/images/small/Railcraft/fluid.steam/0.png deleted file mode 100644 index 704ed9160c..0000000000 Binary files a/front/public/images/small/Railcraft/fluid.steam/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/frame/0.png b/front/public/images/small/Railcraft/frame/0.png deleted file mode 100644 index 140c39312a..0000000000 Binary files a/front/public/images/small/Railcraft/frame/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/fuel.coke/0.png b/front/public/images/small/Railcraft/fuel.coke/0.png deleted file mode 100644 index 726687758d..0000000000 Binary files a/front/public/images/small/Railcraft/fuel.coke/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/0.png b/front/public/images/small/Railcraft/glass/0.png deleted file mode 100644 index 12b37ba643..0000000000 Binary files a/front/public/images/small/Railcraft/glass/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/1.png b/front/public/images/small/Railcraft/glass/1.png deleted file mode 100644 index 57deba5ed8..0000000000 Binary files a/front/public/images/small/Railcraft/glass/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/10.png b/front/public/images/small/Railcraft/glass/10.png deleted file mode 100644 index 860d579155..0000000000 Binary files a/front/public/images/small/Railcraft/glass/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/11.png b/front/public/images/small/Railcraft/glass/11.png deleted file mode 100644 index 9871f379ff..0000000000 Binary files a/front/public/images/small/Railcraft/glass/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/12.png b/front/public/images/small/Railcraft/glass/12.png deleted file mode 100644 index f9b8ea4bd0..0000000000 Binary files a/front/public/images/small/Railcraft/glass/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/13.png b/front/public/images/small/Railcraft/glass/13.png deleted file mode 100644 index 23ac50cae5..0000000000 Binary files a/front/public/images/small/Railcraft/glass/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/14.png b/front/public/images/small/Railcraft/glass/14.png deleted file mode 100644 index 53aa69948c..0000000000 Binary files a/front/public/images/small/Railcraft/glass/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/15.png b/front/public/images/small/Railcraft/glass/15.png deleted file mode 100644 index 1036ee0042..0000000000 Binary files a/front/public/images/small/Railcraft/glass/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/2.png b/front/public/images/small/Railcraft/glass/2.png deleted file mode 100644 index 2f888404b2..0000000000 Binary files a/front/public/images/small/Railcraft/glass/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/3.png b/front/public/images/small/Railcraft/glass/3.png deleted file mode 100644 index b7a36d5085..0000000000 Binary files a/front/public/images/small/Railcraft/glass/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/4.png b/front/public/images/small/Railcraft/glass/4.png deleted file mode 100644 index c141cdb99f..0000000000 Binary files a/front/public/images/small/Railcraft/glass/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/5.png b/front/public/images/small/Railcraft/glass/5.png deleted file mode 100644 index ba8346de90..0000000000 Binary files a/front/public/images/small/Railcraft/glass/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/6.png b/front/public/images/small/Railcraft/glass/6.png deleted file mode 100644 index 1a97a711fd..0000000000 Binary files a/front/public/images/small/Railcraft/glass/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/7.png b/front/public/images/small/Railcraft/glass/7.png deleted file mode 100644 index 334cd2841b..0000000000 Binary files a/front/public/images/small/Railcraft/glass/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/8.png b/front/public/images/small/Railcraft/glass/8.png deleted file mode 100644 index eb59e0444f..0000000000 Binary files a/front/public/images/small/Railcraft/glass/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/glass/9.png b/front/public/images/small/Railcraft/glass/9.png deleted file mode 100644 index 55915dad66..0000000000 Binary files a/front/public/images/small/Railcraft/glass/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ingot/0.png b/front/public/images/small/Railcraft/ingot/0.png deleted file mode 100644 index 0273b88e46..0000000000 Binary files a/front/public/images/small/Railcraft/ingot/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ingot/1.png b/front/public/images/small/Railcraft/ingot/1.png deleted file mode 100644 index 78ea1f5e80..0000000000 Binary files a/front/public/images/small/Railcraft/ingot/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ingot/2.png b/front/public/images/small/Railcraft/ingot/2.png deleted file mode 100644 index aaed652bc9..0000000000 Binary files a/front/public/images/small/Railcraft/ingot/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ingot/3.png b/front/public/images/small/Railcraft/ingot/3.png deleted file mode 100644 index 472086a2de..0000000000 Binary files a/front/public/images/small/Railcraft/ingot/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.metal/0.png b/front/public/images/small/Railcraft/lantern.metal/0.png deleted file mode 100644 index a004fc6946..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.metal/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.metal/1.png b/front/public/images/small/Railcraft/lantern.metal/1.png deleted file mode 100644 index 8ac1990587..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.metal/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.metal/2.png b/front/public/images/small/Railcraft/lantern.metal/2.png deleted file mode 100644 index b555770dab..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.metal/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.metal/3.png b/front/public/images/small/Railcraft/lantern.metal/3.png deleted file mode 100644 index 37e2c9d7fc..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.metal/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.metal/4.png b/front/public/images/small/Railcraft/lantern.metal/4.png deleted file mode 100644 index 3350259e20..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.metal/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.metal/5.png b/front/public/images/small/Railcraft/lantern.metal/5.png deleted file mode 100644 index c304cdad34..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.metal/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/0.png b/front/public/images/small/Railcraft/lantern.stone/0.png deleted file mode 100644 index 9eea463986..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/1.png b/front/public/images/small/Railcraft/lantern.stone/1.png deleted file mode 100644 index 479c5439e5..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/2.png b/front/public/images/small/Railcraft/lantern.stone/2.png deleted file mode 100644 index 5552ef5e00..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/3.png b/front/public/images/small/Railcraft/lantern.stone/3.png deleted file mode 100644 index fcb4588a62..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/4.png b/front/public/images/small/Railcraft/lantern.stone/4.png deleted file mode 100644 index df6f690177..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/5.png b/front/public/images/small/Railcraft/lantern.stone/5.png deleted file mode 100644 index 174f652563..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/6.png b/front/public/images/small/Railcraft/lantern.stone/6.png deleted file mode 100644 index 26cec70a90..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/7.png b/front/public/images/small/Railcraft/lantern.stone/7.png deleted file mode 100644 index c227999aad..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/8.png b/front/public/images/small/Railcraft/lantern.stone/8.png deleted file mode 100644 index f6edb0cb80..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/lantern.stone/9.png b/front/public/images/small/Railcraft/lantern.stone/9.png deleted file mode 100644 index eb10837830..0000000000 Binary files a/front/public/images/small/Railcraft/lantern.stone/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/0.png b/front/public/images/small/Railcraft/machine.alpha/0.png deleted file mode 100644 index 83892a32a7..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/1.png b/front/public/images/small/Railcraft/machine.alpha/1.png deleted file mode 100644 index 536fd2dd96..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/10.png b/front/public/images/small/Railcraft/machine.alpha/10.png deleted file mode 100644 index 0b19805012..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/11.png b/front/public/images/small/Railcraft/machine.alpha/11.png deleted file mode 100644 index b464986a98..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/12.png b/front/public/images/small/Railcraft/machine.alpha/12.png deleted file mode 100644 index 06534f7664..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/13.png b/front/public/images/small/Railcraft/machine.alpha/13.png deleted file mode 100644 index 0e864ef7f8..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/14.png b/front/public/images/small/Railcraft/machine.alpha/14.png deleted file mode 100644 index 80216ec56f..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/2.png b/front/public/images/small/Railcraft/machine.alpha/2.png deleted file mode 100644 index d6ec214e26..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/3.png b/front/public/images/small/Railcraft/machine.alpha/3.png deleted file mode 100644 index df6426b69a..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/4.png b/front/public/images/small/Railcraft/machine.alpha/4.png deleted file mode 100644 index 888e37b668..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/5.png b/front/public/images/small/Railcraft/machine.alpha/5.png deleted file mode 100644 index f23a81f611..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/6.png b/front/public/images/small/Railcraft/machine.alpha/6.png deleted file mode 100644 index 246cd9cf5e..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/7.png b/front/public/images/small/Railcraft/machine.alpha/7.png deleted file mode 100644 index 1d2bc5fe05..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/8.png b/front/public/images/small/Railcraft/machine.alpha/8.png deleted file mode 100644 index 6dc2d119fc..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.alpha/9.png b/front/public/images/small/Railcraft/machine.alpha/9.png deleted file mode 100644 index 5c4c483d34..0000000000 Binary files a/front/public/images/small/Railcraft/machine.alpha/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/0.png b/front/public/images/small/Railcraft/machine.beta/0.png deleted file mode 100644 index bb7ce4a7b8..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/1.png b/front/public/images/small/Railcraft/machine.beta/1.png deleted file mode 100644 index 0bc6c2b20e..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/10.png b/front/public/images/small/Railcraft/machine.beta/10.png deleted file mode 100644 index 19649f2fd3..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/11.png b/front/public/images/small/Railcraft/machine.beta/11.png deleted file mode 100644 index 4285a06e40..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/12.png b/front/public/images/small/Railcraft/machine.beta/12.png deleted file mode 100644 index bfbbfdd8c1..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/13.png b/front/public/images/small/Railcraft/machine.beta/13.png deleted file mode 100644 index 42c0742213..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/14.png b/front/public/images/small/Railcraft/machine.beta/14.png deleted file mode 100644 index ea0081b24d..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/15.png b/front/public/images/small/Railcraft/machine.beta/15.png deleted file mode 100644 index 6911a3ad6c..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/2.png b/front/public/images/small/Railcraft/machine.beta/2.png deleted file mode 100644 index 5fabf18486..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/3.png b/front/public/images/small/Railcraft/machine.beta/3.png deleted file mode 100644 index b817b1e260..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/4.png b/front/public/images/small/Railcraft/machine.beta/4.png deleted file mode 100644 index 259ce387bd..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/5.png b/front/public/images/small/Railcraft/machine.beta/5.png deleted file mode 100644 index 2c5669ee97..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/6.png b/front/public/images/small/Railcraft/machine.beta/6.png deleted file mode 100644 index e2ed1ca489..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/7.png b/front/public/images/small/Railcraft/machine.beta/7.png deleted file mode 100644 index 624a04f04d..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/8.png b/front/public/images/small/Railcraft/machine.beta/8.png deleted file mode 100644 index b77d0f70ed..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.beta/9.png b/front/public/images/small/Railcraft/machine.beta/9.png deleted file mode 100644 index 25100e9b68..0000000000 Binary files a/front/public/images/small/Railcraft/machine.beta/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.delta/0.png b/front/public/images/small/Railcraft/machine.delta/0.png deleted file mode 100644 index cf81aaa891..0000000000 Binary files a/front/public/images/small/Railcraft/machine.delta/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.epsilon/0.png b/front/public/images/small/Railcraft/machine.epsilon/0.png deleted file mode 100644 index 67522a35de..0000000000 Binary files a/front/public/images/small/Railcraft/machine.epsilon/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.epsilon/1.png b/front/public/images/small/Railcraft/machine.epsilon/1.png deleted file mode 100644 index 0625383590..0000000000 Binary files a/front/public/images/small/Railcraft/machine.epsilon/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.epsilon/2.png b/front/public/images/small/Railcraft/machine.epsilon/2.png deleted file mode 100644 index 85e0eed8b8..0000000000 Binary files a/front/public/images/small/Railcraft/machine.epsilon/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.epsilon/3.png b/front/public/images/small/Railcraft/machine.epsilon/3.png deleted file mode 100644 index 54505b7382..0000000000 Binary files a/front/public/images/small/Railcraft/machine.epsilon/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.epsilon/4.png b/front/public/images/small/Railcraft/machine.epsilon/4.png deleted file mode 100644 index 5304a69f44..0000000000 Binary files a/front/public/images/small/Railcraft/machine.epsilon/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/0.png b/front/public/images/small/Railcraft/machine.eta/0.png deleted file mode 100644 index 68acf5bd4d..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/1.png b/front/public/images/small/Railcraft/machine.eta/1.png deleted file mode 100644 index 8b18e11f00..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/2.png b/front/public/images/small/Railcraft/machine.eta/2.png deleted file mode 100644 index 93c8ea0d24..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/3.png b/front/public/images/small/Railcraft/machine.eta/3.png deleted file mode 100644 index bbcb569ad9..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/4.png b/front/public/images/small/Railcraft/machine.eta/4.png deleted file mode 100644 index 0020269b0c..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/5.png b/front/public/images/small/Railcraft/machine.eta/5.png deleted file mode 100644 index f362f59d1a..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/6.png b/front/public/images/small/Railcraft/machine.eta/6.png deleted file mode 100644 index 66350ccd2e..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/7.png b/front/public/images/small/Railcraft/machine.eta/7.png deleted file mode 100644 index e313ddab0b..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.eta/8.png b/front/public/images/small/Railcraft/machine.eta/8.png deleted file mode 100644 index ca00c8053f..0000000000 Binary files a/front/public/images/small/Railcraft/machine.eta/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/0.png b/front/public/images/small/Railcraft/machine.gamma/0.png deleted file mode 100644 index a26f2a99a2..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/1.png b/front/public/images/small/Railcraft/machine.gamma/1.png deleted file mode 100644 index fb01774b86..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/10.png b/front/public/images/small/Railcraft/machine.gamma/10.png deleted file mode 100644 index a436a5cebf..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/11.png b/front/public/images/small/Railcraft/machine.gamma/11.png deleted file mode 100644 index e68ed974cb..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/2.png b/front/public/images/small/Railcraft/machine.gamma/2.png deleted file mode 100644 index 68ac9b448f..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/3.png b/front/public/images/small/Railcraft/machine.gamma/3.png deleted file mode 100644 index 0aae8bc721..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/4.png b/front/public/images/small/Railcraft/machine.gamma/4.png deleted file mode 100644 index 1e4f794fdc..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/5.png b/front/public/images/small/Railcraft/machine.gamma/5.png deleted file mode 100644 index 67ab241032..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/6.png b/front/public/images/small/Railcraft/machine.gamma/6.png deleted file mode 100644 index 869b3ee51b..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/7.png b/front/public/images/small/Railcraft/machine.gamma/7.png deleted file mode 100644 index 108aceb875..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/8.png b/front/public/images/small/Railcraft/machine.gamma/8.png deleted file mode 100644 index 0dffc636fe..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.gamma/9.png b/front/public/images/small/Railcraft/machine.gamma/9.png deleted file mode 100644 index 1bf1415092..0000000000 Binary files a/front/public/images/small/Railcraft/machine.gamma/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/0.png b/front/public/images/small/Railcraft/machine.zeta/0.png deleted file mode 100644 index 4a685eb780..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/1.png b/front/public/images/small/Railcraft/machine.zeta/1.png deleted file mode 100644 index 83950b2300..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/10.png b/front/public/images/small/Railcraft/machine.zeta/10.png deleted file mode 100644 index 9370b39f73..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/11.png b/front/public/images/small/Railcraft/machine.zeta/11.png deleted file mode 100644 index 563777a33a..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/12.png b/front/public/images/small/Railcraft/machine.zeta/12.png deleted file mode 100644 index 157d421dac..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/13.png b/front/public/images/small/Railcraft/machine.zeta/13.png deleted file mode 100644 index d5d0c26ee8..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/14.png b/front/public/images/small/Railcraft/machine.zeta/14.png deleted file mode 100644 index 387ad3c132..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/2.png b/front/public/images/small/Railcraft/machine.zeta/2.png deleted file mode 100644 index 9966b0a877..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/3.png b/front/public/images/small/Railcraft/machine.zeta/3.png deleted file mode 100644 index 4e6d6e8895..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/4.png b/front/public/images/small/Railcraft/machine.zeta/4.png deleted file mode 100644 index 53ccc6690f..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/5.png b/front/public/images/small/Railcraft/machine.zeta/5.png deleted file mode 100644 index a1c5a8b40e..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/6.png b/front/public/images/small/Railcraft/machine.zeta/6.png deleted file mode 100644 index d1a5b882a1..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/7.png b/front/public/images/small/Railcraft/machine.zeta/7.png deleted file mode 100644 index bf2b6794a6..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/8.png b/front/public/images/small/Railcraft/machine.zeta/8.png deleted file mode 100644 index fb0149513b..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/machine.zeta/9.png b/front/public/images/small/Railcraft/machine.zeta/9.png deleted file mode 100644 index 8db5caee4c..0000000000 Binary files a/front/public/images/small/Railcraft/machine.zeta/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/nugget/0.png b/front/public/images/small/Railcraft/nugget/0.png deleted file mode 100644 index 5c18fb6c61..0000000000 Binary files a/front/public/images/small/Railcraft/nugget/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/nugget/1.png b/front/public/images/small/Railcraft/nugget/1.png deleted file mode 100644 index e843f35b43..0000000000 Binary files a/front/public/images/small/Railcraft/nugget/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/nugget/2.png b/front/public/images/small/Railcraft/nugget/2.png deleted file mode 100644 index 3597090f56..0000000000 Binary files a/front/public/images/small/Railcraft/nugget/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/nugget/3.png b/front/public/images/small/Railcraft/nugget/3.png deleted file mode 100644 index 5fb36ffdab..0000000000 Binary files a/front/public/images/small/Railcraft/nugget/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/nugget/4.png b/front/public/images/small/Railcraft/nugget/4.png deleted file mode 100644 index 61b8a102af..0000000000 Binary files a/front/public/images/small/Railcraft/nugget/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ore/2.png b/front/public/images/small/Railcraft/ore/2.png deleted file mode 100644 index dddb3b372f..0000000000 Binary files a/front/public/images/small/Railcraft/ore/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ore/3.png b/front/public/images/small/Railcraft/ore/3.png deleted file mode 100644 index a1c892cb53..0000000000 Binary files a/front/public/images/small/Railcraft/ore/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ore/4.png b/front/public/images/small/Railcraft/ore/4.png deleted file mode 100644 index 2d330b0195..0000000000 Binary files a/front/public/images/small/Railcraft/ore/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/ore/5.png b/front/public/images/small/Railcraft/ore/5.png deleted file mode 100644 index 1977bbcc88..0000000000 Binary files a/front/public/images/small/Railcraft/ore/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.bleached.clay/0.png b/front/public/images/small/Railcraft/part.bleached.clay/0.png deleted file mode 100644 index 313aa0e332..0000000000 Binary files a/front/public/images/small/Railcraft/part.bleached.clay/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.circuit/0.png b/front/public/images/small/Railcraft/part.circuit/0.png deleted file mode 100644 index b916f549ee..0000000000 Binary files a/front/public/images/small/Railcraft/part.circuit/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.circuit/1.png b/front/public/images/small/Railcraft/part.circuit/1.png deleted file mode 100644 index 1d1e11c75f..0000000000 Binary files a/front/public/images/small/Railcraft/part.circuit/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.circuit/2.png b/front/public/images/small/Railcraft/part.circuit/2.png deleted file mode 100644 index 3260b84360..0000000000 Binary files a/front/public/images/small/Railcraft/part.circuit/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.gear/0.png b/front/public/images/small/Railcraft/part.gear/0.png deleted file mode 100644 index 9d99e59148..0000000000 Binary files a/front/public/images/small/Railcraft/part.gear/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.gear/1.png b/front/public/images/small/Railcraft/part.gear/1.png deleted file mode 100644 index 4936e6464a..0000000000 Binary files a/front/public/images/small/Railcraft/part.gear/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.gear/2.png b/front/public/images/small/Railcraft/part.gear/2.png deleted file mode 100644 index d1e57edb25..0000000000 Binary files a/front/public/images/small/Railcraft/part.gear/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.gear/3.png b/front/public/images/small/Railcraft/part.gear/3.png deleted file mode 100644 index bf45125171..0000000000 Binary files a/front/public/images/small/Railcraft/part.gear/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.plate/0.png b/front/public/images/small/Railcraft/part.plate/0.png deleted file mode 100644 index 93eda04d41..0000000000 Binary files a/front/public/images/small/Railcraft/part.plate/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.plate/1.png b/front/public/images/small/Railcraft/part.plate/1.png deleted file mode 100644 index eb546b0a4b..0000000000 Binary files a/front/public/images/small/Railcraft/part.plate/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.plate/2.png b/front/public/images/small/Railcraft/part.plate/2.png deleted file mode 100644 index 2da38269a2..0000000000 Binary files a/front/public/images/small/Railcraft/part.plate/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.plate/3.png b/front/public/images/small/Railcraft/part.plate/3.png deleted file mode 100644 index bb9beb7116..0000000000 Binary files a/front/public/images/small/Railcraft/part.plate/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.plate/4.png b/front/public/images/small/Railcraft/part.plate/4.png deleted file mode 100644 index 796b828c44..0000000000 Binary files a/front/public/images/small/Railcraft/part.plate/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.rail/0.png b/front/public/images/small/Railcraft/part.rail/0.png deleted file mode 100644 index b2aebb97be..0000000000 Binary files a/front/public/images/small/Railcraft/part.rail/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.rail/1.png b/front/public/images/small/Railcraft/part.rail/1.png deleted file mode 100644 index 8bb7963919..0000000000 Binary files a/front/public/images/small/Railcraft/part.rail/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.rail/2.png b/front/public/images/small/Railcraft/part.rail/2.png deleted file mode 100644 index e75acbee81..0000000000 Binary files a/front/public/images/small/Railcraft/part.rail/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.rail/3.png b/front/public/images/small/Railcraft/part.rail/3.png deleted file mode 100644 index b6fd4f3496..0000000000 Binary files a/front/public/images/small/Railcraft/part.rail/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.rail/4.png b/front/public/images/small/Railcraft/part.rail/4.png deleted file mode 100644 index d6032a3afa..0000000000 Binary files a/front/public/images/small/Railcraft/part.rail/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.rail/5.png b/front/public/images/small/Railcraft/part.rail/5.png deleted file mode 100644 index 397b166234..0000000000 Binary files a/front/public/images/small/Railcraft/part.rail/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.railbed/0.png b/front/public/images/small/Railcraft/part.railbed/0.png deleted file mode 100644 index 8be3a1ed53..0000000000 Binary files a/front/public/images/small/Railcraft/part.railbed/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.railbed/1.png b/front/public/images/small/Railcraft/part.railbed/1.png deleted file mode 100644 index 5f4cbf88af..0000000000 Binary files a/front/public/images/small/Railcraft/part.railbed/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.rebar/0.png b/front/public/images/small/Railcraft/part.rebar/0.png deleted file mode 100644 index 06c70b3435..0000000000 Binary files a/front/public/images/small/Railcraft/part.rebar/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.signal.lamp/0.png b/front/public/images/small/Railcraft/part.signal.lamp/0.png deleted file mode 100644 index 1aa51e0006..0000000000 Binary files a/front/public/images/small/Railcraft/part.signal.lamp/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.tie/0.png b/front/public/images/small/Railcraft/part.tie/0.png deleted file mode 100644 index fa178c5d23..0000000000 Binary files a/front/public/images/small/Railcraft/part.tie/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.tie/1.png b/front/public/images/small/Railcraft/part.tie/1.png deleted file mode 100644 index 2e815d24d7..0000000000 Binary files a/front/public/images/small/Railcraft/part.tie/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.turbine.blade/0.png b/front/public/images/small/Railcraft/part.turbine.blade/0.png deleted file mode 100644 index 2a42ff3d92..0000000000 Binary files a/front/public/images/small/Railcraft/part.turbine.blade/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.turbine.disk/0.png b/front/public/images/small/Railcraft/part.turbine.disk/0.png deleted file mode 100644 index ec04aa87a0..0000000000 Binary files a/front/public/images/small/Railcraft/part.turbine.disk/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/part.turbine.rotor/0.png b/front/public/images/small/Railcraft/part.turbine.rotor/0.png deleted file mode 100644 index b22f857b86..0000000000 Binary files a/front/public/images/small/Railcraft/part.turbine.rotor/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/0.png b/front/public/images/small/Railcraft/post.metal.platform/0.png deleted file mode 100644 index 502771ee57..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/1.png b/front/public/images/small/Railcraft/post.metal.platform/1.png deleted file mode 100644 index ceaf96bbbc..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/10.png b/front/public/images/small/Railcraft/post.metal.platform/10.png deleted file mode 100644 index 4217d7fb7a..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/11.png b/front/public/images/small/Railcraft/post.metal.platform/11.png deleted file mode 100644 index 5d61765a84..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/12.png b/front/public/images/small/Railcraft/post.metal.platform/12.png deleted file mode 100644 index cafaa6e20b..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/13.png b/front/public/images/small/Railcraft/post.metal.platform/13.png deleted file mode 100644 index f9b49f8093..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/14.png b/front/public/images/small/Railcraft/post.metal.platform/14.png deleted file mode 100644 index a457067dca..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/15.png b/front/public/images/small/Railcraft/post.metal.platform/15.png deleted file mode 100644 index e1cbeeed10..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/2.png b/front/public/images/small/Railcraft/post.metal.platform/2.png deleted file mode 100644 index e6c7250c1a..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/3.png b/front/public/images/small/Railcraft/post.metal.platform/3.png deleted file mode 100644 index f407bf65b3..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/4.png b/front/public/images/small/Railcraft/post.metal.platform/4.png deleted file mode 100644 index 11b6437266..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/5.png b/front/public/images/small/Railcraft/post.metal.platform/5.png deleted file mode 100644 index 0914fa5463..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/6.png b/front/public/images/small/Railcraft/post.metal.platform/6.png deleted file mode 100644 index 82e51b8368..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/7.png b/front/public/images/small/Railcraft/post.metal.platform/7.png deleted file mode 100644 index 2181c9ee58..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/8.png b/front/public/images/small/Railcraft/post.metal.platform/8.png deleted file mode 100644 index 5a1468a70d..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal.platform/9.png b/front/public/images/small/Railcraft/post.metal.platform/9.png deleted file mode 100644 index 341d2e564d..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal.platform/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/0.png b/front/public/images/small/Railcraft/post.metal/0.png deleted file mode 100644 index 494082df45..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/1.png b/front/public/images/small/Railcraft/post.metal/1.png deleted file mode 100644 index d924fa03f7..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/10.png b/front/public/images/small/Railcraft/post.metal/10.png deleted file mode 100644 index 4e38e06199..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/11.png b/front/public/images/small/Railcraft/post.metal/11.png deleted file mode 100644 index ac74224426..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/12.png b/front/public/images/small/Railcraft/post.metal/12.png deleted file mode 100644 index 43c9c06b21..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/13.png b/front/public/images/small/Railcraft/post.metal/13.png deleted file mode 100644 index 58eb737391..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/14.png b/front/public/images/small/Railcraft/post.metal/14.png deleted file mode 100644 index f13e9dca08..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/15.png b/front/public/images/small/Railcraft/post.metal/15.png deleted file mode 100644 index ff74137b18..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/2.png b/front/public/images/small/Railcraft/post.metal/2.png deleted file mode 100644 index 293da95fe3..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/3.png b/front/public/images/small/Railcraft/post.metal/3.png deleted file mode 100644 index e22adb577c..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/4.png b/front/public/images/small/Railcraft/post.metal/4.png deleted file mode 100644 index def2a4bfbf..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/5.png b/front/public/images/small/Railcraft/post.metal/5.png deleted file mode 100644 index 0defb0dab3..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/6.png b/front/public/images/small/Railcraft/post.metal/6.png deleted file mode 100644 index fa1ab1cbd5..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/7.png b/front/public/images/small/Railcraft/post.metal/7.png deleted file mode 100644 index 5996edc513..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/8.png b/front/public/images/small/Railcraft/post.metal/8.png deleted file mode 100644 index c0ecbb68dc..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post.metal/9.png b/front/public/images/small/Railcraft/post.metal/9.png deleted file mode 100644 index cec26ba466..0000000000 Binary files a/front/public/images/small/Railcraft/post.metal/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post/0.png b/front/public/images/small/Railcraft/post/0.png deleted file mode 100644 index 37f86f78b7..0000000000 Binary files a/front/public/images/small/Railcraft/post/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post/1.png b/front/public/images/small/Railcraft/post/1.png deleted file mode 100644 index 068f332c32..0000000000 Binary files a/front/public/images/small/Railcraft/post/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post/2.png b/front/public/images/small/Railcraft/post/2.png deleted file mode 100644 index 9049bf4abc..0000000000 Binary files a/front/public/images/small/Railcraft/post/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post/4.png b/front/public/images/small/Railcraft/post/4.png deleted file mode 100644 index b1c1edcd66..0000000000 Binary files a/front/public/images/small/Railcraft/post/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post/5.png b/front/public/images/small/Railcraft/post/5.png deleted file mode 100644 index b712576dd3..0000000000 Binary files a/front/public/images/small/Railcraft/post/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/post/6.png b/front/public/images/small/Railcraft/post/6.png deleted file mode 100644 index 276067328a..0000000000 Binary files a/front/public/images/small/Railcraft/post/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/routing.table/0.png b/front/public/images/small/Railcraft/routing.table/0.png deleted file mode 100644 index e7f1345933..0000000000 Binary files a/front/public/images/small/Railcraft/routing.table/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/routing.ticket.gold/0.png b/front/public/images/small/Railcraft/routing.ticket.gold/0.png deleted file mode 100644 index 544b5dea7c..0000000000 Binary files a/front/public/images/small/Railcraft/routing.ticket.gold/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/routing.ticket/0.png b/front/public/images/small/Railcraft/routing.ticket/0.png deleted file mode 100644 index 3ea6e1090a..0000000000 Binary files a/front/public/images/small/Railcraft/routing.ticket/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/0.png b/front/public/images/small/Railcraft/signal/0.png deleted file mode 100644 index 48dbc00757..0000000000 Binary files a/front/public/images/small/Railcraft/signal/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/1.png b/front/public/images/small/Railcraft/signal/1.png deleted file mode 100644 index 1a433a0b4c..0000000000 Binary files a/front/public/images/small/Railcraft/signal/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/10.png b/front/public/images/small/Railcraft/signal/10.png deleted file mode 100644 index db9000153f..0000000000 Binary files a/front/public/images/small/Railcraft/signal/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/11.png b/front/public/images/small/Railcraft/signal/11.png deleted file mode 100644 index 140781d419..0000000000 Binary files a/front/public/images/small/Railcraft/signal/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/12.png b/front/public/images/small/Railcraft/signal/12.png deleted file mode 100644 index 531ebf7699..0000000000 Binary files a/front/public/images/small/Railcraft/signal/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/13.png b/front/public/images/small/Railcraft/signal/13.png deleted file mode 100644 index 99173384ce..0000000000 Binary files a/front/public/images/small/Railcraft/signal/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/2.png b/front/public/images/small/Railcraft/signal/2.png deleted file mode 100644 index f71653b1ef..0000000000 Binary files a/front/public/images/small/Railcraft/signal/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/3.png b/front/public/images/small/Railcraft/signal/3.png deleted file mode 100644 index 23c2253899..0000000000 Binary files a/front/public/images/small/Railcraft/signal/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/4.png b/front/public/images/small/Railcraft/signal/4.png deleted file mode 100644 index 5ea39071d1..0000000000 Binary files a/front/public/images/small/Railcraft/signal/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/5.png b/front/public/images/small/Railcraft/signal/5.png deleted file mode 100644 index 026f1b1ee5..0000000000 Binary files a/front/public/images/small/Railcraft/signal/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/6.png b/front/public/images/small/Railcraft/signal/6.png deleted file mode 100644 index 35a679d609..0000000000 Binary files a/front/public/images/small/Railcraft/signal/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/7.png b/front/public/images/small/Railcraft/signal/7.png deleted file mode 100644 index 084d1ee93a..0000000000 Binary files a/front/public/images/small/Railcraft/signal/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/8.png b/front/public/images/small/Railcraft/signal/8.png deleted file mode 100644 index 8ebc55d1c0..0000000000 Binary files a/front/public/images/small/Railcraft/signal/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/signal/9.png b/front/public/images/small/Railcraft/signal/9.png deleted file mode 100644 index 30d25f64ac..0000000000 Binary files a/front/public/images/small/Railcraft/signal/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/0.png b/front/public/images/small/Railcraft/slab/0.png deleted file mode 100644 index f7f73fd927..0000000000 Binary files a/front/public/images/small/Railcraft/slab/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/1.png b/front/public/images/small/Railcraft/slab/1.png deleted file mode 100644 index 5be9e446d8..0000000000 Binary files a/front/public/images/small/Railcraft/slab/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/10.png b/front/public/images/small/Railcraft/slab/10.png deleted file mode 100644 index 0fd0f5bf4e..0000000000 Binary files a/front/public/images/small/Railcraft/slab/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/11.png b/front/public/images/small/Railcraft/slab/11.png deleted file mode 100644 index ddb27d3276..0000000000 Binary files a/front/public/images/small/Railcraft/slab/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/12.png b/front/public/images/small/Railcraft/slab/12.png deleted file mode 100644 index 950bd8b303..0000000000 Binary files a/front/public/images/small/Railcraft/slab/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/13.png b/front/public/images/small/Railcraft/slab/13.png deleted file mode 100644 index bec802ab0f..0000000000 Binary files a/front/public/images/small/Railcraft/slab/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/14.png b/front/public/images/small/Railcraft/slab/14.png deleted file mode 100644 index 171099305d..0000000000 Binary files a/front/public/images/small/Railcraft/slab/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/15.png b/front/public/images/small/Railcraft/slab/15.png deleted file mode 100644 index b647ae08f1..0000000000 Binary files a/front/public/images/small/Railcraft/slab/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/16.png b/front/public/images/small/Railcraft/slab/16.png deleted file mode 100644 index f44b966b83..0000000000 Binary files a/front/public/images/small/Railcraft/slab/16.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/17.png b/front/public/images/small/Railcraft/slab/17.png deleted file mode 100644 index 3aa7beba50..0000000000 Binary files a/front/public/images/small/Railcraft/slab/17.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/18.png b/front/public/images/small/Railcraft/slab/18.png deleted file mode 100644 index 9a5c64c102..0000000000 Binary files a/front/public/images/small/Railcraft/slab/18.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/19.png b/front/public/images/small/Railcraft/slab/19.png deleted file mode 100644 index 272619f0cb..0000000000 Binary files a/front/public/images/small/Railcraft/slab/19.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/2.png b/front/public/images/small/Railcraft/slab/2.png deleted file mode 100644 index cdaaa41483..0000000000 Binary files a/front/public/images/small/Railcraft/slab/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/20.png b/front/public/images/small/Railcraft/slab/20.png deleted file mode 100644 index 0e80a37bb4..0000000000 Binary files a/front/public/images/small/Railcraft/slab/20.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/21.png b/front/public/images/small/Railcraft/slab/21.png deleted file mode 100644 index eef78f26fa..0000000000 Binary files a/front/public/images/small/Railcraft/slab/21.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/22.png b/front/public/images/small/Railcraft/slab/22.png deleted file mode 100644 index 9de451f233..0000000000 Binary files a/front/public/images/small/Railcraft/slab/22.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/23.png b/front/public/images/small/Railcraft/slab/23.png deleted file mode 100644 index 4d996ce9f0..0000000000 Binary files a/front/public/images/small/Railcraft/slab/23.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/24.png b/front/public/images/small/Railcraft/slab/24.png deleted file mode 100644 index 6f6326cb21..0000000000 Binary files a/front/public/images/small/Railcraft/slab/24.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/25.png b/front/public/images/small/Railcraft/slab/25.png deleted file mode 100644 index c50713e8df..0000000000 Binary files a/front/public/images/small/Railcraft/slab/25.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/26.png b/front/public/images/small/Railcraft/slab/26.png deleted file mode 100644 index ce12ca30f4..0000000000 Binary files a/front/public/images/small/Railcraft/slab/26.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/27.png b/front/public/images/small/Railcraft/slab/27.png deleted file mode 100644 index ebe9adc813..0000000000 Binary files a/front/public/images/small/Railcraft/slab/27.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/28.png b/front/public/images/small/Railcraft/slab/28.png deleted file mode 100644 index aa1a204166..0000000000 Binary files a/front/public/images/small/Railcraft/slab/28.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/29.png b/front/public/images/small/Railcraft/slab/29.png deleted file mode 100644 index 51b0262eec..0000000000 Binary files a/front/public/images/small/Railcraft/slab/29.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/3.png b/front/public/images/small/Railcraft/slab/3.png deleted file mode 100644 index 1feb8f3059..0000000000 Binary files a/front/public/images/small/Railcraft/slab/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/30.png b/front/public/images/small/Railcraft/slab/30.png deleted file mode 100644 index b8a555edf2..0000000000 Binary files a/front/public/images/small/Railcraft/slab/30.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/31.png b/front/public/images/small/Railcraft/slab/31.png deleted file mode 100644 index 75dec59289..0000000000 Binary files a/front/public/images/small/Railcraft/slab/31.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/32.png b/front/public/images/small/Railcraft/slab/32.png deleted file mode 100644 index 96d80f7cd4..0000000000 Binary files a/front/public/images/small/Railcraft/slab/32.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/33.png b/front/public/images/small/Railcraft/slab/33.png deleted file mode 100644 index 090aebb01b..0000000000 Binary files a/front/public/images/small/Railcraft/slab/33.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/34.png b/front/public/images/small/Railcraft/slab/34.png deleted file mode 100644 index e21f0b8b8f..0000000000 Binary files a/front/public/images/small/Railcraft/slab/34.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/35.png b/front/public/images/small/Railcraft/slab/35.png deleted file mode 100644 index 5e1e08f09a..0000000000 Binary files a/front/public/images/small/Railcraft/slab/35.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/36.png b/front/public/images/small/Railcraft/slab/36.png deleted file mode 100644 index 762d68f59a..0000000000 Binary files a/front/public/images/small/Railcraft/slab/36.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/37.png b/front/public/images/small/Railcraft/slab/37.png deleted file mode 100644 index d512a4e5d1..0000000000 Binary files a/front/public/images/small/Railcraft/slab/37.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/38.png b/front/public/images/small/Railcraft/slab/38.png deleted file mode 100644 index 31f7eac097..0000000000 Binary files a/front/public/images/small/Railcraft/slab/38.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/39.png b/front/public/images/small/Railcraft/slab/39.png deleted file mode 100644 index 051f715b0d..0000000000 Binary files a/front/public/images/small/Railcraft/slab/39.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/4.png b/front/public/images/small/Railcraft/slab/4.png deleted file mode 100644 index 8c5afee9db..0000000000 Binary files a/front/public/images/small/Railcraft/slab/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/40.png b/front/public/images/small/Railcraft/slab/40.png deleted file mode 100644 index 195e75985f..0000000000 Binary files a/front/public/images/small/Railcraft/slab/40.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/41.png b/front/public/images/small/Railcraft/slab/41.png deleted file mode 100644 index 7b9fcf3a49..0000000000 Binary files a/front/public/images/small/Railcraft/slab/41.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/42.png b/front/public/images/small/Railcraft/slab/42.png deleted file mode 100644 index 07cba0fec8..0000000000 Binary files a/front/public/images/small/Railcraft/slab/42.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/43.png b/front/public/images/small/Railcraft/slab/43.png deleted file mode 100644 index 8b32daf006..0000000000 Binary files a/front/public/images/small/Railcraft/slab/43.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/5.png b/front/public/images/small/Railcraft/slab/5.png deleted file mode 100644 index 4786120c1e..0000000000 Binary files a/front/public/images/small/Railcraft/slab/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/6.png b/front/public/images/small/Railcraft/slab/6.png deleted file mode 100644 index 097db2851d..0000000000 Binary files a/front/public/images/small/Railcraft/slab/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/7.png b/front/public/images/small/Railcraft/slab/7.png deleted file mode 100644 index 295e710cef..0000000000 Binary files a/front/public/images/small/Railcraft/slab/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/8.png b/front/public/images/small/Railcraft/slab/8.png deleted file mode 100644 index a7ade65953..0000000000 Binary files a/front/public/images/small/Railcraft/slab/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/slab/9.png b/front/public/images/small/Railcraft/slab/9.png deleted file mode 100644 index 081f7ce98c..0000000000 Binary files a/front/public/images/small/Railcraft/slab/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/0.png b/front/public/images/small/Railcraft/stair/0.png deleted file mode 100644 index 3c393da8c4..0000000000 Binary files a/front/public/images/small/Railcraft/stair/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/1.png b/front/public/images/small/Railcraft/stair/1.png deleted file mode 100644 index df96ed8c66..0000000000 Binary files a/front/public/images/small/Railcraft/stair/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/10.png b/front/public/images/small/Railcraft/stair/10.png deleted file mode 100644 index a88badd1ae..0000000000 Binary files a/front/public/images/small/Railcraft/stair/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/11.png b/front/public/images/small/Railcraft/stair/11.png deleted file mode 100644 index 8558ac4212..0000000000 Binary files a/front/public/images/small/Railcraft/stair/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/12.png b/front/public/images/small/Railcraft/stair/12.png deleted file mode 100644 index c0b30dfdd3..0000000000 Binary files a/front/public/images/small/Railcraft/stair/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/13.png b/front/public/images/small/Railcraft/stair/13.png deleted file mode 100644 index be714cddca..0000000000 Binary files a/front/public/images/small/Railcraft/stair/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/14.png b/front/public/images/small/Railcraft/stair/14.png deleted file mode 100644 index 7b69b61902..0000000000 Binary files a/front/public/images/small/Railcraft/stair/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/15.png b/front/public/images/small/Railcraft/stair/15.png deleted file mode 100644 index 80fd18ff45..0000000000 Binary files a/front/public/images/small/Railcraft/stair/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/16.png b/front/public/images/small/Railcraft/stair/16.png deleted file mode 100644 index e2ccbc278c..0000000000 Binary files a/front/public/images/small/Railcraft/stair/16.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/17.png b/front/public/images/small/Railcraft/stair/17.png deleted file mode 100644 index 548bc79105..0000000000 Binary files a/front/public/images/small/Railcraft/stair/17.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/18.png b/front/public/images/small/Railcraft/stair/18.png deleted file mode 100644 index f2d77d2c33..0000000000 Binary files a/front/public/images/small/Railcraft/stair/18.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/19.png b/front/public/images/small/Railcraft/stair/19.png deleted file mode 100644 index 16455a4a77..0000000000 Binary files a/front/public/images/small/Railcraft/stair/19.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/2.png b/front/public/images/small/Railcraft/stair/2.png deleted file mode 100644 index 37ff0bdb54..0000000000 Binary files a/front/public/images/small/Railcraft/stair/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/20.png b/front/public/images/small/Railcraft/stair/20.png deleted file mode 100644 index 835faab7a4..0000000000 Binary files a/front/public/images/small/Railcraft/stair/20.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/21.png b/front/public/images/small/Railcraft/stair/21.png deleted file mode 100644 index 60694f6d8d..0000000000 Binary files a/front/public/images/small/Railcraft/stair/21.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/22.png b/front/public/images/small/Railcraft/stair/22.png deleted file mode 100644 index 9134aa498e..0000000000 Binary files a/front/public/images/small/Railcraft/stair/22.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/23.png b/front/public/images/small/Railcraft/stair/23.png deleted file mode 100644 index eec6e622be..0000000000 Binary files a/front/public/images/small/Railcraft/stair/23.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/24.png b/front/public/images/small/Railcraft/stair/24.png deleted file mode 100644 index 24e3764f1c..0000000000 Binary files a/front/public/images/small/Railcraft/stair/24.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/25.png b/front/public/images/small/Railcraft/stair/25.png deleted file mode 100644 index ef7e781b3d..0000000000 Binary files a/front/public/images/small/Railcraft/stair/25.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/26.png b/front/public/images/small/Railcraft/stair/26.png deleted file mode 100644 index ef3c20ed28..0000000000 Binary files a/front/public/images/small/Railcraft/stair/26.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/27.png b/front/public/images/small/Railcraft/stair/27.png deleted file mode 100644 index 3aa9a90ee2..0000000000 Binary files a/front/public/images/small/Railcraft/stair/27.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/28.png b/front/public/images/small/Railcraft/stair/28.png deleted file mode 100644 index b27e94da4e..0000000000 Binary files a/front/public/images/small/Railcraft/stair/28.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/29.png b/front/public/images/small/Railcraft/stair/29.png deleted file mode 100644 index 6dfcdd2d94..0000000000 Binary files a/front/public/images/small/Railcraft/stair/29.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/3.png b/front/public/images/small/Railcraft/stair/3.png deleted file mode 100644 index 2d1607b7da..0000000000 Binary files a/front/public/images/small/Railcraft/stair/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/30.png b/front/public/images/small/Railcraft/stair/30.png deleted file mode 100644 index ff942a4aee..0000000000 Binary files a/front/public/images/small/Railcraft/stair/30.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/31.png b/front/public/images/small/Railcraft/stair/31.png deleted file mode 100644 index 9d94a6e465..0000000000 Binary files a/front/public/images/small/Railcraft/stair/31.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/32.png b/front/public/images/small/Railcraft/stair/32.png deleted file mode 100644 index 9e94041393..0000000000 Binary files a/front/public/images/small/Railcraft/stair/32.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/33.png b/front/public/images/small/Railcraft/stair/33.png deleted file mode 100644 index ea9942874c..0000000000 Binary files a/front/public/images/small/Railcraft/stair/33.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/34.png b/front/public/images/small/Railcraft/stair/34.png deleted file mode 100644 index bbb1b5e4d2..0000000000 Binary files a/front/public/images/small/Railcraft/stair/34.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/35.png b/front/public/images/small/Railcraft/stair/35.png deleted file mode 100644 index 28b5e6f908..0000000000 Binary files a/front/public/images/small/Railcraft/stair/35.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/36.png b/front/public/images/small/Railcraft/stair/36.png deleted file mode 100644 index 2b053c1d3b..0000000000 Binary files a/front/public/images/small/Railcraft/stair/36.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/37.png b/front/public/images/small/Railcraft/stair/37.png deleted file mode 100644 index 7c9c841c4d..0000000000 Binary files a/front/public/images/small/Railcraft/stair/37.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/38.png b/front/public/images/small/Railcraft/stair/38.png deleted file mode 100644 index 1e332504b8..0000000000 Binary files a/front/public/images/small/Railcraft/stair/38.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/39.png b/front/public/images/small/Railcraft/stair/39.png deleted file mode 100644 index 78d16f3891..0000000000 Binary files a/front/public/images/small/Railcraft/stair/39.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/4.png b/front/public/images/small/Railcraft/stair/4.png deleted file mode 100644 index a18fab03de..0000000000 Binary files a/front/public/images/small/Railcraft/stair/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/40.png b/front/public/images/small/Railcraft/stair/40.png deleted file mode 100644 index 0970639a7e..0000000000 Binary files a/front/public/images/small/Railcraft/stair/40.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/41.png b/front/public/images/small/Railcraft/stair/41.png deleted file mode 100644 index 2ccdad37e6..0000000000 Binary files a/front/public/images/small/Railcraft/stair/41.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/42.png b/front/public/images/small/Railcraft/stair/42.png deleted file mode 100644 index 12eefeff65..0000000000 Binary files a/front/public/images/small/Railcraft/stair/42.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/43.png b/front/public/images/small/Railcraft/stair/43.png deleted file mode 100644 index 0c221bdcc6..0000000000 Binary files a/front/public/images/small/Railcraft/stair/43.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/5.png b/front/public/images/small/Railcraft/stair/5.png deleted file mode 100644 index 36b1d82f9f..0000000000 Binary files a/front/public/images/small/Railcraft/stair/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/6.png b/front/public/images/small/Railcraft/stair/6.png deleted file mode 100644 index 42cf7e3489..0000000000 Binary files a/front/public/images/small/Railcraft/stair/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/7.png b/front/public/images/small/Railcraft/stair/7.png deleted file mode 100644 index 25ea052f89..0000000000 Binary files a/front/public/images/small/Railcraft/stair/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/8.png b/front/public/images/small/Railcraft/stair/8.png deleted file mode 100644 index 8621e64852..0000000000 Binary files a/front/public/images/small/Railcraft/stair/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/stair/9.png b/front/public/images/small/Railcraft/stair/9.png deleted file mode 100644 index 3641abc75c..0000000000 Binary files a/front/public/images/small/Railcraft/stair/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.crowbar.magic/0.png b/front/public/images/small/Railcraft/tool.crowbar.magic/0.png deleted file mode 100644 index f7e8c9d159..0000000000 Binary files a/front/public/images/small/Railcraft/tool.crowbar.magic/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.crowbar.reinforced/0.png b/front/public/images/small/Railcraft/tool.crowbar.reinforced/0.png deleted file mode 100644 index 441a6d278d..0000000000 Binary files a/front/public/images/small/Railcraft/tool.crowbar.reinforced/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.crowbar.void/0.png b/front/public/images/small/Railcraft/tool.crowbar.void/0.png deleted file mode 100644 index 673b5538a1..0000000000 Binary files a/front/public/images/small/Railcraft/tool.crowbar.void/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.crowbar/0.png b/front/public/images/small/Railcraft/tool.crowbar/0.png deleted file mode 100644 index fdccde182c..0000000000 Binary files a/front/public/images/small/Railcraft/tool.crowbar/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.electric.meter/0.png b/front/public/images/small/Railcraft/tool.electric.meter/0.png deleted file mode 100644 index fef594587c..0000000000 Binary files a/front/public/images/small/Railcraft/tool.electric.meter/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.magnifying.glass/0.png b/front/public/images/small/Railcraft/tool.magnifying.glass/0.png deleted file mode 100644 index 31e7a9319e..0000000000 Binary files a/front/public/images/small/Railcraft/tool.magnifying.glass/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.notepad/0.png b/front/public/images/small/Railcraft/tool.notepad/0.png deleted file mode 100644 index bb82cd5684..0000000000 Binary files a/front/public/images/small/Railcraft/tool.notepad/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.signal.label/0.png b/front/public/images/small/Railcraft/tool.signal.label/0.png deleted file mode 100644 index 8b0a96c3a8..0000000000 Binary files a/front/public/images/small/Railcraft/tool.signal.label/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.signal.tuner/0.png b/front/public/images/small/Railcraft/tool.signal.tuner/0.png deleted file mode 100644 index c94ea36a97..0000000000 Binary files a/front/public/images/small/Railcraft/tool.signal.tuner/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.steel.axe/0.png b/front/public/images/small/Railcraft/tool.steel.axe/0.png deleted file mode 100644 index cf64f4a6c7..0000000000 Binary files a/front/public/images/small/Railcraft/tool.steel.axe/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.steel.hoe/0.png b/front/public/images/small/Railcraft/tool.steel.hoe/0.png deleted file mode 100644 index b912318b6a..0000000000 Binary files a/front/public/images/small/Railcraft/tool.steel.hoe/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.steel.pickaxe/0.png b/front/public/images/small/Railcraft/tool.steel.pickaxe/0.png deleted file mode 100644 index fef40b5aff..0000000000 Binary files a/front/public/images/small/Railcraft/tool.steel.pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.steel.shears/0.png b/front/public/images/small/Railcraft/tool.steel.shears/0.png deleted file mode 100644 index 8c7459af9d..0000000000 Binary files a/front/public/images/small/Railcraft/tool.steel.shears/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.steel.shovel/0.png b/front/public/images/small/Railcraft/tool.steel.shovel/0.png deleted file mode 100644 index 8edef9aa08..0000000000 Binary files a/front/public/images/small/Railcraft/tool.steel.shovel/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.steel.sword/0.png b/front/public/images/small/Railcraft/tool.steel.sword/0.png deleted file mode 100644 index d9a96a3fb1..0000000000 Binary files a/front/public/images/small/Railcraft/tool.steel.sword/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.surveyor/0.png b/front/public/images/small/Railcraft/tool.surveyor/0.png deleted file mode 100644 index 627f5f722a..0000000000 Binary files a/front/public/images/small/Railcraft/tool.surveyor/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/tool.whistle.tuner/0.png b/front/public/images/small/Railcraft/tool.whistle.tuner/0.png deleted file mode 100644 index f637a63cd2..0000000000 Binary files a/front/public/images/small/Railcraft/tool.whistle.tuner/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track.elevator/0.png b/front/public/images/small/Railcraft/track.elevator/0.png deleted file mode 100644 index 25f30d3be2..0000000000 Binary files a/front/public/images/small/Railcraft/track.elevator/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/0.png b/front/public/images/small/Railcraft/track/0.png deleted file mode 100644 index f7cc88e54a..0000000000 Binary files a/front/public/images/small/Railcraft/track/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/10488.png b/front/public/images/small/Railcraft/track/10488.png deleted file mode 100644 index 4c90fc2937..0000000000 Binary files a/front/public/images/small/Railcraft/track/10488.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/16093.png b/front/public/images/small/Railcraft/track/16093.png deleted file mode 100644 index 1a75d83a2e..0000000000 Binary files a/front/public/images/small/Railcraft/track/16093.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/19746.png b/front/public/images/small/Railcraft/track/19746.png deleted file mode 100644 index 209b237d15..0000000000 Binary files a/front/public/images/small/Railcraft/track/19746.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/19986.png b/front/public/images/small/Railcraft/track/19986.png deleted file mode 100644 index 56c6cfc824..0000000000 Binary files a/front/public/images/small/Railcraft/track/19986.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/20176.png b/front/public/images/small/Railcraft/track/20176.png deleted file mode 100644 index 10e412453c..0000000000 Binary files a/front/public/images/small/Railcraft/track/20176.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/2144.png b/front/public/images/small/Railcraft/track/2144.png deleted file mode 100644 index 8177e8e968..0000000000 Binary files a/front/public/images/small/Railcraft/track/2144.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/2264.png b/front/public/images/small/Railcraft/track/2264.png deleted file mode 100644 index 9cb21784f3..0000000000 Binary files a/front/public/images/small/Railcraft/track/2264.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/23575.png b/front/public/images/small/Railcraft/track/23575.png deleted file mode 100644 index 86e6cbd9a3..0000000000 Binary files a/front/public/images/small/Railcraft/track/23575.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/26865.png b/front/public/images/small/Railcraft/track/26865.png deleted file mode 100644 index 8b4ec788c4..0000000000 Binary files a/front/public/images/small/Railcraft/track/26865.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/30516.png b/front/public/images/small/Railcraft/track/30516.png deleted file mode 100644 index f004bc5a36..0000000000 Binary files a/front/public/images/small/Railcraft/track/30516.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/30946.png b/front/public/images/small/Railcraft/track/30946.png deleted file mode 100644 index e5855d0271..0000000000 Binary files a/front/public/images/small/Railcraft/track/30946.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/32363.png b/front/public/images/small/Railcraft/track/32363.png deleted file mode 100644 index 682b8cac41..0000000000 Binary files a/front/public/images/small/Railcraft/track/32363.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/4767.png b/front/public/images/small/Railcraft/track/4767.png deleted file mode 100644 index 6252b3a1b8..0000000000 Binary files a/front/public/images/small/Railcraft/track/4767.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/736.png b/front/public/images/small/Railcraft/track/736.png deleted file mode 100644 index 585c428422..0000000000 Binary files a/front/public/images/small/Railcraft/track/736.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/764.png b/front/public/images/small/Railcraft/track/764.png deleted file mode 100644 index 0e8600b693..0000000000 Binary files a/front/public/images/small/Railcraft/track/764.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/7916.png b/front/public/images/small/Railcraft/track/7916.png deleted file mode 100644 index 86fdd20d5d..0000000000 Binary files a/front/public/images/small/Railcraft/track/7916.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/8103.png b/front/public/images/small/Railcraft/track/8103.png deleted file mode 100644 index 8efdf85dd4..0000000000 Binary files a/front/public/images/small/Railcraft/track/8103.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/track/816.png b/front/public/images/small/Railcraft/track/816.png deleted file mode 100644 index 167df4d13c..0000000000 Binary files a/front/public/images/small/Railcraft/track/816.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/upgrade.lapotron/0.png b/front/public/images/small/Railcraft/upgrade.lapotron/0.png deleted file mode 100644 index 910ec2ab32..0000000000 Binary files a/front/public/images/small/Railcraft/upgrade.lapotron/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/0.png b/front/public/images/small/Railcraft/wall.alpha/0.png deleted file mode 100644 index 701d4c8ee3..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/1.png b/front/public/images/small/Railcraft/wall.alpha/1.png deleted file mode 100644 index 59785b43e7..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/10.png b/front/public/images/small/Railcraft/wall.alpha/10.png deleted file mode 100644 index 5fe7f1211f..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/10.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/11.png b/front/public/images/small/Railcraft/wall.alpha/11.png deleted file mode 100644 index 7d077de037..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/11.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/12.png b/front/public/images/small/Railcraft/wall.alpha/12.png deleted file mode 100644 index 0b6fdba55a..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/12.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/13.png b/front/public/images/small/Railcraft/wall.alpha/13.png deleted file mode 100644 index d91370d9f3..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/13.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/14.png b/front/public/images/small/Railcraft/wall.alpha/14.png deleted file mode 100644 index 12d0c377ce..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/14.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/15.png b/front/public/images/small/Railcraft/wall.alpha/15.png deleted file mode 100644 index 3ea04ee225..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/15.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/2.png b/front/public/images/small/Railcraft/wall.alpha/2.png deleted file mode 100644 index 11b9dd14eb..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/3.png b/front/public/images/small/Railcraft/wall.alpha/3.png deleted file mode 100644 index 039d498a94..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/4.png b/front/public/images/small/Railcraft/wall.alpha/4.png deleted file mode 100644 index 4f41af293b..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/5.png b/front/public/images/small/Railcraft/wall.alpha/5.png deleted file mode 100644 index a2e950ca10..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/6.png b/front/public/images/small/Railcraft/wall.alpha/6.png deleted file mode 100644 index 3429ff1b24..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/7.png b/front/public/images/small/Railcraft/wall.alpha/7.png deleted file mode 100644 index 9ebe5e34c9..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/8.png b/front/public/images/small/Railcraft/wall.alpha/8.png deleted file mode 100644 index 4aa62687e2..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.alpha/9.png b/front/public/images/small/Railcraft/wall.alpha/9.png deleted file mode 100644 index 2c32979e24..0000000000 Binary files a/front/public/images/small/Railcraft/wall.alpha/9.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/0.png b/front/public/images/small/Railcraft/wall.beta/0.png deleted file mode 100644 index 44419fccf6..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/0.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/1.png b/front/public/images/small/Railcraft/wall.beta/1.png deleted file mode 100644 index 8f6e9bac71..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/1.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/2.png b/front/public/images/small/Railcraft/wall.beta/2.png deleted file mode 100644 index 5c9c925436..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/2.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/3.png b/front/public/images/small/Railcraft/wall.beta/3.png deleted file mode 100644 index 2a2bad7a9c..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/3.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/4.png b/front/public/images/small/Railcraft/wall.beta/4.png deleted file mode 100644 index 79fec591b0..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/4.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/5.png b/front/public/images/small/Railcraft/wall.beta/5.png deleted file mode 100644 index 436455676b..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/5.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/6.png b/front/public/images/small/Railcraft/wall.beta/6.png deleted file mode 100644 index 57ce69002d..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/6.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/7.png b/front/public/images/small/Railcraft/wall.beta/7.png deleted file mode 100644 index 7825a2846d..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/7.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/wall.beta/8.png b/front/public/images/small/Railcraft/wall.beta/8.png deleted file mode 100644 index 17e79f0ab7..0000000000 Binary files a/front/public/images/small/Railcraft/wall.beta/8.png and /dev/null differ diff --git a/front/public/images/small/Railcraft/worldlogic/0.png b/front/public/images/small/Railcraft/worldlogic/0.png deleted file mode 100644 index e33f2faaf9..0000000000 Binary files a/front/public/images/small/Railcraft/worldlogic/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/advancedFluidDisplay/0.png b/front/public/images/small/RandomThings/advancedFluidDisplay/0.png deleted file mode 100644 index 03fc421517..0000000000 Binary files a/front/public/images/small/RandomThings/advancedFluidDisplay/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/advancedItemCollector/0.png b/front/public/images/small/RandomThings/advancedItemCollector/0.png deleted file mode 100644 index 8cc9f9ead1..0000000000 Binary files a/front/public/images/small/RandomThings/advancedItemCollector/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/bloodMoonSensor/0.png b/front/public/images/small/RandomThings/bloodMoonSensor/0.png deleted file mode 100644 index 77c6c7bbea..0000000000 Binary files a/front/public/images/small/RandomThings/bloodMoonSensor/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/bloodStone/0.png b/front/public/images/small/RandomThings/bloodStone/0.png deleted file mode 100644 index 32b4b71e0a..0000000000 Binary files a/front/public/images/small/RandomThings/bloodStone/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/creativePlayerInterface/0.png b/front/public/images/small/RandomThings/creativePlayerInterface/0.png deleted file mode 100644 index f4c75c73ed..0000000000 Binary files a/front/public/images/small/RandomThings/creativePlayerInterface/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/dropFilter/0.png b/front/public/images/small/RandomThings/dropFilter/0.png deleted file mode 100644 index 63d54ecefa..0000000000 Binary files a/front/public/images/small/RandomThings/dropFilter/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/dropFilter/1.png b/front/public/images/small/RandomThings/dropFilter/1.png deleted file mode 100644 index 235157dc7d..0000000000 Binary files a/front/public/images/small/RandomThings/dropFilter/1.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/dyeingMachine/0.png b/front/public/images/small/RandomThings/dyeingMachine/0.png deleted file mode 100644 index eb89a238c9..0000000000 Binary files a/front/public/images/small/RandomThings/dyeingMachine/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/enderEnergyDistributor/0.png b/front/public/images/small/RandomThings/enderEnergyDistributor/0.png deleted file mode 100644 index 3e2550434e..0000000000 Binary files a/front/public/images/small/RandomThings/enderEnergyDistributor/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/energyDistributor/0.png b/front/public/images/small/RandomThings/energyDistributor/0.png deleted file mode 100644 index 678868255f..0000000000 Binary files a/front/public/images/small/RandomThings/energyDistributor/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/fertilizedDirt/0.png b/front/public/images/small/RandomThings/fertilizedDirt/0.png deleted file mode 100644 index 92ba69f1a8..0000000000 Binary files a/front/public/images/small/RandomThings/fertilizedDirt/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/fertilizedDirt_tilled/0.png b/front/public/images/small/RandomThings/fertilizedDirt_tilled/0.png deleted file mode 100644 index 6d4514fd8a..0000000000 Binary files a/front/public/images/small/RandomThings/fertilizedDirt_tilled/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/filter/0.png b/front/public/images/small/RandomThings/filter/0.png deleted file mode 100644 index 4c79695d3b..0000000000 Binary files a/front/public/images/small/RandomThings/filter/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/filter/1.png b/front/public/images/small/RandomThings/filter/1.png deleted file mode 100644 index bef0a26891..0000000000 Binary files a/front/public/images/small/RandomThings/filter/1.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/filter/2.png b/front/public/images/small/RandomThings/filter/2.png deleted file mode 100644 index f6c621d351..0000000000 Binary files a/front/public/images/small/RandomThings/filter/2.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/filter/3.png b/front/public/images/small/RandomThings/filter/3.png deleted file mode 100644 index 472e217692..0000000000 Binary files a/front/public/images/small/RandomThings/filter/3.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/fluidDisplay/0.png b/front/public/images/small/RandomThings/fluidDisplay/0.png deleted file mode 100644 index d55f49d6e4..0000000000 Binary files a/front/public/images/small/RandomThings/fluidDisplay/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/imbue/0.png b/front/public/images/small/RandomThings/imbue/0.png deleted file mode 100644 index 03ce40bdf6..0000000000 Binary files a/front/public/images/small/RandomThings/imbue/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/imbue/1.png b/front/public/images/small/RandomThings/imbue/1.png deleted file mode 100644 index a5d1dcffc8..0000000000 Binary files a/front/public/images/small/RandomThings/imbue/1.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/imbue/2.png b/front/public/images/small/RandomThings/imbue/2.png deleted file mode 100644 index 1267a7361d..0000000000 Binary files a/front/public/images/small/RandomThings/imbue/2.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/imbue/3.png b/front/public/images/small/RandomThings/imbue/3.png deleted file mode 100644 index 2a9640e252..0000000000 Binary files a/front/public/images/small/RandomThings/imbue/3.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/imbue/4.png b/front/public/images/small/RandomThings/imbue/4.png deleted file mode 100644 index b3d246ffe7..0000000000 Binary files a/front/public/images/small/RandomThings/imbue/4.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/imbue/5.png b/front/public/images/small/RandomThings/imbue/5.png deleted file mode 100644 index 36a333490c..0000000000 Binary files a/front/public/images/small/RandomThings/imbue/5.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/imbuingStation/0.png b/front/public/images/small/RandomThings/imbuingStation/0.png deleted file mode 100644 index 882675a8b7..0000000000 Binary files a/front/public/images/small/RandomThings/imbuingStation/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/0.png b/front/public/images/small/RandomThings/ingredient/0.png deleted file mode 100644 index 8c8adfbb75..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/1.png b/front/public/images/small/RandomThings/ingredient/1.png deleted file mode 100644 index 3e1a91847c..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/1.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/2.png b/front/public/images/small/RandomThings/ingredient/2.png deleted file mode 100644 index 886b6f4aff..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/2.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/3.png b/front/public/images/small/RandomThings/ingredient/3.png deleted file mode 100644 index aa33182ca7..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/3.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/4.png b/front/public/images/small/RandomThings/ingredient/4.png deleted file mode 100644 index ed5da1c2fb..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/4.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/5.png b/front/public/images/small/RandomThings/ingredient/5.png deleted file mode 100644 index 8fb5d34c79..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/5.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/6.png b/front/public/images/small/RandomThings/ingredient/6.png deleted file mode 100644 index 2db0113ebf..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/6.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/ingredient/7.png b/front/public/images/small/RandomThings/ingredient/7.png deleted file mode 100644 index 3a53e072cb..0000000000 Binary files a/front/public/images/small/RandomThings/ingredient/7.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/itemCollector/0.png b/front/public/images/small/RandomThings/itemCollector/0.png deleted file mode 100644 index 7f1e27d967..0000000000 Binary files a/front/public/images/small/RandomThings/itemCollector/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/lapisLamp/0.png b/front/public/images/small/RandomThings/lapisLamp/0.png deleted file mode 100644 index b0cd1babf4..0000000000 Binary files a/front/public/images/small/RandomThings/lapisLamp/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/moonSensor/0.png b/front/public/images/small/RandomThings/moonSensor/0.png deleted file mode 100644 index c4a2b0fdea..0000000000 Binary files a/front/public/images/small/RandomThings/moonSensor/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/notificationInterface/0.png b/front/public/images/small/RandomThings/notificationInterface/0.png deleted file mode 100644 index 103c133cfb..0000000000 Binary files a/front/public/images/small/RandomThings/notificationInterface/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/onlineDetector/0.png b/front/public/images/small/RandomThings/onlineDetector/0.png deleted file mode 100644 index 895f2c0677..0000000000 Binary files a/front/public/images/small/RandomThings/onlineDetector/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/opSpectreKey/0.png b/front/public/images/small/RandomThings/opSpectreKey/0.png deleted file mode 100644 index 2dd5c29cb0..0000000000 Binary files a/front/public/images/small/RandomThings/opSpectreKey/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/playerinterface/0.png b/front/public/images/small/RandomThings/playerinterface/0.png deleted file mode 100644 index e3190a089f..0000000000 Binary files a/front/public/images/small/RandomThings/playerinterface/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/0.png b/front/public/images/small/RandomThings/spectreBlock/0.png deleted file mode 100644 index 6c70b81bd5..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/1.png b/front/public/images/small/RandomThings/spectreBlock/1.png deleted file mode 100644 index 4f8f7791a6..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/1.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/10.png b/front/public/images/small/RandomThings/spectreBlock/10.png deleted file mode 100644 index 182329ec3d..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/10.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/11.png b/front/public/images/small/RandomThings/spectreBlock/11.png deleted file mode 100644 index e024d746d9..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/11.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/12.png b/front/public/images/small/RandomThings/spectreBlock/12.png deleted file mode 100644 index 631c3ebea1..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/12.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/13.png b/front/public/images/small/RandomThings/spectreBlock/13.png deleted file mode 100644 index c16a867f37..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/13.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/14.png b/front/public/images/small/RandomThings/spectreBlock/14.png deleted file mode 100644 index eca08fe57f..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/14.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/15.png b/front/public/images/small/RandomThings/spectreBlock/15.png deleted file mode 100644 index 4d8d598181..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/15.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/2.png b/front/public/images/small/RandomThings/spectreBlock/2.png deleted file mode 100644 index 1f1ca04083..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/2.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/3.png b/front/public/images/small/RandomThings/spectreBlock/3.png deleted file mode 100644 index db14d6e573..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/3.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/4.png b/front/public/images/small/RandomThings/spectreBlock/4.png deleted file mode 100644 index 2f9e4919e3..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/4.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/5.png b/front/public/images/small/RandomThings/spectreBlock/5.png deleted file mode 100644 index a14e446241..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/5.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/6.png b/front/public/images/small/RandomThings/spectreBlock/6.png deleted file mode 100644 index f4e4c81d27..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/6.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/7.png b/front/public/images/small/RandomThings/spectreBlock/7.png deleted file mode 100644 index 03f3c07a08..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/7.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/8.png b/front/public/images/small/RandomThings/spectreBlock/8.png deleted file mode 100644 index d523160316..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/8.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBlock/9.png b/front/public/images/small/RandomThings/spectreBlock/9.png deleted file mode 100644 index 7c765a2aa3..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBlock/9.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreBoots/0.png b/front/public/images/small/RandomThings/spectreBoots/0.png deleted file mode 100644 index ae618a4e1f..0000000000 Binary files a/front/public/images/small/RandomThings/spectreBoots/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreChestplate/0.png b/front/public/images/small/RandomThings/spectreChestplate/0.png deleted file mode 100644 index 7b717702cb..0000000000 Binary files a/front/public/images/small/RandomThings/spectreChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreGlass/0.png b/front/public/images/small/RandomThings/spectreGlass/0.png deleted file mode 100644 index cd60f9e4f7..0000000000 Binary files a/front/public/images/small/RandomThings/spectreGlass/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreHelmet/0.png b/front/public/images/small/RandomThings/spectreHelmet/0.png deleted file mode 100644 index 2f1b9527a0..0000000000 Binary files a/front/public/images/small/RandomThings/spectreHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreKey/0.png b/front/public/images/small/RandomThings/spectreKey/0.png deleted file mode 100644 index 93fe42f36d..0000000000 Binary files a/front/public/images/small/RandomThings/spectreKey/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreLeggings/0.png b/front/public/images/small/RandomThings/spectreLeggings/0.png deleted file mode 100644 index 8eab35f0f2..0000000000 Binary files a/front/public/images/small/RandomThings/spectreLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/spectreSword/0.png b/front/public/images/small/RandomThings/spectreSword/0.png deleted file mode 100644 index 26d9494bd3..0000000000 Binary files a/front/public/images/small/RandomThings/spectreSword/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/voidStone/0.png b/front/public/images/small/RandomThings/voidStone/0.png deleted file mode 100644 index 54f361fddb..0000000000 Binary files a/front/public/images/small/RandomThings/voidStone/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/whitestone/0.png b/front/public/images/small/RandomThings/whitestone/0.png deleted file mode 100644 index f74d65accc..0000000000 Binary files a/front/public/images/small/RandomThings/whitestone/0.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/whitestone/1.png b/front/public/images/small/RandomThings/whitestone/1.png deleted file mode 100644 index e07a35ee72..0000000000 Binary files a/front/public/images/small/RandomThings/whitestone/1.png and /dev/null differ diff --git a/front/public/images/small/RandomThings/wirelessLever/0.png b/front/public/images/small/RandomThings/wirelessLever/0.png deleted file mode 100644 index 395551fea3..0000000000 Binary files a/front/public/images/small/RandomThings/wirelessLever/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/ic2Capacitor/0.png b/front/public/images/small/SGCraft/ic2Capacitor/0.png deleted file mode 100644 index aa9af931dd..0000000000 Binary files a/front/public/images/small/SGCraft/ic2Capacitor/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/ic2PowerUnit/0.png b/front/public/images/small/SGCraft/ic2PowerUnit/0.png deleted file mode 100644 index 4bb1865774..0000000000 Binary files a/front/public/images/small/SGCraft/ic2PowerUnit/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/naquadah/0.png b/front/public/images/small/SGCraft/naquadah/0.png deleted file mode 100644 index 8c92f96c9c..0000000000 Binary files a/front/public/images/small/SGCraft/naquadah/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/naquadahBlock/0.png b/front/public/images/small/SGCraft/naquadahBlock/0.png deleted file mode 100644 index 3f23ee2357..0000000000 Binary files a/front/public/images/small/SGCraft/naquadahBlock/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/naquadahIngot/0.png b/front/public/images/small/SGCraft/naquadahIngot/0.png deleted file mode 100644 index 64484f6f20..0000000000 Binary files a/front/public/images/small/SGCraft/naquadahIngot/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/naquadahOre/0.png b/front/public/images/small/SGCraft/naquadahOre/0.png deleted file mode 100644 index b74f74330f..0000000000 Binary files a/front/public/images/small/SGCraft/naquadahOre/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/ocInterface/0.png b/front/public/images/small/SGCraft/ocInterface/0.png deleted file mode 100644 index bb1989344f..0000000000 Binary files a/front/public/images/small/SGCraft/ocInterface/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/rfPowerUnit/0.png b/front/public/images/small/SGCraft/rfPowerUnit/0.png deleted file mode 100644 index 92fa6a0de0..0000000000 Binary files a/front/public/images/small/SGCraft/rfPowerUnit/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/sgChevronUpgrade/0.png b/front/public/images/small/SGCraft/sgChevronUpgrade/0.png deleted file mode 100644 index 2b25746afa..0000000000 Binary files a/front/public/images/small/SGCraft/sgChevronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/sgControllerCrystal/0.png b/front/public/images/small/SGCraft/sgControllerCrystal/0.png deleted file mode 100644 index ee3d0465e5..0000000000 Binary files a/front/public/images/small/SGCraft/sgControllerCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/sgCoreCrystal/0.png b/front/public/images/small/SGCraft/sgCoreCrystal/0.png deleted file mode 100644 index cd0e2d1cb4..0000000000 Binary files a/front/public/images/small/SGCraft/sgCoreCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/sgIrisBlade/0.png b/front/public/images/small/SGCraft/sgIrisBlade/0.png deleted file mode 100644 index 8c38c38f51..0000000000 Binary files a/front/public/images/small/SGCraft/sgIrisBlade/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/sgIrisUpgrade/0.png b/front/public/images/small/SGCraft/sgIrisUpgrade/0.png deleted file mode 100644 index 0f25e82788..0000000000 Binary files a/front/public/images/small/SGCraft/sgIrisUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/stargateBase/0.png b/front/public/images/small/SGCraft/stargateBase/0.png deleted file mode 100644 index 4decbc5cbd..0000000000 Binary files a/front/public/images/small/SGCraft/stargateBase/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/stargateController/0.png b/front/public/images/small/SGCraft/stargateController/0.png deleted file mode 100644 index 119e38e7d4..0000000000 Binary files a/front/public/images/small/SGCraft/stargateController/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/stargateRing/0.png b/front/public/images/small/SGCraft/stargateRing/0.png deleted file mode 100644 index b34c82e36c..0000000000 Binary files a/front/public/images/small/SGCraft/stargateRing/0.png and /dev/null differ diff --git a/front/public/images/small/SGCraft/stargateRing/1.png b/front/public/images/small/SGCraft/stargateRing/1.png deleted file mode 100644 index 48d6343f52..0000000000 Binary files a/front/public/images/small/SGCraft/stargateRing/1.png and /dev/null differ diff --git a/front/public/images/small/SpiceOfLife/bookfoodjournal/0.png b/front/public/images/small/SpiceOfLife/bookfoodjournal/0.png deleted file mode 100644 index 4873c095f0..0000000000 Binary files a/front/public/images/small/SpiceOfLife/bookfoodjournal/0.png and /dev/null differ diff --git a/front/public/images/small/SpiceOfLife/lunchbag/0.png b/front/public/images/small/SpiceOfLife/lunchbag/0.png deleted file mode 100644 index 1c25930a4c..0000000000 Binary files a/front/public/images/small/SpiceOfLife/lunchbag/0.png and /dev/null differ diff --git a/front/public/images/small/SpiceOfLife/lunchbox/0.png b/front/public/images/small/SpiceOfLife/lunchbox/0.png deleted file mode 100644 index 468738642d..0000000000 Binary files a/front/public/images/small/SpiceOfLife/lunchbox/0.png and /dev/null differ diff --git a/front/public/images/small/StevesAddons/cable_ae/0.png b/front/public/images/small/StevesAddons/cable_ae/0.png deleted file mode 100644 index c2b5f29794..0000000000 Binary files a/front/public/images/small/StevesAddons/cable_ae/0.png and /dev/null differ diff --git a/front/public/images/small/StevesAddons/cable_rf/0.png b/front/public/images/small/StevesAddons/cable_rf/0.png deleted file mode 100644 index 8e3bc8129d..0000000000 Binary files a/front/public/images/small/StevesAddons/cable_rf/0.png and /dev/null differ diff --git a/front/public/images/small/StevesAddons/duplicator/0.png b/front/public/images/small/StevesAddons/duplicator/0.png deleted file mode 100644 index b7cc996e13..0000000000 Binary files a/front/public/images/small/StevesAddons/duplicator/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockActivator/0.png b/front/public/images/small/StevesCarts/BlockActivator/0.png deleted file mode 100644 index beec40327a..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockActivator/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockAdvDetector/0.png b/front/public/images/small/StevesCarts/BlockAdvDetector/0.png deleted file mode 100644 index 119c66efba..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockAdvDetector/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockCargoManager/0.png b/front/public/images/small/StevesCarts/BlockCargoManager/0.png deleted file mode 100644 index 73bc5bf05d..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockCargoManager/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockCartAssembler/0.png b/front/public/images/small/StevesCarts/BlockCartAssembler/0.png deleted file mode 100644 index 3cbae62587..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockCartAssembler/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockDetector/0.png b/front/public/images/small/StevesCarts/BlockDetector/0.png deleted file mode 100644 index 7a252cbbd7..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockDetector/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockDetector/1.png b/front/public/images/small/StevesCarts/BlockDetector/1.png deleted file mode 100644 index c9dce1422b..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockDetector/1.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockDetector/2.png b/front/public/images/small/StevesCarts/BlockDetector/2.png deleted file mode 100644 index f7d0c7933b..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockDetector/2.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockDetector/3.png b/front/public/images/small/StevesCarts/BlockDetector/3.png deleted file mode 100644 index 806499dc09..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockDetector/3.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockDetector/4.png b/front/public/images/small/StevesCarts/BlockDetector/4.png deleted file mode 100644 index ca00e23407..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockDetector/4.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockDistributor/0.png b/front/public/images/small/StevesCarts/BlockDistributor/0.png deleted file mode 100644 index cafeb20b67..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockDistributor/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockJunction/0.png b/front/public/images/small/StevesCarts/BlockJunction/0.png deleted file mode 100644 index a77a823ff5..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockJunction/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockLiquidManager/0.png b/front/public/images/small/StevesCarts/BlockLiquidManager/0.png deleted file mode 100644 index 83472c57e4..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockLiquidManager/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockMetalStorage/0.png b/front/public/images/small/StevesCarts/BlockMetalStorage/0.png deleted file mode 100644 index 891bea0bc2..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockMetalStorage/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockMetalStorage/1.png b/front/public/images/small/StevesCarts/BlockMetalStorage/1.png deleted file mode 100644 index a3db0d9537..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockMetalStorage/1.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/BlockMetalStorage/2.png b/front/public/images/small/StevesCarts/BlockMetalStorage/2.png deleted file mode 100644 index 5cd4a2c4ed..0000000000 Binary files a/front/public/images/small/StevesCarts/BlockMetalStorage/2.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/0.png b/front/public/images/small/StevesCarts/CartModule/0.png deleted file mode 100644 index d8c6181c2a..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/1.png b/front/public/images/small/StevesCarts/CartModule/1.png deleted file mode 100644 index 28682bba05..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/1.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/10.png b/front/public/images/small/StevesCarts/CartModule/10.png deleted file mode 100644 index 04528f5874..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/10.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/101.png b/front/public/images/small/StevesCarts/CartModule/101.png deleted file mode 100644 index de43353314..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/101.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/11.png b/front/public/images/small/StevesCarts/CartModule/11.png deleted file mode 100644 index 3244cc8804..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/11.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/12.png b/front/public/images/small/StevesCarts/CartModule/12.png deleted file mode 100644 index 781476154d..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/12.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/13.png b/front/public/images/small/StevesCarts/CartModule/13.png deleted file mode 100644 index b78e2d8f91..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/13.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/14.png b/front/public/images/small/StevesCarts/CartModule/14.png deleted file mode 100644 index f7f5910037..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/14.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/15.png b/front/public/images/small/StevesCarts/CartModule/15.png deleted file mode 100644 index a809f15bda..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/15.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/16.png b/front/public/images/small/StevesCarts/CartModule/16.png deleted file mode 100644 index cd7e5a7f07..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/16.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/18.png b/front/public/images/small/StevesCarts/CartModule/18.png deleted file mode 100644 index 5e614bd2d7..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/18.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/19.png b/front/public/images/small/StevesCarts/CartModule/19.png deleted file mode 100644 index 2dd6a14b2e..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/19.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/2.png b/front/public/images/small/StevesCarts/CartModule/2.png deleted file mode 100644 index 6d50406140..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/2.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/20.png b/front/public/images/small/StevesCarts/CartModule/20.png deleted file mode 100644 index d3f7b3f391..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/20.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/21.png b/front/public/images/small/StevesCarts/CartModule/21.png deleted file mode 100644 index bde758dff7..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/21.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/22.png b/front/public/images/small/StevesCarts/CartModule/22.png deleted file mode 100644 index 92a05e1330..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/22.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/23.png b/front/public/images/small/StevesCarts/CartModule/23.png deleted file mode 100644 index b177476066..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/23.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/24.png b/front/public/images/small/StevesCarts/CartModule/24.png deleted file mode 100644 index 3b7a055671..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/24.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/25.png b/front/public/images/small/StevesCarts/CartModule/25.png deleted file mode 100644 index c4976a67f5..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/25.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/26.png b/front/public/images/small/StevesCarts/CartModule/26.png deleted file mode 100644 index 14024157d4..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/26.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/27.png b/front/public/images/small/StevesCarts/CartModule/27.png deleted file mode 100644 index 84956b4f55..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/27.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/28.png b/front/public/images/small/StevesCarts/CartModule/28.png deleted file mode 100644 index b6a6801bfe..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/28.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/29.png b/front/public/images/small/StevesCarts/CartModule/29.png deleted file mode 100644 index 5d5815e3fd..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/29.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/3.png b/front/public/images/small/StevesCarts/CartModule/3.png deleted file mode 100644 index f70070d0c3..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/3.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/30.png b/front/public/images/small/StevesCarts/CartModule/30.png deleted file mode 100644 index 23eed5593f..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/30.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/31.png b/front/public/images/small/StevesCarts/CartModule/31.png deleted file mode 100644 index 0907266d85..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/31.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/32.png b/front/public/images/small/StevesCarts/CartModule/32.png deleted file mode 100644 index 3292dfc72f..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/32.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/33.png b/front/public/images/small/StevesCarts/CartModule/33.png deleted file mode 100644 index 33e0e96cdc..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/33.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/34.png b/front/public/images/small/StevesCarts/CartModule/34.png deleted file mode 100644 index 7b4b8128c0..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/34.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/36.png b/front/public/images/small/StevesCarts/CartModule/36.png deleted file mode 100644 index 4277ce8cca..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/36.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/37.png b/front/public/images/small/StevesCarts/CartModule/37.png deleted file mode 100644 index c393a57774..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/37.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/38.png b/front/public/images/small/StevesCarts/CartModule/38.png deleted file mode 100644 index 2e7f179070..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/38.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/39.png b/front/public/images/small/StevesCarts/CartModule/39.png deleted file mode 100644 index 3a6cce6669..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/39.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/4.png b/front/public/images/small/StevesCarts/CartModule/4.png deleted file mode 100644 index 78a9a43335..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/4.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/40.png b/front/public/images/small/StevesCarts/CartModule/40.png deleted file mode 100644 index 68e71c8c2b..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/40.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/41.png b/front/public/images/small/StevesCarts/CartModule/41.png deleted file mode 100644 index 53546e0b1e..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/41.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/42.png b/front/public/images/small/StevesCarts/CartModule/42.png deleted file mode 100644 index b739bd70af..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/42.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/43.png b/front/public/images/small/StevesCarts/CartModule/43.png deleted file mode 100644 index 1433f585c5..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/43.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/44.png b/front/public/images/small/StevesCarts/CartModule/44.png deleted file mode 100644 index 7e67bb2aee..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/44.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/45.png b/front/public/images/small/StevesCarts/CartModule/45.png deleted file mode 100644 index 221e3a0fa6..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/45.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/49.png b/front/public/images/small/StevesCarts/CartModule/49.png deleted file mode 100644 index 93341ffa1f..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/49.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/5.png b/front/public/images/small/StevesCarts/CartModule/5.png deleted file mode 100644 index 4ff8a56399..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/5.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/51.png b/front/public/images/small/StevesCarts/CartModule/51.png deleted file mode 100644 index b5addaeddb..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/51.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/53.png b/front/public/images/small/StevesCarts/CartModule/53.png deleted file mode 100644 index 69c71dcda7..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/53.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/56.png b/front/public/images/small/StevesCarts/CartModule/56.png deleted file mode 100644 index 3a64dfc474..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/56.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/57.png b/front/public/images/small/StevesCarts/CartModule/57.png deleted file mode 100644 index 007f95ad23..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/57.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/58.png b/front/public/images/small/StevesCarts/CartModule/58.png deleted file mode 100644 index 65d246ad3c..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/58.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/59.png b/front/public/images/small/StevesCarts/CartModule/59.png deleted file mode 100644 index 0bea7fc21e..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/59.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/6.png b/front/public/images/small/StevesCarts/CartModule/6.png deleted file mode 100644 index fe9f21d073..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/6.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/61.png b/front/public/images/small/StevesCarts/CartModule/61.png deleted file mode 100644 index 8e4d0e9c88..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/61.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/62.png b/front/public/images/small/StevesCarts/CartModule/62.png deleted file mode 100644 index 39834fe4ea..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/62.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/63.png b/front/public/images/small/StevesCarts/CartModule/63.png deleted file mode 100644 index 4527e8c872..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/63.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/64.png b/front/public/images/small/StevesCarts/CartModule/64.png deleted file mode 100644 index ac447f2c68..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/64.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/65.png b/front/public/images/small/StevesCarts/CartModule/65.png deleted file mode 100644 index a06b883ca8..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/65.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/66.png b/front/public/images/small/StevesCarts/CartModule/66.png deleted file mode 100644 index 01a57599a5..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/66.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/67.png b/front/public/images/small/StevesCarts/CartModule/67.png deleted file mode 100644 index d120a258ae..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/67.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/68.png b/front/public/images/small/StevesCarts/CartModule/68.png deleted file mode 100644 index 72f829dea6..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/68.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/69.png b/front/public/images/small/StevesCarts/CartModule/69.png deleted file mode 100644 index 4c0f13685f..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/69.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/7.png b/front/public/images/small/StevesCarts/CartModule/7.png deleted file mode 100644 index 5497948d07..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/7.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/70.png b/front/public/images/small/StevesCarts/CartModule/70.png deleted file mode 100644 index 045ea13feb..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/70.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/71.png b/front/public/images/small/StevesCarts/CartModule/71.png deleted file mode 100644 index d4858f88b0..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/71.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/72.png b/front/public/images/small/StevesCarts/CartModule/72.png deleted file mode 100644 index 5456c423bf..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/72.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/73.png b/front/public/images/small/StevesCarts/CartModule/73.png deleted file mode 100644 index 5ecf53ab65..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/73.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/75.png b/front/public/images/small/StevesCarts/CartModule/75.png deleted file mode 100644 index 8da1951704..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/75.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/76.png b/front/public/images/small/StevesCarts/CartModule/76.png deleted file mode 100644 index 05de132e9d..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/76.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/77.png b/front/public/images/small/StevesCarts/CartModule/77.png deleted file mode 100644 index f81eaf77f5..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/77.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/78.png b/front/public/images/small/StevesCarts/CartModule/78.png deleted file mode 100644 index 91132dc469..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/78.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/79.png b/front/public/images/small/StevesCarts/CartModule/79.png deleted file mode 100644 index 230f787589..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/79.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/8.png b/front/public/images/small/StevesCarts/CartModule/8.png deleted file mode 100644 index 49c3f0f0ee..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/8.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/80.png b/front/public/images/small/StevesCarts/CartModule/80.png deleted file mode 100644 index 47e5eb9443..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/80.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/81.png b/front/public/images/small/StevesCarts/CartModule/81.png deleted file mode 100644 index cf44e8876d..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/81.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/82.png b/front/public/images/small/StevesCarts/CartModule/82.png deleted file mode 100644 index b2aaa82fff..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/82.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/83.png b/front/public/images/small/StevesCarts/CartModule/83.png deleted file mode 100644 index 4ea93c8897..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/83.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/84.png b/front/public/images/small/StevesCarts/CartModule/84.png deleted file mode 100644 index d584cf8176..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/84.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/85.png b/front/public/images/small/StevesCarts/CartModule/85.png deleted file mode 100644 index 8a3d05b21a..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/85.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/86.png b/front/public/images/small/StevesCarts/CartModule/86.png deleted file mode 100644 index e4896f3677..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/86.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/87.png b/front/public/images/small/StevesCarts/CartModule/87.png deleted file mode 100644 index 5f93e4c0d1..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/87.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/88.png b/front/public/images/small/StevesCarts/CartModule/88.png deleted file mode 100644 index deda4103ae..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/88.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/89.png b/front/public/images/small/StevesCarts/CartModule/89.png deleted file mode 100644 index 095cdab363..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/89.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/9.png b/front/public/images/small/StevesCarts/CartModule/9.png deleted file mode 100644 index 0db7497802..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/9.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/91.png b/front/public/images/small/StevesCarts/CartModule/91.png deleted file mode 100644 index 6a01f61d40..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/91.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/92.png b/front/public/images/small/StevesCarts/CartModule/92.png deleted file mode 100644 index da7e3b3555..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/92.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/93.png b/front/public/images/small/StevesCarts/CartModule/93.png deleted file mode 100644 index ab8c86a5cc..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/93.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/94.png b/front/public/images/small/StevesCarts/CartModule/94.png deleted file mode 100644 index 1a3d05faba..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/94.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/95.png b/front/public/images/small/StevesCarts/CartModule/95.png deleted file mode 100644 index 95d0c18abf..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/95.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/96.png b/front/public/images/small/StevesCarts/CartModule/96.png deleted file mode 100644 index 1ae98bef6b..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/96.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/97.png b/front/public/images/small/StevesCarts/CartModule/97.png deleted file mode 100644 index a87779d0f9..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/97.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/CartModule/99.png b/front/public/images/small/StevesCarts/CartModule/99.png deleted file mode 100644 index 936a556592..0000000000 Binary files a/front/public/images/small/StevesCarts/CartModule/99.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModularCart/0.png b/front/public/images/small/StevesCarts/ModularCart/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/StevesCarts/ModularCart/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/0.png b/front/public/images/small/StevesCarts/ModuleComponents/0.png deleted file mode 100644 index d172f99b79..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/1.png b/front/public/images/small/StevesCarts/ModuleComponents/1.png deleted file mode 100644 index a74a673cbf..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/1.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/10.png b/front/public/images/small/StevesCarts/ModuleComponents/10.png deleted file mode 100644 index 99dca2a3c3..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/10.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/11.png b/front/public/images/small/StevesCarts/ModuleComponents/11.png deleted file mode 100644 index 4ad238caa5..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/11.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/12.png b/front/public/images/small/StevesCarts/ModuleComponents/12.png deleted file mode 100644 index 9401fbeb57..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/12.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/13.png b/front/public/images/small/StevesCarts/ModuleComponents/13.png deleted file mode 100644 index 1d5e81cc5d..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/13.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/14.png b/front/public/images/small/StevesCarts/ModuleComponents/14.png deleted file mode 100644 index 9074d6172c..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/14.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/15.png b/front/public/images/small/StevesCarts/ModuleComponents/15.png deleted file mode 100644 index 1f62b0bb43..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/15.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/16.png b/front/public/images/small/StevesCarts/ModuleComponents/16.png deleted file mode 100644 index 8329a67688..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/16.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/17.png b/front/public/images/small/StevesCarts/ModuleComponents/17.png deleted file mode 100644 index ca772e7ec3..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/17.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/18.png b/front/public/images/small/StevesCarts/ModuleComponents/18.png deleted file mode 100644 index 2b300c501e..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/18.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/19.png b/front/public/images/small/StevesCarts/ModuleComponents/19.png deleted file mode 100644 index 90c6ec4352..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/19.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/2.png b/front/public/images/small/StevesCarts/ModuleComponents/2.png deleted file mode 100644 index 1b4d2f7515..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/2.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/20.png b/front/public/images/small/StevesCarts/ModuleComponents/20.png deleted file mode 100644 index 50f28a0867..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/20.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/21.png b/front/public/images/small/StevesCarts/ModuleComponents/21.png deleted file mode 100644 index a2f45bb798..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/21.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/22.png b/front/public/images/small/StevesCarts/ModuleComponents/22.png deleted file mode 100644 index 5fa509f322..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/22.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/23.png b/front/public/images/small/StevesCarts/ModuleComponents/23.png deleted file mode 100644 index d2c236a4cd..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/23.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/24.png b/front/public/images/small/StevesCarts/ModuleComponents/24.png deleted file mode 100644 index 2572483a7b..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/24.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/25.png b/front/public/images/small/StevesCarts/ModuleComponents/25.png deleted file mode 100644 index 2c597731b1..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/25.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/26.png b/front/public/images/small/StevesCarts/ModuleComponents/26.png deleted file mode 100644 index 788f398432..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/26.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/27.png b/front/public/images/small/StevesCarts/ModuleComponents/27.png deleted file mode 100644 index 4f6dd80c24..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/27.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/28.png b/front/public/images/small/StevesCarts/ModuleComponents/28.png deleted file mode 100644 index 882b208c22..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/28.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/29.png b/front/public/images/small/StevesCarts/ModuleComponents/29.png deleted file mode 100644 index e41657bca4..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/29.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/3.png b/front/public/images/small/StevesCarts/ModuleComponents/3.png deleted file mode 100644 index 2d14ac2cd4..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/3.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/30.png b/front/public/images/small/StevesCarts/ModuleComponents/30.png deleted file mode 100644 index c57b099b53..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/30.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/31.png b/front/public/images/small/StevesCarts/ModuleComponents/31.png deleted file mode 100644 index 20a9af7702..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/31.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/32.png b/front/public/images/small/StevesCarts/ModuleComponents/32.png deleted file mode 100644 index 99382f7965..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/32.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/33.png b/front/public/images/small/StevesCarts/ModuleComponents/33.png deleted file mode 100644 index 6fdc0e9c08..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/33.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/34.png b/front/public/images/small/StevesCarts/ModuleComponents/34.png deleted file mode 100644 index cffa967949..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/34.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/35.png b/front/public/images/small/StevesCarts/ModuleComponents/35.png deleted file mode 100644 index 3b83158c7e..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/35.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/36.png b/front/public/images/small/StevesCarts/ModuleComponents/36.png deleted file mode 100644 index 55cbf71e43..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/36.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/37.png b/front/public/images/small/StevesCarts/ModuleComponents/37.png deleted file mode 100644 index ebb6a9c035..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/37.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/38.png b/front/public/images/small/StevesCarts/ModuleComponents/38.png deleted file mode 100644 index e4cdb7bc0b..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/38.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/39.png b/front/public/images/small/StevesCarts/ModuleComponents/39.png deleted file mode 100644 index 7b49f921d8..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/39.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/4.png b/front/public/images/small/StevesCarts/ModuleComponents/4.png deleted file mode 100644 index 7278d89b60..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/4.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/40.png b/front/public/images/small/StevesCarts/ModuleComponents/40.png deleted file mode 100644 index e548737ebd..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/40.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/41.png b/front/public/images/small/StevesCarts/ModuleComponents/41.png deleted file mode 100644 index 42aeccd0b4..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/41.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/42.png b/front/public/images/small/StevesCarts/ModuleComponents/42.png deleted file mode 100644 index fda23b655a..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/42.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/43.png b/front/public/images/small/StevesCarts/ModuleComponents/43.png deleted file mode 100644 index bfaa9eedf8..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/43.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/44.png b/front/public/images/small/StevesCarts/ModuleComponents/44.png deleted file mode 100644 index 5216218810..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/44.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/45.png b/front/public/images/small/StevesCarts/ModuleComponents/45.png deleted file mode 100644 index 3acb32499e..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/45.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/46.png b/front/public/images/small/StevesCarts/ModuleComponents/46.png deleted file mode 100644 index 000b26e720..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/46.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/47.png b/front/public/images/small/StevesCarts/ModuleComponents/47.png deleted file mode 100644 index f10a8ae223..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/47.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/48.png b/front/public/images/small/StevesCarts/ModuleComponents/48.png deleted file mode 100644 index 4bc3d4a9ff..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/48.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/49.png b/front/public/images/small/StevesCarts/ModuleComponents/49.png deleted file mode 100644 index 377b786633..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/49.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/5.png b/front/public/images/small/StevesCarts/ModuleComponents/5.png deleted file mode 100644 index bf59f627d7..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/5.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/58.png b/front/public/images/small/StevesCarts/ModuleComponents/58.png deleted file mode 100644 index 1c37d57fd8..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/58.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/59.png b/front/public/images/small/StevesCarts/ModuleComponents/59.png deleted file mode 100644 index 2b24222e21..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/59.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/6.png b/front/public/images/small/StevesCarts/ModuleComponents/6.png deleted file mode 100644 index be4ad6ea91..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/6.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/60.png b/front/public/images/small/StevesCarts/ModuleComponents/60.png deleted file mode 100644 index a16bdb5e88..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/60.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/61.png b/front/public/images/small/StevesCarts/ModuleComponents/61.png deleted file mode 100644 index f629013c8c..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/61.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/62.png b/front/public/images/small/StevesCarts/ModuleComponents/62.png deleted file mode 100644 index af97b5f62f..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/62.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/63.png b/front/public/images/small/StevesCarts/ModuleComponents/63.png deleted file mode 100644 index 6c8ac28991..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/63.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/64.png b/front/public/images/small/StevesCarts/ModuleComponents/64.png deleted file mode 100644 index bba913e030..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/64.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/65.png b/front/public/images/small/StevesCarts/ModuleComponents/65.png deleted file mode 100644 index 72b44d9488..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/65.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/80.png b/front/public/images/small/StevesCarts/ModuleComponents/80.png deleted file mode 100644 index 6cf849999d..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/80.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/81.png b/front/public/images/small/StevesCarts/ModuleComponents/81.png deleted file mode 100644 index 0a260e8c0a..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/81.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/82.png b/front/public/images/small/StevesCarts/ModuleComponents/82.png deleted file mode 100644 index 34bc71f6c2..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/82.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/83.png b/front/public/images/small/StevesCarts/ModuleComponents/83.png deleted file mode 100644 index 25c09bdd7a..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/83.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/84.png b/front/public/images/small/StevesCarts/ModuleComponents/84.png deleted file mode 100644 index 3ee8356bc2..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/84.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/ModuleComponents/9.png b/front/public/images/small/StevesCarts/ModuleComponents/9.png deleted file mode 100644 index 3b97853414..0000000000 Binary files a/front/public/images/small/StevesCarts/ModuleComponents/9.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/0.png b/front/public/images/small/StevesCarts/upgrade/0.png deleted file mode 100644 index 069b047327..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/0.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/1.png b/front/public/images/small/StevesCarts/upgrade/1.png deleted file mode 100644 index a102dd1870..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/1.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/10.png b/front/public/images/small/StevesCarts/upgrade/10.png deleted file mode 100644 index 3f57181388..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/10.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/11.png b/front/public/images/small/StevesCarts/upgrade/11.png deleted file mode 100644 index 1b27143f7e..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/11.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/12.png b/front/public/images/small/StevesCarts/upgrade/12.png deleted file mode 100644 index 35c64167e2..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/12.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/13.png b/front/public/images/small/StevesCarts/upgrade/13.png deleted file mode 100644 index 8a542fdef8..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/13.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/14.png b/front/public/images/small/StevesCarts/upgrade/14.png deleted file mode 100644 index 90b53e02a0..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/14.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/15.png b/front/public/images/small/StevesCarts/upgrade/15.png deleted file mode 100644 index 4c3c3af516..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/15.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/16.png b/front/public/images/small/StevesCarts/upgrade/16.png deleted file mode 100644 index d260e06fe5..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/16.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/17.png b/front/public/images/small/StevesCarts/upgrade/17.png deleted file mode 100644 index b49310ce9e..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/17.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/18.png b/front/public/images/small/StevesCarts/upgrade/18.png deleted file mode 100644 index 0bdcb46a4a..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/18.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/19.png b/front/public/images/small/StevesCarts/upgrade/19.png deleted file mode 100644 index bdc4aabde4..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/19.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/2.png b/front/public/images/small/StevesCarts/upgrade/2.png deleted file mode 100644 index 199563f304..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/2.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/3.png b/front/public/images/small/StevesCarts/upgrade/3.png deleted file mode 100644 index a91c4d5591..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/3.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/4.png b/front/public/images/small/StevesCarts/upgrade/4.png deleted file mode 100644 index 98f4c5be91..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/4.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/5.png b/front/public/images/small/StevesCarts/upgrade/5.png deleted file mode 100644 index dcca4d23d7..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/5.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/6.png b/front/public/images/small/StevesCarts/upgrade/6.png deleted file mode 100644 index 716f063124..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/6.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/7.png b/front/public/images/small/StevesCarts/upgrade/7.png deleted file mode 100644 index 872f106c8b..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/7.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/8.png b/front/public/images/small/StevesCarts/upgrade/8.png deleted file mode 100644 index 7dfd7d4f5d..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/8.png and /dev/null differ diff --git a/front/public/images/small/StevesCarts/upgrade/9.png b/front/public/images/small/StevesCarts/upgrade/9.png deleted file mode 100644 index 241f5d6596..0000000000 Binary files a/front/public/images/small/StevesCarts/upgrade/9.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableBUDName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableBUDName/0.png deleted file mode 100644 index f3e6a5fd50..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableBUDName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableBreakerName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableBreakerName/0.png deleted file mode 100644 index ba55894437..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableBreakerName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/0.png deleted file mode 100644 index 0213676cd8..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/1.png b/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/1.png deleted file mode 100644 index 1348da2644..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/1.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/2.png b/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/2.png deleted file mode 100644 index 5d61242a36..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableCamouflageName/2.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableClusterName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableClusterName/0.png deleted file mode 100644 index 19cedcbd12..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableClusterName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableClusterName/8.png b/front/public/images/small/StevesFactoryManager/BlockCableClusterName/8.png deleted file mode 100644 index 27cbb4cbac..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableClusterName/8.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableCreativeName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableCreativeName/0.png deleted file mode 100644 index 5f2e11e8da..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableCreativeName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableInputName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableInputName/0.png deleted file mode 100644 index d69453adf4..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableInputName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableIntakeName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableIntakeName/0.png deleted file mode 100644 index 46a00045cd..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableIntakeName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableIntakeName/8.png b/front/public/images/small/StevesFactoryManager/BlockCableIntakeName/8.png deleted file mode 100644 index 4d3735e169..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableIntakeName/8.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableName/0.png deleted file mode 100644 index cddc92af7b..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableOutputName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableOutputName/0.png deleted file mode 100644 index cd76450d78..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableOutputName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableRelayName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableRelayName/0.png deleted file mode 100644 index d8cf761ca3..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableRelayName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableRelayName/8.png b/front/public/images/small/StevesFactoryManager/BlockCableRelayName/8.png deleted file mode 100644 index 3a5d0bb808..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableRelayName/8.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockCableSignName/0.png b/front/public/images/small/StevesFactoryManager/BlockCableSignName/0.png deleted file mode 100644 index 42e48e55c8..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockCableSignName/0.png and /dev/null differ diff --git a/front/public/images/small/StevesFactoryManager/BlockMachineManagerName/0.png b/front/public/images/small/StevesFactoryManager/BlockMachineManagerName/0.png deleted file mode 100644 index 3e312b0219..0000000000 Binary files a/front/public/images/small/StevesFactoryManager/BlockMachineManagerName/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/controller/0.png b/front/public/images/small/StorageDrawers/controller/0.png deleted file mode 100644 index a271103a73..0000000000 Binary files a/front/public/images/small/StorageDrawers/controller/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/controllerSlave/0.png b/front/public/images/small/StorageDrawers/controllerSlave/0.png deleted file mode 100644 index 10d2796b29..0000000000 Binary files a/front/public/images/small/StorageDrawers/controllerSlave/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/framingTable/0.png b/front/public/images/small/StorageDrawers/framingTable/0.png deleted file mode 100644 index 0c183d1797..0000000000 Binary files a/front/public/images/small/StorageDrawers/framingTable/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullCustom1/0.png b/front/public/images/small/StorageDrawers/fullCustom1/0.png deleted file mode 100644 index 97c4324ef0..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullCustom1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullCustom2/0.png b/front/public/images/small/StorageDrawers/fullCustom2/0.png deleted file mode 100644 index d293ff100f..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullCustom2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullCustom4/0.png b/front/public/images/small/StorageDrawers/fullCustom4/0.png deleted file mode 100644 index 60072c376d..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullCustom4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers1/0.png b/front/public/images/small/StorageDrawers/fullDrawers1/0.png deleted file mode 100644 index 0f433ab10a..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers1/1.png b/front/public/images/small/StorageDrawers/fullDrawers1/1.png deleted file mode 100644 index 36cb031066..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers1/2.png b/front/public/images/small/StorageDrawers/fullDrawers1/2.png deleted file mode 100644 index 3f0679bd34..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers1/3.png b/front/public/images/small/StorageDrawers/fullDrawers1/3.png deleted file mode 100644 index 793b1f2e33..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers1/4.png b/front/public/images/small/StorageDrawers/fullDrawers1/4.png deleted file mode 100644 index 0ab5d16162..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers1/5.png b/front/public/images/small/StorageDrawers/fullDrawers1/5.png deleted file mode 100644 index b93e60ec27..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers2/0.png b/front/public/images/small/StorageDrawers/fullDrawers2/0.png deleted file mode 100644 index ed8092c859..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers2/1.png b/front/public/images/small/StorageDrawers/fullDrawers2/1.png deleted file mode 100644 index 231d5acc99..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers2/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers2/2.png b/front/public/images/small/StorageDrawers/fullDrawers2/2.png deleted file mode 100644 index 887946c14c..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers2/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers2/3.png b/front/public/images/small/StorageDrawers/fullDrawers2/3.png deleted file mode 100644 index 1e36c1988f..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers2/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers2/4.png b/front/public/images/small/StorageDrawers/fullDrawers2/4.png deleted file mode 100644 index 4964ba3ea6..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers2/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers2/5.png b/front/public/images/small/StorageDrawers/fullDrawers2/5.png deleted file mode 100644 index 0a147db197..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers2/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers4/0.png b/front/public/images/small/StorageDrawers/fullDrawers4/0.png deleted file mode 100644 index cd6b25b140..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers4/1.png b/front/public/images/small/StorageDrawers/fullDrawers4/1.png deleted file mode 100644 index 7fd87fcaa9..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers4/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers4/2.png b/front/public/images/small/StorageDrawers/fullDrawers4/2.png deleted file mode 100644 index c82f03816f..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers4/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers4/3.png b/front/public/images/small/StorageDrawers/fullDrawers4/3.png deleted file mode 100644 index f1e9cbb91c..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers4/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers4/4.png b/front/public/images/small/StorageDrawers/fullDrawers4/4.png deleted file mode 100644 index c3c829e608..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers4/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/fullDrawers4/5.png b/front/public/images/small/StorageDrawers/fullDrawers4/5.png deleted file mode 100644 index 42b99cc86b..0000000000 Binary files a/front/public/images/small/StorageDrawers/fullDrawers4/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfCustom2/0.png b/front/public/images/small/StorageDrawers/halfCustom2/0.png deleted file mode 100644 index 33cd3691b4..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfCustom2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfCustom4/0.png b/front/public/images/small/StorageDrawers/halfCustom4/0.png deleted file mode 100644 index d9d1a45bd6..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfCustom4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers2/0.png b/front/public/images/small/StorageDrawers/halfDrawers2/0.png deleted file mode 100644 index 850f3fefce..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers2/1.png b/front/public/images/small/StorageDrawers/halfDrawers2/1.png deleted file mode 100644 index 043f1323e6..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers2/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers2/2.png b/front/public/images/small/StorageDrawers/halfDrawers2/2.png deleted file mode 100644 index 6fa4a68992..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers2/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers2/3.png b/front/public/images/small/StorageDrawers/halfDrawers2/3.png deleted file mode 100644 index 93ba391ff1..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers2/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers2/4.png b/front/public/images/small/StorageDrawers/halfDrawers2/4.png deleted file mode 100644 index fe5d3ed6cb..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers2/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers2/5.png b/front/public/images/small/StorageDrawers/halfDrawers2/5.png deleted file mode 100644 index 8369c303ac..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers2/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers4/0.png b/front/public/images/small/StorageDrawers/halfDrawers4/0.png deleted file mode 100644 index f5ec0cdbc0..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers4/1.png b/front/public/images/small/StorageDrawers/halfDrawers4/1.png deleted file mode 100644 index 12ac0051b8..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers4/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers4/2.png b/front/public/images/small/StorageDrawers/halfDrawers4/2.png deleted file mode 100644 index c74e90bd06..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers4/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers4/3.png b/front/public/images/small/StorageDrawers/halfDrawers4/3.png deleted file mode 100644 index 0483bc2d43..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers4/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers4/4.png b/front/public/images/small/StorageDrawers/halfDrawers4/4.png deleted file mode 100644 index 1b0e765d6e..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers4/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/halfDrawers4/5.png b/front/public/images/small/StorageDrawers/halfDrawers4/5.png deleted file mode 100644 index e0c425afbe..0000000000 Binary files a/front/public/images/small/StorageDrawers/halfDrawers4/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/personalKey/0.png b/front/public/images/small/StorageDrawers/personalKey/0.png deleted file mode 100644 index 064c6cc91f..0000000000 Binary files a/front/public/images/small/StorageDrawers/personalKey/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/shroudKey/0.png b/front/public/images/small/StorageDrawers/shroudKey/0.png deleted file mode 100644 index 7755259d09..0000000000 Binary files a/front/public/images/small/StorageDrawers/shroudKey/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/tape/0.png b/front/public/images/small/StorageDrawers/tape/0.png deleted file mode 100644 index a9fc4da2b1..0000000000 Binary files a/front/public/images/small/StorageDrawers/tape/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/trim/0.png b/front/public/images/small/StorageDrawers/trim/0.png deleted file mode 100644 index a5ec524866..0000000000 Binary files a/front/public/images/small/StorageDrawers/trim/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/trim/1.png b/front/public/images/small/StorageDrawers/trim/1.png deleted file mode 100644 index aaecba16eb..0000000000 Binary files a/front/public/images/small/StorageDrawers/trim/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/trim/2.png b/front/public/images/small/StorageDrawers/trim/2.png deleted file mode 100644 index 8e1b93c650..0000000000 Binary files a/front/public/images/small/StorageDrawers/trim/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/trim/3.png b/front/public/images/small/StorageDrawers/trim/3.png deleted file mode 100644 index d536f66c63..0000000000 Binary files a/front/public/images/small/StorageDrawers/trim/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/trim/4.png b/front/public/images/small/StorageDrawers/trim/4.png deleted file mode 100644 index 7f9fd910f5..0000000000 Binary files a/front/public/images/small/StorageDrawers/trim/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/trim/5.png b/front/public/images/small/StorageDrawers/trim/5.png deleted file mode 100644 index 51eca39e18..0000000000 Binary files a/front/public/images/small/StorageDrawers/trim/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/trimCustom/0.png b/front/public/images/small/StorageDrawers/trimCustom/0.png deleted file mode 100644 index c13cf77a86..0000000000 Binary files a/front/public/images/small/StorageDrawers/trimCustom/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgrade/2.png b/front/public/images/small/StorageDrawers/upgrade/2.png deleted file mode 100644 index 7604a10620..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgrade/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgrade/3.png b/front/public/images/small/StorageDrawers/upgrade/3.png deleted file mode 100644 index 4813722ed7..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgrade/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgrade/4.png b/front/public/images/small/StorageDrawers/upgrade/4.png deleted file mode 100644 index 9c246e0c61..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgrade/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgrade/5.png b/front/public/images/small/StorageDrawers/upgrade/5.png deleted file mode 100644 index 37457e03dc..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgrade/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgrade/6.png b/front/public/images/small/StorageDrawers/upgrade/6.png deleted file mode 100644 index cc2ec5ff7a..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgrade/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgrade/7.png b/front/public/images/small/StorageDrawers/upgrade/7.png deleted file mode 100644 index ac0e4141ec..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgrade/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgrade/8.png b/front/public/images/small/StorageDrawers/upgrade/8.png deleted file mode 100644 index ec2dbdda51..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgrade/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeCreative/0.png b/front/public/images/small/StorageDrawers/upgradeCreative/0.png deleted file mode 100644 index fe87ccf0e9..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeCreative/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeCreative/1.png b/front/public/images/small/StorageDrawers/upgradeCreative/1.png deleted file mode 100644 index dae053b100..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeCreative/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeDowngrade/0.png b/front/public/images/small/StorageDrawers/upgradeDowngrade/0.png deleted file mode 100644 index c577a4e53b..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeDowngrade/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeLock/0.png b/front/public/images/small/StorageDrawers/upgradeLock/0.png deleted file mode 100644 index dea5b698f3..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeLock/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeRedstone/0.png b/front/public/images/small/StorageDrawers/upgradeRedstone/0.png deleted file mode 100644 index b1668e9a21..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeRedstone/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeRedstone/1.png b/front/public/images/small/StorageDrawers/upgradeRedstone/1.png deleted file mode 100644 index 44a29dac49..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeRedstone/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeRedstone/2.png b/front/public/images/small/StorageDrawers/upgradeRedstone/2.png deleted file mode 100644 index 0a7907b109..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeRedstone/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeStatus/1.png b/front/public/images/small/StorageDrawers/upgradeStatus/1.png deleted file mode 100644 index 6fe34c0ba3..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeStatus/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeStatus/2.png b/front/public/images/small/StorageDrawers/upgradeStatus/2.png deleted file mode 100644 index 4f27322364..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeStatus/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeTemplate/0.png b/front/public/images/small/StorageDrawers/upgradeTemplate/0.png deleted file mode 100644 index ae1a14edd1..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeTemplate/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawers/upgradeVoid/0.png b/front/public/images/small/StorageDrawers/upgradeVoid/0.png deleted file mode 100644 index fc90887860..0000000000 Binary files a/front/public/images/small/StorageDrawers/upgradeVoid/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/0.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/0.png deleted file mode 100644 index 0f433ab10a..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/1.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/1.png deleted file mode 100644 index 6baea9d4a0..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/11.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/11.png deleted file mode 100644 index c667b9b22a..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/12.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/12.png deleted file mode 100644 index 49ba0cdea0..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/13.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/13.png deleted file mode 100644 index bc92a27176..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/14.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/14.png deleted file mode 100644 index 598a89ae0f..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/2.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/2.png deleted file mode 100644 index 4fb4234268..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/3.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/3.png deleted file mode 100644 index 203d168af4..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/4.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/4.png deleted file mode 100644 index ee1a9720de..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/5.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/5.png deleted file mode 100644 index 2164728907..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/6.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/6.png deleted file mode 100644 index bfa1a64b46..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/7.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/7.png deleted file mode 100644 index 5279d3f158..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/8.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/8.png deleted file mode 100644 index f500fc6e0b..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers1/9.png b/front/public/images/small/StorageDrawersBop/fullDrawers1/9.png deleted file mode 100644 index c745a02576..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/0.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/0.png deleted file mode 100644 index ed8092c859..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/1.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/1.png deleted file mode 100644 index af7b3e18a5..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/11.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/11.png deleted file mode 100644 index 5d6413eb4b..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/12.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/12.png deleted file mode 100644 index d1443383b7..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/13.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/13.png deleted file mode 100644 index 08415af8d2..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/14.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/14.png deleted file mode 100644 index cfc0acd68d..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/2.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/2.png deleted file mode 100644 index 0a2cf78351..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/3.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/3.png deleted file mode 100644 index 74892a6b8f..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/4.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/4.png deleted file mode 100644 index f5fc533790..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/5.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/5.png deleted file mode 100644 index 5ea3fa34ef..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/6.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/6.png deleted file mode 100644 index 46701e8a7b..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/7.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/7.png deleted file mode 100644 index e0fefb7859..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/8.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/8.png deleted file mode 100644 index a772e8d263..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers2/9.png b/front/public/images/small/StorageDrawersBop/fullDrawers2/9.png deleted file mode 100644 index 1cb810a595..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers2/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/0.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/0.png deleted file mode 100644 index cd6b25b140..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/1.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/1.png deleted file mode 100644 index fb0a6f35bb..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/11.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/11.png deleted file mode 100644 index 32e2b5e8c3..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/12.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/12.png deleted file mode 100644 index 30cf3ccff4..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/13.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/13.png deleted file mode 100644 index c526cdbc9b..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/14.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/14.png deleted file mode 100644 index 9e401bce8b..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/2.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/2.png deleted file mode 100644 index e5cceb81ea..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/3.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/3.png deleted file mode 100644 index 867b349cb7..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/4.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/4.png deleted file mode 100644 index 265f8be6c9..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/5.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/5.png deleted file mode 100644 index bd6f88bee7..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/6.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/6.png deleted file mode 100644 index 20894bf75b..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/7.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/7.png deleted file mode 100644 index 52ee1fccbc..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/8.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/8.png deleted file mode 100644 index 568010b18a..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/fullDrawers4/9.png b/front/public/images/small/StorageDrawersBop/fullDrawers4/9.png deleted file mode 100644 index bc228e90aa..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/fullDrawers4/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/0.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/0.png deleted file mode 100644 index 850f3fefce..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/1.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/1.png deleted file mode 100644 index 7e773b64af..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/11.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/11.png deleted file mode 100644 index 0bfd35f1a6..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/12.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/12.png deleted file mode 100644 index 52ca04f703..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/13.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/13.png deleted file mode 100644 index 7ef090421c..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/14.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/14.png deleted file mode 100644 index fd56cc75a5..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/2.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/2.png deleted file mode 100644 index 55907d30e9..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/3.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/3.png deleted file mode 100644 index bd187e0e5e..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/4.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/4.png deleted file mode 100644 index 691f17dd03..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/5.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/5.png deleted file mode 100644 index 2dba73920a..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/6.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/6.png deleted file mode 100644 index 945568f752..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/7.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/7.png deleted file mode 100644 index abc4a8ab2c..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/8.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/8.png deleted file mode 100644 index 1cf2aca2df..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers2/9.png b/front/public/images/small/StorageDrawersBop/halfDrawers2/9.png deleted file mode 100644 index e44a1e6efe..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers2/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/0.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/0.png deleted file mode 100644 index f5ec0cdbc0..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/1.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/1.png deleted file mode 100644 index dad3088dd5..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/11.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/11.png deleted file mode 100644 index 20afab56bb..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/12.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/12.png deleted file mode 100644 index dadaf94526..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/13.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/13.png deleted file mode 100644 index 824028b611..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/14.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/14.png deleted file mode 100644 index 5bd41bba98..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/2.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/2.png deleted file mode 100644 index 5a4a371df2..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/3.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/3.png deleted file mode 100644 index 290914d8e0..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/4.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/4.png deleted file mode 100644 index 2afda62cbb..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/5.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/5.png deleted file mode 100644 index a725de9dd6..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/6.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/6.png deleted file mode 100644 index fe03c021bb..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/7.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/7.png deleted file mode 100644 index 4486597e66..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/8.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/8.png deleted file mode 100644 index 5f73223145..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/halfDrawers4/9.png b/front/public/images/small/StorageDrawersBop/halfDrawers4/9.png deleted file mode 100644 index 744cb27789..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/halfDrawers4/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/0.png b/front/public/images/small/StorageDrawersBop/trim/0.png deleted file mode 100644 index a5ec524866..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/1.png b/front/public/images/small/StorageDrawersBop/trim/1.png deleted file mode 100644 index 5947c67f83..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/11.png b/front/public/images/small/StorageDrawersBop/trim/11.png deleted file mode 100644 index d2c790e704..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/12.png b/front/public/images/small/StorageDrawersBop/trim/12.png deleted file mode 100644 index 2a3174cd10..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/13.png b/front/public/images/small/StorageDrawersBop/trim/13.png deleted file mode 100644 index eb68fac391..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/14.png b/front/public/images/small/StorageDrawersBop/trim/14.png deleted file mode 100644 index 6cef6555b5..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/2.png b/front/public/images/small/StorageDrawersBop/trim/2.png deleted file mode 100644 index 23ec6bfa1d..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/3.png b/front/public/images/small/StorageDrawersBop/trim/3.png deleted file mode 100644 index 454185dbb7..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/4.png b/front/public/images/small/StorageDrawersBop/trim/4.png deleted file mode 100644 index 2beb9a6b59..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/5.png b/front/public/images/small/StorageDrawersBop/trim/5.png deleted file mode 100644 index 809620806a..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/6.png b/front/public/images/small/StorageDrawersBop/trim/6.png deleted file mode 100644 index 1cd08d7294..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/7.png b/front/public/images/small/StorageDrawersBop/trim/7.png deleted file mode 100644 index eed971bae3..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/8.png b/front/public/images/small/StorageDrawersBop/trim/8.png deleted file mode 100644 index 4ffd55fabc..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersBop/trim/9.png b/front/public/images/small/StorageDrawersBop/trim/9.png deleted file mode 100644 index 1876cf485e..0000000000 Binary files a/front/public/images/small/StorageDrawersBop/trim/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/0.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/0.png deleted file mode 100644 index af53956976..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/1.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/1.png deleted file mode 100644 index 7b78dc105d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/10.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/10.png deleted file mode 100644 index 03ea56b34e..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/11.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/11.png deleted file mode 100644 index 5db03b73a9..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/12.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/12.png deleted file mode 100644 index 4b09023732..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/13.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/13.png deleted file mode 100644 index e99bf97b1b..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/14.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/14.png deleted file mode 100644 index 3e607a9a8a..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/15.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/15.png deleted file mode 100644 index b775024b1d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/15.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/2.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/2.png deleted file mode 100644 index ed53793c1a..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/3.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/3.png deleted file mode 100644 index aa990c1e6d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/4.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/4.png deleted file mode 100644 index e785827503..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/5.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/5.png deleted file mode 100644 index a2b481c3a7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/6.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/6.png deleted file mode 100644 index c1e2b27f37..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/7.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/7.png deleted file mode 100644 index ac3c816e93..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/8.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/8.png deleted file mode 100644 index e4bb5a3958..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/9.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1A/9.png deleted file mode 100644 index 8fffe4bb4f..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1A/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/0.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/0.png deleted file mode 100644 index d9d77c7a43..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/1.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/1.png deleted file mode 100644 index 6f42ae3264..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/10.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/10.png deleted file mode 100644 index af040faa9d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/11.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/11.png deleted file mode 100644 index bb406ac6c6..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/12.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/12.png deleted file mode 100644 index 8774b91cb3..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/2.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/2.png deleted file mode 100644 index bbe940deba..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/3.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/3.png deleted file mode 100644 index f0cc30d20d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/4.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/4.png deleted file mode 100644 index cc19f11dc8..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/5.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/5.png deleted file mode 100644 index 1720dc08b1..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/6.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/6.png deleted file mode 100644 index efad3e0cdb..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/7.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/7.png deleted file mode 100644 index a19ec00067..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/8.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/8.png deleted file mode 100644 index 5d3ade98f1..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/9.png b/front/public/images/small/StorageDrawersForestry/fullDrawers1B/9.png deleted file mode 100644 index 39c764afa4..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers1B/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/0.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/0.png deleted file mode 100644 index c25667d541..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/1.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/1.png deleted file mode 100644 index 6afaca59a6..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/10.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/10.png deleted file mode 100644 index 602f0d9ae2..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/11.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/11.png deleted file mode 100644 index 26438ba777..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/12.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/12.png deleted file mode 100644 index 6486e0fb8a..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/13.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/13.png deleted file mode 100644 index 149a60463c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/14.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/14.png deleted file mode 100644 index 406831c215..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/15.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/15.png deleted file mode 100644 index 8377612fc6..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/15.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/2.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/2.png deleted file mode 100644 index c9cd3513b6..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/3.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/3.png deleted file mode 100644 index aa63d8815c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/4.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/4.png deleted file mode 100644 index 78bb1f6a84..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/5.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/5.png deleted file mode 100644 index 135248f86c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/6.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/6.png deleted file mode 100644 index 52c0f2285c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/7.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/7.png deleted file mode 100644 index daa80fd564..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/8.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/8.png deleted file mode 100644 index 3dc0a9692d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/9.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2A/9.png deleted file mode 100644 index e4be0c0f3f..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2A/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/0.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/0.png deleted file mode 100644 index c2fe3137a0..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/1.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/1.png deleted file mode 100644 index de3cb33cf1..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/10.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/10.png deleted file mode 100644 index 7de4d5956e..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/11.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/11.png deleted file mode 100644 index f1580a2726..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/12.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/12.png deleted file mode 100644 index c4fcee7ea1..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/2.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/2.png deleted file mode 100644 index 01872f29ab..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/3.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/3.png deleted file mode 100644 index 94c79f9259..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/4.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/4.png deleted file mode 100644 index 1a470258cc..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/5.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/5.png deleted file mode 100644 index 94963fe565..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/6.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/6.png deleted file mode 100644 index f263a91eba..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/7.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/7.png deleted file mode 100644 index 8a0daeda47..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/8.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/8.png deleted file mode 100644 index de5347d590..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/9.png b/front/public/images/small/StorageDrawersForestry/fullDrawers2B/9.png deleted file mode 100644 index dd1c240240..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers2B/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/0.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/0.png deleted file mode 100644 index d9bc512486..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/1.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/1.png deleted file mode 100644 index 57d9b87d82..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/10.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/10.png deleted file mode 100644 index 0d6b31a273..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/11.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/11.png deleted file mode 100644 index eed7c2a5ec..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/12.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/12.png deleted file mode 100644 index 8070fdad78..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/13.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/13.png deleted file mode 100644 index ff1414979a..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/14.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/14.png deleted file mode 100644 index 8fc5eca2ad..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/15.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/15.png deleted file mode 100644 index 4538394b2d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/15.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/2.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/2.png deleted file mode 100644 index 2e606e2ea3..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/3.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/3.png deleted file mode 100644 index 7e9a80dcf0..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/4.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/4.png deleted file mode 100644 index e36f6d0607..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/5.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/5.png deleted file mode 100644 index bfcc56b551..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/6.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/6.png deleted file mode 100644 index aca3d95d56..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/7.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/7.png deleted file mode 100644 index 803e94eb97..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/8.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/8.png deleted file mode 100644 index 02a23c910d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/9.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4A/9.png deleted file mode 100644 index 6d8ce3af04..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4A/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/0.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/0.png deleted file mode 100644 index 84222991dd..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/1.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/1.png deleted file mode 100644 index 920aa76a21..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/10.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/10.png deleted file mode 100644 index 096710eb77..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/11.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/11.png deleted file mode 100644 index b9334d58fb..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/12.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/12.png deleted file mode 100644 index 0ecd669191..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/2.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/2.png deleted file mode 100644 index b1a16da1ca..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/3.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/3.png deleted file mode 100644 index 09bfa19994..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/4.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/4.png deleted file mode 100644 index 11b69155cd..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/5.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/5.png deleted file mode 100644 index d1d2a2cc51..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/6.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/6.png deleted file mode 100644 index 88b7ed20d0..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/7.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/7.png deleted file mode 100644 index 2e35d6d651..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/8.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/8.png deleted file mode 100644 index d59a3f4254..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/9.png b/front/public/images/small/StorageDrawersForestry/fullDrawers4B/9.png deleted file mode 100644 index 47234a10de..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/fullDrawers4B/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/0.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/0.png deleted file mode 100644 index 5204207fda..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/1.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/1.png deleted file mode 100644 index 7177add72b..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/10.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/10.png deleted file mode 100644 index 3d1bb64844..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/11.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/11.png deleted file mode 100644 index b6bae8e18a..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/12.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/12.png deleted file mode 100644 index 38b57cc758..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/13.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/13.png deleted file mode 100644 index e485e3780f..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/14.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/14.png deleted file mode 100644 index 3175ef7b48..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/15.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/15.png deleted file mode 100644 index 007665ac6d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/15.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/2.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/2.png deleted file mode 100644 index 0cbec57ccc..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/3.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/3.png deleted file mode 100644 index 8c8f6ce3b7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/4.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/4.png deleted file mode 100644 index cef45294c8..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/5.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/5.png deleted file mode 100644 index 64fa7a9660..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/6.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/6.png deleted file mode 100644 index 8a9ca6a7fb..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/7.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/7.png deleted file mode 100644 index 057d0d8e11..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/8.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/8.png deleted file mode 100644 index 8ea6e295da..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/9.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2A/9.png deleted file mode 100644 index e153558087..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2A/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/0.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/0.png deleted file mode 100644 index f563f0a993..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/1.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/1.png deleted file mode 100644 index 961d8f365b..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/10.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/10.png deleted file mode 100644 index 777c4e69b7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/11.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/11.png deleted file mode 100644 index 7463faff25..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/12.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/12.png deleted file mode 100644 index e8c0694f18..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/2.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/2.png deleted file mode 100644 index d2bac58ade..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/3.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/3.png deleted file mode 100644 index 7e627725d0..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/4.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/4.png deleted file mode 100644 index f888bcae1d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/5.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/5.png deleted file mode 100644 index 69d1671ce7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/6.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/6.png deleted file mode 100644 index 0874351a42..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/7.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/7.png deleted file mode 100644 index 9d55c120ef..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/8.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/8.png deleted file mode 100644 index 8480151f36..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/9.png b/front/public/images/small/StorageDrawersForestry/halfDrawers2B/9.png deleted file mode 100644 index 8d10e5de78..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers2B/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/0.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/0.png deleted file mode 100644 index 021b029121..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/1.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/1.png deleted file mode 100644 index 8cc383d27b..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/10.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/10.png deleted file mode 100644 index 5f45b18c81..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/11.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/11.png deleted file mode 100644 index 4b1fb5b8f0..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/12.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/12.png deleted file mode 100644 index 14a65d0cdc..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/13.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/13.png deleted file mode 100644 index 6241438ca1..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/14.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/14.png deleted file mode 100644 index c4daf055c7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/15.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/15.png deleted file mode 100644 index b71d543ded..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/15.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/2.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/2.png deleted file mode 100644 index 47705eff82..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/3.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/3.png deleted file mode 100644 index 6a7ddac860..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/4.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/4.png deleted file mode 100644 index 3e93fde659..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/5.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/5.png deleted file mode 100644 index 585776f6fc..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/6.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/6.png deleted file mode 100644 index 55b53754b7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/7.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/7.png deleted file mode 100644 index 0565b8bf0c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/8.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/8.png deleted file mode 100644 index 2b9e08cf08..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/9.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4A/9.png deleted file mode 100644 index fcd050d378..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4A/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/0.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/0.png deleted file mode 100644 index 2133cb6833..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/1.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/1.png deleted file mode 100644 index 59352a27a7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/10.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/10.png deleted file mode 100644 index 076fb512bc..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/11.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/11.png deleted file mode 100644 index 26b27bef67..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/12.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/12.png deleted file mode 100644 index f2844ea4fe..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/2.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/2.png deleted file mode 100644 index f2a64a91f9..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/3.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/3.png deleted file mode 100644 index cc624225d9..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/4.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/4.png deleted file mode 100644 index 8bce831a86..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/5.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/5.png deleted file mode 100644 index af0dcd7cd8..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/6.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/6.png deleted file mode 100644 index cbc8bcc836..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/7.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/7.png deleted file mode 100644 index d23d069d86..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/8.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/8.png deleted file mode 100644 index 792c408b51..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/9.png b/front/public/images/small/StorageDrawersForestry/halfDrawers4B/9.png deleted file mode 100644 index 88a31257cf..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/halfDrawers4B/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/0.png b/front/public/images/small/StorageDrawersForestry/trimA/0.png deleted file mode 100644 index afe3a31971..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/1.png b/front/public/images/small/StorageDrawersForestry/trimA/1.png deleted file mode 100644 index d946b33702..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/10.png b/front/public/images/small/StorageDrawersForestry/trimA/10.png deleted file mode 100644 index 29e8cd0763..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/11.png b/front/public/images/small/StorageDrawersForestry/trimA/11.png deleted file mode 100644 index 76553a4cc4..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/12.png b/front/public/images/small/StorageDrawersForestry/trimA/12.png deleted file mode 100644 index e8f7960c6d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/13.png b/front/public/images/small/StorageDrawersForestry/trimA/13.png deleted file mode 100644 index 6c319f7f88..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/13.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/14.png b/front/public/images/small/StorageDrawersForestry/trimA/14.png deleted file mode 100644 index 59c2e76ecc..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/14.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/15.png b/front/public/images/small/StorageDrawersForestry/trimA/15.png deleted file mode 100644 index 11cfcf2426..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/15.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/2.png b/front/public/images/small/StorageDrawersForestry/trimA/2.png deleted file mode 100644 index 6a29d15ce7..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/3.png b/front/public/images/small/StorageDrawersForestry/trimA/3.png deleted file mode 100644 index 69b0d35a85..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/4.png b/front/public/images/small/StorageDrawersForestry/trimA/4.png deleted file mode 100644 index f7268644d6..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/5.png b/front/public/images/small/StorageDrawersForestry/trimA/5.png deleted file mode 100644 index a6cd6da27c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/6.png b/front/public/images/small/StorageDrawersForestry/trimA/6.png deleted file mode 100644 index 58dfd642a4..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/7.png b/front/public/images/small/StorageDrawersForestry/trimA/7.png deleted file mode 100644 index 220bbec049..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/8.png b/front/public/images/small/StorageDrawersForestry/trimA/8.png deleted file mode 100644 index 2b4f8da671..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimA/9.png b/front/public/images/small/StorageDrawersForestry/trimA/9.png deleted file mode 100644 index 56b0d38c3d..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimA/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/0.png b/front/public/images/small/StorageDrawersForestry/trimB/0.png deleted file mode 100644 index 60e69e2dec..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/1.png b/front/public/images/small/StorageDrawersForestry/trimB/1.png deleted file mode 100644 index 03ad02ad2b..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/10.png b/front/public/images/small/StorageDrawersForestry/trimB/10.png deleted file mode 100644 index 1255e4dc58..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/11.png b/front/public/images/small/StorageDrawersForestry/trimB/11.png deleted file mode 100644 index 51575dc66c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/12.png b/front/public/images/small/StorageDrawersForestry/trimB/12.png deleted file mode 100644 index 2325f9bc7e..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/2.png b/front/public/images/small/StorageDrawersForestry/trimB/2.png deleted file mode 100644 index 401ef6edbf..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/3.png b/front/public/images/small/StorageDrawersForestry/trimB/3.png deleted file mode 100644 index 0e404d6cc4..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/4.png b/front/public/images/small/StorageDrawersForestry/trimB/4.png deleted file mode 100644 index 8a07f8f5d0..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/5.png b/front/public/images/small/StorageDrawersForestry/trimB/5.png deleted file mode 100644 index c84fb55a2c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/6.png b/front/public/images/small/StorageDrawersForestry/trimB/6.png deleted file mode 100644 index c2dbd58f89..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/7.png b/front/public/images/small/StorageDrawersForestry/trimB/7.png deleted file mode 100644 index c5ebbb14fa..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/8.png b/front/public/images/small/StorageDrawersForestry/trimB/8.png deleted file mode 100644 index b661730b3c..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersForestry/trimB/9.png b/front/public/images/small/StorageDrawersForestry/trimB/9.png deleted file mode 100644 index 09cbd0da57..0000000000 Binary files a/front/public/images/small/StorageDrawersForestry/trimB/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/0.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/0.png deleted file mode 100644 index 3cf5cf2af4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/1.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/1.png deleted file mode 100644 index f58e919f83..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/2.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/2.png deleted file mode 100644 index 8fdcac23b5..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/3.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/3.png deleted file mode 100644 index 8b5ad61e8b..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/4.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/4.png deleted file mode 100644 index f042b26c04..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/5.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/5.png deleted file mode 100644 index 8a955ffa4f..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/6.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/6.png deleted file mode 100644 index d700471acc..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/7.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/7.png deleted file mode 100644 index 9a541e3699..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/8.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/8.png deleted file mode 100644 index c78f0e5857..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_0/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/0.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/0.png deleted file mode 100644 index 93b661b978..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/1.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/1.png deleted file mode 100644 index 3a0f6a4aa4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/10.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/10.png deleted file mode 100644 index b9260b9682..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/11.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/11.png deleted file mode 100644 index ca5df45f38..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/2.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/2.png deleted file mode 100644 index e4e4caebd6..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/3.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/3.png deleted file mode 100644 index 9219d867d3..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/4.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/4.png deleted file mode 100644 index 21eadb8a71..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/5.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/5.png deleted file mode 100644 index 7cd6e426ce..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/6.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/6.png deleted file mode 100644 index eec4fcf649..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/7.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/7.png deleted file mode 100644 index 1e60c37c17..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/8.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/8.png deleted file mode 100644 index 4e251d40c1..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/9.png b/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/9.png deleted file mode 100644 index fb26f906fb..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers1_1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/0.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/0.png deleted file mode 100644 index 0886a8329e..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/1.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/1.png deleted file mode 100644 index 4ffa35c7c0..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/2.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/2.png deleted file mode 100644 index 3fb1f2160c..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/3.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/3.png deleted file mode 100644 index 4eb9b2785f..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/4.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/4.png deleted file mode 100644 index a993671e18..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/5.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/5.png deleted file mode 100644 index 018a0c38ff..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/6.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/6.png deleted file mode 100644 index 7937808506..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/7.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/7.png deleted file mode 100644 index c442d70935..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/8.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/8.png deleted file mode 100644 index 55e85787e5..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_0/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/0.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/0.png deleted file mode 100644 index 22789b9134..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/1.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/1.png deleted file mode 100644 index b2a4336086..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/10.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/10.png deleted file mode 100644 index cdf20bc86e..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/11.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/11.png deleted file mode 100644 index b155835e73..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/2.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/2.png deleted file mode 100644 index 90a90568de..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/3.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/3.png deleted file mode 100644 index aee768e89a..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/4.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/4.png deleted file mode 100644 index c98215654d..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/5.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/5.png deleted file mode 100644 index d63d48eb10..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/6.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/6.png deleted file mode 100644 index 767457365b..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/7.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/7.png deleted file mode 100644 index 695d7fc042..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/8.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/8.png deleted file mode 100644 index fe8f0d67bb..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/9.png b/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/9.png deleted file mode 100644 index 652cb7e93d..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers2_1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/0.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/0.png deleted file mode 100644 index 3c4c2391b3..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/1.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/1.png deleted file mode 100644 index 6fe54abec0..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/2.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/2.png deleted file mode 100644 index 62583e78ac..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/3.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/3.png deleted file mode 100644 index 47308974ed..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/4.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/4.png deleted file mode 100644 index c9be7aa429..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/5.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/5.png deleted file mode 100644 index 06538bd7fa..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/6.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/6.png deleted file mode 100644 index 61ae916bfb..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/7.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/7.png deleted file mode 100644 index 62ed2b3e4b..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/8.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/8.png deleted file mode 100644 index aef5a71cf3..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_0/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/0.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/0.png deleted file mode 100644 index 00467ee742..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/1.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/1.png deleted file mode 100644 index 3d41df46fd..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/10.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/10.png deleted file mode 100644 index 6272b9e50f..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/11.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/11.png deleted file mode 100644 index aff52fd284..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/2.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/2.png deleted file mode 100644 index da138f5804..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/3.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/3.png deleted file mode 100644 index 3c56900fa4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/4.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/4.png deleted file mode 100644 index 2367921fb4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/5.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/5.png deleted file mode 100644 index 2bdb09b7d0..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/6.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/6.png deleted file mode 100644 index 9f7c6657a4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/7.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/7.png deleted file mode 100644 index 2200d0ce29..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/8.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/8.png deleted file mode 100644 index a8afcae4a4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/9.png b/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/9.png deleted file mode 100644 index 17846f10b4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/fullDrawers4_1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/0.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/0.png deleted file mode 100644 index 7c859d43c4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/1.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/1.png deleted file mode 100644 index 5e10827b66..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/2.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/2.png deleted file mode 100644 index 8c874385d0..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/3.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/3.png deleted file mode 100644 index 80fa987f16..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/4.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/4.png deleted file mode 100644 index c6c858e8f7..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/5.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/5.png deleted file mode 100644 index 74250f4c26..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/6.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/6.png deleted file mode 100644 index d7a2ccf049..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/7.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/7.png deleted file mode 100644 index 1bb2abcee6..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/8.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/8.png deleted file mode 100644 index b2f15a2316..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_0/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/0.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/0.png deleted file mode 100644 index 592724bec1..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/1.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/1.png deleted file mode 100644 index aeca3b0697..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/10.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/10.png deleted file mode 100644 index 2e28f90c40..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/11.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/11.png deleted file mode 100644 index d9147cc335..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/2.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/2.png deleted file mode 100644 index e900b45123..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/3.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/3.png deleted file mode 100644 index b3da66b2c8..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/4.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/4.png deleted file mode 100644 index 5f541a6094..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/5.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/5.png deleted file mode 100644 index 61b4b203e8..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/6.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/6.png deleted file mode 100644 index f8c9a88557..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/7.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/7.png deleted file mode 100644 index 370da0f8df..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/8.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/8.png deleted file mode 100644 index 0c3422d8d1..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/9.png b/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/9.png deleted file mode 100644 index c4e412cede..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers2_1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/0.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/0.png deleted file mode 100644 index c121be0144..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/1.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/1.png deleted file mode 100644 index 4dc8a8c26b..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/2.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/2.png deleted file mode 100644 index 893969af9a..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/3.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/3.png deleted file mode 100644 index 1dd01a8326..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/4.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/4.png deleted file mode 100644 index 080848982f..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/5.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/5.png deleted file mode 100644 index 9bd505ca5b..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/6.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/6.png deleted file mode 100644 index b4eb908033..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/7.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/7.png deleted file mode 100644 index 82f126b7cc..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/8.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/8.png deleted file mode 100644 index 85594b253f..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_0/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/0.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/0.png deleted file mode 100644 index 393545d1b3..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/1.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/1.png deleted file mode 100644 index 76f34fc944..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/10.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/10.png deleted file mode 100644 index cee439f444..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/11.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/11.png deleted file mode 100644 index 92cf415848..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/2.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/2.png deleted file mode 100644 index 2475627f64..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/3.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/3.png deleted file mode 100644 index 20376ecf07..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/4.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/4.png deleted file mode 100644 index c619a02e4a..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/5.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/5.png deleted file mode 100644 index 34e74678a2..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/6.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/6.png deleted file mode 100644 index f81e7fc3a8..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/7.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/7.png deleted file mode 100644 index c6a29f5ee7..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/8.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/8.png deleted file mode 100644 index d48526d52b..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/9.png b/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/9.png deleted file mode 100644 index eedd5e4cbd..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/halfDrawers4_1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/0.png b/front/public/images/small/StorageDrawersMisc/trim_0/0.png deleted file mode 100644 index 71d79dd34e..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/1.png b/front/public/images/small/StorageDrawersMisc/trim_0/1.png deleted file mode 100644 index 62546113d7..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/2.png b/front/public/images/small/StorageDrawersMisc/trim_0/2.png deleted file mode 100644 index 287d42983f..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/3.png b/front/public/images/small/StorageDrawersMisc/trim_0/3.png deleted file mode 100644 index c741aface3..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/4.png b/front/public/images/small/StorageDrawersMisc/trim_0/4.png deleted file mode 100644 index eb88808ac3..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/5.png b/front/public/images/small/StorageDrawersMisc/trim_0/5.png deleted file mode 100644 index ecab98cefb..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/6.png b/front/public/images/small/StorageDrawersMisc/trim_0/6.png deleted file mode 100644 index 2db037f3b4..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/7.png b/front/public/images/small/StorageDrawersMisc/trim_0/7.png deleted file mode 100644 index da9fd8edc6..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_0/8.png b/front/public/images/small/StorageDrawersMisc/trim_0/8.png deleted file mode 100644 index 9947a06a5c..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_0/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/0.png b/front/public/images/small/StorageDrawersMisc/trim_1/0.png deleted file mode 100644 index 0172ecdedd..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/1.png b/front/public/images/small/StorageDrawersMisc/trim_1/1.png deleted file mode 100644 index 0ad1d9d676..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/10.png b/front/public/images/small/StorageDrawersMisc/trim_1/10.png deleted file mode 100644 index 5514d98b6a..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/11.png b/front/public/images/small/StorageDrawersMisc/trim_1/11.png deleted file mode 100644 index 90b82bec7d..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/2.png b/front/public/images/small/StorageDrawersMisc/trim_1/2.png deleted file mode 100644 index 0d3c1ff559..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/3.png b/front/public/images/small/StorageDrawersMisc/trim_1/3.png deleted file mode 100644 index 490f6aa9dc..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/4.png b/front/public/images/small/StorageDrawersMisc/trim_1/4.png deleted file mode 100644 index c7719ec919..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/5.png b/front/public/images/small/StorageDrawersMisc/trim_1/5.png deleted file mode 100644 index a87c2c8dd8..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/6.png b/front/public/images/small/StorageDrawersMisc/trim_1/6.png deleted file mode 100644 index ffa21e4f9f..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/7.png b/front/public/images/small/StorageDrawersMisc/trim_1/7.png deleted file mode 100644 index 515b286113..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/8.png b/front/public/images/small/StorageDrawersMisc/trim_1/8.png deleted file mode 100644 index e931d4a9f2..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersMisc/trim_1/9.png b/front/public/images/small/StorageDrawersMisc/trim_1/9.png deleted file mode 100644 index 35d8d4efa3..0000000000 Binary files a/front/public/images/small/StorageDrawersMisc/trim_1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/0.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/0.png deleted file mode 100644 index 208e9fd7e1..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/1.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/1.png deleted file mode 100644 index a4a12027b8..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/10.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/10.png deleted file mode 100644 index df807aef77..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/11.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/11.png deleted file mode 100644 index 0ba9412a9a..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/12.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/12.png deleted file mode 100644 index 74856ab884..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/2.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/2.png deleted file mode 100644 index b933353130..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/3.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/3.png deleted file mode 100644 index 716b7bce5b..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/4.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/4.png deleted file mode 100644 index 0b160de68f..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/5.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/5.png deleted file mode 100644 index 762c407791..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/6.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/6.png deleted file mode 100644 index 5f568d4c56..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/7.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/7.png deleted file mode 100644 index 31153218de..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/8.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/8.png deleted file mode 100644 index fad0626497..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers1/9.png b/front/public/images/small/StorageDrawersNatura/fullDrawers1/9.png deleted file mode 100644 index f142fe350f..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers1/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/0.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/0.png deleted file mode 100644 index bc33e0de9b..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/1.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/1.png deleted file mode 100644 index e1db138b83..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/10.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/10.png deleted file mode 100644 index 499acf1cdd..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/11.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/11.png deleted file mode 100644 index 79b2d2d089..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/12.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/12.png deleted file mode 100644 index d549640df1..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/2.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/2.png deleted file mode 100644 index 6d20c02e60..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/3.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/3.png deleted file mode 100644 index 41abca2996..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/4.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/4.png deleted file mode 100644 index c786bfd9d3..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/5.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/5.png deleted file mode 100644 index 749fbea9a0..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/6.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/6.png deleted file mode 100644 index e62e29c5a7..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/7.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/7.png deleted file mode 100644 index 2e5d865f12..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/8.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/8.png deleted file mode 100644 index d782bc03fe..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers2/9.png b/front/public/images/small/StorageDrawersNatura/fullDrawers2/9.png deleted file mode 100644 index 88697599b3..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers2/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/0.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/0.png deleted file mode 100644 index b5719de0e2..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/1.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/1.png deleted file mode 100644 index 2f7c37ae50..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/10.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/10.png deleted file mode 100644 index d0dab1431d..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/11.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/11.png deleted file mode 100644 index 5d5fb2c548..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/12.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/12.png deleted file mode 100644 index 5cb0b414af..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/2.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/2.png deleted file mode 100644 index 09ac8c5206..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/3.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/3.png deleted file mode 100644 index dabac5bea4..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/4.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/4.png deleted file mode 100644 index 3b6d9641a3..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/5.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/5.png deleted file mode 100644 index e8c9b2d18f..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/6.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/6.png deleted file mode 100644 index c309e552d8..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/7.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/7.png deleted file mode 100644 index c962c6dbfa..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/8.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/8.png deleted file mode 100644 index de0ef0a283..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/fullDrawers4/9.png b/front/public/images/small/StorageDrawersNatura/fullDrawers4/9.png deleted file mode 100644 index e1f7888100..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/fullDrawers4/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/0.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/0.png deleted file mode 100644 index 4ed991a072..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/1.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/1.png deleted file mode 100644 index 135322d2d5..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/10.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/10.png deleted file mode 100644 index a4b264e552..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/11.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/11.png deleted file mode 100644 index ff38dbaa4f..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/12.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/12.png deleted file mode 100644 index a9d877f51b..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/2.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/2.png deleted file mode 100644 index c4351f806e..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/3.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/3.png deleted file mode 100644 index 8a36f62d16..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/4.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/4.png deleted file mode 100644 index acde2d7eb6..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/5.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/5.png deleted file mode 100644 index 8b42d1d281..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/6.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/6.png deleted file mode 100644 index 5b225034d3..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/7.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/7.png deleted file mode 100644 index 74fa9bad4b..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/8.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/8.png deleted file mode 100644 index ff097e73d7..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers2/9.png b/front/public/images/small/StorageDrawersNatura/halfDrawers2/9.png deleted file mode 100644 index 0167086a42..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers2/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/0.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/0.png deleted file mode 100644 index 0d90438846..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/1.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/1.png deleted file mode 100644 index fcec5c83ab..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/10.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/10.png deleted file mode 100644 index bdb27d25ea..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/11.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/11.png deleted file mode 100644 index fcf1072160..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/12.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/12.png deleted file mode 100644 index edca3c64f3..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/2.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/2.png deleted file mode 100644 index 9c59650f1b..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/3.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/3.png deleted file mode 100644 index df06d1edb8..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/4.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/4.png deleted file mode 100644 index a3fb78785a..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/5.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/5.png deleted file mode 100644 index 9c953db716..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/6.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/6.png deleted file mode 100644 index f7e063370f..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/7.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/7.png deleted file mode 100644 index 8abd5ad077..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/8.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/8.png deleted file mode 100644 index b36dab3f3d..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/halfDrawers4/9.png b/front/public/images/small/StorageDrawersNatura/halfDrawers4/9.png deleted file mode 100644 index ec151a95ff..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/halfDrawers4/9.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/0.png b/front/public/images/small/StorageDrawersNatura/trim/0.png deleted file mode 100644 index 8ae982a577..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/0.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/1.png b/front/public/images/small/StorageDrawersNatura/trim/1.png deleted file mode 100644 index 68514dbb03..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/1.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/10.png b/front/public/images/small/StorageDrawersNatura/trim/10.png deleted file mode 100644 index 0192b963d6..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/10.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/11.png b/front/public/images/small/StorageDrawersNatura/trim/11.png deleted file mode 100644 index 4487903065..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/11.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/12.png b/front/public/images/small/StorageDrawersNatura/trim/12.png deleted file mode 100644 index 9d5c9790e3..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/12.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/2.png b/front/public/images/small/StorageDrawersNatura/trim/2.png deleted file mode 100644 index efbbf21ad3..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/2.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/3.png b/front/public/images/small/StorageDrawersNatura/trim/3.png deleted file mode 100644 index 3e8cec8cb5..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/3.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/4.png b/front/public/images/small/StorageDrawersNatura/trim/4.png deleted file mode 100644 index ee832faef8..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/4.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/5.png b/front/public/images/small/StorageDrawersNatura/trim/5.png deleted file mode 100644 index 61129b796c..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/5.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/6.png b/front/public/images/small/StorageDrawersNatura/trim/6.png deleted file mode 100644 index 5996563753..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/6.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/7.png b/front/public/images/small/StorageDrawersNatura/trim/7.png deleted file mode 100644 index 98ce6d0972..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/7.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/8.png b/front/public/images/small/StorageDrawersNatura/trim/8.png deleted file mode 100644 index 59d9f5e529..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/8.png and /dev/null differ diff --git a/front/public/images/small/StorageDrawersNatura/trim/9.png b/front/public/images/small/StorageDrawersNatura/trim/9.png deleted file mode 100644 index 5fb60e96af..0000000000 Binary files a/front/public/images/small/StorageDrawersNatura/trim/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Armor.DryingRack/0.png b/front/public/images/small/TConstruct/Armor.DryingRack/0.png deleted file mode 100644 index a8ad44fed9..0000000000 Binary files a/front/public/images/small/TConstruct/Armor.DryingRack/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ArrowAmmo/0.png b/front/public/images/small/TConstruct/ArrowAmmo/0.png deleted file mode 100644 index 06f61f395a..0000000000 Binary files a/front/public/images/small/TConstruct/ArrowAmmo/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BattleSignBlock/0.png b/front/public/images/small/TConstruct/BattleSignBlock/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/TConstruct/BattleSignBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltAmmo/0.png b/front/public/images/small/TConstruct/BoltAmmo/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltAmmo/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/0.png b/front/public/images/small/TConstruct/BoltPart/0.png deleted file mode 100644 index 45ddc86006..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1.png b/front/public/images/small/TConstruct/BoltPart/1.png deleted file mode 100644 index d543052273..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/10.png b/front/public/images/small/TConstruct/BoltPart/10.png deleted file mode 100644 index 5f69d59db4..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/11.png b/front/public/images/small/TConstruct/BoltPart/11.png deleted file mode 100644 index 11fc603d94..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/12.png b/front/public/images/small/TConstruct/BoltPart/12.png deleted file mode 100644 index 3baf40710a..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/13.png b/front/public/images/small/TConstruct/BoltPart/13.png deleted file mode 100644 index 989d9d02f8..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/14.png b/front/public/images/small/TConstruct/BoltPart/14.png deleted file mode 100644 index 9c020a64c4..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/15.png b/front/public/images/small/TConstruct/BoltPart/15.png deleted file mode 100644 index 904c3d1525..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1500.png b/front/public/images/small/TConstruct/BoltPart/1500.png deleted file mode 100644 index a88730eafc..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1500.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1501.png b/front/public/images/small/TConstruct/BoltPart/1501.png deleted file mode 100644 index e8244be6e5..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1501.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1502.png b/front/public/images/small/TConstruct/BoltPart/1502.png deleted file mode 100644 index 2b5e0fd0a6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1502.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1503.png b/front/public/images/small/TConstruct/BoltPart/1503.png deleted file mode 100644 index 7cc6fe2e07..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1503.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1504.png b/front/public/images/small/TConstruct/BoltPart/1504.png deleted file mode 100644 index 75db08f664..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1504.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1505.png b/front/public/images/small/TConstruct/BoltPart/1505.png deleted file mode 100644 index 577924e6b4..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1505.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1506.png b/front/public/images/small/TConstruct/BoltPart/1506.png deleted file mode 100644 index 7dc9f1df5b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1506.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1507.png b/front/public/images/small/TConstruct/BoltPart/1507.png deleted file mode 100644 index 07c72072ec..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1507.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1508.png b/front/public/images/small/TConstruct/BoltPart/1508.png deleted file mode 100644 index a48d49a0fe..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1508.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1509.png b/front/public/images/small/TConstruct/BoltPart/1509.png deleted file mode 100644 index 62386cea5b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1509.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1510.png b/front/public/images/small/TConstruct/BoltPart/1510.png deleted file mode 100644 index 3099aed20d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1510.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1511.png b/front/public/images/small/TConstruct/BoltPart/1511.png deleted file mode 100644 index a48d49a0fe..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1511.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1512.png b/front/public/images/small/TConstruct/BoltPart/1512.png deleted file mode 100644 index 3f7860b888..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1512.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1513.png b/front/public/images/small/TConstruct/BoltPart/1513.png deleted file mode 100644 index cab1063c3e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1513.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1514.png b/front/public/images/small/TConstruct/BoltPart/1514.png deleted file mode 100644 index 706c579de0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1514.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1515.png b/front/public/images/small/TConstruct/BoltPart/1515.png deleted file mode 100644 index 99a79c1fb9..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1515.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1516.png b/front/public/images/small/TConstruct/BoltPart/1516.png deleted file mode 100644 index ad49d816a3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1516.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1517.png b/front/public/images/small/TConstruct/BoltPart/1517.png deleted file mode 100644 index d67119f2af..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1517.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1518.png b/front/public/images/small/TConstruct/BoltPart/1518.png deleted file mode 100644 index b53b6563da..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1518.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1519.png b/front/public/images/small/TConstruct/BoltPart/1519.png deleted file mode 100644 index 3aac93014a..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1519.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1520.png b/front/public/images/small/TConstruct/BoltPart/1520.png deleted file mode 100644 index 07bf91ecef..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1520.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1521.png b/front/public/images/small/TConstruct/BoltPart/1521.png deleted file mode 100644 index 2d9441b6d0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1521.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1522.png b/front/public/images/small/TConstruct/BoltPart/1522.png deleted file mode 100644 index 85633d8c61..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1522.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1523.png b/front/public/images/small/TConstruct/BoltPart/1523.png deleted file mode 100644 index a11fe45c51..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1523.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1524.png b/front/public/images/small/TConstruct/BoltPart/1524.png deleted file mode 100644 index 270be58527..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1524.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1525.png b/front/public/images/small/TConstruct/BoltPart/1525.png deleted file mode 100644 index 2ac4a90f86..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1525.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1526.png b/front/public/images/small/TConstruct/BoltPart/1526.png deleted file mode 100644 index 51e5679e4a..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1526.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1527.png b/front/public/images/small/TConstruct/BoltPart/1527.png deleted file mode 100644 index 54f06b9a40..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1527.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1528.png b/front/public/images/small/TConstruct/BoltPart/1528.png deleted file mode 100644 index 5480cb11e6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1528.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1529.png b/front/public/images/small/TConstruct/BoltPart/1529.png deleted file mode 100644 index dd0c5b5705..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1529.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1530.png b/front/public/images/small/TConstruct/BoltPart/1530.png deleted file mode 100644 index 1df84898e7..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1530.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1531.png b/front/public/images/small/TConstruct/BoltPart/1531.png deleted file mode 100644 index e469446f52..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1531.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1532.png b/front/public/images/small/TConstruct/BoltPart/1532.png deleted file mode 100644 index 7217db4357..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1532.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1533.png b/front/public/images/small/TConstruct/BoltPart/1533.png deleted file mode 100644 index 696bada5ea..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1533.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1534.png b/front/public/images/small/TConstruct/BoltPart/1534.png deleted file mode 100644 index 94ed8fe1f9..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1534.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1535.png b/front/public/images/small/TConstruct/BoltPart/1535.png deleted file mode 100644 index 7e2a20a873..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1535.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1536.png b/front/public/images/small/TConstruct/BoltPart/1536.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1536.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1537.png b/front/public/images/small/TConstruct/BoltPart/1537.png deleted file mode 100644 index 37fbd366de..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1537.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1538.png b/front/public/images/small/TConstruct/BoltPart/1538.png deleted file mode 100644 index 6c44e3cc3f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1538.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1539.png b/front/public/images/small/TConstruct/BoltPart/1539.png deleted file mode 100644 index a9d986fdef..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1539.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1540.png b/front/public/images/small/TConstruct/BoltPart/1540.png deleted file mode 100644 index 0e880e3e01..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1540.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1541.png b/front/public/images/small/TConstruct/BoltPart/1541.png deleted file mode 100644 index c02b01e0e6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1541.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1542.png b/front/public/images/small/TConstruct/BoltPart/1542.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1542.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1543.png b/front/public/images/small/TConstruct/BoltPart/1543.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1543.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1544.png b/front/public/images/small/TConstruct/BoltPart/1544.png deleted file mode 100644 index 8fda942124..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1544.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1545.png b/front/public/images/small/TConstruct/BoltPart/1545.png deleted file mode 100644 index 7d19d1e20a..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1545.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1546.png b/front/public/images/small/TConstruct/BoltPart/1546.png deleted file mode 100644 index f77e405a86..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1546.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1547.png b/front/public/images/small/TConstruct/BoltPart/1547.png deleted file mode 100644 index 46a7f7eeb6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1547.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1548.png b/front/public/images/small/TConstruct/BoltPart/1548.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1548.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1549.png b/front/public/images/small/TConstruct/BoltPart/1549.png deleted file mode 100644 index 61f0e59f34..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1549.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1550.png b/front/public/images/small/TConstruct/BoltPart/1550.png deleted file mode 100644 index 47e55b0909..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1550.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1551.png b/front/public/images/small/TConstruct/BoltPart/1551.png deleted file mode 100644 index 317d158683..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1551.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1553.png b/front/public/images/small/TConstruct/BoltPart/1553.png deleted file mode 100644 index 9aea25be44..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1553.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1554.png b/front/public/images/small/TConstruct/BoltPart/1554.png deleted file mode 100644 index 9117634d61..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1554.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1555.png b/front/public/images/small/TConstruct/BoltPart/1555.png deleted file mode 100644 index cf1a94df8d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1555.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1556.png b/front/public/images/small/TConstruct/BoltPart/1556.png deleted file mode 100644 index 706c579de0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1556.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1557.png b/front/public/images/small/TConstruct/BoltPart/1557.png deleted file mode 100644 index 706c579de0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1557.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1562.png b/front/public/images/small/TConstruct/BoltPart/1562.png deleted file mode 100644 index 83dd4316e1..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1562.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1563.png b/front/public/images/small/TConstruct/BoltPart/1563.png deleted file mode 100644 index cf1a94df8d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1563.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1564.png b/front/public/images/small/TConstruct/BoltPart/1564.png deleted file mode 100644 index ce1053e2ef..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1564.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1565.png b/front/public/images/small/TConstruct/BoltPart/1565.png deleted file mode 100644 index cd47590a80..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1565.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1566.png b/front/public/images/small/TConstruct/BoltPart/1566.png deleted file mode 100644 index 91e6fed801..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1566.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1567.png b/front/public/images/small/TConstruct/BoltPart/1567.png deleted file mode 100644 index 1d1fcb6ebe..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1567.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1568.png b/front/public/images/small/TConstruct/BoltPart/1568.png deleted file mode 100644 index 918f4048d6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1568.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1570.png b/front/public/images/small/TConstruct/BoltPart/1570.png deleted file mode 100644 index 711c1d7563..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1570.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1571.png b/front/public/images/small/TConstruct/BoltPart/1571.png deleted file mode 100644 index d26db8453e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1571.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1572.png b/front/public/images/small/TConstruct/BoltPart/1572.png deleted file mode 100644 index 6da32d3d5b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1572.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1573.png b/front/public/images/small/TConstruct/BoltPart/1573.png deleted file mode 100644 index ac8dcbcdf1..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1573.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1574.png b/front/public/images/small/TConstruct/BoltPart/1574.png deleted file mode 100644 index 2d9441b6d0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1574.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1575.png b/front/public/images/small/TConstruct/BoltPart/1575.png deleted file mode 100644 index 46a7f7eeb6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1575.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1576.png b/front/public/images/small/TConstruct/BoltPart/1576.png deleted file mode 100644 index 2d9441b6d0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1576.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1577.png b/front/public/images/small/TConstruct/BoltPart/1577.png deleted file mode 100644 index 83b3f2317c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1577.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1578.png b/front/public/images/small/TConstruct/BoltPart/1578.png deleted file mode 100644 index d3d1d0b2c4..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1578.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1579.png b/front/public/images/small/TConstruct/BoltPart/1579.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1579.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1582.png b/front/public/images/small/TConstruct/BoltPart/1582.png deleted file mode 100644 index 00928c05c1..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1582.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1583.png b/front/public/images/small/TConstruct/BoltPart/1583.png deleted file mode 100644 index 2b8ecdd5ab..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1583.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1584.png b/front/public/images/small/TConstruct/BoltPart/1584.png deleted file mode 100644 index dc9b217a26..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1584.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1585.png b/front/public/images/small/TConstruct/BoltPart/1585.png deleted file mode 100644 index f9315a51d3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1585.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1586.png b/front/public/images/small/TConstruct/BoltPart/1586.png deleted file mode 100644 index d78254c8c3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1586.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1587.png b/front/public/images/small/TConstruct/BoltPart/1587.png deleted file mode 100644 index e22289ed81..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1587.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1588.png b/front/public/images/small/TConstruct/BoltPart/1588.png deleted file mode 100644 index cf1a94df8d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1588.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1589.png b/front/public/images/small/TConstruct/BoltPart/1589.png deleted file mode 100644 index 3bcaef49a3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1589.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1590.png b/front/public/images/small/TConstruct/BoltPart/1590.png deleted file mode 100644 index 91e6fed801..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1590.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1591.png b/front/public/images/small/TConstruct/BoltPart/1591.png deleted file mode 100644 index 95b666cf60..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1591.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1592.png b/front/public/images/small/TConstruct/BoltPart/1592.png deleted file mode 100644 index 0e1387f9cb..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1592.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1593.png b/front/public/images/small/TConstruct/BoltPart/1593.png deleted file mode 100644 index c295b3a952..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1593.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1594.png b/front/public/images/small/TConstruct/BoltPart/1594.png deleted file mode 100644 index 71b9e87acc..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1594.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1595.png b/front/public/images/small/TConstruct/BoltPart/1595.png deleted file mode 100644 index 44c30946fa..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1595.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1596.png b/front/public/images/small/TConstruct/BoltPart/1596.png deleted file mode 100644 index 3610f2ac0c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1596.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1597.png b/front/public/images/small/TConstruct/BoltPart/1597.png deleted file mode 100644 index a24aa2eeb9..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1597.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1598.png b/front/public/images/small/TConstruct/BoltPart/1598.png deleted file mode 100644 index b4fcf1417b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1598.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1599.png b/front/public/images/small/TConstruct/BoltPart/1599.png deleted file mode 100644 index a54dad5a63..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1599.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/16.png b/front/public/images/small/TConstruct/BoltPart/16.png deleted file mode 100644 index 9906fe69f3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1600.png b/front/public/images/small/TConstruct/BoltPart/1600.png deleted file mode 100644 index 9dcd99705b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1600.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1601.png b/front/public/images/small/TConstruct/BoltPart/1601.png deleted file mode 100644 index 22c293a7e6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1601.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1602.png b/front/public/images/small/TConstruct/BoltPart/1602.png deleted file mode 100644 index 3dc06a922f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1602.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1603.png b/front/public/images/small/TConstruct/BoltPart/1603.png deleted file mode 100644 index 324495d180..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1603.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1604.png b/front/public/images/small/TConstruct/BoltPart/1604.png deleted file mode 100644 index d1fb55bd0a..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1604.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1605.png b/front/public/images/small/TConstruct/BoltPart/1605.png deleted file mode 100644 index 11b7021c99..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1605.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1606.png b/front/public/images/small/TConstruct/BoltPart/1606.png deleted file mode 100644 index e9fd738fad..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1606.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1607.png b/front/public/images/small/TConstruct/BoltPart/1607.png deleted file mode 100644 index 8c475bed6b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1607.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1608.png b/front/public/images/small/TConstruct/BoltPart/1608.png deleted file mode 100644 index 4a6b41d7fa..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1608.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1609.png b/front/public/images/small/TConstruct/BoltPart/1609.png deleted file mode 100644 index 2d9441b6d0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1609.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1610.png b/front/public/images/small/TConstruct/BoltPart/1610.png deleted file mode 100644 index 3099aed20d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1610.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1611.png b/front/public/images/small/TConstruct/BoltPart/1611.png deleted file mode 100644 index 8284359161..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1611.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1612.png b/front/public/images/small/TConstruct/BoltPart/1612.png deleted file mode 100644 index b34f444ad6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1612.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1613.png b/front/public/images/small/TConstruct/BoltPart/1613.png deleted file mode 100644 index 4f0828a008..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1613.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1614.png b/front/public/images/small/TConstruct/BoltPart/1614.png deleted file mode 100644 index e9fd738fad..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1614.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1615.png b/front/public/images/small/TConstruct/BoltPart/1615.png deleted file mode 100644 index 6c44e3cc3f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1615.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1616.png b/front/public/images/small/TConstruct/BoltPart/1616.png deleted file mode 100644 index 5d695a9dbb..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1616.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1617.png b/front/public/images/small/TConstruct/BoltPart/1617.png deleted file mode 100644 index 11b7021c99..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1617.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1618.png b/front/public/images/small/TConstruct/BoltPart/1618.png deleted file mode 100644 index 764b317a23..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1618.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1619.png b/front/public/images/small/TConstruct/BoltPart/1619.png deleted file mode 100644 index c0373d241c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1619.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1620.png b/front/public/images/small/TConstruct/BoltPart/1620.png deleted file mode 100644 index 91e6fed801..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1620.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1621.png b/front/public/images/small/TConstruct/BoltPart/1621.png deleted file mode 100644 index 4ec004742f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1621.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1622.png b/front/public/images/small/TConstruct/BoltPart/1622.png deleted file mode 100644 index b7b0f30643..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1622.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1623.png b/front/public/images/small/TConstruct/BoltPart/1623.png deleted file mode 100644 index eef4a225fc..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1623.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1624.png b/front/public/images/small/TConstruct/BoltPart/1624.png deleted file mode 100644 index d8956d2be2..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1624.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1625.png b/front/public/images/small/TConstruct/BoltPart/1625.png deleted file mode 100644 index c5da2fde72..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1625.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1626.png b/front/public/images/small/TConstruct/BoltPart/1626.png deleted file mode 100644 index f6f7edfdf8..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1626.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1627.png b/front/public/images/small/TConstruct/BoltPart/1627.png deleted file mode 100644 index fe9047b88b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1627.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1628.png b/front/public/images/small/TConstruct/BoltPart/1628.png deleted file mode 100644 index 542e14381b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1628.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1629.png b/front/public/images/small/TConstruct/BoltPart/1629.png deleted file mode 100644 index 26748d935e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1629.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1630.png b/front/public/images/small/TConstruct/BoltPart/1630.png deleted file mode 100644 index 8a163b389c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1630.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1631.png b/front/public/images/small/TConstruct/BoltPart/1631.png deleted file mode 100644 index 3099aed20d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1631.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1632.png b/front/public/images/small/TConstruct/BoltPart/1632.png deleted file mode 100644 index 7249b07269..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1632.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1633.png b/front/public/images/small/TConstruct/BoltPart/1633.png deleted file mode 100644 index e7a1d93e4f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1633.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1634.png b/front/public/images/small/TConstruct/BoltPart/1634.png deleted file mode 100644 index e2de1ca472..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1634.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1635.png b/front/public/images/small/TConstruct/BoltPart/1635.png deleted file mode 100644 index 7e8bb54e1f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1635.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1636.png b/front/public/images/small/TConstruct/BoltPart/1636.png deleted file mode 100644 index 422873bc75..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1636.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1637.png b/front/public/images/small/TConstruct/BoltPart/1637.png deleted file mode 100644 index a99485d0f9..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1637.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1638.png b/front/public/images/small/TConstruct/BoltPart/1638.png deleted file mode 100644 index 7aaf88c060..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1638.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1639.png b/front/public/images/small/TConstruct/BoltPart/1639.png deleted file mode 100644 index d26db8453e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1639.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1640.png b/front/public/images/small/TConstruct/BoltPart/1640.png deleted file mode 100644 index 64c698aa40..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1640.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1641.png b/front/public/images/small/TConstruct/BoltPart/1641.png deleted file mode 100644 index fa598fe0eb..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1641.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1642.png b/front/public/images/small/TConstruct/BoltPart/1642.png deleted file mode 100644 index b7ce0dd21e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1642.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1643.png b/front/public/images/small/TConstruct/BoltPart/1643.png deleted file mode 100644 index 81da02211d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1643.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1644.png b/front/public/images/small/TConstruct/BoltPart/1644.png deleted file mode 100644 index a3244d9d1f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1644.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1645.png b/front/public/images/small/TConstruct/BoltPart/1645.png deleted file mode 100644 index 7249b07269..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1645.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1646.png b/front/public/images/small/TConstruct/BoltPart/1646.png deleted file mode 100644 index e9fd738fad..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1646.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1647.png b/front/public/images/small/TConstruct/BoltPart/1647.png deleted file mode 100644 index 706c579de0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1647.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1648.png b/front/public/images/small/TConstruct/BoltPart/1648.png deleted file mode 100644 index 3099aed20d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1648.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1649.png b/front/public/images/small/TConstruct/BoltPart/1649.png deleted file mode 100644 index 9c26b80232..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1649.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1650.png b/front/public/images/small/TConstruct/BoltPart/1650.png deleted file mode 100644 index e334a021b5..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1650.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1651.png b/front/public/images/small/TConstruct/BoltPart/1651.png deleted file mode 100644 index 7116204e06..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1651.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1652.png b/front/public/images/small/TConstruct/BoltPart/1652.png deleted file mode 100644 index 889ac89ebb..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1652.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1653.png b/front/public/images/small/TConstruct/BoltPart/1653.png deleted file mode 100644 index 96654e586b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1653.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1654.png b/front/public/images/small/TConstruct/BoltPart/1654.png deleted file mode 100644 index d4951c968e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1654.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1655.png b/front/public/images/small/TConstruct/BoltPart/1655.png deleted file mode 100644 index 4c939af47f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1655.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1656.png b/front/public/images/small/TConstruct/BoltPart/1656.png deleted file mode 100644 index 92b4f04255..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1656.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1657.png b/front/public/images/small/TConstruct/BoltPart/1657.png deleted file mode 100644 index 2d9441b6d0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1657.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1658.png b/front/public/images/small/TConstruct/BoltPart/1658.png deleted file mode 100644 index 2fd7ae188f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1658.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1659.png b/front/public/images/small/TConstruct/BoltPart/1659.png deleted file mode 100644 index de87ddc34e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1659.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1660.png b/front/public/images/small/TConstruct/BoltPart/1660.png deleted file mode 100644 index abae437720..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1660.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1661.png b/front/public/images/small/TConstruct/BoltPart/1661.png deleted file mode 100644 index 899c80afa9..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1661.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1662.png b/front/public/images/small/TConstruct/BoltPart/1662.png deleted file mode 100644 index b55302f3b9..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1662.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1663.png b/front/public/images/small/TConstruct/BoltPart/1663.png deleted file mode 100644 index 228a7d3dc7..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1663.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1664.png b/front/public/images/small/TConstruct/BoltPart/1664.png deleted file mode 100644 index 4213c71dab..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1664.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1665.png b/front/public/images/small/TConstruct/BoltPart/1665.png deleted file mode 100644 index 731889291d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1665.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1666.png b/front/public/images/small/TConstruct/BoltPart/1666.png deleted file mode 100644 index 8e84ca8f02..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1666.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1667.png b/front/public/images/small/TConstruct/BoltPart/1667.png deleted file mode 100644 index 79c4140596..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1667.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1668.png b/front/public/images/small/TConstruct/BoltPart/1668.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1668.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1670.png b/front/public/images/small/TConstruct/BoltPart/1670.png deleted file mode 100644 index b8bf86b961..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1670.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1672.png b/front/public/images/small/TConstruct/BoltPart/1672.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1672.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1673.png b/front/public/images/small/TConstruct/BoltPart/1673.png deleted file mode 100644 index 68c0890d60..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1673.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1674.png b/front/public/images/small/TConstruct/BoltPart/1674.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1674.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1675.png b/front/public/images/small/TConstruct/BoltPart/1675.png deleted file mode 100644 index e9fd738fad..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1675.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1676.png b/front/public/images/small/TConstruct/BoltPart/1676.png deleted file mode 100644 index caa4bb01fe..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1676.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1677.png b/front/public/images/small/TConstruct/BoltPart/1677.png deleted file mode 100644 index fea3aa2736..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1677.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1678.png b/front/public/images/small/TConstruct/BoltPart/1678.png deleted file mode 100644 index 3b846de667..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1678.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1679.png b/front/public/images/small/TConstruct/BoltPart/1679.png deleted file mode 100644 index 56fe3e6d3f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1679.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1680.png b/front/public/images/small/TConstruct/BoltPart/1680.png deleted file mode 100644 index fb3feab0f7..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1680.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1681.png b/front/public/images/small/TConstruct/BoltPart/1681.png deleted file mode 100644 index d97934be9e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1681.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1682.png b/front/public/images/small/TConstruct/BoltPart/1682.png deleted file mode 100644 index bcae340855..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1682.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1683.png b/front/public/images/small/TConstruct/BoltPart/1683.png deleted file mode 100644 index dd3493d17c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1683.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1684.png b/front/public/images/small/TConstruct/BoltPart/1684.png deleted file mode 100644 index 8e06252235..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1684.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1685.png b/front/public/images/small/TConstruct/BoltPart/1685.png deleted file mode 100644 index 10658257e7..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1685.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1686.png b/front/public/images/small/TConstruct/BoltPart/1686.png deleted file mode 100644 index 2d9441b6d0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1686.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1687.png b/front/public/images/small/TConstruct/BoltPart/1687.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1687.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1688.png b/front/public/images/small/TConstruct/BoltPart/1688.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1688.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1689.png b/front/public/images/small/TConstruct/BoltPart/1689.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1689.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1690.png b/front/public/images/small/TConstruct/BoltPart/1690.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1690.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1691.png b/front/public/images/small/TConstruct/BoltPart/1691.png deleted file mode 100644 index 6f39b3dd26..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1691.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1692.png b/front/public/images/small/TConstruct/BoltPart/1692.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1692.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1693.png b/front/public/images/small/TConstruct/BoltPart/1693.png deleted file mode 100644 index 7c7bc6eac3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1693.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1694.png b/front/public/images/small/TConstruct/BoltPart/1694.png deleted file mode 100644 index 442d14d8bd..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1694.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1695.png b/front/public/images/small/TConstruct/BoltPart/1695.png deleted file mode 100644 index 6675b64981..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1695.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1696.png b/front/public/images/small/TConstruct/BoltPart/1696.png deleted file mode 100644 index 58a56b0f8b..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1696.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1697.png b/front/public/images/small/TConstruct/BoltPart/1697.png deleted file mode 100644 index 605ef34309..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1697.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1698.png b/front/public/images/small/TConstruct/BoltPart/1698.png deleted file mode 100644 index 2d9441b6d0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1698.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1699.png b/front/public/images/small/TConstruct/BoltPart/1699.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1699.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/17.png b/front/public/images/small/TConstruct/BoltPart/17.png deleted file mode 100644 index 97ab3c388c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1700.png b/front/public/images/small/TConstruct/BoltPart/1700.png deleted file mode 100644 index 274514c8c4..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1700.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1701.png b/front/public/images/small/TConstruct/BoltPart/1701.png deleted file mode 100644 index fce3d06274..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1701.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1702.png b/front/public/images/small/TConstruct/BoltPart/1702.png deleted file mode 100644 index e896c96bd6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1702.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1703.png b/front/public/images/small/TConstruct/BoltPart/1703.png deleted file mode 100644 index ef872600ee..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1703.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1704.png b/front/public/images/small/TConstruct/BoltPart/1704.png deleted file mode 100644 index 16b9985c7f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1704.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1705.png b/front/public/images/small/TConstruct/BoltPart/1705.png deleted file mode 100644 index cd47590a80..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1705.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1706.png b/front/public/images/small/TConstruct/BoltPart/1706.png deleted file mode 100644 index 3099aed20d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1706.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1707.png b/front/public/images/small/TConstruct/BoltPart/1707.png deleted file mode 100644 index fecddfafbf..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1707.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1708.png b/front/public/images/small/TConstruct/BoltPart/1708.png deleted file mode 100644 index 75db08f664..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1708.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1709.png b/front/public/images/small/TConstruct/BoltPart/1709.png deleted file mode 100644 index c44b68b41e..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1709.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1710.png b/front/public/images/small/TConstruct/BoltPart/1710.png deleted file mode 100644 index 922715590f..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1710.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1711.png b/front/public/images/small/TConstruct/BoltPart/1711.png deleted file mode 100644 index 05ec624b94..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1711.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1712.png b/front/public/images/small/TConstruct/BoltPart/1712.png deleted file mode 100644 index 059aeab2a1..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1712.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1713.png b/front/public/images/small/TConstruct/BoltPart/1713.png deleted file mode 100644 index 55b92ba63c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1713.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1714.png b/front/public/images/small/TConstruct/BoltPart/1714.png deleted file mode 100644 index ecfd418dc7..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1714.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1715.png b/front/public/images/small/TConstruct/BoltPart/1715.png deleted file mode 100644 index ff3e63e1d1..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1715.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1716.png b/front/public/images/small/TConstruct/BoltPart/1716.png deleted file mode 100644 index b12a2c1905..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1716.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1717.png b/front/public/images/small/TConstruct/BoltPart/1717.png deleted file mode 100644 index 186a800ac7..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1717.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1718.png b/front/public/images/small/TConstruct/BoltPart/1718.png deleted file mode 100644 index 37d26dede6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1718.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1719.png b/front/public/images/small/TConstruct/BoltPart/1719.png deleted file mode 100644 index 87da12af77..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1719.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1720.png b/front/public/images/small/TConstruct/BoltPart/1720.png deleted file mode 100644 index 87da12af77..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1720.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1721.png b/front/public/images/small/TConstruct/BoltPart/1721.png deleted file mode 100644 index 9906fe69f3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1721.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1722.png b/front/public/images/small/TConstruct/BoltPart/1722.png deleted file mode 100644 index 129b4b3263..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1722.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1723.png b/front/public/images/small/TConstruct/BoltPart/1723.png deleted file mode 100644 index 991631bc95..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1723.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1724.png b/front/public/images/small/TConstruct/BoltPart/1724.png deleted file mode 100644 index 286fb5bf05..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1724.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1725.png b/front/public/images/small/TConstruct/BoltPart/1725.png deleted file mode 100644 index cc01807489..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1725.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1726.png b/front/public/images/small/TConstruct/BoltPart/1726.png deleted file mode 100644 index 1b621a8152..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1726.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1727.png b/front/public/images/small/TConstruct/BoltPart/1727.png deleted file mode 100644 index d12084f7de..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1727.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1728.png b/front/public/images/small/TConstruct/BoltPart/1728.png deleted file mode 100644 index a56adfdb81..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1728.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1729.png b/front/public/images/small/TConstruct/BoltPart/1729.png deleted file mode 100644 index 05008432a3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1729.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1730.png b/front/public/images/small/TConstruct/BoltPart/1730.png deleted file mode 100644 index ed9710117c..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1730.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1731.png b/front/public/images/small/TConstruct/BoltPart/1731.png deleted file mode 100644 index b113488c42..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1731.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1732.png b/front/public/images/small/TConstruct/BoltPart/1732.png deleted file mode 100644 index f22cc00483..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1732.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1733.png b/front/public/images/small/TConstruct/BoltPart/1733.png deleted file mode 100644 index fd698e05f4..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1733.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1734.png b/front/public/images/small/TConstruct/BoltPart/1734.png deleted file mode 100644 index 2cab398457..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1734.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1735.png b/front/public/images/small/TConstruct/BoltPart/1735.png deleted file mode 100644 index f21989e0c3..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1735.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1740.png b/front/public/images/small/TConstruct/BoltPart/1740.png deleted file mode 100644 index 7e7413fddc..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1740.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1741.png b/front/public/images/small/TConstruct/BoltPart/1741.png deleted file mode 100644 index 603a4e7cc6..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1741.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1742.png b/front/public/images/small/TConstruct/BoltPart/1742.png deleted file mode 100644 index 22efcef119..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1742.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1743.png b/front/public/images/small/TConstruct/BoltPart/1743.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1743.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1744.png b/front/public/images/small/TConstruct/BoltPart/1744.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1744.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1745.png b/front/public/images/small/TConstruct/BoltPart/1745.png deleted file mode 100644 index a28db7d09a..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1745.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/1746.png b/front/public/images/small/TConstruct/BoltPart/1746.png deleted file mode 100644 index cbf9fe42b1..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/1746.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/18.png b/front/public/images/small/TConstruct/BoltPart/18.png deleted file mode 100644 index 5de9517aed..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/2.png b/front/public/images/small/TConstruct/BoltPart/2.png deleted file mode 100644 index b1715b38b4..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/3.png b/front/public/images/small/TConstruct/BoltPart/3.png deleted file mode 100644 index 74f196441d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/314.png b/front/public/images/small/TConstruct/BoltPart/314.png deleted file mode 100644 index 1386aeda8d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/4.png b/front/public/images/small/TConstruct/BoltPart/4.png deleted file mode 100644 index cd8b39fc2d..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/5.png b/front/public/images/small/TConstruct/BoltPart/5.png deleted file mode 100644 index 86f5c6b643..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/6.png b/front/public/images/small/TConstruct/BoltPart/6.png deleted file mode 100644 index 4e11d85cea..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/7.png b/front/public/images/small/TConstruct/BoltPart/7.png deleted file mode 100644 index 1198975df2..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/8.png b/front/public/images/small/TConstruct/BoltPart/8.png deleted file mode 100644 index b15d7c93f0..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BoltPart/9.png b/front/public/images/small/TConstruct/BoltPart/9.png deleted file mode 100644 index 6132595550..0000000000 Binary files a/front/public/images/small/TConstruct/BoltPart/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Boneana/0.png b/front/public/images/small/TConstruct/Boneana/0.png deleted file mode 100644 index 2c8096c33e..0000000000 Binary files a/front/public/images/small/TConstruct/Boneana/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/0.png b/front/public/images/small/TConstruct/BowLimbPart/0.png deleted file mode 100644 index 0be8e58eae..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/1.png b/front/public/images/small/TConstruct/BowLimbPart/1.png deleted file mode 100644 index 45f22ed6bb..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/10.png b/front/public/images/small/TConstruct/BowLimbPart/10.png deleted file mode 100644 index 60eac3b32b..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/11.png b/front/public/images/small/TConstruct/BowLimbPart/11.png deleted file mode 100644 index 797d2f9cb2..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/12.png b/front/public/images/small/TConstruct/BowLimbPart/12.png deleted file mode 100644 index 3a1bae2499..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/13.png b/front/public/images/small/TConstruct/BowLimbPart/13.png deleted file mode 100644 index 54fbf7c1d3..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/14.png b/front/public/images/small/TConstruct/BowLimbPart/14.png deleted file mode 100644 index 45e3e59c57..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/15.png b/front/public/images/small/TConstruct/BowLimbPart/15.png deleted file mode 100644 index 648bb7bf3b..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/16.png b/front/public/images/small/TConstruct/BowLimbPart/16.png deleted file mode 100644 index f6e37cfcbd..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/17.png b/front/public/images/small/TConstruct/BowLimbPart/17.png deleted file mode 100644 index c720be5a8b..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/18.png b/front/public/images/small/TConstruct/BowLimbPart/18.png deleted file mode 100644 index e734e04193..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/2.png b/front/public/images/small/TConstruct/BowLimbPart/2.png deleted file mode 100644 index 8bbc30e4a5..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/3.png b/front/public/images/small/TConstruct/BowLimbPart/3.png deleted file mode 100644 index 4f7194e1a0..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/314.png b/front/public/images/small/TConstruct/BowLimbPart/314.png deleted file mode 100644 index fc646b7206..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/4.png b/front/public/images/small/TConstruct/BowLimbPart/4.png deleted file mode 100644 index 04228e7222..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/5.png b/front/public/images/small/TConstruct/BowLimbPart/5.png deleted file mode 100644 index 87866d9482..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/6.png b/front/public/images/small/TConstruct/BowLimbPart/6.png deleted file mode 100644 index 2b9cd73a9b..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/7.png b/front/public/images/small/TConstruct/BowLimbPart/7.png deleted file mode 100644 index 7d822ae1f4..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/8.png b/front/public/images/small/TConstruct/BowLimbPart/8.png deleted file mode 100644 index 875683cf6f..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/BowLimbPart/9.png b/front/public/images/small/TConstruct/BowLimbPart/9.png deleted file mode 100644 index a20b73ba03..0000000000 Binary files a/front/public/images/small/TConstruct/BowLimbPart/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Cast/0.png b/front/public/images/small/TConstruct/Cast/0.png deleted file mode 100644 index 1ecbf1dd3e..0000000000 Binary files a/front/public/images/small/TConstruct/Cast/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Cast/1.png b/front/public/images/small/TConstruct/Cast/1.png deleted file mode 100644 index f0833777f7..0000000000 Binary files a/front/public/images/small/TConstruct/Cast/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Cast/2.png b/front/public/images/small/TConstruct/Cast/2.png deleted file mode 100644 index a85bec360d..0000000000 Binary files a/front/public/images/small/TConstruct/Cast/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Cast/3.png b/front/public/images/small/TConstruct/Cast/3.png deleted file mode 100644 index afb7b34734..0000000000 Binary files a/front/public/images/small/TConstruct/Cast/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CastingChannel/0.png b/front/public/images/small/TConstruct/CastingChannel/0.png deleted file mode 100644 index 5c3e9de438..0000000000 Binary files a/front/public/images/small/TConstruct/CastingChannel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CastingChannel/1.png b/front/public/images/small/TConstruct/CastingChannel/1.png deleted file mode 100644 index b466d676f7..0000000000 Binary files a/front/public/images/small/TConstruct/CastingChannel/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Clay Cast/3.png b/front/public/images/small/TConstruct/Clay Cast/3.png deleted file mode 100644 index d1bf18bb53..0000000000 Binary files a/front/public/images/small/TConstruct/Clay Cast/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftedSoil/0.png b/front/public/images/small/TConstruct/CraftedSoil/0.png deleted file mode 100644 index df3e596255..0000000000 Binary files a/front/public/images/small/TConstruct/CraftedSoil/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftedSoil/1.png b/front/public/images/small/TConstruct/CraftedSoil/1.png deleted file mode 100644 index 2fb7396413..0000000000 Binary files a/front/public/images/small/TConstruct/CraftedSoil/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftedSoil/2.png b/front/public/images/small/TConstruct/CraftedSoil/2.png deleted file mode 100644 index bf9d6cd9ea..0000000000 Binary files a/front/public/images/small/TConstruct/CraftedSoil/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftedSoil/3.png b/front/public/images/small/TConstruct/CraftedSoil/3.png deleted file mode 100644 index ef3a86b320..0000000000 Binary files a/front/public/images/small/TConstruct/CraftedSoil/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftedSoil/4.png b/front/public/images/small/TConstruct/CraftedSoil/4.png deleted file mode 100644 index fedbc37505..0000000000 Binary files a/front/public/images/small/TConstruct/CraftedSoil/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftedSoil/5.png b/front/public/images/small/TConstruct/CraftedSoil/5.png deleted file mode 100644 index 157b63862b..0000000000 Binary files a/front/public/images/small/TConstruct/CraftedSoil/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftedSoil/6.png b/front/public/images/small/TConstruct/CraftedSoil/6.png deleted file mode 100644 index 08749b8b5b..0000000000 Binary files a/front/public/images/small/TConstruct/CraftedSoil/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftingSlab/0.png b/front/public/images/small/TConstruct/CraftingSlab/0.png deleted file mode 100644 index 6be64db75f..0000000000 Binary files a/front/public/images/small/TConstruct/CraftingSlab/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftingSlab/1.png b/front/public/images/small/TConstruct/CraftingSlab/1.png deleted file mode 100644 index 5ffe6a0e7c..0000000000 Binary files a/front/public/images/small/TConstruct/CraftingSlab/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftingSlab/2.png b/front/public/images/small/TConstruct/CraftingSlab/2.png deleted file mode 100644 index 03011811f8..0000000000 Binary files a/front/public/images/small/TConstruct/CraftingSlab/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftingSlab/3.png b/front/public/images/small/TConstruct/CraftingSlab/3.png deleted file mode 100644 index 3d67c441f7..0000000000 Binary files a/front/public/images/small/TConstruct/CraftingSlab/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftingSlab/4.png b/front/public/images/small/TConstruct/CraftingSlab/4.png deleted file mode 100644 index 1cfe327e31..0000000000 Binary files a/front/public/images/small/TConstruct/CraftingSlab/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftingSlab/5.png b/front/public/images/small/TConstruct/CraftingSlab/5.png deleted file mode 100644 index 9f30dbd594..0000000000 Binary files a/front/public/images/small/TConstruct/CraftingSlab/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CraftingStation/0.png b/front/public/images/small/TConstruct/CraftingStation/0.png deleted file mode 100644 index a18cc8cec1..0000000000 Binary files a/front/public/images/small/TConstruct/CraftingStation/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Crossbow/0.png b/front/public/images/small/TConstruct/Crossbow/0.png deleted file mode 100644 index b2dd5ccd18..0000000000 Binary files a/front/public/images/small/TConstruct/Crossbow/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/0.png b/front/public/images/small/TConstruct/CrossbowBodyPart/0.png deleted file mode 100644 index 729e3c831c..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/1.png b/front/public/images/small/TConstruct/CrossbowBodyPart/1.png deleted file mode 100644 index 7d758c108e..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/10.png b/front/public/images/small/TConstruct/CrossbowBodyPart/10.png deleted file mode 100644 index c443870539..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/11.png b/front/public/images/small/TConstruct/CrossbowBodyPart/11.png deleted file mode 100644 index 105fb4905e..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/12.png b/front/public/images/small/TConstruct/CrossbowBodyPart/12.png deleted file mode 100644 index dde514496f..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/13.png b/front/public/images/small/TConstruct/CrossbowBodyPart/13.png deleted file mode 100644 index 8b35c44206..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/14.png b/front/public/images/small/TConstruct/CrossbowBodyPart/14.png deleted file mode 100644 index 0384ca0851..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/15.png b/front/public/images/small/TConstruct/CrossbowBodyPart/15.png deleted file mode 100644 index 1be69e1902..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/16.png b/front/public/images/small/TConstruct/CrossbowBodyPart/16.png deleted file mode 100644 index d99690eeef..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/17.png b/front/public/images/small/TConstruct/CrossbowBodyPart/17.png deleted file mode 100644 index c595243e9d..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/18.png b/front/public/images/small/TConstruct/CrossbowBodyPart/18.png deleted file mode 100644 index 31e3cd2ea9..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/2.png b/front/public/images/small/TConstruct/CrossbowBodyPart/2.png deleted file mode 100644 index 375cf777fc..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/3.png b/front/public/images/small/TConstruct/CrossbowBodyPart/3.png deleted file mode 100644 index 0d983e2843..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/314.png b/front/public/images/small/TConstruct/CrossbowBodyPart/314.png deleted file mode 100644 index 5ffda3f751..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/4.png b/front/public/images/small/TConstruct/CrossbowBodyPart/4.png deleted file mode 100644 index 119dd6d019..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/5.png b/front/public/images/small/TConstruct/CrossbowBodyPart/5.png deleted file mode 100644 index 44737d23a7..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/6.png b/front/public/images/small/TConstruct/CrossbowBodyPart/6.png deleted file mode 100644 index 088aeb59dc..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/7.png b/front/public/images/small/TConstruct/CrossbowBodyPart/7.png deleted file mode 100644 index 03b0b6e7b8..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/8.png b/front/public/images/small/TConstruct/CrossbowBodyPart/8.png deleted file mode 100644 index a2eda81950..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowBodyPart/9.png b/front/public/images/small/TConstruct/CrossbowBodyPart/9.png deleted file mode 100644 index 7b96a17e69..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowBodyPart/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/0.png b/front/public/images/small/TConstruct/CrossbowLimbPart/0.png deleted file mode 100644 index 95da8d9fc0..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/1.png b/front/public/images/small/TConstruct/CrossbowLimbPart/1.png deleted file mode 100644 index 63c5d48184..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/10.png b/front/public/images/small/TConstruct/CrossbowLimbPart/10.png deleted file mode 100644 index c4027172b8..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/11.png b/front/public/images/small/TConstruct/CrossbowLimbPart/11.png deleted file mode 100644 index cb4067c025..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/12.png b/front/public/images/small/TConstruct/CrossbowLimbPart/12.png deleted file mode 100644 index caaf7a0188..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/13.png b/front/public/images/small/TConstruct/CrossbowLimbPart/13.png deleted file mode 100644 index 64174c3133..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/14.png b/front/public/images/small/TConstruct/CrossbowLimbPart/14.png deleted file mode 100644 index 88525ee91c..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/15.png b/front/public/images/small/TConstruct/CrossbowLimbPart/15.png deleted file mode 100644 index 90724ab08c..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/16.png b/front/public/images/small/TConstruct/CrossbowLimbPart/16.png deleted file mode 100644 index c540043b6a..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/17.png b/front/public/images/small/TConstruct/CrossbowLimbPart/17.png deleted file mode 100644 index 1daf5ed7f1..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/18.png b/front/public/images/small/TConstruct/CrossbowLimbPart/18.png deleted file mode 100644 index 76e47432e1..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/2.png b/front/public/images/small/TConstruct/CrossbowLimbPart/2.png deleted file mode 100644 index 037e87de38..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/3.png b/front/public/images/small/TConstruct/CrossbowLimbPart/3.png deleted file mode 100644 index 30d5c0cf59..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/314.png b/front/public/images/small/TConstruct/CrossbowLimbPart/314.png deleted file mode 100644 index 5464887bd0..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/4.png b/front/public/images/small/TConstruct/CrossbowLimbPart/4.png deleted file mode 100644 index 4466e05bb3..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/5.png b/front/public/images/small/TConstruct/CrossbowLimbPart/5.png deleted file mode 100644 index 9ecdbb0887..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/6.png b/front/public/images/small/TConstruct/CrossbowLimbPart/6.png deleted file mode 100644 index 90defc01a1..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/7.png b/front/public/images/small/TConstruct/CrossbowLimbPart/7.png deleted file mode 100644 index 3f11b17402..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/8.png b/front/public/images/small/TConstruct/CrossbowLimbPart/8.png deleted file mode 100644 index 091b20350b..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/CrossbowLimbPart/9.png b/front/public/images/small/TConstruct/CrossbowLimbPart/9.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TConstruct/CrossbowLimbPart/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/FurnaceSlab/0.png b/front/public/images/small/TConstruct/FurnaceSlab/0.png deleted file mode 100644 index 39382df294..0000000000 Binary files a/front/public/images/small/TConstruct/FurnaceSlab/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/0.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/0.png deleted file mode 100644 index d411d3dda3..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/1.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/1.png deleted file mode 100644 index 15882d2787..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/10.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/10.png deleted file mode 100644 index cdfb5b4763..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/11.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/11.png deleted file mode 100644 index d02a9bcd3a..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/12.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/12.png deleted file mode 100644 index 78f263c598..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/13.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/13.png deleted file mode 100644 index 212aaaeaab..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/14.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/14.png deleted file mode 100644 index 8ae845837b..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/15.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/15.png deleted file mode 100644 index e0a135137c..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/2.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/2.png deleted file mode 100644 index 60d92e8e20..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/3.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/3.png deleted file mode 100644 index b551a5a36d..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/4.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/4.png deleted file mode 100644 index ee8d4c610e..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/5.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/5.png deleted file mode 100644 index bb69867d85..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/6.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/6.png deleted file mode 100644 index 395ecdfd06..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/7.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/7.png deleted file mode 100644 index 0113379037..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/8.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/8.png deleted file mode 100644 index 4cf433afda..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock.StainedClear/9.png b/front/public/images/small/TConstruct/GlassBlock.StainedClear/9.png deleted file mode 100644 index 1077025a62..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock.StainedClear/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassBlock/0.png b/front/public/images/small/TConstruct/GlassBlock/0.png deleted file mode 100644 index ee35c7e0da..0000000000 Binary files a/front/public/images/small/TConstruct/GlassBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPane/0.png b/front/public/images/small/TConstruct/GlassPane/0.png deleted file mode 100644 index f3ffb72883..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPane/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/0.png b/front/public/images/small/TConstruct/GlassPaneClearStained/0.png deleted file mode 100644 index b1d7f3344b..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/1.png b/front/public/images/small/TConstruct/GlassPaneClearStained/1.png deleted file mode 100644 index 2f8e6b4d75..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/10.png b/front/public/images/small/TConstruct/GlassPaneClearStained/10.png deleted file mode 100644 index 52c6f12431..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/11.png b/front/public/images/small/TConstruct/GlassPaneClearStained/11.png deleted file mode 100644 index 91618ec2ad..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/12.png b/front/public/images/small/TConstruct/GlassPaneClearStained/12.png deleted file mode 100644 index 2d1dd6de6c..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/13.png b/front/public/images/small/TConstruct/GlassPaneClearStained/13.png deleted file mode 100644 index a48b61ad23..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/14.png b/front/public/images/small/TConstruct/GlassPaneClearStained/14.png deleted file mode 100644 index 73ed656dd9..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/15.png b/front/public/images/small/TConstruct/GlassPaneClearStained/15.png deleted file mode 100644 index d1d9988ac6..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/2.png b/front/public/images/small/TConstruct/GlassPaneClearStained/2.png deleted file mode 100644 index 12732f84d2..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/3.png b/front/public/images/small/TConstruct/GlassPaneClearStained/3.png deleted file mode 100644 index 04de4b1fe8..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/4.png b/front/public/images/small/TConstruct/GlassPaneClearStained/4.png deleted file mode 100644 index a0300cea84..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/5.png b/front/public/images/small/TConstruct/GlassPaneClearStained/5.png deleted file mode 100644 index f4cc9f570b..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/6.png b/front/public/images/small/TConstruct/GlassPaneClearStained/6.png deleted file mode 100644 index f99334ad2c..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/7.png b/front/public/images/small/TConstruct/GlassPaneClearStained/7.png deleted file mode 100644 index f4e580d740..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/8.png b/front/public/images/small/TConstruct/GlassPaneClearStained/8.png deleted file mode 100644 index c2f11576f3..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlassPaneClearStained/9.png b/front/public/images/small/TConstruct/GlassPaneClearStained/9.png deleted file mode 100644 index e155892aab..0000000000 Binary files a/front/public/images/small/TConstruct/GlassPaneClearStained/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GlueBlock/0.png b/front/public/images/small/TConstruct/GlueBlock/0.png deleted file mode 100644 index a0703c5b49..0000000000 Binary files a/front/public/images/small/TConstruct/GlueBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GravelOre/0.png b/front/public/images/small/TConstruct/GravelOre/0.png deleted file mode 100644 index 72f78016b5..0000000000 Binary files a/front/public/images/small/TConstruct/GravelOre/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GravelOre/1.png b/front/public/images/small/TConstruct/GravelOre/1.png deleted file mode 100644 index b08e857cfb..0000000000 Binary files a/front/public/images/small/TConstruct/GravelOre/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GravelOre/2.png b/front/public/images/small/TConstruct/GravelOre/2.png deleted file mode 100644 index 23630b3c9a..0000000000 Binary files a/front/public/images/small/TConstruct/GravelOre/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GravelOre/3.png b/front/public/images/small/TConstruct/GravelOre/3.png deleted file mode 100644 index ce635a2446..0000000000 Binary files a/front/public/images/small/TConstruct/GravelOre/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GravelOre/4.png b/front/public/images/small/TConstruct/GravelOre/4.png deleted file mode 100644 index 3c3929b409..0000000000 Binary files a/front/public/images/small/TConstruct/GravelOre/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/GravelOre/5.png b/front/public/images/small/TConstruct/GravelOre/5.png deleted file mode 100644 index 4de95c3f27..0000000000 Binary files a/front/public/images/small/TConstruct/GravelOre/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/HeldItemBlock/0.png b/front/public/images/small/TConstruct/HeldItemBlock/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/TConstruct/HeldItemBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Javelin/0.png b/front/public/images/small/TConstruct/Javelin/0.png deleted file mode 100644 index 806ed881b5..0000000000 Binary files a/front/public/images/small/TConstruct/Javelin/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/LavaTank/0.png b/front/public/images/small/TConstruct/LavaTank/0.png deleted file mode 100644 index e8915a3d51..0000000000 Binary files a/front/public/images/small/TConstruct/LavaTank/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/LavaTank/1.png b/front/public/images/small/TConstruct/LavaTank/1.png deleted file mode 100644 index 3d4dbcaf3d..0000000000 Binary files a/front/public/images/small/TConstruct/LavaTank/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/LavaTank/2.png b/front/public/images/small/TConstruct/LavaTank/2.png deleted file mode 100644 index 37f2b666b2..0000000000 Binary files a/front/public/images/small/TConstruct/LavaTank/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/LavaTankNether/0.png b/front/public/images/small/TConstruct/LavaTankNether/0.png deleted file mode 100644 index e23b932fca..0000000000 Binary files a/front/public/images/small/TConstruct/LavaTankNether/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/LavaTankNether/1.png b/front/public/images/small/TConstruct/LavaTankNether/1.png deleted file mode 100644 index 96d5ddcdec..0000000000 Binary files a/front/public/images/small/TConstruct/LavaTankNether/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/LavaTankNether/2.png b/front/public/images/small/TConstruct/LavaTankNether/2.png deleted file mode 100644 index d981565832..0000000000 Binary files a/front/public/images/small/TConstruct/LavaTankNether/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/LongBow/0.png b/front/public/images/small/TConstruct/LongBow/0.png deleted file mode 100644 index f59b7148e9..0000000000 Binary files a/front/public/images/small/TConstruct/LongBow/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MeatBlock/0.png b/front/public/images/small/TConstruct/MeatBlock/0.png deleted file mode 100644 index f50e0559ed..0000000000 Binary files a/front/public/images/small/TConstruct/MeatBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/0.png b/front/public/images/small/TConstruct/MetalBlock/0.png deleted file mode 100644 index 7eb5a6682e..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/1.png b/front/public/images/small/TConstruct/MetalBlock/1.png deleted file mode 100644 index 80a9befb0d..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/10.png b/front/public/images/small/TConstruct/MetalBlock/10.png deleted file mode 100644 index 83fb50cff2..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/2.png b/front/public/images/small/TConstruct/MetalBlock/2.png deleted file mode 100644 index 2b2f40b589..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/3.png b/front/public/images/small/TConstruct/MetalBlock/3.png deleted file mode 100644 index 62fb166e44..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/4.png b/front/public/images/small/TConstruct/MetalBlock/4.png deleted file mode 100644 index 881949a430..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/5.png b/front/public/images/small/TConstruct/MetalBlock/5.png deleted file mode 100644 index 3a907b5a36..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/6.png b/front/public/images/small/TConstruct/MetalBlock/6.png deleted file mode 100644 index 393cb837de..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/7.png b/front/public/images/small/TConstruct/MetalBlock/7.png deleted file mode 100644 index 09f0f1a2b2..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/8.png b/front/public/images/small/TConstruct/MetalBlock/8.png deleted file mode 100644 index 78b02c9e1d..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/MetalBlock/9.png b/front/public/images/small/TConstruct/MetalBlock/9.png deleted file mode 100644 index 2a15fa1260..0000000000 Binary files a/front/public/images/small/TConstruct/MetalBlock/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Pattern/0.png b/front/public/images/small/TConstruct/Pattern/0.png deleted file mode 100644 index 3eec5973d6..0000000000 Binary files a/front/public/images/small/TConstruct/Pattern/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Pattern/1.png b/front/public/images/small/TConstruct/Pattern/1.png deleted file mode 100644 index e14c7fad29..0000000000 Binary files a/front/public/images/small/TConstruct/Pattern/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Pattern/2.png b/front/public/images/small/TConstruct/Pattern/2.png deleted file mode 100644 index b20b8db48a..0000000000 Binary files a/front/public/images/small/TConstruct/Pattern/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Pattern/3.png b/front/public/images/small/TConstruct/Pattern/3.png deleted file mode 100644 index bd0fd77ad6..0000000000 Binary files a/front/public/images/small/TConstruct/Pattern/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Redstone.Landmine/0.png b/front/public/images/small/TConstruct/Redstone.Landmine/0.png deleted file mode 100644 index e3af9198fa..0000000000 Binary files a/front/public/images/small/TConstruct/Redstone.Landmine/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Redstone.Landmine/1.png b/front/public/images/small/TConstruct/Redstone.Landmine/1.png deleted file mode 100644 index e3af9198fa..0000000000 Binary files a/front/public/images/small/TConstruct/Redstone.Landmine/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Redstone.Landmine/2.png b/front/public/images/small/TConstruct/Redstone.Landmine/2.png deleted file mode 100644 index e3af9198fa..0000000000 Binary files a/front/public/images/small/TConstruct/Redstone.Landmine/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Redstone.Landmine/3.png b/front/public/images/small/TConstruct/Redstone.Landmine/3.png deleted file mode 100644 index e3af9198fa..0000000000 Binary files a/front/public/images/small/TConstruct/Redstone.Landmine/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBlock/0.png b/front/public/images/small/TConstruct/SearedBlock/0.png deleted file mode 100644 index 4f12805e95..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBlock/1.png b/front/public/images/small/TConstruct/SearedBlock/1.png deleted file mode 100644 index 0894229a3e..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBlock/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBlock/2.png b/front/public/images/small/TConstruct/SearedBlock/2.png deleted file mode 100644 index fd729982df..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBlock/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBlockNether/0.png b/front/public/images/small/TConstruct/SearedBlockNether/0.png deleted file mode 100644 index 5ec9fa0c14..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBlockNether/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBlockNether/1.png b/front/public/images/small/TConstruct/SearedBlockNether/1.png deleted file mode 100644 index aec3c44c09..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBlockNether/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBlockNether/2.png b/front/public/images/small/TConstruct/SearedBlockNether/2.png deleted file mode 100644 index f75a3fa9d6..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBlockNether/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBrick/1.png b/front/public/images/small/TConstruct/SearedBrick/1.png deleted file mode 100644 index a86a233e74..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBrick/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBrick/2.png b/front/public/images/small/TConstruct/SearedBrick/2.png deleted file mode 100644 index a5d0609d64..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBrick/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBrick/3.png b/front/public/images/small/TConstruct/SearedBrick/3.png deleted file mode 100644 index eaad9add02..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBrick/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBrick/4.png b/front/public/images/small/TConstruct/SearedBrick/4.png deleted file mode 100644 index 79c8b8197b..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBrick/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedBrick/5.png b/front/public/images/small/TConstruct/SearedBrick/5.png deleted file mode 100644 index b1af02d3e1..0000000000 Binary files a/front/public/images/small/TConstruct/SearedBrick/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/0.png b/front/public/images/small/TConstruct/SearedSlab/0.png deleted file mode 100644 index d8279c5e07..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/1.png b/front/public/images/small/TConstruct/SearedSlab/1.png deleted file mode 100644 index a7a9d42d34..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/2.png b/front/public/images/small/TConstruct/SearedSlab/2.png deleted file mode 100644 index 5c24b4e781..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/3.png b/front/public/images/small/TConstruct/SearedSlab/3.png deleted file mode 100644 index 91113203e0..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/4.png b/front/public/images/small/TConstruct/SearedSlab/4.png deleted file mode 100644 index 10c7a5b485..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/5.png b/front/public/images/small/TConstruct/SearedSlab/5.png deleted file mode 100644 index 7059a8a95c..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/6.png b/front/public/images/small/TConstruct/SearedSlab/6.png deleted file mode 100644 index d4ee0df2ab..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SearedSlab/7.png b/front/public/images/small/TConstruct/SearedSlab/7.png deleted file mode 100644 index 8eaf839e54..0000000000 Binary files a/front/public/images/small/TConstruct/SearedSlab/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShortBow/0.png b/front/public/images/small/TConstruct/ShortBow/0.png deleted file mode 100644 index 8d78c7c9f0..0000000000 Binary files a/front/public/images/small/TConstruct/ShortBow/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Shuriken/0.png b/front/public/images/small/TConstruct/Shuriken/0.png deleted file mode 100644 index b641312d48..0000000000 Binary files a/front/public/images/small/TConstruct/Shuriken/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/0.png b/front/public/images/small/TConstruct/ShurikenPart/0.png deleted file mode 100644 index 058589330c..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/1.png b/front/public/images/small/TConstruct/ShurikenPart/1.png deleted file mode 100644 index c13a45d73d..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/10.png b/front/public/images/small/TConstruct/ShurikenPart/10.png deleted file mode 100644 index b09e72f8e7..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/11.png b/front/public/images/small/TConstruct/ShurikenPart/11.png deleted file mode 100644 index bb026e7ad2..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/12.png b/front/public/images/small/TConstruct/ShurikenPart/12.png deleted file mode 100644 index 76c351b6af..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/13.png b/front/public/images/small/TConstruct/ShurikenPart/13.png deleted file mode 100644 index a1c535cb42..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/14.png b/front/public/images/small/TConstruct/ShurikenPart/14.png deleted file mode 100644 index dcd90380a4..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/15.png b/front/public/images/small/TConstruct/ShurikenPart/15.png deleted file mode 100644 index 93269c5904..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/16.png b/front/public/images/small/TConstruct/ShurikenPart/16.png deleted file mode 100644 index 7fffa6b8c8..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/17.png b/front/public/images/small/TConstruct/ShurikenPart/17.png deleted file mode 100644 index 5031342510..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/18.png b/front/public/images/small/TConstruct/ShurikenPart/18.png deleted file mode 100644 index b0bf176a34..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/2.png b/front/public/images/small/TConstruct/ShurikenPart/2.png deleted file mode 100644 index c742eca416..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/3.png b/front/public/images/small/TConstruct/ShurikenPart/3.png deleted file mode 100644 index 9c0c495eac..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/314.png b/front/public/images/small/TConstruct/ShurikenPart/314.png deleted file mode 100644 index 48ec591dd1..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/4.png b/front/public/images/small/TConstruct/ShurikenPart/4.png deleted file mode 100644 index 3a8342156c..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/5.png b/front/public/images/small/TConstruct/ShurikenPart/5.png deleted file mode 100644 index b071ffb9d0..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/6.png b/front/public/images/small/TConstruct/ShurikenPart/6.png deleted file mode 100644 index d2c1e24459..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/7.png b/front/public/images/small/TConstruct/ShurikenPart/7.png deleted file mode 100644 index 9da152f9b3..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/8.png b/front/public/images/small/TConstruct/ShurikenPart/8.png deleted file mode 100644 index 33b466bdc2..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ShurikenPart/9.png b/front/public/images/small/TConstruct/ShurikenPart/9.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TConstruct/ShurikenPart/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/0.png b/front/public/images/small/TConstruct/Smeltery/0.png deleted file mode 100644 index 67cc986383..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/1.png b/front/public/images/small/TConstruct/Smeltery/1.png deleted file mode 100644 index 828a35d002..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/10.png b/front/public/images/small/TConstruct/Smeltery/10.png deleted file mode 100644 index 61f6cc3896..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/11.png b/front/public/images/small/TConstruct/Smeltery/11.png deleted file mode 100644 index 5a2d83f1f4..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/2.png b/front/public/images/small/TConstruct/Smeltery/2.png deleted file mode 100644 index 2380c9c5e5..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/4.png b/front/public/images/small/TConstruct/Smeltery/4.png deleted file mode 100644 index f164a5f064..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/5.png b/front/public/images/small/TConstruct/Smeltery/5.png deleted file mode 100644 index ee22c19fcb..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/6.png b/front/public/images/small/TConstruct/Smeltery/6.png deleted file mode 100644 index adfbff21cd..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/7.png b/front/public/images/small/TConstruct/Smeltery/7.png deleted file mode 100644 index 5767bf08c5..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/8.png b/front/public/images/small/TConstruct/Smeltery/8.png deleted file mode 100644 index fe7ada8cc8..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/Smeltery/9.png b/front/public/images/small/TConstruct/Smeltery/9.png deleted file mode 100644 index f99d4f489c..0000000000 Binary files a/front/public/images/small/TConstruct/Smeltery/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/0.png b/front/public/images/small/TConstruct/SmelteryNether/0.png deleted file mode 100644 index 45fdf7e93b..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/1.png b/front/public/images/small/TConstruct/SmelteryNether/1.png deleted file mode 100644 index 8a99d980fa..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/10.png b/front/public/images/small/TConstruct/SmelteryNether/10.png deleted file mode 100644 index b2932823d9..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/11.png b/front/public/images/small/TConstruct/SmelteryNether/11.png deleted file mode 100644 index bd2269e79e..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/2.png b/front/public/images/small/TConstruct/SmelteryNether/2.png deleted file mode 100644 index 410781673a..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/4.png b/front/public/images/small/TConstruct/SmelteryNether/4.png deleted file mode 100644 index 7135c80e36..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/5.png b/front/public/images/small/TConstruct/SmelteryNether/5.png deleted file mode 100644 index 51e4e99717..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/6.png b/front/public/images/small/TConstruct/SmelteryNether/6.png deleted file mode 100644 index cb4bafb854..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/7.png b/front/public/images/small/TConstruct/SmelteryNether/7.png deleted file mode 100644 index 8af92d2e6e..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/8.png b/front/public/images/small/TConstruct/SmelteryNether/8.png deleted file mode 100644 index e969377324..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SmelteryNether/9.png b/front/public/images/small/TConstruct/SmelteryNether/9.png deleted file mode 100644 index c39453cd27..0000000000 Binary files a/front/public/images/small/TConstruct/SmelteryNether/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedBlock/0.png b/front/public/images/small/TConstruct/SpeedBlock/0.png deleted file mode 100644 index 31dc3f4b1a..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedBlock/1.png b/front/public/images/small/TConstruct/SpeedBlock/1.png deleted file mode 100644 index 3a158ff6aa..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedBlock/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedBlock/2.png b/front/public/images/small/TConstruct/SpeedBlock/2.png deleted file mode 100644 index fbf7b1a4f7..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedBlock/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedBlock/3.png b/front/public/images/small/TConstruct/SpeedBlock/3.png deleted file mode 100644 index e7a36f992f..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedBlock/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedBlock/4.png b/front/public/images/small/TConstruct/SpeedBlock/4.png deleted file mode 100644 index 8d099a6617..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedBlock/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedBlock/5.png b/front/public/images/small/TConstruct/SpeedBlock/5.png deleted file mode 100644 index aa736ffa37..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedBlock/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedBlock/6.png b/front/public/images/small/TConstruct/SpeedBlock/6.png deleted file mode 100644 index 234638a9ec..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedBlock/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedSlab/0.png b/front/public/images/small/TConstruct/SpeedSlab/0.png deleted file mode 100644 index c9e6cc336a..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedSlab/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedSlab/1.png b/front/public/images/small/TConstruct/SpeedSlab/1.png deleted file mode 100644 index da0da04111..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedSlab/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedSlab/2.png b/front/public/images/small/TConstruct/SpeedSlab/2.png deleted file mode 100644 index 09b4a419db..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedSlab/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedSlab/3.png b/front/public/images/small/TConstruct/SpeedSlab/3.png deleted file mode 100644 index 4ba3c731eb..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedSlab/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedSlab/4.png b/front/public/images/small/TConstruct/SpeedSlab/4.png deleted file mode 100644 index 64c3c6857d..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedSlab/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedSlab/5.png b/front/public/images/small/TConstruct/SpeedSlab/5.png deleted file mode 100644 index 6a70a9a5c0..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedSlab/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/SpeedSlab/6.png b/front/public/images/small/TConstruct/SpeedSlab/6.png deleted file mode 100644 index 0f2d78012b..0000000000 Binary files a/front/public/images/small/TConstruct/SpeedSlab/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ThrowingKnife/0.png b/front/public/images/small/TConstruct/ThrowingKnife/0.png deleted file mode 100644 index f24ca986ab..0000000000 Binary files a/front/public/images/small/TConstruct/ThrowingKnife/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/0.png b/front/public/images/small/TConstruct/ToolForgeBlock/0.png deleted file mode 100644 index 943eef8f59..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/1.png b/front/public/images/small/TConstruct/ToolForgeBlock/1.png deleted file mode 100644 index 6880996cc5..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/10.png b/front/public/images/small/TConstruct/ToolForgeBlock/10.png deleted file mode 100644 index fb8f7cea61..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/11.png b/front/public/images/small/TConstruct/ToolForgeBlock/11.png deleted file mode 100644 index 727e396918..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/12.png b/front/public/images/small/TConstruct/ToolForgeBlock/12.png deleted file mode 100644 index 8ddbacfcff..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/13.png b/front/public/images/small/TConstruct/ToolForgeBlock/13.png deleted file mode 100644 index 4768b76a98..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/2.png b/front/public/images/small/TConstruct/ToolForgeBlock/2.png deleted file mode 100644 index cf26d53b10..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/3.png b/front/public/images/small/TConstruct/ToolForgeBlock/3.png deleted file mode 100644 index cb704cba23..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/4.png b/front/public/images/small/TConstruct/ToolForgeBlock/4.png deleted file mode 100644 index 737e69a3b2..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/5.png b/front/public/images/small/TConstruct/ToolForgeBlock/5.png deleted file mode 100644 index f7ff5abe3e..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/6.png b/front/public/images/small/TConstruct/ToolForgeBlock/6.png deleted file mode 100644 index a99f17eb93..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/7.png b/front/public/images/small/TConstruct/ToolForgeBlock/7.png deleted file mode 100644 index 7e2b28b2ae..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/8.png b/front/public/images/small/TConstruct/ToolForgeBlock/8.png deleted file mode 100644 index 94314cbeb0..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolForgeBlock/9.png b/front/public/images/small/TConstruct/ToolForgeBlock/9.png deleted file mode 100644 index c7698030e4..0000000000 Binary files a/front/public/images/small/TConstruct/ToolForgeBlock/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/0.png b/front/public/images/small/TConstruct/ToolStationBlock/0.png deleted file mode 100644 index e0064c2817..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/1.png b/front/public/images/small/TConstruct/ToolStationBlock/1.png deleted file mode 100644 index 09fbdb1194..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/10.png b/front/public/images/small/TConstruct/ToolStationBlock/10.png deleted file mode 100644 index bc5a25c78c..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/11.png b/front/public/images/small/TConstruct/ToolStationBlock/11.png deleted file mode 100644 index 83f8158176..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/12.png b/front/public/images/small/TConstruct/ToolStationBlock/12.png deleted file mode 100644 index a39c7df69a..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/13.png b/front/public/images/small/TConstruct/ToolStationBlock/13.png deleted file mode 100644 index e0c1a4efcc..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/2.png b/front/public/images/small/TConstruct/ToolStationBlock/2.png deleted file mode 100644 index 48e00849ce..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/3.png b/front/public/images/small/TConstruct/ToolStationBlock/3.png deleted file mode 100644 index 47c22624e8..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/4.png b/front/public/images/small/TConstruct/ToolStationBlock/4.png deleted file mode 100644 index 039b926865..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ToolStationBlock/5.png b/front/public/images/small/TConstruct/ToolStationBlock/5.png deleted file mode 100644 index 128db48422..0000000000 Binary files a/front/public/images/small/TConstruct/ToolStationBlock/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/0.png b/front/public/images/small/TConstruct/WoolSlab1/0.png deleted file mode 100644 index e64b5f6bc5..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/1.png b/front/public/images/small/TConstruct/WoolSlab1/1.png deleted file mode 100644 index 3ef32ed19a..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/2.png b/front/public/images/small/TConstruct/WoolSlab1/2.png deleted file mode 100644 index 19292148a3..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/3.png b/front/public/images/small/TConstruct/WoolSlab1/3.png deleted file mode 100644 index dec3da90e3..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/4.png b/front/public/images/small/TConstruct/WoolSlab1/4.png deleted file mode 100644 index 06d0c3b9c1..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/5.png b/front/public/images/small/TConstruct/WoolSlab1/5.png deleted file mode 100644 index eb5279b6d8..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/6.png b/front/public/images/small/TConstruct/WoolSlab1/6.png deleted file mode 100644 index 107db8d705..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab1/7.png b/front/public/images/small/TConstruct/WoolSlab1/7.png deleted file mode 100644 index 2262a37cb7..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab1/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/0.png b/front/public/images/small/TConstruct/WoolSlab2/0.png deleted file mode 100644 index 05ad5d8c5e..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/1.png b/front/public/images/small/TConstruct/WoolSlab2/1.png deleted file mode 100644 index 3353edbc70..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/2.png b/front/public/images/small/TConstruct/WoolSlab2/2.png deleted file mode 100644 index 7dd4d7a627..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/3.png b/front/public/images/small/TConstruct/WoolSlab2/3.png deleted file mode 100644 index 727bdf736b..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/4.png b/front/public/images/small/TConstruct/WoolSlab2/4.png deleted file mode 100644 index 69efbbd73a..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/5.png b/front/public/images/small/TConstruct/WoolSlab2/5.png deleted file mode 100644 index 3324da589f..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/6.png b/front/public/images/small/TConstruct/WoolSlab2/6.png deleted file mode 100644 index e388a32990..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/WoolSlab2/7.png b/front/public/images/small/TConstruct/WoolSlab2/7.png deleted file mode 100644 index 7ab64a3d48..0000000000 Binary files a/front/public/images/small/TConstruct/WoolSlab2/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/0.png b/front/public/images/small/TConstruct/arrowhead/0.png deleted file mode 100644 index 94ef91f20e..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/1.png b/front/public/images/small/TConstruct/arrowhead/1.png deleted file mode 100644 index 537e039973..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/10.png b/front/public/images/small/TConstruct/arrowhead/10.png deleted file mode 100644 index 0708b00a16..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/11.png b/front/public/images/small/TConstruct/arrowhead/11.png deleted file mode 100644 index 82066a1b64..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/12.png b/front/public/images/small/TConstruct/arrowhead/12.png deleted file mode 100644 index 5dc0abd2e8..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/13.png b/front/public/images/small/TConstruct/arrowhead/13.png deleted file mode 100644 index 92788004b1..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/14.png b/front/public/images/small/TConstruct/arrowhead/14.png deleted file mode 100644 index 30a02c9a6c..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/15.png b/front/public/images/small/TConstruct/arrowhead/15.png deleted file mode 100644 index 98dc85b9ae..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/16.png b/front/public/images/small/TConstruct/arrowhead/16.png deleted file mode 100644 index 5d83580a62..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/17.png b/front/public/images/small/TConstruct/arrowhead/17.png deleted file mode 100644 index cd3f699736..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/18.png b/front/public/images/small/TConstruct/arrowhead/18.png deleted file mode 100644 index 4b6219b7c8..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/2.png b/front/public/images/small/TConstruct/arrowhead/2.png deleted file mode 100644 index ff8bd1a5a3..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/3.png b/front/public/images/small/TConstruct/arrowhead/3.png deleted file mode 100644 index 2bdbe49142..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/314.png b/front/public/images/small/TConstruct/arrowhead/314.png deleted file mode 100644 index 7484e2a6fb..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/4.png b/front/public/images/small/TConstruct/arrowhead/4.png deleted file mode 100644 index afa0db72cc..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/5.png b/front/public/images/small/TConstruct/arrowhead/5.png deleted file mode 100644 index ad4d4dc890..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/6.png b/front/public/images/small/TConstruct/arrowhead/6.png deleted file mode 100644 index a5aa5c117f..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/7.png b/front/public/images/small/TConstruct/arrowhead/7.png deleted file mode 100644 index e0f80944d3..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/8.png b/front/public/images/small/TConstruct/arrowhead/8.png deleted file mode 100644 index bcb9e1881e..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/arrowhead/9.png b/front/public/images/small/TConstruct/arrowhead/9.png deleted file mode 100644 index ce2a311423..0000000000 Binary files a/front/public/images/small/TConstruct/arrowhead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/battleaxe/0.png b/front/public/images/small/TConstruct/battleaxe/0.png deleted file mode 100644 index da0ff0e294..0000000000 Binary files a/front/public/images/small/TConstruct/battleaxe/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/battlesign/0.png b/front/public/images/small/TConstruct/battlesign/0.png deleted file mode 100644 index b95e366df1..0000000000 Binary files a/front/public/images/small/TConstruct/battlesign/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/0.png b/front/public/images/small/TConstruct/binding/0.png deleted file mode 100644 index 6349716bd8..0000000000 Binary files a/front/public/images/small/TConstruct/binding/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/1.png b/front/public/images/small/TConstruct/binding/1.png deleted file mode 100644 index 6783b78dfb..0000000000 Binary files a/front/public/images/small/TConstruct/binding/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/10.png b/front/public/images/small/TConstruct/binding/10.png deleted file mode 100644 index c35447754f..0000000000 Binary files a/front/public/images/small/TConstruct/binding/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/11.png b/front/public/images/small/TConstruct/binding/11.png deleted file mode 100644 index e016166bd5..0000000000 Binary files a/front/public/images/small/TConstruct/binding/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/12.png b/front/public/images/small/TConstruct/binding/12.png deleted file mode 100644 index 3490d865e2..0000000000 Binary files a/front/public/images/small/TConstruct/binding/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/13.png b/front/public/images/small/TConstruct/binding/13.png deleted file mode 100644 index e314f547ee..0000000000 Binary files a/front/public/images/small/TConstruct/binding/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/14.png b/front/public/images/small/TConstruct/binding/14.png deleted file mode 100644 index 366f1eb7c9..0000000000 Binary files a/front/public/images/small/TConstruct/binding/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/15.png b/front/public/images/small/TConstruct/binding/15.png deleted file mode 100644 index c4a98eb428..0000000000 Binary files a/front/public/images/small/TConstruct/binding/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/16.png b/front/public/images/small/TConstruct/binding/16.png deleted file mode 100644 index 0841c5cc99..0000000000 Binary files a/front/public/images/small/TConstruct/binding/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/17.png b/front/public/images/small/TConstruct/binding/17.png deleted file mode 100644 index 3d05ea5c86..0000000000 Binary files a/front/public/images/small/TConstruct/binding/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/18.png b/front/public/images/small/TConstruct/binding/18.png deleted file mode 100644 index c25160ea28..0000000000 Binary files a/front/public/images/small/TConstruct/binding/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/2.png b/front/public/images/small/TConstruct/binding/2.png deleted file mode 100644 index 6bbdf7a872..0000000000 Binary files a/front/public/images/small/TConstruct/binding/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/3.png b/front/public/images/small/TConstruct/binding/3.png deleted file mode 100644 index ddfcde35e1..0000000000 Binary files a/front/public/images/small/TConstruct/binding/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/314.png b/front/public/images/small/TConstruct/binding/314.png deleted file mode 100644 index 6ebc1c4492..0000000000 Binary files a/front/public/images/small/TConstruct/binding/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/4.png b/front/public/images/small/TConstruct/binding/4.png deleted file mode 100644 index 20b3a1f626..0000000000 Binary files a/front/public/images/small/TConstruct/binding/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/5.png b/front/public/images/small/TConstruct/binding/5.png deleted file mode 100644 index 718b559792..0000000000 Binary files a/front/public/images/small/TConstruct/binding/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/6.png b/front/public/images/small/TConstruct/binding/6.png deleted file mode 100644 index 02ba159e72..0000000000 Binary files a/front/public/images/small/TConstruct/binding/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/7.png b/front/public/images/small/TConstruct/binding/7.png deleted file mode 100644 index 7d2344c0df..0000000000 Binary files a/front/public/images/small/TConstruct/binding/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/8.png b/front/public/images/small/TConstruct/binding/8.png deleted file mode 100644 index e1b5b9fc15..0000000000 Binary files a/front/public/images/small/TConstruct/binding/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/binding/9.png b/front/public/images/small/TConstruct/binding/9.png deleted file mode 100644 index 0e908cf7ba..0000000000 Binary files a/front/public/images/small/TConstruct/binding/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/blankPattern/0.png b/front/public/images/small/TConstruct/blankPattern/0.png deleted file mode 100644 index ca9adbcbf1..0000000000 Binary files a/front/public/images/small/TConstruct/blankPattern/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/blankPattern/1.png b/front/public/images/small/TConstruct/blankPattern/1.png deleted file mode 100644 index b53a43da68..0000000000 Binary files a/front/public/images/small/TConstruct/blankPattern/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/blankPattern/2.png b/front/public/images/small/TConstruct/blankPattern/2.png deleted file mode 100644 index b53a43da68..0000000000 Binary files a/front/public/images/small/TConstruct/blankPattern/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/blankPattern/3.png b/front/public/images/small/TConstruct/blankPattern/3.png deleted file mode 100644 index 477c56c5a8..0000000000 Binary files a/front/public/images/small/TConstruct/blankPattern/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/blood.channel/0.png b/front/public/images/small/TConstruct/blood.channel/0.png deleted file mode 100644 index 100ca14e2b..0000000000 Binary files a/front/public/images/small/TConstruct/blood.channel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/bootsWood/0.png b/front/public/images/small/TConstruct/bootsWood/0.png deleted file mode 100644 index d87c891b25..0000000000 Binary files a/front/public/images/small/TConstruct/bootsWood/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/bowstring/0.png b/front/public/images/small/TConstruct/bowstring/0.png deleted file mode 100644 index be695d88eb..0000000000 Binary files a/front/public/images/small/TConstruct/bowstring/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/bowstring/2.png b/front/public/images/small/TConstruct/bowstring/2.png deleted file mode 100644 index 301abca413..0000000000 Binary files a/front/public/images/small/TConstruct/bowstring/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/0.png b/front/public/images/small/TConstruct/broadAxeHead/0.png deleted file mode 100644 index 8779de8274..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/1.png b/front/public/images/small/TConstruct/broadAxeHead/1.png deleted file mode 100644 index 70e5b24296..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/10.png b/front/public/images/small/TConstruct/broadAxeHead/10.png deleted file mode 100644 index f85af8089c..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/11.png b/front/public/images/small/TConstruct/broadAxeHead/11.png deleted file mode 100644 index 27b3d25924..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/12.png b/front/public/images/small/TConstruct/broadAxeHead/12.png deleted file mode 100644 index a9f79343bd..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/13.png b/front/public/images/small/TConstruct/broadAxeHead/13.png deleted file mode 100644 index c962c95ef4..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/14.png b/front/public/images/small/TConstruct/broadAxeHead/14.png deleted file mode 100644 index e857e26618..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/15.png b/front/public/images/small/TConstruct/broadAxeHead/15.png deleted file mode 100644 index bd3b3be233..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/16.png b/front/public/images/small/TConstruct/broadAxeHead/16.png deleted file mode 100644 index 2c165d3a78..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/17.png b/front/public/images/small/TConstruct/broadAxeHead/17.png deleted file mode 100644 index 5f341c0632..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/18.png b/front/public/images/small/TConstruct/broadAxeHead/18.png deleted file mode 100644 index 3aa1860efb..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/2.png b/front/public/images/small/TConstruct/broadAxeHead/2.png deleted file mode 100644 index 1065193b48..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/3.png b/front/public/images/small/TConstruct/broadAxeHead/3.png deleted file mode 100644 index 380717dda1..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/314.png b/front/public/images/small/TConstruct/broadAxeHead/314.png deleted file mode 100644 index 985f55a57f..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/4.png b/front/public/images/small/TConstruct/broadAxeHead/4.png deleted file mode 100644 index 022e583158..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/5.png b/front/public/images/small/TConstruct/broadAxeHead/5.png deleted file mode 100644 index 8a91793e7d..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/6.png b/front/public/images/small/TConstruct/broadAxeHead/6.png deleted file mode 100644 index abc2ab9c70..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/7.png b/front/public/images/small/TConstruct/broadAxeHead/7.png deleted file mode 100644 index 35389f9b06..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/8.png b/front/public/images/small/TConstruct/broadAxeHead/8.png deleted file mode 100644 index 648f16a6ff..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadAxeHead/9.png b/front/public/images/small/TConstruct/broadAxeHead/9.png deleted file mode 100644 index dbe76abfdd..0000000000 Binary files a/front/public/images/small/TConstruct/broadAxeHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/broadsword/0.png b/front/public/images/small/TConstruct/broadsword/0.png deleted file mode 100644 index cab55c8b15..0000000000 Binary files a/front/public/images/small/TConstruct/broadsword/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/0.png b/front/public/images/small/TConstruct/buckets/0.png deleted file mode 100644 index 6cdbed9837..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/1.png b/front/public/images/small/TConstruct/buckets/1.png deleted file mode 100644 index 6d3bcbcc46..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/10.png b/front/public/images/small/TConstruct/buckets/10.png deleted file mode 100644 index b8c335f7ac..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/11.png b/front/public/images/small/TConstruct/buckets/11.png deleted file mode 100644 index eda271bcb4..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/12.png b/front/public/images/small/TConstruct/buckets/12.png deleted file mode 100644 index c9d9982869..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/13.png b/front/public/images/small/TConstruct/buckets/13.png deleted file mode 100644 index bb0e8488be..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/14.png b/front/public/images/small/TConstruct/buckets/14.png deleted file mode 100644 index c9d9982869..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/15.png b/front/public/images/small/TConstruct/buckets/15.png deleted file mode 100644 index 4564bd6119..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/16.png b/front/public/images/small/TConstruct/buckets/16.png deleted file mode 100644 index af3da8f763..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/17.png b/front/public/images/small/TConstruct/buckets/17.png deleted file mode 100644 index dea5da7fc5..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/18.png b/front/public/images/small/TConstruct/buckets/18.png deleted file mode 100644 index 3ba3337203..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/19.png b/front/public/images/small/TConstruct/buckets/19.png deleted file mode 100644 index 87b51c7425..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/19.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/2.png b/front/public/images/small/TConstruct/buckets/2.png deleted file mode 100644 index 6b5eecfc56..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/20.png b/front/public/images/small/TConstruct/buckets/20.png deleted file mode 100644 index 760c0263c9..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/20.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/21.png b/front/public/images/small/TConstruct/buckets/21.png deleted file mode 100644 index d0c8f61f80..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/21.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/22.png b/front/public/images/small/TConstruct/buckets/22.png deleted file mode 100644 index 33bbd9a1c6..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/22.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/23.png b/front/public/images/small/TConstruct/buckets/23.png deleted file mode 100644 index d778b549aa..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/23.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/24.png b/front/public/images/small/TConstruct/buckets/24.png deleted file mode 100644 index 87b51c7425..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/24.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/25.png b/front/public/images/small/TConstruct/buckets/25.png deleted file mode 100644 index 406656729c..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/25.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/26.png b/front/public/images/small/TConstruct/buckets/26.png deleted file mode 100644 index 0a335ea23f..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/26.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/27.png b/front/public/images/small/TConstruct/buckets/27.png deleted file mode 100644 index a801fba0bf..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/27.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/28.png b/front/public/images/small/TConstruct/buckets/28.png deleted file mode 100644 index a4ae20f22e..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/28.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/29.png b/front/public/images/small/TConstruct/buckets/29.png deleted file mode 100644 index 08521f5a56..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/29.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/3.png b/front/public/images/small/TConstruct/buckets/3.png deleted file mode 100644 index 3b6b856ad8..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/30.png b/front/public/images/small/TConstruct/buckets/30.png deleted file mode 100644 index 3b39fec370..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/30.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/31.png b/front/public/images/small/TConstruct/buckets/31.png deleted file mode 100644 index d4302b242b..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/31.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/4.png b/front/public/images/small/TConstruct/buckets/4.png deleted file mode 100644 index 410f047734..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/5.png b/front/public/images/small/TConstruct/buckets/5.png deleted file mode 100644 index 0714782259..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/6.png b/front/public/images/small/TConstruct/buckets/6.png deleted file mode 100644 index e29816e1a0..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/7.png b/front/public/images/small/TConstruct/buckets/7.png deleted file mode 100644 index 102646ecdf..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/8.png b/front/public/images/small/TConstruct/buckets/8.png deleted file mode 100644 index 33bbd9a1c6..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/buckets/9.png b/front/public/images/small/TConstruct/buckets/9.png deleted file mode 100644 index dfb82f7051..0000000000 Binary files a/front/public/images/small/TConstruct/buckets/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chestplateWood/0.png b/front/public/images/small/TConstruct/chestplateWood/0.png deleted file mode 100644 index 1e337a0e53..0000000000 Binary files a/front/public/images/small/TConstruct/chestplateWood/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chisel/0.png b/front/public/images/small/TConstruct/chisel/0.png deleted file mode 100644 index 25758b5068..0000000000 Binary files a/front/public/images/small/TConstruct/chisel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/0.png b/front/public/images/small/TConstruct/chiselHead/0.png deleted file mode 100644 index c058ada08d..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/1.png b/front/public/images/small/TConstruct/chiselHead/1.png deleted file mode 100644 index fef81397e7..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/10.png b/front/public/images/small/TConstruct/chiselHead/10.png deleted file mode 100644 index e9bbe97f06..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/11.png b/front/public/images/small/TConstruct/chiselHead/11.png deleted file mode 100644 index f7ff1c62fc..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/12.png b/front/public/images/small/TConstruct/chiselHead/12.png deleted file mode 100644 index df747fae6e..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/13.png b/front/public/images/small/TConstruct/chiselHead/13.png deleted file mode 100644 index cc4c95a492..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/14.png b/front/public/images/small/TConstruct/chiselHead/14.png deleted file mode 100644 index 1f30b09505..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/15.png b/front/public/images/small/TConstruct/chiselHead/15.png deleted file mode 100644 index c55beda195..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/16.png b/front/public/images/small/TConstruct/chiselHead/16.png deleted file mode 100644 index 4f5387e00d..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/17.png b/front/public/images/small/TConstruct/chiselHead/17.png deleted file mode 100644 index 5d76162d9b..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/18.png b/front/public/images/small/TConstruct/chiselHead/18.png deleted file mode 100644 index 9a6a704880..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/2.png b/front/public/images/small/TConstruct/chiselHead/2.png deleted file mode 100644 index 2ce3625e8f..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/3.png b/front/public/images/small/TConstruct/chiselHead/3.png deleted file mode 100644 index 03be3dc881..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/314.png b/front/public/images/small/TConstruct/chiselHead/314.png deleted file mode 100644 index 473f0a2870..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/4.png b/front/public/images/small/TConstruct/chiselHead/4.png deleted file mode 100644 index 239b0eae9c..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/5.png b/front/public/images/small/TConstruct/chiselHead/5.png deleted file mode 100644 index 2de6abda1b..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/6.png b/front/public/images/small/TConstruct/chiselHead/6.png deleted file mode 100644 index e2038c8f4a..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/7.png b/front/public/images/small/TConstruct/chiselHead/7.png deleted file mode 100644 index fec2694010..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/8.png b/front/public/images/small/TConstruct/chiselHead/8.png deleted file mode 100644 index 754e2df865..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/chiselHead/9.png b/front/public/images/small/TConstruct/chiselHead/9.png deleted file mode 100644 index 9b1b54401b..0000000000 Binary files a/front/public/images/small/TConstruct/chiselHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/0.png b/front/public/images/small/TConstruct/clayPattern/0.png deleted file mode 100644 index a6e26baf21..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/1.png b/front/public/images/small/TConstruct/clayPattern/1.png deleted file mode 100644 index 75dce0bf8e..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/10.png b/front/public/images/small/TConstruct/clayPattern/10.png deleted file mode 100644 index 8ad4bae27f..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/11.png b/front/public/images/small/TConstruct/clayPattern/11.png deleted file mode 100644 index 4931df5686..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/12.png b/front/public/images/small/TConstruct/clayPattern/12.png deleted file mode 100644 index f2c7d1500c..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/13.png b/front/public/images/small/TConstruct/clayPattern/13.png deleted file mode 100644 index d82287b7d0..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/2.png b/front/public/images/small/TConstruct/clayPattern/2.png deleted file mode 100644 index 98e2124dd4..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/22.png b/front/public/images/small/TConstruct/clayPattern/22.png deleted file mode 100644 index aca65b5829..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/22.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/25.png b/front/public/images/small/TConstruct/clayPattern/25.png deleted file mode 100644 index cea5276e82..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/25.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/26.png b/front/public/images/small/TConstruct/clayPattern/26.png deleted file mode 100644 index 09348edcae..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/26.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/27.png b/front/public/images/small/TConstruct/clayPattern/27.png deleted file mode 100644 index 66fe290a4b..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/27.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/3.png b/front/public/images/small/TConstruct/clayPattern/3.png deleted file mode 100644 index cef5d5eaf4..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/4.png b/front/public/images/small/TConstruct/clayPattern/4.png deleted file mode 100644 index 8ab378d006..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/5.png b/front/public/images/small/TConstruct/clayPattern/5.png deleted file mode 100644 index d98c1c8894..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/6.png b/front/public/images/small/TConstruct/clayPattern/6.png deleted file mode 100644 index 8aed9aeef5..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/7.png b/front/public/images/small/TConstruct/clayPattern/7.png deleted file mode 100644 index 2345c86459..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/8.png b/front/public/images/small/TConstruct/clayPattern/8.png deleted file mode 100644 index 326a0d2573..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/clayPattern/9.png b/front/public/images/small/TConstruct/clayPattern/9.png deleted file mode 100644 index 095cbc49f1..0000000000 Binary files a/front/public/images/small/TConstruct/clayPattern/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/cleaver/0.png b/front/public/images/small/TConstruct/cleaver/0.png deleted file mode 100644 index 9e88889c77..0000000000 Binary files a/front/public/images/small/TConstruct/cleaver/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/creativeModifier/0.png b/front/public/images/small/TConstruct/creativeModifier/0.png deleted file mode 100644 index ecb3ac3f29..0000000000 Binary files a/front/public/images/small/TConstruct/creativeModifier/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/0.png b/front/public/images/small/TConstruct/crossbar/0.png deleted file mode 100644 index 820de8e994..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/1.png b/front/public/images/small/TConstruct/crossbar/1.png deleted file mode 100644 index eed422df88..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/10.png b/front/public/images/small/TConstruct/crossbar/10.png deleted file mode 100644 index 6afc802240..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/11.png b/front/public/images/small/TConstruct/crossbar/11.png deleted file mode 100644 index 8890f7d9ad..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/12.png b/front/public/images/small/TConstruct/crossbar/12.png deleted file mode 100644 index 245a0ae837..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/13.png b/front/public/images/small/TConstruct/crossbar/13.png deleted file mode 100644 index ace99a791f..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/14.png b/front/public/images/small/TConstruct/crossbar/14.png deleted file mode 100644 index 769ac984b0..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/15.png b/front/public/images/small/TConstruct/crossbar/15.png deleted file mode 100644 index 00a00269db..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/16.png b/front/public/images/small/TConstruct/crossbar/16.png deleted file mode 100644 index 3b650a72b6..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/17.png b/front/public/images/small/TConstruct/crossbar/17.png deleted file mode 100644 index c5f8db2d19..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/18.png b/front/public/images/small/TConstruct/crossbar/18.png deleted file mode 100644 index 084f67a0c8..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/2.png b/front/public/images/small/TConstruct/crossbar/2.png deleted file mode 100644 index f271319c4b..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/3.png b/front/public/images/small/TConstruct/crossbar/3.png deleted file mode 100644 index 1e353e4e54..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/314.png b/front/public/images/small/TConstruct/crossbar/314.png deleted file mode 100644 index 12f45ef217..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/4.png b/front/public/images/small/TConstruct/crossbar/4.png deleted file mode 100644 index 7c2e27f630..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/5.png b/front/public/images/small/TConstruct/crossbar/5.png deleted file mode 100644 index 499a3acfc6..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/6.png b/front/public/images/small/TConstruct/crossbar/6.png deleted file mode 100644 index 2236d100fa..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/7.png b/front/public/images/small/TConstruct/crossbar/7.png deleted file mode 100644 index 8bf362c336..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/8.png b/front/public/images/small/TConstruct/crossbar/8.png deleted file mode 100644 index 8d26429839..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/crossbar/9.png b/front/public/images/small/TConstruct/crossbar/9.png deleted file mode 100644 index 3c78db42a4..0000000000 Binary files a/front/public/images/small/TConstruct/crossbar/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/cutlass/0.png b/front/public/images/small/TConstruct/cutlass/0.png deleted file mode 100644 index 319bd86459..0000000000 Binary files a/front/public/images/small/TConstruct/cutlass/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/dagger/0.png b/front/public/images/small/TConstruct/dagger/0.png deleted file mode 100644 index 30e6efca0e..0000000000 Binary files a/front/public/images/small/TConstruct/dagger/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/0.png b/front/public/images/small/TConstruct/decoration.multibrick/0.png deleted file mode 100644 index c01baa3a62..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/1.png b/front/public/images/small/TConstruct/decoration.multibrick/1.png deleted file mode 100644 index ab2729907f..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/10.png b/front/public/images/small/TConstruct/decoration.multibrick/10.png deleted file mode 100644 index 5c6cb3bacd..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/11.png b/front/public/images/small/TConstruct/decoration.multibrick/11.png deleted file mode 100644 index 70bb05b716..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/12.png b/front/public/images/small/TConstruct/decoration.multibrick/12.png deleted file mode 100644 index 029f04c79c..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/13.png b/front/public/images/small/TConstruct/decoration.multibrick/13.png deleted file mode 100644 index cf6c70c1f1..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/2.png b/front/public/images/small/TConstruct/decoration.multibrick/2.png deleted file mode 100644 index 1efe3c04da..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/3.png b/front/public/images/small/TConstruct/decoration.multibrick/3.png deleted file mode 100644 index ccfd123a76..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/4.png b/front/public/images/small/TConstruct/decoration.multibrick/4.png deleted file mode 100644 index 6760f86b46..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/5.png b/front/public/images/small/TConstruct/decoration.multibrick/5.png deleted file mode 100644 index 0b6c4963b6..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/6.png b/front/public/images/small/TConstruct/decoration.multibrick/6.png deleted file mode 100644 index b1ff5cc19e..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/7.png b/front/public/images/small/TConstruct/decoration.multibrick/7.png deleted file mode 100644 index 7cca755add..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/8.png b/front/public/images/small/TConstruct/decoration.multibrick/8.png deleted file mode 100644 index 3f50ee984f..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrick/9.png b/front/public/images/small/TConstruct/decoration.multibrick/9.png deleted file mode 100644 index 872e3647b7..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrick/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/0.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/0.png deleted file mode 100644 index d8573e44d9..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/1.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/1.png deleted file mode 100644 index 1c7c58053e..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/10.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/10.png deleted file mode 100644 index 40c0bb9c5a..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/11.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/11.png deleted file mode 100644 index b8d03b8696..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/12.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/12.png deleted file mode 100644 index efb505ec73..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/13.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/13.png deleted file mode 100644 index f03243ba37..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/14.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/14.png deleted file mode 100644 index 95593c2684..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/15.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/15.png deleted file mode 100644 index 3cc4921732..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/2.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/2.png deleted file mode 100644 index 834193e969..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/3.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/3.png deleted file mode 100644 index cbdfefc326..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/4.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/4.png deleted file mode 100644 index f8130a0bb8..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/5.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/5.png deleted file mode 100644 index ca6d367306..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/6.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/6.png deleted file mode 100644 index bf96815943..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/7.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/7.png deleted file mode 100644 index b34f77dad0..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/8.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/8.png deleted file mode 100644 index 1da06ee02c..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickfancy/9.png b/front/public/images/small/TConstruct/decoration.multibrickfancy/9.png deleted file mode 100644 index 24315caff7..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickfancy/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/0.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/0.png deleted file mode 100644 index 3217f567e8..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/1.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/1.png deleted file mode 100644 index 5b4e44ade2..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/2.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/2.png deleted file mode 100644 index c2e6e1545c..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/3.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/3.png deleted file mode 100644 index 9e2e9ef25f..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/4.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/4.png deleted file mode 100644 index 2f7c46e491..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/5.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/5.png deleted file mode 100644 index 51e9167ac0..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/6.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/6.png deleted file mode 100644 index f8a6723e9f..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.multibrickmetal/7.png b/front/public/images/small/TConstruct/decoration.multibrickmetal/7.png deleted file mode 100644 index cb490fe0f9..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.multibrickmetal/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.stoneladder/0.png b/front/public/images/small/TConstruct/decoration.stoneladder/0.png deleted file mode 100644 index 5ec5cd4929..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.stoneladder/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/decoration.stonetorch/0.png b/front/public/images/small/TConstruct/decoration.stonetorch/0.png deleted file mode 100644 index 839c5412ba..0000000000 Binary files a/front/public/images/small/TConstruct/decoration.stonetorch/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/diamondApple/0.png b/front/public/images/small/TConstruct/diamondApple/0.png deleted file mode 100644 index 70dccc229b..0000000000 Binary files a/front/public/images/small/TConstruct/diamondApple/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavator/0.png b/front/public/images/small/TConstruct/excavator/0.png deleted file mode 100644 index cfdf798741..0000000000 Binary files a/front/public/images/small/TConstruct/excavator/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/0.png b/front/public/images/small/TConstruct/excavatorHead/0.png deleted file mode 100644 index acab052876..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/1.png b/front/public/images/small/TConstruct/excavatorHead/1.png deleted file mode 100644 index 6fdc729942..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/10.png b/front/public/images/small/TConstruct/excavatorHead/10.png deleted file mode 100644 index 4e4ebeae54..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/11.png b/front/public/images/small/TConstruct/excavatorHead/11.png deleted file mode 100644 index 471305be45..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/12.png b/front/public/images/small/TConstruct/excavatorHead/12.png deleted file mode 100644 index bdfa990fb3..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/13.png b/front/public/images/small/TConstruct/excavatorHead/13.png deleted file mode 100644 index 908385e701..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/14.png b/front/public/images/small/TConstruct/excavatorHead/14.png deleted file mode 100644 index 62ffba3033..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/15.png b/front/public/images/small/TConstruct/excavatorHead/15.png deleted file mode 100644 index 4883e1df05..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/16.png b/front/public/images/small/TConstruct/excavatorHead/16.png deleted file mode 100644 index b9716f0c18..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/17.png b/front/public/images/small/TConstruct/excavatorHead/17.png deleted file mode 100644 index 40ddeddfc1..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/18.png b/front/public/images/small/TConstruct/excavatorHead/18.png deleted file mode 100644 index befe170cc3..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/2.png b/front/public/images/small/TConstruct/excavatorHead/2.png deleted file mode 100644 index 1338a9c902..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/3.png b/front/public/images/small/TConstruct/excavatorHead/3.png deleted file mode 100644 index 0927b857ce..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/314.png b/front/public/images/small/TConstruct/excavatorHead/314.png deleted file mode 100644 index 7eb32cd9a1..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/4.png b/front/public/images/small/TConstruct/excavatorHead/4.png deleted file mode 100644 index 3fed749636..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/5.png b/front/public/images/small/TConstruct/excavatorHead/5.png deleted file mode 100644 index 0f93641cf6..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/6.png b/front/public/images/small/TConstruct/excavatorHead/6.png deleted file mode 100644 index c3d7d28196..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/7.png b/front/public/images/small/TConstruct/excavatorHead/7.png deleted file mode 100644 index 15457c619f..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/8.png b/front/public/images/small/TConstruct/excavatorHead/8.png deleted file mode 100644 index 6f948e7ac5..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/excavatorHead/9.png b/front/public/images/small/TConstruct/excavatorHead/9.png deleted file mode 100644 index 196551dc78..0000000000 Binary files a/front/public/images/small/TConstruct/excavatorHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/explosive.slime/0.png b/front/public/images/small/TConstruct/explosive.slime/0.png deleted file mode 100644 index ee57741442..0000000000 Binary files a/front/public/images/small/TConstruct/explosive.slime/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/explosive.slime/2.png b/front/public/images/small/TConstruct/explosive.slime/2.png deleted file mode 100644 index 3a73cd2330..0000000000 Binary files a/front/public/images/small/TConstruct/explosive.slime/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fletching/0.png b/front/public/images/small/TConstruct/fletching/0.png deleted file mode 100644 index c368585fc6..0000000000 Binary files a/front/public/images/small/TConstruct/fletching/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fletching/1.png b/front/public/images/small/TConstruct/fletching/1.png deleted file mode 100644 index 11d6e4b846..0000000000 Binary files a/front/public/images/small/TConstruct/fletching/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fletching/2.png b/front/public/images/small/TConstruct/fletching/2.png deleted file mode 100644 index 9cedfc4179..0000000000 Binary files a/front/public/images/small/TConstruct/fletching/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fletching/3.png b/front/public/images/small/TConstruct/fletching/3.png deleted file mode 100644 index fa68f87c51..0000000000 Binary files a/front/public/images/small/TConstruct/fletching/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fletching/4.png b/front/public/images/small/TConstruct/fletching/4.png deleted file mode 100644 index ebfbd90cfe..0000000000 Binary files a/front/public/images/small/TConstruct/fletching/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.ender/0.png b/front/public/images/small/TConstruct/fluid.ender/0.png deleted file mode 100644 index de841ef9d5..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.ender/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.alubrass/0.png b/front/public/images/small/TConstruct/fluid.molten.alubrass/0.png deleted file mode 100644 index b2b9b30f99..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.alubrass/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.aluminum/0.png b/front/public/images/small/TConstruct/fluid.molten.aluminum/0.png deleted file mode 100644 index 3acba09fab..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.aluminum/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.alumite/0.png b/front/public/images/small/TConstruct/fluid.molten.alumite/0.png deleted file mode 100644 index 474b8cc1ad..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.alumite/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.ardite/0.png b/front/public/images/small/TConstruct/fluid.molten.ardite/0.png deleted file mode 100644 index 60fb36a5c1..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.ardite/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.bronze/0.png b/front/public/images/small/TConstruct/fluid.molten.bronze/0.png deleted file mode 100644 index 1382ac8ef8..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.bronze/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.cobalt/0.png b/front/public/images/small/TConstruct/fluid.molten.cobalt/0.png deleted file mode 100644 index f0af8b626b..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.cobalt/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.copper/0.png b/front/public/images/small/TConstruct/fluid.molten.copper/0.png deleted file mode 100644 index 4f9188442d..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.copper/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.electrum/0.png b/front/public/images/small/TConstruct/fluid.molten.electrum/0.png deleted file mode 100644 index df4ff172b0..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.electrum/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.enderium/0.png b/front/public/images/small/TConstruct/fluid.molten.enderium/0.png deleted file mode 100644 index f0758a76f3..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.enderium/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.glass/0.png b/front/public/images/small/TConstruct/fluid.molten.glass/0.png deleted file mode 100644 index bcfccacc52..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.glass/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.gold/0.png b/front/public/images/small/TConstruct/fluid.molten.gold/0.png deleted file mode 100644 index 75f8dd38e3..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.gold/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.invar/0.png b/front/public/images/small/TConstruct/fluid.molten.invar/0.png deleted file mode 100644 index a208a00c9a..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.invar/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.iron/0.png b/front/public/images/small/TConstruct/fluid.molten.iron/0.png deleted file mode 100644 index 2adb9541d1..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.iron/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.lead/0.png b/front/public/images/small/TConstruct/fluid.molten.lead/0.png deleted file mode 100644 index 23c3e5930c..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.lead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.lumium/0.png b/front/public/images/small/TConstruct/fluid.molten.lumium/0.png deleted file mode 100644 index 7438a69e03..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.lumium/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.manyullyn/0.png b/front/public/images/small/TConstruct/fluid.molten.manyullyn/0.png deleted file mode 100644 index 5cfc168527..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.manyullyn/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.mithril/0.png b/front/public/images/small/TConstruct/fluid.molten.mithril/0.png deleted file mode 100644 index 78fa3d3c2b..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.mithril/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.nickel/0.png b/front/public/images/small/TConstruct/fluid.molten.nickel/0.png deleted file mode 100644 index eecbf5199a..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.nickel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.obsidian/0.png b/front/public/images/small/TConstruct/fluid.molten.obsidian/0.png deleted file mode 100644 index 8b04310984..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.obsidian/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.pigiron/0.png b/front/public/images/small/TConstruct/fluid.molten.pigiron/0.png deleted file mode 100644 index f8a9eba2d7..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.pigiron/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.shiny/0.png b/front/public/images/small/TConstruct/fluid.molten.shiny/0.png deleted file mode 100644 index 9ddaaab2e7..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.shiny/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.signalum/0.png b/front/public/images/small/TConstruct/fluid.molten.signalum/0.png deleted file mode 100644 index 8a98914659..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.signalum/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.silver/0.png b/front/public/images/small/TConstruct/fluid.molten.silver/0.png deleted file mode 100644 index 8ca7b084b1..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.silver/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.steel/0.png b/front/public/images/small/TConstruct/fluid.molten.steel/0.png deleted file mode 100644 index c65fc662f4..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.steel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/fluid.molten.tin/0.png b/front/public/images/small/TConstruct/fluid.molten.tin/0.png deleted file mode 100644 index 7758e7d3be..0000000000 Binary files a/front/public/images/small/TConstruct/fluid.molten.tin/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypan/0.png b/front/public/images/small/TConstruct/frypan/0.png deleted file mode 100644 index 80dd43394d..0000000000 Binary files a/front/public/images/small/TConstruct/frypan/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/0.png b/front/public/images/small/TConstruct/frypanHead/0.png deleted file mode 100644 index c88a275dba..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/1.png b/front/public/images/small/TConstruct/frypanHead/1.png deleted file mode 100644 index d94a40f67d..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/10.png b/front/public/images/small/TConstruct/frypanHead/10.png deleted file mode 100644 index d42afbba4c..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/11.png b/front/public/images/small/TConstruct/frypanHead/11.png deleted file mode 100644 index f3a3f7f02c..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/12.png b/front/public/images/small/TConstruct/frypanHead/12.png deleted file mode 100644 index ae527ae14e..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/13.png b/front/public/images/small/TConstruct/frypanHead/13.png deleted file mode 100644 index 17b91f725e..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/14.png b/front/public/images/small/TConstruct/frypanHead/14.png deleted file mode 100644 index 82d4f67999..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/15.png b/front/public/images/small/TConstruct/frypanHead/15.png deleted file mode 100644 index e3837331f8..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/16.png b/front/public/images/small/TConstruct/frypanHead/16.png deleted file mode 100644 index ff5af21abc..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/17.png b/front/public/images/small/TConstruct/frypanHead/17.png deleted file mode 100644 index 8531878d5f..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/18.png b/front/public/images/small/TConstruct/frypanHead/18.png deleted file mode 100644 index f2c31eb126..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/2.png b/front/public/images/small/TConstruct/frypanHead/2.png deleted file mode 100644 index eca44767a9..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/3.png b/front/public/images/small/TConstruct/frypanHead/3.png deleted file mode 100644 index 8201a48207..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/314.png b/front/public/images/small/TConstruct/frypanHead/314.png deleted file mode 100644 index bbaede844c..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/4.png b/front/public/images/small/TConstruct/frypanHead/4.png deleted file mode 100644 index db434d50ad..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/5.png b/front/public/images/small/TConstruct/frypanHead/5.png deleted file mode 100644 index d157e78447..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/6.png b/front/public/images/small/TConstruct/frypanHead/6.png deleted file mode 100644 index 14a06bbc01..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/7.png b/front/public/images/small/TConstruct/frypanHead/7.png deleted file mode 100644 index f1352a9a9d..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/8.png b/front/public/images/small/TConstruct/frypanHead/8.png deleted file mode 100644 index d4ca025a77..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/frypanHead/9.png b/front/public/images/small/TConstruct/frypanHead/9.png deleted file mode 100644 index 6722e83366..0000000000 Binary files a/front/public/images/small/TConstruct/frypanHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/gearCast/0.png b/front/public/images/small/TConstruct/gearCast/0.png deleted file mode 100644 index 77d0af059d..0000000000 Binary files a/front/public/images/small/TConstruct/gearCast/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/goldHead/0.png b/front/public/images/small/TConstruct/goldHead/0.png deleted file mode 100644 index ecb3ac3f29..0000000000 Binary files a/front/public/images/small/TConstruct/goldHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammer/0.png b/front/public/images/small/TConstruct/hammer/0.png deleted file mode 100644 index f994210beb..0000000000 Binary files a/front/public/images/small/TConstruct/hammer/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/0.png b/front/public/images/small/TConstruct/hammerHead/0.png deleted file mode 100644 index 8b55901137..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/1.png b/front/public/images/small/TConstruct/hammerHead/1.png deleted file mode 100644 index ef0280cc3f..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/10.png b/front/public/images/small/TConstruct/hammerHead/10.png deleted file mode 100644 index a15d49181a..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/11.png b/front/public/images/small/TConstruct/hammerHead/11.png deleted file mode 100644 index a746c2df0e..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/12.png b/front/public/images/small/TConstruct/hammerHead/12.png deleted file mode 100644 index c6829a93c9..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/13.png b/front/public/images/small/TConstruct/hammerHead/13.png deleted file mode 100644 index abe0e77272..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/14.png b/front/public/images/small/TConstruct/hammerHead/14.png deleted file mode 100644 index 6eeaf8d63c..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/15.png b/front/public/images/small/TConstruct/hammerHead/15.png deleted file mode 100644 index 4e38ae6827..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/16.png b/front/public/images/small/TConstruct/hammerHead/16.png deleted file mode 100644 index c1db3a0112..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/17.png b/front/public/images/small/TConstruct/hammerHead/17.png deleted file mode 100644 index 007f6d1ffe..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/18.png b/front/public/images/small/TConstruct/hammerHead/18.png deleted file mode 100644 index 394195661d..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/2.png b/front/public/images/small/TConstruct/hammerHead/2.png deleted file mode 100644 index 641197f6b5..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/3.png b/front/public/images/small/TConstruct/hammerHead/3.png deleted file mode 100644 index 6c00ce83fe..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/314.png b/front/public/images/small/TConstruct/hammerHead/314.png deleted file mode 100644 index 384865abbb..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/4.png b/front/public/images/small/TConstruct/hammerHead/4.png deleted file mode 100644 index 3fc1128ab6..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/5.png b/front/public/images/small/TConstruct/hammerHead/5.png deleted file mode 100644 index 3c17c1892e..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/6.png b/front/public/images/small/TConstruct/hammerHead/6.png deleted file mode 100644 index c6c4996a55..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/7.png b/front/public/images/small/TConstruct/hammerHead/7.png deleted file mode 100644 index 7a1e68f050..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/8.png b/front/public/images/small/TConstruct/hammerHead/8.png deleted file mode 100644 index d787000678..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hammerHead/9.png b/front/public/images/small/TConstruct/hammerHead/9.png deleted file mode 100644 index b331f80287..0000000000 Binary files a/front/public/images/small/TConstruct/hammerHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/0.png b/front/public/images/small/TConstruct/handGuard/0.png deleted file mode 100644 index 1cf235aa52..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/1.png b/front/public/images/small/TConstruct/handGuard/1.png deleted file mode 100644 index 4dc7b3da12..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/10.png b/front/public/images/small/TConstruct/handGuard/10.png deleted file mode 100644 index a0d110ffb1..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/11.png b/front/public/images/small/TConstruct/handGuard/11.png deleted file mode 100644 index f0c3206a1a..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/12.png b/front/public/images/small/TConstruct/handGuard/12.png deleted file mode 100644 index 569da7778b..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/13.png b/front/public/images/small/TConstruct/handGuard/13.png deleted file mode 100644 index 80962e2861..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/14.png b/front/public/images/small/TConstruct/handGuard/14.png deleted file mode 100644 index 0f0617d53a..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/15.png b/front/public/images/small/TConstruct/handGuard/15.png deleted file mode 100644 index 7e2345c1f0..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/16.png b/front/public/images/small/TConstruct/handGuard/16.png deleted file mode 100644 index c115e79ffa..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/17.png b/front/public/images/small/TConstruct/handGuard/17.png deleted file mode 100644 index e499ccefed..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/18.png b/front/public/images/small/TConstruct/handGuard/18.png deleted file mode 100644 index be0f70c196..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/2.png b/front/public/images/small/TConstruct/handGuard/2.png deleted file mode 100644 index 110bbf5dbe..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/3.png b/front/public/images/small/TConstruct/handGuard/3.png deleted file mode 100644 index a90c2a8551..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/314.png b/front/public/images/small/TConstruct/handGuard/314.png deleted file mode 100644 index 536979e51d..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/4.png b/front/public/images/small/TConstruct/handGuard/4.png deleted file mode 100644 index 960844d498..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/5.png b/front/public/images/small/TConstruct/handGuard/5.png deleted file mode 100644 index 440b3ce478..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/6.png b/front/public/images/small/TConstruct/handGuard/6.png deleted file mode 100644 index f282a1162e..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/7.png b/front/public/images/small/TConstruct/handGuard/7.png deleted file mode 100644 index 076edff6fa..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/8.png b/front/public/images/small/TConstruct/handGuard/8.png deleted file mode 100644 index c08cda5b24..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/handGuard/9.png b/front/public/images/small/TConstruct/handGuard/9.png deleted file mode 100644 index 633bc11f8c..0000000000 Binary files a/front/public/images/small/TConstruct/handGuard/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchet/0.png b/front/public/images/small/TConstruct/hatchet/0.png deleted file mode 100644 index 4c4d74d5a8..0000000000 Binary files a/front/public/images/small/TConstruct/hatchet/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/0.png b/front/public/images/small/TConstruct/hatchetHead/0.png deleted file mode 100644 index 2873775a61..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/1.png b/front/public/images/small/TConstruct/hatchetHead/1.png deleted file mode 100644 index feb2c5485f..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/10.png b/front/public/images/small/TConstruct/hatchetHead/10.png deleted file mode 100644 index b00fc2ccf7..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/11.png b/front/public/images/small/TConstruct/hatchetHead/11.png deleted file mode 100644 index f31b6cd413..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/12.png b/front/public/images/small/TConstruct/hatchetHead/12.png deleted file mode 100644 index 8232b9d677..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/13.png b/front/public/images/small/TConstruct/hatchetHead/13.png deleted file mode 100644 index 114c52266f..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/14.png b/front/public/images/small/TConstruct/hatchetHead/14.png deleted file mode 100644 index 4cd919d798..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/15.png b/front/public/images/small/TConstruct/hatchetHead/15.png deleted file mode 100644 index 25f9b4e56c..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/16.png b/front/public/images/small/TConstruct/hatchetHead/16.png deleted file mode 100644 index c84d003271..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/17.png b/front/public/images/small/TConstruct/hatchetHead/17.png deleted file mode 100644 index 384fdfdd06..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/18.png b/front/public/images/small/TConstruct/hatchetHead/18.png deleted file mode 100644 index 03ae226316..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/2.png b/front/public/images/small/TConstruct/hatchetHead/2.png deleted file mode 100644 index 8a58cf920f..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/3.png b/front/public/images/small/TConstruct/hatchetHead/3.png deleted file mode 100644 index 0a7f0fd75f..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/314.png b/front/public/images/small/TConstruct/hatchetHead/314.png deleted file mode 100644 index 5ad4fbf432..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/4.png b/front/public/images/small/TConstruct/hatchetHead/4.png deleted file mode 100644 index c232756a54..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/5.png b/front/public/images/small/TConstruct/hatchetHead/5.png deleted file mode 100644 index 0975811c7d..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/6.png b/front/public/images/small/TConstruct/hatchetHead/6.png deleted file mode 100644 index 41898552aa..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/7.png b/front/public/images/small/TConstruct/hatchetHead/7.png deleted file mode 100644 index 1f7ccf1f9a..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/8.png b/front/public/images/small/TConstruct/hatchetHead/8.png deleted file mode 100644 index e130b7d0e5..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/hatchetHead/9.png b/front/public/images/small/TConstruct/hatchetHead/9.png deleted file mode 100644 index bdea2bc143..0000000000 Binary files a/front/public/images/small/TConstruct/hatchetHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heartCanister/0.png b/front/public/images/small/TConstruct/heartCanister/0.png deleted file mode 100644 index e2fc78ac2b..0000000000 Binary files a/front/public/images/small/TConstruct/heartCanister/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heartCanister/1.png b/front/public/images/small/TConstruct/heartCanister/1.png deleted file mode 100644 index 7b065acf1f..0000000000 Binary files a/front/public/images/small/TConstruct/heartCanister/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heartCanister/2.png b/front/public/images/small/TConstruct/heartCanister/2.png deleted file mode 100644 index bb5819208e..0000000000 Binary files a/front/public/images/small/TConstruct/heartCanister/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heartCanister/3.png b/front/public/images/small/TConstruct/heartCanister/3.png deleted file mode 100644 index f9bb10bd04..0000000000 Binary files a/front/public/images/small/TConstruct/heartCanister/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heartCanister/4.png b/front/public/images/small/TConstruct/heartCanister/4.png deleted file mode 100644 index 6c530880fc..0000000000 Binary files a/front/public/images/small/TConstruct/heartCanister/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heartCanister/5.png b/front/public/images/small/TConstruct/heartCanister/5.png deleted file mode 100644 index 2fac1eff50..0000000000 Binary files a/front/public/images/small/TConstruct/heartCanister/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heartCanister/6.png b/front/public/images/small/TConstruct/heartCanister/6.png deleted file mode 100644 index c63f4dcb5e..0000000000 Binary files a/front/public/images/small/TConstruct/heartCanister/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/0.png b/front/public/images/small/TConstruct/heavyPlate/0.png deleted file mode 100644 index f6efd3ebdc..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/1.png b/front/public/images/small/TConstruct/heavyPlate/1.png deleted file mode 100644 index dde9cac5ab..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/10.png b/front/public/images/small/TConstruct/heavyPlate/10.png deleted file mode 100644 index bff62abf41..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/11.png b/front/public/images/small/TConstruct/heavyPlate/11.png deleted file mode 100644 index 722ef02ab0..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/12.png b/front/public/images/small/TConstruct/heavyPlate/12.png deleted file mode 100644 index 257b2cb3ce..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/13.png b/front/public/images/small/TConstruct/heavyPlate/13.png deleted file mode 100644 index fbcc8f062e..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/14.png b/front/public/images/small/TConstruct/heavyPlate/14.png deleted file mode 100644 index cc288a1790..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/15.png b/front/public/images/small/TConstruct/heavyPlate/15.png deleted file mode 100644 index ea1c77222f..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/16.png b/front/public/images/small/TConstruct/heavyPlate/16.png deleted file mode 100644 index a81ff03627..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/17.png b/front/public/images/small/TConstruct/heavyPlate/17.png deleted file mode 100644 index f36670b8f7..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/18.png b/front/public/images/small/TConstruct/heavyPlate/18.png deleted file mode 100644 index 46949f8d02..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/2.png b/front/public/images/small/TConstruct/heavyPlate/2.png deleted file mode 100644 index d8e0fa20d6..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/3.png b/front/public/images/small/TConstruct/heavyPlate/3.png deleted file mode 100644 index 14a06b556b..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/314.png b/front/public/images/small/TConstruct/heavyPlate/314.png deleted file mode 100644 index b1a85cf542..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/4.png b/front/public/images/small/TConstruct/heavyPlate/4.png deleted file mode 100644 index 1ad35b4889..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/5.png b/front/public/images/small/TConstruct/heavyPlate/5.png deleted file mode 100644 index 9d8b7a928d..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/6.png b/front/public/images/small/TConstruct/heavyPlate/6.png deleted file mode 100644 index 1b6d8fe5d8..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/7.png b/front/public/images/small/TConstruct/heavyPlate/7.png deleted file mode 100644 index 3a39ba678b..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/8.png b/front/public/images/small/TConstruct/heavyPlate/8.png deleted file mode 100644 index 793c5eb7c4..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/heavyPlate/9.png b/front/public/images/small/TConstruct/heavyPlate/9.png deleted file mode 100644 index d413519ee0..0000000000 Binary files a/front/public/images/small/TConstruct/heavyPlate/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/helmetWood/0.png b/front/public/images/small/TConstruct/helmetWood/0.png deleted file mode 100644 index fc000db7aa..0000000000 Binary files a/front/public/images/small/TConstruct/helmetWood/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/0.png b/front/public/images/small/TConstruct/jerky/0.png deleted file mode 100644 index 213a0d18fd..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/1.png b/front/public/images/small/TConstruct/jerky/1.png deleted file mode 100644 index 1cc80af521..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/2.png b/front/public/images/small/TConstruct/jerky/2.png deleted file mode 100644 index 7af9c2eab7..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/3.png b/front/public/images/small/TConstruct/jerky/3.png deleted file mode 100644 index a22e5af81c..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/4.png b/front/public/images/small/TConstruct/jerky/4.png deleted file mode 100644 index ca61daa6e2..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/5.png b/front/public/images/small/TConstruct/jerky/5.png deleted file mode 100644 index 3314e6909a..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/6.png b/front/public/images/small/TConstruct/jerky/6.png deleted file mode 100644 index 67de052107..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/jerky/7.png b/front/public/images/small/TConstruct/jerky/7.png deleted file mode 100644 index 90ffd5b807..0000000000 Binary files a/front/public/images/small/TConstruct/jerky/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knapsack/0.png b/front/public/images/small/TConstruct/knapsack/0.png deleted file mode 100644 index fe58946e1b..0000000000 Binary files a/front/public/images/small/TConstruct/knapsack/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/0.png b/front/public/images/small/TConstruct/knifeBlade/0.png deleted file mode 100644 index ed13e4c4cc..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/1.png b/front/public/images/small/TConstruct/knifeBlade/1.png deleted file mode 100644 index 6dda9a018e..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/10.png b/front/public/images/small/TConstruct/knifeBlade/10.png deleted file mode 100644 index de4ff85051..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/11.png b/front/public/images/small/TConstruct/knifeBlade/11.png deleted file mode 100644 index be98447c07..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/12.png b/front/public/images/small/TConstruct/knifeBlade/12.png deleted file mode 100644 index b3ef5b86cb..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/13.png b/front/public/images/small/TConstruct/knifeBlade/13.png deleted file mode 100644 index 64b3fa2eac..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/14.png b/front/public/images/small/TConstruct/knifeBlade/14.png deleted file mode 100644 index 739382980e..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/15.png b/front/public/images/small/TConstruct/knifeBlade/15.png deleted file mode 100644 index ca474305a6..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/16.png b/front/public/images/small/TConstruct/knifeBlade/16.png deleted file mode 100644 index eb472e42b1..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/17.png b/front/public/images/small/TConstruct/knifeBlade/17.png deleted file mode 100644 index e9b8d328ff..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/18.png b/front/public/images/small/TConstruct/knifeBlade/18.png deleted file mode 100644 index c9ac64b1fc..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/2.png b/front/public/images/small/TConstruct/knifeBlade/2.png deleted file mode 100644 index 8f6aa4dedd..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/3.png b/front/public/images/small/TConstruct/knifeBlade/3.png deleted file mode 100644 index 761d402981..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/314.png b/front/public/images/small/TConstruct/knifeBlade/314.png deleted file mode 100644 index 318fbdde20..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/4.png b/front/public/images/small/TConstruct/knifeBlade/4.png deleted file mode 100644 index 9068be1c69..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/5.png b/front/public/images/small/TConstruct/knifeBlade/5.png deleted file mode 100644 index c532dd5a09..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/6.png b/front/public/images/small/TConstruct/knifeBlade/6.png deleted file mode 100644 index a811b8d6ed..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/7.png b/front/public/images/small/TConstruct/knifeBlade/7.png deleted file mode 100644 index 44e2626960..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/8.png b/front/public/images/small/TConstruct/knifeBlade/8.png deleted file mode 100644 index 8424c086cc..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/knifeBlade/9.png b/front/public/images/small/TConstruct/knifeBlade/9.png deleted file mode 100644 index ba59ddc7fe..0000000000 Binary files a/front/public/images/small/TConstruct/knifeBlade/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/0.png b/front/public/images/small/TConstruct/largeSwordBlade/0.png deleted file mode 100644 index 00cf8eccef..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/1.png b/front/public/images/small/TConstruct/largeSwordBlade/1.png deleted file mode 100644 index 76e66a6760..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/10.png b/front/public/images/small/TConstruct/largeSwordBlade/10.png deleted file mode 100644 index a14a59d432..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/11.png b/front/public/images/small/TConstruct/largeSwordBlade/11.png deleted file mode 100644 index e3880312c8..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/12.png b/front/public/images/small/TConstruct/largeSwordBlade/12.png deleted file mode 100644 index a9ff02ee28..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/13.png b/front/public/images/small/TConstruct/largeSwordBlade/13.png deleted file mode 100644 index 798b839eb1..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/14.png b/front/public/images/small/TConstruct/largeSwordBlade/14.png deleted file mode 100644 index 83b7e3894a..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/15.png b/front/public/images/small/TConstruct/largeSwordBlade/15.png deleted file mode 100644 index 2a2b3b9b2a..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/16.png b/front/public/images/small/TConstruct/largeSwordBlade/16.png deleted file mode 100644 index a56b3bfb8e..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/17.png b/front/public/images/small/TConstruct/largeSwordBlade/17.png deleted file mode 100644 index 3c6b50097e..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/18.png b/front/public/images/small/TConstruct/largeSwordBlade/18.png deleted file mode 100644 index 80d1257e0e..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/2.png b/front/public/images/small/TConstruct/largeSwordBlade/2.png deleted file mode 100644 index 4d567dbc21..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/3.png b/front/public/images/small/TConstruct/largeSwordBlade/3.png deleted file mode 100644 index e259d0a26d..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/314.png b/front/public/images/small/TConstruct/largeSwordBlade/314.png deleted file mode 100644 index 6e68c3fbc9..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/4.png b/front/public/images/small/TConstruct/largeSwordBlade/4.png deleted file mode 100644 index 39f4ddefd2..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/5.png b/front/public/images/small/TConstruct/largeSwordBlade/5.png deleted file mode 100644 index 6523858197..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/6.png b/front/public/images/small/TConstruct/largeSwordBlade/6.png deleted file mode 100644 index 731cbd520b..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/7.png b/front/public/images/small/TConstruct/largeSwordBlade/7.png deleted file mode 100644 index 5dc53db8f4..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/8.png b/front/public/images/small/TConstruct/largeSwordBlade/8.png deleted file mode 100644 index bc0056bc9b..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/largeSwordBlade/9.png b/front/public/images/small/TConstruct/largeSwordBlade/9.png deleted file mode 100644 index b97c831ab2..0000000000 Binary files a/front/public/images/small/TConstruct/largeSwordBlade/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/leggingsWood/0.png b/front/public/images/small/TConstruct/leggingsWood/0.png deleted file mode 100644 index b3dfa38911..0000000000 Binary files a/front/public/images/small/TConstruct/leggingsWood/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/liquid.blood/0.png b/front/public/images/small/TConstruct/liquid.blood/0.png deleted file mode 100644 index 7a4ac4f8fa..0000000000 Binary files a/front/public/images/small/TConstruct/liquid.blood/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/liquid.glue/0.png b/front/public/images/small/TConstruct/liquid.glue/0.png deleted file mode 100644 index ade9d9db8d..0000000000 Binary files a/front/public/images/small/TConstruct/liquid.glue/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/liquid.slime/0.png b/front/public/images/small/TConstruct/liquid.slime/0.png deleted file mode 100644 index 790f3dafbe..0000000000 Binary files a/front/public/images/small/TConstruct/liquid.slime/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/longsword/0.png b/front/public/images/small/TConstruct/longsword/0.png deleted file mode 100644 index 93ea0aafe8..0000000000 Binary files a/front/public/images/small/TConstruct/longsword/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/lumberaxe/0.png b/front/public/images/small/TConstruct/lumberaxe/0.png deleted file mode 100644 index 83f751b252..0000000000 Binary files a/front/public/images/small/TConstruct/lumberaxe/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/manualBook/0.png b/front/public/images/small/TConstruct/manualBook/0.png deleted file mode 100644 index e7839c7aef..0000000000 Binary files a/front/public/images/small/TConstruct/manualBook/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/manualBook/1.png b/front/public/images/small/TConstruct/manualBook/1.png deleted file mode 100644 index a9c5ca92ba..0000000000 Binary files a/front/public/images/small/TConstruct/manualBook/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/manualBook/2.png b/front/public/images/small/TConstruct/manualBook/2.png deleted file mode 100644 index 1f2b6f641c..0000000000 Binary files a/front/public/images/small/TConstruct/manualBook/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/manualBook/3.png b/front/public/images/small/TConstruct/manualBook/3.png deleted file mode 100644 index e6cab96d1f..0000000000 Binary files a/front/public/images/small/TConstruct/manualBook/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/manualBook/4.png b/front/public/images/small/TConstruct/manualBook/4.png deleted file mode 100644 index 3b5f980247..0000000000 Binary files a/front/public/images/small/TConstruct/manualBook/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/0.png b/front/public/images/small/TConstruct/materials/0.png deleted file mode 100644 index 4c6621db14..0000000000 Binary files a/front/public/images/small/TConstruct/materials/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/1.png b/front/public/images/small/TConstruct/materials/1.png deleted file mode 100644 index e8da0c4cc0..0000000000 Binary files a/front/public/images/small/TConstruct/materials/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/10.png b/front/public/images/small/TConstruct/materials/10.png deleted file mode 100644 index baf6748013..0000000000 Binary files a/front/public/images/small/TConstruct/materials/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/11.png b/front/public/images/small/TConstruct/materials/11.png deleted file mode 100644 index 59c05afdb4..0000000000 Binary files a/front/public/images/small/TConstruct/materials/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/12.png b/front/public/images/small/TConstruct/materials/12.png deleted file mode 100644 index 96ee0c858e..0000000000 Binary files a/front/public/images/small/TConstruct/materials/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/13.png b/front/public/images/small/TConstruct/materials/13.png deleted file mode 100644 index ea7895492e..0000000000 Binary files a/front/public/images/small/TConstruct/materials/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/14.png b/front/public/images/small/TConstruct/materials/14.png deleted file mode 100644 index c8551fe324..0000000000 Binary files a/front/public/images/small/TConstruct/materials/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/15.png b/front/public/images/small/TConstruct/materials/15.png deleted file mode 100644 index 8878dce128..0000000000 Binary files a/front/public/images/small/TConstruct/materials/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/16.png b/front/public/images/small/TConstruct/materials/16.png deleted file mode 100644 index 8261c1c107..0000000000 Binary files a/front/public/images/small/TConstruct/materials/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/17.png b/front/public/images/small/TConstruct/materials/17.png deleted file mode 100644 index e51cc2e327..0000000000 Binary files a/front/public/images/small/TConstruct/materials/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/18.png b/front/public/images/small/TConstruct/materials/18.png deleted file mode 100644 index 090395b557..0000000000 Binary files a/front/public/images/small/TConstruct/materials/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/19.png b/front/public/images/small/TConstruct/materials/19.png deleted file mode 100644 index 12a58491b9..0000000000 Binary files a/front/public/images/small/TConstruct/materials/19.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/2.png b/front/public/images/small/TConstruct/materials/2.png deleted file mode 100644 index 84e3f68da3..0000000000 Binary files a/front/public/images/small/TConstruct/materials/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/20.png b/front/public/images/small/TConstruct/materials/20.png deleted file mode 100644 index 8f2fd17847..0000000000 Binary files a/front/public/images/small/TConstruct/materials/20.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/21.png b/front/public/images/small/TConstruct/materials/21.png deleted file mode 100644 index 8f0f158fbf..0000000000 Binary files a/front/public/images/small/TConstruct/materials/21.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/22.png b/front/public/images/small/TConstruct/materials/22.png deleted file mode 100644 index 079689ec8c..0000000000 Binary files a/front/public/images/small/TConstruct/materials/22.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/24.png b/front/public/images/small/TConstruct/materials/24.png deleted file mode 100644 index 7141207c18..0000000000 Binary files a/front/public/images/small/TConstruct/materials/24.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/25.png b/front/public/images/small/TConstruct/materials/25.png deleted file mode 100644 index 9e3472f9a9..0000000000 Binary files a/front/public/images/small/TConstruct/materials/25.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/26.png b/front/public/images/small/TConstruct/materials/26.png deleted file mode 100644 index 095ad96f54..0000000000 Binary files a/front/public/images/small/TConstruct/materials/26.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/27.png b/front/public/images/small/TConstruct/materials/27.png deleted file mode 100644 index 12a67e3962..0000000000 Binary files a/front/public/images/small/TConstruct/materials/27.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/28.png b/front/public/images/small/TConstruct/materials/28.png deleted file mode 100644 index 87e86715b6..0000000000 Binary files a/front/public/images/small/TConstruct/materials/28.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/29.png b/front/public/images/small/TConstruct/materials/29.png deleted file mode 100644 index 58a5e3c482..0000000000 Binary files a/front/public/images/small/TConstruct/materials/29.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/3.png b/front/public/images/small/TConstruct/materials/3.png deleted file mode 100644 index cb6e448dda..0000000000 Binary files a/front/public/images/small/TConstruct/materials/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/30.png b/front/public/images/small/TConstruct/materials/30.png deleted file mode 100644 index 2ce118eefb..0000000000 Binary files a/front/public/images/small/TConstruct/materials/30.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/31.png b/front/public/images/small/TConstruct/materials/31.png deleted file mode 100644 index 93ec83f649..0000000000 Binary files a/front/public/images/small/TConstruct/materials/31.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/32.png b/front/public/images/small/TConstruct/materials/32.png deleted file mode 100644 index d5f0246377..0000000000 Binary files a/front/public/images/small/TConstruct/materials/32.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/33.png b/front/public/images/small/TConstruct/materials/33.png deleted file mode 100644 index f35d054e7f..0000000000 Binary files a/front/public/images/small/TConstruct/materials/33.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/34.png b/front/public/images/small/TConstruct/materials/34.png deleted file mode 100644 index 47f484dd06..0000000000 Binary files a/front/public/images/small/TConstruct/materials/34.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/35.png b/front/public/images/small/TConstruct/materials/35.png deleted file mode 100644 index a3d0473eee..0000000000 Binary files a/front/public/images/small/TConstruct/materials/35.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/36.png b/front/public/images/small/TConstruct/materials/36.png deleted file mode 100644 index df81374502..0000000000 Binary files a/front/public/images/small/TConstruct/materials/36.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/37.png b/front/public/images/small/TConstruct/materials/37.png deleted file mode 100644 index 0d7c3ce4f3..0000000000 Binary files a/front/public/images/small/TConstruct/materials/37.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/38.png b/front/public/images/small/TConstruct/materials/38.png deleted file mode 100644 index c8e5622986..0000000000 Binary files a/front/public/images/small/TConstruct/materials/38.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/39.png b/front/public/images/small/TConstruct/materials/39.png deleted file mode 100644 index 497d9da550..0000000000 Binary files a/front/public/images/small/TConstruct/materials/39.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/4.png b/front/public/images/small/TConstruct/materials/4.png deleted file mode 100644 index cb16a94951..0000000000 Binary files a/front/public/images/small/TConstruct/materials/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/40.png b/front/public/images/small/TConstruct/materials/40.png deleted file mode 100644 index c69cb3541e..0000000000 Binary files a/front/public/images/small/TConstruct/materials/40.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/41.png b/front/public/images/small/TConstruct/materials/41.png deleted file mode 100644 index a2cfb6e746..0000000000 Binary files a/front/public/images/small/TConstruct/materials/41.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/42.png b/front/public/images/small/TConstruct/materials/42.png deleted file mode 100644 index 736d4ed802..0000000000 Binary files a/front/public/images/small/TConstruct/materials/42.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/43.png b/front/public/images/small/TConstruct/materials/43.png deleted file mode 100644 index 28c35f56ea..0000000000 Binary files a/front/public/images/small/TConstruct/materials/43.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/5.png b/front/public/images/small/TConstruct/materials/5.png deleted file mode 100644 index a67aaa7534..0000000000 Binary files a/front/public/images/small/TConstruct/materials/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/6.png b/front/public/images/small/TConstruct/materials/6.png deleted file mode 100644 index 20623877ee..0000000000 Binary files a/front/public/images/small/TConstruct/materials/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/7.png b/front/public/images/small/TConstruct/materials/7.png deleted file mode 100644 index 62be6d3974..0000000000 Binary files a/front/public/images/small/TConstruct/materials/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/8.png b/front/public/images/small/TConstruct/materials/8.png deleted file mode 100644 index 52069d35c0..0000000000 Binary files a/front/public/images/small/TConstruct/materials/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/materials/9.png b/front/public/images/small/TConstruct/materials/9.png deleted file mode 100644 index 7d96365c17..0000000000 Binary files a/front/public/images/small/TConstruct/materials/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/mattock/0.png b/front/public/images/small/TConstruct/mattock/0.png deleted file mode 100644 index c6bf667e44..0000000000 Binary files a/front/public/images/small/TConstruct/mattock/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/0.png b/front/public/images/small/TConstruct/metalPattern/0.png deleted file mode 100644 index 907fb86bc2..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/1.png b/front/public/images/small/TConstruct/metalPattern/1.png deleted file mode 100644 index 1a6d085725..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/10.png b/front/public/images/small/TConstruct/metalPattern/10.png deleted file mode 100644 index e975f1d218..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/11.png b/front/public/images/small/TConstruct/metalPattern/11.png deleted file mode 100644 index ef73ed549d..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/12.png b/front/public/images/small/TConstruct/metalPattern/12.png deleted file mode 100644 index 38e6fea6c7..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/13.png b/front/public/images/small/TConstruct/metalPattern/13.png deleted file mode 100644 index d03d76c15d..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/14.png b/front/public/images/small/TConstruct/metalPattern/14.png deleted file mode 100644 index ebd35b5456..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/15.png b/front/public/images/small/TConstruct/metalPattern/15.png deleted file mode 100644 index fb63696d47..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/16.png b/front/public/images/small/TConstruct/metalPattern/16.png deleted file mode 100644 index c719e4670c..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/17.png b/front/public/images/small/TConstruct/metalPattern/17.png deleted file mode 100644 index a0ef9113aa..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/18.png b/front/public/images/small/TConstruct/metalPattern/18.png deleted file mode 100644 index 69eb43a546..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/19.png b/front/public/images/small/TConstruct/metalPattern/19.png deleted file mode 100644 index cfbd7c593e..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/19.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/2.png b/front/public/images/small/TConstruct/metalPattern/2.png deleted file mode 100644 index 9ace3be2df..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/20.png b/front/public/images/small/TConstruct/metalPattern/20.png deleted file mode 100644 index 468d495dc4..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/20.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/21.png b/front/public/images/small/TConstruct/metalPattern/21.png deleted file mode 100644 index 7f4cae58fb..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/21.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/22.png b/front/public/images/small/TConstruct/metalPattern/22.png deleted file mode 100644 index b161e22b47..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/22.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/25.png b/front/public/images/small/TConstruct/metalPattern/25.png deleted file mode 100644 index 32b0e4cacd..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/25.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/26.png b/front/public/images/small/TConstruct/metalPattern/26.png deleted file mode 100644 index 8e5e2c0a97..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/26.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/27.png b/front/public/images/small/TConstruct/metalPattern/27.png deleted file mode 100644 index 8d273f3bf7..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/27.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/3.png b/front/public/images/small/TConstruct/metalPattern/3.png deleted file mode 100644 index 62face255d..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/4.png b/front/public/images/small/TConstruct/metalPattern/4.png deleted file mode 100644 index f44bca5b97..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/5.png b/front/public/images/small/TConstruct/metalPattern/5.png deleted file mode 100644 index c0f0ce7281..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/6.png b/front/public/images/small/TConstruct/metalPattern/6.png deleted file mode 100644 index 59a8a33ce6..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/7.png b/front/public/images/small/TConstruct/metalPattern/7.png deleted file mode 100644 index a813602712..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/8.png b/front/public/images/small/TConstruct/metalPattern/8.png deleted file mode 100644 index 07a013eeee..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/metalPattern/9.png b/front/public/images/small/TConstruct/metalPattern/9.png deleted file mode 100644 index f1e24eb3bd..0000000000 Binary files a/front/public/images/small/TConstruct/metalPattern/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/molten.emerald/0.png b/front/public/images/small/TConstruct/molten.emerald/0.png deleted file mode 100644 index ebff3aea05..0000000000 Binary files a/front/public/images/small/TConstruct/molten.emerald/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/molten.quartz/0.png b/front/public/images/small/TConstruct/molten.quartz/0.png deleted file mode 100644 index ae456e4d2d..0000000000 Binary files a/front/public/images/small/TConstruct/molten.quartz/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/molten.stone/0.png b/front/public/images/small/TConstruct/molten.stone/0.png deleted file mode 100644 index f416ab5120..0000000000 Binary files a/front/public/images/small/TConstruct/molten.stone/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ore.berries.one/10.png b/front/public/images/small/TConstruct/ore.berries.one/10.png deleted file mode 100644 index 3a0757cb54..0000000000 Binary files a/front/public/images/small/TConstruct/ore.berries.one/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ore.berries.one/11.png b/front/public/images/small/TConstruct/ore.berries.one/11.png deleted file mode 100644 index 322d67e6b9..0000000000 Binary files a/front/public/images/small/TConstruct/ore.berries.one/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ore.berries.one/8.png b/front/public/images/small/TConstruct/ore.berries.one/8.png deleted file mode 100644 index 6c05777077..0000000000 Binary files a/front/public/images/small/TConstruct/ore.berries.one/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ore.berries.one/9.png b/front/public/images/small/TConstruct/ore.berries.one/9.png deleted file mode 100644 index 95ace1c94e..0000000000 Binary files a/front/public/images/small/TConstruct/ore.berries.one/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ore.berries.two/8.png b/front/public/images/small/TConstruct/ore.berries.two/8.png deleted file mode 100644 index d9f292066a..0000000000 Binary files a/front/public/images/small/TConstruct/ore.berries.two/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/ore.berries.two/9.png b/front/public/images/small/TConstruct/ore.berries.two/9.png deleted file mode 100644 index 1cbde733bd..0000000000 Binary files a/front/public/images/small/TConstruct/ore.berries.two/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/oreBerries/0.png b/front/public/images/small/TConstruct/oreBerries/0.png deleted file mode 100644 index 68ac41aecb..0000000000 Binary files a/front/public/images/small/TConstruct/oreBerries/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/oreBerries/1.png b/front/public/images/small/TConstruct/oreBerries/1.png deleted file mode 100644 index 77c62d334c..0000000000 Binary files a/front/public/images/small/TConstruct/oreBerries/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/oreBerries/2.png b/front/public/images/small/TConstruct/oreBerries/2.png deleted file mode 100644 index 296e03efe8..0000000000 Binary files a/front/public/images/small/TConstruct/oreBerries/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/oreBerries/3.png b/front/public/images/small/TConstruct/oreBerries/3.png deleted file mode 100644 index e1a547205b..0000000000 Binary files a/front/public/images/small/TConstruct/oreBerries/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/oreBerries/4.png b/front/public/images/small/TConstruct/oreBerries/4.png deleted file mode 100644 index 7e946fdbed..0000000000 Binary files a/front/public/images/small/TConstruct/oreBerries/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/oreBerries/5.png b/front/public/images/small/TConstruct/oreBerries/5.png deleted file mode 100644 index 08f32cc9be..0000000000 Binary files a/front/public/images/small/TConstruct/oreBerries/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxe/0.png b/front/public/images/small/TConstruct/pickaxe/0.png deleted file mode 100644 index 2b036fc3af..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/0.png b/front/public/images/small/TConstruct/pickaxeHead/0.png deleted file mode 100644 index 37a8ab81c2..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/1.png b/front/public/images/small/TConstruct/pickaxeHead/1.png deleted file mode 100644 index 7681bb7983..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/10.png b/front/public/images/small/TConstruct/pickaxeHead/10.png deleted file mode 100644 index b0db0f7419..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/11.png b/front/public/images/small/TConstruct/pickaxeHead/11.png deleted file mode 100644 index 606bbd5fe2..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/12.png b/front/public/images/small/TConstruct/pickaxeHead/12.png deleted file mode 100644 index 7ce36194f1..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/13.png b/front/public/images/small/TConstruct/pickaxeHead/13.png deleted file mode 100644 index bd9561fd20..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/14.png b/front/public/images/small/TConstruct/pickaxeHead/14.png deleted file mode 100644 index 9f6111fa56..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/15.png b/front/public/images/small/TConstruct/pickaxeHead/15.png deleted file mode 100644 index 5b8f5317bb..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/16.png b/front/public/images/small/TConstruct/pickaxeHead/16.png deleted file mode 100644 index 782c5c26ac..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/17.png b/front/public/images/small/TConstruct/pickaxeHead/17.png deleted file mode 100644 index 360c6a8f57..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/18.png b/front/public/images/small/TConstruct/pickaxeHead/18.png deleted file mode 100644 index ebf005e5d9..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/2.png b/front/public/images/small/TConstruct/pickaxeHead/2.png deleted file mode 100644 index dcba3b4bc1..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/3.png b/front/public/images/small/TConstruct/pickaxeHead/3.png deleted file mode 100644 index 7242a0e02f..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/314.png b/front/public/images/small/TConstruct/pickaxeHead/314.png deleted file mode 100644 index 2ee082379b..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/4.png b/front/public/images/small/TConstruct/pickaxeHead/4.png deleted file mode 100644 index 85ef2400b8..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/5.png b/front/public/images/small/TConstruct/pickaxeHead/5.png deleted file mode 100644 index 0ed7a37ab0..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/6.png b/front/public/images/small/TConstruct/pickaxeHead/6.png deleted file mode 100644 index 19602eb332..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/7.png b/front/public/images/small/TConstruct/pickaxeHead/7.png deleted file mode 100644 index d991935fce..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/8.png b/front/public/images/small/TConstruct/pickaxeHead/8.png deleted file mode 100644 index 4d53ac7ad5..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/pickaxeHead/9.png b/front/public/images/small/TConstruct/pickaxeHead/9.png deleted file mode 100644 index 9fb7c6c3d9..0000000000 Binary files a/front/public/images/small/TConstruct/pickaxeHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/potionLauncher/0.png b/front/public/images/small/TConstruct/potionLauncher/0.png deleted file mode 100644 index e399b76056..0000000000 Binary files a/front/public/images/small/TConstruct/potionLauncher/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/rail.wood/0.png b/front/public/images/small/TConstruct/rail.wood/0.png deleted file mode 100644 index 839424f76c..0000000000 Binary files a/front/public/images/small/TConstruct/rail.wood/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/rapier/0.png b/front/public/images/small/TConstruct/rapier/0.png deleted file mode 100644 index de6c66414f..0000000000 Binary files a/front/public/images/small/TConstruct/rapier/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scythe/0.png b/front/public/images/small/TConstruct/scythe/0.png deleted file mode 100644 index f2a0dbc638..0000000000 Binary files a/front/public/images/small/TConstruct/scythe/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/0.png b/front/public/images/small/TConstruct/scytheBlade/0.png deleted file mode 100644 index 5523f78d91..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/1.png b/front/public/images/small/TConstruct/scytheBlade/1.png deleted file mode 100644 index 3988a85eec..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/10.png b/front/public/images/small/TConstruct/scytheBlade/10.png deleted file mode 100644 index 93f1ed7e31..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/11.png b/front/public/images/small/TConstruct/scytheBlade/11.png deleted file mode 100644 index e5b9e9af2e..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/12.png b/front/public/images/small/TConstruct/scytheBlade/12.png deleted file mode 100644 index 73856755e9..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/13.png b/front/public/images/small/TConstruct/scytheBlade/13.png deleted file mode 100644 index b2e5eb8a62..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/14.png b/front/public/images/small/TConstruct/scytheBlade/14.png deleted file mode 100644 index a3a4201cec..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/15.png b/front/public/images/small/TConstruct/scytheBlade/15.png deleted file mode 100644 index 7347b983c0..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/16.png b/front/public/images/small/TConstruct/scytheBlade/16.png deleted file mode 100644 index 07baddd84c..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/17.png b/front/public/images/small/TConstruct/scytheBlade/17.png deleted file mode 100644 index b974b9a93a..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/18.png b/front/public/images/small/TConstruct/scytheBlade/18.png deleted file mode 100644 index 32de7a2eb1..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/2.png b/front/public/images/small/TConstruct/scytheBlade/2.png deleted file mode 100644 index 207d08d1ad..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/3.png b/front/public/images/small/TConstruct/scytheBlade/3.png deleted file mode 100644 index dfd4ce90a9..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/314.png b/front/public/images/small/TConstruct/scytheBlade/314.png deleted file mode 100644 index aba1e8cd76..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/4.png b/front/public/images/small/TConstruct/scytheBlade/4.png deleted file mode 100644 index ea4a8b5902..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/5.png b/front/public/images/small/TConstruct/scytheBlade/5.png deleted file mode 100644 index db067bc7e0..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/6.png b/front/public/images/small/TConstruct/scytheBlade/6.png deleted file mode 100644 index 08cac42c16..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/7.png b/front/public/images/small/TConstruct/scytheBlade/7.png deleted file mode 100644 index 30afe70760..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/8.png b/front/public/images/small/TConstruct/scytheBlade/8.png deleted file mode 100644 index 48f9e8f635..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/scytheBlade/9.png b/front/public/images/small/TConstruct/scytheBlade/9.png deleted file mode 100644 index 28c7404734..0000000000 Binary files a/front/public/images/small/TConstruct/scytheBlade/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovel/0.png b/front/public/images/small/TConstruct/shovel/0.png deleted file mode 100644 index 04c4996cd5..0000000000 Binary files a/front/public/images/small/TConstruct/shovel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/0.png b/front/public/images/small/TConstruct/shovelHead/0.png deleted file mode 100644 index da04787c18..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/1.png b/front/public/images/small/TConstruct/shovelHead/1.png deleted file mode 100644 index 3e9643341b..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/10.png b/front/public/images/small/TConstruct/shovelHead/10.png deleted file mode 100644 index dbe6040a80..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/11.png b/front/public/images/small/TConstruct/shovelHead/11.png deleted file mode 100644 index e6bc3ba21b..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/12.png b/front/public/images/small/TConstruct/shovelHead/12.png deleted file mode 100644 index 97158c42b6..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/13.png b/front/public/images/small/TConstruct/shovelHead/13.png deleted file mode 100644 index 75193460b1..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/14.png b/front/public/images/small/TConstruct/shovelHead/14.png deleted file mode 100644 index c18815e18a..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/15.png b/front/public/images/small/TConstruct/shovelHead/15.png deleted file mode 100644 index 3f80998fee..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/16.png b/front/public/images/small/TConstruct/shovelHead/16.png deleted file mode 100644 index 2213b65c22..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/17.png b/front/public/images/small/TConstruct/shovelHead/17.png deleted file mode 100644 index d7ef211e1d..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/18.png b/front/public/images/small/TConstruct/shovelHead/18.png deleted file mode 100644 index 633c8ca260..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/2.png b/front/public/images/small/TConstruct/shovelHead/2.png deleted file mode 100644 index fe9d6f2980..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/3.png b/front/public/images/small/TConstruct/shovelHead/3.png deleted file mode 100644 index 20137eb5f9..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/314.png b/front/public/images/small/TConstruct/shovelHead/314.png deleted file mode 100644 index c9f48b40fd..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/4.png b/front/public/images/small/TConstruct/shovelHead/4.png deleted file mode 100644 index 35787abcd8..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/5.png b/front/public/images/small/TConstruct/shovelHead/5.png deleted file mode 100644 index 0a1fee3b4e..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/6.png b/front/public/images/small/TConstruct/shovelHead/6.png deleted file mode 100644 index bad32c0a7c..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/7.png b/front/public/images/small/TConstruct/shovelHead/7.png deleted file mode 100644 index b7d8d89c0e..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/8.png b/front/public/images/small/TConstruct/shovelHead/8.png deleted file mode 100644 index 6bb63c684d..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/shovelHead/9.png b/front/public/images/small/TConstruct/shovelHead/9.png deleted file mode 100644 index 9e44a36cb1..0000000000 Binary files a/front/public/images/small/TConstruct/shovelHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/0.png b/front/public/images/small/TConstruct/signHead/0.png deleted file mode 100644 index f2c1c6fe47..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/1.png b/front/public/images/small/TConstruct/signHead/1.png deleted file mode 100644 index ca90e51558..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/10.png b/front/public/images/small/TConstruct/signHead/10.png deleted file mode 100644 index 2f8fabc177..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/11.png b/front/public/images/small/TConstruct/signHead/11.png deleted file mode 100644 index 76fb6f82da..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/12.png b/front/public/images/small/TConstruct/signHead/12.png deleted file mode 100644 index 012edabe79..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/13.png b/front/public/images/small/TConstruct/signHead/13.png deleted file mode 100644 index 8a90abf3f6..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/14.png b/front/public/images/small/TConstruct/signHead/14.png deleted file mode 100644 index f5a5df64d5..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/15.png b/front/public/images/small/TConstruct/signHead/15.png deleted file mode 100644 index dda5853a80..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/16.png b/front/public/images/small/TConstruct/signHead/16.png deleted file mode 100644 index 9d58ed7980..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/17.png b/front/public/images/small/TConstruct/signHead/17.png deleted file mode 100644 index 40beb6de86..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/18.png b/front/public/images/small/TConstruct/signHead/18.png deleted file mode 100644 index 501c762fee..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/2.png b/front/public/images/small/TConstruct/signHead/2.png deleted file mode 100644 index 607db13948..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/3.png b/front/public/images/small/TConstruct/signHead/3.png deleted file mode 100644 index 70133708dc..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/314.png b/front/public/images/small/TConstruct/signHead/314.png deleted file mode 100644 index 4a5a8d5697..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/4.png b/front/public/images/small/TConstruct/signHead/4.png deleted file mode 100644 index 56a38dae2f..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/5.png b/front/public/images/small/TConstruct/signHead/5.png deleted file mode 100644 index d808ba2062..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/6.png b/front/public/images/small/TConstruct/signHead/6.png deleted file mode 100644 index 66f2779916..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/7.png b/front/public/images/small/TConstruct/signHead/7.png deleted file mode 100644 index d82d1381bd..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/8.png b/front/public/images/small/TConstruct/signHead/8.png deleted file mode 100644 index 1745d2429d..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/signHead/9.png b/front/public/images/small/TConstruct/signHead/9.png deleted file mode 100644 index ed69e34a4f..0000000000 Binary files a/front/public/images/small/TConstruct/signHead/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.channel/0.png b/front/public/images/small/TConstruct/slime.channel/0.png deleted file mode 100644 index 895968d2d9..0000000000 Binary files a/front/public/images/small/TConstruct/slime.channel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.gel/0.png b/front/public/images/small/TConstruct/slime.gel/0.png deleted file mode 100644 index e4c40421e8..0000000000 Binary files a/front/public/images/small/TConstruct/slime.gel/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.gel/1.png b/front/public/images/small/TConstruct/slime.gel/1.png deleted file mode 100644 index bce55b8da7..0000000000 Binary files a/front/public/images/small/TConstruct/slime.gel/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.gel/2.png b/front/public/images/small/TConstruct/slime.gel/2.png deleted file mode 100644 index 0e828773ea..0000000000 Binary files a/front/public/images/small/TConstruct/slime.gel/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.grass.tall/0.png b/front/public/images/small/TConstruct/slime.grass.tall/0.png deleted file mode 100644 index e5c7c06037..0000000000 Binary files a/front/public/images/small/TConstruct/slime.grass.tall/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.grass/0.png b/front/public/images/small/TConstruct/slime.grass/0.png deleted file mode 100644 index 444eeca635..0000000000 Binary files a/front/public/images/small/TConstruct/slime.grass/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.leaves/0.png b/front/public/images/small/TConstruct/slime.leaves/0.png deleted file mode 100644 index 25cdde8189..0000000000 Binary files a/front/public/images/small/TConstruct/slime.leaves/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.pad/0.png b/front/public/images/small/TConstruct/slime.pad/0.png deleted file mode 100644 index 614fab7fa7..0000000000 Binary files a/front/public/images/small/TConstruct/slime.pad/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime.sapling/0.png b/front/public/images/small/TConstruct/slime.sapling/0.png deleted file mode 100644 index 45885f328c..0000000000 Binary files a/front/public/images/small/TConstruct/slime.sapling/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slime_boots/0.png b/front/public/images/small/TConstruct/slime_boots/0.png deleted file mode 100644 index f435822f52..0000000000 Binary files a/front/public/images/small/TConstruct/slime_boots/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/slimesling/0.png b/front/public/images/small/TConstruct/slimesling/0.png deleted file mode 100644 index ecb487b67b..0000000000 Binary files a/front/public/images/small/TConstruct/slimesling/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/strangeFood/0.png b/front/public/images/small/TConstruct/strangeFood/0.png deleted file mode 100644 index 76806ae0ae..0000000000 Binary files a/front/public/images/small/TConstruct/strangeFood/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/strangeFood/1.png b/front/public/images/small/TConstruct/strangeFood/1.png deleted file mode 100644 index e7a02602b7..0000000000 Binary files a/front/public/images/small/TConstruct/strangeFood/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/strangeFood/2.png b/front/public/images/small/TConstruct/strangeFood/2.png deleted file mode 100644 index ac6ca66d2e..0000000000 Binary files a/front/public/images/small/TConstruct/strangeFood/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/0.png b/front/public/images/small/TConstruct/swordBlade/0.png deleted file mode 100644 index ce1ad10176..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/1.png b/front/public/images/small/TConstruct/swordBlade/1.png deleted file mode 100644 index 979ee7990c..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/10.png b/front/public/images/small/TConstruct/swordBlade/10.png deleted file mode 100644 index a8a05d3ae8..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/11.png b/front/public/images/small/TConstruct/swordBlade/11.png deleted file mode 100644 index d8e8256e4b..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/12.png b/front/public/images/small/TConstruct/swordBlade/12.png deleted file mode 100644 index 3342bdcf0d..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/13.png b/front/public/images/small/TConstruct/swordBlade/13.png deleted file mode 100644 index 3a1ff417e6..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/14.png b/front/public/images/small/TConstruct/swordBlade/14.png deleted file mode 100644 index bace20bb66..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/15.png b/front/public/images/small/TConstruct/swordBlade/15.png deleted file mode 100644 index 5b2d949af5..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/16.png b/front/public/images/small/TConstruct/swordBlade/16.png deleted file mode 100644 index df0cc643f1..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/17.png b/front/public/images/small/TConstruct/swordBlade/17.png deleted file mode 100644 index c5364facb0..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/18.png b/front/public/images/small/TConstruct/swordBlade/18.png deleted file mode 100644 index 60707f14bf..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/2.png b/front/public/images/small/TConstruct/swordBlade/2.png deleted file mode 100644 index 0cfb73d63e..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/3.png b/front/public/images/small/TConstruct/swordBlade/3.png deleted file mode 100644 index 5096f0b94d..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/314.png b/front/public/images/small/TConstruct/swordBlade/314.png deleted file mode 100644 index a501681edc..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/4.png b/front/public/images/small/TConstruct/swordBlade/4.png deleted file mode 100644 index 0f1974adbc..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/5.png b/front/public/images/small/TConstruct/swordBlade/5.png deleted file mode 100644 index 6cea2e1c16..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/6.png b/front/public/images/small/TConstruct/swordBlade/6.png deleted file mode 100644 index 7acf4b0664..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/7.png b/front/public/images/small/TConstruct/swordBlade/7.png deleted file mode 100644 index 95d1845265..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/8.png b/front/public/images/small/TConstruct/swordBlade/8.png deleted file mode 100644 index b4fc8ca93f..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/swordBlade/9.png b/front/public/images/small/TConstruct/swordBlade/9.png deleted file mode 100644 index 797e2634a3..0000000000 Binary files a/front/public/images/small/TConstruct/swordBlade/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/titleIcon/0.png b/front/public/images/small/TConstruct/titleIcon/0.png deleted file mode 100644 index de3aa0c7ed..0000000000 Binary files a/front/public/images/small/TConstruct/titleIcon/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/titleIcon/1.png b/front/public/images/small/TConstruct/titleIcon/1.png deleted file mode 100644 index ed2a7d9d76..0000000000 Binary files a/front/public/images/small/TConstruct/titleIcon/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/0.png b/front/public/images/small/TConstruct/toolRod/0.png deleted file mode 100644 index b6bd32dcd3..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/1.png b/front/public/images/small/TConstruct/toolRod/1.png deleted file mode 100644 index 6df798447b..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/10.png b/front/public/images/small/TConstruct/toolRod/10.png deleted file mode 100644 index 91e140e591..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/11.png b/front/public/images/small/TConstruct/toolRod/11.png deleted file mode 100644 index 6df6f2c775..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/12.png b/front/public/images/small/TConstruct/toolRod/12.png deleted file mode 100644 index 75d17d7fdf..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/13.png b/front/public/images/small/TConstruct/toolRod/13.png deleted file mode 100644 index ae41f02e15..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/14.png b/front/public/images/small/TConstruct/toolRod/14.png deleted file mode 100644 index 8483b4ee93..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/15.png b/front/public/images/small/TConstruct/toolRod/15.png deleted file mode 100644 index 6dfef3baef..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/16.png b/front/public/images/small/TConstruct/toolRod/16.png deleted file mode 100644 index c19d5080df..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/17.png b/front/public/images/small/TConstruct/toolRod/17.png deleted file mode 100644 index 244ac63c78..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/18.png b/front/public/images/small/TConstruct/toolRod/18.png deleted file mode 100644 index 565c27509a..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/2.png b/front/public/images/small/TConstruct/toolRod/2.png deleted file mode 100644 index 02901e5bba..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/3.png b/front/public/images/small/TConstruct/toolRod/3.png deleted file mode 100644 index a99e8de3da..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/314.png b/front/public/images/small/TConstruct/toolRod/314.png deleted file mode 100644 index 57b0e2ca48..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/4.png b/front/public/images/small/TConstruct/toolRod/4.png deleted file mode 100644 index 43c60076c5..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/5.png b/front/public/images/small/TConstruct/toolRod/5.png deleted file mode 100644 index 851efd40a2..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/6.png b/front/public/images/small/TConstruct/toolRod/6.png deleted file mode 100644 index e517eac0a9..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/7.png b/front/public/images/small/TConstruct/toolRod/7.png deleted file mode 100644 index 6e8a8caf3b..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/8.png b/front/public/images/small/TConstruct/toolRod/8.png deleted file mode 100644 index 80040bffa9..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolRod/9.png b/front/public/images/small/TConstruct/toolRod/9.png deleted file mode 100644 index 6f68619e18..0000000000 Binary files a/front/public/images/small/TConstruct/toolRod/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolShard/1.png b/front/public/images/small/TConstruct/toolShard/1.png deleted file mode 100644 index 13034df9b0..0000000000 Binary files a/front/public/images/small/TConstruct/toolShard/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolShard/17.png b/front/public/images/small/TConstruct/toolShard/17.png deleted file mode 100644 index ac91895973..0000000000 Binary files a/front/public/images/small/TConstruct/toolShard/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolShard/3.png b/front/public/images/small/TConstruct/toolShard/3.png deleted file mode 100644 index 1d89886c1c..0000000000 Binary files a/front/public/images/small/TConstruct/toolShard/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolShard/4.png b/front/public/images/small/TConstruct/toolShard/4.png deleted file mode 100644 index 42952d450c..0000000000 Binary files a/front/public/images/small/TConstruct/toolShard/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolShard/6.png b/front/public/images/small/TConstruct/toolShard/6.png deleted file mode 100644 index 4755e43428..0000000000 Binary files a/front/public/images/small/TConstruct/toolShard/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolShard/7.png b/front/public/images/small/TConstruct/toolShard/7.png deleted file mode 100644 index 73ca43f191..0000000000 Binary files a/front/public/images/small/TConstruct/toolShard/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toolShard/8.png b/front/public/images/small/TConstruct/toolShard/8.png deleted file mode 100644 index e39c36c58b..0000000000 Binary files a/front/public/images/small/TConstruct/toolShard/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/0.png b/front/public/images/small/TConstruct/toughBinding/0.png deleted file mode 100644 index 948a97dfc5..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/1.png b/front/public/images/small/TConstruct/toughBinding/1.png deleted file mode 100644 index bd07d48a9a..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/10.png b/front/public/images/small/TConstruct/toughBinding/10.png deleted file mode 100644 index 9ac0f9fd98..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/11.png b/front/public/images/small/TConstruct/toughBinding/11.png deleted file mode 100644 index 5b43d8640c..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/12.png b/front/public/images/small/TConstruct/toughBinding/12.png deleted file mode 100644 index 078521a85f..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/13.png b/front/public/images/small/TConstruct/toughBinding/13.png deleted file mode 100644 index d729eac71d..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/14.png b/front/public/images/small/TConstruct/toughBinding/14.png deleted file mode 100644 index 23c81ba3c3..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/15.png b/front/public/images/small/TConstruct/toughBinding/15.png deleted file mode 100644 index 139fcae7c9..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/16.png b/front/public/images/small/TConstruct/toughBinding/16.png deleted file mode 100644 index f03e551c48..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/17.png b/front/public/images/small/TConstruct/toughBinding/17.png deleted file mode 100644 index db2f176778..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/18.png b/front/public/images/small/TConstruct/toughBinding/18.png deleted file mode 100644 index c3fba9a199..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/2.png b/front/public/images/small/TConstruct/toughBinding/2.png deleted file mode 100644 index 1d1097a028..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/3.png b/front/public/images/small/TConstruct/toughBinding/3.png deleted file mode 100644 index 378a7829ca..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/314.png b/front/public/images/small/TConstruct/toughBinding/314.png deleted file mode 100644 index 9a7499bdb4..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/4.png b/front/public/images/small/TConstruct/toughBinding/4.png deleted file mode 100644 index 805d7279d8..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/5.png b/front/public/images/small/TConstruct/toughBinding/5.png deleted file mode 100644 index 24d941e016..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/6.png b/front/public/images/small/TConstruct/toughBinding/6.png deleted file mode 100644 index 9350bc70f3..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/7.png b/front/public/images/small/TConstruct/toughBinding/7.png deleted file mode 100644 index 70a884bafc..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/8.png b/front/public/images/small/TConstruct/toughBinding/8.png deleted file mode 100644 index e367c1ef2c..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughBinding/9.png b/front/public/images/small/TConstruct/toughBinding/9.png deleted file mode 100644 index e23e90b5bd..0000000000 Binary files a/front/public/images/small/TConstruct/toughBinding/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/0.png b/front/public/images/small/TConstruct/toughRod/0.png deleted file mode 100644 index d2bbd54cfd..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/1.png b/front/public/images/small/TConstruct/toughRod/1.png deleted file mode 100644 index 17f0b20b7d..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/10.png b/front/public/images/small/TConstruct/toughRod/10.png deleted file mode 100644 index ee53d701b7..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/11.png b/front/public/images/small/TConstruct/toughRod/11.png deleted file mode 100644 index f9ba245670..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/12.png b/front/public/images/small/TConstruct/toughRod/12.png deleted file mode 100644 index 6b4e18e63a..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/13.png b/front/public/images/small/TConstruct/toughRod/13.png deleted file mode 100644 index 443eaaab9f..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/14.png b/front/public/images/small/TConstruct/toughRod/14.png deleted file mode 100644 index f731244f10..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/15.png b/front/public/images/small/TConstruct/toughRod/15.png deleted file mode 100644 index a1e01d63ab..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/16.png b/front/public/images/small/TConstruct/toughRod/16.png deleted file mode 100644 index 51adbca85b..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/17.png b/front/public/images/small/TConstruct/toughRod/17.png deleted file mode 100644 index 8f4696f4c6..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/18.png b/front/public/images/small/TConstruct/toughRod/18.png deleted file mode 100644 index ec6692f8f1..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/2.png b/front/public/images/small/TConstruct/toughRod/2.png deleted file mode 100644 index a682e3145e..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/3.png b/front/public/images/small/TConstruct/toughRod/3.png deleted file mode 100644 index 8e63647613..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/314.png b/front/public/images/small/TConstruct/toughRod/314.png deleted file mode 100644 index 2c71d0005d..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/4.png b/front/public/images/small/TConstruct/toughRod/4.png deleted file mode 100644 index 48463da2cd..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/5.png b/front/public/images/small/TConstruct/toughRod/5.png deleted file mode 100644 index f774caeebd..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/6.png b/front/public/images/small/TConstruct/toughRod/6.png deleted file mode 100644 index 954071e60c..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/7.png b/front/public/images/small/TConstruct/toughRod/7.png deleted file mode 100644 index d74d616562..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/8.png b/front/public/images/small/TConstruct/toughRod/8.png deleted file mode 100644 index cc631e1d65..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/toughRod/9.png b/front/public/images/small/TConstruct/toughRod/9.png deleted file mode 100644 index 0cd8852299..0000000000 Binary files a/front/public/images/small/TConstruct/toughRod/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/trap.barricade.birch/0.png b/front/public/images/small/TConstruct/trap.barricade.birch/0.png deleted file mode 100644 index 9745f7d56d..0000000000 Binary files a/front/public/images/small/TConstruct/trap.barricade.birch/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/trap.barricade.jungle/0.png b/front/public/images/small/TConstruct/trap.barricade.jungle/0.png deleted file mode 100644 index 864be78a45..0000000000 Binary files a/front/public/images/small/TConstruct/trap.barricade.jungle/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/trap.barricade.oak/0.png b/front/public/images/small/TConstruct/trap.barricade.oak/0.png deleted file mode 100644 index 829f7b7def..0000000000 Binary files a/front/public/images/small/TConstruct/trap.barricade.oak/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/trap.barricade.spruce/0.png b/front/public/images/small/TConstruct/trap.barricade.spruce/0.png deleted file mode 100644 index 6cfde444f7..0000000000 Binary files a/front/public/images/small/TConstruct/trap.barricade.spruce/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/trap.punji/0.png b/front/public/images/small/TConstruct/trap.punji/0.png deleted file mode 100644 index 28d98718d9..0000000000 Binary files a/front/public/images/small/TConstruct/trap.punji/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/travelBelt/0.png b/front/public/images/small/TConstruct/travelBelt/0.png deleted file mode 100644 index 689192f4fa..0000000000 Binary files a/front/public/images/small/TConstruct/travelBelt/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/travelBoots/0.png b/front/public/images/small/TConstruct/travelBoots/0.png deleted file mode 100644 index 4b17c4e0a4..0000000000 Binary files a/front/public/images/small/TConstruct/travelBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/travelGlove/0.png b/front/public/images/small/TConstruct/travelGlove/0.png deleted file mode 100644 index 8568756f74..0000000000 Binary files a/front/public/images/small/TConstruct/travelGlove/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/travelGoggles/0.png b/front/public/images/small/TConstruct/travelGoggles/0.png deleted file mode 100644 index 585a278426..0000000000 Binary files a/front/public/images/small/TConstruct/travelGoggles/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/travelVest/0.png b/front/public/images/small/TConstruct/travelVest/0.png deleted file mode 100644 index 433a39c623..0000000000 Binary files a/front/public/images/small/TConstruct/travelVest/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/travelWings/0.png b/front/public/images/small/TConstruct/travelWings/0.png deleted file mode 100644 index 3d9b325106..0000000000 Binary files a/front/public/images/small/TConstruct/travelWings/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/0.png b/front/public/images/small/TConstruct/wideGuard/0.png deleted file mode 100644 index 5021646789..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/0.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/1.png b/front/public/images/small/TConstruct/wideGuard/1.png deleted file mode 100644 index 19d75a88e8..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/10.png b/front/public/images/small/TConstruct/wideGuard/10.png deleted file mode 100644 index de30355ab4..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/11.png b/front/public/images/small/TConstruct/wideGuard/11.png deleted file mode 100644 index 25999fd60b..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/12.png b/front/public/images/small/TConstruct/wideGuard/12.png deleted file mode 100644 index b6082d3031..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/13.png b/front/public/images/small/TConstruct/wideGuard/13.png deleted file mode 100644 index b17fb6c401..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/14.png b/front/public/images/small/TConstruct/wideGuard/14.png deleted file mode 100644 index 76d42c98a4..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/15.png b/front/public/images/small/TConstruct/wideGuard/15.png deleted file mode 100644 index 345f6ec52d..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/16.png b/front/public/images/small/TConstruct/wideGuard/16.png deleted file mode 100644 index 46b9437250..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/17.png b/front/public/images/small/TConstruct/wideGuard/17.png deleted file mode 100644 index 27f91153bc..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/18.png b/front/public/images/small/TConstruct/wideGuard/18.png deleted file mode 100644 index 965c0b7a1c..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/2.png b/front/public/images/small/TConstruct/wideGuard/2.png deleted file mode 100644 index e2c61b1e78..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/3.png b/front/public/images/small/TConstruct/wideGuard/3.png deleted file mode 100644 index 34f81ff5d9..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/314.png b/front/public/images/small/TConstruct/wideGuard/314.png deleted file mode 100644 index d9767399b5..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/314.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/4.png b/front/public/images/small/TConstruct/wideGuard/4.png deleted file mode 100644 index 474726281d..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/5.png b/front/public/images/small/TConstruct/wideGuard/5.png deleted file mode 100644 index 23ac6a179f..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/6.png b/front/public/images/small/TConstruct/wideGuard/6.png deleted file mode 100644 index 3a5b4af76f..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/7.png b/front/public/images/small/TConstruct/wideGuard/7.png deleted file mode 100644 index 13a338ffb6..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/8.png b/front/public/images/small/TConstruct/wideGuard/8.png deleted file mode 100644 index 24d9ac99fc..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/wideGuard/9.png b/front/public/images/small/TConstruct/wideGuard/9.png deleted file mode 100644 index 56fde27c61..0000000000 Binary files a/front/public/images/small/TConstruct/wideGuard/9.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/1.png b/front/public/images/small/TConstruct/woodPattern/1.png deleted file mode 100644 index a8e34bf469..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/1.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/10.png b/front/public/images/small/TConstruct/woodPattern/10.png deleted file mode 100644 index 21515fef63..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/10.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/11.png b/front/public/images/small/TConstruct/woodPattern/11.png deleted file mode 100644 index d9f336e313..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/11.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/12.png b/front/public/images/small/TConstruct/woodPattern/12.png deleted file mode 100644 index 542b912fbb..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/12.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/13.png b/front/public/images/small/TConstruct/woodPattern/13.png deleted file mode 100644 index 2bb8412936..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/13.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/14.png b/front/public/images/small/TConstruct/woodPattern/14.png deleted file mode 100644 index 03b796dd4c..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/14.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/15.png b/front/public/images/small/TConstruct/woodPattern/15.png deleted file mode 100644 index 9db8bbb290..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/15.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/16.png b/front/public/images/small/TConstruct/woodPattern/16.png deleted file mode 100644 index 5522edc5f6..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/16.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/17.png b/front/public/images/small/TConstruct/woodPattern/17.png deleted file mode 100644 index 83dcf66ca1..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/17.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/18.png b/front/public/images/small/TConstruct/woodPattern/18.png deleted file mode 100644 index abdb79fcf4..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/18.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/19.png b/front/public/images/small/TConstruct/woodPattern/19.png deleted file mode 100644 index 65c956dfb7..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/19.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/2.png b/front/public/images/small/TConstruct/woodPattern/2.png deleted file mode 100644 index 6eeda2c613..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/2.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/20.png b/front/public/images/small/TConstruct/woodPattern/20.png deleted file mode 100644 index 84f37b3eb7..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/20.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/21.png b/front/public/images/small/TConstruct/woodPattern/21.png deleted file mode 100644 index d2b956b408..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/21.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/22.png b/front/public/images/small/TConstruct/woodPattern/22.png deleted file mode 100644 index 062b07319c..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/22.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/23.png b/front/public/images/small/TConstruct/woodPattern/23.png deleted file mode 100644 index 77a16ebb30..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/23.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/24.png b/front/public/images/small/TConstruct/woodPattern/24.png deleted file mode 100644 index 57bf31541f..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/24.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/25.png b/front/public/images/small/TConstruct/woodPattern/25.png deleted file mode 100644 index c076818bb5..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/25.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/3.png b/front/public/images/small/TConstruct/woodPattern/3.png deleted file mode 100644 index 47c84d6e81..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/3.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/4.png b/front/public/images/small/TConstruct/woodPattern/4.png deleted file mode 100644 index 78fc3c759b..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/4.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/5.png b/front/public/images/small/TConstruct/woodPattern/5.png deleted file mode 100644 index 54753016b7..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/5.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/6.png b/front/public/images/small/TConstruct/woodPattern/6.png deleted file mode 100644 index 2b9c4b31da..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/6.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/7.png b/front/public/images/small/TConstruct/woodPattern/7.png deleted file mode 100644 index 763aae2e94..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/7.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/8.png b/front/public/images/small/TConstruct/woodPattern/8.png deleted file mode 100644 index dac7fc05c9..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/8.png and /dev/null differ diff --git a/front/public/images/small/TConstruct/woodPattern/9.png b/front/public/images/small/TConstruct/woodPattern/9.png deleted file mode 100644 index 548526ebd5..0000000000 Binary files a/front/public/images/small/TConstruct/woodPattern/9.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1500.png deleted file mode 100644 index c2f44f0077..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1501.png deleted file mode 100644 index 0a5d9813ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1502.png deleted file mode 100644 index 445ae3d366..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1503.png deleted file mode 100644 index 01b5990ebd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1504.png deleted file mode 100644 index 1f84c4cde2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1505.png deleted file mode 100644 index ee4111d509..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1506.png deleted file mode 100644 index ce07c7a45d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1507.png deleted file mode 100644 index 4c90a34598..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1508.png deleted file mode 100644 index 77dd535bb8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1509.png deleted file mode 100644 index 66387997a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1510.png deleted file mode 100644 index 695de9c31c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1511.png deleted file mode 100644 index 77dd535bb8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1512.png deleted file mode 100644 index d12c41cb0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1513.png deleted file mode 100644 index 261c0c00cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1514.png deleted file mode 100644 index 7a444cc4e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1515.png deleted file mode 100644 index 927771925a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1516.png deleted file mode 100644 index 32d514c484..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1517.png deleted file mode 100644 index c55bfc2280..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1518.png deleted file mode 100644 index e110350411..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1519.png deleted file mode 100644 index 5183f5eed5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1520.png deleted file mode 100644 index 5060a557aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1521.png deleted file mode 100644 index fb9036f2c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1522.png deleted file mode 100644 index 9927c461ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1523.png deleted file mode 100644 index fbe9f28f0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1524.png deleted file mode 100644 index ac798d3957..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1525.png deleted file mode 100644 index ee9d726199..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1526.png deleted file mode 100644 index 019a99f82f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1527.png deleted file mode 100644 index 3a0c6c547d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1528.png deleted file mode 100644 index 74c20b926d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1529.png deleted file mode 100644 index fd1f568c9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1530.png deleted file mode 100644 index 492c4a0a6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1531.png deleted file mode 100644 index f279c92610..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1532.png deleted file mode 100644 index 058355974f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1533.png deleted file mode 100644 index dcf4180a49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1534.png deleted file mode 100644 index 4daecdb875..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1535.png deleted file mode 100644 index eff36ae0bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1536.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1537.png deleted file mode 100644 index ef86127dd7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1538.png deleted file mode 100644 index 47e71009b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1539.png deleted file mode 100644 index db315ea660..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1540.png deleted file mode 100644 index efce6afdcf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1541.png deleted file mode 100644 index 957f946602..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1542.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1543.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1544.png deleted file mode 100644 index 384f300076..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1545.png deleted file mode 100644 index 6577aac5dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1546.png deleted file mode 100644 index a370161d90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1547.png deleted file mode 100644 index 0df66e9f08..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1548.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1549.png deleted file mode 100644 index a668ffdb8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1550.png deleted file mode 100644 index 3a3637a013..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1551.png deleted file mode 100644 index 8fdf529727..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1553.png deleted file mode 100644 index 87b3913680..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1554.png deleted file mode 100644 index e60754f750..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1555.png deleted file mode 100644 index d64a3a636f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1556.png deleted file mode 100644 index 7a444cc4e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1557.png deleted file mode 100644 index 7a444cc4e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1562.png deleted file mode 100644 index 537dfd1438..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1563.png deleted file mode 100644 index d64a3a636f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1564.png deleted file mode 100644 index d0493b7f17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1565.png deleted file mode 100644 index e9c9a6c7f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1566.png deleted file mode 100644 index 8bb1a874d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1567.png deleted file mode 100644 index a0c1fbafde..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1568.png deleted file mode 100644 index ee29d3b949..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1570.png deleted file mode 100644 index bd797a18c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1571.png deleted file mode 100644 index 877a4efb51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1572.png deleted file mode 100644 index 4b6fe07bb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1573.png deleted file mode 100644 index 6be348fe2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1574.png deleted file mode 100644 index fb9036f2c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1575.png deleted file mode 100644 index 0df66e9f08..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1576.png deleted file mode 100644 index 4894477ee8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1577.png deleted file mode 100644 index eca3a78d5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1578.png deleted file mode 100644 index 56144c6154..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1579.png deleted file mode 100644 index 77dd535bb8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1582.png deleted file mode 100644 index 51ed666181..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1583.png deleted file mode 100644 index 9976a9e08e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1584.png deleted file mode 100644 index ffd938e383..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1585.png deleted file mode 100644 index 4d2ae41332..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1586.png deleted file mode 100644 index f3a3e90275..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1587.png deleted file mode 100644 index e0702d33d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1588.png deleted file mode 100644 index d64a3a636f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1589.png deleted file mode 100644 index e39e916329..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1590.png deleted file mode 100644 index 695582c0bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1591.png deleted file mode 100644 index e32dc6ee57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1592.png deleted file mode 100644 index e980f14301..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1593.png deleted file mode 100644 index 7bb00fb94b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1594.png deleted file mode 100644 index f058262a3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1595.png deleted file mode 100644 index f851cd9cce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1596.png deleted file mode 100644 index 3943707a9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1597.png deleted file mode 100644 index a094a186f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1598.png deleted file mode 100644 index 9b42e2b956..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1599.png deleted file mode 100644 index 49867da68b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1600.png deleted file mode 100644 index c1c77d6efc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1601.png deleted file mode 100644 index 7d5060afbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1602.png deleted file mode 100644 index 9a267fc2d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1603.png deleted file mode 100644 index e16c2d998b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1604.png deleted file mode 100644 index c10472981b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1605.png deleted file mode 100644 index 388d4b40f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1606.png deleted file mode 100644 index 6a4c36611f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1607.png deleted file mode 100644 index 7762dad975..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1608.png deleted file mode 100644 index d71c395773..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1609.png deleted file mode 100644 index fb9036f2c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1610.png deleted file mode 100644 index 695de9c31c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1611.png deleted file mode 100644 index f596f7ad57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1612.png deleted file mode 100644 index a185c0409f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1613.png deleted file mode 100644 index 196f6a9c5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1614.png deleted file mode 100644 index 6a4c36611f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1615.png deleted file mode 100644 index 47e71009b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1616.png deleted file mode 100644 index b8a5a1d86c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1617.png deleted file mode 100644 index 388d4b40f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1618.png deleted file mode 100644 index 4b46cbf5f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1619.png deleted file mode 100644 index 7f08239d5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1620.png deleted file mode 100644 index 695582c0bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1621.png deleted file mode 100644 index 666f0a6e00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1622.png deleted file mode 100644 index 467ad9e4c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1623.png deleted file mode 100644 index ebd4f47e28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1624.png deleted file mode 100644 index 95a978c1cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1625.png deleted file mode 100644 index 511cf3a92e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1626.png deleted file mode 100644 index 9955b1c637..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1627.png deleted file mode 100644 index 4027dd63ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1628.png deleted file mode 100644 index da429b8678..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1629.png deleted file mode 100644 index ca259cc063..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1630.png deleted file mode 100644 index 8f8f7574d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1631.png deleted file mode 100644 index 695de9c31c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1632.png deleted file mode 100644 index 437fffc002..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1633.png deleted file mode 100644 index 1aaeee901b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1634.png deleted file mode 100644 index 2518fea130..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1635.png deleted file mode 100644 index b2385b1696..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1636.png deleted file mode 100644 index a609b9965d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1637.png deleted file mode 100644 index f35e0fb63e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1638.png deleted file mode 100644 index 862c3fbb61..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1639.png deleted file mode 100644 index 877a4efb51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1640.png deleted file mode 100644 index 82667ded5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1641.png deleted file mode 100644 index 83c6057096..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1642.png deleted file mode 100644 index 38b763fae1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1643.png deleted file mode 100644 index 2f5e3794c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1644.png deleted file mode 100644 index 8cc2801e34..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1645.png deleted file mode 100644 index 437fffc002..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1646.png deleted file mode 100644 index 6a4c36611f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1647.png deleted file mode 100644 index 7a444cc4e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1648.png deleted file mode 100644 index 695de9c31c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1649.png deleted file mode 100644 index 27fb656480..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1650.png deleted file mode 100644 index dd4da11722..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1651.png deleted file mode 100644 index 822b69f34a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1652.png deleted file mode 100644 index 5376a33181..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1653.png deleted file mode 100644 index a62b18edea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1654.png deleted file mode 100644 index 1237483a91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1655.png deleted file mode 100644 index 4323799b65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1656.png deleted file mode 100644 index ef54349302..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1657.png deleted file mode 100644 index fb9036f2c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1658.png deleted file mode 100644 index cb85db8820..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1659.png deleted file mode 100644 index 024148390e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1660.png deleted file mode 100644 index af235995c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1661.png deleted file mode 100644 index 276d97b9c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1662.png deleted file mode 100644 index 45a4d68c0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1663.png deleted file mode 100644 index 374ea28205..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1664.png deleted file mode 100644 index 4214507318..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1665.png deleted file mode 100644 index d8f6eae5bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1666.png deleted file mode 100644 index 01b176c130..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1667.png deleted file mode 100644 index 289600d9f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1668.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1670.png deleted file mode 100644 index 39892b94b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1672.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1673.png deleted file mode 100644 index d16fe2576a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1674.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1675.png deleted file mode 100644 index 6a4c36611f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1676.png deleted file mode 100644 index aa14e39030..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1677.png deleted file mode 100644 index 342deceff0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1678.png deleted file mode 100644 index 769bc2153c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1679.png deleted file mode 100644 index b5edd10cb7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1680.png deleted file mode 100644 index f0abe16c82..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1681.png deleted file mode 100644 index c17822fcaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1682.png deleted file mode 100644 index 8703b1dcdf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1683.png deleted file mode 100644 index 283a0ec981..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1684.png deleted file mode 100644 index d8d5cd57b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1685.png deleted file mode 100644 index 3fab5034af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1686.png deleted file mode 100644 index fb9036f2c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1687.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1688.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1689.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1690.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1691.png deleted file mode 100644 index cf0cc76704..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1692.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1693.png deleted file mode 100644 index 59d4c11a25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1694.png deleted file mode 100644 index 2e80ce0a74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1695.png deleted file mode 100644 index 2ab0beb5c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1696.png deleted file mode 100644 index 74f27e2f69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1697.png deleted file mode 100644 index 1fe2f70c9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1698.png deleted file mode 100644 index fb9036f2c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1699.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1700.png deleted file mode 100644 index d1885ddf4f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1701.png deleted file mode 100644 index 2fa08376c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1702.png deleted file mode 100644 index 7bdddaa520..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1703.png deleted file mode 100644 index 9109d69c72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1704.png deleted file mode 100644 index a71ca3f265..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1705.png deleted file mode 100644 index e82b9f4cc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1706.png deleted file mode 100644 index 695de9c31c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1707.png deleted file mode 100644 index 5d476d9fb7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1708.png deleted file mode 100644 index 1f84c4cde2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1709.png deleted file mode 100644 index b94192eaed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1710.png deleted file mode 100644 index ce4c311c5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1711.png deleted file mode 100644 index 3f83aed172..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1712.png deleted file mode 100644 index 7088ecae5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1713.png deleted file mode 100644 index cf45507889..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1714.png deleted file mode 100644 index f593600fa1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1715.png deleted file mode 100644 index 1a275a8820..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1716.png deleted file mode 100644 index 619c32ae0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1717.png deleted file mode 100644 index 78afdbdf84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1718.png deleted file mode 100644 index 9b0406e9b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1719.png deleted file mode 100644 index f39b1d118d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1720.png deleted file mode 100644 index f39b1d118d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1721.png deleted file mode 100644 index 16621d138b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1722.png deleted file mode 100644 index 1f56430420..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1723.png deleted file mode 100644 index 20b6f1b080..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1724.png deleted file mode 100644 index a66fb6cc2c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1725.png deleted file mode 100644 index fe4a847380..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1726.png deleted file mode 100644 index 28065cb794..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1727.png deleted file mode 100644 index 8c2471e65e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1728.png deleted file mode 100644 index 864f05b4fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1729.png deleted file mode 100644 index 9f24f6537e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1730.png deleted file mode 100644 index 248f9a0a8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1731.png deleted file mode 100644 index 1f75699d4b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1732.png deleted file mode 100644 index 128fc97f09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1733.png deleted file mode 100644 index 3fbf176c95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1734.png deleted file mode 100644 index 4c11d56bf8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1735.png deleted file mode 100644 index 63e73e8c8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1740.png deleted file mode 100644 index a18dc84a91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1741.png deleted file mode 100644 index 194855a25c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1742.png deleted file mode 100644 index d3ba03efd3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1743.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1744.png deleted file mode 100644 index f9281a0fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1745.png deleted file mode 100644 index 00f90f4ade..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartArrowHead/1746.png deleted file mode 100644 index dd132c322b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartArrowHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1500.png deleted file mode 100644 index 60aee5d929..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1501.png deleted file mode 100644 index d5f203e894..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1502.png deleted file mode 100644 index 10cbea7498..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1503.png deleted file mode 100644 index 206f0e8178..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1504.png deleted file mode 100644 index b43bfbefae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1505.png deleted file mode 100644 index 5a44496a0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1506.png deleted file mode 100644 index c6a4d02cc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1507.png deleted file mode 100644 index 804d61473e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1508.png deleted file mode 100644 index 98d6facfd6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1509.png deleted file mode 100644 index b215c1d048..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1510.png deleted file mode 100644 index d1b4f26df7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1511.png deleted file mode 100644 index 98d6facfd6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1512.png deleted file mode 100644 index f132cc400a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1513.png deleted file mode 100644 index 6ce50debf3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1514.png deleted file mode 100644 index 96bfcebf44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1515.png deleted file mode 100644 index 4e00e3b534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1516.png deleted file mode 100644 index d3e639a9fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1517.png deleted file mode 100644 index 51d810dfe2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1518.png deleted file mode 100644 index 91e5f20f8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1519.png deleted file mode 100644 index dfa0da5d6f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1520.png deleted file mode 100644 index f41de8b9e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1521.png deleted file mode 100644 index a73dafc439..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1522.png deleted file mode 100644 index 8301348692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1523.png deleted file mode 100644 index 6ba2851f54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1524.png deleted file mode 100644 index 181d79f7ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1525.png deleted file mode 100644 index 974ae23c56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1526.png deleted file mode 100644 index a3d8e38ef4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1527.png deleted file mode 100644 index 772ab70731..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1528.png deleted file mode 100644 index 8e42c44bf4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1529.png deleted file mode 100644 index 8e466341ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1530.png deleted file mode 100644 index 0ff4fe98ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1531.png deleted file mode 100644 index 43616cec9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1532.png deleted file mode 100644 index 525fd32246..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1533.png deleted file mode 100644 index 4b4b874094..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1534.png deleted file mode 100644 index 0d78614315..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1535.png deleted file mode 100644 index 94b6f24bef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1536.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1537.png deleted file mode 100644 index 98ac4e0ecb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1538.png deleted file mode 100644 index 5a9b05bd6e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1539.png deleted file mode 100644 index 441c5c67a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1540.png deleted file mode 100644 index 9cca51842c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1541.png deleted file mode 100644 index 5b5e2f3e01..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1542.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1543.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1544.png deleted file mode 100644 index ffd5abc3ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1545.png deleted file mode 100644 index 31218cbdbe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1546.png deleted file mode 100644 index d324ddd6e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1547.png deleted file mode 100644 index c5e0a4ae9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1548.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1549.png deleted file mode 100644 index 5180a13c19..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1550.png deleted file mode 100644 index 8232219fd8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1551.png deleted file mode 100644 index dcdda1cf29..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1553.png deleted file mode 100644 index bde25f601a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1554.png deleted file mode 100644 index a35d7f324d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1555.png deleted file mode 100644 index 98d8a38496..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1556.png deleted file mode 100644 index 96bfcebf44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1557.png deleted file mode 100644 index 96bfcebf44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1562.png deleted file mode 100644 index 9effddf33f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1563.png deleted file mode 100644 index 98d8a38496..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1564.png deleted file mode 100644 index d66ed4519a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1565.png deleted file mode 100644 index a5939ebf42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1566.png deleted file mode 100644 index 0106c9f224..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1567.png deleted file mode 100644 index fcc4df1cf3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1568.png deleted file mode 100644 index c264e6e6a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1570.png deleted file mode 100644 index 3274f17c69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1571.png deleted file mode 100644 index 1e4c065696..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1572.png deleted file mode 100644 index 6d80e382bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1573.png deleted file mode 100644 index 28c7e13ed2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1574.png deleted file mode 100644 index a73dafc439..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1575.png deleted file mode 100644 index c5e0a4ae9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1576.png deleted file mode 100644 index 0cea477351..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1577.png deleted file mode 100644 index ebc3f2bf25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1578.png deleted file mode 100644 index d09eaaf736..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1579.png deleted file mode 100644 index 98d6facfd6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1582.png deleted file mode 100644 index 008eb3460c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1583.png deleted file mode 100644 index cb7c0442ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1584.png deleted file mode 100644 index 5e98343577..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1585.png deleted file mode 100644 index 3839c3f49a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1586.png deleted file mode 100644 index ca5579333b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1587.png deleted file mode 100644 index 0580abd458..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1588.png deleted file mode 100644 index 98d8a38496..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1589.png deleted file mode 100644 index 7106d2ed63..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1590.png deleted file mode 100644 index a31381c1a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1591.png deleted file mode 100644 index 1d2e4e3107..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1592.png deleted file mode 100644 index 66ebbbc6e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1593.png deleted file mode 100644 index b19d1ab527..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1594.png deleted file mode 100644 index 7f9410070e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1595.png deleted file mode 100644 index 07684f597a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1596.png deleted file mode 100644 index 9097c082bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1597.png deleted file mode 100644 index 25240fb523..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1598.png deleted file mode 100644 index 247fc05259..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1599.png deleted file mode 100644 index ca0bc7ef24..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1600.png deleted file mode 100644 index 66e750138a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1601.png deleted file mode 100644 index 3a3574578d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1602.png deleted file mode 100644 index 716cce4a1e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1603.png deleted file mode 100644 index 044513db92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1604.png deleted file mode 100644 index 39049e0df6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1605.png deleted file mode 100644 index e04a91ff64..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1606.png deleted file mode 100644 index 5aa95e43c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1607.png deleted file mode 100644 index 7838d0ddc8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1608.png deleted file mode 100644 index bf27f4de31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1609.png deleted file mode 100644 index a73dafc439..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1610.png deleted file mode 100644 index d1b4f26df7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1611.png deleted file mode 100644 index 2ecd50d81e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1612.png deleted file mode 100644 index 764699b765..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1613.png deleted file mode 100644 index 5121f58a3d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1614.png deleted file mode 100644 index 5aa95e43c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1615.png deleted file mode 100644 index 5a9b05bd6e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1616.png deleted file mode 100644 index faba8437cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1617.png deleted file mode 100644 index e04a91ff64..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1618.png deleted file mode 100644 index e7540909f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1619.png deleted file mode 100644 index 12281971dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1620.png deleted file mode 100644 index a31381c1a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1621.png deleted file mode 100644 index 4e7be64b3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1622.png deleted file mode 100644 index 9ad3bd8438..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1623.png deleted file mode 100644 index e9f29a5b8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1624.png deleted file mode 100644 index 24dca79bf1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1625.png deleted file mode 100644 index 35e5aa92fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1626.png deleted file mode 100644 index 496eae22bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1627.png deleted file mode 100644 index cf8d23f6bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1628.png deleted file mode 100644 index 4e8341e4a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1629.png deleted file mode 100644 index 8872dacd7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1630.png deleted file mode 100644 index 15a612e500..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1631.png deleted file mode 100644 index d1b4f26df7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1632.png deleted file mode 100644 index 432e8a6e92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1633.png deleted file mode 100644 index dff4e3fd98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1634.png deleted file mode 100644 index e3473ba7fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1635.png deleted file mode 100644 index b43ffb0ebf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1636.png deleted file mode 100644 index 594bb01578..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1637.png deleted file mode 100644 index 0dac3d2d4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1638.png deleted file mode 100644 index 9c6ae4ed0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1639.png deleted file mode 100644 index 1e4c065696..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1640.png deleted file mode 100644 index ee07c33f8a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1641.png deleted file mode 100644 index b4ec61511f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1642.png deleted file mode 100644 index 40002a976b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1643.png deleted file mode 100644 index 35ffbdde16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1644.png deleted file mode 100644 index fbf3099848..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1645.png deleted file mode 100644 index 432e8a6e92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1646.png deleted file mode 100644 index 5aa95e43c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1647.png deleted file mode 100644 index 96bfcebf44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1648.png deleted file mode 100644 index d1b4f26df7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1649.png deleted file mode 100644 index ba05e42206..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1650.png deleted file mode 100644 index 68bcc12040..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1651.png deleted file mode 100644 index 21f37c9ad6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1652.png deleted file mode 100644 index 583b0272c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1653.png deleted file mode 100644 index 3936ba2557..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1654.png deleted file mode 100644 index bff422b656..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1655.png deleted file mode 100644 index de829e1450..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1656.png deleted file mode 100644 index e920e0d937..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1657.png deleted file mode 100644 index a73dafc439..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1658.png deleted file mode 100644 index 7969a26fe4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1659.png deleted file mode 100644 index 91fd2e327a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1660.png deleted file mode 100644 index 862186fd6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1661.png deleted file mode 100644 index 4fa7e2cf15..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1662.png deleted file mode 100644 index 6b1d15a885..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1663.png deleted file mode 100644 index 50e89988b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1664.png deleted file mode 100644 index 8a648d456d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1665.png deleted file mode 100644 index 4c00b6324b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1666.png deleted file mode 100644 index 9f8617dd37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1667.png deleted file mode 100644 index 43e35523b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1668.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1670.png deleted file mode 100644 index 306c2e36fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1672.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1673.png deleted file mode 100644 index 89064422ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1674.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1675.png deleted file mode 100644 index 5aa95e43c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1676.png deleted file mode 100644 index fb8cf8cba2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1677.png deleted file mode 100644 index f6bd26262f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1678.png deleted file mode 100644 index ffc7049894..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1679.png deleted file mode 100644 index 5e4e99ec05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1680.png deleted file mode 100644 index 7199488b7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1681.png deleted file mode 100644 index 4b3a753681..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1682.png deleted file mode 100644 index 015b36ee23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1683.png deleted file mode 100644 index 418a4edb4b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1684.png deleted file mode 100644 index 32b9fbe95c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1685.png deleted file mode 100644 index 64dacd9741..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1686.png deleted file mode 100644 index a73dafc439..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1687.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1688.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1689.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1690.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1691.png deleted file mode 100644 index 6393cfe623..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1692.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1693.png deleted file mode 100644 index 8dc8fe4456..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1694.png deleted file mode 100644 index 7fe6c475dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1695.png deleted file mode 100644 index 359129ce8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1696.png deleted file mode 100644 index f2d50f5b44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1697.png deleted file mode 100644 index 2e162d247e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1698.png deleted file mode 100644 index a73dafc439..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1699.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1700.png deleted file mode 100644 index b07916907f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1701.png deleted file mode 100644 index 329f53bf9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1702.png deleted file mode 100644 index e509522e0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1703.png deleted file mode 100644 index 271a3032e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1704.png deleted file mode 100644 index e85b9ebf26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1705.png deleted file mode 100644 index 29f2e2b127..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1706.png deleted file mode 100644 index d1b4f26df7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1707.png deleted file mode 100644 index e889770fbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1708.png deleted file mode 100644 index b43bfbefae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1709.png deleted file mode 100644 index 873d5da933..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1710.png deleted file mode 100644 index 32b06752d0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1711.png deleted file mode 100644 index 946255476a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1712.png deleted file mode 100644 index 3c87da327d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1713.png deleted file mode 100644 index 5c24d3d263..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1714.png deleted file mode 100644 index 6700b36248..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1715.png deleted file mode 100644 index abf985d03c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1716.png deleted file mode 100644 index a501418212..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1717.png deleted file mode 100644 index 3ec9c4b824..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1718.png deleted file mode 100644 index 683a207e7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1719.png deleted file mode 100644 index d08937a313..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1720.png deleted file mode 100644 index d08937a313..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1721.png deleted file mode 100644 index e1f836fa92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1722.png deleted file mode 100644 index 777900b055..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1723.png deleted file mode 100644 index c3c0d2ecbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1724.png deleted file mode 100644 index 5f7450e6e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1725.png deleted file mode 100644 index af0636c90e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1726.png deleted file mode 100644 index 88bba32efe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1727.png deleted file mode 100644 index fee2a219ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1728.png deleted file mode 100644 index 70826be2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1729.png deleted file mode 100644 index 041ac4a9d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1730.png deleted file mode 100644 index 5d0c04f79c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1731.png deleted file mode 100644 index 660c8b913c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1732.png deleted file mode 100644 index 98425ff97d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1733.png deleted file mode 100644 index f407443bff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1734.png deleted file mode 100644 index ea8d106e78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1735.png deleted file mode 100644 index cc2c456249..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1740.png deleted file mode 100644 index 020aa71907..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1741.png deleted file mode 100644 index 85a2a3c326..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1742.png deleted file mode 100644 index 0f3bb36003..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1743.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1744.png deleted file mode 100644 index 99c8639162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1745.png deleted file mode 100644 index 6e568ee86c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartAxeHead/1746.png deleted file mode 100644 index 746b752e54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartAxeHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1500.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1500.png deleted file mode 100644 index bbd08ce303..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1501.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1501.png deleted file mode 100644 index 3600bdfd1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1502.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1502.png deleted file mode 100644 index ce3568bb67..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1503.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1503.png deleted file mode 100644 index 4682b0a9ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1504.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1504.png deleted file mode 100644 index 10275c1f77..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1505.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1505.png deleted file mode 100644 index 5f35e5f105..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1506.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1506.png deleted file mode 100644 index 81ece3fa68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1507.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1507.png deleted file mode 100644 index 7d0470befb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1508.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1508.png deleted file mode 100644 index 9fb1160572..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1509.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1509.png deleted file mode 100644 index 0e080c1a80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1510.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1510.png deleted file mode 100644 index f54ccffb7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1511.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1511.png deleted file mode 100644 index 9fb1160572..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1512.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1512.png deleted file mode 100644 index 775ded8d8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1513.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1513.png deleted file mode 100644 index 3c9a16aa43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1514.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1514.png deleted file mode 100644 index c1c17c7594..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1515.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1515.png deleted file mode 100644 index 4cade3dd40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1516.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1516.png deleted file mode 100644 index cdf98efa2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1517.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1517.png deleted file mode 100644 index ea495b53bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1518.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1518.png deleted file mode 100644 index d2e6ebc597..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1519.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1519.png deleted file mode 100644 index 5439173aec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1520.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1520.png deleted file mode 100644 index 70c421e2ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1521.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1521.png deleted file mode 100644 index 1e4ebcc407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1522.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1522.png deleted file mode 100644 index 27ecc898e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1523.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1523.png deleted file mode 100644 index f22e6c2cfc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1524.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1524.png deleted file mode 100644 index e080b52184..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1525.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1525.png deleted file mode 100644 index 87ccab3889..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1526.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1526.png deleted file mode 100644 index a243f2026f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1527.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1527.png deleted file mode 100644 index 2b8dc97cb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1528.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1528.png deleted file mode 100644 index a041d71d06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1529.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1529.png deleted file mode 100644 index 27b87e49fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1530.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1530.png deleted file mode 100644 index bc8beb0569..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1531.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1531.png deleted file mode 100644 index 36e06e7a97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1532.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1532.png deleted file mode 100644 index a9b4a31691..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1533.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1533.png deleted file mode 100644 index 602be8ac27..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1534.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1534.png deleted file mode 100644 index e28c5f5faf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1535.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1535.png deleted file mode 100644 index bb6a2934bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1536.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1536.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1537.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1537.png deleted file mode 100644 index b57f02ffad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1538.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1538.png deleted file mode 100644 index 99d630d927..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1539.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1539.png deleted file mode 100644 index 25da9d5836..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1540.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1540.png deleted file mode 100644 index d939c2d522..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1541.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1541.png deleted file mode 100644 index 426be83d94..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1542.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1542.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1543.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1543.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1544.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1544.png deleted file mode 100644 index 1387816b25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1545.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1545.png deleted file mode 100644 index 82eb146665..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1546.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1546.png deleted file mode 100644 index 73474a84e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1547.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1547.png deleted file mode 100644 index 251d51d877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1548.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1548.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1549.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1549.png deleted file mode 100644 index 51ef6780b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1550.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1550.png deleted file mode 100644 index 2a00479ecb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1551.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1551.png deleted file mode 100644 index c2c13a25f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1553.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1553.png deleted file mode 100644 index 5e0091f50f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1554.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1554.png deleted file mode 100644 index 6d109b75f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1555.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1555.png deleted file mode 100644 index 4989250b90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1556.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1556.png deleted file mode 100644 index c1c17c7594..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1557.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1557.png deleted file mode 100644 index c1c17c7594..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1562.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1562.png deleted file mode 100644 index 2ff2c57a5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1563.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1563.png deleted file mode 100644 index 4989250b90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1564.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1564.png deleted file mode 100644 index 7d61354f96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1565.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1565.png deleted file mode 100644 index 4f30b1987a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1566.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1566.png deleted file mode 100644 index df91eb82ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1567.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1567.png deleted file mode 100644 index f371beed85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1568.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1568.png deleted file mode 100644 index 76ce0db36b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1570.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1570.png deleted file mode 100644 index 6e1cf82186..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1571.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1571.png deleted file mode 100644 index 5c14f7f22b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1572.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1572.png deleted file mode 100644 index 8df11788e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1573.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1573.png deleted file mode 100644 index 0d0f508fdb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1574.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1574.png deleted file mode 100644 index 1e4ebcc407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1575.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1575.png deleted file mode 100644 index 251d51d877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1576.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1576.png deleted file mode 100644 index 64513bcddf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1577.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1577.png deleted file mode 100644 index 9d3c8d9987..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1578.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1578.png deleted file mode 100644 index bfdd51cf75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1579.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1579.png deleted file mode 100644 index 9fb1160572..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1582.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1582.png deleted file mode 100644 index 7e0fb98f40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1583.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1583.png deleted file mode 100644 index ec5c31e126..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1584.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1584.png deleted file mode 100644 index 305abc0e56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1585.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1585.png deleted file mode 100644 index 223caaec07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1586.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1586.png deleted file mode 100644 index b5a7b01294..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1587.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1587.png deleted file mode 100644 index 6147984e93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1588.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1588.png deleted file mode 100644 index 4989250b90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1589.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1589.png deleted file mode 100644 index fec55e4770..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1590.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1590.png deleted file mode 100644 index 2b29aec44e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1591.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1591.png deleted file mode 100644 index a102cd4f83..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1592.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1592.png deleted file mode 100644 index fee069e461..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1593.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1593.png deleted file mode 100644 index 9babef65bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1594.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1594.png deleted file mode 100644 index 6fecd7281f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1595.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1595.png deleted file mode 100644 index bff1881882..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1596.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1596.png deleted file mode 100644 index 5291ea0ace..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1597.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1597.png deleted file mode 100644 index 8adc6abe20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1598.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1598.png deleted file mode 100644 index af98c43fee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1599.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1599.png deleted file mode 100644 index 8ee90aed78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1600.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1600.png deleted file mode 100644 index 2a94f0b906..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1601.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1601.png deleted file mode 100644 index 6afc601f3d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1602.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1602.png deleted file mode 100644 index 275cc1c755..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1603.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1603.png deleted file mode 100644 index 53605181c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1604.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1604.png deleted file mode 100644 index 23086e7a1c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1605.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1605.png deleted file mode 100644 index 9e7b3a73f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1606.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1606.png deleted file mode 100644 index 3bbe3f04ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1607.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1607.png deleted file mode 100644 index 13758d4bc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1608.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1608.png deleted file mode 100644 index b976182b9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1609.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1609.png deleted file mode 100644 index 1e4ebcc407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1610.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1610.png deleted file mode 100644 index f54ccffb7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1611.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1611.png deleted file mode 100644 index 996a1c5c43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1612.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1612.png deleted file mode 100644 index 1df172dc9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1613.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1613.png deleted file mode 100644 index 9ee8c383be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1614.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1614.png deleted file mode 100644 index 3bbe3f04ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1615.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1615.png deleted file mode 100644 index 99d630d927..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1616.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1616.png deleted file mode 100644 index 631da66a37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1617.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1617.png deleted file mode 100644 index 9e7b3a73f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1618.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1618.png deleted file mode 100644 index 47d0389e9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1619.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1619.png deleted file mode 100644 index acb3c0ff23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1620.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1620.png deleted file mode 100644 index 2b29aec44e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1621.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1621.png deleted file mode 100644 index d1a4a56341..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1622.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1622.png deleted file mode 100644 index c0404ff2ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1623.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1623.png deleted file mode 100644 index 36b64527bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1624.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1624.png deleted file mode 100644 index fe824f46e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1625.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1625.png deleted file mode 100644 index 9164e18bc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1626.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1626.png deleted file mode 100644 index 743114825f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1627.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1627.png deleted file mode 100644 index b032436c22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1628.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1628.png deleted file mode 100644 index 2c38e25255..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1629.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1629.png deleted file mode 100644 index c8a98b3a79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1630.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1630.png deleted file mode 100644 index 2fdf468bb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1631.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1631.png deleted file mode 100644 index f54ccffb7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1632.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1632.png deleted file mode 100644 index ba82168e70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1633.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1633.png deleted file mode 100644 index e5f94a790f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1634.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1634.png deleted file mode 100644 index 01aa46d6a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1635.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1635.png deleted file mode 100644 index 71b03c9f05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1636.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1636.png deleted file mode 100644 index cd2ea9ccc1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1637.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1637.png deleted file mode 100644 index 14a10faf6f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1638.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1638.png deleted file mode 100644 index 66aeaad44d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1639.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1639.png deleted file mode 100644 index 5c14f7f22b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1640.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1640.png deleted file mode 100644 index 74089a1a49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1641.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1641.png deleted file mode 100644 index 7e7dc32fc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1642.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1642.png deleted file mode 100644 index 567c8eea96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1643.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1643.png deleted file mode 100644 index 9c8fa32b4e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1644.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1644.png deleted file mode 100644 index 57927dcb5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1645.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1645.png deleted file mode 100644 index ba82168e70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1646.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1646.png deleted file mode 100644 index 3bbe3f04ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1647.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1647.png deleted file mode 100644 index c1c17c7594..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1648.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1648.png deleted file mode 100644 index f54ccffb7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1649.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1649.png deleted file mode 100644 index efa08fa174..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1650.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1650.png deleted file mode 100644 index c4e3442266..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1651.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1651.png deleted file mode 100644 index da3bf7291b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1652.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1652.png deleted file mode 100644 index cf663cd414..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1653.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1653.png deleted file mode 100644 index 2f83cd9dfc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1654.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1654.png deleted file mode 100644 index 4dc8285b40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1655.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1655.png deleted file mode 100644 index 6b55835a3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1656.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1656.png deleted file mode 100644 index 78c9f6bb85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1657.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1657.png deleted file mode 100644 index 1e4ebcc407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1658.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1658.png deleted file mode 100644 index d7c6275b3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1659.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1659.png deleted file mode 100644 index 45fbab4225..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1660.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1660.png deleted file mode 100644 index b0e8ce83e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1661.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1661.png deleted file mode 100644 index 81dd6e6378..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1662.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1662.png deleted file mode 100644 index de63179a9d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1663.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1663.png deleted file mode 100644 index a033fd0e59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1664.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1664.png deleted file mode 100644 index b98f452ca7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1665.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1665.png deleted file mode 100644 index 8debc8f575..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1666.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1666.png deleted file mode 100644 index b352be35c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1667.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1667.png deleted file mode 100644 index 7bdaf4479a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1668.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1668.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1670.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1670.png deleted file mode 100644 index 7f1758465e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1672.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1672.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1673.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1673.png deleted file mode 100644 index 6e6b80a78c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1674.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1674.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1675.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1675.png deleted file mode 100644 index 3bbe3f04ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1676.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1676.png deleted file mode 100644 index 535e88e151..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1677.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1677.png deleted file mode 100644 index 3a76fe01f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1678.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1678.png deleted file mode 100644 index bb051e619f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1679.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1679.png deleted file mode 100644 index da35aa00e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1680.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1680.png deleted file mode 100644 index 39fb4a5f2c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1681.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1681.png deleted file mode 100644 index 926fbfcd9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1682.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1682.png deleted file mode 100644 index 6f7cca7e82..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1683.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1683.png deleted file mode 100644 index bf152f54b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1684.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1684.png deleted file mode 100644 index 58df063a3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1685.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1685.png deleted file mode 100644 index 30d0122785..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1686.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1686.png deleted file mode 100644 index 1e4ebcc407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1687.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1687.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1688.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1688.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1689.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1689.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1690.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1690.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1691.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1691.png deleted file mode 100644 index b1536c725b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1692.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1692.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1693.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1693.png deleted file mode 100644 index afaeacea87..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1694.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1694.png deleted file mode 100644 index b78ecefcf0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1695.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1695.png deleted file mode 100644 index 402d27b6f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1696.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1696.png deleted file mode 100644 index ba99a3560c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1697.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1697.png deleted file mode 100644 index 256812a0b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1698.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1698.png deleted file mode 100644 index 1e4ebcc407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1699.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1699.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1700.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1700.png deleted file mode 100644 index 769b284470..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1701.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1701.png deleted file mode 100644 index d3280f8a45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1702.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1702.png deleted file mode 100644 index a5f61005c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1703.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1703.png deleted file mode 100644 index 0037f242c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1704.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1704.png deleted file mode 100644 index a16ddd6fd4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1705.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1705.png deleted file mode 100644 index f214535a49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1706.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1706.png deleted file mode 100644 index f54ccffb7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1707.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1707.png deleted file mode 100644 index 606710053e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1708.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1708.png deleted file mode 100644 index 10275c1f77..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1709.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1709.png deleted file mode 100644 index 6869e9a8fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1710.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1710.png deleted file mode 100644 index 92f0c0a381..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1711.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1711.png deleted file mode 100644 index aa7b51ba74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1712.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1712.png deleted file mode 100644 index 35cc419545..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1713.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1713.png deleted file mode 100644 index 2f6b39bb6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1714.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1714.png deleted file mode 100644 index 4fb47882e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1715.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1715.png deleted file mode 100644 index 9f9097a93a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1716.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1716.png deleted file mode 100644 index 783da5816d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1717.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1717.png deleted file mode 100644 index 70248817bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1718.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1718.png deleted file mode 100644 index 915f6c58ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1719.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1719.png deleted file mode 100644 index 826fb21760..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1720.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1720.png deleted file mode 100644 index 826fb21760..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1721.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1721.png deleted file mode 100644 index 109e2309b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1722.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1722.png deleted file mode 100644 index f101b6de1f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1723.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1723.png deleted file mode 100644 index 77f4bf58af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1724.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1724.png deleted file mode 100644 index 4d9a0854a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1725.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1725.png deleted file mode 100644 index fa01ac3308..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1726.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1726.png deleted file mode 100644 index 5375e227b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1727.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1727.png deleted file mode 100644 index 4af3a38c49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1728.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1728.png deleted file mode 100644 index c917bed88c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1729.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1729.png deleted file mode 100644 index 5e976c5a9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1730.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1730.png deleted file mode 100644 index 5a941ef7ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1731.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1731.png deleted file mode 100644 index 69efb5eb39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1732.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1732.png deleted file mode 100644 index 1a538a98fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1733.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1733.png deleted file mode 100644 index b1cd6b4c27..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1734.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1734.png deleted file mode 100644 index 4c440baa0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1735.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1735.png deleted file mode 100644 index 0e3e5f74bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1740.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1740.png deleted file mode 100644 index 803258b073..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1741.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1741.png deleted file mode 100644 index ef9cd9a21d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1742.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1742.png deleted file mode 100644 index df15659290..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1743.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1743.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1744.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1744.png deleted file mode 100644 index 4689d4b6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1745.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1745.png deleted file mode 100644 index 612b5bcca6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBinding/1746.png b/front/public/images/small/TGregworks/tGregToolPartBinding/1746.png deleted file mode 100644 index 547fac524b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBinding/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1500.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1500.png deleted file mode 100644 index 904504ad5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1501.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1501.png deleted file mode 100644 index 9b6536f0cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1502.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1502.png deleted file mode 100644 index 60452160e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1503.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1503.png deleted file mode 100644 index def7945da3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1504.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1504.png deleted file mode 100644 index 64ba51f1ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1505.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1505.png deleted file mode 100644 index 15b98e9619..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1506.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1506.png deleted file mode 100644 index 7346342749..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1507.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1507.png deleted file mode 100644 index f51325cbd2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1508.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1508.png deleted file mode 100644 index 4749343bc1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1509.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1509.png deleted file mode 100644 index fdff76674b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1510.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1510.png deleted file mode 100644 index e0d8fed76c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1511.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1511.png deleted file mode 100644 index 4749343bc1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1512.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1512.png deleted file mode 100644 index 71e9dfa83f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1513.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1513.png deleted file mode 100644 index 59ea33f716..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1514.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1514.png deleted file mode 100644 index 9e82a8d672..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1515.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1515.png deleted file mode 100644 index 8508741327..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1516.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1516.png deleted file mode 100644 index 788478a7d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1517.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1517.png deleted file mode 100644 index 93d1e2e621..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1518.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1518.png deleted file mode 100644 index 052e354177..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1519.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1519.png deleted file mode 100644 index 62a3de0012..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1520.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1520.png deleted file mode 100644 index 7ef94d2882..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1521.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1521.png deleted file mode 100644 index af9077a8ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1522.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1522.png deleted file mode 100644 index a6eb4dc5b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1523.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1523.png deleted file mode 100644 index 42c6f4d691..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1524.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1524.png deleted file mode 100644 index 1399cb7695..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1525.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1525.png deleted file mode 100644 index e4cddffc5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1526.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1526.png deleted file mode 100644 index c0f4287eec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1527.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1527.png deleted file mode 100644 index 3f8af56954..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1528.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1528.png deleted file mode 100644 index d157e3bec9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1529.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1529.png deleted file mode 100644 index a6fa621bc8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1530.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1530.png deleted file mode 100644 index 95e45e698b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1531.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1531.png deleted file mode 100644 index 35ca7bda2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1532.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1532.png deleted file mode 100644 index 72ec27c905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1533.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1533.png deleted file mode 100644 index dd88a18563..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1534.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1534.png deleted file mode 100644 index ffa60215c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1535.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1535.png deleted file mode 100644 index 2ca170a0ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1536.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1536.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1537.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1537.png deleted file mode 100644 index e038740474..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1538.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1538.png deleted file mode 100644 index 1bfadcbf74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1539.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1539.png deleted file mode 100644 index a181c3b497..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1540.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1540.png deleted file mode 100644 index e672b53dea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1541.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1541.png deleted file mode 100644 index 5f3ea44e00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1542.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1542.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1543.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1543.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1544.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1544.png deleted file mode 100644 index d9fef96651..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1545.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1545.png deleted file mode 100644 index e99b57ca78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1546.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1546.png deleted file mode 100644 index a2926aace0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1547.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1547.png deleted file mode 100644 index 8c44621fea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1548.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1548.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1549.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1549.png deleted file mode 100644 index 7f3cb9c6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1550.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1550.png deleted file mode 100644 index bc3976c655..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1551.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1551.png deleted file mode 100644 index 3aa17c8d26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1553.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1553.png deleted file mode 100644 index 0648dc458a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1554.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1554.png deleted file mode 100644 index e2e0dc29aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1555.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1555.png deleted file mode 100644 index 56a89079fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1556.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1556.png deleted file mode 100644 index 9e82a8d672..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1557.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1557.png deleted file mode 100644 index 9e82a8d672..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1562.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1562.png deleted file mode 100644 index 8858fd23fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1563.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1563.png deleted file mode 100644 index 56a89079fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1564.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1564.png deleted file mode 100644 index e566894319..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1565.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1565.png deleted file mode 100644 index 958c32d96b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1566.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1566.png deleted file mode 100644 index a87c218e03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1567.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1567.png deleted file mode 100644 index 6cc96eb84f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1568.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1568.png deleted file mode 100644 index 7c9cde2728..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1570.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1570.png deleted file mode 100644 index 277811eeb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1571.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1571.png deleted file mode 100644 index e2bb435835..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1572.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1572.png deleted file mode 100644 index e229709f0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1573.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1573.png deleted file mode 100644 index 90a046617c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1574.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1574.png deleted file mode 100644 index af9077a8ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1575.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1575.png deleted file mode 100644 index 8c44621fea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1576.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1576.png deleted file mode 100644 index 032475c16c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1577.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1577.png deleted file mode 100644 index d67091c364..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1578.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1578.png deleted file mode 100644 index 2376d40d77..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1579.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1579.png deleted file mode 100644 index 4749343bc1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1582.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1582.png deleted file mode 100644 index 9e37788ab9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1583.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1583.png deleted file mode 100644 index c6ee411673..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1584.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1584.png deleted file mode 100644 index e89222640b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1585.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1585.png deleted file mode 100644 index 785d6ab256..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1586.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1586.png deleted file mode 100644 index 785e085d9d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1587.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1587.png deleted file mode 100644 index a25ee8a024..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1588.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1588.png deleted file mode 100644 index 56a89079fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1589.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1589.png deleted file mode 100644 index 9935f575a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1590.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1590.png deleted file mode 100644 index e1340ce97d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1591.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1591.png deleted file mode 100644 index 1672c8eefa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1592.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1592.png deleted file mode 100644 index 928a1d2add..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1593.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1593.png deleted file mode 100644 index 0f14773bbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1594.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1594.png deleted file mode 100644 index 426683a821..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1595.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1595.png deleted file mode 100644 index 1455990609..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1596.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1596.png deleted file mode 100644 index 7fb35fe0f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1597.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1597.png deleted file mode 100644 index ee7f9010d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1598.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1598.png deleted file mode 100644 index 759a278b40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1599.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1599.png deleted file mode 100644 index 35222f0c11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1600.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1600.png deleted file mode 100644 index 918fd5fef8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1601.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1601.png deleted file mode 100644 index 19c9a1fa68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1602.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1602.png deleted file mode 100644 index fcc4585cc2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1603.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1603.png deleted file mode 100644 index 1f68c34e29..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1604.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1604.png deleted file mode 100644 index 48d64d5f15..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1605.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1605.png deleted file mode 100644 index e527463169..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1606.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1606.png deleted file mode 100644 index df229c44d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1607.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1607.png deleted file mode 100644 index 62ceb30b5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1608.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1608.png deleted file mode 100644 index 4f4f32f63a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1609.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1609.png deleted file mode 100644 index af9077a8ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1610.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1610.png deleted file mode 100644 index e0d8fed76c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1611.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1611.png deleted file mode 100644 index 39ab4b6df4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1612.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1612.png deleted file mode 100644 index 41af731345..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1613.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1613.png deleted file mode 100644 index 79e5e35afa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1614.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1614.png deleted file mode 100644 index df229c44d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1615.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1615.png deleted file mode 100644 index 1bfadcbf74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1616.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1616.png deleted file mode 100644 index e800aeafe5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1617.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1617.png deleted file mode 100644 index e527463169..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1618.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1618.png deleted file mode 100644 index e45d113adc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1619.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1619.png deleted file mode 100644 index f4024188cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1620.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1620.png deleted file mode 100644 index e1340ce97d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1621.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1621.png deleted file mode 100644 index 86ba608764..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1622.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1622.png deleted file mode 100644 index a59f4bcb57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1623.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1623.png deleted file mode 100644 index 7433a03b9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1624.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1624.png deleted file mode 100644 index 10b4478ad8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1625.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1625.png deleted file mode 100644 index bf50aa0647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1626.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1626.png deleted file mode 100644 index c118b6b899..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1627.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1627.png deleted file mode 100644 index 4ce8fdfa83..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1628.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1628.png deleted file mode 100644 index 9ebe64b036..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1629.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1629.png deleted file mode 100644 index ba602b5e2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1630.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1630.png deleted file mode 100644 index ef93d4f654..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1631.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1631.png deleted file mode 100644 index e0d8fed76c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1632.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1632.png deleted file mode 100644 index 4c621241aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1633.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1633.png deleted file mode 100644 index 8de768a0ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1634.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1634.png deleted file mode 100644 index 7540757a57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1635.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1635.png deleted file mode 100644 index 9252e2f3d0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1636.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1636.png deleted file mode 100644 index 6bc1563008..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1637.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1637.png deleted file mode 100644 index b48e26e491..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1638.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1638.png deleted file mode 100644 index b30201093a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1639.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1639.png deleted file mode 100644 index e2bb435835..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1640.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1640.png deleted file mode 100644 index ed299e4f11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1641.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1641.png deleted file mode 100644 index 9ab9fd2f4f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1642.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1642.png deleted file mode 100644 index 564116b69e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1643.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1643.png deleted file mode 100644 index 79faa6ce07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1644.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1644.png deleted file mode 100644 index f51f2fbacb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1645.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1645.png deleted file mode 100644 index 4c621241aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1646.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1646.png deleted file mode 100644 index df229c44d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1647.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1647.png deleted file mode 100644 index 9e82a8d672..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1648.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1648.png deleted file mode 100644 index e0d8fed76c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1649.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1649.png deleted file mode 100644 index 1d33e0a8ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1650.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1650.png deleted file mode 100644 index 55da563437..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1651.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1651.png deleted file mode 100644 index b0dccdd2ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1652.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1652.png deleted file mode 100644 index 1c13d9ff57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1653.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1653.png deleted file mode 100644 index 0a42db7043..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1654.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1654.png deleted file mode 100644 index d9aa944566..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1655.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1655.png deleted file mode 100644 index 50e944a74e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1656.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1656.png deleted file mode 100644 index 7e85fb9841..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1657.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1657.png deleted file mode 100644 index af9077a8ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1658.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1658.png deleted file mode 100644 index b29273275a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1659.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1659.png deleted file mode 100644 index 3829c35a76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1660.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1660.png deleted file mode 100644 index d1956882c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1661.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1661.png deleted file mode 100644 index 84dcfcc47a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1662.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1662.png deleted file mode 100644 index b2c811cfb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1663.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1663.png deleted file mode 100644 index d0c58935c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1664.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1664.png deleted file mode 100644 index 05a7e91c3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1665.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1665.png deleted file mode 100644 index c7911b74a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1666.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1666.png deleted file mode 100644 index cbdc18a011..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1667.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1667.png deleted file mode 100644 index 09841a86c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1668.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1668.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1670.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1670.png deleted file mode 100644 index 1c2b0b8841..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1672.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1672.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1673.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1673.png deleted file mode 100644 index 6ba30296fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1674.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1674.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1675.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1675.png deleted file mode 100644 index df229c44d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1676.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1676.png deleted file mode 100644 index d357bc800d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1677.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1677.png deleted file mode 100644 index 19137b8996..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1678.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1678.png deleted file mode 100644 index 672e5efc30..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1679.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1679.png deleted file mode 100644 index 8c46e1b61d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1680.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1680.png deleted file mode 100644 index a49b57b170..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1681.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1681.png deleted file mode 100644 index 193ab35374..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1682.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1682.png deleted file mode 100644 index 2b52c519ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1683.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1683.png deleted file mode 100644 index 6ae6919bfc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1684.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1684.png deleted file mode 100644 index 9e1b78b8a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1685.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1685.png deleted file mode 100644 index d659d2788f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1686.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1686.png deleted file mode 100644 index af9077a8ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1687.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1687.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1688.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1688.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1689.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1689.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1690.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1690.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1691.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1691.png deleted file mode 100644 index 4b3f918351..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1692.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1692.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1693.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1693.png deleted file mode 100644 index d9461e22a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1694.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1694.png deleted file mode 100644 index b126c4a45a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1695.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1695.png deleted file mode 100644 index cfd6afc0bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1696.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1696.png deleted file mode 100644 index 4ef772a677..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1697.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1697.png deleted file mode 100644 index bf80881b5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1698.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1698.png deleted file mode 100644 index af9077a8ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1699.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1699.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1700.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1700.png deleted file mode 100644 index 436e74f242..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1701.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1701.png deleted file mode 100644 index b5f8da9877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1702.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1702.png deleted file mode 100644 index baf644e861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1703.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1703.png deleted file mode 100644 index d34e15cd70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1704.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1704.png deleted file mode 100644 index 7ed0463b51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1705.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1705.png deleted file mode 100644 index a7f8d1e16f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1706.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1706.png deleted file mode 100644 index e0d8fed76c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1707.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1707.png deleted file mode 100644 index cebb3f8c71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1708.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1708.png deleted file mode 100644 index 64ba51f1ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1709.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1709.png deleted file mode 100644 index 7cdab7de98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1710.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1710.png deleted file mode 100644 index 2597086433..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1711.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1711.png deleted file mode 100644 index c7319180bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1712.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1712.png deleted file mode 100644 index 473e166452..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1713.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1713.png deleted file mode 100644 index f9980e7436..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1714.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1714.png deleted file mode 100644 index fa9c5c9ffb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1715.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1715.png deleted file mode 100644 index 2a36abfac5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1716.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1716.png deleted file mode 100644 index 61540bd836..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1717.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1717.png deleted file mode 100644 index 9e7d3020a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1718.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1718.png deleted file mode 100644 index 112c01ad0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1719.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1719.png deleted file mode 100644 index d59b8d22ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1720.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1720.png deleted file mode 100644 index d59b8d22ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1721.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1721.png deleted file mode 100644 index f6e37cfcbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1722.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1722.png deleted file mode 100644 index df6cdc475c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1723.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1723.png deleted file mode 100644 index 527c419a02..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1724.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1724.png deleted file mode 100644 index d1875e318c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1725.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1725.png deleted file mode 100644 index 756f40f77b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1726.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1726.png deleted file mode 100644 index 38e6a63778..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1727.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1727.png deleted file mode 100644 index 341f7b10bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1728.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1728.png deleted file mode 100644 index adb94964b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1729.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1729.png deleted file mode 100644 index 885945d1dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1730.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1730.png deleted file mode 100644 index fa1658a0e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1731.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1731.png deleted file mode 100644 index b276211055..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1732.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1732.png deleted file mode 100644 index d7acd3b5d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1733.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1733.png deleted file mode 100644 index cd118c74a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1734.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1734.png deleted file mode 100644 index 67b05a7eca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1735.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1735.png deleted file mode 100644 index 0a9f5607b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1740.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1740.png deleted file mode 100644 index 9a6efd6079..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1741.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1741.png deleted file mode 100644 index 98bf468778..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1742.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1742.png deleted file mode 100644 index 81cc1dce42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1743.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1743.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1744.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1744.png deleted file mode 100644 index 7a28eb0cdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1745.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1745.png deleted file mode 100644 index e55cc67c3f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1746.png b/front/public/images/small/TGregworks/tGregToolPartBowLimb/1746.png deleted file mode 100644 index 0bb820217b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartBowLimb/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1500.png deleted file mode 100644 index b787948227..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1501.png deleted file mode 100644 index 2aef9e230e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1502.png deleted file mode 100644 index 5420cc0509..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1503.png deleted file mode 100644 index b1de9b9242..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1504.png deleted file mode 100644 index e5d86a94d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1505.png deleted file mode 100644 index 05e6ea0364..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1506.png deleted file mode 100644 index ca94ddf3b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1507.png deleted file mode 100644 index ccdc69a684..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1508.png deleted file mode 100644 index 0676b852b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1509.png deleted file mode 100644 index 9a945ce98c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1510.png deleted file mode 100644 index 0e204a19f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1511.png deleted file mode 100644 index 0676b852b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1512.png deleted file mode 100644 index 1d97856299..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1513.png deleted file mode 100644 index 23f10ce04b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1514.png deleted file mode 100644 index 10f35f751a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1515.png deleted file mode 100644 index 4cccd59e6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1516.png deleted file mode 100644 index ac21fea8f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1517.png deleted file mode 100644 index eb352fcb2e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1518.png deleted file mode 100644 index c956e46e60..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1519.png deleted file mode 100644 index 9081fca642..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1520.png deleted file mode 100644 index 003ea4c697..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1521.png deleted file mode 100644 index b26229d580..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1522.png deleted file mode 100644 index e1463c202b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1523.png deleted file mode 100644 index d66164f4eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1524.png deleted file mode 100644 index 1640b64a19..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1525.png deleted file mode 100644 index ec8f836e26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1526.png deleted file mode 100644 index e0a9f2d9ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1527.png deleted file mode 100644 index 85724ff417..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1528.png deleted file mode 100644 index a3ad6474f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1529.png deleted file mode 100644 index 72d3f90e8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1530.png deleted file mode 100644 index 71d2b84858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1531.png deleted file mode 100644 index 8aaf1b06ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1532.png deleted file mode 100644 index 30079ab05f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1533.png deleted file mode 100644 index bf4fb3b516..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1534.png deleted file mode 100644 index 8077de9ce4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1535.png deleted file mode 100644 index 54df4f45e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1536.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1537.png deleted file mode 100644 index edf756775b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1538.png deleted file mode 100644 index f20a0de9ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1539.png deleted file mode 100644 index 4d8907a13d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1540.png deleted file mode 100644 index 2080ef4f31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1541.png deleted file mode 100644 index 637c8d7857..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1542.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1543.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1544.png deleted file mode 100644 index 858bd60a8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1545.png deleted file mode 100644 index 9058c986be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1546.png deleted file mode 100644 index 262ee80a73..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1547.png deleted file mode 100644 index 9811a1d993..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1548.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1549.png deleted file mode 100644 index 0f07bb51c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1550.png deleted file mode 100644 index 0cfd17051c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1551.png deleted file mode 100644 index 44875b3549..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1553.png deleted file mode 100644 index 0994a937a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1554.png deleted file mode 100644 index e0809f56e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1555.png deleted file mode 100644 index 33805b3178..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1556.png deleted file mode 100644 index 10f35f751a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1557.png deleted file mode 100644 index 10f35f751a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1562.png deleted file mode 100644 index 80f486ec72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1563.png deleted file mode 100644 index 33805b3178..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1564.png deleted file mode 100644 index 327e3d9a1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1565.png deleted file mode 100644 index bb8030dab6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1566.png deleted file mode 100644 index 6b8f2f0af2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1567.png deleted file mode 100644 index 14591884dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1568.png deleted file mode 100644 index 7ea5ab6773..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1570.png deleted file mode 100644 index 6b49d01d92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1571.png deleted file mode 100644 index 37e09584a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1572.png deleted file mode 100644 index 65b39dff38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1573.png deleted file mode 100644 index 2b9ab46038..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1574.png deleted file mode 100644 index b26229d580..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1575.png deleted file mode 100644 index 9811a1d993..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1576.png deleted file mode 100644 index b886c52f86..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1577.png deleted file mode 100644 index 859d2d6ec1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1578.png deleted file mode 100644 index 3666b748b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1579.png deleted file mode 100644 index 0676b852b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1582.png deleted file mode 100644 index 8317230c7e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1583.png deleted file mode 100644 index 5752054041..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1584.png deleted file mode 100644 index cb8b322a95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1585.png deleted file mode 100644 index 535517343c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1586.png deleted file mode 100644 index 7bdbd4a1c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1587.png deleted file mode 100644 index 86133bf313..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1588.png deleted file mode 100644 index 33805b3178..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1589.png deleted file mode 100644 index 1d63043841..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1590.png deleted file mode 100644 index 029c0cbe58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1591.png deleted file mode 100644 index 39b2188f59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1592.png deleted file mode 100644 index 1a73d87463..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1593.png deleted file mode 100644 index dd335b71a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1594.png deleted file mode 100644 index 23f22ec616..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1595.png deleted file mode 100644 index 0cc155e991..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1596.png deleted file mode 100644 index 3a9c61c68c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1597.png deleted file mode 100644 index b8cb25b556..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1598.png deleted file mode 100644 index c18af431e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1599.png deleted file mode 100644 index bdff4c1025..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1600.png deleted file mode 100644 index c42d404db7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1601.png deleted file mode 100644 index 0354234757..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1602.png deleted file mode 100644 index e183270644..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1603.png deleted file mode 100644 index 569ea6a301..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1604.png deleted file mode 100644 index e4a1930668..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1605.png deleted file mode 100644 index 03642cf18a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1606.png deleted file mode 100644 index 5f0095ff4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1607.png deleted file mode 100644 index 8306d67f3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1608.png deleted file mode 100644 index 314e435c48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1609.png deleted file mode 100644 index b26229d580..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1610.png deleted file mode 100644 index 0e204a19f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1611.png deleted file mode 100644 index 83a51cefbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1612.png deleted file mode 100644 index e289f0a6f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1613.png deleted file mode 100644 index 75bfe413b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1614.png deleted file mode 100644 index 5f0095ff4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1615.png deleted file mode 100644 index f20a0de9ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1616.png deleted file mode 100644 index 3c4b5c23ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1617.png deleted file mode 100644 index 03642cf18a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1618.png deleted file mode 100644 index 1d95e11713..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1619.png deleted file mode 100644 index b51fff6a89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1620.png deleted file mode 100644 index 029c0cbe58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1621.png deleted file mode 100644 index cd2d4c0a18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1622.png deleted file mode 100644 index 392aea193f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1623.png deleted file mode 100644 index 56c388d4d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1624.png deleted file mode 100644 index 1e5aaf0cbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1625.png deleted file mode 100644 index 36d794b65a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1626.png deleted file mode 100644 index 11f930df1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1627.png deleted file mode 100644 index 95ce9537c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1628.png deleted file mode 100644 index 6fc4dd2861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1629.png deleted file mode 100644 index 9f545b085e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1630.png deleted file mode 100644 index 85f2f5da7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1631.png deleted file mode 100644 index 0e204a19f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1632.png deleted file mode 100644 index b5d7835534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1633.png deleted file mode 100644 index 9be313b512..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1634.png deleted file mode 100644 index 69d4e7c47f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1635.png deleted file mode 100644 index 79e98fdfd6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1636.png deleted file mode 100644 index f4289469ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1637.png deleted file mode 100644 index e92671eacc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1638.png deleted file mode 100644 index dd7a247500..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1639.png deleted file mode 100644 index 37e09584a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1640.png deleted file mode 100644 index c0d6b6fcd7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1641.png deleted file mode 100644 index eed5f1954d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1642.png deleted file mode 100644 index 38ce94d6fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1643.png deleted file mode 100644 index 13aab21a50..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1644.png deleted file mode 100644 index 89b5cf6f75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1645.png deleted file mode 100644 index b5d7835534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1646.png deleted file mode 100644 index 5f0095ff4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1647.png deleted file mode 100644 index 10f35f751a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1648.png deleted file mode 100644 index 0e204a19f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1649.png deleted file mode 100644 index 1f4c858c9d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1650.png deleted file mode 100644 index 7b2346916d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1651.png deleted file mode 100644 index 0ed496ffce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1652.png deleted file mode 100644 index 5d148cad6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1653.png deleted file mode 100644 index ac97824c4e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1654.png deleted file mode 100644 index e9cf332662..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1655.png deleted file mode 100644 index b31b7a1d32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1656.png deleted file mode 100644 index d29e712d4e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1657.png deleted file mode 100644 index b26229d580..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1658.png deleted file mode 100644 index 068daf6da7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1659.png deleted file mode 100644 index a512dbe78a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1660.png deleted file mode 100644 index 5043d1d939..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1661.png deleted file mode 100644 index f3724c7578..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1662.png deleted file mode 100644 index 55968b2bc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1663.png deleted file mode 100644 index 6e456b14e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1664.png deleted file mode 100644 index 3e03f22395..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1665.png deleted file mode 100644 index 74efc561e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1666.png deleted file mode 100644 index f9824b72be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1667.png deleted file mode 100644 index 64143ee0d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1668.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1670.png deleted file mode 100644 index e6c44d4987..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1672.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1673.png deleted file mode 100644 index 8ec79f01c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1674.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1675.png deleted file mode 100644 index 5f0095ff4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1676.png deleted file mode 100644 index 9632fd84cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1677.png deleted file mode 100644 index 2a4f03a167..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1678.png deleted file mode 100644 index c6813d2d78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1679.png deleted file mode 100644 index f1e27d151a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1680.png deleted file mode 100644 index a1463b9808..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1681.png deleted file mode 100644 index 56dc2dcd62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1682.png deleted file mode 100644 index daae3fc5a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1683.png deleted file mode 100644 index be14b37351..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1684.png deleted file mode 100644 index b74e2b0ff7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1685.png deleted file mode 100644 index f96e5dcbec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1686.png deleted file mode 100644 index b26229d580..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1687.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1688.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1689.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1690.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1691.png deleted file mode 100644 index 3965864b03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1692.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1693.png deleted file mode 100644 index d6b9897251..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1694.png deleted file mode 100644 index f1874a9842..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1695.png deleted file mode 100644 index bca86b34e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1696.png deleted file mode 100644 index ab2594b407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1697.png deleted file mode 100644 index c0e2436325..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1698.png deleted file mode 100644 index b26229d580..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1699.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1700.png deleted file mode 100644 index a59af382c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1701.png deleted file mode 100644 index df9129386d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1702.png deleted file mode 100644 index d3cbed66e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1703.png deleted file mode 100644 index e7af3c0971..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1704.png deleted file mode 100644 index d1904aacab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1705.png deleted file mode 100644 index f25b0c9a28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1706.png deleted file mode 100644 index 0e204a19f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1707.png deleted file mode 100644 index a207870430..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1708.png deleted file mode 100644 index e5d86a94d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1709.png deleted file mode 100644 index 8101bf88bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1710.png deleted file mode 100644 index 34b527d1cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1711.png deleted file mode 100644 index 3e2de1b374..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1712.png deleted file mode 100644 index 3a4618bb7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1713.png deleted file mode 100644 index e9d606d297..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1714.png deleted file mode 100644 index 838b7e867f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1715.png deleted file mode 100644 index 6b6fe571ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1716.png deleted file mode 100644 index 84b2457193..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1717.png deleted file mode 100644 index 6a0bc00ca4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1718.png deleted file mode 100644 index 8c7ec44874..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1719.png deleted file mode 100644 index 436ba334ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1720.png deleted file mode 100644 index 436ba334ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1721.png deleted file mode 100644 index 91824b2165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1722.png deleted file mode 100644 index 66842c686c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1723.png deleted file mode 100644 index fa571ebebf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1724.png deleted file mode 100644 index be94ae8522..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1725.png deleted file mode 100644 index 4f8cb7340c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1726.png deleted file mode 100644 index 2006c3f784..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1727.png deleted file mode 100644 index a904b1f6bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1728.png deleted file mode 100644 index 92e783e92b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1729.png deleted file mode 100644 index 13790394f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1730.png deleted file mode 100644 index e389f22b04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1731.png deleted file mode 100644 index a714389d23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1732.png deleted file mode 100644 index d51a03d43a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1733.png deleted file mode 100644 index a7e49fff5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1734.png deleted file mode 100644 index 53ae09ba16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1735.png deleted file mode 100644 index 5ddff5fe90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1740.png deleted file mode 100644 index 15d13702ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1741.png deleted file mode 100644 index 0dff531b79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1742.png deleted file mode 100644 index 4fa1a85fb6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1743.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1744.png deleted file mode 100644 index e445f5835f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1745.png deleted file mode 100644 index 8d0336180f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartChiselHead/1746.png deleted file mode 100644 index 986176a2f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChiselHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1500.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1500.png deleted file mode 100644 index cb09f25470..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1501.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1501.png deleted file mode 100644 index b961cbe4e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1502.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1502.png deleted file mode 100644 index b0b2ad8ca4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1503.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1503.png deleted file mode 100644 index e5a1c5fab5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1504.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1504.png deleted file mode 100644 index 545a813eee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1505.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1505.png deleted file mode 100644 index 414143a3f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1506.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1506.png deleted file mode 100644 index 5e6db00e6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1507.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1507.png deleted file mode 100644 index 836303f5fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1508.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1508.png deleted file mode 100644 index f4671c8f0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1509.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1509.png deleted file mode 100644 index 5baf202f84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1510.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1510.png deleted file mode 100644 index a53b32424e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1511.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1511.png deleted file mode 100644 index f4671c8f0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1512.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1512.png deleted file mode 100644 index 25563100f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1513.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1513.png deleted file mode 100644 index 824a768864..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1514.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1514.png deleted file mode 100644 index b46c2f5701..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1515.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1515.png deleted file mode 100644 index 00d9d26967..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1516.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1516.png deleted file mode 100644 index 732eec4bc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1517.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1517.png deleted file mode 100644 index aeb95042da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1518.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1518.png deleted file mode 100644 index 0e655e89a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1519.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1519.png deleted file mode 100644 index 3c65023c8a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1520.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1520.png deleted file mode 100644 index 7a8de23e37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1521.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1521.png deleted file mode 100644 index b85ed2cd4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1522.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1522.png deleted file mode 100644 index d2aba6797d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1523.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1523.png deleted file mode 100644 index 21c1c57979..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1524.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1524.png deleted file mode 100644 index 14327c589d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1525.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1525.png deleted file mode 100644 index 45971daff2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1526.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1526.png deleted file mode 100644 index 988362297a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1527.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1527.png deleted file mode 100644 index 8a8adb1043..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1528.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1528.png deleted file mode 100644 index f2467639ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1529.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1529.png deleted file mode 100644 index ed5d15ae74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1530.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1530.png deleted file mode 100644 index e4ee879306..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1531.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1531.png deleted file mode 100644 index 7a34204cb4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1532.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1532.png deleted file mode 100644 index f3a426fa89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1533.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1533.png deleted file mode 100644 index 474bcb2619..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1534.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1534.png deleted file mode 100644 index 3c53101492..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1535.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1535.png deleted file mode 100644 index cbbfc9d9a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1536.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1536.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1537.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1537.png deleted file mode 100644 index 3ec35ea561..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1538.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1538.png deleted file mode 100644 index ce25a3ec89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1539.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1539.png deleted file mode 100644 index 2333d1fbf0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1540.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1540.png deleted file mode 100644 index 7eb3c1baa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1541.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1541.png deleted file mode 100644 index 78173771b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1542.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1542.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1543.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1543.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1544.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1544.png deleted file mode 100644 index b4f04132a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1545.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1545.png deleted file mode 100644 index f505615575..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1546.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1546.png deleted file mode 100644 index 6818f93ab7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1547.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1547.png deleted file mode 100644 index 8bc84f366d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1548.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1548.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1549.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1549.png deleted file mode 100644 index 052f3abf8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1550.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1550.png deleted file mode 100644 index d02379742a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1551.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1551.png deleted file mode 100644 index e60122d080..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1553.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1553.png deleted file mode 100644 index 1d22e59b58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1554.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1554.png deleted file mode 100644 index 6b3e6a071b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1555.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1555.png deleted file mode 100644 index a65f512a93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1556.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1556.png deleted file mode 100644 index b46c2f5701..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1557.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1557.png deleted file mode 100644 index b46c2f5701..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1562.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1562.png deleted file mode 100644 index 554ea156ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1563.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1563.png deleted file mode 100644 index a65f512a93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1564.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1564.png deleted file mode 100644 index 18c7e4cb1f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1565.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1565.png deleted file mode 100644 index b6e2fc07f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1566.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1566.png deleted file mode 100644 index 177d6d0269..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1567.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1567.png deleted file mode 100644 index 38044d4af4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1568.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1568.png deleted file mode 100644 index 9f235b9f2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1570.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1570.png deleted file mode 100644 index ed56eaf359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1571.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1571.png deleted file mode 100644 index e68e5ec8d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1572.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1572.png deleted file mode 100644 index 9df1505711..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1573.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1573.png deleted file mode 100644 index bfa668e72f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1574.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1574.png deleted file mode 100644 index b85ed2cd4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1575.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1575.png deleted file mode 100644 index 8bc84f366d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1576.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1576.png deleted file mode 100644 index 4730474d40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1577.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1577.png deleted file mode 100644 index 2a17341048..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1578.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1578.png deleted file mode 100644 index a7cfb9f648..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1579.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1579.png deleted file mode 100644 index f4671c8f0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1582.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1582.png deleted file mode 100644 index b8e0cf9861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1583.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1583.png deleted file mode 100644 index b7c0671e2e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1584.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1584.png deleted file mode 100644 index eb0dc612ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1585.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1585.png deleted file mode 100644 index 765dfc6652..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1586.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1586.png deleted file mode 100644 index 0122db1c56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1587.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1587.png deleted file mode 100644 index c6524a7189..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1588.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1588.png deleted file mode 100644 index a65f512a93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1589.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1589.png deleted file mode 100644 index 24e901cf76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1590.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1590.png deleted file mode 100644 index 7541c9e87b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1591.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1591.png deleted file mode 100644 index 953b6cad7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1592.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1592.png deleted file mode 100644 index ab4a2d7734..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1593.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1593.png deleted file mode 100644 index 7bd9b90c3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1594.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1594.png deleted file mode 100644 index ba1d2468a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1595.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1595.png deleted file mode 100644 index c76bd4d43f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1596.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1596.png deleted file mode 100644 index 1646880d04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1597.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1597.png deleted file mode 100644 index 6281b81579..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1598.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1598.png deleted file mode 100644 index 44ee1b6de4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1599.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1599.png deleted file mode 100644 index 7525f50856..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1600.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1600.png deleted file mode 100644 index 8c7da9bf5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1601.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1601.png deleted file mode 100644 index d60939de21..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1602.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1602.png deleted file mode 100644 index 42a22fab0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1603.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1603.png deleted file mode 100644 index 2a2c972666..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1604.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1604.png deleted file mode 100644 index 176feba27f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1605.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1605.png deleted file mode 100644 index a9c6bdda0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1606.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1606.png deleted file mode 100644 index 1d8994a121..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1607.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1607.png deleted file mode 100644 index 88101bd5d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1608.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1608.png deleted file mode 100644 index 1e74a6d6d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1609.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1609.png deleted file mode 100644 index b85ed2cd4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1610.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1610.png deleted file mode 100644 index a53b32424e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1611.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1611.png deleted file mode 100644 index 87ae35da53..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1612.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1612.png deleted file mode 100644 index bc9be083e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1613.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1613.png deleted file mode 100644 index dd927b4b85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1614.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1614.png deleted file mode 100644 index 1d8994a121..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1615.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1615.png deleted file mode 100644 index ce25a3ec89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1616.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1616.png deleted file mode 100644 index 79c370acf2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1617.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1617.png deleted file mode 100644 index a9c6bdda0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1618.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1618.png deleted file mode 100644 index adc617c0b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1619.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1619.png deleted file mode 100644 index d8ade5cfb3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1620.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1620.png deleted file mode 100644 index 7541c9e87b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1621.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1621.png deleted file mode 100644 index 687c873003..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1622.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1622.png deleted file mode 100644 index 1070fac2c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1623.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1623.png deleted file mode 100644 index a314a20b5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1624.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1624.png deleted file mode 100644 index def1a59f32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1625.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1625.png deleted file mode 100644 index fd5ac31f2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1626.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1626.png deleted file mode 100644 index 52fea1843c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1627.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1627.png deleted file mode 100644 index 6b0c9a41d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1628.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1628.png deleted file mode 100644 index 0bdb3eac56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1629.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1629.png deleted file mode 100644 index 9f817550f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1630.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1630.png deleted file mode 100644 index 4698fd0e3d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1631.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1631.png deleted file mode 100644 index a53b32424e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1632.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1632.png deleted file mode 100644 index 1062a27ad4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1633.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1633.png deleted file mode 100644 index ea85d37ab2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1634.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1634.png deleted file mode 100644 index fe5c04799a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1635.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1635.png deleted file mode 100644 index 712de4f336..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1636.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1636.png deleted file mode 100644 index b02ff8a212..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1637.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1637.png deleted file mode 100644 index f9e2297c70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1638.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1638.png deleted file mode 100644 index f9d66f7971..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1639.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1639.png deleted file mode 100644 index e68e5ec8d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1640.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1640.png deleted file mode 100644 index 739d83df4f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1641.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1641.png deleted file mode 100644 index 2aed7af017..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1642.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1642.png deleted file mode 100644 index 9e26224f5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1643.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1643.png deleted file mode 100644 index 07414f2fe2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1644.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1644.png deleted file mode 100644 index 770b8b1e73..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1645.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1645.png deleted file mode 100644 index 1062a27ad4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1646.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1646.png deleted file mode 100644 index 1d8994a121..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1647.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1647.png deleted file mode 100644 index b46c2f5701..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1648.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1648.png deleted file mode 100644 index a53b32424e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1649.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1649.png deleted file mode 100644 index bb9532c8cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1650.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1650.png deleted file mode 100644 index 05beae349e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1651.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1651.png deleted file mode 100644 index 798742c6c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1652.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1652.png deleted file mode 100644 index b5d8d2687c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1653.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1653.png deleted file mode 100644 index d1fd8d94c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1654.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1654.png deleted file mode 100644 index 64b6c339ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1655.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1655.png deleted file mode 100644 index a233f23e86..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1656.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1656.png deleted file mode 100644 index ec6048133b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1657.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1657.png deleted file mode 100644 index b85ed2cd4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1658.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1658.png deleted file mode 100644 index c3dbe1b663..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1659.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1659.png deleted file mode 100644 index f7c69cfff5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1660.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1660.png deleted file mode 100644 index 8dc647da85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1661.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1661.png deleted file mode 100644 index ef1e3244ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1662.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1662.png deleted file mode 100644 index 7e8fc296a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1663.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1663.png deleted file mode 100644 index 5fdcce54e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1664.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1664.png deleted file mode 100644 index 583112e6db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1665.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1665.png deleted file mode 100644 index 74dbde3fe6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1666.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1666.png deleted file mode 100644 index e45c574a4f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1667.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1667.png deleted file mode 100644 index 65d2d41c68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1668.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1668.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1670.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1670.png deleted file mode 100644 index 2aa411163a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1672.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1672.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1673.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1673.png deleted file mode 100644 index 07e8af00aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1674.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1674.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1675.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1675.png deleted file mode 100644 index 1d8994a121..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1676.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1676.png deleted file mode 100644 index 9f43bc8fc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1677.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1677.png deleted file mode 100644 index d1edeecaae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1678.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1678.png deleted file mode 100644 index 4dc4b3d195..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1679.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1679.png deleted file mode 100644 index 5bff04f911..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1680.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1680.png deleted file mode 100644 index 41d912aadd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1681.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1681.png deleted file mode 100644 index 54ccb0754c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1682.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1682.png deleted file mode 100644 index 7a9017bed0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1683.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1683.png deleted file mode 100644 index 0eaadccf3d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1684.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1684.png deleted file mode 100644 index b5ff22a1dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1685.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1685.png deleted file mode 100644 index b9d01a9776..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1686.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1686.png deleted file mode 100644 index b85ed2cd4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1687.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1687.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1688.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1688.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1689.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1689.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1690.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1690.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1691.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1691.png deleted file mode 100644 index dbf722ce99..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1692.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1692.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1693.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1693.png deleted file mode 100644 index 5cf583775d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1694.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1694.png deleted file mode 100644 index 376b509837..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1695.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1695.png deleted file mode 100644 index 8ac61ff168..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1696.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1696.png deleted file mode 100644 index ee998fa0f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1697.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1697.png deleted file mode 100644 index 87fbd1a19b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1698.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1698.png deleted file mode 100644 index b85ed2cd4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1699.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1699.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1700.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1700.png deleted file mode 100644 index 225c8a72e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1701.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1701.png deleted file mode 100644 index 6008c712a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1702.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1702.png deleted file mode 100644 index 378d8e61f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1703.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1703.png deleted file mode 100644 index 9f096298e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1704.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1704.png deleted file mode 100644 index b42bc573d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1705.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1705.png deleted file mode 100644 index faf33a4b79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1706.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1706.png deleted file mode 100644 index a53b32424e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1707.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1707.png deleted file mode 100644 index 097b70d4ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1708.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1708.png deleted file mode 100644 index 545a813eee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1709.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1709.png deleted file mode 100644 index b101a27650..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1710.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1710.png deleted file mode 100644 index bdf936417a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1711.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1711.png deleted file mode 100644 index 52ec604354..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1712.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1712.png deleted file mode 100644 index f15c0ee543..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1713.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1713.png deleted file mode 100644 index 35070a012f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1714.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1714.png deleted file mode 100644 index 088bd65f1e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1715.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1715.png deleted file mode 100644 index 4cf59f434a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1716.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1716.png deleted file mode 100644 index f0ac7e83c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1717.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1717.png deleted file mode 100644 index 8cc88a2606..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1718.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1718.png deleted file mode 100644 index bb251441ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1719.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1719.png deleted file mode 100644 index 02b63e7ed6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1720.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1720.png deleted file mode 100644 index 02b63e7ed6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1721.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1721.png deleted file mode 100644 index d4e969562f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1722.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1722.png deleted file mode 100644 index b2964ff4d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1723.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1723.png deleted file mode 100644 index 89fbe1913f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1724.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1724.png deleted file mode 100644 index da967d8127..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1725.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1725.png deleted file mode 100644 index cbad7be5d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1726.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1726.png deleted file mode 100644 index 8d79b754d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1727.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1727.png deleted file mode 100644 index 20e020b01e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1728.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1728.png deleted file mode 100644 index 425604ee37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1729.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1729.png deleted file mode 100644 index c6f52cb563..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1730.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1730.png deleted file mode 100644 index e3eb62c216..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1731.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1731.png deleted file mode 100644 index 760f94b827..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1732.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1732.png deleted file mode 100644 index 9a4c28b3ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1733.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1733.png deleted file mode 100644 index 427dda510f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1734.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1734.png deleted file mode 100644 index 078bbbbc94..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1735.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1735.png deleted file mode 100644 index 9c74952647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1740.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1740.png deleted file mode 100644 index 50619f2535..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1741.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1741.png deleted file mode 100644 index b165a87c7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1742.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1742.png deleted file mode 100644 index 9f5db9f420..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1743.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1743.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1744.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1744.png deleted file mode 100644 index 0a5431ac00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1745.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1745.png deleted file mode 100644 index 5ac6a5fb62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartChunk/1746.png b/front/public/images/small/TGregworks/tGregToolPartChunk/1746.png deleted file mode 100644 index 84755a2f5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartChunk/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1500.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1500.png deleted file mode 100644 index acf51a106f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1501.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1501.png deleted file mode 100644 index 2d40969fdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1502.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1502.png deleted file mode 100644 index cb9428f9e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1503.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1503.png deleted file mode 100644 index 5d4051ce67..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1504.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1504.png deleted file mode 100644 index e6077fc8f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1505.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1505.png deleted file mode 100644 index 230819617a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1506.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1506.png deleted file mode 100644 index 38bcf43ec5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1507.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1507.png deleted file mode 100644 index eef5da5113..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1508.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1508.png deleted file mode 100644 index bf44a43784..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1509.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1509.png deleted file mode 100644 index c473ab4e97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1510.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1510.png deleted file mode 100644 index 740e2050ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1511.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1511.png deleted file mode 100644 index bf44a43784..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1512.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1512.png deleted file mode 100644 index 0a05ed559a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1513.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1513.png deleted file mode 100644 index c0e3a939dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1514.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1514.png deleted file mode 100644 index 26d36d1787..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1515.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1515.png deleted file mode 100644 index 2c5016f466..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1516.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1516.png deleted file mode 100644 index 9498a9a833..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1517.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1517.png deleted file mode 100644 index f2a9eeda59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1518.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1518.png deleted file mode 100644 index e32f088c5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1519.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1519.png deleted file mode 100644 index 7d4efbe45c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1520.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1520.png deleted file mode 100644 index bb1f747a28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1521.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1521.png deleted file mode 100644 index 57d9e3dc3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1522.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1522.png deleted file mode 100644 index 28c65c9eb7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1523.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1523.png deleted file mode 100644 index 337363cca3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1524.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1524.png deleted file mode 100644 index 5c398c8eab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1525.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1525.png deleted file mode 100644 index 9a5459d3fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1526.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1526.png deleted file mode 100644 index 22cce5dc3d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1527.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1527.png deleted file mode 100644 index 692e51bcc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1528.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1528.png deleted file mode 100644 index f514cf4a65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1529.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1529.png deleted file mode 100644 index 36f5a7dfa9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1530.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1530.png deleted file mode 100644 index e01329b0c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1531.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1531.png deleted file mode 100644 index 2f4839aeae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1532.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1532.png deleted file mode 100644 index 8959a795a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1533.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1533.png deleted file mode 100644 index 8a15d3c728..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1534.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1534.png deleted file mode 100644 index 736689659a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1535.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1535.png deleted file mode 100644 index c7f508f24f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1536.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1536.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1537.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1537.png deleted file mode 100644 index c1bfc5cdab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1538.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1538.png deleted file mode 100644 index 03d8e5c391..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1539.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1539.png deleted file mode 100644 index 3d27092d2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1540.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1540.png deleted file mode 100644 index c6e5d5191e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1541.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1541.png deleted file mode 100644 index 07d6474551..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1542.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1542.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1543.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1543.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1544.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1544.png deleted file mode 100644 index fac22dc30a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1545.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1545.png deleted file mode 100644 index e3a2f8781a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1546.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1546.png deleted file mode 100644 index f1985b0399..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1547.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1547.png deleted file mode 100644 index 6e8b2ad6ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1548.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1548.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1549.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1549.png deleted file mode 100644 index 2312d28b05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1550.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1550.png deleted file mode 100644 index f7ce1c278f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1551.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1551.png deleted file mode 100644 index 83730a1e90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1553.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1553.png deleted file mode 100644 index 49beb7f3d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1554.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1554.png deleted file mode 100644 index b3910f8041..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1555.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1555.png deleted file mode 100644 index 744d27ba87..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1556.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1556.png deleted file mode 100644 index 26d36d1787..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1557.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1557.png deleted file mode 100644 index 26d36d1787..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1562.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1562.png deleted file mode 100644 index 1cce054dbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1563.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1563.png deleted file mode 100644 index 744d27ba87..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1564.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1564.png deleted file mode 100644 index 45383027a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1565.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1565.png deleted file mode 100644 index 2ef99bf736..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1566.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1566.png deleted file mode 100644 index b6dec48d1f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1567.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1567.png deleted file mode 100644 index 640072d661..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1568.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1568.png deleted file mode 100644 index c2d55d8b03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1570.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1570.png deleted file mode 100644 index 2adead18e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1571.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1571.png deleted file mode 100644 index 7a5643eb3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1572.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1572.png deleted file mode 100644 index 856fc63168..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1573.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1573.png deleted file mode 100644 index 27e993f91b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1574.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1574.png deleted file mode 100644 index 57d9e3dc3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1575.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1575.png deleted file mode 100644 index 6e8b2ad6ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1576.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1576.png deleted file mode 100644 index 6fb99f1fe5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1577.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1577.png deleted file mode 100644 index 231da63c2e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1578.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1578.png deleted file mode 100644 index 7f19c0a26b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1579.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1579.png deleted file mode 100644 index bf44a43784..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1582.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1582.png deleted file mode 100644 index 6c8f29e0fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1583.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1583.png deleted file mode 100644 index 039c41b706..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1584.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1584.png deleted file mode 100644 index 50a3e93122..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1585.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1585.png deleted file mode 100644 index 07c5aa17a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1586.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1586.png deleted file mode 100644 index 4f760ebb7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1587.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1587.png deleted file mode 100644 index a985c3aa7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1588.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1588.png deleted file mode 100644 index 744d27ba87..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1589.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1589.png deleted file mode 100644 index 10b9390a6f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1590.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1590.png deleted file mode 100644 index 8581eeab23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1591.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1591.png deleted file mode 100644 index df9076d034..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1592.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1592.png deleted file mode 100644 index a3fd1ce474..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1593.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1593.png deleted file mode 100644 index 5920e7ae0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1594.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1594.png deleted file mode 100644 index 6acac5f54c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1595.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1595.png deleted file mode 100644 index 8709fab663..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1596.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1596.png deleted file mode 100644 index 66c81f5ce0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1597.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1597.png deleted file mode 100644 index 5692fd782b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1598.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1598.png deleted file mode 100644 index 0fa148a410..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1599.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1599.png deleted file mode 100644 index b7644d20f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1600.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1600.png deleted file mode 100644 index eea760e9a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1601.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1601.png deleted file mode 100644 index 8855343fb7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1602.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1602.png deleted file mode 100644 index 06ff2e1249..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1603.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1603.png deleted file mode 100644 index c86e582678..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1604.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1604.png deleted file mode 100644 index 07cbf989be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1605.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1605.png deleted file mode 100644 index 6eed679180..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1606.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1606.png deleted file mode 100644 index 0bc85a68e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1607.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1607.png deleted file mode 100644 index 3f1d595feb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1608.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1608.png deleted file mode 100644 index 647153280b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1609.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1609.png deleted file mode 100644 index 57d9e3dc3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1610.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1610.png deleted file mode 100644 index 740e2050ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1611.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1611.png deleted file mode 100644 index 9b272db69f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1612.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1612.png deleted file mode 100644 index b598078f88..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1613.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1613.png deleted file mode 100644 index ce81116e28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1614.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1614.png deleted file mode 100644 index 0bc85a68e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1615.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1615.png deleted file mode 100644 index 03d8e5c391..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1616.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1616.png deleted file mode 100644 index 5dd7fc2107..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1617.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1617.png deleted file mode 100644 index 6eed679180..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1618.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1618.png deleted file mode 100644 index 4527823596..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1619.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1619.png deleted file mode 100644 index b454e9dab9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1620.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1620.png deleted file mode 100644 index 8581eeab23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1621.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1621.png deleted file mode 100644 index b1b3b29ed0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1622.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1622.png deleted file mode 100644 index 08ddaac1e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1623.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1623.png deleted file mode 100644 index 4089abf371..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1624.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1624.png deleted file mode 100644 index c4d125437e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1625.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1625.png deleted file mode 100644 index 811a24ae89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1626.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1626.png deleted file mode 100644 index ba77bff19f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1627.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1627.png deleted file mode 100644 index 8612423a6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1628.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1628.png deleted file mode 100644 index dd9c6bcf43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1629.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1629.png deleted file mode 100644 index 50be83e343..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1630.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1630.png deleted file mode 100644 index afb769082a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1631.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1631.png deleted file mode 100644 index 740e2050ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1632.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1632.png deleted file mode 100644 index 70769acde8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1633.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1633.png deleted file mode 100644 index e412dae389..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1634.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1634.png deleted file mode 100644 index 26cea8d9d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1635.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1635.png deleted file mode 100644 index 186360b503..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1636.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1636.png deleted file mode 100644 index a136cd1f68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1637.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1637.png deleted file mode 100644 index ebe537e50e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1638.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1638.png deleted file mode 100644 index b702eac7d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1639.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1639.png deleted file mode 100644 index 7a5643eb3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1640.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1640.png deleted file mode 100644 index 6b234ba2dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1641.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1641.png deleted file mode 100644 index f2f30295c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1642.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1642.png deleted file mode 100644 index 192d9e4336..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1643.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1643.png deleted file mode 100644 index 310dea57ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1644.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1644.png deleted file mode 100644 index fccedcaa75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1645.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1645.png deleted file mode 100644 index 70769acde8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1646.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1646.png deleted file mode 100644 index 0bc85a68e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1647.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1647.png deleted file mode 100644 index 26d36d1787..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1648.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1648.png deleted file mode 100644 index 740e2050ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1649.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1649.png deleted file mode 100644 index e92cb7aac0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1650.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1650.png deleted file mode 100644 index 9dfffc25aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1651.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1651.png deleted file mode 100644 index dd1ccadeda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1652.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1652.png deleted file mode 100644 index 7a86153df8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1653.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1653.png deleted file mode 100644 index bbaa307c60..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1654.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1654.png deleted file mode 100644 index 6936faf652..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1655.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1655.png deleted file mode 100644 index 6e7b0a1dad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1656.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1656.png deleted file mode 100644 index 3f93bfd6f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1657.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1657.png deleted file mode 100644 index 57d9e3dc3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1658.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1658.png deleted file mode 100644 index f0733c3ea7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1659.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1659.png deleted file mode 100644 index 70a20e0beb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1660.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1660.png deleted file mode 100644 index 5e904bdb76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1661.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1661.png deleted file mode 100644 index 889063dc02..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1662.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1662.png deleted file mode 100644 index 2d706353d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1663.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1663.png deleted file mode 100644 index 0a0da90d3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1664.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1664.png deleted file mode 100644 index cfbe80c3e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1665.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1665.png deleted file mode 100644 index a62cc6e809..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1666.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1666.png deleted file mode 100644 index 951a01d7f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1667.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1667.png deleted file mode 100644 index 911646ba2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1668.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1668.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1670.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1670.png deleted file mode 100644 index cb704763c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1672.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1672.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1673.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1673.png deleted file mode 100644 index 18680a8fa5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1674.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1674.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1675.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1675.png deleted file mode 100644 index 0bc85a68e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1676.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1676.png deleted file mode 100644 index 20ddd652b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1677.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1677.png deleted file mode 100644 index 33f28ec8ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1678.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1678.png deleted file mode 100644 index b92b33b328..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1679.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1679.png deleted file mode 100644 index 51506db54f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1680.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1680.png deleted file mode 100644 index fa58f8f391..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1681.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1681.png deleted file mode 100644 index e7e1d2690a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1682.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1682.png deleted file mode 100644 index c5168db61e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1683.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1683.png deleted file mode 100644 index 5de1dfb8ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1684.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1684.png deleted file mode 100644 index 2486f64603..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1685.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1685.png deleted file mode 100644 index b6168b90d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1686.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1686.png deleted file mode 100644 index 57d9e3dc3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1687.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1687.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1688.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1688.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1689.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1689.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1690.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1690.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1691.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1691.png deleted file mode 100644 index ab784cfdd3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1692.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1692.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1693.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1693.png deleted file mode 100644 index 1a4b03b7d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1694.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1694.png deleted file mode 100644 index ae3542ed2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1695.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1695.png deleted file mode 100644 index 1cec00d4fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1696.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1696.png deleted file mode 100644 index 47b9dc6781..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1697.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1697.png deleted file mode 100644 index 7adebd59a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1698.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1698.png deleted file mode 100644 index 57d9e3dc3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1699.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1699.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1700.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1700.png deleted file mode 100644 index 84ef22fdc4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1701.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1701.png deleted file mode 100644 index e4d41b8e93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1702.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1702.png deleted file mode 100644 index 23c96ae75f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1703.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1703.png deleted file mode 100644 index 83c378f8d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1704.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1704.png deleted file mode 100644 index ce04c16ddb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1705.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1705.png deleted file mode 100644 index 4ef913f688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1706.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1706.png deleted file mode 100644 index 740e2050ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1707.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1707.png deleted file mode 100644 index fee1074c4b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1708.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1708.png deleted file mode 100644 index e6077fc8f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1709.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1709.png deleted file mode 100644 index 98baf8746c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1710.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1710.png deleted file mode 100644 index ede0f8a626..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1711.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1711.png deleted file mode 100644 index 10080de8fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1712.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1712.png deleted file mode 100644 index c0b9ba47db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1713.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1713.png deleted file mode 100644 index 3b48a19369..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1714.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1714.png deleted file mode 100644 index 15c37f7079..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1715.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1715.png deleted file mode 100644 index 3c038efd8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1716.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1716.png deleted file mode 100644 index 0fa46dcc26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1717.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1717.png deleted file mode 100644 index 609d5cd3b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1718.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1718.png deleted file mode 100644 index 3f46060cb6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1719.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1719.png deleted file mode 100644 index dbe4ee97bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1720.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1720.png deleted file mode 100644 index dbe4ee97bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1721.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1721.png deleted file mode 100644 index 0a1c442f48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1722.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1722.png deleted file mode 100644 index c19ac4b55b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1723.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1723.png deleted file mode 100644 index c6097dbe65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1724.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1724.png deleted file mode 100644 index 5175d02c4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1725.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1725.png deleted file mode 100644 index 879dd088ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1726.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1726.png deleted file mode 100644 index 68ee3f2647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1727.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1727.png deleted file mode 100644 index a0e92ca222..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1728.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1728.png deleted file mode 100644 index b08be9eac7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1729.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1729.png deleted file mode 100644 index 482c1e51e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1730.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1730.png deleted file mode 100644 index c19fbdb4e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1731.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1731.png deleted file mode 100644 index 094fab3554..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1732.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1732.png deleted file mode 100644 index 1ec819d128..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1733.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1733.png deleted file mode 100644 index 5b40728f55..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1734.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1734.png deleted file mode 100644 index b982780465..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1735.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1735.png deleted file mode 100644 index 84d41a726e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1740.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1740.png deleted file mode 100644 index 78e6e0d315..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1741.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1741.png deleted file mode 100644 index 95b54c6d7b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1742.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1742.png deleted file mode 100644 index e4b4fe2732..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1743.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1743.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1744.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1744.png deleted file mode 100644 index 90b670f858..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1745.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1745.png deleted file mode 100644 index c50017d695..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1746.png b/front/public/images/small/TGregworks/tGregToolPartCrossbar/1746.png deleted file mode 100644 index 5d6b5259b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbar/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1500.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1500.png deleted file mode 100644 index 7bc1097b95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1501.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1501.png deleted file mode 100644 index e2fa577b84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1502.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1502.png deleted file mode 100644 index 8f27981197..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1503.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1503.png deleted file mode 100644 index 3070caa5ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1504.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1504.png deleted file mode 100644 index 551220b786..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1505.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1505.png deleted file mode 100644 index 49982377e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1506.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1506.png deleted file mode 100644 index 1dfe7ea21f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1507.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1507.png deleted file mode 100644 index 2d99f99e8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1508.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1508.png deleted file mode 100644 index c6692223b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1509.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1509.png deleted file mode 100644 index bf53d1d883..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1510.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1510.png deleted file mode 100644 index 36d63e8c5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1511.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1511.png deleted file mode 100644 index c6692223b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1512.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1512.png deleted file mode 100644 index f5415aa46b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1513.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1513.png deleted file mode 100644 index f719afe0df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1514.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1514.png deleted file mode 100644 index 995d5642ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1515.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1515.png deleted file mode 100644 index fa1ea3bbb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1516.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1516.png deleted file mode 100644 index 25a8913c38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1517.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1517.png deleted file mode 100644 index e44cc48efc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1518.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1518.png deleted file mode 100644 index a50e05fb19..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1519.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1519.png deleted file mode 100644 index dd07e77e98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1520.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1520.png deleted file mode 100644 index 765c305217..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1521.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1521.png deleted file mode 100644 index f6b7082692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1522.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1522.png deleted file mode 100644 index 3f84ab1d61..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1523.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1523.png deleted file mode 100644 index de5e969d5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1524.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1524.png deleted file mode 100644 index 7793b9820b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1525.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1525.png deleted file mode 100644 index 72a8623d9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1526.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1526.png deleted file mode 100644 index 5738c7aaba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1527.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1527.png deleted file mode 100644 index 16d7bce8a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1528.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1528.png deleted file mode 100644 index acb774c8c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1529.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1529.png deleted file mode 100644 index 097b891d54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1530.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1530.png deleted file mode 100644 index 89291eda25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1531.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1531.png deleted file mode 100644 index c1b0cf9cf1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1532.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1532.png deleted file mode 100644 index 629f12e0de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1533.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1533.png deleted file mode 100644 index 80e1d00a97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1534.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1534.png deleted file mode 100644 index 314498066e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1535.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1535.png deleted file mode 100644 index 549fc12c40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1536.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1536.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1537.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1537.png deleted file mode 100644 index 64600b5f81..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1538.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1538.png deleted file mode 100644 index d53af97085..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1539.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1539.png deleted file mode 100644 index 85f149f91e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1540.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1540.png deleted file mode 100644 index 915f80ffa1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1541.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1541.png deleted file mode 100644 index 304c9f1a98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1542.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1542.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1543.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1543.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1544.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1544.png deleted file mode 100644 index 69f0025044..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1545.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1545.png deleted file mode 100644 index a21e41b97c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1546.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1546.png deleted file mode 100644 index 8591e489a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1547.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1547.png deleted file mode 100644 index 342f71f8be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1548.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1548.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1549.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1549.png deleted file mode 100644 index caab15dbc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1550.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1550.png deleted file mode 100644 index 2067c4d24c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1551.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1551.png deleted file mode 100644 index 981458442a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1553.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1553.png deleted file mode 100644 index d05dd97b59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1554.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1554.png deleted file mode 100644 index 25aec96bed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1555.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1555.png deleted file mode 100644 index e5cf4235c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1556.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1556.png deleted file mode 100644 index 995d5642ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1557.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1557.png deleted file mode 100644 index 995d5642ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1562.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1562.png deleted file mode 100644 index c1ce37c235..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1563.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1563.png deleted file mode 100644 index e5cf4235c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1564.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1564.png deleted file mode 100644 index 30a32d4b31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1565.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1565.png deleted file mode 100644 index 29a18aba80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1566.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1566.png deleted file mode 100644 index 228b4b6aab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1567.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1567.png deleted file mode 100644 index ab9cc8eeb3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1568.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1568.png deleted file mode 100644 index 30942793f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1570.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1570.png deleted file mode 100644 index 304c16baa1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1571.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1571.png deleted file mode 100644 index 8e9ed40f79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1572.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1572.png deleted file mode 100644 index 643874dcec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1573.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1573.png deleted file mode 100644 index a1b88f0fb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1574.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1574.png deleted file mode 100644 index f6b7082692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1575.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1575.png deleted file mode 100644 index 342f71f8be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1576.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1576.png deleted file mode 100644 index d0c6fae2b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1577.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1577.png deleted file mode 100644 index c556fa6dcf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1578.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1578.png deleted file mode 100644 index 08abf35316..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1579.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1579.png deleted file mode 100644 index c6692223b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1582.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1582.png deleted file mode 100644 index ab6b9c633e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1583.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1583.png deleted file mode 100644 index e1a1bf91d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1584.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1584.png deleted file mode 100644 index 730c9ce856..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1585.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1585.png deleted file mode 100644 index 12c0264eaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1586.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1586.png deleted file mode 100644 index 2ca2994122..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1587.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1587.png deleted file mode 100644 index 5e53ab7e36..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1588.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1588.png deleted file mode 100644 index e5cf4235c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1589.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1589.png deleted file mode 100644 index 939f11442d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1590.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1590.png deleted file mode 100644 index 7d6651254b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1591.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1591.png deleted file mode 100644 index 67cbe77f4e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1592.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1592.png deleted file mode 100644 index 4b89c47af2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1593.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1593.png deleted file mode 100644 index 5aade1f8ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1594.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1594.png deleted file mode 100644 index c7f3668c26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1595.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1595.png deleted file mode 100644 index 88c8823868..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1596.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1596.png deleted file mode 100644 index eaa54162bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1597.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1597.png deleted file mode 100644 index ed8a059a09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1598.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1598.png deleted file mode 100644 index d62659fb47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1599.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1599.png deleted file mode 100644 index 2d438fd387..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1600.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1600.png deleted file mode 100644 index e3de77c8c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1601.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1601.png deleted file mode 100644 index d7f4fb4721..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1602.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1602.png deleted file mode 100644 index 94524c4151..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1603.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1603.png deleted file mode 100644 index e1b751d20e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1604.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1604.png deleted file mode 100644 index 1733f04da0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1605.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1605.png deleted file mode 100644 index 790ff32f9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1606.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1606.png deleted file mode 100644 index 2fcdf6acce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1607.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1607.png deleted file mode 100644 index 3767fb4cdb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1608.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1608.png deleted file mode 100644 index a2609bf08b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1609.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1609.png deleted file mode 100644 index f6b7082692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1610.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1610.png deleted file mode 100644 index 36d63e8c5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1611.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1611.png deleted file mode 100644 index 8c2091de90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1612.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1612.png deleted file mode 100644 index 1c1fc84b34..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1613.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1613.png deleted file mode 100644 index 11c7b8f6f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1614.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1614.png deleted file mode 100644 index 2fcdf6acce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1615.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1615.png deleted file mode 100644 index d53af97085..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1616.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1616.png deleted file mode 100644 index 16f3edad6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1617.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1617.png deleted file mode 100644 index 790ff32f9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1618.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1618.png deleted file mode 100644 index d16bae41cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1619.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1619.png deleted file mode 100644 index bad80cb093..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1620.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1620.png deleted file mode 100644 index 7d6651254b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1621.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1621.png deleted file mode 100644 index fca91ddeee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1622.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1622.png deleted file mode 100644 index 7cd8f7ec25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1623.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1623.png deleted file mode 100644 index 5b676e9c91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1624.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1624.png deleted file mode 100644 index f838c2a189..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1625.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1625.png deleted file mode 100644 index e4949595c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1626.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1626.png deleted file mode 100644 index 5f234b1077..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1627.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1627.png deleted file mode 100644 index 0c4d3c8a3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1628.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1628.png deleted file mode 100644 index 54a5f7f324..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1629.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1629.png deleted file mode 100644 index 9c82bc27c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1630.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1630.png deleted file mode 100644 index de813218cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1631.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1631.png deleted file mode 100644 index 36d63e8c5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1632.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1632.png deleted file mode 100644 index a992ce30dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1633.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1633.png deleted file mode 100644 index b3f9614628..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1634.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1634.png deleted file mode 100644 index 8a14a00742..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1635.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1635.png deleted file mode 100644 index a9d5df4f99..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1636.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1636.png deleted file mode 100644 index 66fe5819a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1637.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1637.png deleted file mode 100644 index ef70076b12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1638.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1638.png deleted file mode 100644 index bd6b9dbf7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1639.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1639.png deleted file mode 100644 index 8e9ed40f79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1640.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1640.png deleted file mode 100644 index 1846dbc97c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1641.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1641.png deleted file mode 100644 index 4fc79cac8b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1642.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1642.png deleted file mode 100644 index 4579c0ddac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1643.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1643.png deleted file mode 100644 index af2f192bcf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1644.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1644.png deleted file mode 100644 index 595b3064a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1645.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1645.png deleted file mode 100644 index a992ce30dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1646.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1646.png deleted file mode 100644 index 2fcdf6acce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1647.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1647.png deleted file mode 100644 index 995d5642ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1648.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1648.png deleted file mode 100644 index 36d63e8c5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1649.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1649.png deleted file mode 100644 index 3ad04b247b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1650.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1650.png deleted file mode 100644 index 1e8fe2761e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1651.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1651.png deleted file mode 100644 index 1c71c92eb7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1652.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1652.png deleted file mode 100644 index 369f8f1959..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1653.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1653.png deleted file mode 100644 index d7d9bd9b6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1654.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1654.png deleted file mode 100644 index 0d0b6c6999..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1655.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1655.png deleted file mode 100644 index b9b5f37751..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1656.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1656.png deleted file mode 100644 index b551d8080b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1657.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1657.png deleted file mode 100644 index f6b7082692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1658.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1658.png deleted file mode 100644 index 2f998a9df1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1659.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1659.png deleted file mode 100644 index e43749a23e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1660.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1660.png deleted file mode 100644 index 5c8c8960d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1661.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1661.png deleted file mode 100644 index 7db02502a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1662.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1662.png deleted file mode 100644 index 6b1046fa0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1663.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1663.png deleted file mode 100644 index e3e8e14845..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1664.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1664.png deleted file mode 100644 index 07eb18458d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1665.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1665.png deleted file mode 100644 index ecb66c0597..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1666.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1666.png deleted file mode 100644 index 7d06f5ab71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1667.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1667.png deleted file mode 100644 index 18ce3a1851..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1668.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1668.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1670.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1670.png deleted file mode 100644 index 74431d814b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1672.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1672.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1673.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1673.png deleted file mode 100644 index 3f47e08044..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1674.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1674.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1675.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1675.png deleted file mode 100644 index 2fcdf6acce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1676.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1676.png deleted file mode 100644 index 1320214860..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1677.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1677.png deleted file mode 100644 index a56ef8257e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1678.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1678.png deleted file mode 100644 index c7368b6c4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1679.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1679.png deleted file mode 100644 index fc0279aaa9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1680.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1680.png deleted file mode 100644 index c65687da2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1681.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1681.png deleted file mode 100644 index f035247587..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1682.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1682.png deleted file mode 100644 index ff51aea077..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1683.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1683.png deleted file mode 100644 index f0e03ef594..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1684.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1684.png deleted file mode 100644 index 025c32d4ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1685.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1685.png deleted file mode 100644 index 948a35036b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1686.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1686.png deleted file mode 100644 index f6b7082692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1687.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1687.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1688.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1688.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1689.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1689.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1690.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1690.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1691.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1691.png deleted file mode 100644 index 5ad6f7e6ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1692.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1692.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1693.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1693.png deleted file mode 100644 index 36911c62da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1694.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1694.png deleted file mode 100644 index 73aa9ca1e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1695.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1695.png deleted file mode 100644 index a9399cdca8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1696.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1696.png deleted file mode 100644 index 75e03cecc7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1697.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1697.png deleted file mode 100644 index 140b54ed22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1698.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1698.png deleted file mode 100644 index f6b7082692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1699.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1699.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1700.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1700.png deleted file mode 100644 index ea818125eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1701.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1701.png deleted file mode 100644 index add93ff085..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1702.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1702.png deleted file mode 100644 index b2c47d99bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1703.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1703.png deleted file mode 100644 index 7464489c5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1704.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1704.png deleted file mode 100644 index 58a93b1b32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1705.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1705.png deleted file mode 100644 index 8bba40d51c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1706.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1706.png deleted file mode 100644 index 36d63e8c5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1707.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1707.png deleted file mode 100644 index 866ab1aa05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1708.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1708.png deleted file mode 100644 index 551220b786..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1709.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1709.png deleted file mode 100644 index c8fd92ae2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1710.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1710.png deleted file mode 100644 index a068582fca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1711.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1711.png deleted file mode 100644 index 00e7713f54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1712.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1712.png deleted file mode 100644 index d05d305bf0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1713.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1713.png deleted file mode 100644 index e8ec674687..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1714.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1714.png deleted file mode 100644 index ac3233df80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1715.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1715.png deleted file mode 100644 index a54fb3fd09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1716.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1716.png deleted file mode 100644 index e62970e644..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1717.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1717.png deleted file mode 100644 index db0b047859..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1718.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1718.png deleted file mode 100644 index b57f104cc9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1719.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1719.png deleted file mode 100644 index 0dc19af1ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1720.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1720.png deleted file mode 100644 index 0dc19af1ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1721.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1721.png deleted file mode 100644 index d99690eeef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1722.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1722.png deleted file mode 100644 index 4847133cf4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1723.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1723.png deleted file mode 100644 index 470de8cfaa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1724.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1724.png deleted file mode 100644 index d0986380aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1725.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1725.png deleted file mode 100644 index ad4126385b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1726.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1726.png deleted file mode 100644 index 8ec0f61d07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1727.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1727.png deleted file mode 100644 index 934421b190..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1728.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1728.png deleted file mode 100644 index 4e0492ccc4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1729.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1729.png deleted file mode 100644 index aca011833c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1730.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1730.png deleted file mode 100644 index 4525d9234c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1731.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1731.png deleted file mode 100644 index 9cfd1c6b8b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1732.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1732.png deleted file mode 100644 index 2bb9b7c7af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1733.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1733.png deleted file mode 100644 index e57af656de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1734.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1734.png deleted file mode 100644 index b153b0df5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1735.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1735.png deleted file mode 100644 index 6384becca5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1740.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1740.png deleted file mode 100644 index bf542cc30f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1741.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1741.png deleted file mode 100644 index f3bce00f04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1742.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1742.png deleted file mode 100644 index 328043f830..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1743.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1743.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1744.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1744.png deleted file mode 100644 index 7fa4ab5292..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1745.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1745.png deleted file mode 100644 index 77f479c6b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1746.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1746.png deleted file mode 100644 index cbd23f9edd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowBody/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1500.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1500.png deleted file mode 100644 index 803378f9c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1501.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1501.png deleted file mode 100644 index 6595b9af74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1502.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1502.png deleted file mode 100644 index ee46a28940..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1503.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1503.png deleted file mode 100644 index ae83e5dc03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1504.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1504.png deleted file mode 100644 index 06279c18d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1505.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1505.png deleted file mode 100644 index e8f68c24a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1506.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1506.png deleted file mode 100644 index 8f4afd5bd2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1507.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1507.png deleted file mode 100644 index a87a0b9e1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1508.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1508.png deleted file mode 100644 index e59188680c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1509.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1509.png deleted file mode 100644 index 8fde9f7b90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1510.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1510.png deleted file mode 100644 index 009aad82f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1511.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1511.png deleted file mode 100644 index e59188680c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1512.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1512.png deleted file mode 100644 index 20a91d180d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1513.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1513.png deleted file mode 100644 index c0d355efa9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1514.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1514.png deleted file mode 100644 index 6d0be73974..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1515.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1515.png deleted file mode 100644 index 64c9368057..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1516.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1516.png deleted file mode 100644 index 56b05589ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1517.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1517.png deleted file mode 100644 index a0779a5099..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1518.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1518.png deleted file mode 100644 index e49cd9cb9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1519.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1519.png deleted file mode 100644 index 2f7abd5a74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1520.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1520.png deleted file mode 100644 index 20f26cb411..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1521.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1521.png deleted file mode 100644 index 06b80fe8fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1522.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1522.png deleted file mode 100644 index ae889b519f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1523.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1523.png deleted file mode 100644 index 0244971dc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1524.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1524.png deleted file mode 100644 index db4a124df4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1525.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1525.png deleted file mode 100644 index 85568683ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1526.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1526.png deleted file mode 100644 index a61e42033e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1527.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1527.png deleted file mode 100644 index 21832a18a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1528.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1528.png deleted file mode 100644 index 64cbe28d3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1529.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1529.png deleted file mode 100644 index 601350df09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1530.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1530.png deleted file mode 100644 index 53119cf951..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1531.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1531.png deleted file mode 100644 index f050345932..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1532.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1532.png deleted file mode 100644 index 323bb79df6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1533.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1533.png deleted file mode 100644 index 0bd245fa83..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1534.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1534.png deleted file mode 100644 index 4814de8a18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1535.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1535.png deleted file mode 100644 index 982b84b51a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1536.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1536.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1537.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1537.png deleted file mode 100644 index 47dd5287bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1538.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1538.png deleted file mode 100644 index 1ea12f0e62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1539.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1539.png deleted file mode 100644 index 6619708236..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1540.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1540.png deleted file mode 100644 index 949c6da79e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1541.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1541.png deleted file mode 100644 index 0438e78097..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1542.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1542.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1543.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1543.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1544.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1544.png deleted file mode 100644 index d45d48b3a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1545.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1545.png deleted file mode 100644 index 82642ed9de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1546.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1546.png deleted file mode 100644 index 25538692ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1547.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1547.png deleted file mode 100644 index a4a4a3d4ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1548.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1548.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1549.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1549.png deleted file mode 100644 index ffaa9d36a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1550.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1550.png deleted file mode 100644 index 2cdecc8d84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1551.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1551.png deleted file mode 100644 index 5d1e080455..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1553.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1553.png deleted file mode 100644 index 3861f347f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1554.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1554.png deleted file mode 100644 index 5705a1150a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1555.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1555.png deleted file mode 100644 index 1d8af3a433..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1556.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1556.png deleted file mode 100644 index 6d0be73974..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1557.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1557.png deleted file mode 100644 index 6d0be73974..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1562.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1562.png deleted file mode 100644 index 0bb477419b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1563.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1563.png deleted file mode 100644 index 1d8af3a433..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1564.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1564.png deleted file mode 100644 index 6bb8e75859..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1565.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1565.png deleted file mode 100644 index d70e14b7e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1566.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1566.png deleted file mode 100644 index ca1448d2db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1567.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1567.png deleted file mode 100644 index bee0c67d22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1568.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1568.png deleted file mode 100644 index 99307a9dc8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1570.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1570.png deleted file mode 100644 index fca8f4655e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1571.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1571.png deleted file mode 100644 index 57775d2174..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1572.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1572.png deleted file mode 100644 index fde616166c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1573.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1573.png deleted file mode 100644 index 61ac7e4163..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1574.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1574.png deleted file mode 100644 index 06b80fe8fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1575.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1575.png deleted file mode 100644 index a4a4a3d4ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1576.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1576.png deleted file mode 100644 index dcd19cef34..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1577.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1577.png deleted file mode 100644 index 7bb3d32039..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1578.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1578.png deleted file mode 100644 index d9df8cb8a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1579.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1579.png deleted file mode 100644 index e59188680c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1582.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1582.png deleted file mode 100644 index c42f25d141..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1583.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1583.png deleted file mode 100644 index fcd3f1075c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1584.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1584.png deleted file mode 100644 index 866f1aeb93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1585.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1585.png deleted file mode 100644 index 65d80814d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1586.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1586.png deleted file mode 100644 index 8395e6e885..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1587.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1587.png deleted file mode 100644 index 21bc871cd0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1588.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1588.png deleted file mode 100644 index 1d8af3a433..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1589.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1589.png deleted file mode 100644 index 553cdb4830..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1590.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1590.png deleted file mode 100644 index dce24da163..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1591.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1591.png deleted file mode 100644 index 49b5ed6bf8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1592.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1592.png deleted file mode 100644 index 4fdafe0128..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1593.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1593.png deleted file mode 100644 index 7c5d5911cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1594.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1594.png deleted file mode 100644 index 946490c138..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1595.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1595.png deleted file mode 100644 index 6611be296b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1596.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1596.png deleted file mode 100644 index 1a8023fffc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1597.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1597.png deleted file mode 100644 index b8c4e16f74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1598.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1598.png deleted file mode 100644 index b905d17929..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1599.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1599.png deleted file mode 100644 index 76407ff3cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1600.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1600.png deleted file mode 100644 index dc5068d1d0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1601.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1601.png deleted file mode 100644 index 91e16f1cf9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1602.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1602.png deleted file mode 100644 index 5e82fef5fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1603.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1603.png deleted file mode 100644 index 119b46d43f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1604.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1604.png deleted file mode 100644 index 18b28c20d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1605.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1605.png deleted file mode 100644 index d65797aceb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1606.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1606.png deleted file mode 100644 index 180115dae9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1607.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1607.png deleted file mode 100644 index e12bef5953..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1608.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1608.png deleted file mode 100644 index c2051b82fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1609.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1609.png deleted file mode 100644 index 06b80fe8fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1610.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1610.png deleted file mode 100644 index 009aad82f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1611.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1611.png deleted file mode 100644 index 5a45665b53..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1612.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1612.png deleted file mode 100644 index 3313248f82..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1613.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1613.png deleted file mode 100644 index 29b7ad3585..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1614.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1614.png deleted file mode 100644 index 180115dae9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1615.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1615.png deleted file mode 100644 index 1ea12f0e62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1616.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1616.png deleted file mode 100644 index 3685d28924..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1617.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1617.png deleted file mode 100644 index d65797aceb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1618.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1618.png deleted file mode 100644 index 9e55738827..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1619.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1619.png deleted file mode 100644 index 46cc77433b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1620.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1620.png deleted file mode 100644 index dce24da163..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1621.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1621.png deleted file mode 100644 index 25ff4f568a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1622.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1622.png deleted file mode 100644 index 8f11cc9c77..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1623.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1623.png deleted file mode 100644 index 97dcb57d7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1624.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1624.png deleted file mode 100644 index 0d27f1c46e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1625.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1625.png deleted file mode 100644 index 5d9c36800a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1626.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1626.png deleted file mode 100644 index 932eb267a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1627.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1627.png deleted file mode 100644 index 85e23f5a30..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1628.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1628.png deleted file mode 100644 index 2b5f0ae1da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1629.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1629.png deleted file mode 100644 index 2c290f46eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1630.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1630.png deleted file mode 100644 index d0849073ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1631.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1631.png deleted file mode 100644 index 009aad82f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1632.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1632.png deleted file mode 100644 index ae74a3f873..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1633.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1633.png deleted file mode 100644 index 115516c02f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1634.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1634.png deleted file mode 100644 index 4cd6159c2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1635.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1635.png deleted file mode 100644 index 6456aad5b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1636.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1636.png deleted file mode 100644 index 02d3b5fd66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1637.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1637.png deleted file mode 100644 index 1faefcd59f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1638.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1638.png deleted file mode 100644 index 701d4868c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1639.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1639.png deleted file mode 100644 index 57775d2174..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1640.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1640.png deleted file mode 100644 index 80d685be07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1641.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1641.png deleted file mode 100644 index 6a6b765a63..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1642.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1642.png deleted file mode 100644 index 9fbffb9700..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1643.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1643.png deleted file mode 100644 index 1151576872..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1644.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1644.png deleted file mode 100644 index 350aded09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1645.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1645.png deleted file mode 100644 index ae74a3f873..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1646.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1646.png deleted file mode 100644 index 180115dae9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1647.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1647.png deleted file mode 100644 index 6d0be73974..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1648.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1648.png deleted file mode 100644 index 009aad82f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1649.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1649.png deleted file mode 100644 index f09fd9cf9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1650.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1650.png deleted file mode 100644 index e262aa7b04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1651.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1651.png deleted file mode 100644 index 32c4fae7f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1652.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1652.png deleted file mode 100644 index d8a7c20c37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1653.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1653.png deleted file mode 100644 index 7c4721453b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1654.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1654.png deleted file mode 100644 index 53ba7ee1c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1655.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1655.png deleted file mode 100644 index 64c40a50a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1656.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1656.png deleted file mode 100644 index dfa6e91e34..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1657.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1657.png deleted file mode 100644 index 06b80fe8fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1658.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1658.png deleted file mode 100644 index 91c56a4ddd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1659.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1659.png deleted file mode 100644 index 9da14a1fa0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1660.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1660.png deleted file mode 100644 index 32bc5f1097..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1661.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1661.png deleted file mode 100644 index 3b288046ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1662.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1662.png deleted file mode 100644 index 8b22623270..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1663.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1663.png deleted file mode 100644 index 138d3a8dc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1664.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1664.png deleted file mode 100644 index 53830c57ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1665.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1665.png deleted file mode 100644 index bf5f70ff2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1666.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1666.png deleted file mode 100644 index 1c20d541ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1667.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1667.png deleted file mode 100644 index 24d9336e42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1668.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1668.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1670.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1670.png deleted file mode 100644 index c1012ad140..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1672.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1672.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1673.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1673.png deleted file mode 100644 index 75005dfc18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1674.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1674.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1675.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1675.png deleted file mode 100644 index 180115dae9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1676.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1676.png deleted file mode 100644 index 6dd7b93581..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1677.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1677.png deleted file mode 100644 index ee48ddcc61..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1678.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1678.png deleted file mode 100644 index fd33782db6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1679.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1679.png deleted file mode 100644 index d6a3ada925..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1680.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1680.png deleted file mode 100644 index 82e005ef22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1681.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1681.png deleted file mode 100644 index 4b0cb4fbd8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1682.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1682.png deleted file mode 100644 index c079b1126c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1683.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1683.png deleted file mode 100644 index 559ac83fea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1684.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1684.png deleted file mode 100644 index acf2badbbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1685.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1685.png deleted file mode 100644 index ccd8bdb2cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1686.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1686.png deleted file mode 100644 index 06b80fe8fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1687.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1687.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1688.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1688.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1689.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1689.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1690.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1690.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1691.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1691.png deleted file mode 100644 index 4988fcb7d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1692.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1692.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1693.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1693.png deleted file mode 100644 index 507723ad7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1694.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1694.png deleted file mode 100644 index c9060d2794..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1695.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1695.png deleted file mode 100644 index cdac6f6522..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1696.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1696.png deleted file mode 100644 index 85fb86398a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1697.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1697.png deleted file mode 100644 index 6710db5a2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1698.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1698.png deleted file mode 100644 index 06b80fe8fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1699.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1699.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1700.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1700.png deleted file mode 100644 index f612d3295c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1701.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1701.png deleted file mode 100644 index 575e607291..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1702.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1702.png deleted file mode 100644 index 38342ba4f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1703.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1703.png deleted file mode 100644 index 3d5cc551d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1704.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1704.png deleted file mode 100644 index 0d139a2e9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1705.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1705.png deleted file mode 100644 index de162464c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1706.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1706.png deleted file mode 100644 index 009aad82f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1707.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1707.png deleted file mode 100644 index 2ed53dc1fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1708.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1708.png deleted file mode 100644 index 06279c18d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1709.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1709.png deleted file mode 100644 index 8b765788c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1710.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1710.png deleted file mode 100644 index daaaf872a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1711.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1711.png deleted file mode 100644 index c82fd59e80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1712.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1712.png deleted file mode 100644 index a8cec9366d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1713.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1713.png deleted file mode 100644 index 989e9ef844..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1714.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1714.png deleted file mode 100644 index 3078814ce6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1715.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1715.png deleted file mode 100644 index bae56e71ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1716.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1716.png deleted file mode 100644 index 66db4b422f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1717.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1717.png deleted file mode 100644 index f3a6784574..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1718.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1718.png deleted file mode 100644 index 10bf538480..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1719.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1719.png deleted file mode 100644 index c4435afa1c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1720.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1720.png deleted file mode 100644 index c4435afa1c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1721.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1721.png deleted file mode 100644 index c540043b6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1722.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1722.png deleted file mode 100644 index 815fa8a89d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1723.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1723.png deleted file mode 100644 index bab4b5bff7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1724.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1724.png deleted file mode 100644 index e9ee633d03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1725.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1725.png deleted file mode 100644 index 0e1d2a1f66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1726.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1726.png deleted file mode 100644 index b0115480f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1727.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1727.png deleted file mode 100644 index 0699145e35..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1728.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1728.png deleted file mode 100644 index 4869943cff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1729.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1729.png deleted file mode 100644 index dfee14b4ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1730.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1730.png deleted file mode 100644 index b1eb884667..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1731.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1731.png deleted file mode 100644 index 15b53d6246..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1732.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1732.png deleted file mode 100644 index 08227b4f5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1733.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1733.png deleted file mode 100644 index 3f13d847d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1734.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1734.png deleted file mode 100644 index 68c318616f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1735.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1735.png deleted file mode 100644 index 3970c38106..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1740.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1740.png deleted file mode 100644 index 4bea72cfd2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1741.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1741.png deleted file mode 100644 index 4bbbabe5f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1742.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1742.png deleted file mode 100644 index 6a31504f93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1743.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1743.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1744.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1744.png deleted file mode 100644 index ce840fb289..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1745.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1745.png deleted file mode 100644 index 8bdc417069..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1746.png b/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1746.png deleted file mode 100644 index a58bcd4cd8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartCrossbowLimb/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1500.png deleted file mode 100644 index 1f3c03f8fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1501.png deleted file mode 100644 index 6d5afecd16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1502.png deleted file mode 100644 index 057884023c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1503.png deleted file mode 100644 index 0c9e1b4d7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1504.png deleted file mode 100644 index d062405988..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1505.png deleted file mode 100644 index 4894a0082d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1506.png deleted file mode 100644 index f824da0b85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1507.png deleted file mode 100644 index 9a9f58e098..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1508.png deleted file mode 100644 index c0665de929..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1509.png deleted file mode 100644 index 6dbcb87f16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1510.png deleted file mode 100644 index b649fa6165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1511.png deleted file mode 100644 index c0665de929..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1512.png deleted file mode 100644 index 9eeec12794..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1513.png deleted file mode 100644 index 4cc15ec198..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1514.png deleted file mode 100644 index 6c6524922f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1515.png deleted file mode 100644 index bcf25f444b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1516.png deleted file mode 100644 index 9148ec71c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1517.png deleted file mode 100644 index b722cec63d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1518.png deleted file mode 100644 index 9678cd0f28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1519.png deleted file mode 100644 index 6fd19e93bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1520.png deleted file mode 100644 index 69cdc6ab3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1521.png deleted file mode 100644 index 9aa976a1e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1522.png deleted file mode 100644 index 41f47b8e8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1523.png deleted file mode 100644 index 192aacd434..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1524.png deleted file mode 100644 index 3f07f6fa7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1525.png deleted file mode 100644 index 4b46cb57c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1526.png deleted file mode 100644 index d1a9a5fad7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1527.png deleted file mode 100644 index bcf3860447..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1528.png deleted file mode 100644 index ac2c16f1ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1529.png deleted file mode 100644 index 7180d7d4ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1530.png deleted file mode 100644 index e3c6aab6e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1531.png deleted file mode 100644 index 4744a5a936..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1532.png deleted file mode 100644 index ff1c4ce3b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1533.png deleted file mode 100644 index 9911e56b39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1534.png deleted file mode 100644 index a002687d2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1535.png deleted file mode 100644 index 779df265b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1536.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1537.png deleted file mode 100644 index 1645535024..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1538.png deleted file mode 100644 index dd23c03166..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1539.png deleted file mode 100644 index 3700f53fa4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1540.png deleted file mode 100644 index 943171a54b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1541.png deleted file mode 100644 index e90da6652d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1542.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1543.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1544.png deleted file mode 100644 index a9adccf842..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1545.png deleted file mode 100644 index 10cf20f627..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1546.png deleted file mode 100644 index 6c5f7341b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1547.png deleted file mode 100644 index fe1b3c5523..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1548.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1549.png deleted file mode 100644 index 5f4cc7e614..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1550.png deleted file mode 100644 index 0bdbc0d1f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1551.png deleted file mode 100644 index 99cdd06288..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1553.png deleted file mode 100644 index 06978268f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1554.png deleted file mode 100644 index d877598752..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1555.png deleted file mode 100644 index df7b27b03c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1556.png deleted file mode 100644 index 6c6524922f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1557.png deleted file mode 100644 index 6c6524922f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1562.png deleted file mode 100644 index 874ca8ba6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1563.png deleted file mode 100644 index df7b27b03c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1564.png deleted file mode 100644 index 4da5fb905d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1565.png deleted file mode 100644 index d709956fe9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1566.png deleted file mode 100644 index fe815add2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1567.png deleted file mode 100644 index 06f16d9f23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1568.png deleted file mode 100644 index 6af0535fc1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1570.png deleted file mode 100644 index eed749ab58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1571.png deleted file mode 100644 index 53d3831af1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1572.png deleted file mode 100644 index 937fb2e1c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1573.png deleted file mode 100644 index bafda3e37e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1574.png deleted file mode 100644 index 9aa976a1e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1575.png deleted file mode 100644 index fe1b3c5523..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1576.png deleted file mode 100644 index 280195cb47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1577.png deleted file mode 100644 index f2c89a99e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1578.png deleted file mode 100644 index a290703a50..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1579.png deleted file mode 100644 index c0665de929..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1582.png deleted file mode 100644 index 04a715ffb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1583.png deleted file mode 100644 index e4db38a654..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1584.png deleted file mode 100644 index 7013c9a528..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1585.png deleted file mode 100644 index 95c03caf98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1586.png deleted file mode 100644 index 6576bd7403..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1587.png deleted file mode 100644 index c7597cf178..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1588.png deleted file mode 100644 index df7b27b03c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1589.png deleted file mode 100644 index 6f9270b3c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1590.png deleted file mode 100644 index eed6fb41ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1591.png deleted file mode 100644 index db98ae6262..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1592.png deleted file mode 100644 index 889cc9754a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1593.png deleted file mode 100644 index a85348a162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1594.png deleted file mode 100644 index c8be953c5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1595.png deleted file mode 100644 index 6e29220271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1596.png deleted file mode 100644 index 118efbfb42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1597.png deleted file mode 100644 index c2c4fa95ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1598.png deleted file mode 100644 index 16908f9124..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1599.png deleted file mode 100644 index 759552a71a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1600.png deleted file mode 100644 index 676c1f87ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1601.png deleted file mode 100644 index e6641f5441..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1602.png deleted file mode 100644 index 5e558d95a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1603.png deleted file mode 100644 index 945242f009..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1604.png deleted file mode 100644 index 3d49a1012c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1605.png deleted file mode 100644 index 887c41b412..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1606.png deleted file mode 100644 index 8fde32f175..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1607.png deleted file mode 100644 index 65eabed201..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1608.png deleted file mode 100644 index 8c6f7f66d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1609.png deleted file mode 100644 index 9aa976a1e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1610.png deleted file mode 100644 index b649fa6165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1611.png deleted file mode 100644 index c2cd262c01..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1612.png deleted file mode 100644 index b3385e75ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1613.png deleted file mode 100644 index bd9dd59833..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1614.png deleted file mode 100644 index 8fde32f175..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1615.png deleted file mode 100644 index dd23c03166..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1616.png deleted file mode 100644 index 7b3a90ece6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1617.png deleted file mode 100644 index 887c41b412..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1618.png deleted file mode 100644 index c7bc16ec05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1619.png deleted file mode 100644 index 04e9f43db8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1620.png deleted file mode 100644 index eed6fb41ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1621.png deleted file mode 100644 index a647d44a05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1622.png deleted file mode 100644 index eefd31c38e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1623.png deleted file mode 100644 index 69e28685ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1624.png deleted file mode 100644 index 59f715b58b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1625.png deleted file mode 100644 index 175aa34ef8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1626.png deleted file mode 100644 index 0e34509dc2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1627.png deleted file mode 100644 index 8657b9b390..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1628.png deleted file mode 100644 index 0adbb57df4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1629.png deleted file mode 100644 index 1b7f7f1d9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1630.png deleted file mode 100644 index fe6f8f1224..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1631.png deleted file mode 100644 index b649fa6165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1632.png deleted file mode 100644 index 14b41b37e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1633.png deleted file mode 100644 index 26c6d85c26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1634.png deleted file mode 100644 index e89fc64763..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1635.png deleted file mode 100644 index 81b06ab36c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1636.png deleted file mode 100644 index eb5e2bf6c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1637.png deleted file mode 100644 index 97dea05b36..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1638.png deleted file mode 100644 index 8243f7d0bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1639.png deleted file mode 100644 index 53d3831af1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1640.png deleted file mode 100644 index bd8af8f037..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1641.png deleted file mode 100644 index 2f6bb1f5ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1642.png deleted file mode 100644 index 7bb71cf33e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1643.png deleted file mode 100644 index 62464a2053..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1644.png deleted file mode 100644 index ea628e09ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1645.png deleted file mode 100644 index 14b41b37e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1646.png deleted file mode 100644 index 8fde32f175..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1647.png deleted file mode 100644 index 6c6524922f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1648.png deleted file mode 100644 index b649fa6165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1649.png deleted file mode 100644 index da14117aa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1650.png deleted file mode 100644 index 58a2b26670..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1651.png deleted file mode 100644 index 2adf7bb6a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1652.png deleted file mode 100644 index 9000ca7ca4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1653.png deleted file mode 100644 index 4703751023..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1654.png deleted file mode 100644 index a3acef043c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1655.png deleted file mode 100644 index 432a53c06f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1656.png deleted file mode 100644 index 6a6289efbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1657.png deleted file mode 100644 index 9aa976a1e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1658.png deleted file mode 100644 index 41160d68a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1659.png deleted file mode 100644 index 2ebe217162..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1660.png deleted file mode 100644 index 5d6725666e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1661.png deleted file mode 100644 index 69e7758367..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1662.png deleted file mode 100644 index 727e1b1cc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1663.png deleted file mode 100644 index 715d26150f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1664.png deleted file mode 100644 index bcfc1f6403..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1665.png deleted file mode 100644 index 40cee559a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1666.png deleted file mode 100644 index 9b229dbb4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1667.png deleted file mode 100644 index b24568fc3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1668.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1670.png deleted file mode 100644 index 1d1afd3d96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1672.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1673.png deleted file mode 100644 index 5bf09c2d2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1674.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1675.png deleted file mode 100644 index 8fde32f175..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1676.png deleted file mode 100644 index b99bd66b11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1677.png deleted file mode 100644 index 54bc7e39a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1678.png deleted file mode 100644 index 763729480f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1679.png deleted file mode 100644 index 6b35818c57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1680.png deleted file mode 100644 index 831bf94307..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1681.png deleted file mode 100644 index 3feec40275..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1682.png deleted file mode 100644 index e7333f4025..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1683.png deleted file mode 100644 index a7c1a8d90c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1684.png deleted file mode 100644 index 90305f8e45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1685.png deleted file mode 100644 index 80f1ec5a85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1686.png deleted file mode 100644 index 9aa976a1e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1687.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1688.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1689.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1690.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1691.png deleted file mode 100644 index b49eab37a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1692.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1693.png deleted file mode 100644 index 414c6db5d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1694.png deleted file mode 100644 index d2fd1fdf94..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1695.png deleted file mode 100644 index e6b4169511..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1696.png deleted file mode 100644 index 0dbe805164..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1697.png deleted file mode 100644 index 057f11b2eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1698.png deleted file mode 100644 index 9aa976a1e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1699.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1700.png deleted file mode 100644 index c568ac4bc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1701.png deleted file mode 100644 index bcbf661f4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1702.png deleted file mode 100644 index 7fc5622692..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1703.png deleted file mode 100644 index 4dd83f7bcf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1704.png deleted file mode 100644 index cbe1a2f35f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1705.png deleted file mode 100644 index e999e5a433..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1706.png deleted file mode 100644 index b649fa6165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1707.png deleted file mode 100644 index 299e14d763..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1708.png deleted file mode 100644 index d062405988..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1709.png deleted file mode 100644 index e03b62418e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1710.png deleted file mode 100644 index 195c97a1b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1711.png deleted file mode 100644 index ab7ca4f442..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1712.png deleted file mode 100644 index 9e23a75f51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1713.png deleted file mode 100644 index 2d31865c57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1714.png deleted file mode 100644 index 5d4c64f093..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1715.png deleted file mode 100644 index e082b399ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1716.png deleted file mode 100644 index 290b4a3552..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1717.png deleted file mode 100644 index 75fdf03d38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1718.png deleted file mode 100644 index 48514913de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1719.png deleted file mode 100644 index ae5aeaea1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1720.png deleted file mode 100644 index ae5aeaea1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1721.png deleted file mode 100644 index 4e44c08f92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1722.png deleted file mode 100644 index 049cf1a317..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1723.png deleted file mode 100644 index b1eede03bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1724.png deleted file mode 100644 index 80693aeb7e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1725.png deleted file mode 100644 index d3f597927a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1726.png deleted file mode 100644 index 2b01870b72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1727.png deleted file mode 100644 index 4cb0d18609..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1728.png deleted file mode 100644 index d58f68ee0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1729.png deleted file mode 100644 index 1eb168fc1e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1730.png deleted file mode 100644 index 7838138e1c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1731.png deleted file mode 100644 index 1e9c8b0a6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1732.png deleted file mode 100644 index 936ebcb78d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1733.png deleted file mode 100644 index 71523153d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1734.png deleted file mode 100644 index 78d18fd1d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1735.png deleted file mode 100644 index 74184610e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1740.png deleted file mode 100644 index e4994d3204..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1741.png deleted file mode 100644 index 2303368e9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1742.png deleted file mode 100644 index f894b24d98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1743.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1744.png deleted file mode 100644 index 84b1a5d359..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1745.png deleted file mode 100644 index 4251ba04ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1746.png deleted file mode 100644 index 01f4e5aac4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartExcavatorHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1500.png deleted file mode 100644 index fbc227c5ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1501.png deleted file mode 100644 index b80fa4dbd6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1502.png deleted file mode 100644 index 8e54345f44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1503.png deleted file mode 100644 index 318f3a3ae4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1504.png deleted file mode 100644 index c2743c865d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1505.png deleted file mode 100644 index 8524370edb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1506.png deleted file mode 100644 index 11645e1274..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1507.png deleted file mode 100644 index 67a4c778a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1508.png deleted file mode 100644 index 91ef4a9fbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1509.png deleted file mode 100644 index 51816f4d03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1510.png deleted file mode 100644 index b6fed21866..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1511.png deleted file mode 100644 index 91ef4a9fbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1512.png deleted file mode 100644 index f40d7f96ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1513.png deleted file mode 100644 index 7ebac2e921..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1514.png deleted file mode 100644 index c4799fb484..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1515.png deleted file mode 100644 index 134d5b29e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1516.png deleted file mode 100644 index cc0f154a21..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1517.png deleted file mode 100644 index c04119c5e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1518.png deleted file mode 100644 index 5493f328b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1519.png deleted file mode 100644 index fe254676c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1520.png deleted file mode 100644 index de9f3dc1bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1521.png deleted file mode 100644 index a014d7c1f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1522.png deleted file mode 100644 index 792976afac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1523.png deleted file mode 100644 index 996ae3d912..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1524.png deleted file mode 100644 index 6812cad054..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1525.png deleted file mode 100644 index 20ba518713..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1526.png deleted file mode 100644 index 4363a3f06f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1527.png deleted file mode 100644 index 4ff89f4e84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1528.png deleted file mode 100644 index e5eb9eeaaa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1529.png deleted file mode 100644 index d3df1e82d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1530.png deleted file mode 100644 index a985486973..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1531.png deleted file mode 100644 index 460e7b22ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1532.png deleted file mode 100644 index 504f01bcc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1533.png deleted file mode 100644 index 3cbe340228..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1534.png deleted file mode 100644 index 321b133b68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1535.png deleted file mode 100644 index f6aa4aa646..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1536.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1537.png deleted file mode 100644 index de181cc5bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1538.png deleted file mode 100644 index 64df9d2893..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1539.png deleted file mode 100644 index 8d2cd1ab74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1540.png deleted file mode 100644 index 256a536963..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1541.png deleted file mode 100644 index 493ca03e6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1542.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1543.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1544.png deleted file mode 100644 index 54eb117952..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1545.png deleted file mode 100644 index 8528d1d8ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1546.png deleted file mode 100644 index 8ab1bf66e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1547.png deleted file mode 100644 index 1e995f1eba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1548.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1549.png deleted file mode 100644 index ba7fce955f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1550.png deleted file mode 100644 index 24f1688b8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1551.png deleted file mode 100644 index 9d1e839923..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1553.png deleted file mode 100644 index 367f0ddf51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1554.png deleted file mode 100644 index 23fdf77eb8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1555.png deleted file mode 100644 index 42438ced91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1556.png deleted file mode 100644 index c4799fb484..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1557.png deleted file mode 100644 index c4799fb484..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1562.png deleted file mode 100644 index cf395badb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1563.png deleted file mode 100644 index 42438ced91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1564.png deleted file mode 100644 index 85834eb464..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1565.png deleted file mode 100644 index 070d4c25f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1566.png deleted file mode 100644 index 4dde8d5870..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1567.png deleted file mode 100644 index bda813aebf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1568.png deleted file mode 100644 index a91f6402a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1570.png deleted file mode 100644 index 5a305c6a9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1571.png deleted file mode 100644 index 92c0c7a606..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1572.png deleted file mode 100644 index ed5fefe6f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1573.png deleted file mode 100644 index bde89a2b54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1574.png deleted file mode 100644 index a014d7c1f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1575.png deleted file mode 100644 index 1e995f1eba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1576.png deleted file mode 100644 index 3b3623a79c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1577.png deleted file mode 100644 index 42342d7c3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1578.png deleted file mode 100644 index b5e61484c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1579.png deleted file mode 100644 index 91ef4a9fbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1582.png deleted file mode 100644 index e33b6da24e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1583.png deleted file mode 100644 index 83a406f660..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1584.png deleted file mode 100644 index 17639e3e5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1585.png deleted file mode 100644 index cb3b64769d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1586.png deleted file mode 100644 index 22828213aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1587.png deleted file mode 100644 index 546a87b411..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1588.png deleted file mode 100644 index 42438ced91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1589.png deleted file mode 100644 index b2965d01f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1590.png deleted file mode 100644 index 72ee20ae8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1591.png deleted file mode 100644 index 26aba500cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1592.png deleted file mode 100644 index 2f7dee9d66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1593.png deleted file mode 100644 index ae479bc06d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1594.png deleted file mode 100644 index d1fdb78521..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1595.png deleted file mode 100644 index c6562f9622..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1596.png deleted file mode 100644 index 910af604b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1597.png deleted file mode 100644 index b70e1f503f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1598.png deleted file mode 100644 index 669f8947ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1599.png deleted file mode 100644 index a13923ceff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1600.png deleted file mode 100644 index cbafffb5c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1601.png deleted file mode 100644 index 79d8ac5f84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1602.png deleted file mode 100644 index 63ea33d448..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1603.png deleted file mode 100644 index 90599e62a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1604.png deleted file mode 100644 index 6318ade4aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1605.png deleted file mode 100644 index 27ff1388f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1606.png deleted file mode 100644 index 3e63c48eea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1607.png deleted file mode 100644 index 490bc804a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1608.png deleted file mode 100644 index 50a375c39a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1609.png deleted file mode 100644 index a014d7c1f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1610.png deleted file mode 100644 index b6fed21866..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1611.png deleted file mode 100644 index 3e64586e0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1612.png deleted file mode 100644 index 2550f5ddd9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1613.png deleted file mode 100644 index 489b691621..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1614.png deleted file mode 100644 index 3e63c48eea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1615.png deleted file mode 100644 index 64df9d2893..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1616.png deleted file mode 100644 index b679e8a67c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1617.png deleted file mode 100644 index 27ff1388f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1618.png deleted file mode 100644 index afd35c2ab0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1619.png deleted file mode 100644 index 12c76769f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1620.png deleted file mode 100644 index 72ee20ae8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1621.png deleted file mode 100644 index efeeb66bfc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1622.png deleted file mode 100644 index 44116248c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1623.png deleted file mode 100644 index 2de5dfb848..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1624.png deleted file mode 100644 index 1c5c2c9e7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1625.png deleted file mode 100644 index 969edc602a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1626.png deleted file mode 100644 index faa9f81925..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1627.png deleted file mode 100644 index be98ab4385..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1628.png deleted file mode 100644 index a584dd2ad3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1629.png deleted file mode 100644 index 34d78e8f62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1630.png deleted file mode 100644 index 13f4141923..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1631.png deleted file mode 100644 index b6fed21866..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1632.png deleted file mode 100644 index 2aff9adeae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1633.png deleted file mode 100644 index 82949f0e18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1634.png deleted file mode 100644 index 968f1f572e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1635.png deleted file mode 100644 index 750333fa89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1636.png deleted file mode 100644 index 82b241a51e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1637.png deleted file mode 100644 index 7f26c65fd5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1638.png deleted file mode 100644 index 5b1d4a602f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1639.png deleted file mode 100644 index 92c0c7a606..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1640.png deleted file mode 100644 index c0ac21b3c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1641.png deleted file mode 100644 index 5811b8a405..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1642.png deleted file mode 100644 index 604cf4535c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1643.png deleted file mode 100644 index f3ca182722..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1644.png deleted file mode 100644 index 7b14fd0327..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1645.png deleted file mode 100644 index 2aff9adeae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1646.png deleted file mode 100644 index 3e63c48eea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1647.png deleted file mode 100644 index c4799fb484..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1648.png deleted file mode 100644 index b6fed21866..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1649.png deleted file mode 100644 index 9e4f02ff8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1650.png deleted file mode 100644 index 0449479699..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1651.png deleted file mode 100644 index fd4dd50f8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1652.png deleted file mode 100644 index 1aa1a2e362..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1653.png deleted file mode 100644 index 1190355e9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1654.png deleted file mode 100644 index 7afb3f1ab3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1655.png deleted file mode 100644 index a6bb0869b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1656.png deleted file mode 100644 index 6264763f1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1657.png deleted file mode 100644 index a014d7c1f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1658.png deleted file mode 100644 index 3d01da256f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1659.png deleted file mode 100644 index 8bf86a2168..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1660.png deleted file mode 100644 index 45b4cfa99e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1661.png deleted file mode 100644 index c1ca5efdec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1662.png deleted file mode 100644 index 1901c6c126..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1663.png deleted file mode 100644 index 541d3508a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1664.png deleted file mode 100644 index cc31982800..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1665.png deleted file mode 100644 index d04562a23a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1666.png deleted file mode 100644 index 513ffcfff9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1667.png deleted file mode 100644 index 510a07e3f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1668.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1670.png deleted file mode 100644 index ba9462675d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1672.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1673.png deleted file mode 100644 index f55d443834..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1674.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1675.png deleted file mode 100644 index 3e63c48eea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1676.png deleted file mode 100644 index 5989754478..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1677.png deleted file mode 100644 index a16fe74c89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1678.png deleted file mode 100644 index 4b1ad04652..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1679.png deleted file mode 100644 index 2328f0d55e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1680.png deleted file mode 100644 index b32bb1f494..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1681.png deleted file mode 100644 index 7462a9e1be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1682.png deleted file mode 100644 index b31b76ae59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1683.png deleted file mode 100644 index c5c68adce5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1684.png deleted file mode 100644 index 5a0fbdc91b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1685.png deleted file mode 100644 index 941135849b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1686.png deleted file mode 100644 index a014d7c1f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1687.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1688.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1689.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1690.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1691.png deleted file mode 100644 index b1faad9545..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1692.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1693.png deleted file mode 100644 index 92b931a267..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1694.png deleted file mode 100644 index efe374c737..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1695.png deleted file mode 100644 index db2060991f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1696.png deleted file mode 100644 index 3324e92b78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1697.png deleted file mode 100644 index b3333a1683..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1698.png deleted file mode 100644 index a014d7c1f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1699.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1700.png deleted file mode 100644 index 258a78579e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1701.png deleted file mode 100644 index 531a5cff8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1702.png deleted file mode 100644 index 2620a966e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1703.png deleted file mode 100644 index 44ce5104bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1704.png deleted file mode 100644 index 469241da9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1705.png deleted file mode 100644 index 6b0f4c088a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1706.png deleted file mode 100644 index b6fed21866..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1707.png deleted file mode 100644 index 473b9737bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1708.png deleted file mode 100644 index c2743c865d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1709.png deleted file mode 100644 index 886c47073e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1710.png deleted file mode 100644 index 92804be815..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1711.png deleted file mode 100644 index 948b5edbb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1712.png deleted file mode 100644 index 8669d0a39b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1713.png deleted file mode 100644 index a41021dc20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1714.png deleted file mode 100644 index 246f7edccc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1715.png deleted file mode 100644 index f4bf9e699e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1716.png deleted file mode 100644 index 11792b3e25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1717.png deleted file mode 100644 index 9b7ae7d3ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1718.png deleted file mode 100644 index 3b02dee7b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1719.png deleted file mode 100644 index 6331a13b1e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1720.png deleted file mode 100644 index 6331a13b1e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1721.png deleted file mode 100644 index e260e8f73a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1722.png deleted file mode 100644 index f97e7166b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1723.png deleted file mode 100644 index f221d3f92a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1724.png deleted file mode 100644 index 1f995a1919..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1725.png deleted file mode 100644 index d17373b750..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1726.png deleted file mode 100644 index 9290069dc1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1727.png deleted file mode 100644 index 65d402c989..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1728.png deleted file mode 100644 index 099b565b85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1729.png deleted file mode 100644 index 6e0e95828e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1730.png deleted file mode 100644 index 2bf288c179..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1731.png deleted file mode 100644 index 1eb72bba7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1732.png deleted file mode 100644 index a5922c005a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1733.png deleted file mode 100644 index 2f621452a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1734.png deleted file mode 100644 index a3da687901..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1735.png deleted file mode 100644 index 19ac6f44b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1740.png deleted file mode 100644 index 0c41bcdeb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1741.png deleted file mode 100644 index a5e773ca85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1742.png deleted file mode 100644 index 2045244130..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1743.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1744.png deleted file mode 100644 index 1c8a00cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1745.png deleted file mode 100644 index 6bc77c219b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1746.png deleted file mode 100644 index 5f3959540a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFrypanHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1500.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1500.png deleted file mode 100644 index 53cda372b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1501.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1501.png deleted file mode 100644 index 375eff283b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1502.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1502.png deleted file mode 100644 index e3ebc6d3cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1503.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1503.png deleted file mode 100644 index a1068582b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1504.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1504.png deleted file mode 100644 index a38678f401..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1505.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1505.png deleted file mode 100644 index b267c22349..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1506.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1506.png deleted file mode 100644 index a19237476d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1507.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1507.png deleted file mode 100644 index 60b8ae137d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1508.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1508.png deleted file mode 100644 index 6aa39484ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1509.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1509.png deleted file mode 100644 index ad6a5a2564..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1510.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1510.png deleted file mode 100644 index c93112c9be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1511.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1511.png deleted file mode 100644 index 6aa39484ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1512.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1512.png deleted file mode 100644 index 8dd86b8aba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1513.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1513.png deleted file mode 100644 index 04d9f99030..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1514.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1514.png deleted file mode 100644 index 86d8e6cb1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1515.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1515.png deleted file mode 100644 index ecff7df639..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1516.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1516.png deleted file mode 100644 index 1f7eb18b28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1517.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1517.png deleted file mode 100644 index 75f60fd92b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1518.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1518.png deleted file mode 100644 index f3a5fb9b1f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1519.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1519.png deleted file mode 100644 index 8daacf7c63..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1520.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1520.png deleted file mode 100644 index bd292e3538..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1521.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1521.png deleted file mode 100644 index 303401a877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1522.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1522.png deleted file mode 100644 index 55a4ee52a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1523.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1523.png deleted file mode 100644 index bc8e5abe75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1524.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1524.png deleted file mode 100644 index 3aa20e303f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1525.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1525.png deleted file mode 100644 index 283c6f54d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1526.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1526.png deleted file mode 100644 index e9583bd6c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1527.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1527.png deleted file mode 100644 index f171d33789..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1528.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1528.png deleted file mode 100644 index 7bbc5b1c3f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1529.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1529.png deleted file mode 100644 index 76af743969..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1530.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1530.png deleted file mode 100644 index b6b974a662..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1531.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1531.png deleted file mode 100644 index 27257013e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1532.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1532.png deleted file mode 100644 index d6eb38195b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1533.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1533.png deleted file mode 100644 index a20e87300c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1534.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1534.png deleted file mode 100644 index f00b40df0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1535.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1535.png deleted file mode 100644 index b4568f9318..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1536.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1536.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1537.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1537.png deleted file mode 100644 index 1958cd7369..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1538.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1538.png deleted file mode 100644 index 9408414552..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1539.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1539.png deleted file mode 100644 index 49d2e9f0fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1540.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1540.png deleted file mode 100644 index 84956e4d2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1541.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1541.png deleted file mode 100644 index 9026ac69e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1542.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1542.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1543.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1543.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1544.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1544.png deleted file mode 100644 index 39177f21c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1545.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1545.png deleted file mode 100644 index b2983d4272..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1546.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1546.png deleted file mode 100644 index 40fb4b7041..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1547.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1547.png deleted file mode 100644 index 5f2169cf3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1548.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1548.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1549.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1549.png deleted file mode 100644 index a442e08d4b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1550.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1550.png deleted file mode 100644 index b627e7bf90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1551.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1551.png deleted file mode 100644 index 070be2e3ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1553.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1553.png deleted file mode 100644 index d46b8d2787..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1554.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1554.png deleted file mode 100644 index f022a4d86b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1555.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1555.png deleted file mode 100644 index 49c00d42c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1556.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1556.png deleted file mode 100644 index 86d8e6cb1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1557.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1557.png deleted file mode 100644 index 86d8e6cb1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1562.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1562.png deleted file mode 100644 index 649f5acbdc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1563.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1563.png deleted file mode 100644 index 49c00d42c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1564.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1564.png deleted file mode 100644 index c65af2530a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1565.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1565.png deleted file mode 100644 index 99fab50348..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1566.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1566.png deleted file mode 100644 index 607a5f6900..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1567.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1567.png deleted file mode 100644 index ab695bfcb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1568.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1568.png deleted file mode 100644 index ad2f0e19d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1570.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1570.png deleted file mode 100644 index f9fe1ceec1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1571.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1571.png deleted file mode 100644 index c75727d20f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1572.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1572.png deleted file mode 100644 index 2c82024dd7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1573.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1573.png deleted file mode 100644 index 8419e1b8c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1574.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1574.png deleted file mode 100644 index 303401a877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1575.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1575.png deleted file mode 100644 index 5f2169cf3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1576.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1576.png deleted file mode 100644 index c96d815420..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1577.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1577.png deleted file mode 100644 index f8a3a0e86c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1578.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1578.png deleted file mode 100644 index efb36375d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1579.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1579.png deleted file mode 100644 index 6aa39484ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1582.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1582.png deleted file mode 100644 index f8481f24f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1583.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1583.png deleted file mode 100644 index 7c22398ec6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1584.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1584.png deleted file mode 100644 index 1c0e74c39f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1585.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1585.png deleted file mode 100644 index 875a02f40b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1586.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1586.png deleted file mode 100644 index efee7e66fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1587.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1587.png deleted file mode 100644 index d14fe917cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1588.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1588.png deleted file mode 100644 index 49c00d42c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1589.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1589.png deleted file mode 100644 index 261b67ec64..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1590.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1590.png deleted file mode 100644 index 329ca92294..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1591.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1591.png deleted file mode 100644 index 00e8142a6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1592.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1592.png deleted file mode 100644 index 796efec773..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1593.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1593.png deleted file mode 100644 index bda8c14c93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1594.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1594.png deleted file mode 100644 index 8f354c4fb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1595.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1595.png deleted file mode 100644 index 26c38c6b7e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1596.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1596.png deleted file mode 100644 index 23d591ad69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1597.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1597.png deleted file mode 100644 index 245b538e2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1598.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1598.png deleted file mode 100644 index 487e710993..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1599.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1599.png deleted file mode 100644 index e828ee2d1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1600.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1600.png deleted file mode 100644 index 68b06c680c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1601.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1601.png deleted file mode 100644 index 0d01183b69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1602.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1602.png deleted file mode 100644 index f8cd4fb424..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1603.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1603.png deleted file mode 100644 index 6ea1f2b015..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1604.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1604.png deleted file mode 100644 index 3d41c8c6fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1605.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1605.png deleted file mode 100644 index ed9335eee7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1606.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1606.png deleted file mode 100644 index ac7f3aa37e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1607.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1607.png deleted file mode 100644 index 0841f259ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1608.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1608.png deleted file mode 100644 index c031b3a8c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1609.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1609.png deleted file mode 100644 index 303401a877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1610.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1610.png deleted file mode 100644 index c93112c9be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1611.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1611.png deleted file mode 100644 index cf19e106b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1612.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1612.png deleted file mode 100644 index 3778e21fd6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1613.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1613.png deleted file mode 100644 index 341e9f607f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1614.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1614.png deleted file mode 100644 index ac7f3aa37e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1615.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1615.png deleted file mode 100644 index 9408414552..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1616.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1616.png deleted file mode 100644 index bda38da04e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1617.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1617.png deleted file mode 100644 index ed9335eee7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1618.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1618.png deleted file mode 100644 index f5e1d19f52..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1619.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1619.png deleted file mode 100644 index e369997ff1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1620.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1620.png deleted file mode 100644 index 329ca92294..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1621.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1621.png deleted file mode 100644 index 8780d2e06f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1622.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1622.png deleted file mode 100644 index 068c3ecf04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1623.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1623.png deleted file mode 100644 index a16edfc288..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1624.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1624.png deleted file mode 100644 index c01983899c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1625.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1625.png deleted file mode 100644 index 3d81a42da6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1626.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1626.png deleted file mode 100644 index eb999bc395..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1627.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1627.png deleted file mode 100644 index a489aa8303..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1628.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1628.png deleted file mode 100644 index 94b30676e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1629.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1629.png deleted file mode 100644 index 85b38d2d23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1630.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1630.png deleted file mode 100644 index 1ed74b18a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1631.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1631.png deleted file mode 100644 index c93112c9be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1632.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1632.png deleted file mode 100644 index 20e2ce8edd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1633.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1633.png deleted file mode 100644 index 098eeaf5f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1634.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1634.png deleted file mode 100644 index 51e382b210..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1635.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1635.png deleted file mode 100644 index 4af3737108..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1636.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1636.png deleted file mode 100644 index c874b4613c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1637.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1637.png deleted file mode 100644 index 038c86a740..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1638.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1638.png deleted file mode 100644 index 11044dfea3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1639.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1639.png deleted file mode 100644 index c75727d20f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1640.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1640.png deleted file mode 100644 index 1d5d14bdaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1641.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1641.png deleted file mode 100644 index 150806f472..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1642.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1642.png deleted file mode 100644 index 0f443eb5e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1643.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1643.png deleted file mode 100644 index 4d63a257bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1644.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1644.png deleted file mode 100644 index 7f60876d70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1645.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1645.png deleted file mode 100644 index 20e2ce8edd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1646.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1646.png deleted file mode 100644 index ac7f3aa37e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1647.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1647.png deleted file mode 100644 index 86d8e6cb1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1648.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1648.png deleted file mode 100644 index c93112c9be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1649.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1649.png deleted file mode 100644 index c7e7108dee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1650.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1650.png deleted file mode 100644 index af89b57567..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1651.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1651.png deleted file mode 100644 index 48f0af80bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1652.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1652.png deleted file mode 100644 index 4c7dd802e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1653.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1653.png deleted file mode 100644 index 8f1957bddd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1654.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1654.png deleted file mode 100644 index 28c70dded6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1655.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1655.png deleted file mode 100644 index fb30bc47e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1656.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1656.png deleted file mode 100644 index 5879ec806f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1657.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1657.png deleted file mode 100644 index 303401a877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1658.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1658.png deleted file mode 100644 index 78e2a1faad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1659.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1659.png deleted file mode 100644 index 7e0500f09a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1660.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1660.png deleted file mode 100644 index f1e157aaa0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1661.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1661.png deleted file mode 100644 index f3cac258bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1662.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1662.png deleted file mode 100644 index 62828cd6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1663.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1663.png deleted file mode 100644 index de921d8177..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1664.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1664.png deleted file mode 100644 index 863d775e05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1665.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1665.png deleted file mode 100644 index 8000d1de3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1666.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1666.png deleted file mode 100644 index 6966acea6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1667.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1667.png deleted file mode 100644 index d0a821b9bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1668.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1668.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1670.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1670.png deleted file mode 100644 index 2f0d3913be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1672.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1672.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1673.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1673.png deleted file mode 100644 index aae7805a80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1674.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1674.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1675.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1675.png deleted file mode 100644 index ac7f3aa37e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1676.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1676.png deleted file mode 100644 index d8036ca88f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1677.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1677.png deleted file mode 100644 index 1f26a9f64a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1678.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1678.png deleted file mode 100644 index 00011506f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1679.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1679.png deleted file mode 100644 index f95d5bdc9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1680.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1680.png deleted file mode 100644 index b71a86f9bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1681.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1681.png deleted file mode 100644 index 7ee66a5b4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1682.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1682.png deleted file mode 100644 index 5d6fffba3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1683.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1683.png deleted file mode 100644 index d1bd28fde3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1684.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1684.png deleted file mode 100644 index b95e2988e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1685.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1685.png deleted file mode 100644 index f38e8883a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1686.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1686.png deleted file mode 100644 index 303401a877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1687.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1687.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1688.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1688.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1689.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1689.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1690.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1690.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1691.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1691.png deleted file mode 100644 index 636ce0200a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1692.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1692.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1693.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1693.png deleted file mode 100644 index 8dd4d443af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1694.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1694.png deleted file mode 100644 index effe5c865d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1695.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1695.png deleted file mode 100644 index 6d9eaec486..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1696.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1696.png deleted file mode 100644 index d674ba11c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1697.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1697.png deleted file mode 100644 index d25c69f6be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1698.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1698.png deleted file mode 100644 index 303401a877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1699.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1699.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1700.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1700.png deleted file mode 100644 index a106dcf865..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1701.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1701.png deleted file mode 100644 index 2148aa088b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1702.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1702.png deleted file mode 100644 index e1d2040e51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1703.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1703.png deleted file mode 100644 index c867517472..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1704.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1704.png deleted file mode 100644 index 4f3182ae8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1705.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1705.png deleted file mode 100644 index 22f4fdf9d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1706.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1706.png deleted file mode 100644 index c93112c9be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1707.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1707.png deleted file mode 100644 index 21a3aa41d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1708.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1708.png deleted file mode 100644 index a38678f401..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1709.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1709.png deleted file mode 100644 index 79f02f057e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1710.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1710.png deleted file mode 100644 index f9c1b76b38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1711.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1711.png deleted file mode 100644 index 258283cede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1712.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1712.png deleted file mode 100644 index afdfd813e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1713.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1713.png deleted file mode 100644 index cd64797d00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1714.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1714.png deleted file mode 100644 index 1f44c6ce9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1715.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1715.png deleted file mode 100644 index 5cbc517d96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1716.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1716.png deleted file mode 100644 index 333377f6bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1717.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1717.png deleted file mode 100644 index d34166c764..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1718.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1718.png deleted file mode 100644 index 65bd0de22d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1719.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1719.png deleted file mode 100644 index 94400d74ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1720.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1720.png deleted file mode 100644 index 94400d74ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1721.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1721.png deleted file mode 100644 index 513fab73f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1722.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1722.png deleted file mode 100644 index 6e0ca189f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1723.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1723.png deleted file mode 100644 index fff5d908b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1724.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1724.png deleted file mode 100644 index acb5d4c818..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1725.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1725.png deleted file mode 100644 index 493b94a80b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1726.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1726.png deleted file mode 100644 index 03285052c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1727.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1727.png deleted file mode 100644 index bd5ed80b41..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1728.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1728.png deleted file mode 100644 index 4022ad9f65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1729.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1729.png deleted file mode 100644 index 09fc73f8d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1730.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1730.png deleted file mode 100644 index 23c75828ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1731.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1731.png deleted file mode 100644 index 1de907d08a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1732.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1732.png deleted file mode 100644 index 5bda9f1b21..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1733.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1733.png deleted file mode 100644 index ab78f0d8a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1734.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1734.png deleted file mode 100644 index e8d85fa4d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1735.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1735.png deleted file mode 100644 index 208b24c868..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1740.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1740.png deleted file mode 100644 index 8cf93683ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1741.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1741.png deleted file mode 100644 index 95da59b521..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1742.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1742.png deleted file mode 100644 index 61902b7f6e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1743.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1743.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1744.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1744.png deleted file mode 100644 index 6bbc8431f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1745.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1745.png deleted file mode 100644 index 2edd6ad5ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1746.png b/front/public/images/small/TGregworks/tGregToolPartFullGuard/1746.png deleted file mode 100644 index ab631fab47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartFullGuard/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1500.png deleted file mode 100644 index 4c52f106c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1501.png deleted file mode 100644 index a011f01ba8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1502.png deleted file mode 100644 index 26ec732272..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1503.png deleted file mode 100644 index f0a9e32f4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1504.png deleted file mode 100644 index 9e896d47bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1505.png deleted file mode 100644 index c735adb9e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1506.png deleted file mode 100644 index f1259e6fc4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1507.png deleted file mode 100644 index 8c9359ccbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1508.png deleted file mode 100644 index b7eaf32a3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1509.png deleted file mode 100644 index 09e17d87b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1510.png deleted file mode 100644 index de7001ad59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1511.png deleted file mode 100644 index b7eaf32a3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1512.png deleted file mode 100644 index 151e4bdbee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1513.png deleted file mode 100644 index d1fc502732..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1514.png deleted file mode 100644 index 2f0fa93231..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1515.png deleted file mode 100644 index 31ebbed49e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1516.png deleted file mode 100644 index a6ef617f5e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1517.png deleted file mode 100644 index 436fe3f9a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1518.png deleted file mode 100644 index 4403aa8612..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1519.png deleted file mode 100644 index 40243a7e86..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1520.png deleted file mode 100644 index 5f2556d800..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1521.png deleted file mode 100644 index c53b18df72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1522.png deleted file mode 100644 index 80e40c76d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1523.png deleted file mode 100644 index 3e04a4ee0d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1524.png deleted file mode 100644 index 1f22c778f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1525.png deleted file mode 100644 index 697cc1d6b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1526.png deleted file mode 100644 index 051f4e7d6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1527.png deleted file mode 100644 index 21fc53641f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1528.png deleted file mode 100644 index c2f766a37d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1529.png deleted file mode 100644 index 1329d62622..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1530.png deleted file mode 100644 index 0a6a4e0a2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1531.png deleted file mode 100644 index 35c80040f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1532.png deleted file mode 100644 index 738adfd252..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1533.png deleted file mode 100644 index 25909c33c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1534.png deleted file mode 100644 index 94034cd9ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1535.png deleted file mode 100644 index 6bf298ed26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1536.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1537.png deleted file mode 100644 index c1fa9003b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1538.png deleted file mode 100644 index 185d24d2bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1539.png deleted file mode 100644 index 6c1a559843..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1540.png deleted file mode 100644 index 69d73e8c30..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1541.png deleted file mode 100644 index 40a6ba5c2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1542.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1543.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1544.png deleted file mode 100644 index d283ece12c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1545.png deleted file mode 100644 index a00af53417..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1546.png deleted file mode 100644 index d2357a056b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1547.png deleted file mode 100644 index 74fadb0754..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1548.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1549.png deleted file mode 100644 index 8a962b9d9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1550.png deleted file mode 100644 index b4631d4c79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1551.png deleted file mode 100644 index d1b7eebc0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1553.png deleted file mode 100644 index fdeabe86cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1554.png deleted file mode 100644 index 41f8c04b12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1555.png deleted file mode 100644 index 6feb9d8166..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1556.png deleted file mode 100644 index 2f0fa93231..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1557.png deleted file mode 100644 index 2f0fa93231..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1562.png deleted file mode 100644 index 8a789f7a8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1563.png deleted file mode 100644 index 6feb9d8166..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1564.png deleted file mode 100644 index 02c5be500c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1565.png deleted file mode 100644 index 955353b534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1566.png deleted file mode 100644 index 5ced83dde6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1567.png deleted file mode 100644 index 028d52bc45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1568.png deleted file mode 100644 index 25e83587c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1570.png deleted file mode 100644 index efdc024a57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1571.png deleted file mode 100644 index 1e5534b1ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1572.png deleted file mode 100644 index 9ec4f5b8e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1573.png deleted file mode 100644 index 189e3b0857..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1574.png deleted file mode 100644 index c53b18df72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1575.png deleted file mode 100644 index 74fadb0754..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1576.png deleted file mode 100644 index c3fddccddf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1577.png deleted file mode 100644 index a7b4b8fdfe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1578.png deleted file mode 100644 index 905550bc9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1579.png deleted file mode 100644 index b7eaf32a3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1582.png deleted file mode 100644 index 927496d474..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1583.png deleted file mode 100644 index 6eb8461ede..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1584.png deleted file mode 100644 index 519613167e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1585.png deleted file mode 100644 index 9aa4ea5c54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1586.png deleted file mode 100644 index 63fb644c7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1587.png deleted file mode 100644 index 0073ccb9be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1588.png deleted file mode 100644 index 6feb9d8166..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1589.png deleted file mode 100644 index bbf10c4f6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1590.png deleted file mode 100644 index 773caa26b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1591.png deleted file mode 100644 index b5d3328fe2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1592.png deleted file mode 100644 index 9862da2c77..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1593.png deleted file mode 100644 index 635d038423..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1594.png deleted file mode 100644 index 9c1b388af8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1595.png deleted file mode 100644 index 5bace780ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1596.png deleted file mode 100644 index 6d801e2f25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1597.png deleted file mode 100644 index 08b7b43088..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1598.png deleted file mode 100644 index 0881484ca5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1599.png deleted file mode 100644 index efaf934265..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1600.png deleted file mode 100644 index bd9f13d87a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1601.png deleted file mode 100644 index d0ea572756..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1602.png deleted file mode 100644 index 3285e1cc4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1603.png deleted file mode 100644 index d0eb65d749..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1604.png deleted file mode 100644 index 308be07609..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1605.png deleted file mode 100644 index 9beaa04d2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1606.png deleted file mode 100644 index eb07457aa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1607.png deleted file mode 100644 index 84928238aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1608.png deleted file mode 100644 index df88195d91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1609.png deleted file mode 100644 index c53b18df72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1610.png deleted file mode 100644 index de7001ad59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1611.png deleted file mode 100644 index 6062c0e0a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1612.png deleted file mode 100644 index 387173eb7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1613.png deleted file mode 100644 index 703c167820..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1614.png deleted file mode 100644 index eb07457aa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1615.png deleted file mode 100644 index 185d24d2bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1616.png deleted file mode 100644 index fba8de3e84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1617.png deleted file mode 100644 index 9beaa04d2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1618.png deleted file mode 100644 index e484a7840c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1619.png deleted file mode 100644 index ca35e721a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1620.png deleted file mode 100644 index 773caa26b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1621.png deleted file mode 100644 index f55a3869b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1622.png deleted file mode 100644 index 9130a271ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1623.png deleted file mode 100644 index 1547f8791e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1624.png deleted file mode 100644 index 668ee98557..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1625.png deleted file mode 100644 index 7da3000502..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1626.png deleted file mode 100644 index bc440fedde..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1627.png deleted file mode 100644 index cd52cd6d46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1628.png deleted file mode 100644 index 608982532e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1629.png deleted file mode 100644 index 5ed0768133..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1630.png deleted file mode 100644 index 7871512488..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1631.png deleted file mode 100644 index de7001ad59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1632.png deleted file mode 100644 index 43ad73de0d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1633.png deleted file mode 100644 index ec78a7b071..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1634.png deleted file mode 100644 index 136813acc9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1635.png deleted file mode 100644 index 5511401212..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1636.png deleted file mode 100644 index 594cc20197..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1637.png deleted file mode 100644 index 2a59181a52..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1638.png deleted file mode 100644 index 5ebb87aa48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1639.png deleted file mode 100644 index 1e5534b1ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1640.png deleted file mode 100644 index ef2cceac9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1641.png deleted file mode 100644 index 4a043c8f63..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1642.png deleted file mode 100644 index 2d28c117a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1643.png deleted file mode 100644 index 9bd86e987e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1644.png deleted file mode 100644 index ba112aaef3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1645.png deleted file mode 100644 index 43ad73de0d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1646.png deleted file mode 100644 index eb07457aa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1647.png deleted file mode 100644 index 2f0fa93231..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1648.png deleted file mode 100644 index de7001ad59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1649.png deleted file mode 100644 index c38c9f437c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1650.png deleted file mode 100644 index 44db87df4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1651.png deleted file mode 100644 index ec3f847116..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1652.png deleted file mode 100644 index 7dab2d539b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1653.png deleted file mode 100644 index ed2317b706..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1654.png deleted file mode 100644 index 9cfc9803d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1655.png deleted file mode 100644 index 1f8cb1b912..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1656.png deleted file mode 100644 index 218200766c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1657.png deleted file mode 100644 index c53b18df72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1658.png deleted file mode 100644 index 35494d47ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1659.png deleted file mode 100644 index a4ac94a4dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1660.png deleted file mode 100644 index db98a1911d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1661.png deleted file mode 100644 index cceb9d2555..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1662.png deleted file mode 100644 index e8ce0c3647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1663.png deleted file mode 100644 index 76163e7e79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1664.png deleted file mode 100644 index e8cfb56140..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1665.png deleted file mode 100644 index 3e767ee22c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1666.png deleted file mode 100644 index 1999662bc7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1667.png deleted file mode 100644 index 467299f0b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1668.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1670.png deleted file mode 100644 index 01b49ca4bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1672.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1673.png deleted file mode 100644 index b03ba899a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1674.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1675.png deleted file mode 100644 index eb07457aa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1676.png deleted file mode 100644 index 0fe896d9df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1677.png deleted file mode 100644 index 42b64cba7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1678.png deleted file mode 100644 index 4d8352261f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1679.png deleted file mode 100644 index dc24b51de2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1680.png deleted file mode 100644 index efa944795d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1681.png deleted file mode 100644 index 1bab019ee6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1682.png deleted file mode 100644 index 576f45cf74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1683.png deleted file mode 100644 index b407f56a2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1684.png deleted file mode 100644 index 7bc0539dff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1685.png deleted file mode 100644 index 4cf96dcd21..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1686.png deleted file mode 100644 index c53b18df72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1687.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1688.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1689.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1690.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1691.png deleted file mode 100644 index 4955471043..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1692.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1693.png deleted file mode 100644 index 6618e8eed6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1694.png deleted file mode 100644 index b4340e7608..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1695.png deleted file mode 100644 index a242444238..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1696.png deleted file mode 100644 index 1408850043..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1697.png deleted file mode 100644 index 5f322b5977..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1698.png deleted file mode 100644 index c53b18df72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1699.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1700.png deleted file mode 100644 index c90657cd2c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1701.png deleted file mode 100644 index 82a7505c82..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1702.png deleted file mode 100644 index 203f0f301a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1703.png deleted file mode 100644 index 4da8506bd4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1704.png deleted file mode 100644 index 3ed054f11b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1705.png deleted file mode 100644 index 4513f6ceae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1706.png deleted file mode 100644 index de7001ad59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1707.png deleted file mode 100644 index f704fd3a62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1708.png deleted file mode 100644 index 9e896d47bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1709.png deleted file mode 100644 index d4f3f9cb09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1710.png deleted file mode 100644 index 1ee8a6c536..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1711.png deleted file mode 100644 index 384a3a09c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1712.png deleted file mode 100644 index a71c451e80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1713.png deleted file mode 100644 index 35050f90f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1714.png deleted file mode 100644 index 4f9b556750..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1715.png deleted file mode 100644 index e2a4578c73..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1716.png deleted file mode 100644 index 128be5d21c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1717.png deleted file mode 100644 index e16acd73e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1718.png deleted file mode 100644 index 2439f5a7c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1719.png deleted file mode 100644 index ed3aa6fd48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1720.png deleted file mode 100644 index ed3aa6fd48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1721.png deleted file mode 100644 index ffd55d248d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1722.png deleted file mode 100644 index 07ee1407ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1723.png deleted file mode 100644 index 06412edbda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1724.png deleted file mode 100644 index ebc1d394d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1725.png deleted file mode 100644 index 02fc005012..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1726.png deleted file mode 100644 index a12eaac910..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1727.png deleted file mode 100644 index 50302a4fbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1728.png deleted file mode 100644 index 6a62d223fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1729.png deleted file mode 100644 index 71860a84e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1730.png deleted file mode 100644 index c19eacd75a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1731.png deleted file mode 100644 index 13aeb5f22e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1732.png deleted file mode 100644 index 3cba8c0271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1733.png deleted file mode 100644 index f2537ed582..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1734.png deleted file mode 100644 index 76c18b5c0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1735.png deleted file mode 100644 index 97b73055c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1740.png deleted file mode 100644 index c85ac29c0d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1741.png deleted file mode 100644 index 2419f6f563..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1742.png deleted file mode 100644 index 56d6479c20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1743.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1744.png deleted file mode 100644 index 00dcb2f5d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1745.png deleted file mode 100644 index 8cc70dbef7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartHammerHead/1746.png deleted file mode 100644 index c947b12370..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartHammerHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1500.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1500.png deleted file mode 100644 index f1fea7a3cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1501.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1501.png deleted file mode 100644 index 94322c2e26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1502.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1502.png deleted file mode 100644 index 1498b9ccc7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1503.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1503.png deleted file mode 100644 index 17aca9ea72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1504.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1504.png deleted file mode 100644 index 0a3cf46ce3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1505.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1505.png deleted file mode 100644 index e6ed0e5414..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1506.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1506.png deleted file mode 100644 index c874c9046f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1507.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1507.png deleted file mode 100644 index a1194088c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1508.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1508.png deleted file mode 100644 index b52273b18d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1509.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1509.png deleted file mode 100644 index 8f12879bf5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1510.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1510.png deleted file mode 100644 index ecf9ec1a5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1511.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1511.png deleted file mode 100644 index b52273b18d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1512.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1512.png deleted file mode 100644 index 3b465ccd37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1513.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1513.png deleted file mode 100644 index ec6d0668a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1514.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1514.png deleted file mode 100644 index a305996048..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1515.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1515.png deleted file mode 100644 index 12306fb67a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1516.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1516.png deleted file mode 100644 index 82d5fd755d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1517.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1517.png deleted file mode 100644 index ccfe989f19..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1518.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1518.png deleted file mode 100644 index 5987bed10a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1519.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1519.png deleted file mode 100644 index 7648851b7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1520.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1520.png deleted file mode 100644 index 51fa773b5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1521.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1521.png deleted file mode 100644 index f8637ce6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1522.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1522.png deleted file mode 100644 index b5f947d495..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1523.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1523.png deleted file mode 100644 index 094536d226..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1524.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1524.png deleted file mode 100644 index b6c2c70c29..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1525.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1525.png deleted file mode 100644 index 60f82892e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1526.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1526.png deleted file mode 100644 index c7c4ae2617..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1527.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1527.png deleted file mode 100644 index 8f7435d35e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1528.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1528.png deleted file mode 100644 index 7e778d8364..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1529.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1529.png deleted file mode 100644 index fe866f6731..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1530.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1530.png deleted file mode 100644 index 309df6da6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1531.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1531.png deleted file mode 100644 index cc2dba4cdb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1532.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1532.png deleted file mode 100644 index daad905241..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1533.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1533.png deleted file mode 100644 index cb228fcc92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1534.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1534.png deleted file mode 100644 index e9dd717613..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1535.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1535.png deleted file mode 100644 index f53ed05d22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1536.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1536.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1537.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1537.png deleted file mode 100644 index d41fe0adf9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1538.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1538.png deleted file mode 100644 index 0a9baf3d3f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1539.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1539.png deleted file mode 100644 index 6a62222496..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1540.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1540.png deleted file mode 100644 index 799a8c59c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1541.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1541.png deleted file mode 100644 index 32d6b40025..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1542.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1542.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1543.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1543.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1544.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1544.png deleted file mode 100644 index b72102b305..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1545.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1545.png deleted file mode 100644 index 1a104d14e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1546.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1546.png deleted file mode 100644 index c72d21e679..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1547.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1547.png deleted file mode 100644 index 5cb6f00ee9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1548.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1548.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1549.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1549.png deleted file mode 100644 index 1fa2b39af0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1550.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1550.png deleted file mode 100644 index c102d69b8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1551.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1551.png deleted file mode 100644 index 9835339349..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1553.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1553.png deleted file mode 100644 index 0acf6d851f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1554.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1554.png deleted file mode 100644 index a2d957e0b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1555.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1555.png deleted file mode 100644 index 1cbf19c63a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1556.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1556.png deleted file mode 100644 index a305996048..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1557.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1557.png deleted file mode 100644 index a305996048..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1562.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1562.png deleted file mode 100644 index 723a9233ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1563.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1563.png deleted file mode 100644 index 1cbf19c63a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1564.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1564.png deleted file mode 100644 index 7e5186ff7d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1565.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1565.png deleted file mode 100644 index 087f4f8ca0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1566.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1566.png deleted file mode 100644 index 4246b4a406..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1567.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1567.png deleted file mode 100644 index 8e5932b8ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1568.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1568.png deleted file mode 100644 index f5f6fb8a2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1570.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1570.png deleted file mode 100644 index fb32f58947..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1571.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1571.png deleted file mode 100644 index 1fc425d69e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1572.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1572.png deleted file mode 100644 index 7cf44f9b81..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1573.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1573.png deleted file mode 100644 index 1a0defd761..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1574.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1574.png deleted file mode 100644 index f8637ce6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1575.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1575.png deleted file mode 100644 index 5cb6f00ee9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1576.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1576.png deleted file mode 100644 index db9cabbdf9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1577.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1577.png deleted file mode 100644 index 60981c26fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1578.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1578.png deleted file mode 100644 index 5f49618891..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1579.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1579.png deleted file mode 100644 index b52273b18d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1582.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1582.png deleted file mode 100644 index 5c0f2c34b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1583.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1583.png deleted file mode 100644 index 3c61331cfb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1584.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1584.png deleted file mode 100644 index ed4e102730..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1585.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1585.png deleted file mode 100644 index 2ad3f90c04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1586.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1586.png deleted file mode 100644 index 740ec8e514..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1587.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1587.png deleted file mode 100644 index a45e827058..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1588.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1588.png deleted file mode 100644 index 1cbf19c63a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1589.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1589.png deleted file mode 100644 index 3e7b74e2a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1590.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1590.png deleted file mode 100644 index 511b81476a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1591.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1591.png deleted file mode 100644 index 5322377fd9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1592.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1592.png deleted file mode 100644 index e7567007c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1593.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1593.png deleted file mode 100644 index 59c81d28ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1594.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1594.png deleted file mode 100644 index 6ea0aba32a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1595.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1595.png deleted file mode 100644 index 354ec5ecf3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1596.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1596.png deleted file mode 100644 index 4145604f2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1597.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1597.png deleted file mode 100644 index e174587bfe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1598.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1598.png deleted file mode 100644 index 388e478c36..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1599.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1599.png deleted file mode 100644 index e1508f1467..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1600.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1600.png deleted file mode 100644 index f4e317bcdf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1601.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1601.png deleted file mode 100644 index 2abac60a51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1602.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1602.png deleted file mode 100644 index 33166c3fdc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1603.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1603.png deleted file mode 100644 index a2c303e187..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1604.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1604.png deleted file mode 100644 index 7d23c16d04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1605.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1605.png deleted file mode 100644 index a74a2b59af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1606.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1606.png deleted file mode 100644 index cd84998ec7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1607.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1607.png deleted file mode 100644 index da0b17b74f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1608.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1608.png deleted file mode 100644 index 670f9afb20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1609.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1609.png deleted file mode 100644 index f8637ce6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1610.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1610.png deleted file mode 100644 index ecf9ec1a5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1611.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1611.png deleted file mode 100644 index 693bc63c7b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1612.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1612.png deleted file mode 100644 index dfa1893b2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1613.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1613.png deleted file mode 100644 index 61f7b12dec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1614.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1614.png deleted file mode 100644 index cd84998ec7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1615.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1615.png deleted file mode 100644 index 0a9baf3d3f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1616.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1616.png deleted file mode 100644 index 89193f4449..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1617.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1617.png deleted file mode 100644 index a74a2b59af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1618.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1618.png deleted file mode 100644 index f4160c12c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1619.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1619.png deleted file mode 100644 index 0e01813739..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1620.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1620.png deleted file mode 100644 index 511b81476a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1621.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1621.png deleted file mode 100644 index e26b0794bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1622.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1622.png deleted file mode 100644 index 7cf669633b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1623.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1623.png deleted file mode 100644 index d6df08d765..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1624.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1624.png deleted file mode 100644 index e57096781b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1625.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1625.png deleted file mode 100644 index dd384c4571..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1626.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1626.png deleted file mode 100644 index 6c6d6d8350..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1627.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1627.png deleted file mode 100644 index 5c3bc97a44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1628.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1628.png deleted file mode 100644 index 2ea62ec4dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1629.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1629.png deleted file mode 100644 index b23cf0e24c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1630.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1630.png deleted file mode 100644 index 33c18d62d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1631.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1631.png deleted file mode 100644 index ecf9ec1a5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1632.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1632.png deleted file mode 100644 index ba67b60224..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1633.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1633.png deleted file mode 100644 index ee79b96925..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1634.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1634.png deleted file mode 100644 index f0cd8f8e4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1635.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1635.png deleted file mode 100644 index 9f702848de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1636.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1636.png deleted file mode 100644 index ebab810b2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1637.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1637.png deleted file mode 100644 index c7353c2a3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1638.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1638.png deleted file mode 100644 index 625d5cc8f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1639.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1639.png deleted file mode 100644 index 1fc425d69e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1640.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1640.png deleted file mode 100644 index 1863b2ab39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1641.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1641.png deleted file mode 100644 index 0e69f9321e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1642.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1642.png deleted file mode 100644 index 1cf68eea00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1643.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1643.png deleted file mode 100644 index db01371e16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1644.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1644.png deleted file mode 100644 index 25c70f83ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1645.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1645.png deleted file mode 100644 index ba67b60224..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1646.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1646.png deleted file mode 100644 index cd84998ec7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1647.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1647.png deleted file mode 100644 index a305996048..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1648.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1648.png deleted file mode 100644 index ecf9ec1a5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1649.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1649.png deleted file mode 100644 index c55d8ef6c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1650.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1650.png deleted file mode 100644 index 9d9ae74412..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1651.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1651.png deleted file mode 100644 index 6bcf82eedc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1652.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1652.png deleted file mode 100644 index 1f574bb0cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1653.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1653.png deleted file mode 100644 index 371c978f18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1654.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1654.png deleted file mode 100644 index 54c7546114..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1655.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1655.png deleted file mode 100644 index 372d0bec89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1656.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1656.png deleted file mode 100644 index 59a5713efc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1657.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1657.png deleted file mode 100644 index f8637ce6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1658.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1658.png deleted file mode 100644 index f4381e28da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1659.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1659.png deleted file mode 100644 index 53ed5369de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1660.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1660.png deleted file mode 100644 index 8a5745bbf6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1661.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1661.png deleted file mode 100644 index 46f36156d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1662.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1662.png deleted file mode 100644 index 4e37744cf9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1663.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1663.png deleted file mode 100644 index 94aaf3bbbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1664.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1664.png deleted file mode 100644 index 9169bc9e76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1665.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1665.png deleted file mode 100644 index fe90d78927..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1666.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1666.png deleted file mode 100644 index 785f4d409f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1667.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1667.png deleted file mode 100644 index f9a30f190f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1668.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1668.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1670.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1670.png deleted file mode 100644 index 8f5a5b7728..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1672.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1672.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1673.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1673.png deleted file mode 100644 index 583eb11a89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1674.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1674.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1675.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1675.png deleted file mode 100644 index cd84998ec7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1676.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1676.png deleted file mode 100644 index 46060914eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1677.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1677.png deleted file mode 100644 index 0a5d6c1334..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1678.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1678.png deleted file mode 100644 index 2f9762f0d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1679.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1679.png deleted file mode 100644 index be8cb86c39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1680.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1680.png deleted file mode 100644 index 37ca95785c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1681.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1681.png deleted file mode 100644 index b14afb22df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1682.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1682.png deleted file mode 100644 index ba9349692b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1683.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1683.png deleted file mode 100644 index 3dcb777772..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1684.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1684.png deleted file mode 100644 index 5affd622e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1685.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1685.png deleted file mode 100644 index c84f64954c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1686.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1686.png deleted file mode 100644 index f8637ce6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1687.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1687.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1688.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1688.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1689.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1689.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1690.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1690.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1691.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1691.png deleted file mode 100644 index 6d8afa5768..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1692.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1692.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1693.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1693.png deleted file mode 100644 index a73ef19cf6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1694.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1694.png deleted file mode 100644 index f32477f7b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1695.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1695.png deleted file mode 100644 index d1becd9647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1696.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1696.png deleted file mode 100644 index eb922f7493..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1697.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1697.png deleted file mode 100644 index 24c04ce67c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1698.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1698.png deleted file mode 100644 index f8637ce6c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1699.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1699.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1700.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1700.png deleted file mode 100644 index 7e22a706b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1701.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1701.png deleted file mode 100644 index 9faa4c4ba7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1702.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1702.png deleted file mode 100644 index b6a93fcb46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1703.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1703.png deleted file mode 100644 index b9d82f50d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1704.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1704.png deleted file mode 100644 index 4e1311d658..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1705.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1705.png deleted file mode 100644 index e7ec6a318c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1706.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1706.png deleted file mode 100644 index ecf9ec1a5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1707.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1707.png deleted file mode 100644 index 379991b737..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1708.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1708.png deleted file mode 100644 index 0a3cf46ce3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1709.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1709.png deleted file mode 100644 index d069697ef3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1710.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1710.png deleted file mode 100644 index a9a89a153b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1711.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1711.png deleted file mode 100644 index f404dcb260..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1712.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1712.png deleted file mode 100644 index d41a604c39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1713.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1713.png deleted file mode 100644 index 166dd0655a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1714.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1714.png deleted file mode 100644 index 28e25cb9c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1715.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1715.png deleted file mode 100644 index 2befc14d33..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1716.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1716.png deleted file mode 100644 index fa903de19c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1717.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1717.png deleted file mode 100644 index d467e73ca5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1718.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1718.png deleted file mode 100644 index 227af8e4a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1719.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1719.png deleted file mode 100644 index 702f315562..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1720.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1720.png deleted file mode 100644 index 702f315562..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1721.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1721.png deleted file mode 100644 index 327723418a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1722.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1722.png deleted file mode 100644 index 3bfe7c16bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1723.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1723.png deleted file mode 100644 index 8fdd3f80de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1724.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1724.png deleted file mode 100644 index 0ca7e5fefd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1725.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1725.png deleted file mode 100644 index d0220871db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1726.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1726.png deleted file mode 100644 index b81b72d411..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1727.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1727.png deleted file mode 100644 index 9c38815ff6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1728.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1728.png deleted file mode 100644 index c9e5d0c899..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1729.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1729.png deleted file mode 100644 index b81c419167..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1730.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1730.png deleted file mode 100644 index f158200d94..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1731.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1731.png deleted file mode 100644 index 6fcfefa53d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1732.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1732.png deleted file mode 100644 index 47bb8a8fb8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1733.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1733.png deleted file mode 100644 index 5fe12b8ffc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1734.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1734.png deleted file mode 100644 index e6b600203c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1735.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1735.png deleted file mode 100644 index ecd9640776..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1740.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1740.png deleted file mode 100644 index 0a83436d1c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1741.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1741.png deleted file mode 100644 index c54ff76be6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1742.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1742.png deleted file mode 100644 index ff62c86157..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1743.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1743.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1744.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1744.png deleted file mode 100644 index b377e8c0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1745.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1745.png deleted file mode 100644 index cf2e8f38bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1746.png b/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1746.png deleted file mode 100644 index bc180874cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartKnifeBlade/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1500.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1500.png deleted file mode 100644 index 15466b6c71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1501.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1501.png deleted file mode 100644 index c8b6759c4e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1502.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1502.png deleted file mode 100644 index 4b3ecd168f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1503.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1503.png deleted file mode 100644 index 28ee63f820..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1504.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1504.png deleted file mode 100644 index 261ad1349a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1505.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1505.png deleted file mode 100644 index 0186fab619..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1506.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1506.png deleted file mode 100644 index fcb811cf09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1507.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1507.png deleted file mode 100644 index 1f0e81e798..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1508.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1508.png deleted file mode 100644 index 49ea4e26b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1509.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1509.png deleted file mode 100644 index 0b865320ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1510.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1510.png deleted file mode 100644 index 522c72be58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1511.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1511.png deleted file mode 100644 index 49ea4e26b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1512.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1512.png deleted file mode 100644 index 7567cd7136..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1513.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1513.png deleted file mode 100644 index a53664e5b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1514.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1514.png deleted file mode 100644 index f3ee895a59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1515.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1515.png deleted file mode 100644 index 7bf5f2062b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1516.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1516.png deleted file mode 100644 index 1202997f0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1517.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1517.png deleted file mode 100644 index d6a7ab3490..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1518.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1518.png deleted file mode 100644 index a2a7f24fc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1519.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1519.png deleted file mode 100644 index f9294aacc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1520.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1520.png deleted file mode 100644 index 09bd6b0eb8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1521.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1521.png deleted file mode 100644 index e4f8794482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1522.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1522.png deleted file mode 100644 index d7e7cf3a23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1523.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1523.png deleted file mode 100644 index f36944b113..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1524.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1524.png deleted file mode 100644 index 2f355fc854..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1525.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1525.png deleted file mode 100644 index 6cbdeb4eef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1526.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1526.png deleted file mode 100644 index 121d89f4bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1527.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1527.png deleted file mode 100644 index d2a59b3409..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1528.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1528.png deleted file mode 100644 index de77f20385..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1529.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1529.png deleted file mode 100644 index 931405c086..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1530.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1530.png deleted file mode 100644 index a8b40263fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1531.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1531.png deleted file mode 100644 index 43c14dd0de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1532.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1532.png deleted file mode 100644 index b51d7e1c6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1533.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1533.png deleted file mode 100644 index 7d1a4e3f98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1534.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1534.png deleted file mode 100644 index 6aaeea0241..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1535.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1535.png deleted file mode 100644 index fe425dadbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1536.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1536.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1537.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1537.png deleted file mode 100644 index 3f3ac5c79e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1538.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1538.png deleted file mode 100644 index 182a9e5e9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1539.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1539.png deleted file mode 100644 index b4ef8dc801..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1540.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1540.png deleted file mode 100644 index bc501d9df0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1541.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1541.png deleted file mode 100644 index 22816558ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1542.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1542.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1543.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1543.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1544.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1544.png deleted file mode 100644 index a416a20bfd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1545.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1545.png deleted file mode 100644 index f9ce9ea8be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1546.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1546.png deleted file mode 100644 index 5003b00dff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1547.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1547.png deleted file mode 100644 index 160cee39d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1548.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1548.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1549.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1549.png deleted file mode 100644 index ca247cd47c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1550.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1550.png deleted file mode 100644 index c5ea1966bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1551.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1551.png deleted file mode 100644 index 022540945f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1553.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1553.png deleted file mode 100644 index 37ffd7a16b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1554.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1554.png deleted file mode 100644 index 7b8660a584..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1555.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1555.png deleted file mode 100644 index 0efe665396..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1556.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1556.png deleted file mode 100644 index f3ee895a59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1557.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1557.png deleted file mode 100644 index f3ee895a59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1562.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1562.png deleted file mode 100644 index 1c122280d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1563.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1563.png deleted file mode 100644 index 0efe665396..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1564.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1564.png deleted file mode 100644 index 30dbc4a5db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1565.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1565.png deleted file mode 100644 index 707ed64e0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1566.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1566.png deleted file mode 100644 index e2bc539a1d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1567.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1567.png deleted file mode 100644 index 96132ca254..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1568.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1568.png deleted file mode 100644 index 65e1be1342..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1570.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1570.png deleted file mode 100644 index 6b30a1bc96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1571.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1571.png deleted file mode 100644 index 9c06b8ad47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1572.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1572.png deleted file mode 100644 index e99528739b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1573.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1573.png deleted file mode 100644 index dc69024491..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1574.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1574.png deleted file mode 100644 index e4f8794482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1575.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1575.png deleted file mode 100644 index 160cee39d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1576.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1576.png deleted file mode 100644 index 5f2e684ad1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1577.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1577.png deleted file mode 100644 index b71b4eb36f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1578.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1578.png deleted file mode 100644 index da30f1c097..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1579.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1579.png deleted file mode 100644 index 49ea4e26b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1582.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1582.png deleted file mode 100644 index 5ad3150806..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1583.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1583.png deleted file mode 100644 index 49917e98d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1584.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1584.png deleted file mode 100644 index 5272991b87..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1585.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1585.png deleted file mode 100644 index 7a694046c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1586.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1586.png deleted file mode 100644 index 9a2c91d4af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1587.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1587.png deleted file mode 100644 index 9d5b44a8f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1588.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1588.png deleted file mode 100644 index 0efe665396..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1589.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1589.png deleted file mode 100644 index b5e5d8c118..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1590.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1590.png deleted file mode 100644 index b011811272..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1591.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1591.png deleted file mode 100644 index 3fc1bbbd72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1592.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1592.png deleted file mode 100644 index 7e05b0212a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1593.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1593.png deleted file mode 100644 index 7fe4b170df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1594.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1594.png deleted file mode 100644 index f96cbc569f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1595.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1595.png deleted file mode 100644 index d966f43a75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1596.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1596.png deleted file mode 100644 index 30fb712fd3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1597.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1597.png deleted file mode 100644 index d5dec9daf1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1598.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1598.png deleted file mode 100644 index 69c76715b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1599.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1599.png deleted file mode 100644 index 4e133a8060..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1600.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1600.png deleted file mode 100644 index ca24a0e376..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1601.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1601.png deleted file mode 100644 index b3b14d5468..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1602.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1602.png deleted file mode 100644 index 291f220cf5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1603.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1603.png deleted file mode 100644 index d139422b35..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1604.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1604.png deleted file mode 100644 index 6de16d284d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1605.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1605.png deleted file mode 100644 index 8cf5fc2bc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1606.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1606.png deleted file mode 100644 index ff677608fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1607.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1607.png deleted file mode 100644 index fc96a22cbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1608.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1608.png deleted file mode 100644 index 0f3e6d47f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1609.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1609.png deleted file mode 100644 index e4f8794482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1610.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1610.png deleted file mode 100644 index 522c72be58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1611.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1611.png deleted file mode 100644 index 4e93ce3a78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1612.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1612.png deleted file mode 100644 index bd00804dc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1613.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1613.png deleted file mode 100644 index b40d1bc350..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1614.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1614.png deleted file mode 100644 index ff677608fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1615.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1615.png deleted file mode 100644 index 182a9e5e9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1616.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1616.png deleted file mode 100644 index ba1ba475a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1617.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1617.png deleted file mode 100644 index 8cf5fc2bc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1618.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1618.png deleted file mode 100644 index 044089a718..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1619.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1619.png deleted file mode 100644 index 900ec789dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1620.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1620.png deleted file mode 100644 index b011811272..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1621.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1621.png deleted file mode 100644 index 1a32e2ad9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1622.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1622.png deleted file mode 100644 index 98734793d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1623.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1623.png deleted file mode 100644 index 22dd670865..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1624.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1624.png deleted file mode 100644 index ba472ebfbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1625.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1625.png deleted file mode 100644 index 1904a0a964..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1626.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1626.png deleted file mode 100644 index 608cb62518..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1627.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1627.png deleted file mode 100644 index 30eb476cb3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1628.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1628.png deleted file mode 100644 index 34a0cb7aed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1629.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1629.png deleted file mode 100644 index 15c4f54d11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1630.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1630.png deleted file mode 100644 index 76014549fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1631.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1631.png deleted file mode 100644 index 522c72be58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1632.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1632.png deleted file mode 100644 index ec1644cc3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1633.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1633.png deleted file mode 100644 index 65befb0b2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1634.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1634.png deleted file mode 100644 index 4069000067..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1635.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1635.png deleted file mode 100644 index f20ee52a04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1636.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1636.png deleted file mode 100644 index 93a4df6390..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1637.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1637.png deleted file mode 100644 index cec0a04d9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1638.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1638.png deleted file mode 100644 index 08d5306f43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1639.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1639.png deleted file mode 100644 index 9c06b8ad47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1640.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1640.png deleted file mode 100644 index da1ff8b774..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1641.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1641.png deleted file mode 100644 index f57883d328..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1642.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1642.png deleted file mode 100644 index 1723c79983..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1643.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1643.png deleted file mode 100644 index 39ac2b994c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1644.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1644.png deleted file mode 100644 index 50b3f97d72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1645.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1645.png deleted file mode 100644 index ec1644cc3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1646.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1646.png deleted file mode 100644 index ff677608fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1647.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1647.png deleted file mode 100644 index f3ee895a59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1648.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1648.png deleted file mode 100644 index 522c72be58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1649.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1649.png deleted file mode 100644 index c079df3d05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1650.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1650.png deleted file mode 100644 index 1856ec4de8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1651.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1651.png deleted file mode 100644 index 6bfa975324..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1652.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1652.png deleted file mode 100644 index c76e633369..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1653.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1653.png deleted file mode 100644 index 760a725ce3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1654.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1654.png deleted file mode 100644 index 73f64342c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1655.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1655.png deleted file mode 100644 index f57a24175f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1656.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1656.png deleted file mode 100644 index 295af42c54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1657.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1657.png deleted file mode 100644 index e4f8794482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1658.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1658.png deleted file mode 100644 index c6c82a841c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1659.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1659.png deleted file mode 100644 index c9bb9dc7e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1660.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1660.png deleted file mode 100644 index d496fcb178..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1661.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1661.png deleted file mode 100644 index 1d5076766c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1662.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1662.png deleted file mode 100644 index 60bd1b6fc7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1663.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1663.png deleted file mode 100644 index 3a1063a10c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1664.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1664.png deleted file mode 100644 index f815190c40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1665.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1665.png deleted file mode 100644 index 84c179f0c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1666.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1666.png deleted file mode 100644 index 715efc63ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1667.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1667.png deleted file mode 100644 index 63a735ddb1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1668.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1668.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1670.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1670.png deleted file mode 100644 index 04c5b909b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1672.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1672.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1673.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1673.png deleted file mode 100644 index 3ee58bfc47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1674.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1674.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1675.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1675.png deleted file mode 100644 index ff677608fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1676.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1676.png deleted file mode 100644 index 1d4066700c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1677.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1677.png deleted file mode 100644 index dc58af3322..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1678.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1678.png deleted file mode 100644 index 6d55feb9a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1679.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1679.png deleted file mode 100644 index 68373b8d2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1680.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1680.png deleted file mode 100644 index 3a5e3b998d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1681.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1681.png deleted file mode 100644 index 5245db03b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1682.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1682.png deleted file mode 100644 index a901e28aad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1683.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1683.png deleted file mode 100644 index cb561f37b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1684.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1684.png deleted file mode 100644 index 0f5cd098cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1685.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1685.png deleted file mode 100644 index 9f6b5033a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1686.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1686.png deleted file mode 100644 index e4f8794482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1687.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1687.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1688.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1688.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1689.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1689.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1690.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1690.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1691.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1691.png deleted file mode 100644 index b9c3ddb8f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1692.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1692.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1693.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1693.png deleted file mode 100644 index 9aa6b59895..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1694.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1694.png deleted file mode 100644 index 8ca7de0a31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1695.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1695.png deleted file mode 100644 index 36cd440b91..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1696.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1696.png deleted file mode 100644 index c96b5c9bd7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1697.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1697.png deleted file mode 100644 index 23f664ec49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1698.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1698.png deleted file mode 100644 index e4f8794482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1699.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1699.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1700.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1700.png deleted file mode 100644 index 17ff0397db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1701.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1701.png deleted file mode 100644 index 268a026a25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1702.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1702.png deleted file mode 100644 index 0be0e9537d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1703.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1703.png deleted file mode 100644 index cd16c71d40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1704.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1704.png deleted file mode 100644 index 35d44f0dd1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1705.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1705.png deleted file mode 100644 index c015472033..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1706.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1706.png deleted file mode 100644 index 522c72be58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1707.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1707.png deleted file mode 100644 index 0908753b1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1708.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1708.png deleted file mode 100644 index 261ad1349a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1709.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1709.png deleted file mode 100644 index d0c54a42a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1710.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1710.png deleted file mode 100644 index 3f77089604..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1711.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1711.png deleted file mode 100644 index e1f1a4132a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1712.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1712.png deleted file mode 100644 index 3e40b3170e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1713.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1713.png deleted file mode 100644 index d132af322c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1714.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1714.png deleted file mode 100644 index 32b29ffaf5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1715.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1715.png deleted file mode 100644 index 2288c9c9aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1716.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1716.png deleted file mode 100644 index 8579d9706a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1717.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1717.png deleted file mode 100644 index ea31a0fd9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1718.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1718.png deleted file mode 100644 index 69bcfd1125..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1719.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1719.png deleted file mode 100644 index e54ad781fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1720.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1720.png deleted file mode 100644 index e54ad781fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1721.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1721.png deleted file mode 100644 index 58199fb22e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1722.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1722.png deleted file mode 100644 index b29146a35f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1723.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1723.png deleted file mode 100644 index db07b05506..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1724.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1724.png deleted file mode 100644 index e54aea602c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1725.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1725.png deleted file mode 100644 index 058b406798..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1726.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1726.png deleted file mode 100644 index 9f5027e274..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1727.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1727.png deleted file mode 100644 index 1c77c79bdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1728.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1728.png deleted file mode 100644 index 83e1767215..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1729.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1729.png deleted file mode 100644 index 6180a188ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1730.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1730.png deleted file mode 100644 index 9ece93fe2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1731.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1731.png deleted file mode 100644 index 7337205c3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1732.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1732.png deleted file mode 100644 index 36d173a672..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1733.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1733.png deleted file mode 100644 index 986c389eb3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1734.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1734.png deleted file mode 100644 index f43f4be57b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1735.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1735.png deleted file mode 100644 index b7e0c2a8e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1740.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1740.png deleted file mode 100644 index 64fdab9121..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1741.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1741.png deleted file mode 100644 index bec17fbc55..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1742.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1742.png deleted file mode 100644 index 9f9ff65211..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1743.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1743.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1744.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1744.png deleted file mode 100644 index 2f0b47b453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1745.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1745.png deleted file mode 100644 index 74049674d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1746.png b/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1746.png deleted file mode 100644 index 95d40848d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeGuard/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1500.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1500.png deleted file mode 100644 index ec5e624704..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1501.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1501.png deleted file mode 100644 index 809c6d9419..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1502.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1502.png deleted file mode 100644 index 7b5a466914..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1503.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1503.png deleted file mode 100644 index 488dfef909..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1504.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1504.png deleted file mode 100644 index 2f6f2e7f71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1505.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1505.png deleted file mode 100644 index 7ee6aa6a89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1506.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1506.png deleted file mode 100644 index 95b505ce9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1507.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1507.png deleted file mode 100644 index 64e3f96606..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1508.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1508.png deleted file mode 100644 index 99d45ecf7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1509.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1509.png deleted file mode 100644 index 65177141c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1510.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1510.png deleted file mode 100644 index 99bc7ad2d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1511.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1511.png deleted file mode 100644 index 99d45ecf7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1512.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1512.png deleted file mode 100644 index 9b387de832..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1513.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1513.png deleted file mode 100644 index c5bcd7b690..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1514.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1514.png deleted file mode 100644 index cd812629dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1515.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1515.png deleted file mode 100644 index 515c2ace7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1516.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1516.png deleted file mode 100644 index 75512f782e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1517.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1517.png deleted file mode 100644 index e29354b4c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1518.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1518.png deleted file mode 100644 index 6c183cc0cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1519.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1519.png deleted file mode 100644 index b5d2dddb9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1520.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1520.png deleted file mode 100644 index 065c7847fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1521.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1521.png deleted file mode 100644 index 6d7d0f405a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1522.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1522.png deleted file mode 100644 index f3e11d7515..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1523.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1523.png deleted file mode 100644 index 0d5b99539c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1524.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1524.png deleted file mode 100644 index eeba08052a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1525.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1525.png deleted file mode 100644 index e45d4ba5b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1526.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1526.png deleted file mode 100644 index 9af16844a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1527.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1527.png deleted file mode 100644 index 963b94d65c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1528.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1528.png deleted file mode 100644 index 8449ccea20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1529.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1529.png deleted file mode 100644 index fd6682fac9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1530.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1530.png deleted file mode 100644 index b6f33be6a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1531.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1531.png deleted file mode 100644 index 65f31ddfb9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1532.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1532.png deleted file mode 100644 index 0ecb3433f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1533.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1533.png deleted file mode 100644 index e0586e26cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1534.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1534.png deleted file mode 100644 index c89cd5c6f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1535.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1535.png deleted file mode 100644 index 1cc7d59222..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1536.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1536.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1537.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1537.png deleted file mode 100644 index 309fbadde5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1538.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1538.png deleted file mode 100644 index e431b3f98c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1539.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1539.png deleted file mode 100644 index 1cab47f894..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1540.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1540.png deleted file mode 100644 index 237d8c0ea7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1541.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1541.png deleted file mode 100644 index f42ca2f894..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1542.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1542.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1543.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1543.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1544.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1544.png deleted file mode 100644 index aa35ced81f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1545.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1545.png deleted file mode 100644 index 2418b6053f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1546.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1546.png deleted file mode 100644 index 18f5e85aa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1547.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1547.png deleted file mode 100644 index 846fec075f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1548.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1548.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1549.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1549.png deleted file mode 100644 index ebc759898a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1550.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1550.png deleted file mode 100644 index 3011676286..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1551.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1551.png deleted file mode 100644 index 007e7c06bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1553.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1553.png deleted file mode 100644 index e67166a6af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1554.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1554.png deleted file mode 100644 index 2837d99282..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1555.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1555.png deleted file mode 100644 index 70bd1f9b06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1556.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1556.png deleted file mode 100644 index cd812629dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1557.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1557.png deleted file mode 100644 index cd812629dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1562.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1562.png deleted file mode 100644 index 73ce817f9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1563.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1563.png deleted file mode 100644 index 70bd1f9b06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1564.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1564.png deleted file mode 100644 index 500c184d92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1565.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1565.png deleted file mode 100644 index 3683eb1721..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1566.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1566.png deleted file mode 100644 index 28c0bbcab0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1567.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1567.png deleted file mode 100644 index 761e2a2111..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1568.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1568.png deleted file mode 100644 index d7566b13d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1570.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1570.png deleted file mode 100644 index d573fe4cb3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1571.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1571.png deleted file mode 100644 index 0934deb390..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1572.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1572.png deleted file mode 100644 index a27c524a57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1573.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1573.png deleted file mode 100644 index b242d29f64..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1574.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1574.png deleted file mode 100644 index 6d7d0f405a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1575.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1575.png deleted file mode 100644 index 846fec075f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1576.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1576.png deleted file mode 100644 index 9765ceb3c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1577.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1577.png deleted file mode 100644 index 8f423e4934..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1578.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1578.png deleted file mode 100644 index b0658064d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1579.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1579.png deleted file mode 100644 index 99d45ecf7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1582.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1582.png deleted file mode 100644 index 9a9ed3f95c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1583.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1583.png deleted file mode 100644 index 911c5e3f8a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1584.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1584.png deleted file mode 100644 index 326472ffbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1585.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1585.png deleted file mode 100644 index d7d9d63d28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1586.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1586.png deleted file mode 100644 index 6cf78e2610..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1587.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1587.png deleted file mode 100644 index 37ba4a4442..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1588.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1588.png deleted file mode 100644 index 70bd1f9b06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1589.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1589.png deleted file mode 100644 index 61eab9fbba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1590.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1590.png deleted file mode 100644 index 7007ee1e4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1591.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1591.png deleted file mode 100644 index 71167695e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1592.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1592.png deleted file mode 100644 index 0d670fdef8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1593.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1593.png deleted file mode 100644 index 3be94363b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1594.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1594.png deleted file mode 100644 index 0b9eee9db2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1595.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1595.png deleted file mode 100644 index 3a8353fd90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1596.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1596.png deleted file mode 100644 index 78b699bc7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1597.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1597.png deleted file mode 100644 index 6ebf46af11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1598.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1598.png deleted file mode 100644 index 0590427081..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1599.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1599.png deleted file mode 100644 index b50c667931..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1600.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1600.png deleted file mode 100644 index 82e9b7aecc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1601.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1601.png deleted file mode 100644 index 89e39194fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1602.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1602.png deleted file mode 100644 index aa45853e10..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1603.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1603.png deleted file mode 100644 index e02029a2c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1604.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1604.png deleted file mode 100644 index dfa951154d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1605.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1605.png deleted file mode 100644 index 85c2061875..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1606.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1606.png deleted file mode 100644 index 1c95ad1c7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1607.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1607.png deleted file mode 100644 index a2866957de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1608.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1608.png deleted file mode 100644 index 4e9abe07ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1609.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1609.png deleted file mode 100644 index 6d7d0f405a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1610.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1610.png deleted file mode 100644 index 99bc7ad2d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1611.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1611.png deleted file mode 100644 index 83216195e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1612.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1612.png deleted file mode 100644 index c8da4af968..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1613.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1613.png deleted file mode 100644 index 425a583333..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1614.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1614.png deleted file mode 100644 index 1c95ad1c7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1615.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1615.png deleted file mode 100644 index e431b3f98c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1616.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1616.png deleted file mode 100644 index 5562f54578..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1617.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1617.png deleted file mode 100644 index 85c2061875..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1618.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1618.png deleted file mode 100644 index 914bfd4f04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1619.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1619.png deleted file mode 100644 index d319bdef70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1620.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1620.png deleted file mode 100644 index 7007ee1e4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1621.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1621.png deleted file mode 100644 index fb6f13f6a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1622.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1622.png deleted file mode 100644 index 0d60a5c06f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1623.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1623.png deleted file mode 100644 index 6f2c9b708b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1624.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1624.png deleted file mode 100644 index 6216d03ef1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1625.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1625.png deleted file mode 100644 index 7ea4b95aea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1626.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1626.png deleted file mode 100644 index db351caf68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1627.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1627.png deleted file mode 100644 index 4427e934ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1628.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1628.png deleted file mode 100644 index d6cd7bf2ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1629.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1629.png deleted file mode 100644 index 3b21b8b466..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1630.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1630.png deleted file mode 100644 index cf8c542203..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1631.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1631.png deleted file mode 100644 index 99bc7ad2d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1632.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1632.png deleted file mode 100644 index 9e1f5cd99d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1633.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1633.png deleted file mode 100644 index d2077e033c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1634.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1634.png deleted file mode 100644 index 928fcf48ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1635.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1635.png deleted file mode 100644 index 1a378a676d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1636.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1636.png deleted file mode 100644 index 9489f5b4f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1637.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1637.png deleted file mode 100644 index 11e87d1e9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1638.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1638.png deleted file mode 100644 index f46e2ead72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1639.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1639.png deleted file mode 100644 index 0934deb390..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1640.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1640.png deleted file mode 100644 index ec102309b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1641.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1641.png deleted file mode 100644 index 8250aa104e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1642.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1642.png deleted file mode 100644 index 8d0168fade..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1643.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1643.png deleted file mode 100644 index deee98de53..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1644.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1644.png deleted file mode 100644 index 00fdc12d04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1645.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1645.png deleted file mode 100644 index 9e1f5cd99d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1646.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1646.png deleted file mode 100644 index 1c95ad1c7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1647.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1647.png deleted file mode 100644 index cd812629dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1648.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1648.png deleted file mode 100644 index 99bc7ad2d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1649.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1649.png deleted file mode 100644 index 79a360c872..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1650.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1650.png deleted file mode 100644 index 0c9185bce8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1651.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1651.png deleted file mode 100644 index 91a6404b5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1652.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1652.png deleted file mode 100644 index 21d4d40967..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1653.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1653.png deleted file mode 100644 index d122045723..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1654.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1654.png deleted file mode 100644 index ce4eabcd39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1655.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1655.png deleted file mode 100644 index 42bd31d3bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1656.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1656.png deleted file mode 100644 index a4d21a4884..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1657.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1657.png deleted file mode 100644 index 6d7d0f405a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1658.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1658.png deleted file mode 100644 index e0060ad17b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1659.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1659.png deleted file mode 100644 index 8a47cfe593..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1660.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1660.png deleted file mode 100644 index 41bcaa7b59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1661.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1661.png deleted file mode 100644 index f9b6d0fbf9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1662.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1662.png deleted file mode 100644 index b028d3580f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1663.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1663.png deleted file mode 100644 index 3b139f4f75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1664.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1664.png deleted file mode 100644 index 1bf2a593db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1665.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1665.png deleted file mode 100644 index 60c937d47b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1666.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1666.png deleted file mode 100644 index 5cc4e4dc1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1667.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1667.png deleted file mode 100644 index 0aa93ae181..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1668.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1668.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1670.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1670.png deleted file mode 100644 index dc824ebbfa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1672.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1672.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1673.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1673.png deleted file mode 100644 index 6ad1a2d50f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1674.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1674.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1675.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1675.png deleted file mode 100644 index 1c95ad1c7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1676.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1676.png deleted file mode 100644 index d79ac589ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1677.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1677.png deleted file mode 100644 index 81008a23c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1678.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1678.png deleted file mode 100644 index ac84bb17b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1679.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1679.png deleted file mode 100644 index e9f492ab9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1680.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1680.png deleted file mode 100644 index ebead89433..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1681.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1681.png deleted file mode 100644 index fa7789d084..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1682.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1682.png deleted file mode 100644 index 729545b382..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1683.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1683.png deleted file mode 100644 index d91f3a9682..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1684.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1684.png deleted file mode 100644 index 79be1835d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1685.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1685.png deleted file mode 100644 index 0e6425ab5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1686.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1686.png deleted file mode 100644 index 6d7d0f405a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1687.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1687.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1688.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1688.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1689.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1689.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1690.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1690.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1691.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1691.png deleted file mode 100644 index ab913f3126..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1692.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1692.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1693.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1693.png deleted file mode 100644 index 79f22e169a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1694.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1694.png deleted file mode 100644 index 24014d6be7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1695.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1695.png deleted file mode 100644 index 824e7dea2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1696.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1696.png deleted file mode 100644 index 442f261278..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1697.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1697.png deleted file mode 100644 index 5df517d9c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1698.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1698.png deleted file mode 100644 index 6d7d0f405a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1699.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1699.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1700.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1700.png deleted file mode 100644 index 2b6b746505..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1701.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1701.png deleted file mode 100644 index d6985d456f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1702.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1702.png deleted file mode 100644 index 7ac7c9fa27..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1703.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1703.png deleted file mode 100644 index 2d95ab2770..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1704.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1704.png deleted file mode 100644 index f94d9b8308..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1705.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1705.png deleted file mode 100644 index 3ea86dcebe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1706.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1706.png deleted file mode 100644 index 99bc7ad2d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1707.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1707.png deleted file mode 100644 index 565b1b3b63..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1708.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1708.png deleted file mode 100644 index 2f6f2e7f71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1709.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1709.png deleted file mode 100644 index 7c450c0144..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1710.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1710.png deleted file mode 100644 index 759d8bbe9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1711.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1711.png deleted file mode 100644 index 53cc1fb5fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1712.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1712.png deleted file mode 100644 index 7a0689ea2e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1713.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1713.png deleted file mode 100644 index b235a3030d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1714.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1714.png deleted file mode 100644 index e45618e9f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1715.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1715.png deleted file mode 100644 index f94dfc14e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1716.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1716.png deleted file mode 100644 index fdbc024bc5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1717.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1717.png deleted file mode 100644 index b6c9d2e100..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1718.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1718.png deleted file mode 100644 index 90cdfa82ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1719.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1719.png deleted file mode 100644 index 0ec8c50307..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1720.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1720.png deleted file mode 100644 index 0ec8c50307..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1721.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1721.png deleted file mode 100644 index e2444e2853..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1722.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1722.png deleted file mode 100644 index 53cfccfce7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1723.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1723.png deleted file mode 100644 index 79c60167ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1724.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1724.png deleted file mode 100644 index c5917c04a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1725.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1725.png deleted file mode 100644 index 4dd08e72e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1726.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1726.png deleted file mode 100644 index 86d3da3e21..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1727.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1727.png deleted file mode 100644 index e163fbae14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1728.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1728.png deleted file mode 100644 index cfe24c3c0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1729.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1729.png deleted file mode 100644 index e07591a7b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1730.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1730.png deleted file mode 100644 index 5b87593b0d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1731.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1731.png deleted file mode 100644 index c163aacb4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1732.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1732.png deleted file mode 100644 index 4aee6f4864..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1733.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1733.png deleted file mode 100644 index 61a1ce8ad5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1734.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1734.png deleted file mode 100644 index 78cfea630e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1735.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1735.png deleted file mode 100644 index 4b6e90fc24..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1740.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1740.png deleted file mode 100644 index ab867f75a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1741.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1741.png deleted file mode 100644 index 18324658dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1742.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1742.png deleted file mode 100644 index 40cc9f0d47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1743.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1743.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1744.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1744.png deleted file mode 100644 index 4c6f46ac6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1745.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1745.png deleted file mode 100644 index d8cad6c13b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1746.png b/front/public/images/small/TGregworks/tGregToolPartLargePlate/1746.png deleted file mode 100644 index 21ac39b14a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargePlate/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1500.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1500.png deleted file mode 100644 index 58b20644a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1501.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1501.png deleted file mode 100644 index 2013b64c37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1502.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1502.png deleted file mode 100644 index 8d81a333f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1503.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1503.png deleted file mode 100644 index 9607482b6f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1504.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1504.png deleted file mode 100644 index 5e08b736e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1505.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1505.png deleted file mode 100644 index b6cdc28717..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1506.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1506.png deleted file mode 100644 index 377a6f4fa8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1507.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1507.png deleted file mode 100644 index 0cd4a7edd7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1508.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1508.png deleted file mode 100644 index 64511dafa0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1509.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1509.png deleted file mode 100644 index 21953ce792..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1510.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1510.png deleted file mode 100644 index 3751cc8216..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1511.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1511.png deleted file mode 100644 index 64511dafa0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1512.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1512.png deleted file mode 100644 index 4a769e24f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1513.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1513.png deleted file mode 100644 index 8eb95ccbba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1514.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1514.png deleted file mode 100644 index 76015106c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1515.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1515.png deleted file mode 100644 index ee6224990b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1516.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1516.png deleted file mode 100644 index 59b2ac45dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1517.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1517.png deleted file mode 100644 index bcce842724..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1518.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1518.png deleted file mode 100644 index 3f9bcb879d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1519.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1519.png deleted file mode 100644 index c2cd690288..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1520.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1520.png deleted file mode 100644 index a91c66b2d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1521.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1521.png deleted file mode 100644 index c457db76de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1522.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1522.png deleted file mode 100644 index 3046978e65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1523.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1523.png deleted file mode 100644 index 64ce5c228c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1524.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1524.png deleted file mode 100644 index 28505a582f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1525.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1525.png deleted file mode 100644 index ae4e2d2cc8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1526.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1526.png deleted file mode 100644 index bd56dc3bfa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1527.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1527.png deleted file mode 100644 index a7d96efb3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1528.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1528.png deleted file mode 100644 index 098a3c7a07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1529.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1529.png deleted file mode 100644 index 52db4cc593..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1530.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1530.png deleted file mode 100644 index 788b2aa0c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1531.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1531.png deleted file mode 100644 index e3a0de8bf8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1532.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1532.png deleted file mode 100644 index 1f7e2e784d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1533.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1533.png deleted file mode 100644 index df9e1307b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1534.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1534.png deleted file mode 100644 index 2f303f8a69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1535.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1535.png deleted file mode 100644 index bebb659995..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1536.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1536.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1537.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1537.png deleted file mode 100644 index 0751c777a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1538.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1538.png deleted file mode 100644 index 6edc0b7d44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1539.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1539.png deleted file mode 100644 index 493b8b7a0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1540.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1540.png deleted file mode 100644 index 90b1109356..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1541.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1541.png deleted file mode 100644 index bfa0617f26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1542.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1542.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1543.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1543.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1544.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1544.png deleted file mode 100644 index 3e9bfb15b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1545.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1545.png deleted file mode 100644 index 52a9fd3af0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1546.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1546.png deleted file mode 100644 index 886f8083f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1547.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1547.png deleted file mode 100644 index cad770cf3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1548.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1548.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1549.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1549.png deleted file mode 100644 index 27e2912a1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1550.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1550.png deleted file mode 100644 index e80474d473..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1551.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1551.png deleted file mode 100644 index 7932bf0a78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1553.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1553.png deleted file mode 100644 index 69b7366af4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1554.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1554.png deleted file mode 100644 index 25ca15da54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1555.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1555.png deleted file mode 100644 index 677c070dab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1556.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1556.png deleted file mode 100644 index 76015106c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1557.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1557.png deleted file mode 100644 index 76015106c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1562.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1562.png deleted file mode 100644 index 64439b2d17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1563.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1563.png deleted file mode 100644 index 677c070dab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1564.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1564.png deleted file mode 100644 index 570b3b8f0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1565.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1565.png deleted file mode 100644 index a7c92259a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1566.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1566.png deleted file mode 100644 index 88a6ffbcab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1567.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1567.png deleted file mode 100644 index a70ac6416a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1568.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1568.png deleted file mode 100644 index 6ba9eb38b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1570.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1570.png deleted file mode 100644 index c0647c141a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1571.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1571.png deleted file mode 100644 index 27ac3116e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1572.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1572.png deleted file mode 100644 index 27583160a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1573.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1573.png deleted file mode 100644 index 7c03b3a3ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1574.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1574.png deleted file mode 100644 index c457db76de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1575.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1575.png deleted file mode 100644 index cad770cf3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1576.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1576.png deleted file mode 100644 index 0df0648d79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1577.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1577.png deleted file mode 100644 index 4da0eff633..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1578.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1578.png deleted file mode 100644 index dc15939ade..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1579.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1579.png deleted file mode 100644 index 64511dafa0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1582.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1582.png deleted file mode 100644 index e736fb62b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1583.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1583.png deleted file mode 100644 index 5e98ed379c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1584.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1584.png deleted file mode 100644 index 739a9f8cde..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1585.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1585.png deleted file mode 100644 index 37f9ac6760..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1586.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1586.png deleted file mode 100644 index fdf5d7db17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1587.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1587.png deleted file mode 100644 index db62b68dd5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1588.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1588.png deleted file mode 100644 index 677c070dab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1589.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1589.png deleted file mode 100644 index d195820bcd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1590.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1590.png deleted file mode 100644 index d91c01372a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1591.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1591.png deleted file mode 100644 index 1d51906ab6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1592.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1592.png deleted file mode 100644 index 56631d2290..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1593.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1593.png deleted file mode 100644 index 24d1962f74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1594.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1594.png deleted file mode 100644 index 210a941a33..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1595.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1595.png deleted file mode 100644 index f8a75fe78b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1596.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1596.png deleted file mode 100644 index 176f4fce96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1597.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1597.png deleted file mode 100644 index 71d2281ac0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1598.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1598.png deleted file mode 100644 index 363883f632..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1599.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1599.png deleted file mode 100644 index b3d3e56a98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1600.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1600.png deleted file mode 100644 index aa05ac0e68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1601.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1601.png deleted file mode 100644 index f25e7f8de0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1602.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1602.png deleted file mode 100644 index 6736b2dfb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1603.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1603.png deleted file mode 100644 index 16d3cc0233..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1604.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1604.png deleted file mode 100644 index c990964dc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1605.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1605.png deleted file mode 100644 index e19d2bb115..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1606.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1606.png deleted file mode 100644 index 6d6b84e65a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1607.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1607.png deleted file mode 100644 index ccb9238263..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1608.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1608.png deleted file mode 100644 index 08cfe35366..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1609.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1609.png deleted file mode 100644 index c457db76de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1610.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1610.png deleted file mode 100644 index 3751cc8216..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1611.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1611.png deleted file mode 100644 index df25c9bdce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1612.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1612.png deleted file mode 100644 index 004dc6f896..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1613.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1613.png deleted file mode 100644 index 98c8eb6d73..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1614.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1614.png deleted file mode 100644 index 6d6b84e65a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1615.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1615.png deleted file mode 100644 index 6edc0b7d44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1616.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1616.png deleted file mode 100644 index 737c44e81f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1617.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1617.png deleted file mode 100644 index e19d2bb115..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1618.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1618.png deleted file mode 100644 index 8c709ca7fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1619.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1619.png deleted file mode 100644 index 2b15c0a919..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1620.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1620.png deleted file mode 100644 index d91c01372a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1621.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1621.png deleted file mode 100644 index 7789dfc023..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1622.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1622.png deleted file mode 100644 index 73ad848aee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1623.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1623.png deleted file mode 100644 index 4ab82dc368..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1624.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1624.png deleted file mode 100644 index e7ecba855a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1625.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1625.png deleted file mode 100644 index 080dd0a700..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1626.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1626.png deleted file mode 100644 index 55668848d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1627.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1627.png deleted file mode 100644 index 37407fcbbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1628.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1628.png deleted file mode 100644 index 1e2cb0334f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1629.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1629.png deleted file mode 100644 index 6ed12fabfd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1630.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1630.png deleted file mode 100644 index 33d07789da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1631.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1631.png deleted file mode 100644 index 3751cc8216..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1632.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1632.png deleted file mode 100644 index a2d2d782e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1633.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1633.png deleted file mode 100644 index a428107910..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1634.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1634.png deleted file mode 100644 index 6a9edcee93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1635.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1635.png deleted file mode 100644 index cf036b6256..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1636.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1636.png deleted file mode 100644 index 3719bb7c46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1637.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1637.png deleted file mode 100644 index 6f3564ae27..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1638.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1638.png deleted file mode 100644 index 3c9f758004..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1639.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1639.png deleted file mode 100644 index 27ac3116e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1640.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1640.png deleted file mode 100644 index 1939422ff5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1641.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1641.png deleted file mode 100644 index 2034604f94..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1642.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1642.png deleted file mode 100644 index 3ecfcc23a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1643.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1643.png deleted file mode 100644 index 02496bf9ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1644.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1644.png deleted file mode 100644 index 31e11fe8a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1645.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1645.png deleted file mode 100644 index a2d2d782e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1646.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1646.png deleted file mode 100644 index 6d6b84e65a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1647.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1647.png deleted file mode 100644 index 76015106c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1648.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1648.png deleted file mode 100644 index 3751cc8216..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1649.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1649.png deleted file mode 100644 index 2ace45c459..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1650.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1650.png deleted file mode 100644 index 94a0807456..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1651.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1651.png deleted file mode 100644 index ad6c0f1a5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1652.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1652.png deleted file mode 100644 index 759db44d61..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1653.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1653.png deleted file mode 100644 index 5276fb3112..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1654.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1654.png deleted file mode 100644 index f0fdca8015..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1655.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1655.png deleted file mode 100644 index fa460a0370..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1656.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1656.png deleted file mode 100644 index c7e2bf8ed0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1657.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1657.png deleted file mode 100644 index c457db76de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1658.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1658.png deleted file mode 100644 index 0f20de0ac2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1659.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1659.png deleted file mode 100644 index 728b310df0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1660.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1660.png deleted file mode 100644 index bc41a4bf59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1661.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1661.png deleted file mode 100644 index 9513660675..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1662.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1662.png deleted file mode 100644 index a74dfd3621..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1663.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1663.png deleted file mode 100644 index 5ba280d146..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1664.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1664.png deleted file mode 100644 index 7e74fea128..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1665.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1665.png deleted file mode 100644 index ae2ac225af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1666.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1666.png deleted file mode 100644 index 48b448d82b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1667.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1667.png deleted file mode 100644 index 8230db8846..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1668.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1668.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1670.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1670.png deleted file mode 100644 index fd9e397e6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1672.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1672.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1673.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1673.png deleted file mode 100644 index 80ca2e7e5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1674.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1674.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1675.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1675.png deleted file mode 100644 index 6d6b84e65a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1676.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1676.png deleted file mode 100644 index baaf24b65f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1677.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1677.png deleted file mode 100644 index a136f9ece7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1678.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1678.png deleted file mode 100644 index c5237b300d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1679.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1679.png deleted file mode 100644 index 560e987c58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1680.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1680.png deleted file mode 100644 index 8205a446fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1681.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1681.png deleted file mode 100644 index d678a50c6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1682.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1682.png deleted file mode 100644 index e96f12acff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1683.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1683.png deleted file mode 100644 index cd536a2607..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1684.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1684.png deleted file mode 100644 index 20a365acea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1685.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1685.png deleted file mode 100644 index d5ec4fe62c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1686.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1686.png deleted file mode 100644 index c457db76de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1687.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1687.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1688.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1688.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1689.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1689.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1690.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1690.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1691.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1691.png deleted file mode 100644 index 2f4b61b58f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1692.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1692.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1693.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1693.png deleted file mode 100644 index dd58bf08df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1694.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1694.png deleted file mode 100644 index ef345da258..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1695.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1695.png deleted file mode 100644 index 3714bffa97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1696.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1696.png deleted file mode 100644 index 25f507c30c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1697.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1697.png deleted file mode 100644 index 1b1bde87e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1698.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1698.png deleted file mode 100644 index c457db76de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1699.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1699.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1700.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1700.png deleted file mode 100644 index fecac3b537..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1701.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1701.png deleted file mode 100644 index 81cfb104e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1702.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1702.png deleted file mode 100644 index 316544be3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1703.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1703.png deleted file mode 100644 index 8f9f83c986..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1704.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1704.png deleted file mode 100644 index bea238f10e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1705.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1705.png deleted file mode 100644 index a7f9c18fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1706.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1706.png deleted file mode 100644 index 3751cc8216..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1707.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1707.png deleted file mode 100644 index 3b5a1b4a54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1708.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1708.png deleted file mode 100644 index 5e08b736e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1709.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1709.png deleted file mode 100644 index e6d245adab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1710.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1710.png deleted file mode 100644 index 51872c5f90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1711.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1711.png deleted file mode 100644 index 647911bcb7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1712.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1712.png deleted file mode 100644 index dac299f4d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1713.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1713.png deleted file mode 100644 index ee21bfa808..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1714.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1714.png deleted file mode 100644 index bd6bff3909..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1715.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1715.png deleted file mode 100644 index 22d74ef86b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1716.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1716.png deleted file mode 100644 index 22f9cfe2da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1717.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1717.png deleted file mode 100644 index 236a8278bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1718.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1718.png deleted file mode 100644 index f78731898e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1719.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1719.png deleted file mode 100644 index fd77a41b80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1720.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1720.png deleted file mode 100644 index fd77a41b80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1721.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1721.png deleted file mode 100644 index d91a17d877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1722.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1722.png deleted file mode 100644 index db7c0e45ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1723.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1723.png deleted file mode 100644 index af01231eb4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1724.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1724.png deleted file mode 100644 index ab4abea80f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1725.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1725.png deleted file mode 100644 index dc9ffbd410..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1726.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1726.png deleted file mode 100644 index ddcd6d2114..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1727.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1727.png deleted file mode 100644 index be7f138392..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1728.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1728.png deleted file mode 100644 index ec848274fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1729.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1729.png deleted file mode 100644 index e4d891dc5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1730.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1730.png deleted file mode 100644 index 564be76b34..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1731.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1731.png deleted file mode 100644 index 2a6e1a6ab7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1732.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1732.png deleted file mode 100644 index 8bf27240ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1733.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1733.png deleted file mode 100644 index df8496f75e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1734.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1734.png deleted file mode 100644 index 3eee33d5dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1735.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1735.png deleted file mode 100644 index 99dbe1f1f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1740.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1740.png deleted file mode 100644 index 7a05ac31ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1741.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1741.png deleted file mode 100644 index 24b420a2f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1742.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1742.png deleted file mode 100644 index f62bf40d3c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1743.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1743.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1744.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1744.png deleted file mode 100644 index 062584f09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1745.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1745.png deleted file mode 100644 index 2fcd002e74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1746.png b/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1746.png deleted file mode 100644 index fdd602f712..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLargeSwordBlade/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1500.png deleted file mode 100644 index 331c2a523a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1501.png deleted file mode 100644 index 0d47539e5e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1502.png deleted file mode 100644 index 9c04fb81a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1503.png deleted file mode 100644 index 4c32af0256..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1504.png deleted file mode 100644 index b70b3fc708..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1505.png deleted file mode 100644 index 12dbe59691..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1506.png deleted file mode 100644 index a517489785..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1507.png deleted file mode 100644 index dd4887cc43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1508.png deleted file mode 100644 index 82a75fdcb9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1509.png deleted file mode 100644 index b4e8e26b04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1510.png deleted file mode 100644 index a62b71f5e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1511.png deleted file mode 100644 index 82a75fdcb9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1512.png deleted file mode 100644 index c6d8209636..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1513.png deleted file mode 100644 index 00c57efd23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1514.png deleted file mode 100644 index bb0ba50fb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1515.png deleted file mode 100644 index f507ed7580..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1516.png deleted file mode 100644 index 02fc86c88a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1517.png deleted file mode 100644 index 04c0b2fdc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1518.png deleted file mode 100644 index 900610ecfb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1519.png deleted file mode 100644 index cacb1de61f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1520.png deleted file mode 100644 index cd853789c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1521.png deleted file mode 100644 index 47da0f2d12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1522.png deleted file mode 100644 index 56ebf04ae2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1523.png deleted file mode 100644 index 4cf6d755d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1524.png deleted file mode 100644 index 223bf120e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1525.png deleted file mode 100644 index ca2fea92ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1526.png deleted file mode 100644 index 16f6000e2c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1527.png deleted file mode 100644 index f4a2f73bfc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1528.png deleted file mode 100644 index 485dd984dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1529.png deleted file mode 100644 index 81c96f7ba9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1530.png deleted file mode 100644 index bc3fb64a46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1531.png deleted file mode 100644 index 02afefb92f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1532.png deleted file mode 100644 index aad3960edc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1533.png deleted file mode 100644 index 74ded1f389..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1534.png deleted file mode 100644 index e1678b72f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1535.png deleted file mode 100644 index fc737d0518..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1536.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1537.png deleted file mode 100644 index 7f2b82ebac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1538.png deleted file mode 100644 index c9e4d037f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1539.png deleted file mode 100644 index f26460a482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1540.png deleted file mode 100644 index 7dac097555..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1541.png deleted file mode 100644 index 80facd0bb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1542.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1543.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1544.png deleted file mode 100644 index 8d8a6830dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1545.png deleted file mode 100644 index 5570275f5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1546.png deleted file mode 100644 index 611f1c427f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1547.png deleted file mode 100644 index 6d8e47815f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1548.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1549.png deleted file mode 100644 index 9a31ce6241..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1550.png deleted file mode 100644 index 27e672cc4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1551.png deleted file mode 100644 index 60c4f7fe2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1553.png deleted file mode 100644 index 9197b5c58c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1554.png deleted file mode 100644 index c14891c32b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1555.png deleted file mode 100644 index 342aa033f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1556.png deleted file mode 100644 index bb0ba50fb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1557.png deleted file mode 100644 index bb0ba50fb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1562.png deleted file mode 100644 index f581c7f957..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1563.png deleted file mode 100644 index 342aa033f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1564.png deleted file mode 100644 index 65fb20804b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1565.png deleted file mode 100644 index 50cde55c3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1566.png deleted file mode 100644 index 3afef32344..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1567.png deleted file mode 100644 index 7a1cecb978..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1568.png deleted file mode 100644 index 025b2e69e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1570.png deleted file mode 100644 index 26026e5991..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1571.png deleted file mode 100644 index 578d7218cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1572.png deleted file mode 100644 index 021f24f5e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1573.png deleted file mode 100644 index 92eb636a90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1574.png deleted file mode 100644 index 47da0f2d12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1575.png deleted file mode 100644 index 6d8e47815f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1576.png deleted file mode 100644 index 2a79261c5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1577.png deleted file mode 100644 index 0c63c39acc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1578.png deleted file mode 100644 index 349095ba97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1579.png deleted file mode 100644 index 82a75fdcb9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1582.png deleted file mode 100644 index 273780e8d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1583.png deleted file mode 100644 index 76cbfc9fa9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1584.png deleted file mode 100644 index 6a4daa4360..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1585.png deleted file mode 100644 index c42eb4f74f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1586.png deleted file mode 100644 index 9c1d88e547..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1587.png deleted file mode 100644 index c88f938d6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1588.png deleted file mode 100644 index 342aa033f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1589.png deleted file mode 100644 index 8535fd18e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1590.png deleted file mode 100644 index a70fbd0fb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1591.png deleted file mode 100644 index 3ecb255d71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1592.png deleted file mode 100644 index 2955c556d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1593.png deleted file mode 100644 index 45e325411c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1594.png deleted file mode 100644 index 56e6de1aa9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1595.png deleted file mode 100644 index 926c692ad0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1596.png deleted file mode 100644 index 5ec5b6e35c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1597.png deleted file mode 100644 index 87dde33fce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1598.png deleted file mode 100644 index 438ffb3fa2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1599.png deleted file mode 100644 index acb9b68db3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1600.png deleted file mode 100644 index 53471a0620..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1601.png deleted file mode 100644 index 83784bafdf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1602.png deleted file mode 100644 index c81e00514a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1603.png deleted file mode 100644 index 7f97a505fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1604.png deleted file mode 100644 index f7359f81ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1605.png deleted file mode 100644 index 71d47d97c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1606.png deleted file mode 100644 index 3970c13604..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1607.png deleted file mode 100644 index 1455cbd84f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1608.png deleted file mode 100644 index 5ad253ca7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1609.png deleted file mode 100644 index 47da0f2d12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1610.png deleted file mode 100644 index a62b71f5e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1611.png deleted file mode 100644 index 3033b09cfb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1612.png deleted file mode 100644 index fc408c2044..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1613.png deleted file mode 100644 index 22ccab8402..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1614.png deleted file mode 100644 index 3970c13604..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1615.png deleted file mode 100644 index c9e4d037f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1616.png deleted file mode 100644 index cd415982b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1617.png deleted file mode 100644 index 71d47d97c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1618.png deleted file mode 100644 index 1baf4d8eb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1619.png deleted file mode 100644 index 120aba9ec2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1620.png deleted file mode 100644 index a70fbd0fb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1621.png deleted file mode 100644 index 70a6d5808b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1622.png deleted file mode 100644 index 93289244e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1623.png deleted file mode 100644 index a73cc1080b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1624.png deleted file mode 100644 index 67eb9aefdf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1625.png deleted file mode 100644 index 4ee197d110..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1626.png deleted file mode 100644 index 989e92c779..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1627.png deleted file mode 100644 index 20cde25485..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1628.png deleted file mode 100644 index 7fd30ce409..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1629.png deleted file mode 100644 index f6bc809199..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1630.png deleted file mode 100644 index 065f4eee74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1631.png deleted file mode 100644 index a62b71f5e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1632.png deleted file mode 100644 index d6972af1e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1633.png deleted file mode 100644 index 6dcf9f3504..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1634.png deleted file mode 100644 index b8b089cfd3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1635.png deleted file mode 100644 index b6b9cbe61c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1636.png deleted file mode 100644 index c6020dc16a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1637.png deleted file mode 100644 index 45c4fe3f2c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1638.png deleted file mode 100644 index b27fc0579e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1639.png deleted file mode 100644 index 578d7218cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1640.png deleted file mode 100644 index ac800a6a4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1641.png deleted file mode 100644 index 533776d267..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1642.png deleted file mode 100644 index f876204cda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1643.png deleted file mode 100644 index 6f7482e7cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1644.png deleted file mode 100644 index 9d87b31316..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1645.png deleted file mode 100644 index d6972af1e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1646.png deleted file mode 100644 index 3970c13604..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1647.png deleted file mode 100644 index bb0ba50fb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1648.png deleted file mode 100644 index a62b71f5e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1649.png deleted file mode 100644 index 987c1e416a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1650.png deleted file mode 100644 index d0321e57d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1651.png deleted file mode 100644 index 5a309f33f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1652.png deleted file mode 100644 index 8419e70624..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1653.png deleted file mode 100644 index 32e7357d88..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1654.png deleted file mode 100644 index b815f24b5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1655.png deleted file mode 100644 index ba9e954897..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1656.png deleted file mode 100644 index ee7418c5e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1657.png deleted file mode 100644 index 47da0f2d12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1658.png deleted file mode 100644 index f38fd1a497..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1659.png deleted file mode 100644 index a050b06487..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1660.png deleted file mode 100644 index 5254d8121e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1661.png deleted file mode 100644 index bb31b9e5f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1662.png deleted file mode 100644 index c81c916705..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1663.png deleted file mode 100644 index f52960da15..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1664.png deleted file mode 100644 index 55509200bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1665.png deleted file mode 100644 index e3a868beac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1666.png deleted file mode 100644 index 258f314a3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1667.png deleted file mode 100644 index 2ed65fdadf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1668.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1670.png deleted file mode 100644 index a3a967e008..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1672.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1673.png deleted file mode 100644 index 8a502ae6cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1674.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1675.png deleted file mode 100644 index 3970c13604..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1676.png deleted file mode 100644 index 7c87d78e9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1677.png deleted file mode 100644 index 36bc58bcdf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1678.png deleted file mode 100644 index cc9a7a71e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1679.png deleted file mode 100644 index 0a41b000b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1680.png deleted file mode 100644 index 1ac7dc7a3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1681.png deleted file mode 100644 index e29409ffba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1682.png deleted file mode 100644 index b248d61cb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1683.png deleted file mode 100644 index 2131378c97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1684.png deleted file mode 100644 index e37d83dfcf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1685.png deleted file mode 100644 index 1a6847c6dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1686.png deleted file mode 100644 index 47da0f2d12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1687.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1688.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1689.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1690.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1691.png deleted file mode 100644 index 72143f4e76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1692.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1693.png deleted file mode 100644 index 0261c25bba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1694.png deleted file mode 100644 index 8166c9e308..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1695.png deleted file mode 100644 index 42cc5998cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1696.png deleted file mode 100644 index 44a6ee5b32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1697.png deleted file mode 100644 index 33a73dfc69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1698.png deleted file mode 100644 index 47da0f2d12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1699.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1700.png deleted file mode 100644 index 8d65d6ffaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1701.png deleted file mode 100644 index 0b84101b40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1702.png deleted file mode 100644 index e088e740eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1703.png deleted file mode 100644 index c4177c1a98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1704.png deleted file mode 100644 index 1df821ebfb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1705.png deleted file mode 100644 index c22a5acb3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1706.png deleted file mode 100644 index a62b71f5e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1707.png deleted file mode 100644 index 53d02c8143..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1708.png deleted file mode 100644 index b70b3fc708..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1709.png deleted file mode 100644 index 982fca16fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1710.png deleted file mode 100644 index 64e47b6f38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1711.png deleted file mode 100644 index fc78b37029..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1712.png deleted file mode 100644 index 1d90db95a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1713.png deleted file mode 100644 index 67059fd878..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1714.png deleted file mode 100644 index ce94d5a9df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1715.png deleted file mode 100644 index ff17d4f79e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1716.png deleted file mode 100644 index 042bb571cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1717.png deleted file mode 100644 index 59a155ae7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1718.png deleted file mode 100644 index b0e9fc66f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1719.png deleted file mode 100644 index e28ec042dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1720.png deleted file mode 100644 index e28ec042dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1721.png deleted file mode 100644 index 44e4bd359a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1722.png deleted file mode 100644 index b5449af7eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1723.png deleted file mode 100644 index 6b58ff0ab5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1724.png deleted file mode 100644 index 4b6d873343..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1725.png deleted file mode 100644 index 79da2b47b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1726.png deleted file mode 100644 index acf462f818..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1727.png deleted file mode 100644 index 185e170f00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1728.png deleted file mode 100644 index 3b46ce8b6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1729.png deleted file mode 100644 index 5de9d4f599..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1730.png deleted file mode 100644 index 4cd4e29426..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1731.png deleted file mode 100644 index 8e112f9a0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1732.png deleted file mode 100644 index 5d0aec4812..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1733.png deleted file mode 100644 index 5132de9317..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1734.png deleted file mode 100644 index d0723885c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1735.png deleted file mode 100644 index fabaa6feb9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1740.png deleted file mode 100644 index 0bda6e095d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1741.png deleted file mode 100644 index 9ea8bb4c0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1742.png deleted file mode 100644 index 7ded50e87e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1743.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1744.png deleted file mode 100644 index 961069a688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1745.png deleted file mode 100644 index fa7782651a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartLumberHead/1746.png deleted file mode 100644 index 1216753eaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartLumberHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1500.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1500.png deleted file mode 100644 index 7f822c6170..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1501.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1501.png deleted file mode 100644 index dacc29f680..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1502.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1502.png deleted file mode 100644 index 9ede82e35e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1503.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1503.png deleted file mode 100644 index 57d8738480..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1504.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1504.png deleted file mode 100644 index 1f754c0efe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1505.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1505.png deleted file mode 100644 index 1a901a10a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1506.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1506.png deleted file mode 100644 index e2e085140f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1507.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1507.png deleted file mode 100644 index 89b08ad554..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1508.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1508.png deleted file mode 100644 index 4ae825f130..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1509.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1509.png deleted file mode 100644 index c7abc26508..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1510.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1510.png deleted file mode 100644 index 44c93c47ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1511.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1511.png deleted file mode 100644 index 4ae825f130..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1512.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1512.png deleted file mode 100644 index 880dbae8ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1513.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1513.png deleted file mode 100644 index 86d733e0ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1514.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1514.png deleted file mode 100644 index 13c37173a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1515.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1515.png deleted file mode 100644 index 00953290f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1516.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1516.png deleted file mode 100644 index 5920f0a49e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1517.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1517.png deleted file mode 100644 index 9b7ae07642..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1518.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1518.png deleted file mode 100644 index f284dde0ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1519.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1519.png deleted file mode 100644 index 84c37b8f16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1520.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1520.png deleted file mode 100644 index 30440b45ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1521.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1521.png deleted file mode 100644 index 1ebc70f9cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1522.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1522.png deleted file mode 100644 index 74c377a02f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1523.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1523.png deleted file mode 100644 index 439e136baa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1524.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1524.png deleted file mode 100644 index dd7821dbc8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1525.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1525.png deleted file mode 100644 index b52d6396ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1526.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1526.png deleted file mode 100644 index fc98dca228..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1527.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1527.png deleted file mode 100644 index b9eda8bf0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1528.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1528.png deleted file mode 100644 index a0fe58a023..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1529.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1529.png deleted file mode 100644 index b1ba067c03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1530.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1530.png deleted file mode 100644 index cdbab9ac55..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1531.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1531.png deleted file mode 100644 index 7b3d63f706..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1532.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1532.png deleted file mode 100644 index 7b118fae09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1533.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1533.png deleted file mode 100644 index e70f8f3112..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1534.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1534.png deleted file mode 100644 index 85e831c882..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1535.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1535.png deleted file mode 100644 index 3421a1fe1f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1536.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1536.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1537.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1537.png deleted file mode 100644 index 5cfe241a23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1538.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1538.png deleted file mode 100644 index a7336f4a17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1539.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1539.png deleted file mode 100644 index b8d990ac62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1540.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1540.png deleted file mode 100644 index b646b78046..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1541.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1541.png deleted file mode 100644 index c6c8cae262..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1542.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1542.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1543.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1543.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1544.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1544.png deleted file mode 100644 index f52d5b4e8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1545.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1545.png deleted file mode 100644 index f6e5ee7d17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1546.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1546.png deleted file mode 100644 index c9c591f8a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1547.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1547.png deleted file mode 100644 index 55312cec9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1548.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1548.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1549.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1549.png deleted file mode 100644 index 987cb8803c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1550.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1550.png deleted file mode 100644 index 48ff9b8296..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1551.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1551.png deleted file mode 100644 index 7b3049bac0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1553.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1553.png deleted file mode 100644 index 19f9fd50a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1554.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1554.png deleted file mode 100644 index a31832a2d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1555.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1555.png deleted file mode 100644 index 6559d8eaf0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1556.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1556.png deleted file mode 100644 index 13c37173a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1557.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1557.png deleted file mode 100644 index 13c37173a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1562.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1562.png deleted file mode 100644 index b154068186..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1563.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1563.png deleted file mode 100644 index 6559d8eaf0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1564.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1564.png deleted file mode 100644 index e58e92c7b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1565.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1565.png deleted file mode 100644 index 7cc5e88557..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1566.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1566.png deleted file mode 100644 index 36e0329246..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1567.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1567.png deleted file mode 100644 index fb5c28c693..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1568.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1568.png deleted file mode 100644 index 89c32ed144..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1570.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1570.png deleted file mode 100644 index 54006f5899..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1571.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1571.png deleted file mode 100644 index a882bc6d31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1572.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1572.png deleted file mode 100644 index 5571d5059d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1573.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1573.png deleted file mode 100644 index 841ee260d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1574.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1574.png deleted file mode 100644 index 1ebc70f9cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1575.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1575.png deleted file mode 100644 index 55312cec9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1576.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1576.png deleted file mode 100644 index e8b825bf67..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1577.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1577.png deleted file mode 100644 index b827f5b5bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1578.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1578.png deleted file mode 100644 index fb784bcd5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1579.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1579.png deleted file mode 100644 index 4ae825f130..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1582.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1582.png deleted file mode 100644 index e40f8ee4bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1583.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1583.png deleted file mode 100644 index 06fafd6d8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1584.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1584.png deleted file mode 100644 index 908b14e645..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1585.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1585.png deleted file mode 100644 index 25dcdbece7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1586.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1586.png deleted file mode 100644 index 80deb07736..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1587.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1587.png deleted file mode 100644 index 35796cba4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1588.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1588.png deleted file mode 100644 index 6559d8eaf0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1589.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1589.png deleted file mode 100644 index f490e67656..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1590.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1590.png deleted file mode 100644 index f469a11067..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1591.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1591.png deleted file mode 100644 index 4c4667baa7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1592.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1592.png deleted file mode 100644 index 586e90ac30..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1593.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1593.png deleted file mode 100644 index c0287f73bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1594.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1594.png deleted file mode 100644 index a4559d3504..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1595.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1595.png deleted file mode 100644 index 4cbc348ae8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1596.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1596.png deleted file mode 100644 index 3014916082..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1597.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1597.png deleted file mode 100644 index a5db267059..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1598.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1598.png deleted file mode 100644 index f2e23f5bda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1599.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1599.png deleted file mode 100644 index 935ce0122c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1600.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1600.png deleted file mode 100644 index c21b7db424..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1601.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1601.png deleted file mode 100644 index 72e145c60d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1602.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1602.png deleted file mode 100644 index 4b13f7f1a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1603.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1603.png deleted file mode 100644 index 1ce18eef9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1604.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1604.png deleted file mode 100644 index 20e56961fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1605.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1605.png deleted file mode 100644 index 40d5bc273e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1606.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1606.png deleted file mode 100644 index 7bba4ec0aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1607.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1607.png deleted file mode 100644 index 02c3e42ffd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1608.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1608.png deleted file mode 100644 index 7a51e99217..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1609.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1609.png deleted file mode 100644 index 1ebc70f9cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1610.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1610.png deleted file mode 100644 index 44c93c47ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1611.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1611.png deleted file mode 100644 index e43cdb67c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1612.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1612.png deleted file mode 100644 index 70c936c3b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1613.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1613.png deleted file mode 100644 index 9c1c80e638..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1614.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1614.png deleted file mode 100644 index 7bba4ec0aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1615.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1615.png deleted file mode 100644 index a7336f4a17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1616.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1616.png deleted file mode 100644 index 67df77fabe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1617.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1617.png deleted file mode 100644 index 40d5bc273e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1618.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1618.png deleted file mode 100644 index eea564d839..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1619.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1619.png deleted file mode 100644 index b1b28ba8de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1620.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1620.png deleted file mode 100644 index f469a11067..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1621.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1621.png deleted file mode 100644 index f642846936..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1622.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1622.png deleted file mode 100644 index 947d82f5fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1623.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1623.png deleted file mode 100644 index 14a784905d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1624.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1624.png deleted file mode 100644 index 5f5c74b22d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1625.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1625.png deleted file mode 100644 index 8f2ed2f256..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1626.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1626.png deleted file mode 100644 index 58b557c7f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1627.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1627.png deleted file mode 100644 index fb963d23d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1628.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1628.png deleted file mode 100644 index 80a9891a1f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1629.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1629.png deleted file mode 100644 index ba20ee872e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1630.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1630.png deleted file mode 100644 index 579ce15713..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1631.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1631.png deleted file mode 100644 index 44c93c47ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1632.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1632.png deleted file mode 100644 index b13f88b1fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1633.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1633.png deleted file mode 100644 index 53bb8f3d9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1634.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1634.png deleted file mode 100644 index a5128e8c78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1635.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1635.png deleted file mode 100644 index afc4dba9f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1636.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1636.png deleted file mode 100644 index e5c8ace9cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1637.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1637.png deleted file mode 100644 index 0fbec97b7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1638.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1638.png deleted file mode 100644 index ad92fbed1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1639.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1639.png deleted file mode 100644 index a882bc6d31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1640.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1640.png deleted file mode 100644 index dd5021c35c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1641.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1641.png deleted file mode 100644 index 514d32d1cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1642.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1642.png deleted file mode 100644 index 65db7674ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1643.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1643.png deleted file mode 100644 index 763317b2dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1644.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1644.png deleted file mode 100644 index 090d7c63c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1645.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1645.png deleted file mode 100644 index b13f88b1fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1646.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1646.png deleted file mode 100644 index 7bba4ec0aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1647.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1647.png deleted file mode 100644 index 13c37173a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1648.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1648.png deleted file mode 100644 index 44c93c47ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1649.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1649.png deleted file mode 100644 index 60d496a80d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1650.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1650.png deleted file mode 100644 index 4e74c1c0eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1651.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1651.png deleted file mode 100644 index 190bd387d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1652.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1652.png deleted file mode 100644 index 35ae036832..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1653.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1653.png deleted file mode 100644 index 4cac1f8742..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1654.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1654.png deleted file mode 100644 index 3976fdd1ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1655.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1655.png deleted file mode 100644 index 3da9322b93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1656.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1656.png deleted file mode 100644 index bf6a9c09d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1657.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1657.png deleted file mode 100644 index 1ebc70f9cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1658.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1658.png deleted file mode 100644 index f9bc9183f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1659.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1659.png deleted file mode 100644 index ee35f1d02e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1660.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1660.png deleted file mode 100644 index 59498e3d71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1661.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1661.png deleted file mode 100644 index 1ec0c9875a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1662.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1662.png deleted file mode 100644 index b06b146103..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1663.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1663.png deleted file mode 100644 index 9d173d8db6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1664.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1664.png deleted file mode 100644 index 1aa1950a38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1665.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1665.png deleted file mode 100644 index 26e1aa1af5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1666.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1666.png deleted file mode 100644 index 6ebf0efb8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1667.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1667.png deleted file mode 100644 index 00a65bf275..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1668.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1668.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1670.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1670.png deleted file mode 100644 index cd83f2de32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1672.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1672.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1673.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1673.png deleted file mode 100644 index 35ecb5aedf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1674.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1674.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1675.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1675.png deleted file mode 100644 index 7bba4ec0aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1676.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1676.png deleted file mode 100644 index 7e77b6842c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1677.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1677.png deleted file mode 100644 index c5e4034eb5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1678.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1678.png deleted file mode 100644 index ddc88a86f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1679.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1679.png deleted file mode 100644 index eadadd9b85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1680.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1680.png deleted file mode 100644 index 719a7a8c22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1681.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1681.png deleted file mode 100644 index ae41720f22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1682.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1682.png deleted file mode 100644 index c4c3fff60e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1683.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1683.png deleted file mode 100644 index 18ac63c210..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1684.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1684.png deleted file mode 100644 index 860179a3bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1685.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1685.png deleted file mode 100644 index 66662e2118..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1686.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1686.png deleted file mode 100644 index 1ebc70f9cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1687.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1687.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1688.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1688.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1689.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1689.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1690.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1690.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1691.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1691.png deleted file mode 100644 index 66b6947d6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1692.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1692.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1693.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1693.png deleted file mode 100644 index 37e600fa47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1694.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1694.png deleted file mode 100644 index caa48dcc95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1695.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1695.png deleted file mode 100644 index b785ae15c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1696.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1696.png deleted file mode 100644 index 5de46c6b1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1697.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1697.png deleted file mode 100644 index 066a4aef72..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1698.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1698.png deleted file mode 100644 index 1ebc70f9cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1699.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1699.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1700.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1700.png deleted file mode 100644 index b412ec2638..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1701.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1701.png deleted file mode 100644 index 994f8627f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1702.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1702.png deleted file mode 100644 index d3503ab680..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1703.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1703.png deleted file mode 100644 index 333fbf0b0d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1704.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1704.png deleted file mode 100644 index 6588fcc283..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1705.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1705.png deleted file mode 100644 index d1a4e59589..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1706.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1706.png deleted file mode 100644 index 44c93c47ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1707.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1707.png deleted file mode 100644 index 558432609c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1708.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1708.png deleted file mode 100644 index 1f754c0efe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1709.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1709.png deleted file mode 100644 index a5d9e31a95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1710.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1710.png deleted file mode 100644 index 2aea469a31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1711.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1711.png deleted file mode 100644 index 7583749a0f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1712.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1712.png deleted file mode 100644 index 4c4b6ff075..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1713.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1713.png deleted file mode 100644 index b0ea62a67e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1714.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1714.png deleted file mode 100644 index 08166225b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1715.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1715.png deleted file mode 100644 index a93832b9f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1716.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1716.png deleted file mode 100644 index 7affac9b14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1717.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1717.png deleted file mode 100644 index 0cd404f0a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1718.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1718.png deleted file mode 100644 index 604e4eed4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1719.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1719.png deleted file mode 100644 index 1612e43e99..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1720.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1720.png deleted file mode 100644 index 1612e43e99..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1721.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1721.png deleted file mode 100644 index 8d063f121e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1722.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1722.png deleted file mode 100644 index 387584c5ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1723.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1723.png deleted file mode 100644 index 1435a90684..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1724.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1724.png deleted file mode 100644 index 769ceaad2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1725.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1725.png deleted file mode 100644 index 348fca697c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1726.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1726.png deleted file mode 100644 index f5204f57e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1727.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1727.png deleted file mode 100644 index 3315565cf7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1728.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1728.png deleted file mode 100644 index f241e6b1ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1729.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1729.png deleted file mode 100644 index 8ca4a606f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1730.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1730.png deleted file mode 100644 index 7abbe17ad4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1731.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1731.png deleted file mode 100644 index 412376580d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1732.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1732.png deleted file mode 100644 index 9d3b913905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1733.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1733.png deleted file mode 100644 index ecfa2df842..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1734.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1734.png deleted file mode 100644 index fa4c079960..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1735.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1735.png deleted file mode 100644 index 57e23feb8a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1740.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1740.png deleted file mode 100644 index a8facf0f73..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1741.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1741.png deleted file mode 100644 index a647052991..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1742.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1742.png deleted file mode 100644 index 546fa13d28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1743.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1743.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1744.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1744.png deleted file mode 100644 index ef851a9271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1745.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1745.png deleted file mode 100644 index d85d503601..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1746.png b/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1746.png deleted file mode 100644 index 4dc0cdaf99..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartMediumGuard/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1500.png deleted file mode 100644 index faf47d9c5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1501.png deleted file mode 100644 index 916a395e9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1502.png deleted file mode 100644 index b9d274d029..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1503.png deleted file mode 100644 index ad8cbcab68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1504.png deleted file mode 100644 index ffcac48573..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1505.png deleted file mode 100644 index b68bce22ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1506.png deleted file mode 100644 index 5047fc0257..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1507.png deleted file mode 100644 index 6b2202ba20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1508.png deleted file mode 100644 index b7cccbe615..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1509.png deleted file mode 100644 index 053565d66e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1510.png deleted file mode 100644 index 8a86a8d9df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1511.png deleted file mode 100644 index b7cccbe615..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1512.png deleted file mode 100644 index a75b138534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1513.png deleted file mode 100644 index bad5d425a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1514.png deleted file mode 100644 index 4727ac903a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1515.png deleted file mode 100644 index d0c6f9c2b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1516.png deleted file mode 100644 index f60ac82499..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1517.png deleted file mode 100644 index 5714ebdc49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1518.png deleted file mode 100644 index 7cb6b5a741..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1519.png deleted file mode 100644 index ffff26c3d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1520.png deleted file mode 100644 index f0b9d8b3bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1521.png deleted file mode 100644 index ff263404ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1522.png deleted file mode 100644 index c80302756f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1523.png deleted file mode 100644 index 41fd26cf23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1524.png deleted file mode 100644 index dd383b8a12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1525.png deleted file mode 100644 index 2a53517400..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1526.png deleted file mode 100644 index 59814ebbcd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1527.png deleted file mode 100644 index 15d348d71f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1528.png deleted file mode 100644 index b7ce943ed3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1529.png deleted file mode 100644 index 895806277e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1530.png deleted file mode 100644 index 9369ac45be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1531.png deleted file mode 100644 index 29a54662ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1532.png deleted file mode 100644 index 70f2905845..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1533.png deleted file mode 100644 index 5857d9a876..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1534.png deleted file mode 100644 index 7b2567d88e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1535.png deleted file mode 100644 index 455e36b8ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1536.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1537.png deleted file mode 100644 index 91d4134598..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1538.png deleted file mode 100644 index edbc953d96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1539.png deleted file mode 100644 index 4983c262f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1540.png deleted file mode 100644 index 647bfc27b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1541.png deleted file mode 100644 index 9c1e04488d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1542.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1543.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1544.png deleted file mode 100644 index 9f8573add5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1545.png deleted file mode 100644 index d33be93f65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1546.png deleted file mode 100644 index 2497b09405..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1547.png deleted file mode 100644 index 1bd8ef8fde..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1548.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1549.png deleted file mode 100644 index d57ec67e57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1550.png deleted file mode 100644 index f2c92999b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1551.png deleted file mode 100644 index 50d8e9aff6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1553.png deleted file mode 100644 index 6c03a4f087..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1554.png deleted file mode 100644 index 4df7573a16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1555.png deleted file mode 100644 index 76485bb042..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1556.png deleted file mode 100644 index 4727ac903a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1557.png deleted file mode 100644 index 4727ac903a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1562.png deleted file mode 100644 index 6fbb9c97f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1563.png deleted file mode 100644 index 76485bb042..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1564.png deleted file mode 100644 index 711e7e103f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1565.png deleted file mode 100644 index bca5e66a4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1566.png deleted file mode 100644 index fd7b753d13..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1567.png deleted file mode 100644 index 9e2c587a28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1568.png deleted file mode 100644 index 6713bbf7bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1570.png deleted file mode 100644 index a8bb92602e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1571.png deleted file mode 100644 index d1dac13774..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1572.png deleted file mode 100644 index dae0c0eb04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1573.png deleted file mode 100644 index e30548d75b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1574.png deleted file mode 100644 index ff263404ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1575.png deleted file mode 100644 index 1bd8ef8fde..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1576.png deleted file mode 100644 index 470454634f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1577.png deleted file mode 100644 index c63b051c20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1578.png deleted file mode 100644 index 93126ef741..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1579.png deleted file mode 100644 index b7cccbe615..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1582.png deleted file mode 100644 index d30fceebc1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1583.png deleted file mode 100644 index 96f8fd6921..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1584.png deleted file mode 100644 index 56b5744c8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1585.png deleted file mode 100644 index ef1027ec2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1586.png deleted file mode 100644 index 98f8725a4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1587.png deleted file mode 100644 index 3a0d50e8da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1588.png deleted file mode 100644 index 76485bb042..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1589.png deleted file mode 100644 index 31a5675e0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1590.png deleted file mode 100644 index b97f862d7e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1591.png deleted file mode 100644 index 1605c999cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1592.png deleted file mode 100644 index 0fec544b65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1593.png deleted file mode 100644 index 00553c7e6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1594.png deleted file mode 100644 index 845fab792d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1595.png deleted file mode 100644 index 6ff78940c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1596.png deleted file mode 100644 index a95db4bdfb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1597.png deleted file mode 100644 index 3faed01f2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1598.png deleted file mode 100644 index 8857d73444..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1599.png deleted file mode 100644 index 3175e248bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1600.png deleted file mode 100644 index dcddacd1b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1601.png deleted file mode 100644 index 21396d4cbe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1602.png deleted file mode 100644 index 68db4e9416..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1603.png deleted file mode 100644 index 26c4900325..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1604.png deleted file mode 100644 index c9d77952d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1605.png deleted file mode 100644 index 9aa9a83c77..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1606.png deleted file mode 100644 index a14752cd7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1607.png deleted file mode 100644 index 2716a9808b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1608.png deleted file mode 100644 index 641ae26f79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1609.png deleted file mode 100644 index ff263404ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1610.png deleted file mode 100644 index 8a86a8d9df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1611.png deleted file mode 100644 index 78d6dd12c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1612.png deleted file mode 100644 index f3b91a21de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1613.png deleted file mode 100644 index ab00d14096..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1614.png deleted file mode 100644 index a14752cd7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1615.png deleted file mode 100644 index edbc953d96..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1616.png deleted file mode 100644 index e5f226204b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1617.png deleted file mode 100644 index 9aa9a83c77..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1618.png deleted file mode 100644 index 4e5b4b4c1a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1619.png deleted file mode 100644 index 609d87f15f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1620.png deleted file mode 100644 index b97f862d7e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1621.png deleted file mode 100644 index ea95947aed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1622.png deleted file mode 100644 index 8132cb2c22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1623.png deleted file mode 100644 index adff196edc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1624.png deleted file mode 100644 index 6b303d9feb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1625.png deleted file mode 100644 index 99377b03aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1626.png deleted file mode 100644 index 1526cff7ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1627.png deleted file mode 100644 index cd7b7cce28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1628.png deleted file mode 100644 index d01b19920f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1629.png deleted file mode 100644 index 607d5e2b64..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1630.png deleted file mode 100644 index 26f853f982..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1631.png deleted file mode 100644 index 8a86a8d9df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1632.png deleted file mode 100644 index 3d178bdd16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1633.png deleted file mode 100644 index 88308e5954..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1634.png deleted file mode 100644 index af2ea11da4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1635.png deleted file mode 100644 index 16189f8af8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1636.png deleted file mode 100644 index f442eda6a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1637.png deleted file mode 100644 index 41d4ebe10a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1638.png deleted file mode 100644 index 40aed72d2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1639.png deleted file mode 100644 index d1dac13774..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1640.png deleted file mode 100644 index 2269ad344e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1641.png deleted file mode 100644 index 23bdd2b56e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1642.png deleted file mode 100644 index 7e740bd01e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1643.png deleted file mode 100644 index b6fc869a8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1644.png deleted file mode 100644 index d03a112c55..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1645.png deleted file mode 100644 index 3d178bdd16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1646.png deleted file mode 100644 index a14752cd7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1647.png deleted file mode 100644 index 4727ac903a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1648.png deleted file mode 100644 index 8a86a8d9df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1649.png deleted file mode 100644 index b75ccf8787..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1650.png deleted file mode 100644 index 29a33e2676..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1651.png deleted file mode 100644 index 50bb5a6843..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1652.png deleted file mode 100644 index 67b90e3a65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1653.png deleted file mode 100644 index 3ef86df532..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1654.png deleted file mode 100644 index 146ed86c7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1655.png deleted file mode 100644 index af46fd6084..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1656.png deleted file mode 100644 index 155604c12e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1657.png deleted file mode 100644 index ff263404ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1658.png deleted file mode 100644 index a701b0cd03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1659.png deleted file mode 100644 index 399fdc3f56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1660.png deleted file mode 100644 index 56549e215b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1661.png deleted file mode 100644 index 04ad57d2b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1662.png deleted file mode 100644 index e109c19838..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1663.png deleted file mode 100644 index 63fd197f82..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1664.png deleted file mode 100644 index dbe3753231..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1665.png deleted file mode 100644 index a6dea0db5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1666.png deleted file mode 100644 index a588829857..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1667.png deleted file mode 100644 index a78d519999..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1668.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1670.png deleted file mode 100644 index ef950a178c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1672.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1673.png deleted file mode 100644 index 3ccd1c6638..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1674.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1675.png deleted file mode 100644 index a14752cd7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1676.png deleted file mode 100644 index 1c38b850d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1677.png deleted file mode 100644 index 9ebf5a9122..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1678.png deleted file mode 100644 index 7fb549da35..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1679.png deleted file mode 100644 index 4453f6b699..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1680.png deleted file mode 100644 index 9c18908d49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1681.png deleted file mode 100644 index b2b10a7e56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1682.png deleted file mode 100644 index cd666721b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1683.png deleted file mode 100644 index 8dfb012fb1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1684.png deleted file mode 100644 index 18d25dd990..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1685.png deleted file mode 100644 index 854ca31749..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1686.png deleted file mode 100644 index ff263404ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1687.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1688.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1689.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1690.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1691.png deleted file mode 100644 index 3a7a2c6c84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1692.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1693.png deleted file mode 100644 index 62eaa5764e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1694.png deleted file mode 100644 index 96e38b9e0d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1695.png deleted file mode 100644 index f4d67739ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1696.png deleted file mode 100644 index 4b8e821660..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1697.png deleted file mode 100644 index befa7b3805..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1698.png deleted file mode 100644 index ff263404ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1699.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1700.png deleted file mode 100644 index 63908aa8b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1701.png deleted file mode 100644 index 83e091858b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1702.png deleted file mode 100644 index 47d489c237..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1703.png deleted file mode 100644 index 660b2803aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1704.png deleted file mode 100644 index 988ced24e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1705.png deleted file mode 100644 index 7c9b01a2be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1706.png deleted file mode 100644 index 8a86a8d9df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1707.png deleted file mode 100644 index 5a5c837dc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1708.png deleted file mode 100644 index ffcac48573..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1709.png deleted file mode 100644 index c8348ea7a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1710.png deleted file mode 100644 index 8044d9eb28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1711.png deleted file mode 100644 index 22bb199da7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1712.png deleted file mode 100644 index f1729b5cb6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1713.png deleted file mode 100644 index 61727ba58a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1714.png deleted file mode 100644 index 3eaaf71461..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1715.png deleted file mode 100644 index 533a3c79af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1716.png deleted file mode 100644 index 8b4004d60f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1717.png deleted file mode 100644 index 582ad5f54d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1718.png deleted file mode 100644 index 1f9531f5ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1719.png deleted file mode 100644 index 8cae61cade..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1720.png deleted file mode 100644 index 8cae61cade..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1721.png deleted file mode 100644 index 712ae2f6f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1722.png deleted file mode 100644 index d295526589..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1723.png deleted file mode 100644 index 2108040c7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1724.png deleted file mode 100644 index 6858a90e08..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1725.png deleted file mode 100644 index 39d84c44e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1726.png deleted file mode 100644 index 04598330fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1727.png deleted file mode 100644 index 3988aa0c2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1728.png deleted file mode 100644 index 32d2a32b38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1729.png deleted file mode 100644 index 30480e1c4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1730.png deleted file mode 100644 index 0f377d4d73..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1731.png deleted file mode 100644 index d9d1caee05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1732.png deleted file mode 100644 index 297795b732..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1733.png deleted file mode 100644 index 959e600d7b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1734.png deleted file mode 100644 index 840cf399cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1735.png deleted file mode 100644 index b0783d5650..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1740.png deleted file mode 100644 index 40c0e6fcb1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1741.png deleted file mode 100644 index ae3ee728dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1742.png deleted file mode 100644 index 2cbbe093e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1743.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1744.png deleted file mode 100644 index 34ad5680c5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1745.png deleted file mode 100644 index 68bff20506..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1746.png deleted file mode 100644 index 0ccde7ed6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartPickaxeHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1500.png deleted file mode 100644 index d64d5b6b7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1501.png deleted file mode 100644 index e6e3b65116..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1502.png deleted file mode 100644 index 3605e83240..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1503.png deleted file mode 100644 index 12d949c9eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1504.png deleted file mode 100644 index 3a5adc0c8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1505.png deleted file mode 100644 index 50e6353b78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1506.png deleted file mode 100644 index 630ad56137..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1507.png deleted file mode 100644 index 1cae68f31c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1508.png deleted file mode 100644 index 4b4db6ee45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1509.png deleted file mode 100644 index 0f05db6ee7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1510.png deleted file mode 100644 index e9a80ff4f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1511.png deleted file mode 100644 index 4b4db6ee45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1512.png deleted file mode 100644 index 3022f4c823..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1513.png deleted file mode 100644 index 220368340c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1514.png deleted file mode 100644 index d48e32c1ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1515.png deleted file mode 100644 index 8715fdf3d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1516.png deleted file mode 100644 index e0aa573d3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1517.png deleted file mode 100644 index e23d417b5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1518.png deleted file mode 100644 index 8f0acfeba8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1519.png deleted file mode 100644 index 99e959b92e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1520.png deleted file mode 100644 index c805178c2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1521.png deleted file mode 100644 index fb65be076c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1522.png deleted file mode 100644 index 0b48c71bac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1523.png deleted file mode 100644 index 7b67721100..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1524.png deleted file mode 100644 index 38f48bbbbe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1525.png deleted file mode 100644 index 99a0566fba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1526.png deleted file mode 100644 index ba621b1313..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1527.png deleted file mode 100644 index 50fd50a854..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1528.png deleted file mode 100644 index f65726916a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1529.png deleted file mode 100644 index aadebe58f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1530.png deleted file mode 100644 index 4bdb1f02ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1531.png deleted file mode 100644 index fa5a1bf598..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1532.png deleted file mode 100644 index 784093ba11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1533.png deleted file mode 100644 index 58cb4746f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1534.png deleted file mode 100644 index b6d3fe133d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1535.png deleted file mode 100644 index ad1c365a8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1536.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1537.png deleted file mode 100644 index 84cdc927ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1538.png deleted file mode 100644 index ecf42b50c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1539.png deleted file mode 100644 index 18f492f4ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1540.png deleted file mode 100644 index a821e2fb0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1541.png deleted file mode 100644 index 301b1b59a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1542.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1543.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1544.png deleted file mode 100644 index 3b17404bee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1545.png deleted file mode 100644 index d37716dc0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1546.png deleted file mode 100644 index 84f9f571dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1547.png deleted file mode 100644 index 5a260f0f4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1548.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1549.png deleted file mode 100644 index 2df1a9da14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1550.png deleted file mode 100644 index 69ae6e0210..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1551.png deleted file mode 100644 index c61248b320..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1553.png deleted file mode 100644 index a8df236e74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1554.png deleted file mode 100644 index c1a0201239..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1555.png deleted file mode 100644 index dfc2b9b742..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1556.png deleted file mode 100644 index d48e32c1ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1557.png deleted file mode 100644 index d48e32c1ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1562.png deleted file mode 100644 index f661e04008..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1563.png deleted file mode 100644 index dfc2b9b742..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1564.png deleted file mode 100644 index 9e40f162d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1565.png deleted file mode 100644 index 2a6f3ada0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1566.png deleted file mode 100644 index 43302eb534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1567.png deleted file mode 100644 index 75700d695d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1568.png deleted file mode 100644 index d1c0e13331..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1570.png deleted file mode 100644 index 177b321ce5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1571.png deleted file mode 100644 index 60a04e8cc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1572.png deleted file mode 100644 index 5902806b5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1573.png deleted file mode 100644 index 44644f0764..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1574.png deleted file mode 100644 index fb65be076c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1575.png deleted file mode 100644 index 5a260f0f4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1576.png deleted file mode 100644 index f3c18014fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1577.png deleted file mode 100644 index 57ba0a3dee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1578.png deleted file mode 100644 index df26bc2a47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1579.png deleted file mode 100644 index 4b4db6ee45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1582.png deleted file mode 100644 index bcdbac6820..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1583.png deleted file mode 100644 index c951045f2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1584.png deleted file mode 100644 index d3c0600db2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1585.png deleted file mode 100644 index 3c37e95684..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1586.png deleted file mode 100644 index 29f374cd2c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1587.png deleted file mode 100644 index 69281373b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1588.png deleted file mode 100644 index dfc2b9b742..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1589.png deleted file mode 100644 index 8c27831bda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1590.png deleted file mode 100644 index 88511ad66c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1591.png deleted file mode 100644 index b7ee0b5788..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1592.png deleted file mode 100644 index b5ecd19e49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1593.png deleted file mode 100644 index 1de59c37b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1594.png deleted file mode 100644 index 714774a9a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1595.png deleted file mode 100644 index 841c278e1d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1596.png deleted file mode 100644 index 067ac48eb6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1597.png deleted file mode 100644 index 7c7778bbda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1598.png deleted file mode 100644 index 2653fb0d7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1599.png deleted file mode 100644 index 26eb32623d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1600.png deleted file mode 100644 index 8071b40544..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1601.png deleted file mode 100644 index bada152408..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1602.png deleted file mode 100644 index 4c7bf83d07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1603.png deleted file mode 100644 index bfa6bcec5e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1604.png deleted file mode 100644 index 89ab3fa586..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1605.png deleted file mode 100644 index f9cb7a9aa5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1606.png deleted file mode 100644 index 3fe074a2ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1607.png deleted file mode 100644 index edb81ee0df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1608.png deleted file mode 100644 index 9565913441..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1609.png deleted file mode 100644 index fb65be076c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1610.png deleted file mode 100644 index e9a80ff4f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1611.png deleted file mode 100644 index 07d0c88c5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1612.png deleted file mode 100644 index 38f091b9d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1613.png deleted file mode 100644 index 0a00cbf6eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1614.png deleted file mode 100644 index 3fe074a2ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1615.png deleted file mode 100644 index ecf42b50c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1616.png deleted file mode 100644 index 2946f5f136..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1617.png deleted file mode 100644 index f9cb7a9aa5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1618.png deleted file mode 100644 index e1db8d95a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1619.png deleted file mode 100644 index 7bc5fff2f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1620.png deleted file mode 100644 index 88511ad66c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1621.png deleted file mode 100644 index 4878089951..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1622.png deleted file mode 100644 index 68f25ad482..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1623.png deleted file mode 100644 index 70be28cc39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1624.png deleted file mode 100644 index 4722914b80..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1625.png deleted file mode 100644 index dfef1d5a24..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1626.png deleted file mode 100644 index fbf173a7da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1627.png deleted file mode 100644 index 6cdf5164a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1628.png deleted file mode 100644 index 13c0641837..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1629.png deleted file mode 100644 index b0a2593c98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1630.png deleted file mode 100644 index cfbfeca2fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1631.png deleted file mode 100644 index e9a80ff4f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1632.png deleted file mode 100644 index fe5c1d32a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1633.png deleted file mode 100644 index 63036934f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1634.png deleted file mode 100644 index cf1dbd978d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1635.png deleted file mode 100644 index 0053b084e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1636.png deleted file mode 100644 index 8bad8179c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1637.png deleted file mode 100644 index 82d01b87b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1638.png deleted file mode 100644 index 0578e58367..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1639.png deleted file mode 100644 index 60a04e8cc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1640.png deleted file mode 100644 index ff76844e0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1641.png deleted file mode 100644 index ea8837b8b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1642.png deleted file mode 100644 index f51ef608c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1643.png deleted file mode 100644 index 27ee4ceb01..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1644.png deleted file mode 100644 index 8fa086c295..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1645.png deleted file mode 100644 index fe5c1d32a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1646.png deleted file mode 100644 index 3fe074a2ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1647.png deleted file mode 100644 index d48e32c1ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1648.png deleted file mode 100644 index e9a80ff4f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1649.png deleted file mode 100644 index dd97390c42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1650.png deleted file mode 100644 index dc1efaa4d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1651.png deleted file mode 100644 index 0615c17196..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1652.png deleted file mode 100644 index c00893ecd8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1653.png deleted file mode 100644 index 7db39d8a29..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1654.png deleted file mode 100644 index 18417818cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1655.png deleted file mode 100644 index 3fbef3cb6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1656.png deleted file mode 100644 index 94e9965bf9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1657.png deleted file mode 100644 index fb65be076c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1658.png deleted file mode 100644 index 219db80915..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1659.png deleted file mode 100644 index 6213a6dcdd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1660.png deleted file mode 100644 index e3cad5b3ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1661.png deleted file mode 100644 index 48dc5e726d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1662.png deleted file mode 100644 index 7829401618..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1663.png deleted file mode 100644 index f39c0d26de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1664.png deleted file mode 100644 index 8338be2a59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1665.png deleted file mode 100644 index b91a0d26f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1666.png deleted file mode 100644 index c26d54217b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1667.png deleted file mode 100644 index fca95349ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1668.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1670.png deleted file mode 100644 index a57f31680c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1672.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1673.png deleted file mode 100644 index b4fd5eaca2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1674.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1675.png deleted file mode 100644 index 3fe074a2ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1676.png deleted file mode 100644 index 68bd959a01..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1677.png deleted file mode 100644 index 6976841fb4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1678.png deleted file mode 100644 index 96bf007673..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1679.png deleted file mode 100644 index 86032cc0d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1680.png deleted file mode 100644 index f4eaf1557a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1681.png deleted file mode 100644 index 8000ba0fbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1682.png deleted file mode 100644 index b9280ee79b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1683.png deleted file mode 100644 index d95586f161..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1684.png deleted file mode 100644 index 7c8567ae93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1685.png deleted file mode 100644 index fa56f338ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1686.png deleted file mode 100644 index fb65be076c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1687.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1688.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1689.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1690.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1691.png deleted file mode 100644 index 815c1ded7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1692.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1693.png deleted file mode 100644 index 6305f8436a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1694.png deleted file mode 100644 index 7b9b8b6035..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1695.png deleted file mode 100644 index 23fdcfcba3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1696.png deleted file mode 100644 index 483d02ee88..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1697.png deleted file mode 100644 index d640b371a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1698.png deleted file mode 100644 index fb65be076c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1699.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1700.png deleted file mode 100644 index 64e7a4b59e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1701.png deleted file mode 100644 index 941bbc6be8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1702.png deleted file mode 100644 index a01e21023f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1703.png deleted file mode 100644 index fbdf16fb50..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1704.png deleted file mode 100644 index 18e7af39cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1705.png deleted file mode 100644 index 7fafe7c2c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1706.png deleted file mode 100644 index e9a80ff4f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1707.png deleted file mode 100644 index 01d80dcd1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1708.png deleted file mode 100644 index 3a5adc0c8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1709.png deleted file mode 100644 index a6b2d61d9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1710.png deleted file mode 100644 index 1f34fa421f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1711.png deleted file mode 100644 index 9302614a34..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1712.png deleted file mode 100644 index 48954a665a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1713.png deleted file mode 100644 index e52cd66d0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1714.png deleted file mode 100644 index 837c700936..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1715.png deleted file mode 100644 index 8c3ac9ebd9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1716.png deleted file mode 100644 index c61beb0b4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1717.png deleted file mode 100644 index 890324a9cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1718.png deleted file mode 100644 index c4415b22eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1719.png deleted file mode 100644 index 29bfd24898..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1720.png deleted file mode 100644 index 29bfd24898..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1721.png deleted file mode 100644 index d552ea94f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1722.png deleted file mode 100644 index 279253a319..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1723.png deleted file mode 100644 index 3ab164bb0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1724.png deleted file mode 100644 index 4b81c1abca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1725.png deleted file mode 100644 index 3abfdd6eca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1726.png deleted file mode 100644 index 9471f4bc79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1727.png deleted file mode 100644 index 020842c024..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1728.png deleted file mode 100644 index 7777698f69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1729.png deleted file mode 100644 index 07be158f84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1730.png deleted file mode 100644 index b71b924382..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1731.png deleted file mode 100644 index 04ab5581fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1732.png deleted file mode 100644 index 6e384e55c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1733.png deleted file mode 100644 index c6352c17ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1734.png deleted file mode 100644 index 7c82e9829c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1735.png deleted file mode 100644 index 7139ab5b3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1740.png deleted file mode 100644 index 70e56be05b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1741.png deleted file mode 100644 index d0cc7ef885..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1742.png deleted file mode 100644 index 0933939364..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1743.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1744.png deleted file mode 100644 index 1826295032..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1745.png deleted file mode 100644 index 719a524256..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartScytheHead/1746.png deleted file mode 100644 index da474bebc4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartScytheHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1500.png deleted file mode 100644 index 345f26e98d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1501.png deleted file mode 100644 index 82903f87dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1502.png deleted file mode 100644 index ad849d8490..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1503.png deleted file mode 100644 index 0ae0a9c2d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1504.png deleted file mode 100644 index bcb88be49b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1505.png deleted file mode 100644 index 28105a6269..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1506.png deleted file mode 100644 index b73c13d37c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1507.png deleted file mode 100644 index fec6da6f57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1508.png deleted file mode 100644 index 15ac4f11f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1509.png deleted file mode 100644 index 56678b5017..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1510.png deleted file mode 100644 index b4c6f5ee32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1511.png deleted file mode 100644 index 15ac4f11f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1512.png deleted file mode 100644 index 55179add7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1513.png deleted file mode 100644 index e484554fcb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1514.png deleted file mode 100644 index 542c64a07a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1515.png deleted file mode 100644 index 96a07a374d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1516.png deleted file mode 100644 index e360da8885..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1517.png deleted file mode 100644 index f99abdc7c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1518.png deleted file mode 100644 index 9b57c3db27..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1519.png deleted file mode 100644 index 78d46feb97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1520.png deleted file mode 100644 index c0089a79bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1521.png deleted file mode 100644 index f36a1b282f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1522.png deleted file mode 100644 index eeebcff8b2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1523.png deleted file mode 100644 index ba2d0402a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1524.png deleted file mode 100644 index 5d864ffb59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1525.png deleted file mode 100644 index c69f7fd233..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1526.png deleted file mode 100644 index 81cf5de8e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1527.png deleted file mode 100644 index 7d5f7d82c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1528.png deleted file mode 100644 index 8bbad70c7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1529.png deleted file mode 100644 index a2475e99cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1530.png deleted file mode 100644 index a9c91ca849..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1531.png deleted file mode 100644 index 829e51c753..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1532.png deleted file mode 100644 index 07c987be89..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1533.png deleted file mode 100644 index 5b00d04daa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1534.png deleted file mode 100644 index a0cad7ec65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1535.png deleted file mode 100644 index ef32d0a068..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1536.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1537.png deleted file mode 100644 index 18b03448d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1538.png deleted file mode 100644 index 52121c6f5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1539.png deleted file mode 100644 index a6a22a43a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1540.png deleted file mode 100644 index 5d0dd0f474..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1541.png deleted file mode 100644 index cd3b3cfd8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1542.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1543.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1544.png deleted file mode 100644 index ec2b7b8554..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1545.png deleted file mode 100644 index af70d1d282..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1546.png deleted file mode 100644 index 3841ba7fee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1547.png deleted file mode 100644 index 8949aac9c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1548.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1549.png deleted file mode 100644 index 5130a016d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1550.png deleted file mode 100644 index 50484768c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1551.png deleted file mode 100644 index e63b5cc1ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1553.png deleted file mode 100644 index 5011b6e1b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1554.png deleted file mode 100644 index 3501fc64c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1555.png deleted file mode 100644 index cb6681c70c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1556.png deleted file mode 100644 index 542c64a07a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1557.png deleted file mode 100644 index 542c64a07a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1562.png deleted file mode 100644 index 38a023f4c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1563.png deleted file mode 100644 index cb6681c70c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1564.png deleted file mode 100644 index 0e7bfed8c4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1565.png deleted file mode 100644 index 70d4d50173..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1566.png deleted file mode 100644 index f93b0c5efd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1567.png deleted file mode 100644 index f4aa90fd2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1568.png deleted file mode 100644 index d1ba6f83e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1570.png deleted file mode 100644 index 70ffed146d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1571.png deleted file mode 100644 index 1cd2de790e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1572.png deleted file mode 100644 index d6f84c6530..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1573.png deleted file mode 100644 index b961713230..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1574.png deleted file mode 100644 index f36a1b282f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1575.png deleted file mode 100644 index 8949aac9c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1576.png deleted file mode 100644 index 71a79a1cbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1577.png deleted file mode 100644 index 9e74d9f306..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1578.png deleted file mode 100644 index 3126ffe7a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1579.png deleted file mode 100644 index 15ac4f11f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1582.png deleted file mode 100644 index 624fc20aab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1583.png deleted file mode 100644 index 41ee931a02..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1584.png deleted file mode 100644 index 533545c1e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1585.png deleted file mode 100644 index 78ba077b5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1586.png deleted file mode 100644 index 3c1b38703a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1587.png deleted file mode 100644 index f95db944ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1588.png deleted file mode 100644 index cb6681c70c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1589.png deleted file mode 100644 index c198dc3523..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1590.png deleted file mode 100644 index d114583b60..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1591.png deleted file mode 100644 index 40033cd963..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1592.png deleted file mode 100644 index 6bd90c9510..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1593.png deleted file mode 100644 index 94dbbe3832..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1594.png deleted file mode 100644 index 3e337ff051..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1595.png deleted file mode 100644 index 01ec7331a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1596.png deleted file mode 100644 index 12f47e0247..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1597.png deleted file mode 100644 index 741569bc9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1598.png deleted file mode 100644 index beea767d03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1599.png deleted file mode 100644 index 12d0ef784e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1600.png deleted file mode 100644 index d86e79545d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1601.png deleted file mode 100644 index 0368ba90ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1602.png deleted file mode 100644 index f4f303653d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1603.png deleted file mode 100644 index cc430bc84d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1604.png deleted file mode 100644 index 105b7416a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1605.png deleted file mode 100644 index 03282f63a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1606.png deleted file mode 100644 index 2b15b7aa42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1607.png deleted file mode 100644 index 7c0de674a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1608.png deleted file mode 100644 index 4991c43d3d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1609.png deleted file mode 100644 index f36a1b282f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1610.png deleted file mode 100644 index b4c6f5ee32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1611.png deleted file mode 100644 index 17ee08b17d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1612.png deleted file mode 100644 index e4cce862da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1613.png deleted file mode 100644 index ac8ced479b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1614.png deleted file mode 100644 index 2b15b7aa42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1615.png deleted file mode 100644 index 52121c6f5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1616.png deleted file mode 100644 index 9a8bee84ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1617.png deleted file mode 100644 index 03282f63a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1618.png deleted file mode 100644 index f7bab93ec6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1619.png deleted file mode 100644 index a642514a59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1620.png deleted file mode 100644 index d114583b60..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1621.png deleted file mode 100644 index e0b5734592..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1622.png deleted file mode 100644 index a3253ed944..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1623.png deleted file mode 100644 index b1c4614087..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1624.png deleted file mode 100644 index 2c171b5a3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1625.png deleted file mode 100644 index e336d95d41..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1626.png deleted file mode 100644 index 8279e39534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1627.png deleted file mode 100644 index 75da310dcb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1628.png deleted file mode 100644 index 383d132e17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1629.png deleted file mode 100644 index bde48a52ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1630.png deleted file mode 100644 index 08850055b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1631.png deleted file mode 100644 index b4c6f5ee32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1632.png deleted file mode 100644 index 8bb3e8af46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1633.png deleted file mode 100644 index 4a628874c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1634.png deleted file mode 100644 index c7e2fb19e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1635.png deleted file mode 100644 index f945712843..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1636.png deleted file mode 100644 index 313197e5d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1637.png deleted file mode 100644 index e801abb696..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1638.png deleted file mode 100644 index 5d4ee98dda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1639.png deleted file mode 100644 index 1cd2de790e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1640.png deleted file mode 100644 index a24a3e0a11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1641.png deleted file mode 100644 index f247415bfd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1642.png deleted file mode 100644 index 6246f9a420..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1643.png deleted file mode 100644 index 2cf3c10149..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1644.png deleted file mode 100644 index 1a269f5646..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1645.png deleted file mode 100644 index 8bb3e8af46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1646.png deleted file mode 100644 index 2b15b7aa42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1647.png deleted file mode 100644 index 542c64a07a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1648.png deleted file mode 100644 index b4c6f5ee32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1649.png deleted file mode 100644 index 57d1b7a947..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1650.png deleted file mode 100644 index 51280e01f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1651.png deleted file mode 100644 index a4b67c4c12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1652.png deleted file mode 100644 index 329c4d848c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1653.png deleted file mode 100644 index c4079b4ee6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1654.png deleted file mode 100644 index c64f6f2fbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1655.png deleted file mode 100644 index b6d4c50041..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1656.png deleted file mode 100644 index 8da582cbe1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1657.png deleted file mode 100644 index f36a1b282f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1658.png deleted file mode 100644 index 1845bdf473..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1659.png deleted file mode 100644 index 553ac5ee2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1660.png deleted file mode 100644 index 098058c5ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1661.png deleted file mode 100644 index b7b165cdeb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1662.png deleted file mode 100644 index b93cef801f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1663.png deleted file mode 100644 index 0cf5c55354..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1664.png deleted file mode 100644 index 36f98a4d51..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1665.png deleted file mode 100644 index 9670caf880..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1666.png deleted file mode 100644 index ce0a8e72dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1667.png deleted file mode 100644 index 57b7b85fc9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1668.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1670.png deleted file mode 100644 index 713f0e96ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1672.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1673.png deleted file mode 100644 index fc71b50d5a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1674.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1675.png deleted file mode 100644 index 2b15b7aa42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1676.png deleted file mode 100644 index a4e3607801..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1677.png deleted file mode 100644 index dbe82edb40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1678.png deleted file mode 100644 index 256fe1cf43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1679.png deleted file mode 100644 index 8e6cef6a60..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1680.png deleted file mode 100644 index e6559da08e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1681.png deleted file mode 100644 index a4a438ce40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1682.png deleted file mode 100644 index 86c9c681b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1683.png deleted file mode 100644 index 764f5334f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1684.png deleted file mode 100644 index a7ea229cc9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1685.png deleted file mode 100644 index e47085fd23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1686.png deleted file mode 100644 index f36a1b282f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1687.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1688.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1689.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1690.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1691.png deleted file mode 100644 index d237b03efa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1692.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1693.png deleted file mode 100644 index 32ea135dbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1694.png deleted file mode 100644 index 11fccd40af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1695.png deleted file mode 100644 index 34055475e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1696.png deleted file mode 100644 index 52f3088a44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1697.png deleted file mode 100644 index 8763df616d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1698.png deleted file mode 100644 index f36a1b282f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1699.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1700.png deleted file mode 100644 index 813d3c9b30..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1701.png deleted file mode 100644 index 749f8b5704..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1702.png deleted file mode 100644 index 7dd1dfa61c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1703.png deleted file mode 100644 index b9a00715c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1704.png deleted file mode 100644 index 2a5beeec7b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1705.png deleted file mode 100644 index 62762b3259..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1706.png deleted file mode 100644 index b4c6f5ee32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1707.png deleted file mode 100644 index 09d549416f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1708.png deleted file mode 100644 index bcb88be49b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1709.png deleted file mode 100644 index 68a371bc4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1710.png deleted file mode 100644 index 51f69e4f2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1711.png deleted file mode 100644 index 25df96b00f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1712.png deleted file mode 100644 index d1eaddcc34..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1713.png deleted file mode 100644 index 568efbd1e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1714.png deleted file mode 100644 index 513b83cbbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1715.png deleted file mode 100644 index bd815b92cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1716.png deleted file mode 100644 index 2ac880a389..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1717.png deleted file mode 100644 index e19e2611ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1718.png deleted file mode 100644 index 8769b7f122..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1719.png deleted file mode 100644 index deff99fc88..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1720.png deleted file mode 100644 index deff99fc88..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1721.png deleted file mode 100644 index d5a0f50848..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1722.png deleted file mode 100644 index d79a33002f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1723.png deleted file mode 100644 index 861f908fbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1724.png deleted file mode 100644 index 5a32e07dee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1725.png deleted file mode 100644 index 63341e8182..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1726.png deleted file mode 100644 index a70f890a68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1727.png deleted file mode 100644 index 3d00c18838..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1728.png deleted file mode 100644 index b59782ca46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1729.png deleted file mode 100644 index a5a761ba23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1730.png deleted file mode 100644 index 642ae18652..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1731.png deleted file mode 100644 index 16a96351c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1732.png deleted file mode 100644 index 0088e4fa60..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1733.png deleted file mode 100644 index a6d99449f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1734.png deleted file mode 100644 index 1435fd45f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1735.png deleted file mode 100644 index b26a6d9ea8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1740.png deleted file mode 100644 index a52994a926..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1741.png deleted file mode 100644 index e586af0d17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1742.png deleted file mode 100644 index 1064bdcbe8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1743.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1744.png deleted file mode 100644 index 3a0f9ed09b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1745.png deleted file mode 100644 index f5def2671e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartShovelHead/1746.png deleted file mode 100644 index cc011f9f7f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShovelHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1500.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1500.png deleted file mode 100644 index a4f4109a9e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1501.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1501.png deleted file mode 100644 index d451132eda..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1502.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1502.png deleted file mode 100644 index a88500c0d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1503.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1503.png deleted file mode 100644 index bd38270130..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1504.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1504.png deleted file mode 100644 index 03912fd3bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1505.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1505.png deleted file mode 100644 index ba6378cb5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1506.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1506.png deleted file mode 100644 index 4fc28383d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1507.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1507.png deleted file mode 100644 index 4e418b1b67..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1508.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1508.png deleted file mode 100644 index f95d554ef0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1509.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1509.png deleted file mode 100644 index 3f55c7147c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1510.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1510.png deleted file mode 100644 index 41e4e83c66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1511.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1511.png deleted file mode 100644 index f95d554ef0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1512.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1512.png deleted file mode 100644 index 8586a8fdcd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1513.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1513.png deleted file mode 100644 index 8049c237ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1514.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1514.png deleted file mode 100644 index f2669fe6ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1515.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1515.png deleted file mode 100644 index 0ca589850f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1516.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1516.png deleted file mode 100644 index e326237eaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1517.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1517.png deleted file mode 100644 index 0769231076..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1518.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1518.png deleted file mode 100644 index f15795710f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1519.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1519.png deleted file mode 100644 index 670d4b8bce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1520.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1520.png deleted file mode 100644 index 953f11141e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1521.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1521.png deleted file mode 100644 index 1c29d0640d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1522.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1522.png deleted file mode 100644 index 9d613be2b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1523.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1523.png deleted file mode 100644 index f5161edfa5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1524.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1524.png deleted file mode 100644 index ddd8a8ba81..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1525.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1525.png deleted file mode 100644 index 76cfc5b6db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1526.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1526.png deleted file mode 100644 index a59017261b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1527.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1527.png deleted file mode 100644 index 995bcb58d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1528.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1528.png deleted file mode 100644 index 325bc73057..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1529.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1529.png deleted file mode 100644 index ab5aa4e2d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1530.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1530.png deleted file mode 100644 index 6f29406e28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1531.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1531.png deleted file mode 100644 index 6fba22319c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1532.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1532.png deleted file mode 100644 index c77aa58210..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1533.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1533.png deleted file mode 100644 index 3d7792a4fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1534.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1534.png deleted file mode 100644 index 11d09c524d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1535.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1535.png deleted file mode 100644 index 666d1328d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1536.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1536.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1537.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1537.png deleted file mode 100644 index 9bc00864fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1538.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1538.png deleted file mode 100644 index c82faf47cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1539.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1539.png deleted file mode 100644 index aa26cc9dc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1540.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1540.png deleted file mode 100644 index 9d166ecd18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1541.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1541.png deleted file mode 100644 index 5de7dfd57d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1542.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1542.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1543.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1543.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1544.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1544.png deleted file mode 100644 index 4e65b15271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1545.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1545.png deleted file mode 100644 index d90c4d14fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1546.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1546.png deleted file mode 100644 index 272423a657..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1547.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1547.png deleted file mode 100644 index 83186714e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1548.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1548.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1549.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1549.png deleted file mode 100644 index a08d44f599..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1550.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1550.png deleted file mode 100644 index 106d48b983..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1551.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1551.png deleted file mode 100644 index d7e54a1a57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1553.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1553.png deleted file mode 100644 index e8ad7ddc9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1554.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1554.png deleted file mode 100644 index be7c056e31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1555.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1555.png deleted file mode 100644 index 8cd2a5ea8b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1556.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1556.png deleted file mode 100644 index f2669fe6ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1557.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1557.png deleted file mode 100644 index f2669fe6ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1562.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1562.png deleted file mode 100644 index eabf6ae4aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1563.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1563.png deleted file mode 100644 index 8cd2a5ea8b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1564.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1564.png deleted file mode 100644 index cd1c01e253..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1565.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1565.png deleted file mode 100644 index d29539c617..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1566.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1566.png deleted file mode 100644 index ff9748d285..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1567.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1567.png deleted file mode 100644 index 46e44549da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1568.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1568.png deleted file mode 100644 index ce7f0ce68b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1570.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1570.png deleted file mode 100644 index 2b8df88999..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1571.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1571.png deleted file mode 100644 index 165eea29a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1572.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1572.png deleted file mode 100644 index e3a3eaa407..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1573.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1573.png deleted file mode 100644 index 4b9216dbb1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1574.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1574.png deleted file mode 100644 index 1c29d0640d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1575.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1575.png deleted file mode 100644 index 83186714e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1576.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1576.png deleted file mode 100644 index 1a574897a2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1577.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1577.png deleted file mode 100644 index 5e3c267a74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1578.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1578.png deleted file mode 100644 index 9606347562..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1579.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1579.png deleted file mode 100644 index f95d554ef0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1582.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1582.png deleted file mode 100644 index b531839d49..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1583.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1583.png deleted file mode 100644 index 0a03048640..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1584.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1584.png deleted file mode 100644 index d3a90c32eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1585.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1585.png deleted file mode 100644 index b6e86f4a6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1586.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1586.png deleted file mode 100644 index 76fa5c6d38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1587.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1587.png deleted file mode 100644 index e2b4176792..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1588.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1588.png deleted file mode 100644 index 8cd2a5ea8b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1589.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1589.png deleted file mode 100644 index 55e4dca9e0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1590.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1590.png deleted file mode 100644 index f0b0786f46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1591.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1591.png deleted file mode 100644 index d1eb806ead..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1592.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1592.png deleted file mode 100644 index a7a2af7fb3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1593.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1593.png deleted file mode 100644 index ed7a5ec76a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1594.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1594.png deleted file mode 100644 index f89506870f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1595.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1595.png deleted file mode 100644 index 945f760fec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1596.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1596.png deleted file mode 100644 index 890466feea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1597.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1597.png deleted file mode 100644 index 02b4c53014..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1598.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1598.png deleted file mode 100644 index 0dab54a797..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1599.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1599.png deleted file mode 100644 index b6d3761f98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1600.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1600.png deleted file mode 100644 index fd75c84473..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1601.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1601.png deleted file mode 100644 index 22b00874e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1602.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1602.png deleted file mode 100644 index 7502f31df5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1603.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1603.png deleted file mode 100644 index 13bdffc86e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1604.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1604.png deleted file mode 100644 index 1aba6761af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1605.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1605.png deleted file mode 100644 index 8342a92e83..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1606.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1606.png deleted file mode 100644 index 8d52e1c913..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1607.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1607.png deleted file mode 100644 index 18cf95c9d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1608.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1608.png deleted file mode 100644 index fad1723960..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1609.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1609.png deleted file mode 100644 index 1c29d0640d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1610.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1610.png deleted file mode 100644 index 41e4e83c66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1611.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1611.png deleted file mode 100644 index 844f9c6f54..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1612.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1612.png deleted file mode 100644 index 56616b69f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1613.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1613.png deleted file mode 100644 index de74370076..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1614.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1614.png deleted file mode 100644 index 8d52e1c913..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1615.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1615.png deleted file mode 100644 index c82faf47cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1616.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1616.png deleted file mode 100644 index 1074d6a747..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1617.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1617.png deleted file mode 100644 index 8342a92e83..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1618.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1618.png deleted file mode 100644 index 9a9138cf83..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1619.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1619.png deleted file mode 100644 index cefb504a97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1620.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1620.png deleted file mode 100644 index f0b0786f46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1621.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1621.png deleted file mode 100644 index 4636a3afbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1622.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1622.png deleted file mode 100644 index 73e648c465..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1623.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1623.png deleted file mode 100644 index 53bc518eec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1624.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1624.png deleted file mode 100644 index 9e6f7dc400..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1625.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1625.png deleted file mode 100644 index 512018d772..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1626.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1626.png deleted file mode 100644 index 70c35f6f3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1627.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1627.png deleted file mode 100644 index 6abd259297..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1628.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1628.png deleted file mode 100644 index 42f03e62f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1629.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1629.png deleted file mode 100644 index b2212cae2e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1630.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1630.png deleted file mode 100644 index c19813c1c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1631.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1631.png deleted file mode 100644 index 41e4e83c66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1632.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1632.png deleted file mode 100644 index fd80ad9dd9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1633.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1633.png deleted file mode 100644 index c220e53c4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1634.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1634.png deleted file mode 100644 index 6b63dce674..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1635.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1635.png deleted file mode 100644 index e0182ba484..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1636.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1636.png deleted file mode 100644 index ca9f43a132..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1637.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1637.png deleted file mode 100644 index 3405bb4b46..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1638.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1638.png deleted file mode 100644 index e096000340..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1639.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1639.png deleted file mode 100644 index 165eea29a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1640.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1640.png deleted file mode 100644 index 7fb42aab2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1641.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1641.png deleted file mode 100644 index 17859b0e06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1642.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1642.png deleted file mode 100644 index 7e57356c07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1643.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1643.png deleted file mode 100644 index ad6398b502..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1644.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1644.png deleted file mode 100644 index 71ff773184..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1645.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1645.png deleted file mode 100644 index fd80ad9dd9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1646.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1646.png deleted file mode 100644 index 8d52e1c913..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1647.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1647.png deleted file mode 100644 index f2669fe6ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1648.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1648.png deleted file mode 100644 index 41e4e83c66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1649.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1649.png deleted file mode 100644 index a04faf8a0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1650.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1650.png deleted file mode 100644 index aeb119f50f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1651.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1651.png deleted file mode 100644 index 9634824aba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1652.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1652.png deleted file mode 100644 index c1b8da8346..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1653.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1653.png deleted file mode 100644 index de19ccc631..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1654.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1654.png deleted file mode 100644 index 7b0fafcd08..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1655.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1655.png deleted file mode 100644 index f488f89059..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1656.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1656.png deleted file mode 100644 index 7ff22b8acd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1657.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1657.png deleted file mode 100644 index 1c29d0640d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1658.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1658.png deleted file mode 100644 index 92d355e338..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1659.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1659.png deleted file mode 100644 index e221f66c02..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1660.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1660.png deleted file mode 100644 index 080a7f42e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1661.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1661.png deleted file mode 100644 index a0e474d008..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1662.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1662.png deleted file mode 100644 index db9fcd9db9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1663.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1663.png deleted file mode 100644 index dfe5fca877..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1664.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1664.png deleted file mode 100644 index f2b0d5d922..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1665.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1665.png deleted file mode 100644 index 54df62eef7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1666.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1666.png deleted file mode 100644 index 9d59c8a566..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1667.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1667.png deleted file mode 100644 index 62e95216a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1668.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1668.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1670.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1670.png deleted file mode 100644 index 5f976d4bfd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1672.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1672.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1673.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1673.png deleted file mode 100644 index 6ea55687ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1674.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1674.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1675.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1675.png deleted file mode 100644 index 8d52e1c913..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1676.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1676.png deleted file mode 100644 index c307aa9dc3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1677.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1677.png deleted file mode 100644 index 663e23e568..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1678.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1678.png deleted file mode 100644 index 4fda87ab88..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1679.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1679.png deleted file mode 100644 index e9156aad5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1680.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1680.png deleted file mode 100644 index 7f3faa4a6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1681.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1681.png deleted file mode 100644 index ef37288a45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1682.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1682.png deleted file mode 100644 index ab8bc27e69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1683.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1683.png deleted file mode 100644 index 8c99da310d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1684.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1684.png deleted file mode 100644 index 06ab43c597..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1685.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1685.png deleted file mode 100644 index d3a318877a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1686.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1686.png deleted file mode 100644 index 1c29d0640d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1687.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1687.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1688.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1688.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1689.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1689.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1690.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1690.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1691.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1691.png deleted file mode 100644 index 34a64f185d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1692.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1692.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1693.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1693.png deleted file mode 100644 index 24e637cb47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1694.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1694.png deleted file mode 100644 index c4a49dcf11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1695.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1695.png deleted file mode 100644 index fa97a71bad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1696.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1696.png deleted file mode 100644 index 6ba7056302..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1697.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1697.png deleted file mode 100644 index cd9c14f2ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1698.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1698.png deleted file mode 100644 index 1c29d0640d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1699.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1699.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1700.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1700.png deleted file mode 100644 index 5847e1e8c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1701.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1701.png deleted file mode 100644 index 02144487e5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1702.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1702.png deleted file mode 100644 index d768c2b6cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1703.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1703.png deleted file mode 100644 index 0c80ac7823..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1704.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1704.png deleted file mode 100644 index e03f6cc3fe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1705.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1705.png deleted file mode 100644 index 4c4b1eec65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1706.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1706.png deleted file mode 100644 index 41e4e83c66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1707.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1707.png deleted file mode 100644 index a2365ad7ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1708.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1708.png deleted file mode 100644 index 03912fd3bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1709.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1709.png deleted file mode 100644 index d8c683000b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1710.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1710.png deleted file mode 100644 index bdb1b656d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1711.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1711.png deleted file mode 100644 index bc7e44a8a3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1712.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1712.png deleted file mode 100644 index 195a39df6d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1713.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1713.png deleted file mode 100644 index ee4f014e8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1714.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1714.png deleted file mode 100644 index 1a37bb05da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1715.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1715.png deleted file mode 100644 index 0aa1d1ef2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1716.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1716.png deleted file mode 100644 index fafeceae0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1717.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1717.png deleted file mode 100644 index 4d2c5f9041..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1718.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1718.png deleted file mode 100644 index 2f49932f09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1719.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1719.png deleted file mode 100644 index aa996a02a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1720.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1720.png deleted file mode 100644 index aa996a02a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1721.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1721.png deleted file mode 100644 index 7fffa6b8c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1722.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1722.png deleted file mode 100644 index 61c8eaf3bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1723.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1723.png deleted file mode 100644 index 0d9f0a478d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1724.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1724.png deleted file mode 100644 index 5bc812f1b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1725.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1725.png deleted file mode 100644 index 00cadbb1f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1726.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1726.png deleted file mode 100644 index 08a0583061..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1727.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1727.png deleted file mode 100644 index 2a10d6bb05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1728.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1728.png deleted file mode 100644 index ecffde92b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1729.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1729.png deleted file mode 100644 index ae43a696f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1730.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1730.png deleted file mode 100644 index 8c98509080..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1731.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1731.png deleted file mode 100644 index 747a101426..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1732.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1732.png deleted file mode 100644 index f5d8850e8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1733.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1733.png deleted file mode 100644 index 9e208a85bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1734.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1734.png deleted file mode 100644 index 303f9de8f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1735.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1735.png deleted file mode 100644 index ee2b24fefd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1740.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1740.png deleted file mode 100644 index e80c17407e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1741.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1741.png deleted file mode 100644 index e344ea438a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1742.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1742.png deleted file mode 100644 index 0f016ed855..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1743.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1743.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1744.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1744.png deleted file mode 100644 index 9a84053e14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1745.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1745.png deleted file mode 100644 index 1d3270fd53..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartShuriken/1746.png b/front/public/images/small/TGregworks/tGregToolPartShuriken/1746.png deleted file mode 100644 index fe8e0a324e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartShuriken/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1500.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1500.png deleted file mode 100644 index 60255c94e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1501.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1501.png deleted file mode 100644 index 8511a4386d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1502.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1502.png deleted file mode 100644 index 80e16780ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1503.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1503.png deleted file mode 100644 index fa17264480..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1504.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1504.png deleted file mode 100644 index f5ffa106c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1505.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1505.png deleted file mode 100644 index d575146e66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1506.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1506.png deleted file mode 100644 index a22abd905e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1507.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1507.png deleted file mode 100644 index cdf00a0673..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1508.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1508.png deleted file mode 100644 index 9958872fd5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1509.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1509.png deleted file mode 100644 index 4020c05775..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1510.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1510.png deleted file mode 100644 index 303c756931..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1511.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1511.png deleted file mode 100644 index 9958872fd5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1512.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1512.png deleted file mode 100644 index 63a4b9eeb4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1513.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1513.png deleted file mode 100644 index 76d68e7cb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1514.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1514.png deleted file mode 100644 index 92cc6c316e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1515.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1515.png deleted file mode 100644 index 8ce9461321..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1516.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1516.png deleted file mode 100644 index 0c85d946cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1517.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1517.png deleted file mode 100644 index 31cd340499..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1518.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1518.png deleted file mode 100644 index ee6a3c2263..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1519.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1519.png deleted file mode 100644 index a3c9145804..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1520.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1520.png deleted file mode 100644 index 29ca2ea544..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1521.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1521.png deleted file mode 100644 index 4128a31905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1522.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1522.png deleted file mode 100644 index ce7a633426..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1523.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1523.png deleted file mode 100644 index 18df879caf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1524.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1524.png deleted file mode 100644 index bf6813bd00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1525.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1525.png deleted file mode 100644 index 957128c502..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1526.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1526.png deleted file mode 100644 index da086af9ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1527.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1527.png deleted file mode 100644 index a4e26026db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1528.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1528.png deleted file mode 100644 index 061d5743d6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1529.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1529.png deleted file mode 100644 index ad9a3cc95e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1530.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1530.png deleted file mode 100644 index 5cf934c889..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1531.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1531.png deleted file mode 100644 index 2fecef53a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1532.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1532.png deleted file mode 100644 index 45dd06d87a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1533.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1533.png deleted file mode 100644 index 4954bf2f52..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1534.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1534.png deleted file mode 100644 index 475f9ba0a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1535.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1535.png deleted file mode 100644 index baaa4c39bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1536.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1536.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1537.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1537.png deleted file mode 100644 index fd4682ee14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1538.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1538.png deleted file mode 100644 index 43bbf49329..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1539.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1539.png deleted file mode 100644 index 11204bda32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1540.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1540.png deleted file mode 100644 index 19749dc915..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1541.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1541.png deleted file mode 100644 index 20da6e97c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1542.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1542.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1543.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1543.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1544.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1544.png deleted file mode 100644 index 88c94145a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1545.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1545.png deleted file mode 100644 index 5181b2e10c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1546.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1546.png deleted file mode 100644 index c7ee60f572..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1547.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1547.png deleted file mode 100644 index 7781f237b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1548.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1548.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1549.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1549.png deleted file mode 100644 index 4f536a7dd4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1550.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1550.png deleted file mode 100644 index 14a22846bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1551.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1551.png deleted file mode 100644 index 3be5057b12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1553.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1553.png deleted file mode 100644 index 91a9b8c6db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1554.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1554.png deleted file mode 100644 index 472ebc42b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1555.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1555.png deleted file mode 100644 index a7662bb21b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1556.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1556.png deleted file mode 100644 index 92cc6c316e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1557.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1557.png deleted file mode 100644 index 92cc6c316e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1562.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1562.png deleted file mode 100644 index fd3e2bfc6f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1563.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1563.png deleted file mode 100644 index a7662bb21b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1564.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1564.png deleted file mode 100644 index ccfd44b518..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1565.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1565.png deleted file mode 100644 index a364fba950..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1566.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1566.png deleted file mode 100644 index 014633ce50..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1567.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1567.png deleted file mode 100644 index 0e60313f0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1568.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1568.png deleted file mode 100644 index 60ad0a7f79..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1570.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1570.png deleted file mode 100644 index aff4527676..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1571.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1571.png deleted file mode 100644 index 69ba324fa6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1572.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1572.png deleted file mode 100644 index 33cfa87b05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1573.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1573.png deleted file mode 100644 index 6eee40c50e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1574.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1574.png deleted file mode 100644 index 4128a31905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1575.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1575.png deleted file mode 100644 index 7781f237b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1576.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1576.png deleted file mode 100644 index 02ccb7fcbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1577.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1577.png deleted file mode 100644 index 9b9feea7f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1578.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1578.png deleted file mode 100644 index 17d4fd1bd5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1579.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1579.png deleted file mode 100644 index 9958872fd5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1582.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1582.png deleted file mode 100644 index 7673d5ba24..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1583.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1583.png deleted file mode 100644 index 5d008b8b9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1584.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1584.png deleted file mode 100644 index f42a3a5656..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1585.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1585.png deleted file mode 100644 index eda859ca56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1586.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1586.png deleted file mode 100644 index cb77424ed9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1587.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1587.png deleted file mode 100644 index f404412d35..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1588.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1588.png deleted file mode 100644 index a7662bb21b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1589.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1589.png deleted file mode 100644 index d4e05f9cb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1590.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1590.png deleted file mode 100644 index b453647f6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1591.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1591.png deleted file mode 100644 index 07c6f0b380..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1592.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1592.png deleted file mode 100644 index 545c73981d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1593.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1593.png deleted file mode 100644 index 2200deb1e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1594.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1594.png deleted file mode 100644 index 193e1b0ed3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1595.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1595.png deleted file mode 100644 index 567f8af679..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1596.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1596.png deleted file mode 100644 index 8adb9a9f1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1597.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1597.png deleted file mode 100644 index 28157f931a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1598.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1598.png deleted file mode 100644 index 1211a1684a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1599.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1599.png deleted file mode 100644 index 4d1a1e9a5d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1600.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1600.png deleted file mode 100644 index cdbed25d16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1601.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1601.png deleted file mode 100644 index 1d813056e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1602.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1602.png deleted file mode 100644 index 21977a922d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1603.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1603.png deleted file mode 100644 index 3f2733b6b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1604.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1604.png deleted file mode 100644 index abed16f814..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1605.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1605.png deleted file mode 100644 index 08e63d44a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1606.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1606.png deleted file mode 100644 index bd5242ed58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1607.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1607.png deleted file mode 100644 index b4ff15aa66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1608.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1608.png deleted file mode 100644 index fbc8aa3e32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1609.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1609.png deleted file mode 100644 index 4128a31905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1610.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1610.png deleted file mode 100644 index 303c756931..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1611.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1611.png deleted file mode 100644 index a9d7895ff3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1612.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1612.png deleted file mode 100644 index bcc9886279..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1613.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1613.png deleted file mode 100644 index 38b7e878c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1614.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1614.png deleted file mode 100644 index bd5242ed58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1615.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1615.png deleted file mode 100644 index 43bbf49329..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1616.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1616.png deleted file mode 100644 index 3a717f8834..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1617.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1617.png deleted file mode 100644 index 08e63d44a9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1618.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1618.png deleted file mode 100644 index a13574edb4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1619.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1619.png deleted file mode 100644 index 7fe0f4ee53..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1620.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1620.png deleted file mode 100644 index b453647f6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1621.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1621.png deleted file mode 100644 index 6c7132a4d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1622.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1622.png deleted file mode 100644 index 5bbbab6629..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1623.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1623.png deleted file mode 100644 index f3304a75da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1624.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1624.png deleted file mode 100644 index 4f295ca074..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1625.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1625.png deleted file mode 100644 index 0b4d3ffbc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1626.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1626.png deleted file mode 100644 index 33190bac6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1627.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1627.png deleted file mode 100644 index 5f4a649564..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1628.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1628.png deleted file mode 100644 index 086c4efa02..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1629.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1629.png deleted file mode 100644 index ed292fa05e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1630.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1630.png deleted file mode 100644 index 94687ea103..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1631.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1631.png deleted file mode 100644 index 303c756931..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1632.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1632.png deleted file mode 100644 index 1a5518bf0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1633.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1633.png deleted file mode 100644 index b712bf5dce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1634.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1634.png deleted file mode 100644 index f2e24faa3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1635.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1635.png deleted file mode 100644 index 4cb9246fae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1636.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1636.png deleted file mode 100644 index 17398dbdaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1637.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1637.png deleted file mode 100644 index 570a6d097d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1638.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1638.png deleted file mode 100644 index 12ea4f11d5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1639.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1639.png deleted file mode 100644 index 69ba324fa6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1640.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1640.png deleted file mode 100644 index 45029a4eca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1641.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1641.png deleted file mode 100644 index 22c12eb430..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1642.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1642.png deleted file mode 100644 index 9a07fae860..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1643.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1643.png deleted file mode 100644 index e3fa38c5f0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1644.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1644.png deleted file mode 100644 index e893561163..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1645.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1645.png deleted file mode 100644 index 1a5518bf0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1646.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1646.png deleted file mode 100644 index bd5242ed58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1647.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1647.png deleted file mode 100644 index 92cc6c316e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1648.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1648.png deleted file mode 100644 index 303c756931..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1649.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1649.png deleted file mode 100644 index e285b96285..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1650.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1650.png deleted file mode 100644 index 0f57948e07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1651.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1651.png deleted file mode 100644 index b48453c371..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1652.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1652.png deleted file mode 100644 index 6d499db351..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1653.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1653.png deleted file mode 100644 index 76c947003b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1654.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1654.png deleted file mode 100644 index a9f3c2c04b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1655.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1655.png deleted file mode 100644 index 1a827375cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1656.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1656.png deleted file mode 100644 index f1b58a8817..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1657.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1657.png deleted file mode 100644 index 4128a31905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1658.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1658.png deleted file mode 100644 index bf1f8ea570..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1659.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1659.png deleted file mode 100644 index f2ea649718..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1660.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1660.png deleted file mode 100644 index 4aed6fe81a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1661.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1661.png deleted file mode 100644 index 9eb40ca08d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1662.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1662.png deleted file mode 100644 index 367b044ee0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1663.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1663.png deleted file mode 100644 index bb7459a5ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1664.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1664.png deleted file mode 100644 index e4058f4996..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1665.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1665.png deleted file mode 100644 index 3dd7a69cc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1666.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1666.png deleted file mode 100644 index 280e018c4e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1667.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1667.png deleted file mode 100644 index 798ac44a5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1668.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1668.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1670.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1670.png deleted file mode 100644 index 34d18a2d8b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1672.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1672.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1673.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1673.png deleted file mode 100644 index 1b1cb13814..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1674.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1674.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1675.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1675.png deleted file mode 100644 index bd5242ed58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1676.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1676.png deleted file mode 100644 index 54650c9974..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1677.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1677.png deleted file mode 100644 index 50e81e0acd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1678.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1678.png deleted file mode 100644 index 1ca82b77ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1679.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1679.png deleted file mode 100644 index b23b1082f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1680.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1680.png deleted file mode 100644 index 5ed2a7d020..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1681.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1681.png deleted file mode 100644 index cd697e8f4a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1682.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1682.png deleted file mode 100644 index 6db12d6b19..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1683.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1683.png deleted file mode 100644 index b6eb18c24c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1684.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1684.png deleted file mode 100644 index a8950c49dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1685.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1685.png deleted file mode 100644 index 4a6b00ddd2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1686.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1686.png deleted file mode 100644 index 4128a31905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1687.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1687.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1688.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1688.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1689.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1689.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1690.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1690.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1691.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1691.png deleted file mode 100644 index aa1031820e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1692.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1692.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1693.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1693.png deleted file mode 100644 index 427c8fee48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1694.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1694.png deleted file mode 100644 index e91aa07003..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1695.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1695.png deleted file mode 100644 index 2ff007005a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1696.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1696.png deleted file mode 100644 index f525366b94..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1697.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1697.png deleted file mode 100644 index bae646ab76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1698.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1698.png deleted file mode 100644 index 4128a31905..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1699.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1699.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1700.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1700.png deleted file mode 100644 index 013b203af1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1701.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1701.png deleted file mode 100644 index 313243c394..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1702.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1702.png deleted file mode 100644 index 452a1f84bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1703.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1703.png deleted file mode 100644 index 076b8ec619..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1704.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1704.png deleted file mode 100644 index 3bff8f4357..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1705.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1705.png deleted file mode 100644 index 4a08ec551a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1706.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1706.png deleted file mode 100644 index 303c756931..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1707.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1707.png deleted file mode 100644 index 2ce6b39aa1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1708.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1708.png deleted file mode 100644 index f5ffa106c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1709.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1709.png deleted file mode 100644 index 6f2aa38e26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1710.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1710.png deleted file mode 100644 index 562ad7f8b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1711.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1711.png deleted file mode 100644 index dcb455ab31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1712.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1712.png deleted file mode 100644 index 3f0f09c9a7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1713.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1713.png deleted file mode 100644 index a25aef1b28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1714.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1714.png deleted file mode 100644 index 903d38855b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1715.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1715.png deleted file mode 100644 index 5a6d455b59..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1716.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1716.png deleted file mode 100644 index 72e6b07c86..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1717.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1717.png deleted file mode 100644 index 0f04d898e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1718.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1718.png deleted file mode 100644 index 60bfaebf71..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1719.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1719.png deleted file mode 100644 index ed50eb963f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1720.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1720.png deleted file mode 100644 index ed50eb963f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1721.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1721.png deleted file mode 100644 index 742171f363..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1722.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1722.png deleted file mode 100644 index 784883b458..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1723.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1723.png deleted file mode 100644 index 11e652c7e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1724.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1724.png deleted file mode 100644 index fb03b7a36d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1725.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1725.png deleted file mode 100644 index fc1511fe37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1726.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1726.png deleted file mode 100644 index 151a981160..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1727.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1727.png deleted file mode 100644 index 9fa398db0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1728.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1728.png deleted file mode 100644 index 2efac2c1ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1729.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1729.png deleted file mode 100644 index c03edab0da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1730.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1730.png deleted file mode 100644 index 868cbb0fd7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1731.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1731.png deleted file mode 100644 index 685fb2c5e4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1732.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1732.png deleted file mode 100644 index 82c4bfe29f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1733.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1733.png deleted file mode 100644 index 08849a52b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1734.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1734.png deleted file mode 100644 index fe8a4155ab..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1735.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1735.png deleted file mode 100644 index ddcaedae01..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1740.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1740.png deleted file mode 100644 index 1ce6b23fd0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1741.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1741.png deleted file mode 100644 index 254dd244a0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1742.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1742.png deleted file mode 100644 index e8bde74c4f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1743.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1743.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1744.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1744.png deleted file mode 100644 index 165968d2b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1745.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1745.png deleted file mode 100644 index cc94a0cbf8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSignHead/1746.png b/front/public/images/small/TGregworks/tGregToolPartSignHead/1746.png deleted file mode 100644 index 498c56c764..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSignHead/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1500.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1500.png deleted file mode 100644 index b001f9d623..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1501.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1501.png deleted file mode 100644 index c97100f387..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1502.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1502.png deleted file mode 100644 index d95557e154..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1503.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1503.png deleted file mode 100644 index e0028777e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1504.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1504.png deleted file mode 100644 index 85a347e098..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1505.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1505.png deleted file mode 100644 index 9f306ef68e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1506.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1506.png deleted file mode 100644 index cf98995e85..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1507.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1507.png deleted file mode 100644 index 844cbc5c86..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1508.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1508.png deleted file mode 100644 index 239feb1c6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1509.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1509.png deleted file mode 100644 index 547d93f926..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1510.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1510.png deleted file mode 100644 index b1646f75e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1511.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1511.png deleted file mode 100644 index 239feb1c6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1512.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1512.png deleted file mode 100644 index 2de6f4e7cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1513.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1513.png deleted file mode 100644 index a9dcace5ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1514.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1514.png deleted file mode 100644 index 420ef7ce70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1515.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1515.png deleted file mode 100644 index b3fbb5e802..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1516.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1516.png deleted file mode 100644 index 714b052a3b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1517.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1517.png deleted file mode 100644 index e87db8d743..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1518.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1518.png deleted file mode 100644 index 3a26ef57be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1519.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1519.png deleted file mode 100644 index b28ec574c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1520.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1520.png deleted file mode 100644 index c4444acbc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1521.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1521.png deleted file mode 100644 index e15e159a20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1522.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1522.png deleted file mode 100644 index ed4dabc1a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1523.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1523.png deleted file mode 100644 index d9ee658695..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1524.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1524.png deleted file mode 100644 index 896e5a0df3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1525.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1525.png deleted file mode 100644 index 44d8c79ad4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1526.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1526.png deleted file mode 100644 index f242626ae5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1527.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1527.png deleted file mode 100644 index 1fa950d7e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1528.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1528.png deleted file mode 100644 index 47e87dbb84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1529.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1529.png deleted file mode 100644 index c2605f27eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1530.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1530.png deleted file mode 100644 index f6c5e42f47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1531.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1531.png deleted file mode 100644 index e414e50339..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1532.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1532.png deleted file mode 100644 index 752eb4a1ed..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1533.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1533.png deleted file mode 100644 index 97777bf653..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1534.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1534.png deleted file mode 100644 index aea19a3a2f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1535.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1535.png deleted file mode 100644 index 365fa70a35..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1536.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1536.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1537.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1537.png deleted file mode 100644 index c2a9916ed6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1538.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1538.png deleted file mode 100644 index af98be22b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1539.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1539.png deleted file mode 100644 index 732491be81..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1540.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1540.png deleted file mode 100644 index 3abe21a60d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1541.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1541.png deleted file mode 100644 index 86e79b19a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1542.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1542.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1543.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1543.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1544.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1544.png deleted file mode 100644 index 1c0b3bd426..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1545.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1545.png deleted file mode 100644 index d4caa004c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1546.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1546.png deleted file mode 100644 index a6f19cd4c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1547.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1547.png deleted file mode 100644 index d2adf8942a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1548.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1548.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1549.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1549.png deleted file mode 100644 index eeab38e301..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1550.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1550.png deleted file mode 100644 index 7b1ba31789..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1551.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1551.png deleted file mode 100644 index aad627a6da..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1553.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1553.png deleted file mode 100644 index bbc0913534..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1554.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1554.png deleted file mode 100644 index 8ef77cb072..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1555.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1555.png deleted file mode 100644 index dc65394781..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1556.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1556.png deleted file mode 100644 index 420ef7ce70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1557.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1557.png deleted file mode 100644 index 420ef7ce70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1562.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1562.png deleted file mode 100644 index fcbd052c15..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1563.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1563.png deleted file mode 100644 index dc65394781..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1564.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1564.png deleted file mode 100644 index 65277f2c8b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1565.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1565.png deleted file mode 100644 index 973ac3efe2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1566.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1566.png deleted file mode 100644 index 45cd643f11..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1567.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1567.png deleted file mode 100644 index 77848ceb6f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1568.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1568.png deleted file mode 100644 index 85ad2f5ed4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1570.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1570.png deleted file mode 100644 index 660c54e413..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1571.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1571.png deleted file mode 100644 index 8a4806224e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1572.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1572.png deleted file mode 100644 index 5a5e83da23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1573.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1573.png deleted file mode 100644 index 3db49d8273..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1574.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1574.png deleted file mode 100644 index e15e159a20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1575.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1575.png deleted file mode 100644 index d2adf8942a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1576.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1576.png deleted file mode 100644 index b1a789b103..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1577.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1577.png deleted file mode 100644 index 03d8cb296b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1578.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1578.png deleted file mode 100644 index f875e66ed8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1579.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1579.png deleted file mode 100644 index 239feb1c6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1582.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1582.png deleted file mode 100644 index eb671de888..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1583.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1583.png deleted file mode 100644 index 2b331ecca8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1584.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1584.png deleted file mode 100644 index 00b91e2324..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1585.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1585.png deleted file mode 100644 index ce45462bf5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1586.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1586.png deleted file mode 100644 index 9d3606212e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1587.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1587.png deleted file mode 100644 index ab5d016a44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1588.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1588.png deleted file mode 100644 index dc65394781..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1589.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1589.png deleted file mode 100644 index 252f4eca3a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1590.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1590.png deleted file mode 100644 index 94f7fcac38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1591.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1591.png deleted file mode 100644 index ce7a202b5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1592.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1592.png deleted file mode 100644 index 1ac77d31b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1593.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1593.png deleted file mode 100644 index 88be370d90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1594.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1594.png deleted file mode 100644 index ac6571dcbf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1595.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1595.png deleted file mode 100644 index 86b77efc56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1596.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1596.png deleted file mode 100644 index 5ee60c746f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1597.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1597.png deleted file mode 100644 index 9f504de566..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1598.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1598.png deleted file mode 100644 index 41fd7dc86c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1599.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1599.png deleted file mode 100644 index 51e4ea7903..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1600.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1600.png deleted file mode 100644 index 65e9c1d6e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1601.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1601.png deleted file mode 100644 index 9c972efaf2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1602.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1602.png deleted file mode 100644 index 261210f17a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1603.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1603.png deleted file mode 100644 index 08bd4e52dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1604.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1604.png deleted file mode 100644 index a5c9e0a40f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1605.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1605.png deleted file mode 100644 index c2db495c76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1606.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1606.png deleted file mode 100644 index 7a54994d05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1607.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1607.png deleted file mode 100644 index 09ec21addf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1608.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1608.png deleted file mode 100644 index 738daef2b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1609.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1609.png deleted file mode 100644 index e15e159a20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1610.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1610.png deleted file mode 100644 index b1646f75e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1611.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1611.png deleted file mode 100644 index 01b8f90aa6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1612.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1612.png deleted file mode 100644 index 1a5bc84886..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1613.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1613.png deleted file mode 100644 index fb5cc0e94a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1614.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1614.png deleted file mode 100644 index 7a54994d05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1615.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1615.png deleted file mode 100644 index af98be22b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1616.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1616.png deleted file mode 100644 index 22e8966fe9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1617.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1617.png deleted file mode 100644 index c2db495c76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1618.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1618.png deleted file mode 100644 index 6b5f481f15..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1619.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1619.png deleted file mode 100644 index 3ed36a7f23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1620.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1620.png deleted file mode 100644 index 94f7fcac38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1621.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1621.png deleted file mode 100644 index 43bcce7bf9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1622.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1622.png deleted file mode 100644 index 60a1c293fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1623.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1623.png deleted file mode 100644 index be793c98f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1624.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1624.png deleted file mode 100644 index 002a033a25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1625.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1625.png deleted file mode 100644 index f66dac1371..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1626.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1626.png deleted file mode 100644 index 65eb4b8aff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1627.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1627.png deleted file mode 100644 index f17802d7ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1628.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1628.png deleted file mode 100644 index cd6ac322f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1629.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1629.png deleted file mode 100644 index 343e9774b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1630.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1630.png deleted file mode 100644 index a262429b28..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1631.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1631.png deleted file mode 100644 index b1646f75e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1632.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1632.png deleted file mode 100644 index e1e52a456a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1633.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1633.png deleted file mode 100644 index 3d534d271d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1634.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1634.png deleted file mode 100644 index 03e015af16..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1635.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1635.png deleted file mode 100644 index e550adadd4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1636.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1636.png deleted file mode 100644 index 6314b0d232..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1637.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1637.png deleted file mode 100644 index c9c3c2440d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1638.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1638.png deleted file mode 100644 index a3ad9a30db..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1639.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1639.png deleted file mode 100644 index 8a4806224e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1640.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1640.png deleted file mode 100644 index a19a2c31aa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1641.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1641.png deleted file mode 100644 index 336a8a8b78..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1642.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1642.png deleted file mode 100644 index 19b3571f69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1643.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1643.png deleted file mode 100644 index c74445dec3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1644.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1644.png deleted file mode 100644 index 05185d5215..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1645.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1645.png deleted file mode 100644 index e1e52a456a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1646.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1646.png deleted file mode 100644 index 7a54994d05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1647.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1647.png deleted file mode 100644 index 420ef7ce70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1648.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1648.png deleted file mode 100644 index b1646f75e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1649.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1649.png deleted file mode 100644 index 3aaba008c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1650.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1650.png deleted file mode 100644 index 3c133e5d12..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1651.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1651.png deleted file mode 100644 index 6b9067d953..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1652.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1652.png deleted file mode 100644 index ad9f5eab76..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1653.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1653.png deleted file mode 100644 index 95c38ac39e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1654.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1654.png deleted file mode 100644 index 4b10889d93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1655.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1655.png deleted file mode 100644 index 9a806335fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1656.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1656.png deleted file mode 100644 index 4fb2660087..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1657.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1657.png deleted file mode 100644 index e15e159a20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1658.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1658.png deleted file mode 100644 index 1d6cf12842..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1659.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1659.png deleted file mode 100644 index 82b42c5ed5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1660.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1660.png deleted file mode 100644 index 58af307264..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1661.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1661.png deleted file mode 100644 index 5247f3b340..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1662.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1662.png deleted file mode 100644 index eb6c6764c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1663.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1663.png deleted file mode 100644 index e3c72ed0ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1664.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1664.png deleted file mode 100644 index 8ec8f1fd9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1665.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1665.png deleted file mode 100644 index 536127e239..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1666.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1666.png deleted file mode 100644 index dfdf159fd0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1667.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1667.png deleted file mode 100644 index a8749b19fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1668.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1668.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1670.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1670.png deleted file mode 100644 index fe204e83c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1672.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1672.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1673.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1673.png deleted file mode 100644 index 85d050ddc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1674.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1674.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1675.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1675.png deleted file mode 100644 index 7a54994d05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1676.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1676.png deleted file mode 100644 index 7ed01235f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1677.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1677.png deleted file mode 100644 index 7b1df9a486..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1678.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1678.png deleted file mode 100644 index c238508368..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1679.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1679.png deleted file mode 100644 index dae07ac54b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1680.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1680.png deleted file mode 100644 index a833c0331b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1681.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1681.png deleted file mode 100644 index fb25e7e3b4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1682.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1682.png deleted file mode 100644 index ac9b22438f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1683.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1683.png deleted file mode 100644 index 3754a85306..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1684.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1684.png deleted file mode 100644 index 6d216f5b6c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1685.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1685.png deleted file mode 100644 index ecf8076fbe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1686.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1686.png deleted file mode 100644 index e15e159a20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1687.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1687.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1688.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1688.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1689.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1689.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1690.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1690.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1691.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1691.png deleted file mode 100644 index bfef738bd1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1692.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1692.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1693.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1693.png deleted file mode 100644 index c27a085ec4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1694.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1694.png deleted file mode 100644 index 439e3a07f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1695.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1695.png deleted file mode 100644 index c25677b365..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1696.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1696.png deleted file mode 100644 index 86566f5b44..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1697.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1697.png deleted file mode 100644 index ed7ea7b34f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1698.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1698.png deleted file mode 100644 index e15e159a20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1699.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1699.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1700.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1700.png deleted file mode 100644 index 3733e26f66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1701.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1701.png deleted file mode 100644 index 73d2f8e2d3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1702.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1702.png deleted file mode 100644 index f1fc12eb7b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1703.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1703.png deleted file mode 100644 index 985f153712..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1704.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1704.png deleted file mode 100644 index 7f093e7488..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1705.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1705.png deleted file mode 100644 index 0aca375446..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1706.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1706.png deleted file mode 100644 index b1646f75e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1707.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1707.png deleted file mode 100644 index cd557fa504..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1708.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1708.png deleted file mode 100644 index 85a347e098..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1709.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1709.png deleted file mode 100644 index 4e185a3108..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1710.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1710.png deleted file mode 100644 index 0ebfe6dfbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1711.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1711.png deleted file mode 100644 index da4fab88f3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1712.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1712.png deleted file mode 100644 index ea815e8a48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1713.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1713.png deleted file mode 100644 index f7025f169c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1714.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1714.png deleted file mode 100644 index 2b28cf4234..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1715.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1715.png deleted file mode 100644 index 8e889e1e57..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1716.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1716.png deleted file mode 100644 index 08f5163542..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1717.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1717.png deleted file mode 100644 index c88b041200..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1718.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1718.png deleted file mode 100644 index cac78277d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1719.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1719.png deleted file mode 100644 index 818e313cd0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1720.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1720.png deleted file mode 100644 index 818e313cd0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1721.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1721.png deleted file mode 100644 index f2f0aa8025..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1722.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1722.png deleted file mode 100644 index 61de39f819..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1723.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1723.png deleted file mode 100644 index 6d31f4fb62..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1724.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1724.png deleted file mode 100644 index 6e0393ee8c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1725.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1725.png deleted file mode 100644 index d2f84ecc21..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1726.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1726.png deleted file mode 100644 index 6bf8a8634b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1727.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1727.png deleted file mode 100644 index 48d7f78504..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1728.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1728.png deleted file mode 100644 index e6e3b7a272..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1729.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1729.png deleted file mode 100644 index a32911dd31..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1730.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1730.png deleted file mode 100644 index 8bf68c344d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1731.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1731.png deleted file mode 100644 index c5bbd541b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1732.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1732.png deleted file mode 100644 index ef1b79f4e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1733.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1733.png deleted file mode 100644 index ff5998ddc6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1734.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1734.png deleted file mode 100644 index e45987bd90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1735.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1735.png deleted file mode 100644 index 17d8ef5194..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1740.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1740.png deleted file mode 100644 index 0228e8745c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1741.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1741.png deleted file mode 100644 index 8f0b349b1b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1742.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1742.png deleted file mode 100644 index 09fbac9210..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1743.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1743.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1744.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1744.png deleted file mode 100644 index afe0a482dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1745.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1745.png deleted file mode 100644 index d601a18427..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1746.png b/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1746.png deleted file mode 100644 index 4cf3db5902..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartSwordBlade/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1500.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1500.png deleted file mode 100644 index 2bd2b1e307..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1501.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1501.png deleted file mode 100644 index eba2924165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1502.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1502.png deleted file mode 100644 index a876532df1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1503.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1503.png deleted file mode 100644 index 8b9fb5abb3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1504.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1504.png deleted file mode 100644 index 304bc24f00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1505.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1505.png deleted file mode 100644 index 6e687beea7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1506.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1506.png deleted file mode 100644 index f4e865fc04..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1507.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1507.png deleted file mode 100644 index 25344c3164..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1508.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1508.png deleted file mode 100644 index 551b8891cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1509.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1509.png deleted file mode 100644 index c604dda056..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1510.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1510.png deleted file mode 100644 index 63d9848dad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1511.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1511.png deleted file mode 100644 index 551b8891cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1512.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1512.png deleted file mode 100644 index e952829ecc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1513.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1513.png deleted file mode 100644 index 2fc8da640a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1514.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1514.png deleted file mode 100644 index 8e7ab209b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1515.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1515.png deleted file mode 100644 index c472986fa1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1516.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1516.png deleted file mode 100644 index 8621370592..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1517.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1517.png deleted file mode 100644 index 56530c2a0a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1518.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1518.png deleted file mode 100644 index 0c5aaf41a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1519.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1519.png deleted file mode 100644 index 21d4dc2762..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1520.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1520.png deleted file mode 100644 index 7fef4b70eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1521.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1521.png deleted file mode 100644 index e1c30dbfac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1522.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1522.png deleted file mode 100644 index 4f0e4c9b6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1523.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1523.png deleted file mode 100644 index e7f0c95c86..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1524.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1524.png deleted file mode 100644 index 7beeba29c0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1525.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1525.png deleted file mode 100644 index c76aa2e11d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1526.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1526.png deleted file mode 100644 index df435559cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1527.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1527.png deleted file mode 100644 index e25a0224cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1528.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1528.png deleted file mode 100644 index 9d19444acc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1529.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1529.png deleted file mode 100644 index 223f618f4e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1530.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1530.png deleted file mode 100644 index f2dde0a3a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1531.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1531.png deleted file mode 100644 index 46b2ba51be..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1532.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1532.png deleted file mode 100644 index 655eb63b42..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1533.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1533.png deleted file mode 100644 index 5d09e6a22d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1534.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1534.png deleted file mode 100644 index a3b386eeaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1535.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1535.png deleted file mode 100644 index 53e1a5e4ec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1536.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1536.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1537.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1537.png deleted file mode 100644 index c1266ee5a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1538.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1538.png deleted file mode 100644 index 03785675ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1539.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1539.png deleted file mode 100644 index d30dab2a22..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1540.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1540.png deleted file mode 100644 index c326d3c493..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1541.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1541.png deleted file mode 100644 index e63c29de9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1542.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1542.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1543.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1543.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1544.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1544.png deleted file mode 100644 index ee8c096114..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1545.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1545.png deleted file mode 100644 index 6b3a2f95e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1546.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1546.png deleted file mode 100644 index dfcc1da4a8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1547.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1547.png deleted file mode 100644 index ae8ea70678..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1548.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1548.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1549.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1549.png deleted file mode 100644 index de65fd8ae9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1550.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1550.png deleted file mode 100644 index 13dad5bb6b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1551.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1551.png deleted file mode 100644 index 5a2e8a1e92..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1553.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1553.png deleted file mode 100644 index 6946431d50..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1554.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1554.png deleted file mode 100644 index 6124647998..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1555.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1555.png deleted file mode 100644 index df112efba1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1556.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1556.png deleted file mode 100644 index 8e7ab209b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1557.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1557.png deleted file mode 100644 index 8e7ab209b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1562.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1562.png deleted file mode 100644 index bd7754021d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1563.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1563.png deleted file mode 100644 index df112efba1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1564.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1564.png deleted file mode 100644 index 947b70e748..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1565.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1565.png deleted file mode 100644 index c62e075142..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1566.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1566.png deleted file mode 100644 index de3a3ec63b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1567.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1567.png deleted file mode 100644 index e54df7089a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1568.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1568.png deleted file mode 100644 index b2500bdf9a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1570.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1570.png deleted file mode 100644 index 722cf8c84c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1571.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1571.png deleted file mode 100644 index efbae9c4ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1572.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1572.png deleted file mode 100644 index fb77fc3cbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1573.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1573.png deleted file mode 100644 index 3edfcde5b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1574.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1574.png deleted file mode 100644 index e1c30dbfac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1575.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1575.png deleted file mode 100644 index ae8ea70678..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1576.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1576.png deleted file mode 100644 index 3117cda440..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1577.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1577.png deleted file mode 100644 index f5b9648285..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1578.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1578.png deleted file mode 100644 index 9dabf943fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1579.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1579.png deleted file mode 100644 index 551b8891cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1582.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1582.png deleted file mode 100644 index 4aae18c1f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1583.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1583.png deleted file mode 100644 index 8c126c8aeb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1584.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1584.png deleted file mode 100644 index ded0dc1125..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1585.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1585.png deleted file mode 100644 index 7d2e410be3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1586.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1586.png deleted file mode 100644 index 46ab6f856c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1587.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1587.png deleted file mode 100644 index 9ca909f1d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1588.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1588.png deleted file mode 100644 index df112efba1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1589.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1589.png deleted file mode 100644 index b9f6668836..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1590.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1590.png deleted file mode 100644 index aaf08e85e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1591.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1591.png deleted file mode 100644 index d328176c95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1592.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1592.png deleted file mode 100644 index 900850e5dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1593.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1593.png deleted file mode 100644 index b8166b8496..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1594.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1594.png deleted file mode 100644 index 95660332dd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1595.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1595.png deleted file mode 100644 index bd8916e309..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1596.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1596.png deleted file mode 100644 index 0da0a8b09c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1597.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1597.png deleted file mode 100644 index fbeb2249fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1598.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1598.png deleted file mode 100644 index 1c5f4226ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1599.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1599.png deleted file mode 100644 index a6207f99de..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1600.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1600.png deleted file mode 100644 index b15f6ae99b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1601.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1601.png deleted file mode 100644 index ed8976c995..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1602.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1602.png deleted file mode 100644 index f807dd3b84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1603.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1603.png deleted file mode 100644 index 9a4073cacf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1604.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1604.png deleted file mode 100644 index c0a148c307..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1605.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1605.png deleted file mode 100644 index f732d2eccc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1606.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1606.png deleted file mode 100644 index a8b0a2d3b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1607.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1607.png deleted file mode 100644 index f4ca94e3ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1608.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1608.png deleted file mode 100644 index 0cfec2639b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1609.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1609.png deleted file mode 100644 index e1c30dbfac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1610.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1610.png deleted file mode 100644 index 63d9848dad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1611.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1611.png deleted file mode 100644 index 98c2bbac9c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1612.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1612.png deleted file mode 100644 index eced38d350..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1613.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1613.png deleted file mode 100644 index 5368b5558d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1614.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1614.png deleted file mode 100644 index a8b0a2d3b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1615.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1615.png deleted file mode 100644 index 03785675ba..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1616.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1616.png deleted file mode 100644 index 127e071d8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1617.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1617.png deleted file mode 100644 index f732d2eccc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1618.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1618.png deleted file mode 100644 index 7e88cf2988..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1619.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1619.png deleted file mode 100644 index a90444c5a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1620.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1620.png deleted file mode 100644 index aaf08e85e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1621.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1621.png deleted file mode 100644 index c227de6cef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1622.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1622.png deleted file mode 100644 index dbb120ee5b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1623.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1623.png deleted file mode 100644 index 567e2405e1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1624.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1624.png deleted file mode 100644 index 362d700bc7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1625.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1625.png deleted file mode 100644 index 21f71c4394..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1626.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1626.png deleted file mode 100644 index 4ff845eedb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1627.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1627.png deleted file mode 100644 index eedfd96d0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1628.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1628.png deleted file mode 100644 index db6b1cb382..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1629.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1629.png deleted file mode 100644 index bc0a3547e9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1630.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1630.png deleted file mode 100644 index 21629ec907..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1631.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1631.png deleted file mode 100644 index 63d9848dad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1632.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1632.png deleted file mode 100644 index 5313d77cbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1633.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1633.png deleted file mode 100644 index a00279fb20..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1634.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1634.png deleted file mode 100644 index 3c1060577c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1635.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1635.png deleted file mode 100644 index da74264919..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1636.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1636.png deleted file mode 100644 index bf976c5d9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1637.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1637.png deleted file mode 100644 index e480f39dea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1638.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1638.png deleted file mode 100644 index d721329126..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1639.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1639.png deleted file mode 100644 index efbae9c4ee..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1640.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1640.png deleted file mode 100644 index c73d800e75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1641.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1641.png deleted file mode 100644 index a46e2e249c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1642.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1642.png deleted file mode 100644 index 18e123d745..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1643.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1643.png deleted file mode 100644 index fbe3287593..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1644.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1644.png deleted file mode 100644 index b184bff32c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1645.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1645.png deleted file mode 100644 index 5313d77cbc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1646.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1646.png deleted file mode 100644 index a8b0a2d3b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1647.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1647.png deleted file mode 100644 index 8e7ab209b5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1648.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1648.png deleted file mode 100644 index 63d9848dad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1649.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1649.png deleted file mode 100644 index f127a44495..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1650.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1650.png deleted file mode 100644 index 3fd406b96b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1651.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1651.png deleted file mode 100644 index 5473f99e8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1652.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1652.png deleted file mode 100644 index 613d7d3b67..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1653.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1653.png deleted file mode 100644 index 01369704a4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1654.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1654.png deleted file mode 100644 index e95a74d4e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1655.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1655.png deleted file mode 100644 index dd05490668..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1656.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1656.png deleted file mode 100644 index af13d7a5b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1657.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1657.png deleted file mode 100644 index e1c30dbfac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1658.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1658.png deleted file mode 100644 index ae93ca3eac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1659.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1659.png deleted file mode 100644 index 28b8502364..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1660.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1660.png deleted file mode 100644 index f5e0bb1fca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1661.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1661.png deleted file mode 100644 index 19017ac8df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1662.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1662.png deleted file mode 100644 index e76fa5a3f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1663.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1663.png deleted file mode 100644 index 3140fb6e68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1664.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1664.png deleted file mode 100644 index 7657e9e1cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1665.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1665.png deleted file mode 100644 index 67f52ba491..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1666.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1666.png deleted file mode 100644 index 1fc3e1b478..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1667.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1667.png deleted file mode 100644 index 04579da28c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1668.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1668.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1670.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1670.png deleted file mode 100644 index d460a92384..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1672.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1672.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1673.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1673.png deleted file mode 100644 index 894a0c9c60..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1674.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1674.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1675.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1675.png deleted file mode 100644 index a8b0a2d3b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1676.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1676.png deleted file mode 100644 index 8a3a11ce90..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1677.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1677.png deleted file mode 100644 index 17af6692e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1678.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1678.png deleted file mode 100644 index bcfa32fbe9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1679.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1679.png deleted file mode 100644 index 6795e81b45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1680.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1680.png deleted file mode 100644 index dc1817e4d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1681.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1681.png deleted file mode 100644 index 8229a46165..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1682.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1682.png deleted file mode 100644 index 44e00ba20a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1683.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1683.png deleted file mode 100644 index afc3f05246..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1684.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1684.png deleted file mode 100644 index 0a33e8ab2b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1685.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1685.png deleted file mode 100644 index 45a83f58bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1686.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1686.png deleted file mode 100644 index e1c30dbfac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1687.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1687.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1688.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1688.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1689.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1689.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1690.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1690.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1691.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1691.png deleted file mode 100644 index bf7f96de8d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1692.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1692.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1693.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1693.png deleted file mode 100644 index f0924c6c84..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1694.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1694.png deleted file mode 100644 index fa3f864be7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1695.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1695.png deleted file mode 100644 index c9a3ef0fc0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1696.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1696.png deleted file mode 100644 index c83c294088..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1697.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1697.png deleted file mode 100644 index f85eff10ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1698.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1698.png deleted file mode 100644 index e1c30dbfac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1699.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1699.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1700.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1700.png deleted file mode 100644 index 220663c205..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1701.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1701.png deleted file mode 100644 index df257e4c15..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1702.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1702.png deleted file mode 100644 index 23f41f1896..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1703.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1703.png deleted file mode 100644 index 624916c738..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1704.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1704.png deleted file mode 100644 index a5a292ee63..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1705.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1705.png deleted file mode 100644 index 213ed7edb7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1706.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1706.png deleted file mode 100644 index 63d9848dad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1707.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1707.png deleted file mode 100644 index 02fc1c5e5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1708.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1708.png deleted file mode 100644 index 304bc24f00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1709.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1709.png deleted file mode 100644 index 80e75b9a74..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1710.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1710.png deleted file mode 100644 index dfd62cedad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1711.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1711.png deleted file mode 100644 index e94a70f4c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1712.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1712.png deleted file mode 100644 index 154a0cff6a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1713.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1713.png deleted file mode 100644 index c36060ad1c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1714.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1714.png deleted file mode 100644 index 14a57b6092..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1715.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1715.png deleted file mode 100644 index c113fa3ee9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1716.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1716.png deleted file mode 100644 index 1bec4e3338..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1717.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1717.png deleted file mode 100644 index a16ef751df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1718.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1718.png deleted file mode 100644 index d1f12cec66..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1719.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1719.png deleted file mode 100644 index 3dade00dbe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1720.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1720.png deleted file mode 100644 index 3dade00dbe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1721.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1721.png deleted file mode 100644 index e1ac8c69b8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1722.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1722.png deleted file mode 100644 index 698f28c475..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1723.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1723.png deleted file mode 100644 index e6133427cb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1724.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1724.png deleted file mode 100644 index 6907a52e5c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1725.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1725.png deleted file mode 100644 index cd5915c598..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1726.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1726.png deleted file mode 100644 index 275e4c360f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1727.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1727.png deleted file mode 100644 index 00ca26e4f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1728.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1728.png deleted file mode 100644 index bf09dec137..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1729.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1729.png deleted file mode 100644 index 582f47d4d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1730.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1730.png deleted file mode 100644 index 726160058e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1731.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1731.png deleted file mode 100644 index 3cb77c319e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1732.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1732.png deleted file mode 100644 index 097adb2449..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1733.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1733.png deleted file mode 100644 index 76491c9cb0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1734.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1734.png deleted file mode 100644 index 7da48d58df..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1735.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1735.png deleted file mode 100644 index 16c526e6bf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1740.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1740.png deleted file mode 100644 index 5d6bb67353..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1741.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1741.png deleted file mode 100644 index 2131143079..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1742.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1742.png deleted file mode 100644 index 48df73a328..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1743.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1743.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1744.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1744.png deleted file mode 100644 index 16987dd27e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1745.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1745.png deleted file mode 100644 index 330d433e29..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToolRod/1746.png b/front/public/images/small/TGregworks/tGregToolPartToolRod/1746.png deleted file mode 100644 index f43d9b79c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToolRod/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1500.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1500.png deleted file mode 100644 index 7d9d738ada..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1501.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1501.png deleted file mode 100644 index d068f5989d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1502.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1502.png deleted file mode 100644 index 8bf2cd6caa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1503.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1503.png deleted file mode 100644 index 07a36b9a3f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1504.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1504.png deleted file mode 100644 index c17854d394..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1505.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1505.png deleted file mode 100644 index 21cc5bb113..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1506.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1506.png deleted file mode 100644 index 34d0da30b0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1507.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1507.png deleted file mode 100644 index 41ca19d4e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1508.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1508.png deleted file mode 100644 index fe753a6f3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1509.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1509.png deleted file mode 100644 index b5d4499263..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1510.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1510.png deleted file mode 100644 index 2332f85861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1511.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1511.png deleted file mode 100644 index fe753a6f3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1512.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1512.png deleted file mode 100644 index 2cd6ab96cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1513.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1513.png deleted file mode 100644 index 01d3a7f82f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1514.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1514.png deleted file mode 100644 index c17bd6201c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1515.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1515.png deleted file mode 100644 index b7c4e57e02..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1516.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1516.png deleted file mode 100644 index 9448465ae0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1517.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1517.png deleted file mode 100644 index fb125f7d93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1518.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1518.png deleted file mode 100644 index 1d956617e2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1519.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1519.png deleted file mode 100644 index 3d0406fe43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1520.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1520.png deleted file mode 100644 index 34f855d543..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1521.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1521.png deleted file mode 100644 index b1002aec06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1522.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1522.png deleted file mode 100644 index 3680e93009..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1523.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1523.png deleted file mode 100644 index adad5ea7c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1524.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1524.png deleted file mode 100644 index 0aeb8aae2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1525.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1525.png deleted file mode 100644 index 217106dd18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1526.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1526.png deleted file mode 100644 index 48578d607e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1527.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1527.png deleted file mode 100644 index 75e0798151..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1528.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1528.png deleted file mode 100644 index e1dbce3641..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1529.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1529.png deleted file mode 100644 index 763dab3613..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1530.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1530.png deleted file mode 100644 index e43c4ca47f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1531.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1531.png deleted file mode 100644 index c06adebfa1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1532.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1532.png deleted file mode 100644 index b235009ff4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1533.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1533.png deleted file mode 100644 index a28ddb6edc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1534.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1534.png deleted file mode 100644 index c89ecd8e1d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1535.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1535.png deleted file mode 100644 index f30539468a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1536.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1536.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1537.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1537.png deleted file mode 100644 index ad6326367c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1538.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1538.png deleted file mode 100644 index eb7b6f8caf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1539.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1539.png deleted file mode 100644 index 2abaf16e1c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1540.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1540.png deleted file mode 100644 index b4adfa704f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1541.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1541.png deleted file mode 100644 index a71ffc55ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1542.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1542.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1543.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1543.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1544.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1544.png deleted file mode 100644 index 63db336ba6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1545.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1545.png deleted file mode 100644 index fdf8051317..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1546.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1546.png deleted file mode 100644 index 39effad206..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1547.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1547.png deleted file mode 100644 index ddae540f4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1548.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1548.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1549.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1549.png deleted file mode 100644 index 54bb80b6bc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1550.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1550.png deleted file mode 100644 index 4fbd1705d4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1551.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1551.png deleted file mode 100644 index 6b5db0985d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1553.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1553.png deleted file mode 100644 index a11a117c05..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1554.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1554.png deleted file mode 100644 index ff50ae3879..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1555.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1555.png deleted file mode 100644 index d7a2ff040a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1556.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1556.png deleted file mode 100644 index c17bd6201c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1557.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1557.png deleted file mode 100644 index c17bd6201c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1562.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1562.png deleted file mode 100644 index f5a3ef617f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1563.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1563.png deleted file mode 100644 index d7a2ff040a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1564.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1564.png deleted file mode 100644 index 77045902fb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1565.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1565.png deleted file mode 100644 index aace9c436b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1566.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1566.png deleted file mode 100644 index 1f6d5ce907..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1567.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1567.png deleted file mode 100644 index d59ca93589..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1568.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1568.png deleted file mode 100644 index 0a2d38efe4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1570.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1570.png deleted file mode 100644 index b6f3e70854..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1571.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1571.png deleted file mode 100644 index dc24291d23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1572.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1572.png deleted file mode 100644 index a3412ee80d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1573.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1573.png deleted file mode 100644 index d95574906f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1574.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1574.png deleted file mode 100644 index b1002aec06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1575.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1575.png deleted file mode 100644 index ddae540f4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1576.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1576.png deleted file mode 100644 index 9a648652cc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1577.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1577.png deleted file mode 100644 index ce80d35636..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1578.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1578.png deleted file mode 100644 index 0e748c4be8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1579.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1579.png deleted file mode 100644 index fe753a6f3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1582.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1582.png deleted file mode 100644 index 0c0dfc7d43..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1583.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1583.png deleted file mode 100644 index 8ea55ed645..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1584.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1584.png deleted file mode 100644 index f8a71cf2f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1585.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1585.png deleted file mode 100644 index 07e497ca4d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1586.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1586.png deleted file mode 100644 index a26953fab0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1587.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1587.png deleted file mode 100644 index 7136b02274..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1588.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1588.png deleted file mode 100644 index d7a2ff040a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1589.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1589.png deleted file mode 100644 index 344e5875f7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1590.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1590.png deleted file mode 100644 index 78af85f79c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1591.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1591.png deleted file mode 100644 index 668eb4f9c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1592.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1592.png deleted file mode 100644 index 36fec68836..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1593.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1593.png deleted file mode 100644 index 9bf22d345b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1594.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1594.png deleted file mode 100644 index 6d25db0e3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1595.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1595.png deleted file mode 100644 index 329b0bbee7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1596.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1596.png deleted file mode 100644 index 9a2e303797..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1597.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1597.png deleted file mode 100644 index 7db46218b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1598.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1598.png deleted file mode 100644 index 4decbf00ae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1599.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1599.png deleted file mode 100644 index 4037386ca7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1600.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1600.png deleted file mode 100644 index 7751f22e70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1601.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1601.png deleted file mode 100644 index ab3f56fb00..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1602.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1602.png deleted file mode 100644 index 5dcb24cc36..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1603.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1603.png deleted file mode 100644 index b4627ed998..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1604.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1604.png deleted file mode 100644 index 2a154dd7dc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1605.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1605.png deleted file mode 100644 index a1e2797fa0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1606.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1606.png deleted file mode 100644 index b9c0444647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1607.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1607.png deleted file mode 100644 index 59640ac550..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1608.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1608.png deleted file mode 100644 index 2b9f461116..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1609.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1609.png deleted file mode 100644 index b1002aec06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1610.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1610.png deleted file mode 100644 index 2332f85861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1611.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1611.png deleted file mode 100644 index 1f233eaa0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1612.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1612.png deleted file mode 100644 index 4947468d3e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1613.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1613.png deleted file mode 100644 index 4d24041b8f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1614.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1614.png deleted file mode 100644 index b9c0444647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1615.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1615.png deleted file mode 100644 index eb7b6f8caf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1616.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1616.png deleted file mode 100644 index 347f83f7f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1617.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1617.png deleted file mode 100644 index a1e2797fa0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1618.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1618.png deleted file mode 100644 index 948c1fe504..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1619.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1619.png deleted file mode 100644 index f0cc217ab4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1620.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1620.png deleted file mode 100644 index 78af85f79c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1621.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1621.png deleted file mode 100644 index d771e5a41d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1622.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1622.png deleted file mode 100644 index ee316a0ad1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1623.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1623.png deleted file mode 100644 index 64c389d667..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1624.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1624.png deleted file mode 100644 index ed806894a1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1625.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1625.png deleted file mode 100644 index 44257c6042..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1626.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1626.png deleted file mode 100644 index bafdc43ca7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1627.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1627.png deleted file mode 100644 index 433c2e27c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1628.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1628.png deleted file mode 100644 index f8963c0751..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1629.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1629.png deleted file mode 100644 index 6e8e0499ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1630.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1630.png deleted file mode 100644 index f3748e27c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1631.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1631.png deleted file mode 100644 index 2332f85861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1632.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1632.png deleted file mode 100644 index a460dd4013..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1633.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1633.png deleted file mode 100644 index bfc10ba42b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1634.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1634.png deleted file mode 100644 index 18a1cac319..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1635.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1635.png deleted file mode 100644 index a4cd0e8440..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1636.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1636.png deleted file mode 100644 index b93229f32f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1637.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1637.png deleted file mode 100644 index 22edcb3da7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1638.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1638.png deleted file mode 100644 index 49991e07ea..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1639.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1639.png deleted file mode 100644 index dc24291d23..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1640.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1640.png deleted file mode 100644 index f8f9a672e7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1641.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1641.png deleted file mode 100644 index 57a02cb6d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1642.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1642.png deleted file mode 100644 index 107e975422..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1643.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1643.png deleted file mode 100644 index 5a7df11902..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1644.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1644.png deleted file mode 100644 index 243551f271..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1645.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1645.png deleted file mode 100644 index a460dd4013..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1646.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1646.png deleted file mode 100644 index b9c0444647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1647.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1647.png deleted file mode 100644 index c17bd6201c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1648.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1648.png deleted file mode 100644 index 2332f85861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1649.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1649.png deleted file mode 100644 index b57027ffc9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1650.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1650.png deleted file mode 100644 index 8c552ec8b3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1651.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1651.png deleted file mode 100644 index 69c6acd983..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1652.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1652.png deleted file mode 100644 index ac48abdace..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1653.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1653.png deleted file mode 100644 index 8e826ede95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1654.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1654.png deleted file mode 100644 index de8a8d0343..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1655.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1655.png deleted file mode 100644 index 8f2b4a04c9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1656.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1656.png deleted file mode 100644 index 0432ba52f1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1657.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1657.png deleted file mode 100644 index b1002aec06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1658.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1658.png deleted file mode 100644 index a3ee04bf73..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1659.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1659.png deleted file mode 100644 index f4a456ca26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1660.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1660.png deleted file mode 100644 index 8cfa7045fa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1661.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1661.png deleted file mode 100644 index b32f285d97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1662.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1662.png deleted file mode 100644 index 42b641dfd8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1663.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1663.png deleted file mode 100644 index d668934e27..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1664.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1664.png deleted file mode 100644 index 7647f0b1a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1665.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1665.png deleted file mode 100644 index 4fdf4d6c18..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1666.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1666.png deleted file mode 100644 index 7adfaf7c45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1667.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1667.png deleted file mode 100644 index c27d88940c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1668.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1668.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1670.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1670.png deleted file mode 100644 index 52b71a97f4..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1672.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1672.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1673.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1673.png deleted file mode 100644 index 5d971b5cdf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1674.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1674.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1675.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1675.png deleted file mode 100644 index b9c0444647..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1676.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1676.png deleted file mode 100644 index 229e01e3c3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1677.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1677.png deleted file mode 100644 index cb2075c95a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1678.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1678.png deleted file mode 100644 index 089645fe26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1679.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1679.png deleted file mode 100644 index d7bb8f37e3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1680.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1680.png deleted file mode 100644 index 7ba0c59307..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1681.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1681.png deleted file mode 100644 index 988082a575..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1682.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1682.png deleted file mode 100644 index 06eaa74989..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1683.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1683.png deleted file mode 100644 index ec081b44bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1684.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1684.png deleted file mode 100644 index f349959a07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1685.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1685.png deleted file mode 100644 index 1da3ef4f32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1686.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1686.png deleted file mode 100644 index b1002aec06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1687.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1687.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1688.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1688.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1689.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1689.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1690.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1690.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1691.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1691.png deleted file mode 100644 index e8084f3484..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1692.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1692.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1693.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1693.png deleted file mode 100644 index 4ba4e1d74f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1694.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1694.png deleted file mode 100644 index 0ab00aa486..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1695.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1695.png deleted file mode 100644 index d8e44c558f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1696.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1696.png deleted file mode 100644 index c783ff31bb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1697.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1697.png deleted file mode 100644 index 48188466b9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1698.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1698.png deleted file mode 100644 index b1002aec06..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1699.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1699.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1700.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1700.png deleted file mode 100644 index 92c2cccf52..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1701.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1701.png deleted file mode 100644 index c03d69d7ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1702.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1702.png deleted file mode 100644 index c5639dc81a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1703.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1703.png deleted file mode 100644 index 47bfda5453..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1704.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1704.png deleted file mode 100644 index fec4bdefcc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1705.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1705.png deleted file mode 100644 index 468d813711..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1706.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1706.png deleted file mode 100644 index 2332f85861..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1707.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1707.png deleted file mode 100644 index c8712934a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1708.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1708.png deleted file mode 100644 index c17854d394..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1709.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1709.png deleted file mode 100644 index 0015aebf3d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1710.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1710.png deleted file mode 100644 index 3500101fb2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1711.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1711.png deleted file mode 100644 index 00218ee004..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1712.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1712.png deleted file mode 100644 index fb21a902ca..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1713.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1713.png deleted file mode 100644 index 86890a8a1e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1714.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1714.png deleted file mode 100644 index a82cc3257f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1715.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1715.png deleted file mode 100644 index d0fc26ea26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1716.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1716.png deleted file mode 100644 index f06d1f9d14..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1717.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1717.png deleted file mode 100644 index 7ee36a0f70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1718.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1718.png deleted file mode 100644 index c6d758e120..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1719.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1719.png deleted file mode 100644 index 5925f24164..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1720.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1720.png deleted file mode 100644 index 5925f24164..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1721.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1721.png deleted file mode 100644 index 0b69c97ef8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1722.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1722.png deleted file mode 100644 index 78c9c89d2d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1723.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1723.png deleted file mode 100644 index ca46a23b7c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1724.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1724.png deleted file mode 100644 index a260d9587c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1725.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1725.png deleted file mode 100644 index 6474866f9f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1726.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1726.png deleted file mode 100644 index e147901528..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1727.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1727.png deleted file mode 100644 index d0cc422026..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1728.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1728.png deleted file mode 100644 index 61b98c1e17..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1729.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1729.png deleted file mode 100644 index 039652cb63..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1730.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1730.png deleted file mode 100644 index 68c2c87277..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1731.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1731.png deleted file mode 100644 index b1d3420204..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1732.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1732.png deleted file mode 100644 index d7f3bd09b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1733.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1733.png deleted file mode 100644 index 1aba9e6572..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1734.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1734.png deleted file mode 100644 index 50a92b4fec..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1735.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1735.png deleted file mode 100644 index 0c28277b58..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1740.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1740.png deleted file mode 100644 index 84d8b92fbb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1741.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1741.png deleted file mode 100644 index d07ee87cd7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1742.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1742.png deleted file mode 100644 index f31655cb5f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1743.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1743.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1744.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1744.png deleted file mode 100644 index 4ffc02ec45..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1745.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1745.png deleted file mode 100644 index e85bd65fd8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughBind/1746.png b/front/public/images/small/TGregworks/tGregToolPartToughBind/1746.png deleted file mode 100644 index 121fc1542e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughBind/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1500.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1500.png deleted file mode 100644 index 0895fded47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1500.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1501.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1501.png deleted file mode 100644 index 5c66196dbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1501.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1502.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1502.png deleted file mode 100644 index 0fef0f0f7a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1502.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1503.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1503.png deleted file mode 100644 index 1d8cf31abb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1503.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1504.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1504.png deleted file mode 100644 index 4d71bf8756..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1504.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1505.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1505.png deleted file mode 100644 index b98df7a09e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1505.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1506.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1506.png deleted file mode 100644 index a11cb32150..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1506.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1507.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1507.png deleted file mode 100644 index cf0dbb4dd3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1507.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1508.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1508.png deleted file mode 100644 index 812df4c777..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1508.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1509.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1509.png deleted file mode 100644 index b48be71d09..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1509.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1510.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1510.png deleted file mode 100644 index fbf97754cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1510.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1511.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1511.png deleted file mode 100644 index 812df4c777..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1511.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1512.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1512.png deleted file mode 100644 index 514ef20d32..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1512.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1513.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1513.png deleted file mode 100644 index e6bd50b342..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1513.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1514.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1514.png deleted file mode 100644 index a62dcc0e95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1514.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1515.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1515.png deleted file mode 100644 index 2c56fb7a4c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1515.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1516.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1516.png deleted file mode 100644 index a8830af5ac..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1516.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1517.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1517.png deleted file mode 100644 index f3d7494872..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1517.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1518.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1518.png deleted file mode 100644 index ad750e33d2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1518.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1519.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1519.png deleted file mode 100644 index 3f8eda8c48..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1519.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1520.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1520.png deleted file mode 100644 index e4e14c1a8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1520.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1521.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1521.png deleted file mode 100644 index e6fa4f15eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1521.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1522.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1522.png deleted file mode 100644 index 7d1922226e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1522.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1523.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1523.png deleted file mode 100644 index 41bf87831a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1523.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1524.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1524.png deleted file mode 100644 index 91b854fb8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1524.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1525.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1525.png deleted file mode 100644 index 50d3c5b869..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1525.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1526.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1526.png deleted file mode 100644 index 8b0a3eaa4f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1526.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1527.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1527.png deleted file mode 100644 index b061a78375..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1527.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1528.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1528.png deleted file mode 100644 index d78ab12402..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1528.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1529.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1529.png deleted file mode 100644 index 34a7d2e2d9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1529.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1530.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1530.png deleted file mode 100644 index 69df59f733..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1530.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1531.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1531.png deleted file mode 100644 index 6b261dcf35..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1531.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1532.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1532.png deleted file mode 100644 index 63757f8064..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1532.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1533.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1533.png deleted file mode 100644 index 4c706fea25..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1533.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1534.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1534.png deleted file mode 100644 index ec62c6cbfe..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1534.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1535.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1535.png deleted file mode 100644 index 450e7cbc97..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1535.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1536.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1536.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1536.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1537.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1537.png deleted file mode 100644 index 4fce4a8c2a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1537.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1538.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1538.png deleted file mode 100644 index c5fa8ff0ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1538.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1539.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1539.png deleted file mode 100644 index 5d9e4ec60b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1539.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1540.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1540.png deleted file mode 100644 index fa3dbd3414..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1540.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1541.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1541.png deleted file mode 100644 index 96cd71c50f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1541.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1542.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1542.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1542.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1543.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1543.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1543.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1544.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1544.png deleted file mode 100644 index 19d066c545..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1544.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1545.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1545.png deleted file mode 100644 index d40115dba0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1545.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1546.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1546.png deleted file mode 100644 index 45d51f786a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1546.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1547.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1547.png deleted file mode 100644 index a15dd8c577..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1547.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1548.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1548.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1548.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1549.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1549.png deleted file mode 100644 index 1f6cc061ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1549.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1550.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1550.png deleted file mode 100644 index 8ba7825570..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1550.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1551.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1551.png deleted file mode 100644 index a31ed97438..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1551.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1553.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1553.png deleted file mode 100644 index 854f2d8e07..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1553.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1554.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1554.png deleted file mode 100644 index 6dffc9499f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1554.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1555.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1555.png deleted file mode 100644 index 27e0299012..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1555.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1556.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1556.png deleted file mode 100644 index a62dcc0e95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1556.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1557.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1557.png deleted file mode 100644 index a62dcc0e95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1557.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1562.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1562.png deleted file mode 100644 index 0d3ebcdea7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1562.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1563.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1563.png deleted file mode 100644 index 27e0299012..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1563.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1564.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1564.png deleted file mode 100644 index 42cd524dc2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1564.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1565.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1565.png deleted file mode 100644 index 3174131dcb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1565.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1566.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1566.png deleted file mode 100644 index b3a454e5c8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1566.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1567.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1567.png deleted file mode 100644 index ba713ebfae..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1567.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1568.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1568.png deleted file mode 100644 index 16feaaef47..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1568.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1570.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1570.png deleted file mode 100644 index e25ef83f13..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1570.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1571.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1571.png deleted file mode 100644 index 2c5cd502d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1571.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1572.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1572.png deleted file mode 100644 index 5de6cbbdaf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1572.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1573.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1573.png deleted file mode 100644 index 0402063f8e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1573.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1574.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1574.png deleted file mode 100644 index e6fa4f15eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1574.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1575.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1575.png deleted file mode 100644 index a15dd8c577..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1575.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1576.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1576.png deleted file mode 100644 index 299bc3d809..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1576.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1577.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1577.png deleted file mode 100644 index 41924979cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1577.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1578.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1578.png deleted file mode 100644 index 0ef52c62cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1578.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1579.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1579.png deleted file mode 100644 index 812df4c777..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1579.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1582.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1582.png deleted file mode 100644 index a133476e8a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1582.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1583.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1583.png deleted file mode 100644 index 047204b5af..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1583.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1584.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1584.png deleted file mode 100644 index e6e48c75b7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1584.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1585.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1585.png deleted file mode 100644 index 7d164add0c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1585.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1586.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1586.png deleted file mode 100644 index 804a67b46b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1586.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1587.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1587.png deleted file mode 100644 index cc0ef117ad..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1587.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1588.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1588.png deleted file mode 100644 index 27e0299012..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1588.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1589.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1589.png deleted file mode 100644 index 03b76ebeaa..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1589.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1590.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1590.png deleted file mode 100644 index 21945502c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1590.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1591.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1591.png deleted file mode 100644 index fab4c4515f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1591.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1592.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1592.png deleted file mode 100644 index 6d1b0645c6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1592.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1593.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1593.png deleted file mode 100644 index 49a28650d0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1593.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1594.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1594.png deleted file mode 100644 index 5f752c851d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1594.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1595.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1595.png deleted file mode 100644 index a193ba0a21..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1595.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1596.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1596.png deleted file mode 100644 index 96887e2d56..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1596.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1597.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1597.png deleted file mode 100644 index 9c2d88f32f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1597.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1598.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1598.png deleted file mode 100644 index fc1459a788..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1598.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1599.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1599.png deleted file mode 100644 index fbcba5d8a5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1599.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1600.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1600.png deleted file mode 100644 index 2b445d7d13..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1600.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1601.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1601.png deleted file mode 100644 index 954c3f8371..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1601.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1602.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1602.png deleted file mode 100644 index 6b69118bd3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1602.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1603.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1603.png deleted file mode 100644 index 8b5461dbf5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1603.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1604.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1604.png deleted file mode 100644 index 538a3f496a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1604.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1605.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1605.png deleted file mode 100644 index 9a04e6f44e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1605.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1606.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1606.png deleted file mode 100644 index fbcadd4ce3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1606.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1607.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1607.png deleted file mode 100644 index 6ea19221f2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1607.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1608.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1608.png deleted file mode 100644 index 84475cb49d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1608.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1609.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1609.png deleted file mode 100644 index e6fa4f15eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1609.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1610.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1610.png deleted file mode 100644 index fbf97754cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1610.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1611.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1611.png deleted file mode 100644 index d772f30e75..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1611.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1612.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1612.png deleted file mode 100644 index f37b291174..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1612.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1613.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1613.png deleted file mode 100644 index 12f4640bd8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1613.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1614.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1614.png deleted file mode 100644 index fbcadd4ce3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1614.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1615.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1615.png deleted file mode 100644 index c5fa8ff0ef..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1615.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1616.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1616.png deleted file mode 100644 index 2e7e06e1f6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1616.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1617.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1617.png deleted file mode 100644 index 9a04e6f44e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1617.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1618.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1618.png deleted file mode 100644 index ec7a5ec47d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1618.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1619.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1619.png deleted file mode 100644 index f03fbf2880..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1619.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1620.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1620.png deleted file mode 100644 index 21945502c1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1620.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1621.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1621.png deleted file mode 100644 index 126d676511..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1621.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1622.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1622.png deleted file mode 100644 index 002747aee1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1622.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1623.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1623.png deleted file mode 100644 index c45657d408..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1623.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1624.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1624.png deleted file mode 100644 index 267a6d10e8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1624.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1625.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1625.png deleted file mode 100644 index b258c62cbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1625.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1626.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1626.png deleted file mode 100644 index afcfa70715..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1626.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1627.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1627.png deleted file mode 100644 index 6ce9070af7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1627.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1628.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1628.png deleted file mode 100644 index add3cc243c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1628.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1629.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1629.png deleted file mode 100644 index e1ec4fdd1e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1629.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1630.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1630.png deleted file mode 100644 index 13c844db50..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1630.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1631.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1631.png deleted file mode 100644 index fbf97754cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1631.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1632.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1632.png deleted file mode 100644 index beef544e37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1632.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1633.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1633.png deleted file mode 100644 index 22a78fa66f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1633.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1634.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1634.png deleted file mode 100644 index 161ba162eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1634.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1635.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1635.png deleted file mode 100644 index 135781a51a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1635.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1636.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1636.png deleted file mode 100644 index 261cfadaf8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1636.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1637.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1637.png deleted file mode 100644 index d6ccbc404a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1637.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1638.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1638.png deleted file mode 100644 index fe2fae4682..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1638.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1639.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1639.png deleted file mode 100644 index 2c5cd502d1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1639.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1640.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1640.png deleted file mode 100644 index ceea88b893..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1640.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1641.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1641.png deleted file mode 100644 index 770c6271fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1641.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1642.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1642.png deleted file mode 100644 index da425f4a93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1642.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1643.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1643.png deleted file mode 100644 index 06f48cdcd6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1643.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1644.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1644.png deleted file mode 100644 index ebdc64d71a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1644.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1645.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1645.png deleted file mode 100644 index beef544e37..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1645.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1646.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1646.png deleted file mode 100644 index fbcadd4ce3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1646.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1647.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1647.png deleted file mode 100644 index a62dcc0e95..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1647.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1648.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1648.png deleted file mode 100644 index fbf97754cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1648.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1649.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1649.png deleted file mode 100644 index 37e897a943..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1649.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1650.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1650.png deleted file mode 100644 index 829bbe1f4f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1650.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1651.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1651.png deleted file mode 100644 index d7ba8dd5a6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1651.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1652.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1652.png deleted file mode 100644 index cf52ec11f8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1652.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1653.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1653.png deleted file mode 100644 index d84f5e359f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1653.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1654.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1654.png deleted file mode 100644 index 3568cab410..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1654.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1655.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1655.png deleted file mode 100644 index 1769200688..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1655.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1656.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1656.png deleted file mode 100644 index 4a1123fe0e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1656.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1657.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1657.png deleted file mode 100644 index e6fa4f15eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1657.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1658.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1658.png deleted file mode 100644 index 9a03bd482d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1658.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1659.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1659.png deleted file mode 100644 index 32d501ee6e..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1659.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1660.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1660.png deleted file mode 100644 index 038aba2951..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1660.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1661.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1661.png deleted file mode 100644 index 51cc313bf5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1661.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1662.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1662.png deleted file mode 100644 index d9c58308d7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1662.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1663.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1663.png deleted file mode 100644 index 09391fdb0b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1663.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1664.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1664.png deleted file mode 100644 index 054b0b418d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1664.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1665.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1665.png deleted file mode 100644 index 742d6dd783..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1665.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1666.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1666.png deleted file mode 100644 index 83c2890a03..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1666.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1667.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1667.png deleted file mode 100644 index ab93ae18c2..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1667.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1668.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1668.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1668.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1670.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1670.png deleted file mode 100644 index 4cd35e763d..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1670.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1672.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1672.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1672.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1673.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1673.png deleted file mode 100644 index b6c6b7b2c7..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1673.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1674.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1674.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1674.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1675.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1675.png deleted file mode 100644 index fbcadd4ce3..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1675.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1676.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1676.png deleted file mode 100644 index 97c02dc7b1..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1676.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1677.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1677.png deleted file mode 100644 index 090233ad26..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1677.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1678.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1678.png deleted file mode 100644 index ed9baf809f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1678.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1679.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1679.png deleted file mode 100644 index 7366bfa9ff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1679.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1680.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1680.png deleted file mode 100644 index 8ac6ee139f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1680.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1681.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1681.png deleted file mode 100644 index da4b548e93..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1681.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1682.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1682.png deleted file mode 100644 index fed9f4d516..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1682.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1683.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1683.png deleted file mode 100644 index fea0c5d445..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1683.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1684.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1684.png deleted file mode 100644 index c60fc533bd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1684.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1685.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1685.png deleted file mode 100644 index 49f985c02f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1685.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1686.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1686.png deleted file mode 100644 index e6fa4f15eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1686.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1687.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1687.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1687.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1688.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1688.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1688.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1689.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1689.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1689.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1690.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1690.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1690.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1691.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1691.png deleted file mode 100644 index f87ce07b86..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1691.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1692.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1692.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1692.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1693.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1693.png deleted file mode 100644 index a9d0720a65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1693.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1694.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1694.png deleted file mode 100644 index 89b8b89a8a..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1694.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1695.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1695.png deleted file mode 100644 index ddf0fbc042..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1695.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1696.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1696.png deleted file mode 100644 index eb6a14292b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1696.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1697.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1697.png deleted file mode 100644 index 6b51b95698..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1697.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1698.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1698.png deleted file mode 100644 index e6fa4f15eb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1698.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1699.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1699.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1699.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1700.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1700.png deleted file mode 100644 index b158ad805c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1700.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1701.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1701.png deleted file mode 100644 index 0e65b020fd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1701.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1702.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1702.png deleted file mode 100644 index 36d9db7cff..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1702.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1703.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1703.png deleted file mode 100644 index 8c803e2f70..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1703.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1704.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1704.png deleted file mode 100644 index 57ff35bebd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1704.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1705.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1705.png deleted file mode 100644 index 6b232d0417..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1705.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1706.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1706.png deleted file mode 100644 index fbf97754cf..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1706.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1707.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1707.png deleted file mode 100644 index 0f1178b7e6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1707.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1708.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1708.png deleted file mode 100644 index 4d71bf8756..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1708.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1709.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1709.png deleted file mode 100644 index b697dc3edc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1709.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1710.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1710.png deleted file mode 100644 index 72ef4a0483..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1710.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1711.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1711.png deleted file mode 100644 index 7c7ceb99d8..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1711.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1712.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1712.png deleted file mode 100644 index 5d86c52562..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1712.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1713.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1713.png deleted file mode 100644 index 5adabcd068..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1713.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1714.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1714.png deleted file mode 100644 index 185a1a4abb..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1714.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1715.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1715.png deleted file mode 100644 index 28fa83b74f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1715.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1716.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1716.png deleted file mode 100644 index 2b55b04846..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1716.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1717.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1717.png deleted file mode 100644 index 50ac95837c..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1717.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1718.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1718.png deleted file mode 100644 index 8080dec4ce..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1718.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1719.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1719.png deleted file mode 100644 index 7ac8b5da69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1719.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1720.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1720.png deleted file mode 100644 index 7ac8b5da69..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1720.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1721.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1721.png deleted file mode 100644 index fe37896124..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1721.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1722.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1722.png deleted file mode 100644 index a1b1101b40..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1722.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1723.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1723.png deleted file mode 100644 index 178ecdce98..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1723.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1724.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1724.png deleted file mode 100644 index a5dbbc1a65..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1724.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1725.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1725.png deleted file mode 100644 index 9825e5bde0..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1725.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1726.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1726.png deleted file mode 100644 index b94399f36b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1726.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1727.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1727.png deleted file mode 100644 index ba10733709..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1727.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1728.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1728.png deleted file mode 100644 index 4f0cd460f9..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1728.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1729.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1729.png deleted file mode 100644 index 63e7c9a46f..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1729.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1730.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1730.png deleted file mode 100644 index 6f0dc69253..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1730.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1731.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1731.png deleted file mode 100644 index 5944cdac27..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1731.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1732.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1732.png deleted file mode 100644 index 18f859a447..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1732.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1733.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1733.png deleted file mode 100644 index ba67c96e9b..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1733.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1734.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1734.png deleted file mode 100644 index 2dcf8674fc..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1734.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1735.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1735.png deleted file mode 100644 index 447040c6f5..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1735.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1740.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1740.png deleted file mode 100644 index bcbea74c39..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1740.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1741.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1741.png deleted file mode 100644 index 7616934dbd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1741.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1742.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1742.png deleted file mode 100644 index 736fc8c5cd..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1742.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1743.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1743.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1743.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1744.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1744.png deleted file mode 100644 index 6915aeef68..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1744.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1745.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1745.png deleted file mode 100644 index ff544efc38..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1745.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tGregToolPartToughRod/1746.png b/front/public/images/small/TGregworks/tGregToolPartToughRod/1746.png deleted file mode 100644 index 49832c37b6..0000000000 Binary files a/front/public/images/small/TGregworks/tGregToolPartToughRod/1746.png and /dev/null differ diff --git a/front/public/images/small/TGregworks/tgregworks.shardcast/0.png b/front/public/images/small/TGregworks/tgregworks.shardcast/0.png deleted file mode 100644 index ac8001972b..0000000000 Binary files a/front/public/images/small/TGregworks/tgregworks.shardcast/0.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/Dynamo/0.png b/front/public/images/small/TMechworks/Dynamo/0.png deleted file mode 100644 index 3753116a7d..0000000000 Binary files a/front/public/images/small/TMechworks/Dynamo/0.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/LengthWire/0.png b/front/public/images/small/TMechworks/LengthWire/0.png deleted file mode 100644 index b4c664d72e..0000000000 Binary files a/front/public/images/small/TMechworks/LengthWire/0.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/MeshFilter/0.png b/front/public/images/small/TMechworks/MeshFilter/0.png deleted file mode 100644 index 57d0a3a987..0000000000 Binary files a/front/public/images/small/TMechworks/MeshFilter/0.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/MeshFilter/1.png b/front/public/images/small/TMechworks/MeshFilter/1.png deleted file mode 100644 index e093a93738..0000000000 Binary files a/front/public/images/small/TMechworks/MeshFilter/1.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/MeshFilter/2.png b/front/public/images/small/TMechworks/MeshFilter/2.png deleted file mode 100644 index bd32ebbf04..0000000000 Binary files a/front/public/images/small/TMechworks/MeshFilter/2.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/MeshFilter/3.png b/front/public/images/small/TMechworks/MeshFilter/3.png deleted file mode 100644 index f1ebc43d38..0000000000 Binary files a/front/public/images/small/TMechworks/MeshFilter/3.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/MeshFilter/4.png b/front/public/images/small/TMechworks/MeshFilter/4.png deleted file mode 100644 index 3a8403627b..0000000000 Binary files a/front/public/images/small/TMechworks/MeshFilter/4.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/RedstoneMachine/0.png b/front/public/images/small/TMechworks/RedstoneMachine/0.png deleted file mode 100644 index fd275ec60a..0000000000 Binary files a/front/public/images/small/TMechworks/RedstoneMachine/0.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/RedstoneMachine/1.png b/front/public/images/small/TMechworks/RedstoneMachine/1.png deleted file mode 100644 index 6f661c417e..0000000000 Binary files a/front/public/images/small/TMechworks/RedstoneMachine/1.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/RedstoneMachine/2.png b/front/public/images/small/TMechworks/RedstoneMachine/2.png deleted file mode 100644 index 4a273090cd..0000000000 Binary files a/front/public/images/small/TMechworks/RedstoneMachine/2.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/RedstoneMachine/3.png b/front/public/images/small/TMechworks/RedstoneMachine/3.png deleted file mode 100644 index c944b34023..0000000000 Binary files a/front/public/images/small/TMechworks/RedstoneMachine/3.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/SignalBus/0.png b/front/public/images/small/TMechworks/SignalBus/0.png deleted file mode 100644 index 2ac747aa55..0000000000 Binary files a/front/public/images/small/TMechworks/SignalBus/0.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/SignalTerminal/0.png b/front/public/images/small/TMechworks/SignalTerminal/0.png deleted file mode 100644 index e636d2799c..0000000000 Binary files a/front/public/images/small/TMechworks/SignalTerminal/0.png and /dev/null differ diff --git a/front/public/images/small/TMechworks/SpoolWire/0.png b/front/public/images/small/TMechworks/SpoolWire/0.png deleted file mode 100644 index c0cbb55825..0000000000 Binary files a/front/public/images/small/TMechworks/SpoolWire/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/BlockShadowOre/0.png b/front/public/images/small/TaintedMagic/BlockShadowOre/0.png deleted file mode 100644 index ea43670429..0000000000 Binary files a/front/public/images/small/TaintedMagic/BlockShadowOre/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/BlockShadowmetal/0.png b/front/public/images/small/TaintedMagic/BlockShadowmetal/0.png deleted file mode 100644 index 5c28506c2f..0000000000 Binary files a/front/public/images/small/TaintedMagic/BlockShadowmetal/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/BlockWarpwoodLeaves/0.png b/front/public/images/small/TaintedMagic/BlockWarpwoodLeaves/0.png deleted file mode 100644 index 047692e8f1..0000000000 Binary files a/front/public/images/small/TaintedMagic/BlockWarpwoodLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/BlockWarpwoodLog/0.png b/front/public/images/small/TaintedMagic/BlockWarpwoodLog/0.png deleted file mode 100644 index a8ca438c18..0000000000 Binary files a/front/public/images/small/TaintedMagic/BlockWarpwoodLog/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/BlockWarpwoodPlanks/0.png b/front/public/images/small/TaintedMagic/BlockWarpwoodPlanks/0.png deleted file mode 100644 index 3587089825..0000000000 Binary files a/front/public/images/small/TaintedMagic/BlockWarpwoodPlanks/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/BlockWarpwoodSapling/0.png b/front/public/images/small/TaintedMagic/BlockWarpwoodSapling/0.png deleted file mode 100644 index 44c5c3d853..0000000000 Binary files a/front/public/images/small/TaintedMagic/BlockWarpwoodSapling/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemCrystalDagger/0.png b/front/public/images/small/TaintedMagic/ItemCrystalDagger/0.png deleted file mode 100644 index 599dc08746..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemCrystalDagger/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemFocusEldritch/0.png b/front/public/images/small/TaintedMagic/ItemFocusEldritch/0.png deleted file mode 100644 index 8564786883..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemFocusEldritch/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemFocusMageMace/0.png b/front/public/images/small/TaintedMagic/ItemFocusMageMace/0.png deleted file mode 100644 index 4f119523f7..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemFocusMageMace/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemFocusMeteorology/0.png b/front/public/images/small/TaintedMagic/ItemFocusMeteorology/0.png deleted file mode 100644 index af5896ead9..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemFocusMeteorology/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemFocusTaint/0.png b/front/public/images/small/TaintedMagic/ItemFocusTaint/0.png deleted file mode 100644 index c4e9a85125..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemFocusTaint/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemFocusTaintedBlast/0.png b/front/public/images/small/TaintedMagic/ItemFocusTaintedBlast/0.png deleted file mode 100644 index 31fc955305..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemFocusTaintedBlast/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemFocusTime/0.png b/front/public/images/small/TaintedMagic/ItemFocusTime/0.png deleted file mode 100644 index 59501b5b7c..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemFocusTime/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemFocusVisShard/0.png b/front/public/images/small/TaintedMagic/ItemFocusVisShard/0.png deleted file mode 100644 index 8625b3ce13..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemFocusVisShard/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemKatana/0.png b/front/public/images/small/TaintedMagic/ItemKatana/0.png deleted file mode 100644 index 960d1d753e..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemKatana/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemKatana/1.png b/front/public/images/small/TaintedMagic/ItemKatana/1.png deleted file mode 100644 index e3b9d91e37..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemKatana/1.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemKatana/2.png b/front/public/images/small/TaintedMagic/ItemKatana/2.png deleted file mode 100644 index 42e82680c6..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemKatana/2.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMagicFunguar/0.png b/front/public/images/small/TaintedMagic/ItemMagicFunguar/0.png deleted file mode 100644 index e16b1db540..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMagicFunguar/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/0.png b/front/public/images/small/TaintedMagic/ItemMaterial/0.png deleted file mode 100644 index 337d886bc7..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/1.png b/front/public/images/small/TaintedMagic/ItemMaterial/1.png deleted file mode 100644 index f7f2765442..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/1.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/2.png b/front/public/images/small/TaintedMagic/ItemMaterial/2.png deleted file mode 100644 index 072ec9c9c0..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/2.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/3.png b/front/public/images/small/TaintedMagic/ItemMaterial/3.png deleted file mode 100644 index cf5216e9a0..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/3.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/4.png b/front/public/images/small/TaintedMagic/ItemMaterial/4.png deleted file mode 100644 index e288c04d3b..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/4.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/5.png b/front/public/images/small/TaintedMagic/ItemMaterial/5.png deleted file mode 100644 index 132bac0d44..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/5.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/6.png b/front/public/images/small/TaintedMagic/ItemMaterial/6.png deleted file mode 100644 index 9fbebcbee8..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/6.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/7.png b/front/public/images/small/TaintedMagic/ItemMaterial/7.png deleted file mode 100644 index 975575689a..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/7.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemMaterial/8.png b/front/public/images/small/TaintedMagic/ItemMaterial/8.png deleted file mode 100644 index 3ccb1f1fa0..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemMaterial/8.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemPrimordialEdge/0.png b/front/public/images/small/TaintedMagic/ItemPrimordialEdge/0.png deleted file mode 100644 index 70db7e67be..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemPrimordialEdge/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowFortressChestplate/0.png b/front/public/images/small/TaintedMagic/ItemShadowFortressChestplate/0.png deleted file mode 100644 index c8e64c8864..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowFortressChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowFortressHelmet/0.png b/front/public/images/small/TaintedMagic/ItemShadowFortressHelmet/0.png deleted file mode 100644 index b6a7700db9..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowFortressHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowFortressLeggings/0.png b/front/public/images/small/TaintedMagic/ItemShadowFortressLeggings/0.png deleted file mode 100644 index 5a593c2da5..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowFortressLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowmetalAxe/0.png b/front/public/images/small/TaintedMagic/ItemShadowmetalAxe/0.png deleted file mode 100644 index 67301b0c98..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowmetalAxe/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowmetalHoe/0.png b/front/public/images/small/TaintedMagic/ItemShadowmetalHoe/0.png deleted file mode 100644 index a6dbfff0e8..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowmetalHoe/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowmetalPick/0.png b/front/public/images/small/TaintedMagic/ItemShadowmetalPick/0.png deleted file mode 100644 index f63f06b95a..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowmetalPick/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowmetalSpade/0.png b/front/public/images/small/TaintedMagic/ItemShadowmetalSpade/0.png deleted file mode 100644 index d4620114ea..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowmetalSpade/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemShadowmetalSword/0.png b/front/public/images/small/TaintedMagic/ItemShadowmetalSword/0.png deleted file mode 100644 index 814dec30b4..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemShadowmetalSword/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemThaumicDisassembler/0.png b/front/public/images/small/TaintedMagic/ItemThaumicDisassembler/0.png deleted file mode 100644 index 0cfbef2382..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemThaumicDisassembler/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemVoidFortressChestplate/0.png b/front/public/images/small/TaintedMagic/ItemVoidFortressChestplate/0.png deleted file mode 100644 index 1f4ef9996f..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemVoidFortressChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemVoidFortressHelmet/0.png b/front/public/images/small/TaintedMagic/ItemVoidFortressHelmet/0.png deleted file mode 100644 index c466b9464b..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemVoidFortressHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemVoidFortressLeggings/0.png b/front/public/images/small/TaintedMagic/ItemVoidFortressLeggings/0.png deleted file mode 100644 index b845b8cbbd..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemVoidFortressLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemVoidmetalGoggles/0.png b/front/public/images/small/TaintedMagic/ItemVoidmetalGoggles/0.png deleted file mode 100644 index 78d112195e..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemVoidmetalGoggles/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemVoidsentBlood/0.png b/front/public/images/small/TaintedMagic/ItemVoidsentBlood/0.png deleted file mode 100644 index 9642c5ff48..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemVoidsentBlood/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemVoidwalkerBoots/0.png b/front/public/images/small/TaintedMagic/ItemVoidwalkerBoots/0.png deleted file mode 100644 index 8a633c7c04..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemVoidwalkerBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemVoidwalkerSash/0.png b/front/public/images/small/TaintedMagic/ItemVoidwalkerSash/0.png deleted file mode 100644 index 40e9113816..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemVoidwalkerSash/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemWandCap/0.png b/front/public/images/small/TaintedMagic/ItemWandCap/0.png deleted file mode 100644 index 0d90bef447..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemWandCap/1.png b/front/public/images/small/TaintedMagic/ItemWandCap/1.png deleted file mode 100644 index 1c568c1097..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemWandCap/1.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemWandCap/2.png b/front/public/images/small/TaintedMagic/ItemWandCap/2.png deleted file mode 100644 index 77b890a688..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemWandCap/2.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemWandCap/3.png b/front/public/images/small/TaintedMagic/ItemWandCap/3.png deleted file mode 100644 index 870fd7375b..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemWandCap/3.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemWandRod/0.png b/front/public/images/small/TaintedMagic/ItemWandRod/0.png deleted file mode 100644 index d8e3e2f48e..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemWandRod/0.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemWandRod/1.png b/front/public/images/small/TaintedMagic/ItemWandRod/1.png deleted file mode 100644 index 6a2ac462ff..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemWandRod/1.png and /dev/null differ diff --git a/front/public/images/small/TaintedMagic/ItemWarpedGoggles/0.png b/front/public/images/small/TaintedMagic/ItemWarpedGoggles/0.png deleted file mode 100644 index 1f2adb99ff..0000000000 Binary files a/front/public/images/small/TaintedMagic/ItemWarpedGoggles/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ArcaneDoorKey/0.png b/front/public/images/small/Thaumcraft/ArcaneDoorKey/0.png deleted file mode 100644 index 5360afa186..0000000000 Binary files a/front/public/images/small/Thaumcraft/ArcaneDoorKey/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ArcaneDoorKey/1.png b/front/public/images/small/Thaumcraft/ArcaneDoorKey/1.png deleted file mode 100644 index 5bfd17334c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ArcaneDoorKey/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/BlockJarFilledItem/0.png b/front/public/images/small/Thaumcraft/BlockJarFilledItem/0.png deleted file mode 100644 index 1843ef75ce..0000000000 Binary files a/front/public/images/small/Thaumcraft/BlockJarFilledItem/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/BlockJarNodeItem/0.png b/front/public/images/small/Thaumcraft/BlockJarNodeItem/0.png deleted file mode 100644 index 1843ef75ce..0000000000 Binary files a/front/public/images/small/Thaumcraft/BlockJarNodeItem/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/BootsTraveller/0.png b/front/public/images/small/Thaumcraft/BootsTraveller/0.png deleted file mode 100644 index a56ac7e0d7..0000000000 Binary files a/front/public/images/small/Thaumcraft/BootsTraveller/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusExcavation/0.png b/front/public/images/small/Thaumcraft/FocusExcavation/0.png deleted file mode 100644 index 1219a702de..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusExcavation/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusFire/0.png b/front/public/images/small/Thaumcraft/FocusFire/0.png deleted file mode 100644 index 15000938a7..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusFire/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusFrost/0.png b/front/public/images/small/Thaumcraft/FocusFrost/0.png deleted file mode 100644 index 6ded4129d4..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusFrost/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusHellbat/0.png b/front/public/images/small/Thaumcraft/FocusHellbat/0.png deleted file mode 100644 index 0366975338..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusHellbat/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusPech/0.png b/front/public/images/small/Thaumcraft/FocusPech/0.png deleted file mode 100644 index 53b2144d2e..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusPech/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusPortableHole/0.png b/front/public/images/small/Thaumcraft/FocusPortableHole/0.png deleted file mode 100644 index 0cbd8487b6..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusPortableHole/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusPouch/0.png b/front/public/images/small/Thaumcraft/FocusPouch/0.png deleted file mode 100644 index 7cc8f890c6..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusPouch/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusPrimal/0.png b/front/public/images/small/Thaumcraft/FocusPrimal/0.png deleted file mode 100644 index 507818f6b9..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusPrimal/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusShock/0.png b/front/public/images/small/Thaumcraft/FocusShock/0.png deleted file mode 100644 index a9e2fb6899..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusShock/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusTrade/0.png b/front/public/images/small/Thaumcraft/FocusTrade/0.png deleted file mode 100644 index c65d0bfd4f..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusTrade/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/FocusWarding/0.png b/front/public/images/small/Thaumcraft/FocusWarding/0.png deleted file mode 100644 index 16005f6c29..0000000000 Binary files a/front/public/images/small/Thaumcraft/FocusWarding/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/GolemBell/0.png b/front/public/images/small/Thaumcraft/GolemBell/0.png deleted file mode 100644 index 3efe4052db..0000000000 Binary files a/front/public/images/small/Thaumcraft/GolemBell/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/HandMirror/0.png b/front/public/images/small/Thaumcraft/HandMirror/0.png deleted file mode 100644 index 0867f958a0..0000000000 Binary files a/front/public/images/small/Thaumcraft/HandMirror/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/HoverHarness/0.png b/front/public/images/small/Thaumcraft/HoverHarness/0.png deleted file mode 100644 index 771912bf56..0000000000 Binary files a/front/public/images/small/Thaumcraft/HoverHarness/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemAmuletRunic/0.png b/front/public/images/small/Thaumcraft/ItemAmuletRunic/0.png deleted file mode 100644 index f013c92e99..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemAmuletRunic/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemAmuletRunic/1.png b/front/public/images/small/Thaumcraft/ItemAmuletRunic/1.png deleted file mode 100644 index e0e1c6e878..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemAmuletRunic/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemAmuletVis/0.png b/front/public/images/small/Thaumcraft/ItemAmuletVis/0.png deleted file mode 100644 index b6c4a158d2..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemAmuletVis/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemAmuletVis/1.png b/front/public/images/small/Thaumcraft/ItemAmuletVis/1.png deleted file mode 100644 index 33b667d919..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemAmuletVis/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemArcaneDoor/0.png b/front/public/images/small/Thaumcraft/ItemArcaneDoor/0.png deleted file mode 100644 index fed65b5341..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemArcaneDoor/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemAxeElemental/0.png b/front/public/images/small/Thaumcraft/ItemAxeElemental/0.png deleted file mode 100644 index 997b573a3a..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemAxeElemental/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemAxeThaumium/0.png b/front/public/images/small/Thaumcraft/ItemAxeThaumium/0.png deleted file mode 100644 index 650488a094..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemAxeThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemAxeVoid/0.png b/front/public/images/small/Thaumcraft/ItemAxeVoid/0.png deleted file mode 100644 index 4daf61bf4e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemAxeVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBathSalts/0.png b/front/public/images/small/Thaumcraft/ItemBathSalts/0.png deleted file mode 100644 index 9391e174a9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBathSalts/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBaubleBlanks/0.png b/front/public/images/small/Thaumcraft/ItemBaubleBlanks/0.png deleted file mode 100644 index 326776f8df..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBaubleBlanks/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBaubleBlanks/1.png b/front/public/images/small/Thaumcraft/ItemBaubleBlanks/1.png deleted file mode 100644 index 9ed93afa1e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBaubleBlanks/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBaubleBlanks/2.png b/front/public/images/small/Thaumcraft/ItemBaubleBlanks/2.png deleted file mode 100644 index 8f6c7ccc39..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBaubleBlanks/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBootsCultist/0.png b/front/public/images/small/Thaumcraft/ItemBootsCultist/0.png deleted file mode 100644 index bbebbbe7c9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBootsCultist/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBootsRobe/0.png b/front/public/images/small/Thaumcraft/ItemBootsRobe/0.png deleted file mode 100644 index 3b97c05e4f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBootsRobe/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBootsThaumium/0.png b/front/public/images/small/Thaumcraft/ItemBootsThaumium/0.png deleted file mode 100644 index 58ae7c1f58..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBootsThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBootsVoid/0.png b/front/public/images/small/Thaumcraft/ItemBootsVoid/0.png deleted file mode 100644 index 9a809f6d51..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBootsVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBottleTaint/0.png b/front/public/images/small/Thaumcraft/ItemBottleTaint/0.png deleted file mode 100644 index 5c0bbb6b4f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBottleTaint/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBowBone/0.png b/front/public/images/small/Thaumcraft/ItemBowBone/0.png deleted file mode 100644 index 9207838ab4..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBowBone/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBucketDeath/0.png b/front/public/images/small/Thaumcraft/ItemBucketDeath/0.png deleted file mode 100644 index 2b4f88a7c1..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBucketDeath/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemBucketPure/0.png b/front/public/images/small/Thaumcraft/ItemBucketPure/0.png deleted file mode 100644 index 9bc68d234f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemBucketPure/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateCultistLeaderPlate/0.png b/front/public/images/small/Thaumcraft/ItemChestplateCultistLeaderPlate/0.png deleted file mode 100644 index 76b47a1c2c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateCultistLeaderPlate/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateCultistPlate/0.png b/front/public/images/small/Thaumcraft/ItemChestplateCultistPlate/0.png deleted file mode 100644 index 050a889369..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateCultistPlate/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateCultistRobe/0.png b/front/public/images/small/Thaumcraft/ItemChestplateCultistRobe/0.png deleted file mode 100644 index 741918a21e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateCultistRobe/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateFortress/0.png b/front/public/images/small/Thaumcraft/ItemChestplateFortress/0.png deleted file mode 100644 index 0548f60721..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateFortress/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateRobe/0.png b/front/public/images/small/Thaumcraft/ItemChestplateRobe/0.png deleted file mode 100644 index e536f91f77..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateRobe/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateThaumium/0.png b/front/public/images/small/Thaumcraft/ItemChestplateThaumium/0.png deleted file mode 100644 index 372765f183..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateVoid/0.png b/front/public/images/small/Thaumcraft/ItemChestplateVoid/0.png deleted file mode 100644 index 1f736aba28..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemChestplateVoidFortress/0.png b/front/public/images/small/Thaumcraft/ItemChestplateVoidFortress/0.png deleted file mode 100644 index e5d71778ec..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemChestplateVoidFortress/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemCompassStone/0.png b/front/public/images/small/Thaumcraft/ItemCompassStone/0.png deleted file mode 100644 index 388aa10239..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemCompassStone/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemCrystalEssence/0.png b/front/public/images/small/Thaumcraft/ItemCrystalEssence/0.png deleted file mode 100644 index 4d4fe9b1ff..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemCrystalEssence/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemEldritchObject/0.png b/front/public/images/small/Thaumcraft/ItemEldritchObject/0.png deleted file mode 100644 index 6d62daf70a..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemEldritchObject/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemEldritchObject/1.png b/front/public/images/small/Thaumcraft/ItemEldritchObject/1.png deleted file mode 100644 index 73c429a356..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemEldritchObject/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemEldritchObject/2.png b/front/public/images/small/Thaumcraft/ItemEldritchObject/2.png deleted file mode 100644 index e74b0ca7e9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemEldritchObject/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemEldritchObject/3.png b/front/public/images/small/Thaumcraft/ItemEldritchObject/3.png deleted file mode 100644 index 40be0fa34c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemEldritchObject/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemEldritchObject/4.png b/front/public/images/small/Thaumcraft/ItemEldritchObject/4.png deleted file mode 100644 index 558e918310..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemEldritchObject/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemEssence/0.png b/front/public/images/small/Thaumcraft/ItemEssence/0.png deleted file mode 100644 index dbd74dbe86..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemEssence/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemEssence/1.png b/front/public/images/small/Thaumcraft/ItemEssence/1.png deleted file mode 100644 index 2d30e00344..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemEssence/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/0.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/0.png deleted file mode 100644 index 1bb7456438..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/1.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/1.png deleted file mode 100644 index 5d9eeb799d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/10.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/10.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/10.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/11.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/11.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/11.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/12.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/12.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/12.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/13.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/13.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/13.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/14.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/14.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/15.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/15.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/15.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/2.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/2.png deleted file mode 100644 index e3ca7916ae..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/3.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/3.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/4.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/4.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/5.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/5.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/6.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/6.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/7.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/7.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/8.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/8.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemFakeLootbag/9.png b/front/public/images/small/Thaumcraft/ItemFakeLootbag/9.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemFakeLootbag/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGirdleHover/0.png b/front/public/images/small/Thaumcraft/ItemGirdleHover/0.png deleted file mode 100644 index 8a7f46c250..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGirdleHover/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGirdleRunic/0.png b/front/public/images/small/Thaumcraft/ItemGirdleRunic/0.png deleted file mode 100644 index 7f936978e1..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGirdleRunic/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGirdleRunic/1.png b/front/public/images/small/Thaumcraft/ItemGirdleRunic/1.png deleted file mode 100644 index ccf4bb3673..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGirdleRunic/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGoggles/0.png b/front/public/images/small/Thaumcraft/ItemGoggles/0.png deleted file mode 100644 index 482cf54126..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGoggles/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/0.png b/front/public/images/small/Thaumcraft/ItemGolemCore/0.png deleted file mode 100644 index dbe18b3b7d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/1.png b/front/public/images/small/Thaumcraft/ItemGolemCore/1.png deleted file mode 100644 index 4872e2e5d7..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/10.png b/front/public/images/small/Thaumcraft/ItemGolemCore/10.png deleted file mode 100644 index 87d485e414..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/10.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/100.png b/front/public/images/small/Thaumcraft/ItemGolemCore/100.png deleted file mode 100644 index d75f1942ac..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/100.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/11.png b/front/public/images/small/Thaumcraft/ItemGolemCore/11.png deleted file mode 100644 index 7167b2a654..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/11.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/2.png b/front/public/images/small/Thaumcraft/ItemGolemCore/2.png deleted file mode 100644 index d4d13c8562..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/3.png b/front/public/images/small/Thaumcraft/ItemGolemCore/3.png deleted file mode 100644 index 70c6bdd5aa..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/4.png b/front/public/images/small/Thaumcraft/ItemGolemCore/4.png deleted file mode 100644 index c6c55a3a83..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/5.png b/front/public/images/small/Thaumcraft/ItemGolemCore/5.png deleted file mode 100644 index 3a5e6f866b..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/6.png b/front/public/images/small/Thaumcraft/ItemGolemCore/6.png deleted file mode 100644 index 03af7cedce..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/7.png b/front/public/images/small/Thaumcraft/ItemGolemCore/7.png deleted file mode 100644 index 64076fc894..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/8.png b/front/public/images/small/Thaumcraft/ItemGolemCore/8.png deleted file mode 100644 index abd0b691d1..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemCore/9.png b/front/public/images/small/Thaumcraft/ItemGolemCore/9.png deleted file mode 100644 index 96a09a5a01..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemCore/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/0.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/0.png deleted file mode 100644 index 6248586d34..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/1.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/1.png deleted file mode 100644 index 4aeaa777bb..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/2.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/2.png deleted file mode 100644 index 8dc55aa46f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/3.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/3.png deleted file mode 100644 index bd95b6b343..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/4.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/4.png deleted file mode 100644 index ae0e0b8a79..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/5.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/5.png deleted file mode 100644 index bdc738dd8c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/6.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/6.png deleted file mode 100644 index 3e56a32d1d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemDecoration/7.png b/front/public/images/small/Thaumcraft/ItemGolemDecoration/7.png deleted file mode 100644 index 1ec562915b..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemDecoration/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/0.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/0.png deleted file mode 100644 index 5ff0ea196d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/1.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/1.png deleted file mode 100644 index 07d5595703..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/2.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/2.png deleted file mode 100644 index 86401a8c9c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/3.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/3.png deleted file mode 100644 index 028c5600c0..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/4.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/4.png deleted file mode 100644 index 42c61b1add..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/5.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/5.png deleted file mode 100644 index f8965088e0..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/6.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/6.png deleted file mode 100644 index 8931439b57..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemPlacer/7.png b/front/public/images/small/Thaumcraft/ItemGolemPlacer/7.png deleted file mode 100644 index 44de2fc598..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemPlacer/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/0.png b/front/public/images/small/Thaumcraft/ItemGolemUpgrade/0.png deleted file mode 100644 index 79c4433244..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/1.png b/front/public/images/small/Thaumcraft/ItemGolemUpgrade/1.png deleted file mode 100644 index 0737e95ea0..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/2.png b/front/public/images/small/Thaumcraft/ItemGolemUpgrade/2.png deleted file mode 100644 index aef4c93fa1..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/3.png b/front/public/images/small/Thaumcraft/ItemGolemUpgrade/3.png deleted file mode 100644 index e3da0da5f9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/4.png b/front/public/images/small/Thaumcraft/ItemGolemUpgrade/4.png deleted file mode 100644 index 0ad647f6fd..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/5.png b/front/public/images/small/Thaumcraft/ItemGolemUpgrade/5.png deleted file mode 100644 index ac5338a8f4..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemGolemUpgrade/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHelmetCultistLeaderPlate/0.png b/front/public/images/small/Thaumcraft/ItemHelmetCultistLeaderPlate/0.png deleted file mode 100644 index 5dedaf053f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHelmetCultistLeaderPlate/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHelmetCultistPlate/0.png b/front/public/images/small/Thaumcraft/ItemHelmetCultistPlate/0.png deleted file mode 100644 index dba081dd00..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHelmetCultistPlate/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHelmetCultistRobe/0.png b/front/public/images/small/Thaumcraft/ItemHelmetCultistRobe/0.png deleted file mode 100644 index 1a06caefe6..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHelmetCultistRobe/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHelmetFortress/0.png b/front/public/images/small/Thaumcraft/ItemHelmetFortress/0.png deleted file mode 100644 index 2cce73c9ed..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHelmetFortress/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHelmetThaumium/0.png b/front/public/images/small/Thaumcraft/ItemHelmetThaumium/0.png deleted file mode 100644 index d2d52e91a3..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHelmetThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHelmetVoid/0.png b/front/public/images/small/Thaumcraft/ItemHelmetVoid/0.png deleted file mode 100644 index 73bda8fb38..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHelmetVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHelmetVoidFortress/0.png b/front/public/images/small/Thaumcraft/ItemHelmetVoidFortress/0.png deleted file mode 100644 index 329d2c7c55..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHelmetVoidFortress/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHoeElemental/0.png b/front/public/images/small/Thaumcraft/ItemHoeElemental/0.png deleted file mode 100644 index e584c7b7c6..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHoeElemental/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHoeThaumium/0.png b/front/public/images/small/Thaumcraft/ItemHoeThaumium/0.png deleted file mode 100644 index 4c8265ee7f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHoeThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemHoeVoid/0.png b/front/public/images/small/Thaumcraft/ItemHoeVoid/0.png deleted file mode 100644 index 75ecc90caa..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemHoeVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemInkwell/0.png b/front/public/images/small/Thaumcraft/ItemInkwell/0.png deleted file mode 100644 index 6c5a9fed66..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemInkwell/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsCultistLeaderPlate/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsCultistLeaderPlate/0.png deleted file mode 100644 index 72773482d2..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsCultistLeaderPlate/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsCultistPlate/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsCultistPlate/0.png deleted file mode 100644 index 241246f70c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsCultistPlate/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsCultistRobe/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsCultistRobe/0.png deleted file mode 100644 index ce01677b29..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsCultistRobe/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsFortress/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsFortress/0.png deleted file mode 100644 index 95e9d679ca..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsFortress/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsRobe/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsRobe/0.png deleted file mode 100644 index f2cf49b9c9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsRobe/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsThaumium/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsThaumium/0.png deleted file mode 100644 index 1a76fab11f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsVoid/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsVoid/0.png deleted file mode 100644 index 6c9e8e17c3..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLeggingsVoidFortress/0.png b/front/public/images/small/Thaumcraft/ItemLeggingsVoidFortress/0.png deleted file mode 100644 index b6a89c6931..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLeggingsVoidFortress/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLootBag/0.png b/front/public/images/small/Thaumcraft/ItemLootBag/0.png deleted file mode 100644 index 1bb7456438..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLootBag/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLootBag/1.png b/front/public/images/small/Thaumcraft/ItemLootBag/1.png deleted file mode 100644 index 5d9eeb799d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLootBag/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemLootBag/2.png b/front/public/images/small/Thaumcraft/ItemLootBag/2.png deleted file mode 100644 index e3ca7916ae..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemLootBag/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemManaBean/0.png b/front/public/images/small/Thaumcraft/ItemManaBean/0.png deleted file mode 100644 index 012d4c6da4..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemManaBean/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNugget/0.png b/front/public/images/small/Thaumcraft/ItemNugget/0.png deleted file mode 100644 index 447d53824e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNugget/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNugget/16.png b/front/public/images/small/Thaumcraft/ItemNugget/16.png deleted file mode 100644 index fb7123f03d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNugget/16.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNugget/21.png b/front/public/images/small/Thaumcraft/ItemNugget/21.png deleted file mode 100644 index 6819ba1509..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNugget/21.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNugget/31.png b/front/public/images/small/Thaumcraft/ItemNugget/31.png deleted file mode 100644 index 58e13dc2b5..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNugget/31.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNugget/5.png b/front/public/images/small/Thaumcraft/ItemNugget/5.png deleted file mode 100644 index f9edc6e1be..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNugget/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNugget/6.png b/front/public/images/small/Thaumcraft/ItemNugget/6.png deleted file mode 100644 index c50013e641..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNugget/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNugget/7.png b/front/public/images/small/Thaumcraft/ItemNugget/7.png deleted file mode 100644 index 9186ef5a07..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNugget/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNuggetBeef/0.png b/front/public/images/small/Thaumcraft/ItemNuggetBeef/0.png deleted file mode 100644 index 7db4c49f5a..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNuggetBeef/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNuggetChicken/0.png b/front/public/images/small/Thaumcraft/ItemNuggetChicken/0.png deleted file mode 100644 index 21d205f748..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNuggetChicken/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNuggetFish/0.png b/front/public/images/small/Thaumcraft/ItemNuggetFish/0.png deleted file mode 100644 index 7d08fc74b9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNuggetFish/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemNuggetPork/0.png b/front/public/images/small/Thaumcraft/ItemNuggetPork/0.png deleted file mode 100644 index 7536d8c227..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemNuggetPork/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemPickThaumium/0.png b/front/public/images/small/Thaumcraft/ItemPickThaumium/0.png deleted file mode 100644 index 826b73e870..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemPickThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemPickVoid/0.png b/front/public/images/small/Thaumcraft/ItemPickVoid/0.png deleted file mode 100644 index dadd597be8..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemPickVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemPickaxeElemental/0.png b/front/public/images/small/Thaumcraft/ItemPickaxeElemental/0.png deleted file mode 100644 index fb90b3864f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemPickaxeElemental/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemPrimalCrusher/0.png b/front/public/images/small/Thaumcraft/ItemPrimalCrusher/0.png deleted file mode 100644 index d34c85ac0d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemPrimalCrusher/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResearchNotes/0.png b/front/public/images/small/Thaumcraft/ItemResearchNotes/0.png deleted file mode 100644 index 5145a2bc54..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResearchNotes/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResonator/0.png b/front/public/images/small/Thaumcraft/ItemResonator/0.png deleted file mode 100644 index b8e867609f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResonator/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/0.png b/front/public/images/small/Thaumcraft/ItemResource/0.png deleted file mode 100644 index 40f32d7179..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/1.png b/front/public/images/small/Thaumcraft/ItemResource/1.png deleted file mode 100644 index 685020ada3..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/10.png b/front/public/images/small/Thaumcraft/ItemResource/10.png deleted file mode 100644 index ccc3ce7ed7..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/10.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/11.png b/front/public/images/small/Thaumcraft/ItemResource/11.png deleted file mode 100644 index d6adb125ef..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/11.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/12.png b/front/public/images/small/Thaumcraft/ItemResource/12.png deleted file mode 100644 index 73374798b2..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/12.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/13.png b/front/public/images/small/Thaumcraft/ItemResource/13.png deleted file mode 100644 index e1ab0b809f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/13.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/14.png b/front/public/images/small/Thaumcraft/ItemResource/14.png deleted file mode 100644 index b58561e80f..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/15.png b/front/public/images/small/Thaumcraft/ItemResource/15.png deleted file mode 100644 index e2fa056cf6..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/15.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/16.png b/front/public/images/small/Thaumcraft/ItemResource/16.png deleted file mode 100644 index 3d0b21f42d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/16.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/17.png b/front/public/images/small/Thaumcraft/ItemResource/17.png deleted file mode 100644 index c86c18afea..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/17.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/18.png b/front/public/images/small/Thaumcraft/ItemResource/18.png deleted file mode 100644 index d0b42b9d2c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/18.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/2.png b/front/public/images/small/Thaumcraft/ItemResource/2.png deleted file mode 100644 index 6d468c49f8..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/3.png b/front/public/images/small/Thaumcraft/ItemResource/3.png deleted file mode 100644 index 982149d6ce..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/4.png b/front/public/images/small/Thaumcraft/ItemResource/4.png deleted file mode 100644 index 6c07121754..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/6.png b/front/public/images/small/Thaumcraft/ItemResource/6.png deleted file mode 100644 index 462f7bf99d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/7.png b/front/public/images/small/Thaumcraft/ItemResource/7.png deleted file mode 100644 index 3233f219a9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/8.png b/front/public/images/small/Thaumcraft/ItemResource/8.png deleted file mode 100644 index d62a726162..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemResource/9.png b/front/public/images/small/Thaumcraft/ItemResource/9.png deleted file mode 100644 index b030f6517c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemResource/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemRingRunic/0.png b/front/public/images/small/Thaumcraft/ItemRingRunic/0.png deleted file mode 100644 index e20cc15d2d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemRingRunic/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemRingRunic/1.png b/front/public/images/small/Thaumcraft/ItemRingRunic/1.png deleted file mode 100644 index 484913e976..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemRingRunic/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemRingRunic/2.png b/front/public/images/small/Thaumcraft/ItemRingRunic/2.png deleted file mode 100644 index 0c9c06be98..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemRingRunic/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemRingRunic/3.png b/front/public/images/small/Thaumcraft/ItemRingRunic/3.png deleted file mode 100644 index 7f7b418121..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemRingRunic/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSanityChecker/0.png b/front/public/images/small/Thaumcraft/ItemSanityChecker/0.png deleted file mode 100644 index 5627658836..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSanityChecker/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSanitySoap/0.png b/front/public/images/small/Thaumcraft/ItemSanitySoap/0.png deleted file mode 100644 index 2bac843dc7..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSanitySoap/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShard/0.png b/front/public/images/small/Thaumcraft/ItemShard/0.png deleted file mode 100644 index f89bd26511..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShard/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShard/1.png b/front/public/images/small/Thaumcraft/ItemShard/1.png deleted file mode 100644 index 9a6fa68a05..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShard/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShard/2.png b/front/public/images/small/Thaumcraft/ItemShard/2.png deleted file mode 100644 index f3005e8424..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShard/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShard/3.png b/front/public/images/small/Thaumcraft/ItemShard/3.png deleted file mode 100644 index f0d97a368b..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShard/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShard/4.png b/front/public/images/small/Thaumcraft/ItemShard/4.png deleted file mode 100644 index 2107f319d4..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShard/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShard/5.png b/front/public/images/small/Thaumcraft/ItemShard/5.png deleted file mode 100644 index e5173bf794..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShard/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShard/6.png b/front/public/images/small/Thaumcraft/ItemShard/6.png deleted file mode 100644 index b6746eaaa6..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShard/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShovelElemental/0.png b/front/public/images/small/Thaumcraft/ItemShovelElemental/0.png deleted file mode 100644 index ff482efd38..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShovelElemental/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShovelThaumium/0.png b/front/public/images/small/Thaumcraft/ItemShovelThaumium/0.png deleted file mode 100644 index 161d72103a..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShovelThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemShovelVoid/0.png b/front/public/images/small/Thaumcraft/ItemShovelVoid/0.png deleted file mode 100644 index dad49184c0..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemShovelVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/0.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/0.png deleted file mode 100644 index 6cd909d003..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/1.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/1.png deleted file mode 100644 index b14d140970..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/10.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/10.png deleted file mode 100644 index 21b598f0e9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/10.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/11.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/11.png deleted file mode 100644 index e5f7d1e0d4..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/11.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/12.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/12.png deleted file mode 100644 index da0ba7b2cd..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/12.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/13.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/13.png deleted file mode 100644 index 6cd54ff5d2..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/13.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/14.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/14.png deleted file mode 100644 index a7ffb8c925..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/15.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/15.png deleted file mode 100644 index 20396473aa..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/15.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/16.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/16.png deleted file mode 100644 index e0910fd3c1..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/16.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/17.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/17.png deleted file mode 100644 index a664f275f4..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/17.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/18.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/18.png deleted file mode 100644 index 2bad6c3ebd..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/18.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/19.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/19.png deleted file mode 100644 index fc2eefdea4..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/19.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/2.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/2.png deleted file mode 100644 index ed970d0c65..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/20.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/20.png deleted file mode 100644 index 0a6903f987..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/20.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/21.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/21.png deleted file mode 100644 index e82dfc9120..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/21.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/22.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/22.png deleted file mode 100644 index 4d40ab2d0e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/22.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/23.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/23.png deleted file mode 100644 index 902f273283..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/23.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/24.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/24.png deleted file mode 100644 index 0951ecb626..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/24.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/25.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/25.png deleted file mode 100644 index a695e3b4d5..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/25.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/26.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/26.png deleted file mode 100644 index 5317ac1626..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/26.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/27.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/27.png deleted file mode 100644 index 70bd31ef9c..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/27.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/28.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/28.png deleted file mode 100644 index 5317ac1626..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/28.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/3.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/3.png deleted file mode 100644 index cf78654427..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/4.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/4.png deleted file mode 100644 index b729fd770e..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/5.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/5.png deleted file mode 100644 index ccc6a26ebe..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/6.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/6.png deleted file mode 100644 index d3969c56c9..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/7.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/7.png deleted file mode 100644 index 8efb84ebe0..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/8.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/8.png deleted file mode 100644 index 69dd66384d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/9.png b/front/public/images/small/Thaumcraft/ItemSpawnerEgg/9.png deleted file mode 100644 index 56b7b02bb3..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSpawnerEgg/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSwordCrimson/0.png b/front/public/images/small/Thaumcraft/ItemSwordCrimson/0.png deleted file mode 100644 index a1eed3d6cd..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSwordCrimson/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSwordElemental/0.png b/front/public/images/small/Thaumcraft/ItemSwordElemental/0.png deleted file mode 100644 index 2122c4f73d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSwordElemental/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSwordThaumium/0.png b/front/public/images/small/Thaumcraft/ItemSwordThaumium/0.png deleted file mode 100644 index ece714ed49..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSwordThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemSwordVoid/0.png b/front/public/images/small/Thaumcraft/ItemSwordVoid/0.png deleted file mode 100644 index af79e2d111..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemSwordVoid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemThaumometer/0.png b/front/public/images/small/Thaumcraft/ItemThaumometer/0.png deleted file mode 100644 index b3d3bb9c2d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemThaumometer/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemThaumonomicon/0.png b/front/public/images/small/Thaumcraft/ItemThaumonomicon/0.png deleted file mode 100644 index d513d2bf11..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemThaumonomicon/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemThaumonomicon/42.png b/front/public/images/small/Thaumcraft/ItemThaumonomicon/42.png deleted file mode 100644 index 766ccb8e74..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemThaumonomicon/42.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemWispEssence/0.png b/front/public/images/small/Thaumcraft/ItemWispEssence/0.png deleted file mode 100644 index 9a1409f56d..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemWispEssence/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/ItemZombieBrain/0.png b/front/public/images/small/Thaumcraft/ItemZombieBrain/0.png deleted file mode 100644 index 0b1766334b..0000000000 Binary files a/front/public/images/small/Thaumcraft/ItemZombieBrain/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/PrimalArrow/0.png b/front/public/images/small/Thaumcraft/PrimalArrow/0.png deleted file mode 100644 index c5afd0ac82..0000000000 Binary files a/front/public/images/small/Thaumcraft/PrimalArrow/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/PrimalArrow/1.png b/front/public/images/small/Thaumcraft/PrimalArrow/1.png deleted file mode 100644 index bd924110a1..0000000000 Binary files a/front/public/images/small/Thaumcraft/PrimalArrow/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/PrimalArrow/2.png b/front/public/images/small/Thaumcraft/PrimalArrow/2.png deleted file mode 100644 index cc632c9f3a..0000000000 Binary files a/front/public/images/small/Thaumcraft/PrimalArrow/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/PrimalArrow/3.png b/front/public/images/small/Thaumcraft/PrimalArrow/3.png deleted file mode 100644 index 53183247a2..0000000000 Binary files a/front/public/images/small/Thaumcraft/PrimalArrow/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/PrimalArrow/4.png b/front/public/images/small/Thaumcraft/PrimalArrow/4.png deleted file mode 100644 index c2fa490b64..0000000000 Binary files a/front/public/images/small/Thaumcraft/PrimalArrow/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/PrimalArrow/5.png b/front/public/images/small/Thaumcraft/PrimalArrow/5.png deleted file mode 100644 index b231b0b9b5..0000000000 Binary files a/front/public/images/small/Thaumcraft/PrimalArrow/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/TripleMeatTreat/0.png b/front/public/images/small/Thaumcraft/TripleMeatTreat/0.png deleted file mode 100644 index 6a4f1e48ac..0000000000 Binary files a/front/public/images/small/Thaumcraft/TripleMeatTreat/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/TrunkSpawner/0.png b/front/public/images/small/Thaumcraft/TrunkSpawner/0.png deleted file mode 100644 index 67b6005fa2..0000000000 Binary files a/front/public/images/small/Thaumcraft/TrunkSpawner/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCap/0.png b/front/public/images/small/Thaumcraft/WandCap/0.png deleted file mode 100644 index 19e1e93b8e..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCap/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCap/1.png b/front/public/images/small/Thaumcraft/WandCap/1.png deleted file mode 100644 index c7a25c3ca2..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCap/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCap/2.png b/front/public/images/small/Thaumcraft/WandCap/2.png deleted file mode 100644 index 37095926e7..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCap/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCap/6.png b/front/public/images/small/Thaumcraft/WandCap/6.png deleted file mode 100644 index 37095926e7..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCap/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCap/7.png b/front/public/images/small/Thaumcraft/WandCap/7.png deleted file mode 100644 index f99df4139e..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCap/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCap/8.png b/front/public/images/small/Thaumcraft/WandCap/8.png deleted file mode 100644 index 86d80995c5..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCap/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/0.png b/front/public/images/small/Thaumcraft/WandCasting/0.png deleted file mode 100644 index 5381faff9e..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/1.png b/front/public/images/small/Thaumcraft/WandCasting/1.png deleted file mode 100644 index d5845584bf..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/128.png b/front/public/images/small/Thaumcraft/WandCasting/128.png deleted file mode 100644 index caa82a05a3..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/128.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/144.png b/front/public/images/small/Thaumcraft/WandCasting/144.png deleted file mode 100644 index d890e5a4c9..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/144.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/168.png b/front/public/images/small/Thaumcraft/WandCasting/168.png deleted file mode 100644 index 5579cfd7e5..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/168.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/2000.png b/front/public/images/small/Thaumcraft/WandCasting/2000.png deleted file mode 100644 index 2bf94fa644..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/2000.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/36.png b/front/public/images/small/Thaumcraft/WandCasting/36.png deleted file mode 100644 index d834d287e7..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/36.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/54.png b/front/public/images/small/Thaumcraft/WandCasting/54.png deleted file mode 100644 index 7ea3777b8b..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/54.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/72.png b/front/public/images/small/Thaumcraft/WandCasting/72.png deleted file mode 100644 index 566b043513..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/72.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/84.png b/front/public/images/small/Thaumcraft/WandCasting/84.png deleted file mode 100644 index 90cbcc7bf1..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/84.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandCasting/9.png b/front/public/images/small/Thaumcraft/WandCasting/9.png deleted file mode 100644 index 01ffddf588..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandCasting/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/0.png b/front/public/images/small/Thaumcraft/WandRod/0.png deleted file mode 100644 index 26e3729cea..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/1.png b/front/public/images/small/Thaumcraft/WandRod/1.png deleted file mode 100644 index bd9e27bf4b..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/100.png b/front/public/images/small/Thaumcraft/WandRod/100.png deleted file mode 100644 index 2f5ebcd13c..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/100.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/2.png b/front/public/images/small/Thaumcraft/WandRod/2.png deleted file mode 100644 index c9a38a66b9..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/3.png b/front/public/images/small/Thaumcraft/WandRod/3.png deleted file mode 100644 index b0626e42ac..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/4.png b/front/public/images/small/Thaumcraft/WandRod/4.png deleted file mode 100644 index 632e607a35..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/5.png b/front/public/images/small/Thaumcraft/WandRod/5.png deleted file mode 100644 index 9f16fbe688..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/50.png b/front/public/images/small/Thaumcraft/WandRod/50.png deleted file mode 100644 index a37566b78d..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/50.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/51.png b/front/public/images/small/Thaumcraft/WandRod/51.png deleted file mode 100644 index f8c90edf4d..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/51.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/52.png b/front/public/images/small/Thaumcraft/WandRod/52.png deleted file mode 100644 index c7481db81e..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/52.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/53.png b/front/public/images/small/Thaumcraft/WandRod/53.png deleted file mode 100644 index 83fcb73309..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/53.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/54.png b/front/public/images/small/Thaumcraft/WandRod/54.png deleted file mode 100644 index e123b9ae4a..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/54.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/55.png b/front/public/images/small/Thaumcraft/WandRod/55.png deleted file mode 100644 index a993f3c392..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/55.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/56.png b/front/public/images/small/Thaumcraft/WandRod/56.png deleted file mode 100644 index 2da9145801..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/56.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/57.png b/front/public/images/small/Thaumcraft/WandRod/57.png deleted file mode 100644 index 28e02ef23a..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/57.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/6.png b/front/public/images/small/Thaumcraft/WandRod/6.png deleted file mode 100644 index 865e6c4286..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/WandRod/7.png b/front/public/images/small/Thaumcraft/WandRod/7.png deleted file mode 100644 index e523e384f3..0000000000 Binary files a/front/public/images/small/Thaumcraft/WandRod/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockAiry/0.png b/front/public/images/small/Thaumcraft/blockAiry/0.png deleted file mode 100644 index 6623be991e..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockAiry/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockAlchemyFurnace/0.png b/front/public/images/small/Thaumcraft/blockAlchemyFurnace/0.png deleted file mode 100644 index ca1edd0567..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockAlchemyFurnace/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockArcaneDoor/0.png b/front/public/images/small/Thaumcraft/blockArcaneDoor/0.png deleted file mode 100644 index 44b8f698e0..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockArcaneDoor/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockArcaneFurnace/0.png b/front/public/images/small/Thaumcraft/blockArcaneFurnace/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockArcaneFurnace/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/0.png b/front/public/images/small/Thaumcraft/blockCandle/0.png deleted file mode 100644 index 869224f2c7..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/1.png b/front/public/images/small/Thaumcraft/blockCandle/1.png deleted file mode 100644 index 2c8a95ba78..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/10.png b/front/public/images/small/Thaumcraft/blockCandle/10.png deleted file mode 100644 index beca0ef066..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/10.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/11.png b/front/public/images/small/Thaumcraft/blockCandle/11.png deleted file mode 100644 index 36359e0745..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/11.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/12.png b/front/public/images/small/Thaumcraft/blockCandle/12.png deleted file mode 100644 index 19e528bb81..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/12.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/13.png b/front/public/images/small/Thaumcraft/blockCandle/13.png deleted file mode 100644 index f1e2177f31..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/13.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/14.png b/front/public/images/small/Thaumcraft/blockCandle/14.png deleted file mode 100644 index 51cd656c9a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/15.png b/front/public/images/small/Thaumcraft/blockCandle/15.png deleted file mode 100644 index c3b82d2bc6..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/15.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/2.png b/front/public/images/small/Thaumcraft/blockCandle/2.png deleted file mode 100644 index 0aac56b80b..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/3.png b/front/public/images/small/Thaumcraft/blockCandle/3.png deleted file mode 100644 index 960a8891c0..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/4.png b/front/public/images/small/Thaumcraft/blockCandle/4.png deleted file mode 100644 index edfcc13b0a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/5.png b/front/public/images/small/Thaumcraft/blockCandle/5.png deleted file mode 100644 index e9e8abe689..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/6.png b/front/public/images/small/Thaumcraft/blockCandle/6.png deleted file mode 100644 index 1541c6e95f..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/7.png b/front/public/images/small/Thaumcraft/blockCandle/7.png deleted file mode 100644 index a54ee7e3de..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/8.png b/front/public/images/small/Thaumcraft/blockCandle/8.png deleted file mode 100644 index 1d6d0dcac0..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCandle/9.png b/front/public/images/small/Thaumcraft/blockCandle/9.png deleted file mode 100644 index 77e6c9c412..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCandle/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockChestHungry/0.png b/front/public/images/small/Thaumcraft/blockChestHungry/0.png deleted file mode 100644 index 1b3cdea8ec..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockChestHungry/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticDoubleSlabStone/0.png b/front/public/images/small/Thaumcraft/blockCosmeticDoubleSlabStone/0.png deleted file mode 100644 index 7a4b7b6e3c..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticDoubleSlabStone/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticDoubleSlabWood/0.png b/front/public/images/small/Thaumcraft/blockCosmeticDoubleSlabWood/0.png deleted file mode 100644 index 97b85b132b..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticDoubleSlabWood/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticOpaque/0.png b/front/public/images/small/Thaumcraft/blockCosmeticOpaque/0.png deleted file mode 100644 index 097f1e3998..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticOpaque/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticOpaque/1.png b/front/public/images/small/Thaumcraft/blockCosmeticOpaque/1.png deleted file mode 100644 index 7f62ff5dc2..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticOpaque/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticOpaque/2.png b/front/public/images/small/Thaumcraft/blockCosmeticOpaque/2.png deleted file mode 100644 index 66b91dd644..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticOpaque/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSlabStone/0.png b/front/public/images/small/Thaumcraft/blockCosmeticSlabStone/0.png deleted file mode 100644 index 2d5e07405a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSlabStone/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSlabStone/1.png b/front/public/images/small/Thaumcraft/blockCosmeticSlabStone/1.png deleted file mode 100644 index 759dab8aae..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSlabStone/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSlabWood/0.png b/front/public/images/small/Thaumcraft/blockCosmeticSlabWood/0.png deleted file mode 100644 index 89cd689346..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSlabWood/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSlabWood/1.png b/front/public/images/small/Thaumcraft/blockCosmeticSlabWood/1.png deleted file mode 100644 index 23f9546739..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSlabWood/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/0.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/0.png deleted file mode 100644 index 286c307960..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/1.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/1.png deleted file mode 100644 index 286c307960..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/11.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/11.png deleted file mode 100644 index 74196ee4c9..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/11.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/12.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/12.png deleted file mode 100644 index 207910a6c4..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/12.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/14.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/14.png deleted file mode 100644 index 2f2dd1ab22..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/15.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/15.png deleted file mode 100644 index adbaa051de..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/15.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/2.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/2.png deleted file mode 100644 index 2cc99959dc..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/3.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/3.png deleted file mode 100644 index a4b92e2279..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/4.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/4.png deleted file mode 100644 index db16c32e46..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/5.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/5.png deleted file mode 100644 index 902d741e65..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/6.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/6.png deleted file mode 100644 index b6c5f03fa3..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/7.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/7.png deleted file mode 100644 index c01316e8f9..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/8.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/8.png deleted file mode 100644 index 286c307960..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCosmeticSolid/9.png b/front/public/images/small/Thaumcraft/blockCosmeticSolid/9.png deleted file mode 100644 index f1bb87662c..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCosmeticSolid/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCrystal/0.png b/front/public/images/small/Thaumcraft/blockCrystal/0.png deleted file mode 100644 index c1f181a179..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCrystal/1.png b/front/public/images/small/Thaumcraft/blockCrystal/1.png deleted file mode 100644 index 5ef8376ff4..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCrystal/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCrystal/2.png b/front/public/images/small/Thaumcraft/blockCrystal/2.png deleted file mode 100644 index 19ef77bb41..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCrystal/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCrystal/3.png b/front/public/images/small/Thaumcraft/blockCrystal/3.png deleted file mode 100644 index 3ac329f079..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCrystal/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCrystal/4.png b/front/public/images/small/Thaumcraft/blockCrystal/4.png deleted file mode 100644 index 67bc3ae3ed..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCrystal/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCrystal/5.png b/front/public/images/small/Thaumcraft/blockCrystal/5.png deleted file mode 100644 index 14f41b9ea9..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCrystal/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCrystal/6.png b/front/public/images/small/Thaumcraft/blockCrystal/6.png deleted file mode 100644 index 21daef475d..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCrystal/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/0.png b/front/public/images/small/Thaumcraft/blockCustomOre/0.png deleted file mode 100644 index b6f71a936a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/1.png b/front/public/images/small/Thaumcraft/blockCustomOre/1.png deleted file mode 100644 index ef54ba7dd8..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/2.png b/front/public/images/small/Thaumcraft/blockCustomOre/2.png deleted file mode 100644 index 07737b2522..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/3.png b/front/public/images/small/Thaumcraft/blockCustomOre/3.png deleted file mode 100644 index 4c33a33bcc..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/4.png b/front/public/images/small/Thaumcraft/blockCustomOre/4.png deleted file mode 100644 index 3c8aff0e6a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/5.png b/front/public/images/small/Thaumcraft/blockCustomOre/5.png deleted file mode 100644 index 477b8f38ba..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/6.png b/front/public/images/small/Thaumcraft/blockCustomOre/6.png deleted file mode 100644 index 68de48fff2..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomOre/7.png b/front/public/images/small/Thaumcraft/blockCustomOre/7.png deleted file mode 100644 index ff8ce5233c..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomOre/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomPlant/0.png b/front/public/images/small/Thaumcraft/blockCustomPlant/0.png deleted file mode 100644 index e696cb4969..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomPlant/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomPlant/1.png b/front/public/images/small/Thaumcraft/blockCustomPlant/1.png deleted file mode 100644 index ccf630afb5..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomPlant/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomPlant/2.png b/front/public/images/small/Thaumcraft/blockCustomPlant/2.png deleted file mode 100644 index d7a4cfdb98..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomPlant/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomPlant/3.png b/front/public/images/small/Thaumcraft/blockCustomPlant/3.png deleted file mode 100644 index 2ad437f4d9..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomPlant/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomPlant/4.png b/front/public/images/small/Thaumcraft/blockCustomPlant/4.png deleted file mode 100644 index 9ad2a59ae7..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomPlant/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockCustomPlant/5.png b/front/public/images/small/Thaumcraft/blockCustomPlant/5.png deleted file mode 100644 index 0999db2bae..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockCustomPlant/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockEldritch/4.png b/front/public/images/small/Thaumcraft/blockEldritch/4.png deleted file mode 100644 index fe6bdcee45..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockEldritch/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockEldritchNothing/0.png b/front/public/images/small/Thaumcraft/blockEldritchNothing/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockEldritchNothing/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockEssentiaReservoir/0.png b/front/public/images/small/Thaumcraft/blockEssentiaReservoir/0.png deleted file mode 100644 index 6e76b6a61c..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockEssentiaReservoir/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockFluidDeath/0.png b/front/public/images/small/Thaumcraft/blockFluidDeath/0.png deleted file mode 100644 index 15e5d3c8f2..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockFluidDeath/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockFluidPure/0.png b/front/public/images/small/Thaumcraft/blockFluidPure/0.png deleted file mode 100644 index 6e7fc6c71a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockFluidPure/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockFluxGas/0.png b/front/public/images/small/Thaumcraft/blockFluxGas/0.png deleted file mode 100644 index ac2ae0359b..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockFluxGas/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockFluxGoo/0.png b/front/public/images/small/Thaumcraft/blockFluxGoo/0.png deleted file mode 100644 index 37cf6d239d..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockFluxGoo/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockHole/0.png b/front/public/images/small/Thaumcraft/blockHole/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockHole/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockJar/0.png b/front/public/images/small/Thaumcraft/blockJar/0.png deleted file mode 100644 index 8800cb2934..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockJar/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockJar/1.png b/front/public/images/small/Thaumcraft/blockJar/1.png deleted file mode 100644 index cfa6a13f93..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockJar/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockJar/3.png b/front/public/images/small/Thaumcraft/blockJar/3.png deleted file mode 100644 index 872120c891..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockJar/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockLifter/0.png b/front/public/images/small/Thaumcraft/blockLifter/0.png deleted file mode 100644 index 7b8722dec7..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockLifter/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockLootCrate/0.png b/front/public/images/small/Thaumcraft/blockLootCrate/0.png deleted file mode 100644 index 08143315d3..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockLootCrate/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockLootCrate/1.png b/front/public/images/small/Thaumcraft/blockLootCrate/1.png deleted file mode 100644 index 08143315d3..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockLootCrate/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockLootCrate/2.png b/front/public/images/small/Thaumcraft/blockLootCrate/2.png deleted file mode 100644 index 08143315d3..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockLootCrate/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockLootUrn/0.png b/front/public/images/small/Thaumcraft/blockLootUrn/0.png deleted file mode 100644 index 4fab2ac45a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockLootUrn/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockLootUrn/1.png b/front/public/images/small/Thaumcraft/blockLootUrn/1.png deleted file mode 100644 index 4fab2ac45a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockLootUrn/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockLootUrn/2.png b/front/public/images/small/Thaumcraft/blockLootUrn/2.png deleted file mode 100644 index 4fab2ac45a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockLootUrn/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMagicBox/0.png b/front/public/images/small/Thaumcraft/blockMagicBox/0.png deleted file mode 100644 index 8a204adfda..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMagicBox/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMagicalLeaves/0.png b/front/public/images/small/Thaumcraft/blockMagicalLeaves/0.png deleted file mode 100644 index e9e77bbb64..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMagicalLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMagicalLeaves/1.png b/front/public/images/small/Thaumcraft/blockMagicalLeaves/1.png deleted file mode 100644 index 6b19de15c9..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMagicalLeaves/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMagicalLog/0.png b/front/public/images/small/Thaumcraft/blockMagicalLog/0.png deleted file mode 100644 index 54655f4c92..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMagicalLog/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMagicalLog/1.png b/front/public/images/small/Thaumcraft/blockMagicalLog/1.png deleted file mode 100644 index 5a55c7712b..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMagicalLog/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockManaPod/0.png b/front/public/images/small/Thaumcraft/blockManaPod/0.png deleted file mode 100644 index 83ba928588..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockManaPod/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/0.png b/front/public/images/small/Thaumcraft/blockMetalDevice/0.png deleted file mode 100644 index 3dcfa7bb3e..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/1.png b/front/public/images/small/Thaumcraft/blockMetalDevice/1.png deleted file mode 100644 index 25b1435138..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/12.png b/front/public/images/small/Thaumcraft/blockMetalDevice/12.png deleted file mode 100644 index f5af990962..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/12.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/13.png b/front/public/images/small/Thaumcraft/blockMetalDevice/13.png deleted file mode 100644 index d29dd50b40..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/13.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/14.png b/front/public/images/small/Thaumcraft/blockMetalDevice/14.png deleted file mode 100644 index 616b119740..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/2.png b/front/public/images/small/Thaumcraft/blockMetalDevice/2.png deleted file mode 100644 index 1f860c0b60..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/3.png b/front/public/images/small/Thaumcraft/blockMetalDevice/3.png deleted file mode 100644 index 7fb7b0abd2..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/5.png b/front/public/images/small/Thaumcraft/blockMetalDevice/5.png deleted file mode 100644 index 77a47ab2e6..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/7.png b/front/public/images/small/Thaumcraft/blockMetalDevice/7.png deleted file mode 100644 index 3ba380e1ad..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/8.png b/front/public/images/small/Thaumcraft/blockMetalDevice/8.png deleted file mode 100644 index 86c63f4ed5..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMetalDevice/9.png b/front/public/images/small/Thaumcraft/blockMetalDevice/9.png deleted file mode 100644 index 18dce729b4..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMetalDevice/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMirror/0.png b/front/public/images/small/Thaumcraft/blockMirror/0.png deleted file mode 100644 index 12916c7f4b..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMirror/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockMirror/6.png b/front/public/images/small/Thaumcraft/blockMirror/6.png deleted file mode 100644 index 8463311003..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockMirror/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockPortalEldritch/0.png b/front/public/images/small/Thaumcraft/blockPortalEldritch/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockPortalEldritch/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStairsArcaneStone/0.png b/front/public/images/small/Thaumcraft/blockStairsArcaneStone/0.png deleted file mode 100644 index a14e06cceb..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStairsArcaneStone/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStairsEldritch/0.png b/front/public/images/small/Thaumcraft/blockStairsEldritch/0.png deleted file mode 100644 index bf19b60ba8..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStairsEldritch/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStairsGreatwood/0.png b/front/public/images/small/Thaumcraft/blockStairsGreatwood/0.png deleted file mode 100644 index 940036e6d7..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStairsGreatwood/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStairsSilverwood/0.png b/front/public/images/small/Thaumcraft/blockStairsSilverwood/0.png deleted file mode 100644 index 3c1105500d..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStairsSilverwood/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/0.png b/front/public/images/small/Thaumcraft/blockStoneDevice/0.png deleted file mode 100644 index 8358061ede..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/1.png b/front/public/images/small/Thaumcraft/blockStoneDevice/1.png deleted file mode 100644 index 8a65cc0edb..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/10.png b/front/public/images/small/Thaumcraft/blockStoneDevice/10.png deleted file mode 100644 index 874fc95929..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/10.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/11.png b/front/public/images/small/Thaumcraft/blockStoneDevice/11.png deleted file mode 100644 index b7d8f5ac3e..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/11.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/12.png b/front/public/images/small/Thaumcraft/blockStoneDevice/12.png deleted file mode 100644 index febe7a6519..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/12.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/13.png b/front/public/images/small/Thaumcraft/blockStoneDevice/13.png deleted file mode 100644 index dcc0d7209d..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/13.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/14.png b/front/public/images/small/Thaumcraft/blockStoneDevice/14.png deleted file mode 100644 index fa0ceb9c0a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/2.png b/front/public/images/small/Thaumcraft/blockStoneDevice/2.png deleted file mode 100644 index a04a6a7dd1..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/5.png b/front/public/images/small/Thaumcraft/blockStoneDevice/5.png deleted file mode 100644 index 7362064af8..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/8.png b/front/public/images/small/Thaumcraft/blockStoneDevice/8.png deleted file mode 100644 index c6cca516e9..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/8.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockStoneDevice/9.png b/front/public/images/small/Thaumcraft/blockStoneDevice/9.png deleted file mode 100644 index 54abfa2dfe..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockStoneDevice/9.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTable/0.png b/front/public/images/small/Thaumcraft/blockTable/0.png deleted file mode 100644 index 3ac22629ce..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTable/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTable/14.png b/front/public/images/small/Thaumcraft/blockTable/14.png deleted file mode 100644 index aea4c178ea..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTable/14.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTable/15.png b/front/public/images/small/Thaumcraft/blockTable/15.png deleted file mode 100644 index 85ce0b3a21..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTable/15.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTaint/0.png b/front/public/images/small/Thaumcraft/blockTaint/0.png deleted file mode 100644 index 82352255e6..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTaint/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTaint/1.png b/front/public/images/small/Thaumcraft/blockTaint/1.png deleted file mode 100644 index f5fc902cc6..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTaint/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTaint/2.png b/front/public/images/small/Thaumcraft/blockTaint/2.png deleted file mode 100644 index 787f652a53..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTaint/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTaintFibres/0.png b/front/public/images/small/Thaumcraft/blockTaintFibres/0.png deleted file mode 100644 index 978dabcd70..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTaintFibres/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTaintFibres/1.png b/front/public/images/small/Thaumcraft/blockTaintFibres/1.png deleted file mode 100644 index 19d5b7e8a2..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTaintFibres/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTaintFibres/2.png b/front/public/images/small/Thaumcraft/blockTaintFibres/2.png deleted file mode 100644 index f79b95df33..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTaintFibres/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTaintFibres/3.png b/front/public/images/small/Thaumcraft/blockTaintFibres/3.png deleted file mode 100644 index 5fd0b8a15c..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTaintFibres/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/0.png b/front/public/images/small/Thaumcraft/blockTube/0.png deleted file mode 100644 index 47a617cc05..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/1.png b/front/public/images/small/Thaumcraft/blockTube/1.png deleted file mode 100644 index 44801fc91a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/2.png b/front/public/images/small/Thaumcraft/blockTube/2.png deleted file mode 100644 index 4b1785d030..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/3.png b/front/public/images/small/Thaumcraft/blockTube/3.png deleted file mode 100644 index dd8a649b5f..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/3.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/4.png b/front/public/images/small/Thaumcraft/blockTube/4.png deleted file mode 100644 index 53fd7974bb..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/5.png b/front/public/images/small/Thaumcraft/blockTube/5.png deleted file mode 100644 index 517a72896a..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/6.png b/front/public/images/small/Thaumcraft/blockTube/6.png deleted file mode 100644 index 7d9e284255..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockTube/7.png b/front/public/images/small/Thaumcraft/blockTube/7.png deleted file mode 100644 index 5ee3cccad3..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockTube/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWarded/0.png b/front/public/images/small/Thaumcraft/blockWarded/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWarded/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/0.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/0.png deleted file mode 100644 index 5f292bc749..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/0.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/1.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/1.png deleted file mode 100644 index 7c98455b10..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/1.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/2.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/2.png deleted file mode 100644 index 766125e237..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/2.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/4.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/4.png deleted file mode 100644 index cd7a48cea3..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/4.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/5.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/5.png deleted file mode 100644 index 0e6ec976c3..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/5.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/6.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/6.png deleted file mode 100644 index 86f75f3776..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/6.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/7.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/7.png deleted file mode 100644 index 7655e35714..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/7.png and /dev/null differ diff --git a/front/public/images/small/Thaumcraft/blockWoodenDevice/8.png b/front/public/images/small/Thaumcraft/blockWoodenDevice/8.png deleted file mode 100644 index 60812c5914..0000000000 Binary files a/front/public/images/small/Thaumcraft/blockWoodenDevice/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/amberCore/0.png b/front/public/images/small/ThaumicExploration/amberCore/0.png deleted file mode 100644 index 4222173ba1..0000000000 Binary files a/front/public/images/small/ThaumicExploration/amberCore/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/amberStaffCore/0.png b/front/public/images/small/ThaumicExploration/amberStaffCore/0.png deleted file mode 100644 index dae801f072..0000000000 Binary files a/front/public/images/small/ThaumicExploration/amberStaffCore/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/0.png b/front/public/images/small/ThaumicExploration/blankSeal/0.png deleted file mode 100644 index b38dbb6db3..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/1.png b/front/public/images/small/ThaumicExploration/blankSeal/1.png deleted file mode 100644 index c66887aad6..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/10.png b/front/public/images/small/ThaumicExploration/blankSeal/10.png deleted file mode 100644 index d40f3b947f..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/11.png b/front/public/images/small/ThaumicExploration/blankSeal/11.png deleted file mode 100644 index d4e4b43b9f..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/12.png b/front/public/images/small/ThaumicExploration/blankSeal/12.png deleted file mode 100644 index 828bea25bd..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/13.png b/front/public/images/small/ThaumicExploration/blankSeal/13.png deleted file mode 100644 index 04d15e626f..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/14.png b/front/public/images/small/ThaumicExploration/blankSeal/14.png deleted file mode 100644 index f61e0dca92..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/15.png b/front/public/images/small/ThaumicExploration/blankSeal/15.png deleted file mode 100644 index 52e67a446a..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/2.png b/front/public/images/small/ThaumicExploration/blankSeal/2.png deleted file mode 100644 index 19ad6cf15f..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/3.png b/front/public/images/small/ThaumicExploration/blankSeal/3.png deleted file mode 100644 index f68c1f8fb9..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/4.png b/front/public/images/small/ThaumicExploration/blankSeal/4.png deleted file mode 100644 index b2c437a81c..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/5.png b/front/public/images/small/ThaumicExploration/blankSeal/5.png deleted file mode 100644 index 3bc59bffa1..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/6.png b/front/public/images/small/ThaumicExploration/blankSeal/6.png deleted file mode 100644 index aad9494f3a..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/7.png b/front/public/images/small/ThaumicExploration/blankSeal/7.png deleted file mode 100644 index 8e3166b32d..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/8.png b/front/public/images/small/ThaumicExploration/blankSeal/8.png deleted file mode 100644 index 70e16f5614..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/blankSeal/9.png b/front/public/images/small/ThaumicExploration/blankSeal/9.png deleted file mode 100644 index f083ac1a35..0000000000 Binary files a/front/public/images/small/ThaumicExploration/blankSeal/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/bootsComet/0.png b/front/public/images/small/ThaumicExploration/bootsComet/0.png deleted file mode 100644 index c1c3279096..0000000000 Binary files a/front/public/images/small/ThaumicExploration/bootsComet/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/bootsMeteor/0.png b/front/public/images/small/ThaumicExploration/bootsMeteor/0.png deleted file mode 100644 index 031355dfdf..0000000000 Binary files a/front/public/images/small/ThaumicExploration/bootsMeteor/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/boundChest/0.png b/front/public/images/small/ThaumicExploration/boundChest/0.png deleted file mode 100644 index f018215d97..0000000000 Binary files a/front/public/images/small/ThaumicExploration/boundChest/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/boundJar/0.png b/front/public/images/small/ThaumicExploration/boundJar/0.png deleted file mode 100644 index 8800cb2934..0000000000 Binary files a/front/public/images/small/ThaumicExploration/boundJar/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/charmNoTaint/0.png b/front/public/images/small/ThaumicExploration/charmNoTaint/0.png deleted file mode 100644 index 9b5ab481f1..0000000000 Binary files a/front/public/images/small/ThaumicExploration/charmNoTaint/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/0.png b/front/public/images/small/ThaumicExploration/chestSeal/0.png deleted file mode 100644 index 01fc0db24d..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/1.png b/front/public/images/small/ThaumicExploration/chestSeal/1.png deleted file mode 100644 index d5fb34a7fc..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/10.png b/front/public/images/small/ThaumicExploration/chestSeal/10.png deleted file mode 100644 index 69e75731bd..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/11.png b/front/public/images/small/ThaumicExploration/chestSeal/11.png deleted file mode 100644 index 5493c42d71..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/12.png b/front/public/images/small/ThaumicExploration/chestSeal/12.png deleted file mode 100644 index 00c059de2a..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/13.png b/front/public/images/small/ThaumicExploration/chestSeal/13.png deleted file mode 100644 index 6c924d762c..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/14.png b/front/public/images/small/ThaumicExploration/chestSeal/14.png deleted file mode 100644 index 883c5766b0..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/15.png b/front/public/images/small/ThaumicExploration/chestSeal/15.png deleted file mode 100644 index eefaf9699e..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/2.png b/front/public/images/small/ThaumicExploration/chestSeal/2.png deleted file mode 100644 index dddef3fea1..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/3.png b/front/public/images/small/ThaumicExploration/chestSeal/3.png deleted file mode 100644 index 13967d5ec7..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/4.png b/front/public/images/small/ThaumicExploration/chestSeal/4.png deleted file mode 100644 index 56a4bae4a7..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/5.png b/front/public/images/small/ThaumicExploration/chestSeal/5.png deleted file mode 100644 index bd87cb8274..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/6.png b/front/public/images/small/ThaumicExploration/chestSeal/6.png deleted file mode 100644 index 4cf7557b04..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/7.png b/front/public/images/small/ThaumicExploration/chestSeal/7.png deleted file mode 100644 index 191568a509..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/8.png b/front/public/images/small/ThaumicExploration/chestSeal/8.png deleted file mode 100644 index 2afad8686d..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSeal/9.png b/front/public/images/small/ThaumicExploration/chestSeal/9.png deleted file mode 100644 index a5a7317a3e..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSeal/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/0.png b/front/public/images/small/ThaumicExploration/chestSealLinked/0.png deleted file mode 100644 index a216f8ea48..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/1.png b/front/public/images/small/ThaumicExploration/chestSealLinked/1.png deleted file mode 100644 index 237047971d..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/10.png b/front/public/images/small/ThaumicExploration/chestSealLinked/10.png deleted file mode 100644 index ceff9efe98..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/11.png b/front/public/images/small/ThaumicExploration/chestSealLinked/11.png deleted file mode 100644 index 549910f121..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/12.png b/front/public/images/small/ThaumicExploration/chestSealLinked/12.png deleted file mode 100644 index 07cc9bc77e..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/13.png b/front/public/images/small/ThaumicExploration/chestSealLinked/13.png deleted file mode 100644 index 7fba200028..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/14.png b/front/public/images/small/ThaumicExploration/chestSealLinked/14.png deleted file mode 100644 index c3ca319050..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/15.png b/front/public/images/small/ThaumicExploration/chestSealLinked/15.png deleted file mode 100644 index 11205de184..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/2.png b/front/public/images/small/ThaumicExploration/chestSealLinked/2.png deleted file mode 100644 index 7b338b6705..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/3.png b/front/public/images/small/ThaumicExploration/chestSealLinked/3.png deleted file mode 100644 index 264797de82..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/4.png b/front/public/images/small/ThaumicExploration/chestSealLinked/4.png deleted file mode 100644 index 80643d2e86..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/5.png b/front/public/images/small/ThaumicExploration/chestSealLinked/5.png deleted file mode 100644 index e64803eda8..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/6.png b/front/public/images/small/ThaumicExploration/chestSealLinked/6.png deleted file mode 100644 index 7f4ad0ef5c..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/7.png b/front/public/images/small/ThaumicExploration/chestSealLinked/7.png deleted file mode 100644 index da383829bd..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/8.png b/front/public/images/small/ThaumicExploration/chestSealLinked/8.png deleted file mode 100644 index 26e87752ef..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/chestSealLinked/9.png b/front/public/images/small/ThaumicExploration/chestSealLinked/9.png deleted file mode 100644 index 963a0ec0ed..0000000000 Binary files a/front/public/images/small/ThaumicExploration/chestSealLinked/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/crucibleSouls/0.png b/front/public/images/small/ThaumicExploration/crucibleSouls/0.png deleted file mode 100644 index c723977b20..0000000000 Binary files a/front/public/images/small/ThaumicExploration/crucibleSouls/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/discountRing/0.png b/front/public/images/small/ThaumicExploration/discountRing/0.png deleted file mode 100644 index 5a41b21d59..0000000000 Binary files a/front/public/images/small/ThaumicExploration/discountRing/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/discountRing/1.png b/front/public/images/small/ThaumicExploration/discountRing/1.png deleted file mode 100644 index 0b47c1dfc7..0000000000 Binary files a/front/public/images/small/ThaumicExploration/discountRing/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/discountRing/2.png b/front/public/images/small/ThaumicExploration/discountRing/2.png deleted file mode 100644 index e03e48c6f8..0000000000 Binary files a/front/public/images/small/ThaumicExploration/discountRing/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/discountRing/3.png b/front/public/images/small/ThaumicExploration/discountRing/3.png deleted file mode 100644 index 6258627099..0000000000 Binary files a/front/public/images/small/ThaumicExploration/discountRing/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/discountRing/4.png b/front/public/images/small/ThaumicExploration/discountRing/4.png deleted file mode 100644 index b7c5d42874..0000000000 Binary files a/front/public/images/small/ThaumicExploration/discountRing/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/discountRing/5.png b/front/public/images/small/ThaumicExploration/discountRing/5.png deleted file mode 100644 index 0d92f820bb..0000000000 Binary files a/front/public/images/small/ThaumicExploration/discountRing/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/everburnUrn/0.png b/front/public/images/small/ThaumicExploration/everburnUrn/0.png deleted file mode 100644 index cc0cbe2228..0000000000 Binary files a/front/public/images/small/ThaumicExploration/everburnUrn/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/everfullUrn/0.png b/front/public/images/small/ThaumicExploration/everfullUrn/0.png deleted file mode 100644 index cc0cbe2228..0000000000 Binary files a/front/public/images/small/ThaumicExploration/everfullUrn/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/0.png b/front/public/images/small/ThaumicExploration/floatCandle/0.png deleted file mode 100644 index 869224f2c7..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/1.png b/front/public/images/small/ThaumicExploration/floatCandle/1.png deleted file mode 100644 index 2c8a95ba78..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/10.png b/front/public/images/small/ThaumicExploration/floatCandle/10.png deleted file mode 100644 index beca0ef066..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/11.png b/front/public/images/small/ThaumicExploration/floatCandle/11.png deleted file mode 100644 index 36359e0745..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/12.png b/front/public/images/small/ThaumicExploration/floatCandle/12.png deleted file mode 100644 index 19e528bb81..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/13.png b/front/public/images/small/ThaumicExploration/floatCandle/13.png deleted file mode 100644 index f1e2177f31..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/14.png b/front/public/images/small/ThaumicExploration/floatCandle/14.png deleted file mode 100644 index 51cd656c9a..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/15.png b/front/public/images/small/ThaumicExploration/floatCandle/15.png deleted file mode 100644 index c3b82d2bc6..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/2.png b/front/public/images/small/ThaumicExploration/floatCandle/2.png deleted file mode 100644 index 0aac56b80b..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/3.png b/front/public/images/small/ThaumicExploration/floatCandle/3.png deleted file mode 100644 index 960a8891c0..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/4.png b/front/public/images/small/ThaumicExploration/floatCandle/4.png deleted file mode 100644 index edfcc13b0a..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/5.png b/front/public/images/small/ThaumicExploration/floatCandle/5.png deleted file mode 100644 index e9e8abe689..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/6.png b/front/public/images/small/ThaumicExploration/floatCandle/6.png deleted file mode 100644 index 1541c6e95f..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/7.png b/front/public/images/small/ThaumicExploration/floatCandle/7.png deleted file mode 100644 index a54ee7e3de..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/8.png b/front/public/images/small/ThaumicExploration/floatCandle/8.png deleted file mode 100644 index 1d6d0dcac0..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/floatCandle/9.png b/front/public/images/small/ThaumicExploration/floatCandle/9.png deleted file mode 100644 index 77e6c9c412..0000000000 Binary files a/front/public/images/small/ThaumicExploration/floatCandle/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/0.png b/front/public/images/small/ThaumicExploration/jarSeal/0.png deleted file mode 100644 index 744ee4edd9..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/1.png b/front/public/images/small/ThaumicExploration/jarSeal/1.png deleted file mode 100644 index 977a2813c8..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/10.png b/front/public/images/small/ThaumicExploration/jarSeal/10.png deleted file mode 100644 index 9aed5af05a..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/11.png b/front/public/images/small/ThaumicExploration/jarSeal/11.png deleted file mode 100644 index 61b88ee193..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/12.png b/front/public/images/small/ThaumicExploration/jarSeal/12.png deleted file mode 100644 index 5ea0e73a6f..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/13.png b/front/public/images/small/ThaumicExploration/jarSeal/13.png deleted file mode 100644 index 2581565b49..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/14.png b/front/public/images/small/ThaumicExploration/jarSeal/14.png deleted file mode 100644 index bb76545b82..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/15.png b/front/public/images/small/ThaumicExploration/jarSeal/15.png deleted file mode 100644 index d97a016141..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/2.png b/front/public/images/small/ThaumicExploration/jarSeal/2.png deleted file mode 100644 index 65a1c13d2d..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/3.png b/front/public/images/small/ThaumicExploration/jarSeal/3.png deleted file mode 100644 index cbeffa4690..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/4.png b/front/public/images/small/ThaumicExploration/jarSeal/4.png deleted file mode 100644 index 88895976b9..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/5.png b/front/public/images/small/ThaumicExploration/jarSeal/5.png deleted file mode 100644 index f1c600dac0..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/6.png b/front/public/images/small/ThaumicExploration/jarSeal/6.png deleted file mode 100644 index cf29657557..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/7.png b/front/public/images/small/ThaumicExploration/jarSeal/7.png deleted file mode 100644 index a7542fa6c5..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/8.png b/front/public/images/small/ThaumicExploration/jarSeal/8.png deleted file mode 100644 index 10471a7dd8..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/jarSeal/9.png b/front/public/images/small/ThaumicExploration/jarSeal/9.png deleted file mode 100644 index b3162acfc7..0000000000 Binary files a/front/public/images/small/ThaumicExploration/jarSeal/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/mechanistCap/0.png b/front/public/images/small/ThaumicExploration/mechanistCap/0.png deleted file mode 100644 index affbcacac7..0000000000 Binary files a/front/public/images/small/ThaumicExploration/mechanistCap/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/mechanistCapUncharged/0.png b/front/public/images/small/ThaumicExploration/mechanistCapUncharged/0.png deleted file mode 100644 index affbcacac7..0000000000 Binary files a/front/public/images/small/ThaumicExploration/mechanistCapUncharged/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/meltyIce/0.png b/front/public/images/small/ThaumicExploration/meltyIce/0.png deleted file mode 100644 index 0d5179a891..0000000000 Binary files a/front/public/images/small/ThaumicExploration/meltyIce/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/necroStaffCore/0.png b/front/public/images/small/ThaumicExploration/necroStaffCore/0.png deleted file mode 100644 index c476438ed2..0000000000 Binary files a/front/public/images/small/ThaumicExploration/necroStaffCore/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/pureZombieBrain/0.png b/front/public/images/small/ThaumicExploration/pureZombieBrain/0.png deleted file mode 100644 index bf5159531d..0000000000 Binary files a/front/public/images/small/ThaumicExploration/pureZombieBrain/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/replicator/0.png b/front/public/images/small/ThaumicExploration/replicator/0.png deleted file mode 100644 index a6765ccdd2..0000000000 Binary files a/front/public/images/small/ThaumicExploration/replicator/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/sojournerCap/0.png b/front/public/images/small/ThaumicExploration/sojournerCap/0.png deleted file mode 100644 index ff2daaef67..0000000000 Binary files a/front/public/images/small/ThaumicExploration/sojournerCap/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/sojournerCapUncharged/0.png b/front/public/images/small/ThaumicExploration/sojournerCapUncharged/0.png deleted file mode 100644 index ff2daaef67..0000000000 Binary files a/front/public/images/small/ThaumicExploration/sojournerCapUncharged/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/soulBrazier/0.png b/front/public/images/small/ThaumicExploration/soulBrazier/0.png deleted file mode 100644 index f0ba9b56f3..0000000000 Binary files a/front/public/images/small/ThaumicExploration/soulBrazier/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/stabilizerBelt/0.png b/front/public/images/small/ThaumicExploration/stabilizerBelt/0.png deleted file mode 100644 index d1532ac401..0000000000 Binary files a/front/public/images/small/ThaumicExploration/stabilizerBelt/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/taintBerry/0.png b/front/public/images/small/ThaumicExploration/taintBerry/0.png deleted file mode 100644 index bf86428034..0000000000 Binary files a/front/public/images/small/ThaumicExploration/taintBerry/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/talismanFood/0.png b/front/public/images/small/ThaumicExploration/talismanFood/0.png deleted file mode 100644 index dd93e200ca..0000000000 Binary files a/front/public/images/small/ThaumicExploration/talismanFood/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/tentacleRing/0.png b/front/public/images/small/ThaumicExploration/tentacleRing/0.png deleted file mode 100644 index 96a1e1fc8f..0000000000 Binary files a/front/public/images/small/ThaumicExploration/tentacleRing/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/thinkTankJar/0.png b/front/public/images/small/ThaumicExploration/thinkTankJar/0.png deleted file mode 100644 index 997a2d3e14..0000000000 Binary files a/front/public/images/small/ThaumicExploration/thinkTankJar/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/transmutationCore/0.png b/front/public/images/small/ThaumicExploration/transmutationCore/0.png deleted file mode 100644 index 9104e73861..0000000000 Binary files a/front/public/images/small/ThaumicExploration/transmutationCore/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/transmutationStaffCore/0.png b/front/public/images/small/ThaumicExploration/transmutationStaffCore/0.png deleted file mode 100644 index da293334be..0000000000 Binary files a/front/public/images/small/ThaumicExploration/transmutationStaffCore/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicExploration/trashJar/0.png b/front/public/images/small/ThaumicExploration/trashJar/0.png deleted file mode 100644 index 8b3c82faae..0000000000 Binary files a/front/public/images/small/ThaumicExploration/trashJar/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/Golemancy Bell TH/0.png b/front/public/images/small/ThaumicHorizons/Golemancy Bell TH/0.png deleted file mode 100644 index 0e5e67234b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/Golemancy Bell TH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/alchemite/0.png b/front/public/images/small/ThaumicHorizons/alchemite/0.png deleted file mode 100644 index 4bb0c855dd..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/alchemite/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/amuletMirror/0.png b/front/public/images/small/ThaumicHorizons/amuletMirror/0.png deleted file mode 100644 index 045e1a1624..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/amuletMirror/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/barChocolate/0.png b/front/public/images/small/ThaumicHorizons/barChocolate/0.png deleted file mode 100644 index b4681733b7..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/barChocolate/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/bloodInfuser/0.png b/front/public/images/small/ThaumicHorizons/bloodInfuser/0.png deleted file mode 100644 index 1f5685a8f6..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/bloodInfuser/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/boatGreatwood/0.png b/front/public/images/small/ThaumicHorizons/boatGreatwood/0.png deleted file mode 100644 index 6148e70a0f..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/boatGreatwood/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/boatThaumium/0.png b/front/public/images/small/ThaumicHorizons/boatThaumium/0.png deleted file mode 100644 index b95673041e..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/boatThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/boneTH/0.png b/front/public/images/small/ThaumicHorizons/boneTH/0.png deleted file mode 100644 index 90f97a10bf..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/boneTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/brainTH/0.png b/front/public/images/small/ThaumicHorizons/brainTH/0.png deleted file mode 100644 index 947ed578cf..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/brainTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/bucketChocolate/0.png b/front/public/images/small/ThaumicHorizons/bucketChocolate/0.png deleted file mode 100644 index 1ee3a02732..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/bucketChocolate/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/chocolate/0.png b/front/public/images/small/ThaumicHorizons/chocolate/0.png deleted file mode 100644 index 8ff76f7b47..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/chocolate/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/1.png b/front/public/images/small/ThaumicHorizons/cloudGlowingTH/1.png deleted file mode 100644 index 3a3a014405..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/4.png b/front/public/images/small/ThaumicHorizons/cloudGlowingTH/4.png deleted file mode 100644 index 7c733424e9..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/6.png b/front/public/images/small/ThaumicHorizons/cloudGlowingTH/6.png deleted file mode 100644 index c17a8970d4..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/7.png b/front/public/images/small/ThaumicHorizons/cloudGlowingTH/7.png deleted file mode 100644 index cce87f9a81..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/9.png b/front/public/images/small/ThaumicHorizons/cloudGlowingTH/9.png deleted file mode 100644 index 64037a4378..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudGlowingTH/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudTH/0.png b/front/public/images/small/ThaumicHorizons/cloudTH/0.png deleted file mode 100644 index fc94810097..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudTH/2.png b/front/public/images/small/ThaumicHorizons/cloudTH/2.png deleted file mode 100644 index b68468c155..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudTH/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudTH/3.png b/front/public/images/small/ThaumicHorizons/cloudTH/3.png deleted file mode 100644 index f8d51c9853..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudTH/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudTH/5.png b/front/public/images/small/ThaumicHorizons/cloudTH/5.png deleted file mode 100644 index 2adab26777..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudTH/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/cloudTH/8.png b/front/public/images/small/ThaumicHorizons/cloudTH/8.png deleted file mode 100644 index a8dec1d3c7..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/cloudTH/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/corpseEffigy/0.png b/front/public/images/small/ThaumicHorizons/corpseEffigy/0.png deleted file mode 100644 index a56af69a44..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/corpseEffigy/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalDeep/0.png b/front/public/images/small/ThaumicHorizons/crystalDeep/0.png deleted file mode 100644 index a959a3aa85..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalDeep/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/0.png b/front/public/images/small/ThaumicHorizons/crystalTH/0.png deleted file mode 100644 index 8a3cc06e41..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/1.png b/front/public/images/small/ThaumicHorizons/crystalTH/1.png deleted file mode 100644 index df09270413..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/10.png b/front/public/images/small/ThaumicHorizons/crystalTH/10.png deleted file mode 100644 index 9ba785a5c1..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/11.png b/front/public/images/small/ThaumicHorizons/crystalTH/11.png deleted file mode 100644 index fd42e5db30..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/12.png b/front/public/images/small/ThaumicHorizons/crystalTH/12.png deleted file mode 100644 index 97afc11c92..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/13.png b/front/public/images/small/ThaumicHorizons/crystalTH/13.png deleted file mode 100644 index 19d93f5c9f..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/14.png b/front/public/images/small/ThaumicHorizons/crystalTH/14.png deleted file mode 100644 index a959a3aa85..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/15.png b/front/public/images/small/ThaumicHorizons/crystalTH/15.png deleted file mode 100644 index 3a43bbc8cc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/2.png b/front/public/images/small/ThaumicHorizons/crystalTH/2.png deleted file mode 100644 index fef2a86027..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/3.png b/front/public/images/small/ThaumicHorizons/crystalTH/3.png deleted file mode 100644 index 9c781869a1..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/4.png b/front/public/images/small/ThaumicHorizons/crystalTH/4.png deleted file mode 100644 index 4c4e1d87a5..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/5.png b/front/public/images/small/ThaumicHorizons/crystalTH/5.png deleted file mode 100644 index bb94f75466..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/6.png b/front/public/images/small/ThaumicHorizons/crystalTH/6.png deleted file mode 100644 index 5c7c564317..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/7.png b/front/public/images/small/ThaumicHorizons/crystalTH/7.png deleted file mode 100644 index 78ce4b1fe7..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/8.png b/front/public/images/small/ThaumicHorizons/crystalTH/8.png deleted file mode 100644 index a013b45e94..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalTH/9.png b/front/public/images/small/ThaumicHorizons/crystalTH/9.png deleted file mode 100644 index 5480f15673..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalTH/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/crystalWand/0.png b/front/public/images/small/ThaumicHorizons/crystalWand/0.png deleted file mode 100644 index 59596dc235..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/crystalWand/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/dummy/0.png b/front/public/images/small/ThaumicHorizons/dummy/0.png deleted file mode 100644 index 72d46910da..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/dummy/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/dummyVat/0.png b/front/public/images/small/ThaumicHorizons/dummyVat/0.png deleted file mode 100644 index 314130dc0c..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/dummyVat/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/dustTH/0.png b/front/public/images/small/ThaumicHorizons/dustTH/0.png deleted file mode 100644 index 133831dff2..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/dustTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/eggIncubated/0.png b/front/public/images/small/ThaumicHorizons/eggIncubated/0.png deleted file mode 100644 index 37636dfa7b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/eggIncubated/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/essentiaDynamo/0.png b/front/public/images/small/ThaumicHorizons/essentiaDynamo/0.png deleted file mode 100644 index 71bf8923ea..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/essentiaDynamo/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/evanescent/0.png b/front/public/images/small/ThaumicHorizons/evanescent/0.png deleted file mode 100644 index fe76bad738..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/evanescent/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/eyeTH/0.png b/front/public/images/small/ThaumicHorizons/eyeTH/0.png deleted file mode 100644 index 71fbe7bd14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/eyeTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/fleshTH/0.png b/front/public/images/small/ThaumicHorizons/fleshTH/0.png deleted file mode 100644 index 17471963a3..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/fleshTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusAnimation/0.png b/front/public/images/small/ThaumicHorizons/focusAnimation/0.png deleted file mode 100644 index ad8fb8a076..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusAnimation/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusContainment/0.png b/front/public/images/small/ThaumicHorizons/focusContainment/0.png deleted file mode 100644 index 40b18222ba..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusContainment/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusDisintegration/0.png b/front/public/images/small/ThaumicHorizons/focusDisintegration/0.png deleted file mode 100644 index 627c8892e2..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusDisintegration/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/0.png b/front/public/images/small/ThaumicHorizons/focusIllumination/0.png deleted file mode 100644 index c2760c8ef5..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/1.png b/front/public/images/small/ThaumicHorizons/focusIllumination/1.png deleted file mode 100644 index 5a5ceb835b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/10.png b/front/public/images/small/ThaumicHorizons/focusIllumination/10.png deleted file mode 100644 index d6597cef3f..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/11.png b/front/public/images/small/ThaumicHorizons/focusIllumination/11.png deleted file mode 100644 index 63c72d0cc9..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/12.png b/front/public/images/small/ThaumicHorizons/focusIllumination/12.png deleted file mode 100644 index 96ffa8ba0b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/13.png b/front/public/images/small/ThaumicHorizons/focusIllumination/13.png deleted file mode 100644 index 65ced2c03d..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/14.png b/front/public/images/small/ThaumicHorizons/focusIllumination/14.png deleted file mode 100644 index b563356639..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/15.png b/front/public/images/small/ThaumicHorizons/focusIllumination/15.png deleted file mode 100644 index 95f6a207f6..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/2.png b/front/public/images/small/ThaumicHorizons/focusIllumination/2.png deleted file mode 100644 index 6b561338d3..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/3.png b/front/public/images/small/ThaumicHorizons/focusIllumination/3.png deleted file mode 100644 index b28785bb2b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/4.png b/front/public/images/small/ThaumicHorizons/focusIllumination/4.png deleted file mode 100644 index 9bb5755476..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/5.png b/front/public/images/small/ThaumicHorizons/focusIllumination/5.png deleted file mode 100644 index 6989d4240e..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/6.png b/front/public/images/small/ThaumicHorizons/focusIllumination/6.png deleted file mode 100644 index 30ac9237fc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/7.png b/front/public/images/small/ThaumicHorizons/focusIllumination/7.png deleted file mode 100644 index 4ff91353c5..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/8.png b/front/public/images/small/ThaumicHorizons/focusIllumination/8.png deleted file mode 100644 index ff5d5abca2..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusIllumination/9.png b/front/public/images/small/ThaumicHorizons/focusIllumination/9.png deleted file mode 100644 index e8711b824b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusIllumination/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/focusLiquefaction/0.png b/front/public/images/small/ThaumicHorizons/focusLiquefaction/0.png deleted file mode 100644 index d265f70b7d..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/focusLiquefaction/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/gatewayTH/0.png b/front/public/images/small/ThaumicHorizons/gatewayTH/0.png deleted file mode 100644 index 75514210cb..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/gatewayTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/goldEgg/0.png b/front/public/images/small/ThaumicHorizons/goldEgg/0.png deleted file mode 100644 index fc982510d8..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/goldEgg/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/0.png b/front/public/images/small/ThaumicHorizons/golemPlacer/0.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/1.png b/front/public/images/small/ThaumicHorizons/golemPlacer/1.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/2.png b/front/public/images/small/ThaumicHorizons/golemPlacer/2.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/3.png b/front/public/images/small/ThaumicHorizons/golemPlacer/3.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/4.png b/front/public/images/small/ThaumicHorizons/golemPlacer/4.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/5.png b/front/public/images/small/ThaumicHorizons/golemPlacer/5.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/6.png b/front/public/images/small/ThaumicHorizons/golemPlacer/6.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPlacer/7.png b/front/public/images/small/ThaumicHorizons/golemPlacer/7.png deleted file mode 100644 index 59e0c24dfc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPlacer/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/golemPowder/0.png b/front/public/images/small/ThaumicHorizons/golemPowder/0.png deleted file mode 100644 index db074cdced..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/golemPowder/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/iceCream/0.png b/front/public/images/small/ThaumicHorizons/iceCream/0.png deleted file mode 100644 index 8030befec1..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/iceCream/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/1.png b/front/public/images/small/ThaumicHorizons/infusionCheat/1.png deleted file mode 100644 index d25793b9a6..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/10.png b/front/public/images/small/ThaumicHorizons/infusionCheat/10.png deleted file mode 100644 index 7c267b2910..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/2.png b/front/public/images/small/ThaumicHorizons/infusionCheat/2.png deleted file mode 100644 index 00298f57cd..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/3.png b/front/public/images/small/ThaumicHorizons/infusionCheat/3.png deleted file mode 100644 index e34a4df2cd..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/4.png b/front/public/images/small/ThaumicHorizons/infusionCheat/4.png deleted file mode 100644 index 9aa353c59c..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/5.png b/front/public/images/small/ThaumicHorizons/infusionCheat/5.png deleted file mode 100644 index afee61a1f7..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/6.png b/front/public/images/small/ThaumicHorizons/infusionCheat/6.png deleted file mode 100644 index 275130fac2..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/7.png b/front/public/images/small/ThaumicHorizons/infusionCheat/7.png deleted file mode 100644 index f8c7c9f351..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/8.png b/front/public/images/small/ThaumicHorizons/infusionCheat/8.png deleted file mode 100644 index dfdcd455cb..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionCheat/9.png b/front/public/images/small/ThaumicHorizons/infusionCheat/9.png deleted file mode 100644 index 21bdb75251..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionCheat/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/1.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/1.png deleted file mode 100644 index d25793b9a6..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/10.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/10.png deleted file mode 100644 index fcd427e19a..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/2.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/2.png deleted file mode 100644 index 80f63be984..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/3.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/3.png deleted file mode 100644 index e34a4df2cd..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/4.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/4.png deleted file mode 100644 index 9aa353c59c..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/5.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/5.png deleted file mode 100644 index 22ae317686..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/6.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/6.png deleted file mode 100644 index b8baf87342..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/7.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/7.png deleted file mode 100644 index 0d06aa52e9..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/8.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/8.png deleted file mode 100644 index 8c02fbf092..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/9.png b/front/public/images/small/ThaumicHorizons/infusionSelfCheat/9.png deleted file mode 100644 index f9059d71e3..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/infusionSelfCheat/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/injector/0.png b/front/public/images/small/ThaumicHorizons/injector/0.png deleted file mode 100644 index 1514312174..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/injector/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/inkEgg/0.png b/front/public/images/small/ThaumicHorizons/inkEgg/0.png deleted file mode 100644 index 9bc2197263..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/inkEgg/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/inspiratron/0.png b/front/public/images/small/ThaumicHorizons/inspiratron/0.png deleted file mode 100644 index 7268b67518..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/inspiratron/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/keystoneTH/0.png b/front/public/images/small/ThaumicHorizons/keystoneTH/0.png deleted file mode 100644 index 6afbbff1fa..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/keystoneTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/lensAir/0.png b/front/public/images/small/ThaumicHorizons/lensAir/0.png deleted file mode 100644 index b2694625a6..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/lensAir/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/lensCase/0.png b/front/public/images/small/ThaumicHorizons/lensCase/0.png deleted file mode 100644 index 730e5362d3..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/lensCase/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/lensEarth/0.png b/front/public/images/small/ThaumicHorizons/lensEarth/0.png deleted file mode 100644 index 5a8b5dfbc0..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/lensEarth/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/lensFire/0.png b/front/public/images/small/ThaumicHorizons/lensFire/0.png deleted file mode 100644 index f57d803ab3..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/lensFire/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/lensOrderEntropy/0.png b/front/public/images/small/ThaumicHorizons/lensOrderEntropy/0.png deleted file mode 100644 index 638df7e49f..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/lensOrderEntropy/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/lensWater/0.png b/front/public/images/small/ThaumicHorizons/lensWater/0.png deleted file mode 100644 index ba2bf87bb0..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/lensWater/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/leviathanTH/0.png b/front/public/images/small/ThaumicHorizons/leviathanTH/0.png deleted file mode 100644 index d132f8f694..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/leviathanTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/light/0.png b/front/public/images/small/ThaumicHorizons/light/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/light/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/lightSolar/0.png b/front/public/images/small/ThaumicHorizons/lightSolar/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/lightSolar/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/meatCookedTH/0.png b/front/public/images/small/ThaumicHorizons/meatCookedTH/0.png deleted file mode 100644 index 1fe84bf0b4..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/meatCookedTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/meatNuggetTH/0.png b/front/public/images/small/ThaumicHorizons/meatNuggetTH/0.png deleted file mode 100644 index de7c504587..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/meatNuggetTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/meatTH/0.png b/front/public/images/small/ThaumicHorizons/meatTH/0.png deleted file mode 100644 index 62db03dcfb..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/meatTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/modMatrix/0.png b/front/public/images/small/ThaumicHorizons/modMatrix/0.png deleted file mode 100644 index 05acc8526e..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/modMatrix/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/nodeCheat/0.png b/front/public/images/small/ThaumicHorizons/nodeCheat/0.png deleted file mode 100644 index 6c95475a96..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/nodeCheat/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/nodeMonitor/0.png b/front/public/images/small/ThaumicHorizons/nodeMonitor/0.png deleted file mode 100644 index 0452c824f7..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/nodeMonitor/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/nutrients/0.png b/front/public/images/small/ThaumicHorizons/nutrients/0.png deleted file mode 100644 index bd0c8041a4..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/nutrients/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/planarConduit/0.png b/front/public/images/small/ThaumicHorizons/planarConduit/0.png deleted file mode 100644 index 34b3a8c6ab..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/planarConduit/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/portalTH/0.png b/front/public/images/small/ThaumicHorizons/portalTH/0.png deleted file mode 100644 index 8365670ce8..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/portalTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/recombinator/0.png b/front/public/images/small/ThaumicHorizons/recombinator/0.png deleted file mode 100644 index 3b23d52c30..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/recombinator/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/slotTH/0.png b/front/public/images/small/ThaumicHorizons/slotTH/0.png deleted file mode 100644 index 09ec5dab4a..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/slotTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/soulBeacon/0.png b/front/public/images/small/ThaumicHorizons/soulBeacon/0.png deleted file mode 100644 index 8ddc865f0f..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/soulBeacon/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/soulJar/0.png b/front/public/images/small/ThaumicHorizons/soulJar/0.png deleted file mode 100644 index cdb493b9e6..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/soulJar/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/soulSieve/0.png b/front/public/images/small/ThaumicHorizons/soulSieve/0.png deleted file mode 100644 index be81f6dde0..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/soulSieve/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/soulforge/0.png b/front/public/images/small/ThaumicHorizons/soulforge/0.png deleted file mode 100644 index fb9f5f81ca..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/soulforge/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/0.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/0.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/1.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/1.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/10.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/10.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/11.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/11.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/12.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/12.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/13.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/13.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/14.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/14.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/15.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/15.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/16.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/16.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/16.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/17.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/17.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/17.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/18.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/18.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/18.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/19.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/19.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/19.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/2.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/2.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/20.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/20.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/20.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/21.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/21.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/21.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/22.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/22.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/22.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/3.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/3.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/4.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/4.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/5.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/5.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/6.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/6.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/7.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/7.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/8.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/8.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spawnerEgg/9.png b/front/public/images/small/ThaumicHorizons/spawnerEgg/9.png deleted file mode 100644 index b8b6df8404..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spawnerEgg/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spikeTH/0.png b/front/public/images/small/ThaumicHorizons/spikeTH/0.png deleted file mode 100644 index 121b37abc8..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spikeTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spikeToothTH/0.png b/front/public/images/small/ThaumicHorizons/spikeToothTH/0.png deleted file mode 100644 index 0475345527..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spikeToothTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/spikeWoodTH/0.png b/front/public/images/small/ThaumicHorizons/spikeWoodTH/0.png deleted file mode 100644 index cea8f3aa26..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/spikeWoodTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/suicidePill/0.png b/front/public/images/small/ThaumicHorizons/suicidePill/0.png deleted file mode 100644 index 6971e74dbc..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/suicidePill/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/synthNode/0.png b/front/public/images/small/ThaumicHorizons/synthNode/0.png deleted file mode 100644 index 9ab911cd9b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/synthNode/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeBlood/0.png b/front/public/images/small/ThaumicHorizons/syringeBlood/0.png deleted file mode 100644 index 75a9ea3d36..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeBlood/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeBlood/1.png b/front/public/images/small/ThaumicHorizons/syringeBlood/1.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeBlood/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeEmpty/0.png b/front/public/images/small/ThaumicHorizons/syringeEmpty/0.png deleted file mode 100644 index 2ab5a93dab..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeEmpty/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/0.png b/front/public/images/small/ThaumicHorizons/syringeInjection/0.png deleted file mode 100644 index 03233e33b3..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/1.png b/front/public/images/small/ThaumicHorizons/syringeInjection/1.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/10.png b/front/public/images/small/ThaumicHorizons/syringeInjection/10.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/11.png b/front/public/images/small/ThaumicHorizons/syringeInjection/11.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/12.png b/front/public/images/small/ThaumicHorizons/syringeInjection/12.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/13.png b/front/public/images/small/ThaumicHorizons/syringeInjection/13.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/14.png b/front/public/images/small/ThaumicHorizons/syringeInjection/14.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/15.png b/front/public/images/small/ThaumicHorizons/syringeInjection/15.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/2.png b/front/public/images/small/ThaumicHorizons/syringeInjection/2.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/3.png b/front/public/images/small/ThaumicHorizons/syringeInjection/3.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/4.png b/front/public/images/small/ThaumicHorizons/syringeInjection/4.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/5.png b/front/public/images/small/ThaumicHorizons/syringeInjection/5.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/6.png b/front/public/images/small/ThaumicHorizons/syringeInjection/6.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/7.png b/front/public/images/small/ThaumicHorizons/syringeInjection/7.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/8.png b/front/public/images/small/ThaumicHorizons/syringeInjection/8.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/syringeInjection/9.png b/front/public/images/small/ThaumicHorizons/syringeInjection/9.png deleted file mode 100644 index c201d7eb14..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/syringeInjection/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/transductionAmplifier/0.png b/front/public/images/small/ThaumicHorizons/transductionAmplifier/0.png deleted file mode 100644 index 2ea86c1895..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/transductionAmplifier/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/vat/0.png b/front/public/images/small/ThaumicHorizons/vat/0.png deleted file mode 100644 index 03a32b62e6..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/vat/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/vatInterior/0.png b/front/public/images/small/ThaumicHorizons/vatInterior/0.png deleted file mode 100644 index fa23af3e50..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/vatInterior/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/vatSolid/0.png b/front/public/images/small/ThaumicHorizons/vatSolid/0.png deleted file mode 100644 index 8d3bde7690..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/vatSolid/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/visDynamo/0.png b/front/public/images/small/ThaumicHorizons/visDynamo/0.png deleted file mode 100644 index f048e77ba4..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/visDynamo/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/voidPutty/0.png b/front/public/images/small/ThaumicHorizons/voidPutty/0.png deleted file mode 100644 index 911489b900..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/voidPutty/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/voidTH/0.png b/front/public/images/small/ThaumicHorizons/voidTH/0.png deleted file mode 100644 index 0c5bda2e31..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/voidTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/vortexStabilizer/0.png b/front/public/images/small/ThaumicHorizons/vortexStabilizer/0.png deleted file mode 100644 index dfbc30a83b..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/vortexStabilizer/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/vortexTH/0.png b/front/public/images/small/ThaumicHorizons/vortexTH/0.png deleted file mode 100644 index f111cb97f0..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/vortexTH/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/vortexTH/1.png b/front/public/images/small/ThaumicHorizons/vortexTH/1.png deleted file mode 100644 index f111cb97f0..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/vortexTH/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicHorizons/wandCastingDisposable/0.png b/front/public/images/small/ThaumicHorizons/wandCastingDisposable/0.png deleted file mode 100644 index 90a9c7ad77..0000000000 Binary files a/front/public/images/small/ThaumicHorizons/wandCastingDisposable/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicMachina/metaphysicalBrick/0.png b/front/public/images/small/ThaumicMachina/metaphysicalBrick/0.png deleted file mode 100644 index e44c5ec69b..0000000000 Binary files a/front/public/images/small/ThaumicMachina/metaphysicalBrick/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicMachina/metaphysicalRose/0.png b/front/public/images/small/ThaumicMachina/metaphysicalRose/0.png deleted file mode 100644 index 80af72b9a5..0000000000 Binary files a/front/public/images/small/ThaumicMachina/metaphysicalRose/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicMachina/nodeAugmentation/0.png b/front/public/images/small/ThaumicMachina/nodeAugmentation/0.png deleted file mode 100644 index 8faa79c51b..0000000000 Binary files a/front/public/images/small/ThaumicMachina/nodeAugmentation/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicMachina/nodeTransmodifier/0.png b/front/public/images/small/ThaumicMachina/nodeTransmodifier/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ThaumicMachina/nodeTransmodifier/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicMachina/wandAugmentationCore/0.png b/front/public/images/small/ThaumicMachina/wandAugmentationCore/0.png deleted file mode 100644 index 830d4307b0..0000000000 Binary files a/front/public/images/small/ThaumicMachina/wandAugmentationCore/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicMachina/wandCore/0.png b/front/public/images/small/ThaumicMachina/wandCore/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ThaumicMachina/wandCore/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/Levitational Locomotive Relay/0.png b/front/public/images/small/ThaumicTinkerer/Levitational Locomotive Relay/0.png deleted file mode 100644 index 80ce6fc772..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/Levitational Locomotive Relay/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/Levitational Locomotive/0.png b/front/public/images/small/ThaumicTinkerer/Levitational Locomotive/0.png deleted file mode 100644 index 0d74d439b8..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/Levitational Locomotive/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/animationTablet/0.png b/front/public/images/small/ThaumicTinkerer/animationTablet/0.png deleted file mode 100644 index 0a68e65d93..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/animationTablet/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/bedrockPortal/0.png b/front/public/images/small/ThaumicTinkerer/bedrockPortal/0.png deleted file mode 100644 index 4ff78d2c6c..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/bedrockPortal/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/blockTalisman/0.png b/front/public/images/small/ThaumicTinkerer/blockTalisman/0.png deleted file mode 100644 index 29bfa5df43..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/blockTalisman/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/bloodSword/0.png b/front/public/images/small/ThaumicTinkerer/bloodSword/0.png deleted file mode 100644 index 0b349c993a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/bloodSword/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/brightNitor/0.png b/front/public/images/small/ThaumicTinkerer/brightNitor/0.png deleted file mode 100644 index 5b3cbb43ce..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/brightNitor/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/catAmulet/0.png b/front/public/images/small/ThaumicTinkerer/catAmulet/0.png deleted file mode 100644 index aa9670a530..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/catAmulet/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/cleansingTalisman/0.png b/front/public/images/small/ThaumicTinkerer/cleansingTalisman/0.png deleted file mode 100644 index e016246d2c..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/cleansingTalisman/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/connector/0.png b/front/public/images/small/ThaumicTinkerer/connector/0.png deleted file mode 100644 index 315ef6cd60..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/connector/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/darkQuartz/0.png b/front/public/images/small/ThaumicTinkerer/darkQuartz/0.png deleted file mode 100644 index 1eb625895a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/darkQuartz/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/darkQuartz/1.png b/front/public/images/small/ThaumicTinkerer/darkQuartz/1.png deleted file mode 100644 index 802dfebbb9..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/darkQuartz/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/darkQuartz/2.png b/front/public/images/small/ThaumicTinkerer/darkQuartz/2.png deleted file mode 100644 index 020bbc8d0a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/darkQuartz/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/darkQuartzItem/0.png b/front/public/images/small/ThaumicTinkerer/darkQuartzItem/0.png deleted file mode 100644 index c4d4cb91b0..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/darkQuartzItem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/darkQuartzSlab/0.png b/front/public/images/small/ThaumicTinkerer/darkQuartzSlab/0.png deleted file mode 100644 index f915c44944..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/darkQuartzSlab/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/darkQuartzSlabFull/0.png b/front/public/images/small/ThaumicTinkerer/darkQuartzSlabFull/0.png deleted file mode 100644 index 1eb625895a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/darkQuartzSlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/darkQuartzStairs/0.png b/front/public/images/small/ThaumicTinkerer/darkQuartzStairs/0.png deleted file mode 100644 index 10fdaf84ec..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/darkQuartzStairs/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/dislocator/0.png b/front/public/images/small/ThaumicTinkerer/dislocator/0.png deleted file mode 100644 index 66beaa4dc9..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/dislocator/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/enchanter/0.png b/front/public/images/small/ThaumicTinkerer/enchanter/0.png deleted file mode 100644 index 4ee59057c1..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/enchanter/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/fireAir/0.png b/front/public/images/small/ThaumicTinkerer/fireAir/0.png deleted file mode 100644 index 1c92e7f111..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/fireAir/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/fireChaos/0.png b/front/public/images/small/ThaumicTinkerer/fireChaos/0.png deleted file mode 100644 index 22c93a7c5f..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/fireChaos/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/fireEarth/0.png b/front/public/images/small/ThaumicTinkerer/fireEarth/0.png deleted file mode 100644 index a3402eac73..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/fireEarth/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/fireFire/0.png b/front/public/images/small/ThaumicTinkerer/fireFire/0.png deleted file mode 100644 index 78b7ec44ab..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/fireFire/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/fireOrder/0.png b/front/public/images/small/ThaumicTinkerer/fireOrder/0.png deleted file mode 100644 index 54ce72ecd4..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/fireOrder/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/fireWater/0.png b/front/public/images/small/ThaumicTinkerer/fireWater/0.png deleted file mode 100644 index d154c9a8a4..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/fireWater/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusDeflect/0.png b/front/public/images/small/ThaumicTinkerer/focusDeflect/0.png deleted file mode 100644 index 75a438706a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusDeflect/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusDislocation/0.png b/front/public/images/small/ThaumicTinkerer/focusDislocation/0.png deleted file mode 100644 index 07f69c7f11..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusDislocation/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusEnderChest/0.png b/front/public/images/small/ThaumicTinkerer/focusEnderChest/0.png deleted file mode 100644 index 2c8cd8e167..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusEnderChest/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusFlight/0.png b/front/public/images/small/ThaumicTinkerer/focusFlight/0.png deleted file mode 100644 index 5e46234051..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusFlight/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusHeal/0.png b/front/public/images/small/ThaumicTinkerer/focusHeal/0.png deleted file mode 100644 index fb4ee95c61..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusHeal/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusRecall/0.png b/front/public/images/small/ThaumicTinkerer/focusRecall/0.png deleted file mode 100644 index 36c5bd8e30..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusRecall/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusShadowbeam/0.png b/front/public/images/small/ThaumicTinkerer/focusShadowbeam/0.png deleted file mode 100644 index 4e6c7392e9..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusShadowbeam/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusSmelt/0.png b/front/public/images/small/ThaumicTinkerer/focusSmelt/0.png deleted file mode 100644 index addcd3465f..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusSmelt/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusTelekinesis/0.png b/front/public/images/small/ThaumicTinkerer/focusTelekinesis/0.png deleted file mode 100644 index 08600b0cd9..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusTelekinesis/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/focusXPDrain/0.png b/front/public/images/small/ThaumicTinkerer/focusXPDrain/0.png deleted file mode 100644 index c90c35be72..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/focusXPDrain/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/forcefield/0.png b/front/public/images/small/ThaumicTinkerer/forcefield/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/forcefield/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/funnel/0.png b/front/public/images/small/ThaumicTinkerer/funnel/0.png deleted file mode 100644 index 6160f37b06..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/funnel/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/gasRemover/0.png b/front/public/images/small/ThaumicTinkerer/gasRemover/0.png deleted file mode 100644 index c202fdcb1a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/gasRemover/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/gaseousLight/0.png b/front/public/images/small/ThaumicTinkerer/gaseousLight/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/gaseousLight/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/gaseousLightItem/0.png b/front/public/images/small/ThaumicTinkerer/gaseousLightItem/0.png deleted file mode 100644 index f96f8f1f77..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/gaseousLightItem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/gaseousShadow/0.png b/front/public/images/small/ThaumicTinkerer/gaseousShadow/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/gaseousShadow/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/gaseousShadowItem/0.png b/front/public/images/small/ThaumicTinkerer/gaseousShadowItem/0.png deleted file mode 100644 index 3ea754c529..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/gaseousShadowItem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorAxe/0.png b/front/public/images/small/ThaumicTinkerer/ichorAxe/0.png deleted file mode 100644 index 5fa5a0f595..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorAxe/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorAxeGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorAxeGem/0.png deleted file mode 100644 index c8377a5832..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorAxeGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorPick/0.png b/front/public/images/small/ThaumicTinkerer/ichorPick/0.png deleted file mode 100644 index 507619bb1a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorPick/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorPickGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorPickGem/0.png deleted file mode 100644 index c0233ea4af..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorPickGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorPouch/0.png b/front/public/images/small/ThaumicTinkerer/ichorPouch/0.png deleted file mode 100644 index f715de4988..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorPouch/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorShovel/0.png b/front/public/images/small/ThaumicTinkerer/ichorShovel/0.png deleted file mode 100644 index af02473473..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorShovel/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorShovelGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorShovelGem/0.png deleted file mode 100644 index 9fd90ba6ac..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorShovelGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorSword/0.png b/front/public/images/small/ThaumicTinkerer/ichorSword/0.png deleted file mode 100644 index 9b4f6e2932..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorSword/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorSwordGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorSwordGem/0.png deleted file mode 100644 index 2a4ed7c620..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorSwordGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothBoots/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothBoots/0.png deleted file mode 100644 index b58f1058c0..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothBoots/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothBootsGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothBootsGem/0.png deleted file mode 100644 index 1961179b87..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothBootsGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothChest/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothChest/0.png deleted file mode 100644 index d6e40dfa76..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothChest/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothChestGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothChestGem/0.png deleted file mode 100644 index 9a4a46351f..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothChestGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothHelm/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothHelm/0.png deleted file mode 100644 index 3154a1e358..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothHelm/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothHelmGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothHelmGem/0.png deleted file mode 100644 index e0eafe6c58..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothHelmGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothLegs/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothLegs/0.png deleted file mode 100644 index 9707ee04f0..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothLegs/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/ichorclothLegsGem/0.png b/front/public/images/small/ThaumicTinkerer/ichorclothLegsGem/0.png deleted file mode 100644 index 11bbdf1a97..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/ichorclothLegsGem/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedFarmland/0.png b/front/public/images/small/ThaumicTinkerer/infusedFarmland/0.png deleted file mode 100644 index f6b7256c33..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedFarmland/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedGrain/0.png b/front/public/images/small/ThaumicTinkerer/infusedGrain/0.png deleted file mode 100644 index 0b7e2eb675..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedGrain/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedGrain/1.png b/front/public/images/small/ThaumicTinkerer/infusedGrain/1.png deleted file mode 100644 index ac06428d64..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedGrain/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedGrain/2.png b/front/public/images/small/ThaumicTinkerer/infusedGrain/2.png deleted file mode 100644 index 6627206cac..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedGrain/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedGrain/3.png b/front/public/images/small/ThaumicTinkerer/infusedGrain/3.png deleted file mode 100644 index ffd885e00c..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedGrain/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedGrainBlock/0.png b/front/public/images/small/ThaumicTinkerer/infusedGrainBlock/0.png deleted file mode 100644 index 75ca271aa7..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedGrainBlock/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedInkwell/0.png b/front/public/images/small/ThaumicTinkerer/infusedInkwell/0.png deleted file mode 100644 index 6c5a9fed66..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedInkwell/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedPotion/0.png b/front/public/images/small/ThaumicTinkerer/infusedPotion/0.png deleted file mode 100644 index 9c27d3cec3..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedPotion/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedPotion/1.png b/front/public/images/small/ThaumicTinkerer/infusedPotion/1.png deleted file mode 100644 index f3f40b8e84..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedPotion/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedPotion/2.png b/front/public/images/small/ThaumicTinkerer/infusedPotion/2.png deleted file mode 100644 index d63122b248..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedPotion/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedPotion/3.png b/front/public/images/small/ThaumicTinkerer/infusedPotion/3.png deleted file mode 100644 index 185e7c5f4b..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedPotion/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/infusedSeeds/0.png b/front/public/images/small/ThaumicTinkerer/infusedSeeds/0.png deleted file mode 100644 index 63967a8c05..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/infusedSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/interface/0.png b/front/public/images/small/ThaumicTinkerer/interface/0.png deleted file mode 100644 index f5daadad08..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/interface/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/0.png b/front/public/images/small/ThaumicTinkerer/kamiResource/0.png deleted file mode 100644 index 893a7675c1..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/1.png b/front/public/images/small/ThaumicTinkerer/kamiResource/1.png deleted file mode 100644 index 4f8733e21e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/2.png b/front/public/images/small/ThaumicTinkerer/kamiResource/2.png deleted file mode 100644 index 841dc6db1b..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/3.png b/front/public/images/small/ThaumicTinkerer/kamiResource/3.png deleted file mode 100644 index c98cec37f8..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/4.png b/front/public/images/small/ThaumicTinkerer/kamiResource/4.png deleted file mode 100644 index 5eaf30414c..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/5.png b/front/public/images/small/ThaumicTinkerer/kamiResource/5.png deleted file mode 100644 index 8568cf5b06..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/6.png b/front/public/images/small/ThaumicTinkerer/kamiResource/6.png deleted file mode 100644 index faf71028fe..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/kamiResource/7.png b/front/public/images/small/ThaumicTinkerer/kamiResource/7.png deleted file mode 100644 index 70f4a37d94..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/kamiResource/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/magnet/0.png b/front/public/images/small/ThaumicTinkerer/magnet/0.png deleted file mode 100644 index 7806a0de34..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/magnet/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/magnet/1.png b/front/public/images/small/ThaumicTinkerer/magnet/1.png deleted file mode 100644 index ac4429b919..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/magnet/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/0.png b/front/public/images/small/ThaumicTinkerer/mobAspect/0.png deleted file mode 100644 index daf3ddef13..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/1.png b/front/public/images/small/ThaumicTinkerer/mobAspect/1.png deleted file mode 100644 index 385ede565e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/1.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/10.png b/front/public/images/small/ThaumicTinkerer/mobAspect/10.png deleted file mode 100644 index 812226c1a2..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/10.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/11.png b/front/public/images/small/ThaumicTinkerer/mobAspect/11.png deleted file mode 100644 index b0a005835d..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/11.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/12.png b/front/public/images/small/ThaumicTinkerer/mobAspect/12.png deleted file mode 100644 index 37afb44db4..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/12.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/13.png b/front/public/images/small/ThaumicTinkerer/mobAspect/13.png deleted file mode 100644 index a8c9a9cefa..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/13.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/14.png b/front/public/images/small/ThaumicTinkerer/mobAspect/14.png deleted file mode 100644 index 5c2cc16ab0..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/14.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/15.png b/front/public/images/small/ThaumicTinkerer/mobAspect/15.png deleted file mode 100644 index 866d3a25eb..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/15.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/16.png b/front/public/images/small/ThaumicTinkerer/mobAspect/16.png deleted file mode 100644 index c49e0de6dd..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/16.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/2.png b/front/public/images/small/ThaumicTinkerer/mobAspect/2.png deleted file mode 100644 index 8fcbef299e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/2.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/3.png b/front/public/images/small/ThaumicTinkerer/mobAspect/3.png deleted file mode 100644 index e19e6b9d0e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/3.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/4.png b/front/public/images/small/ThaumicTinkerer/mobAspect/4.png deleted file mode 100644 index d1cfaef15a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/4.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/42.png b/front/public/images/small/ThaumicTinkerer/mobAspect/42.png deleted file mode 100644 index daf3ddef13..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/42.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/43.png b/front/public/images/small/ThaumicTinkerer/mobAspect/43.png deleted file mode 100644 index 385ede565e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/43.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/44.png b/front/public/images/small/ThaumicTinkerer/mobAspect/44.png deleted file mode 100644 index 8fcbef299e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/44.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/45.png b/front/public/images/small/ThaumicTinkerer/mobAspect/45.png deleted file mode 100644 index e19e6b9d0e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/45.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/46.png b/front/public/images/small/ThaumicTinkerer/mobAspect/46.png deleted file mode 100644 index d1cfaef15a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/46.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/47.png b/front/public/images/small/ThaumicTinkerer/mobAspect/47.png deleted file mode 100644 index 7ebb1b5e60..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/47.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/48.png b/front/public/images/small/ThaumicTinkerer/mobAspect/48.png deleted file mode 100644 index bd5f2ce5f3..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/48.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/49.png b/front/public/images/small/ThaumicTinkerer/mobAspect/49.png deleted file mode 100644 index b19efa268f..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/49.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/5.png b/front/public/images/small/ThaumicTinkerer/mobAspect/5.png deleted file mode 100644 index 7ebb1b5e60..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/5.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/50.png b/front/public/images/small/ThaumicTinkerer/mobAspect/50.png deleted file mode 100644 index 9f4c272301..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/50.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/51.png b/front/public/images/small/ThaumicTinkerer/mobAspect/51.png deleted file mode 100644 index 2aab04e435..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/51.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/52.png b/front/public/images/small/ThaumicTinkerer/mobAspect/52.png deleted file mode 100644 index 812226c1a2..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/52.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/53.png b/front/public/images/small/ThaumicTinkerer/mobAspect/53.png deleted file mode 100644 index b0a005835d..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/53.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/54.png b/front/public/images/small/ThaumicTinkerer/mobAspect/54.png deleted file mode 100644 index 37afb44db4..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/54.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/55.png b/front/public/images/small/ThaumicTinkerer/mobAspect/55.png deleted file mode 100644 index a8c9a9cefa..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/55.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/56.png b/front/public/images/small/ThaumicTinkerer/mobAspect/56.png deleted file mode 100644 index 5c2cc16ab0..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/56.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/57.png b/front/public/images/small/ThaumicTinkerer/mobAspect/57.png deleted file mode 100644 index 866d3a25eb..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/57.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/58.png b/front/public/images/small/ThaumicTinkerer/mobAspect/58.png deleted file mode 100644 index c49e0de6dd..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/58.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/6.png b/front/public/images/small/ThaumicTinkerer/mobAspect/6.png deleted file mode 100644 index bd5f2ce5f3..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/6.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/7.png b/front/public/images/small/ThaumicTinkerer/mobAspect/7.png deleted file mode 100644 index b19efa268f..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/7.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/8.png b/front/public/images/small/ThaumicTinkerer/mobAspect/8.png deleted file mode 100644 index 9f4c272301..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/8.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/mobAspect/9.png b/front/public/images/small/ThaumicTinkerer/mobAspect/9.png deleted file mode 100644 index 2aab04e435..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/mobAspect/9.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/nitorGas/0.png b/front/public/images/small/ThaumicTinkerer/nitorGas/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/nitorGas/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/placementMirror/0.png b/front/public/images/small/ThaumicTinkerer/placementMirror/0.png deleted file mode 100644 index b20cacf9fe..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/placementMirror/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/platform/0.png b/front/public/images/small/ThaumicTinkerer/platform/0.png deleted file mode 100644 index 36bc1ed02d..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/platform/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/protoclay/0.png b/front/public/images/small/ThaumicTinkerer/protoclay/0.png deleted file mode 100644 index edc16f0614..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/protoclay/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/repairer/0.png b/front/public/images/small/ThaumicTinkerer/repairer/0.png deleted file mode 100644 index 6e81a02aa9..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/repairer/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/revealingHelm/0.png b/front/public/images/small/ThaumicTinkerer/revealingHelm/0.png deleted file mode 100644 index 936920c79f..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/revealingHelm/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/shareBook/0.png b/front/public/images/small/ThaumicTinkerer/shareBook/0.png deleted file mode 100644 index 3a6101bb44..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/shareBook/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/skyPearl/0.png b/front/public/images/small/ThaumicTinkerer/skyPearl/0.png deleted file mode 100644 index bb4f7d90e1..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/skyPearl/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/soulMould/0.png b/front/public/images/small/ThaumicTinkerer/soulMould/0.png deleted file mode 100644 index 4f9e6993c6..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/soulMould/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/spawner/0.png b/front/public/images/small/ThaumicTinkerer/spawner/0.png deleted file mode 100644 index 061b9d2c7d..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/spawner/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/spellCloth/0.png b/front/public/images/small/ThaumicTinkerer/spellCloth/0.png deleted file mode 100644 index c149b53934..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/spellCloth/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/travelSlab/0.png b/front/public/images/small/ThaumicTinkerer/travelSlab/0.png deleted file mode 100644 index fb308d05f4..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/travelSlab/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/travelSlabFull/0.png b/front/public/images/small/ThaumicTinkerer/travelSlabFull/0.png deleted file mode 100644 index 3bbabcb0a6..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/travelSlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/travelStairs/0.png b/front/public/images/small/ThaumicTinkerer/travelStairs/0.png deleted file mode 100644 index 393ccc71d4..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/travelStairs/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/wardSlab/0.png b/front/public/images/small/ThaumicTinkerer/wardSlab/0.png deleted file mode 100644 index bd6d06e56a..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/wardSlab/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/wardSlabFull/0.png b/front/public/images/small/ThaumicTinkerer/wardSlabFull/0.png deleted file mode 100644 index 9312bf367c..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/wardSlabFull/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/warpGate/0.png b/front/public/images/small/ThaumicTinkerer/warpGate/0.png deleted file mode 100644 index 332bd01a1c..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/warpGate/0.png and /dev/null differ diff --git a/front/public/images/small/ThaumicTinkerer/xpTalisman/0.png b/front/public/images/small/ThaumicTinkerer/xpTalisman/0.png deleted file mode 100644 index 6405c797e0..0000000000 Binary files a/front/public/images/small/ThaumicTinkerer/xpTalisman/0.png and /dev/null differ diff --git a/front/public/images/small/ToxicEverglades/blockDarkWorldGround/0.png b/front/public/images/small/ToxicEverglades/blockDarkWorldGround/0.png deleted file mode 100644 index a4035e485d..0000000000 Binary files a/front/public/images/small/ToxicEverglades/blockDarkWorldGround/0.png and /dev/null differ diff --git a/front/public/images/small/ToxicEverglades/blockDarkWorldGround2/0.png b/front/public/images/small/ToxicEverglades/blockDarkWorldGround2/0.png deleted file mode 100644 index d90570d10b..0000000000 Binary files a/front/public/images/small/ToxicEverglades/blockDarkWorldGround2/0.png and /dev/null differ diff --git a/front/public/images/small/ToxicEverglades/blockDarkWorldGround2/2.png b/front/public/images/small/ToxicEverglades/blockDarkWorldGround2/2.png deleted file mode 100644 index 166f3cdd63..0000000000 Binary files a/front/public/images/small/ToxicEverglades/blockDarkWorldGround2/2.png and /dev/null differ diff --git a/front/public/images/small/ToxicEverglades/blockDarkWorldPortalFrame/0.png b/front/public/images/small/ToxicEverglades/blockDarkWorldPortalFrame/0.png deleted file mode 100644 index 5f2c38c540..0000000000 Binary files a/front/public/images/small/ToxicEverglades/blockDarkWorldPortalFrame/0.png and /dev/null differ diff --git a/front/public/images/small/ToxicEverglades/dimensionDarkWorld_portal/0.png b/front/public/images/small/ToxicEverglades/dimensionDarkWorld_portal/0.png deleted file mode 100644 index 40264aefb4..0000000000 Binary files a/front/public/images/small/ToxicEverglades/dimensionDarkWorld_portal/0.png and /dev/null differ diff --git a/front/public/images/small/ToxicEverglades/everglades.trigger/0.png b/front/public/images/small/ToxicEverglades/everglades.trigger/0.png deleted file mode 100644 index 53cc51e94c..0000000000 Binary files a/front/public/images/small/ToxicEverglades/everglades.trigger/0.png and /dev/null differ diff --git a/front/public/images/small/ToxicEverglades/fluidSludge/0.png b/front/public/images/small/ToxicEverglades/fluidSludge/0.png deleted file mode 100644 index dbb12a8225..0000000000 Binary files a/front/public/images/small/ToxicEverglades/fluidSludge/0.png and /dev/null differ diff --git a/front/public/images/small/Translocator/craftingGrid/0.png b/front/public/images/small/Translocator/craftingGrid/0.png deleted file mode 100644 index fa6f857650..0000000000 Binary files a/front/public/images/small/Translocator/craftingGrid/0.png and /dev/null differ diff --git a/front/public/images/small/Translocator/diamondNugget/0.png b/front/public/images/small/Translocator/diamondNugget/0.png deleted file mode 100644 index cc84723b2e..0000000000 Binary files a/front/public/images/small/Translocator/diamondNugget/0.png and /dev/null differ diff --git a/front/public/images/small/Translocator/translocator/0.png b/front/public/images/small/Translocator/translocator/0.png deleted file mode 100644 index 3e84c5cfbe..0000000000 Binary files a/front/public/images/small/Translocator/translocator/0.png and /dev/null differ diff --git a/front/public/images/small/Translocator/translocator/1.png b/front/public/images/small/Translocator/translocator/1.png deleted file mode 100644 index e30e6ab636..0000000000 Binary files a/front/public/images/small/Translocator/translocator/1.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/armorstand/0.png b/front/public/images/small/TravellersGear/armorstand/0.png deleted file mode 100644 index c858c2ba3d..0000000000 Binary files a/front/public/images/small/TravellersGear/armorstand/0.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/simpleGear/0.png b/front/public/images/small/TravellersGear/simpleGear/0.png deleted file mode 100644 index 713be24ec1..0000000000 Binary files a/front/public/images/small/TravellersGear/simpleGear/0.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/simpleGear/1.png b/front/public/images/small/TravellersGear/simpleGear/1.png deleted file mode 100644 index 14a48a7f92..0000000000 Binary files a/front/public/images/small/TravellersGear/simpleGear/1.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/simpleGear/2.png b/front/public/images/small/TravellersGear/simpleGear/2.png deleted file mode 100644 index d305fb8317..0000000000 Binary files a/front/public/images/small/TravellersGear/simpleGear/2.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/simpleGear/3.png b/front/public/images/small/TravellersGear/simpleGear/3.png deleted file mode 100644 index d59c79c644..0000000000 Binary files a/front/public/images/small/TravellersGear/simpleGear/3.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/simpleGear/4.png b/front/public/images/small/TravellersGear/simpleGear/4.png deleted file mode 100644 index 0e57609354..0000000000 Binary files a/front/public/images/small/TravellersGear/simpleGear/4.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/simpleGear/5.png b/front/public/images/small/TravellersGear/simpleGear/5.png deleted file mode 100644 index a4bc1d19df..0000000000 Binary files a/front/public/images/small/TravellersGear/simpleGear/5.png and /dev/null differ diff --git a/front/public/images/small/TravellersGear/simpleGear/6.png b/front/public/images/small/TravellersGear/simpleGear/6.png deleted file mode 100644 index ecab8667b1..0000000000 Binary files a/front/public/images/small/TravellersGear/simpleGear/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.alphaFur/0.png b/front/public/images/small/TwilightForest/item.alphaFur/0.png deleted file mode 100644 index d72c2114d1..0000000000 Binary files a/front/public/images/small/TwilightForest/item.alphaFur/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.arcticBoots/0.png b/front/public/images/small/TwilightForest/item.arcticBoots/0.png deleted file mode 100644 index 112226133f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.arcticBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.arcticFur/0.png b/front/public/images/small/TwilightForest/item.arcticFur/0.png deleted file mode 100644 index 545a7ac283..0000000000 Binary files a/front/public/images/small/TwilightForest/item.arcticFur/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.arcticHelm/0.png b/front/public/images/small/TwilightForest/item.arcticHelm/0.png deleted file mode 100644 index cbe329faf9..0000000000 Binary files a/front/public/images/small/TwilightForest/item.arcticHelm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.arcticLegs/0.png b/front/public/images/small/TwilightForest/item.arcticLegs/0.png deleted file mode 100644 index 8f01fbf3df..0000000000 Binary files a/front/public/images/small/TwilightForest/item.arcticLegs/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.arcticPlate/0.png b/front/public/images/small/TwilightForest/item.arcticPlate/0.png deleted file mode 100644 index e654cd29f2..0000000000 Binary files a/front/public/images/small/TwilightForest/item.arcticPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.armorShards/0.png b/front/public/images/small/TwilightForest/item.armorShards/0.png deleted file mode 100644 index bfa9b6f1f4..0000000000 Binary files a/front/public/images/small/TwilightForest/item.armorShards/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.borerEssence/0.png b/front/public/images/small/TwilightForest/item.borerEssence/0.png deleted file mode 100644 index 5007140010..0000000000 Binary files a/front/public/images/small/TwilightForest/item.borerEssence/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.carminite/0.png b/front/public/images/small/TwilightForest/item.carminite/0.png deleted file mode 100644 index f86c701913..0000000000 Binary files a/front/public/images/small/TwilightForest/item.carminite/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.chainBlock/0.png b/front/public/images/small/TwilightForest/item.chainBlock/0.png deleted file mode 100644 index 2d73f9e330..0000000000 Binary files a/front/public/images/small/TwilightForest/item.chainBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.charmOfKeeping1/0.png b/front/public/images/small/TwilightForest/item.charmOfKeeping1/0.png deleted file mode 100644 index 5d3a219aa1..0000000000 Binary files a/front/public/images/small/TwilightForest/item.charmOfKeeping1/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.charmOfKeeping2/0.png b/front/public/images/small/TwilightForest/item.charmOfKeeping2/0.png deleted file mode 100644 index 3c45e35041..0000000000 Binary files a/front/public/images/small/TwilightForest/item.charmOfKeeping2/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.charmOfKeeping3/0.png b/front/public/images/small/TwilightForest/item.charmOfKeeping3/0.png deleted file mode 100644 index 6ed9a7d172..0000000000 Binary files a/front/public/images/small/TwilightForest/item.charmOfKeeping3/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.charmOfLife1/0.png b/front/public/images/small/TwilightForest/item.charmOfLife1/0.png deleted file mode 100644 index 36992314c8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.charmOfLife1/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.charmOfLife2/0.png b/front/public/images/small/TwilightForest/item.charmOfLife2/0.png deleted file mode 100644 index 33c4aa778f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.charmOfLife2/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.crumbleHorn/0.png b/front/public/images/small/TwilightForest/item.crumbleHorn/0.png deleted file mode 100644 index dfd95535c1..0000000000 Binary files a/front/public/images/small/TwilightForest/item.crumbleHorn/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.cubeOfAnnihilation/0.png b/front/public/images/small/TwilightForest/item.cubeOfAnnihilation/0.png deleted file mode 100644 index 962863b5c3..0000000000 Binary files a/front/public/images/small/TwilightForest/item.cubeOfAnnihilation/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.cubeTalisman/0.png b/front/public/images/small/TwilightForest/item.cubeTalisman/0.png deleted file mode 100644 index 9a757a0f8c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.cubeTalisman/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorCanopy/0.png b/front/public/images/small/TwilightForest/item.doorCanopy/0.png deleted file mode 100644 index 27f11b23f6..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorCanopy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorDarkwood/0.png b/front/public/images/small/TwilightForest/item.doorDarkwood/0.png deleted file mode 100644 index 2a6f84c30a..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorDarkwood/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorMangrove/0.png b/front/public/images/small/TwilightForest/item.doorMangrove/0.png deleted file mode 100644 index aef202f7dc..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorMangrove/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorMine/0.png b/front/public/images/small/TwilightForest/item.doorMine/0.png deleted file mode 100644 index ebd448049d..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorMine/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorSort/0.png b/front/public/images/small/TwilightForest/item.doorSort/0.png deleted file mode 100644 index 284aaf08c8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorSort/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorTime/0.png b/front/public/images/small/TwilightForest/item.doorTime/0.png deleted file mode 100644 index e3f634c7c3..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorTime/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorTrans/0.png b/front/public/images/small/TwilightForest/item.doorTrans/0.png deleted file mode 100644 index 56b406783b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorTrans/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.doorTwilight/0.png b/front/public/images/small/TwilightForest/item.doorTwilight/0.png deleted file mode 100644 index e930cd6160..0000000000 Binary files a/front/public/images/small/TwilightForest/item.doorTwilight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.emptyMagicMap/0.png b/front/public/images/small/TwilightForest/item.emptyMagicMap/0.png deleted file mode 100644 index 414fba490f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.emptyMagicMap/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.emptyMazeMap/0.png b/front/public/images/small/TwilightForest/item.emptyMazeMap/0.png deleted file mode 100644 index 1db1f1accd..0000000000 Binary files a/front/public/images/small/TwilightForest/item.emptyMazeMap/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.emptyOreMap/0.png b/front/public/images/small/TwilightForest/item.emptyOreMap/0.png deleted file mode 100644 index 6c5b230a2c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.emptyOreMap/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.enderBow/0.png b/front/public/images/small/TwilightForest/item.enderBow/0.png deleted file mode 100644 index 31d6aa2da1..0000000000 Binary files a/front/public/images/small/TwilightForest/item.enderBow/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.experiment115/0.png b/front/public/images/small/TwilightForest/item.experiment115/0.png deleted file mode 100644 index c0f2fc3368..0000000000 Binary files a/front/public/images/small/TwilightForest/item.experiment115/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryBlood/0.png b/front/public/images/small/TwilightForest/item.fieryBlood/0.png deleted file mode 100644 index 47c2ae4a41..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryBlood/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryBoots/0.png b/front/public/images/small/TwilightForest/item.fieryBoots/0.png deleted file mode 100644 index d5beb24fb3..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryHelm/0.png b/front/public/images/small/TwilightForest/item.fieryHelm/0.png deleted file mode 100644 index e3ea39aa13..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryHelm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryIngot/0.png b/front/public/images/small/TwilightForest/item.fieryIngot/0.png deleted file mode 100644 index 6cb7e4bdb4..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryIngot/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryLegs/0.png b/front/public/images/small/TwilightForest/item.fieryLegs/0.png deleted file mode 100644 index d75831d9e6..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryLegs/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryPick/0.png b/front/public/images/small/TwilightForest/item.fieryPick/0.png deleted file mode 100644 index 98333a5aed..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryPick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryPlate/0.png b/front/public/images/small/TwilightForest/item.fieryPlate/0.png deleted file mode 100644 index e874fe6f10..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fierySword/0.png b/front/public/images/small/TwilightForest/item.fierySword/0.png deleted file mode 100644 index 08011a4dc0..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fierySword/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.fieryTears/0.png b/front/public/images/small/TwilightForest/item.fieryTears/0.png deleted file mode 100644 index 805fafe65f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.fieryTears/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.giantPick/0.png b/front/public/images/small/TwilightForest/item.giantPick/0.png deleted file mode 100644 index 610dc4a37c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.giantPick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.giantSword/0.png b/front/public/images/small/TwilightForest/item.giantSword/0.png deleted file mode 100644 index 1ccfe203bd..0000000000 Binary files a/front/public/images/small/TwilightForest/item.giantSword/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.glassSword/0.png b/front/public/images/small/TwilightForest/item.glassSword/0.png deleted file mode 100644 index 753e3adaac..0000000000 Binary files a/front/public/images/small/TwilightForest/item.glassSword/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.hydraChop/0.png b/front/public/images/small/TwilightForest/item.hydraChop/0.png deleted file mode 100644 index d8489ddf31..0000000000 Binary files a/front/public/images/small/TwilightForest/item.hydraChop/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.iceBomb/0.png b/front/public/images/small/TwilightForest/item.iceBomb/0.png deleted file mode 100644 index 45b7827382..0000000000 Binary files a/front/public/images/small/TwilightForest/item.iceBomb/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.iceBow/0.png b/front/public/images/small/TwilightForest/item.iceBow/0.png deleted file mode 100644 index da5aefe06d..0000000000 Binary files a/front/public/images/small/TwilightForest/item.iceBow/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.iceSword/0.png b/front/public/images/small/TwilightForest/item.iceSword/0.png deleted file mode 100644 index 280aab0399..0000000000 Binary files a/front/public/images/small/TwilightForest/item.iceSword/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodAxe/0.png b/front/public/images/small/TwilightForest/item.ironwoodAxe/0.png deleted file mode 100644 index 7931ecf7e5..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodAxe/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodBoots/0.png b/front/public/images/small/TwilightForest/item.ironwoodBoots/0.png deleted file mode 100644 index 6f9e2389fb..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodHelm/0.png b/front/public/images/small/TwilightForest/item.ironwoodHelm/0.png deleted file mode 100644 index 4bade55814..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodHelm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodHoe/0.png b/front/public/images/small/TwilightForest/item.ironwoodHoe/0.png deleted file mode 100644 index efbfe71b41..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodHoe/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodIngot/0.png b/front/public/images/small/TwilightForest/item.ironwoodIngot/0.png deleted file mode 100644 index 3e6c653c8f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodIngot/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodLegs/0.png b/front/public/images/small/TwilightForest/item.ironwoodLegs/0.png deleted file mode 100644 index 9f2aea98f9..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodLegs/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodPick/0.png b/front/public/images/small/TwilightForest/item.ironwoodPick/0.png deleted file mode 100644 index 89cde8c1b0..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodPick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodPlate/0.png b/front/public/images/small/TwilightForest/item.ironwoodPlate/0.png deleted file mode 100644 index dd7ff49e8c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodRaw/0.png b/front/public/images/small/TwilightForest/item.ironwoodRaw/0.png deleted file mode 100644 index 2e6c73aca2..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodRaw/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodShovel/0.png b/front/public/images/small/TwilightForest/item.ironwoodShovel/0.png deleted file mode 100644 index 2827afcdbe..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodShovel/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.ironwoodSword/0.png b/front/public/images/small/TwilightForest/item.ironwoodSword/0.png deleted file mode 100644 index fbb3dd52d3..0000000000 Binary files a/front/public/images/small/TwilightForest/item.ironwoodSword/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightMetal/0.png b/front/public/images/small/TwilightForest/item.knightMetal/0.png deleted file mode 100644 index dfe6d58ae3..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightMetal/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightlyAxe/0.png b/front/public/images/small/TwilightForest/item.knightlyAxe/0.png deleted file mode 100644 index 2504a1f0aa..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightlyAxe/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightlyBoots/0.png b/front/public/images/small/TwilightForest/item.knightlyBoots/0.png deleted file mode 100644 index 919268dc8b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightlyBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightlyHelm/0.png b/front/public/images/small/TwilightForest/item.knightlyHelm/0.png deleted file mode 100644 index 5865e8e3f9..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightlyHelm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightlyLegs/0.png b/front/public/images/small/TwilightForest/item.knightlyLegs/0.png deleted file mode 100644 index 7b815b9f5c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightlyLegs/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightlyPick/0.png b/front/public/images/small/TwilightForest/item.knightlyPick/0.png deleted file mode 100644 index d9fa237fbb..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightlyPick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightlyPlate/0.png b/front/public/images/small/TwilightForest/item.knightlyPlate/0.png deleted file mode 100644 index 7b1b3ec096..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightlyPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightlySword/0.png b/front/public/images/small/TwilightForest/item.knightlySword/0.png deleted file mode 100644 index 23de38c75a..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightlySword/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.knightmetalRing/0.png b/front/public/images/small/TwilightForest/item.knightmetalRing/0.png deleted file mode 100644 index b20f6d8056..0000000000 Binary files a/front/public/images/small/TwilightForest/item.knightmetalRing/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.lampOfCinders/0.png b/front/public/images/small/TwilightForest/item.lampOfCinders/0.png deleted file mode 100644 index 9f448e2cb2..0000000000 Binary files a/front/public/images/small/TwilightForest/item.lampOfCinders/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.legsNaga/0.png b/front/public/images/small/TwilightForest/item.legsNaga/0.png deleted file mode 100644 index 947c83f55d..0000000000 Binary files a/front/public/images/small/TwilightForest/item.legsNaga/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.liveRoot/0.png b/front/public/images/small/TwilightForest/item.liveRoot/0.png deleted file mode 100644 index f998ea4d79..0000000000 Binary files a/front/public/images/small/TwilightForest/item.liveRoot/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.magicBeans/0.png b/front/public/images/small/TwilightForest/item.magicBeans/0.png deleted file mode 100644 index 17d8adbed1..0000000000 Binary files a/front/public/images/small/TwilightForest/item.magicBeans/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.magicMap/0.png b/front/public/images/small/TwilightForest/item.magicMap/0.png deleted file mode 100644 index 2610ea8c3c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.magicMap/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.magicMapFocus/0.png b/front/public/images/small/TwilightForest/item.magicMapFocus/0.png deleted file mode 100644 index e15294d96b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.magicMapFocus/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.mazeMap/0.png b/front/public/images/small/TwilightForest/item.mazeMap/0.png deleted file mode 100644 index 7b4bc2c272..0000000000 Binary files a/front/public/images/small/TwilightForest/item.mazeMap/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.mazeMapFocus/0.png b/front/public/images/small/TwilightForest/item.mazeMapFocus/0.png deleted file mode 100644 index 416732d9d9..0000000000 Binary files a/front/public/images/small/TwilightForest/item.mazeMapFocus/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.mazeWafer/0.png b/front/public/images/small/TwilightForest/item.mazeWafer/0.png deleted file mode 100644 index d7b6589a74..0000000000 Binary files a/front/public/images/small/TwilightForest/item.mazeWafer/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.mazebreakerPick/0.png b/front/public/images/small/TwilightForest/item.mazebreakerPick/0.png deleted file mode 100644 index 86195f8bc8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.mazebreakerPick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.meefRaw/0.png b/front/public/images/small/TwilightForest/item.meefRaw/0.png deleted file mode 100644 index f716f9e01c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.meefRaw/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.meefSteak/0.png b/front/public/images/small/TwilightForest/item.meefSteak/0.png deleted file mode 100644 index 2f9e45bb74..0000000000 Binary files a/front/public/images/small/TwilightForest/item.meefSteak/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.meefStroganoff/0.png b/front/public/images/small/TwilightForest/item.meefStroganoff/0.png deleted file mode 100644 index 878a6028ef..0000000000 Binary files a/front/public/images/small/TwilightForest/item.meefStroganoff/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.minotaurAxe/0.png b/front/public/images/small/TwilightForest/item.minotaurAxe/0.png deleted file mode 100644 index 81264451bc..0000000000 Binary files a/front/public/images/small/TwilightForest/item.minotaurAxe/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.moonwormQueen/0.png b/front/public/images/small/TwilightForest/item.moonwormQueen/0.png deleted file mode 100644 index e18c56c876..0000000000 Binary files a/front/public/images/small/TwilightForest/item.moonwormQueen/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.nagaScale/0.png b/front/public/images/small/TwilightForest/item.nagaScale/0.png deleted file mode 100644 index 63a8eaa7ab..0000000000 Binary files a/front/public/images/small/TwilightForest/item.nagaScale/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.null/0.png b/front/public/images/small/TwilightForest/item.null/0.png deleted file mode 100644 index 4741ee464b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.null/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.null/1.png b/front/public/images/small/TwilightForest/item.null/1.png deleted file mode 100644 index ae14ca4a75..0000000000 Binary files a/front/public/images/small/TwilightForest/item.null/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.oreMagnet/0.png b/front/public/images/small/TwilightForest/item.oreMagnet/0.png deleted file mode 100644 index 172894c580..0000000000 Binary files a/front/public/images/small/TwilightForest/item.oreMagnet/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.oreMap/0.png b/front/public/images/small/TwilightForest/item.oreMap/0.png deleted file mode 100644 index f603fb88b7..0000000000 Binary files a/front/public/images/small/TwilightForest/item.oreMap/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.oreMeter/0.png b/front/public/images/small/TwilightForest/item.oreMeter/0.png deleted file mode 100644 index ff89da905f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.oreMeter/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.peacockFan/0.png b/front/public/images/small/TwilightForest/item.peacockFan/0.png deleted file mode 100644 index 8a8daa61eb..0000000000 Binary files a/front/public/images/small/TwilightForest/item.peacockFan/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.phantomHelm/0.png b/front/public/images/small/TwilightForest/item.phantomHelm/0.png deleted file mode 100644 index eefa22c305..0000000000 Binary files a/front/public/images/small/TwilightForest/item.phantomHelm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.phantomPlate/0.png b/front/public/images/small/TwilightForest/item.phantomPlate/0.png deleted file mode 100644 index 88ec24db7e..0000000000 Binary files a/front/public/images/small/TwilightForest/item.phantomPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.plateNaga/0.png b/front/public/images/small/TwilightForest/item.plateNaga/0.png deleted file mode 100644 index 1f0b51cca8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.plateNaga/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.scepterLifeDrain/0.png b/front/public/images/small/TwilightForest/item.scepterLifeDrain/0.png deleted file mode 100644 index 1f1d3684de..0000000000 Binary files a/front/public/images/small/TwilightForest/item.scepterLifeDrain/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.scepterTwilight/0.png b/front/public/images/small/TwilightForest/item.scepterTwilight/0.png deleted file mode 100644 index 7c8ffdb6e4..0000000000 Binary files a/front/public/images/small/TwilightForest/item.scepterTwilight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.scepterZombie/0.png b/front/public/images/small/TwilightForest/item.scepterZombie/0.png deleted file mode 100644 index 0238783c81..0000000000 Binary files a/front/public/images/small/TwilightForest/item.scepterZombie/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.seekerBow/0.png b/front/public/images/small/TwilightForest/item.seekerBow/0.png deleted file mode 100644 index 2ab077784f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.seekerBow/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.shardCluster/0.png b/front/public/images/small/TwilightForest/item.shardCluster/0.png deleted file mode 100644 index a853bb46b2..0000000000 Binary files a/front/public/images/small/TwilightForest/item.shardCluster/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafAxe/0.png b/front/public/images/small/TwilightForest/item.steeleafAxe/0.png deleted file mode 100644 index 8955cd9004..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafAxe/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafBoots/0.png b/front/public/images/small/TwilightForest/item.steeleafBoots/0.png deleted file mode 100644 index 7c9d375e67..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafHelm/0.png b/front/public/images/small/TwilightForest/item.steeleafHelm/0.png deleted file mode 100644 index 4bdebe76de..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafHelm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafHoe/0.png b/front/public/images/small/TwilightForest/item.steeleafHoe/0.png deleted file mode 100644 index a92a23fea8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafHoe/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafIngot/0.png b/front/public/images/small/TwilightForest/item.steeleafIngot/0.png deleted file mode 100644 index 26cdbc9cca..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafIngot/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafLegs/0.png b/front/public/images/small/TwilightForest/item.steeleafLegs/0.png deleted file mode 100644 index eca47d90cd..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafLegs/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafPick/0.png b/front/public/images/small/TwilightForest/item.steeleafPick/0.png deleted file mode 100644 index d86e88fd02..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafPick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafPlate/0.png b/front/public/images/small/TwilightForest/item.steeleafPlate/0.png deleted file mode 100644 index 7d57d45f7f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafShovel/0.png b/front/public/images/small/TwilightForest/item.steeleafShovel/0.png deleted file mode 100644 index bb68c5cb0a..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafShovel/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.steeleafSword/0.png b/front/public/images/small/TwilightForest/item.steeleafSword/0.png deleted file mode 100644 index 924c89ed9b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.steeleafSword/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfFeather/0.png b/front/public/images/small/TwilightForest/item.tfFeather/0.png deleted file mode 100644 index 7e14d3ac73..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfFeather/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/0.png b/front/public/images/small/TwilightForest/item.tfspawnegg/0.png deleted file mode 100644 index 77e5e45e38..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/177.png b/front/public/images/small/TwilightForest/item.tfspawnegg/177.png deleted file mode 100644 index 054f7b0b59..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/177.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/178.png b/front/public/images/small/TwilightForest/item.tfspawnegg/178.png deleted file mode 100644 index 71569529d1..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/178.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/179.png b/front/public/images/small/TwilightForest/item.tfspawnegg/179.png deleted file mode 100644 index 8edc2bffdb..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/179.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/180.png b/front/public/images/small/TwilightForest/item.tfspawnegg/180.png deleted file mode 100644 index 40fbd5a26e..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/180.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/181.png b/front/public/images/small/TwilightForest/item.tfspawnegg/181.png deleted file mode 100644 index 757339c531..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/181.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/182.png b/front/public/images/small/TwilightForest/item.tfspawnegg/182.png deleted file mode 100644 index 46b342b55b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/182.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/184.png b/front/public/images/small/TwilightForest/item.tfspawnegg/184.png deleted file mode 100644 index b2b48771a6..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/184.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/185.png b/front/public/images/small/TwilightForest/item.tfspawnegg/185.png deleted file mode 100644 index 3c63c099b8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/185.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/186.png b/front/public/images/small/TwilightForest/item.tfspawnegg/186.png deleted file mode 100644 index 214d715080..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/186.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/187.png b/front/public/images/small/TwilightForest/item.tfspawnegg/187.png deleted file mode 100644 index 6dbfc9abd4..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/187.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/189.png b/front/public/images/small/TwilightForest/item.tfspawnegg/189.png deleted file mode 100644 index e8e8763b20..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/189.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/190.png b/front/public/images/small/TwilightForest/item.tfspawnegg/190.png deleted file mode 100644 index bcc0d59521..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/190.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/191.png b/front/public/images/small/TwilightForest/item.tfspawnegg/191.png deleted file mode 100644 index b78a9eb5d3..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/191.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/194.png b/front/public/images/small/TwilightForest/item.tfspawnegg/194.png deleted file mode 100644 index 1b04d525d3..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/194.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/195.png b/front/public/images/small/TwilightForest/item.tfspawnegg/195.png deleted file mode 100644 index 3262ea3783..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/195.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/196.png b/front/public/images/small/TwilightForest/item.tfspawnegg/196.png deleted file mode 100644 index 66acb3e705..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/196.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/197.png b/front/public/images/small/TwilightForest/item.tfspawnegg/197.png deleted file mode 100644 index a761069f4a..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/197.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/199.png b/front/public/images/small/TwilightForest/item.tfspawnegg/199.png deleted file mode 100644 index 637f22be24..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/199.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/202.png b/front/public/images/small/TwilightForest/item.tfspawnegg/202.png deleted file mode 100644 index bd8a627ff2..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/202.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/203.png b/front/public/images/small/TwilightForest/item.tfspawnegg/203.png deleted file mode 100644 index 99c954db17..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/203.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/204.png b/front/public/images/small/TwilightForest/item.tfspawnegg/204.png deleted file mode 100644 index 12baccd709..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/204.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/205.png b/front/public/images/small/TwilightForest/item.tfspawnegg/205.png deleted file mode 100644 index d4b2709b8a..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/205.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/206.png b/front/public/images/small/TwilightForest/item.tfspawnegg/206.png deleted file mode 100644 index 681dbff411..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/206.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/207.png b/front/public/images/small/TwilightForest/item.tfspawnegg/207.png deleted file mode 100644 index 2ea791882f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/207.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/208.png b/front/public/images/small/TwilightForest/item.tfspawnegg/208.png deleted file mode 100644 index 55eddcd568..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/208.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/209.png b/front/public/images/small/TwilightForest/item.tfspawnegg/209.png deleted file mode 100644 index b2b48771a6..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/209.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/210.png b/front/public/images/small/TwilightForest/item.tfspawnegg/210.png deleted file mode 100644 index fd162f9245..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/210.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/211.png b/front/public/images/small/TwilightForest/item.tfspawnegg/211.png deleted file mode 100644 index f3791394af..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/211.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/212.png b/front/public/images/small/TwilightForest/item.tfspawnegg/212.png deleted file mode 100644 index e725fbf9d8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/212.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/213.png b/front/public/images/small/TwilightForest/item.tfspawnegg/213.png deleted file mode 100644 index e40372c75c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/213.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/214.png b/front/public/images/small/TwilightForest/item.tfspawnegg/214.png deleted file mode 100644 index eefa83c355..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/214.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/215.png b/front/public/images/small/TwilightForest/item.tfspawnegg/215.png deleted file mode 100644 index 382f58f8df..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/215.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/216.png b/front/public/images/small/TwilightForest/item.tfspawnegg/216.png deleted file mode 100644 index f569b22b11..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/216.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/217.png b/front/public/images/small/TwilightForest/item.tfspawnegg/217.png deleted file mode 100644 index 382f58f8df..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/217.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/218.png b/front/public/images/small/TwilightForest/item.tfspawnegg/218.png deleted file mode 100644 index 0155cd11be..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/218.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/219.png b/front/public/images/small/TwilightForest/item.tfspawnegg/219.png deleted file mode 100644 index 31dabbb30a..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/219.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/220.png b/front/public/images/small/TwilightForest/item.tfspawnegg/220.png deleted file mode 100644 index 3d8e671709..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/220.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/222.png b/front/public/images/small/TwilightForest/item.tfspawnegg/222.png deleted file mode 100644 index c645600d84..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/222.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/223.png b/front/public/images/small/TwilightForest/item.tfspawnegg/223.png deleted file mode 100644 index 9aad3aafab..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/223.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/224.png b/front/public/images/small/TwilightForest/item.tfspawnegg/224.png deleted file mode 100644 index afc71ecd6f..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/224.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/225.png b/front/public/images/small/TwilightForest/item.tfspawnegg/225.png deleted file mode 100644 index 3ffede41e2..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/225.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/226.png b/front/public/images/small/TwilightForest/item.tfspawnegg/226.png deleted file mode 100644 index 7e46eed7ff..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/226.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/227.png b/front/public/images/small/TwilightForest/item.tfspawnegg/227.png deleted file mode 100644 index 79b87189a0..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/227.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/228.png b/front/public/images/small/TwilightForest/item.tfspawnegg/228.png deleted file mode 100644 index 52396ab7b9..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/228.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/229.png b/front/public/images/small/TwilightForest/item.tfspawnegg/229.png deleted file mode 100644 index 82e8106b84..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/229.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/230.png b/front/public/images/small/TwilightForest/item.tfspawnegg/230.png deleted file mode 100644 index 346666993e..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/230.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/231.png b/front/public/images/small/TwilightForest/item.tfspawnegg/231.png deleted file mode 100644 index 20405b6d3e..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/231.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/232.png b/front/public/images/small/TwilightForest/item.tfspawnegg/232.png deleted file mode 100644 index eebb73a2fc..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/232.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/233.png b/front/public/images/small/TwilightForest/item.tfspawnegg/233.png deleted file mode 100644 index b41ce57195..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/233.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/234.png b/front/public/images/small/TwilightForest/item.tfspawnegg/234.png deleted file mode 100644 index 0999a67bed..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/234.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/235.png b/front/public/images/small/TwilightForest/item.tfspawnegg/235.png deleted file mode 100644 index fc37ad8fcb..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/235.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/236.png b/front/public/images/small/TwilightForest/item.tfspawnegg/236.png deleted file mode 100644 index 8513b33cb8..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/236.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tfspawnegg/237.png b/front/public/images/small/TwilightForest/item.tfspawnegg/237.png deleted file mode 100644 index 8755860957..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tfspawnegg/237.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.torchberries/0.png b/front/public/images/small/TwilightForest/item.torchberries/0.png deleted file mode 100644 index 7e3f882885..0000000000 Binary files a/front/public/images/small/TwilightForest/item.torchberries/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.towerKey/0.png b/front/public/images/small/TwilightForest/item.towerKey/0.png deleted file mode 100644 index 43fbbfeea5..0000000000 Binary files a/front/public/images/small/TwilightForest/item.towerKey/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.transformPowder/0.png b/front/public/images/small/TwilightForest/item.transformPowder/0.png deleted file mode 100644 index d4f4cd348b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.transformPowder/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.tripleBow/0.png b/front/public/images/small/TwilightForest/item.tripleBow/0.png deleted file mode 100644 index be0ae7014e..0000000000 Binary files a/front/public/images/small/TwilightForest/item.tripleBow/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.trophy/0.png b/front/public/images/small/TwilightForest/item.trophy/0.png deleted file mode 100644 index e287e7e952..0000000000 Binary files a/front/public/images/small/TwilightForest/item.trophy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.trophy/1.png b/front/public/images/small/TwilightForest/item.trophy/1.png deleted file mode 100644 index 3bb40bd234..0000000000 Binary files a/front/public/images/small/TwilightForest/item.trophy/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.trophy/2.png b/front/public/images/small/TwilightForest/item.trophy/2.png deleted file mode 100644 index ededc4b57c..0000000000 Binary files a/front/public/images/small/TwilightForest/item.trophy/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.trophy/3.png b/front/public/images/small/TwilightForest/item.trophy/3.png deleted file mode 100644 index 5adff6276d..0000000000 Binary files a/front/public/images/small/TwilightForest/item.trophy/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.trophy/4.png b/front/public/images/small/TwilightForest/item.trophy/4.png deleted file mode 100644 index c6548713bd..0000000000 Binary files a/front/public/images/small/TwilightForest/item.trophy/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.venisonCooked/0.png b/front/public/images/small/TwilightForest/item.venisonCooked/0.png deleted file mode 100644 index 21733ee06b..0000000000 Binary files a/front/public/images/small/TwilightForest/item.venisonCooked/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.venisonRaw/0.png b/front/public/images/small/TwilightForest/item.venisonRaw/0.png deleted file mode 100644 index 9a8839d2fb..0000000000 Binary files a/front/public/images/small/TwilightForest/item.venisonRaw/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.yetiBoots/0.png b/front/public/images/small/TwilightForest/item.yetiBoots/0.png deleted file mode 100644 index ae4b30e541..0000000000 Binary files a/front/public/images/small/TwilightForest/item.yetiBoots/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.yetiHelm/0.png b/front/public/images/small/TwilightForest/item.yetiHelm/0.png deleted file mode 100644 index a4eeaf8b48..0000000000 Binary files a/front/public/images/small/TwilightForest/item.yetiHelm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.yetiLegs/0.png b/front/public/images/small/TwilightForest/item.yetiLegs/0.png deleted file mode 100644 index e7b9dd7b3e..0000000000 Binary files a/front/public/images/small/TwilightForest/item.yetiLegs/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/item.yetiPlate/0.png b/front/public/images/small/TwilightForest/item.yetiPlate/0.png deleted file mode 100644 index e528d5cace..0000000000 Binary files a/front/public/images/small/TwilightForest/item.yetiPlate/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.ArcticFurBlock/0.png b/front/public/images/small/TwilightForest/tile.ArcticFurBlock/0.png deleted file mode 100644 index 857b8ef7df..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.ArcticFurBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.AuroraDoubleSlab/0.png b/front/public/images/small/TwilightForest/tile.AuroraDoubleSlab/0.png deleted file mode 100644 index 63e5470d65..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.AuroraDoubleSlab/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.AuroraPillar/0.png b/front/public/images/small/TwilightForest/tile.AuroraPillar/0.png deleted file mode 100644 index fe02cfed2f..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.AuroraPillar/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.AuroraSlab/0.png b/front/public/images/small/TwilightForest/tile.AuroraSlab/0.png deleted file mode 100644 index b28204b13a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.AuroraSlab/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CarminiteBlock/0.png b/front/public/images/small/TwilightForest/tile.CarminiteBlock/0.png deleted file mode 100644 index 9c861a769c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CarminiteBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleBrick/0.png b/front/public/images/small/TwilightForest/tile.CastleBrick/0.png deleted file mode 100644 index 45370c7cc6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleBrick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleBrick/1.png b/front/public/images/small/TwilightForest/tile.CastleBrick/1.png deleted file mode 100644 index fd61d4ece4..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleBrick/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleBrick/2.png b/front/public/images/small/TwilightForest/tile.CastleBrick/2.png deleted file mode 100644 index 3183e2fe06..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleBrick/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleBrick/3.png b/front/public/images/small/TwilightForest/tile.CastleBrick/3.png deleted file mode 100644 index ab436f8b49..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleBrick/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoor/0.png b/front/public/images/small/TwilightForest/tile.CastleDoor/0.png deleted file mode 100644 index 9c251c9482..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoor/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoor/1.png b/front/public/images/small/TwilightForest/tile.CastleDoor/1.png deleted file mode 100644 index 0e392697ba..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoor/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoor/2.png b/front/public/images/small/TwilightForest/tile.CastleDoor/2.png deleted file mode 100644 index 06c6757154..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoor/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoor/3.png b/front/public/images/small/TwilightForest/tile.CastleDoor/3.png deleted file mode 100644 index 084c1911d9..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoor/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/0.png b/front/public/images/small/TwilightForest/tile.CastleDoorVanished/0.png deleted file mode 100644 index 5faca939a4..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/1.png b/front/public/images/small/TwilightForest/tile.CastleDoorVanished/1.png deleted file mode 100644 index 0cd0c11f89..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/2.png b/front/public/images/small/TwilightForest/tile.CastleDoorVanished/2.png deleted file mode 100644 index 549f4f9622..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/3.png b/front/public/images/small/TwilightForest/tile.CastleDoorVanished/3.png deleted file mode 100644 index 26f20aae61..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleDoorVanished/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleMagic/0.png b/front/public/images/small/TwilightForest/tile.CastleMagic/0.png deleted file mode 100644 index 51d68f4459..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleMagic/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleMagic/1.png b/front/public/images/small/TwilightForest/tile.CastleMagic/1.png deleted file mode 100644 index b038438529..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleMagic/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleMagic/2.png b/front/public/images/small/TwilightForest/tile.CastleMagic/2.png deleted file mode 100644 index 66514391c7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleMagic/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CastleMagic/3.png b/front/public/images/small/TwilightForest/tile.CastleMagic/3.png deleted file mode 100644 index d872ea8500..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CastleMagic/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CinderFurnaceIdle/0.png b/front/public/images/small/TwilightForest/tile.CinderFurnaceIdle/0.png deleted file mode 100644 index 633c3527bb..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CinderFurnaceIdle/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CinderFurnaceLit/0.png b/front/public/images/small/TwilightForest/tile.CinderFurnaceLit/0.png deleted file mode 100644 index a464279025..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CinderFurnaceLit/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.CinderLog/0.png b/front/public/images/small/TwilightForest/tile.CinderLog/0.png deleted file mode 100644 index 25e4ad568c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.CinderLog/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.DarkLeaves/0.png b/front/public/images/small/TwilightForest/tile.DarkLeaves/0.png deleted file mode 100644 index 6af2e847f7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.DarkLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.FieryBlock/0.png b/front/public/images/small/TwilightForest/tile.FieryBlock/0.png deleted file mode 100644 index 79d18a196d..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.FieryBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.FluffyCloud/0.png b/front/public/images/small/TwilightForest/tile.FluffyCloud/0.png deleted file mode 100644 index 839a47fc0b..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.FluffyCloud/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.ForceField/0.png b/front/public/images/small/TwilightForest/tile.ForceField/0.png deleted file mode 100644 index 033ef619dd..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.ForceField/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.ForceField/1.png b/front/public/images/small/TwilightForest/tile.ForceField/1.png deleted file mode 100644 index 4a4e83aeae..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.ForceField/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.ForceField/2.png b/front/public/images/small/TwilightForest/tile.ForceField/2.png deleted file mode 100644 index 9931674b64..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.ForceField/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.ForceField/3.png b/front/public/images/small/TwilightForest/tile.ForceField/3.png deleted file mode 100644 index c588d097c3..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.ForceField/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.ForceField/4.png b/front/public/images/small/TwilightForest/tile.ForceField/4.png deleted file mode 100644 index 341557a03d..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.ForceField/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.GiantCobble/0.png b/front/public/images/small/TwilightForest/tile.GiantCobble/0.png deleted file mode 100644 index 929c2885f0..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.GiantCobble/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.GiantLeaves/0.png b/front/public/images/small/TwilightForest/tile.GiantLeaves/0.png deleted file mode 100644 index c0cd2d8ef7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.GiantLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.GiantLog/0.png b/front/public/images/small/TwilightForest/tile.GiantLog/0.png deleted file mode 100644 index b7b7d4094a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.GiantLog/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.GiantObsidian/0.png b/front/public/images/small/TwilightForest/tile.GiantObsidian/0.png deleted file mode 100644 index 65057413d0..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.GiantObsidian/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.HugeGloomBlock/0.png b/front/public/images/small/TwilightForest/tile.HugeGloomBlock/0.png deleted file mode 100644 index d8dcd2a0a7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.HugeGloomBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.HugeLilyPad/0.png b/front/public/images/small/TwilightForest/tile.HugeLilyPad/0.png deleted file mode 100644 index 462b846678..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.HugeLilyPad/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.HugeStalk/0.png b/front/public/images/small/TwilightForest/tile.HugeStalk/0.png deleted file mode 100644 index 298fec0321..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.HugeStalk/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.HugeWaterLily/0.png b/front/public/images/small/TwilightForest/tile.HugeWaterLily/0.png deleted file mode 100644 index e634a637f4..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.HugeWaterLily/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.IronwoodBlock/0.png b/front/public/images/small/TwilightForest/tile.IronwoodBlock/0.png deleted file mode 100644 index 815bbd21eb..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.IronwoodBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.KnightmetalBlock/0.png b/front/public/images/small/TwilightForest/tile.KnightmetalBlock/0.png deleted file mode 100644 index 050061a3cf..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.KnightmetalBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.Slider/0.png b/front/public/images/small/TwilightForest/tile.Slider/0.png deleted file mode 100644 index d64a19fe6e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.Slider/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.Slider/1.png b/front/public/images/small/TwilightForest/tile.Slider/1.png deleted file mode 100644 index d64a19fe6e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.Slider/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.Slider/2.png b/front/public/images/small/TwilightForest/tile.Slider/2.png deleted file mode 100644 index d64a19fe6e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.Slider/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.Slider/3.png b/front/public/images/small/TwilightForest/tile.Slider/3.png deleted file mode 100644 index d64a19fe6e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.Slider/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.SteeleafBlock/0.png b/front/public/images/small/TwilightForest/tile.SteeleafBlock/0.png deleted file mode 100644 index 6ed92d3103..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.SteeleafBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFAuroraBrick/0.png b/front/public/images/small/TwilightForest/tile.TFAuroraBrick/0.png deleted file mode 100644 index 1fe553964e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFAuroraBrick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFBossSpawner/0.png b/front/public/images/small/TwilightForest/tile.TFBossSpawner/0.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFBossSpawner/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFBossSpawner/1.png b/front/public/images/small/TwilightForest/tile.TFBossSpawner/1.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFBossSpawner/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFBossSpawner/2.png b/front/public/images/small/TwilightForest/tile.TFBossSpawner/2.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFBossSpawner/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFBossSpawner/3.png b/front/public/images/small/TwilightForest/tile.TFBossSpawner/3.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFBossSpawner/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFBossSpawner/4.png b/front/public/images/small/TwilightForest/tile.TFBossSpawner/4.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFBossSpawner/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFBossSpawner/5.png b/front/public/images/small/TwilightForest/tile.TFBossSpawner/5.png deleted file mode 100644 index 7da4460807..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFBossSpawner/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFBurntThorns/0.png b/front/public/images/small/TwilightForest/tile.TFBurntThorns/0.png deleted file mode 100644 index 680cd97f1e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFBurntThorns/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFCicada/0.png b/front/public/images/small/TwilightForest/tile.TFCicada/0.png deleted file mode 100644 index 55b4464019..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFCicada/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDeadrock/0.png b/front/public/images/small/TwilightForest/tile.TFDeadrock/0.png deleted file mode 100644 index 6c51d2fdf4..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDeadrock/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDeadrock/1.png b/front/public/images/small/TwilightForest/tile.TFDeadrock/1.png deleted file mode 100644 index 7c5c1761ca..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDeadrock/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDeadrock/2.png b/front/public/images/small/TwilightForest/tile.TFDeadrock/2.png deleted file mode 100644 index 45171f723e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDeadrock/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorCanopy/0.png b/front/public/images/small/TwilightForest/tile.TFDoorCanopy/0.png deleted file mode 100644 index 5bbac39867..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorCanopy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorDarkwood/0.png b/front/public/images/small/TwilightForest/tile.TFDoorDarkwood/0.png deleted file mode 100644 index 3e8b469b48..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorDarkwood/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorMangrove/0.png b/front/public/images/small/TwilightForest/tile.TFDoorMangrove/0.png deleted file mode 100644 index 4a6563e696..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorMangrove/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorMine/0.png b/front/public/images/small/TwilightForest/tile.TFDoorMine/0.png deleted file mode 100644 index 73c30e8bb3..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorMine/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorSort/0.png b/front/public/images/small/TwilightForest/tile.TFDoorSort/0.png deleted file mode 100644 index e48182a6a3..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorSort/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorTime/0.png b/front/public/images/small/TwilightForest/tile.TFDoorTime/0.png deleted file mode 100644 index 953ccd5093..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorTime/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorTrans/0.png b/front/public/images/small/TwilightForest/tile.TFDoorTrans/0.png deleted file mode 100644 index 9307b805a0..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorTrans/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFDoorTwilight/0.png b/front/public/images/small/TwilightForest/tile.TFDoorTwilight/0.png deleted file mode 100644 index 0b64c3a817..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFDoorTwilight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFExperiment115/0.png b/front/public/images/small/TwilightForest/tile.TFExperiment115/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFExperiment115/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFFireJet/0.png b/front/public/images/small/TwilightForest/tile.TFFireJet/0.png deleted file mode 100644 index 2f215946d7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFFireJet/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFFireJet/1.png b/front/public/images/small/TwilightForest/tile.TFFireJet/1.png deleted file mode 100644 index 90dd1c3d23..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFFireJet/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFFireJet/11.png b/front/public/images/small/TwilightForest/tile.TFFireJet/11.png deleted file mode 100644 index 0ac47da68b..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFFireJet/11.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFFireJet/8.png b/front/public/images/small/TwilightForest/tile.TFFireJet/8.png deleted file mode 100644 index 2f215946d7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFFireJet/8.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFFirefly/0.png b/front/public/images/small/TwilightForest/tile.TFFirefly/0.png deleted file mode 100644 index ffdd3612e3..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFFirefly/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFFireflyJar/0.png b/front/public/images/small/TwilightForest/tile.TFFireflyJar/0.png deleted file mode 100644 index 1724b5a08d..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFFireflyJar/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFHedge/0.png b/front/public/images/small/TwilightForest/tile.TFHedge/0.png deleted file mode 100644 index 6f30b922fd..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFHedge/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLeaves/0.png b/front/public/images/small/TwilightForest/tile.TFLeaves/0.png deleted file mode 100644 index edff4f60a6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLeaves/1.png b/front/public/images/small/TwilightForest/tile.TFLeaves/1.png deleted file mode 100644 index 52aa007744..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLeaves/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLeaves/2.png b/front/public/images/small/TwilightForest/tile.TFLeaves/2.png deleted file mode 100644 index 0597d79f17..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLeaves/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLeaves/3.png b/front/public/images/small/TwilightForest/tile.TFLeaves/3.png deleted file mode 100644 index edff4f60a6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLeaves/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLeaves3/0.png b/front/public/images/small/TwilightForest/tile.TFLeaves3/0.png deleted file mode 100644 index edff4f60a6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLeaves3/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLeaves3/1.png b/front/public/images/small/TwilightForest/tile.TFLeaves3/1.png deleted file mode 100644 index 41bb9f870f..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLeaves3/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLog/0.png b/front/public/images/small/TwilightForest/tile.TFLog/0.png deleted file mode 100644 index 3260357550..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLog/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLog/1.png b/front/public/images/small/TwilightForest/tile.TFLog/1.png deleted file mode 100644 index ff5186ceb1..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLog/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLog/2.png b/front/public/images/small/TwilightForest/tile.TFLog/2.png deleted file mode 100644 index 3bb9555a94..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLog/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFLog/3.png b/front/public/images/small/TwilightForest/tile.TFLog/3.png deleted file mode 100644 index fb3dd49dcc..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFLog/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/0.png b/front/public/images/small/TwilightForest/tile.TFMagicLeaves/0.png deleted file mode 100644 index dd4e34bda0..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/1.png b/front/public/images/small/TwilightForest/tile.TFMagicLeaves/1.png deleted file mode 100644 index 964362036a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/2.png b/front/public/images/small/TwilightForest/tile.TFMagicLeaves/2.png deleted file mode 100644 index 5016442109..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/3.png b/front/public/images/small/TwilightForest/tile.TFMagicLeaves/3.png deleted file mode 100644 index f2bc2c5233..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLeaves/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLog/0.png b/front/public/images/small/TwilightForest/tile.TFMagicLog/0.png deleted file mode 100644 index e325bfbd52..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLog/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLog/1.png b/front/public/images/small/TwilightForest/tile.TFMagicLog/1.png deleted file mode 100644 index 627edd88fd..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLog/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLog/2.png b/front/public/images/small/TwilightForest/tile.TFMagicLog/2.png deleted file mode 100644 index 7c3da70a44..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLog/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLog/3.png b/front/public/images/small/TwilightForest/tile.TFMagicLog/3.png deleted file mode 100644 index 6c118069b3..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLog/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/0.png b/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/0.png deleted file mode 100644 index 734daea798..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/1.png b/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/1.png deleted file mode 100644 index 44e2af419d..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/2.png b/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/2.png deleted file mode 100644 index 9a57215010..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/3.png b/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/3.png deleted file mode 100644 index be928da401..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMagicLogSpecial/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/0.png b/front/public/images/small/TwilightForest/tile.TFMazestone/0.png deleted file mode 100644 index 16664f34be..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/1.png b/front/public/images/small/TwilightForest/tile.TFMazestone/1.png deleted file mode 100644 index 4b5b22ad1e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/2.png b/front/public/images/small/TwilightForest/tile.TFMazestone/2.png deleted file mode 100644 index e47905d37c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/3.png b/front/public/images/small/TwilightForest/tile.TFMazestone/3.png deleted file mode 100644 index 6ec262f46e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/4.png b/front/public/images/small/TwilightForest/tile.TFMazestone/4.png deleted file mode 100644 index b9037b39cc..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/5.png b/front/public/images/small/TwilightForest/tile.TFMazestone/5.png deleted file mode 100644 index 476e063878..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/6.png b/front/public/images/small/TwilightForest/tile.TFMazestone/6.png deleted file mode 100644 index 3be8803f27..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMazestone/7.png b/front/public/images/small/TwilightForest/tile.TFMazestone/7.png deleted file mode 100644 index 05af0c7ad9..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMazestone/7.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFMoonworm/0.png b/front/public/images/small/TwilightForest/tile.TFMoonworm/0.png deleted file mode 100644 index e46d775798..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFMoonworm/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/0.png b/front/public/images/small/TwilightForest/tile.TFNagastone/0.png deleted file mode 100644 index c09032e4c4..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/1.png b/front/public/images/small/TwilightForest/tile.TFNagastone/1.png deleted file mode 100644 index 6ab1d1b586..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/10.png b/front/public/images/small/TwilightForest/tile.TFNagastone/10.png deleted file mode 100644 index 86d74f5683..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/10.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/11.png b/front/public/images/small/TwilightForest/tile.TFNagastone/11.png deleted file mode 100644 index ce05525fc6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/11.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/12.png b/front/public/images/small/TwilightForest/tile.TFNagastone/12.png deleted file mode 100644 index 8e1d0f7165..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/12.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/2.png b/front/public/images/small/TwilightForest/tile.TFNagastone/2.png deleted file mode 100644 index 811317bbca..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/3.png b/front/public/images/small/TwilightForest/tile.TFNagastone/3.png deleted file mode 100644 index 1c201497e0..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/5.png b/front/public/images/small/TwilightForest/tile.TFNagastone/5.png deleted file mode 100644 index b984ed8554..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/6.png b/front/public/images/small/TwilightForest/tile.TFNagastone/6.png deleted file mode 100644 index d3b734bcaa..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/7.png b/front/public/images/small/TwilightForest/tile.TFNagastone/7.png deleted file mode 100644 index 887c0ea130..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/7.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastone/9.png b/front/public/images/small/TwilightForest/tile.TFNagastone/9.png deleted file mode 100644 index 9cc50b34cf..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastone/9.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneBody/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneBody/0.png deleted file mode 100644 index 579b069bc2..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneBody/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneEtched/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneEtched/0.png deleted file mode 100644 index 2b0934c406..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneEtched/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneEtchedMossy/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneEtchedMossy/0.png deleted file mode 100644 index b04ca3eb3c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneEtchedMossy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneEtchedWeathered/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneEtchedWeathered/0.png deleted file mode 100644 index 0c94edc7ff..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneEtchedWeathered/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneHead/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneHead/0.png deleted file mode 100644 index 9a60bf1f56..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneHead/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastonePillar/0.png b/front/public/images/small/TwilightForest/tile.TFNagastonePillar/0.png deleted file mode 100644 index 97b8d23c39..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastonePillar/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastonePillarMossy/0.png b/front/public/images/small/TwilightForest/tile.TFNagastonePillarMossy/0.png deleted file mode 100644 index 01b0c7114a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastonePillarMossy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastonePillarWeathered/0.png b/front/public/images/small/TwilightForest/tile.TFNagastonePillarWeathered/0.png deleted file mode 100644 index b7d8fdccd6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastonePillarWeathered/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsLeft/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneStairsLeft/0.png deleted file mode 100644 index e1f791035a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsLeft/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsMossyLeft/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneStairsMossyLeft/0.png deleted file mode 100644 index ce0a87bbc3..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsMossyLeft/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsMossyRight/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneStairsMossyRight/0.png deleted file mode 100644 index dd9187ffde..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsMossyRight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsRight/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneStairsRight/0.png deleted file mode 100644 index 7c49f91195..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsRight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsWeatheredLeft/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneStairsWeatheredLeft/0.png deleted file mode 100644 index bc9fd09fb1..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsWeatheredLeft/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsWeatheredRight/0.png b/front/public/images/small/TwilightForest/tile.TFNagastoneStairsWeatheredRight/0.png deleted file mode 100644 index 5fb4b2f583..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFNagastoneStairsWeatheredRight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/0.png b/front/public/images/small/TwilightForest/tile.TFPlanks/0.png deleted file mode 100644 index e6f1de474b..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/1.png b/front/public/images/small/TwilightForest/tile.TFPlanks/1.png deleted file mode 100644 index d27acb70b9..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/2.png b/front/public/images/small/TwilightForest/tile.TFPlanks/2.png deleted file mode 100644 index d936c0553a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/3.png b/front/public/images/small/TwilightForest/tile.TFPlanks/3.png deleted file mode 100644 index 82e2ab4e82..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/4.png b/front/public/images/small/TwilightForest/tile.TFPlanks/4.png deleted file mode 100644 index 5f91b9924e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/5.png b/front/public/images/small/TwilightForest/tile.TFPlanks/5.png deleted file mode 100644 index 32eecd1dfc..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/6.png b/front/public/images/small/TwilightForest/tile.TFPlanks/6.png deleted file mode 100644 index da321d54a7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlanks/7.png b/front/public/images/small/TwilightForest/tile.TFPlanks/7.png deleted file mode 100644 index b061b6dfa8..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlanks/7.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/10.png b/front/public/images/small/TwilightForest/tile.TFPlant/10.png deleted file mode 100644 index ae81c401fd..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/10.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/11.png b/front/public/images/small/TwilightForest/tile.TFPlant/11.png deleted file mode 100644 index 0f014bbd50..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/11.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/13.png b/front/public/images/small/TwilightForest/tile.TFPlant/13.png deleted file mode 100644 index aa4db25a31..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/13.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/14.png b/front/public/images/small/TwilightForest/tile.TFPlant/14.png deleted file mode 100644 index 8dd954644e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/14.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/3.png b/front/public/images/small/TwilightForest/tile.TFPlant/3.png deleted file mode 100644 index 874ca13988..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/4.png b/front/public/images/small/TwilightForest/tile.TFPlant/4.png deleted file mode 100644 index f441d54a0f..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/8.png b/front/public/images/small/TwilightForest/tile.TFPlant/8.png deleted file mode 100644 index 942d2ad716..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/8.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPlant/9.png b/front/public/images/small/TwilightForest/tile.TFPlant/9.png deleted file mode 100644 index e262b45afb..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPlant/9.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFPortal/0.png b/front/public/images/small/TwilightForest/tile.TFPortal/0.png deleted file mode 100644 index 83595c1f7c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFPortal/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFRoots/0.png b/front/public/images/small/TwilightForest/tile.TFRoots/0.png deleted file mode 100644 index 0a229567a6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFRoots/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFRoots/1.png b/front/public/images/small/TwilightForest/tile.TFRoots/1.png deleted file mode 100644 index dd394da21e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFRoots/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/0.png b/front/public/images/small/TwilightForest/tile.TFSapling/0.png deleted file mode 100644 index 2653de3e57..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/1.png b/front/public/images/small/TwilightForest/tile.TFSapling/1.png deleted file mode 100644 index d38553d40a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/2.png b/front/public/images/small/TwilightForest/tile.TFSapling/2.png deleted file mode 100644 index 4f285f6ed5..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/3.png b/front/public/images/small/TwilightForest/tile.TFSapling/3.png deleted file mode 100644 index 671d25b819..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/4.png b/front/public/images/small/TwilightForest/tile.TFSapling/4.png deleted file mode 100644 index e5c7f0f56c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/5.png b/front/public/images/small/TwilightForest/tile.TFSapling/5.png deleted file mode 100644 index 283e5c06df..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/6.png b/front/public/images/small/TwilightForest/tile.TFSapling/6.png deleted file mode 100644 index 1c7d57d7fb..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/7.png b/front/public/images/small/TwilightForest/tile.TFSapling/7.png deleted file mode 100644 index 16be907297..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/7.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/8.png b/front/public/images/small/TwilightForest/tile.TFSapling/8.png deleted file mode 100644 index 97a5ec9d14..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/8.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSapling/9.png b/front/public/images/small/TwilightForest/tile.TFSapling/9.png deleted file mode 100644 index 9b86c39969..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSapling/9.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFShield/0.png b/front/public/images/small/TwilightForest/tile.TFShield/0.png deleted file mode 100644 index ef0b6ac80a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFShield/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFSpiralBricks/0.png b/front/public/images/small/TwilightForest/tile.TFSpiralBricks/0.png deleted file mode 100644 index 55eaa643d7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFSpiralBricks/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFThornRose/0.png b/front/public/images/small/TwilightForest/tile.TFThornRose/0.png deleted file mode 100644 index b851e05a04..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFThornRose/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFThorns/0.png b/front/public/images/small/TwilightForest/tile.TFThorns/0.png deleted file mode 100644 index 874e9b1220..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFThorns/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFThorns/1.png b/front/public/images/small/TwilightForest/tile.TFThorns/1.png deleted file mode 100644 index 40c3e486f5..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFThorns/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/0.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/0.png deleted file mode 100644 index 195f834f07..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/10.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/10.png deleted file mode 100644 index 4cccdb2cae..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/10.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/12.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/12.png deleted file mode 100644 index 8f22eb0b78..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/12.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/2.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/2.png deleted file mode 100644 index 6faa2b6835..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/4.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/4.png deleted file mode 100644 index cfdc03fe4f..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/5.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/5.png deleted file mode 100644 index dff35e8c24..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/6.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/6.png deleted file mode 100644 index 77832627ff..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerDevice/9.png b/front/public/images/small/TwilightForest/tile.TFTowerDevice/9.png deleted file mode 100644 index e04e16e51b..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerDevice/9.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerStone/0.png b/front/public/images/small/TwilightForest/tile.TFTowerStone/0.png deleted file mode 100644 index 2c92b5367c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerStone/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerStone/1.png b/front/public/images/small/TwilightForest/tile.TFTowerStone/1.png deleted file mode 100644 index fe592536f8..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerStone/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerStone/2.png b/front/public/images/small/TwilightForest/tile.TFTowerStone/2.png deleted file mode 100644 index c8501085c2..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerStone/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerStone/3.png b/front/public/images/small/TwilightForest/tile.TFTowerStone/3.png deleted file mode 100644 index 6d180561c4..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerStone/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerStone/4.png b/front/public/images/small/TwilightForest/tile.TFTowerStone/4.png deleted file mode 100644 index 75afec5f55..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerStone/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/0.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/0.png deleted file mode 100644 index 30acea095e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/1.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/1.png deleted file mode 100644 index d48dcbb28f..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/2.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/2.png deleted file mode 100644 index 73ffb765e1..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/3.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/3.png deleted file mode 100644 index 0f315b8bde..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/4.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/4.png deleted file mode 100644 index 7d7d16f8a7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/5.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/5.png deleted file mode 100644 index 1c967464ba..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/6.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/6.png deleted file mode 100644 index 6b481c1f1b..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/7.png b/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/7.png deleted file mode 100644 index 88ed47a0f5..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTowerTranslucent/7.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorCanopy/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorCanopy/0.png deleted file mode 100644 index d83974f97a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorCanopy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorDarkwood/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorDarkwood/0.png deleted file mode 100644 index ea0db73156..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorDarkwood/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorMangrove/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorMangrove/0.png deleted file mode 100644 index 1110e1bc29..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorMangrove/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorMine/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorMine/0.png deleted file mode 100644 index 514cad7b8c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorMine/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorSort/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorSort/0.png deleted file mode 100644 index bd021782b8..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorSort/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorTime/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorTime/0.png deleted file mode 100644 index a7fca6de10..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorTime/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorTrans/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorTrans/0.png deleted file mode 100644 index dc0b358e7a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorTrans/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrapDoorTwilight/0.png b/front/public/images/small/TwilightForest/tile.TFTrapDoorTwilight/0.png deleted file mode 100644 index 916b7b8a18..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrapDoorTwilight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrophy/0.png b/front/public/images/small/TwilightForest/tile.TFTrophy/0.png deleted file mode 100644 index 3ec22941ca..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrophy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrophyPedestal/0.png b/front/public/images/small/TwilightForest/tile.TFTrophyPedestal/0.png deleted file mode 100644 index ce02a86c9d..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrophyPedestal/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFTrophyPedestal/15.png b/front/public/images/small/TwilightForest/tile.TFTrophyPedestal/15.png deleted file mode 100644 index 6340bb203a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFTrophyPedestal/15.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFUncraftingTable/0.png b/front/public/images/small/TwilightForest/tile.TFUncraftingTable/0.png deleted file mode 100644 index d0c41edeb6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFUncraftingTable/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFUnderBrick/0.png b/front/public/images/small/TwilightForest/tile.TFUnderBrick/0.png deleted file mode 100644 index 28e9fcef0c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFUnderBrick/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFUnderBrick/1.png b/front/public/images/small/TwilightForest/tile.TFUnderBrick/1.png deleted file mode 100644 index 2026a08e2a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFUnderBrick/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFUnderBrick/2.png b/front/public/images/small/TwilightForest/tile.TFUnderBrick/2.png deleted file mode 100644 index 1e1284cfda..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFUnderBrick/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/0.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/0.png deleted file mode 100644 index 78bf1390e6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/1.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/1.png deleted file mode 100644 index b0e4a198bf..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/2.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/2.png deleted file mode 100644 index df74a0ca3c..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/3.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/3.png deleted file mode 100644 index 836167a781..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/4.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/4.png deleted file mode 100644 index 26b53870c6..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/5.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/5.png deleted file mode 100644 index 88179eeabd..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/6.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/6.png deleted file mode 100644 index 1e85557298..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlab/7.png b/front/public/images/small/TwilightForest/tile.TFWoodSlab/7.png deleted file mode 100644 index 8dedb403dc..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlab/7.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/0.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/0.png deleted file mode 100644 index e6f1de474b..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/1.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/1.png deleted file mode 100644 index d27acb70b9..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/1.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/10.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/10.png deleted file mode 100644 index d936c0553a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/10.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/11.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/11.png deleted file mode 100644 index 82e2ab4e82..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/11.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/12.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/12.png deleted file mode 100644 index 5f91b9924e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/12.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/13.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/13.png deleted file mode 100644 index 32eecd1dfc..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/13.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/14.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/14.png deleted file mode 100644 index da321d54a7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/14.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/15.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/15.png deleted file mode 100644 index b061b6dfa8..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/15.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/2.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/2.png deleted file mode 100644 index d936c0553a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/2.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/3.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/3.png deleted file mode 100644 index 82e2ab4e82..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/3.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/4.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/4.png deleted file mode 100644 index 5f91b9924e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/4.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/5.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/5.png deleted file mode 100644 index 32eecd1dfc..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/5.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/6.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/6.png deleted file mode 100644 index da321d54a7..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/6.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/7.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/7.png deleted file mode 100644 index b061b6dfa8..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/7.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/9.png b/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/9.png deleted file mode 100644 index d27acb70b9..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodSlabDouble/9.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsCanopy/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsCanopy/0.png deleted file mode 100644 index 07b1809b2b..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsCanopy/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsDarkwood/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsDarkwood/0.png deleted file mode 100644 index 5f928ff2ee..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsDarkwood/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsMangrove/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsMangrove/0.png deleted file mode 100644 index 0239636322..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsMangrove/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsMine/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsMine/0.png deleted file mode 100644 index 42f7056156..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsMine/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsSort/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsSort/0.png deleted file mode 100644 index 6eac046e02..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsSort/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsTime/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsTime/0.png deleted file mode 100644 index 16ba1ca733..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsTime/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsTrans/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsTrans/0.png deleted file mode 100644 index b762573e5a..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsTrans/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TFWoodStairsTwilight/0.png b/front/public/images/small/TwilightForest/tile.TFWoodStairsTwilight/0.png deleted file mode 100644 index 61c319c75d..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TFWoodStairsTwilight/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TrollBer/0.png b/front/public/images/small/TwilightForest/tile.TrollBer/0.png deleted file mode 100644 index 44548be49e..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TrollBer/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TrollSteinn/0.png b/front/public/images/small/TwilightForest/tile.TrollSteinn/0.png deleted file mode 100644 index 5bc2af54c2..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TrollSteinn/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.TrollVidr/0.png b/front/public/images/small/TwilightForest/tile.TrollVidr/0.png deleted file mode 100644 index fd47a39320..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.TrollVidr/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.UberousSoil/0.png b/front/public/images/small/TwilightForest/tile.UberousSoil/0.png deleted file mode 100644 index 3e3d8c8eee..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.UberousSoil/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.UnripeTrollBer/0.png b/front/public/images/small/TwilightForest/tile.UnripeTrollBer/0.png deleted file mode 100644 index ad4c3c1448..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.UnripeTrollBer/0.png and /dev/null differ diff --git a/front/public/images/small/TwilightForest/tile.WispyCloud/0.png b/front/public/images/small/TwilightForest/tile.WispyCloud/0.png deleted file mode 100644 index f5ce2eaa64..0000000000 Binary files a/front/public/images/small/TwilightForest/tile.WispyCloud/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/BlockPowerChair/0.png b/front/public/images/small/TwistSpaceTechnology/BlockPowerChair/0.png deleted file mode 100644 index 557d3648a1..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/BlockPowerChair/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/HatchUpdateTool/0.png b/front/public/images/small/TwistSpaceTechnology/HatchUpdateTool/0.png deleted file mode 100644 index 1d23128d86..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/HatchUpdateTool/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlock01/0.png b/front/public/images/small/TwistSpaceTechnology/MetaBlock01/0.png deleted file mode 100644 index e3e3d164c1..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlock01/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/0.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/0.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/1.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/1.png deleted file mode 100644 index 5dcca97349..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/1.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/10.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/10.png deleted file mode 100644 index 465c35d31a..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/10.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/11.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/11.png deleted file mode 100644 index 75b33109fc..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/11.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/12.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/12.png deleted file mode 100644 index 624de6a1f2..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/12.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/2.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/2.png deleted file mode 100644 index 0f43cc80b3..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/2.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/3.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/3.png deleted file mode 100644 index d8cdc6c00b..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/3.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/4.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/4.png deleted file mode 100644 index fae87f4e91..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/4.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/5.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/5.png deleted file mode 100644 index 3ce4f6e599..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/5.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/6.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/6.png deleted file mode 100644 index ddbb16460c..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/6.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/7.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/7.png deleted file mode 100644 index f1a336611a..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/7.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/8.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/8.png deleted file mode 100644 index d14026420d..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/8.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/9.png b/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/9.png deleted file mode 100644 index 9e35714df3..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaBlockCasing01/9.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/0.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/0.png deleted file mode 100644 index e7b385bdf1..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/1.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/1.png deleted file mode 100644 index 53b78c8da6..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/1.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/10.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/10.png deleted file mode 100644 index 9d47b1d70e..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/10.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/11.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/11.png deleted file mode 100644 index c1f01ab42e..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/11.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/12.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/12.png deleted file mode 100644 index ed72cd3ae2..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/12.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/13.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/13.png deleted file mode 100644 index 4802f840f3..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/13.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/14.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/14.png deleted file mode 100644 index d3060fa590..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/14.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/15.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/15.png deleted file mode 100644 index ad1f76fa44..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/15.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/16.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/16.png deleted file mode 100644 index f00ba1343f..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/16.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/17.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/17.png deleted file mode 100644 index 808ae83c60..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/17.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/18.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/18.png deleted file mode 100644 index ebc6f5e9a9..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/18.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/19.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/19.png deleted file mode 100644 index 76d658defa..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/19.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/2.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/2.png deleted file mode 100644 index a07e160cf7..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/2.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/20.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/20.png deleted file mode 100644 index 0b7ec0ae32..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/20.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/21.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/21.png deleted file mode 100644 index 5716902dc4..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/21.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/22.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/22.png deleted file mode 100644 index c9a18e6b67..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/22.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/23.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/23.png deleted file mode 100644 index 63a2e96dde..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/23.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/24.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/24.png deleted file mode 100644 index bd354cb85c..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/24.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/25.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/25.png deleted file mode 100644 index ebc7131e09..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/25.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/26.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/26.png deleted file mode 100644 index 2206de66ce..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/26.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/27.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/27.png deleted file mode 100644 index 790ba5605f..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/27.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/28.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/28.png deleted file mode 100644 index 271e95492d..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/28.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/29.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/29.png deleted file mode 100644 index 4639bc2a09..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/29.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/3.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/3.png deleted file mode 100644 index 86601cb833..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/3.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/30.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/30.png deleted file mode 100644 index 18eae8a70b..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/30.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/31.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/31.png deleted file mode 100644 index d432e45537..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/31.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/32.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/32.png deleted file mode 100644 index b8fb857716..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/32.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/33.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/33.png deleted file mode 100644 index 859b3aed85..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/33.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/34.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/34.png deleted file mode 100644 index 059544682f..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/34.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/35.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/35.png deleted file mode 100644 index 626b020a91..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/35.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/4.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/4.png deleted file mode 100644 index 31c8d4bf57..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/4.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/5.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/5.png deleted file mode 100644 index d7ae9005d7..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/5.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/6.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/6.png deleted file mode 100644 index 10537715d2..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/6.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/7.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/7.png deleted file mode 100644 index e424f9bf6c..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/7.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/8.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/8.png deleted file mode 100644 index 490196214a..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/8.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItem01/9.png b/front/public/images/small/TwistSpaceTechnology/MetaItem01/9.png deleted file mode 100644 index ec26529fc6..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItem01/9.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/0.png b/front/public/images/small/TwistSpaceTechnology/MetaItemRune/0.png deleted file mode 100644 index d8a0f91acf..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/1.png b/front/public/images/small/TwistSpaceTechnology/MetaItemRune/1.png deleted file mode 100644 index d8a0f91acf..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/1.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/2.png b/front/public/images/small/TwistSpaceTechnology/MetaItemRune/2.png deleted file mode 100644 index d8a0f91acf..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/2.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/3.png b/front/public/images/small/TwistSpaceTechnology/MetaItemRune/3.png deleted file mode 100644 index d8a0f91acf..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/MetaItemRune/3.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/0.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/0.png deleted file mode 100644 index e3e3d164c1..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/1.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/1.png deleted file mode 100644 index 91116794b6..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/1.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/10.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/10.png deleted file mode 100644 index af443a0214..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/10.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/11.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/11.png deleted file mode 100644 index 53a5522a95..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/11.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/12.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/12.png deleted file mode 100644 index fcd718d136..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/12.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/13.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/13.png deleted file mode 100644 index 0f1962789b..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/13.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/2.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/2.png deleted file mode 100644 index 7cdfb14c0f..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/2.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/3.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/3.png deleted file mode 100644 index 757713a2dc..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/3.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/4.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/4.png deleted file mode 100644 index 8fd270e592..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/4.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/5.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/5.png deleted file mode 100644 index 53a46cfbaa..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/5.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/6.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/6.png deleted file mode 100644 index 0044a049af..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/6.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/7.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/7.png deleted file mode 100644 index 936d145185..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/7.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/8.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/8.png deleted file mode 100644 index 070b335412..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/8.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/9.png b/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/9.png deleted file mode 100644 index 47bf9908dc..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PhotonControllerUpgrades/9.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/PowerChair/0.png b/front/public/images/small/TwistSpaceTechnology/PowerChair/0.png deleted file mode 100644 index 34bc96ceb6..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/PowerChair/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/ProofOfHeroes/0.png b/front/public/images/small/TwistSpaceTechnology/ProofOfHeroes/0.png deleted file mode 100644 index 39a8352da2..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/ProofOfHeroes/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceStationAntiGravityBlock/0.png b/front/public/images/small/TwistSpaceTechnology/SpaceStationAntiGravityBlock/0.png deleted file mode 100644 index 27ef917eab..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceStationAntiGravityBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceStationStructureBlock/0.png b/front/public/images/small/TwistSpaceTechnology/SpaceStationStructureBlock/0.png deleted file mode 100644 index 75514210cb..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceStationStructureBlock/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/0.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/0.png deleted file mode 100644 index 29b7e4a914..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/1.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/1.png deleted file mode 100644 index ed6e1f4302..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/1.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/2.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/2.png deleted file mode 100644 index 8b031255c3..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeConstraintor/2.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/0.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/0.png deleted file mode 100644 index a07f5b77bc..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/1.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/1.png deleted file mode 100644 index 8d97781cc9..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/1.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/2.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/2.png deleted file mode 100644 index b6c6ddd296..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeMerger/2.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/0.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/0.png deleted file mode 100644 index 63869dc267..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/1.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/1.png deleted file mode 100644 index d817f1c74d..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/1.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/2.png b/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/2.png deleted file mode 100644 index 297756f999..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/SpaceTimeOscillator/2.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/item.MultiStructuresLinkTool/0.png b/front/public/images/small/TwistSpaceTechnology/item.MultiStructuresLinkTool/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/item.MultiStructuresLinkTool/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/item.Yamato/0.png b/front/public/images/small/TwistSpaceTechnology/item.Yamato/0.png deleted file mode 100644 index 0a37f189cd..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/item.Yamato/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/nuclear/0.png b/front/public/images/small/TwistSpaceTechnology/nuclear/0.png deleted file mode 100644 index ba55d61507..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/nuclear/0.png and /dev/null differ diff --git a/front/public/images/small/TwistSpaceTechnology/tile.tst.star/0.png b/front/public/images/small/TwistSpaceTechnology/tile.tst.star/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/TwistSpaceTechnology/tile.tst.star/0.png and /dev/null differ diff --git a/front/public/images/small/WarpTheory/blockVanish/0.png b/front/public/images/small/WarpTheory/blockVanish/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/WarpTheory/blockVanish/0.png and /dev/null differ diff --git a/front/public/images/small/WarpTheory/item.warptheory.amulet/0.png b/front/public/images/small/WarpTheory/item.warptheory.amulet/0.png deleted file mode 100644 index 44e5115f63..0000000000 Binary files a/front/public/images/small/WarpTheory/item.warptheory.amulet/0.png and /dev/null differ diff --git a/front/public/images/small/WarpTheory/item.warptheory.cleanser/0.png b/front/public/images/small/WarpTheory/item.warptheory.cleanser/0.png deleted file mode 100644 index c14edf6339..0000000000 Binary files a/front/public/images/small/WarpTheory/item.warptheory.cleanser/0.png and /dev/null differ diff --git a/front/public/images/small/WarpTheory/item.warptheory.cleanserminor/0.png b/front/public/images/small/WarpTheory/item.warptheory.cleanserminor/0.png deleted file mode 100644 index 0aa55fb5ff..0000000000 Binary files a/front/public/images/small/WarpTheory/item.warptheory.cleanserminor/0.png and /dev/null differ diff --git a/front/public/images/small/WarpTheory/item.warptheory.paper/0.png b/front/public/images/small/WarpTheory/item.warptheory.paper/0.png deleted file mode 100644 index 19086bb798..0000000000 Binary files a/front/public/images/small/WarpTheory/item.warptheory.paper/0.png and /dev/null differ diff --git a/front/public/images/small/WarpTheory/item.warptheory.something/0.png b/front/public/images/small/WarpTheory/item.warptheory.something/0.png deleted file mode 100644 index a9258e80f6..0000000000 Binary files a/front/public/images/small/WarpTheory/item.warptheory.something/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_CustomAir/0.png b/front/public/images/small/WitchingGadgets/WG_CustomAir/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_CustomAir/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/0.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/0.png deleted file mode 100644 index db18ac5268..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/1.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/1.png deleted file mode 100644 index cf10fc47cd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/10.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/10.png deleted file mode 100644 index 84dc0f6e5c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/10.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/11.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/11.png deleted file mode 100644 index 84dc0f6e5c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/11.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/12.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/12.png deleted file mode 100644 index 11fbb1f4b0..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/12.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/13.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/13.png deleted file mode 100644 index 6e087f3f70..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/13.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/2.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/2.png deleted file mode 100644 index 3240e076d5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/3.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/3.png deleted file mode 100644 index 6c8a15695d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/4.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/4.png deleted file mode 100644 index 933b597a8d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/4.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/5.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/5.png deleted file mode 100644 index 0912148f48..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/5.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/6.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/6.png deleted file mode 100644 index ec9e693497..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/6.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/7.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/7.png deleted file mode 100644 index 73623a582e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/7.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/8.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/8.png deleted file mode 100644 index 77ae276956..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/8.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_MetalDevice/9.png b/front/public/images/small/WitchingGadgets/WG_MetalDevice/9.png deleted file mode 100644 index 37c90599e1..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_MetalDevice/9.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_RoseVine/0.png b/front/public/images/small/WitchingGadgets/WG_RoseVine/0.png deleted file mode 100644 index 76cf934473..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_RoseVine/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_StoneDevice/0.png b/front/public/images/small/WitchingGadgets/WG_StoneDevice/0.png deleted file mode 100644 index 47712e2b93..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_StoneDevice/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_StoneDevice/1.png b/front/public/images/small/WitchingGadgets/WG_StoneDevice/1.png deleted file mode 100644 index 378612351e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_StoneDevice/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_VoidWalkway/0.png b/front/public/images/small/WitchingGadgets/WG_VoidWalkway/0.png deleted file mode 100644 index d576717f55..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_VoidWalkway/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WallMirror/0.png b/front/public/images/small/WitchingGadgets/WG_WallMirror/0.png deleted file mode 100644 index 549f6aac7e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WallMirror/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/0.png b/front/public/images/small/WitchingGadgets/WG_WoodenDevice/0.png deleted file mode 100644 index 417108bfd5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/1.png b/front/public/images/small/WitchingGadgets/WG_WoodenDevice/1.png deleted file mode 100644 index 32dd8fbf4d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/2.png b/front/public/images/small/WitchingGadgets/WG_WoodenDevice/2.png deleted file mode 100644 index c8ee8a726d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/3.png b/front/public/images/small/WitchingGadgets/WG_WoodenDevice/3.png deleted file mode 100644 index 8848635a40..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/4.png b/front/public/images/small/WitchingGadgets/WG_WoodenDevice/4.png deleted file mode 100644 index 8291918f0a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/4.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/5.png b/front/public/images/small/WitchingGadgets/WG_WoodenDevice/5.png deleted file mode 100644 index b5f8d05f80..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/5.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/6.png b/front/public/images/small/WitchingGadgets/WG_WoodenDevice/6.png deleted file mode 100644 index 32dd8fbf4d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/WG_WoodenDevice/6.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_AdvancedRobeChest/0.png b/front/public/images/small/WitchingGadgets/item.WG_AdvancedRobeChest/0.png deleted file mode 100644 index e77e6786d3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_AdvancedRobeChest/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_AdvancedRobeLegs/0.png b/front/public/images/small/WitchingGadgets/item.WG_AdvancedRobeLegs/0.png deleted file mode 100644 index 2dc9cf08cf..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_AdvancedRobeLegs/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_AdvancedScribingTools/0.png b/front/public/images/small/WitchingGadgets/item.WG_AdvancedScribingTools/0.png deleted file mode 100644 index 4af3e15d19..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_AdvancedScribingTools/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Bag/0.png b/front/public/images/small/WitchingGadgets/item.WG_Bag/0.png deleted file mode 100644 index 7d8420c46f..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Bag/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Bag/1.png b/front/public/images/small/WitchingGadgets/item.WG_Bag/1.png deleted file mode 100644 index f764c2e179..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Bag/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Bag/2.png b/front/public/images/small/WitchingGadgets/item.WG_Bag/2.png deleted file mode 100644 index 9cc5bbe8e3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Bag/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Bag/3.png b/front/public/images/small/WitchingGadgets/item.WG_Bag/3.png deleted file mode 100644 index 1fccb7e3f6..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Bag/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Baubles/0.png b/front/public/images/small/WitchingGadgets/item.WG_Baubles/0.png deleted file mode 100644 index 0676931e65..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Baubles/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Baubles/1.png b/front/public/images/small/WitchingGadgets/item.WG_Baubles/1.png deleted file mode 100644 index c5b0cd6826..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Baubles/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Baubles/2.png b/front/public/images/small/WitchingGadgets/item.WG_Baubles/2.png deleted file mode 100644 index 0adadbebfa..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Baubles/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Baubles/3.png b/front/public/images/small/WitchingGadgets/item.WG_Baubles/3.png deleted file mode 100644 index d18493fd57..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Baubles/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Baubles/4.png b/front/public/images/small/WitchingGadgets/item.WG_Baubles/4.png deleted file mode 100644 index 3cba7de46d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Baubles/4.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Baubles/5.png b/front/public/images/small/WitchingGadgets/item.WG_Baubles/5.png deleted file mode 100644 index 883beceec4..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Baubles/5.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Baubles/6.png b/front/public/images/small/WitchingGadgets/item.WG_Baubles/6.png deleted file mode 100644 index 41d83cc0ae..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Baubles/6.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cloak/0.png b/front/public/images/small/WitchingGadgets/item.WG_Cloak/0.png deleted file mode 100644 index c44d613625..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cloak/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cloak/1.png b/front/public/images/small/WitchingGadgets/item.WG_Cloak/1.png deleted file mode 100644 index 418447985b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cloak/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cloak/2.png b/front/public/images/small/WitchingGadgets/item.WG_Cloak/2.png deleted file mode 100644 index db18476c47..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cloak/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cloak/3.png b/front/public/images/small/WitchingGadgets/item.WG_Cloak/3.png deleted file mode 100644 index b13ab6a96d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cloak/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/0.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/0.png deleted file mode 100644 index 2d0d87c486..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/1.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/1.png deleted file mode 100644 index c130535297..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/10.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/10.png deleted file mode 100644 index f5afaaebe0..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/10.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/100.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/100.png deleted file mode 100644 index e901bf5da7..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/100.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/101.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/101.png deleted file mode 100644 index 1f8b542e6f..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/101.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/102.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/102.png deleted file mode 100644 index 9564d5baaa..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/102.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/103.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/103.png deleted file mode 100644 index 0a180e1895..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/103.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/104.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/104.png deleted file mode 100644 index 4950c8e867..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/104.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/105.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/105.png deleted file mode 100644 index d72e888093..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/105.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/106.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/106.png deleted file mode 100644 index 074aefa142..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/106.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/107.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/107.png deleted file mode 100644 index 68ff7f0ace..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/107.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/108.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/108.png deleted file mode 100644 index 6aadbea2f4..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/108.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/109.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/109.png deleted file mode 100644 index c130535297..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/109.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/11.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/11.png deleted file mode 100644 index 2021d21037..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/11.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/110.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/110.png deleted file mode 100644 index 52e65edea4..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/110.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/111.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/111.png deleted file mode 100644 index baed8c2c4a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/111.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/112.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/112.png deleted file mode 100644 index 0697fcf89a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/112.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/113.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/113.png deleted file mode 100644 index ed343538bd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/113.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/114.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/114.png deleted file mode 100644 index 20412c1364..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/114.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/115.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/115.png deleted file mode 100644 index dbd7835e5f..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/115.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/116.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/116.png deleted file mode 100644 index b5642ea47d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/116.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/117.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/117.png deleted file mode 100644 index e1fc6022ce..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/117.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/118.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/118.png deleted file mode 100644 index ba065da4d8..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/118.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/119.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/119.png deleted file mode 100644 index 1b8ac0ad7c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/119.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/12.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/12.png deleted file mode 100644 index bc9133b41c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/12.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/120.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/120.png deleted file mode 100644 index 7696d7de76..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/120.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/121.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/121.png deleted file mode 100644 index 52b6ffe79c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/121.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/122.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/122.png deleted file mode 100644 index 7e12616253..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/122.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/123.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/123.png deleted file mode 100644 index 844d9c7883..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/123.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/124.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/124.png deleted file mode 100644 index db27656467..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/124.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/125.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/125.png deleted file mode 100644 index dc8e807fc0..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/125.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/126.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/126.png deleted file mode 100644 index 627a3a144c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/126.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/127.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/127.png deleted file mode 100644 index c86257b146..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/127.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/128.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/128.png deleted file mode 100644 index a536e96c5f..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/128.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/129.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/129.png deleted file mode 100644 index 0307cda7da..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/129.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/13.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/13.png deleted file mode 100644 index 5f78693dd3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/13.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/130.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/130.png deleted file mode 100644 index 0439d1dbb2..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/130.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/131.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/131.png deleted file mode 100644 index 51eb70e074..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/131.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/132.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/132.png deleted file mode 100644 index 98846fd748..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/132.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/133.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/133.png deleted file mode 100644 index 621b588af3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/133.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/134.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/134.png deleted file mode 100644 index 2e9f5be43a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/134.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/135.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/135.png deleted file mode 100644 index 2021d21037..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/135.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/136.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/136.png deleted file mode 100644 index 51eb70e074..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/136.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/137.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/137.png deleted file mode 100644 index 8c1f2a1334..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/137.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/138.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/138.png deleted file mode 100644 index b9650587c5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/138.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/139.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/139.png deleted file mode 100644 index d1d6a0ea53..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/139.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/14.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/14.png deleted file mode 100644 index 077f39857d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/14.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/140.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/140.png deleted file mode 100644 index 7191e7fa13..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/140.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/141.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/141.png deleted file mode 100644 index 19f30852a9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/141.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/142.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/142.png deleted file mode 100644 index 19adee3aed..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/142.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/143.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/143.png deleted file mode 100644 index 5e34a8471a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/143.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/144.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/144.png deleted file mode 100644 index 043cd9eda9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/144.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/145.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/145.png deleted file mode 100644 index 9ceeec5d53..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/145.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/146.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/146.png deleted file mode 100644 index e57d675eba..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/146.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/147.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/147.png deleted file mode 100644 index f364c7aca5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/147.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/148.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/148.png deleted file mode 100644 index 966c251201..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/148.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/149.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/149.png deleted file mode 100644 index c236528839..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/149.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/15.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/15.png deleted file mode 100644 index 9d86ed91fd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/15.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/150.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/150.png deleted file mode 100644 index 6096335a0b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/150.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/151.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/151.png deleted file mode 100644 index f33d0f7bdb..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/151.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/152.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/152.png deleted file mode 100644 index 07134dc0cc..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/152.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/153.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/153.png deleted file mode 100644 index b26e1ba629..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/153.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/154.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/154.png deleted file mode 100644 index 6a9da619c7..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/154.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/155.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/155.png deleted file mode 100644 index b831458116..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/155.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/156.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/156.png deleted file mode 100644 index 7ccffb5593..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/156.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/157.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/157.png deleted file mode 100644 index a30be041f5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/157.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/158.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/158.png deleted file mode 100644 index 82c382fb55..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/158.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/159.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/159.png deleted file mode 100644 index 7a6375a6e3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/159.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/16.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/16.png deleted file mode 100644 index bcc9ac2806..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/16.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/160.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/160.png deleted file mode 100644 index 5ef02e88cf..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/160.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/161.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/161.png deleted file mode 100644 index f575e4fd4b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/161.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/162.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/162.png deleted file mode 100644 index 81163be5ce..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/162.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/163.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/163.png deleted file mode 100644 index d8a0c1df22..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/163.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/164.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/164.png deleted file mode 100644 index 9a44e8ca06..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/164.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/165.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/165.png deleted file mode 100644 index 0e827fdba9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/165.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/166.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/166.png deleted file mode 100644 index fc9bb9d61b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/166.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/167.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/167.png deleted file mode 100644 index ff2f656f9d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/167.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/168.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/168.png deleted file mode 100644 index 8e38f1c334..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/168.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/169.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/169.png deleted file mode 100644 index 2e9f5be43a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/169.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/17.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/17.png deleted file mode 100644 index 844d9c7883..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/17.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/170.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/170.png deleted file mode 100644 index c2e8a0491c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/170.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/171.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/171.png deleted file mode 100644 index 0744e6ed2d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/171.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/18.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/18.png deleted file mode 100644 index 8449ae649d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/18.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/19.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/19.png deleted file mode 100644 index 286f86557d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/19.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/2.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/2.png deleted file mode 100644 index dbd7835e5f..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/20.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/20.png deleted file mode 100644 index f9e62cbb54..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/20.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/21.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/21.png deleted file mode 100644 index a4b0833ebd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/21.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/22.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/22.png deleted file mode 100644 index e901bf5da7..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/22.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/23.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/23.png deleted file mode 100644 index f2bb3d01fa..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/23.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/24.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/24.png deleted file mode 100644 index b36077345c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/24.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/25.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/25.png deleted file mode 100644 index a08a5e841a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/25.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/26.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/26.png deleted file mode 100644 index 3e9e4e8d49..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/26.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/27.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/27.png deleted file mode 100644 index 90b9ec64d6..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/27.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/28.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/28.png deleted file mode 100644 index 1220108f47..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/28.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/29.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/29.png deleted file mode 100644 index a7f1bb0a05..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/29.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/3.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/3.png deleted file mode 100644 index 09cfb3323c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/30.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/30.png deleted file mode 100644 index f575e4fd4b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/30.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/31.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/31.png deleted file mode 100644 index bda94840cd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/31.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/32.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/32.png deleted file mode 100644 index 2c664ca31e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/32.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/33.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/33.png deleted file mode 100644 index 02f2590307..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/33.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/34.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/34.png deleted file mode 100644 index e036635a01..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/34.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/35.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/35.png deleted file mode 100644 index e86d32e1b0..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/35.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/36.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/36.png deleted file mode 100644 index 1545c8981e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/36.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/37.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/37.png deleted file mode 100644 index deb5152af9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/37.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/38.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/38.png deleted file mode 100644 index 56237a3201..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/38.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/39.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/39.png deleted file mode 100644 index 7ab62cdba3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/39.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/4.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/4.png deleted file mode 100644 index c2e8a0491c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/4.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/40.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/40.png deleted file mode 100644 index 02441e8620..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/40.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/41.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/41.png deleted file mode 100644 index 345b4f1f72..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/41.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/42.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/42.png deleted file mode 100644 index bc9133b41c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/42.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/43.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/43.png deleted file mode 100644 index c2e8a0491c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/43.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/44.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/44.png deleted file mode 100644 index 857493e689..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/44.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/45.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/45.png deleted file mode 100644 index c02bda8620..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/45.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/46.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/46.png deleted file mode 100644 index 17ab71e7c7..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/46.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/47.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/47.png deleted file mode 100644 index 34dd3d22aa..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/47.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/48.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/48.png deleted file mode 100644 index 0744e6ed2d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/48.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/49.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/49.png deleted file mode 100644 index c47a1a2c9b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/49.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/5.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/5.png deleted file mode 100644 index a39c5f696e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/5.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/50.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/50.png deleted file mode 100644 index c895f2fb52..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/50.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/51.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/51.png deleted file mode 100644 index 79d3cbaedc..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/51.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/52.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/52.png deleted file mode 100644 index 020ce980bd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/52.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/53.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/53.png deleted file mode 100644 index 0744e6ed2d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/53.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/54.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/54.png deleted file mode 100644 index bc9133b41c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/54.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/55.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/55.png deleted file mode 100644 index 5e34a8471a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/55.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/56.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/56.png deleted file mode 100644 index dc3844b058..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/56.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/57.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/57.png deleted file mode 100644 index 51eb70e074..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/57.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/58.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/58.png deleted file mode 100644 index 6abc23cfe4..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/58.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/59.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/59.png deleted file mode 100644 index 241dea73a7..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/59.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/6.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/6.png deleted file mode 100644 index 6f5c6487b3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/6.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/60.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/60.png deleted file mode 100644 index 043cd9eda9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/60.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/61.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/61.png deleted file mode 100644 index bc9133b41c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/61.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/62.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/62.png deleted file mode 100644 index 6f5c6487b3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/62.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/63.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/63.png deleted file mode 100644 index a160ac7f6d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/63.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/64.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/64.png deleted file mode 100644 index 65824803bd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/64.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/65.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/65.png deleted file mode 100644 index 21f41fdaed..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/65.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/66.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/66.png deleted file mode 100644 index f575e4fd4b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/66.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/67.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/67.png deleted file mode 100644 index bc9133b41c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/67.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/68.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/68.png deleted file mode 100644 index dd31bd2cd6..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/68.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/69.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/69.png deleted file mode 100644 index bc9133b41c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/69.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/7.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/7.png deleted file mode 100644 index b398b8ecf5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/7.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/70.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/70.png deleted file mode 100644 index c55455c286..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/70.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/71.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/71.png deleted file mode 100644 index 9c8febfb68..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/71.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/72.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/72.png deleted file mode 100644 index 131190b99d..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/72.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/73.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/73.png deleted file mode 100644 index b5726f7657..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/73.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/74.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/74.png deleted file mode 100644 index dd31bd2cd6..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/74.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/75.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/75.png deleted file mode 100644 index 5e34a8471a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/75.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/76.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/76.png deleted file mode 100644 index 96a0aa19e4..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/76.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/77.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/77.png deleted file mode 100644 index 5a5d373d70..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/77.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/78.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/78.png deleted file mode 100644 index bc93f2fdc5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/78.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/79.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/79.png deleted file mode 100644 index a93ead01ee..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/79.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/8.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/8.png deleted file mode 100644 index ed343538bd..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/8.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/80.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/80.png deleted file mode 100644 index d779ca3939..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/80.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/81.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/81.png deleted file mode 100644 index 69d7f48a93..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/81.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/82.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/82.png deleted file mode 100644 index 6bb11b6a08..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/82.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/83.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/83.png deleted file mode 100644 index 51eb70e074..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/83.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/84.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/84.png deleted file mode 100644 index ef8a3aa981..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/84.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/85.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/85.png deleted file mode 100644 index c86257b146..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/85.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/86.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/86.png deleted file mode 100644 index 7dbd6215ee..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/86.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/87.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/87.png deleted file mode 100644 index 30dd2a3341..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/87.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/88.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/88.png deleted file mode 100644 index 3938c53c96..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/88.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/89.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/89.png deleted file mode 100644 index f575e4fd4b..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/89.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/9.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/9.png deleted file mode 100644 index bc93f2fdc5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/9.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/90.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/90.png deleted file mode 100644 index 59e7d9b5f4..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/90.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/91.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/91.png deleted file mode 100644 index 11abf4c501..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/91.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/92.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/92.png deleted file mode 100644 index bd4e1986b2..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/92.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/93.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/93.png deleted file mode 100644 index 483e8c2b83..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/93.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/94.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/94.png deleted file mode 100644 index cde732a530..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/94.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/95.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/95.png deleted file mode 100644 index e57d675eba..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/95.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/96.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/96.png deleted file mode 100644 index 5e34a8471a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/96.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/97.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/97.png deleted file mode 100644 index 5c22c821ca..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/97.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/98.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/98.png deleted file mode 100644 index 51eb70e074..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/98.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Cluster/99.png b/front/public/images/small/WitchingGadgets/item.WG_Cluster/99.png deleted file mode 100644 index f23b6e6dad..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Cluster/99.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_CrystalFlask/0.png b/front/public/images/small/WitchingGadgets/item.WG_CrystalFlask/0.png deleted file mode 100644 index 4844cab0e6..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_CrystalFlask/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_InfusedGem/0.png b/front/public/images/small/WitchingGadgets/item.WG_InfusedGem/0.png deleted file mode 100644 index 86b020c6aa..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_InfusedGem/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Kama/0.png b/front/public/images/small/WitchingGadgets/item.WG_Kama/0.png deleted file mode 100644 index ed4dfc1f33..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Kama/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Kama/1.png b/front/public/images/small/WitchingGadgets/item.WG_Kama/1.png deleted file mode 100644 index b9afe251d9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Kama/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Kama/2.png b/front/public/images/small/WitchingGadgets/item.WG_Kama/2.png deleted file mode 100644 index fa741093b7..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Kama/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Kama/3.png b/front/public/images/small/WitchingGadgets/item.WG_Kama/3.png deleted file mode 100644 index 599d2d0c50..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Kama/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_MagicFood/0.png b/front/public/images/small/WitchingGadgets/item.WG_MagicFood/0.png deleted file mode 100644 index 27519f01b9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_MagicFood/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_MagicFood/1.png b/front/public/images/small/WitchingGadgets/item.WG_MagicFood/1.png deleted file mode 100644 index 6187558e7e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_MagicFood/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/0.png b/front/public/images/small/WitchingGadgets/item.WG_Material/0.png deleted file mode 100644 index b1f597ba06..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/1.png b/front/public/images/small/WitchingGadgets/item.WG_Material/1.png deleted file mode 100644 index cfeb497d89..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/1.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/10.png b/front/public/images/small/WitchingGadgets/item.WG_Material/10.png deleted file mode 100644 index 403645d0f3..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/10.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/11.png b/front/public/images/small/WitchingGadgets/item.WG_Material/11.png deleted file mode 100644 index 7fa0018268..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/11.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/12.png b/front/public/images/small/WitchingGadgets/item.WG_Material/12.png deleted file mode 100644 index 252401a33c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/12.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/13.png b/front/public/images/small/WitchingGadgets/item.WG_Material/13.png deleted file mode 100644 index 013f7640f9..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/13.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/2.png b/front/public/images/small/WitchingGadgets/item.WG_Material/2.png deleted file mode 100644 index 88160ee4da..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/2.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/3.png b/front/public/images/small/WitchingGadgets/item.WG_Material/3.png deleted file mode 100644 index 4b4132aa93..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/3.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/4.png b/front/public/images/small/WitchingGadgets/item.WG_Material/4.png deleted file mode 100644 index 0116af2aa0..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/4.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/5.png b/front/public/images/small/WitchingGadgets/item.WG_Material/5.png deleted file mode 100644 index 75263bc84a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/5.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/6.png b/front/public/images/small/WitchingGadgets/item.WG_Material/6.png deleted file mode 100644 index 2dae69ea04..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/6.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/7.png b/front/public/images/small/WitchingGadgets/item.WG_Material/7.png deleted file mode 100644 index 1fd5348033..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/7.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/8.png b/front/public/images/small/WitchingGadgets/item.WG_Material/8.png deleted file mode 100644 index 934c84a330..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/8.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_Material/9.png b/front/public/images/small/WitchingGadgets/item.WG_Material/9.png deleted file mode 100644 index 620a99eca5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_Material/9.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialAxe/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialAxe/0.png deleted file mode 100644 index 89d6781d5a..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialAxe/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialBoots/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialBoots/0.png deleted file mode 100644 index 06b4eb15a6..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialBoots/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialChest/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialChest/0.png deleted file mode 100644 index cabb456016..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialChest/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialGlove/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialGlove/0.png deleted file mode 100644 index 8c5a569a1c..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialGlove/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialHammer/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialHammer/0.png deleted file mode 100644 index 261603eff5..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialHammer/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialHelm/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialHelm/0.png deleted file mode 100644 index 1d95790c08..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialHelm/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialLegs/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialLegs/0.png deleted file mode 100644 index a955e97713..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialLegs/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_PrimordialSword/0.png b/front/public/images/small/WitchingGadgets/item.WG_PrimordialSword/0.png deleted file mode 100644 index 3e4cf673ea..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_PrimordialSword/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_ScanCamera/0.png b/front/public/images/small/WitchingGadgets/item.WG_ScanCamera/0.png deleted file mode 100644 index 5ef251f96e..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_ScanCamera/0.png and /dev/null differ diff --git a/front/public/images/small/WitchingGadgets/item.WG_ThaumiumShears/0.png b/front/public/images/small/WitchingGadgets/item.WG_ThaumiumShears/0.png deleted file mode 100644 index 2da93b79dc..0000000000 Binary files a/front/public/images/small/WitchingGadgets/item.WG_ThaumiumShears/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/auroraBlock/0.png b/front/public/images/small/Ztones/auroraBlock/0.png deleted file mode 100644 index 8ccfcfce22..0000000000 Binary files a/front/public/images/small/Ztones/auroraBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/booster/0.png b/front/public/images/small/Ztones/booster/0.png deleted file mode 100644 index bd1a38b4bc..0000000000 Binary files a/front/public/images/small/Ztones/booster/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/cleanDirt/0.png b/front/public/images/small/Ztones/cleanDirt/0.png deleted file mode 100644 index b19e760d3a..0000000000 Binary files a/front/public/images/small/Ztones/cleanDirt/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/lampb/0.png b/front/public/images/small/Ztones/lampb/0.png deleted file mode 100644 index 456c2cc104..0000000000 Binary files a/front/public/images/small/Ztones/lampb/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/lampf/0.png b/front/public/images/small/Ztones/lampf/0.png deleted file mode 100644 index 16b91969df..0000000000 Binary files a/front/public/images/small/Ztones/lampf/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/lampt/0.png b/front/public/images/small/Ztones/lampt/0.png deleted file mode 100644 index 4538c6c842..0000000000 Binary files a/front/public/images/small/Ztones/lampt/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/minicharcoal/0.png b/front/public/images/small/Ztones/minicharcoal/0.png deleted file mode 100644 index 03ef6cfcfd..0000000000 Binary files a/front/public/images/small/Ztones/minicharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/minicoal/0.png b/front/public/images/small/Ztones/minicoal/0.png deleted file mode 100644 index 31a9f1cb5b..0000000000 Binary files a/front/public/images/small/Ztones/minicoal/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/ofanix/0.png b/front/public/images/small/Ztones/ofanix/0.png deleted file mode 100644 index 9d56a64478..0000000000 Binary files a/front/public/images/small/Ztones/ofanix/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/stoneTile/0.png b/front/public/images/small/Ztones/stoneTile/0.png deleted file mode 100644 index 1da7395e4d..0000000000 Binary files a/front/public/images/small/Ztones/stoneTile/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/0.png b/front/public/images/small/Ztones/tile.agonBlock/0.png deleted file mode 100644 index 9bdec0f8a6..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/1.png b/front/public/images/small/Ztones/tile.agonBlock/1.png deleted file mode 100644 index 91e6a5f981..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/10.png b/front/public/images/small/Ztones/tile.agonBlock/10.png deleted file mode 100644 index 4c7ad4ed02..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/11.png b/front/public/images/small/Ztones/tile.agonBlock/11.png deleted file mode 100644 index 5e980db395..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/12.png b/front/public/images/small/Ztones/tile.agonBlock/12.png deleted file mode 100644 index 1edb96e17c..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/13.png b/front/public/images/small/Ztones/tile.agonBlock/13.png deleted file mode 100644 index 189a12a1b6..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/14.png b/front/public/images/small/Ztones/tile.agonBlock/14.png deleted file mode 100644 index 574fb2252e..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/15.png b/front/public/images/small/Ztones/tile.agonBlock/15.png deleted file mode 100644 index 4343f34096..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/2.png b/front/public/images/small/Ztones/tile.agonBlock/2.png deleted file mode 100644 index 93ea342347..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/3.png b/front/public/images/small/Ztones/tile.agonBlock/3.png deleted file mode 100644 index ec31a766b4..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/4.png b/front/public/images/small/Ztones/tile.agonBlock/4.png deleted file mode 100644 index 869c6f852d..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/5.png b/front/public/images/small/Ztones/tile.agonBlock/5.png deleted file mode 100644 index a25893b05f..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/6.png b/front/public/images/small/Ztones/tile.agonBlock/6.png deleted file mode 100644 index bcafe3dcc2..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/7.png b/front/public/images/small/Ztones/tile.agonBlock/7.png deleted file mode 100644 index 2da0fb3d2a..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/8.png b/front/public/images/small/Ztones/tile.agonBlock/8.png deleted file mode 100644 index 8e789d16b7..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.agonBlock/9.png b/front/public/images/small/Ztones/tile.agonBlock/9.png deleted file mode 100644 index cdbdf8253e..0000000000 Binary files a/front/public/images/small/Ztones/tile.agonBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/0.png b/front/public/images/small/Ztones/tile.azurBlock/0.png deleted file mode 100644 index cc7ee5ec8c..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/1.png b/front/public/images/small/Ztones/tile.azurBlock/1.png deleted file mode 100644 index a3690c8c9b..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/10.png b/front/public/images/small/Ztones/tile.azurBlock/10.png deleted file mode 100644 index f36b9192bf..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/11.png b/front/public/images/small/Ztones/tile.azurBlock/11.png deleted file mode 100644 index eb820f4491..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/12.png b/front/public/images/small/Ztones/tile.azurBlock/12.png deleted file mode 100644 index 73555dabf5..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/13.png b/front/public/images/small/Ztones/tile.azurBlock/13.png deleted file mode 100644 index 3fd739e621..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/14.png b/front/public/images/small/Ztones/tile.azurBlock/14.png deleted file mode 100644 index 4742e59942..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/15.png b/front/public/images/small/Ztones/tile.azurBlock/15.png deleted file mode 100644 index ea453d1601..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/2.png b/front/public/images/small/Ztones/tile.azurBlock/2.png deleted file mode 100644 index 3e6acb75ab..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/3.png b/front/public/images/small/Ztones/tile.azurBlock/3.png deleted file mode 100644 index 9f39c92203..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/4.png b/front/public/images/small/Ztones/tile.azurBlock/4.png deleted file mode 100644 index a8de14b0e6..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/5.png b/front/public/images/small/Ztones/tile.azurBlock/5.png deleted file mode 100644 index a49233d0a5..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/6.png b/front/public/images/small/Ztones/tile.azurBlock/6.png deleted file mode 100644 index 929b8fefb9..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/7.png b/front/public/images/small/Ztones/tile.azurBlock/7.png deleted file mode 100644 index f5fd6e9449..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/8.png b/front/public/images/small/Ztones/tile.azurBlock/8.png deleted file mode 100644 index eca30750e8..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.azurBlock/9.png b/front/public/images/small/Ztones/tile.azurBlock/9.png deleted file mode 100644 index 1984791344..0000000000 Binary files a/front/public/images/small/Ztones/tile.azurBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/0.png b/front/public/images/small/Ztones/tile.bittBlock/0.png deleted file mode 100644 index a86f47e145..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/1.png b/front/public/images/small/Ztones/tile.bittBlock/1.png deleted file mode 100644 index fc8b1b9284..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/10.png b/front/public/images/small/Ztones/tile.bittBlock/10.png deleted file mode 100644 index af810e537c..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/11.png b/front/public/images/small/Ztones/tile.bittBlock/11.png deleted file mode 100644 index 3babd69482..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/12.png b/front/public/images/small/Ztones/tile.bittBlock/12.png deleted file mode 100644 index 3939770311..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/13.png b/front/public/images/small/Ztones/tile.bittBlock/13.png deleted file mode 100644 index 3dc1d075db..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/14.png b/front/public/images/small/Ztones/tile.bittBlock/14.png deleted file mode 100644 index 97e3e839aa..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/15.png b/front/public/images/small/Ztones/tile.bittBlock/15.png deleted file mode 100644 index fedc3e514f..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/2.png b/front/public/images/small/Ztones/tile.bittBlock/2.png deleted file mode 100644 index e7d1a14911..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/3.png b/front/public/images/small/Ztones/tile.bittBlock/3.png deleted file mode 100644 index c1c1151d15..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/4.png b/front/public/images/small/Ztones/tile.bittBlock/4.png deleted file mode 100644 index 0d55332fea..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/5.png b/front/public/images/small/Ztones/tile.bittBlock/5.png deleted file mode 100644 index e16482836c..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/6.png b/front/public/images/small/Ztones/tile.bittBlock/6.png deleted file mode 100644 index fdf7ff342e..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/7.png b/front/public/images/small/Ztones/tile.bittBlock/7.png deleted file mode 100644 index c5278781ec..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/8.png b/front/public/images/small/Ztones/tile.bittBlock/8.png deleted file mode 100644 index 1e94d82622..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.bittBlock/9.png b/front/public/images/small/Ztones/tile.bittBlock/9.png deleted file mode 100644 index 654ef7900b..0000000000 Binary files a/front/public/images/small/Ztones/tile.bittBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/0.png b/front/public/images/small/Ztones/tile.crayBlock/0.png deleted file mode 100644 index e8ac3fabed..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/1.png b/front/public/images/small/Ztones/tile.crayBlock/1.png deleted file mode 100644 index e26a37373b..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/10.png b/front/public/images/small/Ztones/tile.crayBlock/10.png deleted file mode 100644 index 68f066cca4..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/11.png b/front/public/images/small/Ztones/tile.crayBlock/11.png deleted file mode 100644 index c01d991a7b..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/12.png b/front/public/images/small/Ztones/tile.crayBlock/12.png deleted file mode 100644 index 0cea661032..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/13.png b/front/public/images/small/Ztones/tile.crayBlock/13.png deleted file mode 100644 index 381d275580..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/14.png b/front/public/images/small/Ztones/tile.crayBlock/14.png deleted file mode 100644 index f344ca9257..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/15.png b/front/public/images/small/Ztones/tile.crayBlock/15.png deleted file mode 100644 index bbdc6c1e64..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/2.png b/front/public/images/small/Ztones/tile.crayBlock/2.png deleted file mode 100644 index ee28ce8b7f..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/3.png b/front/public/images/small/Ztones/tile.crayBlock/3.png deleted file mode 100644 index 24f2d84dab..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/4.png b/front/public/images/small/Ztones/tile.crayBlock/4.png deleted file mode 100644 index d232bfc88f..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/5.png b/front/public/images/small/Ztones/tile.crayBlock/5.png deleted file mode 100644 index a4ad003bf0..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/6.png b/front/public/images/small/Ztones/tile.crayBlock/6.png deleted file mode 100644 index 3eb758fbb8..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/7.png b/front/public/images/small/Ztones/tile.crayBlock/7.png deleted file mode 100644 index 2788ffc754..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/8.png b/front/public/images/small/Ztones/tile.crayBlock/8.png deleted file mode 100644 index b9302aaf1a..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.crayBlock/9.png b/front/public/images/small/Ztones/tile.crayBlock/9.png deleted file mode 100644 index 893d4a87ab..0000000000 Binary files a/front/public/images/small/Ztones/tile.crayBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/0.png b/front/public/images/small/Ztones/tile.fortBlock/0.png deleted file mode 100644 index 8d2e4bac0a..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/1.png b/front/public/images/small/Ztones/tile.fortBlock/1.png deleted file mode 100644 index 2d5ce3acc3..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/10.png b/front/public/images/small/Ztones/tile.fortBlock/10.png deleted file mode 100644 index 06a349de97..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/11.png b/front/public/images/small/Ztones/tile.fortBlock/11.png deleted file mode 100644 index dd9e866dfd..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/12.png b/front/public/images/small/Ztones/tile.fortBlock/12.png deleted file mode 100644 index afdf7be0fe..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/13.png b/front/public/images/small/Ztones/tile.fortBlock/13.png deleted file mode 100644 index 6fbdf44dc2..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/14.png b/front/public/images/small/Ztones/tile.fortBlock/14.png deleted file mode 100644 index 4b0bc2cb24..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/15.png b/front/public/images/small/Ztones/tile.fortBlock/15.png deleted file mode 100644 index b915eaa71e..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/2.png b/front/public/images/small/Ztones/tile.fortBlock/2.png deleted file mode 100644 index 092ef676cc..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/3.png b/front/public/images/small/Ztones/tile.fortBlock/3.png deleted file mode 100644 index ead0fb1ac1..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/4.png b/front/public/images/small/Ztones/tile.fortBlock/4.png deleted file mode 100644 index 5573819f7f..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/5.png b/front/public/images/small/Ztones/tile.fortBlock/5.png deleted file mode 100644 index 1546c86dba..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/6.png b/front/public/images/small/Ztones/tile.fortBlock/6.png deleted file mode 100644 index b6461b8c09..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/7.png b/front/public/images/small/Ztones/tile.fortBlock/7.png deleted file mode 100644 index 1046fc6e51..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/8.png b/front/public/images/small/Ztones/tile.fortBlock/8.png deleted file mode 100644 index cc8f62cb88..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.fortBlock/9.png b/front/public/images/small/Ztones/tile.fortBlock/9.png deleted file mode 100644 index 6cb06bf3d6..0000000000 Binary files a/front/public/images/small/Ztones/tile.fortBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/0.png b/front/public/images/small/Ztones/tile.glaxx/0.png deleted file mode 100644 index 6bd4ca9867..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/1.png b/front/public/images/small/Ztones/tile.glaxx/1.png deleted file mode 100644 index cd87208c79..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/10.png b/front/public/images/small/Ztones/tile.glaxx/10.png deleted file mode 100644 index 6100038127..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/11.png b/front/public/images/small/Ztones/tile.glaxx/11.png deleted file mode 100644 index 167ae8bdbe..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/12.png b/front/public/images/small/Ztones/tile.glaxx/12.png deleted file mode 100644 index 602b73a50f..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/13.png b/front/public/images/small/Ztones/tile.glaxx/13.png deleted file mode 100644 index 33c9be07f5..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/14.png b/front/public/images/small/Ztones/tile.glaxx/14.png deleted file mode 100644 index cf98baaa95..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/15.png b/front/public/images/small/Ztones/tile.glaxx/15.png deleted file mode 100644 index 505c6f0a76..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/2.png b/front/public/images/small/Ztones/tile.glaxx/2.png deleted file mode 100644 index f8a23113fa..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/3.png b/front/public/images/small/Ztones/tile.glaxx/3.png deleted file mode 100644 index a3e8a64508..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/4.png b/front/public/images/small/Ztones/tile.glaxx/4.png deleted file mode 100644 index 2731203078..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/5.png b/front/public/images/small/Ztones/tile.glaxx/5.png deleted file mode 100644 index 5dda874bbb..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/6.png b/front/public/images/small/Ztones/tile.glaxx/6.png deleted file mode 100644 index 7dd8d82f82..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/7.png b/front/public/images/small/Ztones/tile.glaxx/7.png deleted file mode 100644 index 7de465a252..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/8.png b/front/public/images/small/Ztones/tile.glaxx/8.png deleted file mode 100644 index 5565269605..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.glaxx/9.png b/front/public/images/small/Ztones/tile.glaxx/9.png deleted file mode 100644 index a0a78f5cb1..0000000000 Binary files a/front/public/images/small/Ztones/tile.glaxx/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/0.png b/front/public/images/small/Ztones/tile.iszmBlock/0.png deleted file mode 100644 index 4deecf3c14..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/1.png b/front/public/images/small/Ztones/tile.iszmBlock/1.png deleted file mode 100644 index 5248a17e1d..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/10.png b/front/public/images/small/Ztones/tile.iszmBlock/10.png deleted file mode 100644 index a2c1ce857f..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/11.png b/front/public/images/small/Ztones/tile.iszmBlock/11.png deleted file mode 100644 index f4a736a788..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/12.png b/front/public/images/small/Ztones/tile.iszmBlock/12.png deleted file mode 100644 index 938101404c..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/13.png b/front/public/images/small/Ztones/tile.iszmBlock/13.png deleted file mode 100644 index 531c2dfafc..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/14.png b/front/public/images/small/Ztones/tile.iszmBlock/14.png deleted file mode 100644 index d130d31d23..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/15.png b/front/public/images/small/Ztones/tile.iszmBlock/15.png deleted file mode 100644 index 08384400e1..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/2.png b/front/public/images/small/Ztones/tile.iszmBlock/2.png deleted file mode 100644 index 81eb3a443e..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/3.png b/front/public/images/small/Ztones/tile.iszmBlock/3.png deleted file mode 100644 index a7a779e2e5..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/4.png b/front/public/images/small/Ztones/tile.iszmBlock/4.png deleted file mode 100644 index cd75d94109..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/5.png b/front/public/images/small/Ztones/tile.iszmBlock/5.png deleted file mode 100644 index d49ebf8d7f..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/6.png b/front/public/images/small/Ztones/tile.iszmBlock/6.png deleted file mode 100644 index 2814244f11..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/7.png b/front/public/images/small/Ztones/tile.iszmBlock/7.png deleted file mode 100644 index 0cdfc99a76..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/8.png b/front/public/images/small/Ztones/tile.iszmBlock/8.png deleted file mode 100644 index 998203ed8c..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.iszmBlock/9.png b/front/public/images/small/Ztones/tile.iszmBlock/9.png deleted file mode 100644 index 3c2c4a375f..0000000000 Binary files a/front/public/images/small/Ztones/tile.iszmBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/0.png b/front/public/images/small/Ztones/tile.jeltBlock/0.png deleted file mode 100644 index f0e2a8a2e4..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/1.png b/front/public/images/small/Ztones/tile.jeltBlock/1.png deleted file mode 100644 index dd9d465432..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/10.png b/front/public/images/small/Ztones/tile.jeltBlock/10.png deleted file mode 100644 index 48b7a74332..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/11.png b/front/public/images/small/Ztones/tile.jeltBlock/11.png deleted file mode 100644 index 341b7f7bec..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/12.png b/front/public/images/small/Ztones/tile.jeltBlock/12.png deleted file mode 100644 index d5765ff4f4..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/13.png b/front/public/images/small/Ztones/tile.jeltBlock/13.png deleted file mode 100644 index e52f845af1..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/14.png b/front/public/images/small/Ztones/tile.jeltBlock/14.png deleted file mode 100644 index f40dae3646..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/15.png b/front/public/images/small/Ztones/tile.jeltBlock/15.png deleted file mode 100644 index 08f744f5ed..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/2.png b/front/public/images/small/Ztones/tile.jeltBlock/2.png deleted file mode 100644 index 05db8452ba..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/3.png b/front/public/images/small/Ztones/tile.jeltBlock/3.png deleted file mode 100644 index 4cdf656b66..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/4.png b/front/public/images/small/Ztones/tile.jeltBlock/4.png deleted file mode 100644 index 7dcf8b8853..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/5.png b/front/public/images/small/Ztones/tile.jeltBlock/5.png deleted file mode 100644 index 7523241bc7..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/6.png b/front/public/images/small/Ztones/tile.jeltBlock/6.png deleted file mode 100644 index 8507797922..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/7.png b/front/public/images/small/Ztones/tile.jeltBlock/7.png deleted file mode 100644 index 4fdcaab8b0..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/8.png b/front/public/images/small/Ztones/tile.jeltBlock/8.png deleted file mode 100644 index 40e47eb103..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.jeltBlock/9.png b/front/public/images/small/Ztones/tile.jeltBlock/9.png deleted file mode 100644 index 3306273329..0000000000 Binary files a/front/public/images/small/Ztones/tile.jeltBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/0.png b/front/public/images/small/Ztones/tile.korpBlock/0.png deleted file mode 100644 index e7f73111de..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/1.png b/front/public/images/small/Ztones/tile.korpBlock/1.png deleted file mode 100644 index 09a2d8aac0..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/10.png b/front/public/images/small/Ztones/tile.korpBlock/10.png deleted file mode 100644 index 51ff760dce..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/11.png b/front/public/images/small/Ztones/tile.korpBlock/11.png deleted file mode 100644 index 21509c8c5e..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/12.png b/front/public/images/small/Ztones/tile.korpBlock/12.png deleted file mode 100644 index 5d405c7aa0..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/13.png b/front/public/images/small/Ztones/tile.korpBlock/13.png deleted file mode 100644 index bbcab59046..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/14.png b/front/public/images/small/Ztones/tile.korpBlock/14.png deleted file mode 100644 index 43af9bada5..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/15.png b/front/public/images/small/Ztones/tile.korpBlock/15.png deleted file mode 100644 index a90c00cfb5..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/2.png b/front/public/images/small/Ztones/tile.korpBlock/2.png deleted file mode 100644 index d2e1405e57..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/3.png b/front/public/images/small/Ztones/tile.korpBlock/3.png deleted file mode 100644 index 5f01024060..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/4.png b/front/public/images/small/Ztones/tile.korpBlock/4.png deleted file mode 100644 index 7a8076c1fe..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/5.png b/front/public/images/small/Ztones/tile.korpBlock/5.png deleted file mode 100644 index 53823dc5d1..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/6.png b/front/public/images/small/Ztones/tile.korpBlock/6.png deleted file mode 100644 index 70abc155f8..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/7.png b/front/public/images/small/Ztones/tile.korpBlock/7.png deleted file mode 100644 index 20431dde0c..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/8.png b/front/public/images/small/Ztones/tile.korpBlock/8.png deleted file mode 100644 index 68d9734d27..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.korpBlock/9.png b/front/public/images/small/Ztones/tile.korpBlock/9.png deleted file mode 100644 index 031fa42322..0000000000 Binary files a/front/public/images/small/Ztones/tile.korpBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/0.png b/front/public/images/small/Ztones/tile.krypBlock/0.png deleted file mode 100644 index 44a7329b7d..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/1.png b/front/public/images/small/Ztones/tile.krypBlock/1.png deleted file mode 100644 index 4c751ecead..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/10.png b/front/public/images/small/Ztones/tile.krypBlock/10.png deleted file mode 100644 index 31171adcd5..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/11.png b/front/public/images/small/Ztones/tile.krypBlock/11.png deleted file mode 100644 index a7c584c522..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/12.png b/front/public/images/small/Ztones/tile.krypBlock/12.png deleted file mode 100644 index ed693587de..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/13.png b/front/public/images/small/Ztones/tile.krypBlock/13.png deleted file mode 100644 index 226b02b55e..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/14.png b/front/public/images/small/Ztones/tile.krypBlock/14.png deleted file mode 100644 index 6ce3bb7d8e..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/15.png b/front/public/images/small/Ztones/tile.krypBlock/15.png deleted file mode 100644 index 0bffe27e98..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/2.png b/front/public/images/small/Ztones/tile.krypBlock/2.png deleted file mode 100644 index 02e72eb14f..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/3.png b/front/public/images/small/Ztones/tile.krypBlock/3.png deleted file mode 100644 index e428d689f0..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/4.png b/front/public/images/small/Ztones/tile.krypBlock/4.png deleted file mode 100644 index 172e06b11e..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/5.png b/front/public/images/small/Ztones/tile.krypBlock/5.png deleted file mode 100644 index 95b75a419e..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/6.png b/front/public/images/small/Ztones/tile.krypBlock/6.png deleted file mode 100644 index 76e4469ac5..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/7.png b/front/public/images/small/Ztones/tile.krypBlock/7.png deleted file mode 100644 index f4cdf5ae0b..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/8.png b/front/public/images/small/Ztones/tile.krypBlock/8.png deleted file mode 100644 index 4ba4a8798b..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.krypBlock/9.png b/front/public/images/small/Ztones/tile.krypBlock/9.png deleted file mode 100644 index 3f88a2bd55..0000000000 Binary files a/front/public/images/small/Ztones/tile.krypBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/0.png b/front/public/images/small/Ztones/tile.lairBlock/0.png deleted file mode 100644 index 7e382460de..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/1.png b/front/public/images/small/Ztones/tile.lairBlock/1.png deleted file mode 100644 index 8165732763..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/10.png b/front/public/images/small/Ztones/tile.lairBlock/10.png deleted file mode 100644 index b54208ff81..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/11.png b/front/public/images/small/Ztones/tile.lairBlock/11.png deleted file mode 100644 index cc667ad579..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/12.png b/front/public/images/small/Ztones/tile.lairBlock/12.png deleted file mode 100644 index 3c01ca798e..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/13.png b/front/public/images/small/Ztones/tile.lairBlock/13.png deleted file mode 100644 index 5ba3744fad..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/14.png b/front/public/images/small/Ztones/tile.lairBlock/14.png deleted file mode 100644 index d61b601cc2..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/15.png b/front/public/images/small/Ztones/tile.lairBlock/15.png deleted file mode 100644 index f9348ee64f..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/2.png b/front/public/images/small/Ztones/tile.lairBlock/2.png deleted file mode 100644 index 420611a973..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/3.png b/front/public/images/small/Ztones/tile.lairBlock/3.png deleted file mode 100644 index 7c40ae492d..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/4.png b/front/public/images/small/Ztones/tile.lairBlock/4.png deleted file mode 100644 index 5cc7c6ffe0..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/5.png b/front/public/images/small/Ztones/tile.lairBlock/5.png deleted file mode 100644 index c0c7c9edb4..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/6.png b/front/public/images/small/Ztones/tile.lairBlock/6.png deleted file mode 100644 index ad7a4adfdb..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/7.png b/front/public/images/small/Ztones/tile.lairBlock/7.png deleted file mode 100644 index e571a5f691..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/8.png b/front/public/images/small/Ztones/tile.lairBlock/8.png deleted file mode 100644 index ba7b407480..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.lairBlock/9.png b/front/public/images/small/Ztones/tile.lairBlock/9.png deleted file mode 100644 index 9576d2be83..0000000000 Binary files a/front/public/images/small/Ztones/tile.lairBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/0.png b/front/public/images/small/Ztones/tile.laveBlock/0.png deleted file mode 100644 index e0875595ac..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/1.png b/front/public/images/small/Ztones/tile.laveBlock/1.png deleted file mode 100644 index 80ce2c1685..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/10.png b/front/public/images/small/Ztones/tile.laveBlock/10.png deleted file mode 100644 index 4a4c39185e..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/11.png b/front/public/images/small/Ztones/tile.laveBlock/11.png deleted file mode 100644 index 3bf56b8a0b..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/12.png b/front/public/images/small/Ztones/tile.laveBlock/12.png deleted file mode 100644 index 2b931c8879..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/13.png b/front/public/images/small/Ztones/tile.laveBlock/13.png deleted file mode 100644 index b7a102b7f6..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/14.png b/front/public/images/small/Ztones/tile.laveBlock/14.png deleted file mode 100644 index 4d6d63f394..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/15.png b/front/public/images/small/Ztones/tile.laveBlock/15.png deleted file mode 100644 index ce19a67ee0..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/2.png b/front/public/images/small/Ztones/tile.laveBlock/2.png deleted file mode 100644 index 8a8a7d162e..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/3.png b/front/public/images/small/Ztones/tile.laveBlock/3.png deleted file mode 100644 index 34785bba0a..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/4.png b/front/public/images/small/Ztones/tile.laveBlock/4.png deleted file mode 100644 index cdff310a83..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/5.png b/front/public/images/small/Ztones/tile.laveBlock/5.png deleted file mode 100644 index c41a9d4a20..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/6.png b/front/public/images/small/Ztones/tile.laveBlock/6.png deleted file mode 100644 index 409e4b2f06..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/7.png b/front/public/images/small/Ztones/tile.laveBlock/7.png deleted file mode 100644 index 71648df55a..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/8.png b/front/public/images/small/Ztones/tile.laveBlock/8.png deleted file mode 100644 index b38ba8741e..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.laveBlock/9.png b/front/public/images/small/Ztones/tile.laveBlock/9.png deleted file mode 100644 index 33ac3e512f..0000000000 Binary files a/front/public/images/small/Ztones/tile.laveBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/0.png b/front/public/images/small/Ztones/tile.mintBlock/0.png deleted file mode 100644 index 5b8eeeecb1..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/1.png b/front/public/images/small/Ztones/tile.mintBlock/1.png deleted file mode 100644 index 92952dfb12..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/10.png b/front/public/images/small/Ztones/tile.mintBlock/10.png deleted file mode 100644 index 15d1949f5b..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/11.png b/front/public/images/small/Ztones/tile.mintBlock/11.png deleted file mode 100644 index 93a22b5ab2..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/12.png b/front/public/images/small/Ztones/tile.mintBlock/12.png deleted file mode 100644 index 5cb53c892e..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/13.png b/front/public/images/small/Ztones/tile.mintBlock/13.png deleted file mode 100644 index d11712229c..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/14.png b/front/public/images/small/Ztones/tile.mintBlock/14.png deleted file mode 100644 index 89d74913b5..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/15.png b/front/public/images/small/Ztones/tile.mintBlock/15.png deleted file mode 100644 index ca64f8722f..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/2.png b/front/public/images/small/Ztones/tile.mintBlock/2.png deleted file mode 100644 index 79c4ed40bc..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/3.png b/front/public/images/small/Ztones/tile.mintBlock/3.png deleted file mode 100644 index 00e8dde04f..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/4.png b/front/public/images/small/Ztones/tile.mintBlock/4.png deleted file mode 100644 index b3c4e937c1..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/5.png b/front/public/images/small/Ztones/tile.mintBlock/5.png deleted file mode 100644 index 2e272aba8f..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/6.png b/front/public/images/small/Ztones/tile.mintBlock/6.png deleted file mode 100644 index 619d009390..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/7.png b/front/public/images/small/Ztones/tile.mintBlock/7.png deleted file mode 100644 index 2b498ebb85..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/8.png b/front/public/images/small/Ztones/tile.mintBlock/8.png deleted file mode 100644 index c69cc5c618..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mintBlock/9.png b/front/public/images/small/Ztones/tile.mintBlock/9.png deleted file mode 100644 index a3bad97297..0000000000 Binary files a/front/public/images/small/Ztones/tile.mintBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/0.png b/front/public/images/small/Ztones/tile.mystBlock/0.png deleted file mode 100644 index d23ebe3ac5..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/1.png b/front/public/images/small/Ztones/tile.mystBlock/1.png deleted file mode 100644 index f92227e0a0..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/10.png b/front/public/images/small/Ztones/tile.mystBlock/10.png deleted file mode 100644 index c6d7a6c92b..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/11.png b/front/public/images/small/Ztones/tile.mystBlock/11.png deleted file mode 100644 index a54ea1c657..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/12.png b/front/public/images/small/Ztones/tile.mystBlock/12.png deleted file mode 100644 index 895dff0080..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/13.png b/front/public/images/small/Ztones/tile.mystBlock/13.png deleted file mode 100644 index 2073d5d13b..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/14.png b/front/public/images/small/Ztones/tile.mystBlock/14.png deleted file mode 100644 index 87ec2b54a0..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/15.png b/front/public/images/small/Ztones/tile.mystBlock/15.png deleted file mode 100644 index 39149c7f29..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/2.png b/front/public/images/small/Ztones/tile.mystBlock/2.png deleted file mode 100644 index ce6ba8f5fe..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/3.png b/front/public/images/small/Ztones/tile.mystBlock/3.png deleted file mode 100644 index 26a891b676..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/4.png b/front/public/images/small/Ztones/tile.mystBlock/4.png deleted file mode 100644 index 874df75f28..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/5.png b/front/public/images/small/Ztones/tile.mystBlock/5.png deleted file mode 100644 index 9f08333339..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/6.png b/front/public/images/small/Ztones/tile.mystBlock/6.png deleted file mode 100644 index f4308d3296..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/7.png b/front/public/images/small/Ztones/tile.mystBlock/7.png deleted file mode 100644 index 12d3f84850..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/8.png b/front/public/images/small/Ztones/tile.mystBlock/8.png deleted file mode 100644 index 6a4f4c5630..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.mystBlock/9.png b/front/public/images/small/Ztones/tile.mystBlock/9.png deleted file mode 100644 index c95b6fc0c7..0000000000 Binary files a/front/public/images/small/Ztones/tile.mystBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/0.png b/front/public/images/small/Ztones/tile.redsBlock/0.png deleted file mode 100644 index 5a17eea174..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/1.png b/front/public/images/small/Ztones/tile.redsBlock/1.png deleted file mode 100644 index f83eea1afd..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/10.png b/front/public/images/small/Ztones/tile.redsBlock/10.png deleted file mode 100644 index 1e9bdc36e9..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/11.png b/front/public/images/small/Ztones/tile.redsBlock/11.png deleted file mode 100644 index f49c47ed90..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/12.png b/front/public/images/small/Ztones/tile.redsBlock/12.png deleted file mode 100644 index 8ec2511832..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/13.png b/front/public/images/small/Ztones/tile.redsBlock/13.png deleted file mode 100644 index 3944bafc5e..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/14.png b/front/public/images/small/Ztones/tile.redsBlock/14.png deleted file mode 100644 index 505bc7205b..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/15.png b/front/public/images/small/Ztones/tile.redsBlock/15.png deleted file mode 100644 index cb631180c1..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/2.png b/front/public/images/small/Ztones/tile.redsBlock/2.png deleted file mode 100644 index c9f1681edb..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/3.png b/front/public/images/small/Ztones/tile.redsBlock/3.png deleted file mode 100644 index 878a3c91f3..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/4.png b/front/public/images/small/Ztones/tile.redsBlock/4.png deleted file mode 100644 index 541e1bbfec..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/5.png b/front/public/images/small/Ztones/tile.redsBlock/5.png deleted file mode 100644 index f4b165283d..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/6.png b/front/public/images/small/Ztones/tile.redsBlock/6.png deleted file mode 100644 index 2e26ecfb6f..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/7.png b/front/public/images/small/Ztones/tile.redsBlock/7.png deleted file mode 100644 index 2223005130..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/8.png b/front/public/images/small/Ztones/tile.redsBlock/8.png deleted file mode 100644 index 1ebcdf9b65..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.redsBlock/9.png b/front/public/images/small/Ztones/tile.redsBlock/9.png deleted file mode 100644 index 969fcf4712..0000000000 Binary files a/front/public/images/small/Ztones/tile.redsBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/0.png b/front/public/images/small/Ztones/tile.reedBlock/0.png deleted file mode 100644 index d5b12163c6..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/1.png b/front/public/images/small/Ztones/tile.reedBlock/1.png deleted file mode 100644 index fb332d7ec7..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/10.png b/front/public/images/small/Ztones/tile.reedBlock/10.png deleted file mode 100644 index d2d4ce4a94..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/11.png b/front/public/images/small/Ztones/tile.reedBlock/11.png deleted file mode 100644 index b2697dfe32..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/12.png b/front/public/images/small/Ztones/tile.reedBlock/12.png deleted file mode 100644 index 584c0189a4..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/13.png b/front/public/images/small/Ztones/tile.reedBlock/13.png deleted file mode 100644 index 2230a43de1..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/14.png b/front/public/images/small/Ztones/tile.reedBlock/14.png deleted file mode 100644 index 193626a918..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/15.png b/front/public/images/small/Ztones/tile.reedBlock/15.png deleted file mode 100644 index 13260582e1..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/2.png b/front/public/images/small/Ztones/tile.reedBlock/2.png deleted file mode 100644 index 6e672a30fb..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/3.png b/front/public/images/small/Ztones/tile.reedBlock/3.png deleted file mode 100644 index bf3017c1db..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/4.png b/front/public/images/small/Ztones/tile.reedBlock/4.png deleted file mode 100644 index 2a2282154f..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/5.png b/front/public/images/small/Ztones/tile.reedBlock/5.png deleted file mode 100644 index 2f61841b12..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/6.png b/front/public/images/small/Ztones/tile.reedBlock/6.png deleted file mode 100644 index 04e35e13d9..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/7.png b/front/public/images/small/Ztones/tile.reedBlock/7.png deleted file mode 100644 index 2ddde65a70..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/8.png b/front/public/images/small/Ztones/tile.reedBlock/8.png deleted file mode 100644 index 1494bf75aa..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.reedBlock/9.png b/front/public/images/small/Ztones/tile.reedBlock/9.png deleted file mode 100644 index c4effa30f7..0000000000 Binary files a/front/public/images/small/Ztones/tile.reedBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/0.png b/front/public/images/small/Ztones/tile.roenBlock/0.png deleted file mode 100644 index b43ed6536e..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/1.png b/front/public/images/small/Ztones/tile.roenBlock/1.png deleted file mode 100644 index 5261f47b32..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/10.png b/front/public/images/small/Ztones/tile.roenBlock/10.png deleted file mode 100644 index b57aa7ff70..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/11.png b/front/public/images/small/Ztones/tile.roenBlock/11.png deleted file mode 100644 index a51782afb1..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/12.png b/front/public/images/small/Ztones/tile.roenBlock/12.png deleted file mode 100644 index b8cc08b793..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/13.png b/front/public/images/small/Ztones/tile.roenBlock/13.png deleted file mode 100644 index 0cfa030595..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/14.png b/front/public/images/small/Ztones/tile.roenBlock/14.png deleted file mode 100644 index ca3700ebb0..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/15.png b/front/public/images/small/Ztones/tile.roenBlock/15.png deleted file mode 100644 index 84e881d73c..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/2.png b/front/public/images/small/Ztones/tile.roenBlock/2.png deleted file mode 100644 index bb2fba44b0..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/3.png b/front/public/images/small/Ztones/tile.roenBlock/3.png deleted file mode 100644 index 8decee2d95..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/4.png b/front/public/images/small/Ztones/tile.roenBlock/4.png deleted file mode 100644 index 2c263db1ca..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/5.png b/front/public/images/small/Ztones/tile.roenBlock/5.png deleted file mode 100644 index 1a6934fe1f..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/6.png b/front/public/images/small/Ztones/tile.roenBlock/6.png deleted file mode 100644 index 874973cc95..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/7.png b/front/public/images/small/Ztones/tile.roenBlock/7.png deleted file mode 100644 index bfd538e61e..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/8.png b/front/public/images/small/Ztones/tile.roenBlock/8.png deleted file mode 100644 index a74e76250f..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.roenBlock/9.png b/front/public/images/small/Ztones/tile.roenBlock/9.png deleted file mode 100644 index d079cc3efb..0000000000 Binary files a/front/public/images/small/Ztones/tile.roenBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/0.png b/front/public/images/small/Ztones/tile.solsBlock/0.png deleted file mode 100644 index cef33a798e..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/1.png b/front/public/images/small/Ztones/tile.solsBlock/1.png deleted file mode 100644 index 56a644b5b2..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/10.png b/front/public/images/small/Ztones/tile.solsBlock/10.png deleted file mode 100644 index 116a5fb21e..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/11.png b/front/public/images/small/Ztones/tile.solsBlock/11.png deleted file mode 100644 index b84c8cc9d1..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/12.png b/front/public/images/small/Ztones/tile.solsBlock/12.png deleted file mode 100644 index 5a645af519..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/13.png b/front/public/images/small/Ztones/tile.solsBlock/13.png deleted file mode 100644 index a29367d47f..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/14.png b/front/public/images/small/Ztones/tile.solsBlock/14.png deleted file mode 100644 index d3ed98cbd3..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/15.png b/front/public/images/small/Ztones/tile.solsBlock/15.png deleted file mode 100644 index a17ce35fcd..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/2.png b/front/public/images/small/Ztones/tile.solsBlock/2.png deleted file mode 100644 index 1c4f12b8d1..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/3.png b/front/public/images/small/Ztones/tile.solsBlock/3.png deleted file mode 100644 index f8454edf8d..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/4.png b/front/public/images/small/Ztones/tile.solsBlock/4.png deleted file mode 100644 index f1627a083f..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/5.png b/front/public/images/small/Ztones/tile.solsBlock/5.png deleted file mode 100644 index 7eebc3ca13..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/6.png b/front/public/images/small/Ztones/tile.solsBlock/6.png deleted file mode 100644 index 659c0c95a4..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/7.png b/front/public/images/small/Ztones/tile.solsBlock/7.png deleted file mode 100644 index 5a7723a9fd..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/8.png b/front/public/images/small/Ztones/tile.solsBlock/8.png deleted file mode 100644 index 9312a6573c..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.solsBlock/9.png b/front/public/images/small/Ztones/tile.solsBlock/9.png deleted file mode 100644 index f717a7460d..0000000000 Binary files a/front/public/images/small/Ztones/tile.solsBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/0.png b/front/public/images/small/Ztones/tile.syncBlock/0.png deleted file mode 100644 index fd49209fe6..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/1.png b/front/public/images/small/Ztones/tile.syncBlock/1.png deleted file mode 100644 index 84eb09207e..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/10.png b/front/public/images/small/Ztones/tile.syncBlock/10.png deleted file mode 100644 index 44fdbf546e..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/11.png b/front/public/images/small/Ztones/tile.syncBlock/11.png deleted file mode 100644 index 6cfd37d12c..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/12.png b/front/public/images/small/Ztones/tile.syncBlock/12.png deleted file mode 100644 index db133d2605..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/13.png b/front/public/images/small/Ztones/tile.syncBlock/13.png deleted file mode 100644 index 65eba0ee1a..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/14.png b/front/public/images/small/Ztones/tile.syncBlock/14.png deleted file mode 100644 index 6d20c336c8..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/15.png b/front/public/images/small/Ztones/tile.syncBlock/15.png deleted file mode 100644 index 57eeaab897..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/2.png b/front/public/images/small/Ztones/tile.syncBlock/2.png deleted file mode 100644 index 85c6495b63..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/3.png b/front/public/images/small/Ztones/tile.syncBlock/3.png deleted file mode 100644 index 0249c814f1..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/4.png b/front/public/images/small/Ztones/tile.syncBlock/4.png deleted file mode 100644 index 5afc60460e..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/5.png b/front/public/images/small/Ztones/tile.syncBlock/5.png deleted file mode 100644 index 9e1db0e92c..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/6.png b/front/public/images/small/Ztones/tile.syncBlock/6.png deleted file mode 100644 index 202f12334a..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/7.png b/front/public/images/small/Ztones/tile.syncBlock/7.png deleted file mode 100644 index 5d8c8f7b52..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/8.png b/front/public/images/small/Ztones/tile.syncBlock/8.png deleted file mode 100644 index f90afe26d9..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.syncBlock/9.png b/front/public/images/small/Ztones/tile.syncBlock/9.png deleted file mode 100644 index dd2300eeaf..0000000000 Binary files a/front/public/images/small/Ztones/tile.syncBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/0.png b/front/public/images/small/Ztones/tile.tankBlock/0.png deleted file mode 100644 index f9e79512b0..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/1.png b/front/public/images/small/Ztones/tile.tankBlock/1.png deleted file mode 100644 index 2a07800b30..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/10.png b/front/public/images/small/Ztones/tile.tankBlock/10.png deleted file mode 100644 index 95596d0575..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/11.png b/front/public/images/small/Ztones/tile.tankBlock/11.png deleted file mode 100644 index 341688ade9..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/12.png b/front/public/images/small/Ztones/tile.tankBlock/12.png deleted file mode 100644 index 37ccd0f43d..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/13.png b/front/public/images/small/Ztones/tile.tankBlock/13.png deleted file mode 100644 index 9676862483..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/14.png b/front/public/images/small/Ztones/tile.tankBlock/14.png deleted file mode 100644 index 74c48ba32a..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/15.png b/front/public/images/small/Ztones/tile.tankBlock/15.png deleted file mode 100644 index f82c5e880a..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/2.png b/front/public/images/small/Ztones/tile.tankBlock/2.png deleted file mode 100644 index 5a28751099..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/3.png b/front/public/images/small/Ztones/tile.tankBlock/3.png deleted file mode 100644 index 092fcaf176..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/4.png b/front/public/images/small/Ztones/tile.tankBlock/4.png deleted file mode 100644 index 35f57485f8..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/5.png b/front/public/images/small/Ztones/tile.tankBlock/5.png deleted file mode 100644 index 75052b1d8a..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/6.png b/front/public/images/small/Ztones/tile.tankBlock/6.png deleted file mode 100644 index 911ac7d572..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/7.png b/front/public/images/small/Ztones/tile.tankBlock/7.png deleted file mode 100644 index 312499e4e5..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/8.png b/front/public/images/small/Ztones/tile.tankBlock/8.png deleted file mode 100644 index f7063e83ec..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.tankBlock/9.png b/front/public/images/small/Ztones/tile.tankBlock/9.png deleted file mode 100644 index c298a53250..0000000000 Binary files a/front/public/images/small/Ztones/tile.tankBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/0.png b/front/public/images/small/Ztones/tile.vectBlock/0.png deleted file mode 100644 index d892bf4f1c..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/1.png b/front/public/images/small/Ztones/tile.vectBlock/1.png deleted file mode 100644 index b4b0fff18e..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/10.png b/front/public/images/small/Ztones/tile.vectBlock/10.png deleted file mode 100644 index f18bd028cf..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/11.png b/front/public/images/small/Ztones/tile.vectBlock/11.png deleted file mode 100644 index 89acad4417..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/12.png b/front/public/images/small/Ztones/tile.vectBlock/12.png deleted file mode 100644 index 632f1d36c7..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/13.png b/front/public/images/small/Ztones/tile.vectBlock/13.png deleted file mode 100644 index 2d8d2b477d..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/14.png b/front/public/images/small/Ztones/tile.vectBlock/14.png deleted file mode 100644 index 16590d59ed..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/15.png b/front/public/images/small/Ztones/tile.vectBlock/15.png deleted file mode 100644 index 6b72c6850e..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/2.png b/front/public/images/small/Ztones/tile.vectBlock/2.png deleted file mode 100644 index 6bb445181a..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/3.png b/front/public/images/small/Ztones/tile.vectBlock/3.png deleted file mode 100644 index c2d45403d7..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/4.png b/front/public/images/small/Ztones/tile.vectBlock/4.png deleted file mode 100644 index 4d75099209..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/5.png b/front/public/images/small/Ztones/tile.vectBlock/5.png deleted file mode 100644 index bf0be5902b..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/6.png b/front/public/images/small/Ztones/tile.vectBlock/6.png deleted file mode 100644 index 48574e54aa..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/7.png b/front/public/images/small/Ztones/tile.vectBlock/7.png deleted file mode 100644 index 426f59f48c..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/8.png b/front/public/images/small/Ztones/tile.vectBlock/8.png deleted file mode 100644 index f9ab4a205d..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.vectBlock/9.png b/front/public/images/small/Ztones/tile.vectBlock/9.png deleted file mode 100644 index d81d73cc63..0000000000 Binary files a/front/public/images/small/Ztones/tile.vectBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/0.png b/front/public/images/small/Ztones/tile.venaBlock/0.png deleted file mode 100644 index 14ababc6b4..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/1.png b/front/public/images/small/Ztones/tile.venaBlock/1.png deleted file mode 100644 index eeecfc5428..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/10.png b/front/public/images/small/Ztones/tile.venaBlock/10.png deleted file mode 100644 index 267ba90007..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/11.png b/front/public/images/small/Ztones/tile.venaBlock/11.png deleted file mode 100644 index 3f4c498a18..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/12.png b/front/public/images/small/Ztones/tile.venaBlock/12.png deleted file mode 100644 index 35fc357564..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/13.png b/front/public/images/small/Ztones/tile.venaBlock/13.png deleted file mode 100644 index f2b736fbfc..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/14.png b/front/public/images/small/Ztones/tile.venaBlock/14.png deleted file mode 100644 index 4a49c5fcb2..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/15.png b/front/public/images/small/Ztones/tile.venaBlock/15.png deleted file mode 100644 index f8e410ca7b..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/2.png b/front/public/images/small/Ztones/tile.venaBlock/2.png deleted file mode 100644 index 0e653b956b..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/3.png b/front/public/images/small/Ztones/tile.venaBlock/3.png deleted file mode 100644 index 1dec3a2a6e..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/4.png b/front/public/images/small/Ztones/tile.venaBlock/4.png deleted file mode 100644 index d3d5c8046c..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/5.png b/front/public/images/small/Ztones/tile.venaBlock/5.png deleted file mode 100644 index 532d79a3a1..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/6.png b/front/public/images/small/Ztones/tile.venaBlock/6.png deleted file mode 100644 index be0d36e8b8..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/7.png b/front/public/images/small/Ztones/tile.venaBlock/7.png deleted file mode 100644 index 7abb49b78f..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/8.png b/front/public/images/small/Ztones/tile.venaBlock/8.png deleted file mode 100644 index 4a8d2ce8c4..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.venaBlock/9.png b/front/public/images/small/Ztones/tile.venaBlock/9.png deleted file mode 100644 index 1cbb374142..0000000000 Binary files a/front/public/images/small/Ztones/tile.venaBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/0.png b/front/public/images/small/Ztones/tile.zaneBlock/0.png deleted file mode 100644 index 4461833ade..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/1.png b/front/public/images/small/Ztones/tile.zaneBlock/1.png deleted file mode 100644 index cb679fc33f..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/10.png b/front/public/images/small/Ztones/tile.zaneBlock/10.png deleted file mode 100644 index f2d4d47f47..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/11.png b/front/public/images/small/Ztones/tile.zaneBlock/11.png deleted file mode 100644 index 78db07b362..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/12.png b/front/public/images/small/Ztones/tile.zaneBlock/12.png deleted file mode 100644 index 00faa3505e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/13.png b/front/public/images/small/Ztones/tile.zaneBlock/13.png deleted file mode 100644 index 5f0d9520ce..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/14.png b/front/public/images/small/Ztones/tile.zaneBlock/14.png deleted file mode 100644 index 2f6b17f4ad..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/15.png b/front/public/images/small/Ztones/tile.zaneBlock/15.png deleted file mode 100644 index 46ef19d4e3..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/2.png b/front/public/images/small/Ztones/tile.zaneBlock/2.png deleted file mode 100644 index ecc3cd929b..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/3.png b/front/public/images/small/Ztones/tile.zaneBlock/3.png deleted file mode 100644 index 29fb0252a6..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/4.png b/front/public/images/small/Ztones/tile.zaneBlock/4.png deleted file mode 100644 index 6aa7af4336..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/5.png b/front/public/images/small/Ztones/tile.zaneBlock/5.png deleted file mode 100644 index f12b8163de..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/6.png b/front/public/images/small/Ztones/tile.zaneBlock/6.png deleted file mode 100644 index 9249dcdb5c..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/7.png b/front/public/images/small/Ztones/tile.zaneBlock/7.png deleted file mode 100644 index 4935236af2..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/8.png b/front/public/images/small/Ztones/tile.zaneBlock/8.png deleted file mode 100644 index ea30d58f7e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zaneBlock/9.png b/front/public/images/small/Ztones/tile.zaneBlock/9.png deleted file mode 100644 index 47901a9e7c..0000000000 Binary files a/front/public/images/small/Ztones/tile.zaneBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/0.png b/front/public/images/small/Ztones/tile.zechBlock/0.png deleted file mode 100644 index 67351beb36..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/1.png b/front/public/images/small/Ztones/tile.zechBlock/1.png deleted file mode 100644 index d852695cd6..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/10.png b/front/public/images/small/Ztones/tile.zechBlock/10.png deleted file mode 100644 index 415df8739c..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/11.png b/front/public/images/small/Ztones/tile.zechBlock/11.png deleted file mode 100644 index 4210fc31c2..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/12.png b/front/public/images/small/Ztones/tile.zechBlock/12.png deleted file mode 100644 index 54db5fc55e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/13.png b/front/public/images/small/Ztones/tile.zechBlock/13.png deleted file mode 100644 index ec99e88209..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/14.png b/front/public/images/small/Ztones/tile.zechBlock/14.png deleted file mode 100644 index 66412cd5b3..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/15.png b/front/public/images/small/Ztones/tile.zechBlock/15.png deleted file mode 100644 index 037d8ea227..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/2.png b/front/public/images/small/Ztones/tile.zechBlock/2.png deleted file mode 100644 index d371833843..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/3.png b/front/public/images/small/Ztones/tile.zechBlock/3.png deleted file mode 100644 index acfcee32ef..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/4.png b/front/public/images/small/Ztones/tile.zechBlock/4.png deleted file mode 100644 index 32828024ac..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/5.png b/front/public/images/small/Ztones/tile.zechBlock/5.png deleted file mode 100644 index baeb7134de..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/6.png b/front/public/images/small/Ztones/tile.zechBlock/6.png deleted file mode 100644 index bd9c60c781..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/7.png b/front/public/images/small/Ztones/tile.zechBlock/7.png deleted file mode 100644 index 309de25985..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/8.png b/front/public/images/small/Ztones/tile.zechBlock/8.png deleted file mode 100644 index 58cbbe3431..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zechBlock/9.png b/front/public/images/small/Ztones/tile.zechBlock/9.png deleted file mode 100644 index 631aec0315..0000000000 Binary files a/front/public/images/small/Ztones/tile.zechBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/0.png b/front/public/images/small/Ztones/tile.zestBlock/0.png deleted file mode 100644 index 7c653b60cc..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/1.png b/front/public/images/small/Ztones/tile.zestBlock/1.png deleted file mode 100644 index 6816db2173..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/10.png b/front/public/images/small/Ztones/tile.zestBlock/10.png deleted file mode 100644 index 86ac057798..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/11.png b/front/public/images/small/Ztones/tile.zestBlock/11.png deleted file mode 100644 index a06b1194d0..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/12.png b/front/public/images/small/Ztones/tile.zestBlock/12.png deleted file mode 100644 index f1a4f3cbda..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/13.png b/front/public/images/small/Ztones/tile.zestBlock/13.png deleted file mode 100644 index 10f38eb114..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/14.png b/front/public/images/small/Ztones/tile.zestBlock/14.png deleted file mode 100644 index eaa49d2f00..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/15.png b/front/public/images/small/Ztones/tile.zestBlock/15.png deleted file mode 100644 index 643b1ed650..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/2.png b/front/public/images/small/Ztones/tile.zestBlock/2.png deleted file mode 100644 index 0ac32052b3..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/3.png b/front/public/images/small/Ztones/tile.zestBlock/3.png deleted file mode 100644 index 5f3a12febf..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/4.png b/front/public/images/small/Ztones/tile.zestBlock/4.png deleted file mode 100644 index 59985a19d4..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/5.png b/front/public/images/small/Ztones/tile.zestBlock/5.png deleted file mode 100644 index 5ba5849f1f..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/6.png b/front/public/images/small/Ztones/tile.zestBlock/6.png deleted file mode 100644 index fe60cbce18..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/7.png b/front/public/images/small/Ztones/tile.zestBlock/7.png deleted file mode 100644 index ebea0348b1..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/8.png b/front/public/images/small/Ztones/tile.zestBlock/8.png deleted file mode 100644 index e684ad0e54..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zestBlock/9.png b/front/public/images/small/Ztones/tile.zestBlock/9.png deleted file mode 100644 index 5e297c096e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zestBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/0.png b/front/public/images/small/Ztones/tile.zetaBlock/0.png deleted file mode 100644 index 7e2cc413e5..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/1.png b/front/public/images/small/Ztones/tile.zetaBlock/1.png deleted file mode 100644 index 8132aa9c0b..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/10.png b/front/public/images/small/Ztones/tile.zetaBlock/10.png deleted file mode 100644 index d6cf88e659..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/11.png b/front/public/images/small/Ztones/tile.zetaBlock/11.png deleted file mode 100644 index acc3139eb0..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/12.png b/front/public/images/small/Ztones/tile.zetaBlock/12.png deleted file mode 100644 index d6701e79a8..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/13.png b/front/public/images/small/Ztones/tile.zetaBlock/13.png deleted file mode 100644 index c9ccce37aa..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/14.png b/front/public/images/small/Ztones/tile.zetaBlock/14.png deleted file mode 100644 index 70ba4ad41a..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/15.png b/front/public/images/small/Ztones/tile.zetaBlock/15.png deleted file mode 100644 index 0203193dc9..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/2.png b/front/public/images/small/Ztones/tile.zetaBlock/2.png deleted file mode 100644 index 0245a9a833..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/3.png b/front/public/images/small/Ztones/tile.zetaBlock/3.png deleted file mode 100644 index c929d69c68..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/4.png b/front/public/images/small/Ztones/tile.zetaBlock/4.png deleted file mode 100644 index 269f3dbfa4..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/5.png b/front/public/images/small/Ztones/tile.zetaBlock/5.png deleted file mode 100644 index 15ddc0bc3a..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/6.png b/front/public/images/small/Ztones/tile.zetaBlock/6.png deleted file mode 100644 index 20928b6c56..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/7.png b/front/public/images/small/Ztones/tile.zetaBlock/7.png deleted file mode 100644 index 6d1d701602..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/8.png b/front/public/images/small/Ztones/tile.zetaBlock/8.png deleted file mode 100644 index 8b8473f019..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zetaBlock/9.png b/front/public/images/small/Ztones/tile.zetaBlock/9.png deleted file mode 100644 index d9434d6faf..0000000000 Binary files a/front/public/images/small/Ztones/tile.zetaBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/0.png b/front/public/images/small/Ztones/tile.zionBlock/0.png deleted file mode 100644 index f9019d6ac4..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/1.png b/front/public/images/small/Ztones/tile.zionBlock/1.png deleted file mode 100644 index 37836a0082..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/10.png b/front/public/images/small/Ztones/tile.zionBlock/10.png deleted file mode 100644 index fc80c2da29..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/11.png b/front/public/images/small/Ztones/tile.zionBlock/11.png deleted file mode 100644 index 44f6ecf9b3..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/12.png b/front/public/images/small/Ztones/tile.zionBlock/12.png deleted file mode 100644 index f9273efbfb..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/13.png b/front/public/images/small/Ztones/tile.zionBlock/13.png deleted file mode 100644 index f44f96ce0a..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/14.png b/front/public/images/small/Ztones/tile.zionBlock/14.png deleted file mode 100644 index 06c468905a..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/15.png b/front/public/images/small/Ztones/tile.zionBlock/15.png deleted file mode 100644 index 2c5cbe10a2..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/2.png b/front/public/images/small/Ztones/tile.zionBlock/2.png deleted file mode 100644 index dc5028df03..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/3.png b/front/public/images/small/Ztones/tile.zionBlock/3.png deleted file mode 100644 index 90a8cdc25d..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/4.png b/front/public/images/small/Ztones/tile.zionBlock/4.png deleted file mode 100644 index f5f8c17c67..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/5.png b/front/public/images/small/Ztones/tile.zionBlock/5.png deleted file mode 100644 index 280deb5444..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/6.png b/front/public/images/small/Ztones/tile.zionBlock/6.png deleted file mode 100644 index 49d1019654..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/7.png b/front/public/images/small/Ztones/tile.zionBlock/7.png deleted file mode 100644 index abf8d12bac..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/8.png b/front/public/images/small/Ztones/tile.zionBlock/8.png deleted file mode 100644 index 0d32d6dfd9..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zionBlock/9.png b/front/public/images/small/Ztones/tile.zionBlock/9.png deleted file mode 100644 index 04be5a7811..0000000000 Binary files a/front/public/images/small/Ztones/tile.zionBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/0.png b/front/public/images/small/Ztones/tile.zkulBlock/0.png deleted file mode 100644 index fde1475e4b..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/1.png b/front/public/images/small/Ztones/tile.zkulBlock/1.png deleted file mode 100644 index 47dae7a22b..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/10.png b/front/public/images/small/Ztones/tile.zkulBlock/10.png deleted file mode 100644 index 438216b4d8..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/11.png b/front/public/images/small/Ztones/tile.zkulBlock/11.png deleted file mode 100644 index de46cdd9c5..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/12.png b/front/public/images/small/Ztones/tile.zkulBlock/12.png deleted file mode 100644 index 6fc99e32ce..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/13.png b/front/public/images/small/Ztones/tile.zkulBlock/13.png deleted file mode 100644 index 613044ad6d..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/14.png b/front/public/images/small/Ztones/tile.zkulBlock/14.png deleted file mode 100644 index 2391cc3940..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/15.png b/front/public/images/small/Ztones/tile.zkulBlock/15.png deleted file mode 100644 index 691aee7cc4..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/2.png b/front/public/images/small/Ztones/tile.zkulBlock/2.png deleted file mode 100644 index 9228e7c176..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/3.png b/front/public/images/small/Ztones/tile.zkulBlock/3.png deleted file mode 100644 index 8e8584dd05..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/4.png b/front/public/images/small/Ztones/tile.zkulBlock/4.png deleted file mode 100644 index a2afc2f91d..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/5.png b/front/public/images/small/Ztones/tile.zkulBlock/5.png deleted file mode 100644 index 8dd4105077..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/6.png b/front/public/images/small/Ztones/tile.zkulBlock/6.png deleted file mode 100644 index 0bda50ddee..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/7.png b/front/public/images/small/Ztones/tile.zkulBlock/7.png deleted file mode 100644 index 9c1076f4fb..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/8.png b/front/public/images/small/Ztones/tile.zkulBlock/8.png deleted file mode 100644 index 265936e048..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zkulBlock/9.png b/front/public/images/small/Ztones/tile.zkulBlock/9.png deleted file mode 100644 index e5892d1ef3..0000000000 Binary files a/front/public/images/small/Ztones/tile.zkulBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/0.png b/front/public/images/small/Ztones/tile.zoeaBlock/0.png deleted file mode 100644 index 1ef2c0f525..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/1.png b/front/public/images/small/Ztones/tile.zoeaBlock/1.png deleted file mode 100644 index dc14de8adb..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/10.png b/front/public/images/small/Ztones/tile.zoeaBlock/10.png deleted file mode 100644 index b0169a63dd..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/11.png b/front/public/images/small/Ztones/tile.zoeaBlock/11.png deleted file mode 100644 index cf9146d186..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/12.png b/front/public/images/small/Ztones/tile.zoeaBlock/12.png deleted file mode 100644 index 2e12fc91c5..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/13.png b/front/public/images/small/Ztones/tile.zoeaBlock/13.png deleted file mode 100644 index 4c3ad47bee..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/14.png b/front/public/images/small/Ztones/tile.zoeaBlock/14.png deleted file mode 100644 index 0e28c8bf0f..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/15.png b/front/public/images/small/Ztones/tile.zoeaBlock/15.png deleted file mode 100644 index 269ca028be..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/2.png b/front/public/images/small/Ztones/tile.zoeaBlock/2.png deleted file mode 100644 index f99a2d9476..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/3.png b/front/public/images/small/Ztones/tile.zoeaBlock/3.png deleted file mode 100644 index e66f27b904..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/4.png b/front/public/images/small/Ztones/tile.zoeaBlock/4.png deleted file mode 100644 index 360ea1c59d..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/5.png b/front/public/images/small/Ztones/tile.zoeaBlock/5.png deleted file mode 100644 index f532982ee3..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/6.png b/front/public/images/small/Ztones/tile.zoeaBlock/6.png deleted file mode 100644 index 67b41c5744..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/7.png b/front/public/images/small/Ztones/tile.zoeaBlock/7.png deleted file mode 100644 index bd5afa3215..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/8.png b/front/public/images/small/Ztones/tile.zoeaBlock/8.png deleted file mode 100644 index b22893c4bc..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoeaBlock/9.png b/front/public/images/small/Ztones/tile.zoeaBlock/9.png deleted file mode 100644 index 1355298e2d..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoeaBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/0.png b/front/public/images/small/Ztones/tile.zomeBlock/0.png deleted file mode 100644 index 477bcd832e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/1.png b/front/public/images/small/Ztones/tile.zomeBlock/1.png deleted file mode 100644 index c9e61e45b4..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/10.png b/front/public/images/small/Ztones/tile.zomeBlock/10.png deleted file mode 100644 index 0c2d413b43..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/11.png b/front/public/images/small/Ztones/tile.zomeBlock/11.png deleted file mode 100644 index 355b4de6f1..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/12.png b/front/public/images/small/Ztones/tile.zomeBlock/12.png deleted file mode 100644 index 161827f5ff..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/13.png b/front/public/images/small/Ztones/tile.zomeBlock/13.png deleted file mode 100644 index c70c73fef7..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/14.png b/front/public/images/small/Ztones/tile.zomeBlock/14.png deleted file mode 100644 index ce3445d368..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/15.png b/front/public/images/small/Ztones/tile.zomeBlock/15.png deleted file mode 100644 index efb3af41cd..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/2.png b/front/public/images/small/Ztones/tile.zomeBlock/2.png deleted file mode 100644 index faff103665..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/3.png b/front/public/images/small/Ztones/tile.zomeBlock/3.png deleted file mode 100644 index 3af4b7a98c..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/4.png b/front/public/images/small/Ztones/tile.zomeBlock/4.png deleted file mode 100644 index 3ee1a393ec..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/5.png b/front/public/images/small/Ztones/tile.zomeBlock/5.png deleted file mode 100644 index 4347d02292..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/6.png b/front/public/images/small/Ztones/tile.zomeBlock/6.png deleted file mode 100644 index 539cdac2c2..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/7.png b/front/public/images/small/Ztones/tile.zomeBlock/7.png deleted file mode 100644 index c19d53126b..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/8.png b/front/public/images/small/Ztones/tile.zomeBlock/8.png deleted file mode 100644 index 74b0bf7145..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zomeBlock/9.png b/front/public/images/small/Ztones/tile.zomeBlock/9.png deleted file mode 100644 index 0b0b00cf3f..0000000000 Binary files a/front/public/images/small/Ztones/tile.zomeBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/0.png b/front/public/images/small/Ztones/tile.zoneBlock/0.png deleted file mode 100644 index e77cd820c2..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/1.png b/front/public/images/small/Ztones/tile.zoneBlock/1.png deleted file mode 100644 index 99fba690a7..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/10.png b/front/public/images/small/Ztones/tile.zoneBlock/10.png deleted file mode 100644 index a1420dfc8a..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/11.png b/front/public/images/small/Ztones/tile.zoneBlock/11.png deleted file mode 100644 index b356f4df1b..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/12.png b/front/public/images/small/Ztones/tile.zoneBlock/12.png deleted file mode 100644 index 60bd86d732..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/13.png b/front/public/images/small/Ztones/tile.zoneBlock/13.png deleted file mode 100644 index aa9d570ec1..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/14.png b/front/public/images/small/Ztones/tile.zoneBlock/14.png deleted file mode 100644 index eb2eb23aa8..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/15.png b/front/public/images/small/Ztones/tile.zoneBlock/15.png deleted file mode 100644 index 2ea04178ff..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/2.png b/front/public/images/small/Ztones/tile.zoneBlock/2.png deleted file mode 100644 index 6c1df1c132..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/3.png b/front/public/images/small/Ztones/tile.zoneBlock/3.png deleted file mode 100644 index eb3d2c6c1e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/4.png b/front/public/images/small/Ztones/tile.zoneBlock/4.png deleted file mode 100644 index 56c0e34fab..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/5.png b/front/public/images/small/Ztones/tile.zoneBlock/5.png deleted file mode 100644 index 0146fba999..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/6.png b/front/public/images/small/Ztones/tile.zoneBlock/6.png deleted file mode 100644 index 1956626ec9..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/7.png b/front/public/images/small/Ztones/tile.zoneBlock/7.png deleted file mode 100644 index 5d39297d4c..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/8.png b/front/public/images/small/Ztones/tile.zoneBlock/8.png deleted file mode 100644 index 61ba5e84b1..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zoneBlock/9.png b/front/public/images/small/Ztones/tile.zoneBlock/9.png deleted file mode 100644 index 909a68d131..0000000000 Binary files a/front/public/images/small/Ztones/tile.zoneBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/0.png b/front/public/images/small/Ztones/tile.zorgBlock/0.png deleted file mode 100644 index 9c788352e2..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/1.png b/front/public/images/small/Ztones/tile.zorgBlock/1.png deleted file mode 100644 index c559adae97..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/10.png b/front/public/images/small/Ztones/tile.zorgBlock/10.png deleted file mode 100644 index ce41434912..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/11.png b/front/public/images/small/Ztones/tile.zorgBlock/11.png deleted file mode 100644 index ef6126360e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/12.png b/front/public/images/small/Ztones/tile.zorgBlock/12.png deleted file mode 100644 index c44dc1c6de..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/13.png b/front/public/images/small/Ztones/tile.zorgBlock/13.png deleted file mode 100644 index 3e82315557..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/14.png b/front/public/images/small/Ztones/tile.zorgBlock/14.png deleted file mode 100644 index 20a020b36a..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/15.png b/front/public/images/small/Ztones/tile.zorgBlock/15.png deleted file mode 100644 index cd62859bbc..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/2.png b/front/public/images/small/Ztones/tile.zorgBlock/2.png deleted file mode 100644 index f8077c67bc..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/3.png b/front/public/images/small/Ztones/tile.zorgBlock/3.png deleted file mode 100644 index 32be07f065..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/4.png b/front/public/images/small/Ztones/tile.zorgBlock/4.png deleted file mode 100644 index 6593b3be80..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/5.png b/front/public/images/small/Ztones/tile.zorgBlock/5.png deleted file mode 100644 index 6f99475ea5..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/6.png b/front/public/images/small/Ztones/tile.zorgBlock/6.png deleted file mode 100644 index 61ed2e2d2c..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/7.png b/front/public/images/small/Ztones/tile.zorgBlock/7.png deleted file mode 100644 index 74c8d70442..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/8.png b/front/public/images/small/Ztones/tile.zorgBlock/8.png deleted file mode 100644 index d048e43495..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zorgBlock/9.png b/front/public/images/small/Ztones/tile.zorgBlock/9.png deleted file mode 100644 index 316c3db211..0000000000 Binary files a/front/public/images/small/Ztones/tile.zorgBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/0.png b/front/public/images/small/Ztones/tile.ztylBlock/0.png deleted file mode 100644 index d271d2aba8..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/1.png b/front/public/images/small/Ztones/tile.ztylBlock/1.png deleted file mode 100644 index eb9b4d61b2..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/10.png b/front/public/images/small/Ztones/tile.ztylBlock/10.png deleted file mode 100644 index 3f3cd0e809..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/11.png b/front/public/images/small/Ztones/tile.ztylBlock/11.png deleted file mode 100644 index a368967ff3..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/12.png b/front/public/images/small/Ztones/tile.ztylBlock/12.png deleted file mode 100644 index 152a6f0819..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/13.png b/front/public/images/small/Ztones/tile.ztylBlock/13.png deleted file mode 100644 index 63f2963d7c..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/14.png b/front/public/images/small/Ztones/tile.ztylBlock/14.png deleted file mode 100644 index 303169154d..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/15.png b/front/public/images/small/Ztones/tile.ztylBlock/15.png deleted file mode 100644 index b45c9b6d26..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/2.png b/front/public/images/small/Ztones/tile.ztylBlock/2.png deleted file mode 100644 index 4bccdd7afe..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/3.png b/front/public/images/small/Ztones/tile.ztylBlock/3.png deleted file mode 100644 index 85a856e7a3..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/4.png b/front/public/images/small/Ztones/tile.ztylBlock/4.png deleted file mode 100644 index 2be0a618a5..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/5.png b/front/public/images/small/Ztones/tile.ztylBlock/5.png deleted file mode 100644 index 1fbd3e23ba..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/6.png b/front/public/images/small/Ztones/tile.ztylBlock/6.png deleted file mode 100644 index 006b36a971..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/7.png b/front/public/images/small/Ztones/tile.ztylBlock/7.png deleted file mode 100644 index bad4580593..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/8.png b/front/public/images/small/Ztones/tile.ztylBlock/8.png deleted file mode 100644 index 9bb6c96729..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.ztylBlock/9.png b/front/public/images/small/Ztones/tile.ztylBlock/9.png deleted file mode 100644 index 299971c3e0..0000000000 Binary files a/front/public/images/small/Ztones/tile.ztylBlock/9.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/0.png b/front/public/images/small/Ztones/tile.zythBlock/0.png deleted file mode 100644 index bc46e996e6..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/0.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/1.png b/front/public/images/small/Ztones/tile.zythBlock/1.png deleted file mode 100644 index e2f9a04239..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/1.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/10.png b/front/public/images/small/Ztones/tile.zythBlock/10.png deleted file mode 100644 index ee60f28c8e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/10.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/11.png b/front/public/images/small/Ztones/tile.zythBlock/11.png deleted file mode 100644 index 9577876368..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/11.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/12.png b/front/public/images/small/Ztones/tile.zythBlock/12.png deleted file mode 100644 index 17119b547e..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/12.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/13.png b/front/public/images/small/Ztones/tile.zythBlock/13.png deleted file mode 100644 index 8abe5cc361..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/13.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/14.png b/front/public/images/small/Ztones/tile.zythBlock/14.png deleted file mode 100644 index 46fefe0623..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/14.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/15.png b/front/public/images/small/Ztones/tile.zythBlock/15.png deleted file mode 100644 index 5a27b26b99..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/15.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/2.png b/front/public/images/small/Ztones/tile.zythBlock/2.png deleted file mode 100644 index e4bc045ddc..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/2.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/3.png b/front/public/images/small/Ztones/tile.zythBlock/3.png deleted file mode 100644 index f60e945bf0..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/3.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/4.png b/front/public/images/small/Ztones/tile.zythBlock/4.png deleted file mode 100644 index 771e32a435..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/4.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/5.png b/front/public/images/small/Ztones/tile.zythBlock/5.png deleted file mode 100644 index 15e5363869..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/5.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/6.png b/front/public/images/small/Ztones/tile.zythBlock/6.png deleted file mode 100644 index 4185f1ee15..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/6.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/7.png b/front/public/images/small/Ztones/tile.zythBlock/7.png deleted file mode 100644 index 8c632240a4..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/7.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/8.png b/front/public/images/small/Ztones/tile.zythBlock/8.png deleted file mode 100644 index 2174cc33c1..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/8.png and /dev/null differ diff --git a/front/public/images/small/Ztones/tile.zythBlock/9.png b/front/public/images/small/Ztones/tile.zythBlock/9.png deleted file mode 100644 index 2311d2a19d..0000000000 Binary files a/front/public/images/small/Ztones/tile.zythBlock/9.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/0.png b/front/public/images/small/adventurebackpack/adventureBackpack/0.png deleted file mode 100644 index 7aa36ae499..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/1.png b/front/public/images/small/adventurebackpack/adventureBackpack/1.png deleted file mode 100644 index 53d97242c4..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/1.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/10.png b/front/public/images/small/adventurebackpack/adventureBackpack/10.png deleted file mode 100644 index b784f2e9a3..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/10.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/11.png b/front/public/images/small/adventurebackpack/adventureBackpack/11.png deleted file mode 100644 index 82c51abd48..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/11.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/12.png b/front/public/images/small/adventurebackpack/adventureBackpack/12.png deleted file mode 100644 index c77c30d99b..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/12.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/13.png b/front/public/images/small/adventurebackpack/adventureBackpack/13.png deleted file mode 100644 index d01b78e443..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/13.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/14.png b/front/public/images/small/adventurebackpack/adventureBackpack/14.png deleted file mode 100644 index 98c1c7f1f3..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/14.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/15.png b/front/public/images/small/adventurebackpack/adventureBackpack/15.png deleted file mode 100644 index 3f651f6fdc..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/15.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/16.png b/front/public/images/small/adventurebackpack/adventureBackpack/16.png deleted file mode 100644 index ed2548b269..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/16.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/17.png b/front/public/images/small/adventurebackpack/adventureBackpack/17.png deleted file mode 100644 index dcc2a8fb16..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/17.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/18.png b/front/public/images/small/adventurebackpack/adventureBackpack/18.png deleted file mode 100644 index f57a0cf4c1..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/18.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/19.png b/front/public/images/small/adventurebackpack/adventureBackpack/19.png deleted file mode 100644 index 3144ff8c6c..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/19.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/2.png b/front/public/images/small/adventurebackpack/adventureBackpack/2.png deleted file mode 100644 index 4e2cc74a9f..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/2.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/20.png b/front/public/images/small/adventurebackpack/adventureBackpack/20.png deleted file mode 100644 index 6afc0ef626..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/20.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/21.png b/front/public/images/small/adventurebackpack/adventureBackpack/21.png deleted file mode 100644 index e55e47eccd..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/21.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/22.png b/front/public/images/small/adventurebackpack/adventureBackpack/22.png deleted file mode 100644 index dcacf8aa57..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/22.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/23.png b/front/public/images/small/adventurebackpack/adventureBackpack/23.png deleted file mode 100644 index 064fdaf636..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/23.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/24.png b/front/public/images/small/adventurebackpack/adventureBackpack/24.png deleted file mode 100644 index 999e7f831b..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/24.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/25.png b/front/public/images/small/adventurebackpack/adventureBackpack/25.png deleted file mode 100644 index 3feb8eb839..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/25.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/26.png b/front/public/images/small/adventurebackpack/adventureBackpack/26.png deleted file mode 100644 index a33b15eb02..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/26.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/27.png b/front/public/images/small/adventurebackpack/adventureBackpack/27.png deleted file mode 100644 index f1135205ba..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/27.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/28.png b/front/public/images/small/adventurebackpack/adventureBackpack/28.png deleted file mode 100644 index 2c06b6655c..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/28.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/29.png b/front/public/images/small/adventurebackpack/adventureBackpack/29.png deleted file mode 100644 index 652a969933..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/29.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/3.png b/front/public/images/small/adventurebackpack/adventureBackpack/3.png deleted file mode 100644 index 6db4a57ccf..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/3.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/30.png b/front/public/images/small/adventurebackpack/adventureBackpack/30.png deleted file mode 100644 index 90f8b112cb..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/30.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/31.png b/front/public/images/small/adventurebackpack/adventureBackpack/31.png deleted file mode 100644 index 8338073327..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/31.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/32.png b/front/public/images/small/adventurebackpack/adventureBackpack/32.png deleted file mode 100644 index 283ae20a34..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/32.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/33.png b/front/public/images/small/adventurebackpack/adventureBackpack/33.png deleted file mode 100644 index ed8b31d76c..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/33.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/34.png b/front/public/images/small/adventurebackpack/adventureBackpack/34.png deleted file mode 100644 index 1840d09499..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/34.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/35.png b/front/public/images/small/adventurebackpack/adventureBackpack/35.png deleted file mode 100644 index 3503ccd568..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/35.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/36.png b/front/public/images/small/adventurebackpack/adventureBackpack/36.png deleted file mode 100644 index e42a3002b5..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/36.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/37.png b/front/public/images/small/adventurebackpack/adventureBackpack/37.png deleted file mode 100644 index 76428d8a2b..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/37.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/38.png b/front/public/images/small/adventurebackpack/adventureBackpack/38.png deleted file mode 100644 index 6a51efe1d9..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/38.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/39.png b/front/public/images/small/adventurebackpack/adventureBackpack/39.png deleted file mode 100644 index 28f24d1cc8..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/39.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/4.png b/front/public/images/small/adventurebackpack/adventureBackpack/4.png deleted file mode 100644 index b6c20fbf69..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/4.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/40.png b/front/public/images/small/adventurebackpack/adventureBackpack/40.png deleted file mode 100644 index bc04643b3a..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/40.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/41.png b/front/public/images/small/adventurebackpack/adventureBackpack/41.png deleted file mode 100644 index 8453c89322..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/41.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/42.png b/front/public/images/small/adventurebackpack/adventureBackpack/42.png deleted file mode 100644 index 63319f2dba..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/42.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/43.png b/front/public/images/small/adventurebackpack/adventureBackpack/43.png deleted file mode 100644 index ebd9238c4d..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/43.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/44.png b/front/public/images/small/adventurebackpack/adventureBackpack/44.png deleted file mode 100644 index 071bf6e16d..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/44.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/45.png b/front/public/images/small/adventurebackpack/adventureBackpack/45.png deleted file mode 100644 index 1368954216..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/45.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/46.png b/front/public/images/small/adventurebackpack/adventureBackpack/46.png deleted file mode 100644 index e919f41fcc..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/46.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/47.png b/front/public/images/small/adventurebackpack/adventureBackpack/47.png deleted file mode 100644 index 7dc6ef5c7b..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/47.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/48.png b/front/public/images/small/adventurebackpack/adventureBackpack/48.png deleted file mode 100644 index 0ffc6e300b..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/48.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/49.png b/front/public/images/small/adventurebackpack/adventureBackpack/49.png deleted file mode 100644 index fd7151272f..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/49.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/5.png b/front/public/images/small/adventurebackpack/adventureBackpack/5.png deleted file mode 100644 index 73f015d38c..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/5.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/50.png b/front/public/images/small/adventurebackpack/adventureBackpack/50.png deleted file mode 100644 index 532f483309..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/50.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/51.png b/front/public/images/small/adventurebackpack/adventureBackpack/51.png deleted file mode 100644 index 723116cd94..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/51.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/52.png b/front/public/images/small/adventurebackpack/adventureBackpack/52.png deleted file mode 100644 index c0467a82d8..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/52.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/53.png b/front/public/images/small/adventurebackpack/adventureBackpack/53.png deleted file mode 100644 index b60429f46f..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/53.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/54.png b/front/public/images/small/adventurebackpack/adventureBackpack/54.png deleted file mode 100644 index b747fe9c0e..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/54.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/55.png b/front/public/images/small/adventurebackpack/adventureBackpack/55.png deleted file mode 100644 index fd1c5afd18..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/55.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/56.png b/front/public/images/small/adventurebackpack/adventureBackpack/56.png deleted file mode 100644 index c3670e7a82..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/56.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/57.png b/front/public/images/small/adventurebackpack/adventureBackpack/57.png deleted file mode 100644 index 9f559ec63a..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/57.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/58.png b/front/public/images/small/adventurebackpack/adventureBackpack/58.png deleted file mode 100644 index 48c1b80e72..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/58.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/59.png b/front/public/images/small/adventurebackpack/adventureBackpack/59.png deleted file mode 100644 index a14e2a263e..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/59.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/6.png b/front/public/images/small/adventurebackpack/adventureBackpack/6.png deleted file mode 100644 index cc2455300d..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/6.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/60.png b/front/public/images/small/adventurebackpack/adventureBackpack/60.png deleted file mode 100644 index ab8b45cfac..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/60.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/61.png b/front/public/images/small/adventurebackpack/adventureBackpack/61.png deleted file mode 100644 index 6b056df717..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/61.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/62.png b/front/public/images/small/adventurebackpack/adventureBackpack/62.png deleted file mode 100644 index d4c140c677..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/62.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/63.png b/front/public/images/small/adventurebackpack/adventureBackpack/63.png deleted file mode 100644 index 1eaebbff30..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/63.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/64.png b/front/public/images/small/adventurebackpack/adventureBackpack/64.png deleted file mode 100644 index fd844ba239..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/64.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/65.png b/front/public/images/small/adventurebackpack/adventureBackpack/65.png deleted file mode 100644 index 8448250e34..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/65.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/66.png b/front/public/images/small/adventurebackpack/adventureBackpack/66.png deleted file mode 100644 index 413eac6e94..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/66.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/67.png b/front/public/images/small/adventurebackpack/adventureBackpack/67.png deleted file mode 100644 index 74b3e7a86d..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/67.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/68.png b/front/public/images/small/adventurebackpack/adventureBackpack/68.png deleted file mode 100644 index 3a7b6592a4..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/68.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/69.png b/front/public/images/small/adventurebackpack/adventureBackpack/69.png deleted file mode 100644 index a0b5bbb5a3..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/69.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/7.png b/front/public/images/small/adventurebackpack/adventureBackpack/7.png deleted file mode 100644 index ab2cdcb720..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/7.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/70.png b/front/public/images/small/adventurebackpack/adventureBackpack/70.png deleted file mode 100644 index 7cf2ccf49e..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/70.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/71.png b/front/public/images/small/adventurebackpack/adventureBackpack/71.png deleted file mode 100644 index 5688778126..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/71.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/72.png b/front/public/images/small/adventurebackpack/adventureBackpack/72.png deleted file mode 100644 index 9a0b11ef86..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/72.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/73.png b/front/public/images/small/adventurebackpack/adventureBackpack/73.png deleted file mode 100644 index 42746f1c56..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/73.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/74.png b/front/public/images/small/adventurebackpack/adventureBackpack/74.png deleted file mode 100644 index b9b0e2fffb..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/74.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/75.png b/front/public/images/small/adventurebackpack/adventureBackpack/75.png deleted file mode 100644 index 5f3f0db7ea..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/75.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/76.png b/front/public/images/small/adventurebackpack/adventureBackpack/76.png deleted file mode 100644 index ccdc503940..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/76.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/8.png b/front/public/images/small/adventurebackpack/adventureBackpack/8.png deleted file mode 100644 index 9dbda80ade..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/8.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureBackpack/9.png b/front/public/images/small/adventurebackpack/adventureBackpack/9.png deleted file mode 100644 index 4c01c6fd4b..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureBackpack/9.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureHat/0.png b/front/public/images/small/adventurebackpack/adventureHat/0.png deleted file mode 100644 index f605618666..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureHat/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventurePants/0.png b/front/public/images/small/adventurebackpack/adventurePants/0.png deleted file mode 100644 index 011b939cd1..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventurePants/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/adventureSuit/0.png b/front/public/images/small/adventurebackpack/adventureSuit/0.png deleted file mode 100644 index 625d54833b..0000000000 Binary files a/front/public/images/small/adventurebackpack/adventureSuit/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/1.png b/front/public/images/small/adventurebackpack/backpackComponent/1.png deleted file mode 100644 index 5420f2e25c..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/1.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/2.png b/front/public/images/small/adventurebackpack/backpackComponent/2.png deleted file mode 100644 index 56881efe6b..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/2.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/3.png b/front/public/images/small/adventurebackpack/backpackComponent/3.png deleted file mode 100644 index 3539b8644f..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/3.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/4.png b/front/public/images/small/adventurebackpack/backpackComponent/4.png deleted file mode 100644 index 2a6474c303..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/4.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/5.png b/front/public/images/small/adventurebackpack/backpackComponent/5.png deleted file mode 100644 index be27ec0e15..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/5.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/6.png b/front/public/images/small/adventurebackpack/backpackComponent/6.png deleted file mode 100644 index 1c8f80cd52..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/6.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/7.png b/front/public/images/small/adventurebackpack/backpackComponent/7.png deleted file mode 100644 index 9a10c4f191..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/7.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/8.png b/front/public/images/small/adventurebackpack/backpackComponent/8.png deleted file mode 100644 index 82a837e35f..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/8.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackComponent/9.png b/front/public/images/small/adventurebackpack/backpackComponent/9.png deleted file mode 100644 index acaff56686..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackComponent/9.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/backpackHose/0.png b/front/public/images/small/adventurebackpack/backpackHose/0.png deleted file mode 100644 index 717ba7557d..0000000000 Binary files a/front/public/images/small/adventurebackpack/backpackHose/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/blockBackpack/0.png b/front/public/images/small/adventurebackpack/blockBackpack/0.png deleted file mode 100644 index 7aa36ae499..0000000000 Binary files a/front/public/images/small/adventurebackpack/blockBackpack/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/blockCampFire/0.png b/front/public/images/small/adventurebackpack/blockCampFire/0.png deleted file mode 100644 index 4cadc38db5..0000000000 Binary files a/front/public/images/small/adventurebackpack/blockCampFire/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/blockSleepingBag/0.png b/front/public/images/small/adventurebackpack/blockSleepingBag/0.png deleted file mode 100644 index abc222750c..0000000000 Binary files a/front/public/images/small/adventurebackpack/blockSleepingBag/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/clockworkCrossbow/0.png b/front/public/images/small/adventurebackpack/clockworkCrossbow/0.png deleted file mode 100644 index 9820226993..0000000000 Binary files a/front/public/images/small/adventurebackpack/clockworkCrossbow/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/coalJetpack/0.png b/front/public/images/small/adventurebackpack/coalJetpack/0.png deleted file mode 100644 index 27f59f61a8..0000000000 Binary files a/front/public/images/small/adventurebackpack/coalJetpack/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/copterPack/0.png b/front/public/images/small/adventurebackpack/copterPack/0.png deleted file mode 100644 index 188a708124..0000000000 Binary files a/front/public/images/small/adventurebackpack/copterPack/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/machete/0.png b/front/public/images/small/adventurebackpack/machete/0.png deleted file mode 100644 index 97fcf427ea..0000000000 Binary files a/front/public/images/small/adventurebackpack/machete/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/melonJuiceBottle/0.png b/front/public/images/small/adventurebackpack/melonJuiceBottle/0.png deleted file mode 100644 index dd5870c204..0000000000 Binary files a/front/public/images/small/adventurebackpack/melonJuiceBottle/0.png and /dev/null differ diff --git a/front/public/images/small/adventurebackpack/pistonBoots/0.png b/front/public/images/small/adventurebackpack/pistonBoots/0.png deleted file mode 100644 index 155d107629..0000000000 Binary files a/front/public/images/small/adventurebackpack/pistonBoots/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/certus_quartz_tank/0.png b/front/public/images/small/ae2fc/certus_quartz_tank/0.png deleted file mode 100644 index 59d8600000..0000000000 Binary files a/front/public/images/small/ae2fc/certus_quartz_tank/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/creative_fluid_storage/0.png b/front/public/images/small/ae2fc/creative_fluid_storage/0.png deleted file mode 100644 index ac9c76d8d3..0000000000 Binary files a/front/public/images/small/ae2fc/creative_fluid_storage/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_auto_filler/0.png b/front/public/images/small/ae2fc/fluid_auto_filler/0.png deleted file mode 100644 index a87d2a7104..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_auto_filler/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_buffer/0.png b/front/public/images/small/ae2fc/fluid_buffer/0.png deleted file mode 100644 index 8a75cb8b97..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_buffer/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_discretizer/0.png b/front/public/images/small/ae2fc/fluid_discretizer/0.png deleted file mode 100644 index 5d2ab15a50..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_discretizer/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_drop/0.png b/front/public/images/small/ae2fc/fluid_drop/0.png deleted file mode 100644 index ab5a76f98e..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_drop/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_encoded_pattern/0.png b/front/public/images/small/ae2fc/fluid_encoded_pattern/0.png deleted file mode 100644 index 268bf0a770..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_encoded_pattern/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_interface/0.png b/front/public/images/small/ae2fc/fluid_interface/0.png deleted file mode 100644 index fc80ab12b3..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_interface/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_packet/0.png b/front/public/images/small/ae2fc/fluid_packet/0.png deleted file mode 100644 index c4f4e86e7e..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_packet/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_packet_decoder/0.png b/front/public/images/small/ae2fc/fluid_packet_decoder/0.png deleted file mode 100644 index 11920171c2..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_packet_decoder/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/0.png b/front/public/images/small/ae2fc/fluid_part/0.png deleted file mode 100644 index ddf80e31f1..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/1.png b/front/public/images/small/ae2fc/fluid_part/1.png deleted file mode 100644 index 4966c2c7b5..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/1.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/2.png b/front/public/images/small/ae2fc/fluid_part/2.png deleted file mode 100644 index 6a1afbe5da..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/2.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/3.png b/front/public/images/small/ae2fc/fluid_part/3.png deleted file mode 100644 index 35e738ece7..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/3.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/4.png b/front/public/images/small/ae2fc/fluid_part/4.png deleted file mode 100644 index 16366ea804..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/4.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/5.png b/front/public/images/small/ae2fc/fluid_part/5.png deleted file mode 100644 index e144cd8851..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/5.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/6.png b/front/public/images/small/ae2fc/fluid_part/6.png deleted file mode 100644 index 11981f1f43..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/6.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_part/7.png b/front/public/images/small/ae2fc/fluid_part/7.png deleted file mode 100644 index 5651f3ed67..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_part/7.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_pattern_encoder/0.png b/front/public/images/small/ae2fc/fluid_pattern_encoder/0.png deleted file mode 100644 index 7793381bdd..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_pattern_encoder/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage.quantum/0.png b/front/public/images/small/ae2fc/fluid_storage.quantum/0.png deleted file mode 100644 index f9529ad669..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage.quantum/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage.singularity/0.png b/front/public/images/small/ae2fc/fluid_storage.singularity/0.png deleted file mode 100644 index e4238beeac..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage1/0.png b/front/public/images/small/ae2fc/fluid_storage1/0.png deleted file mode 100644 index 1d1fcc0e3f..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage1/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage1024/0.png b/front/public/images/small/ae2fc/fluid_storage1024/0.png deleted file mode 100644 index 9776ce1c41..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage1024/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage16/0.png b/front/public/images/small/ae2fc/fluid_storage16/0.png deleted file mode 100644 index 252695e3d8..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage16/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage16384/0.png b/front/public/images/small/ae2fc/fluid_storage16384/0.png deleted file mode 100644 index f3217d9ec5..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage16384/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage256/0.png b/front/public/images/small/ae2fc/fluid_storage256/0.png deleted file mode 100644 index e470c3e939..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage256/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage4/0.png b/front/public/images/small/ae2fc/fluid_storage4/0.png deleted file mode 100644 index 8c476cae11..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage4/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage4096/0.png b/front/public/images/small/ae2fc/fluid_storage4096/0.png deleted file mode 100644 index 1de8b6c8d3..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage4096/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage64/0.png b/front/public/images/small/ae2fc/fluid_storage64/0.png deleted file mode 100644 index 201d6fbc4c..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage64/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage_housing/0.png b/front/public/images/small/ae2fc/fluid_storage_housing/0.png deleted file mode 100644 index 4912594504..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage_housing/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage_housing/1.png b/front/public/images/small/ae2fc/fluid_storage_housing/1.png deleted file mode 100644 index b983b01024..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage_housing/1.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage_housing/2.png b/front/public/images/small/ae2fc/fluid_storage_housing/2.png deleted file mode 100644 index 037732a877..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage_housing/2.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/fluid_storage_housing/3.png b/front/public/images/small/ae2fc/fluid_storage_housing/3.png deleted file mode 100644 index 8a5282cd5a..0000000000 Binary files a/front/public/images/small/ae2fc/fluid_storage_housing/3.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/ingredient_buffer/0.png b/front/public/images/small/ae2fc/ingredient_buffer/0.png deleted file mode 100644 index d0a4ebeed4..0000000000 Binary files a/front/public/images/small/ae2fc/ingredient_buffer/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/large_ingredient_buffer/0.png b/front/public/images/small/ae2fc/large_ingredient_buffer/0.png deleted file mode 100644 index 726111e005..0000000000 Binary files a/front/public/images/small/ae2fc/large_ingredient_buffer/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/level_maintainer/0.png b/front/public/images/small/ae2fc/level_maintainer/0.png deleted file mode 100644 index 9401ff79bf..0000000000 Binary files a/front/public/images/small/ae2fc/level_maintainer/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage1/0.png b/front/public/images/small/ae2fc/multi_fluid_storage1/0.png deleted file mode 100644 index 21e72c360c..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage1/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage1024/0.png b/front/public/images/small/ae2fc/multi_fluid_storage1024/0.png deleted file mode 100644 index 3f2d53b5cb..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage1024/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage16/0.png b/front/public/images/small/ae2fc/multi_fluid_storage16/0.png deleted file mode 100644 index 81c6087d9a..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage16/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage16384/0.png b/front/public/images/small/ae2fc/multi_fluid_storage16384/0.png deleted file mode 100644 index fd1529efb1..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage16384/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage256/0.png b/front/public/images/small/ae2fc/multi_fluid_storage256/0.png deleted file mode 100644 index 660ed6d4a2..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage256/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage4/0.png b/front/public/images/small/ae2fc/multi_fluid_storage4/0.png deleted file mode 100644 index 46a224567b..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage4/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage4096/0.png b/front/public/images/small/ae2fc/multi_fluid_storage4096/0.png deleted file mode 100644 index 842e032276..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage4096/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/multi_fluid_storage64/0.png b/front/public/images/small/ae2fc/multi_fluid_storage64/0.png deleted file mode 100644 index 75b43ea9be..0000000000 Binary files a/front/public/images/small/ae2fc/multi_fluid_storage64/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/oc_pattern_editor/0.png b/front/public/images/small/ae2fc/oc_pattern_editor/0.png deleted file mode 100644 index 7c5edc61a6..0000000000 Binary files a/front/public/images/small/ae2fc/oc_pattern_editor/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_conversion_monitor/0.png b/front/public/images/small/ae2fc/part_fluid_conversion_monitor/0.png deleted file mode 100644 index fee58b798b..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_conversion_monitor/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_export/0.png b/front/public/images/small/ae2fc/part_fluid_export/0.png deleted file mode 100644 index 61e22e6755..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_export/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_import/0.png b/front/public/images/small/ae2fc/part_fluid_import/0.png deleted file mode 100644 index 46b466ad03..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_import/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_interface/0.png b/front/public/images/small/ae2fc/part_fluid_interface/0.png deleted file mode 100644 index 3a5f198dd4..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_interface/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_level_emitter/0.png b/front/public/images/small/ae2fc/part_fluid_level_emitter/0.png deleted file mode 100644 index 0ace44e6e1..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_level_emitter/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_p2p_interface/0.png b/front/public/images/small/ae2fc/part_fluid_p2p_interface/0.png deleted file mode 100644 index a35b640d75..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_p2p_interface/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_pattern_terminal/0.png b/front/public/images/small/ae2fc/part_fluid_pattern_terminal/0.png deleted file mode 100644 index 193f6400c7..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_pattern_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_pattern_terminal_ex/0.png b/front/public/images/small/ae2fc/part_fluid_pattern_terminal_ex/0.png deleted file mode 100644 index 193f6400c7..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_pattern_terminal_ex/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_storage_bus/0.png b/front/public/images/small/ae2fc/part_fluid_storage_bus/0.png deleted file mode 100644 index 10eac3f16e..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_storage_bus/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_storage_monitor/0.png b/front/public/images/small/ae2fc/part_fluid_storage_monitor/0.png deleted file mode 100644 index fee58b798b..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_storage_monitor/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_fluid_terminal/0.png b/front/public/images/small/ae2fc/part_fluid_terminal/0.png deleted file mode 100644 index 74f8f9849a..0000000000 Binary files a/front/public/images/small/ae2fc/part_fluid_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/part_level_terminal/0.png b/front/public/images/small/ae2fc/part_level_terminal/0.png deleted file mode 100644 index 3e574281fd..0000000000 Binary files a/front/public/images/small/ae2fc/part_level_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/portable_fluid_cell/0.png b/front/public/images/small/ae2fc/portable_fluid_cell/0.png deleted file mode 100644 index 3e3ef32607..0000000000 Binary files a/front/public/images/small/ae2fc/portable_fluid_cell/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/walrus/0.png b/front/public/images/small/ae2fc/walrus/0.png deleted file mode 100644 index f6176ff7e9..0000000000 Binary files a/front/public/images/small/ae2fc/walrus/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/wireless_fluid_pattern_terminal/0.png b/front/public/images/small/ae2fc/wireless_fluid_pattern_terminal/0.png deleted file mode 100644 index 9b37af3f3b..0000000000 Binary files a/front/public/images/small/ae2fc/wireless_fluid_pattern_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/wireless_fluid_terminal/0.png b/front/public/images/small/ae2fc/wireless_fluid_terminal/0.png deleted file mode 100644 index ad5bae4b02..0000000000 Binary files a/front/public/images/small/ae2fc/wireless_fluid_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/wireless_interface_terminal/0.png b/front/public/images/small/ae2fc/wireless_interface_terminal/0.png deleted file mode 100644 index 18cac8184f..0000000000 Binary files a/front/public/images/small/ae2fc/wireless_interface_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/wireless_level_terminal/0.png b/front/public/images/small/ae2fc/wireless_level_terminal/0.png deleted file mode 100644 index 4e3abfc166..0000000000 Binary files a/front/public/images/small/ae2fc/wireless_level_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2fc/wireless_ultra_terminal/0.png b/front/public/images/small/ae2fc/wireless_ultra_terminal/0.png deleted file mode 100644 index 43f5565fff..0000000000 Binary files a/front/public/images/small/ae2fc/wireless_ultra_terminal/0.png and /dev/null differ diff --git a/front/public/images/small/ae2stuff/Encoder/0.png b/front/public/images/small/ae2stuff/Encoder/0.png deleted file mode 100644 index eeea7081e2..0000000000 Binary files a/front/public/images/small/ae2stuff/Encoder/0.png and /dev/null differ diff --git a/front/public/images/small/ae2stuff/Grower/0.png b/front/public/images/small/ae2stuff/Grower/0.png deleted file mode 100644 index f235829f2f..0000000000 Binary files a/front/public/images/small/ae2stuff/Grower/0.png and /dev/null differ diff --git a/front/public/images/small/ae2stuff/Inscriber/0.png b/front/public/images/small/ae2stuff/Inscriber/0.png deleted file mode 100644 index 49c2409a80..0000000000 Binary files a/front/public/images/small/ae2stuff/Inscriber/0.png and /dev/null differ diff --git a/front/public/images/small/ae2stuff/Visualiser/0.png b/front/public/images/small/ae2stuff/Visualiser/0.png deleted file mode 100644 index ff9962a757..0000000000 Binary files a/front/public/images/small/ae2stuff/Visualiser/0.png and /dev/null differ diff --git a/front/public/images/small/ae2stuff/Wireless/0.png b/front/public/images/small/ae2stuff/Wireless/0.png deleted file mode 100644 index 20fe2f05e3..0000000000 Binary files a/front/public/images/small/ae2stuff/Wireless/0.png and /dev/null differ diff --git a/front/public/images/small/ae2stuff/WirelessKit/0.png b/front/public/images/small/ae2stuff/WirelessKit/0.png deleted file mode 100644 index 709fffff94..0000000000 Binary files a/front/public/images/small/ae2stuff/WirelessKit/0.png and /dev/null differ diff --git a/front/public/images/small/ae2wct/boosterBG/0.png b/front/public/images/small/ae2wct/boosterBG/0.png deleted file mode 100644 index 7c81ef0629..0000000000 Binary files a/front/public/images/small/ae2wct/boosterBG/0.png and /dev/null differ diff --git a/front/public/images/small/ae2wct/infinityBoosterCard/0.png b/front/public/images/small/ae2wct/infinityBoosterCard/0.png deleted file mode 100644 index c24785632a..0000000000 Binary files a/front/public/images/small/ae2wct/infinityBoosterCard/0.png and /dev/null differ diff --git a/front/public/images/small/ae2wct/infinityBoosterIcon/0.png b/front/public/images/small/ae2wct/infinityBoosterIcon/0.png deleted file mode 100644 index c24785632a..0000000000 Binary files a/front/public/images/small/ae2wct/infinityBoosterIcon/0.png and /dev/null differ diff --git a/front/public/images/small/ae2wct/magnetCard/0.png b/front/public/images/small/ae2wct/magnetCard/0.png deleted file mode 100644 index 5d669247c5..0000000000 Binary files a/front/public/images/small/ae2wct/magnetCard/0.png and /dev/null differ diff --git a/front/public/images/small/ae2wct/wirelessCraftingTerminal/0.png b/front/public/images/small/ae2wct/wirelessCraftingTerminal/0.png deleted file mode 100644 index 3bb0f767c4..0000000000 Binary files a/front/public/images/small/ae2wct/wirelessCraftingTerminal/0.png and /dev/null differ diff --git a/front/public/images/small/alchgrate/alchgrate/0.png b/front/public/images/small/alchgrate/alchgrate/0.png deleted file mode 100644 index 6bac3c48c6..0000000000 Binary files a/front/public/images/small/alchgrate/alchgrate/0.png and /dev/null differ diff --git a/front/public/images/small/amazingtrophies/trophy/0.png b/front/public/images/small/amazingtrophies/trophy/0.png deleted file mode 100644 index 6ec035c285..0000000000 Binary files a/front/public/images/small/amazingtrophies/trophy/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.1024k/0.png b/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.1024k/0.png deleted file mode 100644 index cd53b23159..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.1024k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.16384k/0.png b/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.16384k/0.png deleted file mode 100644 index 57af359722..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.16384k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.256k/0.png b/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.256k/0.png deleted file mode 100644 index d606a1a090..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.256k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.4096k/0.png b/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.4096k/0.png deleted file mode 100644 index 60bb423363..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemAdvancedStorageCell.4096k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.16k/0.png b/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.16k/0.png deleted file mode 100644 index 4e7a8b0c20..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.16k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.1k/0.png b/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.1k/0.png deleted file mode 100644 index d80d791fea..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.1k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.4k/0.png b/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.4k/0.png deleted file mode 100644 index ab8243f97d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.4k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.64k/0.png b/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.64k/0.png deleted file mode 100644 index c7c3ef0b45..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemBasicStorageCell.64k/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemCreativeStorageCell/0.png b/front/public/images/small/appliedenergistics2/item.ItemCreativeStorageCell/0.png deleted file mode 100644 index b73dfe918f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemCreativeStorageCell/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/0.png b/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/0.png deleted file mode 100644 index 3feae409a6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/1200.png b/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/1200.png deleted file mode 100644 index b5e439a677..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/1200.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/600.png b/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/600.png deleted file mode 100644 index 38153fc5fe..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemCrystalSeed/600.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemEncodedPattern/0.png b/front/public/images/small/appliedenergistics2/item.ItemEncodedPattern/0.png deleted file mode 100644 index ebbf71b960..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemEncodedPattern/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Container/0.png b/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Container/0.png deleted file mode 100644 index f7fde91124..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Container/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Quantum/0.png b/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Quantum/0.png deleted file mode 100644 index a7f3845714..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Quantum/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Singularity/0.png b/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Singularity/0.png deleted file mode 100644 index fb3fd8f833..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemExtremeStorageCell.Singularity/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemFacade/0.png b/front/public/images/small/appliedenergistics2/item.ItemFacade/0.png deleted file mode 100644 index 9a1e371ff8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemFacade/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/1.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/1.png deleted file mode 100644 index c588b612ee..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/10.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/10.png deleted file mode 100644 index cc4fb53a15..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/10.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/11.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/11.png deleted file mode 100644 index 1f91e2f1ba..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/11.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/12.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/12.png deleted file mode 100644 index f6aa4a34d2..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/12.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/13.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/13.png deleted file mode 100644 index 446a97cb59..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/13.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/14.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/14.png deleted file mode 100644 index a9500eb7fa..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/14.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/15.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/15.png deleted file mode 100644 index 10971e8e2e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/15.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/16.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/16.png deleted file mode 100644 index 2988c22aeb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/16.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/17.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/17.png deleted file mode 100644 index 34a2c4e8da..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/17.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/18.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/18.png deleted file mode 100644 index 42ab23fa44..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/18.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/19.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/19.png deleted file mode 100644 index 3b86c050df..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/19.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/20.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/20.png deleted file mode 100644 index 0af9f23d17..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/20.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/21.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/21.png deleted file mode 100644 index a3c9ecf09b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/21.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/22.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/22.png deleted file mode 100644 index 22f9fd4316..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/22.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/23.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/23.png deleted file mode 100644 index 68e2c54e53..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/23.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/24.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/24.png deleted file mode 100644 index 11ffa85bea..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/24.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/25.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/25.png deleted file mode 100644 index 6b28dd8930..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/25.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/26.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/26.png deleted file mode 100644 index b20a71652b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/26.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/27.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/27.png deleted file mode 100644 index 9172b90d7f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/27.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/28.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/28.png deleted file mode 100644 index 748d072a9e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/28.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/29.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/29.png deleted file mode 100644 index 91f760e56d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/29.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/30.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/30.png deleted file mode 100644 index 000e60e513..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/30.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/31.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/31.png deleted file mode 100644 index 5a665c40cf..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/31.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/32.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/32.png deleted file mode 100644 index 7a4684b5df..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/32.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/33.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/33.png deleted file mode 100644 index e64fbbe9d7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/33.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/34.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/34.png deleted file mode 100644 index adc265323a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/34.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/35.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/35.png deleted file mode 100644 index 58514e69cf..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/35.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/36.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/36.png deleted file mode 100644 index 9d95e80601..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/36.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/37.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/37.png deleted file mode 100644 index b0586d1dd5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/37.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/38.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/38.png deleted file mode 100644 index 51c665459e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/38.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/39.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/39.png deleted file mode 100644 index 8cf792487e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/39.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/41.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/41.png deleted file mode 100644 index 55a9b9b2a5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/41.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/42.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/42.png deleted file mode 100644 index 384ca120e5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/42.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/43.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/43.png deleted file mode 100644 index 90b7f406aa..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/43.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/44.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/44.png deleted file mode 100644 index b8bc6452eb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/44.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/45.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/45.png deleted file mode 100644 index 694a6af113..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/45.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/47.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/47.png deleted file mode 100644 index 9c910cd3aa..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/47.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/48.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/48.png deleted file mode 100644 index 1fafd528c3..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/48.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/52.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/52.png deleted file mode 100644 index ed5c5e2b2d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/52.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/53.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/53.png deleted file mode 100644 index d3a08f82e6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/53.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/54.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/54.png deleted file mode 100644 index ce4f939a36..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/54.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/55.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/55.png deleted file mode 100644 index 30f6ef729b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/55.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/56.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/56.png deleted file mode 100644 index 1b4fe2b080..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/56.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/57.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/57.png deleted file mode 100644 index b654cfa776..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/57.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/58.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/58.png deleted file mode 100644 index d7e86e7485..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/58.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/59.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/59.png deleted file mode 100644 index b71b1ef8ea..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/59.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/6.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/6.png deleted file mode 100644 index 1e259e9e0e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/6.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/60.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/60.png deleted file mode 100644 index 604c5f6fee..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/60.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/61.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/61.png deleted file mode 100644 index 7194e76dca..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/61.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/62.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/62.png deleted file mode 100644 index 5e6867c990..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/62.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/63.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/63.png deleted file mode 100644 index fbdf6edd16..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/63.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/64.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/64.png deleted file mode 100644 index fb0979a5bd..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/64.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/65.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/65.png deleted file mode 100644 index 221806e159..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/65.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/7.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/7.png deleted file mode 100644 index 84a2d33d84..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/7.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/8.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/8.png deleted file mode 100644 index 6188e2bc12..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/8.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/9.png b/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/9.png deleted file mode 100644 index d93692c647..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiMaterial/9.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/0.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/0.png deleted file mode 100644 index 5122db7e7e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/1.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/1.png deleted file mode 100644 index fc6fa932ac..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/10.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/10.png deleted file mode 100644 index f649a57679..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/10.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/100.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/100.png deleted file mode 100644 index 0d0fada554..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/100.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/11.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/11.png deleted file mode 100644 index 38df03c16d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/11.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/12.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/12.png deleted file mode 100644 index 7f6bd54ba4..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/12.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/120.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/120.png deleted file mode 100644 index 453003ad5a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/120.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/13.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/13.png deleted file mode 100644 index 9da88f6333..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/13.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/14.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/14.png deleted file mode 100644 index 179a36deac..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/14.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/140.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/140.png deleted file mode 100644 index b0d4f155e5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/140.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/15.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/15.png deleted file mode 100644 index 4b76de442c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/15.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/16.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/16.png deleted file mode 100644 index 818b71fe01..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/16.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/160.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/160.png deleted file mode 100644 index bdfc83aa31..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/160.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/180.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/180.png deleted file mode 100644 index a7364f667d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/180.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/2.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/2.png deleted file mode 100644 index 9f9c56cbb7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/2.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/20.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/20.png deleted file mode 100644 index eb2a86792d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/20.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/200.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/200.png deleted file mode 100644 index 8983006181..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/200.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/21.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/21.png deleted file mode 100644 index f6021573a6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/21.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/22.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/22.png deleted file mode 100644 index 5eb81870ff..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/22.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/220.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/220.png deleted file mode 100644 index cdd071a5cb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/220.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/23.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/23.png deleted file mode 100644 index da49c299e6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/23.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/24.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/24.png deleted file mode 100644 index c15e870d9a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/24.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/240.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/240.png deleted file mode 100644 index 3fb55c8dcd..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/240.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/25.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/25.png deleted file mode 100644 index 046c62d8d3..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/25.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/26.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/26.png deleted file mode 100644 index 9edd6665cd..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/26.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/260.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/260.png deleted file mode 100644 index 04c5f1affc..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/260.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/27.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/27.png deleted file mode 100644 index 0e5c790ac5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/27.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/28.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/28.png deleted file mode 100644 index 3d898fd91b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/28.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/280.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/280.png deleted file mode 100644 index 0ace44e6e1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/280.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/29.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/29.png deleted file mode 100644 index 2a5124a77e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/29.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/3.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/3.png deleted file mode 100644 index 0ec5cce61c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/3.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/30.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/30.png deleted file mode 100644 index 5be25414d7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/30.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/300.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/300.png deleted file mode 100644 index 97e4c8b87b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/300.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/301.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/301.png deleted file mode 100644 index 9df373612d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/301.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/31.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/31.png deleted file mode 100644 index 871aebcd81..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/31.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/32.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/32.png deleted file mode 100644 index 952cd0e7dc..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/32.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/320.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/320.png deleted file mode 100644 index 3fcb1f5bb9..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/320.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/33.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/33.png deleted file mode 100644 index d2ea8fc3a9..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/33.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/34.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/34.png deleted file mode 100644 index 2630b0ffd4..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/34.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/340.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/340.png deleted file mode 100644 index aba6cf1105..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/340.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/35.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/35.png deleted file mode 100644 index a47a4e1275..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/35.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/36.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/36.png deleted file mode 100644 index 555dc27838..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/36.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/360.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/360.png deleted file mode 100644 index bc71b45696..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/360.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/380.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/380.png deleted file mode 100644 index 05e22a9e5a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/380.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/4.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/4.png deleted file mode 100644 index 7ff2344398..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/4.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/40.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/40.png deleted file mode 100644 index f191db0dfc..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/40.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/400.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/400.png deleted file mode 100644 index fee58b798b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/400.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/41.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/41.png deleted file mode 100644 index 481bdc00a8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/41.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/42.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/42.png deleted file mode 100644 index b290035f5e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/42.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/420.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/420.png deleted file mode 100644 index 3aed87ace4..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/420.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/43.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/43.png deleted file mode 100644 index d494452ff5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/43.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/44.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/44.png deleted file mode 100644 index 60795ecadc..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/44.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/440.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/440.png deleted file mode 100644 index f8632ecf57..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/440.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/45.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/45.png deleted file mode 100644 index a408f118e0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/45.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/46.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/46.png deleted file mode 100644 index cd1813728f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/46.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/460.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/460.png deleted file mode 100644 index 0a9153329c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/460.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/461.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/461.png deleted file mode 100644 index bdb93f1ca1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/461.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/462.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/462.png deleted file mode 100644 index 8e1c21ed29..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/462.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/463.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/463.png deleted file mode 100644 index 24a0a92d08..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/463.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/466.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/466.png deleted file mode 100644 index 6e91272fe0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/466.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/467.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/467.png deleted file mode 100644 index 3f6dc4d36e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/467.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/468.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/468.png deleted file mode 100644 index e86bf3d789..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/468.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/47.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/47.png deleted file mode 100644 index cb9320edc1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/47.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/470.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/470.png deleted file mode 100644 index 066dc2c05f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/470.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/471.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/471.png deleted file mode 100644 index 361d0bcdbf..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/471.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/48.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/48.png deleted file mode 100644 index ed2eee72e4..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/48.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/480.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/480.png deleted file mode 100644 index 22dc66a236..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/480.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/49.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/49.png deleted file mode 100644 index 34e98efda5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/49.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/5.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/5.png deleted file mode 100644 index 3116c437eb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/5.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/50.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/50.png deleted file mode 100644 index 2b13ece411..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/50.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/500.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/500.png deleted file mode 100644 index aba6cf1105..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/500.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/51.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/51.png deleted file mode 100644 index f5fb986eef..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/51.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/52.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/52.png deleted file mode 100644 index 51fdfda577..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/52.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/520.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/520.png deleted file mode 100644 index 1bed601999..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/520.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/521.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/521.png deleted file mode 100644 index 0b2e839649..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/521.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/522.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/522.png deleted file mode 100644 index 8daad4b443..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/522.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/523.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/523.png deleted file mode 100644 index e638f95311..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/523.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/524.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/524.png deleted file mode 100644 index a409f0c883..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/524.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/525.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/525.png deleted file mode 100644 index b48a4e13ac..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/525.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/526.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/526.png deleted file mode 100644 index c1ec7055bb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/526.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/527.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/527.png deleted file mode 100644 index 48ba5fcb52..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/527.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/528.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/528.png deleted file mode 100644 index 32b08b2be6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/528.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/529.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/529.png deleted file mode 100644 index d7fd6d303a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/529.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/53.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/53.png deleted file mode 100644 index 48d6a07a2f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/53.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/530.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/530.png deleted file mode 100644 index a8156e23a8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/530.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/531.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/531.png deleted file mode 100644 index aaccd85389..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/531.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/532.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/532.png deleted file mode 100644 index 012d785be8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/532.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/533.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/533.png deleted file mode 100644 index c47e7f2dac..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/533.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/534.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/534.png deleted file mode 100644 index ff8108480c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/534.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/535.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/535.png deleted file mode 100644 index 1f1c93951e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/535.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/536.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/536.png deleted file mode 100644 index acf3899687..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/536.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/54.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/54.png deleted file mode 100644 index 91be322488..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/54.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/540.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/540.png deleted file mode 100644 index 7cd265baab..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/540.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/541.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/541.png deleted file mode 100644 index 2ac6b2ad97..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/541.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/542.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/542.png deleted file mode 100644 index 576ffe5b49..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/542.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/543.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/543.png deleted file mode 100644 index 6602d1ed15..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/543.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/544.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/544.png deleted file mode 100644 index 2890894b86..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/544.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/545.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/545.png deleted file mode 100644 index d703443b8a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/545.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/546.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/546.png deleted file mode 100644 index a37d9bb4ed..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/546.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/547.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/547.png deleted file mode 100644 index be613e01c4..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/547.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/548.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/548.png deleted file mode 100644 index 53ed6eb001..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/548.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/549.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/549.png deleted file mode 100644 index ebf3454166..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/549.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/55.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/55.png deleted file mode 100644 index 39b768d8cf..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/55.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/550.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/550.png deleted file mode 100644 index 63169be24f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/550.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/551.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/551.png deleted file mode 100644 index cd2d952d09..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/551.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/552.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/552.png deleted file mode 100644 index 76b3190aec..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/552.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/553.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/553.png deleted file mode 100644 index dc82786e67..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/553.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/554.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/554.png deleted file mode 100644 index 74348a0a9a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/554.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/555.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/555.png deleted file mode 100644 index d8d86737a5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/555.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/556.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/556.png deleted file mode 100644 index 5eb3bae929..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/556.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/56.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/56.png deleted file mode 100644 index 682b8f9c43..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/56.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/560.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/560.png deleted file mode 100644 index 4cd514bc96..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/560.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/561.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/561.png deleted file mode 100644 index 1436236473..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/561.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/562.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/562.png deleted file mode 100644 index 45ce5f5137..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/562.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/563.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/563.png deleted file mode 100644 index 373394595b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/563.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/564.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/564.png deleted file mode 100644 index 663cb268dc..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/564.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/565.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/565.png deleted file mode 100644 index 55684d400c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/565.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/566.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/566.png deleted file mode 100644 index 1a3b5af5b1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/566.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/567.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/567.png deleted file mode 100644 index da773cfba1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/567.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/568.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/568.png deleted file mode 100644 index f3677d1a5a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/568.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/569.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/569.png deleted file mode 100644 index 40ef968b2d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/569.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/570.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/570.png deleted file mode 100644 index ebc3d2285f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/570.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/571.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/571.png deleted file mode 100644 index cce389a7d7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/571.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/572.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/572.png deleted file mode 100644 index db59d7db9d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/572.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/573.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/573.png deleted file mode 100644 index 212750e505..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/573.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/574.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/574.png deleted file mode 100644 index 2b5b0b56b8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/574.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/575.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/575.png deleted file mode 100644 index 7cabc914fe..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/575.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/576.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/576.png deleted file mode 100644 index d98e0f6ca7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/576.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/6.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/6.png deleted file mode 100644 index d2e12b5cba..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/6.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/60.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/60.png deleted file mode 100644 index ea41f54845..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/60.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/61.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/61.png deleted file mode 100644 index 71a3cc7fe3..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/61.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/62.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/62.png deleted file mode 100644 index 9d9adc0d02..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/62.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/63.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/63.png deleted file mode 100644 index 059755a058..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/63.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/64.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/64.png deleted file mode 100644 index 808f61e831..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/64.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/65.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/65.png deleted file mode 100644 index 2fa362d44b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/65.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/66.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/66.png deleted file mode 100644 index 42765b173b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/66.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/67.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/67.png deleted file mode 100644 index 149548ec48..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/67.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/68.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/68.png deleted file mode 100644 index 0da5a735e7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/68.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/69.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/69.png deleted file mode 100644 index a6eb2d6358..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/69.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/7.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/7.png deleted file mode 100644 index ca45d5844d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/7.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/70.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/70.png deleted file mode 100644 index e36324f30f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/70.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/71.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/71.png deleted file mode 100644 index bba8053392..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/71.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/72.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/72.png deleted file mode 100644 index aba01d43bf..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/72.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/73.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/73.png deleted file mode 100644 index 798c3c9a7b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/73.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/74.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/74.png deleted file mode 100644 index c735094233..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/74.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/75.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/75.png deleted file mode 100644 index d75c25f296..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/75.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/76.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/76.png deleted file mode 100644 index 70538a7afa..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/76.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/8.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/8.png deleted file mode 100644 index d578852a10..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/8.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/80.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/80.png deleted file mode 100644 index 3ac75d49b0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/80.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/9.png b/front/public/images/small/appliedenergistics2/item.ItemMultiPart/9.png deleted file mode 100644 index 5da30b541d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemMultiPart/9.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/0.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/0.png deleted file mode 100644 index 3ba099844b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/1.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/1.png deleted file mode 100644 index e2e93d0217..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/10.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/10.png deleted file mode 100644 index d588defba4..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/10.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/11.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/11.png deleted file mode 100644 index bbad29f121..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/11.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/12.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/12.png deleted file mode 100644 index 4104b83e85..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/12.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/13.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/13.png deleted file mode 100644 index 7838e35e29..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/13.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/14.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/14.png deleted file mode 100644 index 7395ed05d9..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/14.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/15.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/15.png deleted file mode 100644 index d8b2fa3d10..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/15.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/2.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/2.png deleted file mode 100644 index ad6c5523bb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/2.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/20.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/20.png deleted file mode 100644 index ac1ef77b38..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/20.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/21.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/21.png deleted file mode 100644 index 58175c30b2..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/21.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/22.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/22.png deleted file mode 100644 index b7b3162a6c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/22.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/23.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/23.png deleted file mode 100644 index daca0b6399..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/23.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/24.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/24.png deleted file mode 100644 index 723c4065d1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/24.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/25.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/25.png deleted file mode 100644 index cc41da3d2f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/25.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/26.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/26.png deleted file mode 100644 index 439fc12634..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/26.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/27.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/27.png deleted file mode 100644 index 0ded76e052..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/27.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/28.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/28.png deleted file mode 100644 index 3876c1045a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/28.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/29.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/29.png deleted file mode 100644 index cf22c531a2..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/29.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/3.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/3.png deleted file mode 100644 index f4fa073faf..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/3.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/30.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/30.png deleted file mode 100644 index 3966b92d55..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/30.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/31.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/31.png deleted file mode 100644 index 3b21db2e95..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/31.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/32.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/32.png deleted file mode 100644 index d80f00e0e5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/32.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/33.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/33.png deleted file mode 100644 index d6c3d4f272..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/33.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/34.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/34.png deleted file mode 100644 index 1abe2f8e2d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/34.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/35.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/35.png deleted file mode 100644 index e71bfb1380..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/35.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/4.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/4.png deleted file mode 100644 index c6e174ceea..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/4.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/5.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/5.png deleted file mode 100644 index 6fad0624ea..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/5.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/6.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/6.png deleted file mode 100644 index 51d29f25fb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/6.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/7.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/7.png deleted file mode 100644 index 5f3fec5fc1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/7.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/8.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/8.png deleted file mode 100644 index 95e0ea3c79..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/8.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/9.png b/front/public/images/small/appliedenergistics2/item.ItemPaintBall/9.png deleted file mode 100644 index fbdea4c24b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemPaintBall/9.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.128Cubed/0.png b/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.128Cubed/0.png deleted file mode 100644 index 6d857750f7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.128Cubed/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.16Cubed/0.png b/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.16Cubed/0.png deleted file mode 100644 index aff40b15c9..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.16Cubed/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.2Cubed/0.png b/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.2Cubed/0.png deleted file mode 100644 index e02d54dfe1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemSpatialStorageCell.2Cubed/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemViewCell/0.png b/front/public/images/small/appliedenergistics2/item.ItemViewCell/0.png deleted file mode 100644 index 7a3faa67ad..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemViewCell/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ItemVoidStorageCell/0.png b/front/public/images/small/appliedenergistics2/item.ItemVoidStorageCell/0.png deleted file mode 100644 index 109ed132b7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ItemVoidStorageCell/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolAdvancedNetworkTool/0.png b/front/public/images/small/appliedenergistics2/item.ToolAdvancedNetworkTool/0.png deleted file mode 100644 index 79f8a6967c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolAdvancedNetworkTool/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolBiometricCard/0.png b/front/public/images/small/appliedenergistics2/item.ToolBiometricCard/0.png deleted file mode 100644 index acbe5472fb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolBiometricCard/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzAxe/0.png b/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzAxe/0.png deleted file mode 100644 index 9b1c68bcaf..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzAxe/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzCuttingKnife/0.png b/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzCuttingKnife/0.png deleted file mode 100644 index a6bb94f3ac..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzCuttingKnife/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzHoe/0.png b/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzHoe/0.png deleted file mode 100644 index be439bb6ba..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzHoe/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzPickaxe/0.png b/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzPickaxe/0.png deleted file mode 100644 index be179cb1ce..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzSpade/0.png b/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzSpade/0.png deleted file mode 100644 index eae69007b8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzSpade/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzSword/0.png b/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzSword/0.png deleted file mode 100644 index 6033292e52..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzSword/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzWrench/0.png b/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzWrench/0.png deleted file mode 100644 index a8ac84ce8a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolCertusQuartzWrench/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolChargedStaff/0.png b/front/public/images/small/appliedenergistics2/item.ToolChargedStaff/0.png deleted file mode 100644 index 4af1ca68fe..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolChargedStaff/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolColorApplicator/0.png b/front/public/images/small/appliedenergistics2/item.ToolColorApplicator/0.png deleted file mode 100644 index fafc8b7723..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolColorApplicator/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolEntropyManipulator/0.png b/front/public/images/small/appliedenergistics2/item.ToolEntropyManipulator/0.png deleted file mode 100644 index 3ae51c2178..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolEntropyManipulator/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolMassCannon/0.png b/front/public/images/small/appliedenergistics2/item.ToolMassCannon/0.png deleted file mode 100644 index 6e15ead270..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolMassCannon/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolMemoryCard/0.png b/front/public/images/small/appliedenergistics2/item.ToolMemoryCard/0.png deleted file mode 100644 index 8123064dff..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolMemoryCard/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzAxe/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzAxe/0.png deleted file mode 100644 index ff007c314c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzAxe/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzCuttingKnife/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzCuttingKnife/0.png deleted file mode 100644 index 1026c00704..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzCuttingKnife/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzHoe/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzHoe/0.png deleted file mode 100644 index 360a79fd09..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzHoe/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzPickaxe/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzPickaxe/0.png deleted file mode 100644 index c80ba374d6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzPickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzSpade/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzSpade/0.png deleted file mode 100644 index 37caf5b986..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzSpade/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzSword/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzSword/0.png deleted file mode 100644 index 67fcd01d19..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzSword/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzWrench/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzWrench/0.png deleted file mode 100644 index 3ab5c17f20..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetherQuartzWrench/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolNetworkTool/0.png b/front/public/images/small/appliedenergistics2/item.ToolNetworkTool/0.png deleted file mode 100644 index 545d21deaa..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolNetworkTool/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolPortableCell/0.png b/front/public/images/small/appliedenergistics2/item.ToolPortableCell/0.png deleted file mode 100644 index 6ca84dc412..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolPortableCell/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolPriorityCard/0.png b/front/public/images/small/appliedenergistics2/item.ToolPriorityCard/0.png deleted file mode 100644 index c6ad19b7dd..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolPriorityCard/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/item.ToolWirelessTerminal/0.png b/front/public/images/small/appliedenergistics2/item.ToolWirelessTerminal/0.png deleted file mode 100644 index 590a1700e7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/item.ToolWirelessTerminal/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/0.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/0.png deleted file mode 100644 index f1fb7847bb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/1.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/1.png deleted file mode 100644 index ac8c9cd2fb..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/2.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/2.png deleted file mode 100644 index 08d4f1ef72..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/2.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/3.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/3.png deleted file mode 100644 index 1adbc1f927..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingStorage/3.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/0.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/0.png deleted file mode 100644 index 2113ded589..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/1.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/1.png deleted file mode 100644 index 8cbb52651c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/2.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/2.png deleted file mode 100644 index 1f0fc8e427..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/2.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/3.png b/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/3.png deleted file mode 100644 index 54af53c5e3..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockAdvancedCraftingUnit/3.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCableBus/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCableBus/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCableBus/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCellWorkbench/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCellWorkbench/0.png deleted file mode 100644 index feadaee0b0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCellWorkbench/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCharger/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCharger/0.png deleted file mode 100644 index ee525f7ad8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCharger/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockChest/0.png b/front/public/images/small/appliedenergistics2/tile.BlockChest/0.png deleted file mode 100644 index d258fa06d9..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockChest/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCondenser/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCondenser/0.png deleted file mode 100644 index ed2ed9d49a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCondenser/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockController/0.png b/front/public/images/small/appliedenergistics2/tile.BlockController/0.png deleted file mode 100644 index 4b8373498e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockController/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingMonitor/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingMonitor/0.png deleted file mode 100644 index 89c7227e3e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingMonitor/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/0.png deleted file mode 100644 index 987ba1aa97..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/1.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/1.png deleted file mode 100644 index d6ef7e26c0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/2.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/2.png deleted file mode 100644 index ad20c9454a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/2.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/3.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/3.png deleted file mode 100644 index 6acf254a52..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingStorage/3.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/0.png deleted file mode 100644 index 043fe408a0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/1.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/1.png deleted file mode 100644 index 9a2d22fe4d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/2.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/2.png deleted file mode 100644 index b6c9016d39..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/2.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/3.png b/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/3.png deleted file mode 100644 index 7349218bdc..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCraftingUnit/3.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockCreativeEnergyCell/0.png b/front/public/images/small/appliedenergistics2/tile.BlockCreativeEnergyCell/0.png deleted file mode 100644 index d5513e87f7..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockCreativeEnergyCell/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockDenseEnergyCell/0.png b/front/public/images/small/appliedenergistics2/tile.BlockDenseEnergyCell/0.png deleted file mode 100644 index ef14f4ee43..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockDenseEnergyCell/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockDrive/0.png b/front/public/images/small/appliedenergistics2/tile.BlockDrive/0.png deleted file mode 100644 index 2ce43b8997..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockDrive/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockEnergyAcceptor/0.png b/front/public/images/small/appliedenergistics2/tile.BlockEnergyAcceptor/0.png deleted file mode 100644 index eb1340e776..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockEnergyAcceptor/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockEnergyCell/0.png b/front/public/images/small/appliedenergistics2/tile.BlockEnergyCell/0.png deleted file mode 100644 index e771552247..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockEnergyCell/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockFluix/0.png b/front/public/images/small/appliedenergistics2/tile.BlockFluix/0.png deleted file mode 100644 index 5645c0bf87..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockFluix/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockIOPort/0.png b/front/public/images/small/appliedenergistics2/tile.BlockIOPort/0.png deleted file mode 100644 index e51fba8fdd..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockIOPort/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockInscriber/0.png b/front/public/images/small/appliedenergistics2/tile.BlockInscriber/0.png deleted file mode 100644 index c13e02cb25..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockInscriber/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockInterface/0.png b/front/public/images/small/appliedenergistics2/tile.BlockInterface/0.png deleted file mode 100644 index 9d292a40d0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockInterface/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockLightDetector/0.png b/front/public/images/small/appliedenergistics2/tile.BlockLightDetector/0.png deleted file mode 100644 index 043574bd28..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockLightDetector/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockMatrixFrame/0.png b/front/public/images/small/appliedenergistics2/tile.BlockMatrixFrame/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockMatrixFrame/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockMolecularAssembler/0.png b/front/public/images/small/appliedenergistics2/tile.BlockMolecularAssembler/0.png deleted file mode 100644 index f5987d3d3c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockMolecularAssembler/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockPaint/0.png b/front/public/images/small/appliedenergistics2/tile.BlockPaint/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockPaint/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockPatternOptimizationMatrix/0.png b/front/public/images/small/appliedenergistics2/tile.BlockPatternOptimizationMatrix/0.png deleted file mode 100644 index 9e0858fb9c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockPatternOptimizationMatrix/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuantumLinkChamber/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuantumLinkChamber/0.png deleted file mode 100644 index 39ca39f15b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuantumLinkChamber/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuantumRing/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuantumRing/0.png deleted file mode 100644 index 6bad6685c8..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuantumRing/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuartz/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuartz/0.png deleted file mode 100644 index 5ce18043b3..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuartz/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuartzChiseled/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuartzChiseled/0.png deleted file mode 100644 index b4570679ec..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuartzChiseled/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuartzGlass/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuartzGlass/0.png deleted file mode 100644 index 170084603d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuartzGlass/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuartzGrowthAccelerator/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuartzGrowthAccelerator/0.png deleted file mode 100644 index 376c3e4585..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuartzGrowthAccelerator/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuartzLamp/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuartzLamp/0.png deleted file mode 100644 index 170084603d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuartzLamp/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuartzPillar/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuartzPillar/0.png deleted file mode 100644 index f5bc2f7a40..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuartzPillar/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockQuartzTorch/0.png b/front/public/images/small/appliedenergistics2/tile.BlockQuartzTorch/0.png deleted file mode 100644 index 120f642698..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockQuartzTorch/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSecurity/0.png b/front/public/images/small/appliedenergistics2/tile.BlockSecurity/0.png deleted file mode 100644 index 563f65fe83..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSecurity/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSingularityCraftingStorage/0.png b/front/public/images/small/appliedenergistics2/tile.BlockSingularityCraftingStorage/0.png deleted file mode 100644 index 97d38a56f6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSingularityCraftingStorage/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSkyChest/0.png b/front/public/images/small/appliedenergistics2/tile.BlockSkyChest/0.png deleted file mode 100644 index 8c63f76a57..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSkyChest/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSkyChest/1.png b/front/public/images/small/appliedenergistics2/tile.BlockSkyChest/1.png deleted file mode 100644 index 1ae0aa9b5b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSkyChest/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSkyCompass/0.png b/front/public/images/small/appliedenergistics2/tile.BlockSkyCompass/0.png deleted file mode 100644 index 08ef4b797c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSkyCompass/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/0.png b/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/0.png deleted file mode 100644 index 95c6ad6ee4..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/1.png b/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/1.png deleted file mode 100644 index ffb2bb8740..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/1.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/2.png b/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/2.png deleted file mode 100644 index bc80b2f88a..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/2.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/3.png b/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/3.png deleted file mode 100644 index ca26f63d52..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSkyStone/3.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSpatialIOPort/0.png b/front/public/images/small/appliedenergistics2/tile.BlockSpatialIOPort/0.png deleted file mode 100644 index 6959e5f269..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSpatialIOPort/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockSpatialPylon/0.png b/front/public/images/small/appliedenergistics2/tile.BlockSpatialPylon/0.png deleted file mode 100644 index 8f2b63bf54..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockSpatialPylon/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockTinyTNT/0.png b/front/public/images/small/appliedenergistics2/tile.BlockTinyTNT/0.png deleted file mode 100644 index d1b79591e1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockTinyTNT/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockVibrationChamber/0.png b/front/public/images/small/appliedenergistics2/tile.BlockVibrationChamber/0.png deleted file mode 100644 index 0560e29dbe..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockVibrationChamber/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.BlockWireless/0.png b/front/public/images/small/appliedenergistics2/tile.BlockWireless/0.png deleted file mode 100644 index d64b7236a6..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.BlockWireless/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzSlabBlock.double/0.png deleted file mode 100644 index c3b46f97a0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzSlabBlock/0.png deleted file mode 100644 index 85ea0477d1..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzStairBlock/0.png deleted file mode 100644 index 544b19c103..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.ChiseledQuartzStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.FluixSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.FluixSlabBlock.double/0.png deleted file mode 100644 index fd89504847..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.FluixSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.FluixSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.FluixSlabBlock/0.png deleted file mode 100644 index dbcf80133c..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.FluixSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.FluixStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.FluixStairBlock/0.png deleted file mode 100644 index 7652e77f46..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.FluixStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.OreQuartz/0.png b/front/public/images/small/appliedenergistics2/tile.OreQuartz/0.png deleted file mode 100644 index 6e65072474..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.OreQuartz/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.OreQuartzCharged/0.png b/front/public/images/small/appliedenergistics2/tile.OreQuartzCharged/0.png deleted file mode 100644 index 5af9164f42..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.OreQuartzCharged/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.QuartzPillarSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.QuartzPillarSlabBlock.double/0.png deleted file mode 100644 index 1c33664966..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.QuartzPillarSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.QuartzPillarSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.QuartzPillarSlabBlock/0.png deleted file mode 100644 index b0c0aea2ff..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.QuartzPillarSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.QuartzPillarStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.QuartzPillarStairBlock/0.png deleted file mode 100644 index 7952716322..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.QuartzPillarStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.QuartzSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.QuartzSlabBlock.double/0.png deleted file mode 100644 index d3964c72a9..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.QuartzSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.QuartzSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.QuartzSlabBlock/0.png deleted file mode 100644 index 3a387c753d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.QuartzSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.QuartzStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.QuartzStairBlock/0.png deleted file mode 100644 index e9d9266e29..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.QuartzStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockSlabBlock.double/0.png deleted file mode 100644 index 037f35657b..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockSlabBlock/0.png deleted file mode 100644 index 53b50eaa31..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockStairBlock/0.png deleted file mode 100644 index da0b1ec1b0..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneBlockStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickSlabBlock.double/0.png deleted file mode 100644 index 88b723c77f..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickSlabBlock/0.png deleted file mode 100644 index 1dfeb7393e..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickStairBlock/0.png deleted file mode 100644 index c8c259c2d5..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneBrickStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneSlabBlock.double/0.png deleted file mode 100644 index 17d09e55b2..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneSlabBlock/0.png deleted file mode 100644 index f9ebc7d94d..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock.double/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock.double/0.png deleted file mode 100644 index 26034f4c22..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock.double/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock/0.png deleted file mode 100644 index cfaa171f19..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickSlabBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickStairBlock/0.png deleted file mode 100644 index dc61488132..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneSmallBrickStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/appliedenergistics2/tile.SkyStoneStairBlock/0.png b/front/public/images/small/appliedenergistics2/tile.SkyStoneStairBlock/0.png deleted file mode 100644 index f65b9d68dc..0000000000 Binary files a/front/public/images/small/appliedenergistics2/tile.SkyStoneStairBlock/0.png and /dev/null differ diff --git a/front/public/images/small/avaritiaddons/CompressedChest/0.png b/front/public/images/small/avaritiaddons/CompressedChest/0.png deleted file mode 100644 index dd52e562b5..0000000000 Binary files a/front/public/images/small/avaritiaddons/CompressedChest/0.png and /dev/null differ diff --git a/front/public/images/small/avaritiaddons/ExtremeAutoCrafter/0.png b/front/public/images/small/avaritiaddons/ExtremeAutoCrafter/0.png deleted file mode 100644 index 5baac95114..0000000000 Binary files a/front/public/images/small/avaritiaddons/ExtremeAutoCrafter/0.png and /dev/null differ diff --git a/front/public/images/small/avaritiaddons/InfinityChest/0.png b/front/public/images/small/avaritiaddons/InfinityChest/0.png deleted file mode 100644 index c7140c610b..0000000000 Binary files a/front/public/images/small/avaritiaddons/InfinityChest/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BWExpReversePumpBlock/0.png b/front/public/images/small/bartworks/BWExpReversePumpBlock/0.png deleted file mode 100644 index 75514210cb..0000000000 Binary files a/front/public/images/small/bartworks/BWExpReversePumpBlock/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BWHeatedWaterPumpBlock/0.png b/front/public/images/small/bartworks/BWHeatedWaterPumpBlock/0.png deleted file mode 100644 index 15d37e8784..0000000000 Binary files a/front/public/images/small/bartworks/BWHeatedWaterPumpBlock/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BWPumpParts/0.png b/front/public/images/small/bartworks/BWPumpParts/0.png deleted file mode 100644 index 61c9096ac4..0000000000 Binary files a/front/public/images/small/bartworks/BWPumpParts/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BWPumpParts/1.png b/front/public/images/small/bartworks/BWPumpParts/1.png deleted file mode 100644 index 7995647f0f..0000000000 Binary files a/front/public/images/small/bartworks/BWPumpParts/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BWRotorBlock/0.png b/front/public/images/small/bartworks/BWRotorBlock/0.png deleted file mode 100644 index 96378538e5..0000000000 Binary files a/front/public/images/small/bartworks/BWRotorBlock/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_CombinedRotor/0.png b/front/public/images/small/bartworks/BW_CombinedRotor/0.png deleted file mode 100644 index ca001cb619..0000000000 Binary files a/front/public/images/small/bartworks/BW_CombinedRotor/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_FakeGlasBlock/0.png b/front/public/images/small/bartworks/BW_FakeGlasBlock/0.png deleted file mode 100644 index 84f3bad9a6..0000000000 Binary files a/front/public/images/small/bartworks/BW_FakeGlasBlock/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_FakeGlasBlocks2/0.png b/front/public/images/small/bartworks/BW_FakeGlasBlocks2/0.png deleted file mode 100644 index 84f3bad9a6..0000000000 Binary files a/front/public/images/small/bartworks/BW_FakeGlasBlocks2/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/0.png b/front/public/images/small/bartworks/BW_GlasBlocks/0.png deleted file mode 100644 index ebb5da643d..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/1.png b/front/public/images/small/bartworks/BW_GlasBlocks/1.png deleted file mode 100644 index 95334b34d6..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/10.png b/front/public/images/small/bartworks/BW_GlasBlocks/10.png deleted file mode 100644 index 72785e5047..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/11.png b/front/public/images/small/bartworks/BW_GlasBlocks/11.png deleted file mode 100644 index 4a90fd7fdc..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/12.png b/front/public/images/small/bartworks/BW_GlasBlocks/12.png deleted file mode 100644 index 2df229c5cb..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/13.png b/front/public/images/small/bartworks/BW_GlasBlocks/13.png deleted file mode 100644 index 03741e7392..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/14.png b/front/public/images/small/bartworks/BW_GlasBlocks/14.png deleted file mode 100644 index 2859f9a1b3..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/15.png b/front/public/images/small/bartworks/BW_GlasBlocks/15.png deleted file mode 100644 index 698865394a..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/2.png b/front/public/images/small/bartworks/BW_GlasBlocks/2.png deleted file mode 100644 index 982387128c..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/3.png b/front/public/images/small/bartworks/BW_GlasBlocks/3.png deleted file mode 100644 index 4ad539baff..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/4.png b/front/public/images/small/bartworks/BW_GlasBlocks/4.png deleted file mode 100644 index 757540369b..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/5.png b/front/public/images/small/bartworks/BW_GlasBlocks/5.png deleted file mode 100644 index af7a8c7a07..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/6.png b/front/public/images/small/bartworks/BW_GlasBlocks/6.png deleted file mode 100644 index 09aabec7ba..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/7.png b/front/public/images/small/bartworks/BW_GlasBlocks/7.png deleted file mode 100644 index 98f8a7989d..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/8.png b/front/public/images/small/bartworks/BW_GlasBlocks/8.png deleted file mode 100644 index f8001ce08c..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks/9.png b/front/public/images/small/bartworks/BW_GlasBlocks/9.png deleted file mode 100644 index b4b9f2f70c..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_GlasBlocks2/0.png b/front/public/images/small/bartworks/BW_GlasBlocks2/0.png deleted file mode 100644 index 03a82e4ceb..0000000000 Binary files a/front/public/images/small/bartworks/BW_GlasBlocks2/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_ItemBlocks/0.png b/front/public/images/small/bartworks/BW_ItemBlocks/0.png deleted file mode 100644 index eddca37289..0000000000 Binary files a/front/public/images/small/bartworks/BW_ItemBlocks/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_ItemBlocks/1.png b/front/public/images/small/bartworks/BW_ItemBlocks/1.png deleted file mode 100644 index ce21854784..0000000000 Binary files a/front/public/images/small/bartworks/BW_ItemBlocks/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_LeatherRotor/0.png b/front/public/images/small/bartworks/BW_LeatherRotor/0.png deleted file mode 100644 index ac7d2a636b..0000000000 Binary files a/front/public/images/small/bartworks/BW_LeatherRotor/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_Machinery_Casings/0.png b/front/public/images/small/bartworks/BW_Machinery_Casings/0.png deleted file mode 100644 index ca5cd2258b..0000000000 Binary files a/front/public/images/small/bartworks/BW_Machinery_Casings/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_Machinery_Casings/1.png b/front/public/images/small/bartworks/BW_Machinery_Casings/1.png deleted file mode 100644 index 25cf0f678b..0000000000 Binary files a/front/public/images/small/bartworks/BW_Machinery_Casings/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_PaperRotor/0.png b/front/public/images/small/bartworks/BW_PaperRotor/0.png deleted file mode 100644 index bd5aab81d3..0000000000 Binary files a/front/public/images/small/bartworks/BW_PaperRotor/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_SimpleWindMeter/0.png b/front/public/images/small/bartworks/BW_SimpleWindMeter/0.png deleted file mode 100644 index 158666b5ea..0000000000 Binary files a/front/public/images/small/bartworks/BW_SimpleWindMeter/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BW_WoolRotor/0.png b/front/public/images/small/bartworks/BW_WoolRotor/0.png deleted file mode 100644 index acc15e16fe..0000000000 Binary files a/front/public/images/small/bartworks/BW_WoolRotor/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabModules/0.png b/front/public/images/small/bartworks/BioLabModules/0.png deleted file mode 100644 index 578d21b98f..0000000000 Binary files a/front/public/images/small/bartworks/BioLabModules/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabModules/1.png b/front/public/images/small/bartworks/BioLabModules/1.png deleted file mode 100644 index b1d3a0ec30..0000000000 Binary files a/front/public/images/small/bartworks/BioLabModules/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabModules/2.png b/front/public/images/small/bartworks/BioLabModules/2.png deleted file mode 100644 index 3c8af72f27..0000000000 Binary files a/front/public/images/small/bartworks/BioLabModules/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabModules/3.png b/front/public/images/small/bartworks/BioLabModules/3.png deleted file mode 100644 index 2738119f18..0000000000 Binary files a/front/public/images/small/bartworks/BioLabModules/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabModules/4.png b/front/public/images/small/bartworks/BioLabModules/4.png deleted file mode 100644 index 43ebf607f5..0000000000 Binary files a/front/public/images/small/bartworks/BioLabModules/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabParts/0.png b/front/public/images/small/bartworks/BioLabParts/0.png deleted file mode 100644 index 44388d3021..0000000000 Binary files a/front/public/images/small/bartworks/BioLabParts/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabParts/1.png b/front/public/images/small/bartworks/BioLabParts/1.png deleted file mode 100644 index c2bd9819c9..0000000000 Binary files a/front/public/images/small/bartworks/BioLabParts/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabParts/2.png b/front/public/images/small/bartworks/BioLabParts/2.png deleted file mode 100644 index 8bd3bfe876..0000000000 Binary files a/front/public/images/small/bartworks/BioLabParts/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabParts/3.png b/front/public/images/small/bartworks/BioLabParts/3.png deleted file mode 100644 index a9a7c7e25e..0000000000 Binary files a/front/public/images/small/bartworks/BioLabParts/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabParts/4.png b/front/public/images/small/bartworks/BioLabParts/4.png deleted file mode 100644 index 9ec675345c..0000000000 Binary files a/front/public/images/small/bartworks/BioLabParts/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabParts/5.png b/front/public/images/small/bartworks/BioLabParts/5.png deleted file mode 100644 index cebe9140c2..0000000000 Binary files a/front/public/images/small/bartworks/BioLabParts/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/BioLabParts/6.png b/front/public/images/small/bartworks/BioLabParts/6.png deleted file mode 100644 index 2e078aa28c..0000000000 Binary files a/front/public/images/small/bartworks/BioLabParts/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/GT_LESU_CASING/0.png b/front/public/images/small/bartworks/GT_LESU_CASING/0.png deleted file mode 100644 index aa2654ccc5..0000000000 Binary files a/front/public/images/small/bartworks/GT_LESU_CASING/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/0.png b/front/public/images/small/bartworks/bw.HTGRMaterials/0.png deleted file mode 100644 index abfd903400..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/1.png b/front/public/images/small/bartworks/bw.HTGRMaterials/1.png deleted file mode 100644 index 01ca58eeed..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/10.png b/front/public/images/small/bartworks/bw.HTGRMaterials/10.png deleted file mode 100644 index ee6f1ee4b7..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/11.png b/front/public/images/small/bartworks/bw.HTGRMaterials/11.png deleted file mode 100644 index b2d3c08918..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/12.png b/front/public/images/small/bartworks/bw.HTGRMaterials/12.png deleted file mode 100644 index 0b1b7390c2..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/13.png b/front/public/images/small/bartworks/bw.HTGRMaterials/13.png deleted file mode 100644 index 68428dcc64..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/14.png b/front/public/images/small/bartworks/bw.HTGRMaterials/14.png deleted file mode 100644 index 0e2a5c7964..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/15.png b/front/public/images/small/bartworks/bw.HTGRMaterials/15.png deleted file mode 100644 index acf2cdc495..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/16.png b/front/public/images/small/bartworks/bw.HTGRMaterials/16.png deleted file mode 100644 index ba5b845aa9..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/17.png b/front/public/images/small/bartworks/bw.HTGRMaterials/17.png deleted file mode 100644 index c602216070..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/18.png b/front/public/images/small/bartworks/bw.HTGRMaterials/18.png deleted file mode 100644 index 33928bfe61..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/19.png b/front/public/images/small/bartworks/bw.HTGRMaterials/19.png deleted file mode 100644 index 3ce19dad39..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/2.png b/front/public/images/small/bartworks/bw.HTGRMaterials/2.png deleted file mode 100644 index 101aae9d69..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/20.png b/front/public/images/small/bartworks/bw.HTGRMaterials/20.png deleted file mode 100644 index 90c3cb7ed1..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/3.png b/front/public/images/small/bartworks/bw.HTGRMaterials/3.png deleted file mode 100644 index 356a274be0..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/4.png b/front/public/images/small/bartworks/bw.HTGRMaterials/4.png deleted file mode 100644 index 47e2632da7..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/5.png b/front/public/images/small/bartworks/bw.HTGRMaterials/5.png deleted file mode 100644 index 7f658822e5..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/6.png b/front/public/images/small/bartworks/bw.HTGRMaterials/6.png deleted file mode 100644 index c87d9867ee..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/7.png b/front/public/images/small/bartworks/bw.HTGRMaterials/7.png deleted file mode 100644 index facae3f77a..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/8.png b/front/public/images/small/bartworks/bw.HTGRMaterials/8.png deleted file mode 100644 index 6a7e410f46..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.HTGRMaterials/9.png b/front/public/images/small/bartworks/bw.HTGRMaterials/9.png deleted file mode 100644 index 941bcfcbbc..0000000000 Binary files a/front/public/images/small/bartworks/bw.HTGRMaterials/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.THTRMaterials/0.png b/front/public/images/small/bartworks/bw.THTRMaterials/0.png deleted file mode 100644 index bbfa86abaf..0000000000 Binary files a/front/public/images/small/bartworks/bw.THTRMaterials/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.THTRMaterials/1.png b/front/public/images/small/bartworks/bw.THTRMaterials/1.png deleted file mode 100644 index d9f49b3503..0000000000 Binary files a/front/public/images/small/bartworks/bw.THTRMaterials/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.THTRMaterials/2.png b/front/public/images/small/bartworks/bw.THTRMaterials/2.png deleted file mode 100644 index 3f0ef24e11..0000000000 Binary files a/front/public/images/small/bartworks/bw.THTRMaterials/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.THTRMaterials/3.png b/front/public/images/small/bartworks/bw.THTRMaterials/3.png deleted file mode 100644 index d1fe0b9d01..0000000000 Binary files a/front/public/images/small/bartworks/bw.THTRMaterials/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.THTRMaterials/4.png b/front/public/images/small/bartworks/bw.THTRMaterials/4.png deleted file mode 100644 index 123fcf6c95..0000000000 Binary files a/front/public/images/small/bartworks/bw.THTRMaterials/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.THTRMaterials/5.png b/front/public/images/small/bartworks/bw.THTRMaterials/5.png deleted file mode 100644 index 85a10e2208..0000000000 Binary files a/front/public/images/small/bartworks/bw.THTRMaterials/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.THTRMaterials/6.png b/front/public/images/small/bartworks/bw.THTRMaterials/6.png deleted file mode 100644 index 63d88b68b8..0000000000 Binary files a/front/public/images/small/bartworks/bw.THTRMaterials/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/1.png b/front/public/images/small/bartworks/bw.blockores.01/1.png deleted file mode 100644 index dd3a6897bc..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/10.png b/front/public/images/small/bartworks/bw.blockores.01/10.png deleted file mode 100644 index b7a92cf45a..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/10023.png b/front/public/images/small/bartworks/bw.blockores.01/10023.png deleted file mode 100644 index 5f97e63491..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/10054.png b/front/public/images/small/bartworks/bw.blockores.01/10054.png deleted file mode 100644 index 76845f1abe..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/10067.png b/front/public/images/small/bartworks/bw.blockores.01/10067.png deleted file mode 100644 index 6ef29593f2..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/10072.png b/front/public/images/small/bartworks/bw.blockores.01/10072.png deleted file mode 100644 index 2f31e5b8b5..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/11.png b/front/public/images/small/bartworks/bw.blockores.01/11.png deleted file mode 100644 index b7a92cf45a..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/12.png b/front/public/images/small/bartworks/bw.blockores.01/12.png deleted file mode 100644 index 4630eafb65..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/13.png b/front/public/images/small/bartworks/bw.blockores.01/13.png deleted file mode 100644 index 8be79634f4..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/14.png b/front/public/images/small/bartworks/bw.blockores.01/14.png deleted file mode 100644 index 046f07cf99..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/15.png b/front/public/images/small/bartworks/bw.blockores.01/15.png deleted file mode 100644 index 009beeb639..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/16.png b/front/public/images/small/bartworks/bw.blockores.01/16.png deleted file mode 100644 index 45e24ddc63..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/17.png b/front/public/images/small/bartworks/bw.blockores.01/17.png deleted file mode 100644 index 469b3237b1..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/18.png b/front/public/images/small/bartworks/bw.blockores.01/18.png deleted file mode 100644 index dad67daffb..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/19.png b/front/public/images/small/bartworks/bw.blockores.01/19.png deleted file mode 100644 index 7f68ab9dd7..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/2.png b/front/public/images/small/bartworks/bw.blockores.01/2.png deleted file mode 100644 index 526814fcbc..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/23.png b/front/public/images/small/bartworks/bw.blockores.01/23.png deleted file mode 100644 index 07d5d95f7a..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/24.png b/front/public/images/small/bartworks/bw.blockores.01/24.png deleted file mode 100644 index 59a887a757..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/25.png b/front/public/images/small/bartworks/bw.blockores.01/25.png deleted file mode 100644 index 2019d9c472..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/26.png b/front/public/images/small/bartworks/bw.blockores.01/26.png deleted file mode 100644 index ea11bf9443..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/27.png b/front/public/images/small/bartworks/bw.blockores.01/27.png deleted file mode 100644 index 73d9c2b195..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/28.png b/front/public/images/small/bartworks/bw.blockores.01/28.png deleted file mode 100644 index 75dce932ef..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/29.png b/front/public/images/small/bartworks/bw.blockores.01/29.png deleted file mode 100644 index c13e0e7dfd..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/35.png b/front/public/images/small/bartworks/bw.blockores.01/35.png deleted file mode 100644 index 78bb9fdeb9..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/43.png b/front/public/images/small/bartworks/bw.blockores.01/43.png deleted file mode 100644 index 12fb6739ae..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/47.png b/front/public/images/small/bartworks/bw.blockores.01/47.png deleted file mode 100644 index 7a4fa26431..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/5.png b/front/public/images/small/bartworks/bw.blockores.01/5.png deleted file mode 100644 index b11c2c684b..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/53.png b/front/public/images/small/bartworks/bw.blockores.01/53.png deleted file mode 100644 index 66f94a1377..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/60.png b/front/public/images/small/bartworks/bw.blockores.01/60.png deleted file mode 100644 index f1f58ab097..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/69.png b/front/public/images/small/bartworks/bw.blockores.01/69.png deleted file mode 100644 index f1f58ab097..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/7.png b/front/public/images/small/bartworks/bw.blockores.01/7.png deleted file mode 100644 index 7de791df95..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/70.png b/front/public/images/small/bartworks/bw.blockores.01/70.png deleted file mode 100644 index f971085d36..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/79.png b/front/public/images/small/bartworks/bw.blockores.01/79.png deleted file mode 100644 index efafe91856..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/8.png b/front/public/images/small/bartworks/bw.blockores.01/8.png deleted file mode 100644 index e4796c9412..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/89.png b/front/public/images/small/bartworks/bw.blockores.01/89.png deleted file mode 100644 index e757436f46..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/9.png b/front/public/images/small/bartworks/bw.blockores.01/9.png deleted file mode 100644 index 4d6440edd6..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/91.png b/front/public/images/small/bartworks/bw.blockores.01/91.png deleted file mode 100644 index 97f693df28..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/93.png b/front/public/images/small/bartworks/bw.blockores.01/93.png deleted file mode 100644 index 33b42b0339..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/94.png b/front/public/images/small/bartworks/bw.blockores.01/94.png deleted file mode 100644 index 614ef58ea8..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.01/95.png b/front/public/images/small/bartworks/bw.blockores.01/95.png deleted file mode 100644 index 2c88e1c2ca..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.01/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/1.png b/front/public/images/small/bartworks/bw.blockores.02/1.png deleted file mode 100644 index 8370d2e91e..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/10.png b/front/public/images/small/bartworks/bw.blockores.02/10.png deleted file mode 100644 index 224c5427a3..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/10023.png b/front/public/images/small/bartworks/bw.blockores.02/10023.png deleted file mode 100644 index f7d7ba5064..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/10054.png b/front/public/images/small/bartworks/bw.blockores.02/10054.png deleted file mode 100644 index 08d7357814..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/10067.png b/front/public/images/small/bartworks/bw.blockores.02/10067.png deleted file mode 100644 index 4d91cf0800..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/10072.png b/front/public/images/small/bartworks/bw.blockores.02/10072.png deleted file mode 100644 index c572703251..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/11.png b/front/public/images/small/bartworks/bw.blockores.02/11.png deleted file mode 100644 index 224c5427a3..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/12.png b/front/public/images/small/bartworks/bw.blockores.02/12.png deleted file mode 100644 index 9ef9c6eb1c..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/13.png b/front/public/images/small/bartworks/bw.blockores.02/13.png deleted file mode 100644 index 807f90a3a3..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/14.png b/front/public/images/small/bartworks/bw.blockores.02/14.png deleted file mode 100644 index a821473d5b..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/15.png b/front/public/images/small/bartworks/bw.blockores.02/15.png deleted file mode 100644 index 0dc7581a8c..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/16.png b/front/public/images/small/bartworks/bw.blockores.02/16.png deleted file mode 100644 index c8c80dcfc4..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/17.png b/front/public/images/small/bartworks/bw.blockores.02/17.png deleted file mode 100644 index 71c07b8102..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/18.png b/front/public/images/small/bartworks/bw.blockores.02/18.png deleted file mode 100644 index 28fc7db97a..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/19.png b/front/public/images/small/bartworks/bw.blockores.02/19.png deleted file mode 100644 index f3e69189d8..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/2.png b/front/public/images/small/bartworks/bw.blockores.02/2.png deleted file mode 100644 index 106df42c97..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/23.png b/front/public/images/small/bartworks/bw.blockores.02/23.png deleted file mode 100644 index 3558738d22..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/24.png b/front/public/images/small/bartworks/bw.blockores.02/24.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/25.png b/front/public/images/small/bartworks/bw.blockores.02/25.png deleted file mode 100644 index 9ab693eb69..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/26.png b/front/public/images/small/bartworks/bw.blockores.02/26.png deleted file mode 100644 index 834f3b1b6b..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/27.png b/front/public/images/small/bartworks/bw.blockores.02/27.png deleted file mode 100644 index 61a86ceecb..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/28.png b/front/public/images/small/bartworks/bw.blockores.02/28.png deleted file mode 100644 index d5b082e1a8..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/29.png b/front/public/images/small/bartworks/bw.blockores.02/29.png deleted file mode 100644 index f68bcccf12..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/35.png b/front/public/images/small/bartworks/bw.blockores.02/35.png deleted file mode 100644 index 5e1047bac1..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/43.png b/front/public/images/small/bartworks/bw.blockores.02/43.png deleted file mode 100644 index 70b371207b..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/47.png b/front/public/images/small/bartworks/bw.blockores.02/47.png deleted file mode 100644 index ea7329de06..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/5.png b/front/public/images/small/bartworks/bw.blockores.02/5.png deleted file mode 100644 index f5367275ee..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/53.png b/front/public/images/small/bartworks/bw.blockores.02/53.png deleted file mode 100644 index 805612e620..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/60.png b/front/public/images/small/bartworks/bw.blockores.02/60.png deleted file mode 100644 index 038c75a27f..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/69.png b/front/public/images/small/bartworks/bw.blockores.02/69.png deleted file mode 100644 index 038c75a27f..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/7.png b/front/public/images/small/bartworks/bw.blockores.02/7.png deleted file mode 100644 index 982d623b21..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/70.png b/front/public/images/small/bartworks/bw.blockores.02/70.png deleted file mode 100644 index ac6ab1ef2a..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/79.png b/front/public/images/small/bartworks/bw.blockores.02/79.png deleted file mode 100644 index 912b519339..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/8.png b/front/public/images/small/bartworks/bw.blockores.02/8.png deleted file mode 100644 index 8b0496b8cf..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/89.png b/front/public/images/small/bartworks/bw.blockores.02/89.png deleted file mode 100644 index 2ded552e9a..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/9.png b/front/public/images/small/bartworks/bw.blockores.02/9.png deleted file mode 100644 index 5a6f77a278..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/91.png b/front/public/images/small/bartworks/bw.blockores.02/91.png deleted file mode 100644 index c6008a6459..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/93.png b/front/public/images/small/bartworks/bw.blockores.02/93.png deleted file mode 100644 index 876e9d2e58..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/94.png b/front/public/images/small/bartworks/bw.blockores.02/94.png deleted file mode 100644 index f167fb3a49..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.blockores.02/95.png b/front/public/images/small/bartworks/bw.blockores.02/95.png deleted file mode 100644 index f167fb3a49..0000000000 Binary files a/front/public/images/small/bartworks/bw.blockores.02/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/1.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/1.png deleted file mode 100644 index 895ade348e..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10022.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10022.png deleted file mode 100644 index f8b1e1249a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10023.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10023.png deleted file mode 100644 index ed56643bd9..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10024.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10024.png deleted file mode 100644 index 9343e80d4d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10053.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10053.png deleted file mode 100644 index 2906fc2533..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10082.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10082.png deleted file mode 100644 index 5809e53328..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10083.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10083.png deleted file mode 100644 index 9773ba93d7..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10084.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10084.png deleted file mode 100644 index 9773ba93d7..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10085.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10085.png deleted file mode 100644 index f81bfddaf8..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10096.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10096.png deleted file mode 100644 index dc90a3e941..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10097.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10097.png deleted file mode 100644 index f8b4f53d95..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10098.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10098.png deleted file mode 100644 index 4fe36dd10a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10099.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10099.png deleted file mode 100644 index ce04b986fe..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10101.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10101.png deleted file mode 100644 index 58813de83a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10102.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10102.png deleted file mode 100644 index b267800332..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10103.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10103.png deleted file mode 100644 index 0c7a28fd24..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10104.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10104.png deleted file mode 100644 index 71a505f297..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10105.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10105.png deleted file mode 100644 index 6d8b19237c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10106.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10106.png deleted file mode 100644 index caefaa0b25..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10109.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10109.png deleted file mode 100644 index 2b7fff24ef..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10110.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10110.png deleted file mode 100644 index dd9dcf4f5a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10111.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10111.png deleted file mode 100644 index 0b516c6e18..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10112.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/10112.png deleted file mode 100644 index 46a314390c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/104.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/104.png deleted file mode 100644 index 9195a7c540..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11000.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/11000.png deleted file mode 100644 index cbcb4c90ba..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11007.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/11007.png deleted file mode 100644 index aaa513e9b5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11312.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/11312.png deleted file mode 100644 index 41e56c481b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11499.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/11499.png deleted file mode 100644 index d7962afa2b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11503.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/11503.png deleted file mode 100644 index 00d4ed43d3..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/19.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/19.png deleted file mode 100644 index ec7e6bbad5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/20.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/20.png deleted file mode 100644 index 69bf89a058..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/21.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/21.png deleted file mode 100644 index d713e9e62d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/22.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/22.png deleted file mode 100644 index b74c941b67..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/23.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/23.png deleted file mode 100644 index bffa85b59e..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/24.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/24.png deleted file mode 100644 index 221d0934b5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/25.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/25.png deleted file mode 100644 index 87b5aa08cb..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/3.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/3.png deleted file mode 100644 index fa75d9d1a9..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/30.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/30.png deleted file mode 100644 index 6fcc4f1ae5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/32237.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/32237.png deleted file mode 100644 index a2bd81621c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/35.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/35.png deleted file mode 100644 index dae1a96cdb..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/36.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/36.png deleted file mode 100644 index e1c0db4452..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/39.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/39.png deleted file mode 100644 index e6cde19a7e..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/4.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/4.png deleted file mode 100644 index eab0e5989c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/40.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/40.png deleted file mode 100644 index 174f37c6ef..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/43.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/43.png deleted file mode 100644 index 6c96b402ab..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/5.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/5.png deleted file mode 100644 index 7564762e99..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/64.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/64.png deleted file mode 100644 index 6213098639..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/7.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/7.png deleted file mode 100644 index 593a8feeb7..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/78.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/78.png deleted file mode 100644 index 58028c3180..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/8.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/8.png deleted file mode 100644 index c3185e85e1..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/88.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/88.png deleted file mode 100644 index 3d5b5ac50a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/89.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/89.png deleted file mode 100644 index eea1107c3b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/9.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/9.png deleted file mode 100644 index c562a08cb5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/90.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/90.png deleted file mode 100644 index 248499d2f2..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/91.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/91.png deleted file mode 100644 index e490f14646..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/92.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/92.png deleted file mode 100644 index ac7ffeb2e4..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblocks.01/96.png b/front/public/images/small/bartworks/bw.werkstoffblocks.01/96.png deleted file mode 100644 index db4a3dcd6a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblocks.01/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10022.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10022.png deleted file mode 100644 index 1ae6563af5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10024.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10024.png deleted file mode 100644 index b2551d1d5b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10085.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10085.png deleted file mode 100644 index aaefa94c49..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10096.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10096.png deleted file mode 100644 index a0dc159002..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10097.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10097.png deleted file mode 100644 index 09c70f9093..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10109.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10109.png deleted file mode 100644 index fbd68d34e2..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10110.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10110.png deleted file mode 100644 index 4e57f4f15e..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10111.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10111.png deleted file mode 100644 index d3d66e0707..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10112.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10112.png deleted file mode 100644 index 3ceebf9573..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31776.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31776.png deleted file mode 100644 index 079c937310..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31776.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31785.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31785.png deleted file mode 100644 index e85c717226..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31785.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31794.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31794.png deleted file mode 100644 index cf3a7b4b67..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31794.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31796.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31796.png deleted file mode 100644 index 900c09f816..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31796.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31798.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31798.png deleted file mode 100644 index 2dbfe10a7b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31798.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31799.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31799.png deleted file mode 100644 index 762d2051fa..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31799.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31800.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31800.png deleted file mode 100644 index 6d4c6accd9..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31800.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31801.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31801.png deleted file mode 100644 index 325530da81..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31801.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31818.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31818.png deleted file mode 100644 index dd41146ea4..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31818.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31820.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31820.png deleted file mode 100644 index d98b09d1a1..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31820.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31823.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31823.png deleted file mode 100644 index 65859e6594..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31823.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31833.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31833.png deleted file mode 100644 index ab7c242fe3..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31833.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31847.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31847.png deleted file mode 100644 index 8fb159608d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31847.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31849.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31849.png deleted file mode 100644 index 40ac723073..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31849.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31850.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31850.png deleted file mode 100644 index b6fad0f332..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31850.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31851.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31851.png deleted file mode 100644 index 3b911b33b5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31851.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31852.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31852.png deleted file mode 100644 index 9b44dedfa2..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31852.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31855.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31855.png deleted file mode 100644 index 72e68fa709..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31855.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31856.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31856.png deleted file mode 100644 index 913baeb327..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31856.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31895.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31895.png deleted file mode 100644 index c683f46ed3..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/31895.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32066.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32066.png deleted file mode 100644 index b15357ba36..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32066.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32067.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32067.png deleted file mode 100644 index 3022100a2c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32070.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32070.png deleted file mode 100644 index e837c2d542..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32070.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32071.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32071.png deleted file mode 100644 index dd41146ea4..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32071.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32072.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32072.png deleted file mode 100644 index 8aa6ff2857..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32083.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32083.png deleted file mode 100644 index d71ad947ac..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32090.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32090.png deleted file mode 100644 index 8fb159608d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32090.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32091.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32091.png deleted file mode 100644 index a3de540f79..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32091.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32100.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32100.png deleted file mode 100644 index ab7c242fe3..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32100.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32101.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32101.png deleted file mode 100644 index 710a6fb782..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32110.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32110.png deleted file mode 100644 index 806827b790..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32111.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32111.png deleted file mode 100644 index 7604f9829a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32114.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32114.png deleted file mode 100644 index 60c64a7296..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32114.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32115.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32115.png deleted file mode 100644 index 30654a492f..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32115.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32116.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32116.png deleted file mode 100644 index 399d2c7bde..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32116.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32117.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32117.png deleted file mode 100644 index a593a85463..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32117.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32118.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32118.png deleted file mode 100644 index f53bb7b91a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32118.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32119.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32119.png deleted file mode 100644 index d6afbc1a93..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32119.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32148.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32148.png deleted file mode 100644 index d5156b2209..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32148.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32236.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32236.png deleted file mode 100644 index 27c718f48a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32236.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32239.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32239.png deleted file mode 100644 index ab7c242fe3..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32239.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32575.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32575.png deleted file mode 100644 index 116920168d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/32575.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/88.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/88.png deleted file mode 100644 index 900c09f816..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/90.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/90.png deleted file mode 100644 index 482182d819..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/92.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/92.png deleted file mode 100644 index 357bdf8300..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/96.png b/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/96.png deleted file mode 100644 index f584b019fb..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasing.01/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10022.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10022.png deleted file mode 100644 index b263e58d96..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10024.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10024.png deleted file mode 100644 index 6d85cc1135..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10085.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10085.png deleted file mode 100644 index 51d67c6e77..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10096.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10096.png deleted file mode 100644 index db8f21b78a..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10097.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10097.png deleted file mode 100644 index 5239153a23..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10109.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10109.png deleted file mode 100644 index 9ab74e94d1..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10110.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10110.png deleted file mode 100644 index d8089cf684..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10111.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10111.png deleted file mode 100644 index 1b9d570c4d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10112.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10112.png deleted file mode 100644 index 65b875274b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31776.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31776.png deleted file mode 100644 index 121b1adbe1..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31776.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31785.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31785.png deleted file mode 100644 index d05bcd9cea..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31785.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31794.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31794.png deleted file mode 100644 index ff95547591..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31794.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31796.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31796.png deleted file mode 100644 index adef8c2e81..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31796.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31798.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31798.png deleted file mode 100644 index 75ed6ee846..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31798.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31799.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31799.png deleted file mode 100644 index a507e63538..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31799.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31800.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31800.png deleted file mode 100644 index 95d31259bd..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31800.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31801.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31801.png deleted file mode 100644 index c4066c5aa6..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31801.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31818.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31818.png deleted file mode 100644 index ed197a1c91..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31818.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31820.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31820.png deleted file mode 100644 index abb6fbdd6d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31820.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31823.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31823.png deleted file mode 100644 index d774766905..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31823.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31833.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31833.png deleted file mode 100644 index 2f2d02208b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31833.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31847.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31847.png deleted file mode 100644 index 941b265e2f..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31847.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31849.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31849.png deleted file mode 100644 index 90597b1d3b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31849.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31850.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31850.png deleted file mode 100644 index c7c5ed8359..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31850.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31851.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31851.png deleted file mode 100644 index f28eca6e25..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31851.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31852.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31852.png deleted file mode 100644 index e47810d46f..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31852.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31855.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31855.png deleted file mode 100644 index c5494f7efe..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31855.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31856.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31856.png deleted file mode 100644 index 9c9f4d35ec..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31856.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31895.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31895.png deleted file mode 100644 index 7c8e4e8cb5..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/31895.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32066.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32066.png deleted file mode 100644 index fe40bdc5f0..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32066.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32067.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32067.png deleted file mode 100644 index c2b1ee049c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32070.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32070.png deleted file mode 100644 index 2444d593cc..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32070.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32071.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32071.png deleted file mode 100644 index ed197a1c91..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32071.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32072.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32072.png deleted file mode 100644 index 1d57d1830c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32083.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32083.png deleted file mode 100644 index 5268f6e3da..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32090.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32090.png deleted file mode 100644 index 941b265e2f..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32090.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32091.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32091.png deleted file mode 100644 index 84fa71df4d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32091.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32100.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32100.png deleted file mode 100644 index 2f2d02208b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32100.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32101.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32101.png deleted file mode 100644 index 7808908403..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32110.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32110.png deleted file mode 100644 index d07a065c41..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32111.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32111.png deleted file mode 100644 index 4b7f9f8468..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32114.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32114.png deleted file mode 100644 index adde261211..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32114.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32115.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32115.png deleted file mode 100644 index 242c333f83..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32115.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32116.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32116.png deleted file mode 100644 index 2b9bb01200..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32116.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32117.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32117.png deleted file mode 100644 index 61d5e89106..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32117.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32118.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32118.png deleted file mode 100644 index 4335f94c8d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32118.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32119.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32119.png deleted file mode 100644 index bb9381e5b8..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32119.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32148.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32148.png deleted file mode 100644 index b2a3c35b63..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32148.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32236.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32236.png deleted file mode 100644 index 68d1c9462d..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32236.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32239.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32239.png deleted file mode 100644 index 2f2d02208b..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32239.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32575.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32575.png deleted file mode 100644 index 2af1f29b8e..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/32575.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/88.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/88.png deleted file mode 100644 index adef8c2e81..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/90.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/90.png deleted file mode 100644 index 9b34d40a8c..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/92.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/92.png deleted file mode 100644 index 9c880676e7..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/96.png b/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/96.png deleted file mode 100644 index 3086fb5896..0000000000 Binary files a/front/public/images/small/bartworks/bw.werkstoffblockscasingadvanced.01/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/coloredFluidBlock/0.png b/front/public/images/small/bartworks/coloredFluidBlock/0.png deleted file mode 100644 index 0a58910f49..0000000000 Binary files a/front/public/images/small/bartworks/coloredFluidBlock/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/craftingParts/0.png b/front/public/images/small/bartworks/craftingParts/0.png deleted file mode 100644 index b49df6fd22..0000000000 Binary files a/front/public/images/small/bartworks/craftingParts/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/craftingParts/1.png b/front/public/images/small/bartworks/craftingParts/1.png deleted file mode 100644 index 072a6818a5..0000000000 Binary files a/front/public/images/small/bartworks/craftingParts/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/craftingParts/2.png b/front/public/images/small/bartworks/craftingParts/2.png deleted file mode 100644 index d424e5cf35..0000000000 Binary files a/front/public/images/small/bartworks/craftingParts/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/craftingParts/3.png b/front/public/images/small/bartworks/craftingParts/3.png deleted file mode 100644 index 8308fc076f..0000000000 Binary files a/front/public/images/small/bartworks/craftingParts/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/craftingParts/4.png b/front/public/images/small/bartworks/craftingParts/4.png deleted file mode 100644 index 7e2493a8c6..0000000000 Binary files a/front/public/images/small/bartworks/craftingParts/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/craftingParts/5.png b/front/public/images/small/bartworks/craftingParts/5.png deleted file mode 100644 index 9c29a55240..0000000000 Binary files a/front/public/images/small/bartworks/craftingParts/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/craftingParts/6.png b/front/public/images/small/bartworks/craftingParts/6.png deleted file mode 100644 index 64577ae4fe..0000000000 Binary files a/front/public/images/small/bartworks/craftingParts/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.BWCircuitProgrammer/0.png b/front/public/images/small/bartworks/gt.BWCircuitProgrammer/0.png deleted file mode 100644 index ad04928116..0000000000 Binary files a/front/public/images/small/bartworks/gt.BWCircuitProgrammer/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.GT2Destructopack/0.png b/front/public/images/small/bartworks/gt.GT2Destructopack/0.png deleted file mode 100644 index 4835ef020d..0000000000 Binary files a/front/public/images/small/bartworks/gt.GT2Destructopack/0.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/15.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/15.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/153.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/153.png deleted file mode 100644 index 65bc69acc9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/153.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/19.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/24.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/257.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/257.png deleted file mode 100644 index 40babf70d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/257.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/258.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/258.png deleted file mode 100644 index 85fca6d1f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/258.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/288.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/288.png deleted file mode 100644 index df57c620bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/288.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/29.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/29.png deleted file mode 100644 index a1ad06068a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/290.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/290.png deleted file mode 100644 index 8e76b9ca35..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/290.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/291.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/291.png deleted file mode 100644 index f2474eeec7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/291.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/299.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/299.png deleted file mode 100644 index f9b9e3c172..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/299.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/30.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/301.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/301.png deleted file mode 100644 index cc65e1c0f0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/301.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/302.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/302.png deleted file mode 100644 index 919fddf31e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/302.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/303.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/303.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/303.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/304.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/304.png deleted file mode 100644 index d91ee5fb0c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/304.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/306.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/306.png deleted file mode 100644 index 292b183ff3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/306.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/309.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/309.png deleted file mode 100644 index cc65e1c0f0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/309.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/31.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/31.png deleted file mode 100644 index 83ad7b8825..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/31.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/310.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/310.png deleted file mode 100644 index 2a1877d9e7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/310.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/313.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/313.png deleted file mode 100644 index 112c2f732c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/313.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/330.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/330.png deleted file mode 100644 index 2991a8dde7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/330.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/331.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/331.png deleted file mode 100644 index 300cd9b8e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/331.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/332.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/332.png deleted file mode 100644 index e9fd491247..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/332.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/340.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/340.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/340.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/341.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/341.png deleted file mode 100644 index 153a5d8e67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/341.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/342.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/342.png deleted file mode 100644 index 153a5d8e67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/342.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/343.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/343.png deleted file mode 100644 index 153a5d8e67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/343.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/344.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/344.png deleted file mode 100644 index 153a5d8e67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/344.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/345.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/345.png deleted file mode 100644 index 153a5d8e67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/345.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/346.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/346.png deleted file mode 100644 index 153a5d8e67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/346.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/383.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/383.png deleted file mode 100644 index 857916fa84..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/383.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/386.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/386.png deleted file mode 100644 index a1ad06068a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/386.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/391.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/391.png deleted file mode 100644 index baba6d300c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/391.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/4.png deleted file mode 100644 index 8e76b9ca35..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/404.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/404.png deleted file mode 100644 index 51f8e3c415..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/404.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/42.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/42.png deleted file mode 100644 index 836ab251af..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/42.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/429.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/429.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/429.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/431.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/431.png deleted file mode 100644 index d341544e6e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/431.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/432.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/432.png deleted file mode 100644 index f83d1073aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/432.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/433.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/433.png deleted file mode 100644 index f83d1073aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/433.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/434.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/434.png deleted file mode 100644 index f83d1073aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/434.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/435.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/435.png deleted file mode 100644 index feef45e6ce..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/435.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/436.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/436.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/436.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/437.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/437.png deleted file mode 100644 index feef45e6ce..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/437.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/438.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/438.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/438.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/439.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/439.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/439.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/440.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/440.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/440.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/441.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/441.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/441.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/442.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/442.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/442.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/443.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/443.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/443.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/444.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/444.png deleted file mode 100644 index 54d39440cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/444.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/445.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/445.png deleted file mode 100644 index 77398f4d3e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/445.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/446.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/446.png deleted file mode 100644 index 9950513c54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/446.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/448.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/448.png deleted file mode 100644 index b9ad9e6547..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/448.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/449.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/449.png deleted file mode 100644 index 0bc06e6b39..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/449.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/450.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/450.png deleted file mode 100644 index 8342696a1c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/450.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/451.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/451.png deleted file mode 100644 index ce23600231..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/451.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/453.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/453.png deleted file mode 100644 index 8bf7eb0de7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/453.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/454.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/454.png deleted file mode 100644 index b2e465400a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/454.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/468.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/468.png deleted file mode 100644 index 5290716aa9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/468.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/469.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/469.png deleted file mode 100644 index 7eb944ae07..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/469.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/470.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/470.png deleted file mode 100644 index eabaa37aa9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/470.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/473.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/473.png deleted file mode 100644 index c10bb8ddaf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/473.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/475.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/475.png deleted file mode 100644 index 32782ab7fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/475.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/476.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/476.png deleted file mode 100644 index ffe2dfa703..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/476.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/477.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/477.png deleted file mode 100644 index b8fa844bcf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/477.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/478.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/478.png deleted file mode 100644 index e514d702d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/478.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/479.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/479.png deleted file mode 100644 index a8a9af9035..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/479.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/48.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/48.png deleted file mode 100644 index 0262efbf56..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/48.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/480.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/480.png deleted file mode 100644 index 60a769fff1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/480.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/481.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/481.png deleted file mode 100644 index adb0094691..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/481.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/482.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/482.png deleted file mode 100644 index a7e3027596..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/482.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/483.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/483.png deleted file mode 100644 index a271cfb883..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/483.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/486.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/486.png deleted file mode 100644 index 584124b747..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/486.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/487.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/487.png deleted file mode 100644 index 584124b747..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/487.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/489.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/489.png deleted file mode 100644 index 99887d0e68..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/489.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/490.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/490.png deleted file mode 100644 index 40d79bf603..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/490.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/491.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/491.png deleted file mode 100644 index 4cecb6fcd1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/491.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/492.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/492.png deleted file mode 100644 index 7eb944ae07..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/492.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/493.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/493.png deleted file mode 100644 index 82fdda8abc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/493.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/494.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/494.png deleted file mode 100644 index e9d4948d05..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/494.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/495.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/495.png deleted file mode 100644 index f6d0e60e6a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/495.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/496.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/496.png deleted file mode 100644 index 54ae588846..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/496.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/497.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/497.png deleted file mode 100644 index 86547736c3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/497.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/498.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/498.png deleted file mode 100644 index 5f3f00b19e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/498.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/499.png deleted file mode 100644 index 248d3f0006..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/50.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/50.png deleted file mode 100644 index 69a4942646..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/50.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/500.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/500.png deleted file mode 100644 index 643cc7b818..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/500.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/502.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/502.png deleted file mode 100644 index bb1eb3b2ad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/502.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/503.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/503.png deleted file mode 100644 index 988c4aad06..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/504.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/504.png deleted file mode 100644 index 944985e9a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/504.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/505.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/505.png deleted file mode 100644 index 1d57310d40..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/505.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/506.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/506.png deleted file mode 100644 index 38ce8ed674..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/506.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/507.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/507.png deleted file mode 100644 index d935cf2d25..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/507.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/508.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/508.png deleted file mode 100644 index b2bcf06b66..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/508.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/509.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/509.png deleted file mode 100644 index cd7c4918b3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/509.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/510.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/510.png deleted file mode 100644 index a743a0a0d6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/510.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/512.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/512.png deleted file mode 100644 index cb0a439fc5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/512.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/513.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/513.png deleted file mode 100644 index 8c39cf9805..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/513.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/514.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/514.png deleted file mode 100644 index e2dfebaffe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/514.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/515.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/515.png deleted file mode 100644 index 4bf7090469..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/515.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/516.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/516.png deleted file mode 100644 index 4b58760ac3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/516.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/517.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/517.png deleted file mode 100644 index d1a88c8426..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/517.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/518.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/518.png deleted file mode 100644 index c8210041ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/518.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/519.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/519.png deleted file mode 100644 index e4a0a75118..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/519.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/522.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/522.png deleted file mode 100644 index d554fbd811..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/522.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/523.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/523.png deleted file mode 100644 index f2474eeec7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/523.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/524.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/524.png deleted file mode 100644 index 120e8806f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/524.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/525.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/525.png deleted file mode 100644 index 6315312ddc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/525.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/526.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/526.png deleted file mode 100644 index 3851a77159..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/526.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/527.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/527.png deleted file mode 100644 index 2dc2f3e8ac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/527.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/528.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/528.png deleted file mode 100644 index 1748f0643e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/528.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/539.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/539.png deleted file mode 100644 index 5cb35f83ce..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/539.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/540.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/540.png deleted file mode 100644 index b7c0ef2529..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/540.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/541.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/541.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/541.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/542.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/542.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/542.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/543.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/543.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/543.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/544.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/544.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/544.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/555.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/555.png deleted file mode 100644 index 5290716aa9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/555.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/59.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/59.png deleted file mode 100644 index 2326b3d8cd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/59.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/608.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/608.png deleted file mode 100644 index 44b1623e32..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/608.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/670.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/670.png deleted file mode 100644 index d5b707929e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/670.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/677.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/677.png deleted file mode 100644 index d3a5063e98..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/677.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/682.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/682.png deleted file mode 100644 index 951ed5bde6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/682.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/683.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/683.png deleted file mode 100644 index 034489005d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/683.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/685.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/685.png deleted file mode 100644 index f3b92e5dc4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/685.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/686.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/686.png deleted file mode 100644 index db73eb10ac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/686.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/687.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/687.png deleted file mode 100644 index 04fc1aee45..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/687.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/688.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/688.png deleted file mode 100644 index c37476209e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/688.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/690.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/690.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/690.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/691.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/691.png deleted file mode 100644 index 417c4e5296..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/691.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/692.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/692.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/692.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/693.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/693.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/693.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/694.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/694.png deleted file mode 100644 index 4059e84f33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/694.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/695.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/695.png deleted file mode 100644 index a530de4139..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/695.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/696.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/696.png deleted file mode 100644 index a530de4139..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/696.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/760.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/760.png deleted file mode 100644 index fb84b5c7eb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/760.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/775.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/775.png deleted file mode 100644 index ef1ded8b9b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/775.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/776.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/776.png deleted file mode 100644 index 429b3abc3a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/776.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/777.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/777.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/777.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/778.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/778.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/778.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/779.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/779.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/779.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/781.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/781.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/781.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/782.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/782.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/782.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/783.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/783.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/783.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/784.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/784.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/784.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/786.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/786.png deleted file mode 100644 index af7e2455a9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/786.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/787.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/787.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/787.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/789.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/789.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/789.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/790.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/790.png deleted file mode 100644 index 317fc73c10..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/790.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/792.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/792.png deleted file mode 100644 index b880903788..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/792.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/793.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/793.png deleted file mode 100644 index 0c721263a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/793.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/794.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/794.png deleted file mode 100644 index 940cf060b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/794.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/796.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/796.png deleted file mode 100644 index 90dfd0a65f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/796.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/801.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/801.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/801.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/802.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/802.png deleted file mode 100644 index 0daf9da5f1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/802.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/803.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/803.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/803.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/805.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/805.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/805.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/806.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/806.png deleted file mode 100644 index 0e879a6f3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/806.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/807.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/807.png deleted file mode 100644 index 0196a9626b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/807.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/809.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/809.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/809.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/817.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/817.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/817.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/819.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/819.png deleted file mode 100644 index 94f4b268d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/819.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/821.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/821.png deleted file mode 100644 index 64507ad85f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/821.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/822.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/822.png deleted file mode 100644 index c898b4f101..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/822.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/823.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/823.png deleted file mode 100644 index d3ed12e329..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/823.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/827.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/827.png deleted file mode 100644 index 5b180e9d40..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/827.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/828.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/828.png deleted file mode 100644 index e7d130c3c3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/828.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/829.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/829.png deleted file mode 100644 index 3cacb712d5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/829.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/830.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/830.png deleted file mode 100644 index bfb1f7a02f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/830.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/831.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/831.png deleted file mode 100644 index bfb1f7a02f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/831.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/832.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/832.png deleted file mode 100644 index bfb1f7a02f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/832.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/833.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/833.png deleted file mode 100644 index bfb1f7a02f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/833.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/834.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/834.png deleted file mode 100644 index bfb1f7a02f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/834.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/835.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/835.png deleted file mode 100644 index e4c7a5fe1d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/835.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/836.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/836.png deleted file mode 100644 index e4c7a5fe1d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/836.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/837.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/837.png deleted file mode 100644 index e4c7a5fe1d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/837.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/838.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/838.png deleted file mode 100644 index e4c7a5fe1d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/838.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/839.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/839.png deleted file mode 100644 index e13361f171..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/839.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/84.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/84.png deleted file mode 100644 index a1ad06068a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/84.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/840.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/840.png deleted file mode 100644 index 4a712eef17..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/840.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/844.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/844.png deleted file mode 100644 index d0c86371e0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/844.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/85.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/85.png deleted file mode 100644 index 65130e8611..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/85.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/851.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/851.png deleted file mode 100644 index 8ba407cc10..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/851.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/853.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/853.png deleted file mode 100644 index 4a3606f68c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/853.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/86.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/86.png deleted file mode 100644 index 3458ae3a96..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/86.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/863.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/863.png deleted file mode 100644 index 690ec316dc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/863.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/87.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/87.png deleted file mode 100644 index de020f8335..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/87.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/88.png deleted file mode 100644 index 954f849ae4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/89.png deleted file mode 100644 index f257c3e5f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/90.png deleted file mode 100644 index 50b91bc0bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/91.png deleted file mode 100644 index 3fa7eb16e4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsule/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/1.png deleted file mode 100644 index e6bd18359b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/111.png deleted file mode 100644 index 25c6d611a3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/122.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/122.png deleted file mode 100644 index 15e4d1307e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/122.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/123.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/123.png deleted file mode 100644 index e5aed2c1ed..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/123.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/126.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/126.png deleted file mode 100644 index cc085ed704..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/126.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/128.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/128.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/128.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/130.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/130.png deleted file mode 100644 index 02b4a22f59..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/130.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/133.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/133.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/133.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/135.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/135.png deleted file mode 100644 index d4a437d4a7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/135.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/136.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/136.png deleted file mode 100644 index b27c372328..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/136.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/137.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/137.png deleted file mode 100644 index 21fd006978..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/137.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/138.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/138.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/138.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/146.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/146.png deleted file mode 100644 index a994b5a054..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/146.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/147.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/147.png deleted file mode 100644 index e0db84d653..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/147.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/150.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/150.png deleted file mode 100644 index dad05c206d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/150.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/16.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/16.png deleted file mode 100644 index 6d85b411db..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/162.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/162.png deleted file mode 100644 index 184b3c1d78..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/162.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/165.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/165.png deleted file mode 100644 index 4b9c5ce932..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/165.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/166.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/166.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/166.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/17.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/17.png deleted file mode 100644 index 4da112a829..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/170.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/170.png deleted file mode 100644 index cc085ed704..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/170.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/172.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/172.png deleted file mode 100644 index b6a6c083e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/172.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/174.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/174.png deleted file mode 100644 index 9687839c04..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/174.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/177.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/177.png deleted file mode 100644 index 6729b95024..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/177.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/178.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/178.png deleted file mode 100644 index 8d6bfb9eca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/178.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/182.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/182.png deleted file mode 100644 index 94f964d4e6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/182.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/193.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/193.png deleted file mode 100644 index 5936c6636d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/193.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/195.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/195.png deleted file mode 100644 index bf2aa8a52c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/195.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/196.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/196.png deleted file mode 100644 index 62b86e06eb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/196.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/199.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/199.png deleted file mode 100644 index 591fe8a59a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/199.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/200.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/200.png deleted file mode 100644 index df2f07c3f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/200.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/209.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/209.png deleted file mode 100644 index 10138ae3e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/209.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/219.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/219.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/219.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/220.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/220.png deleted file mode 100644 index 42435b074d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/220.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/221.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/221.png deleted file mode 100644 index ed3eed289b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/221.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/227.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/227.png deleted file mode 100644 index 4880a1280f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/227.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/228.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/228.png deleted file mode 100644 index 4b9c5ce932..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/228.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/229.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/229.png deleted file mode 100644 index 6279aa0ac0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/229.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/230.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/230.png deleted file mode 100644 index a62df38163..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/230.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/238.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/238.png deleted file mode 100644 index 0207abc091..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/238.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/239.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/239.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/239.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/240.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/240.png deleted file mode 100644 index 9a17a876b3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/240.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/245.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/245.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/245.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/246.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/246.png deleted file mode 100644 index a30b2b7c72..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/246.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/250.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/250.png deleted file mode 100644 index 20ded0f077..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/250.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/259.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/259.png deleted file mode 100644 index fc6c7334c4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/259.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/261.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/261.png deleted file mode 100644 index db9d4b821a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/261.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/262.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/262.png deleted file mode 100644 index 1c5e66f5b3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/262.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/27.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/27.png deleted file mode 100644 index 78617317f9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/320.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/320.png deleted file mode 100644 index 13eb0b2531..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/320.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/33.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/33.png deleted file mode 100644 index 0fe9918c8d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/33.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/334.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/334.png deleted file mode 100644 index 8f93541cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/334.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/335.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/335.png deleted file mode 100644 index 2024453d33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/335.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/336.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/336.png deleted file mode 100644 index 94f964d4e6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/336.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/34.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/34.png deleted file mode 100644 index 17e6a1ab17..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/34.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/358.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/358.png deleted file mode 100644 index 2df9f1a943..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/358.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/359.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/359.png deleted file mode 100644 index b312865f08..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/359.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/36.png deleted file mode 100644 index d7858dea3f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/374.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/374.png deleted file mode 100644 index f89690f461..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/374.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/376.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/376.png deleted file mode 100644 index cdc1c84d97..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/376.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/378.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/378.png deleted file mode 100644 index d0d1928cda..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/378.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/39.png deleted file mode 100644 index d4cbbbfbeb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/393.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/393.png deleted file mode 100644 index 0b20ea77ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/393.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/394.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/394.png deleted file mode 100644 index e4e83d5014..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/394.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/396.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/396.png deleted file mode 100644 index 5fe965fe5b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/396.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/400.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/400.png deleted file mode 100644 index 900139147f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/400.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/407.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/407.png deleted file mode 100644 index 0868ec46ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/407.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/408.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/408.png deleted file mode 100644 index 17e6a1ab17..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/408.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/409.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/409.png deleted file mode 100644 index 47007b0be8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/409.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/41.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/41.png deleted file mode 100644 index c92efe6811..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/41.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/411.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/411.png deleted file mode 100644 index 42ababb0fd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/411.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/412.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/412.png deleted file mode 100644 index a14e23be47..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/412.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/413.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/413.png deleted file mode 100644 index dccf963af1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/413.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/420.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/420.png deleted file mode 100644 index 7fcf447fe0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/420.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/43.png deleted file mode 100644 index e8a21776f3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/44.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/44.png deleted file mode 100644 index dccf963af1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/44.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/45.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/45.png deleted file mode 100644 index c92efe6811..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/45.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/456.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/456.png deleted file mode 100644 index 20e3b73b89..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/456.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/46.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/46.png deleted file mode 100644 index 2ff6a05df1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/46.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/472.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/472.png deleted file mode 100644 index 9fd5283344..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/472.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/474.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/474.png deleted file mode 100644 index 4614c7bcdd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/474.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/485.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/485.png deleted file mode 100644 index c3dbadf458..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/485.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/488.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/488.png deleted file mode 100644 index b6076f0421..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/488.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/49.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/49.png deleted file mode 100644 index e60384b9ac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/49.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/51.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/51.png deleted file mode 100644 index 3cb8a65154..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/51.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/53.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/53.png deleted file mode 100644 index e63c540880..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/54.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/54.png deleted file mode 100644 index 851b6c61d7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/54.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/55.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/55.png deleted file mode 100644 index b1683a03b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/55.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/552.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/552.png deleted file mode 100644 index 4d6b0e736b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/552.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/553.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/553.png deleted file mode 100644 index 3cb8a65154..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/553.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/558.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/558.png deleted file mode 100644 index 17e6a1ab17..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/558.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/561.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/561.png deleted file mode 100644 index 904ed0bdfd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/561.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/566.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/566.png deleted file mode 100644 index 0868ec46ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/566.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/572.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/572.png deleted file mode 100644 index dba30eedf4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/572.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/583.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/583.png deleted file mode 100644 index 3f51109ae7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/583.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/594.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/594.png deleted file mode 100644 index 47d7120e58..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/594.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/595.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/595.png deleted file mode 100644 index 9ab2062ad0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/595.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/597.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/597.png deleted file mode 100644 index 23aa77a8ed..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/597.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/598.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/598.png deleted file mode 100644 index f8b06f1bb1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/598.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/599.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/599.png deleted file mode 100644 index 4b8925fc1c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/599.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/600.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/600.png deleted file mode 100644 index 3715cfe686..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/600.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/601.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/601.png deleted file mode 100644 index 097831fc5d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/601.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/602.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/602.png deleted file mode 100644 index dccf963af1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/602.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/603.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/603.png deleted file mode 100644 index c5904feaa5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/603.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/604.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/604.png deleted file mode 100644 index 0ca5470d92..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/604.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/605.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/605.png deleted file mode 100644 index 85fb409050..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/605.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/606.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/606.png deleted file mode 100644 index 783b05d889..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/606.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/610.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/610.png deleted file mode 100644 index 874a6e70ce..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/610.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/617.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/617.png deleted file mode 100644 index 6a575adab0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/617.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/618.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/618.png deleted file mode 100644 index 538f5c13c7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/618.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/625.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/625.png deleted file mode 100644 index 059abb8cdb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/625.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/626.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/626.png deleted file mode 100644 index c5904feaa5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/626.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/64.png deleted file mode 100644 index e5c69cce09..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/660.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/660.png deleted file mode 100644 index 17e6a1ab17..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/660.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/661.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/661.png deleted file mode 100644 index 3cb8a65154..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/661.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/662.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/662.png deleted file mode 100644 index dccf963af1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/662.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/663.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/663.png deleted file mode 100644 index 1d48111c20..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/663.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/664.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/664.png deleted file mode 100644 index e0428d4af9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/664.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/665.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/665.png deleted file mode 100644 index c1bc9e6cf1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/665.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/666.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/666.png deleted file mode 100644 index f378405463..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/666.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/667.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/667.png deleted file mode 100644 index 2d9ce10e7c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/667.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/668.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/668.png deleted file mode 100644 index 9a72ad2a2b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/668.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/669.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/669.png deleted file mode 100644 index 0737a54b9d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/669.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/671.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/671.png deleted file mode 100644 index 089b980a14..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/671.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/689.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/689.png deleted file mode 100644 index 91a1a6b20b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/689.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/698.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/698.png deleted file mode 100644 index d1ee7f08f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/698.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/699.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/699.png deleted file mode 100644 index 8e64534fcd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/699.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/7.png deleted file mode 100644 index cb8eb76005..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/700.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/700.png deleted file mode 100644 index d96a45f5b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/700.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/701.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/701.png deleted file mode 100644 index cc4383b6e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/701.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/702.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/702.png deleted file mode 100644 index 1a22044927..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/702.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/703.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/703.png deleted file mode 100644 index 9ff22ef03e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/703.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/704.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/704.png deleted file mode 100644 index 05d770fae1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/704.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/705.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/705.png deleted file mode 100644 index a14e23be47..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/705.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/706.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/706.png deleted file mode 100644 index 78dc02fc0d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/706.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/707.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/707.png deleted file mode 100644 index 69266a61b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/707.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/708.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/708.png deleted file mode 100644 index c9744e6f8b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/708.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/709.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/709.png deleted file mode 100644 index 0f59929d7a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/709.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/71.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/71.png deleted file mode 100644 index c10e47a41f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/71.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/710.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/710.png deleted file mode 100644 index e634cad461..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/710.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/711.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/711.png deleted file mode 100644 index 9e9407fd67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/711.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/712.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/712.png deleted file mode 100644 index eb34ff2b9f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/712.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/713.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/713.png deleted file mode 100644 index c4164c1fc3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/713.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/714.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/714.png deleted file mode 100644 index 586dad2034..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/714.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/715.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/715.png deleted file mode 100644 index afaef672ea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/715.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/716.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/716.png deleted file mode 100644 index 3dfdbb222b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/716.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/717.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/717.png deleted file mode 100644 index df442304f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/717.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/718.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/718.png deleted file mode 100644 index b9a078142c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/718.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/719.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/719.png deleted file mode 100644 index 729bce703a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/719.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/720.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/720.png deleted file mode 100644 index 941503e4b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/720.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/721.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/721.png deleted file mode 100644 index 83006ca9f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/721.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/722.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/722.png deleted file mode 100644 index 927b1cd176..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/722.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/723.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/723.png deleted file mode 100644 index d88bb26ba4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/723.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/724.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/724.png deleted file mode 100644 index 7e095e656f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/724.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/725.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/725.png deleted file mode 100644 index b793ed5181..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/725.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/726.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/726.png deleted file mode 100644 index 9c80753668..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/726.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/727.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/727.png deleted file mode 100644 index e63ca3ec4e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/727.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/729.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/729.png deleted file mode 100644 index 54b806ab5e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/729.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/730.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/730.png deleted file mode 100644 index 1637f7522b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/730.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/731.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/731.png deleted file mode 100644 index 119877d161..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/731.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/732.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/732.png deleted file mode 100644 index cc085ed704..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/732.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/733.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/733.png deleted file mode 100644 index d261c3c1d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/733.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/735.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/735.png deleted file mode 100644 index 220d862d0a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/735.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/736.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/736.png deleted file mode 100644 index e7ae5df805..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/736.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/737.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/737.png deleted file mode 100644 index e25d29da96..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/737.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/74.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/74.png deleted file mode 100644 index 1f1d78eb79..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/74.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/75.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/75.png deleted file mode 100644 index 8f1b521c97..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/75.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/762.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/762.png deleted file mode 100644 index 9eb5f83f11..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/762.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/763.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/763.png deleted file mode 100644 index 1f30ccde5f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/763.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/765.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/765.png deleted file mode 100644 index 24bf6a3e9d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/765.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/766.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/766.png deleted file mode 100644 index 22b08ee4c1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/766.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/767.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/767.png deleted file mode 100644 index 89f6fb4c8f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/767.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/769.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/769.png deleted file mode 100644 index 31a97a346e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/769.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/77.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/77.png deleted file mode 100644 index a14e23be47..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/77.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/78.png deleted file mode 100644 index f761b9c4ce..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/79.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/79.png deleted file mode 100644 index 0155070a13..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/8.png deleted file mode 100644 index 640d4a58e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/841.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/841.png deleted file mode 100644 index e1595b6547..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/841.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/842.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/842.png deleted file mode 100644 index 59b53c2284..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/842.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/843.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/843.png deleted file mode 100644 index 8f0b9016d1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/843.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/845.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/845.png deleted file mode 100644 index 8518029fe6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/845.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/846.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/846.png deleted file mode 100644 index 7fcf447fe0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/846.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/849.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/849.png deleted file mode 100644 index 425ae37aca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/849.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/850.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/850.png deleted file mode 100644 index 6ddc819b03..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/850.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/852.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/852.png deleted file mode 100644 index 01f31d625c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/852.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/92.png deleted file mode 100644 index cc085ed704..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedGTEnhancementcapsuleMolten/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10022.png deleted file mode 100644 index 1081534355..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10024.png deleted file mode 100644 index afb8f9eec8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10082.png deleted file mode 100644 index 8e636ca5ee..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10083.png deleted file mode 100644 index b71d07ef48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10084.png deleted file mode 100644 index b71d07ef48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10085.png deleted file mode 100644 index 6425aa3103..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10096.png deleted file mode 100644 index 442310ce5e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10097.png deleted file mode 100644 index afffffcc7b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10099.png deleted file mode 100644 index 96f042e263..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10101.png deleted file mode 100644 index 06125a0919..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10102.png deleted file mode 100644 index 2fea4b48af..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10103.png deleted file mode 100644 index 65d8ddc539..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10104.png deleted file mode 100644 index 4ddb5e49a0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10105.png deleted file mode 100644 index 88ef231d08..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10106.png deleted file mode 100644 index 99257ae673..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10109.png deleted file mode 100644 index 4aca70be2f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10110.png deleted file mode 100644 index ac3dc38cf6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10111.png deleted file mode 100644 index 248d553e61..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10112.png deleted file mode 100644 index 68b31a1feb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/88.png deleted file mode 100644 index 6606fe1679..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/89.png deleted file mode 100644 index e0beda40ad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/90.png deleted file mode 100644 index 595e2baced..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/92.png deleted file mode 100644 index 650fd5e7a3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/96.png deleted file mode 100644 index eb6162d7f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedbolt/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10002.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10002.png deleted file mode 100644 index 7f3400b892..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10002.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10003.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10003.png deleted file mode 100644 index 7f3400b892..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10003.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10004.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10004.png deleted file mode 100644 index 536479a3c3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10004.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10006.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10006.png deleted file mode 100644 index b9d27941a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10006.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10007.png deleted file mode 100644 index b9d27941a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10008.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10008.png deleted file mode 100644 index 69af8dd149..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10008.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10010.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10010.png deleted file mode 100644 index ddd971cf88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10010.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10011.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10011.png deleted file mode 100644 index ddd971cf88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10011.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10012.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10012.png deleted file mode 100644 index ef8bb41b55..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10012.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10013.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10013.png deleted file mode 100644 index c6de3a2ab8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10013.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10015.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10015.png deleted file mode 100644 index a5da21e562..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10015.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10019.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10019.png deleted file mode 100644 index aba630f2f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10019.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10020.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10020.png deleted file mode 100644 index 830722c645..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10020.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10021.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10021.png deleted file mode 100644 index 830722c645..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10021.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10025.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10025.png deleted file mode 100644 index 16c8b71672..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10025.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10026.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10026.png deleted file mode 100644 index d06cfc00d1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10026.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10027.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10027.png deleted file mode 100644 index e7d31d26c1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10027.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10028.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10028.png deleted file mode 100644 index a54579f752..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10028.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10029.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10029.png deleted file mode 100644 index 0689c61016..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10029.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10030.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10030.png deleted file mode 100644 index 12e9e878c7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10030.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10031.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10031.png deleted file mode 100644 index 15f5589ca8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10031.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10032.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10032.png deleted file mode 100644 index 15f5589ca8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10032.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10033.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10033.png deleted file mode 100644 index c3ed158c33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10033.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10034.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10034.png deleted file mode 100644 index c3ed158c33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10034.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10036.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10036.png deleted file mode 100644 index 5ffe25efc5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10036.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10037.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10037.png deleted file mode 100644 index 6ecc62b458..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10037.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10038.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10038.png deleted file mode 100644 index 34bd103347..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10038.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10039.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10039.png deleted file mode 100644 index 8986634311..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10039.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10040.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10040.png deleted file mode 100644 index 8f765a992f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10040.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10041.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10041.png deleted file mode 100644 index a2fdd5af46..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10041.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10042.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10042.png deleted file mode 100644 index a75ae89d07..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10042.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10046.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10046.png deleted file mode 100644 index 197e10a80a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10046.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10047.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10047.png deleted file mode 100644 index f42c7475f0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10047.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10048.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10048.png deleted file mode 100644 index 42a340e789..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10048.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10049.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10049.png deleted file mode 100644 index 5256edf947..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10049.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10050.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10050.png deleted file mode 100644 index 5278fbe6e3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10050.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10051.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10051.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10051.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10056.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10056.png deleted file mode 100644 index 184dc9dcf5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10056.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10058.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10058.png deleted file mode 100644 index 3c1da55c3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10058.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10059.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10059.png deleted file mode 100644 index 20de3cf15c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10059.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10060.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10060.png deleted file mode 100644 index 5758f45f45..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10060.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10061.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10061.png deleted file mode 100644 index 19b96afdc1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10061.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10062.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10062.png deleted file mode 100644 index ae2dfce2b7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10062.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10064.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10064.png deleted file mode 100644 index d62ede4f1b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10064.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10065.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10065.png deleted file mode 100644 index ca2b9e65fa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10065.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10069.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10069.png deleted file mode 100644 index 434b07762d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10069.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10075.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10075.png deleted file mode 100644 index 1d9d680dd5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10075.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10077.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10077.png deleted file mode 100644 index d943cc39f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10077.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10079.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10079.png deleted file mode 100644 index 184dc9dcf5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10079.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10080.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10080.png deleted file mode 100644 index c6ed3c076d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10080.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10081.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10081.png deleted file mode 100644 index 2b668073a4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10081.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10086.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10086.png deleted file mode 100644 index e5ce190422..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10086.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10087.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10087.png deleted file mode 100644 index c09c02fa6a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10087.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10088.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10088.png deleted file mode 100644 index f6e3208d4a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10088.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10089.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10089.png deleted file mode 100644 index c23955ba3b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10089.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10090.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10090.png deleted file mode 100644 index e5ce51cac4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10090.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10091.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10091.png deleted file mode 100644 index 3c28f137ba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10091.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10092.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10092.png deleted file mode 100644 index 1c8bdcb103..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10092.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10094.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10094.png deleted file mode 100644 index 319bdebb7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10094.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10095.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10095.png deleted file mode 100644 index 1d80a14dd3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10095.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10107.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10107.png deleted file mode 100644 index c3ed158c33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10107.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10116.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10116.png deleted file mode 100644 index d4e68323a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10116.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10117.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10117.png deleted file mode 100644 index cf2e98f253..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/10117.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/103.png deleted file mode 100644 index 367d16c7ed..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11004.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11004.png deleted file mode 100644 index 61fd27fbac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11004.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11010.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11010.png deleted file mode 100644 index 52da916776..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11010.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11012.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11012.png deleted file mode 100644 index 76184bb30f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11012.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11014.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11014.png deleted file mode 100644 index ae41e197d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11014.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11015.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11015.png deleted file mode 100644 index d4589ca089..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11015.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11016.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11016.png deleted file mode 100644 index 82a9b87fb9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11016.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11017.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11017.png deleted file mode 100644 index b9147edf6f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11017.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11018.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11018.png deleted file mode 100644 index c6996c178e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11018.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11036.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11036.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11036.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11042.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11042.png deleted file mode 100644 index 7eb5a4b0a5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11042.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11044.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11044.png deleted file mode 100644 index 8b90b66b5c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11044.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11045.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11045.png deleted file mode 100644 index 8ebbf41dd8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11045.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11046.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11046.png deleted file mode 100644 index 8ebbf41dd8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11046.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11100.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11100.png deleted file mode 100644 index 3c3d37351c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11100.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11102.png deleted file mode 100644 index 3c3d37351c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11103.png deleted file mode 100644 index 3c3d37351c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11104.png deleted file mode 100644 index 3c3d37351c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11105.png deleted file mode 100644 index 3c3d37351c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11106.png deleted file mode 100644 index 3c3d37351c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11114.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11114.png deleted file mode 100644 index 0fc51dc969..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11114.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11115.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11115.png deleted file mode 100644 index c405059658..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11115.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11124.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11124.png deleted file mode 100644 index 73c5dfee2b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11124.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11300.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11300.png deleted file mode 100644 index 96d6b417ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11300.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11301.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11301.png deleted file mode 100644 index 5301f3365b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11301.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11302.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11302.png deleted file mode 100644 index 733d0f6197..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11302.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11306.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11306.png deleted file mode 100644 index be6b7c0dc3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11306.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11307.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11307.png deleted file mode 100644 index a3700e5487..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11307.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11308.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11308.png deleted file mode 100644 index 643f4851f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11308.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11309.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11309.png deleted file mode 100644 index ef2ed45227..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11309.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11310.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11310.png deleted file mode 100644 index d2fa7ebcba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11310.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11311.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11311.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11311.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11316.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11316.png deleted file mode 100644 index 0ad1e9cf7c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11316.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11401.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11401.png deleted file mode 100644 index cbf78286b5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11401.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11402.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11402.png deleted file mode 100644 index e4d2324aaf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11402.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11403.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11403.png deleted file mode 100644 index 9f84bf7b66..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11403.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11404.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11404.png deleted file mode 100644 index 0f8ad5e0b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11404.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11405.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11405.png deleted file mode 100644 index 127695a26a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11405.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11406.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11406.png deleted file mode 100644 index b6c586ef5f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11406.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11407.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11407.png deleted file mode 100644 index a2199d965e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11407.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11408.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11408.png deleted file mode 100644 index 493bb305db..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11408.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11409.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11409.png deleted file mode 100644 index 262423b182..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11409.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11410.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11410.png deleted file mode 100644 index eb4a919fc8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11410.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11411.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11411.png deleted file mode 100644 index d6a81942d8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11411.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11412.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11412.png deleted file mode 100644 index 996178c1ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11412.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11413.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11413.png deleted file mode 100644 index d3362a22e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11413.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11414.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11414.png deleted file mode 100644 index cd8eea7c92..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11414.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11415.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11415.png deleted file mode 100644 index 22a74d06d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11415.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11416.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11416.png deleted file mode 100644 index 8948cc834e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11416.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11417.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11417.png deleted file mode 100644 index c7aeab72c3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11417.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11418.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11418.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11418.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11419.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11419.png deleted file mode 100644 index 3052df7c29..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11419.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11420.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11420.png deleted file mode 100644 index 5b319677d2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11420.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11421.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11421.png deleted file mode 100644 index db50c87c2a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11421.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11422.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11422.png deleted file mode 100644 index bb2d4e8cb3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11422.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11423.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11423.png deleted file mode 100644 index 02a7f5a7eb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11423.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11424.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11424.png deleted file mode 100644 index 7bd58fc5fe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11424.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11425.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11425.png deleted file mode 100644 index 61681d4774..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11425.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11426.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11426.png deleted file mode 100644 index d8d1b27c0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11426.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11427.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11427.png deleted file mode 100644 index 7f3400b892..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11427.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11428.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11428.png deleted file mode 100644 index 7a8829ce89..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11428.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11429.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11429.png deleted file mode 100644 index 79cfe1312e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11429.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11430.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11430.png deleted file mode 100644 index 466da47827..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11430.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11431.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11431.png deleted file mode 100644 index e4d2324aaf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11431.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11432.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11432.png deleted file mode 100644 index 0f8ad5e0b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11432.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11433.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11433.png deleted file mode 100644 index b6c586ef5f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11433.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11434.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11434.png deleted file mode 100644 index 493bb305db..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11434.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11435.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11435.png deleted file mode 100644 index eb4a919fc8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11435.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11436.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11436.png deleted file mode 100644 index 996178c1ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11436.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11437.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11437.png deleted file mode 100644 index cd8eea7c92..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11437.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11438.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11438.png deleted file mode 100644 index 8948cc834e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11438.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11439.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11439.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11439.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11440.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11440.png deleted file mode 100644 index 5b319677d2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11440.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11441.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11441.png deleted file mode 100644 index bb2d4e8cb3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11441.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11442.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11442.png deleted file mode 100644 index 7bd58fc5fe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11442.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11443.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11443.png deleted file mode 100644 index d8d1b27c0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11443.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11444.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11444.png deleted file mode 100644 index 7a8829ce89..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11444.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11445.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11445.png deleted file mode 100644 index 466da47827..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11445.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11461.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11461.png deleted file mode 100644 index 2a58677c54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11461.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11462.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11462.png deleted file mode 100644 index 5b995a50d1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11462.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11463.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11463.png deleted file mode 100644 index 02d207d19a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11463.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11469.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11469.png deleted file mode 100644 index ce80d68d1f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11469.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11470.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11470.png deleted file mode 100644 index 6b191d0f0a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11470.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11471.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11471.png deleted file mode 100644 index 745017ba89..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11471.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11500.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11500.png deleted file mode 100644 index 704aaf0cf3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/11500.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20005.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20005.png deleted file mode 100644 index 25e88ad5bf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20006.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20006.png deleted file mode 100644 index d9b95c4137..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20006.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20007.png deleted file mode 100644 index 2d5e10f037..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/20007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29904.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29904.png deleted file mode 100644 index c2cb403213..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29904.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29905.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29905.png deleted file mode 100644 index 358debbdec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29905.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29914.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29914.png deleted file mode 100644 index 38935571ca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29914.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29915.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29915.png deleted file mode 100644 index bf00f4da53..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/29915.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/37.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/37.png deleted file mode 100644 index 41ebad0cd6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/37.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/38.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/38.png deleted file mode 100644 index 2c4e855950..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/38.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/41.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/41.png deleted file mode 100644 index 5ca58e104b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/41.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/42.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/42.png deleted file mode 100644 index 5c0656322a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/42.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/44.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/44.png deleted file mode 100644 index 7f6ec13077..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/44.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/48.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/48.png deleted file mode 100644 index 58bc46bd54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/48.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/50.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/50.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/50.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/52.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/52.png deleted file mode 100644 index 03333dff20..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/52.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/56.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/56.png deleted file mode 100644 index 23884d8f59..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/56.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/58.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/58.png deleted file mode 100644 index 90807e824b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/58.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/61.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/61.png deleted file mode 100644 index 0146f93c22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/61.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/62.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/62.png deleted file mode 100644 index c12c147330..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/62.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/63.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/63.png deleted file mode 100644 index 9e203d04e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/63.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/66.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/66.png deleted file mode 100644 index a0dddd89fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/66.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/67.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/67.png deleted file mode 100644 index a0dddd89fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/67.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/68.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/68.png deleted file mode 100644 index a0dddd89fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/68.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/72.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/72.png deleted file mode 100644 index 4f8faed26d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/72.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/74.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/74.png deleted file mode 100644 index 4f8faed26d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/74.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/75.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/75.png deleted file mode 100644 index 4f8faed26d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/75.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/81.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/81.png deleted file mode 100644 index 5e2127a3f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/81.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/86.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/86.png deleted file mode 100644 index 5e2127a3f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/86.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/98.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/98.png deleted file mode 100644 index d569e7de70..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsule/98.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10022.png deleted file mode 100644 index 77b2af296f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10023.png deleted file mode 100644 index 9a89d9f772..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10024.png deleted file mode 100644 index 0411a40aed..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10053.png deleted file mode 100644 index a8ff0f03f1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10082.png deleted file mode 100644 index 9cc351bb6d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10083.png deleted file mode 100644 index d4dc97e256..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10084.png deleted file mode 100644 index d4dc97e256..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10085.png deleted file mode 100644 index c19ce65173..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10096.png deleted file mode 100644 index f00936faa8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10097.png deleted file mode 100644 index 782d1ee000..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10098.png deleted file mode 100644 index 6b69b445a0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10099.png deleted file mode 100644 index adb303a1ee..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10101.png deleted file mode 100644 index cbb2a2cad1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10102.png deleted file mode 100644 index 287c42265d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10103.png deleted file mode 100644 index 8de39d63fd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10104.png deleted file mode 100644 index f8f8d95616..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10105.png deleted file mode 100644 index f37ccfb7ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10106.png deleted file mode 100644 index e85b21a238..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10109.png deleted file mode 100644 index dd1efcb6c4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10110.png deleted file mode 100644 index 4b950b982c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10111.png deleted file mode 100644 index 647edf434a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10112.png deleted file mode 100644 index d0faf3cc59..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11124.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11124.png deleted file mode 100644 index 92ad63637b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11124.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11312.png deleted file mode 100644 index 798dec08d7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11314.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11314.png deleted file mode 100644 index 9c96011e3a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11314.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11465.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11465.png deleted file mode 100644 index 6c2ef18dc1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11465.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11498.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11498.png deleted file mode 100644 index 1a71eea5d2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11498.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11503.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11503.png deleted file mode 100644 index 5518e06d64..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/20001.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/20001.png deleted file mode 100644 index fcc06fbaf2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/20001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/32237.png deleted file mode 100644 index c8d647e443..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/39.png deleted file mode 100644 index 01d02c73a9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/40.png deleted file mode 100644 index 9a9bc12260..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/43.png deleted file mode 100644 index 4880a1280f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/59.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/59.png deleted file mode 100644 index 7b76032369..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/59.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/64.png deleted file mode 100644 index 280acd1991..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/78.png deleted file mode 100644 index 280acd1991..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/88.png deleted file mode 100644 index 6d85b411db..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/90.png deleted file mode 100644 index 3a785542b8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/92.png deleted file mode 100644 index 1b0ac75352..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/96.png deleted file mode 100644 index 46020d8777..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcapsuleMolten/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10002.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10002.png deleted file mode 100644 index 8c2eb4c88d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10002.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10003.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10003.png deleted file mode 100644 index 8c2eb4c88d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10003.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10004.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10004.png deleted file mode 100644 index c4cba2e397..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10004.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10006.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10006.png deleted file mode 100644 index 471ac61d8d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10006.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10007.png deleted file mode 100644 index 471ac61d8d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10008.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10008.png deleted file mode 100644 index 3c9730ebb6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10008.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10010.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10010.png deleted file mode 100644 index 5d21b0979d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10010.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10011.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10011.png deleted file mode 100644 index 5d21b0979d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10011.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10012.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10012.png deleted file mode 100644 index c4326d599d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10012.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10013.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10013.png deleted file mode 100644 index e796b31dd4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10013.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10015.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10015.png deleted file mode 100644 index ad5b83fba6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10015.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10019.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10019.png deleted file mode 100644 index 1fc89eda31..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10019.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10020.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10020.png deleted file mode 100644 index 642c2a3017..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10020.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10021.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10021.png deleted file mode 100644 index 09b3835c20..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10021.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10025.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10025.png deleted file mode 100644 index 9aceabe1ac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10025.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10026.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10026.png deleted file mode 100644 index 544babbc69..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10026.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10027.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10027.png deleted file mode 100644 index 46d46e0732..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10027.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10028.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10028.png deleted file mode 100644 index 8d3464f3c2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10028.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10029.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10029.png deleted file mode 100644 index 4f9276c1d6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10029.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10030.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10030.png deleted file mode 100644 index 3786dfc1ad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10030.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10031.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10031.png deleted file mode 100644 index 0649c54e4b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10031.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10032.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10032.png deleted file mode 100644 index 0649c54e4b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10032.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10033.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10033.png deleted file mode 100644 index 33719852ea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10033.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10034.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10034.png deleted file mode 100644 index 33719852ea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10034.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10036.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10036.png deleted file mode 100644 index 060e1cf0d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10036.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10037.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10037.png deleted file mode 100644 index 8762aa0cbc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10037.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10038.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10038.png deleted file mode 100644 index 332be0f710..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10038.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10039.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10039.png deleted file mode 100644 index b891150bc2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10039.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10040.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10040.png deleted file mode 100644 index 429bd5002f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10040.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10041.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10041.png deleted file mode 100644 index 30cbc9d172..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10041.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10042.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10042.png deleted file mode 100644 index f8764b7412..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10042.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10046.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10046.png deleted file mode 100644 index 283043f2f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10046.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10047.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10047.png deleted file mode 100644 index c885933063..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10047.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10048.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10048.png deleted file mode 100644 index 67dbbd1437..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10048.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10049.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10049.png deleted file mode 100644 index ddeecd4c6b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10049.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10050.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10050.png deleted file mode 100644 index 202cd94b4e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10050.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10051.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10051.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10051.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10056.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10056.png deleted file mode 100644 index 663ccf479a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10056.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10058.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10058.png deleted file mode 100644 index dde6a195aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10058.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10059.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10059.png deleted file mode 100644 index ba51937694..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10059.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10060.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10060.png deleted file mode 100644 index a3e9c78482..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10060.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10061.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10061.png deleted file mode 100644 index 4e6b2f7c0e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10061.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10062.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10062.png deleted file mode 100644 index 433a80325c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10062.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10064.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10064.png deleted file mode 100644 index bb22a6e880..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10064.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10065.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10065.png deleted file mode 100644 index 419a2a1ea5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10065.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10069.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10069.png deleted file mode 100644 index f33fe01c0d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10069.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10075.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10075.png deleted file mode 100644 index 7b1a3f505f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10075.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10077.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10077.png deleted file mode 100644 index 83836cb5f3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10077.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10079.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10079.png deleted file mode 100644 index 663ccf479a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10079.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10080.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10080.png deleted file mode 100644 index 4c5d8bab53..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10080.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10081.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10081.png deleted file mode 100644 index 47e299b22a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10081.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10086.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10086.png deleted file mode 100644 index 5c68761515..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10086.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10087.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10087.png deleted file mode 100644 index 6203eca24f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10087.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10088.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10088.png deleted file mode 100644 index c73660e901..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10088.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10089.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10089.png deleted file mode 100644 index 72780f71af..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10089.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10090.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10090.png deleted file mode 100644 index 6182f06571..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10090.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10091.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10091.png deleted file mode 100644 index 75f9ae113c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10091.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10092.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10092.png deleted file mode 100644 index bbd9ae2ba6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10092.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10094.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10094.png deleted file mode 100644 index 5172f03f6d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10094.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10095.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10095.png deleted file mode 100644 index 6545d3d2f4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10095.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10107.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10107.png deleted file mode 100644 index 33719852ea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10107.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10116.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10116.png deleted file mode 100644 index e932c38acf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10116.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10117.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10117.png deleted file mode 100644 index 710fd1b88d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/10117.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/103.png deleted file mode 100644 index e14a01312c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11004.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11004.png deleted file mode 100644 index 31a07598ac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11004.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11010.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11010.png deleted file mode 100644 index 4b3ccdc57e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11010.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11012.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11012.png deleted file mode 100644 index 776e6cb7f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11012.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11014.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11014.png deleted file mode 100644 index 36d39f7173..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11014.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11015.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11015.png deleted file mode 100644 index e1c74312aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11015.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11016.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11016.png deleted file mode 100644 index 2fad436fbb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11016.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11017.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11017.png deleted file mode 100644 index 2bbe332cff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11017.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11018.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11018.png deleted file mode 100644 index 21aed985b5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11018.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11036.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11036.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11036.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11042.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11042.png deleted file mode 100644 index f6bfd0dab9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11042.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11044.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11044.png deleted file mode 100644 index 49aae66801..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11044.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11045.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11045.png deleted file mode 100644 index cab4f505b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11045.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11046.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11046.png deleted file mode 100644 index cab4f505b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11046.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11100.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11100.png deleted file mode 100644 index 89dc010d9c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11100.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11102.png deleted file mode 100644 index 89dc010d9c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11103.png deleted file mode 100644 index 89dc010d9c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11104.png deleted file mode 100644 index 89dc010d9c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11105.png deleted file mode 100644 index 89dc010d9c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11106.png deleted file mode 100644 index 89dc010d9c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11114.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11114.png deleted file mode 100644 index 96d477957d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11114.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11115.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11115.png deleted file mode 100644 index 834573ba02..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11115.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11124.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11124.png deleted file mode 100644 index 925db29cd9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11124.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11300.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11300.png deleted file mode 100644 index 29df01cf25..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11300.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11301.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11301.png deleted file mode 100644 index 66590b0233..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11301.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11302.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11302.png deleted file mode 100644 index 7561cb75ca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11302.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11306.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11306.png deleted file mode 100644 index f8dc013321..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11306.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11307.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11307.png deleted file mode 100644 index b7dcc2c944..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11307.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11308.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11308.png deleted file mode 100644 index 4e0470acfb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11308.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11309.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11309.png deleted file mode 100644 index 151e8e8366..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11309.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11310.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11310.png deleted file mode 100644 index e26338cfd2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11310.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11311.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11311.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11311.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11316.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11316.png deleted file mode 100644 index b257b1352f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11316.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11401.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11401.png deleted file mode 100644 index ce2def6d65..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11401.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11402.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11402.png deleted file mode 100644 index b25b52ea0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11402.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11403.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11403.png deleted file mode 100644 index 15c3147c79..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11403.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11404.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11404.png deleted file mode 100644 index 38d4000134..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11404.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11405.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11405.png deleted file mode 100644 index ef7b276e3b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11405.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11406.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11406.png deleted file mode 100644 index 0f7f2a18b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11406.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11407.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11407.png deleted file mode 100644 index 86c8ecdef0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11407.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11408.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11408.png deleted file mode 100644 index 8755da1ea0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11408.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11409.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11409.png deleted file mode 100644 index b5bfef59b1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11409.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11410.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11410.png deleted file mode 100644 index 2d1576f43e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11410.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11411.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11411.png deleted file mode 100644 index e308c143e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11411.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11412.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11412.png deleted file mode 100644 index da8fb9ab6a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11412.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11413.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11413.png deleted file mode 100644 index 655d7bf8d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11413.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11414.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11414.png deleted file mode 100644 index 3d32eb3956..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11414.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11415.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11415.png deleted file mode 100644 index d141e3b518..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11415.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11416.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11416.png deleted file mode 100644 index d30a191607..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11416.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11417.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11417.png deleted file mode 100644 index 0e4e92cbc1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11417.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11418.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11418.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11418.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11419.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11419.png deleted file mode 100644 index 6f5acec39a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11419.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11420.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11420.png deleted file mode 100644 index 1504854118..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11420.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11421.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11421.png deleted file mode 100644 index bea364d641..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11421.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11422.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11422.png deleted file mode 100644 index 76b0839b44..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11422.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11423.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11423.png deleted file mode 100644 index 4538fec1d5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11423.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11424.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11424.png deleted file mode 100644 index d60f7748df..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11424.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11425.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11425.png deleted file mode 100644 index 2205f318e1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11425.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11426.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11426.png deleted file mode 100644 index 1eb0b40dc3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11426.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11427.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11427.png deleted file mode 100644 index 8c2eb4c88d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11427.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11428.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11428.png deleted file mode 100644 index e5e0fffbc2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11428.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11429.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11429.png deleted file mode 100644 index a88a0ab796..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11429.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11430.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11430.png deleted file mode 100644 index e23e5ab791..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11430.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11431.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11431.png deleted file mode 100644 index b25b52ea0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11431.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11432.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11432.png deleted file mode 100644 index 38d4000134..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11432.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11433.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11433.png deleted file mode 100644 index 0f7f2a18b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11433.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11434.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11434.png deleted file mode 100644 index 8755da1ea0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11434.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11435.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11435.png deleted file mode 100644 index 2d1576f43e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11435.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11436.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11436.png deleted file mode 100644 index da8fb9ab6a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11436.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11437.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11437.png deleted file mode 100644 index 3d32eb3956..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11437.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11438.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11438.png deleted file mode 100644 index d30a191607..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11438.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11439.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11439.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11439.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11440.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11440.png deleted file mode 100644 index 1504854118..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11440.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11441.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11441.png deleted file mode 100644 index 76b0839b44..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11441.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11442.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11442.png deleted file mode 100644 index d60f7748df..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11442.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11443.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11443.png deleted file mode 100644 index 1eb0b40dc3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11443.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11444.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11444.png deleted file mode 100644 index e5e0fffbc2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11444.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11445.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11445.png deleted file mode 100644 index e23e5ab791..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11445.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11461.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11461.png deleted file mode 100644 index b0bb597bab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11461.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11462.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11462.png deleted file mode 100644 index 728151aa35..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11462.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11463.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11463.png deleted file mode 100644 index 7529fa8852..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11463.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11469.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11469.png deleted file mode 100644 index 80bb2c3470..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11469.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11470.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11470.png deleted file mode 100644 index d15eb3c09a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11470.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11471.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11471.png deleted file mode 100644 index 3b245d3567..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11471.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11500.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11500.png deleted file mode 100644 index e8259b696d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/11500.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20005.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20005.png deleted file mode 100644 index 67e799b363..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20006.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20006.png deleted file mode 100644 index 2e6a7daf9d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20006.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20007.png deleted file mode 100644 index 10aa9e89b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/20007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29904.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29904.png deleted file mode 100644 index 6c7dcf751f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29904.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29905.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29905.png deleted file mode 100644 index f4fa9a8fd4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29905.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29914.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29914.png deleted file mode 100644 index 1b3dd49d6d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29914.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29915.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29915.png deleted file mode 100644 index 7c7008531b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/29915.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/37.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/37.png deleted file mode 100644 index 2351394948..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/37.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/38.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/38.png deleted file mode 100644 index e3df3c47d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/38.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/41.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/41.png deleted file mode 100644 index cec5f775e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/41.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/42.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/42.png deleted file mode 100644 index 86df2b8a0c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/42.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/44.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/44.png deleted file mode 100644 index 17b3e8fe21..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/44.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/48.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/48.png deleted file mode 100644 index c32900789b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/48.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/50.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/50.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/50.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/52.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/52.png deleted file mode 100644 index e431c581c8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/52.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/56.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/56.png deleted file mode 100644 index cd7224001e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/56.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/58.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/58.png deleted file mode 100644 index c847bf0a70..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/58.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/61.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/61.png deleted file mode 100644 index 02c9b83100..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/61.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/62.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/62.png deleted file mode 100644 index 1d0ebc2062..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/62.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/63.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/63.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/63.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/66.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/66.png deleted file mode 100644 index 933c6fbe34..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/66.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/67.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/67.png deleted file mode 100644 index 933c6fbe34..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/67.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/68.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/68.png deleted file mode 100644 index 933c6fbe34..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/68.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/72.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/72.png deleted file mode 100644 index 027a449db6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/72.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/74.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/74.png deleted file mode 100644 index 027a449db6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/74.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/75.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/75.png deleted file mode 100644 index 027a449db6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/75.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/81.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/81.png deleted file mode 100644 index 78ce88fdc0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/81.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/86.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/86.png deleted file mode 100644 index 78ce88fdc0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/86.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/98.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/98.png deleted file mode 100644 index e4aa9648ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcell/98.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10022.png deleted file mode 100644 index 628bc8577f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10023.png deleted file mode 100644 index 3149b24232..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10024.png deleted file mode 100644 index e89676837c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10053.png deleted file mode 100644 index b08b7dcef5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10082.png deleted file mode 100644 index d4717f3dd9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10083.png deleted file mode 100644 index c43c89b894..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10084.png deleted file mode 100644 index c43c89b894..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10085.png deleted file mode 100644 index 28c98995f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10096.png deleted file mode 100644 index 182a190580..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10097.png deleted file mode 100644 index 021aac4af6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10098.png deleted file mode 100644 index 3a319abb9e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10099.png deleted file mode 100644 index cd2a137614..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10101.png deleted file mode 100644 index 367150605a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10102.png deleted file mode 100644 index 010e382d84..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10103.png deleted file mode 100644 index 646f68cd11..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10104.png deleted file mode 100644 index b06beab30c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10105.png deleted file mode 100644 index 15b6903c54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10106.png deleted file mode 100644 index 001784e13f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10109.png deleted file mode 100644 index 847ae74e62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10110.png deleted file mode 100644 index b4d0908573..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10111.png deleted file mode 100644 index 123369f7fa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10112.png deleted file mode 100644 index 4d0ea83b99..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11124.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11124.png deleted file mode 100644 index 2a111a46f0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11124.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11312.png deleted file mode 100644 index 7ffe70272d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11314.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11314.png deleted file mode 100644 index 2a18c61012..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11314.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11465.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11465.png deleted file mode 100644 index 0397bbd7a5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11465.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11498.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11498.png deleted file mode 100644 index 916312f6c0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11498.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11503.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11503.png deleted file mode 100644 index 2db2451a09..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/20001.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/20001.png deleted file mode 100644 index 892dbca61f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/20001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/32237.png deleted file mode 100644 index ca7502a88c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/39.png deleted file mode 100644 index 383ab63e3a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/40.png deleted file mode 100644 index 31ba01387f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/43.png deleted file mode 100644 index 318a0b1b37..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/59.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/59.png deleted file mode 100644 index 9f016ce52a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/59.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/64.png deleted file mode 100644 index 1fcfecf793..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/78.png deleted file mode 100644 index 1fcfecf793..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/88.png deleted file mode 100644 index d89820e9d3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/90.png deleted file mode 100644 index 4c5e005450..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/92.png deleted file mode 100644 index 73abad6473..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/96.png deleted file mode 100644 index da264b027d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcellMolten/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/1.png deleted file mode 100644 index 34a6e3517b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10.png deleted file mode 100644 index 7ba07c6638..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10023.png deleted file mode 100644 index 97757e7a82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10054.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10054.png deleted file mode 100644 index 351ae9746b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10067.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10067.png deleted file mode 100644 index d8b7d7e81a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10072.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10072.png deleted file mode 100644 index 0edb199029..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/11.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/11.png deleted file mode 100644 index 7ba07c6638..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/12.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/12.png deleted file mode 100644 index 8f8a4282b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/13.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/13.png deleted file mode 100644 index e2fbee141e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/14.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/14.png deleted file mode 100644 index eea7f82954..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/15.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/15.png deleted file mode 100644 index 49100691c1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/16.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/16.png deleted file mode 100644 index 9cb2648b0b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/17.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/17.png deleted file mode 100644 index 3ccbc1ec81..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/18.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/18.png deleted file mode 100644 index b30473e44f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/19.png deleted file mode 100644 index cd4cf8e465..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/2.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/2.png deleted file mode 100644 index fd8576662d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/23.png deleted file mode 100644 index c613215efd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/24.png deleted file mode 100644 index 6b6412f615..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/25.png deleted file mode 100644 index b4a8c8df32..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/26.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/26.png deleted file mode 100644 index c398bf05de..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/27.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/27.png deleted file mode 100644 index 632289a5d2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/28.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/28.png deleted file mode 100644 index 569a598bdf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/29.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/29.png deleted file mode 100644 index 0d789489ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/35.png deleted file mode 100644 index ac47c87180..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/43.png deleted file mode 100644 index b1c5b1c763..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/47.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/47.png deleted file mode 100644 index 9a12fc795a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/5.png deleted file mode 100644 index 758821e94d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/53.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/53.png deleted file mode 100644 index 8f4272bb6a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/60.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/60.png deleted file mode 100644 index 2f8953082c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/69.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/69.png deleted file mode 100644 index 2f8953082c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/7.png deleted file mode 100644 index f80c9b4e24..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/70.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/70.png deleted file mode 100644 index 081b54db89..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/79.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/79.png deleted file mode 100644 index 13845be2b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/8.png deleted file mode 100644 index c55daa015a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/89.png deleted file mode 100644 index 36738f785f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/9.png deleted file mode 100644 index 0c3967424d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/91.png deleted file mode 100644 index b408502a0e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/93.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/93.png deleted file mode 100644 index 39003abaa6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/94.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/94.png deleted file mode 100644 index c25cc8ed84..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/95.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/95.png deleted file mode 100644 index c25cc8ed84..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushed/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/1.png deleted file mode 100644 index 9b8f56ddf7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10.png deleted file mode 100644 index 09dc54e962..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10023.png deleted file mode 100644 index 1e5cc6ad56..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10054.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10054.png deleted file mode 100644 index edd9e89042..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10067.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10067.png deleted file mode 100644 index 8dff46ddae..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10072.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10072.png deleted file mode 100644 index f65634c89e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/11.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/11.png deleted file mode 100644 index 09dc54e962..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/12.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/12.png deleted file mode 100644 index 4e13ae7df4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/13.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/13.png deleted file mode 100644 index 8e40cb352d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/14.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/14.png deleted file mode 100644 index ed8284aedf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/15.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/15.png deleted file mode 100644 index 27a993df22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/16.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/16.png deleted file mode 100644 index af0a2f4ac3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/17.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/17.png deleted file mode 100644 index ab6b7d0b43..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/18.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/18.png deleted file mode 100644 index b5245cd334..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/19.png deleted file mode 100644 index 52f72434df..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/2.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/2.png deleted file mode 100644 index 6e837f062d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/23.png deleted file mode 100644 index 70f4359a2e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/24.png deleted file mode 100644 index f11d794a9b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/25.png deleted file mode 100644 index 0bb3db3fc8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/26.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/26.png deleted file mode 100644 index e37049abc0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/27.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/27.png deleted file mode 100644 index 0c18ae7423..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/28.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/28.png deleted file mode 100644 index 63b5f63d4a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/29.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/29.png deleted file mode 100644 index 0141c745b5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/35.png deleted file mode 100644 index 5c74e7b4ae..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/43.png deleted file mode 100644 index 762cb9e51e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/47.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/47.png deleted file mode 100644 index dfe43a9a0a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/5.png deleted file mode 100644 index a7d18eaf22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/53.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/53.png deleted file mode 100644 index 166b52687e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/60.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/60.png deleted file mode 100644 index 29dfc1bfe4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/69.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/69.png deleted file mode 100644 index 29dfc1bfe4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/7.png deleted file mode 100644 index 4d4640921b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/70.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/70.png deleted file mode 100644 index 2e3f08c729..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/79.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/79.png deleted file mode 100644 index 5b8baa720c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/8.png deleted file mode 100644 index ef73c64f42..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/89.png deleted file mode 100644 index c6ceccecd8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/9.png deleted file mode 100644 index 9dc9fab6dd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/91.png deleted file mode 100644 index 97d3cb573d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/93.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/93.png deleted file mode 100644 index 7a3360b4a4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/94.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/94.png deleted file mode 100644 index f9db902cbf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/95.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/95.png deleted file mode 100644 index f9db902cbf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedCentrifuged/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/1.png deleted file mode 100644 index 14f8d3f340..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10.png deleted file mode 100644 index 8914a8e2bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10023.png deleted file mode 100644 index 135ffc9981..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10054.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10054.png deleted file mode 100644 index 23ee139e3a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10067.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10067.png deleted file mode 100644 index dc377e2621..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10072.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10072.png deleted file mode 100644 index 7f3c7af7ae..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/11.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/11.png deleted file mode 100644 index 8914a8e2bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/12.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/12.png deleted file mode 100644 index cc7e772f32..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/13.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/13.png deleted file mode 100644 index 1edb2df028..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/14.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/14.png deleted file mode 100644 index c62cfe3cb2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/15.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/15.png deleted file mode 100644 index e72315ba4f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/16.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/16.png deleted file mode 100644 index d3cf1fd174..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/17.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/17.png deleted file mode 100644 index ae4d2588a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/18.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/18.png deleted file mode 100644 index d5cee072be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/19.png deleted file mode 100644 index 87b19cdbc1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/2.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/2.png deleted file mode 100644 index e6e347eca4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/23.png deleted file mode 100644 index 514fdb16fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/24.png deleted file mode 100644 index cc2813b2f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/25.png deleted file mode 100644 index ab039a72c6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/26.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/26.png deleted file mode 100644 index f907e129e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/27.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/27.png deleted file mode 100644 index 907cd619ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/28.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/28.png deleted file mode 100644 index 4dc630bad5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/29.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/29.png deleted file mode 100644 index 3972b83dd0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/35.png deleted file mode 100644 index 433e6251ed..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/43.png deleted file mode 100644 index 23ef39719c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/47.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/47.png deleted file mode 100644 index 5099759df3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/5.png deleted file mode 100644 index 937746a215..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/53.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/53.png deleted file mode 100644 index d28c5922c6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/60.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/60.png deleted file mode 100644 index 092573178f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/69.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/69.png deleted file mode 100644 index 092573178f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/7.png deleted file mode 100644 index 14f1dee4f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/70.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/70.png deleted file mode 100644 index dabb59944e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/79.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/79.png deleted file mode 100644 index 1b42833c0b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/8.png deleted file mode 100644 index 3b037d4778..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/89.png deleted file mode 100644 index 38526b06a9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/9.png deleted file mode 100644 index 57fcefaecb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/91.png deleted file mode 100644 index c64c1b7e61..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/93.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/93.png deleted file mode 100644 index 199e9dc616..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/94.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/94.png deleted file mode 100644 index ed92014eac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/95.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/95.png deleted file mode 100644 index ed92014eac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedcrushedPurified/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/1.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/1.png deleted file mode 100644 index d1e690d1a7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10.png deleted file mode 100644 index f1a878d87a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10001.png deleted file mode 100644 index 0bb8a965ac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10005.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10005.png deleted file mode 100644 index 48e524e7b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10009.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10009.png deleted file mode 100644 index aae2af5509..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10009.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10014.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10014.png deleted file mode 100644 index 39d7b299f1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10014.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10016.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10016.png deleted file mode 100644 index 1a6752cc9d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10016.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10017.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10017.png deleted file mode 100644 index 96cdb32b79..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10017.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10018.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10018.png deleted file mode 100644 index fec4af4a6c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10018.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10022.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10022.png deleted file mode 100644 index 2444ded2c1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10023.png deleted file mode 100644 index 7f00c75adf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10024.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10024.png deleted file mode 100644 index 3e1fec15a1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10035.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10035.png deleted file mode 100644 index 932c253ffe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10035.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10052.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10052.png deleted file mode 100644 index 8d45b89e5a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10052.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10053.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10053.png deleted file mode 100644 index f1b2776f28..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10054.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10054.png deleted file mode 100644 index 10ed896888..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10055.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10055.png deleted file mode 100644 index 92db3532de..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10055.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10057.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10057.png deleted file mode 100644 index e6f381f87c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10057.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10063.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10063.png deleted file mode 100644 index 953a22134e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10063.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10066.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10066.png deleted file mode 100644 index cd7e7f2ef7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10066.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10067.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10067.png deleted file mode 100644 index 5cf3ac9cd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10068.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10068.png deleted file mode 100644 index 2d2bf1dd14..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10068.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10070.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10070.png deleted file mode 100644 index c447610ecb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10070.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10071.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10071.png deleted file mode 100644 index f3a7a6abc4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10071.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10072.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10072.png deleted file mode 100644 index 8532620976..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10073.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10073.png deleted file mode 100644 index 0aec9f851c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10073.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10074.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10074.png deleted file mode 100644 index 625398c5b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10074.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10076.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10076.png deleted file mode 100644 index af4a25c469..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10076.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10078.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10078.png deleted file mode 100644 index 7487cd1e52..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10078.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10082.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10082.png deleted file mode 100644 index 1e4b5ec6b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10083.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10083.png deleted file mode 100644 index e47ef16677..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10084.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10084.png deleted file mode 100644 index e47ef16677..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10085.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10085.png deleted file mode 100644 index f9d6e26514..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10093.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10093.png deleted file mode 100644 index c94a666af2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10093.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10096.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10096.png deleted file mode 100644 index 70cb3a2952..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10097.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10097.png deleted file mode 100644 index a430c71eae..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10098.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10098.png deleted file mode 100644 index 4ffe50962d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10099.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10099.png deleted file mode 100644 index 95fb806f56..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/101.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/101.png deleted file mode 100644 index 5c5325008d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10100.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10100.png deleted file mode 100644 index b48bf6304c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10100.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10101.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10101.png deleted file mode 100644 index b3cea118d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10102.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10102.png deleted file mode 100644 index 0494252c84..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10103.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10103.png deleted file mode 100644 index d7f480a81e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10104.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10104.png deleted file mode 100644 index 0b79b58dd6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10105.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10105.png deleted file mode 100644 index e723760248..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10106.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10106.png deleted file mode 100644 index ce3169f30d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10108.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10108.png deleted file mode 100644 index 634438fb0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10108.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10109.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10109.png deleted file mode 100644 index 4371fd02d7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10110.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10110.png deleted file mode 100644 index 97380e4595..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10111.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10111.png deleted file mode 100644 index dcc933e2b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10112.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10112.png deleted file mode 100644 index 974a6bbb72..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10113.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10113.png deleted file mode 100644 index 911e646e30..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10113.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10114.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10114.png deleted file mode 100644 index a0b6cc9116..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10114.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10115.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10115.png deleted file mode 100644 index 5b8f4081b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/10115.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/102.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/102.png deleted file mode 100644 index ca30e43a7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/104.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/104.png deleted file mode 100644 index e7d4a17e18..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11.png deleted file mode 100644 index f1a878d87a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11000.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11000.png deleted file mode 100644 index 98c1aa391b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11001.png deleted file mode 100644 index e1b2c6827e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11002.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11002.png deleted file mode 100644 index 905e4b5f55..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11002.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11003.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11003.png deleted file mode 100644 index 278075f9e4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11003.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11005.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11005.png deleted file mode 100644 index f965991aa1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11006.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11006.png deleted file mode 100644 index c1f94f3045..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11006.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11007.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11007.png deleted file mode 100644 index 8af08b6ca7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11008.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11008.png deleted file mode 100644 index c5ca5f290c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11008.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11009.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11009.png deleted file mode 100644 index 129fad821f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11009.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11011.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11011.png deleted file mode 100644 index 905e4b5f55..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11011.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11012.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11012.png deleted file mode 100644 index 05ebe69677..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11012.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11019.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11019.png deleted file mode 100644 index 715cd807e0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11019.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11020.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11020.png deleted file mode 100644 index a65646f3aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11020.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11021.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11021.png deleted file mode 100644 index 1581059ce3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11021.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11022.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11022.png deleted file mode 100644 index a65646f3aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11023.png deleted file mode 100644 index 26113e141b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11024.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11024.png deleted file mode 100644 index 4a60ba704c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11025.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11025.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11025.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11026.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11026.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11026.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11027.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11027.png deleted file mode 100644 index 59ac547922..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11027.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11028.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11028.png deleted file mode 100644 index b86bb65cde..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11028.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11029.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11029.png deleted file mode 100644 index 7ee48e587e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11029.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11030.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11030.png deleted file mode 100644 index 4a60ba704c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11030.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11031.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11031.png deleted file mode 100644 index 4a60ba704c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11031.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11032.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11032.png deleted file mode 100644 index 4a60ba704c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11032.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11033.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11033.png deleted file mode 100644 index 4a60ba704c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11033.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11034.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11034.png deleted file mode 100644 index b7c546a26d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11034.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11037.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11037.png deleted file mode 100644 index e136be8e1a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11037.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11038.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11038.png deleted file mode 100644 index 195c5f605f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11038.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11039.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11039.png deleted file mode 100644 index 580e6b0f27..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11039.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11040.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11040.png deleted file mode 100644 index 1788152195..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11040.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11041.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11041.png deleted file mode 100644 index 79534b5b47..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11041.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11043.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11043.png deleted file mode 100644 index 8283603054..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11043.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11047.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11047.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11047.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11048.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11048.png deleted file mode 100644 index 68e863520e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11048.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11049.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11049.png deleted file mode 100644 index a81e03ac17..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11049.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11050.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11050.png deleted file mode 100644 index 6d5e079f7d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11050.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11107.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11107.png deleted file mode 100644 index b1674dc2c7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11107.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11108.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11108.png deleted file mode 100644 index b1674dc2c7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11108.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11109.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11109.png deleted file mode 100644 index 1b62162841..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11110.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11110.png deleted file mode 100644 index 531da9f0a0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11111.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11111.png deleted file mode 100644 index 04b16ff5e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11112.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11112.png deleted file mode 100644 index 04b16ff5e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11113.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11113.png deleted file mode 100644 index 04b16ff5e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11113.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11116.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11116.png deleted file mode 100644 index b4c73d56b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11116.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11117.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11117.png deleted file mode 100644 index b4c73d56b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11117.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11121.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11121.png deleted file mode 100644 index b8e5c97608..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11121.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11122.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11122.png deleted file mode 100644 index b8e5c97608..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11122.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11123.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11123.png deleted file mode 100644 index 8c2d05afa6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11123.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11124.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11124.png deleted file mode 100644 index a70fe75bb2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11124.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11125.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11125.png deleted file mode 100644 index ab3446d82e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11125.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11126.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11126.png deleted file mode 100644 index ab3446d82e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11126.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11127.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11127.png deleted file mode 100644 index b3c9f2c68c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11127.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11128.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11128.png deleted file mode 100644 index 29094ff510..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11128.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11129.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11129.png deleted file mode 100644 index 7008840a11..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11129.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11303.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11303.png deleted file mode 100644 index 891ceef7be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11303.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11304.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11304.png deleted file mode 100644 index c34473a36e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11304.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11305.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11305.png deleted file mode 100644 index b62ca8326f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11305.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11306.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11306.png deleted file mode 100644 index dc925ae7cc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11306.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11312.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11312.png deleted file mode 100644 index ff4edecaf8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11314.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11314.png deleted file mode 100644 index 69dbf7b8e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11314.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11446.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11446.png deleted file mode 100644 index ee395147b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11446.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11447.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11447.png deleted file mode 100644 index 8f7cf90420..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11447.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11449.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11449.png deleted file mode 100644 index fb1f5b0267..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11449.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11450.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11450.png deleted file mode 100644 index 7fa20d495b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11450.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11451.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11451.png deleted file mode 100644 index d939e5c9ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11451.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11452.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11452.png deleted file mode 100644 index d8dfa740b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11452.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11453.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11453.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11453.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11454.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11454.png deleted file mode 100644 index 51cfd83a92..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11454.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11455.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11455.png deleted file mode 100644 index 66465ac5ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11455.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11456.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11456.png deleted file mode 100644 index b7d7e9244a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11456.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11457.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11457.png deleted file mode 100644 index 13d6452691..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11457.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11458.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11458.png deleted file mode 100644 index b0f15934ab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11458.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11459.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11459.png deleted file mode 100644 index 36e3f6d90b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11459.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11464.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11464.png deleted file mode 100644 index 009f143174..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11464.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11465.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11465.png deleted file mode 100644 index af35234051..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11465.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11466.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11466.png deleted file mode 100644 index 29094ff510..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11466.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11467.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11467.png deleted file mode 100644 index dc232a6a8b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11467.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11468.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11468.png deleted file mode 100644 index ab3446d82e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11468.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11472.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11472.png deleted file mode 100644 index 43484f9e7e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11472.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11498.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11498.png deleted file mode 100644 index 1309783b12..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11498.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11501.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11501.png deleted file mode 100644 index f8205e4ad6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11501.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11502.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11502.png deleted file mode 100644 index 59e40d4ba3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11502.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11503.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11503.png deleted file mode 100644 index 67bd4a67d1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/12.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/12.png deleted file mode 100644 index facc414181..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/13.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/13.png deleted file mode 100644 index 8a131f230f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/14.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/14.png deleted file mode 100644 index ede61ddc76..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/15.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/15.png deleted file mode 100644 index daf4ceb32c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/16.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/16.png deleted file mode 100644 index 6adec7b2dc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/17.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/17.png deleted file mode 100644 index 1ff130b9a7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/18.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/18.png deleted file mode 100644 index 69d61441f1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/19.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/19.png deleted file mode 100644 index 73899e2a9c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/2.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/2.png deleted file mode 100644 index e9fb1b2c2f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/20001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/20001.png deleted file mode 100644 index 8164aa3f98..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/20001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/23.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/23.png deleted file mode 100644 index bb96b51d82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/24.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/24.png deleted file mode 100644 index b626cb2621..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/25.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/25.png deleted file mode 100644 index 22ead5cc6c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/26.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/26.png deleted file mode 100644 index 0f3d8d2c89..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/27.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/27.png deleted file mode 100644 index 1259e8c262..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/28.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/28.png deleted file mode 100644 index 6208a819fa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29.png deleted file mode 100644 index e8892ab9e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29900.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29900.png deleted file mode 100644 index 674bc8c514..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29900.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29901.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29901.png deleted file mode 100644 index 34f4688a34..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29901.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29903.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29903.png deleted file mode 100644 index 2f5d20316d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/29903.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/3.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/3.png deleted file mode 100644 index f166670561..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/30.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/30.png deleted file mode 100644 index bb27a06cc9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/31.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/31.png deleted file mode 100644 index 6dde3fb398..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/31.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/33.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/33.png deleted file mode 100644 index fcef15e919..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/33.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/34.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/34.png deleted file mode 100644 index f2bce52515..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/34.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/35.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/35.png deleted file mode 100644 index 632e6a90d2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/36.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/36.png deleted file mode 100644 index a21ea5c9c0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/39.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/39.png deleted file mode 100644 index 2e82c655d8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/4.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/4.png deleted file mode 100644 index 318e8c1337..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/43.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/43.png deleted file mode 100644 index a5fd4ae5a1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/45.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/45.png deleted file mode 100644 index 14a6c9da93..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/45.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/46.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/46.png deleted file mode 100644 index b5300ced71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/46.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/47.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/47.png deleted file mode 100644 index b5300ced71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/49.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/49.png deleted file mode 100644 index d7b530b0bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/49.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/5.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/5.png deleted file mode 100644 index b10b05e4c1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/51.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/51.png deleted file mode 100644 index b5300ced71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/51.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/53.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/53.png deleted file mode 100644 index b5fa6e83ba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/54.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/54.png deleted file mode 100644 index b5fa6e83ba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/54.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/55.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/55.png deleted file mode 100644 index b5fa6e83ba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/55.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/57.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/57.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/57.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/59.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/59.png deleted file mode 100644 index 0226c570f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/59.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/6.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/6.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/60.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/60.png deleted file mode 100644 index 5cbb96cf3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/63.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/63.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/63.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/64.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/64.png deleted file mode 100644 index 2f92b8059a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/65.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/65.png deleted file mode 100644 index f10d4b69c8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/65.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/66.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/66.png deleted file mode 100644 index 93d6badd22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/66.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/69.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/69.png deleted file mode 100644 index 5cbb96cf3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/7.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/7.png deleted file mode 100644 index d42a38aeb3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/70.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/70.png deleted file mode 100644 index b35986c247..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/71.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/71.png deleted file mode 100644 index 4dbbec9d41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/71.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/73.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/73.png deleted file mode 100644 index 4dbbec9d41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/73.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/76.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/76.png deleted file mode 100644 index 402833fec4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/76.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/77.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/77.png deleted file mode 100644 index 4dbbec9d41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/77.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/78.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/78.png deleted file mode 100644 index cc00040d7a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/79.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/79.png deleted file mode 100644 index 76e8257213..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/8.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/8.png deleted file mode 100644 index 4cec0881af..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/80.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/80.png deleted file mode 100644 index 31b911c4e7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/80.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/82.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/82.png deleted file mode 100644 index e8e2b21545..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/82.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/83.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/83.png deleted file mode 100644 index 40514fb9ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/83.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/84.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/84.png deleted file mode 100644 index 402833fec4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/84.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/85.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/85.png deleted file mode 100644 index 40514fb9ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/85.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/87.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/87.png deleted file mode 100644 index 40514fb9ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/87.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/88.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/88.png deleted file mode 100644 index aa45903a6c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/89.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/89.png deleted file mode 100644 index e0ef9c0e2e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/9.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/9.png deleted file mode 100644 index d037a9f67f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/90.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/90.png deleted file mode 100644 index c34a3c6f5c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/91.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/91.png deleted file mode 100644 index 3efef57f2c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/92.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/92.png deleted file mode 100644 index 58e01dca8b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/93.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/93.png deleted file mode 100644 index aa55d391da..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/94.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/94.png deleted file mode 100644 index 14a7419aea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/95.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/95.png deleted file mode 100644 index 4044c90cad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/96.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/96.png deleted file mode 100644 index e2f075b941..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/97.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/97.png deleted file mode 100644 index 2319a20020..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/97.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/99.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddust/99.png deleted file mode 100644 index 437a161002..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddust/99.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/1.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/1.png deleted file mode 100644 index ec35e9e310..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10.png deleted file mode 100644 index d7c2398d4e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10023.png deleted file mode 100644 index ec0e6c5ba9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10054.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10054.png deleted file mode 100644 index 3fb64eef57..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10067.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10067.png deleted file mode 100644 index 4f4f0f7fd8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10072.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10072.png deleted file mode 100644 index fd84e17a11..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/11.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/11.png deleted file mode 100644 index d7c2398d4e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/12.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/12.png deleted file mode 100644 index d21c5ee44f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/13.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/13.png deleted file mode 100644 index 7887831905..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/14.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/14.png deleted file mode 100644 index 8287440149..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/15.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/15.png deleted file mode 100644 index b04ad5a907..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/16.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/16.png deleted file mode 100644 index bd6f075435..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/17.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/17.png deleted file mode 100644 index f8d8771859..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/18.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/18.png deleted file mode 100644 index 59ff7f09ab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/19.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/19.png deleted file mode 100644 index 6f35e8bfda..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/2.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/2.png deleted file mode 100644 index 97f7bb7746..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/23.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/23.png deleted file mode 100644 index 82314cb625..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/24.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/24.png deleted file mode 100644 index faa8b9a061..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/25.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/25.png deleted file mode 100644 index 911f7ecc27..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/26.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/26.png deleted file mode 100644 index 4978d81dc9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/27.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/27.png deleted file mode 100644 index a6a89e9973..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/28.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/28.png deleted file mode 100644 index c6d98d5b8f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/29.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/29.png deleted file mode 100644 index d60e999887..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/35.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/35.png deleted file mode 100644 index 88978b94be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/43.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/43.png deleted file mode 100644 index 658717be59..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/47.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/47.png deleted file mode 100644 index 4b2c1a5d48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/5.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/5.png deleted file mode 100644 index 5831062567..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/53.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/53.png deleted file mode 100644 index 1618aa39b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/60.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/60.png deleted file mode 100644 index 73f8d5248b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/69.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/69.png deleted file mode 100644 index 73f8d5248b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/7.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/7.png deleted file mode 100644 index 797d8e5c7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/70.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/70.png deleted file mode 100644 index 0855d14e5f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/79.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/79.png deleted file mode 100644 index 9387666435..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/8.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/8.png deleted file mode 100644 index edf1e088ea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/89.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/89.png deleted file mode 100644 index 66c4b9fbd2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/9.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/9.png deleted file mode 100644 index 41c30fd6cf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/91.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/91.png deleted file mode 100644 index 5692470068..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/93.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/93.png deleted file mode 100644 index 60e9a76956..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/94.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/94.png deleted file mode 100644 index 5e4c58934e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/95.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/95.png deleted file mode 100644 index 64546e5e22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustImpure/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/1.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/1.png deleted file mode 100644 index d6fda6fc4f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10.png deleted file mode 100644 index 7fe66becdb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10023.png deleted file mode 100644 index d059aeb6a7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10054.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10054.png deleted file mode 100644 index 86d9f9e428..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10067.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10067.png deleted file mode 100644 index 7f9a6983e6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10072.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10072.png deleted file mode 100644 index 38eb8c5dec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/11.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/11.png deleted file mode 100644 index 7fe66becdb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/12.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/12.png deleted file mode 100644 index b24cb0d2d6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/13.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/13.png deleted file mode 100644 index 51a4e59e94..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/14.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/14.png deleted file mode 100644 index c911e20a11..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/15.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/15.png deleted file mode 100644 index 580687a182..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/16.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/16.png deleted file mode 100644 index 1ee0011989..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/17.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/17.png deleted file mode 100644 index b61315dd10..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/18.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/18.png deleted file mode 100644 index 43cd4cdf37..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/19.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/19.png deleted file mode 100644 index c4521ccc8a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/2.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/2.png deleted file mode 100644 index a80038f795..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/23.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/23.png deleted file mode 100644 index af9d754842..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/24.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/24.png deleted file mode 100644 index c557a4aaed..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/25.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/25.png deleted file mode 100644 index bec1625d36..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/26.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/26.png deleted file mode 100644 index 6aa9cfea21..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/27.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/27.png deleted file mode 100644 index b21f6c7c47..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/28.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/28.png deleted file mode 100644 index de97b74317..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/29.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/29.png deleted file mode 100644 index 9a0004ad7c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/35.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/35.png deleted file mode 100644 index 7c7d11bde3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/43.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/43.png deleted file mode 100644 index e18ff4ab80..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/47.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/47.png deleted file mode 100644 index 7b280832b7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/5.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/5.png deleted file mode 100644 index b711f1918c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/53.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/53.png deleted file mode 100644 index 2287ffd9a6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/60.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/60.png deleted file mode 100644 index 3b1004fe0e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/69.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/69.png deleted file mode 100644 index 3b1004fe0e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/7.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/7.png deleted file mode 100644 index ae4a7c4afb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/70.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/70.png deleted file mode 100644 index b5c8e0fece..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/79.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/79.png deleted file mode 100644 index 3427b40e80..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/8.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/8.png deleted file mode 100644 index 671e3566bf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/89.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/89.png deleted file mode 100644 index 0042e2c241..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/9.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/9.png deleted file mode 100644 index 6657195adf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/91.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/91.png deleted file mode 100644 index 267f10bdd3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/93.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/93.png deleted file mode 100644 index fffb64605a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/94.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/94.png deleted file mode 100644 index 16324eec08..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/95.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/95.png deleted file mode 100644 index 860c160905..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustPure/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/1.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/1.png deleted file mode 100644 index 1004471286..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10.png deleted file mode 100644 index 30acbd5787..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10001.png deleted file mode 100644 index a6c653024c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10005.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10005.png deleted file mode 100644 index e7fb301fa6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10009.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10009.png deleted file mode 100644 index 760143187e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10009.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10014.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10014.png deleted file mode 100644 index 776d61523f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10014.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10016.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10016.png deleted file mode 100644 index ddcc11cc3f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10016.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10017.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10017.png deleted file mode 100644 index 3436c5c35f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10017.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10018.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10018.png deleted file mode 100644 index bef457b919..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10018.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10022.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10022.png deleted file mode 100644 index 6689c4e551..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10023.png deleted file mode 100644 index 38339a6a1c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10024.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10024.png deleted file mode 100644 index 6cd1529933..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10035.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10035.png deleted file mode 100644 index 1eb4978aab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10035.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10052.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10052.png deleted file mode 100644 index d9fe5abd8f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10052.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10053.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10053.png deleted file mode 100644 index d3d2551b00..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10054.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10054.png deleted file mode 100644 index 5a6950e891..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10055.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10055.png deleted file mode 100644 index 18ea7cd648..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10055.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10057.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10057.png deleted file mode 100644 index 70fe73ba0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10057.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10063.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10063.png deleted file mode 100644 index 544039dd09..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10063.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10066.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10066.png deleted file mode 100644 index 23d9c2b2fe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10066.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10067.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10067.png deleted file mode 100644 index e470af9ed0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10068.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10068.png deleted file mode 100644 index 7fcfbff7ae..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10068.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10070.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10070.png deleted file mode 100644 index abd08c539a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10070.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10071.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10071.png deleted file mode 100644 index df6b721c44..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10071.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10072.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10072.png deleted file mode 100644 index 15c8424f21..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10073.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10073.png deleted file mode 100644 index a558a9aa33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10073.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10074.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10074.png deleted file mode 100644 index b461ff88ac..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10074.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10076.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10076.png deleted file mode 100644 index fdaebcc28d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10076.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10078.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10078.png deleted file mode 100644 index fdd469c127..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10078.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10082.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10082.png deleted file mode 100644 index acf887170d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10083.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10083.png deleted file mode 100644 index c1a16c02fa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10084.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10084.png deleted file mode 100644 index c1a16c02fa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10085.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10085.png deleted file mode 100644 index 8456f85479..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10093.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10093.png deleted file mode 100644 index 11c651d51e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10093.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10096.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10096.png deleted file mode 100644 index 5ca4d05339..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10097.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10097.png deleted file mode 100644 index fcd53ceef2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10098.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10098.png deleted file mode 100644 index 6577390424..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10099.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10099.png deleted file mode 100644 index c85d4ee579..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/101.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/101.png deleted file mode 100644 index 96c4da3bb0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10100.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10100.png deleted file mode 100644 index 28278d84bb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10100.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10101.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10101.png deleted file mode 100644 index 952bc1451c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10102.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10102.png deleted file mode 100644 index 61dc59e129..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10103.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10103.png deleted file mode 100644 index c80d613283..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10104.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10104.png deleted file mode 100644 index 35a48d1571..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10105.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10105.png deleted file mode 100644 index ec47b4863b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10106.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10106.png deleted file mode 100644 index e1ce723d52..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10108.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10108.png deleted file mode 100644 index 0d269b101b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10108.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10109.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10109.png deleted file mode 100644 index 8d6bc33f43..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10110.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10110.png deleted file mode 100644 index cd3d2decd3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10111.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10111.png deleted file mode 100644 index bebe55615e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10112.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10112.png deleted file mode 100644 index d472c19328..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10113.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10113.png deleted file mode 100644 index ee4c76efc7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10113.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10114.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10114.png deleted file mode 100644 index 92fdc052fc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10114.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10115.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10115.png deleted file mode 100644 index 11db5c4e48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/10115.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/102.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/102.png deleted file mode 100644 index 0fdf0b231f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/104.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/104.png deleted file mode 100644 index 6157c34624..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11.png deleted file mode 100644 index 30acbd5787..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11000.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11000.png deleted file mode 100644 index 2c368097c3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11001.png deleted file mode 100644 index 4519cdacad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11002.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11002.png deleted file mode 100644 index 756faf2bfa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11002.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11003.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11003.png deleted file mode 100644 index a287d5526c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11003.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11005.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11005.png deleted file mode 100644 index dc31ba9163..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11006.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11006.png deleted file mode 100644 index 39a162deee..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11006.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11007.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11007.png deleted file mode 100644 index fab694d310..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11008.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11008.png deleted file mode 100644 index 9a33164cd9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11008.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11009.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11009.png deleted file mode 100644 index 68222db774..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11009.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11011.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11011.png deleted file mode 100644 index 756faf2bfa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11011.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11012.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11012.png deleted file mode 100644 index 116eb30f28..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11012.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11019.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11019.png deleted file mode 100644 index 516f9cc386..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11019.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11020.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11020.png deleted file mode 100644 index 8b7a1a2ea4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11020.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11021.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11021.png deleted file mode 100644 index 53449208f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11021.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11022.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11022.png deleted file mode 100644 index 8b7a1a2ea4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11023.png deleted file mode 100644 index 83c3a97734..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11024.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11024.png deleted file mode 100644 index 62cd3cb565..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11025.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11025.png deleted file mode 100644 index 3c42e88b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11025.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11026.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11026.png deleted file mode 100644 index 3c42e88b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11026.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11027.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11027.png deleted file mode 100644 index 2c4a886423..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11027.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11028.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11028.png deleted file mode 100644 index 10b339cc7c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11028.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11029.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11029.png deleted file mode 100644 index b6754ed59c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11029.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11030.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11030.png deleted file mode 100644 index 62cd3cb565..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11030.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11031.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11031.png deleted file mode 100644 index 62cd3cb565..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11031.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11032.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11032.png deleted file mode 100644 index 62cd3cb565..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11032.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11033.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11033.png deleted file mode 100644 index 62cd3cb565..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11033.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11034.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11034.png deleted file mode 100644 index defe37f8e2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11034.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11037.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11037.png deleted file mode 100644 index 88ef1c79e7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11037.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11038.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11038.png deleted file mode 100644 index 5ed803e289..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11038.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11039.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11039.png deleted file mode 100644 index 999e05efd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11039.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11040.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11040.png deleted file mode 100644 index e57291e0e2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11040.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11041.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11041.png deleted file mode 100644 index 0b2e3ee639..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11041.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11043.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11043.png deleted file mode 100644 index c99f64b76f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11043.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11047.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11047.png deleted file mode 100644 index 3c42e88b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11047.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11048.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11048.png deleted file mode 100644 index 473f841c22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11048.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11049.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11049.png deleted file mode 100644 index 4870601589..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11049.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11050.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11050.png deleted file mode 100644 index 247b551d16..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11050.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11107.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11107.png deleted file mode 100644 index ba15cb354f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11107.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11108.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11108.png deleted file mode 100644 index ba15cb354f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11108.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11109.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11109.png deleted file mode 100644 index 26f86ce6eb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11110.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11110.png deleted file mode 100644 index fb8f72b848..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11111.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11111.png deleted file mode 100644 index 9f831dde88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11112.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11112.png deleted file mode 100644 index 9f831dde88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11113.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11113.png deleted file mode 100644 index 9f831dde88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11113.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11116.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11116.png deleted file mode 100644 index 0c7a4b1bdf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11116.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11117.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11117.png deleted file mode 100644 index 0c7a4b1bdf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11117.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11121.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11121.png deleted file mode 100644 index f7bde36bf2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11121.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11122.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11122.png deleted file mode 100644 index f7bde36bf2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11122.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11123.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11123.png deleted file mode 100644 index 46ea04de82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11123.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11124.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11124.png deleted file mode 100644 index 5297ccc84c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11124.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11125.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11125.png deleted file mode 100644 index c919819a25..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11125.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11126.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11126.png deleted file mode 100644 index c919819a25..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11126.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11127.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11127.png deleted file mode 100644 index e58f02f3c7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11127.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11128.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11128.png deleted file mode 100644 index e3b4af18e1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11128.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11129.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11129.png deleted file mode 100644 index f96f5c26a1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11129.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11303.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11303.png deleted file mode 100644 index 3b84defc21..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11303.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11304.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11304.png deleted file mode 100644 index c72d8b0e07..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11304.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11305.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11305.png deleted file mode 100644 index 379651f3bd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11305.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11306.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11306.png deleted file mode 100644 index 6873ea88f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11306.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11312.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11312.png deleted file mode 100644 index 165ff0919a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11314.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11314.png deleted file mode 100644 index b05ce44e90..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11314.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11446.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11446.png deleted file mode 100644 index 4443c766aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11446.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11447.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11447.png deleted file mode 100644 index aa8c9dfbf3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11447.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11449.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11449.png deleted file mode 100644 index b528d4edd9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11449.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11450.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11450.png deleted file mode 100644 index 7e139307ba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11450.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11451.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11451.png deleted file mode 100644 index 24874c3fb0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11451.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11452.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11452.png deleted file mode 100644 index 716b5c2eb5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11452.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11453.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11453.png deleted file mode 100644 index 3c42e88b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11453.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11454.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11454.png deleted file mode 100644 index 36ce004d81..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11454.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11455.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11455.png deleted file mode 100644 index 26b311c0f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11455.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11456.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11456.png deleted file mode 100644 index 6272b44450..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11456.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11457.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11457.png deleted file mode 100644 index 26646f7997..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11457.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11458.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11458.png deleted file mode 100644 index f8cfa49837..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11458.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11459.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11459.png deleted file mode 100644 index 887e312e7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11459.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11464.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11464.png deleted file mode 100644 index a59e1ff3d3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11464.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11465.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11465.png deleted file mode 100644 index c409fca025..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11465.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11466.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11466.png deleted file mode 100644 index e3b4af18e1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11466.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11467.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11467.png deleted file mode 100644 index b180b17d18..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11467.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11468.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11468.png deleted file mode 100644 index c919819a25..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11468.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11472.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11472.png deleted file mode 100644 index b4813bb236..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11472.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11498.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11498.png deleted file mode 100644 index 327b5f2ac3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11498.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11501.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11501.png deleted file mode 100644 index 000ee4dd23..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11501.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11502.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11502.png deleted file mode 100644 index af2aac3cfb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11502.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11503.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11503.png deleted file mode 100644 index 8a89df9e13..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/12.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/12.png deleted file mode 100644 index 498004e8b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/13.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/13.png deleted file mode 100644 index a755eddcb6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/14.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/14.png deleted file mode 100644 index 917126881f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/15.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/15.png deleted file mode 100644 index f5d803cf7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/16.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/16.png deleted file mode 100644 index 0d21978a7e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/17.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/17.png deleted file mode 100644 index a80b4a9247..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/18.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/18.png deleted file mode 100644 index 0490e1b43a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/19.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/19.png deleted file mode 100644 index 0ba91f783f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/2.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/2.png deleted file mode 100644 index 99ecdf039c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/20001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/20001.png deleted file mode 100644 index 09fa38e960..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/20001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/23.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/23.png deleted file mode 100644 index b4555a854a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/24.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/24.png deleted file mode 100644 index 074cbf8357..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/25.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/25.png deleted file mode 100644 index 7f0d782a84..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/26.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/26.png deleted file mode 100644 index 83f0c43411..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/27.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/27.png deleted file mode 100644 index a7b13b26ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/28.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/28.png deleted file mode 100644 index d39d16dbc5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29.png deleted file mode 100644 index c71081cf76..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29900.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29900.png deleted file mode 100644 index 8a2c90a806..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29900.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29901.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29901.png deleted file mode 100644 index 9bf4cd9264..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29901.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29903.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29903.png deleted file mode 100644 index ca37a5d473..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/29903.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/3.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/3.png deleted file mode 100644 index 02089fef95..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/30.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/30.png deleted file mode 100644 index 552e268255..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/31.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/31.png deleted file mode 100644 index 8acf3b415e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/31.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/33.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/33.png deleted file mode 100644 index 5daa27ad95..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/33.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/34.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/34.png deleted file mode 100644 index eaa62378ce..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/34.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/35.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/35.png deleted file mode 100644 index e218dd3598..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/36.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/36.png deleted file mode 100644 index 390657621a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/39.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/39.png deleted file mode 100644 index 096f8334cc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/4.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/4.png deleted file mode 100644 index b3f49bc877..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/43.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/43.png deleted file mode 100644 index 5b31f332cf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/45.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/45.png deleted file mode 100644 index a190d1f6af..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/45.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/46.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/46.png deleted file mode 100644 index 9a297de3f9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/46.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/47.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/47.png deleted file mode 100644 index 9a297de3f9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/49.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/49.png deleted file mode 100644 index 74e85e54e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/49.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/5.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/5.png deleted file mode 100644 index 8d06623f27..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/51.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/51.png deleted file mode 100644 index 9a297de3f9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/51.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/53.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/53.png deleted file mode 100644 index ec6e2201a4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/54.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/54.png deleted file mode 100644 index ec6e2201a4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/54.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/55.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/55.png deleted file mode 100644 index ec6e2201a4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/55.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/57.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/57.png deleted file mode 100644 index 3c42e88b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/57.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/59.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/59.png deleted file mode 100644 index c34d2463fe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/59.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/6.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/6.png deleted file mode 100644 index 3c42e88b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/60.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/60.png deleted file mode 100644 index 91dc233fca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/63.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/63.png deleted file mode 100644 index 3c42e88b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/63.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/64.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/64.png deleted file mode 100644 index 426f7e128e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/65.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/65.png deleted file mode 100644 index ac21f8e289..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/65.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/66.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/66.png deleted file mode 100644 index 54c975443a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/66.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/69.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/69.png deleted file mode 100644 index 91dc233fca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/7.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/7.png deleted file mode 100644 index 5bede19edf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/70.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/70.png deleted file mode 100644 index fef8e4aa46..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/71.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/71.png deleted file mode 100644 index ea5a171670..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/71.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/73.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/73.png deleted file mode 100644 index ea5a171670..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/73.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/76.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/76.png deleted file mode 100644 index f025d5ddab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/76.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/77.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/77.png deleted file mode 100644 index ea5a171670..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/77.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/78.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/78.png deleted file mode 100644 index 48974118fc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/79.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/79.png deleted file mode 100644 index cb64e727d3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/8.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/8.png deleted file mode 100644 index 3554c87e55..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/80.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/80.png deleted file mode 100644 index 1f0da70b14..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/80.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/82.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/82.png deleted file mode 100644 index 034372410c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/82.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/83.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/83.png deleted file mode 100644 index 81c1fbfa73..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/83.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/84.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/84.png deleted file mode 100644 index f025d5ddab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/84.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/85.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/85.png deleted file mode 100644 index 81c1fbfa73..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/85.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/87.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/87.png deleted file mode 100644 index 81c1fbfa73..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/87.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/88.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/88.png deleted file mode 100644 index b16a77bad7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/89.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/89.png deleted file mode 100644 index 492c9ef2c5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/9.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/9.png deleted file mode 100644 index 2a00aa5155..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/90.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/90.png deleted file mode 100644 index 687679e954..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/91.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/91.png deleted file mode 100644 index 943a8f6442..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/92.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/92.png deleted file mode 100644 index d977e68497..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/93.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/93.png deleted file mode 100644 index 9e374409ce..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/94.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/94.png deleted file mode 100644 index db59aa9603..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/95.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/95.png deleted file mode 100644 index 0628230636..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/96.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/96.png deleted file mode 100644 index 4cb895f6cf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/97.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/97.png deleted file mode 100644 index 3a6a4b63f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/97.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/99.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/99.png deleted file mode 100644 index 8a5e1669d6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustSmall/99.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/1.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/1.png deleted file mode 100644 index ac678961e7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10.png deleted file mode 100644 index c0b4f48f0e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10001.png deleted file mode 100644 index 27acbf7634..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10005.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10005.png deleted file mode 100644 index d62cd9ad80..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10009.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10009.png deleted file mode 100644 index b03706fa5d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10009.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10014.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10014.png deleted file mode 100644 index 4a3f38a367..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10014.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10016.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10016.png deleted file mode 100644 index e6cd2fde28..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10016.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10017.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10017.png deleted file mode 100644 index 38c81c53b3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10017.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10018.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10018.png deleted file mode 100644 index ab60151d7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10018.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10022.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10022.png deleted file mode 100644 index 5d589e2508..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10023.png deleted file mode 100644 index eeb053be59..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10024.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10024.png deleted file mode 100644 index 38cc8c2a14..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10035.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10035.png deleted file mode 100644 index bcce3ed0fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10035.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10052.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10052.png deleted file mode 100644 index 1a1bcda2c6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10052.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10053.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10053.png deleted file mode 100644 index b6913a0464..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10054.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10054.png deleted file mode 100644 index fbd14e29e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10054.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10055.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10055.png deleted file mode 100644 index 0f2c8d561b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10055.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10057.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10057.png deleted file mode 100644 index 523326cb6b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10057.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10063.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10063.png deleted file mode 100644 index dee28d7f2b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10063.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10066.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10066.png deleted file mode 100644 index 6428a5e883..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10066.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10067.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10067.png deleted file mode 100644 index f1101f6cde..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10067.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10068.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10068.png deleted file mode 100644 index b6d8a30297..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10068.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10070.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10070.png deleted file mode 100644 index d020150a00..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10070.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10071.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10071.png deleted file mode 100644 index c13141ce8a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10071.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10072.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10072.png deleted file mode 100644 index cdb714330a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10072.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10073.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10073.png deleted file mode 100644 index 116bec5b93..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10073.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10074.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10074.png deleted file mode 100644 index 2f70408ab1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10074.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10076.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10076.png deleted file mode 100644 index bc8c91097a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10076.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10078.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10078.png deleted file mode 100644 index 911176b315..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10078.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10082.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10082.png deleted file mode 100644 index caca3be599..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10083.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10083.png deleted file mode 100644 index 100a302755..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10084.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10084.png deleted file mode 100644 index 100a302755..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10085.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10085.png deleted file mode 100644 index 783d9081f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10093.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10093.png deleted file mode 100644 index d5051ffd1f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10093.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10096.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10096.png deleted file mode 100644 index cd83a8da30..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10097.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10097.png deleted file mode 100644 index 9f14c16887..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10098.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10098.png deleted file mode 100644 index b42f549b74..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10099.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10099.png deleted file mode 100644 index dd37458679..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/101.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/101.png deleted file mode 100644 index b27874903d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10100.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10100.png deleted file mode 100644 index 1f6d71d609..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10100.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10101.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10101.png deleted file mode 100644 index 5eff528ff0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10102.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10102.png deleted file mode 100644 index 6754e93f89..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10103.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10103.png deleted file mode 100644 index 4fa0dbeef2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10104.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10104.png deleted file mode 100644 index e643208e62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10105.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10105.png deleted file mode 100644 index 44950bb721..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10106.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10106.png deleted file mode 100644 index 87004fcb29..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10108.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10108.png deleted file mode 100644 index c623f9e788..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10108.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10109.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10109.png deleted file mode 100644 index 2382991cd4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10110.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10110.png deleted file mode 100644 index 4adf0926a2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10111.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10111.png deleted file mode 100644 index f5b87af1f9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10112.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10112.png deleted file mode 100644 index 6cf137ce98..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10113.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10113.png deleted file mode 100644 index 8e9f1a5a3a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10113.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10114.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10114.png deleted file mode 100644 index de9c34a485..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10114.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10115.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10115.png deleted file mode 100644 index 9bd6c9b5aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/10115.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/102.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/102.png deleted file mode 100644 index 711ecb2abc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/104.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/104.png deleted file mode 100644 index b48cbba8be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11.png deleted file mode 100644 index c0b4f48f0e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11000.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11000.png deleted file mode 100644 index 18de62eb71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11001.png deleted file mode 100644 index b4a771d31f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11002.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11002.png deleted file mode 100644 index 1fc57b0f82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11002.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11003.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11003.png deleted file mode 100644 index c894707b42..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11003.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11005.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11005.png deleted file mode 100644 index 34efd794ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11005.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11006.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11006.png deleted file mode 100644 index d7070d31fc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11006.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11007.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11007.png deleted file mode 100644 index 3268d7acdd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11008.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11008.png deleted file mode 100644 index 726558497c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11008.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11009.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11009.png deleted file mode 100644 index 65e8d1874c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11009.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11011.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11011.png deleted file mode 100644 index 1fc57b0f82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11011.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11012.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11012.png deleted file mode 100644 index 8aab085e12..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11012.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11019.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11019.png deleted file mode 100644 index ad6def96ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11019.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11020.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11020.png deleted file mode 100644 index 90fcded3a7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11020.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11021.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11021.png deleted file mode 100644 index 367cbbc370..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11021.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11022.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11022.png deleted file mode 100644 index 90fcded3a7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11023.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11023.png deleted file mode 100644 index e1742482e2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11024.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11024.png deleted file mode 100644 index b5ae73b7f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11025.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11025.png deleted file mode 100644 index 125fec8ab7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11025.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11026.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11026.png deleted file mode 100644 index 125fec8ab7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11026.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11027.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11027.png deleted file mode 100644 index 6ad6352d88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11027.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11028.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11028.png deleted file mode 100644 index f401e58b1e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11028.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11029.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11029.png deleted file mode 100644 index 204b015999..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11029.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11030.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11030.png deleted file mode 100644 index b5ae73b7f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11030.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11031.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11031.png deleted file mode 100644 index b5ae73b7f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11031.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11032.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11032.png deleted file mode 100644 index b5ae73b7f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11032.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11033.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11033.png deleted file mode 100644 index b5ae73b7f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11033.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11034.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11034.png deleted file mode 100644 index 7ebd0512ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11034.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11037.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11037.png deleted file mode 100644 index 6d4fe66b4b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11037.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11038.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11038.png deleted file mode 100644 index f0cf2e10f6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11038.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11039.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11039.png deleted file mode 100644 index 742e7d2ba8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11039.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11040.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11040.png deleted file mode 100644 index 8821863c10..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11040.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11041.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11041.png deleted file mode 100644 index 93877775c6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11041.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11043.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11043.png deleted file mode 100644 index f231e53cd9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11043.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11047.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11047.png deleted file mode 100644 index 125fec8ab7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11047.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11048.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11048.png deleted file mode 100644 index 3f474d0dee..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11048.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11049.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11049.png deleted file mode 100644 index 139da24661..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11049.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11050.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11050.png deleted file mode 100644 index fa733f1806..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11050.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11107.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11107.png deleted file mode 100644 index 9fff1bab33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11107.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11108.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11108.png deleted file mode 100644 index 9fff1bab33..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11108.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11109.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11109.png deleted file mode 100644 index c453525ef8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11110.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11110.png deleted file mode 100644 index adf916030c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11111.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11111.png deleted file mode 100644 index edb9e07419..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11112.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11112.png deleted file mode 100644 index edb9e07419..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11113.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11113.png deleted file mode 100644 index edb9e07419..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11113.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11116.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11116.png deleted file mode 100644 index d0dbb71186..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11116.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11117.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11117.png deleted file mode 100644 index d0dbb71186..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11117.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11121.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11121.png deleted file mode 100644 index 8aec563d02..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11121.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11122.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11122.png deleted file mode 100644 index 8aec563d02..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11122.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11123.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11123.png deleted file mode 100644 index 6982ae5ef2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11123.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11124.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11124.png deleted file mode 100644 index e59c55abbe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11124.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11125.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11125.png deleted file mode 100644 index 538d354a90..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11125.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11126.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11126.png deleted file mode 100644 index 538d354a90..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11126.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11127.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11127.png deleted file mode 100644 index 992d1904c8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11127.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11128.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11128.png deleted file mode 100644 index d308df5f0d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11128.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11129.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11129.png deleted file mode 100644 index b621f62dc6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11129.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11303.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11303.png deleted file mode 100644 index 8f99a23daa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11303.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11304.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11304.png deleted file mode 100644 index 3b74770116..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11304.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11305.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11305.png deleted file mode 100644 index 3fd726453e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11305.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11306.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11306.png deleted file mode 100644 index c6810bb8e1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11306.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11312.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11312.png deleted file mode 100644 index 63d3fff724..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11314.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11314.png deleted file mode 100644 index 3ad6e3d1b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11314.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11446.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11446.png deleted file mode 100644 index e65dd2cb82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11446.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11447.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11447.png deleted file mode 100644 index c765cf174a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11447.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11449.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11449.png deleted file mode 100644 index 35c8af45f6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11449.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11450.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11450.png deleted file mode 100644 index 9b836dec73..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11450.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11451.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11451.png deleted file mode 100644 index 188ec47854..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11451.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11452.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11452.png deleted file mode 100644 index 24f4b54794..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11452.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11453.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11453.png deleted file mode 100644 index 125fec8ab7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11453.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11454.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11454.png deleted file mode 100644 index 3b46a45c45..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11454.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11455.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11455.png deleted file mode 100644 index 5544f4c933..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11455.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11456.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11456.png deleted file mode 100644 index 32b9f03387..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11456.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11457.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11457.png deleted file mode 100644 index 67ac090679..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11457.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11458.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11458.png deleted file mode 100644 index 148dc01a96..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11458.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11459.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11459.png deleted file mode 100644 index 80f5dc4db5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11459.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11464.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11464.png deleted file mode 100644 index d7adaf58eb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11464.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11465.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11465.png deleted file mode 100644 index 503d893ae0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11465.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11466.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11466.png deleted file mode 100644 index d308df5f0d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11466.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11467.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11467.png deleted file mode 100644 index 23d265f49e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11467.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11468.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11468.png deleted file mode 100644 index 538d354a90..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11468.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11472.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11472.png deleted file mode 100644 index 6016af388d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11472.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11498.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11498.png deleted file mode 100644 index 159ff884f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11498.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11501.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11501.png deleted file mode 100644 index d3228e419d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11501.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11502.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11502.png deleted file mode 100644 index 8f86da2b06..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11502.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11503.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11503.png deleted file mode 100644 index d9d9dac726..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/12.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/12.png deleted file mode 100644 index ae3b7ef732..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/12.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/13.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/13.png deleted file mode 100644 index 448ec1653e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/13.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/14.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/14.png deleted file mode 100644 index 9d5acc5c11..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/14.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/15.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/15.png deleted file mode 100644 index 9a9ecca342..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/15.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/16.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/16.png deleted file mode 100644 index 8328141184..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/16.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/17.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/17.png deleted file mode 100644 index 23ff96a795..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/17.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/18.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/18.png deleted file mode 100644 index 1aa4a9c877..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/18.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/19.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/19.png deleted file mode 100644 index 19f210edf7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/2.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/2.png deleted file mode 100644 index 04784bb942..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/2.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/20001.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/20001.png deleted file mode 100644 index dcc83421b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/20001.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/23.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/23.png deleted file mode 100644 index 98e609462c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/24.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/24.png deleted file mode 100644 index bc5baabb56..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/25.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/25.png deleted file mode 100644 index 76345c2683..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/26.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/26.png deleted file mode 100644 index 6ec4206734..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/26.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/27.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/27.png deleted file mode 100644 index a0751c7d9f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/27.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/28.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/28.png deleted file mode 100644 index 97e4c53866..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/28.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29.png deleted file mode 100644 index 97e13540dc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29900.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29900.png deleted file mode 100644 index eccd227c6b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29900.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29901.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29901.png deleted file mode 100644 index 89e5028c71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29901.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29903.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29903.png deleted file mode 100644 index cd0149bf7e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/29903.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/3.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/3.png deleted file mode 100644 index b459c08ee6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/30.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/30.png deleted file mode 100644 index 9e6f22eb4d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/31.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/31.png deleted file mode 100644 index 9b99dc0efd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/31.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/33.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/33.png deleted file mode 100644 index 7cb2cbf891..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/33.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/34.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/34.png deleted file mode 100644 index e5463c460f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/34.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/35.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/35.png deleted file mode 100644 index d158ee907a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/36.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/36.png deleted file mode 100644 index 35f6bb552f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/39.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/39.png deleted file mode 100644 index 4ea4af9960..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/4.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/4.png deleted file mode 100644 index 19c98c18b1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/43.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/43.png deleted file mode 100644 index ce00d45c51..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/45.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/45.png deleted file mode 100644 index 1089d694be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/45.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/46.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/46.png deleted file mode 100644 index d72bd37d4e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/46.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/47.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/47.png deleted file mode 100644 index d72bd37d4e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/47.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/49.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/49.png deleted file mode 100644 index cc367cafa3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/49.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/5.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/5.png deleted file mode 100644 index c6cb756d5b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/51.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/51.png deleted file mode 100644 index d72bd37d4e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/51.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/53.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/53.png deleted file mode 100644 index 19c219c10b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/53.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/54.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/54.png deleted file mode 100644 index 19c219c10b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/54.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/55.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/55.png deleted file mode 100644 index 19c219c10b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/55.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/57.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/57.png deleted file mode 100644 index 125fec8ab7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/57.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/59.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/59.png deleted file mode 100644 index ff09f190bd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/59.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/6.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/6.png deleted file mode 100644 index 125fec8ab7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/6.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/60.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/60.png deleted file mode 100644 index 406b74834f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/60.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/63.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/63.png deleted file mode 100644 index 125fec8ab7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/63.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/64.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/64.png deleted file mode 100644 index 8850b20f41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/65.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/65.png deleted file mode 100644 index f7aa342f48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/65.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/66.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/66.png deleted file mode 100644 index dcbf86111c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/66.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/69.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/69.png deleted file mode 100644 index 406b74834f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/69.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/7.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/7.png deleted file mode 100644 index 6c8ea57f4c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/70.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/70.png deleted file mode 100644 index 2404f53976..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/70.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/71.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/71.png deleted file mode 100644 index 0121c30d9f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/71.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/73.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/73.png deleted file mode 100644 index 0121c30d9f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/73.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/76.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/76.png deleted file mode 100644 index 1d881230b8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/76.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/77.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/77.png deleted file mode 100644 index 0121c30d9f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/77.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/78.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/78.png deleted file mode 100644 index 2782c168d6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/79.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/79.png deleted file mode 100644 index af0770ccad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/79.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/8.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/8.png deleted file mode 100644 index 5c8cf953f4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/80.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/80.png deleted file mode 100644 index 758421c53d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/80.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/82.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/82.png deleted file mode 100644 index 48dd4397e4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/82.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/83.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/83.png deleted file mode 100644 index 0e70ee0380..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/83.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/84.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/84.png deleted file mode 100644 index 1d881230b8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/84.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/85.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/85.png deleted file mode 100644 index 0e70ee0380..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/85.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/87.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/87.png deleted file mode 100644 index 0e70ee0380..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/87.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/88.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/88.png deleted file mode 100644 index aa1ca10837..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/89.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/89.png deleted file mode 100644 index 69c42ffbe9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/9.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/9.png deleted file mode 100644 index 383fb8d100..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/90.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/90.png deleted file mode 100644 index f6e5b83d12..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/91.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/91.png deleted file mode 100644 index bbdc155113..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/92.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/92.png deleted file mode 100644 index 7dd95e3eea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/93.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/93.png deleted file mode 100644 index 2fef49c7cd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/93.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/94.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/94.png deleted file mode 100644 index 3209b3ac7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/94.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/95.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/95.png deleted file mode 100644 index c496db8bf4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/95.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/96.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/96.png deleted file mode 100644 index b02c05f5fd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/97.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/97.png deleted file mode 100644 index a3f0b116f1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/97.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/99.png b/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/99.png deleted file mode 100644 index 42f41013f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGenerateddustTiny/99.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/1.png deleted file mode 100644 index 5fd02971b5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10022.png deleted file mode 100644 index 1d7d283752..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10023.png deleted file mode 100644 index 5239913ab3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10024.png deleted file mode 100644 index 000960a94a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10053.png deleted file mode 100644 index d40b0f322d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10082.png deleted file mode 100644 index 1022c48b48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10083.png deleted file mode 100644 index bd835c6ff3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10084.png deleted file mode 100644 index bd835c6ff3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10085.png deleted file mode 100644 index 17e503c986..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10096.png deleted file mode 100644 index 971ff9b4ed..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10097.png deleted file mode 100644 index 6493ab66ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10098.png deleted file mode 100644 index a6a100d7ee..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10099.png deleted file mode 100644 index 1eaadbdb18..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10101.png deleted file mode 100644 index 05c7054255..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10102.png deleted file mode 100644 index fe7ae3112c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10103.png deleted file mode 100644 index 39a7b90d02..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10104.png deleted file mode 100644 index 7a882d9374..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10105.png deleted file mode 100644 index 471094c029..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10106.png deleted file mode 100644 index 540964de80..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10109.png deleted file mode 100644 index 6fff3db925..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10110.png deleted file mode 100644 index ee2c93a966..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10111.png deleted file mode 100644 index 9cca3acece..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10112.png deleted file mode 100644 index b94305bbe2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/104.png deleted file mode 100644 index 1662e31363..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11000.png deleted file mode 100644 index 5e18ebdf14..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11007.png deleted file mode 100644 index a4422b7ede..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11312.png deleted file mode 100644 index 70cfb889e2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11499.png deleted file mode 100644 index 6a434c2f05..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/19.png deleted file mode 100644 index dbeb674a8d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/20.png deleted file mode 100644 index 2e51cabfad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/21.png deleted file mode 100644 index 9a458b8f64..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/22.png deleted file mode 100644 index cfc10cee1d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/23.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/24.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/25.png deleted file mode 100644 index bf6c423648..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/3.png deleted file mode 100644 index 13b122099f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/30.png deleted file mode 100644 index cbb5b58e7c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/32237.png deleted file mode 100644 index d11be04622..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/35.png deleted file mode 100644 index ca40f92fd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/36.png deleted file mode 100644 index 8cfc9dfd42..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/39.png deleted file mode 100644 index 2e7cc7ebd0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/4.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/40.png deleted file mode 100644 index eef709de29..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/43.png deleted file mode 100644 index 35f83146f0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/5.png deleted file mode 100644 index 9b73a715e1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/64.png deleted file mode 100644 index d4a6204a09..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/7.png deleted file mode 100644 index 19d27a1793..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/78.png deleted file mode 100644 index 3c870de9cd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/8.png deleted file mode 100644 index a2661035bf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/88.png deleted file mode 100644 index e868e62cd4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/89.png deleted file mode 100644 index eb4e2172b3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/9.png deleted file mode 100644 index 7c24bff266..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/90.png deleted file mode 100644 index 57dd54491a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/91.png deleted file mode 100644 index 801c8d578a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/92.png deleted file mode 100644 index d4db4a007f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/96.png deleted file mode 100644 index a5395ca674..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedfoil/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10022.png deleted file mode 100644 index c3ab210afc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10024.png deleted file mode 100644 index dc972371f4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10082.png deleted file mode 100644 index 9394bb1fdb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10083.png deleted file mode 100644 index a0747c979b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10084.png deleted file mode 100644 index a0747c979b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10085.png deleted file mode 100644 index feeb24172a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10096.png deleted file mode 100644 index 985d24f962..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10097.png deleted file mode 100644 index 09d74fe2ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10099.png deleted file mode 100644 index b24b1fd48b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10101.png deleted file mode 100644 index c108f9b43f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10102.png deleted file mode 100644 index 506ae5864f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10103.png deleted file mode 100644 index 808d88cc57..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10104.png deleted file mode 100644 index 02ad00d283..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10105.png deleted file mode 100644 index fefd07b811..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10106.png deleted file mode 100644 index 5fa0697989..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10109.png deleted file mode 100644 index 01bf20f0c9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10110.png deleted file mode 100644 index 50c37d8910..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10111.png deleted file mode 100644 index da7571d624..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10112.png deleted file mode 100644 index 04367e4bb4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/88.png deleted file mode 100644 index 674f75d8f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/89.png deleted file mode 100644 index 8ca3a6e80c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/90.png deleted file mode 100644 index 28933cbea1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/92.png deleted file mode 100644 index 2589d36ef9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/96.png deleted file mode 100644 index efefd56930..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGt/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10022.png deleted file mode 100644 index d1bf1db2c0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10024.png deleted file mode 100644 index 02426a4a82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10082.png deleted file mode 100644 index a4290ba5b7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10083.png deleted file mode 100644 index 60194b99d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10084.png deleted file mode 100644 index 60194b99d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10085.png deleted file mode 100644 index 215bb48dc4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10096.png deleted file mode 100644 index b282b66512..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10097.png deleted file mode 100644 index 15d3d4cd0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10099.png deleted file mode 100644 index 6ec37c510d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10101.png deleted file mode 100644 index 8dc5b9c414..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10102.png deleted file mode 100644 index 245525b92e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10103.png deleted file mode 100644 index 5f51b0e34c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10104.png deleted file mode 100644 index a35fd8e393..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10105.png deleted file mode 100644 index 29f71969ad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10106.png deleted file mode 100644 index d56c11695d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10109.png deleted file mode 100644 index e33b41cf4a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10110.png deleted file mode 100644 index 533b5c1ede..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10111.png deleted file mode 100644 index 9ccb5aed2f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10112.png deleted file mode 100644 index efed0c2f1f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/88.png deleted file mode 100644 index b6057ff013..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/89.png deleted file mode 100644 index 1e480f8aba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/90.png deleted file mode 100644 index b4e7cd2784..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/92.png deleted file mode 100644 index 606b6fe2d3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/96.png deleted file mode 100644 index 7f5e9efbb8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgearGtSmall/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/1.png deleted file mode 100644 index 58999ca880..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/10023.png deleted file mode 100644 index 700b7bffb6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/11499.png deleted file mode 100644 index 1117f5634e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/19.png deleted file mode 100644 index bc491f68fe..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/20.png deleted file mode 100644 index 55be8c6814..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/21.png deleted file mode 100644 index 958c7f44cc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/22.png deleted file mode 100644 index 9ff8b4d63a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/23.png deleted file mode 100644 index 569456ca15..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/24.png deleted file mode 100644 index f47b7660b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/25.png deleted file mode 100644 index 25acb85286..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/35.png deleted file mode 100644 index e18d2d1d39..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/36.png deleted file mode 100644 index 64e2573d41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/4.png deleted file mode 100644 index 58d34920a6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/43.png deleted file mode 100644 index 1f6d57e17c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/5.png deleted file mode 100644 index 40e223e6c6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/7.png deleted file mode 100644 index 76c699767b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/8.png deleted file mode 100644 index 14ce739a37..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/89.png deleted file mode 100644 index af1c8a1c69..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/9.png deleted file mode 100644 index 86abfc7504..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/91.png deleted file mode 100644 index 77fb4fcc56..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgem/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/1.png deleted file mode 100644 index 41f9443bec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/10023.png deleted file mode 100644 index 603e1a2c48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/11499.png deleted file mode 100644 index 12a0b5f1e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/19.png deleted file mode 100644 index 720adb25e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/20.png deleted file mode 100644 index fe26a14d9d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/21.png deleted file mode 100644 index 1bb935fe43..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/22.png deleted file mode 100644 index 1d8ec8814c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/23.png deleted file mode 100644 index a2659f128f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/24.png deleted file mode 100644 index 33eb792c54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/25.png deleted file mode 100644 index 0300f8769d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/35.png deleted file mode 100644 index 0cbb36535b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/36.png deleted file mode 100644 index 21d339afc0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/4.png deleted file mode 100644 index 33eb792c54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/43.png deleted file mode 100644 index 46d25770dd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/5.png deleted file mode 100644 index 4e91b9637e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/7.png deleted file mode 100644 index 527e7850ae..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/8.png deleted file mode 100644 index dcbb933917..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/89.png deleted file mode 100644 index 5e21653b95..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/9.png deleted file mode 100644 index 6ab80148e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/91.png deleted file mode 100644 index 19e527cd22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemChipped/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/1.png deleted file mode 100644 index 079e39abcd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/10023.png deleted file mode 100644 index 772874ef55..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/11499.png deleted file mode 100644 index dc71585ea3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/19.png deleted file mode 100644 index 10693909f3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/20.png deleted file mode 100644 index f56371ed10..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/21.png deleted file mode 100644 index 6d00ad0b39..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/22.png deleted file mode 100644 index 1543e3e8e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/23.png deleted file mode 100644 index 1512b39f85..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/24.png deleted file mode 100644 index 0199549edc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/25.png deleted file mode 100644 index e0f2b6cf37..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/35.png deleted file mode 100644 index 68305af9c6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/36.png deleted file mode 100644 index ed3b634261..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/4.png deleted file mode 100644 index 0199549edc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/43.png deleted file mode 100644 index 8c96b6bbc3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/5.png deleted file mode 100644 index 8b2fd8f640..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/7.png deleted file mode 100644 index 106641316e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/8.png deleted file mode 100644 index 19d762a06f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/89.png deleted file mode 100644 index f295289793..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/9.png deleted file mode 100644 index 3042c1440a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/91.png deleted file mode 100644 index 284f59223f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemExquisite/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/1.png deleted file mode 100644 index 868c8d1d31..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/10023.png deleted file mode 100644 index 8d8e8b49a1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/11499.png deleted file mode 100644 index 2cc4f55d84..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/19.png deleted file mode 100644 index 49433b50d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/20.png deleted file mode 100644 index 60c26172c0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/21.png deleted file mode 100644 index 0f1876863d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/22.png deleted file mode 100644 index d09f902dca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/23.png deleted file mode 100644 index b88356245e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/24.png deleted file mode 100644 index 95ce24ba65..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/25.png deleted file mode 100644 index 031fac7516..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/35.png deleted file mode 100644 index 52f209fa3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/36.png deleted file mode 100644 index 8edf60172a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/4.png deleted file mode 100644 index 95ce24ba65..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/43.png deleted file mode 100644 index 5160b7ef5b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/5.png deleted file mode 100644 index f4d4b11447..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/7.png deleted file mode 100644 index e71bd64057..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/8.png deleted file mode 100644 index 08f46c634a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/89.png deleted file mode 100644 index 8e1ffb7469..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/9.png deleted file mode 100644 index 8eb1700a83..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/91.png deleted file mode 100644 index 455afbdaa9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawed/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/1.png deleted file mode 100644 index d9e7a805ca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/10023.png deleted file mode 100644 index 2bfb709221..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/11499.png deleted file mode 100644 index 6ab95e1651..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/19.png deleted file mode 100644 index e7f2b35ff4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/20.png deleted file mode 100644 index 8f057341c2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/21.png deleted file mode 100644 index 59228a0fd0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/22.png deleted file mode 100644 index d3af925685..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/23.png deleted file mode 100644 index 2ba80c812e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/24.png deleted file mode 100644 index 2a7da9a059..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/25.png deleted file mode 100644 index d96389fc9d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/35.png deleted file mode 100644 index 155f3b5345..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/36.png deleted file mode 100644 index 27b21c9ab6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/4.png deleted file mode 100644 index 2a7da9a059..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/43.png deleted file mode 100644 index 122d8b28ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/5.png deleted file mode 100644 index 9df2a0bdf2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/7.png deleted file mode 100644 index a8721b9e59..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/8.png deleted file mode 100644 index 510e96328d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/89.png deleted file mode 100644 index 9f8ee82893..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/9.png deleted file mode 100644 index 75cd65bff1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/91.png deleted file mode 100644 index a56c374757..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedgemFlawless/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10022.png deleted file mode 100644 index 4c03fd36e8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10024.png deleted file mode 100644 index ab238276fc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10053.png deleted file mode 100644 index 5ce522c3bf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10082.png deleted file mode 100644 index 06ff273837..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10083.png deleted file mode 100644 index 3fe8b92a3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10084.png deleted file mode 100644 index 3fe8b92a3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10085.png deleted file mode 100644 index 7fda979023..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10096.png deleted file mode 100644 index c1e8809171..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10097.png deleted file mode 100644 index 03fb1ad2d1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10098.png deleted file mode 100644 index 483038570e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10099.png deleted file mode 100644 index ea18ae21d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10101.png deleted file mode 100644 index e9ee0064f6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10102.png deleted file mode 100644 index b19f04860b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10103.png deleted file mode 100644 index 507825f0fa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10104.png deleted file mode 100644 index 5991b3546a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10105.png deleted file mode 100644 index 2125e18e99..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10106.png deleted file mode 100644 index a8c36d2605..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10109.png deleted file mode 100644 index f6521ab346..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10110.png deleted file mode 100644 index b7386f3252..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10111.png deleted file mode 100644 index 8cb0c93dcd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10112.png deleted file mode 100644 index a19784f2ab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/104.png deleted file mode 100644 index 24d95f31bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11000.png deleted file mode 100644 index e0c0f741a5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11007.png deleted file mode 100644 index cab7c6dc69..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11312.png deleted file mode 100644 index b7d03d0055..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11503.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11503.png deleted file mode 100644 index 90c8a6a59a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/3.png deleted file mode 100644 index f0d6456d6e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/30.png deleted file mode 100644 index a9fc6d9b0b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/32237.png deleted file mode 100644 index 969c813f85..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/39.png deleted file mode 100644 index 84ebb26894..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/40.png deleted file mode 100644 index f376247fa0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/43.png deleted file mode 100644 index f65af72449..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/64.png deleted file mode 100644 index 7ec1d51e31..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/78.png deleted file mode 100644 index 39ddbaa27a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/88.png deleted file mode 100644 index 9cf0df5006..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/90.png deleted file mode 100644 index 4cfc5ee46d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/92.png deleted file mode 100644 index 9ed9a663b7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/96.png deleted file mode 100644 index b50a2a3d7b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingot/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10022.png deleted file mode 100644 index cde81d17c9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10024.png deleted file mode 100644 index a5f30b698c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10085.png deleted file mode 100644 index fa105b05d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10096.png deleted file mode 100644 index 01b6b97583..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10097.png deleted file mode 100644 index bcd0bb217d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10109.png deleted file mode 100644 index 2e6b12043c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10110.png deleted file mode 100644 index 3b2be8d954..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10111.png deleted file mode 100644 index 5d9ca5ea93..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10112.png deleted file mode 100644 index da0047587e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/88.png deleted file mode 100644 index 9a6ce68eef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/90.png deleted file mode 100644 index 57b9b6caf0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/92.png deleted file mode 100644 index 9e0d236d69..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/96.png deleted file mode 100644 index 9691943688..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotDouble/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10022.png deleted file mode 100644 index 09c404f574..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10024.png deleted file mode 100644 index 1e8cbc983b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10053.png deleted file mode 100644 index 3e5d15173b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10082.png deleted file mode 100644 index 2184d3daf6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10083.png deleted file mode 100644 index 0839fba750..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10084.png deleted file mode 100644 index 0839fba750..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10085.png deleted file mode 100644 index 5d056675d6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10096.png deleted file mode 100644 index ebdc31f52d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10097.png deleted file mode 100644 index 0647d9df48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10098.png deleted file mode 100644 index 7e7dcd05fd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10099.png deleted file mode 100644 index 7371cb5242..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10101.png deleted file mode 100644 index 15a44c32e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10102.png deleted file mode 100644 index 30fd83e106..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10103.png deleted file mode 100644 index b0e8097a24..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10104.png deleted file mode 100644 index f90e7e89bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10105.png deleted file mode 100644 index f001253d54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10106.png deleted file mode 100644 index 6419bdfc2e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10109.png deleted file mode 100644 index b83db1ab49..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10110.png deleted file mode 100644 index 9fa57f0494..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10111.png deleted file mode 100644 index 736cddff0c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10112.png deleted file mode 100644 index c927410774..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/104.png deleted file mode 100644 index a8f1609374..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11000.png deleted file mode 100644 index d5dcef3d83..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11007.png deleted file mode 100644 index 4afb3f7c5e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11312.png deleted file mode 100644 index fdb1835417..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11503.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11503.png deleted file mode 100644 index e65adfffb7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/3.png deleted file mode 100644 index 47e5b55b24..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/30.png deleted file mode 100644 index 632c8a3f14..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/32237.png deleted file mode 100644 index c9d286655c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/39.png deleted file mode 100644 index f1fb6712eb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/40.png deleted file mode 100644 index d4d2d8ee83..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/43.png deleted file mode 100644 index 37c272e8d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/64.png deleted file mode 100644 index 9b4e33aee3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/78.png deleted file mode 100644 index 6c3b52e176..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/88.png deleted file mode 100644 index 18e79a572d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/90.png deleted file mode 100644 index 6c3e6d8026..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/92.png deleted file mode 100644 index 0e3458e210..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/96.png deleted file mode 100644 index bb8ca0755b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotHot/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10022.png deleted file mode 100644 index ebc2a479bf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10024.png deleted file mode 100644 index 6c6da8405f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10085.png deleted file mode 100644 index d93e229506..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10096.png deleted file mode 100644 index c2f589b2a5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10097.png deleted file mode 100644 index 3e63d80db0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10109.png deleted file mode 100644 index 36937ee031..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10110.png deleted file mode 100644 index 0fe206d654..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10111.png deleted file mode 100644 index 4ec45c0576..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10112.png deleted file mode 100644 index c053e26fd2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/88.png deleted file mode 100644 index 44298d8237..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/90.png deleted file mode 100644 index 5c1a286323..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/92.png deleted file mode 100644 index 0ef3ab5ce8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/96.png deleted file mode 100644 index 8c565db582..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuadruple/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10022.png deleted file mode 100644 index abf88f1107..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10024.png deleted file mode 100644 index 37d56c7ddd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10085.png deleted file mode 100644 index 1288f3a853..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10096.png deleted file mode 100644 index f5095e9cea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10097.png deleted file mode 100644 index 2e053026f3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10109.png deleted file mode 100644 index 09b9ea7e3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10110.png deleted file mode 100644 index 43eccffade..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10111.png deleted file mode 100644 index 87c83ae9d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10112.png deleted file mode 100644 index 1741d68dbd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/88.png deleted file mode 100644 index 50cc2f1ca4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/90.png deleted file mode 100644 index 7ccf0b4b7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/92.png deleted file mode 100644 index a459c531ca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/96.png deleted file mode 100644 index dff5134eab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotQuintuple/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10022.png deleted file mode 100644 index 36969462ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10024.png deleted file mode 100644 index f06b2b3f3a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10085.png deleted file mode 100644 index 8613bc6f7a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10096.png deleted file mode 100644 index 2dafe80288..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10097.png deleted file mode 100644 index 5cd80c784a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10109.png deleted file mode 100644 index cb7c824b6f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10110.png deleted file mode 100644 index 36b67580dd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10111.png deleted file mode 100644 index 72f701f3b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10112.png deleted file mode 100644 index 07cc379808..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/88.png deleted file mode 100644 index 8f3fcf6751..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/90.png deleted file mode 100644 index c50ce372ea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/92.png deleted file mode 100644 index 03a627b32f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/96.png deleted file mode 100644 index a982a82bcb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedingotTriple/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/1.png deleted file mode 100644 index fcd0a38e82..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/10023.png deleted file mode 100644 index b363b2e3b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/11499.png deleted file mode 100644 index 3c7a28b0d2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/19.png deleted file mode 100644 index c6d0d97615..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/20.png deleted file mode 100644 index fa593ed6c6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/21.png deleted file mode 100644 index aa687716dd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/22.png deleted file mode 100644 index b17c5fb4bc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/23.png deleted file mode 100644 index 7af3f272cf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/24.png deleted file mode 100644 index ae1d8ea7c4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/25.png deleted file mode 100644 index c097526848..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/35.png deleted file mode 100644 index 715f7e6a71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/36.png deleted file mode 100644 index 67dfcd85ad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/4.png deleted file mode 100644 index ae1d8ea7c4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/43.png deleted file mode 100644 index 0fb4914682..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/5.png deleted file mode 100644 index 0773c2526c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/7.png deleted file mode 100644 index 001016132c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/8.png deleted file mode 100644 index ec7d7e0a6b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/89.png deleted file mode 100644 index 45a9c2c87b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/9.png deleted file mode 100644 index e93e1b8f79..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/91.png deleted file mode 100644 index 0f15ae8d16..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedlens/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10022.png deleted file mode 100644 index f5d40ef76d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10024.png deleted file mode 100644 index 51570bfad4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10053.png deleted file mode 100644 index c94b127590..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10082.png deleted file mode 100644 index f52ed1d9d1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10083.png deleted file mode 100644 index 9c29bc5366..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10084.png deleted file mode 100644 index 9c29bc5366..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10085.png deleted file mode 100644 index 3c31567f19..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10096.png deleted file mode 100644 index b8d572b0e6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10097.png deleted file mode 100644 index a65a9e2859..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10098.png deleted file mode 100644 index cab263998e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10099.png deleted file mode 100644 index bcb6a5664d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10101.png deleted file mode 100644 index 553050bdc5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10102.png deleted file mode 100644 index ea3ed8f159..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10103.png deleted file mode 100644 index eebc8fb5fc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10104.png deleted file mode 100644 index fcddfdbccf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10105.png deleted file mode 100644 index e78573d3e3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10106.png deleted file mode 100644 index 19f61ec707..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10109.png deleted file mode 100644 index 7d6e76a8a0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10110.png deleted file mode 100644 index 7387027fc2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10111.png deleted file mode 100644 index bb5c914421..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10112.png deleted file mode 100644 index 17b2b9bbea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/104.png deleted file mode 100644 index aec5e1327e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11000.png deleted file mode 100644 index f88844f811..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11007.png deleted file mode 100644 index 6e7ab99819..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11312.png deleted file mode 100644 index f221b90bea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11503.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11503.png deleted file mode 100644 index ac7a188dc5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/11503.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/3.png deleted file mode 100644 index 1b00495c7b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/30.png deleted file mode 100644 index 1d416d2738..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/32237.png deleted file mode 100644 index 2a5d15d835..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/39.png deleted file mode 100644 index 1f7e81bd39..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/40.png deleted file mode 100644 index 9fb16bded7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/43.png deleted file mode 100644 index ff3574cdb9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/64.png deleted file mode 100644 index 10634d4f83..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/78.png deleted file mode 100644 index f1562e6360..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/88.png deleted file mode 100644 index 04a396a9b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/90.png deleted file mode 100644 index eb9bdd2644..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/92.png deleted file mode 100644 index 3d04ee1a41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/96.png deleted file mode 100644 index e4ebb55bf7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratednugget/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/1.png deleted file mode 100644 index b29fd68fd5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10022.png deleted file mode 100644 index 63757d98f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10023.png deleted file mode 100644 index 94db79118f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10024.png deleted file mode 100644 index a39544b667..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10053.png deleted file mode 100644 index ae0a92c840..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10082.png deleted file mode 100644 index 26cdc1bd0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10083.png deleted file mode 100644 index acd2f9172a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10084.png deleted file mode 100644 index acd2f9172a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10085.png deleted file mode 100644 index 29c9959dae..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10096.png deleted file mode 100644 index 47e1686bbc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10097.png deleted file mode 100644 index 4427442248..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10098.png deleted file mode 100644 index ee02f07b72..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10099.png deleted file mode 100644 index 2431f2a290..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10101.png deleted file mode 100644 index 9b8feb74f9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10102.png deleted file mode 100644 index 7a00f1577b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10103.png deleted file mode 100644 index bdcf9c98e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10104.png deleted file mode 100644 index 93efd6f1e4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10105.png deleted file mode 100644 index cf6f2301b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10106.png deleted file mode 100644 index 373bbfde7a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10109.png deleted file mode 100644 index c201c4f5c1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10110.png deleted file mode 100644 index 5e4065e0ca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10111.png deleted file mode 100644 index 91799e643d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10112.png deleted file mode 100644 index f8790f7e00..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/104.png deleted file mode 100644 index a59c575b8c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11000.png deleted file mode 100644 index 3b57b7101b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11007.png deleted file mode 100644 index cbcd23500b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11312.png deleted file mode 100644 index ad93b7cfe5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11499.png deleted file mode 100644 index 974f030553..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/19.png deleted file mode 100644 index a6748f48c5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/20.png deleted file mode 100644 index 5a0356c244..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/21.png deleted file mode 100644 index 5e0e6e2b6d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/22.png deleted file mode 100644 index 3b2d7b2173..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/23.png deleted file mode 100644 index 0c46302b71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/24.png deleted file mode 100644 index 70374a61f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/25.png deleted file mode 100644 index 2ab77b54b5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/3.png deleted file mode 100644 index bda950ef6c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/30.png deleted file mode 100644 index 2b4e73d5d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/32237.png deleted file mode 100644 index 8a2bbb9e58..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/35.png deleted file mode 100644 index c66b043899..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/36.png deleted file mode 100644 index 9655549558..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/39.png deleted file mode 100644 index f719dce15c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/4.png deleted file mode 100644 index 7e68d0dacc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/40.png deleted file mode 100644 index a15e3164f0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/43.png deleted file mode 100644 index 0ee33e44f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/5.png deleted file mode 100644 index 01329465a0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/64.png deleted file mode 100644 index 8df8b19792..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/7.png deleted file mode 100644 index 128ce0f87d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/78.png deleted file mode 100644 index e9fcd6bdb1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/8.png deleted file mode 100644 index c05ef6d043..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/88.png deleted file mode 100644 index 011fc1cb0c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/89.png deleted file mode 100644 index 165cf93dc8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/9.png deleted file mode 100644 index 16ad8fbc0d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/90.png deleted file mode 100644 index 9d160e1647..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/91.png deleted file mode 100644 index 85010e488f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/92.png deleted file mode 100644 index 550d97ac79..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/96.png deleted file mode 100644 index 09cf67b0af..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplate/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10022.png deleted file mode 100644 index db2c0e1e1e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10024.png deleted file mode 100644 index 25a47c5e15..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10085.png deleted file mode 100644 index 081c46b528..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10096.png deleted file mode 100644 index b7be8fff8a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10097.png deleted file mode 100644 index 165d8755d6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10109.png deleted file mode 100644 index 99af2eebd8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10110.png deleted file mode 100644 index d6aeac6695..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10111.png deleted file mode 100644 index c80c448e2d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10112.png deleted file mode 100644 index c3267390ad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/88.png deleted file mode 100644 index f5f287f46d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/90.png deleted file mode 100644 index 8567a6add8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/92.png deleted file mode 100644 index 5467f0e860..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/96.png deleted file mode 100644 index 58c9605ee0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDense/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10022.png deleted file mode 100644 index a8ddb723c1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10024.png deleted file mode 100644 index 20346ac810..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10085.png deleted file mode 100644 index 4b5aa00f47..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10096.png deleted file mode 100644 index 28f102b969..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10097.png deleted file mode 100644 index 131d21807d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10109.png deleted file mode 100644 index 3475f6bb81..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10110.png deleted file mode 100644 index d9d1d2ccd7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10111.png deleted file mode 100644 index 7d7b10ec65..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10112.png deleted file mode 100644 index 0cce4b1cd2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/88.png deleted file mode 100644 index 53d35f5f1f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/90.png deleted file mode 100644 index 8c1ec3dd43..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/92.png deleted file mode 100644 index d3cfbe419f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/96.png deleted file mode 100644 index 64ae9a38d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateDouble/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10022.png deleted file mode 100644 index 952dc2038b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10024.png deleted file mode 100644 index dc7780ed6b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10085.png deleted file mode 100644 index 9863e69daa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10096.png deleted file mode 100644 index 64ed2f8f65..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10097.png deleted file mode 100644 index d5fdf56532..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10109.png deleted file mode 100644 index 173aa542be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10110.png deleted file mode 100644 index a82c89da67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10111.png deleted file mode 100644 index 89da57ab50..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10112.png deleted file mode 100644 index 766e67a42a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/88.png deleted file mode 100644 index 388cbf1251..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/90.png deleted file mode 100644 index db5221cb41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/92.png deleted file mode 100644 index 0df5b14c31..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/96.png deleted file mode 100644 index 1ad0ffe390..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuadruple/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10022.png deleted file mode 100644 index be1898a51b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10024.png deleted file mode 100644 index de5eb2d9f6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10085.png deleted file mode 100644 index cdf1714d64..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10096.png deleted file mode 100644 index c8c8c79706..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10097.png deleted file mode 100644 index 69b9e901d5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10109.png deleted file mode 100644 index 2823bd0d07..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10110.png deleted file mode 100644 index 7cc98d8b39..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10111.png deleted file mode 100644 index 8a9c5e57b8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10112.png deleted file mode 100644 index 843902b2bd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/88.png deleted file mode 100644 index 854bc4a5e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/90.png deleted file mode 100644 index 25b44bf791..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/92.png deleted file mode 100644 index a4e300595b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/96.png deleted file mode 100644 index 0967f2005e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateQuintuple/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10022.png deleted file mode 100644 index c3ebd395d8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10024.png deleted file mode 100644 index b73c0f0de6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10085.png deleted file mode 100644 index 66feefa270..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10096.png deleted file mode 100644 index afacb4df91..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10097.png deleted file mode 100644 index a84e7ac52b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10109.png deleted file mode 100644 index 4509fe2b54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10110.png deleted file mode 100644 index adcf666a18..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10111.png deleted file mode 100644 index d7026d6e35..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10112.png deleted file mode 100644 index ac223fd071..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/88.png deleted file mode 100644 index 70c1df6c57..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/90.png deleted file mode 100644 index 53a5789361..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/92.png deleted file mode 100644 index db9121acb8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/96.png deleted file mode 100644 index 83366c5fec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedplateTriple/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10022.png deleted file mode 100644 index 86f70b4e8c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10024.png deleted file mode 100644 index 2d8f91e31f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10082.png deleted file mode 100644 index e7f876807a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10083.png deleted file mode 100644 index 51537e9ba9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10084.png deleted file mode 100644 index 51537e9ba9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10085.png deleted file mode 100644 index 73aa3f6f88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10096.png deleted file mode 100644 index c2661508e7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10097.png deleted file mode 100644 index 152e9c08c4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10099.png deleted file mode 100644 index 0554796d9a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10101.png deleted file mode 100644 index 2997c29cdd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10102.png deleted file mode 100644 index 36ff1ceaab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10103.png deleted file mode 100644 index 8055b49094..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10104.png deleted file mode 100644 index 148615c664..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10105.png deleted file mode 100644 index eedb3861fa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10106.png deleted file mode 100644 index 7f21f95a38..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10109.png deleted file mode 100644 index 08731b9448..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10110.png deleted file mode 100644 index d6a018b831..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10111.png deleted file mode 100644 index f82fad411d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10112.png deleted file mode 100644 index 2ef05b8c56..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/88.png deleted file mode 100644 index cd6ac66d8a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/89.png deleted file mode 100644 index 12189315be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/90.png deleted file mode 100644 index f26fdda700..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/92.png deleted file mode 100644 index c82474a220..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedring/96.png deleted file mode 100644 index 4f117af937..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedring/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10022.png deleted file mode 100644 index c4a23e0522..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10024.png deleted file mode 100644 index 0f401efd90..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10082.png deleted file mode 100644 index 19a4c8426e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10083.png deleted file mode 100644 index 45f587024f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10084.png deleted file mode 100644 index 45f587024f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10085.png deleted file mode 100644 index 1372388dfa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10096.png deleted file mode 100644 index 0b1ba3aafc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10097.png deleted file mode 100644 index 05bf08b527..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10099.png deleted file mode 100644 index dc25fbf7e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10101.png deleted file mode 100644 index 1d206b773a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10102.png deleted file mode 100644 index fd930453f1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10103.png deleted file mode 100644 index 035e3165cd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10104.png deleted file mode 100644 index 60d54ad6fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10105.png deleted file mode 100644 index c7dd9b7bdc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10106.png deleted file mode 100644 index 6c45878f02..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10109.png deleted file mode 100644 index 00ec98ed41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10110.png deleted file mode 100644 index 16320dd290..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10111.png deleted file mode 100644 index 8cf29bb98d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10112.png deleted file mode 100644 index 6938fe46d5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/88.png deleted file mode 100644 index 9cf571f9cd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/89.png deleted file mode 100644 index 5fa0af2b0f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/90.png deleted file mode 100644 index 27eb95f4cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/92.png deleted file mode 100644 index 0044267c64..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/96.png deleted file mode 100644 index 67cd940626..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedrotor/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10022.png deleted file mode 100644 index 206630d505..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10024.png deleted file mode 100644 index 1d71188f83..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10082.png deleted file mode 100644 index 2cb97d90b5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10083.png deleted file mode 100644 index 626e003836..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10084.png deleted file mode 100644 index 626e003836..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10085.png deleted file mode 100644 index 2a9091bfe0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10096.png deleted file mode 100644 index b775db7723..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10097.png deleted file mode 100644 index 37787463d7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10099.png deleted file mode 100644 index 99bd502e30..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10101.png deleted file mode 100644 index 53870066ad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10102.png deleted file mode 100644 index 66de199af5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10103.png deleted file mode 100644 index bd020b1a2f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10104.png deleted file mode 100644 index 8b4f1dbd38..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10105.png deleted file mode 100644 index ef6eaedb09..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10106.png deleted file mode 100644 index 501aa02888..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10109.png deleted file mode 100644 index 57252ac222..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10110.png deleted file mode 100644 index 1e6bbbdf25..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10111.png deleted file mode 100644 index 30da76c15a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10112.png deleted file mode 100644 index 1170563195..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/88.png deleted file mode 100644 index e72b161cda..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/89.png deleted file mode 100644 index 9e5b5368d9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/90.png deleted file mode 100644 index 793e9c7928..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/92.png deleted file mode 100644 index 028b229004..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/96.png deleted file mode 100644 index ab45c5c493..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedscrew/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10022.png deleted file mode 100644 index b2e6a637e6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10024.png deleted file mode 100644 index 32e0496836..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10082.png deleted file mode 100644 index 4a9a7ea9be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10083.png deleted file mode 100644 index c5dc43040a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10084.png deleted file mode 100644 index c5dc43040a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10085.png deleted file mode 100644 index 1c8960c82d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10096.png deleted file mode 100644 index 442e0f3667..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10097.png deleted file mode 100644 index 401f6eab55..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10099.png deleted file mode 100644 index e47fedb3b5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10101.png deleted file mode 100644 index 8452312842..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10102.png deleted file mode 100644 index 1348757663..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10103.png deleted file mode 100644 index 8cb857add4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10104.png deleted file mode 100644 index bc472bffb6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10105.png deleted file mode 100644 index ebeff0eff1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10106.png deleted file mode 100644 index 181f822730..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10109.png deleted file mode 100644 index 2a890acb65..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10110.png deleted file mode 100644 index 7a93988482..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10111.png deleted file mode 100644 index cfeed84085..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10112.png deleted file mode 100644 index 80bc0224b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/88.png deleted file mode 100644 index de86c7153b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/89.png deleted file mode 100644 index ffa55f40be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/90.png deleted file mode 100644 index 35318e7eb7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/92.png deleted file mode 100644 index 107235172c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/96.png deleted file mode 100644 index 7a6523622f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspring/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10022.png deleted file mode 100644 index d2fa91dedd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10024.png deleted file mode 100644 index 54de2c5bdd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10082.png deleted file mode 100644 index 27489f78a0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10083.png deleted file mode 100644 index 0df7dc8432..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10084.png deleted file mode 100644 index 0df7dc8432..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10085.png deleted file mode 100644 index e97885e936..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10096.png deleted file mode 100644 index e2661a97c4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10097.png deleted file mode 100644 index 88b32ce303..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10099.png deleted file mode 100644 index 65f1cf2b56..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10101.png deleted file mode 100644 index c37ca5e826..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10102.png deleted file mode 100644 index 42b6f2819e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10103.png deleted file mode 100644 index 3daababf67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10104.png deleted file mode 100644 index 82a529b715..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10105.png deleted file mode 100644 index 1312c9a920..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10106.png deleted file mode 100644 index 5514b9ad75..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10109.png deleted file mode 100644 index 3ac927e843..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10110.png deleted file mode 100644 index 2af51c1f72..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10111.png deleted file mode 100644 index 5100531a1a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10112.png deleted file mode 100644 index e6c3c7781e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/88.png deleted file mode 100644 index dda5240329..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/89.png deleted file mode 100644 index d5fb66ee67..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/90.png deleted file mode 100644 index 4c989b6a35..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/92.png deleted file mode 100644 index 6a32bfa485..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/96.png deleted file mode 100644 index 92bd192ef2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedspringSmall/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/1.png deleted file mode 100644 index a198dfcc22..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10022.png deleted file mode 100644 index 546faf9930..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10023.png deleted file mode 100644 index 0a4c0cb2f4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10024.png deleted file mode 100644 index c8854dae08..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10053.png deleted file mode 100644 index 652a2adf0b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10082.png deleted file mode 100644 index dd6a2fd55d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10083.png deleted file mode 100644 index 47b5736276..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10084.png deleted file mode 100644 index 47b5736276..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10085.png deleted file mode 100644 index af5f4a6184..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10096.png deleted file mode 100644 index 3fecfabde6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10097.png deleted file mode 100644 index a631325e2a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10098.png deleted file mode 100644 index 32fb563ed1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10099.png deleted file mode 100644 index deb85dd26e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10101.png deleted file mode 100644 index 025da60514..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10102.png deleted file mode 100644 index e079f7bbc3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10103.png deleted file mode 100644 index c0dfbd43ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10104.png deleted file mode 100644 index 0d5ae2e6e9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10105.png deleted file mode 100644 index 41914ad760..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10106.png deleted file mode 100644 index 19b2959923..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10109.png deleted file mode 100644 index 89e62dcf1b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10110.png deleted file mode 100644 index 3a302594dc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10111.png deleted file mode 100644 index 802a2cb5e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10112.png deleted file mode 100644 index 7ed8fd4458..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/104.png deleted file mode 100644 index 46e9d96255..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11000.png deleted file mode 100644 index 88cc9ae092..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11007.png deleted file mode 100644 index ce1015c152..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11312.png deleted file mode 100644 index f8ab4db25f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11499.png deleted file mode 100644 index 053c48d852..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/19.png deleted file mode 100644 index a6d3b05726..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/20.png deleted file mode 100644 index 0bf963a75d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/21.png deleted file mode 100644 index 1ebbd2b575..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/22.png deleted file mode 100644 index c17e12ee08..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/23.png deleted file mode 100644 index 07bebb94cd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/24.png deleted file mode 100644 index 91507f5dff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/25.png deleted file mode 100644 index 4ada4c3740..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/3.png deleted file mode 100644 index 269d13667b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/30.png deleted file mode 100644 index 339693216e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/32237.png deleted file mode 100644 index 6abbe97417..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/35.png deleted file mode 100644 index 53a7148e6d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/36.png deleted file mode 100644 index 5c497806d0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/39.png deleted file mode 100644 index a1d2323829..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/4.png deleted file mode 100644 index 1b629c5933..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/40.png deleted file mode 100644 index cb60255218..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/43.png deleted file mode 100644 index 1350f4a506..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/5.png deleted file mode 100644 index d0b0bf1b01..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/64.png deleted file mode 100644 index 7c8f073dad..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/7.png deleted file mode 100644 index 076cfff6b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/78.png deleted file mode 100644 index 2550347cf2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/8.png deleted file mode 100644 index 62d3703105..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/88.png deleted file mode 100644 index c14c56a7b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/89.png deleted file mode 100644 index bb04126827..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/9.png deleted file mode 100644 index 5072d0fba4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/90.png deleted file mode 100644 index adfa2775b8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/91.png deleted file mode 100644 index 2bb90a7503..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/92.png deleted file mode 100644 index 1b58e24c31..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/96.png deleted file mode 100644 index 2c069c12a5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstick/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/1.png deleted file mode 100644 index 952ed321e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10022.png deleted file mode 100644 index 0dcfa56bbc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10023.png deleted file mode 100644 index 1fd837d31c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10024.png deleted file mode 100644 index befb9c4022..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10053.png deleted file mode 100644 index 997adcd31b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10082.png deleted file mode 100644 index 9d5f3f8f63..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10083.png deleted file mode 100644 index c7650c10e4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10084.png deleted file mode 100644 index c7650c10e4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10085.png deleted file mode 100644 index de9992e63a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10096.png deleted file mode 100644 index f60c58bf69..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10097.png deleted file mode 100644 index 9d4f7cbc9b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10098.png deleted file mode 100644 index f81243e7db..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10099.png deleted file mode 100644 index 593af256c3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10101.png deleted file mode 100644 index 38c2172d8f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10102.png deleted file mode 100644 index c92c47c6d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10103.png deleted file mode 100644 index 5d36e5b754..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10104.png deleted file mode 100644 index a2da24fe23..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10105.png deleted file mode 100644 index 5830a1aafd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10106.png deleted file mode 100644 index 869d480e25..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10109.png deleted file mode 100644 index 8bcca1df6a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10110.png deleted file mode 100644 index 697414f87b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10111.png deleted file mode 100644 index 16c29c0b77..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10112.png deleted file mode 100644 index f268c08a3c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/104.png deleted file mode 100644 index de1c6c28b1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11000.png deleted file mode 100644 index 95b23102dc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11007.png deleted file mode 100644 index 938aeabae4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11312.png deleted file mode 100644 index b294b85d18..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11499.png deleted file mode 100644 index 567a6af19c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/19.png deleted file mode 100644 index b73964df42..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/20.png deleted file mode 100644 index 161e18416b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/21.png deleted file mode 100644 index 9e59c66dfa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/22.png deleted file mode 100644 index a7ccb35969..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/23.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/24.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/25.png deleted file mode 100644 index bc719a5a57..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/3.png deleted file mode 100644 index 010f6e1219..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/30.png deleted file mode 100644 index 24b75319dc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/32237.png deleted file mode 100644 index a01b773641..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/35.png deleted file mode 100644 index c713755aaa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/36.png deleted file mode 100644 index 98c5e308e4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/39.png deleted file mode 100644 index 4a19325292..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/4.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/40.png deleted file mode 100644 index d433099248..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/43.png deleted file mode 100644 index a0c9b86f40..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/5.png deleted file mode 100644 index 2d97473877..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/64.png deleted file mode 100644 index 97169b61a4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/7.png deleted file mode 100644 index 0f0e9eb080..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/78.png deleted file mode 100644 index c746585e2e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/8.png deleted file mode 100644 index b78fbcfbc9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/88.png deleted file mode 100644 index 34baf719a4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/89.png deleted file mode 100644 index fd0187363d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/9.png deleted file mode 100644 index a0865218cd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/90.png deleted file mode 100644 index a5313d1671..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/91.png deleted file mode 100644 index d5530df1f5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/92.png deleted file mode 100644 index fdbde7e5a7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/96.png deleted file mode 100644 index 780f1c40c0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedstickLong/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/1.png deleted file mode 100644 index 13d2c55013..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10022.png deleted file mode 100644 index b6e9c5e83e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10023.png deleted file mode 100644 index 98df7e19f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10024.png deleted file mode 100644 index a2c7ba9a6a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10053.png deleted file mode 100644 index 80afac425f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10082.png deleted file mode 100644 index a2d8b71e0a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10083.png deleted file mode 100644 index 9ed5c9dfd4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10084.png deleted file mode 100644 index 9ed5c9dfd4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10085.png deleted file mode 100644 index 5d6e0a1cee..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10096.png deleted file mode 100644 index 8977f6075f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10097.png deleted file mode 100644 index 1bcf7cc312..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10098.png deleted file mode 100644 index 372297db48..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10099.png deleted file mode 100644 index 16c3022d8f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10101.png deleted file mode 100644 index 5910132152..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10102.png deleted file mode 100644 index 4365fc34a5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10103.png deleted file mode 100644 index f6ba1c466b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10104.png deleted file mode 100644 index c2ae0411ef..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10105.png deleted file mode 100644 index 591148c55f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10106.png deleted file mode 100644 index 6784e43609..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10109.png deleted file mode 100644 index fa7d05c03a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10110.png deleted file mode 100644 index 00b2d68c5e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10111.png deleted file mode 100644 index 3f2b0ee8f2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10112.png deleted file mode 100644 index 62011ce67e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/104.png deleted file mode 100644 index 18464b9f58..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11000.png deleted file mode 100644 index 965571b521..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11007.png deleted file mode 100644 index fa24c0ef8a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11312.png deleted file mode 100644 index 86b1774ee4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11499.png deleted file mode 100644 index d538beece8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/19.png deleted file mode 100644 index 90d3b1b5f4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/20.png deleted file mode 100644 index 93f8dab055..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/21.png deleted file mode 100644 index ee610e7730..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/22.png deleted file mode 100644 index b0196f8df2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/23.png deleted file mode 100644 index ece2969e76..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/24.png deleted file mode 100644 index 2a0007f40b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/25.png deleted file mode 100644 index 97542e4f01..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/3.png deleted file mode 100644 index b7e7675d42..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/30.png deleted file mode 100644 index 07d48e1053..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/32237.png deleted file mode 100644 index 5ee8c45a28..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/35.png deleted file mode 100644 index 9a63db95c4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/36.png deleted file mode 100644 index b068d87506..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/39.png deleted file mode 100644 index 176ad51436..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/4.png deleted file mode 100644 index 2a0007f40b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/40.png deleted file mode 100644 index b60930b2e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/43.png deleted file mode 100644 index 73d28d5ea9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/5.png deleted file mode 100644 index 600649b076..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/64.png deleted file mode 100644 index d62c7cd702..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/7.png deleted file mode 100644 index bf2f590833..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/78.png deleted file mode 100644 index 278aae8bc0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/8.png deleted file mode 100644 index d5bd8643d3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/88.png deleted file mode 100644 index 0db0c49feb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/89.png deleted file mode 100644 index 97d29613bf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/9.png deleted file mode 100644 index 88dbde91fc..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/90.png deleted file mode 100644 index 07ac9e98f7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/91.png deleted file mode 100644 index a623469f4c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/92.png deleted file mode 100644 index 716f95ef41..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/96.png deleted file mode 100644 index 40615b46cb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadHammer/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/1.png deleted file mode 100644 index 9a61c06ce4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10022.png deleted file mode 100644 index 3dfd02f172..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10023.png deleted file mode 100644 index 786f93691f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10024.png deleted file mode 100644 index 0777ac211b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10053.png deleted file mode 100644 index 1e671f6dea..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10082.png deleted file mode 100644 index d1ef8e80ca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10083.png deleted file mode 100644 index 2c5685f607..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10084.png deleted file mode 100644 index 2c5685f607..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10085.png deleted file mode 100644 index f71589e7fd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10096.png deleted file mode 100644 index 077e8e3b62..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10097.png deleted file mode 100644 index 7efd3251e7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10098.png deleted file mode 100644 index f90399622e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10099.png deleted file mode 100644 index e045955877..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10101.png deleted file mode 100644 index ca5631a192..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10102.png deleted file mode 100644 index b5847c12db..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10103.png deleted file mode 100644 index 9384c1accd..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10104.png deleted file mode 100644 index 186bf5350f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10105.png deleted file mode 100644 index 7c68ae3f4a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10106.png deleted file mode 100644 index 8b8302f015..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10109.png deleted file mode 100644 index 80c5d919e5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10110.png deleted file mode 100644 index 45e682704b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10111.png deleted file mode 100644 index 39c2a4fa13..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10112.png deleted file mode 100644 index c6a0564ccb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/104.png deleted file mode 100644 index 006c4f84ff..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11000.png deleted file mode 100644 index 2236a8dbe2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11007.png deleted file mode 100644 index 38ddceb5a8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11312.png deleted file mode 100644 index b010cf8b97..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11499.png deleted file mode 100644 index 68380d91b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/19.png deleted file mode 100644 index b0ba45a9aa..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/20.png deleted file mode 100644 index ec4fba94f9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/21.png deleted file mode 100644 index 88ac246c0d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/22.png deleted file mode 100644 index 44a9909d61..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/23.png deleted file mode 100644 index f0e84c093f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/24.png deleted file mode 100644 index a0a74959d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/25.png deleted file mode 100644 index 30a5690144..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/3.png deleted file mode 100644 index fca50cb649..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/30.png deleted file mode 100644 index 0d9dcb9cab..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/32237.png deleted file mode 100644 index d1cd765461..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/35.png deleted file mode 100644 index 491a9bef50..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/36.png deleted file mode 100644 index 9bc97fb390..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/39.png deleted file mode 100644 index 7db3a7868e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/4.png deleted file mode 100644 index a0a74959d4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/40.png deleted file mode 100644 index 8cfbf96fbf..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/43.png deleted file mode 100644 index d9804f2e40..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/5.png deleted file mode 100644 index 3c1f374532..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/64.png deleted file mode 100644 index bc4d33aaeb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/7.png deleted file mode 100644 index c5b34f6232..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/78.png deleted file mode 100644 index 9e9745a4da..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/8.png deleted file mode 100644 index 0fe07e07e6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/88.png deleted file mode 100644 index d40849f120..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/89.png deleted file mode 100644 index dc9f21a510..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/9.png deleted file mode 100644 index 3f1ecfea54..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/90.png deleted file mode 100644 index 7419116132..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/91.png deleted file mode 100644 index aa627a1fb3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/92.png deleted file mode 100644 index ccfa092c02..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/96.png deleted file mode 100644 index dab58d5714..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadSaw/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/1.png deleted file mode 100644 index 7e00ca8dd1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10022.png deleted file mode 100644 index 22d6275c29..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10023.png deleted file mode 100644 index 7852ac8f8a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10024.png deleted file mode 100644 index 05e1e81182..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10053.png deleted file mode 100644 index 1ae59dade4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10082.png deleted file mode 100644 index f677215a88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10083.png deleted file mode 100644 index 9b7f5d797e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10084.png deleted file mode 100644 index 9b7f5d797e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10085.png deleted file mode 100644 index 80ef5604b2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10096.png deleted file mode 100644 index e43b52fa5a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10097.png deleted file mode 100644 index 93efadfae9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10098.png deleted file mode 100644 index 8a0a534172..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10099.png deleted file mode 100644 index c615375d9a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10101.png deleted file mode 100644 index 68e9e43163..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10102.png deleted file mode 100644 index a70adbe6d2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10103.png deleted file mode 100644 index 5d4984a5d3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10104.png deleted file mode 100644 index 270e8ac4d1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10105.png deleted file mode 100644 index 4b5519aaca..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10106.png deleted file mode 100644 index 1e40d21764..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10109.png deleted file mode 100644 index c95cd450d7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10110.png deleted file mode 100644 index 0dd2e6340f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10111.png deleted file mode 100644 index 3ec0ed5621..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10112.png deleted file mode 100644 index 2a2cd60d9a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/104.png deleted file mode 100644 index 2deb5f509e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11000.png deleted file mode 100644 index 77442e382c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11007.png deleted file mode 100644 index b878dff9b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11312.png deleted file mode 100644 index e771d2498d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11499.png deleted file mode 100644 index 513d706f49..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/19.png deleted file mode 100644 index 7147cd08f1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/20.png deleted file mode 100644 index db4dbeec8f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/21.png deleted file mode 100644 index 10b51730d7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/22.png deleted file mode 100644 index 585a3d37ba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/23.png deleted file mode 100644 index 99852bf557..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/24.png deleted file mode 100644 index ed84b9ea7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/25.png deleted file mode 100644 index d1730f58b4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/3.png deleted file mode 100644 index 278573daa7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/30.png deleted file mode 100644 index 07c8ec215c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/32237.png deleted file mode 100644 index 970b4b6fa5..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/35.png deleted file mode 100644 index d887752283..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/36.png deleted file mode 100644 index eb5f24baba..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/39.png deleted file mode 100644 index b6dd65c55b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/4.png deleted file mode 100644 index ed84b9ea7f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/40.png deleted file mode 100644 index b14b4aaf36..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/43.png deleted file mode 100644 index 1def7b6a76..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/5.png deleted file mode 100644 index 40552f5fc7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/64.png deleted file mode 100644 index 521b3f4c86..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/7.png deleted file mode 100644 index 92a92ccd88..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/78.png deleted file mode 100644 index ef45962142..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/8.png deleted file mode 100644 index 766aef3c30..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/88.png deleted file mode 100644 index 72bbe97cc0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/89.png deleted file mode 100644 index f509183f8c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/9.png deleted file mode 100644 index a6f9effb18..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/90.png deleted file mode 100644 index 9e7c4aa569..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/91.png deleted file mode 100644 index 9842d16dc4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/92.png deleted file mode 100644 index df6035964e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/96.png deleted file mode 100644 index a9a6f05e71..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedtoolHeadWrench/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/1.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/1.png deleted file mode 100644 index 68f4194230..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10022.png deleted file mode 100644 index aa2172785e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10023.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10023.png deleted file mode 100644 index 4ee87a462b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10023.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10024.png deleted file mode 100644 index 6f96551b12..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10053.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10053.png deleted file mode 100644 index b24015e2b1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10053.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10082.png deleted file mode 100644 index 7aa1e84776..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10083.png deleted file mode 100644 index eb252cac78..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10084.png deleted file mode 100644 index eb252cac78..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10085.png deleted file mode 100644 index 1d11ada0a3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10096.png deleted file mode 100644 index 88d7475a6e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10097.png deleted file mode 100644 index 7b70ec820a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10098.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10098.png deleted file mode 100644 index 188dfb033e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10098.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10099.png deleted file mode 100644 index f264cbccda..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10101.png deleted file mode 100644 index abb8004945..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10102.png deleted file mode 100644 index 4f7b4dddc4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10103.png deleted file mode 100644 index c20c164c73..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10104.png deleted file mode 100644 index 3a1098c633..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10105.png deleted file mode 100644 index cda2acbee0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10106.png deleted file mode 100644 index d318aaa102..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10109.png deleted file mode 100644 index e69293aef7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10110.png deleted file mode 100644 index 2266a2d6b9..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10111.png deleted file mode 100644 index d0efbad56b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10112.png deleted file mode 100644 index 5753e819b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/104.png deleted file mode 100644 index 42722d840f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11000.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11000.png deleted file mode 100644 index 8c72f5d262..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11000.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11007.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11007.png deleted file mode 100644 index a357054b3d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11007.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11312.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11312.png deleted file mode 100644 index b30108d7fb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11312.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11499.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11499.png deleted file mode 100644 index becc2ed59f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/11499.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/19.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/19.png deleted file mode 100644 index dcd98b6055..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/19.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/20.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/20.png deleted file mode 100644 index 0d5ecc417f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/20.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/21.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/21.png deleted file mode 100644 index 707326a10c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/21.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/22.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/22.png deleted file mode 100644 index d45c5906ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/22.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/23.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/23.png deleted file mode 100644 index 5eceb78bd2..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/23.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/24.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/24.png deleted file mode 100644 index fa222f77bb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/24.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/25.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/25.png deleted file mode 100644 index f259dc992c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/25.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/3.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/3.png deleted file mode 100644 index c25935fa9a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/3.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/30.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/30.png deleted file mode 100644 index cecada343d..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/30.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/32237.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/32237.png deleted file mode 100644 index a477b909b7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/32237.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/35.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/35.png deleted file mode 100644 index 8b380b466a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/35.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/36.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/36.png deleted file mode 100644 index 8c2a10fa05..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/36.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/39.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/39.png deleted file mode 100644 index 706998fe97..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/39.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/4.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/4.png deleted file mode 100644 index fa222f77bb..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/4.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/40.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/40.png deleted file mode 100644 index d3baa11691..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/40.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/43.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/43.png deleted file mode 100644 index facecc22b6..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/43.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/5.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/5.png deleted file mode 100644 index 3c391029b3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/5.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/64.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/64.png deleted file mode 100644 index 86c5629fe8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/64.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/7.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/7.png deleted file mode 100644 index 5aaf584b14..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/7.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/78.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/78.png deleted file mode 100644 index 5ee54910f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/78.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/8.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/8.png deleted file mode 100644 index b43453ac42..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/8.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/88.png deleted file mode 100644 index 148f2fc8be..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/89.png deleted file mode 100644 index 78de3d6a8a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/9.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/9.png deleted file mode 100644 index 5d3d402482..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/9.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/90.png deleted file mode 100644 index 0dafff5fc8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/91.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/91.png deleted file mode 100644 index e737df0449..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/91.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/92.png deleted file mode 100644 index 82440a1e5a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/96.png deleted file mode 100644 index 78ad5d7957..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedturbineBlade/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10022.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10022.png deleted file mode 100644 index e4daf83848..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10022.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10024.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10024.png deleted file mode 100644 index 027a2bbff4..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10024.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10082.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10082.png deleted file mode 100644 index 5f6d1769f8..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10082.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10083.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10083.png deleted file mode 100644 index d91f628f5c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10083.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10084.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10084.png deleted file mode 100644 index d91f628f5c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10084.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10085.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10085.png deleted file mode 100644 index 57d9f5f3ec..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10085.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10096.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10096.png deleted file mode 100644 index cfa93ce393..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10096.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10097.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10097.png deleted file mode 100644 index 0cb43ed4d3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10097.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10099.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10099.png deleted file mode 100644 index 3f12b5b13e..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10099.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10101.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10101.png deleted file mode 100644 index 35e4aedce7..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10101.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10102.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10102.png deleted file mode 100644 index 23944be79c..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10102.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10103.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10103.png deleted file mode 100644 index 803be65796..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10103.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10104.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10104.png deleted file mode 100644 index a75132c32a..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10104.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10105.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10105.png deleted file mode 100644 index 44d94a93b0..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10105.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10106.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10106.png deleted file mode 100644 index 1876e34424..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10106.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10109.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10109.png deleted file mode 100644 index 9fb1e447af..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10109.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10110.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10110.png deleted file mode 100644 index f5e540e36b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10110.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10111.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10111.png deleted file mode 100644 index a24c057334..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10111.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10112.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10112.png deleted file mode 100644 index 8961966186..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/10112.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/88.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/88.png deleted file mode 100644 index 0c4859b67f..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/88.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/89.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/89.png deleted file mode 100644 index 9fe5fe9cb1..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/89.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/90.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/90.png deleted file mode 100644 index b1f73ea6e3..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/90.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/92.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/92.png deleted file mode 100644 index e80eb62f3b..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/92.png and /dev/null differ diff --git a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/96.png b/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/96.png deleted file mode 100644 index 32ee8c1057..0000000000 Binary files a/front/public/images/small/bartworks/gt.bwMetaGeneratedwireFine/96.png and /dev/null differ diff --git a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_HV/1.png b/front/public/images/small/bartworks/item.GT_Rockcutter_Item_HV/1.png deleted file mode 100644 index 17cc2d1877..0000000000 Binary files a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_HV/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_HV/1027.png b/front/public/images/small/bartworks/item.GT_Rockcutter_Item_HV/1027.png deleted file mode 100644 index 17cc2d1877..0000000000 Binary files a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_HV/1027.png and /dev/null differ diff --git a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_LV/1.png b/front/public/images/small/bartworks/item.GT_Rockcutter_Item_LV/1.png deleted file mode 100644 index 17cc2d1877..0000000000 Binary files a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_LV/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_LV/37.png b/front/public/images/small/bartworks/item.GT_Rockcutter_Item_LV/37.png deleted file mode 100644 index 17cc2d1877..0000000000 Binary files a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_LV/37.png and /dev/null differ diff --git a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_MV/1.png b/front/public/images/small/bartworks/item.GT_Rockcutter_Item_MV/1.png deleted file mode 100644 index 17cc2d1877..0000000000 Binary files a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_MV/1.png and /dev/null differ diff --git a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_MV/127.png b/front/public/images/small/bartworks/item.GT_Rockcutter_Item_MV/127.png deleted file mode 100644 index 17cc2d1877..0000000000 Binary files a/front/public/images/small/bartworks/item.GT_Rockcutter_Item_MV/127.png and /dev/null differ diff --git a/front/public/images/small/bartworks/tabIconGT2/0.png b/front/public/images/small/bartworks/tabIconGT2/0.png deleted file mode 100644 index 9f6547480e..0000000000 Binary files a/front/public/images/small/bartworks/tabIconGT2/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/bow.diamond/0.png b/front/public/images/small/battlegear2/bow.diamond/0.png deleted file mode 100644 index 07e0e650d2..0000000000 Binary files a/front/public/images/small/battlegear2/bow.diamond/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/bow.iron/0.png b/front/public/images/small/battlegear2/bow.iron/0.png deleted file mode 100644 index 8d50a9c186..0000000000 Binary files a/front/public/images/small/battlegear2/bow.iron/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/chain/0.png b/front/public/images/small/battlegear2/chain/0.png deleted file mode 100644 index 87f1b2ed6b..0000000000 Binary files a/front/public/images/small/battlegear2/chain/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/dagger.diamond/0.png b/front/public/images/small/battlegear2/dagger.diamond/0.png deleted file mode 100644 index db5ad837d0..0000000000 Binary files a/front/public/images/small/battlegear2/dagger.diamond/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/dagger.gold/0.png b/front/public/images/small/battlegear2/dagger.gold/0.png deleted file mode 100644 index 2302152298..0000000000 Binary files a/front/public/images/small/battlegear2/dagger.gold/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/dagger.iron/0.png b/front/public/images/small/battlegear2/dagger.iron/0.png deleted file mode 100644 index f0ee5eef03..0000000000 Binary files a/front/public/images/small/battlegear2/dagger.iron/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/dagger.stone/0.png b/front/public/images/small/battlegear2/dagger.stone/0.png deleted file mode 100644 index 7f0741f866..0000000000 Binary files a/front/public/images/small/battlegear2/dagger.stone/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/dagger.wood/0.png b/front/public/images/small/battlegear2/dagger.wood/0.png deleted file mode 100644 index 642fb465d0..0000000000 Binary files a/front/public/images/small/battlegear2/dagger.wood/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/flagpole/0.png b/front/public/images/small/battlegear2/flagpole/0.png deleted file mode 100644 index b3b68ee6da..0000000000 Binary files a/front/public/images/small/battlegear2/flagpole/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/flagpole/1.png b/front/public/images/small/battlegear2/flagpole/1.png deleted file mode 100644 index f3ed54a334..0000000000 Binary files a/front/public/images/small/battlegear2/flagpole/1.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/flagpole/2.png b/front/public/images/small/battlegear2/flagpole/2.png deleted file mode 100644 index 8a2ea84cc0..0000000000 Binary files a/front/public/images/small/battlegear2/flagpole/2.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/flagpole/3.png b/front/public/images/small/battlegear2/flagpole/3.png deleted file mode 100644 index 4541f01ef1..0000000000 Binary files a/front/public/images/small/battlegear2/flagpole/3.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/flagpole/4.png b/front/public/images/small/battlegear2/flagpole/4.png deleted file mode 100644 index 1213d3d34e..0000000000 Binary files a/front/public/images/small/battlegear2/flagpole/4.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/flagpole/5.png b/front/public/images/small/battlegear2/flagpole/5.png deleted file mode 100644 index d446f57515..0000000000 Binary files a/front/public/images/small/battlegear2/flagpole/5.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/flagpole/6.png b/front/public/images/small/battlegear2/flagpole/6.png deleted file mode 100644 index d7d6745930..0000000000 Binary files a/front/public/images/small/battlegear2/flagpole/6.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/heraldric/0.png b/front/public/images/small/battlegear2/heraldric/0.png deleted file mode 100644 index 0a0e3029db..0000000000 Binary files a/front/public/images/small/battlegear2/heraldric/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/knights_armour.boots/0.png b/front/public/images/small/battlegear2/knights_armour.boots/0.png deleted file mode 100644 index f8a0a294b7..0000000000 Binary files a/front/public/images/small/battlegear2/knights_armour.boots/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/knights_armour.helmet/0.png b/front/public/images/small/battlegear2/knights_armour.helmet/0.png deleted file mode 100644 index 6798c8beab..0000000000 Binary files a/front/public/images/small/battlegear2/knights_armour.helmet/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/knights_armour.legs/0.png b/front/public/images/small/battlegear2/knights_armour.legs/0.png deleted file mode 100644 index 9a89202845..0000000000 Binary files a/front/public/images/small/battlegear2/knights_armour.legs/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/knights_armour.plate/0.png b/front/public/images/small/battlegear2/knights_armour.plate/0.png deleted file mode 100644 index 4cb8801cee..0000000000 Binary files a/front/public/images/small/battlegear2/knights_armour.plate/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mace.diamond/0.png b/front/public/images/small/battlegear2/mace.diamond/0.png deleted file mode 100644 index e9d46c7a76..0000000000 Binary files a/front/public/images/small/battlegear2/mace.diamond/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mace.gold/0.png b/front/public/images/small/battlegear2/mace.gold/0.png deleted file mode 100644 index c0e2b1cec3..0000000000 Binary files a/front/public/images/small/battlegear2/mace.gold/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mace.iron/0.png b/front/public/images/small/battlegear2/mace.iron/0.png deleted file mode 100644 index ba553b9a4b..0000000000 Binary files a/front/public/images/small/battlegear2/mace.iron/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mace.stone/0.png b/front/public/images/small/battlegear2/mace.stone/0.png deleted file mode 100644 index 1171c7454d..0000000000 Binary files a/front/public/images/small/battlegear2/mace.stone/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mace.wood/0.png b/front/public/images/small/battlegear2/mace.wood/0.png deleted file mode 100644 index 1af371dcb2..0000000000 Binary files a/front/public/images/small/battlegear2/mace.wood/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/0.png b/front/public/images/small/battlegear2/mb.arrow/0.png deleted file mode 100644 index 8d4f97bcc5..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/1.png b/front/public/images/small/battlegear2/mb.arrow/1.png deleted file mode 100644 index dfe92f8384..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/1.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/2.png b/front/public/images/small/battlegear2/mb.arrow/2.png deleted file mode 100644 index b16c302f50..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/2.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/3.png b/front/public/images/small/battlegear2/mb.arrow/3.png deleted file mode 100644 index 4a216f0bcf..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/3.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/4.png b/front/public/images/small/battlegear2/mb.arrow/4.png deleted file mode 100644 index 9d220abe29..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/4.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/5.png b/front/public/images/small/battlegear2/mb.arrow/5.png deleted file mode 100644 index 66fb7c4406..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/5.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/6.png b/front/public/images/small/battlegear2/mb.arrow/6.png deleted file mode 100644 index 5144c1ef24..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/6.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/7.png b/front/public/images/small/battlegear2/mb.arrow/7.png deleted file mode 100644 index 238266af42..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/7.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/mb.arrow/8.png b/front/public/images/small/battlegear2/mb.arrow/8.png deleted file mode 100644 index 15f3292edf..0000000000 Binary files a/front/public/images/small/battlegear2/mb.arrow/8.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/quiver/0.png b/front/public/images/small/battlegear2/quiver/0.png deleted file mode 100644 index 7bc1858b4e..0000000000 Binary files a/front/public/images/small/battlegear2/quiver/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/shield.diamond/0.png b/front/public/images/small/battlegear2/shield.diamond/0.png deleted file mode 100644 index cb201ed630..0000000000 Binary files a/front/public/images/small/battlegear2/shield.diamond/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/shield.gold/0.png b/front/public/images/small/battlegear2/shield.gold/0.png deleted file mode 100644 index 9f18ee8f83..0000000000 Binary files a/front/public/images/small/battlegear2/shield.gold/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/shield.hide/0.png b/front/public/images/small/battlegear2/shield.hide/0.png deleted file mode 100644 index f2957d49de..0000000000 Binary files a/front/public/images/small/battlegear2/shield.hide/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/shield.iron/0.png b/front/public/images/small/battlegear2/shield.iron/0.png deleted file mode 100644 index 5f379fed76..0000000000 Binary files a/front/public/images/small/battlegear2/shield.iron/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/shield.wood/0.png b/front/public/images/small/battlegear2/shield.wood/0.png deleted file mode 100644 index 18a6a8d009..0000000000 Binary files a/front/public/images/small/battlegear2/shield.wood/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/spear.diamond/0.png b/front/public/images/small/battlegear2/spear.diamond/0.png deleted file mode 100644 index 3637cf088c..0000000000 Binary files a/front/public/images/small/battlegear2/spear.diamond/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/spear.gold/0.png b/front/public/images/small/battlegear2/spear.gold/0.png deleted file mode 100644 index b7a3461099..0000000000 Binary files a/front/public/images/small/battlegear2/spear.gold/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/spear.iron/0.png b/front/public/images/small/battlegear2/spear.iron/0.png deleted file mode 100644 index 331aab0a33..0000000000 Binary files a/front/public/images/small/battlegear2/spear.iron/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/spear.stone/0.png b/front/public/images/small/battlegear2/spear.stone/0.png deleted file mode 100644 index ae8af17cdf..0000000000 Binary files a/front/public/images/small/battlegear2/spear.stone/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/spear.wood/0.png b/front/public/images/small/battlegear2/spear.wood/0.png deleted file mode 100644 index 43f15b3326..0000000000 Binary files a/front/public/images/small/battlegear2/spear.wood/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/waraxe.diamond/0.png b/front/public/images/small/battlegear2/waraxe.diamond/0.png deleted file mode 100644 index 404844d55c..0000000000 Binary files a/front/public/images/small/battlegear2/waraxe.diamond/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/waraxe.gold/0.png b/front/public/images/small/battlegear2/waraxe.gold/0.png deleted file mode 100644 index b239d51adf..0000000000 Binary files a/front/public/images/small/battlegear2/waraxe.gold/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/waraxe.iron/0.png b/front/public/images/small/battlegear2/waraxe.iron/0.png deleted file mode 100644 index 0f5d9cb4e7..0000000000 Binary files a/front/public/images/small/battlegear2/waraxe.iron/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/waraxe.stone/0.png b/front/public/images/small/battlegear2/waraxe.stone/0.png deleted file mode 100644 index 872ed5c3d4..0000000000 Binary files a/front/public/images/small/battlegear2/waraxe.stone/0.png and /dev/null differ diff --git a/front/public/images/small/battlegear2/waraxe.wood/0.png b/front/public/images/small/battlegear2/waraxe.wood/0.png deleted file mode 100644 index 55be092398..0000000000 Binary files a/front/public/images/small/battlegear2/waraxe.wood/0.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/0.png b/front/public/images/small/berriespp/BppPotions/0.png deleted file mode 100644 index c2868d203e..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/0.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/1.png b/front/public/images/small/berriespp/BppPotions/1.png deleted file mode 100644 index d2cd7da94a..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/1.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/2.png b/front/public/images/small/berriespp/BppPotions/2.png deleted file mode 100644 index d2cd7da94a..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/2.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/3.png b/front/public/images/small/berriespp/BppPotions/3.png deleted file mode 100644 index c2868d203e..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/3.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/4.png b/front/public/images/small/berriespp/BppPotions/4.png deleted file mode 100644 index d2cd7da94a..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/4.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/5.png b/front/public/images/small/berriespp/BppPotions/5.png deleted file mode 100644 index 5f0598624d..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/5.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/6.png b/front/public/images/small/berriespp/BppPotions/6.png deleted file mode 100644 index c2868d203e..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/6.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/7.png b/front/public/images/small/berriespp/BppPotions/7.png deleted file mode 100644 index d2cd7da94a..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/7.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/8.png b/front/public/images/small/berriespp/BppPotions/8.png deleted file mode 100644 index 0b3c62f522..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/8.png and /dev/null differ diff --git a/front/public/images/small/berriespp/BppPotions/9.png b/front/public/images/small/berriespp/BppPotions/9.png deleted file mode 100644 index 0b3c62f522..0000000000 Binary files a/front/public/images/small/berriespp/BppPotions/9.png and /dev/null differ diff --git a/front/public/images/small/berriespp/Modifier/0.png b/front/public/images/small/berriespp/Modifier/0.png deleted file mode 100644 index 7ac7365a7d..0000000000 Binary files a/front/public/images/small/berriespp/Modifier/0.png and /dev/null differ diff --git a/front/public/images/small/berriespp/Modifier/1.png b/front/public/images/small/berriespp/Modifier/1.png deleted file mode 100644 index b6fc7e851c..0000000000 Binary files a/front/public/images/small/berriespp/Modifier/1.png and /dev/null differ diff --git a/front/public/images/small/berriespp/Modifier/2.png b/front/public/images/small/berriespp/Modifier/2.png deleted file mode 100644 index 39f49e9e0b..0000000000 Binary files a/front/public/images/small/berriespp/Modifier/2.png and /dev/null differ diff --git a/front/public/images/small/berriespp/foodBerries/0.png b/front/public/images/small/berriespp/foodBerries/0.png deleted file mode 100644 index 16d1d41e6f..0000000000 Binary files a/front/public/images/small/berriespp/foodBerries/0.png and /dev/null differ diff --git a/front/public/images/small/berriespp/foodBerries/1.png b/front/public/images/small/berriespp/foodBerries/1.png deleted file mode 100644 index 38cbbd384a..0000000000 Binary files a/front/public/images/small/berriespp/foodBerries/1.png and /dev/null differ diff --git a/front/public/images/small/berriespp/foodGoldfish/0.png b/front/public/images/small/berriespp/foodGoldfish/0.png deleted file mode 100644 index 1ddc57d128..0000000000 Binary files a/front/public/images/small/berriespp/foodGoldfish/0.png and /dev/null differ diff --git a/front/public/images/small/berriespp/itemLens/0.png b/front/public/images/small/berriespp/itemLens/0.png deleted file mode 100644 index b1b9b04382..0000000000 Binary files a/front/public/images/small/berriespp/itemLens/0.png and /dev/null differ diff --git a/front/public/images/small/berriespp/itemSpade/0.png b/front/public/images/small/berriespp/itemSpade/0.png deleted file mode 100644 index 5980e5ea5b..0000000000 Binary files a/front/public/images/small/berriespp/itemSpade/0.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandDiamond/0.png b/front/public/images/small/betterbuilderswands/wandDiamond/0.png deleted file mode 100644 index f99afdf78d..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandIron/0.png b/front/public/images/small/betterbuilderswands/wandIron/0.png deleted file mode 100644 index f6468f7a54..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandIron/0.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandStone/0.png b/front/public/images/small/betterbuilderswands/wandStone/0.png deleted file mode 100644 index 1c2f7a676a..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandStone/0.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandUnbreakable/12.png b/front/public/images/small/betterbuilderswands/wandUnbreakable/12.png deleted file mode 100644 index cb91535f71..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandUnbreakable/12.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandUnbreakable/13.png b/front/public/images/small/betterbuilderswands/wandUnbreakable/13.png deleted file mode 100644 index cb91535f71..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandUnbreakable/13.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandUnbreakable/14.png b/front/public/images/small/betterbuilderswands/wandUnbreakable/14.png deleted file mode 100644 index cb91535f71..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandUnbreakable/14.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandUnbreakable/4.png b/front/public/images/small/betterbuilderswands/wandUnbreakable/4.png deleted file mode 100644 index cb91535f71..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandUnbreakable/4.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandUnbreakable/5.png b/front/public/images/small/betterbuilderswands/wandUnbreakable/5.png deleted file mode 100644 index cb91535f71..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandUnbreakable/5.png and /dev/null differ diff --git a/front/public/images/small/betterbuilderswands/wandUnbreakable/6.png b/front/public/images/small/betterbuilderswands/wandUnbreakable/6.png deleted file mode 100644 index cb91535f71..0000000000 Binary files a/front/public/images/small/betterbuilderswands/wandUnbreakable/6.png and /dev/null differ diff --git a/front/public/images/small/betterp2p/advanced_memory_card/0.png b/front/public/images/small/betterp2p/advanced_memory_card/0.png deleted file mode 100644 index f1c939aec2..0000000000 Binary files a/front/public/images/small/betterp2p/advanced_memory_card/0.png and /dev/null differ diff --git a/front/public/images/small/betterquesting/extra_life/0.png b/front/public/images/small/betterquesting/extra_life/0.png deleted file mode 100644 index f7220865c5..0000000000 Binary files a/front/public/images/small/betterquesting/extra_life/0.png and /dev/null differ diff --git a/front/public/images/small/betterquesting/extra_life/1.png b/front/public/images/small/betterquesting/extra_life/1.png deleted file mode 100644 index 88a3e65ea8..0000000000 Binary files a/front/public/images/small/betterquesting/extra_life/1.png and /dev/null differ diff --git a/front/public/images/small/betterquesting/extra_life/2.png b/front/public/images/small/betterquesting/extra_life/2.png deleted file mode 100644 index 15160bf074..0000000000 Binary files a/front/public/images/small/betterquesting/extra_life/2.png and /dev/null differ diff --git a/front/public/images/small/betterquesting/guide_book/0.png b/front/public/images/small/betterquesting/guide_book/0.png deleted file mode 100644 index a6f17f2f96..0000000000 Binary files a/front/public/images/small/betterquesting/guide_book/0.png and /dev/null differ diff --git a/front/public/images/small/betterquesting/observation_station/0.png b/front/public/images/small/betterquesting/observation_station/0.png deleted file mode 100644 index c7566f97bf..0000000000 Binary files a/front/public/images/small/betterquesting/observation_station/0.png and /dev/null differ diff --git a/front/public/images/small/betterquesting/placeholder/0.png b/front/public/images/small/betterquesting/placeholder/0.png deleted file mode 100644 index 14e7cd4545..0000000000 Binary files a/front/public/images/small/betterquesting/placeholder/0.png and /dev/null differ diff --git a/front/public/images/small/betterquesting/submit_station/0.png b/front/public/images/small/betterquesting/submit_station/0.png deleted file mode 100644 index 750428afc0..0000000000 Binary files a/front/public/images/small/betterquesting/submit_station/0.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/0.png b/front/public/images/small/bq_standard/loot_chest/0.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/0.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/100.png b/front/public/images/small/bq_standard/loot_chest/100.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/100.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/101.png b/front/public/images/small/bq_standard/loot_chest/101.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/101.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/102.png b/front/public/images/small/bq_standard/loot_chest/102.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/102.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/103.png b/front/public/images/small/bq_standard/loot_chest/103.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/103.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/104.png b/front/public/images/small/bq_standard/loot_chest/104.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/104.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/25.png b/front/public/images/small/bq_standard/loot_chest/25.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/25.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/50.png b/front/public/images/small/bq_standard/loot_chest/50.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/50.png and /dev/null differ diff --git a/front/public/images/small/bq_standard/loot_chest/75.png b/front/public/images/small/bq_standard/loot_chest/75.png deleted file mode 100644 index 7eb6bf6a18..0000000000 Binary files a/front/public/images/small/bq_standard/loot_chest/75.png and /dev/null differ diff --git a/front/public/images/small/catwalks/blowtorch/0.png b/front/public/images/small/catwalks/blowtorch/0.png deleted file mode 100644 index 905fe6f1fd..0000000000 Binary files a/front/public/images/small/catwalks/blowtorch/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_lit/0.png b/front/public/images/small/catwalks/cagedLadder_east_lit/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_lit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_lit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_east_lit_nobottom/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_lit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_east_lit_nobottom_tape/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_lit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_east_lit_tape/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_unlit/0.png b/front/public/images/small/catwalks/cagedLadder_east_unlit/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_unlit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_unlit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_east_unlit_nobottom/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_unlit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_east_unlit_nobottom_tape/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_east_unlit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_east_unlit_tape/0.png deleted file mode 100644 index 1b942e1d44..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_east_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_lit/0.png b/front/public/images/small/catwalks/cagedLadder_north_lit/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_lit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_lit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_north_lit_nobottom/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_lit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_north_lit_nobottom_tape/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_lit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_north_lit_tape/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_unlit/0.png b/front/public/images/small/catwalks/cagedLadder_north_unlit/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_unlit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_unlit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_north_unlit_nobottom/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_unlit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_north_unlit_nobottom_tape/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_north_unlit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_north_unlit_tape/0.png deleted file mode 100644 index 6a8aa8e512..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_north_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_lit/0.png b/front/public/images/small/catwalks/cagedLadder_south_lit/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_lit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_lit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_south_lit_nobottom/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_lit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_south_lit_nobottom_tape/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_lit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_south_lit_tape/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_unlit/0.png b/front/public/images/small/catwalks/cagedLadder_south_unlit/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_unlit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_unlit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_south_unlit_nobottom/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_unlit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_south_unlit_nobottom_tape/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_south_unlit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_south_unlit_tape/0.png deleted file mode 100644 index 811160cff6..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_south_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_lit/0.png b/front/public/images/small/catwalks/cagedLadder_west_lit/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_lit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_lit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_west_lit_nobottom/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_lit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_west_lit_nobottom_tape/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_lit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_west_lit_tape/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_unlit/0.png b/front/public/images/small/catwalks/cagedLadder_west_unlit/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_unlit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_unlit_nobottom/0.png b/front/public/images/small/catwalks/cagedLadder_west_unlit_nobottom/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_unlit_nobottom_tape/0.png b/front/public/images/small/catwalks/cagedLadder_west_unlit_nobottom_tape/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cagedLadder_west_unlit_tape/0.png b/front/public/images/small/catwalks/cagedLadder_west_unlit_tape/0.png deleted file mode 100644 index 32b0d6c562..0000000000 Binary files a/front/public/images/small/catwalks/cagedLadder_west_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_lit/0.png b/front/public/images/small/catwalks/catwalk_lit/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_lit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_lit_nobottom/0.png b/front/public/images/small/catwalks/catwalk_lit_nobottom/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_lit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_lit_nobottom_tape/0.png b/front/public/images/small/catwalks/catwalk_lit_nobottom_tape/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_lit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_lit_tape/0.png b/front/public/images/small/catwalks/catwalk_lit_tape/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_lit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_unlit/0.png b/front/public/images/small/catwalks/catwalk_unlit/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_unlit/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_unlit_nobottom/0.png b/front/public/images/small/catwalks/catwalk_unlit_nobottom/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_unlit_nobottom/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_unlit_nobottom_tape/0.png b/front/public/images/small/catwalks/catwalk_unlit_nobottom_tape/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_unlit_nobottom_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/catwalk_unlit_tape/0.png b/front/public/images/small/catwalks/catwalk_unlit_tape/0.png deleted file mode 100644 index 843d018204..0000000000 Binary files a/front/public/images/small/catwalks/catwalk_unlit_tape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/cautionTape/0.png b/front/public/images/small/catwalks/cautionTape/0.png deleted file mode 100644 index d43f563fe6..0000000000 Binary files a/front/public/images/small/catwalks/cautionTape/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/ropeLight/0.png b/front/public/images/small/catwalks/ropeLight/0.png deleted file mode 100644 index 854a4670df..0000000000 Binary files a/front/public/images/small/catwalks/ropeLight/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/scaffold/0.png b/front/public/images/small/catwalks/scaffold/0.png deleted file mode 100644 index 4a77fc492f..0000000000 Binary files a/front/public/images/small/catwalks/scaffold/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/scaffold/1.png b/front/public/images/small/catwalks/scaffold/1.png deleted file mode 100644 index ebd9b15345..0000000000 Binary files a/front/public/images/small/catwalks/scaffold/1.png and /dev/null differ diff --git a/front/public/images/small/catwalks/steelgrate/0.png b/front/public/images/small/catwalks/steelgrate/0.png deleted file mode 100644 index 70b22233dd..0000000000 Binary files a/front/public/images/small/catwalks/steelgrate/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/sturdy_rail/0.png b/front/public/images/small/catwalks/sturdy_rail/0.png deleted file mode 100644 index 932789edbe..0000000000 Binary files a/front/public/images/small/catwalks/sturdy_rail/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/sturdy_rail_activator/0.png b/front/public/images/small/catwalks/sturdy_rail_activator/0.png deleted file mode 100644 index 45c1f6d3bd..0000000000 Binary files a/front/public/images/small/catwalks/sturdy_rail_activator/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/sturdy_rail_detector/0.png b/front/public/images/small/catwalks/sturdy_rail_detector/0.png deleted file mode 100644 index 8d085f6a7e..0000000000 Binary files a/front/public/images/small/catwalks/sturdy_rail_detector/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/sturdy_rail_powered/0.png b/front/public/images/small/catwalks/sturdy_rail_powered/0.png deleted file mode 100644 index 3c4736443a..0000000000 Binary files a/front/public/images/small/catwalks/sturdy_rail_powered/0.png and /dev/null differ diff --git a/front/public/images/small/catwalks/support_column/0.png b/front/public/images/small/catwalks/support_column/0.png deleted file mode 100644 index 2ff920e3ce..0000000000 Binary files a/front/public/images/small/catwalks/support_column/0.png and /dev/null differ diff --git a/front/public/images/small/cb4bq/BlockDLB/0.png b/front/public/images/small/cb4bq/BlockDLB/0.png deleted file mode 100644 index d977a4be5a..0000000000 Binary files a/front/public/images/small/cb4bq/BlockDLB/0.png and /dev/null differ diff --git a/front/public/images/small/cb4bq/BlockHSB/0.png b/front/public/images/small/cb4bq/BlockHSB/0.png deleted file mode 100644 index d977a4be5a..0000000000 Binary files a/front/public/images/small/cb4bq/BlockHSB/0.png and /dev/null differ diff --git a/front/public/images/small/cb4bq/BlockREB/0.png b/front/public/images/small/cb4bq/BlockREB/0.png deleted file mode 100644 index d977a4be5a..0000000000 Binary files a/front/public/images/small/cb4bq/BlockREB/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/1.png b/front/public/images/small/chisel/acacia_planks/1.png deleted file mode 100644 index 98cf917aae..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/10.png b/front/public/images/small/chisel/acacia_planks/10.png deleted file mode 100644 index 456b533558..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/11.png b/front/public/images/small/chisel/acacia_planks/11.png deleted file mode 100644 index ecb3f86050..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/12.png b/front/public/images/small/chisel/acacia_planks/12.png deleted file mode 100644 index acd92270d0..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/13.png b/front/public/images/small/chisel/acacia_planks/13.png deleted file mode 100644 index add2c798b6..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/14.png b/front/public/images/small/chisel/acacia_planks/14.png deleted file mode 100644 index 89aac9ecc3..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/15.png b/front/public/images/small/chisel/acacia_planks/15.png deleted file mode 100644 index d36e9100c7..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/2.png b/front/public/images/small/chisel/acacia_planks/2.png deleted file mode 100644 index c00fe15a38..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/3.png b/front/public/images/small/chisel/acacia_planks/3.png deleted file mode 100644 index 737ed7aaed..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/4.png b/front/public/images/small/chisel/acacia_planks/4.png deleted file mode 100644 index ecbccc9f6d..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/5.png b/front/public/images/small/chisel/acacia_planks/5.png deleted file mode 100644 index f95a55a7f3..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/6.png b/front/public/images/small/chisel/acacia_planks/6.png deleted file mode 100644 index beb579ee2d..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/7.png b/front/public/images/small/chisel/acacia_planks/7.png deleted file mode 100644 index 39a7368376..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/8.png b/front/public/images/small/chisel/acacia_planks/8.png deleted file mode 100644 index db272eb1d6..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/acacia_planks/9.png b/front/public/images/small/chisel/acacia_planks/9.png deleted file mode 100644 index ffac68f7d9..0000000000 Binary files a/front/public/images/small/chisel/acacia_planks/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminum_stairs.0/0.png b/front/public/images/small/chisel/aluminum_stairs.0/0.png deleted file mode 100644 index fcd7197aff..0000000000 Binary files a/front/public/images/small/chisel/aluminum_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminum_stairs.0/8.png b/front/public/images/small/chisel/aluminum_stairs.0/8.png deleted file mode 100644 index fde913fe7e..0000000000 Binary files a/front/public/images/small/chisel/aluminum_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminum_stairs.1/0.png b/front/public/images/small/chisel/aluminum_stairs.1/0.png deleted file mode 100644 index cc7c69f625..0000000000 Binary files a/front/public/images/small/chisel/aluminum_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminum_stairs.1/8.png b/front/public/images/small/chisel/aluminum_stairs.1/8.png deleted file mode 100644 index 51e1e732e1..0000000000 Binary files a/front/public/images/small/chisel/aluminum_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminum_stairs.2/0.png b/front/public/images/small/chisel/aluminum_stairs.2/0.png deleted file mode 100644 index 51e7f6ded3..0000000000 Binary files a/front/public/images/small/chisel/aluminum_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminum_stairs.2/8.png b/front/public/images/small/chisel/aluminum_stairs.2/8.png deleted file mode 100644 index 9b597322d7..0000000000 Binary files a/front/public/images/small/chisel/aluminum_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminumblock/0.png b/front/public/images/small/chisel/aluminumblock/0.png deleted file mode 100644 index 1534395640..0000000000 Binary files a/front/public/images/small/chisel/aluminumblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminumblock/1.png b/front/public/images/small/chisel/aluminumblock/1.png deleted file mode 100644 index 07f2f78004..0000000000 Binary files a/front/public/images/small/chisel/aluminumblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminumblock/2.png b/front/public/images/small/chisel/aluminumblock/2.png deleted file mode 100644 index 1e4ac8fc2f..0000000000 Binary files a/front/public/images/small/chisel/aluminumblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminumblock/3.png b/front/public/images/small/chisel/aluminumblock/3.png deleted file mode 100644 index 6bfbdda1f2..0000000000 Binary files a/front/public/images/small/chisel/aluminumblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminumblock/4.png b/front/public/images/small/chisel/aluminumblock/4.png deleted file mode 100644 index e9d7179f54..0000000000 Binary files a/front/public/images/small/chisel/aluminumblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/aluminumblock/5.png b/front/public/images/small/chisel/aluminumblock/5.png deleted file mode 100644 index 1acbdc0d59..0000000000 Binary files a/front/public/images/small/chisel/aluminumblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/amber/0.png b/front/public/images/small/chisel/amber/0.png deleted file mode 100644 index da2353ede6..0000000000 Binary files a/front/public/images/small/chisel/amber/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/andesite/0.png b/front/public/images/small/chisel/andesite/0.png deleted file mode 100644 index 8ec9141ac7..0000000000 Binary files a/front/public/images/small/chisel/andesite/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/andesite/1.png b/front/public/images/small/chisel/andesite/1.png deleted file mode 100644 index 3fb632604e..0000000000 Binary files a/front/public/images/small/chisel/andesite/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/andesite/2.png b/front/public/images/small/chisel/andesite/2.png deleted file mode 100644 index a2069fb6db..0000000000 Binary files a/front/public/images/small/chisel/andesite/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/andesite/3.png b/front/public/images/small/chisel/andesite/3.png deleted file mode 100644 index 68d0eda385..0000000000 Binary files a/front/public/images/small/chisel/andesite/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/andesite/4.png b/front/public/images/small/chisel/andesite/4.png deleted file mode 100644 index d8bdb20fc3..0000000000 Binary files a/front/public/images/small/chisel/andesite/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/andesite/5.png b/front/public/images/small/chisel/andesite/5.png deleted file mode 100644 index 0cf5e08a0c..0000000000 Binary files a/front/public/images/small/chisel/andesite/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/andesite/6.png b/front/public/images/small/chisel/andesite/6.png deleted file mode 100644 index 1f47cb968c..0000000000 Binary files a/front/public/images/small/chisel/andesite/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/0.png b/front/public/images/small/chisel/antiBlock/0.png deleted file mode 100644 index 9b4c405310..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/1.png b/front/public/images/small/chisel/antiBlock/1.png deleted file mode 100644 index 7bffa8e40a..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/10.png b/front/public/images/small/chisel/antiBlock/10.png deleted file mode 100644 index c985040f6c..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/11.png b/front/public/images/small/chisel/antiBlock/11.png deleted file mode 100644 index 85423adc1d..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/12.png b/front/public/images/small/chisel/antiBlock/12.png deleted file mode 100644 index 45a796acfc..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/13.png b/front/public/images/small/chisel/antiBlock/13.png deleted file mode 100644 index 586b1373a6..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/14.png b/front/public/images/small/chisel/antiBlock/14.png deleted file mode 100644 index 99cfe248e1..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/15.png b/front/public/images/small/chisel/antiBlock/15.png deleted file mode 100644 index 833a4ba0c6..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/2.png b/front/public/images/small/chisel/antiBlock/2.png deleted file mode 100644 index cc2268a9cb..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/3.png b/front/public/images/small/chisel/antiBlock/3.png deleted file mode 100644 index a7617eb054..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/4.png b/front/public/images/small/chisel/antiBlock/4.png deleted file mode 100644 index 12ab0ff16b..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/5.png b/front/public/images/small/chisel/antiBlock/5.png deleted file mode 100644 index ce3d2a7f1d..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/6.png b/front/public/images/small/chisel/antiBlock/6.png deleted file mode 100644 index f849c358c8..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/7.png b/front/public/images/small/chisel/antiBlock/7.png deleted file mode 100644 index 62e19fe790..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/8.png b/front/public/images/small/chisel/antiBlock/8.png deleted file mode 100644 index c70219c9d0..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/antiBlock/9.png b/front/public/images/small/chisel/antiBlock/9.png deleted file mode 100644 index f766ae5dae..0000000000 Binary files a/front/public/images/small/chisel/antiBlock/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/0.png b/front/public/images/small/chisel/arcane/0.png deleted file mode 100644 index 6a45dd563f..0000000000 Binary files a/front/public/images/small/chisel/arcane/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/1.png b/front/public/images/small/chisel/arcane/1.png deleted file mode 100644 index 798b085f9c..0000000000 Binary files a/front/public/images/small/chisel/arcane/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/10.png b/front/public/images/small/chisel/arcane/10.png deleted file mode 100644 index 08ee84709d..0000000000 Binary files a/front/public/images/small/chisel/arcane/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/11.png b/front/public/images/small/chisel/arcane/11.png deleted file mode 100644 index cdc45413ec..0000000000 Binary files a/front/public/images/small/chisel/arcane/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/2.png b/front/public/images/small/chisel/arcane/2.png deleted file mode 100644 index 59e3db27d4..0000000000 Binary files a/front/public/images/small/chisel/arcane/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/3.png b/front/public/images/small/chisel/arcane/3.png deleted file mode 100644 index 6cbb0d323f..0000000000 Binary files a/front/public/images/small/chisel/arcane/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/4.png b/front/public/images/small/chisel/arcane/4.png deleted file mode 100644 index d1a1d79818..0000000000 Binary files a/front/public/images/small/chisel/arcane/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/5.png b/front/public/images/small/chisel/arcane/5.png deleted file mode 100644 index b599313e3b..0000000000 Binary files a/front/public/images/small/chisel/arcane/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/6.png b/front/public/images/small/chisel/arcane/6.png deleted file mode 100644 index 38049a7ebd..0000000000 Binary files a/front/public/images/small/chisel/arcane/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/7.png b/front/public/images/small/chisel/arcane/7.png deleted file mode 100644 index 4ca6497a04..0000000000 Binary files a/front/public/images/small/chisel/arcane/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/8.png b/front/public/images/small/chisel/arcane/8.png deleted file mode 100644 index c0c9a065b4..0000000000 Binary files a/front/public/images/small/chisel/arcane/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/arcane/9.png b/front/public/images/small/chisel/arcane/9.png deleted file mode 100644 index a9890ecdb4..0000000000 Binary files a/front/public/images/small/chisel/arcane/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/autoChisel/0.png b/front/public/images/small/chisel/autoChisel/0.png deleted file mode 100644 index bb60f7bede..0000000000 Binary files a/front/public/images/small/chisel/autoChisel/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ballomoss/0.png b/front/public/images/small/chisel/ballomoss/0.png deleted file mode 100644 index 027c093b36..0000000000 Binary files a/front/public/images/small/chisel/ballomoss/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/0.png b/front/public/images/small/chisel/beacon/0.png deleted file mode 100644 index b10187cfb1..0000000000 Binary files a/front/public/images/small/chisel/beacon/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/1.png b/front/public/images/small/chisel/beacon/1.png deleted file mode 100644 index 4b5c7f976f..0000000000 Binary files a/front/public/images/small/chisel/beacon/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/10.png b/front/public/images/small/chisel/beacon/10.png deleted file mode 100644 index c209d12617..0000000000 Binary files a/front/public/images/small/chisel/beacon/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/11.png b/front/public/images/small/chisel/beacon/11.png deleted file mode 100644 index b7a5431279..0000000000 Binary files a/front/public/images/small/chisel/beacon/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/12.png b/front/public/images/small/chisel/beacon/12.png deleted file mode 100644 index 5acd178e59..0000000000 Binary files a/front/public/images/small/chisel/beacon/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/13.png b/front/public/images/small/chisel/beacon/13.png deleted file mode 100644 index 640a4cb19a..0000000000 Binary files a/front/public/images/small/chisel/beacon/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/14.png b/front/public/images/small/chisel/beacon/14.png deleted file mode 100644 index 7cb3bd5a3a..0000000000 Binary files a/front/public/images/small/chisel/beacon/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/15.png b/front/public/images/small/chisel/beacon/15.png deleted file mode 100644 index f3c2eb71a0..0000000000 Binary files a/front/public/images/small/chisel/beacon/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/2.png b/front/public/images/small/chisel/beacon/2.png deleted file mode 100644 index d157d408c1..0000000000 Binary files a/front/public/images/small/chisel/beacon/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/3.png b/front/public/images/small/chisel/beacon/3.png deleted file mode 100644 index 948fe41d67..0000000000 Binary files a/front/public/images/small/chisel/beacon/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/4.png b/front/public/images/small/chisel/beacon/4.png deleted file mode 100644 index a211eefbe5..0000000000 Binary files a/front/public/images/small/chisel/beacon/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/5.png b/front/public/images/small/chisel/beacon/5.png deleted file mode 100644 index 7fe18fbce8..0000000000 Binary files a/front/public/images/small/chisel/beacon/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/6.png b/front/public/images/small/chisel/beacon/6.png deleted file mode 100644 index 5e1c18339c..0000000000 Binary files a/front/public/images/small/chisel/beacon/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/7.png b/front/public/images/small/chisel/beacon/7.png deleted file mode 100644 index 933f9221c7..0000000000 Binary files a/front/public/images/small/chisel/beacon/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/8.png b/front/public/images/small/chisel/beacon/8.png deleted file mode 100644 index 42bf35d095..0000000000 Binary files a/front/public/images/small/chisel/beacon/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/beacon/9.png b/front/public/images/small/chisel/beacon/9.png deleted file mode 100644 index 92892cd93f..0000000000 Binary files a/front/public/images/small/chisel/beacon/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/1.png b/front/public/images/small/chisel/birch_planks/1.png deleted file mode 100644 index 038b3170fe..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/10.png b/front/public/images/small/chisel/birch_planks/10.png deleted file mode 100644 index 1d92822e2f..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/11.png b/front/public/images/small/chisel/birch_planks/11.png deleted file mode 100644 index dc958f05bc..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/12.png b/front/public/images/small/chisel/birch_planks/12.png deleted file mode 100644 index 6a1a36cb18..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/13.png b/front/public/images/small/chisel/birch_planks/13.png deleted file mode 100644 index 32c2ef5092..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/14.png b/front/public/images/small/chisel/birch_planks/14.png deleted file mode 100644 index 837cf01062..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/15.png b/front/public/images/small/chisel/birch_planks/15.png deleted file mode 100644 index e7456ae4b3..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/2.png b/front/public/images/small/chisel/birch_planks/2.png deleted file mode 100644 index 6f4dc91c73..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/3.png b/front/public/images/small/chisel/birch_planks/3.png deleted file mode 100644 index d57f69d440..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/4.png b/front/public/images/small/chisel/birch_planks/4.png deleted file mode 100644 index 20c91f10d3..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/5.png b/front/public/images/small/chisel/birch_planks/5.png deleted file mode 100644 index 70d2e90c0e..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/6.png b/front/public/images/small/chisel/birch_planks/6.png deleted file mode 100644 index 1e12677946..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/7.png b/front/public/images/small/chisel/birch_planks/7.png deleted file mode 100644 index 7e0c170e93..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/8.png b/front/public/images/small/chisel/birch_planks/8.png deleted file mode 100644 index 5825c2128a..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/birch_planks/9.png b/front/public/images/small/chisel/birch_planks/9.png deleted file mode 100644 index 7e0c042634..0000000000 Binary files a/front/public/images/small/chisel/birch_planks/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/bloodBrick/0.png b/front/public/images/small/chisel/bloodBrick/0.png deleted file mode 100644 index da2353ede6..0000000000 Binary files a/front/public/images/small/chisel/bloodBrick/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/bloodRune/0.png b/front/public/images/small/chisel/bloodRune/0.png deleted file mode 100644 index 08d5eb518c..0000000000 Binary files a/front/public/images/small/chisel/bloodRune/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/bloodRune/1.png b/front/public/images/small/chisel/bloodRune/1.png deleted file mode 100644 index 6bed65e320..0000000000 Binary files a/front/public/images/small/chisel/bloodRune/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/bloodRune/2.png b/front/public/images/small/chisel/bloodRune/2.png deleted file mode 100644 index c3e7a6fc1e..0000000000 Binary files a/front/public/images/small/chisel/bloodRune/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/bloodRune/3.png b/front/public/images/small/chisel/bloodRune/3.png deleted file mode 100644 index 6b7fc123d5..0000000000 Binary files a/front/public/images/small/chisel/bloodRune/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/bloodRune/4.png b/front/public/images/small/chisel/bloodRune/4.png deleted file mode 100644 index 112982e84f..0000000000 Binary files a/front/public/images/small/chisel/bloodRune/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/bloodRune/5.png b/front/public/images/small/chisel/bloodRune/5.png deleted file mode 100644 index d3fceea79d..0000000000 Binary files a/front/public/images/small/chisel/bloodRune/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/1.png b/front/public/images/small/chisel/bookshelf/1.png deleted file mode 100644 index 808fc0d649..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/2.png b/front/public/images/small/chisel/bookshelf/2.png deleted file mode 100644 index 48c310c5c5..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/3.png b/front/public/images/small/chisel/bookshelf/3.png deleted file mode 100644 index 3fb8bdfc04..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/4.png b/front/public/images/small/chisel/bookshelf/4.png deleted file mode 100644 index 2963c92629..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/5.png b/front/public/images/small/chisel/bookshelf/5.png deleted file mode 100644 index 24dd30bd5e..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/6.png b/front/public/images/small/chisel/bookshelf/6.png deleted file mode 100644 index bd5aee2ae1..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/7.png b/front/public/images/small/chisel/bookshelf/7.png deleted file mode 100644 index aad0c041f7..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/bookshelf/8.png b/front/public/images/small/chisel/bookshelf/8.png deleted file mode 100644 index dcbe2abe98..0000000000 Binary files a/front/public/images/small/chisel/bookshelf/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/brickCustom/1.png b/front/public/images/small/chisel/brickCustom/1.png deleted file mode 100644 index a554cba288..0000000000 Binary files a/front/public/images/small/chisel/brickCustom/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/brickCustom/2.png b/front/public/images/small/chisel/brickCustom/2.png deleted file mode 100644 index bde6c92d74..0000000000 Binary files a/front/public/images/small/chisel/brickCustom/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/brickCustom/3.png b/front/public/images/small/chisel/brickCustom/3.png deleted file mode 100644 index 92dfff3d17..0000000000 Binary files a/front/public/images/small/chisel/brickCustom/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/brickCustom/5.png b/front/public/images/small/chisel/brickCustom/5.png deleted file mode 100644 index f45ab63536..0000000000 Binary files a/front/public/images/small/chisel/brickCustom/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/brickCustom/6.png b/front/public/images/small/chisel/brickCustom/6.png deleted file mode 100644 index 5de35effb9..0000000000 Binary files a/front/public/images/small/chisel/brickCustom/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/bronzeblock/0.png b/front/public/images/small/chisel/bronzeblock/0.png deleted file mode 100644 index 3f084c1419..0000000000 Binary files a/front/public/images/small/chisel/bronzeblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/bronzeblock/1.png b/front/public/images/small/chisel/bronzeblock/1.png deleted file mode 100644 index 2d07652109..0000000000 Binary files a/front/public/images/small/chisel/bronzeblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/bronzeblock/2.png b/front/public/images/small/chisel/bronzeblock/2.png deleted file mode 100644 index e83aeb7ad5..0000000000 Binary files a/front/public/images/small/chisel/bronzeblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/bronzeblock/3.png b/front/public/images/small/chisel/bronzeblock/3.png deleted file mode 100644 index d6767b0eca..0000000000 Binary files a/front/public/images/small/chisel/bronzeblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/bronzeblock/4.png b/front/public/images/small/chisel/bronzeblock/4.png deleted file mode 100644 index 2defab0330..0000000000 Binary files a/front/public/images/small/chisel/bronzeblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/bronzeblock/5.png b/front/public/images/small/chisel/bronzeblock/5.png deleted file mode 100644 index 40d8ab2b21..0000000000 Binary files a/front/public/images/small/chisel/bronzeblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/0.png b/front/public/images/small/chisel/carpet/0.png deleted file mode 100644 index cb081c6ee1..0000000000 Binary files a/front/public/images/small/chisel/carpet/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/1.png b/front/public/images/small/chisel/carpet/1.png deleted file mode 100644 index e37b9aa3af..0000000000 Binary files a/front/public/images/small/chisel/carpet/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/10.png b/front/public/images/small/chisel/carpet/10.png deleted file mode 100644 index f583364008..0000000000 Binary files a/front/public/images/small/chisel/carpet/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/11.png b/front/public/images/small/chisel/carpet/11.png deleted file mode 100644 index 97280bdf58..0000000000 Binary files a/front/public/images/small/chisel/carpet/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/12.png b/front/public/images/small/chisel/carpet/12.png deleted file mode 100644 index 5991e86700..0000000000 Binary files a/front/public/images/small/chisel/carpet/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/13.png b/front/public/images/small/chisel/carpet/13.png deleted file mode 100644 index 5c190e52fa..0000000000 Binary files a/front/public/images/small/chisel/carpet/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/14.png b/front/public/images/small/chisel/carpet/14.png deleted file mode 100644 index 993dc79796..0000000000 Binary files a/front/public/images/small/chisel/carpet/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/15.png b/front/public/images/small/chisel/carpet/15.png deleted file mode 100644 index 624461a745..0000000000 Binary files a/front/public/images/small/chisel/carpet/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/2.png b/front/public/images/small/chisel/carpet/2.png deleted file mode 100644 index dc56257250..0000000000 Binary files a/front/public/images/small/chisel/carpet/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/3.png b/front/public/images/small/chisel/carpet/3.png deleted file mode 100644 index 278352cfc4..0000000000 Binary files a/front/public/images/small/chisel/carpet/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/4.png b/front/public/images/small/chisel/carpet/4.png deleted file mode 100644 index 1016d79bbc..0000000000 Binary files a/front/public/images/small/chisel/carpet/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/5.png b/front/public/images/small/chisel/carpet/5.png deleted file mode 100644 index 0cf16eb3f4..0000000000 Binary files a/front/public/images/small/chisel/carpet/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/6.png b/front/public/images/small/chisel/carpet/6.png deleted file mode 100644 index 99ec47149a..0000000000 Binary files a/front/public/images/small/chisel/carpet/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/7.png b/front/public/images/small/chisel/carpet/7.png deleted file mode 100644 index 2cc1145dbc..0000000000 Binary files a/front/public/images/small/chisel/carpet/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/8.png b/front/public/images/small/chisel/carpet/8.png deleted file mode 100644 index 2cd2147a73..0000000000 Binary files a/front/public/images/small/chisel/carpet/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet/9.png b/front/public/images/small/chisel/carpet/9.png deleted file mode 100644 index 4c6df84f8c..0000000000 Binary files a/front/public/images/small/chisel/carpet/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/0.png b/front/public/images/small/chisel/carpet_block/0.png deleted file mode 100644 index 19471bc03e..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/1.png b/front/public/images/small/chisel/carpet_block/1.png deleted file mode 100644 index 5f2c4e9c4a..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/10.png b/front/public/images/small/chisel/carpet_block/10.png deleted file mode 100644 index 59ed56a56c..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/11.png b/front/public/images/small/chisel/carpet_block/11.png deleted file mode 100644 index 527b81cca9..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/12.png b/front/public/images/small/chisel/carpet_block/12.png deleted file mode 100644 index b9f30ccb55..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/13.png b/front/public/images/small/chisel/carpet_block/13.png deleted file mode 100644 index 45d92012a9..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/14.png b/front/public/images/small/chisel/carpet_block/14.png deleted file mode 100644 index 38443959a2..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/15.png b/front/public/images/small/chisel/carpet_block/15.png deleted file mode 100644 index 1d3dacf930..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/2.png b/front/public/images/small/chisel/carpet_block/2.png deleted file mode 100644 index 76b69b324a..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/3.png b/front/public/images/small/chisel/carpet_block/3.png deleted file mode 100644 index c0675eecf9..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/4.png b/front/public/images/small/chisel/carpet_block/4.png deleted file mode 100644 index 7d22beb809..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/5.png b/front/public/images/small/chisel/carpet_block/5.png deleted file mode 100644 index 6bf99d9e4e..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/6.png b/front/public/images/small/chisel/carpet_block/6.png deleted file mode 100644 index 6b1e18b24c..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/7.png b/front/public/images/small/chisel/carpet_block/7.png deleted file mode 100644 index 2c4779d59a..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/8.png b/front/public/images/small/chisel/carpet_block/8.png deleted file mode 100644 index 95297dece2..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/carpet_block/9.png b/front/public/images/small/chisel/carpet_block/9.png deleted file mode 100644 index 3f557e7a78..0000000000 Binary files a/front/public/images/small/chisel/carpet_block/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/chisel/0.png b/front/public/images/small/chisel/chisel/0.png deleted file mode 100644 index 1fba0ae5c7..0000000000 Binary files a/front/public/images/small/chisel/chisel/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/cloud/0.png b/front/public/images/small/chisel/cloud/0.png deleted file mode 100644 index e3c4806d12..0000000000 Binary files a/front/public/images/small/chisel/cloud/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/cloud/1.png b/front/public/images/small/chisel/cloud/1.png deleted file mode 100644 index ed3a5df718..0000000000 Binary files a/front/public/images/small/chisel/cloud/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/cloud/2.png b/front/public/images/small/chisel/cloud/2.png deleted file mode 100644 index 1fa5443289..0000000000 Binary files a/front/public/images/small/chisel/cloud/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/cloud/3.png b/front/public/images/small/chisel/cloud/3.png deleted file mode 100644 index 7ba968323d..0000000000 Binary files a/front/public/images/small/chisel/cloud/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/cloud/4.png b/front/public/images/small/chisel/cloud/4.png deleted file mode 100644 index c65be1bf76..0000000000 Binary files a/front/public/images/small/chisel/cloud/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/cloudinabottle/0.png b/front/public/images/small/chisel/cloudinabottle/0.png deleted file mode 100644 index f8381653a4..0000000000 Binary files a/front/public/images/small/chisel/cloudinabottle/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/1.png b/front/public/images/small/chisel/cobblestone/1.png deleted file mode 100644 index c44ce7a9b2..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/10.png b/front/public/images/small/chisel/cobblestone/10.png deleted file mode 100644 index c8662f5818..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/11.png b/front/public/images/small/chisel/cobblestone/11.png deleted file mode 100644 index 695b536aa4..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/12.png b/front/public/images/small/chisel/cobblestone/12.png deleted file mode 100644 index 492834918f..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/13.png b/front/public/images/small/chisel/cobblestone/13.png deleted file mode 100644 index a1df4a10f3..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/14.png b/front/public/images/small/chisel/cobblestone/14.png deleted file mode 100644 index 52ab3b76b7..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/15.png b/front/public/images/small/chisel/cobblestone/15.png deleted file mode 100644 index 147440c76a..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/2.png b/front/public/images/small/chisel/cobblestone/2.png deleted file mode 100644 index 5a1d3a85be..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/3.png b/front/public/images/small/chisel/cobblestone/3.png deleted file mode 100644 index 5ff866ac5c..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/4.png b/front/public/images/small/chisel/cobblestone/4.png deleted file mode 100644 index f0a1c78b98..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/5.png b/front/public/images/small/chisel/cobblestone/5.png deleted file mode 100644 index 1bf8f29552..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/6.png b/front/public/images/small/chisel/cobblestone/6.png deleted file mode 100644 index 2b7619fe9b..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/7.png b/front/public/images/small/chisel/cobblestone/7.png deleted file mode 100644 index 619bcb5d2f..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/8.png b/front/public/images/small/chisel/cobblestone/8.png deleted file mode 100644 index f8673b3168..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/cobblestone/9.png b/front/public/images/small/chisel/cobblestone/9.png deleted file mode 100644 index 7ee561fbbd..0000000000 Binary files a/front/public/images/small/chisel/cobblestone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/0.png b/front/public/images/small/chisel/concrete/0.png deleted file mode 100644 index 1260fdcc1b..0000000000 Binary files a/front/public/images/small/chisel/concrete/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/1.png b/front/public/images/small/chisel/concrete/1.png deleted file mode 100644 index aafb04671a..0000000000 Binary files a/front/public/images/small/chisel/concrete/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/10.png b/front/public/images/small/chisel/concrete/10.png deleted file mode 100644 index 7586b9a710..0000000000 Binary files a/front/public/images/small/chisel/concrete/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/2.png b/front/public/images/small/chisel/concrete/2.png deleted file mode 100644 index 5991c24f0f..0000000000 Binary files a/front/public/images/small/chisel/concrete/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/3.png b/front/public/images/small/chisel/concrete/3.png deleted file mode 100644 index 9a751426f4..0000000000 Binary files a/front/public/images/small/chisel/concrete/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/4.png b/front/public/images/small/chisel/concrete/4.png deleted file mode 100644 index abddd0d6ea..0000000000 Binary files a/front/public/images/small/chisel/concrete/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/5.png b/front/public/images/small/chisel/concrete/5.png deleted file mode 100644 index 6746c6f4f1..0000000000 Binary files a/front/public/images/small/chisel/concrete/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/6.png b/front/public/images/small/chisel/concrete/6.png deleted file mode 100644 index 2b52133090..0000000000 Binary files a/front/public/images/small/chisel/concrete/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/7.png b/front/public/images/small/chisel/concrete/7.png deleted file mode 100644 index 2f650021eb..0000000000 Binary files a/front/public/images/small/chisel/concrete/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/8.png b/front/public/images/small/chisel/concrete/8.png deleted file mode 100644 index 2ecc998510..0000000000 Binary files a/front/public/images/small/chisel/concrete/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/concrete/9.png b/front/public/images/small/chisel/concrete/9.png deleted file mode 100644 index 0a2254e9ec..0000000000 Binary files a/front/public/images/small/chisel/concrete/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/copperblock/0.png b/front/public/images/small/chisel/copperblock/0.png deleted file mode 100644 index ead4a0e93a..0000000000 Binary files a/front/public/images/small/chisel/copperblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/copperblock/1.png b/front/public/images/small/chisel/copperblock/1.png deleted file mode 100644 index 04498dcce5..0000000000 Binary files a/front/public/images/small/chisel/copperblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/copperblock/2.png b/front/public/images/small/chisel/copperblock/2.png deleted file mode 100644 index 3b4c6d6f2c..0000000000 Binary files a/front/public/images/small/chisel/copperblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/copperblock/3.png b/front/public/images/small/chisel/copperblock/3.png deleted file mode 100644 index 2bea7090ca..0000000000 Binary files a/front/public/images/small/chisel/copperblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/copperblock/4.png b/front/public/images/small/chisel/copperblock/4.png deleted file mode 100644 index 8b96ac9ff5..0000000000 Binary files a/front/public/images/small/chisel/copperblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/copperblock/5.png b/front/public/images/small/chisel/copperblock/5.png deleted file mode 100644 index 02f7aad50e..0000000000 Binary files a/front/public/images/small/chisel/copperblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/0.png b/front/public/images/small/chisel/cubit/0.png deleted file mode 100644 index bb9a140096..0000000000 Binary files a/front/public/images/small/chisel/cubit/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/1.png b/front/public/images/small/chisel/cubit/1.png deleted file mode 100644 index d01de57c3f..0000000000 Binary files a/front/public/images/small/chisel/cubit/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/10.png b/front/public/images/small/chisel/cubit/10.png deleted file mode 100644 index 8253f99529..0000000000 Binary files a/front/public/images/small/chisel/cubit/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/11.png b/front/public/images/small/chisel/cubit/11.png deleted file mode 100644 index 207e42488b..0000000000 Binary files a/front/public/images/small/chisel/cubit/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/12.png b/front/public/images/small/chisel/cubit/12.png deleted file mode 100644 index 1269e41573..0000000000 Binary files a/front/public/images/small/chisel/cubit/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/13.png b/front/public/images/small/chisel/cubit/13.png deleted file mode 100644 index 7244b8f5bc..0000000000 Binary files a/front/public/images/small/chisel/cubit/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/14.png b/front/public/images/small/chisel/cubit/14.png deleted file mode 100644 index dae6a9d707..0000000000 Binary files a/front/public/images/small/chisel/cubit/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/15.png b/front/public/images/small/chisel/cubit/15.png deleted file mode 100644 index 729990731a..0000000000 Binary files a/front/public/images/small/chisel/cubit/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/2.png b/front/public/images/small/chisel/cubit/2.png deleted file mode 100644 index ec338a313c..0000000000 Binary files a/front/public/images/small/chisel/cubit/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/3.png b/front/public/images/small/chisel/cubit/3.png deleted file mode 100644 index f4394bfe8c..0000000000 Binary files a/front/public/images/small/chisel/cubit/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/4.png b/front/public/images/small/chisel/cubit/4.png deleted file mode 100644 index 2ec1f89861..0000000000 Binary files a/front/public/images/small/chisel/cubit/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/5.png b/front/public/images/small/chisel/cubit/5.png deleted file mode 100644 index 6561a0d7b5..0000000000 Binary files a/front/public/images/small/chisel/cubit/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/6.png b/front/public/images/small/chisel/cubit/6.png deleted file mode 100644 index 27c907dd09..0000000000 Binary files a/front/public/images/small/chisel/cubit/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/7.png b/front/public/images/small/chisel/cubit/7.png deleted file mode 100644 index c0e534f4ab..0000000000 Binary files a/front/public/images/small/chisel/cubit/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/8.png b/front/public/images/small/chisel/cubit/8.png deleted file mode 100644 index 6f3bc068e1..0000000000 Binary files a/front/public/images/small/chisel/cubit/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/cubit/9.png b/front/public/images/small/chisel/cubit/9.png deleted file mode 100644 index 81e3d10ead..0000000000 Binary files a/front/public/images/small/chisel/cubit/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/1.png b/front/public/images/small/chisel/dark_oak_planks/1.png deleted file mode 100644 index 05d1589dae..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/10.png b/front/public/images/small/chisel/dark_oak_planks/10.png deleted file mode 100644 index d9b30cf025..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/11.png b/front/public/images/small/chisel/dark_oak_planks/11.png deleted file mode 100644 index 48b4884da0..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/12.png b/front/public/images/small/chisel/dark_oak_planks/12.png deleted file mode 100644 index 783f23828f..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/13.png b/front/public/images/small/chisel/dark_oak_planks/13.png deleted file mode 100644 index 1952652242..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/14.png b/front/public/images/small/chisel/dark_oak_planks/14.png deleted file mode 100644 index 5b3df818cc..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/15.png b/front/public/images/small/chisel/dark_oak_planks/15.png deleted file mode 100644 index 57968bbe70..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/2.png b/front/public/images/small/chisel/dark_oak_planks/2.png deleted file mode 100644 index bb53fea213..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/3.png b/front/public/images/small/chisel/dark_oak_planks/3.png deleted file mode 100644 index 7bd4923a07..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/4.png b/front/public/images/small/chisel/dark_oak_planks/4.png deleted file mode 100644 index 619e1ede02..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/5.png b/front/public/images/small/chisel/dark_oak_planks/5.png deleted file mode 100644 index 2e79a135a6..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/6.png b/front/public/images/small/chisel/dark_oak_planks/6.png deleted file mode 100644 index 2500e18e95..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/7.png b/front/public/images/small/chisel/dark_oak_planks/7.png deleted file mode 100644 index c914736bdf..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/8.png b/front/public/images/small/chisel/dark_oak_planks/8.png deleted file mode 100644 index cd42e2cad5..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/dark_oak_planks/9.png b/front/public/images/small/chisel/dark_oak_planks/9.png deleted file mode 100644 index aa7dc1c2d0..0000000000 Binary files a/front/public/images/small/chisel/dark_oak_planks/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamondChisel/0.png b/front/public/images/small/chisel/diamondChisel/0.png deleted file mode 100644 index d10516af30..0000000000 Binary files a/front/public/images/small/chisel/diamondChisel/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/1.png b/front/public/images/small/chisel/diamond_block/1.png deleted file mode 100644 index a5e12d4f7c..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/10.png b/front/public/images/small/chisel/diamond_block/10.png deleted file mode 100644 index 2a728e7996..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/11.png b/front/public/images/small/chisel/diamond_block/11.png deleted file mode 100644 index e9b89cf8c4..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/12.png b/front/public/images/small/chisel/diamond_block/12.png deleted file mode 100644 index 69cd65d7a7..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/2.png b/front/public/images/small/chisel/diamond_block/2.png deleted file mode 100644 index c67e81f050..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/3.png b/front/public/images/small/chisel/diamond_block/3.png deleted file mode 100644 index c8f4e1cb5f..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/4.png b/front/public/images/small/chisel/diamond_block/4.png deleted file mode 100644 index 6e892b03f4..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/5.png b/front/public/images/small/chisel/diamond_block/5.png deleted file mode 100644 index 22151e428e..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/6.png b/front/public/images/small/chisel/diamond_block/6.png deleted file mode 100644 index 1b83cf5980..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/7.png b/front/public/images/small/chisel/diamond_block/7.png deleted file mode 100644 index 54253e465f..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/8.png b/front/public/images/small/chisel/diamond_block/8.png deleted file mode 100644 index c18f84f6d2..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/diamond_block/9.png b/front/public/images/small/chisel/diamond_block/9.png deleted file mode 100644 index eb1cead8f3..0000000000 Binary files a/front/public/images/small/chisel/diamond_block/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/diorite/0.png b/front/public/images/small/chisel/diorite/0.png deleted file mode 100644 index 85a69b3258..0000000000 Binary files a/front/public/images/small/chisel/diorite/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/diorite/1.png b/front/public/images/small/chisel/diorite/1.png deleted file mode 100644 index 4871a25ab7..0000000000 Binary files a/front/public/images/small/chisel/diorite/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/diorite/2.png b/front/public/images/small/chisel/diorite/2.png deleted file mode 100644 index b128513ca0..0000000000 Binary files a/front/public/images/small/chisel/diorite/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/diorite/3.png b/front/public/images/small/chisel/diorite/3.png deleted file mode 100644 index 3ec7cc4cd4..0000000000 Binary files a/front/public/images/small/chisel/diorite/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/diorite/4.png b/front/public/images/small/chisel/diorite/4.png deleted file mode 100644 index 3fe309a11c..0000000000 Binary files a/front/public/images/small/chisel/diorite/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/diorite/5.png b/front/public/images/small/chisel/diorite/5.png deleted file mode 100644 index 426a6596b2..0000000000 Binary files a/front/public/images/small/chisel/diorite/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/diorite/6.png b/front/public/images/small/chisel/diorite/6.png deleted file mode 100644 index 8a9c461977..0000000000 Binary files a/front/public/images/small/chisel/diorite/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/0.png b/front/public/images/small/chisel/dirt/0.png deleted file mode 100644 index 056f26ed78..0000000000 Binary files a/front/public/images/small/chisel/dirt/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/1.png b/front/public/images/small/chisel/dirt/1.png deleted file mode 100644 index 00c1f52a1f..0000000000 Binary files a/front/public/images/small/chisel/dirt/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/10.png b/front/public/images/small/chisel/dirt/10.png deleted file mode 100644 index dfa56aa5b7..0000000000 Binary files a/front/public/images/small/chisel/dirt/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/11.png b/front/public/images/small/chisel/dirt/11.png deleted file mode 100644 index d03459a3e6..0000000000 Binary files a/front/public/images/small/chisel/dirt/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/12.png b/front/public/images/small/chisel/dirt/12.png deleted file mode 100644 index c9003b024a..0000000000 Binary files a/front/public/images/small/chisel/dirt/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/13.png b/front/public/images/small/chisel/dirt/13.png deleted file mode 100644 index 243ab9d9ad..0000000000 Binary files a/front/public/images/small/chisel/dirt/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/14.png b/front/public/images/small/chisel/dirt/14.png deleted file mode 100644 index 5893205392..0000000000 Binary files a/front/public/images/small/chisel/dirt/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/15.png b/front/public/images/small/chisel/dirt/15.png deleted file mode 100644 index 9891829721..0000000000 Binary files a/front/public/images/small/chisel/dirt/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/2.png b/front/public/images/small/chisel/dirt/2.png deleted file mode 100644 index 6421d01170..0000000000 Binary files a/front/public/images/small/chisel/dirt/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/3.png b/front/public/images/small/chisel/dirt/3.png deleted file mode 100644 index d4df454dda..0000000000 Binary files a/front/public/images/small/chisel/dirt/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/4.png b/front/public/images/small/chisel/dirt/4.png deleted file mode 100644 index 41752062e3..0000000000 Binary files a/front/public/images/small/chisel/dirt/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/5.png b/front/public/images/small/chisel/dirt/5.png deleted file mode 100644 index 3f90c19d61..0000000000 Binary files a/front/public/images/small/chisel/dirt/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/6.png b/front/public/images/small/chisel/dirt/6.png deleted file mode 100644 index 9f1945fab0..0000000000 Binary files a/front/public/images/small/chisel/dirt/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/7.png b/front/public/images/small/chisel/dirt/7.png deleted file mode 100644 index a98d9f7d83..0000000000 Binary files a/front/public/images/small/chisel/dirt/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/8.png b/front/public/images/small/chisel/dirt/8.png deleted file mode 100644 index c7f2cb58e7..0000000000 Binary files a/front/public/images/small/chisel/dirt/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/dirt/9.png b/front/public/images/small/chisel/dirt/9.png deleted file mode 100644 index 3b3b532bba..0000000000 Binary files a/front/public/images/small/chisel/dirt/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/1.png b/front/public/images/small/chisel/emerald_block/1.png deleted file mode 100644 index 22c5c63518..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/10.png b/front/public/images/small/chisel/emerald_block/10.png deleted file mode 100644 index 2cec53d3e9..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/11.png b/front/public/images/small/chisel/emerald_block/11.png deleted file mode 100644 index 95b81c3fb4..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/2.png b/front/public/images/small/chisel/emerald_block/2.png deleted file mode 100644 index 9046f0cb69..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/3.png b/front/public/images/small/chisel/emerald_block/3.png deleted file mode 100644 index b8e4b6076e..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/4.png b/front/public/images/small/chisel/emerald_block/4.png deleted file mode 100644 index 6536e224ef..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/5.png b/front/public/images/small/chisel/emerald_block/5.png deleted file mode 100644 index 16d82a5996..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/6.png b/front/public/images/small/chisel/emerald_block/6.png deleted file mode 100644 index d0f799bb1b..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/7.png b/front/public/images/small/chisel/emerald_block/7.png deleted file mode 100644 index d96b5c08e0..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/8.png b/front/public/images/small/chisel/emerald_block/8.png deleted file mode 100644 index 80a3ea2b7b..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/emerald_block/9.png b/front/public/images/small/chisel/emerald_block/9.png deleted file mode 100644 index 72764a9a70..0000000000 Binary files a/front/public/images/small/chisel/emerald_block/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/0.png b/front/public/images/small/chisel/end_Stone/0.png deleted file mode 100644 index 2bdebd583e..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/1.png b/front/public/images/small/chisel/end_Stone/1.png deleted file mode 100644 index da5da66f2b..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/10.png b/front/public/images/small/chisel/end_Stone/10.png deleted file mode 100644 index ac0bc9e2aa..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/11.png b/front/public/images/small/chisel/end_Stone/11.png deleted file mode 100644 index feb33b6fb7..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/12.png b/front/public/images/small/chisel/end_Stone/12.png deleted file mode 100644 index 068fee24a7..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/13.png b/front/public/images/small/chisel/end_Stone/13.png deleted file mode 100644 index a1450c02d3..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/2.png b/front/public/images/small/chisel/end_Stone/2.png deleted file mode 100644 index 827cef5114..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/3.png b/front/public/images/small/chisel/end_Stone/3.png deleted file mode 100644 index 9a550bb96e..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/4.png b/front/public/images/small/chisel/end_Stone/4.png deleted file mode 100644 index b70a79b1bb..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/5.png b/front/public/images/small/chisel/end_Stone/5.png deleted file mode 100644 index 6264da6cfa..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/6.png b/front/public/images/small/chisel/end_Stone/6.png deleted file mode 100644 index a7843a2d18..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/7.png b/front/public/images/small/chisel/end_Stone/7.png deleted file mode 100644 index aa057a6a44..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/8.png b/front/public/images/small/chisel/end_Stone/8.png deleted file mode 100644 index 2f5f539249..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/end_Stone/9.png b/front/public/images/small/chisel/end_Stone/9.png deleted file mode 100644 index 12c61aafd4..0000000000 Binary files a/front/public/images/small/chisel/end_Stone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/0.png b/front/public/images/small/chisel/factoryblock/0.png deleted file mode 100644 index 8f7dfdcb71..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/1.png b/front/public/images/small/chisel/factoryblock/1.png deleted file mode 100644 index 6f5b5267c4..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/10.png b/front/public/images/small/chisel/factoryblock/10.png deleted file mode 100644 index 3bfff1205c..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/11.png b/front/public/images/small/chisel/factoryblock/11.png deleted file mode 100644 index ed568cd03e..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/12.png b/front/public/images/small/chisel/factoryblock/12.png deleted file mode 100644 index caea3b6906..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/13.png b/front/public/images/small/chisel/factoryblock/13.png deleted file mode 100644 index c91db57810..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/14.png b/front/public/images/small/chisel/factoryblock/14.png deleted file mode 100644 index c943ce8271..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/15.png b/front/public/images/small/chisel/factoryblock/15.png deleted file mode 100644 index af1b1179bc..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/2.png b/front/public/images/small/chisel/factoryblock/2.png deleted file mode 100644 index faeeabc566..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/3.png b/front/public/images/small/chisel/factoryblock/3.png deleted file mode 100644 index 19552d48da..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/4.png b/front/public/images/small/chisel/factoryblock/4.png deleted file mode 100644 index ad44ec6abc..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/5.png b/front/public/images/small/chisel/factoryblock/5.png deleted file mode 100644 index 294c7417f6..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/6.png b/front/public/images/small/chisel/factoryblock/6.png deleted file mode 100644 index 466a6586d8..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/7.png b/front/public/images/small/chisel/factoryblock/7.png deleted file mode 100644 index cc32ba87b3..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/8.png b/front/public/images/small/chisel/factoryblock/8.png deleted file mode 100644 index 536a967db4..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock/9.png b/front/public/images/small/chisel/factoryblock/9.png deleted file mode 100644 index f6a4cc8eb1..0000000000 Binary files a/front/public/images/small/chisel/factoryblock/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock2/0.png b/front/public/images/small/chisel/factoryblock2/0.png deleted file mode 100644 index b323a5bafc..0000000000 Binary files a/front/public/images/small/chisel/factoryblock2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock2/1.png b/front/public/images/small/chisel/factoryblock2/1.png deleted file mode 100644 index 679c2023e2..0000000000 Binary files a/front/public/images/small/chisel/factoryblock2/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock2/2.png b/front/public/images/small/chisel/factoryblock2/2.png deleted file mode 100644 index e67eaa0b89..0000000000 Binary files a/front/public/images/small/chisel/factoryblock2/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/factoryblock2/3.png b/front/public/images/small/chisel/factoryblock2/3.png deleted file mode 100644 index e0a43539f1..0000000000 Binary files a/front/public/images/small/chisel/factoryblock2/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/0.png b/front/public/images/small/chisel/fantasyblock/0.png deleted file mode 100644 index d8957ac9c7..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/1.png b/front/public/images/small/chisel/fantasyblock/1.png deleted file mode 100644 index 208aff6aba..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/10.png b/front/public/images/small/chisel/fantasyblock/10.png deleted file mode 100644 index 99f24b569c..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/11.png b/front/public/images/small/chisel/fantasyblock/11.png deleted file mode 100644 index 6d71e60677..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/12.png b/front/public/images/small/chisel/fantasyblock/12.png deleted file mode 100644 index 7ab44ad038..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/13.png b/front/public/images/small/chisel/fantasyblock/13.png deleted file mode 100644 index 73ae67c68c..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/14.png b/front/public/images/small/chisel/fantasyblock/14.png deleted file mode 100644 index fd97794fb9..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/15.png b/front/public/images/small/chisel/fantasyblock/15.png deleted file mode 100644 index 99f83f0244..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/2.png b/front/public/images/small/chisel/fantasyblock/2.png deleted file mode 100644 index 0ec4b369d0..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/3.png b/front/public/images/small/chisel/fantasyblock/3.png deleted file mode 100644 index 535a2542d9..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/4.png b/front/public/images/small/chisel/fantasyblock/4.png deleted file mode 100644 index e3def810f8..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/5.png b/front/public/images/small/chisel/fantasyblock/5.png deleted file mode 100644 index ef80a773f6..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/6.png b/front/public/images/small/chisel/fantasyblock/6.png deleted file mode 100644 index 26c80e69e9..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/7.png b/front/public/images/small/chisel/fantasyblock/7.png deleted file mode 100644 index 74349431d5..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/8.png b/front/public/images/small/chisel/fantasyblock/8.png deleted file mode 100644 index bfea4729f3..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock/9.png b/front/public/images/small/chisel/fantasyblock/9.png deleted file mode 100644 index 1c523c87e4..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/0.png b/front/public/images/small/chisel/fantasyblock2/0.png deleted file mode 100644 index 57922c0d4e..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/1.png b/front/public/images/small/chisel/fantasyblock2/1.png deleted file mode 100644 index f972e315be..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/10.png b/front/public/images/small/chisel/fantasyblock2/10.png deleted file mode 100644 index 99f24b569c..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/11.png b/front/public/images/small/chisel/fantasyblock2/11.png deleted file mode 100644 index 6d71e60677..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/12.png b/front/public/images/small/chisel/fantasyblock2/12.png deleted file mode 100644 index 19d7746927..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/13.png b/front/public/images/small/chisel/fantasyblock2/13.png deleted file mode 100644 index 297d59aa97..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/14.png b/front/public/images/small/chisel/fantasyblock2/14.png deleted file mode 100644 index 036ef14b7f..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/15.png b/front/public/images/small/chisel/fantasyblock2/15.png deleted file mode 100644 index 6d7bb94746..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/2.png b/front/public/images/small/chisel/fantasyblock2/2.png deleted file mode 100644 index 56cd3739e4..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/3.png b/front/public/images/small/chisel/fantasyblock2/3.png deleted file mode 100644 index 96352cf76d..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/4.png b/front/public/images/small/chisel/fantasyblock2/4.png deleted file mode 100644 index 5dcd2f7ce5..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/5.png b/front/public/images/small/chisel/fantasyblock2/5.png deleted file mode 100644 index d900aeedec..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/6.png b/front/public/images/small/chisel/fantasyblock2/6.png deleted file mode 100644 index 267b93dbae..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/7.png b/front/public/images/small/chisel/fantasyblock2/7.png deleted file mode 100644 index 057745f11f..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/8.png b/front/public/images/small/chisel/fantasyblock2/8.png deleted file mode 100644 index bfea4729f3..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/fantasyblock2/9.png b/front/public/images/small/chisel/fantasyblock2/9.png deleted file mode 100644 index 1c523c87e4..0000000000 Binary files a/front/public/images/small/chisel/fantasyblock2/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/futura/0.png b/front/public/images/small/chisel/futura/0.png deleted file mode 100644 index 7a06afd94f..0000000000 Binary files a/front/public/images/small/chisel/futura/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/futura/1.png b/front/public/images/small/chisel/futura/1.png deleted file mode 100644 index 26e87aa0fb..0000000000 Binary files a/front/public/images/small/chisel/futura/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/futura/2.png b/front/public/images/small/chisel/futura/2.png deleted file mode 100644 index 49cd2aacad..0000000000 Binary files a/front/public/images/small/chisel/futura/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/futura/3.png b/front/public/images/small/chisel/futura/3.png deleted file mode 100644 index 272e8e3b74..0000000000 Binary files a/front/public/images/small/chisel/futura/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/futura/4.png b/front/public/images/small/chisel/futura/4.png deleted file mode 100644 index 1314d66f86..0000000000 Binary files a/front/public/images/small/chisel/futura/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/futura/5.png b/front/public/images/small/chisel/futura/5.png deleted file mode 100644 index 1a637c1807..0000000000 Binary files a/front/public/images/small/chisel/futura/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/0.png b/front/public/images/small/chisel/futuraCircuit/0.png deleted file mode 100644 index 8af791eb66..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/1.png b/front/public/images/small/chisel/futuraCircuit/1.png deleted file mode 100644 index c34126a76e..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/10.png b/front/public/images/small/chisel/futuraCircuit/10.png deleted file mode 100644 index 4e5af016c0..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/11.png b/front/public/images/small/chisel/futuraCircuit/11.png deleted file mode 100644 index f41dd9bc0b..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/12.png b/front/public/images/small/chisel/futuraCircuit/12.png deleted file mode 100644 index b92d7f76e5..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/13.png b/front/public/images/small/chisel/futuraCircuit/13.png deleted file mode 100644 index 943e5db752..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/14.png b/front/public/images/small/chisel/futuraCircuit/14.png deleted file mode 100644 index b61d5ac5d2..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/15.png b/front/public/images/small/chisel/futuraCircuit/15.png deleted file mode 100644 index 167e7684c1..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/2.png b/front/public/images/small/chisel/futuraCircuit/2.png deleted file mode 100644 index fdc1197e07..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/3.png b/front/public/images/small/chisel/futuraCircuit/3.png deleted file mode 100644 index 47aaf831b7..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/4.png b/front/public/images/small/chisel/futuraCircuit/4.png deleted file mode 100644 index 23b28c8855..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/5.png b/front/public/images/small/chisel/futuraCircuit/5.png deleted file mode 100644 index 5cd2aa1014..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/6.png b/front/public/images/small/chisel/futuraCircuit/6.png deleted file mode 100644 index 22946707bb..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/7.png b/front/public/images/small/chisel/futuraCircuit/7.png deleted file mode 100644 index d4b2640456..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/8.png b/front/public/images/small/chisel/futuraCircuit/8.png deleted file mode 100644 index 73a7ce7341..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/futuraCircuit/9.png b/front/public/images/small/chisel/futuraCircuit/9.png deleted file mode 100644 index 0415c7cdc6..0000000000 Binary files a/front/public/images/small/chisel/futuraCircuit/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/1.png b/front/public/images/small/chisel/glass/1.png deleted file mode 100644 index 253a68920b..0000000000 Binary files a/front/public/images/small/chisel/glass/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/10.png b/front/public/images/small/chisel/glass/10.png deleted file mode 100644 index 1f28c9d608..0000000000 Binary files a/front/public/images/small/chisel/glass/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/11.png b/front/public/images/small/chisel/glass/11.png deleted file mode 100644 index 1ad1d7650d..0000000000 Binary files a/front/public/images/small/chisel/glass/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/12.png b/front/public/images/small/chisel/glass/12.png deleted file mode 100644 index e7568f047f..0000000000 Binary files a/front/public/images/small/chisel/glass/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/13.png b/front/public/images/small/chisel/glass/13.png deleted file mode 100644 index e94df65b14..0000000000 Binary files a/front/public/images/small/chisel/glass/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/14.png b/front/public/images/small/chisel/glass/14.png deleted file mode 100644 index 463516bab2..0000000000 Binary files a/front/public/images/small/chisel/glass/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/15.png b/front/public/images/small/chisel/glass/15.png deleted file mode 100644 index eed519747d..0000000000 Binary files a/front/public/images/small/chisel/glass/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/2.png b/front/public/images/small/chisel/glass/2.png deleted file mode 100644 index da808d27e9..0000000000 Binary files a/front/public/images/small/chisel/glass/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/3.png b/front/public/images/small/chisel/glass/3.png deleted file mode 100644 index 8e07666903..0000000000 Binary files a/front/public/images/small/chisel/glass/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/4.png b/front/public/images/small/chisel/glass/4.png deleted file mode 100644 index 7259efc5ea..0000000000 Binary files a/front/public/images/small/chisel/glass/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/5.png b/front/public/images/small/chisel/glass/5.png deleted file mode 100644 index 4a278ba3bc..0000000000 Binary files a/front/public/images/small/chisel/glass/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/6.png b/front/public/images/small/chisel/glass/6.png deleted file mode 100644 index ab3d9972a9..0000000000 Binary files a/front/public/images/small/chisel/glass/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/7.png b/front/public/images/small/chisel/glass/7.png deleted file mode 100644 index 40489abd93..0000000000 Binary files a/front/public/images/small/chisel/glass/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/8.png b/front/public/images/small/chisel/glass/8.png deleted file mode 100644 index 563b17336c..0000000000 Binary files a/front/public/images/small/chisel/glass/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass/9.png b/front/public/images/small/chisel/glass/9.png deleted file mode 100644 index 656e66b67a..0000000000 Binary files a/front/public/images/small/chisel/glass/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass2/0.png b/front/public/images/small/chisel/glass2/0.png deleted file mode 100644 index 009e3b6504..0000000000 Binary files a/front/public/images/small/chisel/glass2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/1.png b/front/public/images/small/chisel/glass_pane/1.png deleted file mode 100644 index 2e1ad5348f..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/12.png b/front/public/images/small/chisel/glass_pane/12.png deleted file mode 100644 index 33e25ed3fa..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/13.png b/front/public/images/small/chisel/glass_pane/13.png deleted file mode 100644 index 16370b1cb3..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/14.png b/front/public/images/small/chisel/glass_pane/14.png deleted file mode 100644 index 605812d756..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/15.png b/front/public/images/small/chisel/glass_pane/15.png deleted file mode 100644 index 47ec88dee0..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/2.png b/front/public/images/small/chisel/glass_pane/2.png deleted file mode 100644 index 81c9d8a0bc..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/3.png b/front/public/images/small/chisel/glass_pane/3.png deleted file mode 100644 index acaea325ad..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/glass_pane/4.png b/front/public/images/small/chisel/glass_pane/4.png deleted file mode 100644 index 94f94b988e..0000000000 Binary files a/front/public/images/small/chisel/glass_pane/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/0.png b/front/public/images/small/chisel/glotek/0.png deleted file mode 100644 index 2d1a109a59..0000000000 Binary files a/front/public/images/small/chisel/glotek/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/1.png b/front/public/images/small/chisel/glotek/1.png deleted file mode 100644 index 04e53aca5a..0000000000 Binary files a/front/public/images/small/chisel/glotek/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/10.png b/front/public/images/small/chisel/glotek/10.png deleted file mode 100644 index 32931af583..0000000000 Binary files a/front/public/images/small/chisel/glotek/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/11.png b/front/public/images/small/chisel/glotek/11.png deleted file mode 100644 index a589bcb321..0000000000 Binary files a/front/public/images/small/chisel/glotek/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/12.png b/front/public/images/small/chisel/glotek/12.png deleted file mode 100644 index 26ccf8261b..0000000000 Binary files a/front/public/images/small/chisel/glotek/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/13.png b/front/public/images/small/chisel/glotek/13.png deleted file mode 100644 index 5d83967588..0000000000 Binary files a/front/public/images/small/chisel/glotek/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/14.png b/front/public/images/small/chisel/glotek/14.png deleted file mode 100644 index 11909e6f17..0000000000 Binary files a/front/public/images/small/chisel/glotek/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/15.png b/front/public/images/small/chisel/glotek/15.png deleted file mode 100644 index 0931b55e91..0000000000 Binary files a/front/public/images/small/chisel/glotek/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/2.png b/front/public/images/small/chisel/glotek/2.png deleted file mode 100644 index 12af20f344..0000000000 Binary files a/front/public/images/small/chisel/glotek/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/3.png b/front/public/images/small/chisel/glotek/3.png deleted file mode 100644 index 3d84659198..0000000000 Binary files a/front/public/images/small/chisel/glotek/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/4.png b/front/public/images/small/chisel/glotek/4.png deleted file mode 100644 index eabbb9b7bc..0000000000 Binary files a/front/public/images/small/chisel/glotek/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/5.png b/front/public/images/small/chisel/glotek/5.png deleted file mode 100644 index 46f984cb39..0000000000 Binary files a/front/public/images/small/chisel/glotek/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/6.png b/front/public/images/small/chisel/glotek/6.png deleted file mode 100644 index 45c5d802c7..0000000000 Binary files a/front/public/images/small/chisel/glotek/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/7.png b/front/public/images/small/chisel/glotek/7.png deleted file mode 100644 index a98e1b6bb8..0000000000 Binary files a/front/public/images/small/chisel/glotek/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/8.png b/front/public/images/small/chisel/glotek/8.png deleted file mode 100644 index f16b6e9562..0000000000 Binary files a/front/public/images/small/chisel/glotek/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/glotek/9.png b/front/public/images/small/chisel/glotek/9.png deleted file mode 100644 index ad441af0eb..0000000000 Binary files a/front/public/images/small/chisel/glotek/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/1.png b/front/public/images/small/chisel/glowstone/1.png deleted file mode 100644 index abfa354b93..0000000000 Binary files a/front/public/images/small/chisel/glowstone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/10.png b/front/public/images/small/chisel/glowstone/10.png deleted file mode 100644 index f8039bebe3..0000000000 Binary files a/front/public/images/small/chisel/glowstone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/11.png b/front/public/images/small/chisel/glowstone/11.png deleted file mode 100644 index 9d3c8edf62..0000000000 Binary files a/front/public/images/small/chisel/glowstone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/12.png b/front/public/images/small/chisel/glowstone/12.png deleted file mode 100644 index 509c9f7e46..0000000000 Binary files a/front/public/images/small/chisel/glowstone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/13.png b/front/public/images/small/chisel/glowstone/13.png deleted file mode 100644 index 17ab44903c..0000000000 Binary files a/front/public/images/small/chisel/glowstone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/14.png b/front/public/images/small/chisel/glowstone/14.png deleted file mode 100644 index f7be1fc824..0000000000 Binary files a/front/public/images/small/chisel/glowstone/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/15.png b/front/public/images/small/chisel/glowstone/15.png deleted file mode 100644 index a445daeefc..0000000000 Binary files a/front/public/images/small/chisel/glowstone/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/2.png b/front/public/images/small/chisel/glowstone/2.png deleted file mode 100644 index 17ab44903c..0000000000 Binary files a/front/public/images/small/chisel/glowstone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/3.png b/front/public/images/small/chisel/glowstone/3.png deleted file mode 100644 index 7ffc90253a..0000000000 Binary files a/front/public/images/small/chisel/glowstone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/4.png b/front/public/images/small/chisel/glowstone/4.png deleted file mode 100644 index fd27a9adb9..0000000000 Binary files a/front/public/images/small/chisel/glowstone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/5.png b/front/public/images/small/chisel/glowstone/5.png deleted file mode 100644 index 2e2b6d1bea..0000000000 Binary files a/front/public/images/small/chisel/glowstone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/6.png b/front/public/images/small/chisel/glowstone/6.png deleted file mode 100644 index bdafcf9632..0000000000 Binary files a/front/public/images/small/chisel/glowstone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/7.png b/front/public/images/small/chisel/glowstone/7.png deleted file mode 100644 index ab4cd1afa0..0000000000 Binary files a/front/public/images/small/chisel/glowstone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/8.png b/front/public/images/small/chisel/glowstone/8.png deleted file mode 100644 index dc1a12df13..0000000000 Binary files a/front/public/images/small/chisel/glowstone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/glowstone/9.png b/front/public/images/small/chisel/glowstone/9.png deleted file mode 100644 index 3a1d4bc1df..0000000000 Binary files a/front/public/images/small/chisel/glowstone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold2/0.png b/front/public/images/small/chisel/gold2/0.png deleted file mode 100644 index 143dc7fde9..0000000000 Binary files a/front/public/images/small/chisel/gold2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold2/1.png b/front/public/images/small/chisel/gold2/1.png deleted file mode 100644 index bbce8db471..0000000000 Binary files a/front/public/images/small/chisel/gold2/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold2/2.png b/front/public/images/small/chisel/gold2/2.png deleted file mode 100644 index 6be52cd0d7..0000000000 Binary files a/front/public/images/small/chisel/gold2/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold2/3.png b/front/public/images/small/chisel/gold2/3.png deleted file mode 100644 index c1219b2830..0000000000 Binary files a/front/public/images/small/chisel/gold2/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold2/4.png b/front/public/images/small/chisel/gold2/4.png deleted file mode 100644 index 021be11f06..0000000000 Binary files a/front/public/images/small/chisel/gold2/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold2/5.png b/front/public/images/small/chisel/gold2/5.png deleted file mode 100644 index 1a7ebafbdc..0000000000 Binary files a/front/public/images/small/chisel/gold2/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/1.png b/front/public/images/small/chisel/gold_block/1.png deleted file mode 100644 index 86a8be45ad..0000000000 Binary files a/front/public/images/small/chisel/gold_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/10.png b/front/public/images/small/chisel/gold_block/10.png deleted file mode 100644 index b09d7763de..0000000000 Binary files a/front/public/images/small/chisel/gold_block/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/11.png b/front/public/images/small/chisel/gold_block/11.png deleted file mode 100644 index d901f47ed0..0000000000 Binary files a/front/public/images/small/chisel/gold_block/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/12.png b/front/public/images/small/chisel/gold_block/12.png deleted file mode 100644 index 0369dbd4db..0000000000 Binary files a/front/public/images/small/chisel/gold_block/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/13.png b/front/public/images/small/chisel/gold_block/13.png deleted file mode 100644 index 4890bda821..0000000000 Binary files a/front/public/images/small/chisel/gold_block/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/14.png b/front/public/images/small/chisel/gold_block/14.png deleted file mode 100644 index b9f800bba3..0000000000 Binary files a/front/public/images/small/chisel/gold_block/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/2.png b/front/public/images/small/chisel/gold_block/2.png deleted file mode 100644 index 6fb848535c..0000000000 Binary files a/front/public/images/small/chisel/gold_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/3.png b/front/public/images/small/chisel/gold_block/3.png deleted file mode 100644 index 5b7e1ab197..0000000000 Binary files a/front/public/images/small/chisel/gold_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/4.png b/front/public/images/small/chisel/gold_block/4.png deleted file mode 100644 index 4270189ad4..0000000000 Binary files a/front/public/images/small/chisel/gold_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/5.png b/front/public/images/small/chisel/gold_block/5.png deleted file mode 100644 index 57a59205f6..0000000000 Binary files a/front/public/images/small/chisel/gold_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/6.png b/front/public/images/small/chisel/gold_block/6.png deleted file mode 100644 index 98b4f3cd37..0000000000 Binary files a/front/public/images/small/chisel/gold_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/7.png b/front/public/images/small/chisel/gold_block/7.png deleted file mode 100644 index 93932484c3..0000000000 Binary files a/front/public/images/small/chisel/gold_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/8.png b/front/public/images/small/chisel/gold_block/8.png deleted file mode 100644 index 6f0cab013a..0000000000 Binary files a/front/public/images/small/chisel/gold_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/gold_block/9.png b/front/public/images/small/chisel/gold_block/9.png deleted file mode 100644 index 248484c665..0000000000 Binary files a/front/public/images/small/chisel/gold_block/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/granite/0.png b/front/public/images/small/chisel/granite/0.png deleted file mode 100644 index 15113832b1..0000000000 Binary files a/front/public/images/small/chisel/granite/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/granite/1.png b/front/public/images/small/chisel/granite/1.png deleted file mode 100644 index b868c93042..0000000000 Binary files a/front/public/images/small/chisel/granite/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/granite/2.png b/front/public/images/small/chisel/granite/2.png deleted file mode 100644 index 3ee52f0d2f..0000000000 Binary files a/front/public/images/small/chisel/granite/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/granite/3.png b/front/public/images/small/chisel/granite/3.png deleted file mode 100644 index 8b78bfcf33..0000000000 Binary files a/front/public/images/small/chisel/granite/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/granite/4.png b/front/public/images/small/chisel/granite/4.png deleted file mode 100644 index e21a3a2419..0000000000 Binary files a/front/public/images/small/chisel/granite/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/granite/5.png b/front/public/images/small/chisel/granite/5.png deleted file mode 100644 index 1af381b50e..0000000000 Binary files a/front/public/images/small/chisel/granite/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/granite/6.png b/front/public/images/small/chisel/granite/6.png deleted file mode 100644 index e52aae6f1c..0000000000 Binary files a/front/public/images/small/chisel/granite/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/0.png b/front/public/images/small/chisel/grimstone/0.png deleted file mode 100644 index 40d67a2a93..0000000000 Binary files a/front/public/images/small/chisel/grimstone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/1.png b/front/public/images/small/chisel/grimstone/1.png deleted file mode 100644 index 5b50f737df..0000000000 Binary files a/front/public/images/small/chisel/grimstone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/10.png b/front/public/images/small/chisel/grimstone/10.png deleted file mode 100644 index c0f43ddbde..0000000000 Binary files a/front/public/images/small/chisel/grimstone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/11.png b/front/public/images/small/chisel/grimstone/11.png deleted file mode 100644 index 1516222c44..0000000000 Binary files a/front/public/images/small/chisel/grimstone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/12.png b/front/public/images/small/chisel/grimstone/12.png deleted file mode 100644 index 56394f32d7..0000000000 Binary files a/front/public/images/small/chisel/grimstone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/13.png b/front/public/images/small/chisel/grimstone/13.png deleted file mode 100644 index 6073394eef..0000000000 Binary files a/front/public/images/small/chisel/grimstone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/14.png b/front/public/images/small/chisel/grimstone/14.png deleted file mode 100644 index 2c9b173300..0000000000 Binary files a/front/public/images/small/chisel/grimstone/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/2.png b/front/public/images/small/chisel/grimstone/2.png deleted file mode 100644 index 72cff47409..0000000000 Binary files a/front/public/images/small/chisel/grimstone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/3.png b/front/public/images/small/chisel/grimstone/3.png deleted file mode 100644 index ee2ad39700..0000000000 Binary files a/front/public/images/small/chisel/grimstone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/4.png b/front/public/images/small/chisel/grimstone/4.png deleted file mode 100644 index d9102b72ac..0000000000 Binary files a/front/public/images/small/chisel/grimstone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/5.png b/front/public/images/small/chisel/grimstone/5.png deleted file mode 100644 index 67f67ea4d0..0000000000 Binary files a/front/public/images/small/chisel/grimstone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/6.png b/front/public/images/small/chisel/grimstone/6.png deleted file mode 100644 index 024078c5d0..0000000000 Binary files a/front/public/images/small/chisel/grimstone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/7.png b/front/public/images/small/chisel/grimstone/7.png deleted file mode 100644 index 9cefee50e6..0000000000 Binary files a/front/public/images/small/chisel/grimstone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/8.png b/front/public/images/small/chisel/grimstone/8.png deleted file mode 100644 index 4957541e1e..0000000000 Binary files a/front/public/images/small/chisel/grimstone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/grimstone/9.png b/front/public/images/small/chisel/grimstone/9.png deleted file mode 100644 index 7cd606f2b5..0000000000 Binary files a/front/public/images/small/chisel/grimstone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/0.png b/front/public/images/small/chisel/hempcrete/0.png deleted file mode 100644 index 60a07e0847..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/1.png b/front/public/images/small/chisel/hempcrete/1.png deleted file mode 100644 index 06e2871f9c..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/10.png b/front/public/images/small/chisel/hempcrete/10.png deleted file mode 100644 index 73249a1110..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/11.png b/front/public/images/small/chisel/hempcrete/11.png deleted file mode 100644 index f1dac31d0c..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/12.png b/front/public/images/small/chisel/hempcrete/12.png deleted file mode 100644 index b27cf87e69..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/13.png b/front/public/images/small/chisel/hempcrete/13.png deleted file mode 100644 index 7d0a8dd80c..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/14.png b/front/public/images/small/chisel/hempcrete/14.png deleted file mode 100644 index 4583fde0ac..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/15.png b/front/public/images/small/chisel/hempcrete/15.png deleted file mode 100644 index 393a54897c..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/2.png b/front/public/images/small/chisel/hempcrete/2.png deleted file mode 100644 index 602bd246e4..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/3.png b/front/public/images/small/chisel/hempcrete/3.png deleted file mode 100644 index f205420ca3..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/4.png b/front/public/images/small/chisel/hempcrete/4.png deleted file mode 100644 index ddaf463aa4..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/5.png b/front/public/images/small/chisel/hempcrete/5.png deleted file mode 100644 index 54cb8b4922..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/6.png b/front/public/images/small/chisel/hempcrete/6.png deleted file mode 100644 index aaa970df10..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/7.png b/front/public/images/small/chisel/hempcrete/7.png deleted file mode 100644 index 679c83e4a4..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/8.png b/front/public/images/small/chisel/hempcrete/8.png deleted file mode 100644 index e8a867c851..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcrete/9.png b/front/public/images/small/chisel/hempcrete/9.png deleted file mode 100644 index 45e399e476..0000000000 Binary files a/front/public/images/small/chisel/hempcrete/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/0.png b/front/public/images/small/chisel/hempcretesand/0.png deleted file mode 100644 index 3915a6d784..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/1.png b/front/public/images/small/chisel/hempcretesand/1.png deleted file mode 100644 index c7e770e043..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/10.png b/front/public/images/small/chisel/hempcretesand/10.png deleted file mode 100644 index 517c4c5395..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/11.png b/front/public/images/small/chisel/hempcretesand/11.png deleted file mode 100644 index 71c060184f..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/12.png b/front/public/images/small/chisel/hempcretesand/12.png deleted file mode 100644 index 5b003477ae..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/13.png b/front/public/images/small/chisel/hempcretesand/13.png deleted file mode 100644 index b270eeda8a..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/14.png b/front/public/images/small/chisel/hempcretesand/14.png deleted file mode 100644 index b1fe0f0e52..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/15.png b/front/public/images/small/chisel/hempcretesand/15.png deleted file mode 100644 index bc00cc0d2b..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/2.png b/front/public/images/small/chisel/hempcretesand/2.png deleted file mode 100644 index 56c4031c4f..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/3.png b/front/public/images/small/chisel/hempcretesand/3.png deleted file mode 100644 index 616a852b32..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/4.png b/front/public/images/small/chisel/hempcretesand/4.png deleted file mode 100644 index 9266b5955b..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/5.png b/front/public/images/small/chisel/hempcretesand/5.png deleted file mode 100644 index de2a55b50b..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/6.png b/front/public/images/small/chisel/hempcretesand/6.png deleted file mode 100644 index 12b6811214..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/7.png b/front/public/images/small/chisel/hempcretesand/7.png deleted file mode 100644 index c08c0b2c75..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/8.png b/front/public/images/small/chisel/hempcretesand/8.png deleted file mode 100644 index 51d6c23f56..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/hempcretesand/9.png b/front/public/images/small/chisel/hempcretesand/9.png deleted file mode 100644 index 9aa6ce2aa6..0000000000 Binary files a/front/public/images/small/chisel/hempcretesand/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/0.png b/front/public/images/small/chisel/hexLargePlating/0.png deleted file mode 100644 index c4356ed354..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/1.png b/front/public/images/small/chisel/hexLargePlating/1.png deleted file mode 100644 index f93d15657d..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/10.png b/front/public/images/small/chisel/hexLargePlating/10.png deleted file mode 100644 index 44048b4ef6..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/11.png b/front/public/images/small/chisel/hexLargePlating/11.png deleted file mode 100644 index 578f3ff29d..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/12.png b/front/public/images/small/chisel/hexLargePlating/12.png deleted file mode 100644 index 1b8665189f..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/13.png b/front/public/images/small/chisel/hexLargePlating/13.png deleted file mode 100644 index 6257fb3243..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/14.png b/front/public/images/small/chisel/hexLargePlating/14.png deleted file mode 100644 index 3351c2bbd4..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/15.png b/front/public/images/small/chisel/hexLargePlating/15.png deleted file mode 100644 index f927cab21a..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/2.png b/front/public/images/small/chisel/hexLargePlating/2.png deleted file mode 100644 index 7d04fda3f4..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/3.png b/front/public/images/small/chisel/hexLargePlating/3.png deleted file mode 100644 index 277ab6406d..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/4.png b/front/public/images/small/chisel/hexLargePlating/4.png deleted file mode 100644 index 879d421327..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/5.png b/front/public/images/small/chisel/hexLargePlating/5.png deleted file mode 100644 index 0a059149a0..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/6.png b/front/public/images/small/chisel/hexLargePlating/6.png deleted file mode 100644 index 044847debc..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/7.png b/front/public/images/small/chisel/hexLargePlating/7.png deleted file mode 100644 index 0d6c1f0262..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/8.png b/front/public/images/small/chisel/hexLargePlating/8.png deleted file mode 100644 index 9735b27f33..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexLargePlating/9.png b/front/public/images/small/chisel/hexLargePlating/9.png deleted file mode 100644 index 69fd96ed53..0000000000 Binary files a/front/public/images/small/chisel/hexLargePlating/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/0.png b/front/public/images/small/chisel/hexPlating/0.png deleted file mode 100644 index 8a246679c0..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/1.png b/front/public/images/small/chisel/hexPlating/1.png deleted file mode 100644 index 86ddf9dc25..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/10.png b/front/public/images/small/chisel/hexPlating/10.png deleted file mode 100644 index db22e5ed94..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/11.png b/front/public/images/small/chisel/hexPlating/11.png deleted file mode 100644 index 29650c1220..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/12.png b/front/public/images/small/chisel/hexPlating/12.png deleted file mode 100644 index 27b2da99ac..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/13.png b/front/public/images/small/chisel/hexPlating/13.png deleted file mode 100644 index 3dc01c14d9..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/14.png b/front/public/images/small/chisel/hexPlating/14.png deleted file mode 100644 index cd6a410198..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/15.png b/front/public/images/small/chisel/hexPlating/15.png deleted file mode 100644 index 0b6a59eebb..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/2.png b/front/public/images/small/chisel/hexPlating/2.png deleted file mode 100644 index e020c05dde..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/3.png b/front/public/images/small/chisel/hexPlating/3.png deleted file mode 100644 index 98d4349352..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/4.png b/front/public/images/small/chisel/hexPlating/4.png deleted file mode 100644 index 253b45ef3a..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/5.png b/front/public/images/small/chisel/hexPlating/5.png deleted file mode 100644 index e66309daa1..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/6.png b/front/public/images/small/chisel/hexPlating/6.png deleted file mode 100644 index 04e60894e0..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/7.png b/front/public/images/small/chisel/hexPlating/7.png deleted file mode 100644 index d19b377801..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/8.png b/front/public/images/small/chisel/hexPlating/8.png deleted file mode 100644 index db555c0446..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/hexPlating/9.png b/front/public/images/small/chisel/hexPlating/9.png deleted file mode 100644 index 67265cd470..0000000000 Binary files a/front/public/images/small/chisel/hexPlating/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/0.png b/front/public/images/small/chisel/holystone/0.png deleted file mode 100644 index c940398661..0000000000 Binary files a/front/public/images/small/chisel/holystone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/1.png b/front/public/images/small/chisel/holystone/1.png deleted file mode 100644 index 46527a8dee..0000000000 Binary files a/front/public/images/small/chisel/holystone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/10.png b/front/public/images/small/chisel/holystone/10.png deleted file mode 100644 index 103fc50d1e..0000000000 Binary files a/front/public/images/small/chisel/holystone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/11.png b/front/public/images/small/chisel/holystone/11.png deleted file mode 100644 index 9dacc58009..0000000000 Binary files a/front/public/images/small/chisel/holystone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/12.png b/front/public/images/small/chisel/holystone/12.png deleted file mode 100644 index 3b89b8d281..0000000000 Binary files a/front/public/images/small/chisel/holystone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/13.png b/front/public/images/small/chisel/holystone/13.png deleted file mode 100644 index b2be70dde7..0000000000 Binary files a/front/public/images/small/chisel/holystone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/2.png b/front/public/images/small/chisel/holystone/2.png deleted file mode 100644 index 65bd2ffad2..0000000000 Binary files a/front/public/images/small/chisel/holystone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/3.png b/front/public/images/small/chisel/holystone/3.png deleted file mode 100644 index 0ca271da81..0000000000 Binary files a/front/public/images/small/chisel/holystone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/4.png b/front/public/images/small/chisel/holystone/4.png deleted file mode 100644 index 6f83ebde29..0000000000 Binary files a/front/public/images/small/chisel/holystone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/5.png b/front/public/images/small/chisel/holystone/5.png deleted file mode 100644 index 7a223b46c9..0000000000 Binary files a/front/public/images/small/chisel/holystone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/6.png b/front/public/images/small/chisel/holystone/6.png deleted file mode 100644 index a465d3109e..0000000000 Binary files a/front/public/images/small/chisel/holystone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/7.png b/front/public/images/small/chisel/holystone/7.png deleted file mode 100644 index 61b5e8862d..0000000000 Binary files a/front/public/images/small/chisel/holystone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/8.png b/front/public/images/small/chisel/holystone/8.png deleted file mode 100644 index 3c2e08fca5..0000000000 Binary files a/front/public/images/small/chisel/holystone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/holystone/9.png b/front/public/images/small/chisel/holystone/9.png deleted file mode 100644 index 8d18c7f9d0..0000000000 Binary files a/front/public/images/small/chisel/holystone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/1.png b/front/public/images/small/chisel/ice/1.png deleted file mode 100644 index 524fde86d8..0000000000 Binary files a/front/public/images/small/chisel/ice/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/10.png b/front/public/images/small/chisel/ice/10.png deleted file mode 100644 index 525bd62481..0000000000 Binary files a/front/public/images/small/chisel/ice/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/11.png b/front/public/images/small/chisel/ice/11.png deleted file mode 100644 index d0b1419a98..0000000000 Binary files a/front/public/images/small/chisel/ice/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/12.png b/front/public/images/small/chisel/ice/12.png deleted file mode 100644 index 7711515c90..0000000000 Binary files a/front/public/images/small/chisel/ice/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/13.png b/front/public/images/small/chisel/ice/13.png deleted file mode 100644 index 98644cdddd..0000000000 Binary files a/front/public/images/small/chisel/ice/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/14.png b/front/public/images/small/chisel/ice/14.png deleted file mode 100644 index 8f80ce4a54..0000000000 Binary files a/front/public/images/small/chisel/ice/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/15.png b/front/public/images/small/chisel/ice/15.png deleted file mode 100644 index c28f84eeaf..0000000000 Binary files a/front/public/images/small/chisel/ice/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/2.png b/front/public/images/small/chisel/ice/2.png deleted file mode 100644 index 21480452a9..0000000000 Binary files a/front/public/images/small/chisel/ice/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/3.png b/front/public/images/small/chisel/ice/3.png deleted file mode 100644 index 54a338a662..0000000000 Binary files a/front/public/images/small/chisel/ice/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/4.png b/front/public/images/small/chisel/ice/4.png deleted file mode 100644 index 41ec8dd42d..0000000000 Binary files a/front/public/images/small/chisel/ice/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/5.png b/front/public/images/small/chisel/ice/5.png deleted file mode 100644 index febdc96b2f..0000000000 Binary files a/front/public/images/small/chisel/ice/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/6.png b/front/public/images/small/chisel/ice/6.png deleted file mode 100644 index cbdf8c63c7..0000000000 Binary files a/front/public/images/small/chisel/ice/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/7.png b/front/public/images/small/chisel/ice/7.png deleted file mode 100644 index 846007e4bb..0000000000 Binary files a/front/public/images/small/chisel/ice/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/8.png b/front/public/images/small/chisel/ice/8.png deleted file mode 100644 index 62ff73ce05..0000000000 Binary files a/front/public/images/small/chisel/ice/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice/9.png b/front/public/images/small/chisel/ice/9.png deleted file mode 100644 index 01d6834752..0000000000 Binary files a/front/public/images/small/chisel/ice/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_pillar/0.png b/front/public/images/small/chisel/ice_pillar/0.png deleted file mode 100644 index 6957f8568b..0000000000 Binary files a/front/public/images/small/chisel/ice_pillar/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_pillar/1.png b/front/public/images/small/chisel/ice_pillar/1.png deleted file mode 100644 index 431994cc79..0000000000 Binary files a/front/public/images/small/chisel/ice_pillar/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_pillar/2.png b/front/public/images/small/chisel/ice_pillar/2.png deleted file mode 100644 index 36d56a7d40..0000000000 Binary files a/front/public/images/small/chisel/ice_pillar/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_pillar/3.png b/front/public/images/small/chisel/ice_pillar/3.png deleted file mode 100644 index 5f72c90059..0000000000 Binary files a/front/public/images/small/chisel/ice_pillar/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_pillar/4.png b/front/public/images/small/chisel/ice_pillar/4.png deleted file mode 100644 index b4f231d8fc..0000000000 Binary files a/front/public/images/small/chisel/ice_pillar/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_pillar/5.png b/front/public/images/small/chisel/ice_pillar/5.png deleted file mode 100644 index a73d9167b7..0000000000 Binary files a/front/public/images/small/chisel/ice_pillar/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_pillar/6.png b/front/public/images/small/chisel/ice_pillar/6.png deleted file mode 100644 index 40859b5e03..0000000000 Binary files a/front/public/images/small/chisel/ice_pillar/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.0/0.png b/front/public/images/small/chisel/ice_stairs.0/0.png deleted file mode 100644 index 262ca72eac..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.0/8.png b/front/public/images/small/chisel/ice_stairs.0/8.png deleted file mode 100644 index f8dc40a7b7..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.1/0.png b/front/public/images/small/chisel/ice_stairs.1/0.png deleted file mode 100644 index 30d6b252aa..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.1/8.png b/front/public/images/small/chisel/ice_stairs.1/8.png deleted file mode 100644 index 9ddfa12017..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.2/0.png b/front/public/images/small/chisel/ice_stairs.2/0.png deleted file mode 100644 index 110689de83..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.2/8.png b/front/public/images/small/chisel/ice_stairs.2/8.png deleted file mode 100644 index 3ad5e2e187..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.3/0.png b/front/public/images/small/chisel/ice_stairs.3/0.png deleted file mode 100644 index d17fd839ad..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.3/8.png b/front/public/images/small/chisel/ice_stairs.3/8.png deleted file mode 100644 index e22f503ee0..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.4/0.png b/front/public/images/small/chisel/ice_stairs.4/0.png deleted file mode 100644 index 1b81d14050..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.4/8.png b/front/public/images/small/chisel/ice_stairs.4/8.png deleted file mode 100644 index 60f3f8b663..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.5/0.png b/front/public/images/small/chisel/ice_stairs.5/0.png deleted file mode 100644 index 4110183145..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.5/8.png b/front/public/images/small/chisel/ice_stairs.5/8.png deleted file mode 100644 index 0d00c395c7..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.6/0.png b/front/public/images/small/chisel/ice_stairs.6/0.png deleted file mode 100644 index b38f59f51f..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.6/8.png b/front/public/images/small/chisel/ice_stairs.6/8.png deleted file mode 100644 index 9a926860d8..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.7/0.png b/front/public/images/small/chisel/ice_stairs.7/0.png deleted file mode 100644 index 1b8ae79881..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/ice_stairs.7/8.png b/front/public/images/small/chisel/ice_stairs.7/8.png deleted file mode 100644 index 2d1028b399..0000000000 Binary files a/front/public/images/small/chisel/ice_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron2/0.png b/front/public/images/small/chisel/iron2/0.png deleted file mode 100644 index 0b1d876dff..0000000000 Binary files a/front/public/images/small/chisel/iron2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron2/1.png b/front/public/images/small/chisel/iron2/1.png deleted file mode 100644 index d3c691e9c7..0000000000 Binary files a/front/public/images/small/chisel/iron2/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron2/2.png b/front/public/images/small/chisel/iron2/2.png deleted file mode 100644 index b44e7eb8a5..0000000000 Binary files a/front/public/images/small/chisel/iron2/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron2/3.png b/front/public/images/small/chisel/iron2/3.png deleted file mode 100644 index 2abbe47c6c..0000000000 Binary files a/front/public/images/small/chisel/iron2/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron2/4.png b/front/public/images/small/chisel/iron2/4.png deleted file mode 100644 index e5cf49b1ac..0000000000 Binary files a/front/public/images/small/chisel/iron2/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron2/5.png b/front/public/images/small/chisel/iron2/5.png deleted file mode 100644 index 2075607b2f..0000000000 Binary files a/front/public/images/small/chisel/iron2/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/1.png b/front/public/images/small/chisel/iron_bars/1.png deleted file mode 100644 index 5b8bd77b10..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/2.png b/front/public/images/small/chisel/iron_bars/2.png deleted file mode 100644 index c8b60228cc..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/3.png b/front/public/images/small/chisel/iron_bars/3.png deleted file mode 100644 index 2717afdc1f..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/4.png b/front/public/images/small/chisel/iron_bars/4.png deleted file mode 100644 index b41b6bdadf..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/5.png b/front/public/images/small/chisel/iron_bars/5.png deleted file mode 100644 index 50bffb7766..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/6.png b/front/public/images/small/chisel/iron_bars/6.png deleted file mode 100644 index 3d1f1a7f93..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/7.png b/front/public/images/small/chisel/iron_bars/7.png deleted file mode 100644 index 94ae52b158..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/8.png b/front/public/images/small/chisel/iron_bars/8.png deleted file mode 100644 index d089061229..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_bars/9.png b/front/public/images/small/chisel/iron_bars/9.png deleted file mode 100644 index ae09ed9ed6..0000000000 Binary files a/front/public/images/small/chisel/iron_bars/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/1.png b/front/public/images/small/chisel/iron_block/1.png deleted file mode 100644 index 8a4acc098e..0000000000 Binary files a/front/public/images/small/chisel/iron_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/10.png b/front/public/images/small/chisel/iron_block/10.png deleted file mode 100644 index b629db7aa4..0000000000 Binary files a/front/public/images/small/chisel/iron_block/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/11.png b/front/public/images/small/chisel/iron_block/11.png deleted file mode 100644 index b02b914ddb..0000000000 Binary files a/front/public/images/small/chisel/iron_block/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/12.png b/front/public/images/small/chisel/iron_block/12.png deleted file mode 100644 index dff0f13109..0000000000 Binary files a/front/public/images/small/chisel/iron_block/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/13.png b/front/public/images/small/chisel/iron_block/13.png deleted file mode 100644 index e0f2b69720..0000000000 Binary files a/front/public/images/small/chisel/iron_block/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/14.png b/front/public/images/small/chisel/iron_block/14.png deleted file mode 100644 index 1322016268..0000000000 Binary files a/front/public/images/small/chisel/iron_block/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/15.png b/front/public/images/small/chisel/iron_block/15.png deleted file mode 100644 index eba49709a3..0000000000 Binary files a/front/public/images/small/chisel/iron_block/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/2.png b/front/public/images/small/chisel/iron_block/2.png deleted file mode 100644 index 12b135a218..0000000000 Binary files a/front/public/images/small/chisel/iron_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/3.png b/front/public/images/small/chisel/iron_block/3.png deleted file mode 100644 index c5d10e8c24..0000000000 Binary files a/front/public/images/small/chisel/iron_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/4.png b/front/public/images/small/chisel/iron_block/4.png deleted file mode 100644 index 81fe344484..0000000000 Binary files a/front/public/images/small/chisel/iron_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/5.png b/front/public/images/small/chisel/iron_block/5.png deleted file mode 100644 index 36ce82354d..0000000000 Binary files a/front/public/images/small/chisel/iron_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/6.png b/front/public/images/small/chisel/iron_block/6.png deleted file mode 100644 index 7fd29ae53b..0000000000 Binary files a/front/public/images/small/chisel/iron_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/7.png b/front/public/images/small/chisel/iron_block/7.png deleted file mode 100644 index ac5596ac80..0000000000 Binary files a/front/public/images/small/chisel/iron_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/8.png b/front/public/images/small/chisel/iron_block/8.png deleted file mode 100644 index a2583518b1..0000000000 Binary files a/front/public/images/small/chisel/iron_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/iron_block/9.png b/front/public/images/small/chisel/iron_block/9.png deleted file mode 100644 index b9998a5f5f..0000000000 Binary files a/front/public/images/small/chisel/iron_block/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern1/0.png b/front/public/images/small/chisel/jackolantern1/0.png deleted file mode 100644 index 5fa34830b9..0000000000 Binary files a/front/public/images/small/chisel/jackolantern1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern10/0.png b/front/public/images/small/chisel/jackolantern10/0.png deleted file mode 100644 index d1102e066c..0000000000 Binary files a/front/public/images/small/chisel/jackolantern10/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern11/0.png b/front/public/images/small/chisel/jackolantern11/0.png deleted file mode 100644 index a8b9afc1f3..0000000000 Binary files a/front/public/images/small/chisel/jackolantern11/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern12/0.png b/front/public/images/small/chisel/jackolantern12/0.png deleted file mode 100644 index 089473fb27..0000000000 Binary files a/front/public/images/small/chisel/jackolantern12/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern13/0.png b/front/public/images/small/chisel/jackolantern13/0.png deleted file mode 100644 index 34d1e7a739..0000000000 Binary files a/front/public/images/small/chisel/jackolantern13/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern14/0.png b/front/public/images/small/chisel/jackolantern14/0.png deleted file mode 100644 index fcc5330d86..0000000000 Binary files a/front/public/images/small/chisel/jackolantern14/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern15/0.png b/front/public/images/small/chisel/jackolantern15/0.png deleted file mode 100644 index 8aed9371e1..0000000000 Binary files a/front/public/images/small/chisel/jackolantern15/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern16/0.png b/front/public/images/small/chisel/jackolantern16/0.png deleted file mode 100644 index ff40359ae4..0000000000 Binary files a/front/public/images/small/chisel/jackolantern16/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern2/0.png b/front/public/images/small/chisel/jackolantern2/0.png deleted file mode 100644 index 41805e7304..0000000000 Binary files a/front/public/images/small/chisel/jackolantern2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern3/0.png b/front/public/images/small/chisel/jackolantern3/0.png deleted file mode 100644 index 1efe6cc29f..0000000000 Binary files a/front/public/images/small/chisel/jackolantern3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern4/0.png b/front/public/images/small/chisel/jackolantern4/0.png deleted file mode 100644 index 61961795cf..0000000000 Binary files a/front/public/images/small/chisel/jackolantern4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern5/0.png b/front/public/images/small/chisel/jackolantern5/0.png deleted file mode 100644 index f301faa831..0000000000 Binary files a/front/public/images/small/chisel/jackolantern5/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern6/0.png b/front/public/images/small/chisel/jackolantern6/0.png deleted file mode 100644 index c878ae756c..0000000000 Binary files a/front/public/images/small/chisel/jackolantern6/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern7/0.png b/front/public/images/small/chisel/jackolantern7/0.png deleted file mode 100644 index 179f2352bd..0000000000 Binary files a/front/public/images/small/chisel/jackolantern7/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern8/0.png b/front/public/images/small/chisel/jackolantern8/0.png deleted file mode 100644 index 8dfa4ae20c..0000000000 Binary files a/front/public/images/small/chisel/jackolantern8/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jackolantern9/0.png b/front/public/images/small/chisel/jackolantern9/0.png deleted file mode 100644 index 654c690300..0000000000 Binary files a/front/public/images/small/chisel/jackolantern9/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/1.png b/front/public/images/small/chisel/jungle_planks/1.png deleted file mode 100644 index 872bc2b0aa..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/10.png b/front/public/images/small/chisel/jungle_planks/10.png deleted file mode 100644 index fb42b813c9..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/11.png b/front/public/images/small/chisel/jungle_planks/11.png deleted file mode 100644 index d4d70cce17..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/12.png b/front/public/images/small/chisel/jungle_planks/12.png deleted file mode 100644 index abda899dd2..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/13.png b/front/public/images/small/chisel/jungle_planks/13.png deleted file mode 100644 index 473fafa671..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/14.png b/front/public/images/small/chisel/jungle_planks/14.png deleted file mode 100644 index 3e3e1213ef..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/15.png b/front/public/images/small/chisel/jungle_planks/15.png deleted file mode 100644 index e2890606f4..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/2.png b/front/public/images/small/chisel/jungle_planks/2.png deleted file mode 100644 index aeb8fd877b..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/3.png b/front/public/images/small/chisel/jungle_planks/3.png deleted file mode 100644 index 0bd463ac0e..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/4.png b/front/public/images/small/chisel/jungle_planks/4.png deleted file mode 100644 index 8413979234..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/5.png b/front/public/images/small/chisel/jungle_planks/5.png deleted file mode 100644 index 4390b72a15..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/6.png b/front/public/images/small/chisel/jungle_planks/6.png deleted file mode 100644 index 7747c1cc91..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/7.png b/front/public/images/small/chisel/jungle_planks/7.png deleted file mode 100644 index 1f25d87846..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/8.png b/front/public/images/small/chisel/jungle_planks/8.png deleted file mode 100644 index 7b5a7343a4..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/jungle_planks/9.png b/front/public/images/small/chisel/jungle_planks/9.png deleted file mode 100644 index cb76196ca3..0000000000 Binary files a/front/public/images/small/chisel/jungle_planks/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/0.png b/front/public/images/small/chisel/laboratoryblock/0.png deleted file mode 100644 index 753a5f72f8..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/1.png b/front/public/images/small/chisel/laboratoryblock/1.png deleted file mode 100644 index ee1743759c..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/10.png b/front/public/images/small/chisel/laboratoryblock/10.png deleted file mode 100644 index 8c8cecf9ba..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/11.png b/front/public/images/small/chisel/laboratoryblock/11.png deleted file mode 100644 index cdc8f16fba..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/12.png b/front/public/images/small/chisel/laboratoryblock/12.png deleted file mode 100644 index f35cac3917..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/13.png b/front/public/images/small/chisel/laboratoryblock/13.png deleted file mode 100644 index 1e0be0df31..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/14.png b/front/public/images/small/chisel/laboratoryblock/14.png deleted file mode 100644 index 284e438765..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/15.png b/front/public/images/small/chisel/laboratoryblock/15.png deleted file mode 100644 index 5be50d5950..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/2.png b/front/public/images/small/chisel/laboratoryblock/2.png deleted file mode 100644 index 7cac561e05..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/3.png b/front/public/images/small/chisel/laboratoryblock/3.png deleted file mode 100644 index a822429ae4..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/4.png b/front/public/images/small/chisel/laboratoryblock/4.png deleted file mode 100644 index af8cebad08..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/5.png b/front/public/images/small/chisel/laboratoryblock/5.png deleted file mode 100644 index 1906a43855..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/6.png b/front/public/images/small/chisel/laboratoryblock/6.png deleted file mode 100644 index e97156d363..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/7.png b/front/public/images/small/chisel/laboratoryblock/7.png deleted file mode 100644 index 4c0c144dde..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/8.png b/front/public/images/small/chisel/laboratoryblock/8.png deleted file mode 100644 index 787932ddf4..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/laboratoryblock/9.png b/front/public/images/small/chisel/laboratoryblock/9.png deleted file mode 100644 index fe44cf3942..0000000000 Binary files a/front/public/images/small/chisel/laboratoryblock/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/1.png b/front/public/images/small/chisel/lapis_block/1.png deleted file mode 100644 index 209b4bb7ef..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/2.png b/front/public/images/small/chisel/lapis_block/2.png deleted file mode 100644 index 4486824301..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/3.png b/front/public/images/small/chisel/lapis_block/3.png deleted file mode 100644 index daaefefd59..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/4.png b/front/public/images/small/chisel/lapis_block/4.png deleted file mode 100644 index e8d2805366..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/5.png b/front/public/images/small/chisel/lapis_block/5.png deleted file mode 100644 index c097cc6acd..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/6.png b/front/public/images/small/chisel/lapis_block/6.png deleted file mode 100644 index 4947903b56..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/7.png b/front/public/images/small/chisel/lapis_block/7.png deleted file mode 100644 index cebd85bb92..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/lapis_block/8.png b/front/public/images/small/chisel/lapis_block/8.png deleted file mode 100644 index 3c632ebc6b..0000000000 Binary files a/front/public/images/small/chisel/lapis_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/0.png b/front/public/images/small/chisel/lavastone/0.png deleted file mode 100644 index 9d0f69b26e..0000000000 Binary files a/front/public/images/small/chisel/lavastone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/1.png b/front/public/images/small/chisel/lavastone/1.png deleted file mode 100644 index 57852534cd..0000000000 Binary files a/front/public/images/small/chisel/lavastone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/2.png b/front/public/images/small/chisel/lavastone/2.png deleted file mode 100644 index 2c32eadf53..0000000000 Binary files a/front/public/images/small/chisel/lavastone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/3.png b/front/public/images/small/chisel/lavastone/3.png deleted file mode 100644 index 094b17a969..0000000000 Binary files a/front/public/images/small/chisel/lavastone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/4.png b/front/public/images/small/chisel/lavastone/4.png deleted file mode 100644 index 38b9b61f64..0000000000 Binary files a/front/public/images/small/chisel/lavastone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/5.png b/front/public/images/small/chisel/lavastone/5.png deleted file mode 100644 index c0e7b78b9b..0000000000 Binary files a/front/public/images/small/chisel/lavastone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/6.png b/front/public/images/small/chisel/lavastone/6.png deleted file mode 100644 index 3bfa913a2f..0000000000 Binary files a/front/public/images/small/chisel/lavastone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/lavastone/7.png b/front/public/images/small/chisel/lavastone/7.png deleted file mode 100644 index 7d77410789..0000000000 Binary files a/front/public/images/small/chisel/lavastone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/leadblock/0.png b/front/public/images/small/chisel/leadblock/0.png deleted file mode 100644 index 0d1290e8e9..0000000000 Binary files a/front/public/images/small/chisel/leadblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/leadblock/1.png b/front/public/images/small/chisel/leadblock/1.png deleted file mode 100644 index 5a75ee98c3..0000000000 Binary files a/front/public/images/small/chisel/leadblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/leadblock/2.png b/front/public/images/small/chisel/leadblock/2.png deleted file mode 100644 index 92cfa37287..0000000000 Binary files a/front/public/images/small/chisel/leadblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/leadblock/3.png b/front/public/images/small/chisel/leadblock/3.png deleted file mode 100644 index bcd2e84bf4..0000000000 Binary files a/front/public/images/small/chisel/leadblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/leadblock/4.png b/front/public/images/small/chisel/leadblock/4.png deleted file mode 100644 index f31651ac1d..0000000000 Binary files a/front/public/images/small/chisel/leadblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/leadblock/5.png b/front/public/images/small/chisel/leadblock/5.png deleted file mode 100644 index 6aa1204281..0000000000 Binary files a/front/public/images/small/chisel/leadblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/leaves/10.png b/front/public/images/small/chisel/leaves/10.png deleted file mode 100644 index 4cfcb2b61b..0000000000 Binary files a/front/public/images/small/chisel/leaves/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/leaves/11.png b/front/public/images/small/chisel/leaves/11.png deleted file mode 100644 index 26f4bbd8d6..0000000000 Binary files a/front/public/images/small/chisel/leaves/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/leaves/12.png b/front/public/images/small/chisel/leaves/12.png deleted file mode 100644 index eac49c736a..0000000000 Binary files a/front/public/images/small/chisel/leaves/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/leaves/6.png b/front/public/images/small/chisel/leaves/6.png deleted file mode 100644 index 95565d00a2..0000000000 Binary files a/front/public/images/small/chisel/leaves/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/leaves/7.png b/front/public/images/small/chisel/leaves/7.png deleted file mode 100644 index e93353bea0..0000000000 Binary files a/front/public/images/small/chisel/leaves/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/leaves/8.png b/front/public/images/small/chisel/leaves/8.png deleted file mode 100644 index dc8c35a492..0000000000 Binary files a/front/public/images/small/chisel/leaves/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/leaves/9.png b/front/public/images/small/chisel/leaves/9.png deleted file mode 100644 index d2eeebf07d..0000000000 Binary files a/front/public/images/small/chisel/leaves/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/0.png b/front/public/images/small/chisel/limestone/0.png deleted file mode 100644 index 3dee9ffac3..0000000000 Binary files a/front/public/images/small/chisel/limestone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/1.png b/front/public/images/small/chisel/limestone/1.png deleted file mode 100644 index 1e56708e76..0000000000 Binary files a/front/public/images/small/chisel/limestone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/10.png b/front/public/images/small/chisel/limestone/10.png deleted file mode 100644 index 276035b0f0..0000000000 Binary files a/front/public/images/small/chisel/limestone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/11.png b/front/public/images/small/chisel/limestone/11.png deleted file mode 100644 index 34a24245f4..0000000000 Binary files a/front/public/images/small/chisel/limestone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/12.png b/front/public/images/small/chisel/limestone/12.png deleted file mode 100644 index 2364694755..0000000000 Binary files a/front/public/images/small/chisel/limestone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/13.png b/front/public/images/small/chisel/limestone/13.png deleted file mode 100644 index 6a335b9092..0000000000 Binary files a/front/public/images/small/chisel/limestone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/14.png b/front/public/images/small/chisel/limestone/14.png deleted file mode 100644 index f505907184..0000000000 Binary files a/front/public/images/small/chisel/limestone/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/15.png b/front/public/images/small/chisel/limestone/15.png deleted file mode 100644 index fe8f1ce0d2..0000000000 Binary files a/front/public/images/small/chisel/limestone/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/2.png b/front/public/images/small/chisel/limestone/2.png deleted file mode 100644 index a77fee89ac..0000000000 Binary files a/front/public/images/small/chisel/limestone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/3.png b/front/public/images/small/chisel/limestone/3.png deleted file mode 100644 index c63f31faaf..0000000000 Binary files a/front/public/images/small/chisel/limestone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/4.png b/front/public/images/small/chisel/limestone/4.png deleted file mode 100644 index ad94c9b9c2..0000000000 Binary files a/front/public/images/small/chisel/limestone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/5.png b/front/public/images/small/chisel/limestone/5.png deleted file mode 100644 index 7acc7e191f..0000000000 Binary files a/front/public/images/small/chisel/limestone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/6.png b/front/public/images/small/chisel/limestone/6.png deleted file mode 100644 index 54fde195ce..0000000000 Binary files a/front/public/images/small/chisel/limestone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/7.png b/front/public/images/small/chisel/limestone/7.png deleted file mode 100644 index c6a4da042c..0000000000 Binary files a/front/public/images/small/chisel/limestone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/8.png b/front/public/images/small/chisel/limestone/8.png deleted file mode 100644 index 2c10a28236..0000000000 Binary files a/front/public/images/small/chisel/limestone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone/9.png b/front/public/images/small/chisel/limestone/9.png deleted file mode 100644 index ac9c6d4139..0000000000 Binary files a/front/public/images/small/chisel/limestone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/0.png b/front/public/images/small/chisel/limestone_slab/0.png deleted file mode 100644 index 66662808d1..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/1.png b/front/public/images/small/chisel/limestone_slab/1.png deleted file mode 100644 index 503646c9be..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/10.png b/front/public/images/small/chisel/limestone_slab/10.png deleted file mode 100644 index 7c8e234e0f..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/11.png b/front/public/images/small/chisel/limestone_slab/11.png deleted file mode 100644 index 473d8f13b2..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/12.png b/front/public/images/small/chisel/limestone_slab/12.png deleted file mode 100644 index f5562482ce..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/13.png b/front/public/images/small/chisel/limestone_slab/13.png deleted file mode 100644 index c2121ab422..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/14.png b/front/public/images/small/chisel/limestone_slab/14.png deleted file mode 100644 index 00bde13fab..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/15.png b/front/public/images/small/chisel/limestone_slab/15.png deleted file mode 100644 index c901753cff..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/2.png b/front/public/images/small/chisel/limestone_slab/2.png deleted file mode 100644 index c2a90c4c59..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/3.png b/front/public/images/small/chisel/limestone_slab/3.png deleted file mode 100644 index 2256a71197..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/4.png b/front/public/images/small/chisel/limestone_slab/4.png deleted file mode 100644 index d94e14d691..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/5.png b/front/public/images/small/chisel/limestone_slab/5.png deleted file mode 100644 index 77c356e175..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/6.png b/front/public/images/small/chisel/limestone_slab/6.png deleted file mode 100644 index 018dac7e24..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/7.png b/front/public/images/small/chisel/limestone_slab/7.png deleted file mode 100644 index 7b5a18b815..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/8.png b/front/public/images/small/chisel/limestone_slab/8.png deleted file mode 100644 index 6761b759ca..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab/9.png b/front/public/images/small/chisel/limestone_slab/9.png deleted file mode 100644 index fc4c6656d5..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_slab_top/0.png b/front/public/images/small/chisel/limestone_slab_top/0.png deleted file mode 100644 index d27dbe6913..0000000000 Binary files a/front/public/images/small/chisel/limestone_slab_top/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.0/0.png b/front/public/images/small/chisel/limestone_stairs.0/0.png deleted file mode 100644 index eeedc99bc2..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.0/8.png b/front/public/images/small/chisel/limestone_stairs.0/8.png deleted file mode 100644 index b26ce18e09..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.1/0.png b/front/public/images/small/chisel/limestone_stairs.1/0.png deleted file mode 100644 index f21eeeb47b..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.1/8.png b/front/public/images/small/chisel/limestone_stairs.1/8.png deleted file mode 100644 index 08465deb77..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.2/0.png b/front/public/images/small/chisel/limestone_stairs.2/0.png deleted file mode 100644 index 85a25a16ed..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.2/8.png b/front/public/images/small/chisel/limestone_stairs.2/8.png deleted file mode 100644 index 34529a55e4..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.3/0.png b/front/public/images/small/chisel/limestone_stairs.3/0.png deleted file mode 100644 index 4880d5b4d8..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.3/8.png b/front/public/images/small/chisel/limestone_stairs.3/8.png deleted file mode 100644 index 48499407e9..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.4/0.png b/front/public/images/small/chisel/limestone_stairs.4/0.png deleted file mode 100644 index ba5259eb77..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.4/8.png b/front/public/images/small/chisel/limestone_stairs.4/8.png deleted file mode 100644 index 1d5709ceb8..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.5/0.png b/front/public/images/small/chisel/limestone_stairs.5/0.png deleted file mode 100644 index 698df6fa2d..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.5/8.png b/front/public/images/small/chisel/limestone_stairs.5/8.png deleted file mode 100644 index f815bc3b41..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.6/0.png b/front/public/images/small/chisel/limestone_stairs.6/0.png deleted file mode 100644 index e7c15cc585..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.6/8.png b/front/public/images/small/chisel/limestone_stairs.6/8.png deleted file mode 100644 index 9ca9f34d17..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.7/0.png b/front/public/images/small/chisel/limestone_stairs.7/0.png deleted file mode 100644 index 1d6dbdfa9a..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/limestone_stairs.7/8.png b/front/public/images/small/chisel/limestone_stairs.7/8.png deleted file mode 100644 index 0961ebbf5e..0000000000 Binary files a/front/public/images/small/chisel/limestone_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/0.png b/front/public/images/small/chisel/marble/0.png deleted file mode 100644 index 3beab224fc..0000000000 Binary files a/front/public/images/small/chisel/marble/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/1.png b/front/public/images/small/chisel/marble/1.png deleted file mode 100644 index f3c42c2127..0000000000 Binary files a/front/public/images/small/chisel/marble/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/10.png b/front/public/images/small/chisel/marble/10.png deleted file mode 100644 index 89c95c55ea..0000000000 Binary files a/front/public/images/small/chisel/marble/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/11.png b/front/public/images/small/chisel/marble/11.png deleted file mode 100644 index a78dfc7e4b..0000000000 Binary files a/front/public/images/small/chisel/marble/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/12.png b/front/public/images/small/chisel/marble/12.png deleted file mode 100644 index db26c072ce..0000000000 Binary files a/front/public/images/small/chisel/marble/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/13.png b/front/public/images/small/chisel/marble/13.png deleted file mode 100644 index 2683bb5690..0000000000 Binary files a/front/public/images/small/chisel/marble/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/14.png b/front/public/images/small/chisel/marble/14.png deleted file mode 100644 index b8b41eb7da..0000000000 Binary files a/front/public/images/small/chisel/marble/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/15.png b/front/public/images/small/chisel/marble/15.png deleted file mode 100644 index 9de79b3f05..0000000000 Binary files a/front/public/images/small/chisel/marble/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/2.png b/front/public/images/small/chisel/marble/2.png deleted file mode 100644 index 7b77a1121c..0000000000 Binary files a/front/public/images/small/chisel/marble/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/3.png b/front/public/images/small/chisel/marble/3.png deleted file mode 100644 index 3b43488e09..0000000000 Binary files a/front/public/images/small/chisel/marble/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/4.png b/front/public/images/small/chisel/marble/4.png deleted file mode 100644 index 5f2328cafb..0000000000 Binary files a/front/public/images/small/chisel/marble/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/5.png b/front/public/images/small/chisel/marble/5.png deleted file mode 100644 index 0a0ef041bf..0000000000 Binary files a/front/public/images/small/chisel/marble/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/6.png b/front/public/images/small/chisel/marble/6.png deleted file mode 100644 index 2f42337572..0000000000 Binary files a/front/public/images/small/chisel/marble/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/7.png b/front/public/images/small/chisel/marble/7.png deleted file mode 100644 index fbf5e9e9ff..0000000000 Binary files a/front/public/images/small/chisel/marble/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/8.png b/front/public/images/small/chisel/marble/8.png deleted file mode 100644 index cb96b24111..0000000000 Binary files a/front/public/images/small/chisel/marble/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble/9.png b/front/public/images/small/chisel/marble/9.png deleted file mode 100644 index a30efe39f2..0000000000 Binary files a/front/public/images/small/chisel/marble/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/0.png b/front/public/images/small/chisel/marble_pillar/0.png deleted file mode 100644 index c4c19effc0..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/1.png b/front/public/images/small/chisel/marble_pillar/1.png deleted file mode 100644 index b6b80b05c8..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/10.png b/front/public/images/small/chisel/marble_pillar/10.png deleted file mode 100644 index 1bcffd72f6..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/11.png b/front/public/images/small/chisel/marble_pillar/11.png deleted file mode 100644 index f430d8cce5..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/12.png b/front/public/images/small/chisel/marble_pillar/12.png deleted file mode 100644 index 599af44cba..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/13.png b/front/public/images/small/chisel/marble_pillar/13.png deleted file mode 100644 index 5bee91eeed..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/14.png b/front/public/images/small/chisel/marble_pillar/14.png deleted file mode 100644 index 89c88c1730..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/15.png b/front/public/images/small/chisel/marble_pillar/15.png deleted file mode 100644 index 83392ae4db..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/2.png b/front/public/images/small/chisel/marble_pillar/2.png deleted file mode 100644 index 0015e2f7cb..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/3.png b/front/public/images/small/chisel/marble_pillar/3.png deleted file mode 100644 index 844f5ce0b7..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/4.png b/front/public/images/small/chisel/marble_pillar/4.png deleted file mode 100644 index fa7e57ca2f..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/5.png b/front/public/images/small/chisel/marble_pillar/5.png deleted file mode 100644 index 162eedb779..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/6.png b/front/public/images/small/chisel/marble_pillar/6.png deleted file mode 100644 index 421ee5aa80..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/7.png b/front/public/images/small/chisel/marble_pillar/7.png deleted file mode 100644 index 21f951bebe..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/8.png b/front/public/images/small/chisel/marble_pillar/8.png deleted file mode 100644 index a6dd9fd492..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar/9.png b/front/public/images/small/chisel/marble_pillar/9.png deleted file mode 100644 index 599af44cba..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/0.png b/front/public/images/small/chisel/marble_pillar_slab/0.png deleted file mode 100644 index 63b499afb1..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/1.png b/front/public/images/small/chisel/marble_pillar_slab/1.png deleted file mode 100644 index 24d5dda2f5..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/10.png b/front/public/images/small/chisel/marble_pillar_slab/10.png deleted file mode 100644 index 2f01010b76..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/11.png b/front/public/images/small/chisel/marble_pillar_slab/11.png deleted file mode 100644 index 41203df2ce..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/12.png b/front/public/images/small/chisel/marble_pillar_slab/12.png deleted file mode 100644 index 41203df2ce..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/13.png b/front/public/images/small/chisel/marble_pillar_slab/13.png deleted file mode 100644 index 41203df2ce..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/14.png b/front/public/images/small/chisel/marble_pillar_slab/14.png deleted file mode 100644 index 3ff5a8700c..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/15.png b/front/public/images/small/chisel/marble_pillar_slab/15.png deleted file mode 100644 index d0f3efb82d..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/2.png b/front/public/images/small/chisel/marble_pillar_slab/2.png deleted file mode 100644 index c3906d31c8..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/3.png b/front/public/images/small/chisel/marble_pillar_slab/3.png deleted file mode 100644 index 39c4694439..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/4.png b/front/public/images/small/chisel/marble_pillar_slab/4.png deleted file mode 100644 index 5640ce29f3..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/5.png b/front/public/images/small/chisel/marble_pillar_slab/5.png deleted file mode 100644 index 24d72252f4..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/6.png b/front/public/images/small/chisel/marble_pillar_slab/6.png deleted file mode 100644 index 24d72252f4..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/7.png b/front/public/images/small/chisel/marble_pillar_slab/7.png deleted file mode 100644 index 24d72252f4..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/8.png b/front/public/images/small/chisel/marble_pillar_slab/8.png deleted file mode 100644 index 2f01010b76..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab/9.png b/front/public/images/small/chisel/marble_pillar_slab/9.png deleted file mode 100644 index 2f01010b76..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_pillar_slab_top/0.png b/front/public/images/small/chisel/marble_pillar_slab_top/0.png deleted file mode 100644 index 8739c95977..0000000000 Binary files a/front/public/images/small/chisel/marble_pillar_slab_top/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/0.png b/front/public/images/small/chisel/marble_slab/0.png deleted file mode 100644 index 3ec3a7ac71..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/1.png b/front/public/images/small/chisel/marble_slab/1.png deleted file mode 100644 index e24e484450..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/10.png b/front/public/images/small/chisel/marble_slab/10.png deleted file mode 100644 index 5953dbd954..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/11.png b/front/public/images/small/chisel/marble_slab/11.png deleted file mode 100644 index fa300e2262..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/12.png b/front/public/images/small/chisel/marble_slab/12.png deleted file mode 100644 index b7856e8c23..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/13.png b/front/public/images/small/chisel/marble_slab/13.png deleted file mode 100644 index b766230539..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/14.png b/front/public/images/small/chisel/marble_slab/14.png deleted file mode 100644 index 7269e73664..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/15.png b/front/public/images/small/chisel/marble_slab/15.png deleted file mode 100644 index 22d65c71de..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/2.png b/front/public/images/small/chisel/marble_slab/2.png deleted file mode 100644 index 20a79e0f85..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/3.png b/front/public/images/small/chisel/marble_slab/3.png deleted file mode 100644 index 7b7e4219f6..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/4.png b/front/public/images/small/chisel/marble_slab/4.png deleted file mode 100644 index f1b2ebf663..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/5.png b/front/public/images/small/chisel/marble_slab/5.png deleted file mode 100644 index c53c7b2fa6..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/6.png b/front/public/images/small/chisel/marble_slab/6.png deleted file mode 100644 index f02b2ac90c..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/7.png b/front/public/images/small/chisel/marble_slab/7.png deleted file mode 100644 index 7ea32438b4..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/8.png b/front/public/images/small/chisel/marble_slab/8.png deleted file mode 100644 index 514d6b060c..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab/9.png b/front/public/images/small/chisel/marble_slab/9.png deleted file mode 100644 index 53e1c473f7..0000000000 Binary files a/front/public/images/small/chisel/marble_slab/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_slab_top/0.png b/front/public/images/small/chisel/marble_slab_top/0.png deleted file mode 100644 index 7406f376c1..0000000000 Binary files a/front/public/images/small/chisel/marble_slab_top/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.0/0.png b/front/public/images/small/chisel/marble_stairs.0/0.png deleted file mode 100644 index 32b16caeac..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.0/8.png b/front/public/images/small/chisel/marble_stairs.0/8.png deleted file mode 100644 index 31998262bb..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.1/0.png b/front/public/images/small/chisel/marble_stairs.1/0.png deleted file mode 100644 index d1745b1af1..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.1/8.png b/front/public/images/small/chisel/marble_stairs.1/8.png deleted file mode 100644 index f0fa45fba3..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.2/0.png b/front/public/images/small/chisel/marble_stairs.2/0.png deleted file mode 100644 index 2e1bea3938..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.2/8.png b/front/public/images/small/chisel/marble_stairs.2/8.png deleted file mode 100644 index dcd1502ece..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.3/0.png b/front/public/images/small/chisel/marble_stairs.3/0.png deleted file mode 100644 index f45a2e7fa2..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.3/8.png b/front/public/images/small/chisel/marble_stairs.3/8.png deleted file mode 100644 index aa6b5c3606..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.4/0.png b/front/public/images/small/chisel/marble_stairs.4/0.png deleted file mode 100644 index 3d80781907..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.4/8.png b/front/public/images/small/chisel/marble_stairs.4/8.png deleted file mode 100644 index e88cb26de3..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.5/0.png b/front/public/images/small/chisel/marble_stairs.5/0.png deleted file mode 100644 index 6a8849b3b2..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.5/8.png b/front/public/images/small/chisel/marble_stairs.5/8.png deleted file mode 100644 index 389f41a222..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.6/0.png b/front/public/images/small/chisel/marble_stairs.6/0.png deleted file mode 100644 index a5528dd18f..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.6/8.png b/front/public/images/small/chisel/marble_stairs.6/8.png deleted file mode 100644 index e852842614..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.7/0.png b/front/public/images/small/chisel/marble_stairs.7/0.png deleted file mode 100644 index 7817acc1e6..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/marble_stairs.7/8.png b/front/public/images/small/chisel/marble_stairs.7/8.png deleted file mode 100644 index 04d5273624..0000000000 Binary files a/front/public/images/small/chisel/marble_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/1.png b/front/public/images/small/chisel/mossy_cobblestone/1.png deleted file mode 100644 index b6a017bf67..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/10.png b/front/public/images/small/chisel/mossy_cobblestone/10.png deleted file mode 100644 index 86cd082826..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/11.png b/front/public/images/small/chisel/mossy_cobblestone/11.png deleted file mode 100644 index f27e3fefc1..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/12.png b/front/public/images/small/chisel/mossy_cobblestone/12.png deleted file mode 100644 index b9ebcbee0c..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/13.png b/front/public/images/small/chisel/mossy_cobblestone/13.png deleted file mode 100644 index 9da33f5f65..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/14.png b/front/public/images/small/chisel/mossy_cobblestone/14.png deleted file mode 100644 index 98e388d2eb..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/15.png b/front/public/images/small/chisel/mossy_cobblestone/15.png deleted file mode 100644 index 17ed69b8e7..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/2.png b/front/public/images/small/chisel/mossy_cobblestone/2.png deleted file mode 100644 index adf0a9a53a..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/3.png b/front/public/images/small/chisel/mossy_cobblestone/3.png deleted file mode 100644 index 6e02253bd8..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/4.png b/front/public/images/small/chisel/mossy_cobblestone/4.png deleted file mode 100644 index 5cc699ac3f..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/5.png b/front/public/images/small/chisel/mossy_cobblestone/5.png deleted file mode 100644 index 440c394114..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/6.png b/front/public/images/small/chisel/mossy_cobblestone/6.png deleted file mode 100644 index 68187326d9..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/7.png b/front/public/images/small/chisel/mossy_cobblestone/7.png deleted file mode 100644 index 12c9adf38d..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/8.png b/front/public/images/small/chisel/mossy_cobblestone/8.png deleted file mode 100644 index 754997e7ac..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_cobblestone/9.png b/front/public/images/small/chisel/mossy_cobblestone/9.png deleted file mode 100644 index d571344ebc..0000000000 Binary files a/front/public/images/small/chisel/mossy_cobblestone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/0.png b/front/public/images/small/chisel/mossy_templeblock/0.png deleted file mode 100644 index 05c791f453..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/1.png b/front/public/images/small/chisel/mossy_templeblock/1.png deleted file mode 100644 index beddbd1bc4..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/10.png b/front/public/images/small/chisel/mossy_templeblock/10.png deleted file mode 100644 index 6bbcbb1205..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/11.png b/front/public/images/small/chisel/mossy_templeblock/11.png deleted file mode 100644 index 0754e7c2e0..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/12.png b/front/public/images/small/chisel/mossy_templeblock/12.png deleted file mode 100644 index fe19927c6e..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/13.png b/front/public/images/small/chisel/mossy_templeblock/13.png deleted file mode 100644 index baf75d8dfb..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/14.png b/front/public/images/small/chisel/mossy_templeblock/14.png deleted file mode 100644 index a1d142ab9e..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/15.png b/front/public/images/small/chisel/mossy_templeblock/15.png deleted file mode 100644 index 07c197dd35..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/2.png b/front/public/images/small/chisel/mossy_templeblock/2.png deleted file mode 100644 index 8922a9e496..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/3.png b/front/public/images/small/chisel/mossy_templeblock/3.png deleted file mode 100644 index 776321ee31..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/4.png b/front/public/images/small/chisel/mossy_templeblock/4.png deleted file mode 100644 index 8a28d2e929..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/5.png b/front/public/images/small/chisel/mossy_templeblock/5.png deleted file mode 100644 index 267425f2d9..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/6.png b/front/public/images/small/chisel/mossy_templeblock/6.png deleted file mode 100644 index 4d046c8c6a..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/7.png b/front/public/images/small/chisel/mossy_templeblock/7.png deleted file mode 100644 index 424f96eb61..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/8.png b/front/public/images/small/chisel/mossy_templeblock/8.png deleted file mode 100644 index c14ccb672b..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/mossy_templeblock/9.png b/front/public/images/small/chisel/mossy_templeblock/9.png deleted file mode 100644 index 3426e27ad5..0000000000 Binary files a/front/public/images/small/chisel/mossy_templeblock/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/nation/0.png b/front/public/images/small/chisel/nation/0.png deleted file mode 100644 index 5c243bde9a..0000000000 Binary files a/front/public/images/small/chisel/nation/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/nation/1.png b/front/public/images/small/chisel/nation/1.png deleted file mode 100644 index e3e7187be5..0000000000 Binary files a/front/public/images/small/chisel/nation/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/nation/2.png b/front/public/images/small/chisel/nation/2.png deleted file mode 100644 index 0c276a17d9..0000000000 Binary files a/front/public/images/small/chisel/nation/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/nation/3.png b/front/public/images/small/chisel/nation/3.png deleted file mode 100644 index a1ca26e648..0000000000 Binary files a/front/public/images/small/chisel/nation/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/nation/4.png b/front/public/images/small/chisel/nation/4.png deleted file mode 100644 index 54ab42d553..0000000000 Binary files a/front/public/images/small/chisel/nation/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/0.png b/front/public/images/small/chisel/neonite/0.png deleted file mode 100644 index 8b5a8fb56d..0000000000 Binary files a/front/public/images/small/chisel/neonite/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/1.png b/front/public/images/small/chisel/neonite/1.png deleted file mode 100644 index 2af0b422d8..0000000000 Binary files a/front/public/images/small/chisel/neonite/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/10.png b/front/public/images/small/chisel/neonite/10.png deleted file mode 100644 index b37e1523bd..0000000000 Binary files a/front/public/images/small/chisel/neonite/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/11.png b/front/public/images/small/chisel/neonite/11.png deleted file mode 100644 index 557d2c9496..0000000000 Binary files a/front/public/images/small/chisel/neonite/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/12.png b/front/public/images/small/chisel/neonite/12.png deleted file mode 100644 index 7f49a6c5ff..0000000000 Binary files a/front/public/images/small/chisel/neonite/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/13.png b/front/public/images/small/chisel/neonite/13.png deleted file mode 100644 index 4b6dff8b2b..0000000000 Binary files a/front/public/images/small/chisel/neonite/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/14.png b/front/public/images/small/chisel/neonite/14.png deleted file mode 100644 index dcc951af3e..0000000000 Binary files a/front/public/images/small/chisel/neonite/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/15.png b/front/public/images/small/chisel/neonite/15.png deleted file mode 100644 index 3aad428498..0000000000 Binary files a/front/public/images/small/chisel/neonite/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/2.png b/front/public/images/small/chisel/neonite/2.png deleted file mode 100644 index 9b5ddd24e6..0000000000 Binary files a/front/public/images/small/chisel/neonite/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/3.png b/front/public/images/small/chisel/neonite/3.png deleted file mode 100644 index 2a5ec9a939..0000000000 Binary files a/front/public/images/small/chisel/neonite/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/4.png b/front/public/images/small/chisel/neonite/4.png deleted file mode 100644 index 146290cc88..0000000000 Binary files a/front/public/images/small/chisel/neonite/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/5.png b/front/public/images/small/chisel/neonite/5.png deleted file mode 100644 index 5cd0eca86f..0000000000 Binary files a/front/public/images/small/chisel/neonite/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/6.png b/front/public/images/small/chisel/neonite/6.png deleted file mode 100644 index 6493a76312..0000000000 Binary files a/front/public/images/small/chisel/neonite/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/7.png b/front/public/images/small/chisel/neonite/7.png deleted file mode 100644 index 72790fbce6..0000000000 Binary files a/front/public/images/small/chisel/neonite/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/8.png b/front/public/images/small/chisel/neonite/8.png deleted file mode 100644 index 09f8b250ff..0000000000 Binary files a/front/public/images/small/chisel/neonite/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/neonite/9.png b/front/public/images/small/chisel/neonite/9.png deleted file mode 100644 index 91cda9f446..0000000000 Binary files a/front/public/images/small/chisel/neonite/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherStarChisel/0.png b/front/public/images/small/chisel/netherStarChisel/0.png deleted file mode 100644 index e66a80f3a1..0000000000 Binary files a/front/public/images/small/chisel/netherStarChisel/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/1.png b/front/public/images/small/chisel/nether_brick/1.png deleted file mode 100644 index 8d7e4a55a2..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/10.png b/front/public/images/small/chisel/nether_brick/10.png deleted file mode 100644 index cd3be509d4..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/11.png b/front/public/images/small/chisel/nether_brick/11.png deleted file mode 100644 index 027d53395a..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/12.png b/front/public/images/small/chisel/nether_brick/12.png deleted file mode 100644 index dcdc2ddd7b..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/13.png b/front/public/images/small/chisel/nether_brick/13.png deleted file mode 100644 index 1fe7d669e0..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/14.png b/front/public/images/small/chisel/nether_brick/14.png deleted file mode 100644 index 7a22617a83..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/15.png b/front/public/images/small/chisel/nether_brick/15.png deleted file mode 100644 index 3ce76f5be9..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/2.png b/front/public/images/small/chisel/nether_brick/2.png deleted file mode 100644 index 097b352ea7..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/3.png b/front/public/images/small/chisel/nether_brick/3.png deleted file mode 100644 index 3bb4d972be..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/4.png b/front/public/images/small/chisel/nether_brick/4.png deleted file mode 100644 index 47215c63c7..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/5.png b/front/public/images/small/chisel/nether_brick/5.png deleted file mode 100644 index e27c9549e8..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/6.png b/front/public/images/small/chisel/nether_brick/6.png deleted file mode 100644 index 7ea38b4361..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/7.png b/front/public/images/small/chisel/nether_brick/7.png deleted file mode 100644 index bff5568048..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/8.png b/front/public/images/small/chisel/nether_brick/8.png deleted file mode 100644 index 69e514e291..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/nether_brick/9.png b/front/public/images/small/chisel/nether_brick/9.png deleted file mode 100644 index 8b2908d015..0000000000 Binary files a/front/public/images/small/chisel/nether_brick/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/1.png b/front/public/images/small/chisel/netherrack/1.png deleted file mode 100644 index 477a8746f7..0000000000 Binary files a/front/public/images/small/chisel/netherrack/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/10.png b/front/public/images/small/chisel/netherrack/10.png deleted file mode 100644 index 8386a1b3bf..0000000000 Binary files a/front/public/images/small/chisel/netherrack/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/11.png b/front/public/images/small/chisel/netherrack/11.png deleted file mode 100644 index fdc5032123..0000000000 Binary files a/front/public/images/small/chisel/netherrack/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/12.png b/front/public/images/small/chisel/netherrack/12.png deleted file mode 100644 index 6dfa873169..0000000000 Binary files a/front/public/images/small/chisel/netherrack/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/13.png b/front/public/images/small/chisel/netherrack/13.png deleted file mode 100644 index d14e75f57e..0000000000 Binary files a/front/public/images/small/chisel/netherrack/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/14.png b/front/public/images/small/chisel/netherrack/14.png deleted file mode 100644 index 2ca3d655c2..0000000000 Binary files a/front/public/images/small/chisel/netherrack/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/2.png b/front/public/images/small/chisel/netherrack/2.png deleted file mode 100644 index d6fc4ebfb4..0000000000 Binary files a/front/public/images/small/chisel/netherrack/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/3.png b/front/public/images/small/chisel/netherrack/3.png deleted file mode 100644 index 6d51077ffe..0000000000 Binary files a/front/public/images/small/chisel/netherrack/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/4.png b/front/public/images/small/chisel/netherrack/4.png deleted file mode 100644 index f29e35324b..0000000000 Binary files a/front/public/images/small/chisel/netherrack/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/5.png b/front/public/images/small/chisel/netherrack/5.png deleted file mode 100644 index 7cd712e09e..0000000000 Binary files a/front/public/images/small/chisel/netherrack/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/6.png b/front/public/images/small/chisel/netherrack/6.png deleted file mode 100644 index 2ae0f38749..0000000000 Binary files a/front/public/images/small/chisel/netherrack/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/7.png b/front/public/images/small/chisel/netherrack/7.png deleted file mode 100644 index ce63404ce4..0000000000 Binary files a/front/public/images/small/chisel/netherrack/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/8.png b/front/public/images/small/chisel/netherrack/8.png deleted file mode 100644 index c6aaa85b13..0000000000 Binary files a/front/public/images/small/chisel/netherrack/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/netherrack/9.png b/front/public/images/small/chisel/netherrack/9.png deleted file mode 100644 index 0c7daa120a..0000000000 Binary files a/front/public/images/small/chisel/netherrack/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/0.png b/front/public/images/small/chisel/nucrete/0.png deleted file mode 100644 index 17cf1b193e..0000000000 Binary files a/front/public/images/small/chisel/nucrete/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/1.png b/front/public/images/small/chisel/nucrete/1.png deleted file mode 100644 index cfa5d6076f..0000000000 Binary files a/front/public/images/small/chisel/nucrete/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/10.png b/front/public/images/small/chisel/nucrete/10.png deleted file mode 100644 index 644667038f..0000000000 Binary files a/front/public/images/small/chisel/nucrete/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/11.png b/front/public/images/small/chisel/nucrete/11.png deleted file mode 100644 index b13ce6465e..0000000000 Binary files a/front/public/images/small/chisel/nucrete/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/12.png b/front/public/images/small/chisel/nucrete/12.png deleted file mode 100644 index 63422f19c2..0000000000 Binary files a/front/public/images/small/chisel/nucrete/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/13.png b/front/public/images/small/chisel/nucrete/13.png deleted file mode 100644 index d109779825..0000000000 Binary files a/front/public/images/small/chisel/nucrete/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/14.png b/front/public/images/small/chisel/nucrete/14.png deleted file mode 100644 index c3c61f4ac3..0000000000 Binary files a/front/public/images/small/chisel/nucrete/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/15.png b/front/public/images/small/chisel/nucrete/15.png deleted file mode 100644 index d6c904c30f..0000000000 Binary files a/front/public/images/small/chisel/nucrete/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/2.png b/front/public/images/small/chisel/nucrete/2.png deleted file mode 100644 index cfa5d6076f..0000000000 Binary files a/front/public/images/small/chisel/nucrete/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/3.png b/front/public/images/small/chisel/nucrete/3.png deleted file mode 100644 index 148c317235..0000000000 Binary files a/front/public/images/small/chisel/nucrete/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/4.png b/front/public/images/small/chisel/nucrete/4.png deleted file mode 100644 index 7214bf84e4..0000000000 Binary files a/front/public/images/small/chisel/nucrete/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/5.png b/front/public/images/small/chisel/nucrete/5.png deleted file mode 100644 index a2cb2495a1..0000000000 Binary files a/front/public/images/small/chisel/nucrete/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/6.png b/front/public/images/small/chisel/nucrete/6.png deleted file mode 100644 index cc9272c63a..0000000000 Binary files a/front/public/images/small/chisel/nucrete/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/7.png b/front/public/images/small/chisel/nucrete/7.png deleted file mode 100644 index 2ff8298929..0000000000 Binary files a/front/public/images/small/chisel/nucrete/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/8.png b/front/public/images/small/chisel/nucrete/8.png deleted file mode 100644 index 2659f5f767..0000000000 Binary files a/front/public/images/small/chisel/nucrete/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/nucrete/9.png b/front/public/images/small/chisel/nucrete/9.png deleted file mode 100644 index 644667038f..0000000000 Binary files a/front/public/images/small/chisel/nucrete/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/1.png b/front/public/images/small/chisel/oak_planks/1.png deleted file mode 100644 index 6c7bf7409d..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/10.png b/front/public/images/small/chisel/oak_planks/10.png deleted file mode 100644 index 2a8fb1d285..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/11.png b/front/public/images/small/chisel/oak_planks/11.png deleted file mode 100644 index 97015eaa91..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/12.png b/front/public/images/small/chisel/oak_planks/12.png deleted file mode 100644 index b44efe08d5..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/13.png b/front/public/images/small/chisel/oak_planks/13.png deleted file mode 100644 index dcb77dde26..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/14.png b/front/public/images/small/chisel/oak_planks/14.png deleted file mode 100644 index 28245db47a..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/15.png b/front/public/images/small/chisel/oak_planks/15.png deleted file mode 100644 index daaddea1bc..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/2.png b/front/public/images/small/chisel/oak_planks/2.png deleted file mode 100644 index d51f49fe22..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/3.png b/front/public/images/small/chisel/oak_planks/3.png deleted file mode 100644 index 8a391e53d4..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/4.png b/front/public/images/small/chisel/oak_planks/4.png deleted file mode 100644 index 840514427f..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/5.png b/front/public/images/small/chisel/oak_planks/5.png deleted file mode 100644 index 7227c5d73e..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/6.png b/front/public/images/small/chisel/oak_planks/6.png deleted file mode 100644 index dce1e29130..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/7.png b/front/public/images/small/chisel/oak_planks/7.png deleted file mode 100644 index 0cf1df096b..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/8.png b/front/public/images/small/chisel/oak_planks/8.png deleted file mode 100644 index 4ff9b79872..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/oak_planks/9.png b/front/public/images/small/chisel/oak_planks/9.png deleted file mode 100644 index f1ef2b1e50..0000000000 Binary files a/front/public/images/small/chisel/oak_planks/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/1.png b/front/public/images/small/chisel/obsidian/1.png deleted file mode 100644 index 8654d2f57e..0000000000 Binary files a/front/public/images/small/chisel/obsidian/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/10.png b/front/public/images/small/chisel/obsidian/10.png deleted file mode 100644 index 16106b4681..0000000000 Binary files a/front/public/images/small/chisel/obsidian/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/11.png b/front/public/images/small/chisel/obsidian/11.png deleted file mode 100644 index da0198e92e..0000000000 Binary files a/front/public/images/small/chisel/obsidian/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/12.png b/front/public/images/small/chisel/obsidian/12.png deleted file mode 100644 index 1017fb3a84..0000000000 Binary files a/front/public/images/small/chisel/obsidian/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/13.png b/front/public/images/small/chisel/obsidian/13.png deleted file mode 100644 index 270e5dafd4..0000000000 Binary files a/front/public/images/small/chisel/obsidian/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/14.png b/front/public/images/small/chisel/obsidian/14.png deleted file mode 100644 index e96b003092..0000000000 Binary files a/front/public/images/small/chisel/obsidian/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/15.png b/front/public/images/small/chisel/obsidian/15.png deleted file mode 100644 index 209b68a45d..0000000000 Binary files a/front/public/images/small/chisel/obsidian/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/2.png b/front/public/images/small/chisel/obsidian/2.png deleted file mode 100644 index b18b429a58..0000000000 Binary files a/front/public/images/small/chisel/obsidian/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/3.png b/front/public/images/small/chisel/obsidian/3.png deleted file mode 100644 index 5b43b342fd..0000000000 Binary files a/front/public/images/small/chisel/obsidian/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/4.png b/front/public/images/small/chisel/obsidian/4.png deleted file mode 100644 index 93ae9bd74b..0000000000 Binary files a/front/public/images/small/chisel/obsidian/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/5.png b/front/public/images/small/chisel/obsidian/5.png deleted file mode 100644 index c1941da7a7..0000000000 Binary files a/front/public/images/small/chisel/obsidian/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/6.png b/front/public/images/small/chisel/obsidian/6.png deleted file mode 100644 index 1c902543fe..0000000000 Binary files a/front/public/images/small/chisel/obsidian/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/7.png b/front/public/images/small/chisel/obsidian/7.png deleted file mode 100644 index a8e6e06846..0000000000 Binary files a/front/public/images/small/chisel/obsidian/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/8.png b/front/public/images/small/chisel/obsidian/8.png deleted file mode 100644 index 0d01e428d1..0000000000 Binary files a/front/public/images/small/chisel/obsidian/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian/9.png b/front/public/images/small/chisel/obsidian/9.png deleted file mode 100644 index d89deee7b3..0000000000 Binary files a/front/public/images/small/chisel/obsidian/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidianChisel/0.png b/front/public/images/small/chisel/obsidianChisel/0.png deleted file mode 100644 index 8ed8e3d10a..0000000000 Binary files a/front/public/images/small/chisel/obsidianChisel/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian_snakestone/1.png b/front/public/images/small/chisel/obsidian_snakestone/1.png deleted file mode 100644 index c8963eeb21..0000000000 Binary files a/front/public/images/small/chisel/obsidian_snakestone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/obsidian_snakestone/13.png b/front/public/images/small/chisel/obsidian_snakestone/13.png deleted file mode 100644 index 58e7a44e78..0000000000 Binary files a/front/public/images/small/chisel/obsidian_snakestone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/1.png b/front/public/images/small/chisel/packedice/1.png deleted file mode 100644 index cdec3446e2..0000000000 Binary files a/front/public/images/small/chisel/packedice/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/10.png b/front/public/images/small/chisel/packedice/10.png deleted file mode 100644 index 4b0d40a0e3..0000000000 Binary files a/front/public/images/small/chisel/packedice/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/11.png b/front/public/images/small/chisel/packedice/11.png deleted file mode 100644 index 46e98d8c99..0000000000 Binary files a/front/public/images/small/chisel/packedice/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/12.png b/front/public/images/small/chisel/packedice/12.png deleted file mode 100644 index 384c67524a..0000000000 Binary files a/front/public/images/small/chisel/packedice/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/13.png b/front/public/images/small/chisel/packedice/13.png deleted file mode 100644 index deb9d5de88..0000000000 Binary files a/front/public/images/small/chisel/packedice/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/14.png b/front/public/images/small/chisel/packedice/14.png deleted file mode 100644 index b59d51a5c0..0000000000 Binary files a/front/public/images/small/chisel/packedice/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/15.png b/front/public/images/small/chisel/packedice/15.png deleted file mode 100644 index ea032f121b..0000000000 Binary files a/front/public/images/small/chisel/packedice/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/2.png b/front/public/images/small/chisel/packedice/2.png deleted file mode 100644 index c1cafa2735..0000000000 Binary files a/front/public/images/small/chisel/packedice/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/3.png b/front/public/images/small/chisel/packedice/3.png deleted file mode 100644 index 728d8490a0..0000000000 Binary files a/front/public/images/small/chisel/packedice/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/4.png b/front/public/images/small/chisel/packedice/4.png deleted file mode 100644 index 46bbc2e9c7..0000000000 Binary files a/front/public/images/small/chisel/packedice/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/5.png b/front/public/images/small/chisel/packedice/5.png deleted file mode 100644 index 8267f8d647..0000000000 Binary files a/front/public/images/small/chisel/packedice/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/6.png b/front/public/images/small/chisel/packedice/6.png deleted file mode 100644 index 967f4fabe2..0000000000 Binary files a/front/public/images/small/chisel/packedice/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/7.png b/front/public/images/small/chisel/packedice/7.png deleted file mode 100644 index ccfdef562c..0000000000 Binary files a/front/public/images/small/chisel/packedice/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/8.png b/front/public/images/small/chisel/packedice/8.png deleted file mode 100644 index 4d23a5aa59..0000000000 Binary files a/front/public/images/small/chisel/packedice/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice/9.png b/front/public/images/small/chisel/packedice/9.png deleted file mode 100644 index 9d110dc7ab..0000000000 Binary files a/front/public/images/small/chisel/packedice/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_pillar/0.png b/front/public/images/small/chisel/packedice_pillar/0.png deleted file mode 100644 index e02792f824..0000000000 Binary files a/front/public/images/small/chisel/packedice_pillar/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_pillar/1.png b/front/public/images/small/chisel/packedice_pillar/1.png deleted file mode 100644 index dc90bfc4ab..0000000000 Binary files a/front/public/images/small/chisel/packedice_pillar/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_pillar/2.png b/front/public/images/small/chisel/packedice_pillar/2.png deleted file mode 100644 index 8c26c855d4..0000000000 Binary files a/front/public/images/small/chisel/packedice_pillar/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_pillar/3.png b/front/public/images/small/chisel/packedice_pillar/3.png deleted file mode 100644 index 4d554f2739..0000000000 Binary files a/front/public/images/small/chisel/packedice_pillar/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_pillar/4.png b/front/public/images/small/chisel/packedice_pillar/4.png deleted file mode 100644 index 0d65cfa41f..0000000000 Binary files a/front/public/images/small/chisel/packedice_pillar/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_pillar/5.png b/front/public/images/small/chisel/packedice_pillar/5.png deleted file mode 100644 index 7d1caf67a6..0000000000 Binary files a/front/public/images/small/chisel/packedice_pillar/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_pillar/6.png b/front/public/images/small/chisel/packedice_pillar/6.png deleted file mode 100644 index d2f4e0d75f..0000000000 Binary files a/front/public/images/small/chisel/packedice_pillar/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.0/0.png b/front/public/images/small/chisel/packedice_stairs.0/0.png deleted file mode 100644 index 36b1d82f9f..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.0/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.0/8.png b/front/public/images/small/chisel/packedice_stairs.0/8.png deleted file mode 100644 index 38d953c713..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.0/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.1/0.png b/front/public/images/small/chisel/packedice_stairs.1/0.png deleted file mode 100644 index a1c89e371b..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.1/8.png b/front/public/images/small/chisel/packedice_stairs.1/8.png deleted file mode 100644 index 57b3962f54..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.1/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.2/0.png b/front/public/images/small/chisel/packedice_stairs.2/0.png deleted file mode 100644 index 67107f1d59..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.2/8.png b/front/public/images/small/chisel/packedice_stairs.2/8.png deleted file mode 100644 index 397e911286..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.2/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.3/0.png b/front/public/images/small/chisel/packedice_stairs.3/0.png deleted file mode 100644 index 96a8bee844..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.3/8.png b/front/public/images/small/chisel/packedice_stairs.3/8.png deleted file mode 100644 index 9185d2f6c2..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.3/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.4/0.png b/front/public/images/small/chisel/packedice_stairs.4/0.png deleted file mode 100644 index 8b18a3ef43..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.4/8.png b/front/public/images/small/chisel/packedice_stairs.4/8.png deleted file mode 100644 index fdb6cac7ac..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.4/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.5/0.png b/front/public/images/small/chisel/packedice_stairs.5/0.png deleted file mode 100644 index ba1e84b201..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.5/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.5/8.png b/front/public/images/small/chisel/packedice_stairs.5/8.png deleted file mode 100644 index ac29a93ec5..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.5/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.6/0.png b/front/public/images/small/chisel/packedice_stairs.6/0.png deleted file mode 100644 index efe60df99b..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.6/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.6/8.png b/front/public/images/small/chisel/packedice_stairs.6/8.png deleted file mode 100644 index 14e9ab68f2..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.6/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.7/0.png b/front/public/images/small/chisel/packedice_stairs.7/0.png deleted file mode 100644 index 4d021da68f..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.7/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/packedice_stairs.7/8.png b/front/public/images/small/chisel/packedice_stairs.7/8.png deleted file mode 100644 index b3d9161916..0000000000 Binary files a/front/public/images/small/chisel/packedice_stairs.7/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/0.png b/front/public/images/small/chisel/paperwall/0.png deleted file mode 100644 index 0246da59a3..0000000000 Binary files a/front/public/images/small/chisel/paperwall/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/1.png b/front/public/images/small/chisel/paperwall/1.png deleted file mode 100644 index 0bc695ec29..0000000000 Binary files a/front/public/images/small/chisel/paperwall/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/2.png b/front/public/images/small/chisel/paperwall/2.png deleted file mode 100644 index 038f448ff3..0000000000 Binary files a/front/public/images/small/chisel/paperwall/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/3.png b/front/public/images/small/chisel/paperwall/3.png deleted file mode 100644 index 3c57fd8440..0000000000 Binary files a/front/public/images/small/chisel/paperwall/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/4.png b/front/public/images/small/chisel/paperwall/4.png deleted file mode 100644 index ae64ceaa78..0000000000 Binary files a/front/public/images/small/chisel/paperwall/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/5.png b/front/public/images/small/chisel/paperwall/5.png deleted file mode 100644 index b06537a488..0000000000 Binary files a/front/public/images/small/chisel/paperwall/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/6.png b/front/public/images/small/chisel/paperwall/6.png deleted file mode 100644 index 03913fc2a8..0000000000 Binary files a/front/public/images/small/chisel/paperwall/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/7.png b/front/public/images/small/chisel/paperwall/7.png deleted file mode 100644 index 2a83c8be83..0000000000 Binary files a/front/public/images/small/chisel/paperwall/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall/8.png b/front/public/images/small/chisel/paperwall/8.png deleted file mode 100644 index e3c21b8674..0000000000 Binary files a/front/public/images/small/chisel/paperwall/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/0.png b/front/public/images/small/chisel/paperwall_block/0.png deleted file mode 100644 index bb959b9d92..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/1.png b/front/public/images/small/chisel/paperwall_block/1.png deleted file mode 100644 index ec00183160..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/2.png b/front/public/images/small/chisel/paperwall_block/2.png deleted file mode 100644 index cf00a063b9..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/3.png b/front/public/images/small/chisel/paperwall_block/3.png deleted file mode 100644 index 14c57de958..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/4.png b/front/public/images/small/chisel/paperwall_block/4.png deleted file mode 100644 index 7ab63d745e..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/5.png b/front/public/images/small/chisel/paperwall_block/5.png deleted file mode 100644 index fb279e8562..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/6.png b/front/public/images/small/chisel/paperwall_block/6.png deleted file mode 100644 index 8793ee7780..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/7.png b/front/public/images/small/chisel/paperwall_block/7.png deleted file mode 100644 index 72e02eb813..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/paperwall_block/8.png b/front/public/images/small/chisel/paperwall_block/8.png deleted file mode 100644 index 7d3fab655c..0000000000 Binary files a/front/public/images/small/chisel/paperwall_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/0.png b/front/public/images/small/chisel/present/0.png deleted file mode 100644 index 872ec98493..0000000000 Binary files a/front/public/images/small/chisel/present/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/1.png b/front/public/images/small/chisel/present/1.png deleted file mode 100644 index 063191787a..0000000000 Binary files a/front/public/images/small/chisel/present/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/10.png b/front/public/images/small/chisel/present/10.png deleted file mode 100644 index 3a723ae4b8..0000000000 Binary files a/front/public/images/small/chisel/present/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/11.png b/front/public/images/small/chisel/present/11.png deleted file mode 100644 index 70c872b63f..0000000000 Binary files a/front/public/images/small/chisel/present/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/12.png b/front/public/images/small/chisel/present/12.png deleted file mode 100644 index 663062536e..0000000000 Binary files a/front/public/images/small/chisel/present/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/13.png b/front/public/images/small/chisel/present/13.png deleted file mode 100644 index ebefc2c679..0000000000 Binary files a/front/public/images/small/chisel/present/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/14.png b/front/public/images/small/chisel/present/14.png deleted file mode 100644 index 38dedf6ef4..0000000000 Binary files a/front/public/images/small/chisel/present/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/15.png b/front/public/images/small/chisel/present/15.png deleted file mode 100644 index 456c572cf6..0000000000 Binary files a/front/public/images/small/chisel/present/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/2.png b/front/public/images/small/chisel/present/2.png deleted file mode 100644 index 126aa9f59c..0000000000 Binary files a/front/public/images/small/chisel/present/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/3.png b/front/public/images/small/chisel/present/3.png deleted file mode 100644 index 076011a050..0000000000 Binary files a/front/public/images/small/chisel/present/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/4.png b/front/public/images/small/chisel/present/4.png deleted file mode 100644 index 51f3ceaf55..0000000000 Binary files a/front/public/images/small/chisel/present/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/5.png b/front/public/images/small/chisel/present/5.png deleted file mode 100644 index 49f86f658c..0000000000 Binary files a/front/public/images/small/chisel/present/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/6.png b/front/public/images/small/chisel/present/6.png deleted file mode 100644 index 4400fabb2c..0000000000 Binary files a/front/public/images/small/chisel/present/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/7.png b/front/public/images/small/chisel/present/7.png deleted file mode 100644 index 78be640c4e..0000000000 Binary files a/front/public/images/small/chisel/present/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/8.png b/front/public/images/small/chisel/present/8.png deleted file mode 100644 index 3f63706843..0000000000 Binary files a/front/public/images/small/chisel/present/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/present/9.png b/front/public/images/small/chisel/present/9.png deleted file mode 100644 index 74fab44d3b..0000000000 Binary files a/front/public/images/small/chisel/present/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin1/0.png b/front/public/images/small/chisel/pumpkin1/0.png deleted file mode 100644 index ca375e08ad..0000000000 Binary files a/front/public/images/small/chisel/pumpkin1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin10/0.png b/front/public/images/small/chisel/pumpkin10/0.png deleted file mode 100644 index ca17c5b77c..0000000000 Binary files a/front/public/images/small/chisel/pumpkin10/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin11/0.png b/front/public/images/small/chisel/pumpkin11/0.png deleted file mode 100644 index a17295f3e2..0000000000 Binary files a/front/public/images/small/chisel/pumpkin11/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin12/0.png b/front/public/images/small/chisel/pumpkin12/0.png deleted file mode 100644 index 308b35bfc0..0000000000 Binary files a/front/public/images/small/chisel/pumpkin12/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin13/0.png b/front/public/images/small/chisel/pumpkin13/0.png deleted file mode 100644 index 06fba9ded4..0000000000 Binary files a/front/public/images/small/chisel/pumpkin13/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin14/0.png b/front/public/images/small/chisel/pumpkin14/0.png deleted file mode 100644 index ff183b7ef9..0000000000 Binary files a/front/public/images/small/chisel/pumpkin14/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin15/0.png b/front/public/images/small/chisel/pumpkin15/0.png deleted file mode 100644 index e45d2a3386..0000000000 Binary files a/front/public/images/small/chisel/pumpkin15/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin16/0.png b/front/public/images/small/chisel/pumpkin16/0.png deleted file mode 100644 index 160a853488..0000000000 Binary files a/front/public/images/small/chisel/pumpkin16/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin2/0.png b/front/public/images/small/chisel/pumpkin2/0.png deleted file mode 100644 index cce24bda4d..0000000000 Binary files a/front/public/images/small/chisel/pumpkin2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin3/0.png b/front/public/images/small/chisel/pumpkin3/0.png deleted file mode 100644 index ee092a7bcf..0000000000 Binary files a/front/public/images/small/chisel/pumpkin3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin4/0.png b/front/public/images/small/chisel/pumpkin4/0.png deleted file mode 100644 index 5bf8a26d97..0000000000 Binary files a/front/public/images/small/chisel/pumpkin4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin5/0.png b/front/public/images/small/chisel/pumpkin5/0.png deleted file mode 100644 index 52b8d833be..0000000000 Binary files a/front/public/images/small/chisel/pumpkin5/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin6/0.png b/front/public/images/small/chisel/pumpkin6/0.png deleted file mode 100644 index 0ad7095a11..0000000000 Binary files a/front/public/images/small/chisel/pumpkin6/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin7/0.png b/front/public/images/small/chisel/pumpkin7/0.png deleted file mode 100644 index fd69afd97c..0000000000 Binary files a/front/public/images/small/chisel/pumpkin7/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin8/0.png b/front/public/images/small/chisel/pumpkin8/0.png deleted file mode 100644 index d1d5396791..0000000000 Binary files a/front/public/images/small/chisel/pumpkin8/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/pumpkin9/0.png b/front/public/images/small/chisel/pumpkin9/0.png deleted file mode 100644 index b1dcc885ac..0000000000 Binary files a/front/public/images/small/chisel/pumpkin9/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/0.png b/front/public/images/small/chisel/purpur/0.png deleted file mode 100644 index 91103214d9..0000000000 Binary files a/front/public/images/small/chisel/purpur/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/1.png b/front/public/images/small/chisel/purpur/1.png deleted file mode 100644 index 8e733e8b1e..0000000000 Binary files a/front/public/images/small/chisel/purpur/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/10.png b/front/public/images/small/chisel/purpur/10.png deleted file mode 100644 index 13d5e5fd20..0000000000 Binary files a/front/public/images/small/chisel/purpur/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/2.png b/front/public/images/small/chisel/purpur/2.png deleted file mode 100644 index dd31938f95..0000000000 Binary files a/front/public/images/small/chisel/purpur/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/3.png b/front/public/images/small/chisel/purpur/3.png deleted file mode 100644 index 5c535f2225..0000000000 Binary files a/front/public/images/small/chisel/purpur/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/4.png b/front/public/images/small/chisel/purpur/4.png deleted file mode 100644 index 52f44b9cd0..0000000000 Binary files a/front/public/images/small/chisel/purpur/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/5.png b/front/public/images/small/chisel/purpur/5.png deleted file mode 100644 index 48467a6d45..0000000000 Binary files a/front/public/images/small/chisel/purpur/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/6.png b/front/public/images/small/chisel/purpur/6.png deleted file mode 100644 index 0ea8e7a6f2..0000000000 Binary files a/front/public/images/small/chisel/purpur/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/7.png b/front/public/images/small/chisel/purpur/7.png deleted file mode 100644 index 73cb58f7c7..0000000000 Binary files a/front/public/images/small/chisel/purpur/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/8.png b/front/public/images/small/chisel/purpur/8.png deleted file mode 100644 index 83e6fca3ce..0000000000 Binary files a/front/public/images/small/chisel/purpur/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/purpur/9.png b/front/public/images/small/chisel/purpur/9.png deleted file mode 100644 index bb4adfc9e6..0000000000 Binary files a/front/public/images/small/chisel/purpur/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/rebel/0.png b/front/public/images/small/chisel/rebel/0.png deleted file mode 100644 index 06a3a1d5cb..0000000000 Binary files a/front/public/images/small/chisel/rebel/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/rebel/1.png b/front/public/images/small/chisel/rebel/1.png deleted file mode 100644 index da14759597..0000000000 Binary files a/front/public/images/small/chisel/rebel/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/rebel/2.png b/front/public/images/small/chisel/rebel/2.png deleted file mode 100644 index e38da0dd5f..0000000000 Binary files a/front/public/images/small/chisel/rebel/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/rebel/3.png b/front/public/images/small/chisel/rebel/3.png deleted file mode 100644 index 7fa9e45e5b..0000000000 Binary files a/front/public/images/small/chisel/rebel/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/rebel/4.png b/front/public/images/small/chisel/rebel/4.png deleted file mode 100644 index 83762827f5..0000000000 Binary files a/front/public/images/small/chisel/rebel/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/1.png b/front/public/images/small/chisel/redstone_block/1.png deleted file mode 100644 index e937cbae29..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/10.png b/front/public/images/small/chisel/redstone_block/10.png deleted file mode 100644 index 503997005c..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/11.png b/front/public/images/small/chisel/redstone_block/11.png deleted file mode 100644 index 61bc444ad5..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/12.png b/front/public/images/small/chisel/redstone_block/12.png deleted file mode 100644 index 7e8030177c..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/13.png b/front/public/images/small/chisel/redstone_block/13.png deleted file mode 100644 index 8cc4f7d5a0..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/14.png b/front/public/images/small/chisel/redstone_block/14.png deleted file mode 100644 index 004d498bd7..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/15.png b/front/public/images/small/chisel/redstone_block/15.png deleted file mode 100644 index 9df1a1874f..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/2.png b/front/public/images/small/chisel/redstone_block/2.png deleted file mode 100644 index b49adb28da..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/3.png b/front/public/images/small/chisel/redstone_block/3.png deleted file mode 100644 index db5519fa40..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/4.png b/front/public/images/small/chisel/redstone_block/4.png deleted file mode 100644 index 576eeb5844..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/5.png b/front/public/images/small/chisel/redstone_block/5.png deleted file mode 100644 index daa881107b..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/6.png b/front/public/images/small/chisel/redstone_block/6.png deleted file mode 100644 index aca4bf7071..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/7.png b/front/public/images/small/chisel/redstone_block/7.png deleted file mode 100644 index 1630d5aecc..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/8.png b/front/public/images/small/chisel/redstone_block/8.png deleted file mode 100644 index d3e6d17977..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/redstone_block/9.png b/front/public/images/small/chisel/redstone_block/9.png deleted file mode 100644 index d025cd5c01..0000000000 Binary files a/front/public/images/small/chisel/redstone_block/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/road_line/0.png b/front/public/images/small/chisel/road_line/0.png deleted file mode 100644 index 547cb091fc..0000000000 Binary files a/front/public/images/small/chisel/road_line/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/road_line/1.png b/front/public/images/small/chisel/road_line/1.png deleted file mode 100644 index 97a376e0a3..0000000000 Binary files a/front/public/images/small/chisel/road_line/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/road_line/2.png b/front/public/images/small/chisel/road_line/2.png deleted file mode 100644 index 01e573db8a..0000000000 Binary files a/front/public/images/small/chisel/road_line/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/road_line/3.png b/front/public/images/small/chisel/road_line/3.png deleted file mode 100644 index 340851a250..0000000000 Binary files a/front/public/images/small/chisel/road_line/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/road_line/4.png b/front/public/images/small/chisel/road_line/4.png deleted file mode 100644 index c138e6eb26..0000000000 Binary files a/front/public/images/small/chisel/road_line/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/sand_snakestone/1.png b/front/public/images/small/chisel/sand_snakestone/1.png deleted file mode 100644 index 674d1ce073..0000000000 Binary files a/front/public/images/small/chisel/sand_snakestone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/sand_snakestone/13.png b/front/public/images/small/chisel/sand_snakestone/13.png deleted file mode 100644 index 0c68ef12f5..0000000000 Binary files a/front/public/images/small/chisel/sand_snakestone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/0.png b/front/public/images/small/chisel/sandstone/0.png deleted file mode 100644 index e6a78517ac..0000000000 Binary files a/front/public/images/small/chisel/sandstone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/1.png b/front/public/images/small/chisel/sandstone/1.png deleted file mode 100644 index fbabdc58df..0000000000 Binary files a/front/public/images/small/chisel/sandstone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/10.png b/front/public/images/small/chisel/sandstone/10.png deleted file mode 100644 index 010a4ca04d..0000000000 Binary files a/front/public/images/small/chisel/sandstone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/11.png b/front/public/images/small/chisel/sandstone/11.png deleted file mode 100644 index 9ea416c9a5..0000000000 Binary files a/front/public/images/small/chisel/sandstone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/12.png b/front/public/images/small/chisel/sandstone/12.png deleted file mode 100644 index 928173b4f9..0000000000 Binary files a/front/public/images/small/chisel/sandstone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/13.png b/front/public/images/small/chisel/sandstone/13.png deleted file mode 100644 index 34e4f8c3d8..0000000000 Binary files a/front/public/images/small/chisel/sandstone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/14.png b/front/public/images/small/chisel/sandstone/14.png deleted file mode 100644 index 1822435ccd..0000000000 Binary files a/front/public/images/small/chisel/sandstone/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/15.png b/front/public/images/small/chisel/sandstone/15.png deleted file mode 100644 index aa0ecc7fe3..0000000000 Binary files a/front/public/images/small/chisel/sandstone/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/2.png b/front/public/images/small/chisel/sandstone/2.png deleted file mode 100644 index a737731e15..0000000000 Binary files a/front/public/images/small/chisel/sandstone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/3.png b/front/public/images/small/chisel/sandstone/3.png deleted file mode 100644 index 74aaf764c6..0000000000 Binary files a/front/public/images/small/chisel/sandstone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/4.png b/front/public/images/small/chisel/sandstone/4.png deleted file mode 100644 index cd4b5cb178..0000000000 Binary files a/front/public/images/small/chisel/sandstone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/5.png b/front/public/images/small/chisel/sandstone/5.png deleted file mode 100644 index 56b2d00ceb..0000000000 Binary files a/front/public/images/small/chisel/sandstone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/6.png b/front/public/images/small/chisel/sandstone/6.png deleted file mode 100644 index 033e0a82b2..0000000000 Binary files a/front/public/images/small/chisel/sandstone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/7.png b/front/public/images/small/chisel/sandstone/7.png deleted file mode 100644 index aea2c7d668..0000000000 Binary files a/front/public/images/small/chisel/sandstone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/8.png b/front/public/images/small/chisel/sandstone/8.png deleted file mode 100644 index ed78e1cca7..0000000000 Binary files a/front/public/images/small/chisel/sandstone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone/9.png b/front/public/images/small/chisel/sandstone/9.png deleted file mode 100644 index d4ba66663f..0000000000 Binary files a/front/public/images/small/chisel/sandstone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone2/0.png b/front/public/images/small/chisel/sandstone2/0.png deleted file mode 100644 index cba4d54b4a..0000000000 Binary files a/front/public/images/small/chisel/sandstone2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone2/1.png b/front/public/images/small/chisel/sandstone2/1.png deleted file mode 100644 index fe178c0aa1..0000000000 Binary files a/front/public/images/small/chisel/sandstone2/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/0.png b/front/public/images/small/chisel/sandstone_scribbles/0.png deleted file mode 100644 index f5f52ee839..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/1.png b/front/public/images/small/chisel/sandstone_scribbles/1.png deleted file mode 100644 index 43659cfde5..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/10.png b/front/public/images/small/chisel/sandstone_scribbles/10.png deleted file mode 100644 index 7204ccabf9..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/11.png b/front/public/images/small/chisel/sandstone_scribbles/11.png deleted file mode 100644 index f719b67f26..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/12.png b/front/public/images/small/chisel/sandstone_scribbles/12.png deleted file mode 100644 index 40a3fa3554..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/13.png b/front/public/images/small/chisel/sandstone_scribbles/13.png deleted file mode 100644 index 4f5dd8bb3b..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/14.png b/front/public/images/small/chisel/sandstone_scribbles/14.png deleted file mode 100644 index 552f14c05b..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/15.png b/front/public/images/small/chisel/sandstone_scribbles/15.png deleted file mode 100644 index 6f03a46c67..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/2.png b/front/public/images/small/chisel/sandstone_scribbles/2.png deleted file mode 100644 index 83719aef3d..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/3.png b/front/public/images/small/chisel/sandstone_scribbles/3.png deleted file mode 100644 index b514efae0d..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/4.png b/front/public/images/small/chisel/sandstone_scribbles/4.png deleted file mode 100644 index 4fe8e27eb8..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/5.png b/front/public/images/small/chisel/sandstone_scribbles/5.png deleted file mode 100644 index a87ad5b639..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/6.png b/front/public/images/small/chisel/sandstone_scribbles/6.png deleted file mode 100644 index 3ee7240163..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/7.png b/front/public/images/small/chisel/sandstone_scribbles/7.png deleted file mode 100644 index 5b71ffd7d9..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/8.png b/front/public/images/small/chisel/sandstone_scribbles/8.png deleted file mode 100644 index b9e7fb56dc..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/sandstone_scribbles/9.png b/front/public/images/small/chisel/sandstone_scribbles/9.png deleted file mode 100644 index 619465cc31..0000000000 Binary files a/front/public/images/small/chisel/sandstone_scribbles/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/silverblock/0.png b/front/public/images/small/chisel/silverblock/0.png deleted file mode 100644 index 5642d25951..0000000000 Binary files a/front/public/images/small/chisel/silverblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/silverblock/1.png b/front/public/images/small/chisel/silverblock/1.png deleted file mode 100644 index 27fe759733..0000000000 Binary files a/front/public/images/small/chisel/silverblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/silverblock/2.png b/front/public/images/small/chisel/silverblock/2.png deleted file mode 100644 index 8f7914aaca..0000000000 Binary files a/front/public/images/small/chisel/silverblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/silverblock/3.png b/front/public/images/small/chisel/silverblock/3.png deleted file mode 100644 index 3bd68ebed8..0000000000 Binary files a/front/public/images/small/chisel/silverblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/silverblock/4.png b/front/public/images/small/chisel/silverblock/4.png deleted file mode 100644 index f91ec929b6..0000000000 Binary files a/front/public/images/small/chisel/silverblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/silverblock/5.png b/front/public/images/small/chisel/silverblock/5.png deleted file mode 100644 index 6f1264c62a..0000000000 Binary files a/front/public/images/small/chisel/silverblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/smashingrock/0.png b/front/public/images/small/chisel/smashingrock/0.png deleted file mode 100644 index b072a51f33..0000000000 Binary files a/front/public/images/small/chisel/smashingrock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/1.png b/front/public/images/small/chisel/spruce_planks/1.png deleted file mode 100644 index ba88c943c5..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/10.png b/front/public/images/small/chisel/spruce_planks/10.png deleted file mode 100644 index 16c661eb56..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/11.png b/front/public/images/small/chisel/spruce_planks/11.png deleted file mode 100644 index 571e074315..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/12.png b/front/public/images/small/chisel/spruce_planks/12.png deleted file mode 100644 index 10b5e5b232..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/13.png b/front/public/images/small/chisel/spruce_planks/13.png deleted file mode 100644 index 4a39eb34c9..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/14.png b/front/public/images/small/chisel/spruce_planks/14.png deleted file mode 100644 index 9f5a2daa5d..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/15.png b/front/public/images/small/chisel/spruce_planks/15.png deleted file mode 100644 index 77121d0aa1..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/2.png b/front/public/images/small/chisel/spruce_planks/2.png deleted file mode 100644 index 90e564a604..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/3.png b/front/public/images/small/chisel/spruce_planks/3.png deleted file mode 100644 index 4718f8975d..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/4.png b/front/public/images/small/chisel/spruce_planks/4.png deleted file mode 100644 index cb6be85c85..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/5.png b/front/public/images/small/chisel/spruce_planks/5.png deleted file mode 100644 index 4cd217ae1a..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/6.png b/front/public/images/small/chisel/spruce_planks/6.png deleted file mode 100644 index a36006580a..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/7.png b/front/public/images/small/chisel/spruce_planks/7.png deleted file mode 100644 index 225240a342..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/8.png b/front/public/images/small/chisel/spruce_planks/8.png deleted file mode 100644 index 3e97f4a87f..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/spruce_planks/9.png b/front/public/images/small/chisel/spruce_planks/9.png deleted file mode 100644 index 77e876064b..0000000000 Binary files a/front/public/images/small/chisel/spruce_planks/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/0.png b/front/public/images/small/chisel/stained_glass_brown/0.png deleted file mode 100644 index 84c236a6e3..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/1.png b/front/public/images/small/chisel/stained_glass_brown/1.png deleted file mode 100644 index 8383a72151..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/10.png b/front/public/images/small/chisel/stained_glass_brown/10.png deleted file mode 100644 index f77b337279..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/11.png b/front/public/images/small/chisel/stained_glass_brown/11.png deleted file mode 100644 index 4d59a51ea1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/12.png b/front/public/images/small/chisel/stained_glass_brown/12.png deleted file mode 100644 index 0931fe57db..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/13.png b/front/public/images/small/chisel/stained_glass_brown/13.png deleted file mode 100644 index bfaed8796d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/14.png b/front/public/images/small/chisel/stained_glass_brown/14.png deleted file mode 100644 index 902db69e00..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/15.png b/front/public/images/small/chisel/stained_glass_brown/15.png deleted file mode 100644 index 8ef7965cc8..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/2.png b/front/public/images/small/chisel/stained_glass_brown/2.png deleted file mode 100644 index 7b774d29ed..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/3.png b/front/public/images/small/chisel/stained_glass_brown/3.png deleted file mode 100644 index e75974314a..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/4.png b/front/public/images/small/chisel/stained_glass_brown/4.png deleted file mode 100644 index da4a2b1771..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/5.png b/front/public/images/small/chisel/stained_glass_brown/5.png deleted file mode 100644 index 011670d3f3..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/6.png b/front/public/images/small/chisel/stained_glass_brown/6.png deleted file mode 100644 index ee4a3fde8b..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/7.png b/front/public/images/small/chisel/stained_glass_brown/7.png deleted file mode 100644 index a8a64bdebf..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/8.png b/front/public/images/small/chisel/stained_glass_brown/8.png deleted file mode 100644 index 6a578b8867..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_brown/9.png b/front/public/images/small/chisel/stained_glass_brown/9.png deleted file mode 100644 index 411ca5511e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_brown/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/0.png b/front/public/images/small/chisel/stained_glass_forestry/0.png deleted file mode 100644 index 1b6df6d2d4..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/1.png b/front/public/images/small/chisel/stained_glass_forestry/1.png deleted file mode 100644 index 7112bb0c24..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/10.png b/front/public/images/small/chisel/stained_glass_forestry/10.png deleted file mode 100644 index 7e20fe7378..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/11.png b/front/public/images/small/chisel/stained_glass_forestry/11.png deleted file mode 100644 index 69f40b3cc8..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/12.png b/front/public/images/small/chisel/stained_glass_forestry/12.png deleted file mode 100644 index 923663f2c5..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/13.png b/front/public/images/small/chisel/stained_glass_forestry/13.png deleted file mode 100644 index d41bf528fc..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/14.png b/front/public/images/small/chisel/stained_glass_forestry/14.png deleted file mode 100644 index 29a8ada6cc..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/15.png b/front/public/images/small/chisel/stained_glass_forestry/15.png deleted file mode 100644 index 10de7744ae..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/2.png b/front/public/images/small/chisel/stained_glass_forestry/2.png deleted file mode 100644 index 5631c661a9..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/3.png b/front/public/images/small/chisel/stained_glass_forestry/3.png deleted file mode 100644 index e3ff67ce81..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/4.png b/front/public/images/small/chisel/stained_glass_forestry/4.png deleted file mode 100644 index 5151c7bb16..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/5.png b/front/public/images/small/chisel/stained_glass_forestry/5.png deleted file mode 100644 index ed92a4d3d0..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/6.png b/front/public/images/small/chisel/stained_glass_forestry/6.png deleted file mode 100644 index 79bb2d8c4c..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/7.png b/front/public/images/small/chisel/stained_glass_forestry/7.png deleted file mode 100644 index a5d3a105f3..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/8.png b/front/public/images/small/chisel/stained_glass_forestry/8.png deleted file mode 100644 index 0ee1427706..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_forestry/9.png b/front/public/images/small/chisel/stained_glass_forestry/9.png deleted file mode 100644 index ded0e1e722..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_forestry/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/0.png b/front/public/images/small/chisel/stained_glass_lightgray/0.png deleted file mode 100644 index 75c518315b..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/1.png b/front/public/images/small/chisel/stained_glass_lightgray/1.png deleted file mode 100644 index 21497da385..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/10.png b/front/public/images/small/chisel/stained_glass_lightgray/10.png deleted file mode 100644 index d19d02e9d4..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/11.png b/front/public/images/small/chisel/stained_glass_lightgray/11.png deleted file mode 100644 index 6cdbb96169..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/12.png b/front/public/images/small/chisel/stained_glass_lightgray/12.png deleted file mode 100644 index 4a1913a2b1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/13.png b/front/public/images/small/chisel/stained_glass_lightgray/13.png deleted file mode 100644 index baaf817ee6..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/14.png b/front/public/images/small/chisel/stained_glass_lightgray/14.png deleted file mode 100644 index f54571fa5a..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/15.png b/front/public/images/small/chisel/stained_glass_lightgray/15.png deleted file mode 100644 index 0ab2c3f406..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/2.png b/front/public/images/small/chisel/stained_glass_lightgray/2.png deleted file mode 100644 index a3121d53ec..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/3.png b/front/public/images/small/chisel/stained_glass_lightgray/3.png deleted file mode 100644 index 6fcbe0cf16..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/4.png b/front/public/images/small/chisel/stained_glass_lightgray/4.png deleted file mode 100644 index eb797c80d3..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/5.png b/front/public/images/small/chisel/stained_glass_lightgray/5.png deleted file mode 100644 index cad33c9bb5..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/6.png b/front/public/images/small/chisel/stained_glass_lightgray/6.png deleted file mode 100644 index 0c478367ff..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/7.png b/front/public/images/small/chisel/stained_glass_lightgray/7.png deleted file mode 100644 index d8b7dbb238..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/8.png b/front/public/images/small/chisel/stained_glass_lightgray/8.png deleted file mode 100644 index 0fc1cfbc61..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_lightgray/9.png b/front/public/images/small/chisel/stained_glass_lightgray/9.png deleted file mode 100644 index 4658034e3c..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_lightgray/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/0.png b/front/public/images/small/chisel/stained_glass_pane_brown/0.png deleted file mode 100644 index bebb1a21e2..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/1.png b/front/public/images/small/chisel/stained_glass_pane_brown/1.png deleted file mode 100644 index f6a9439559..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/10.png b/front/public/images/small/chisel/stained_glass_pane_brown/10.png deleted file mode 100644 index 67cf3192df..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/11.png b/front/public/images/small/chisel/stained_glass_pane_brown/11.png deleted file mode 100644 index f185db50f5..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/12.png b/front/public/images/small/chisel/stained_glass_pane_brown/12.png deleted file mode 100644 index 0d5e889e5a..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/13.png b/front/public/images/small/chisel/stained_glass_pane_brown/13.png deleted file mode 100644 index 99bd592bba..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/2.png b/front/public/images/small/chisel/stained_glass_pane_brown/2.png deleted file mode 100644 index 80f8c4f089..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/3.png b/front/public/images/small/chisel/stained_glass_pane_brown/3.png deleted file mode 100644 index 45667aae68..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/4.png b/front/public/images/small/chisel/stained_glass_pane_brown/4.png deleted file mode 100644 index 9e82bec980..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/5.png b/front/public/images/small/chisel/stained_glass_pane_brown/5.png deleted file mode 100644 index 8dde3c00c2..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/8.png b/front/public/images/small/chisel/stained_glass_pane_brown/8.png deleted file mode 100644 index a37518892d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_brown/9.png b/front/public/images/small/chisel/stained_glass_pane_brown/9.png deleted file mode 100644 index f4cc12200c..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_brown/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/0.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/0.png deleted file mode 100644 index 7379a26a5b..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/1.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/1.png deleted file mode 100644 index 769301e79d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/10.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/10.png deleted file mode 100644 index 1d6cee893c..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/11.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/11.png deleted file mode 100644 index 3bb151965d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/12.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/12.png deleted file mode 100644 index d3b7267cc7..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/13.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/13.png deleted file mode 100644 index 3f6ca0090d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/2.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/2.png deleted file mode 100644 index c1dfaa0bc6..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/3.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/3.png deleted file mode 100644 index 90d27afecb..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/4.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/4.png deleted file mode 100644 index 5b967fa68f..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/5.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/5.png deleted file mode 100644 index 7de10a471f..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/8.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/8.png deleted file mode 100644 index b9d374451e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_lightgray/9.png b/front/public/images/small/chisel/stained_glass_pane_lightgray/9.png deleted file mode 100644 index 3d1177e66e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_lightgray/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/0.png b/front/public/images/small/chisel/stained_glass_pane_magenta/0.png deleted file mode 100644 index 6265c2d82c..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/1.png b/front/public/images/small/chisel/stained_glass_pane_magenta/1.png deleted file mode 100644 index 7519d46018..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/10.png b/front/public/images/small/chisel/stained_glass_pane_magenta/10.png deleted file mode 100644 index 22cc2b5aa1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/11.png b/front/public/images/small/chisel/stained_glass_pane_magenta/11.png deleted file mode 100644 index aecfe9d03e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/12.png b/front/public/images/small/chisel/stained_glass_pane_magenta/12.png deleted file mode 100644 index 38710a9ffc..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/13.png b/front/public/images/small/chisel/stained_glass_pane_magenta/13.png deleted file mode 100644 index 4f9fc5b6a1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/2.png b/front/public/images/small/chisel/stained_glass_pane_magenta/2.png deleted file mode 100644 index ee5a5bc5ee..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/3.png b/front/public/images/small/chisel/stained_glass_pane_magenta/3.png deleted file mode 100644 index 5831822d66..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/4.png b/front/public/images/small/chisel/stained_glass_pane_magenta/4.png deleted file mode 100644 index 73b19b5d56..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/5.png b/front/public/images/small/chisel/stained_glass_pane_magenta/5.png deleted file mode 100644 index 9665eda9f8..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/8.png b/front/public/images/small/chisel/stained_glass_pane_magenta/8.png deleted file mode 100644 index b9dc5dd6f7..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_magenta/9.png b/front/public/images/small/chisel/stained_glass_pane_magenta/9.png deleted file mode 100644 index 9f89e42bbf..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_magenta/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/0.png b/front/public/images/small/chisel/stained_glass_pane_pink/0.png deleted file mode 100644 index 96696a20d4..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/1.png b/front/public/images/small/chisel/stained_glass_pane_pink/1.png deleted file mode 100644 index 98bc1d6f83..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/10.png b/front/public/images/small/chisel/stained_glass_pane_pink/10.png deleted file mode 100644 index f95324548b..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/11.png b/front/public/images/small/chisel/stained_glass_pane_pink/11.png deleted file mode 100644 index b7ad4b89c1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/12.png b/front/public/images/small/chisel/stained_glass_pane_pink/12.png deleted file mode 100644 index 84fc3ba0ac..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/13.png b/front/public/images/small/chisel/stained_glass_pane_pink/13.png deleted file mode 100644 index f81fa8f9a9..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/2.png b/front/public/images/small/chisel/stained_glass_pane_pink/2.png deleted file mode 100644 index 0298a4f3b2..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/3.png b/front/public/images/small/chisel/stained_glass_pane_pink/3.png deleted file mode 100644 index 26befde2ba..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/4.png b/front/public/images/small/chisel/stained_glass_pane_pink/4.png deleted file mode 100644 index 6bb28507f8..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/5.png b/front/public/images/small/chisel/stained_glass_pane_pink/5.png deleted file mode 100644 index 5aa5c0c009..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/8.png b/front/public/images/small/chisel/stained_glass_pane_pink/8.png deleted file mode 100644 index f4e8ee1652..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_pink/9.png b/front/public/images/small/chisel/stained_glass_pane_pink/9.png deleted file mode 100644 index 645013cfb0..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_pink/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/0.png b/front/public/images/small/chisel/stained_glass_pane_purple/0.png deleted file mode 100644 index 308fb08179..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/1.png b/front/public/images/small/chisel/stained_glass_pane_purple/1.png deleted file mode 100644 index 510b1bdbfd..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/10.png b/front/public/images/small/chisel/stained_glass_pane_purple/10.png deleted file mode 100644 index f6a8578e2d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/11.png b/front/public/images/small/chisel/stained_glass_pane_purple/11.png deleted file mode 100644 index c5a63fc7aa..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/12.png b/front/public/images/small/chisel/stained_glass_pane_purple/12.png deleted file mode 100644 index 3933f819e8..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/13.png b/front/public/images/small/chisel/stained_glass_pane_purple/13.png deleted file mode 100644 index 2a900728a6..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/2.png b/front/public/images/small/chisel/stained_glass_pane_purple/2.png deleted file mode 100644 index 1403705427..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/3.png b/front/public/images/small/chisel/stained_glass_pane_purple/3.png deleted file mode 100644 index 4ef67967f7..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/4.png b/front/public/images/small/chisel/stained_glass_pane_purple/4.png deleted file mode 100644 index ead70976ae..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/5.png b/front/public/images/small/chisel/stained_glass_pane_purple/5.png deleted file mode 100644 index bc2e1b30a9..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/8.png b/front/public/images/small/chisel/stained_glass_pane_purple/8.png deleted file mode 100644 index 3f05d0d50b..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_purple/9.png b/front/public/images/small/chisel/stained_glass_pane_purple/9.png deleted file mode 100644 index 252b32645f..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_purple/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/0.png b/front/public/images/small/chisel/stained_glass_pane_red/0.png deleted file mode 100644 index ea33b89c36..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/1.png b/front/public/images/small/chisel/stained_glass_pane_red/1.png deleted file mode 100644 index dcc01edde2..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/10.png b/front/public/images/small/chisel/stained_glass_pane_red/10.png deleted file mode 100644 index daf686006a..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/11.png b/front/public/images/small/chisel/stained_glass_pane_red/11.png deleted file mode 100644 index a8b13a2ce5..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/12.png b/front/public/images/small/chisel/stained_glass_pane_red/12.png deleted file mode 100644 index e48e1f2125..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/13.png b/front/public/images/small/chisel/stained_glass_pane_red/13.png deleted file mode 100644 index dc122d9638..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/2.png b/front/public/images/small/chisel/stained_glass_pane_red/2.png deleted file mode 100644 index 2d0fedf439..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/3.png b/front/public/images/small/chisel/stained_glass_pane_red/3.png deleted file mode 100644 index ea3dd44117..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/4.png b/front/public/images/small/chisel/stained_glass_pane_red/4.png deleted file mode 100644 index 15e517b773..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/5.png b/front/public/images/small/chisel/stained_glass_pane_red/5.png deleted file mode 100644 index c6295109a1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/8.png b/front/public/images/small/chisel/stained_glass_pane_red/8.png deleted file mode 100644 index 7ac3166a2f..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_red/9.png b/front/public/images/small/chisel/stained_glass_pane_red/9.png deleted file mode 100644 index 345a3a734e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_red/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/0.png b/front/public/images/small/chisel/stained_glass_pane_white/0.png deleted file mode 100644 index 841ca8da12..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/1.png b/front/public/images/small/chisel/stained_glass_pane_white/1.png deleted file mode 100644 index 02d290834d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/10.png b/front/public/images/small/chisel/stained_glass_pane_white/10.png deleted file mode 100644 index f666c7bde7..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/11.png b/front/public/images/small/chisel/stained_glass_pane_white/11.png deleted file mode 100644 index fe303a83f4..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/12.png b/front/public/images/small/chisel/stained_glass_pane_white/12.png deleted file mode 100644 index 34f1ec1914..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/13.png b/front/public/images/small/chisel/stained_glass_pane_white/13.png deleted file mode 100644 index cc241cab92..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/2.png b/front/public/images/small/chisel/stained_glass_pane_white/2.png deleted file mode 100644 index 98a9998f06..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/3.png b/front/public/images/small/chisel/stained_glass_pane_white/3.png deleted file mode 100644 index 35dbe69048..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/4.png b/front/public/images/small/chisel/stained_glass_pane_white/4.png deleted file mode 100644 index c854e88de1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/5.png b/front/public/images/small/chisel/stained_glass_pane_white/5.png deleted file mode 100644 index d6da573376..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/8.png b/front/public/images/small/chisel/stained_glass_pane_white/8.png deleted file mode 100644 index a0350cf70e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_white/9.png b/front/public/images/small/chisel/stained_glass_pane_white/9.png deleted file mode 100644 index dd9aa18e3d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_white/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/0.png b/front/public/images/small/chisel/stained_glass_pane_yellow/0.png deleted file mode 100644 index 5eb8c97720..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/1.png b/front/public/images/small/chisel/stained_glass_pane_yellow/1.png deleted file mode 100644 index 0fe0fc9cad..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/10.png b/front/public/images/small/chisel/stained_glass_pane_yellow/10.png deleted file mode 100644 index 2b63982354..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/11.png b/front/public/images/small/chisel/stained_glass_pane_yellow/11.png deleted file mode 100644 index 79cd242eef..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/12.png b/front/public/images/small/chisel/stained_glass_pane_yellow/12.png deleted file mode 100644 index 927fb3fb8e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/13.png b/front/public/images/small/chisel/stained_glass_pane_yellow/13.png deleted file mode 100644 index b8673f0a96..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/2.png b/front/public/images/small/chisel/stained_glass_pane_yellow/2.png deleted file mode 100644 index 784deb23a1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/3.png b/front/public/images/small/chisel/stained_glass_pane_yellow/3.png deleted file mode 100644 index 305fee2230..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/4.png b/front/public/images/small/chisel/stained_glass_pane_yellow/4.png deleted file mode 100644 index 0cadc523ae..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/5.png b/front/public/images/small/chisel/stained_glass_pane_yellow/5.png deleted file mode 100644 index a27fc96a27..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/8.png b/front/public/images/small/chisel/stained_glass_pane_yellow/8.png deleted file mode 100644 index cd0a93199c..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_pane_yellow/9.png b/front/public/images/small/chisel/stained_glass_pane_yellow/9.png deleted file mode 100644 index 5a236a9c4f..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_pane_yellow/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/0.png b/front/public/images/small/chisel/stained_glass_white/0.png deleted file mode 100644 index 3a5071d328..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/1.png b/front/public/images/small/chisel/stained_glass_white/1.png deleted file mode 100644 index 90e50b4206..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/10.png b/front/public/images/small/chisel/stained_glass_white/10.png deleted file mode 100644 index 19d6aa1b62..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/11.png b/front/public/images/small/chisel/stained_glass_white/11.png deleted file mode 100644 index 303d87c05e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/12.png b/front/public/images/small/chisel/stained_glass_white/12.png deleted file mode 100644 index 4c3b626b35..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/13.png b/front/public/images/small/chisel/stained_glass_white/13.png deleted file mode 100644 index 308e9c0bb4..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/14.png b/front/public/images/small/chisel/stained_glass_white/14.png deleted file mode 100644 index 2472d6ecaa..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/15.png b/front/public/images/small/chisel/stained_glass_white/15.png deleted file mode 100644 index c3a0d08de6..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/2.png b/front/public/images/small/chisel/stained_glass_white/2.png deleted file mode 100644 index 9993309db3..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/3.png b/front/public/images/small/chisel/stained_glass_white/3.png deleted file mode 100644 index b37f2a040d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/4.png b/front/public/images/small/chisel/stained_glass_white/4.png deleted file mode 100644 index 5caf7616ef..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/5.png b/front/public/images/small/chisel/stained_glass_white/5.png deleted file mode 100644 index 2dd7ce3cf8..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/6.png b/front/public/images/small/chisel/stained_glass_white/6.png deleted file mode 100644 index 5c3df799e3..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/7.png b/front/public/images/small/chisel/stained_glass_white/7.png deleted file mode 100644 index 5b51f60676..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/8.png b/front/public/images/small/chisel/stained_glass_white/8.png deleted file mode 100644 index 630a770364..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_white/9.png b/front/public/images/small/chisel/stained_glass_white/9.png deleted file mode 100644 index 0757ca58cf..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_white/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/0.png b/front/public/images/small/chisel/stained_glass_yellow/0.png deleted file mode 100644 index 40e674cda4..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/1.png b/front/public/images/small/chisel/stained_glass_yellow/1.png deleted file mode 100644 index 8232b3b194..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/10.png b/front/public/images/small/chisel/stained_glass_yellow/10.png deleted file mode 100644 index f038d4c692..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/11.png b/front/public/images/small/chisel/stained_glass_yellow/11.png deleted file mode 100644 index a0ab04a907..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/12.png b/front/public/images/small/chisel/stained_glass_yellow/12.png deleted file mode 100644 index 643147a26d..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/13.png b/front/public/images/small/chisel/stained_glass_yellow/13.png deleted file mode 100644 index 6d0338a497..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/14.png b/front/public/images/small/chisel/stained_glass_yellow/14.png deleted file mode 100644 index f0a6f51297..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/15.png b/front/public/images/small/chisel/stained_glass_yellow/15.png deleted file mode 100644 index 4ac5dac834..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/2.png b/front/public/images/small/chisel/stained_glass_yellow/2.png deleted file mode 100644 index 28d8b7b8e7..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/3.png b/front/public/images/small/chisel/stained_glass_yellow/3.png deleted file mode 100644 index 2cb6913216..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/4.png b/front/public/images/small/chisel/stained_glass_yellow/4.png deleted file mode 100644 index 1defc3e36e..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/5.png b/front/public/images/small/chisel/stained_glass_yellow/5.png deleted file mode 100644 index 5cc933201f..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/6.png b/front/public/images/small/chisel/stained_glass_yellow/6.png deleted file mode 100644 index 22ec2ac8ce..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/7.png b/front/public/images/small/chisel/stained_glass_yellow/7.png deleted file mode 100644 index 41049801e1..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/8.png b/front/public/images/small/chisel/stained_glass_yellow/8.png deleted file mode 100644 index d2b256a998..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stained_glass_yellow/9.png b/front/public/images/small/chisel/stained_glass_yellow/9.png deleted file mode 100644 index 40d7b1fd62..0000000000 Binary files a/front/public/images/small/chisel/stained_glass_yellow/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/steelblock/0.png b/front/public/images/small/chisel/steelblock/0.png deleted file mode 100644 index 1e928a8569..0000000000 Binary files a/front/public/images/small/chisel/steelblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/steelblock/1.png b/front/public/images/small/chisel/steelblock/1.png deleted file mode 100644 index caf408dd34..0000000000 Binary files a/front/public/images/small/chisel/steelblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/steelblock/2.png b/front/public/images/small/chisel/steelblock/2.png deleted file mode 100644 index 5db7805c87..0000000000 Binary files a/front/public/images/small/chisel/steelblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/steelblock/3.png b/front/public/images/small/chisel/steelblock/3.png deleted file mode 100644 index ecab7b8b79..0000000000 Binary files a/front/public/images/small/chisel/steelblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/steelblock/4.png b/front/public/images/small/chisel/steelblock/4.png deleted file mode 100644 index 768f757d75..0000000000 Binary files a/front/public/images/small/chisel/steelblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/steelblock/5.png b/front/public/images/small/chisel/steelblock/5.png deleted file mode 100644 index 11fdda5326..0000000000 Binary files a/front/public/images/small/chisel/steelblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stone_snakestone/1.png b/front/public/images/small/chisel/stone_snakestone/1.png deleted file mode 100644 index 0442b60575..0000000000 Binary files a/front/public/images/small/chisel/stone_snakestone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stone_snakestone/13.png b/front/public/images/small/chisel/stone_snakestone/13.png deleted file mode 100644 index 210049f7b4..0000000000 Binary files a/front/public/images/small/chisel/stone_snakestone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/0.png b/front/public/images/small/chisel/stonebricksmooth/0.png deleted file mode 100644 index 6733e1e7a4..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/1.png b/front/public/images/small/chisel/stonebricksmooth/1.png deleted file mode 100644 index dd91dc2c52..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/10.png b/front/public/images/small/chisel/stonebricksmooth/10.png deleted file mode 100644 index 5d47669670..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/11.png b/front/public/images/small/chisel/stonebricksmooth/11.png deleted file mode 100644 index ce4a63da4c..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/12.png b/front/public/images/small/chisel/stonebricksmooth/12.png deleted file mode 100644 index 3f6512495b..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/13.png b/front/public/images/small/chisel/stonebricksmooth/13.png deleted file mode 100644 index 49a8fc21c7..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/14.png b/front/public/images/small/chisel/stonebricksmooth/14.png deleted file mode 100644 index 5a73c2cfe4..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/15.png b/front/public/images/small/chisel/stonebricksmooth/15.png deleted file mode 100644 index 5fded24216..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/2.png b/front/public/images/small/chisel/stonebricksmooth/2.png deleted file mode 100644 index 5c640d8a31..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/3.png b/front/public/images/small/chisel/stonebricksmooth/3.png deleted file mode 100644 index 302f2ba7fa..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/4.png b/front/public/images/small/chisel/stonebricksmooth/4.png deleted file mode 100644 index 49bcc7949d..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/5.png b/front/public/images/small/chisel/stonebricksmooth/5.png deleted file mode 100644 index 07ad5bad7b..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/6.png b/front/public/images/small/chisel/stonebricksmooth/6.png deleted file mode 100644 index aad127a2c3..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/7.png b/front/public/images/small/chisel/stonebricksmooth/7.png deleted file mode 100644 index 167455f1c7..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/8.png b/front/public/images/small/chisel/stonebricksmooth/8.png deleted file mode 100644 index 2bb1d81d75..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/stonebricksmooth/9.png b/front/public/images/small/chisel/stonebricksmooth/9.png deleted file mode 100644 index bf14bd99f4..0000000000 Binary files a/front/public/images/small/chisel/stonebricksmooth/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/0.png b/front/public/images/small/chisel/sveltstone/0.png deleted file mode 100644 index 0bf968e373..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/1.png b/front/public/images/small/chisel/sveltstone/1.png deleted file mode 100644 index 3fa3513100..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/10.png b/front/public/images/small/chisel/sveltstone/10.png deleted file mode 100644 index d229e30366..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/11.png b/front/public/images/small/chisel/sveltstone/11.png deleted file mode 100644 index 598bbebfde..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/12.png b/front/public/images/small/chisel/sveltstone/12.png deleted file mode 100644 index e66b86f667..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/13.png b/front/public/images/small/chisel/sveltstone/13.png deleted file mode 100644 index 4148b6ada6..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/14.png b/front/public/images/small/chisel/sveltstone/14.png deleted file mode 100644 index 235e20122d..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/15.png b/front/public/images/small/chisel/sveltstone/15.png deleted file mode 100644 index 4a7dd74ca3..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/2.png b/front/public/images/small/chisel/sveltstone/2.png deleted file mode 100644 index 17cbbc7e33..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/3.png b/front/public/images/small/chisel/sveltstone/3.png deleted file mode 100644 index 1e84af4ed1..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/4.png b/front/public/images/small/chisel/sveltstone/4.png deleted file mode 100644 index 695c5b380d..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/5.png b/front/public/images/small/chisel/sveltstone/5.png deleted file mode 100644 index cb55cb8471..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/6.png b/front/public/images/small/chisel/sveltstone/6.png deleted file mode 100644 index fc95f1212e..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/7.png b/front/public/images/small/chisel/sveltstone/7.png deleted file mode 100644 index 7dd6b3d085..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/8.png b/front/public/images/small/chisel/sveltstone/8.png deleted file mode 100644 index 5332b63895..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/sveltstone/9.png b/front/public/images/small/chisel/sveltstone/9.png deleted file mode 100644 index 217a011ee7..0000000000 Binary files a/front/public/images/small/chisel/sveltstone/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/tallow/0.png b/front/public/images/small/chisel/tallow/0.png deleted file mode 100644 index 1eae390ed4..0000000000 Binary files a/front/public/images/small/chisel/tallow/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/tallow/1.png b/front/public/images/small/chisel/tallow/1.png deleted file mode 100644 index 45cb5bd628..0000000000 Binary files a/front/public/images/small/chisel/tallow/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/0.png b/front/public/images/small/chisel/technical/0.png deleted file mode 100644 index 9a7db80306..0000000000 Binary files a/front/public/images/small/chisel/technical/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/1.png b/front/public/images/small/chisel/technical/1.png deleted file mode 100644 index 43f935f049..0000000000 Binary files a/front/public/images/small/chisel/technical/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/10.png b/front/public/images/small/chisel/technical/10.png deleted file mode 100644 index 9d4211a48a..0000000000 Binary files a/front/public/images/small/chisel/technical/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/11.png b/front/public/images/small/chisel/technical/11.png deleted file mode 100644 index 54729e8935..0000000000 Binary files a/front/public/images/small/chisel/technical/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/12.png b/front/public/images/small/chisel/technical/12.png deleted file mode 100644 index f26182b595..0000000000 Binary files a/front/public/images/small/chisel/technical/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/13.png b/front/public/images/small/chisel/technical/13.png deleted file mode 100644 index ce3cd2701e..0000000000 Binary files a/front/public/images/small/chisel/technical/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/14.png b/front/public/images/small/chisel/technical/14.png deleted file mode 100644 index 4539f9561c..0000000000 Binary files a/front/public/images/small/chisel/technical/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/15.png b/front/public/images/small/chisel/technical/15.png deleted file mode 100644 index 92774e8f3c..0000000000 Binary files a/front/public/images/small/chisel/technical/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/2.png b/front/public/images/small/chisel/technical/2.png deleted file mode 100644 index fc9843b447..0000000000 Binary files a/front/public/images/small/chisel/technical/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/3.png b/front/public/images/small/chisel/technical/3.png deleted file mode 100644 index f1d55700dc..0000000000 Binary files a/front/public/images/small/chisel/technical/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/4.png b/front/public/images/small/chisel/technical/4.png deleted file mode 100644 index 4539f9561c..0000000000 Binary files a/front/public/images/small/chisel/technical/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/5.png b/front/public/images/small/chisel/technical/5.png deleted file mode 100644 index f23056e5ac..0000000000 Binary files a/front/public/images/small/chisel/technical/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/6.png b/front/public/images/small/chisel/technical/6.png deleted file mode 100644 index 760ec8dcd6..0000000000 Binary files a/front/public/images/small/chisel/technical/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/7.png b/front/public/images/small/chisel/technical/7.png deleted file mode 100644 index ed58d000e9..0000000000 Binary files a/front/public/images/small/chisel/technical/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/8.png b/front/public/images/small/chisel/technical/8.png deleted file mode 100644 index 71e00e3a28..0000000000 Binary files a/front/public/images/small/chisel/technical/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical/9.png b/front/public/images/small/chisel/technical/9.png deleted file mode 100644 index 0fc3625d84..0000000000 Binary files a/front/public/images/small/chisel/technical/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical2/0.png b/front/public/images/small/chisel/technical2/0.png deleted file mode 100644 index 0d287d8523..0000000000 Binary files a/front/public/images/small/chisel/technical2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical2/1.png b/front/public/images/small/chisel/technical2/1.png deleted file mode 100644 index 0c37c708df..0000000000 Binary files a/front/public/images/small/chisel/technical2/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical2/2.png b/front/public/images/small/chisel/technical2/2.png deleted file mode 100644 index 308f2d76fe..0000000000 Binary files a/front/public/images/small/chisel/technical2/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical2/3.png b/front/public/images/small/chisel/technical2/3.png deleted file mode 100644 index 308f2d76fe..0000000000 Binary files a/front/public/images/small/chisel/technical2/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical3/0.png b/front/public/images/small/chisel/technical3/0.png deleted file mode 100644 index 112b0aaf74..0000000000 Binary files a/front/public/images/small/chisel/technical3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical3/1.png b/front/public/images/small/chisel/technical3/1.png deleted file mode 100644 index 3e23805755..0000000000 Binary files a/front/public/images/small/chisel/technical3/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/0.png b/front/public/images/small/chisel/technical4/0.png deleted file mode 100644 index d581115fef..0000000000 Binary files a/front/public/images/small/chisel/technical4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/1.png b/front/public/images/small/chisel/technical4/1.png deleted file mode 100644 index 7102bce8ad..0000000000 Binary files a/front/public/images/small/chisel/technical4/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/2.png b/front/public/images/small/chisel/technical4/2.png deleted file mode 100644 index 4f29b93110..0000000000 Binary files a/front/public/images/small/chisel/technical4/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/3.png b/front/public/images/small/chisel/technical4/3.png deleted file mode 100644 index 883de93552..0000000000 Binary files a/front/public/images/small/chisel/technical4/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/4.png b/front/public/images/small/chisel/technical4/4.png deleted file mode 100644 index 137b75be7a..0000000000 Binary files a/front/public/images/small/chisel/technical4/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/5.png b/front/public/images/small/chisel/technical4/5.png deleted file mode 100644 index 10f674118a..0000000000 Binary files a/front/public/images/small/chisel/technical4/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/6.png b/front/public/images/small/chisel/technical4/6.png deleted file mode 100644 index 93e420fd59..0000000000 Binary files a/front/public/images/small/chisel/technical4/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/technical4/7.png b/front/public/images/small/chisel/technical4/7.png deleted file mode 100644 index 76adac44d6..0000000000 Binary files a/front/public/images/small/chisel/technical4/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/0.png b/front/public/images/small/chisel/templeblock/0.png deleted file mode 100644 index 08fa60d3fa..0000000000 Binary files a/front/public/images/small/chisel/templeblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/1.png b/front/public/images/small/chisel/templeblock/1.png deleted file mode 100644 index 9852821113..0000000000 Binary files a/front/public/images/small/chisel/templeblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/10.png b/front/public/images/small/chisel/templeblock/10.png deleted file mode 100644 index af8df65744..0000000000 Binary files a/front/public/images/small/chisel/templeblock/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/11.png b/front/public/images/small/chisel/templeblock/11.png deleted file mode 100644 index 596c9fa4fc..0000000000 Binary files a/front/public/images/small/chisel/templeblock/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/12.png b/front/public/images/small/chisel/templeblock/12.png deleted file mode 100644 index b8f9a6a866..0000000000 Binary files a/front/public/images/small/chisel/templeblock/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/13.png b/front/public/images/small/chisel/templeblock/13.png deleted file mode 100644 index d2bf2d0ca0..0000000000 Binary files a/front/public/images/small/chisel/templeblock/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/14.png b/front/public/images/small/chisel/templeblock/14.png deleted file mode 100644 index 33f71a18f4..0000000000 Binary files a/front/public/images/small/chisel/templeblock/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/15.png b/front/public/images/small/chisel/templeblock/15.png deleted file mode 100644 index bd0e6d64ca..0000000000 Binary files a/front/public/images/small/chisel/templeblock/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/2.png b/front/public/images/small/chisel/templeblock/2.png deleted file mode 100644 index 355f622f49..0000000000 Binary files a/front/public/images/small/chisel/templeblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/3.png b/front/public/images/small/chisel/templeblock/3.png deleted file mode 100644 index 2a6eedbd69..0000000000 Binary files a/front/public/images/small/chisel/templeblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/4.png b/front/public/images/small/chisel/templeblock/4.png deleted file mode 100644 index ed261e433c..0000000000 Binary files a/front/public/images/small/chisel/templeblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/5.png b/front/public/images/small/chisel/templeblock/5.png deleted file mode 100644 index bdcf334813..0000000000 Binary files a/front/public/images/small/chisel/templeblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/6.png b/front/public/images/small/chisel/templeblock/6.png deleted file mode 100644 index dd3604f116..0000000000 Binary files a/front/public/images/small/chisel/templeblock/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/7.png b/front/public/images/small/chisel/templeblock/7.png deleted file mode 100644 index 2729c13f45..0000000000 Binary files a/front/public/images/small/chisel/templeblock/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/8.png b/front/public/images/small/chisel/templeblock/8.png deleted file mode 100644 index f2cb707892..0000000000 Binary files a/front/public/images/small/chisel/templeblock/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/templeblock/9.png b/front/public/images/small/chisel/templeblock/9.png deleted file mode 100644 index d5d55f9102..0000000000 Binary files a/front/public/images/small/chisel/templeblock/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/thaumium/0.png b/front/public/images/small/chisel/thaumium/0.png deleted file mode 100644 index 190269ba39..0000000000 Binary files a/front/public/images/small/chisel/thaumium/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/thaumium/1.png b/front/public/images/small/chisel/thaumium/1.png deleted file mode 100644 index 353c0420e5..0000000000 Binary files a/front/public/images/small/chisel/thaumium/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/thaumium/2.png b/front/public/images/small/chisel/thaumium/2.png deleted file mode 100644 index 315c90f9c3..0000000000 Binary files a/front/public/images/small/chisel/thaumium/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/thaumium/3.png b/front/public/images/small/chisel/thaumium/3.png deleted file mode 100644 index dba5a611ef..0000000000 Binary files a/front/public/images/small/chisel/thaumium/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/thaumium/4.png b/front/public/images/small/chisel/thaumium/4.png deleted file mode 100644 index 5c884bfe35..0000000000 Binary files a/front/public/images/small/chisel/thaumium/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/thaumium/5.png b/front/public/images/small/chisel/thaumium/5.png deleted file mode 100644 index 7850e3c95f..0000000000 Binary files a/front/public/images/small/chisel/thaumium/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/tinblock/0.png b/front/public/images/small/chisel/tinblock/0.png deleted file mode 100644 index 16038fef42..0000000000 Binary files a/front/public/images/small/chisel/tinblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/tinblock/1.png b/front/public/images/small/chisel/tinblock/1.png deleted file mode 100644 index 89979b3560..0000000000 Binary files a/front/public/images/small/chisel/tinblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/tinblock/2.png b/front/public/images/small/chisel/tinblock/2.png deleted file mode 100644 index 40e8ead09c..0000000000 Binary files a/front/public/images/small/chisel/tinblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/tinblock/3.png b/front/public/images/small/chisel/tinblock/3.png deleted file mode 100644 index 704f618959..0000000000 Binary files a/front/public/images/small/chisel/tinblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/tinblock/4.png b/front/public/images/small/chisel/tinblock/4.png deleted file mode 100644 index a7f795b8b1..0000000000 Binary files a/front/public/images/small/chisel/tinblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/tinblock/5.png b/front/public/images/small/chisel/tinblock/5.png deleted file mode 100644 index 59ee57e5a3..0000000000 Binary files a/front/public/images/small/chisel/tinblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch1/0.png b/front/public/images/small/chisel/torch1/0.png deleted file mode 100644 index 4c8622d966..0000000000 Binary files a/front/public/images/small/chisel/torch1/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch10/0.png b/front/public/images/small/chisel/torch10/0.png deleted file mode 100644 index bb1a3303dd..0000000000 Binary files a/front/public/images/small/chisel/torch10/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch2/0.png b/front/public/images/small/chisel/torch2/0.png deleted file mode 100644 index 23f75c80f8..0000000000 Binary files a/front/public/images/small/chisel/torch2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch3/0.png b/front/public/images/small/chisel/torch3/0.png deleted file mode 100644 index 2ef9e23265..0000000000 Binary files a/front/public/images/small/chisel/torch3/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch4/0.png b/front/public/images/small/chisel/torch4/0.png deleted file mode 100644 index 42f652aa90..0000000000 Binary files a/front/public/images/small/chisel/torch4/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch5/0.png b/front/public/images/small/chisel/torch5/0.png deleted file mode 100644 index f479d7308b..0000000000 Binary files a/front/public/images/small/chisel/torch5/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch6/0.png b/front/public/images/small/chisel/torch6/0.png deleted file mode 100644 index 532cb3a1c0..0000000000 Binary files a/front/public/images/small/chisel/torch6/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch7/0.png b/front/public/images/small/chisel/torch7/0.png deleted file mode 100644 index e13a412622..0000000000 Binary files a/front/public/images/small/chisel/torch7/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch8/0.png b/front/public/images/small/chisel/torch8/0.png deleted file mode 100644 index 1e00276e08..0000000000 Binary files a/front/public/images/small/chisel/torch8/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/torch9/0.png b/front/public/images/small/chisel/torch9/0.png deleted file mode 100644 index b6d70ff741..0000000000 Binary files a/front/public/images/small/chisel/torch9/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/0.png b/front/public/images/small/chisel/tyrian/0.png deleted file mode 100644 index 11cf81e36f..0000000000 Binary files a/front/public/images/small/chisel/tyrian/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/1.png b/front/public/images/small/chisel/tyrian/1.png deleted file mode 100644 index 16447d8cbd..0000000000 Binary files a/front/public/images/small/chisel/tyrian/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/10.png b/front/public/images/small/chisel/tyrian/10.png deleted file mode 100644 index 3f5d42e475..0000000000 Binary files a/front/public/images/small/chisel/tyrian/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/11.png b/front/public/images/small/chisel/tyrian/11.png deleted file mode 100644 index 84e177656b..0000000000 Binary files a/front/public/images/small/chisel/tyrian/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/12.png b/front/public/images/small/chisel/tyrian/12.png deleted file mode 100644 index 1c772b862b..0000000000 Binary files a/front/public/images/small/chisel/tyrian/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/13.png b/front/public/images/small/chisel/tyrian/13.png deleted file mode 100644 index e24beb56d1..0000000000 Binary files a/front/public/images/small/chisel/tyrian/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/14.png b/front/public/images/small/chisel/tyrian/14.png deleted file mode 100644 index 5255cf6c76..0000000000 Binary files a/front/public/images/small/chisel/tyrian/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/15.png b/front/public/images/small/chisel/tyrian/15.png deleted file mode 100644 index 8b713838fa..0000000000 Binary files a/front/public/images/small/chisel/tyrian/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/2.png b/front/public/images/small/chisel/tyrian/2.png deleted file mode 100644 index 8ebd146692..0000000000 Binary files a/front/public/images/small/chisel/tyrian/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/3.png b/front/public/images/small/chisel/tyrian/3.png deleted file mode 100644 index 83b920f64b..0000000000 Binary files a/front/public/images/small/chisel/tyrian/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/4.png b/front/public/images/small/chisel/tyrian/4.png deleted file mode 100644 index 014aa1bc88..0000000000 Binary files a/front/public/images/small/chisel/tyrian/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/5.png b/front/public/images/small/chisel/tyrian/5.png deleted file mode 100644 index 47b337cf78..0000000000 Binary files a/front/public/images/small/chisel/tyrian/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/6.png b/front/public/images/small/chisel/tyrian/6.png deleted file mode 100644 index c4d1b93010..0000000000 Binary files a/front/public/images/small/chisel/tyrian/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/7.png b/front/public/images/small/chisel/tyrian/7.png deleted file mode 100644 index da7b3d0e69..0000000000 Binary files a/front/public/images/small/chisel/tyrian/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/8.png b/front/public/images/small/chisel/tyrian/8.png deleted file mode 100644 index 6f332e0179..0000000000 Binary files a/front/public/images/small/chisel/tyrian/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/tyrian/9.png b/front/public/images/small/chisel/tyrian/9.png deleted file mode 100644 index 7f00e7d7ae..0000000000 Binary files a/front/public/images/small/chisel/tyrian/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/upgrade/0.png b/front/public/images/small/chisel/upgrade/0.png deleted file mode 100644 index 10454aec89..0000000000 Binary files a/front/public/images/small/chisel/upgrade/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/upgrade/1.png b/front/public/images/small/chisel/upgrade/1.png deleted file mode 100644 index 6fb45e1e15..0000000000 Binary files a/front/public/images/small/chisel/upgrade/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/upgrade/2.png b/front/public/images/small/chisel/upgrade/2.png deleted file mode 100644 index ef19bc6277..0000000000 Binary files a/front/public/images/small/chisel/upgrade/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/upgrade/3.png b/front/public/images/small/chisel/upgrade/3.png deleted file mode 100644 index e4a25e72a7..0000000000 Binary files a/front/public/images/small/chisel/upgrade/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/uraniumblock/0.png b/front/public/images/small/chisel/uraniumblock/0.png deleted file mode 100644 index 748bbdc35a..0000000000 Binary files a/front/public/images/small/chisel/uraniumblock/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/uraniumblock/1.png b/front/public/images/small/chisel/uraniumblock/1.png deleted file mode 100644 index ff6cc2b288..0000000000 Binary files a/front/public/images/small/chisel/uraniumblock/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/uraniumblock/2.png b/front/public/images/small/chisel/uraniumblock/2.png deleted file mode 100644 index 6dc3c104d8..0000000000 Binary files a/front/public/images/small/chisel/uraniumblock/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/uraniumblock/3.png b/front/public/images/small/chisel/uraniumblock/3.png deleted file mode 100644 index 3d634948b3..0000000000 Binary files a/front/public/images/small/chisel/uraniumblock/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/uraniumblock/4.png b/front/public/images/small/chisel/uraniumblock/4.png deleted file mode 100644 index bbe28296f5..0000000000 Binary files a/front/public/images/small/chisel/uraniumblock/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/uraniumblock/5.png b/front/public/images/small/chisel/uraniumblock/5.png deleted file mode 100644 index ed746a5059..0000000000 Binary files a/front/public/images/small/chisel/uraniumblock/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/0.png b/front/public/images/small/chisel/valentines/0.png deleted file mode 100644 index 44cc83ef68..0000000000 Binary files a/front/public/images/small/chisel/valentines/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/1.png b/front/public/images/small/chisel/valentines/1.png deleted file mode 100644 index 4ebecc7163..0000000000 Binary files a/front/public/images/small/chisel/valentines/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/2.png b/front/public/images/small/chisel/valentines/2.png deleted file mode 100644 index 47a8a76ac8..0000000000 Binary files a/front/public/images/small/chisel/valentines/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/3.png b/front/public/images/small/chisel/valentines/3.png deleted file mode 100644 index de18140c6b..0000000000 Binary files a/front/public/images/small/chisel/valentines/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/4.png b/front/public/images/small/chisel/valentines/4.png deleted file mode 100644 index 7b6e7ee674..0000000000 Binary files a/front/public/images/small/chisel/valentines/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/5.png b/front/public/images/small/chisel/valentines/5.png deleted file mode 100644 index 37690ce6f1..0000000000 Binary files a/front/public/images/small/chisel/valentines/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/6.png b/front/public/images/small/chisel/valentines/6.png deleted file mode 100644 index 8d12cb8ce5..0000000000 Binary files a/front/public/images/small/chisel/valentines/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/7.png b/front/public/images/small/chisel/valentines/7.png deleted file mode 100644 index 1b7d681ac2..0000000000 Binary files a/front/public/images/small/chisel/valentines/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/8.png b/front/public/images/small/chisel/valentines/8.png deleted file mode 100644 index 2faea86198..0000000000 Binary files a/front/public/images/small/chisel/valentines/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/valentines/9.png b/front/public/images/small/chisel/valentines/9.png deleted file mode 100644 index 190ebf24cf..0000000000 Binary files a/front/public/images/small/chisel/valentines/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/0.png b/front/public/images/small/chisel/voidstone/0.png deleted file mode 100644 index bf6f39f979..0000000000 Binary files a/front/public/images/small/chisel/voidstone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/1.png b/front/public/images/small/chisel/voidstone/1.png deleted file mode 100644 index a9cc2c569d..0000000000 Binary files a/front/public/images/small/chisel/voidstone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/2.png b/front/public/images/small/chisel/voidstone/2.png deleted file mode 100644 index 46f6aca9aa..0000000000 Binary files a/front/public/images/small/chisel/voidstone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/3.png b/front/public/images/small/chisel/voidstone/3.png deleted file mode 100644 index e924f70b10..0000000000 Binary files a/front/public/images/small/chisel/voidstone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/4.png b/front/public/images/small/chisel/voidstone/4.png deleted file mode 100644 index dd3fa4b050..0000000000 Binary files a/front/public/images/small/chisel/voidstone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/5.png b/front/public/images/small/chisel/voidstone/5.png deleted file mode 100644 index 47b821b6da..0000000000 Binary files a/front/public/images/small/chisel/voidstone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/6.png b/front/public/images/small/chisel/voidstone/6.png deleted file mode 100644 index 4c4cd38db1..0000000000 Binary files a/front/public/images/small/chisel/voidstone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone/7.png b/front/public/images/small/chisel/voidstone/7.png deleted file mode 100644 index 7227c5ce30..0000000000 Binary files a/front/public/images/small/chisel/voidstone/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/0.png b/front/public/images/small/chisel/voidstone2/0.png deleted file mode 100644 index 4e9d8f464b..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/1.png b/front/public/images/small/chisel/voidstone2/1.png deleted file mode 100644 index 901bacb28b..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/2.png b/front/public/images/small/chisel/voidstone2/2.png deleted file mode 100644 index cc7d228fd3..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/3.png b/front/public/images/small/chisel/voidstone2/3.png deleted file mode 100644 index 73743c7230..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/4.png b/front/public/images/small/chisel/voidstone2/4.png deleted file mode 100644 index 652831675d..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/5.png b/front/public/images/small/chisel/voidstone2/5.png deleted file mode 100644 index 47b821b6da..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/6.png b/front/public/images/small/chisel/voidstone2/6.png deleted file mode 100644 index 02ebe1c83f..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstone2/7.png b/front/public/images/small/chisel/voidstone2/7.png deleted file mode 100644 index f6d599f878..0000000000 Binary files a/front/public/images/small/chisel/voidstone2/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstonePillar/0.png b/front/public/images/small/chisel/voidstonePillar/0.png deleted file mode 100644 index d976ff1ad2..0000000000 Binary files a/front/public/images/small/chisel/voidstonePillar/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstonePillar2/0.png b/front/public/images/small/chisel/voidstonePillar2/0.png deleted file mode 100644 index d976ff1ad2..0000000000 Binary files a/front/public/images/small/chisel/voidstonePillar2/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/1.png b/front/public/images/small/chisel/voidstoneRunic/1.png deleted file mode 100644 index 46021aeee3..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/10.png b/front/public/images/small/chisel/voidstoneRunic/10.png deleted file mode 100644 index fa61f758f8..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/11.png b/front/public/images/small/chisel/voidstoneRunic/11.png deleted file mode 100644 index 78b8f0b56d..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/12.png b/front/public/images/small/chisel/voidstoneRunic/12.png deleted file mode 100644 index cec7f828ed..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/13.png b/front/public/images/small/chisel/voidstoneRunic/13.png deleted file mode 100644 index b0b724cc6d..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/14.png b/front/public/images/small/chisel/voidstoneRunic/14.png deleted file mode 100644 index 94416b59e8..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/15.png b/front/public/images/small/chisel/voidstoneRunic/15.png deleted file mode 100644 index 6fd644b36e..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/2.png b/front/public/images/small/chisel/voidstoneRunic/2.png deleted file mode 100644 index 82a337d1c8..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/3.png b/front/public/images/small/chisel/voidstoneRunic/3.png deleted file mode 100644 index 150f96030b..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/4.png b/front/public/images/small/chisel/voidstoneRunic/4.png deleted file mode 100644 index d629f12063..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/5.png b/front/public/images/small/chisel/voidstoneRunic/5.png deleted file mode 100644 index 3d6ad8f43f..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/6.png b/front/public/images/small/chisel/voidstoneRunic/6.png deleted file mode 100644 index bf1d547ef6..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/7.png b/front/public/images/small/chisel/voidstoneRunic/7.png deleted file mode 100644 index 32a0bec831..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/8.png b/front/public/images/small/chisel/voidstoneRunic/8.png deleted file mode 100644 index 9a6a47aa83..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/voidstoneRunic/9.png b/front/public/images/small/chisel/voidstoneRunic/9.png deleted file mode 100644 index 44f7e8f4f4..0000000000 Binary files a/front/public/images/small/chisel/voidstoneRunic/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/0.png b/front/public/images/small/chisel/warningSign/0.png deleted file mode 100644 index d94422d915..0000000000 Binary files a/front/public/images/small/chisel/warningSign/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/1.png b/front/public/images/small/chisel/warningSign/1.png deleted file mode 100644 index 32cc1a668e..0000000000 Binary files a/front/public/images/small/chisel/warningSign/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/10.png b/front/public/images/small/chisel/warningSign/10.png deleted file mode 100644 index 73302804e7..0000000000 Binary files a/front/public/images/small/chisel/warningSign/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/11.png b/front/public/images/small/chisel/warningSign/11.png deleted file mode 100644 index 2e32305ea7..0000000000 Binary files a/front/public/images/small/chisel/warningSign/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/12.png b/front/public/images/small/chisel/warningSign/12.png deleted file mode 100644 index 399be0518a..0000000000 Binary files a/front/public/images/small/chisel/warningSign/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/13.png b/front/public/images/small/chisel/warningSign/13.png deleted file mode 100644 index ff2f3e5f03..0000000000 Binary files a/front/public/images/small/chisel/warningSign/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/14.png b/front/public/images/small/chisel/warningSign/14.png deleted file mode 100644 index 86bd37536e..0000000000 Binary files a/front/public/images/small/chisel/warningSign/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/2.png b/front/public/images/small/chisel/warningSign/2.png deleted file mode 100644 index ced191f4c0..0000000000 Binary files a/front/public/images/small/chisel/warningSign/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/3.png b/front/public/images/small/chisel/warningSign/3.png deleted file mode 100644 index 68621f91bf..0000000000 Binary files a/front/public/images/small/chisel/warningSign/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/4.png b/front/public/images/small/chisel/warningSign/4.png deleted file mode 100644 index b8526cfe63..0000000000 Binary files a/front/public/images/small/chisel/warningSign/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/5.png b/front/public/images/small/chisel/warningSign/5.png deleted file mode 100644 index 514813c5af..0000000000 Binary files a/front/public/images/small/chisel/warningSign/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/6.png b/front/public/images/small/chisel/warningSign/6.png deleted file mode 100644 index 6fdce168d8..0000000000 Binary files a/front/public/images/small/chisel/warningSign/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/7.png b/front/public/images/small/chisel/warningSign/7.png deleted file mode 100644 index 58f1c80517..0000000000 Binary files a/front/public/images/small/chisel/warningSign/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/8.png b/front/public/images/small/chisel/warningSign/8.png deleted file mode 100644 index fc238f1e4c..0000000000 Binary files a/front/public/images/small/chisel/warningSign/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/warningSign/9.png b/front/public/images/small/chisel/warningSign/9.png deleted file mode 100644 index 30d5189a78..0000000000 Binary files a/front/public/images/small/chisel/warningSign/9.png and /dev/null differ diff --git a/front/public/images/small/chisel/waterstone/0.png b/front/public/images/small/chisel/waterstone/0.png deleted file mode 100644 index bb28a91930..0000000000 Binary files a/front/public/images/small/chisel/waterstone/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/waterstone/1.png b/front/public/images/small/chisel/waterstone/1.png deleted file mode 100644 index cbe7f7f286..0000000000 Binary files a/front/public/images/small/chisel/waterstone/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/waterstone/2.png b/front/public/images/small/chisel/waterstone/2.png deleted file mode 100644 index 591e47b6a6..0000000000 Binary files a/front/public/images/small/chisel/waterstone/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/waterstone/3.png b/front/public/images/small/chisel/waterstone/3.png deleted file mode 100644 index 8480389a83..0000000000 Binary files a/front/public/images/small/chisel/waterstone/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/waterstone/4.png b/front/public/images/small/chisel/waterstone/4.png deleted file mode 100644 index b9052ccb40..0000000000 Binary files a/front/public/images/small/chisel/waterstone/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/waterstone/5.png b/front/public/images/small/chisel/waterstone/5.png deleted file mode 100644 index 41432559a9..0000000000 Binary files a/front/public/images/small/chisel/waterstone/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/waterstone/6.png b/front/public/images/small/chisel/waterstone/6.png deleted file mode 100644 index 2bac0b2f99..0000000000 Binary files a/front/public/images/small/chisel/waterstone/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/0.png b/front/public/images/small/chisel/woolen_clay/0.png deleted file mode 100644 index 2c247446dc..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/0.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/1.png b/front/public/images/small/chisel/woolen_clay/1.png deleted file mode 100644 index 6ca86b13e4..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/1.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/10.png b/front/public/images/small/chisel/woolen_clay/10.png deleted file mode 100644 index c933ba202d..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/10.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/11.png b/front/public/images/small/chisel/woolen_clay/11.png deleted file mode 100644 index 8bbed3cbc2..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/11.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/12.png b/front/public/images/small/chisel/woolen_clay/12.png deleted file mode 100644 index 7b30f03639..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/12.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/13.png b/front/public/images/small/chisel/woolen_clay/13.png deleted file mode 100644 index e687e16086..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/13.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/14.png b/front/public/images/small/chisel/woolen_clay/14.png deleted file mode 100644 index 6a4bd00a6e..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/14.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/15.png b/front/public/images/small/chisel/woolen_clay/15.png deleted file mode 100644 index f99f091914..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/15.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/2.png b/front/public/images/small/chisel/woolen_clay/2.png deleted file mode 100644 index f8f05250cc..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/2.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/3.png b/front/public/images/small/chisel/woolen_clay/3.png deleted file mode 100644 index 563b724e20..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/3.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/4.png b/front/public/images/small/chisel/woolen_clay/4.png deleted file mode 100644 index 08fd36a1e9..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/4.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/5.png b/front/public/images/small/chisel/woolen_clay/5.png deleted file mode 100644 index e0a3419931..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/5.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/6.png b/front/public/images/small/chisel/woolen_clay/6.png deleted file mode 100644 index 570a6c72fa..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/6.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/7.png b/front/public/images/small/chisel/woolen_clay/7.png deleted file mode 100644 index 4518ca7a16..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/7.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/8.png b/front/public/images/small/chisel/woolen_clay/8.png deleted file mode 100644 index fae09b3536..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/8.png and /dev/null differ diff --git a/front/public/images/small/chisel/woolen_clay/9.png b/front/public/images/small/chisel/woolen_clay/9.png deleted file mode 100644 index 4bf05ae6db..0000000000 Binary files a/front/public/images/small/chisel/woolen_clay/9.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/0.png b/front/public/images/small/compactkineticgenerators/BlockCkg/0.png deleted file mode 100644 index b5668c2ef4..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/0.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/1.png b/front/public/images/small/compactkineticgenerators/BlockCkg/1.png deleted file mode 100644 index 12e3792d76..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/1.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/10.png b/front/public/images/small/compactkineticgenerators/BlockCkg/10.png deleted file mode 100644 index d06c5608a6..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/10.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/11.png b/front/public/images/small/compactkineticgenerators/BlockCkg/11.png deleted file mode 100644 index 86537e09df..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/11.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/2.png b/front/public/images/small/compactkineticgenerators/BlockCkg/2.png deleted file mode 100644 index d06c5608a6..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/2.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/3.png b/front/public/images/small/compactkineticgenerators/BlockCkg/3.png deleted file mode 100644 index 86537e09df..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/3.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/4.png b/front/public/images/small/compactkineticgenerators/BlockCkg/4.png deleted file mode 100644 index b5668c2ef4..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/4.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/5.png b/front/public/images/small/compactkineticgenerators/BlockCkg/5.png deleted file mode 100644 index 12e3792d76..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/5.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/6.png b/front/public/images/small/compactkineticgenerators/BlockCkg/6.png deleted file mode 100644 index d06c5608a6..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/6.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/7.png b/front/public/images/small/compactkineticgenerators/BlockCkg/7.png deleted file mode 100644 index 86537e09df..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/7.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/8.png b/front/public/images/small/compactkineticgenerators/BlockCkg/8.png deleted file mode 100644 index b5668c2ef4..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/8.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/BlockCkg/9.png b/front/public/images/small/compactkineticgenerators/BlockCkg/9.png deleted file mode 100644 index 12e3792d76..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/BlockCkg/9.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/IridiumBlade/0.png b/front/public/images/small/compactkineticgenerators/IridiumBlade/0.png deleted file mode 100644 index afc2033b46..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/IridiumBlade/0.png and /dev/null differ diff --git a/front/public/images/small/compactkineticgenerators/IridiumRotor/0.png b/front/public/images/small/compactkineticgenerators/IridiumRotor/0.png deleted file mode 100644 index f41c66672e..0000000000 Binary files a/front/public/images/small/compactkineticgenerators/IridiumRotor/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.audioCable/0.png b/front/public/images/small/computronics/computronics.audioCable/0.png deleted file mode 100644 index cc52465902..0000000000 Binary files a/front/public/images/small/computronics/computronics.audioCable/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.camera/0.png b/front/public/images/small/computronics/computronics.camera/0.png deleted file mode 100644 index 9a49cf870e..0000000000 Binary files a/front/public/images/small/computronics/computronics.camera/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.chatBox/0.png b/front/public/images/small/computronics/computronics.chatBox/0.png deleted file mode 100644 index 17cfbbf3d6..0000000000 Binary files a/front/public/images/small/computronics/computronics.chatBox/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.chatBox/8.png b/front/public/images/small/computronics/computronics.chatBox/8.png deleted file mode 100644 index c24dfaf995..0000000000 Binary files a/front/public/images/small/computronics/computronics.chatBox/8.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.cipher/0.png b/front/public/images/small/computronics/computronics.cipher/0.png deleted file mode 100644 index dd6669eac9..0000000000 Binary files a/front/public/images/small/computronics/computronics.cipher/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.cipher_advanced/0.png b/front/public/images/small/computronics/computronics.cipher_advanced/0.png deleted file mode 100644 index 09ae03b011..0000000000 Binary files a/front/public/images/small/computronics/computronics.cipher_advanced/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.colorfulLamp/0.png b/front/public/images/small/computronics/computronics.colorfulLamp/0.png deleted file mode 100644 index b1e59b47fa..0000000000 Binary files a/front/public/images/small/computronics/computronics.colorfulLamp/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.detector/0.png b/front/public/images/small/computronics/computronics.detector/0.png deleted file mode 100644 index d7ae684b52..0000000000 Binary files a/front/public/images/small/computronics/computronics.detector/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.digitalControllerBox/0.png b/front/public/images/small/computronics/computronics.digitalControllerBox/0.png deleted file mode 100644 index bf5f570ea9..0000000000 Binary files a/front/public/images/small/computronics/computronics.digitalControllerBox/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.digitalReceiverBox/0.png b/front/public/images/small/computronics/computronics.digitalReceiverBox/0.png deleted file mode 100644 index dd88488cff..0000000000 Binary files a/front/public/images/small/computronics/computronics.digitalReceiverBox/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.dockingUpgrade/0.png b/front/public/images/small/computronics/computronics.dockingUpgrade/0.png deleted file mode 100644 index afc2fa1f42..0000000000 Binary files a/front/public/images/small/computronics/computronics.dockingUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.droneStation/0.png b/front/public/images/small/computronics/computronics.droneStation/0.png deleted file mode 100644 index f2eee70111..0000000000 Binary files a/front/public/images/small/computronics/computronics.droneStation/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.gt_parts/0.png b/front/public/images/small/computronics/computronics.gt_parts/0.png deleted file mode 100644 index 997139d173..0000000000 Binary files a/front/public/images/small/computronics/computronics.gt_parts/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ironNoteBlock/0.png b/front/public/images/small/computronics/computronics.ironNoteBlock/0.png deleted file mode 100644 index 081b473316..0000000000 Binary files a/front/public/images/small/computronics/computronics.ironNoteBlock/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.locomotiveRelay/0.png b/front/public/images/small/computronics/computronics.locomotiveRelay/0.png deleted file mode 100644 index 6dc4eadd09..0000000000 Binary files a/front/public/images/small/computronics/computronics.locomotiveRelay/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/0.png b/front/public/images/small/computronics/computronics.ocParts/0.png deleted file mode 100644 index 76eeafa9d1..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/1.png b/front/public/images/small/computronics/computronics.ocParts/1.png deleted file mode 100644 index d30cd247a2..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/1.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/10.png b/front/public/images/small/computronics/computronics.ocParts/10.png deleted file mode 100644 index c24fb641fd..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/10.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/11.png b/front/public/images/small/computronics/computronics.ocParts/11.png deleted file mode 100644 index f62c627e10..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/11.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/12.png b/front/public/images/small/computronics/computronics.ocParts/12.png deleted file mode 100644 index 18276dd018..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/12.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/13.png b/front/public/images/small/computronics/computronics.ocParts/13.png deleted file mode 100644 index c28ca04efa..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/13.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/14.png b/front/public/images/small/computronics/computronics.ocParts/14.png deleted file mode 100644 index d2cb665298..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/14.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/2.png b/front/public/images/small/computronics/computronics.ocParts/2.png deleted file mode 100644 index 17322010b9..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/2.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/3.png b/front/public/images/small/computronics/computronics.ocParts/3.png deleted file mode 100644 index 0b9a9ddc8b..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/3.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/4.png b/front/public/images/small/computronics/computronics.ocParts/4.png deleted file mode 100644 index f78f62e783..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/4.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/5.png b/front/public/images/small/computronics/computronics.ocParts/5.png deleted file mode 100644 index 245f2105ac..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/5.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/6.png b/front/public/images/small/computronics/computronics.ocParts/6.png deleted file mode 100644 index 16dfc41e9d..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/6.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/7.png b/front/public/images/small/computronics/computronics.ocParts/7.png deleted file mode 100644 index 13bc3fb71f..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/7.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/8.png b/front/public/images/small/computronics/computronics.ocParts/8.png deleted file mode 100644 index 4f9d99b52e..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/8.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocParts/9.png b/front/public/images/small/computronics/computronics.ocParts/9.png deleted file mode 100644 index 29e85bd268..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocParts/9.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ocSpecialParts/0.png b/front/public/images/small/computronics/computronics.ocSpecialParts/0.png deleted file mode 100644 index 85aeba894c..0000000000 Binary files a/front/public/images/small/computronics/computronics.ocSpecialParts/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.parts/0.png b/front/public/images/small/computronics/computronics.parts/0.png deleted file mode 100644 index dd99d75b5c..0000000000 Binary files a/front/public/images/small/computronics/computronics.parts/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.partsForestry/0.png b/front/public/images/small/computronics/computronics.partsForestry/0.png deleted file mode 100644 index a5c420d568..0000000000 Binary files a/front/public/images/small/computronics/computronics.partsForestry/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.partsForestry/1.png b/front/public/images/small/computronics/computronics.partsForestry/1.png deleted file mode 100644 index 820aa4905c..0000000000 Binary files a/front/public/images/small/computronics/computronics.partsForestry/1.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.portableTapeDrive/0.png b/front/public/images/small/computronics/computronics.portableTapeDrive/0.png deleted file mode 100644 index cd535699ae..0000000000 Binary files a/front/public/images/small/computronics/computronics.portableTapeDrive/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.radar/0.png b/front/public/images/small/computronics/computronics.radar/0.png deleted file mode 100644 index 49e72f78df..0000000000 Binary files a/front/public/images/small/computronics/computronics.radar/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.relaySensor/0.png b/front/public/images/small/computronics/computronics.relaySensor/0.png deleted file mode 100644 index ae223ae0e2..0000000000 Binary files a/front/public/images/small/computronics/computronics.relaySensor/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.speaker/0.png b/front/public/images/small/computronics/computronics.speaker/0.png deleted file mode 100644 index 1bef5c4a15..0000000000 Binary files a/front/public/images/small/computronics/computronics.speaker/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.speechBox/0.png b/front/public/images/small/computronics/computronics.speechBox/0.png deleted file mode 100644 index 049c22cbe6..0000000000 Binary files a/front/public/images/small/computronics/computronics.speechBox/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/0.png b/front/public/images/small/computronics/computronics.tape/0.png deleted file mode 100644 index be17855c4f..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/1.png b/front/public/images/small/computronics/computronics.tape/1.png deleted file mode 100644 index 36c6b7af70..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/1.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/2.png b/front/public/images/small/computronics/computronics.tape/2.png deleted file mode 100644 index 36c6b7af70..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/2.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/3.png b/front/public/images/small/computronics/computronics.tape/3.png deleted file mode 100644 index 006b65b5e7..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/3.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/4.png b/front/public/images/small/computronics/computronics.tape/4.png deleted file mode 100644 index d0880de05f..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/4.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/5.png b/front/public/images/small/computronics/computronics.tape/5.png deleted file mode 100644 index 5636ce3804..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/5.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/6.png b/front/public/images/small/computronics/computronics.tape/6.png deleted file mode 100644 index 8c54cbd288..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/6.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/7.png b/front/public/images/small/computronics/computronics.tape/7.png deleted file mode 100644 index 673433e0ff..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/7.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/8.png b/front/public/images/small/computronics/computronics.tape/8.png deleted file mode 100644 index d0880de05f..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/8.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tape/9.png b/front/public/images/small/computronics/computronics.tape/9.png deleted file mode 100644 index 287c929f3c..0000000000 Binary files a/front/public/images/small/computronics/computronics.tape/9.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.tapeReader/0.png b/front/public/images/small/computronics/computronics.tapeReader/0.png deleted file mode 100644 index 8765ce180b..0000000000 Binary files a/front/public/images/small/computronics/computronics.tapeReader/0.png and /dev/null differ diff --git a/front/public/images/small/computronics/computronics.ticketMachine/0.png b/front/public/images/small/computronics/computronics.ticketMachine/0.png deleted file mode 100644 index c42f9b5d76..0000000000 Binary files a/front/public/images/small/computronics/computronics.ticketMachine/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/black_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/black_kitchen_floor/0.png deleted file mode 100644 index 495127e5c1..0000000000 Binary files a/front/public/images/small/cookingforblockheads/black_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/blue_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/blue_kitchen_floor/0.png deleted file mode 100644 index 7630f202a8..0000000000 Binary files a/front/public/images/small/cookingforblockheads/blue_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/brown_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/brown_kitchen_floor/0.png deleted file mode 100644 index 9056dc6383..0000000000 Binary files a/front/public/images/small/cookingforblockheads/brown_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/cabinet/0.png b/front/public/images/small/cookingforblockheads/cabinet/0.png deleted file mode 100644 index 56f1fc98a6..0000000000 Binary files a/front/public/images/small/cookingforblockheads/cabinet/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/cabinetcorner/0.png b/front/public/images/small/cookingforblockheads/cabinetcorner/0.png deleted file mode 100644 index 6b65c4fcda..0000000000 Binary files a/front/public/images/small/cookingforblockheads/cabinetcorner/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/cookingoven/0.png b/front/public/images/small/cookingforblockheads/cookingoven/0.png deleted file mode 100644 index 2b7bed02bd..0000000000 Binary files a/front/public/images/small/cookingforblockheads/cookingoven/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/cookingtable/0.png b/front/public/images/small/cookingforblockheads/cookingtable/0.png deleted file mode 100644 index 06f03d04bc..0000000000 Binary files a/front/public/images/small/cookingforblockheads/cookingtable/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/counter/0.png b/front/public/images/small/cookingforblockheads/counter/0.png deleted file mode 100644 index f9155e39b0..0000000000 Binary files a/front/public/images/small/cookingforblockheads/counter/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/countercorner/0.png b/front/public/images/small/cookingforblockheads/countercorner/0.png deleted file mode 100644 index 6f1b1f6fcb..0000000000 Binary files a/front/public/images/small/cookingforblockheads/countercorner/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/cyan_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/cyan_kitchen_floor/0.png deleted file mode 100644 index a58f279073..0000000000 Binary files a/front/public/images/small/cookingforblockheads/cyan_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/fridge/0.png b/front/public/images/small/cookingforblockheads/fridge/0.png deleted file mode 100644 index 379d85a2bd..0000000000 Binary files a/front/public/images/small/cookingforblockheads/fridge/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/gray_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/gray_kitchen_floor/0.png deleted file mode 100644 index 890d1de78e..0000000000 Binary files a/front/public/images/small/cookingforblockheads/gray_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/green_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/green_kitchen_floor/0.png deleted file mode 100644 index 8589e412ae..0000000000 Binary files a/front/public/images/small/cookingforblockheads/green_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/light_blue_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/light_blue_kitchen_floor/0.png deleted file mode 100644 index 2ffd78233d..0000000000 Binary files a/front/public/images/small/cookingforblockheads/light_blue_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/light_gray_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/light_gray_kitchen_floor/0.png deleted file mode 100644 index 45bcf620de..0000000000 Binary files a/front/public/images/small/cookingforblockheads/light_gray_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/lime_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/lime_kitchen_floor/0.png deleted file mode 100644 index fb3bc1dd85..0000000000 Binary files a/front/public/images/small/cookingforblockheads/lime_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/magenta_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/magenta_kitchen_floor/0.png deleted file mode 100644 index e2b4eea970..0000000000 Binary files a/front/public/images/small/cookingforblockheads/magenta_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/orange_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/orange_kitchen_floor/0.png deleted file mode 100644 index 907f326636..0000000000 Binary files a/front/public/images/small/cookingforblockheads/orange_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/pink_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/pink_kitchen_floor/0.png deleted file mode 100644 index 2bd1f5e58c..0000000000 Binary files a/front/public/images/small/cookingforblockheads/pink_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/purple_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/purple_kitchen_floor/0.png deleted file mode 100644 index d087ea944a..0000000000 Binary files a/front/public/images/small/cookingforblockheads/purple_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/recipebook/0.png b/front/public/images/small/cookingforblockheads/recipebook/0.png deleted file mode 100644 index c0f09c0fb6..0000000000 Binary files a/front/public/images/small/cookingforblockheads/recipebook/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/recipebook/1.png b/front/public/images/small/cookingforblockheads/recipebook/1.png deleted file mode 100644 index cb5b7507bc..0000000000 Binary files a/front/public/images/small/cookingforblockheads/recipebook/1.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/recipebook/3.png b/front/public/images/small/cookingforblockheads/recipebook/3.png deleted file mode 100644 index cca9ba6bef..0000000000 Binary files a/front/public/images/small/cookingforblockheads/recipebook/3.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/red_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/red_kitchen_floor/0.png deleted file mode 100644 index 0d4cc0b9b3..0000000000 Binary files a/front/public/images/small/cookingforblockheads/red_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/sink/0.png b/front/public/images/small/cookingforblockheads/sink/0.png deleted file mode 100644 index 1061c070bb..0000000000 Binary files a/front/public/images/small/cookingforblockheads/sink/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/toast/0.png b/front/public/images/small/cookingforblockheads/toast/0.png deleted file mode 100644 index 4fab944185..0000000000 Binary files a/front/public/images/small/cookingforblockheads/toast/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/toaster/0.png b/front/public/images/small/cookingforblockheads/toaster/0.png deleted file mode 100644 index 8e790d908f..0000000000 Binary files a/front/public/images/small/cookingforblockheads/toaster/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/toolrack/0.png b/front/public/images/small/cookingforblockheads/toolrack/0.png deleted file mode 100644 index 924e1a4693..0000000000 Binary files a/front/public/images/small/cookingforblockheads/toolrack/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/white_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/white_kitchen_floor/0.png deleted file mode 100644 index eb7913528a..0000000000 Binary files a/front/public/images/small/cookingforblockheads/white_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/cookingforblockheads/yellow_kitchen_floor/0.png b/front/public/images/small/cookingforblockheads/yellow_kitchen_floor/0.png deleted file mode 100644 index 646befc9b5..0000000000 Binary files a/front/public/images/small/cookingforblockheads/yellow_kitchen_floor/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/BabyChest/0.png b/front/public/images/small/dreamcraft/BabyChest/0.png deleted file mode 100644 index c69993f6e0..0000000000 Binary files a/front/public/images/small/dreamcraft/BabyChest/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_Ammonia/0.png b/front/public/images/small/dreamcraft/dreamcraft_Ammonia/0.png deleted file mode 100644 index 74ad795eab..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_Ammonia/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_CompressedNitrogen/0.png b/front/public/images/small/dreamcraft/dreamcraft_CompressedNitrogen/0.png deleted file mode 100644 index 5712891446..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_CompressedNitrogen/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_CompressedOxygen/0.png b/front/public/images/small/dreamcraft/dreamcraft_CompressedOxygen/0.png deleted file mode 100644 index 318b464fdb..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_CompressedOxygen/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_Concrete/0.png b/front/public/images/small/dreamcraft/dreamcraft_Concrete/0.png deleted file mode 100644 index c0808a3071..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_Concrete/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_Concrete_bucket/0.png b/front/public/images/small/dreamcraft/dreamcraft_Concrete_bucket/0.png deleted file mode 100644 index 11373ba691..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_Concrete_bucket/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_EnrichedBacterialSludge/0.png b/front/public/images/small/dreamcraft/dreamcraft_EnrichedBacterialSludge/0.png deleted file mode 100644 index a66288b49b..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_EnrichedBacterialSludge/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_EnrichedBacterialSludge_bucket/0.png b/front/public/images/small/dreamcraft/dreamcraft_EnrichedBacterialSludge_bucket/0.png deleted file mode 100644 index 60c2f9dfac..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_EnrichedBacterialSludge_bucket/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_FermentedBacterialSludge/0.png b/front/public/images/small/dreamcraft/dreamcraft_FermentedBacterialSludge/0.png deleted file mode 100644 index 570a14fcd1..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_FermentedBacterialSludge/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_FermentedBacterialSludge_bucket/0.png b/front/public/images/small/dreamcraft/dreamcraft_FermentedBacterialSludge_bucket/0.png deleted file mode 100644 index 0e2384cae6..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_FermentedBacterialSludge_bucket/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_NitricAcid/0.png b/front/public/images/small/dreamcraft/dreamcraft_NitricAcid/0.png deleted file mode 100644 index 01456f4485..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_NitricAcid/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_NitricAcid_bucket/0.png b/front/public/images/small/dreamcraft/dreamcraft_NitricAcid_bucket/0.png deleted file mode 100644 index 6814b25838..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_NitricAcid_bucket/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_Pollution/0.png b/front/public/images/small/dreamcraft/dreamcraft_Pollution/0.png deleted file mode 100644 index 40e74faee1..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_Pollution/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_Pollution_bucket/0.png b/front/public/images/small/dreamcraft/dreamcraft_Pollution_bucket/0.png deleted file mode 100644 index 4ae9dfdbd6..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_Pollution_bucket/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_SodiumPotassium/0.png b/front/public/images/small/dreamcraft/dreamcraft_SodiumPotassium/0.png deleted file mode 100644 index 107a59ca41..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_SodiumPotassium/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/dreamcraft_SodiumPotassium_bucket/0.png b/front/public/images/small/dreamcraft/dreamcraft_SodiumPotassium_bucket/0.png deleted file mode 100644 index 291996114b..0000000000 Binary files a/front/public/images/small/dreamcraft/dreamcraft_SodiumPotassium_bucket/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/0.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/0.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/1.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/1.png deleted file mode 100644 index f8ae3a85d6..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/1.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/10.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/10.png deleted file mode 100644 index 41596fba9d..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/10.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/11.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/11.png deleted file mode 100644 index b55c4b9cca..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/11.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/12.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/12.png deleted file mode 100644 index e5744a62e6..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/12.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/13.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/13.png deleted file mode 100644 index c8166cd5ca..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/13.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/14.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/14.png deleted file mode 100644 index aa3d1f047a..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/14.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/2.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/2.png deleted file mode 100644 index 5f2691d6c2..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/2.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/3.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/3.png deleted file mode 100644 index e2fbbc8f8f..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/3.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/4.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/4.png deleted file mode 100644 index 126d9c5252..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/4.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/5.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/5.png deleted file mode 100644 index 344c81be18..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/5.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/gt.blockcasingsNH/6.png b/front/public/images/small/dreamcraft/gt.blockcasingsNH/6.png deleted file mode 100644 index 8fe1a2b8c5..0000000000 Binary files a/front/public/images/small/dreamcraft/gt.blockcasingsNH/6.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AdsorptionFilter/0.png b/front/public/images/small/dreamcraft/item.AdsorptionFilter/0.png deleted file mode 100644 index 197ac2216b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AdsorptionFilter/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AdsorptionFilterCasing/0.png b/front/public/images/small/dreamcraft/item.AdsorptionFilterCasing/0.png deleted file mode 100644 index 89125e107c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AdsorptionFilterCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AdsorptionFilterDirty/0.png b/front/public/images/small/dreamcraft/item.AdsorptionFilterDirty/0.png deleted file mode 100644 index 4adaef3a89..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AdsorptionFilterDirty/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AdvancedBoard/0.png b/front/public/images/small/dreamcraft/item.AdvancedBoard/0.png deleted file mode 100644 index 0c053edab0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AdvancedBoard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AdvancedCokeOvenBrick/0.png b/front/public/images/small/dreamcraft/item.AdvancedCokeOvenBrick/0.png deleted file mode 100644 index 7b5205536d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AdvancedCokeOvenBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AdvancedCokeOvenBrickDust/0.png b/front/public/images/small/dreamcraft/item.AdvancedCokeOvenBrickDust/0.png deleted file mode 100644 index 64ba216bd6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AdvancedCokeOvenBrickDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AdvancedProcessorBoard/0.png b/front/public/images/small/dreamcraft/item.AdvancedProcessorBoard/0.png deleted file mode 100644 index 06af5e106d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AdvancedProcessorBoard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AluminiumBars/0.png b/front/public/images/small/dreamcraft/item.AluminiumBars/0.png deleted file mode 100644 index 3108376a5a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AluminiumBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AluminiumIronPlate/0.png b/front/public/images/small/dreamcraft/item.AluminiumIronPlate/0.png deleted file mode 100644 index 90e10de463..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AluminiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AluminiumItemCasing/0.png b/front/public/images/small/dreamcraft/item.AluminiumItemCasing/0.png deleted file mode 100644 index 7ecc5bd3aa..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AluminiumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AluminoSilicateWool/0.png b/front/public/images/small/dreamcraft/item.AluminoSilicateWool/0.png deleted file mode 100644 index abf2902e9f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AluminoSilicateWool/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AlumiteDust/0.png b/front/public/images/small/dreamcraft/item.AlumiteDust/0.png deleted file mode 100644 index 2c0879301e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AlumiteDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ApprenticeOrb/0.png b/front/public/images/small/dreamcraft/item.ApprenticeOrb/0.png deleted file mode 100644 index a7e4e3edfd..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ApprenticeOrb/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ArcaneShardChip/0.png b/front/public/images/small/dreamcraft/item.ArcaneShardChip/0.png deleted file mode 100644 index ee2c3f95bf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ArcaneShardChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ArcaneShardFragment/0.png b/front/public/images/small/dreamcraft/item.ArcaneShardFragment/0.png deleted file mode 100644 index 22e3658c53..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ArcaneShardFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ArcaneSlate/0.png b/front/public/images/small/dreamcraft/item.ArcaneSlate/0.png deleted file mode 100644 index 38ef42d5d9..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ArcaneSlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ArchmageOrb/0.png b/front/public/images/small/dreamcraft/item.ArchmageOrb/0.png deleted file mode 100644 index 9c565f5c9b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ArchmageOrb/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ArditePlate/0.png b/front/public/images/small/dreamcraft/item.ArditePlate/0.png deleted file mode 100644 index 378fdb3506..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ArditePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ArtificialLeather/0.png b/front/public/images/small/dreamcraft/item.ArtificialLeather/0.png deleted file mode 100644 index 42af2b7f22..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ArtificialLeather/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.AsteroidsStoneDust/0.png b/front/public/images/small/dreamcraft/item.AsteroidsStoneDust/0.png deleted file mode 100644 index d11c249bad..0000000000 Binary files a/front/public/images/small/dreamcraft/item.AsteroidsStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BarnardaEStoneDust/0.png b/front/public/images/small/dreamcraft/item.BarnardaEStoneDust/0.png deleted file mode 100644 index 1d8fbc97f5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BarnardaEStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BarnardaFStoneDust/0.png b/front/public/images/small/dreamcraft/item.BarnardaFStoneDust/0.png deleted file mode 100644 index e6bd5c5016..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BarnardaFStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BedrockiumIronPlate/0.png b/front/public/images/small/dreamcraft/item.BedrockiumIronPlate/0.png deleted file mode 100644 index e84a98736a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BedrockiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BedrockiumPlate/0.png b/front/public/images/small/dreamcraft/item.BedrockiumPlate/0.png deleted file mode 100644 index bbabe9a2d7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BedrockiumPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BioBall/0.png b/front/public/images/small/dreamcraft/item.BioBall/0.png deleted file mode 100644 index 5e840e0918..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BioBall/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BioCarbonPlate/0.png b/front/public/images/small/dreamcraft/item.BioCarbonPlate/0.png deleted file mode 100644 index 3af1438b58..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BioCarbonPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BioChunk/0.png b/front/public/images/small/dreamcraft/item.BioChunk/0.png deleted file mode 100644 index 8919e7e58c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BioChunk/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BioOrganicMesh/0.png b/front/public/images/small/dreamcraft/item.BioOrganicMesh/0.png deleted file mode 100644 index 81c9d624b3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BioOrganicMesh/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BlackPlutoniumCompressedPlate/0.png b/front/public/images/small/dreamcraft/item.BlackPlutoniumCompressedPlate/0.png deleted file mode 100644 index b007ccfcf5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BlackPlutoniumCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BlackPlutoniumDensePlate/0.png b/front/public/images/small/dreamcraft/item.BlackPlutoniumDensePlate/0.png deleted file mode 100644 index e5673c5d5a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BlackPlutoniumDensePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BlackPlutoniumDust/0.png b/front/public/images/small/dreamcraft/item.BlackPlutoniumDust/0.png deleted file mode 100644 index 3a2f184c8c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BlackPlutoniumDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BlackPlutoniumPlate/0.png b/front/public/images/small/dreamcraft/item.BlackPlutoniumPlate/0.png deleted file mode 100644 index aa696ab771..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BlackPlutoniumPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BlankPlatedChip/0.png b/front/public/images/small/dreamcraft/item.BlankPlatedChip/0.png deleted file mode 100644 index 8d27c4b95d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BlankPlatedChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Blaster/0.png b/front/public/images/small/dreamcraft/item.Blaster/0.png deleted file mode 100644 index b84a12d6d0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Blaster/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BloodVial/0.png b/front/public/images/small/dreamcraft/item.BloodVial/0.png deleted file mode 100644 index f195eae26b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BloodVial/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BowFletchingCast/0.png b/front/public/images/small/dreamcraft/item.BowFletchingCast/0.png deleted file mode 100644 index b1c7fe50c3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BowFletchingCast/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.BowStringCast/0.png b/front/public/images/small/dreamcraft/item.BowStringCast/0.png deleted file mode 100644 index 5b3f7c40ac..0000000000 Binary files a/front/public/images/small/dreamcraft/item.BowStringCast/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CallistoIceColdIngot/0.png b/front/public/images/small/dreamcraft/item.CallistoIceColdIngot/0.png deleted file mode 100644 index a26614fe7b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CallistoIceColdIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CallistoIceCompressedPlate/0.png b/front/public/images/small/dreamcraft/item.CallistoIceCompressedPlate/0.png deleted file mode 100644 index 090020b105..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CallistoIceCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CallistoIceDensePlate/0.png b/front/public/images/small/dreamcraft/item.CallistoIceDensePlate/0.png deleted file mode 100644 index a739be7bd6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CallistoIceDensePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CallistoIceDust/0.png b/front/public/images/small/dreamcraft/item.CallistoIceDust/0.png deleted file mode 100644 index d866f34a91..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CallistoIceDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CallistoIceIngot/0.png b/front/public/images/small/dreamcraft/item.CallistoIceIngot/0.png deleted file mode 100644 index d2eeb6186c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CallistoIceIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CallistoIcePlate/0.png b/front/public/images/small/dreamcraft/item.CallistoIcePlate/0.png deleted file mode 100644 index 2cb3bd29e1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CallistoIcePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CallistoStoneDust/0.png b/front/public/images/small/dreamcraft/item.CallistoStoneDust/0.png deleted file mode 100644 index 8d05840789..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CallistoStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CarbonPartBoots/0.png b/front/public/images/small/dreamcraft/item.CarbonPartBoots/0.png deleted file mode 100644 index d59bf86b7c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CarbonPartBoots/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CarbonPartChestplate/0.png b/front/public/images/small/dreamcraft/item.CarbonPartChestplate/0.png deleted file mode 100644 index f4fc30adfe..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CarbonPartChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CarbonPartHelmet/0.png b/front/public/images/small/dreamcraft/item.CarbonPartHelmet/0.png deleted file mode 100644 index 1006208a27..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CarbonPartHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CarbonPartHelmetNightVision/0.png b/front/public/images/small/dreamcraft/item.CarbonPartHelmetNightVision/0.png deleted file mode 100644 index bc31cae699..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CarbonPartHelmetNightVision/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CarbonPartLeggings/0.png b/front/public/images/small/dreamcraft/item.CarbonPartLeggings/0.png deleted file mode 100644 index 4bb38dbd92..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CarbonPartLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CarminiteChip/0.png b/front/public/images/small/dreamcraft/item.CarminiteChip/0.png deleted file mode 100644 index 31ed04ed75..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CarminiteChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CarminiteFragment/0.png b/front/public/images/small/dreamcraft/item.CarminiteFragment/0.png deleted file mode 100644 index 3491734571..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CarminiteFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CentauriAStoneDust/0.png b/front/public/images/small/dreamcraft/item.CentauriAStoneDust/0.png deleted file mode 100644 index 24e0dd02f1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CentauriAStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CentauriASurfaceDust/0.png b/front/public/images/small/dreamcraft/item.CentauriASurfaceDust/0.png deleted file mode 100644 index efa1ffe0e3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CentauriASurfaceDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CeresStoneDust/0.png b/front/public/images/small/dreamcraft/item.CeresStoneDust/0.png deleted file mode 100644 index c914d90bc2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CeresStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedCertusQuartzDust/0.png b/front/public/images/small/dreamcraft/item.ChargedCertusQuartzDust/0.png deleted file mode 100644 index 655fc12b16..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedCertusQuartzDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedCertusQuartzPlate/0.png b/front/public/images/small/dreamcraft/item.ChargedCertusQuartzPlate/0.png deleted file mode 100644 index 10f09ab4cb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedCertusQuartzPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedCertusQuartzRod/0.png b/front/public/images/small/dreamcraft/item.ChargedCertusQuartzRod/0.png deleted file mode 100644 index c5e76661b4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedCertusQuartzRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedMechanistWandCap/0.png b/front/public/images/small/dreamcraft/item.ChargedMechanistWandCap/0.png deleted file mode 100644 index affbcacac7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedMechanistWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedSilverWandCap/0.png b/front/public/images/small/dreamcraft/item.ChargedSilverWandCap/0.png deleted file mode 100644 index f1d2c58c98..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedSilverWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedSojournerWandCap/0.png b/front/public/images/small/dreamcraft/item.ChargedSojournerWandCap/0.png deleted file mode 100644 index ff2daaef67..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedSojournerWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedThaumiumWandCap/0.png b/front/public/images/small/dreamcraft/item.ChargedThaumiumWandCap/0.png deleted file mode 100644 index ccc83399a0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedThaumiumWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChargedVoidWandCap/0.png b/front/public/images/small/dreamcraft/item.ChargedVoidWandCap/0.png deleted file mode 100644 index f99df4139e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChargedVoidWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChromaticLens/0.png b/front/public/images/small/dreamcraft/item.ChromaticLens/0.png deleted file mode 100644 index f1de8ac887..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChromaticLens/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChromeBars/0.png b/front/public/images/small/dreamcraft/item.ChromeBars/0.png deleted file mode 100644 index 1dea6b912c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChromeBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChromeIronPlate/0.png b/front/public/images/small/dreamcraft/item.ChromeIronPlate/0.png deleted file mode 100644 index d475b28002..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChromeIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ChromeItemCasing/0.png b/front/public/images/small/dreamcraft/item.ChromeItemCasing/0.png deleted file mode 100644 index f230391507..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ChromeItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitEV/0.png b/front/public/images/small/dreamcraft/item.CircuitEV/0.png deleted file mode 100644 index 30180b4d05..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitEV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitHV/0.png b/front/public/images/small/dreamcraft/item.CircuitHV/0.png deleted file mode 100644 index 5c25dda541..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitHV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitIV/0.png b/front/public/images/small/dreamcraft/item.CircuitIV/0.png deleted file mode 100644 index fb76b95ce4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitLV/0.png b/front/public/images/small/dreamcraft/item.CircuitLV/0.png deleted file mode 100644 index a91876e1d7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitLV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitLuV/0.png b/front/public/images/small/dreamcraft/item.CircuitLuV/0.png deleted file mode 100644 index 4ef7a3259a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitLuV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitMAX/0.png b/front/public/images/small/dreamcraft/item.CircuitMAX/0.png deleted file mode 100644 index 45844a4e12..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitMAX/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitMV/0.png b/front/public/images/small/dreamcraft/item.CircuitMV/0.png deleted file mode 100644 index ae1fda8b66..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitMV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitUEV/0.png b/front/public/images/small/dreamcraft/item.CircuitUEV/0.png deleted file mode 100644 index 5a78110247..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitUEV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitUHV/0.png b/front/public/images/small/dreamcraft/item.CircuitUHV/0.png deleted file mode 100644 index 8fe8a3c23d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitUHV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitUIV/0.png b/front/public/images/small/dreamcraft/item.CircuitUIV/0.png deleted file mode 100644 index 33534500f7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitUIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitULV/0.png b/front/public/images/small/dreamcraft/item.CircuitULV/0.png deleted file mode 100644 index 4b010988cf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitULV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitUMV/0.png b/front/public/images/small/dreamcraft/item.CircuitUMV/0.png deleted file mode 100644 index 7f2aa2488a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitUMV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitUV/0.png b/front/public/images/small/dreamcraft/item.CircuitUV/0.png deleted file mode 100644 index a510b8f446..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitUV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitUXV/0.png b/front/public/images/small/dreamcraft/item.CircuitUXV/0.png deleted file mode 100644 index 544571d671..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitUXV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CircuitZPM/0.png b/front/public/images/small/dreamcraft/item.CircuitZPM/0.png deleted file mode 100644 index 209bf00f66..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CircuitZPM/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CobbleStoneRod/0.png b/front/public/images/small/dreamcraft/item.CobbleStoneRod/0.png deleted file mode 100644 index 1718db0466..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CobbleStoneRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinAdventure/0.png b/front/public/images/small/dreamcraft/item.CoinAdventure/0.png deleted file mode 100644 index 0d22a342d6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinAdventure/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinAdventureI/0.png b/front/public/images/small/dreamcraft/item.CoinAdventureI/0.png deleted file mode 100644 index bcfc05bff6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinAdventureI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinAdventureII/0.png b/front/public/images/small/dreamcraft/item.CoinAdventureII/0.png deleted file mode 100644 index 3d7d242cc8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinAdventureII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinAdventureIII/0.png b/front/public/images/small/dreamcraft/item.CoinAdventureIII/0.png deleted file mode 100644 index 730ec987df..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinAdventureIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinAdventureIV/0.png b/front/public/images/small/dreamcraft/item.CoinAdventureIV/0.png deleted file mode 100644 index 67b75b6fbd..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinAdventureIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBees/0.png b/front/public/images/small/dreamcraft/item.CoinBees/0.png deleted file mode 100644 index 34b10a8724..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBees/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBeesI/0.png b/front/public/images/small/dreamcraft/item.CoinBeesI/0.png deleted file mode 100644 index 7b898b69f2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBeesI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBeesII/0.png b/front/public/images/small/dreamcraft/item.CoinBeesII/0.png deleted file mode 100644 index 66f1e126f0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBeesII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBeesIII/0.png b/front/public/images/small/dreamcraft/item.CoinBeesIII/0.png deleted file mode 100644 index adb67329df..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBeesIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBeesIV/0.png b/front/public/images/small/dreamcraft/item.CoinBeesIV/0.png deleted file mode 100644 index 7a0af070ba..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBeesIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBlank/0.png b/front/public/images/small/dreamcraft/item.CoinBlank/0.png deleted file mode 100644 index 7a14e6dd49..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBlank/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBlankI/0.png b/front/public/images/small/dreamcraft/item.CoinBlankI/0.png deleted file mode 100644 index 95429219e9..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBlankI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBlankII/0.png b/front/public/images/small/dreamcraft/item.CoinBlankII/0.png deleted file mode 100644 index c3a36510cd..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBlankII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBlankIII/0.png b/front/public/images/small/dreamcraft/item.CoinBlankIII/0.png deleted file mode 100644 index 31a90042e3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBlankIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBlankIV/0.png b/front/public/images/small/dreamcraft/item.CoinBlankIV/0.png deleted file mode 100644 index 6b105472a3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBlankIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBlood/0.png b/front/public/images/small/dreamcraft/item.CoinBlood/0.png deleted file mode 100644 index faf55aefc7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBlood/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBloodI/0.png b/front/public/images/small/dreamcraft/item.CoinBloodI/0.png deleted file mode 100644 index 47c74d882b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBloodI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBloodII/0.png b/front/public/images/small/dreamcraft/item.CoinBloodII/0.png deleted file mode 100644 index a3bc09a617..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBloodII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBloodIII/0.png b/front/public/images/small/dreamcraft/item.CoinBloodIII/0.png deleted file mode 100644 index 7fa98d32e6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBloodIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinBloodIV/0.png b/front/public/images/small/dreamcraft/item.CoinBloodIV/0.png deleted file mode 100644 index 107ad020de..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinBloodIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChemist/0.png b/front/public/images/small/dreamcraft/item.CoinChemist/0.png deleted file mode 100644 index 2c20a65477..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChemist/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChemistI/0.png b/front/public/images/small/dreamcraft/item.CoinChemistI/0.png deleted file mode 100644 index b9863fa44c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChemistI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChemistII/0.png b/front/public/images/small/dreamcraft/item.CoinChemistII/0.png deleted file mode 100644 index 0f857586e1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChemistII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChemistIII/0.png b/front/public/images/small/dreamcraft/item.CoinChemistIII/0.png deleted file mode 100644 index 4ba36c3d9a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChemistIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChemistIV/0.png b/front/public/images/small/dreamcraft/item.CoinChemistIV/0.png deleted file mode 100644 index b2282c98cc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChemistIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierI/0.png b/front/public/images/small/dreamcraft/item.CoinChunkloaderTierI/0.png deleted file mode 100644 index 7f09499534..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierII/0.png b/front/public/images/small/dreamcraft/item.CoinChunkloaderTierII/0.png deleted file mode 100644 index 5200ae6c86..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierIII/0.png b/front/public/images/small/dreamcraft/item.CoinChunkloaderTierIII/0.png deleted file mode 100644 index 438b0f3d84..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierIV/0.png b/front/public/images/small/dreamcraft/item.CoinChunkloaderTierIV/0.png deleted file mode 100644 index 88636d03e9..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierV/0.png b/front/public/images/small/dreamcraft/item.CoinChunkloaderTierV/0.png deleted file mode 100644 index 8c8f4f8322..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinChunkloaderTierV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinCook/0.png b/front/public/images/small/dreamcraft/item.CoinCook/0.png deleted file mode 100644 index e067c06b4e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinCook/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinCookI/0.png b/front/public/images/small/dreamcraft/item.CoinCookI/0.png deleted file mode 100644 index bb847e9b25..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinCookI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinCookII/0.png b/front/public/images/small/dreamcraft/item.CoinCookII/0.png deleted file mode 100644 index 3fbebe2a37..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinCookII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinCookIII/0.png b/front/public/images/small/dreamcraft/item.CoinCookIII/0.png deleted file mode 100644 index 46edbf6cae..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinCookIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinCookIV/0.png b/front/public/images/small/dreamcraft/item.CoinCookIV/0.png deleted file mode 100644 index c5466aa099..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinCookIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinDarkWizard/0.png b/front/public/images/small/dreamcraft/item.CoinDarkWizard/0.png deleted file mode 100644 index 573fcee748..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinDarkWizard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinDarkWizardI/0.png b/front/public/images/small/dreamcraft/item.CoinDarkWizardI/0.png deleted file mode 100644 index eeffcc821f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinDarkWizardI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinDarkWizardII/0.png b/front/public/images/small/dreamcraft/item.CoinDarkWizardII/0.png deleted file mode 100644 index 0dbbf79c29..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinDarkWizardII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinDarkWizardIII/0.png b/front/public/images/small/dreamcraft/item.CoinDarkWizardIII/0.png deleted file mode 100644 index 79fed03e60..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinDarkWizardIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinDarkWizardIV/0.png b/front/public/images/small/dreamcraft/item.CoinDarkWizardIV/0.png deleted file mode 100644 index 7be2e5e59e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinDarkWizardIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinDonation/0.png b/front/public/images/small/dreamcraft/item.CoinDonation/0.png deleted file mode 100644 index 272af2d490..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinDonation/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFarmer/0.png b/front/public/images/small/dreamcraft/item.CoinFarmer/0.png deleted file mode 100644 index 88d6febbdc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFarmer/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFarmerI/0.png b/front/public/images/small/dreamcraft/item.CoinFarmerI/0.png deleted file mode 100644 index 875979f872..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFarmerI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFarmerII/0.png b/front/public/images/small/dreamcraft/item.CoinFarmerII/0.png deleted file mode 100644 index 18aa30762e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFarmerII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFarmerIII/0.png b/front/public/images/small/dreamcraft/item.CoinFarmerIII/0.png deleted file mode 100644 index 5cc1883fbb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFarmerIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFarmerIV/0.png b/front/public/images/small/dreamcraft/item.CoinFarmerIV/0.png deleted file mode 100644 index 3c635f3446..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFarmerIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFlower/0.png b/front/public/images/small/dreamcraft/item.CoinFlower/0.png deleted file mode 100644 index 5cc5336bf8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFlower/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFlowerI/0.png b/front/public/images/small/dreamcraft/item.CoinFlowerI/0.png deleted file mode 100644 index 45b98d9518..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFlowerI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFlowerII/0.png b/front/public/images/small/dreamcraft/item.CoinFlowerII/0.png deleted file mode 100644 index 6e191b3b7f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFlowerII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFlowerIII/0.png b/front/public/images/small/dreamcraft/item.CoinFlowerIII/0.png deleted file mode 100644 index 7709fc7cde..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFlowerIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinFlowerIV/0.png b/front/public/images/small/dreamcraft/item.CoinFlowerIV/0.png deleted file mode 100644 index bb03e182a7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinFlowerIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinForestry/0.png b/front/public/images/small/dreamcraft/item.CoinForestry/0.png deleted file mode 100644 index ded476ff19..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinForestry/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinForestryI/0.png b/front/public/images/small/dreamcraft/item.CoinForestryI/0.png deleted file mode 100644 index 83b91a7104..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinForestryI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinForestryII/0.png b/front/public/images/small/dreamcraft/item.CoinForestryII/0.png deleted file mode 100644 index 8c3a30c6c4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinForestryII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinForestryIII/0.png b/front/public/images/small/dreamcraft/item.CoinForestryIII/0.png deleted file mode 100644 index fc2221e10f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinForestryIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinForestryIV/0.png b/front/public/images/small/dreamcraft/item.CoinForestryIV/0.png deleted file mode 100644 index 453404402a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinForestryIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSmith/0.png b/front/public/images/small/dreamcraft/item.CoinSmith/0.png deleted file mode 100644 index 50f3a4b65e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSmith/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSmithI/0.png b/front/public/images/small/dreamcraft/item.CoinSmithI/0.png deleted file mode 100644 index fee9d3ae7f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSmithI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSmithII/0.png b/front/public/images/small/dreamcraft/item.CoinSmithII/0.png deleted file mode 100644 index 64b8e15dc6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSmithII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSmithIII/0.png b/front/public/images/small/dreamcraft/item.CoinSmithIII/0.png deleted file mode 100644 index ad3fbd52b1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSmithIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSmithIV/0.png b/front/public/images/small/dreamcraft/item.CoinSmithIV/0.png deleted file mode 100644 index f8433e8df1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSmithIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSpace/0.png b/front/public/images/small/dreamcraft/item.CoinSpace/0.png deleted file mode 100644 index 90bdd019c6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSpace/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSpaceI/0.png b/front/public/images/small/dreamcraft/item.CoinSpaceI/0.png deleted file mode 100644 index 494d2a8043..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSpaceI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSpaceII/0.png b/front/public/images/small/dreamcraft/item.CoinSpaceII/0.png deleted file mode 100644 index 41ba0122d9..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSpaceII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSpaceIII/0.png b/front/public/images/small/dreamcraft/item.CoinSpaceIII/0.png deleted file mode 100644 index 9486a37588..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSpaceIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSpaceIV/0.png b/front/public/images/small/dreamcraft/item.CoinSpaceIV/0.png deleted file mode 100644 index baeb755cd7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSpaceIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSurvivor/0.png b/front/public/images/small/dreamcraft/item.CoinSurvivor/0.png deleted file mode 100644 index 0fd0dcf18b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSurvivor/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSurvivorI/0.png b/front/public/images/small/dreamcraft/item.CoinSurvivorI/0.png deleted file mode 100644 index 3734d3dbbe..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSurvivorI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSurvivorII/0.png b/front/public/images/small/dreamcraft/item.CoinSurvivorII/0.png deleted file mode 100644 index d482f78f86..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSurvivorII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSurvivorIII/0.png b/front/public/images/small/dreamcraft/item.CoinSurvivorIII/0.png deleted file mode 100644 index 5465e3e0bc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSurvivorIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinSurvivorIV/0.png b/front/public/images/small/dreamcraft/item.CoinSurvivorIV/0.png deleted file mode 100644 index c094149161..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinSurvivorIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinTechnician/0.png b/front/public/images/small/dreamcraft/item.CoinTechnician/0.png deleted file mode 100644 index d444e33d8d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinTechnician/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinTechnicianI/0.png b/front/public/images/small/dreamcraft/item.CoinTechnicianI/0.png deleted file mode 100644 index c9330e0ac5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinTechnicianI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinTechnicianII/0.png b/front/public/images/small/dreamcraft/item.CoinTechnicianII/0.png deleted file mode 100644 index 11534b36b5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinTechnicianII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinTechnicianIII/0.png b/front/public/images/small/dreamcraft/item.CoinTechnicianIII/0.png deleted file mode 100644 index 19caee1af5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinTechnicianIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinTechnicianIV/0.png b/front/public/images/small/dreamcraft/item.CoinTechnicianIV/0.png deleted file mode 100644 index 8710938fe2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinTechnicianIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinWitch/0.png b/front/public/images/small/dreamcraft/item.CoinWitch/0.png deleted file mode 100644 index 8eb87462de..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinWitch/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinWitchI/0.png b/front/public/images/small/dreamcraft/item.CoinWitchI/0.png deleted file mode 100644 index d77c519676..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinWitchI/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinWitchII/0.png b/front/public/images/small/dreamcraft/item.CoinWitchII/0.png deleted file mode 100644 index e88322084d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinWitchII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinWitchIII/0.png b/front/public/images/small/dreamcraft/item.CoinWitchIII/0.png deleted file mode 100644 index ebbab81ac6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinWitchIII/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CoinWitchIV/0.png b/front/public/images/small/dreamcraft/item.CoinWitchIV/0.png deleted file mode 100644 index 7013176012..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CoinWitchIV/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CokeOvenBrick/0.png b/front/public/images/small/dreamcraft/item.CokeOvenBrick/0.png deleted file mode 100644 index 2cf1eb80b3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CokeOvenBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CokeOvenBrickDust/0.png b/front/public/images/small/dreamcraft/item.CokeOvenBrickDust/0.png deleted file mode 100644 index 53c20049c3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CokeOvenBrickDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CompressedBioBall/0.png b/front/public/images/small/dreamcraft/item.CompressedBioBall/0.png deleted file mode 100644 index 87244ba2ba..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CompressedBioBall/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ConductiveIronBars/0.png b/front/public/images/small/dreamcraft/item.ConductiveIronBars/0.png deleted file mode 100644 index 6da2eee488..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ConductiveIronBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CopperDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.CopperDualCompressedPlates/0.png deleted file mode 100644 index e03a035e23..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CopperDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CopperWandCap/0.png b/front/public/images/small/dreamcraft/item.CopperWandCap/0.png deleted file mode 100644 index e0a5c1f59d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CopperWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.CrimsonStainedClothCap/0.png b/front/public/images/small/dreamcraft/item.CrimsonStainedClothCap/0.png deleted file mode 100644 index 77b890a688..0000000000 Binary files a/front/public/images/small/dreamcraft/item.CrimsonStainedClothCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.DeimosStoneDust/0.png b/front/public/images/small/dreamcraft/item.DeimosStoneDust/0.png deleted file mode 100644 index d37afde2b8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.DeimosStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.DeshDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.DeshDualCompressedPlates/0.png deleted file mode 100644 index 9fb5aaf4c7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.DeshDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.DiamondCoreChip/0.png b/front/public/images/small/dreamcraft/item.DiamondCoreChip/0.png deleted file mode 100644 index f573df22cf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.DiamondCoreChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.DiamondDrillTip/0.png b/front/public/images/small/dreamcraft/item.DiamondDrillTip/0.png deleted file mode 100644 index e5ff9ac64f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.DiamondDrillTip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.DiamondFluidCoreChip/0.png b/front/public/images/small/dreamcraft/item.DiamondFluidCoreChip/0.png deleted file mode 100644 index b0bac2ccd1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.DiamondFluidCoreChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Display/0.png b/front/public/images/small/dreamcraft/item.Display/0.png deleted file mode 100644 index 442d615dad..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Display/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.DraconiumEgg/0.png b/front/public/images/small/dreamcraft/item.DraconiumEgg/0.png deleted file mode 100644 index e2af81430f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.DraconiumEgg/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EMT/0.png b/front/public/images/small/dreamcraft/item.EMT/0.png deleted file mode 100644 index 84c17735c3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EMT/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EctoplasmaChip/0.png b/front/public/images/small/dreamcraft/item.EctoplasmaChip/0.png deleted file mode 100644 index 3cda538734..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EctoplasmaChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EctoplasmaFragment/0.png b/front/public/images/small/dreamcraft/item.EctoplasmaFragment/0.png deleted file mode 100644 index 80ff77e4db..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EctoplasmaFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EdibleSalt/0.png b/front/public/images/small/dreamcraft/item.EdibleSalt/0.png deleted file mode 100644 index d7d7091ca4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EdibleSalt/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ElectricBoatHull/0.png b/front/public/images/small/dreamcraft/item.ElectricBoatHull/0.png deleted file mode 100644 index 5b9e4d398a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ElectricBoatHull/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ElectricalSteelBars/0.png b/front/public/images/small/dreamcraft/item.ElectricalSteelBars/0.png deleted file mode 100644 index c11b634505..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ElectricalSteelBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ElectrotineWire/0.png b/front/public/images/small/dreamcraft/item.ElectrotineWire/0.png deleted file mode 100644 index 4f398f355d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ElectrotineWire/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EmeraldAdvancedCoreChip/0.png b/front/public/images/small/dreamcraft/item.EmeraldAdvancedCoreChip/0.png deleted file mode 100644 index 91a8795f24..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EmeraldAdvancedCoreChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EmeraldAdvancedFluidCoreChip/0.png b/front/public/images/small/dreamcraft/item.EmeraldAdvancedFluidCoreChip/0.png deleted file mode 100644 index 522dde77f7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EmeraldAdvancedFluidCoreChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EmeraldHighAdvancedCoreChip/0.png b/front/public/images/small/dreamcraft/item.EmeraldHighAdvancedCoreChip/0.png deleted file mode 100644 index 259977570e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EmeraldHighAdvancedCoreChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Empty1080SpCell/0.png b/front/public/images/small/dreamcraft/item.Empty1080SpCell/0.png deleted file mode 100644 index c8e8768481..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Empty1080SpCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Empty180SpCell/0.png b/front/public/images/small/dreamcraft/item.Empty180SpCell/0.png deleted file mode 100644 index 392465d4c3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Empty180SpCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Empty360SpCell/0.png b/front/public/images/small/dreamcraft/item.Empty360SpCell/0.png deleted file mode 100644 index 18d2bd5c81..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Empty360SpCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Empty540SpCell/0.png b/front/public/images/small/dreamcraft/item.Empty540SpCell/0.png deleted file mode 100644 index a200ce0191..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Empty540SpCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnceladusIceDust/0.png b/front/public/images/small/dreamcraft/item.EnceladusIceDust/0.png deleted file mode 100644 index ed23633bc7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnceladusIceDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnceladusStoneDust/0.png b/front/public/images/small/dreamcraft/item.EnceladusStoneDust/0.png deleted file mode 100644 index 8abb933c92..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnceladusStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnchantedClothCap/0.png b/front/public/images/small/dreamcraft/item.EnchantedClothCap/0.png deleted file mode 100644 index 1c568c1097..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnchantedClothCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnderEgg/0.png b/front/public/images/small/dreamcraft/item.EnderEgg/0.png deleted file mode 100644 index c427704876..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnderEgg/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnderiumBars/0.png b/front/public/images/small/dreamcraft/item.EnderiumBars/0.png deleted file mode 100644 index bd685efebb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnderiumBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnderiumBaseBars/0.png b/front/public/images/small/dreamcraft/item.EnderiumBaseBars/0.png deleted file mode 100644 index 5e907a884d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnderiumBaseBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnergeticAlloyBars/0.png b/front/public/images/small/dreamcraft/item.EnergeticAlloyBars/0.png deleted file mode 100644 index 985b4021c6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnergeticAlloyBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineCore/0.png b/front/public/images/small/dreamcraft/item.EngineCore/0.png deleted file mode 100644 index 5a3bdb7204..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineeringProcessorEssentiaPulsatingCore/0.png b/front/public/images/small/dreamcraft/item.EngineeringProcessorEssentiaPulsatingCore/0.png deleted file mode 100644 index 71d5480b0b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineeringProcessorEssentiaPulsatingCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineeringProcessorFluidDiamondCore/0.png b/front/public/images/small/dreamcraft/item.EngineeringProcessorFluidDiamondCore/0.png deleted file mode 100644 index f1ace006ca..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineeringProcessorFluidDiamondCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineeringProcessorFluidEmeraldCore/0.png b/front/public/images/small/dreamcraft/item.EngineeringProcessorFluidEmeraldCore/0.png deleted file mode 100644 index 8e22b519f6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineeringProcessorFluidEmeraldCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineeringProcessorItemAdvEmeraldCore/0.png b/front/public/images/small/dreamcraft/item.EngineeringProcessorItemAdvEmeraldCore/0.png deleted file mode 100644 index 9bda0ff127..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineeringProcessorItemAdvEmeraldCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineeringProcessorItemDiamondCore/0.png b/front/public/images/small/dreamcraft/item.EngineeringProcessorItemDiamondCore/0.png deleted file mode 100644 index 1075c7503b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineeringProcessorItemDiamondCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineeringProcessorItemEmeraldCore/0.png b/front/public/images/small/dreamcraft/item.EngineeringProcessorItemEmeraldCore/0.png deleted file mode 100644 index f86fa18b80..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineeringProcessorItemEmeraldCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngineeringProcessorSpatialPulsatingCore/0.png b/front/public/images/small/dreamcraft/item.EngineeringProcessorSpatialPulsatingCore/0.png deleted file mode 100644 index d6d301a770..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngineeringProcessorSpatialPulsatingCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngravedDiamondCrystalChip/0.png b/front/public/images/small/dreamcraft/item.EngravedDiamondCrystalChip/0.png deleted file mode 100644 index d2ec8c53fa..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngravedDiamondCrystalChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngravedEnergyChip/0.png b/front/public/images/small/dreamcraft/item.EngravedEnergyChip/0.png deleted file mode 100644 index 4f04a9879e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngravedEnergyChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngravedGoldChip/0.png b/front/public/images/small/dreamcraft/item.EngravedGoldChip/0.png deleted file mode 100644 index 1a752f4ac8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngravedGoldChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngravedManyullynCrystalChip/0.png b/front/public/images/small/dreamcraft/item.EngravedManyullynCrystalChip/0.png deleted file mode 100644 index 143aab8c9f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngravedManyullynCrystalChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EngravedQuantumChip/0.png b/front/public/images/small/dreamcraft/item.EngravedQuantumChip/0.png deleted file mode 100644 index a7ba59125b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EngravedQuantumChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnrichedNaquadriaNeutroniumSunnariumAlloy/0.png b/front/public/images/small/dreamcraft/item.EnrichedNaquadriaNeutroniumSunnariumAlloy/0.png deleted file mode 100644 index 3f6492a203..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnrichedNaquadriaNeutroniumSunnariumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnrichedNaquadriaSunnariumAlloy/0.png b/front/public/images/small/dreamcraft/item.EnrichedNaquadriaSunnariumAlloy/0.png deleted file mode 100644 index 675387f72b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnrichedNaquadriaSunnariumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnrichedXSunnariumAlloy/0.png b/front/public/images/small/dreamcraft/item.EnrichedXSunnariumAlloy/0.png deleted file mode 100644 index 1e9e025fdd..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnrichedXSunnariumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EnvironmentalCircuit/0.png b/front/public/images/small/dreamcraft/item.EnvironmentalCircuit/0.png deleted file mode 100644 index bbca841f56..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EnvironmentalCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EssentiaCircuit/0.png b/front/public/images/small/dreamcraft/item.EssentiaCircuit/0.png deleted file mode 100644 index e92b9c4c03..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EssentiaCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EtchedInsaneVoltageWiring/0.png b/front/public/images/small/dreamcraft/item.EtchedInsaneVoltageWiring/0.png deleted file mode 100644 index c267d789d8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EtchedInsaneVoltageWiring/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EtchedLowVoltageWiring/0.png b/front/public/images/small/dreamcraft/item.EtchedLowVoltageWiring/0.png deleted file mode 100644 index fef13008b4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EtchedLowVoltageWiring/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EtchedLudicrousVoltageWiring/0.png b/front/public/images/small/dreamcraft/item.EtchedLudicrousVoltageWiring/0.png deleted file mode 100644 index 8b1e542fb5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EtchedLudicrousVoltageWiring/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EuropaIceDust/0.png b/front/public/images/small/dreamcraft/item.EuropaIceDust/0.png deleted file mode 100644 index c53e20b913..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EuropaIceDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.EuropaStoneDust/0.png b/front/public/images/small/dreamcraft/item.EuropaStoneDust/0.png deleted file mode 100644 index 4770e16ed2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.EuropaStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ExtraLargeFuelCanister/0.png b/front/public/images/small/dreamcraft/item.ExtraLargeFuelCanister/0.png deleted file mode 100644 index f51d092213..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ExtraLargeFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ExtruderShapeBoat/0.png b/front/public/images/small/dreamcraft/item.ExtruderShapeBoat/0.png deleted file mode 100644 index 26163e3dff..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ExtruderShapeBoat/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.FieryBloodDrop/0.png b/front/public/images/small/dreamcraft/item.FieryBloodDrop/0.png deleted file mode 100644 index 8c59528f39..0000000000 Binary files a/front/public/images/small/dreamcraft/item.FieryBloodDrop/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.GanymedeStoneDust/0.png b/front/public/images/small/dreamcraft/item.GanymedeStoneDust/0.png deleted file mode 100644 index 76e6b9a123..0000000000 Binary files a/front/public/images/small/dreamcraft/item.GanymedeStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.GeneticCircuit/0.png b/front/public/images/small/dreamcraft/item.GeneticCircuit/0.png deleted file mode 100644 index 172f848a80..0000000000 Binary files a/front/public/images/small/dreamcraft/item.GeneticCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.GlowingMarshmallow/0.png b/front/public/images/small/dreamcraft/item.GlowingMarshmallow/0.png deleted file mode 100644 index 517ac68dcb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.GlowingMarshmallow/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.GoldCoreChip/0.png b/front/public/images/small/dreamcraft/item.GoldCoreChip/0.png deleted file mode 100644 index 09c1b9fe8f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.GoldCoreChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.GoldWandCap/0.png b/front/public/images/small/dreamcraft/item.GoldWandCap/0.png deleted file mode 100644 index 943cd67fbf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.GoldWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HaumeaStoneDust/0.png b/front/public/images/small/dreamcraft/item.HaumeaStoneDust/0.png deleted file mode 100644 index c0c1cb17f0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HaumeaStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT4/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT4/0.png deleted file mode 100644 index 815be007d5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT4/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT5/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT5/0.png deleted file mode 100644 index 8f6ab94797..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT5/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT6/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT6/0.png deleted file mode 100644 index 0ad31cfc19..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT6/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT7/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT7/0.png deleted file mode 100644 index 51cb54dd89..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT7/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT8/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT8/0.png deleted file mode 100644 index 22d65df0a8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT8/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT9/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT9/0.png deleted file mode 100644 index be5cc7b1ed..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyAlloyIngotT9/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyNoseConeTier3/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyNoseConeTier3/0.png deleted file mode 100644 index 80f48791c0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyNoseConeTier3/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyNoseConeTier4/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyNoseConeTier4/0.png deleted file mode 100644 index d93146439b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyNoseConeTier4/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier4/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier4/0.png deleted file mode 100644 index ca68d230b9..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier4/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier5/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier5/0.png deleted file mode 100644 index ff155e4db6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier5/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier6/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier6/0.png deleted file mode 100644 index 6478bf8d7a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier6/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier7/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier7/0.png deleted file mode 100644 index d4ad275f57..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier7/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier8/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier8/0.png deleted file mode 100644 index 231e3153e4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyPlateTier8/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyRocketEngineTier3/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyRocketEngineTier3/0.png deleted file mode 100644 index d81c85ed36..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyRocketEngineTier3/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyRocketEngineTier4/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyRocketEngineTier4/0.png deleted file mode 100644 index 978e697f37..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyRocketEngineTier4/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyRocketFinsTier3/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyRocketFinsTier3/0.png deleted file mode 100644 index f51f7c2d22..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyRocketFinsTier3/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HeavyDutyRocketFinsTier4/0.png b/front/public/images/small/dreamcraft/item.HeavyDutyRocketFinsTier4/0.png deleted file mode 100644 index 802af75d03..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HeavyDutyRocketFinsTier4/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HighEnergyCircuitParts/0.png b/front/public/images/small/dreamcraft/item.HighEnergyCircuitParts/0.png deleted file mode 100644 index b71b447275..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HighEnergyCircuitParts/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HighEnergyFlowCircuit/0.png b/front/public/images/small/dreamcraft/item.HighEnergyFlowCircuit/0.png deleted file mode 100644 index 43c2535877..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HighEnergyFlowCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.HotNetherrackBrick/0.png b/front/public/images/small/dreamcraft/item.HotNetherrackBrick/0.png deleted file mode 100644 index c2df7f05ce..0000000000 Binary files a/front/public/images/small/dreamcraft/item.HotNetherrackBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IceCompressedPlate/0.png b/front/public/images/small/dreamcraft/item.IceCompressedPlate/0.png deleted file mode 100644 index 8b7b061750..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IceCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IceDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.IceDualCompressedPlates/0.png deleted file mode 100644 index 605f468437..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IceDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IchoriumCap/0.png b/front/public/images/small/dreamcraft/item.IchoriumCap/0.png deleted file mode 100644 index 5eaf30414c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IchoriumCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IndustryFrame/0.png b/front/public/images/small/dreamcraft/item.IndustryFrame/0.png deleted file mode 100644 index a90eb89f00..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IndustryFrame/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.InfernalBrick/0.png b/front/public/images/small/dreamcraft/item.InfernalBrick/0.png deleted file mode 100644 index 41e10972b6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.InfernalBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IoStoneDust/0.png b/front/public/images/small/dreamcraft/item.IoStoneDust/0.png deleted file mode 100644 index 22aae2ce32..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IoStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IridiumAlloyItemCasing/0.png b/front/public/images/small/dreamcraft/item.IridiumAlloyItemCasing/0.png deleted file mode 100644 index f4cf8dcb5b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IridiumAlloyItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IridiumBars/0.png b/front/public/images/small/dreamcraft/item.IridiumBars/0.png deleted file mode 100644 index 47a77e0337..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IridiumBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IridiumItemCasing/0.png b/front/public/images/small/dreamcraft/item.IridiumItemCasing/0.png deleted file mode 100644 index a3d892c073..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IridiumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IronDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.IronDualCompressedPlates/0.png deleted file mode 100644 index 2fdeb722be..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IronDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IronWandCap/0.png b/front/public/images/small/dreamcraft/item.IronWandCap/0.png deleted file mode 100644 index 3792246799..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IronWandCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedAluminiumPlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedAluminiumPlate/0.png deleted file mode 100644 index be6b28d329..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedAluminiumPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedBedrockiumPlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedBedrockiumPlate/0.png deleted file mode 100644 index d859501479..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedBedrockiumPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedChromePlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedChromePlate/0.png deleted file mode 100644 index 646ec8fa21..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedChromePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedNaquadriaPlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedNaquadriaPlate/0.png deleted file mode 100644 index 6fc43a2d74..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedNaquadriaPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedNeutroniumPlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedNeutroniumPlate/0.png deleted file mode 100644 index bfdf82998a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedNeutroniumPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedTitaniumPlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedTitaniumPlate/0.png deleted file mode 100644 index 3be9175bce..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedTitaniumPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedTungstenPlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedTungstenPlate/0.png deleted file mode 100644 index cea993fb36..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedTungstenPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.IrradiantReinforcedTungstenSteelPlate/0.png b/front/public/images/small/dreamcraft/item.IrradiantReinforcedTungstenSteelPlate/0.png deleted file mode 100644 index 32df55bd23..0000000000 Binary files a/front/public/images/small/dreamcraft/item.IrradiantReinforcedTungstenSteelPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LapotronDust/0.png b/front/public/images/small/dreamcraft/item.LapotronDust/0.png deleted file mode 100644 index 5378097b04..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LapotronDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LargeFuelCanister/0.png b/front/public/images/small/dreamcraft/item.LargeFuelCanister/0.png deleted file mode 100644 index db750285c5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LargeFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LaserEmitter/0.png b/front/public/images/small/dreamcraft/item.LaserEmitter/0.png deleted file mode 100644 index 3e46a0176f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LaserEmitter/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LeadNickelPlate/0.png b/front/public/images/small/dreamcraft/item.LeadNickelPlate/0.png deleted file mode 100644 index 4a0e95ef26..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LeadNickelPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LeadOriharukonPlate/0.png b/front/public/images/small/dreamcraft/item.LeadOriharukonPlate/0.png deleted file mode 100644 index 965af10f92..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LeadOriharukonPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LedoxColdIngot/0.png b/front/public/images/small/dreamcraft/item.LedoxColdIngot/0.png deleted file mode 100644 index 590be9f9ad..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LedoxColdIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LedoxCompressedPlate/0.png b/front/public/images/small/dreamcraft/item.LedoxCompressedPlate/0.png deleted file mode 100644 index 523da132fc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LedoxCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LedoxDensePlate/0.png b/front/public/images/small/dreamcraft/item.LedoxDensePlate/0.png deleted file mode 100644 index a5d59449a7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LedoxDensePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LedoxDust/0.png b/front/public/images/small/dreamcraft/item.LedoxDust/0.png deleted file mode 100644 index f29de9a9b4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LedoxDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LedoxIngot/0.png b/front/public/images/small/dreamcraft/item.LedoxIngot/0.png deleted file mode 100644 index a6d587936e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LedoxIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LedoxPlate/0.png b/front/public/images/small/dreamcraft/item.LedoxPlate/0.png deleted file mode 100644 index 7034b43b5c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LedoxPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LichBone/0.png b/front/public/images/small/dreamcraft/item.LichBone/0.png deleted file mode 100644 index 82c78281a5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LichBone/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LichBoneChip/0.png b/front/public/images/small/dreamcraft/item.LichBoneChip/0.png deleted file mode 100644 index 57a1eb08d7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LichBoneChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LichBoneFragment/0.png b/front/public/images/small/dreamcraft/item.LichBoneFragment/0.png deleted file mode 100644 index 727323ac3a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LichBoneFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LightAxeHead/0.png b/front/public/images/small/dreamcraft/item.LightAxeHead/0.png deleted file mode 100644 index 4eeea7bfc5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LightAxeHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LightBinding/0.png b/front/public/images/small/dreamcraft/item.LightBinding/0.png deleted file mode 100644 index e72fb19895..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LightBinding/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LightPickaxeHead/0.png b/front/public/images/small/dreamcraft/item.LightPickaxeHead/0.png deleted file mode 100644 index 019c2afaaf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LightPickaxeHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LightShaft/0.png b/front/public/images/small/dreamcraft/item.LightShaft/0.png deleted file mode 100644 index d43bb1b2fe..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LightShaft/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LightSwordBlade/0.png b/front/public/images/small/dreamcraft/item.LightSwordBlade/0.png deleted file mode 100644 index d3b66214fe..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LightSwordBlade/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LogicProcessorItemGoldCore/0.png b/front/public/images/small/dreamcraft/item.LogicProcessorItemGoldCore/0.png deleted file mode 100644 index b10e8ca882..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LogicProcessorItemGoldCore/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LongObsidianRod/0.png b/front/public/images/small/dreamcraft/item.LongObsidianRod/0.png deleted file mode 100644 index 620d4facd7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LongObsidianRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.LongStoneRod/0.png b/front/public/images/small/dreamcraft/item.LongStoneRod/0.png deleted file mode 100644 index f662a5430f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.LongStoneRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MaceratedPlantmass/0.png b/front/public/images/small/dreamcraft/item.MaceratedPlantmass/0.png deleted file mode 100644 index 62ad01291c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MaceratedPlantmass/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MagicianOrb/0.png b/front/public/images/small/dreamcraft/item.MagicianOrb/0.png deleted file mode 100644 index e312064e30..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MagicianOrb/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MakeMakeStoneDust/0.png b/front/public/images/small/dreamcraft/item.MakeMakeStoneDust/0.png deleted file mode 100644 index 86db775510..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MakeMakeStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MalformedSlush/0.png b/front/public/images/small/dreamcraft/item.MalformedSlush/0.png deleted file mode 100644 index 1fec6564b7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MalformedSlush/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ManyullynCrystal/0.png b/front/public/images/small/dreamcraft/item.ManyullynCrystal/0.png deleted file mode 100644 index 5cf96c57f4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ManyullynCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ManyullynPlate/0.png b/front/public/images/small/dreamcraft/item.ManyullynPlate/0.png deleted file mode 100644 index e671a6f75f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ManyullynPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MarsStoneDust/0.png b/front/public/images/small/dreamcraft/item.MarsStoneDust/0.png deleted file mode 100644 index c6e1a27c05..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MarsStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Marshmallow/0.png b/front/public/images/small/dreamcraft/item.Marshmallow/0.png deleted file mode 100644 index 0bb9a5c782..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Marshmallow/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MarshmallowForm/0.png b/front/public/images/small/dreamcraft/item.MarshmallowForm/0.png deleted file mode 100644 index b21d3fa75c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MarshmallowForm/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MarshmallowFormMold/0.png b/front/public/images/small/dreamcraft/item.MarshmallowFormMold/0.png deleted file mode 100644 index 3722ac0510..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MarshmallowFormMold/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MasterOrb/0.png b/front/public/images/small/dreamcraft/item.MasterOrb/0.png deleted file mode 100644 index 0f0d5c97eb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MasterOrb/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MedalBuilder/0.png b/front/public/images/small/dreamcraft/item.MedalBuilder/0.png deleted file mode 100644 index 690f9d2363..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MedalBuilder/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MedalDerp/0.png b/front/public/images/small/dreamcraft/item.MedalDerp/0.png deleted file mode 100644 index 6448d50e6d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MedalDerp/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MedalEngineer/0.png b/front/public/images/small/dreamcraft/item.MedalEngineer/0.png deleted file mode 100644 index 388e928db2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MedalEngineer/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MedalGTExplosion/0.png b/front/public/images/small/dreamcraft/item.MedalGTExplosion/0.png deleted file mode 100644 index 8d76fa8ebb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MedalGTExplosion/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MedalWarp/0.png b/front/public/images/small/dreamcraft/item.MedalWarp/0.png deleted file mode 100644 index 83142016a2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MedalWarp/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MediumFuelCanister/0.png b/front/public/images/small/dreamcraft/item.MediumFuelCanister/0.png deleted file mode 100644 index f7f1680332..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MediumFuelCanister/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MercuryCoreDust/0.png b/front/public/images/small/dreamcraft/item.MercuryCoreDust/0.png deleted file mode 100644 index 2f44905d74..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MercuryCoreDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MercuryStoneDust/0.png b/front/public/images/small/dreamcraft/item.MercuryStoneDust/0.png deleted file mode 100644 index 4891d00d5c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MercuryStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MeteoricIronDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.MeteoricIronDualCompressedPlates/0.png deleted file mode 100644 index 409783fbcc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MeteoricIronDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MeteoricIronString/0.png b/front/public/images/small/dreamcraft/item.MeteoricIronString/0.png deleted file mode 100644 index da2b58f20b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MeteoricIronString/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MicaBasedPulp/0.png b/front/public/images/small/dreamcraft/item.MicaBasedPulp/0.png deleted file mode 100644 index 7d8a5975e0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MicaBasedPulp/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MicaBasedSheet/0.png b/front/public/images/small/dreamcraft/item.MicaBasedSheet/0.png deleted file mode 100644 index 469648718d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MicaBasedSheet/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MicaInsulatorFoil/0.png b/front/public/images/small/dreamcraft/item.MicaInsulatorFoil/0.png deleted file mode 100644 index a4643b2ad5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MicaInsulatorFoil/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MicaInsulatorSheet/0.png b/front/public/images/small/dreamcraft/item.MicaInsulatorSheet/0.png deleted file mode 100644 index 10e96a7ad8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MicaInsulatorSheet/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MirandaStoneDust/0.png b/front/public/images/small/dreamcraft/item.MirandaStoneDust/0.png deleted file mode 100644 index fc80d2b83a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MirandaStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldBoots/0.png b/front/public/images/small/dreamcraft/item.MoldBoots/0.png deleted file mode 100644 index cd3ce05f09..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldBoots/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldChestplate/0.png b/front/public/images/small/dreamcraft/item.MoldChestplate/0.png deleted file mode 100644 index d449240517..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormAnvil/0.png b/front/public/images/small/dreamcraft/item.MoldFormAnvil/0.png deleted file mode 100644 index ad1eedb450..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormAnvil/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormArrowHead/0.png b/front/public/images/small/dreamcraft/item.MoldFormArrowHead/0.png deleted file mode 100644 index 5c7ebb231b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormArrowHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBaguette/0.png b/front/public/images/small/dreamcraft/item.MoldFormBaguette/0.png deleted file mode 100644 index b1edb8b03c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBaguette/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBall/0.png b/front/public/images/small/dreamcraft/item.MoldFormBall/0.png deleted file mode 100644 index d541ff2ee6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBall/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBlock/0.png b/front/public/images/small/dreamcraft/item.MoldFormBlock/0.png deleted file mode 100644 index 681be8fb13..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBlock/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBolt/0.png b/front/public/images/small/dreamcraft/item.MoldFormBolt/0.png deleted file mode 100644 index 7fd9dbe8ec..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBolt/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBoots/0.png b/front/public/images/small/dreamcraft/item.MoldFormBoots/0.png deleted file mode 100644 index 773ea40a21..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBoots/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBottle/0.png b/front/public/images/small/dreamcraft/item.MoldFormBottle/0.png deleted file mode 100644 index e49d03b851..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBottle/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBread/0.png b/front/public/images/small/dreamcraft/item.MoldFormBread/0.png deleted file mode 100644 index 88ead00564..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBread/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormBuns/0.png b/front/public/images/small/dreamcraft/item.MoldFormBuns/0.png deleted file mode 100644 index 8cf6f72b70..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormBuns/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormCasing/0.png b/front/public/images/small/dreamcraft/item.MoldFormCasing/0.png deleted file mode 100644 index b8cda8c605..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormChestplate/0.png b/front/public/images/small/dreamcraft/item.MoldFormChestplate/0.png deleted file mode 100644 index e05a51807f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormCoinage/0.png b/front/public/images/small/dreamcraft/item.MoldFormCoinage/0.png deleted file mode 100644 index a20a2df8a5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormCoinage/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormCylinder/0.png b/front/public/images/small/dreamcraft/item.MoldFormCylinder/0.png deleted file mode 100644 index 5e1919dfdf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormCylinder/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormDrillHead/0.png b/front/public/images/small/dreamcraft/item.MoldFormDrillHead/0.png deleted file mode 100644 index 9d7e37918e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormDrillHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormGear/0.png b/front/public/images/small/dreamcraft/item.MoldFormGear/0.png deleted file mode 100644 index f61903d70a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormGear/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormHelmet/0.png b/front/public/images/small/dreamcraft/item.MoldFormHelmet/0.png deleted file mode 100644 index 6aafb1fe4a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormIngot/0.png b/front/public/images/small/dreamcraft/item.MoldFormIngot/0.png deleted file mode 100644 index 7565bdc06b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormLeggings/0.png b/front/public/images/small/dreamcraft/item.MoldFormLeggings/0.png deleted file mode 100644 index a04230be4b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormName/0.png b/front/public/images/small/dreamcraft/item.MoldFormName/0.png deleted file mode 100644 index a421a1c0ae..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormName/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormNuggets/0.png b/front/public/images/small/dreamcraft/item.MoldFormNuggets/0.png deleted file mode 100644 index 397ccf5989..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormNuggets/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormPipeHuge/0.png b/front/public/images/small/dreamcraft/item.MoldFormPipeHuge/0.png deleted file mode 100644 index acd4938647..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormPipeHuge/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormPipeLarge/0.png b/front/public/images/small/dreamcraft/item.MoldFormPipeLarge/0.png deleted file mode 100644 index c993e3cb70..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormPipeLarge/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormPipeMedium/0.png b/front/public/images/small/dreamcraft/item.MoldFormPipeMedium/0.png deleted file mode 100644 index e35e5df904..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormPipeMedium/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormPipeSmall/0.png b/front/public/images/small/dreamcraft/item.MoldFormPipeSmall/0.png deleted file mode 100644 index 524e43cb67..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormPipeSmall/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormPipeTiny/0.png b/front/public/images/small/dreamcraft/item.MoldFormPipeTiny/0.png deleted file mode 100644 index 714a6830a2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormPipeTiny/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormPlate/0.png b/front/public/images/small/dreamcraft/item.MoldFormPlate/0.png deleted file mode 100644 index 44f9b86c73..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormRing/0.png b/front/public/images/small/dreamcraft/item.MoldFormRing/0.png deleted file mode 100644 index 0b73342445..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormRing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormRotor/0.png b/front/public/images/small/dreamcraft/item.MoldFormRotor/0.png deleted file mode 100644 index e9cc053de3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormRotor/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormRound/0.png b/front/public/images/small/dreamcraft/item.MoldFormRound/0.png deleted file mode 100644 index 732f50a551..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormRound/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormScrew/0.png b/front/public/images/small/dreamcraft/item.MoldFormScrew/0.png deleted file mode 100644 index 16336f2255..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormScrew/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormSmallGear/0.png b/front/public/images/small/dreamcraft/item.MoldFormSmallGear/0.png deleted file mode 100644 index e551fa221d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormSmallGear/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormStick/0.png b/front/public/images/small/dreamcraft/item.MoldFormStick/0.png deleted file mode 100644 index 17a6bce054..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormStick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormStickLong/0.png b/front/public/images/small/dreamcraft/item.MoldFormStickLong/0.png deleted file mode 100644 index d38b7626d0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormStickLong/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldFormTurbineBlade/0.png b/front/public/images/small/dreamcraft/item.MoldFormTurbineBlade/0.png deleted file mode 100644 index 7900fad873..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldFormTurbineBlade/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldHelmet/0.png b/front/public/images/small/dreamcraft/item.MoldHelmet/0.png deleted file mode 100644 index 796d5b51c8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoldLeggings/0.png b/front/public/images/small/dreamcraft/item.MoldLeggings/0.png deleted file mode 100644 index 23b3548e54..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoldLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MoonStoneDust/0.png b/front/public/images/small/dreamcraft/item.MoonStoneDust/0.png deleted file mode 100644 index d3876b7a79..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MoonStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MushroomPowder/0.png b/front/public/images/small/dreamcraft/item.MushroomPowder/0.png deleted file mode 100644 index 89c7676eb0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MushroomPowder/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MutatedEgg/0.png b/front/public/images/small/dreamcraft/item.MutatedEgg/0.png deleted file mode 100644 index 7e55f0e990..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MutatedEgg/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystal/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystal/0.png deleted file mode 100644 index 9e41d92d4b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalColdIngot/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalColdIngot/0.png deleted file mode 100644 index c2cb2bce8c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalColdIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalCompressedPlate/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalCompressedPlate/0.png deleted file mode 100644 index 8a26c87a64..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalDensePlate/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalDensePlate/0.png deleted file mode 100644 index 4af39891b2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalDensePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalDualCompressedPlates/0.png deleted file mode 100644 index e7dec1390a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalDust/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalDust/0.png deleted file mode 100644 index 1bbc5107c5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalGemExquisite/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalGemExquisite/0.png deleted file mode 100644 index fe908afe49..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalGemExquisite/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalGemFlawless/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalGemFlawless/0.png deleted file mode 100644 index 63c7fa221b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalGemFlawless/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalIngot/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalIngot/0.png deleted file mode 100644 index 40d8bc01cc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalLens/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalLens/0.png deleted file mode 100644 index cb95a90e50..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalLens/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MysteriousCrystalPlate/0.png b/front/public/images/small/dreamcraft/item.MysteriousCrystalPlate/0.png deleted file mode 100644 index a1457a1c63..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MysteriousCrystalPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylCompressedPlate/0.png b/front/public/images/small/dreamcraft/item.MytrylCompressedPlate/0.png deleted file mode 100644 index 39063fa506..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylCrystal/0.png b/front/public/images/small/dreamcraft/item.MytrylCrystal/0.png deleted file mode 100644 index 1cc4bfd3b3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylDensePlate/0.png b/front/public/images/small/dreamcraft/item.MytrylDensePlate/0.png deleted file mode 100644 index 493a4d822f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylDensePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.MytrylDualCompressedPlates/0.png deleted file mode 100644 index e6401097d5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylDust/0.png b/front/public/images/small/dreamcraft/item.MytrylDust/0.png deleted file mode 100644 index 54e435f5af..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylHotIngot/0.png b/front/public/images/small/dreamcraft/item.MytrylHotIngot/0.png deleted file mode 100644 index a68b53fecd..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylHotIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylIngot/0.png b/front/public/images/small/dreamcraft/item.MytrylIngot/0.png deleted file mode 100644 index 2abad71526..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.MytrylPlate/0.png b/front/public/images/small/dreamcraft/item.MytrylPlate/0.png deleted file mode 100644 index e750242873..0000000000 Binary files a/front/public/images/small/dreamcraft/item.MytrylPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NagaScaleChip/0.png b/front/public/images/small/dreamcraft/item.NagaScaleChip/0.png deleted file mode 100644 index 8035186aed..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NagaScaleChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NagaScaleFragment/0.png b/front/public/images/small/dreamcraft/item.NagaScaleFragment/0.png deleted file mode 100644 index 4dc1586691..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NagaScaleFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoBoard/0.png b/front/public/images/small/dreamcraft/item.NanoBoard/0.png deleted file mode 100644 index ed5f37dff3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoBoard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoChestJetPack/0.png b/front/public/images/small/dreamcraft/item.NanoChestJetPack/0.png deleted file mode 100644 index 245c8a8af2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoChestJetPack/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoCircuit/0.png b/front/public/images/small/dreamcraft/item.NanoCircuit/0.png deleted file mode 100644 index f5a81f1220..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoCrystal/0.png b/front/public/images/small/dreamcraft/item.NanoCrystal/0.png deleted file mode 100644 index 634eefbaca..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoPlatedLeggings/0.png b/front/public/images/small/dreamcraft/item.NanoPlatedLeggings/0.png deleted file mode 100644 index 7b6941a50a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoPlatedLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoProcessorBoard/0.png b/front/public/images/small/dreamcraft/item.NanoProcessorBoard/0.png deleted file mode 100644 index ab8296755f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoProcessorBoard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoRubberBoots/0.png b/front/public/images/small/dreamcraft/item.NanoRubberBoots/0.png deleted file mode 100644 index 3d67d2153c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoRubberBoots/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NanoScubaHelmet/0.png b/front/public/images/small/dreamcraft/item.NanoScubaHelmet/0.png deleted file mode 100644 index 30df42d35c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NanoScubaHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NaquadriaIronPlate/0.png b/front/public/images/small/dreamcraft/item.NaquadriaIronPlate/0.png deleted file mode 100644 index 5683e93a2e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NaquadriaIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NetherStarFragment/0.png b/front/public/images/small/dreamcraft/item.NetherStarFragment/0.png deleted file mode 100644 index d52abcafdc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NetherStarFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NeutronReflectorParts/0.png b/front/public/images/small/dreamcraft/item.NeutronReflectorParts/0.png deleted file mode 100644 index 0ecc731c5f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NeutronReflectorParts/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NeutronReflectorSmallParts/0.png b/front/public/images/small/dreamcraft/item.NeutronReflectorSmallParts/0.png deleted file mode 100644 index f6179f6098..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NeutronReflectorSmallParts/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NeutroniumBars/0.png b/front/public/images/small/dreamcraft/item.NeutroniumBars/0.png deleted file mode 100644 index 26553257e1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NeutroniumBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NeutroniumIronPlate/0.png b/front/public/images/small/dreamcraft/item.NeutroniumIronPlate/0.png deleted file mode 100644 index 80eb32fe21..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NeutroniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.NeutroniumItemCasing/0.png b/front/public/images/small/dreamcraft/item.NeutroniumItemCasing/0.png deleted file mode 100644 index b45a163714..0000000000 Binary files a/front/public/images/small/dreamcraft/item.NeutroniumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Nothing/0.png b/front/public/images/small/dreamcraft/item.Nothing/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Nothing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.OberonStoneDust/0.png b/front/public/images/small/dreamcraft/item.OberonStoneDust/0.png deleted file mode 100644 index 41e77e1cd3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.OberonStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.OsmiumBars/0.png b/front/public/images/small/dreamcraft/item.OsmiumBars/0.png deleted file mode 100644 index 48f2930f3e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.OsmiumBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.OsmiumItemCasing/0.png b/front/public/images/small/dreamcraft/item.OsmiumItemCasing/0.png deleted file mode 100644 index 150dfc5499..0000000000 Binary files a/front/public/images/small/dreamcraft/item.OsmiumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.OvenGlove/0.png b/front/public/images/small/dreamcraft/item.OvenGlove/0.png deleted file mode 100644 index 322322332e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.OvenGlove/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.OvenGlove/1.png b/front/public/images/small/dreamcraft/item.OvenGlove/1.png deleted file mode 100644 index 3c2ee3f715..0000000000 Binary files a/front/public/images/small/dreamcraft/item.OvenGlove/1.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PhobosStoneDust/0.png b/front/public/images/small/dreamcraft/item.PhobosStoneDust/0.png deleted file mode 100644 index 6448108ae7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PhobosStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PicoWafer/0.png b/front/public/images/small/dreamcraft/item.PicoWafer/0.png deleted file mode 100644 index 24cecc8741..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PicoWafer/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PikoCircuit/0.png b/front/public/images/small/dreamcraft/item.PikoCircuit/0.png deleted file mode 100644 index bc3f4f1273..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PikoCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PistonPlate/0.png b/front/public/images/small/dreamcraft/item.PistonPlate/0.png deleted file mode 100644 index b6c33af1a4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PistonPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PlutoIceDust/0.png b/front/public/images/small/dreamcraft/item.PlutoIceDust/0.png deleted file mode 100644 index 05b114f366..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PlutoIceDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PlutoStoneDust/0.png b/front/public/images/small/dreamcraft/item.PlutoStoneDust/0.png deleted file mode 100644 index f1421fb24f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PlutoStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PotassiumHydroxideDust/0.png b/front/public/images/small/dreamcraft/item.PotassiumHydroxideDust/0.png deleted file mode 100644 index 21d368a610..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PotassiumHydroxideDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PrimordialPearlFragment/0.png b/front/public/images/small/dreamcraft/item.PrimordialPearlFragment/0.png deleted file mode 100644 index 2222285bc5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PrimordialPearlFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ProteusStoneDust/0.png b/front/public/images/small/dreamcraft/item.ProteusStoneDust/0.png deleted file mode 100644 index a465cc6c60..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ProteusStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PulsatingIronBars/0.png b/front/public/images/small/dreamcraft/item.PulsatingIronBars/0.png deleted file mode 100644 index 14632defb7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PulsatingIronBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.PulsatingSpatialCoreChip/0.png b/front/public/images/small/dreamcraft/item.PulsatingSpatialCoreChip/0.png deleted file mode 100644 index 0060ac3cf0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.PulsatingSpatialCoreChip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantinumCompressedPlate/0.png b/front/public/images/small/dreamcraft/item.QuantinumCompressedPlate/0.png deleted file mode 100644 index 5cd08468ee..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantinumCompressedPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantinumDensePlate/0.png b/front/public/images/small/dreamcraft/item.QuantinumDensePlate/0.png deleted file mode 100644 index e1f633c0b8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantinumDensePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantinumDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.QuantinumDualCompressedPlates/0.png deleted file mode 100644 index c43012be43..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantinumDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantinumDust/0.png b/front/public/images/small/dreamcraft/item.QuantinumDust/0.png deleted file mode 100644 index c5acab6c6f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantinumDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantinumHotIngot/0.png b/front/public/images/small/dreamcraft/item.QuantinumHotIngot/0.png deleted file mode 100644 index 0e18a9cb58..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantinumHotIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantinumPlate/0.png b/front/public/images/small/dreamcraft/item.QuantinumPlate/0.png deleted file mode 100644 index b1e55397f0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantinumPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantinumRod/0.png b/front/public/images/small/dreamcraft/item.QuantinumRod/0.png deleted file mode 100644 index 31293e6df0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantinumRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumBoard/0.png b/front/public/images/small/dreamcraft/item.QuantumBoard/0.png deleted file mode 100644 index be048ac93b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumBoard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumCircuit/0.png b/front/public/images/small/dreamcraft/item.QuantumCircuit/0.png deleted file mode 100644 index 942a182a48..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumCircuit/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumCrystal/0.png b/front/public/images/small/dreamcraft/item.QuantumCrystal/0.png deleted file mode 100644 index 1e5db4be24..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumPartBoots/0.png b/front/public/images/small/dreamcraft/item.QuantumPartBoots/0.png deleted file mode 100644 index d5c08c51c2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumPartBoots/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumPartChestplate/0.png b/front/public/images/small/dreamcraft/item.QuantumPartChestplate/0.png deleted file mode 100644 index ae0e98f195..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumPartChestplate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumPartHelmet/0.png b/front/public/images/small/dreamcraft/item.QuantumPartHelmet/0.png deleted file mode 100644 index f21a29f921..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumPartHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumPartHelmetEmpty/0.png b/front/public/images/small/dreamcraft/item.QuantumPartHelmetEmpty/0.png deleted file mode 100644 index c5092f47b7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumPartHelmetEmpty/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumPartLeggings/0.png b/front/public/images/small/dreamcraft/item.QuantumPartLeggings/0.png deleted file mode 100644 index 7c51d0827c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumPartLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.QuantumProcessorBoard/0.png b/front/public/images/small/dreamcraft/item.QuantumProcessorBoard/0.png deleted file mode 100644 index ea1d282fcb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.QuantumProcessorBoard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RadoxPolymerLens/0.png b/front/public/images/small/dreamcraft/item.RadoxPolymerLens/0.png deleted file mode 100644 index 6973298494..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RadoxPolymerLens/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawBioFiber/0.png b/front/public/images/small/dreamcraft/item.RawBioFiber/0.png deleted file mode 100644 index f843e5cf2b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawBioFiber/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawLapotronCrystal/0.png b/front/public/images/small/dreamcraft/item.RawLapotronCrystal/0.png deleted file mode 100644 index 1b998af76e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawLapotronCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawMytryl/0.png b/front/public/images/small/dreamcraft/item.RawMytryl/0.png deleted file mode 100644 index d0b8e2ae03..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawMytryl/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawNeutronium/0.png b/front/public/images/small/dreamcraft/item.RawNeutronium/0.png deleted file mode 100644 index b9c7db0482..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawNeutronium/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawOrbTier1/0.png b/front/public/images/small/dreamcraft/item.RawOrbTier1/0.png deleted file mode 100644 index 32a4cf66bc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawOrbTier1/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawOrbTier2/0.png b/front/public/images/small/dreamcraft/item.RawOrbTier2/0.png deleted file mode 100644 index b610e8efc0..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawOrbTier2/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawOrbTier3/0.png b/front/public/images/small/dreamcraft/item.RawOrbTier3/0.png deleted file mode 100644 index ecae4d75a7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawOrbTier3/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawOrbTier4/0.png b/front/public/images/small/dreamcraft/item.RawOrbTier4/0.png deleted file mode 100644 index f2df7f2721..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawOrbTier4/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawOrbTier5/0.png b/front/public/images/small/dreamcraft/item.RawOrbTier5/0.png deleted file mode 100644 index 495968d37b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawOrbTier5/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawOrbTier6/0.png b/front/public/images/small/dreamcraft/item.RawOrbTier6/0.png deleted file mode 100644 index c155659317..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawOrbTier6/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawPicoWafer/0.png b/front/public/images/small/dreamcraft/item.RawPicoWafer/0.png deleted file mode 100644 index 21ba7c11d8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawPicoWafer/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RawSDHCAlloy/0.png b/front/public/images/small/dreamcraft/item.RawSDHCAlloy/0.png deleted file mode 100644 index 6de1e156b6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RawSDHCAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RedstoneAlloyBars/0.png b/front/public/images/small/dreamcraft/item.RedstoneAlloyBars/0.png deleted file mode 100644 index 226e5935cd..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RedstoneAlloyBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedAluminiumIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedAluminiumIronPlate/0.png deleted file mode 100644 index ca0d2e7421..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedAluminiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedBedrockiumIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedBedrockiumIronPlate/0.png deleted file mode 100644 index 1e77192091..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedBedrockiumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedChromeIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedChromeIronPlate/0.png deleted file mode 100644 index 86988c443d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedChromeIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedGlassLense/0.png b/front/public/images/small/dreamcraft/item.ReinforcedGlassLense/0.png deleted file mode 100644 index e2af803b66..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedGlassLense/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedGlassPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedGlassPlate/0.png deleted file mode 100644 index 0e493d5ce5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedGlassPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedIridiumDrillTip/0.png b/front/public/images/small/dreamcraft/item.ReinforcedIridiumDrillTip/0.png deleted file mode 100644 index 73b64b0a88..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedIridiumDrillTip/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedNaquadriaIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedNaquadriaIronPlate/0.png deleted file mode 100644 index a752b30c39..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedNaquadriaIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedNeutroniumIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedNeutroniumIronPlate/0.png deleted file mode 100644 index 58e45df757..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedNeutroniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedTitaniumIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedTitaniumIronPlate/0.png deleted file mode 100644 index f6ccbfca1c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedTitaniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedTungstenIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedTungstenIronPlate/0.png deleted file mode 100644 index 69335bd481..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedTungstenIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ReinforcedTungstenSteelIronPlate/0.png b/front/public/images/small/dreamcraft/item.ReinforcedTungstenSteelIronPlate/0.png deleted file mode 100644 index 344a6f0fea..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ReinforcedTungstenSteelIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RuneOfAgilityFragment/0.png b/front/public/images/small/dreamcraft/item.RuneOfAgilityFragment/0.png deleted file mode 100644 index 57c236eb02..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RuneOfAgilityFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RuneOfDefenseFragment/0.png b/front/public/images/small/dreamcraft/item.RuneOfDefenseFragment/0.png deleted file mode 100644 index 4b5207c625..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RuneOfDefenseFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RuneOfMagicFragment/0.png b/front/public/images/small/dreamcraft/item.RuneOfMagicFragment/0.png deleted file mode 100644 index bce50c6bdb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RuneOfMagicFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RuneOfPowerFragment/0.png b/front/public/images/small/dreamcraft/item.RuneOfPowerFragment/0.png deleted file mode 100644 index adbfd04f65..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RuneOfPowerFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RuneOfVigorFragment/0.png b/front/public/images/small/dreamcraft/item.RuneOfVigorFragment/0.png deleted file mode 100644 index def138d04a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RuneOfVigorFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.RuneOfVoidFragment/0.png b/front/public/images/small/dreamcraft/item.RuneOfVoidFragment/0.png deleted file mode 100644 index 94857526b9..0000000000 Binary files a/front/public/images/small/dreamcraft/item.RuneOfVoidFragment/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SandDust/0.png b/front/public/images/small/dreamcraft/item.SandDust/0.png deleted file mode 100644 index df00d50752..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SandDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SandStoneRod/0.png b/front/public/images/small/dreamcraft/item.SandStoneRod/0.png deleted file mode 100644 index 3c18096580..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SandStoneRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SawBladeArdite/0.png b/front/public/images/small/dreamcraft/item.SawBladeArdite/0.png deleted file mode 100644 index 79cbb68d48..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SawBladeArdite/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SawBladeDiamond/0.png b/front/public/images/small/dreamcraft/item.SawBladeDiamond/0.png deleted file mode 100644 index 54aca95c8b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SawBladeDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SawBladeManyullyn/0.png b/front/public/images/small/dreamcraft/item.SawBladeManyullyn/0.png deleted file mode 100644 index fd731b087c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SawBladeManyullyn/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SawBladePeridot/0.png b/front/public/images/small/dreamcraft/item.SawBladePeridot/0.png deleted file mode 100644 index b0970c747f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SawBladePeridot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SawBladeRuby/0.png b/front/public/images/small/dreamcraft/item.SawBladeRuby/0.png deleted file mode 100644 index e8cde6a064..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SawBladeRuby/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SawBladeSapphire/0.png b/front/public/images/small/dreamcraft/item.SawBladeSapphire/0.png deleted file mode 100644 index 034146cb02..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SawBladeSapphire/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SawBladeStone/0.png b/front/public/images/small/dreamcraft/item.SawBladeStone/0.png deleted file mode 100644 index f77a4ffe73..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SawBladeStone/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsAstroMiner/0.png b/front/public/images/small/dreamcraft/item.SchematicsAstroMiner/0.png deleted file mode 100644 index f208409cbe..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsAstroMiner/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsCargoRocket/0.png b/front/public/images/small/dreamcraft/item.SchematicsCargoRocket/0.png deleted file mode 100644 index 01caaa542c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsCargoRocket/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsMoonBuggy/0.png b/front/public/images/small/dreamcraft/item.SchematicsMoonBuggy/0.png deleted file mode 100644 index 8fae731650..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsMoonBuggy/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier1/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier1/0.png deleted file mode 100644 index b4db809a2d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier1/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier2/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier2/0.png deleted file mode 100644 index 79df7bd582..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier2/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier3/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier3/0.png deleted file mode 100644 index f4d9356dee..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier3/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier4/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier4/0.png deleted file mode 100644 index 7c9dfbec28..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier4/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier5/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier5/0.png deleted file mode 100644 index c2feb9937a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier5/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier6/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier6/0.png deleted file mode 100644 index 4f2a9075b8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier6/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier7/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier7/0.png deleted file mode 100644 index 2020586a3f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier7/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SchematicsTier8/0.png b/front/public/images/small/dreamcraft/item.SchematicsTier8/0.png deleted file mode 100644 index 07dc6c8d03..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SchematicsTier8/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShadowImbuedClothCap/0.png b/front/public/images/small/dreamcraft/item.ShadowImbuedClothCap/0.png deleted file mode 100644 index 870fd7375b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShadowImbuedClothCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShadowmetalCap/0.png b/front/public/images/small/dreamcraft/item.ShadowmetalCap/0.png deleted file mode 100644 index 0d90bef447..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShadowmetalCap/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeAxeHead/0.png b/front/public/images/small/dreamcraft/item.ShapeAxeHead/0.png deleted file mode 100644 index 24518f0736..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeAxeHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeBlock/0.png b/front/public/images/small/dreamcraft/item.ShapeBlock/0.png deleted file mode 100644 index f35bd66c62..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeBoat/0.png b/front/public/images/small/dreamcraft/item.ShapeBoat/0.png deleted file mode 100644 index 10d3fa734c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeBoat/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeBolt/0.png b/front/public/images/small/dreamcraft/item.ShapeBolt/0.png deleted file mode 100644 index 5e39314ee9..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeBolt/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeBottle/0.png b/front/public/images/small/dreamcraft/item.ShapeBottle/0.png deleted file mode 100644 index 8ee2cdf26b..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeBottle/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeCasing/0.png b/front/public/images/small/dreamcraft/item.ShapeCasing/0.png deleted file mode 100644 index daf6ea959c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeCell/0.png b/front/public/images/small/dreamcraft/item.ShapeCell/0.png deleted file mode 100644 index 1b7004a01f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeDrillHead/0.png b/front/public/images/small/dreamcraft/item.ShapeDrillHead/0.png deleted file mode 100644 index 9d7e37918e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeDrillHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeFileHead/0.png b/front/public/images/small/dreamcraft/item.ShapeFileHead/0.png deleted file mode 100644 index d597d38fe5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeFileHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeGear/0.png b/front/public/images/small/dreamcraft/item.ShapeGear/0.png deleted file mode 100644 index b534f37d64..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeGear/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeHammerHead/0.png b/front/public/images/small/dreamcraft/item.ShapeHammerHead/0.png deleted file mode 100644 index d7263f8521..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeHammerHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeHoeHead/0.png b/front/public/images/small/dreamcraft/item.ShapeHoeHead/0.png deleted file mode 100644 index a356177191..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeHoeHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeHugePipe/0.png b/front/public/images/small/dreamcraft/item.ShapeHugePipe/0.png deleted file mode 100644 index c2fd7d921d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeHugePipe/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeIngot/0.png b/front/public/images/small/dreamcraft/item.ShapeIngot/0.png deleted file mode 100644 index e5fa3dc7f6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeIngot/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeLargePipe/0.png b/front/public/images/small/dreamcraft/item.ShapeLargePipe/0.png deleted file mode 100644 index 8e63a74827..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeLargePipe/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeNormalPipe/0.png b/front/public/images/small/dreamcraft/item.ShapeNormalPipe/0.png deleted file mode 100644 index 6cb6c34697..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeNormalPipe/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapePickaxeHead/0.png b/front/public/images/small/dreamcraft/item.ShapePickaxeHead/0.png deleted file mode 100644 index 126e646f41..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapePickaxeHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapePlate/0.png b/front/public/images/small/dreamcraft/item.ShapePlate/0.png deleted file mode 100644 index 6cc9a37689..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeRing/0.png b/front/public/images/small/dreamcraft/item.ShapeRing/0.png deleted file mode 100644 index 768646efbc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeRing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeRod/0.png b/front/public/images/small/dreamcraft/item.ShapeRod/0.png deleted file mode 100644 index 50b4e10615..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeRotor/0.png b/front/public/images/small/dreamcraft/item.ShapeRotor/0.png deleted file mode 100644 index dadbefabed..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeRotor/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeSawBlade/0.png b/front/public/images/small/dreamcraft/item.ShapeSawBlade/0.png deleted file mode 100644 index 5ea9115c28..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeSawBlade/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeShovelHead/0.png b/front/public/images/small/dreamcraft/item.ShapeShovelHead/0.png deleted file mode 100644 index 26ddece19d..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeShovelHead/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeSmallGear/0.png b/front/public/images/small/dreamcraft/item.ShapeSmallGear/0.png deleted file mode 100644 index 17dbf399bc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeSmallGear/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeSmallPipe/0.png b/front/public/images/small/dreamcraft/item.ShapeSmallPipe/0.png deleted file mode 100644 index 07d939eef8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeSmallPipe/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeSwordBlade/0.png b/front/public/images/small/dreamcraft/item.ShapeSwordBlade/0.png deleted file mode 100644 index 82bbb9e927..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeSwordBlade/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeTinyPipe/0.png b/front/public/images/small/dreamcraft/item.ShapeTinyPipe/0.png deleted file mode 100644 index bb630481fc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeTinyPipe/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeTurbineBlade/0.png b/front/public/images/small/dreamcraft/item.ShapeTurbineBlade/0.png deleted file mode 100644 index 5ba3e3c058..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeTurbineBlade/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ShapeWire/0.png b/front/public/images/small/dreamcraft/item.ShapeWire/0.png deleted file mode 100644 index 7e840001ae..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ShapeWire/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SilverThread/0.png b/front/public/images/small/dreamcraft/item.SilverThread/0.png deleted file mode 100644 index 6f8b4d42cf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SilverThread/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SilveredFleece/0.png b/front/public/images/small/dreamcraft/item.SilveredFleece/0.png deleted file mode 100644 index be25413780..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SilveredFleece/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SimpleCircuitBoard/0.png b/front/public/images/small/dreamcraft/item.SimpleCircuitBoard/0.png deleted file mode 100644 index 4d968acb31..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SimpleCircuitBoard/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SixtyKCell/0.png b/front/public/images/small/dreamcraft/item.SixtyKCell/0.png deleted file mode 100644 index 440f9655b5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SixtyKCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SnowQueenBlood/0.png b/front/public/images/small/dreamcraft/item.SnowQueenBlood/0.png deleted file mode 100644 index 1cfc50b872..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SnowQueenBlood/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SnowQueenBloodDrop/0.png b/front/public/images/small/dreamcraft/item.SnowQueenBloodDrop/0.png deleted file mode 100644 index 3e953d5a46..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SnowQueenBloodDrop/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SoulariumBars/0.png b/front/public/images/small/dreamcraft/item.SoulariumBars/0.png deleted file mode 100644 index 33effa3a96..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SoulariumBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.StainlessSteelBars/0.png b/front/public/images/small/dreamcraft/item.StainlessSteelBars/0.png deleted file mode 100644 index d86a13ab6c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.StainlessSteelBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.StainlessSteelItemCasing/0.png b/front/public/images/small/dreamcraft/item.StainlessSteelItemCasing/0.png deleted file mode 100644 index 40ff70f057..0000000000 Binary files a/front/public/images/small/dreamcraft/item.StainlessSteelItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.StargateChevron/0.png b/front/public/images/small/dreamcraft/item.StargateChevron/0.png deleted file mode 100644 index 35d94d1bc4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.StargateChevron/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.StargateCrystalDust/0.png b/front/public/images/small/dreamcraft/item.StargateCrystalDust/0.png deleted file mode 100644 index e2eafb15ae..0000000000 Binary files a/front/public/images/small/dreamcraft/item.StargateCrystalDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.StargateFramePart/0.png b/front/public/images/small/dreamcraft/item.StargateFramePart/0.png deleted file mode 100644 index 3855ea659e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.StargateFramePart/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.StargateShieldingFoil/0.png b/front/public/images/small/dreamcraft/item.StargateShieldingFoil/0.png deleted file mode 100644 index 768db53da6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.StargateShieldingFoil/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SteelBars/0.png b/front/public/images/small/dreamcraft/item.SteelBars/0.png deleted file mode 100644 index 2f42299b8e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SteelBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.SteelDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.SteelDualCompressedPlates/0.png deleted file mode 100644 index 0b5c6b1d90..0000000000 Binary files a/front/public/images/small/dreamcraft/item.SteelDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.StonePlate/0.png b/front/public/images/small/dreamcraft/item.StonePlate/0.png deleted file mode 100644 index 92589daa41..0000000000 Binary files a/front/public/images/small/dreamcraft/item.StonePlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TCetiESeaweedExtract/0.png b/front/public/images/small/dreamcraft/item.TCetiESeaweedExtract/0.png deleted file mode 100644 index 487906f6d5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TCetiESeaweedExtract/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TCetiEStoneDust/0.png b/front/public/images/small/dreamcraft/item.TCetiEStoneDust/0.png deleted file mode 100644 index 30fc4d7299..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TCetiEStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TeleposerFrame/0.png b/front/public/images/small/dreamcraft/item.TeleposerFrame/0.png deleted file mode 100644 index 6de5a70397..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TeleposerFrame/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TenKCell/0.png b/front/public/images/small/dreamcraft/item.TenKCell/0.png deleted file mode 100644 index 8df9a5e0e6..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TenKCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TheBigEgg/0.png b/front/public/images/small/dreamcraft/item.TheBigEgg/0.png deleted file mode 100644 index 25f115662f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TheBigEgg/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.ThirtyKCell/0.png b/front/public/images/small/dreamcraft/item.ThirtyKCell/0.png deleted file mode 100644 index 92d8b70f97..0000000000 Binary files a/front/public/images/small/dreamcraft/item.ThirtyKCell/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Tier2Booster/0.png b/front/public/images/small/dreamcraft/item.Tier2Booster/0.png deleted file mode 100644 index 198b97d05e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Tier2Booster/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Tier3Booster/0.png b/front/public/images/small/dreamcraft/item.Tier3Booster/0.png deleted file mode 100644 index 4439f9eb68..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Tier3Booster/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.Tier4Booster/0.png b/front/public/images/small/dreamcraft/item.Tier4Booster/0.png deleted file mode 100644 index 8ca0c0890a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.Tier4Booster/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TinDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.TinDualCompressedPlates/0.png deleted file mode 100644 index cd26f17cb4..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TinDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TitanStoneDust/0.png b/front/public/images/small/dreamcraft/item.TitanStoneDust/0.png deleted file mode 100644 index b1cb09c57c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TitanStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TitaniumBars/0.png b/front/public/images/small/dreamcraft/item.TitaniumBars/0.png deleted file mode 100644 index 8af685cd73..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TitaniumBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TitaniumDualCompressedPlates/0.png b/front/public/images/small/dreamcraft/item.TitaniumDualCompressedPlates/0.png deleted file mode 100644 index ac46c0d339..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TitaniumDualCompressedPlates/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TitaniumIronPlate/0.png b/front/public/images/small/dreamcraft/item.TitaniumIronPlate/0.png deleted file mode 100644 index 5d8e11bc44..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TitaniumIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TitaniumItemCasing/0.png b/front/public/images/small/dreamcraft/item.TitaniumItemCasing/0.png deleted file mode 100644 index 2eeba836bf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TitaniumItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TranscendentOrb/0.png b/front/public/images/small/dreamcraft/item.TranscendentOrb/0.png deleted file mode 100644 index bd81fa4b75..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TranscendentOrb/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TritonStoneDust/0.png b/front/public/images/small/dreamcraft/item.TritonStoneDust/0.png deleted file mode 100644 index c2a59f2181..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TritonStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TungstenBars/0.png b/front/public/images/small/dreamcraft/item.TungstenBars/0.png deleted file mode 100644 index 31883e4faf..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TungstenBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TungstenIronPlate/0.png b/front/public/images/small/dreamcraft/item.TungstenIronPlate/0.png deleted file mode 100644 index b72318c2b7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TungstenIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TungstenItemCasing/0.png b/front/public/images/small/dreamcraft/item.TungstenItemCasing/0.png deleted file mode 100644 index ad5c455ddb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TungstenItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TungstenSteelBars/0.png b/front/public/images/small/dreamcraft/item.TungstenSteelBars/0.png deleted file mode 100644 index 17ba0f482a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TungstenSteelBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TungstenSteelIronPlate/0.png b/front/public/images/small/dreamcraft/item.TungstenSteelIronPlate/0.png deleted file mode 100644 index 36d6116132..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TungstenSteelIronPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TungstenSteelItemCasing/0.png b/front/public/images/small/dreamcraft/item.TungstenSteelItemCasing/0.png deleted file mode 100644 index 6bc30b93b2..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TungstenSteelItemCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TungstenString/0.png b/front/public/images/small/dreamcraft/item.TungstenString/0.png deleted file mode 100644 index fbf20d42cc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TungstenString/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.TwilightCrystal/0.png b/front/public/images/small/dreamcraft/item.TwilightCrystal/0.png deleted file mode 100644 index fc4651e045..0000000000 Binary files a/front/public/images/small/dreamcraft/item.TwilightCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.UncookedSlush/0.png b/front/public/images/small/dreamcraft/item.UncookedSlush/0.png deleted file mode 100644 index 00aa753f29..0000000000 Binary files a/front/public/images/small/dreamcraft/item.UncookedSlush/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.UnfiredClayBrick/0.png b/front/public/images/small/dreamcraft/item.UnfiredClayBrick/0.png deleted file mode 100644 index dd22457b57..0000000000 Binary files a/front/public/images/small/dreamcraft/item.UnfiredClayBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.UnfiredCokeOvenBrick/0.png b/front/public/images/small/dreamcraft/item.UnfiredCokeOvenBrick/0.png deleted file mode 100644 index 0e17538ed1..0000000000 Binary files a/front/public/images/small/dreamcraft/item.UnfiredCokeOvenBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.UnfiredSearedBrick/0.png b/front/public/images/small/dreamcraft/item.UnfiredSearedBrick/0.png deleted file mode 100644 index 9dcb84e847..0000000000 Binary files a/front/public/images/small/dreamcraft/item.UnfiredSearedBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.UnfiredSlimeSoulBrick/0.png b/front/public/images/small/dreamcraft/item.UnfiredSlimeSoulBrick/0.png deleted file mode 100644 index 4e1222311c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.UnfiredSlimeSoulBrick/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VegaBStoneDust/0.png b/front/public/images/small/dreamcraft/item.VegaBStoneDust/0.png deleted file mode 100644 index 64cf15ebfc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VegaBStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VenusStoneDust/0.png b/front/public/images/small/dreamcraft/item.VenusStoneDust/0.png deleted file mode 100644 index d451b3e34f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VenusStoneDust/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VibrantAlloyBars/0.png b/front/public/images/small/dreamcraft/item.VibrantAlloyBars/0.png deleted file mode 100644 index b567944626..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VibrantAlloyBars/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VinteumThread/0.png b/front/public/images/small/dreamcraft/item.VinteumThread/0.png deleted file mode 100644 index 4d6ad790d3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VinteumThread/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VoidEssence/0.png b/front/public/images/small/dreamcraft/item.VoidEssence/0.png deleted file mode 100644 index 01f84f1efb..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VoidEssence/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VoidFoil/0.png b/front/public/images/small/dreamcraft/item.VoidFoil/0.png deleted file mode 100644 index 236a5a13f7..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VoidFoil/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VoidPlate/0.png b/front/public/images/small/dreamcraft/item.VoidPlate/0.png deleted file mode 100644 index 6768ad0c36..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VoidPlate/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VoidRing/0.png b/front/public/images/small/dreamcraft/item.VoidRing/0.png deleted file mode 100644 index 87526501c3..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VoidRing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VoidRod/0.png b/front/public/images/small/dreamcraft/item.VoidRod/0.png deleted file mode 100644 index 13c54af9ed..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VoidRod/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.VoidSeed/0.png b/front/public/images/small/dreamcraft/item.VoidSeed/0.png deleted file mode 100644 index c86c18afea..0000000000 Binary files a/front/public/images/small/dreamcraft/item.VoidSeed/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WaferTier3/0.png b/front/public/images/small/dreamcraft/item.WaferTier3/0.png deleted file mode 100644 index 5db38285ec..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WaferTier3/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WandCapAlchemical/0.png b/front/public/images/small/dreamcraft/item.WandCapAlchemical/0.png deleted file mode 100644 index b2c5d7e76a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WandCapAlchemical/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WandCapBloodIron/0.png b/front/public/images/small/dreamcraft/item.WandCapBloodIron/0.png deleted file mode 100644 index 9295a6c8dc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WandCapBloodIron/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WandCapElementium/0.png b/front/public/images/small/dreamcraft/item.WandCapElementium/0.png deleted file mode 100644 index 8946c32a9a..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WandCapElementium/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WandCapManaSteel/0.png b/front/public/images/small/dreamcraft/item.WandCapManaSteel/0.png deleted file mode 100644 index 2f02c8dcbc..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WandCapManaSteel/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WandCapTerraSteel/0.png b/front/public/images/small/dreamcraft/item.WandCapTerraSteel/0.png deleted file mode 100644 index dadc4c2f1f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WandCapTerraSteel/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WandCapThauminite/0.png b/front/public/images/small/dreamcraft/item.WandCapThauminite/0.png deleted file mode 100644 index 488cd5ea4e..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WandCapThauminite/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WandCapVinteum/0.png b/front/public/images/small/dreamcraft/item.WandCapVinteum/0.png deleted file mode 100644 index 41fe78038c..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WandCapVinteum/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WeakOrb/0.png b/front/public/images/small/dreamcraft/item.WeakOrb/0.png deleted file mode 100644 index f4ffed0898..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WeakOrb/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WetTofu/0.png b/front/public/images/small/dreamcraft/item.WetTofu/0.png deleted file mode 100644 index d8218d6f75..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WetTofu/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WirelessTransmitter/0.png b/front/public/images/small/dreamcraft/item.WirelessTransmitter/0.png deleted file mode 100644 index 8a477edc2f..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WirelessTransmitter/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WitherProtectionRing/0.png b/front/public/images/small/dreamcraft/item.WitherProtectionRing/0.png deleted file mode 100644 index 5f8c3afff5..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WitherProtectionRing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WoodenBrickForm/0.png b/front/public/images/small/dreamcraft/item.WoodenBrickForm/0.png deleted file mode 100644 index 8e0afaf5be..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WoodenBrickForm/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/item.WoodenCasing/0.png b/front/public/images/small/dreamcraft/item.WoodenCasing/0.png deleted file mode 100644 index 12bedceae8..0000000000 Binary files a/front/public/images/small/dreamcraft/item.WoodenCasing/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.BlackPlutonium/0.png b/front/public/images/small/dreamcraft/tile.BlackPlutonium/0.png deleted file mode 100644 index be24c900e8..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.BlackPlutonium/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.BloodyIchorium/0.png b/front/public/images/small/dreamcraft/tile.BloodyIchorium/0.png deleted file mode 100644 index c5d754137b..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.BloodyIchorium/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.BloodyThaumium/0.png b/front/public/images/small/dreamcraft/tile.BloodyThaumium/0.png deleted file mode 100644 index 47e55ae67f..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.BloodyThaumium/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.BloodyVoid/0.png b/front/public/images/small/dreamcraft/tile.BloodyVoid/0.png deleted file mode 100644 index 4a9799724f..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.BloodyVoid/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.BronzePlatedReinforcedStone/0.png b/front/public/images/small/dreamcraft/tile.BronzePlatedReinforcedStone/0.png deleted file mode 100644 index ede922ccd0..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.BronzePlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.CallistoColdIce/0.png b/front/public/images/small/dreamcraft/tile.CallistoColdIce/0.png deleted file mode 100644 index 4837ae952d..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.CallistoColdIce/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.Charcoal/0.png b/front/public/images/small/dreamcraft/tile.Charcoal/0.png deleted file mode 100644 index a8f270c17c..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.Charcoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.CompressedCharcoal/0.png b/front/public/images/small/dreamcraft/tile.CompressedCharcoal/0.png deleted file mode 100644 index d0e060d87f..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.CompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.CompressedCoal/0.png b/front/public/images/small/dreamcraft/tile.CompressedCoal/0.png deleted file mode 100644 index e8689179cf..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.CompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.CompressedCoalCoke/0.png b/front/public/images/small/dreamcraft/tile.CompressedCoalCoke/0.png deleted file mode 100644 index f5a5c856b2..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.CompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.CompressedGraphite/0.png b/front/public/images/small/dreamcraft/tile.CompressedGraphite/0.png deleted file mode 100644 index e16fc8a898..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.CompressedGraphite/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.DiamondFrameBox/0.png b/front/public/images/small/dreamcraft/tile.DiamondFrameBox/0.png deleted file mode 100644 index 7fcb3ac7ee..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.DiamondFrameBox/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.DoubleCompressedCharcoal/0.png b/front/public/images/small/dreamcraft/tile.DoubleCompressedCharcoal/0.png deleted file mode 100644 index c35af1d39f..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.DoubleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.DoubleCompressedCoal/0.png b/front/public/images/small/dreamcraft/tile.DoubleCompressedCoal/0.png deleted file mode 100644 index 1183fce7e2..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.DoubleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.DoubleCompressedCoalCoke/0.png b/front/public/images/small/dreamcraft/tile.DoubleCompressedCoalCoke/0.png deleted file mode 100644 index 83fb4441f7..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.DoubleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.Ledox/0.png b/front/public/images/small/dreamcraft/tile.Ledox/0.png deleted file mode 100644 index e4c8c91798..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.Ledox/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.MysteriousCrystal/0.png b/front/public/images/small/dreamcraft/tile.MysteriousCrystal/0.png deleted file mode 100644 index 38c475fd18..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.MysteriousCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.Mytryl/0.png b/front/public/images/small/dreamcraft/tile.Mytryl/0.png deleted file mode 100644 index 8d1a2ffb0b..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.Mytryl/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.NaquadahPlatedReinforcedStone/0.png b/front/public/images/small/dreamcraft/tile.NaquadahPlatedReinforcedStone/0.png deleted file mode 100644 index 7648998f7e..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.NaquadahPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.NeutroniumPlatedReinforcedStone/0.png b/front/public/images/small/dreamcraft/tile.NeutroniumPlatedReinforcedStone/0.png deleted file mode 100644 index 597d9352c2..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.NeutroniumPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.PistonBlock/0.png b/front/public/images/small/dreamcraft/tile.PistonBlock/0.png deleted file mode 100644 index 9c2d556cc6..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.PistonBlock/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCharcoal/0.png b/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCharcoal/0.png deleted file mode 100644 index bcd793d3b5..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCoal/0.png b/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCoal/0.png deleted file mode 100644 index 1d9a3a9846..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCoalCoke/0.png b/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCoalCoke/0.png deleted file mode 100644 index a34ff84592..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.QuadrupleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.Quantinum/0.png b/front/public/images/small/dreamcraft/tile.Quantinum/0.png deleted file mode 100644 index f23c37189f..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.Quantinum/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.QuintupleCompressedCharcoal/0.png b/front/public/images/small/dreamcraft/tile.QuintupleCompressedCharcoal/0.png deleted file mode 100644 index 472ee351bb..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.QuintupleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.QuintupleCompressedCoal/0.png b/front/public/images/small/dreamcraft/tile.QuintupleCompressedCoal/0.png deleted file mode 100644 index b4a2475706..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.QuintupleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.QuintupleCompressedCoalCoke/0.png b/front/public/images/small/dreamcraft/tile.QuintupleCompressedCoalCoke/0.png deleted file mode 100644 index f228774adf..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.QuintupleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.SandClayMix/0.png b/front/public/images/small/dreamcraft/tile.SandClayMix/0.png deleted file mode 100644 index 511d1b9f16..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.SandClayMix/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.SteelPlatedReinforcedStone/0.png b/front/public/images/small/dreamcraft/tile.SteelPlatedReinforcedStone/0.png deleted file mode 100644 index 2b6a95fef9..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.SteelPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.TitaniumPlatedReinforcedStone/0.png b/front/public/images/small/dreamcraft/tile.TitaniumPlatedReinforcedStone/0.png deleted file mode 100644 index 63e661d8cd..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.TitaniumPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.TripleCompressedCharcoal/0.png b/front/public/images/small/dreamcraft/tile.TripleCompressedCharcoal/0.png deleted file mode 100644 index 75a6722ba3..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.TripleCompressedCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.TripleCompressedCoal/0.png b/front/public/images/small/dreamcraft/tile.TripleCompressedCoal/0.png deleted file mode 100644 index b34c765669..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.TripleCompressedCoal/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.TripleCompressedCoalCoke/0.png b/front/public/images/small/dreamcraft/tile.TripleCompressedCoalCoke/0.png deleted file mode 100644 index 5982e67775..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.TripleCompressedCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/small/dreamcraft/tile.TungstensteelPlatedReinforcedStone/0.png b/front/public/images/small/dreamcraft/tile.TungstensteelPlatedReinforcedStone/0.png deleted file mode 100644 index 3532e9b4eb..0000000000 Binary files a/front/public/images/small/dreamcraft/tile.TungstensteelPlatedReinforcedStone/0.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/0.png b/front/public/images/small/enhancedlootbags/lootbag/0.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/0.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/1.png b/front/public/images/small/enhancedlootbags/lootbag/1.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/1.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/10.png b/front/public/images/small/enhancedlootbags/lootbag/10.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/10.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/11.png b/front/public/images/small/enhancedlootbags/lootbag/11.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/11.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/12.png b/front/public/images/small/enhancedlootbags/lootbag/12.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/12.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/13.png b/front/public/images/small/enhancedlootbags/lootbag/13.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/13.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/14.png b/front/public/images/small/enhancedlootbags/lootbag/14.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/14.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/15.png b/front/public/images/small/enhancedlootbags/lootbag/15.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/15.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/16.png b/front/public/images/small/enhancedlootbags/lootbag/16.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/16.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/17.png b/front/public/images/small/enhancedlootbags/lootbag/17.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/17.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/18.png b/front/public/images/small/enhancedlootbags/lootbag/18.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/18.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/19.png b/front/public/images/small/enhancedlootbags/lootbag/19.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/19.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/2.png b/front/public/images/small/enhancedlootbags/lootbag/2.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/2.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/20.png b/front/public/images/small/enhancedlootbags/lootbag/20.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/20.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/21.png b/front/public/images/small/enhancedlootbags/lootbag/21.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/21.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/22.png b/front/public/images/small/enhancedlootbags/lootbag/22.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/22.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/23.png b/front/public/images/small/enhancedlootbags/lootbag/23.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/23.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/24.png b/front/public/images/small/enhancedlootbags/lootbag/24.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/24.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/25.png b/front/public/images/small/enhancedlootbags/lootbag/25.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/25.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/26.png b/front/public/images/small/enhancedlootbags/lootbag/26.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/26.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/27.png b/front/public/images/small/enhancedlootbags/lootbag/27.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/27.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/28.png b/front/public/images/small/enhancedlootbags/lootbag/28.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/28.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/29.png b/front/public/images/small/enhancedlootbags/lootbag/29.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/29.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/3.png b/front/public/images/small/enhancedlootbags/lootbag/3.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/3.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/30.png b/front/public/images/small/enhancedlootbags/lootbag/30.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/30.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/31.png b/front/public/images/small/enhancedlootbags/lootbag/31.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/31.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/32.png b/front/public/images/small/enhancedlootbags/lootbag/32.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/32.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/33.png b/front/public/images/small/enhancedlootbags/lootbag/33.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/33.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/34.png b/front/public/images/small/enhancedlootbags/lootbag/34.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/34.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/35.png b/front/public/images/small/enhancedlootbags/lootbag/35.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/35.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/36.png b/front/public/images/small/enhancedlootbags/lootbag/36.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/36.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/37.png b/front/public/images/small/enhancedlootbags/lootbag/37.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/37.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/38.png b/front/public/images/small/enhancedlootbags/lootbag/38.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/38.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/39.png b/front/public/images/small/enhancedlootbags/lootbag/39.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/39.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/4.png b/front/public/images/small/enhancedlootbags/lootbag/4.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/4.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/40.png b/front/public/images/small/enhancedlootbags/lootbag/40.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/40.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/41.png b/front/public/images/small/enhancedlootbags/lootbag/41.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/41.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/42.png b/front/public/images/small/enhancedlootbags/lootbag/42.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/42.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/43.png b/front/public/images/small/enhancedlootbags/lootbag/43.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/43.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/44.png b/front/public/images/small/enhancedlootbags/lootbag/44.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/44.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/45.png b/front/public/images/small/enhancedlootbags/lootbag/45.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/45.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/46.png b/front/public/images/small/enhancedlootbags/lootbag/46.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/46.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/47.png b/front/public/images/small/enhancedlootbags/lootbag/47.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/47.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/48.png b/front/public/images/small/enhancedlootbags/lootbag/48.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/48.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/49.png b/front/public/images/small/enhancedlootbags/lootbag/49.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/49.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/5.png b/front/public/images/small/enhancedlootbags/lootbag/5.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/5.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/50.png b/front/public/images/small/enhancedlootbags/lootbag/50.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/50.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/51.png b/front/public/images/small/enhancedlootbags/lootbag/51.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/51.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/52.png b/front/public/images/small/enhancedlootbags/lootbag/52.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/52.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/53.png b/front/public/images/small/enhancedlootbags/lootbag/53.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/53.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/54.png b/front/public/images/small/enhancedlootbags/lootbag/54.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/54.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/55.png b/front/public/images/small/enhancedlootbags/lootbag/55.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/55.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/56.png b/front/public/images/small/enhancedlootbags/lootbag/56.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/56.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/57.png b/front/public/images/small/enhancedlootbags/lootbag/57.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/57.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/58.png b/front/public/images/small/enhancedlootbags/lootbag/58.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/58.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/6.png b/front/public/images/small/enhancedlootbags/lootbag/6.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/6.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/7.png b/front/public/images/small/enhancedlootbags/lootbag/7.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/7.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/8.png b/front/public/images/small/enhancedlootbags/lootbag/8.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/8.png and /dev/null differ diff --git a/front/public/images/small/enhancedlootbags/lootbag/9.png b/front/public/images/small/enhancedlootbags/lootbag/9.png deleted file mode 100644 index fc5e17b84f..0000000000 Binary files a/front/public/images/small/enhancedlootbags/lootbag/9.png and /dev/null differ diff --git a/front/public/images/small/eternalsingularity/eternal_singularity/0.png b/front/public/images/small/eternalsingularity/eternal_singularity/0.png deleted file mode 100644 index e26da9710f..0000000000 Binary files a/front/public/images/small/eternalsingularity/eternal_singularity/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockAdditionalEldritchPortal/0.png b/front/public/images/small/gadomancy/BlockAdditionalEldritchPortal/0.png deleted file mode 100644 index c978e2f835..0000000000 Binary files a/front/public/images/small/gadomancy/BlockAdditionalEldritchPortal/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockArcaneDropper/0.png b/front/public/images/small/gadomancy/BlockArcaneDropper/0.png deleted file mode 100644 index 7878d2d09f..0000000000 Binary files a/front/public/images/small/gadomancy/BlockArcaneDropper/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockAuraPylon/0.png b/front/public/images/small/gadomancy/BlockAuraPylon/0.png deleted file mode 100644 index 8c57bea457..0000000000 Binary files a/front/public/images/small/gadomancy/BlockAuraPylon/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockAuraPylon/1.png b/front/public/images/small/gadomancy/BlockAuraPylon/1.png deleted file mode 100644 index 38fef084a6..0000000000 Binary files a/front/public/images/small/gadomancy/BlockAuraPylon/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockEssentiaCompressor/0.png b/front/public/images/small/gadomancy/BlockEssentiaCompressor/0.png deleted file mode 100644 index afb2c24d2b..0000000000 Binary files a/front/public/images/small/gadomancy/BlockEssentiaCompressor/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockExtendedNodeJar/0.png b/front/public/images/small/gadomancy/BlockExtendedNodeJar/0.png deleted file mode 100644 index 8800cb2934..0000000000 Binary files a/front/public/images/small/gadomancy/BlockExtendedNodeJar/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockInfusionClaw/0.png b/front/public/images/small/gadomancy/BlockInfusionClaw/0.png deleted file mode 100644 index 4af925037d..0000000000 Binary files a/front/public/images/small/gadomancy/BlockInfusionClaw/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockKnowledgeBook/0.png b/front/public/images/small/gadomancy/BlockKnowledgeBook/0.png deleted file mode 100644 index 6d22ef7a09..0000000000 Binary files a/front/public/images/small/gadomancy/BlockKnowledgeBook/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockNodeManipulator/5.png b/front/public/images/small/gadomancy/BlockNodeManipulator/5.png deleted file mode 100644 index 4732c64e7f..0000000000 Binary files a/front/public/images/small/gadomancy/BlockNodeManipulator/5.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockRemoteJar/0.png b/front/public/images/small/gadomancy/BlockRemoteJar/0.png deleted file mode 100644 index b25c9c8657..0000000000 Binary files a/front/public/images/small/gadomancy/BlockRemoteJar/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStickyJar/0.png b/front/public/images/small/gadomancy/BlockStickyJar/0.png deleted file mode 100644 index 0e6e2fa32e..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStickyJar/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStickyJar/1.png b/front/public/images/small/gadomancy/BlockStickyJar/1.png deleted file mode 100644 index 0e6e2fa32e..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStickyJar/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStickyJar/3.png b/front/public/images/small/gadomancy/BlockStickyJar/3.png deleted file mode 100644 index 0e6e2fa32e..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStickyJar/3.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStoneMachine/0.png b/front/public/images/small/gadomancy/BlockStoneMachine/0.png deleted file mode 100644 index 8f6f6f274c..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStoneMachine/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStoneMachine/1.png b/front/public/images/small/gadomancy/BlockStoneMachine/1.png deleted file mode 100644 index bac9c4e25b..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStoneMachine/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStoneMachine/2.png b/front/public/images/small/gadomancy/BlockStoneMachine/2.png deleted file mode 100644 index 34db9163dd..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStoneMachine/2.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStoneMachine/3.png b/front/public/images/small/gadomancy/BlockStoneMachine/3.png deleted file mode 100644 index a8fad52536..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStoneMachine/3.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/BlockStoneMachine/4.png b/front/public/images/small/gadomancy/BlockStoneMachine/4.png deleted file mode 100644 index 83c8df43f5..0000000000 Binary files a/front/public/images/small/gadomancy/BlockStoneMachine/4.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemArcanePackage/0.png b/front/public/images/small/gadomancy/ItemArcanePackage/0.png deleted file mode 100644 index 1bb7456438..0000000000 Binary files a/front/public/images/small/gadomancy/ItemArcanePackage/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemArcanePackage/1.png b/front/public/images/small/gadomancy/ItemArcanePackage/1.png deleted file mode 100644 index 5d9eeb799d..0000000000 Binary files a/front/public/images/small/gadomancy/ItemArcanePackage/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemArcanePackage/2.png b/front/public/images/small/gadomancy/ItemArcanePackage/2.png deleted file mode 100644 index e3ca7916ae..0000000000 Binary files a/front/public/images/small/gadomancy/ItemArcanePackage/2.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemArcanePackage/3.png b/front/public/images/small/gadomancy/ItemArcanePackage/3.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/gadomancy/ItemArcanePackage/3.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemAuraCore/0.png b/front/public/images/small/gadomancy/ItemAuraCore/0.png deleted file mode 100644 index a3b29b0d79..0000000000 Binary files a/front/public/images/small/gadomancy/ItemAuraCore/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemAuraCore/1.png b/front/public/images/small/gadomancy/ItemAuraCore/1.png deleted file mode 100644 index 08bb1c01ee..0000000000 Binary files a/front/public/images/small/gadomancy/ItemAuraCore/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemAuraCore/2.png b/front/public/images/small/gadomancy/ItemAuraCore/2.png deleted file mode 100644 index 6b4d26d92a..0000000000 Binary files a/front/public/images/small/gadomancy/ItemAuraCore/2.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemAuraCore/3.png b/front/public/images/small/gadomancy/ItemAuraCore/3.png deleted file mode 100644 index d377b198f7..0000000000 Binary files a/front/public/images/small/gadomancy/ItemAuraCore/3.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemAuraCore/4.png b/front/public/images/small/gadomancy/ItemAuraCore/4.png deleted file mode 100644 index 549e7e1baf..0000000000 Binary files a/front/public/images/small/gadomancy/ItemAuraCore/4.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemAuraCore/5.png b/front/public/images/small/gadomancy/ItemAuraCore/5.png deleted file mode 100644 index 847ae5cb9b..0000000000 Binary files a/front/public/images/small/gadomancy/ItemAuraCore/5.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemAuraCore/6.png b/front/public/images/small/gadomancy/ItemAuraCore/6.png deleted file mode 100644 index 01532d5f70..0000000000 Binary files a/front/public/images/small/gadomancy/ItemAuraCore/6.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemCreativeNode/0.png b/front/public/images/small/gadomancy/ItemCreativeNode/0.png deleted file mode 100644 index e4252f66bf..0000000000 Binary files a/front/public/images/small/gadomancy/ItemCreativeNode/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemCreativeNode/1.png b/front/public/images/small/gadomancy/ItemCreativeNode/1.png deleted file mode 100644 index 60a9d4ed19..0000000000 Binary files a/front/public/images/small/gadomancy/ItemCreativeNode/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemCreativeNode/2.png b/front/public/images/small/gadomancy/ItemCreativeNode/2.png deleted file mode 100644 index abcf1de021..0000000000 Binary files a/front/public/images/small/gadomancy/ItemCreativeNode/2.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemCreativeNode/3.png b/front/public/images/small/gadomancy/ItemCreativeNode/3.png deleted file mode 100644 index ecd7c5e58e..0000000000 Binary files a/front/public/images/small/gadomancy/ItemCreativeNode/3.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemCreativeNode/4.png b/front/public/images/small/gadomancy/ItemCreativeNode/4.png deleted file mode 100644 index 3521c460ee..0000000000 Binary files a/front/public/images/small/gadomancy/ItemCreativeNode/4.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemCreativeNode/5.png b/front/public/images/small/gadomancy/ItemCreativeNode/5.png deleted file mode 100644 index 0c36dd806a..0000000000 Binary files a/front/public/images/small/gadomancy/ItemCreativeNode/5.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemElement/0.png b/front/public/images/small/gadomancy/ItemElement/0.png deleted file mode 100644 index 3eefc23109..0000000000 Binary files a/front/public/images/small/gadomancy/ItemElement/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemEtherealFamiliar/0.png b/front/public/images/small/gadomancy/ItemEtherealFamiliar/0.png deleted file mode 100644 index c56019d7ac..0000000000 Binary files a/front/public/images/small/gadomancy/ItemEtherealFamiliar/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemExtendedNodeJar/0.png b/front/public/images/small/gadomancy/ItemExtendedNodeJar/0.png deleted file mode 100644 index 1843ef75ce..0000000000 Binary files a/front/public/images/small/gadomancy/ItemExtendedNodeJar/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/0.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/0.png deleted file mode 100644 index 5ff0ea196d..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/1.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/1.png deleted file mode 100644 index 07d5595703..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/2.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/2.png deleted file mode 100644 index 86401a8c9c..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/2.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/3.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/3.png deleted file mode 100644 index 028c5600c0..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/3.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/4.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/4.png deleted file mode 100644 index 42c61b1add..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/4.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/5.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/5.png deleted file mode 100644 index f8965088e0..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/5.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/6.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/6.png deleted file mode 100644 index 8931439b57..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/6.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/7.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/7.png deleted file mode 100644 index 44de2fc598..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/7.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/8.png b/front/public/images/small/gadomancy/ItemFakeGolemPlacer/8.png deleted file mode 100644 index 3f2294934e..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeGolemPlacer/8.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFakeModIcon/0.png b/front/public/images/small/gadomancy/ItemFakeModIcon/0.png deleted file mode 100644 index f5153c3e6a..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFakeModIcon/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemFamiliar/0.png b/front/public/images/small/gadomancy/ItemFamiliar/0.png deleted file mode 100644 index f5153c3e6a..0000000000 Binary files a/front/public/images/small/gadomancy/ItemFamiliar/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemGolemCoreBreak/0.png b/front/public/images/small/gadomancy/ItemGolemCoreBreak/0.png deleted file mode 100644 index 15f85cc892..0000000000 Binary files a/front/public/images/small/gadomancy/ItemGolemCoreBreak/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemGolemCoreBreak/1.png b/front/public/images/small/gadomancy/ItemGolemCoreBreak/1.png deleted file mode 100644 index 0ee410868f..0000000000 Binary files a/front/public/images/small/gadomancy/ItemGolemCoreBreak/1.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/ItemTransformationFocus/0.png b/front/public/images/small/gadomancy/ItemTransformationFocus/0.png deleted file mode 100644 index 712b6e82f5..0000000000 Binary files a/front/public/images/small/gadomancy/ItemTransformationFocus/0.png and /dev/null differ diff --git a/front/public/images/small/gadomancy/itemSilverwoodGolemPlacer/8.png b/front/public/images/small/gadomancy/itemSilverwoodGolemPlacer/8.png deleted file mode 100644 index 3f2294934e..0000000000 Binary files a/front/public/images/small/gadomancy/itemSilverwoodGolemPlacer/8.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/0.png b/front/public/images/small/gendustry/ApiaryUpgrade/0.png deleted file mode 100644 index 42e4547ac6..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/1.png b/front/public/images/small/gendustry/ApiaryUpgrade/1.png deleted file mode 100644 index 08133fb3b3..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/1.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/10.png b/front/public/images/small/gendustry/ApiaryUpgrade/10.png deleted file mode 100644 index 64bb03a956..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/10.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/11.png b/front/public/images/small/gendustry/ApiaryUpgrade/11.png deleted file mode 100644 index 70d4cf9f14..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/11.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/12.png b/front/public/images/small/gendustry/ApiaryUpgrade/12.png deleted file mode 100644 index 38fd7f7571..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/12.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/13.png b/front/public/images/small/gendustry/ApiaryUpgrade/13.png deleted file mode 100644 index 476a11d8f2..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/13.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/14.png b/front/public/images/small/gendustry/ApiaryUpgrade/14.png deleted file mode 100644 index 1f44219465..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/14.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/15.png b/front/public/images/small/gendustry/ApiaryUpgrade/15.png deleted file mode 100644 index 9097c075ac..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/15.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/16.png b/front/public/images/small/gendustry/ApiaryUpgrade/16.png deleted file mode 100644 index 5f8bc70a3e..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/16.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/17.png b/front/public/images/small/gendustry/ApiaryUpgrade/17.png deleted file mode 100644 index 11dbeda018..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/17.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/18.png b/front/public/images/small/gendustry/ApiaryUpgrade/18.png deleted file mode 100644 index ba97768051..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/18.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/19.png b/front/public/images/small/gendustry/ApiaryUpgrade/19.png deleted file mode 100644 index 1a19f5ee08..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/19.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/2.png b/front/public/images/small/gendustry/ApiaryUpgrade/2.png deleted file mode 100644 index 9b96c3a200..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/2.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/20.png b/front/public/images/small/gendustry/ApiaryUpgrade/20.png deleted file mode 100644 index 9a6daa744f..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/20.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/21.png b/front/public/images/small/gendustry/ApiaryUpgrade/21.png deleted file mode 100644 index 547bc2cd37..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/21.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/22.png b/front/public/images/small/gendustry/ApiaryUpgrade/22.png deleted file mode 100644 index f68797a601..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/22.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/3.png b/front/public/images/small/gendustry/ApiaryUpgrade/3.png deleted file mode 100644 index bb7461fc4f..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/3.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/4.png b/front/public/images/small/gendustry/ApiaryUpgrade/4.png deleted file mode 100644 index 89e2173452..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/4.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/5.png b/front/public/images/small/gendustry/ApiaryUpgrade/5.png deleted file mode 100644 index 33e431efde..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/5.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/6.png b/front/public/images/small/gendustry/ApiaryUpgrade/6.png deleted file mode 100644 index d4f965fa18..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/6.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ApiaryUpgrade/7.png b/front/public/images/small/gendustry/ApiaryUpgrade/7.png deleted file mode 100644 index 1065554612..0000000000 Binary files a/front/public/images/small/gendustry/ApiaryUpgrade/7.png and /dev/null differ diff --git a/front/public/images/small/gendustry/BeeReceptacle/0.png b/front/public/images/small/gendustry/BeeReceptacle/0.png deleted file mode 100644 index a795746452..0000000000 Binary files a/front/public/images/small/gendustry/BeeReceptacle/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ClimateModule/0.png b/front/public/images/small/gendustry/ClimateModule/0.png deleted file mode 100644 index fea2259023..0000000000 Binary files a/front/public/images/small/gendustry/ClimateModule/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/EjectCover/0.png b/front/public/images/small/gendustry/EjectCover/0.png deleted file mode 100644 index d7e51ffc48..0000000000 Binary files a/front/public/images/small/gendustry/EjectCover/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/EnvProcessor/0.png b/front/public/images/small/gendustry/EnvProcessor/0.png deleted file mode 100644 index 60a5904bad..0000000000 Binary files a/front/public/images/small/gendustry/EnvProcessor/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ErrorSensorCover/0.png b/front/public/images/small/gendustry/ErrorSensorCover/0.png deleted file mode 100644 index 73077a2831..0000000000 Binary files a/front/public/images/small/gendustry/ErrorSensorCover/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Extractor/0.png b/front/public/images/small/gendustry/Extractor/0.png deleted file mode 100644 index dcbad5c1fc..0000000000 Binary files a/front/public/images/small/gendustry/Extractor/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/GeneSample/0.png b/front/public/images/small/gendustry/GeneSample/0.png deleted file mode 100644 index 645b725105..0000000000 Binary files a/front/public/images/small/gendustry/GeneSample/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/GeneSampleBlank/0.png b/front/public/images/small/gendustry/GeneSampleBlank/0.png deleted file mode 100644 index 56a8879598..0000000000 Binary files a/front/public/images/small/gendustry/GeneSampleBlank/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/GeneTemplate/0.png b/front/public/images/small/gendustry/GeneTemplate/0.png deleted file mode 100644 index aa0d6d50f1..0000000000 Binary files a/front/public/images/small/gendustry/GeneTemplate/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/GeneticsProcessor/0.png b/front/public/images/small/gendustry/GeneticsProcessor/0.png deleted file mode 100644 index 5bf8c13e6c..0000000000 Binary files a/front/public/images/small/gendustry/GeneticsProcessor/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HiveSpawnDebugger/0.png b/front/public/images/small/gendustry/HiveSpawnDebugger/0.png deleted file mode 100644 index 91fcd2f9a9..0000000000 Binary files a/front/public/images/small/gendustry/HiveSpawnDebugger/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/10.png b/front/public/images/small/gendustry/HoneyComb/10.png deleted file mode 100644 index ff306a3583..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/10.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/11.png b/front/public/images/small/gendustry/HoneyComb/11.png deleted file mode 100644 index ced8b1d59d..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/11.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/12.png b/front/public/images/small/gendustry/HoneyComb/12.png deleted file mode 100644 index 9f451ad13f..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/12.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/13.png b/front/public/images/small/gendustry/HoneyComb/13.png deleted file mode 100644 index 436b136094..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/13.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/14.png b/front/public/images/small/gendustry/HoneyComb/14.png deleted file mode 100644 index ec388f8d85..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/14.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/15.png b/front/public/images/small/gendustry/HoneyComb/15.png deleted file mode 100644 index 447f69285a..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/15.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/16.png b/front/public/images/small/gendustry/HoneyComb/16.png deleted file mode 100644 index 6f048ec45d..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/16.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/17.png b/front/public/images/small/gendustry/HoneyComb/17.png deleted file mode 100644 index ac0521fafb..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/17.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/18.png b/front/public/images/small/gendustry/HoneyComb/18.png deleted file mode 100644 index acd38e38dd..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/18.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/19.png b/front/public/images/small/gendustry/HoneyComb/19.png deleted file mode 100644 index a82ebad617..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/19.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/20.png b/front/public/images/small/gendustry/HoneyComb/20.png deleted file mode 100644 index 239ace05eb..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/20.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/21.png b/front/public/images/small/gendustry/HoneyComb/21.png deleted file mode 100644 index f39c4bdab1..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/21.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/22.png b/front/public/images/small/gendustry/HoneyComb/22.png deleted file mode 100644 index b2243cc701..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/22.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/23.png b/front/public/images/small/gendustry/HoneyComb/23.png deleted file mode 100644 index e489343568..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/23.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/24.png b/front/public/images/small/gendustry/HoneyComb/24.png deleted file mode 100644 index cb06748bef..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/24.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyComb/25.png b/front/public/images/small/gendustry/HoneyComb/25.png deleted file mode 100644 index c955cbbcb5..0000000000 Binary files a/front/public/images/small/gendustry/HoneyComb/25.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/10.png b/front/public/images/small/gendustry/HoneyDrop/10.png deleted file mode 100644 index 92ae043526..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/10.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/11.png b/front/public/images/small/gendustry/HoneyDrop/11.png deleted file mode 100644 index 2a8f98e991..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/11.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/12.png b/front/public/images/small/gendustry/HoneyDrop/12.png deleted file mode 100644 index ed12109d74..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/12.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/13.png b/front/public/images/small/gendustry/HoneyDrop/13.png deleted file mode 100644 index f8e6866c33..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/13.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/14.png b/front/public/images/small/gendustry/HoneyDrop/14.png deleted file mode 100644 index d7c787e113..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/14.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/15.png b/front/public/images/small/gendustry/HoneyDrop/15.png deleted file mode 100644 index b61af5273c..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/15.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/16.png b/front/public/images/small/gendustry/HoneyDrop/16.png deleted file mode 100644 index d88255ff6e..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/16.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/17.png b/front/public/images/small/gendustry/HoneyDrop/17.png deleted file mode 100644 index 9a12555a24..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/17.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/18.png b/front/public/images/small/gendustry/HoneyDrop/18.png deleted file mode 100644 index 1261897437..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/18.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/19.png b/front/public/images/small/gendustry/HoneyDrop/19.png deleted file mode 100644 index d6bde05208..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/19.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/20.png b/front/public/images/small/gendustry/HoneyDrop/20.png deleted file mode 100644 index 6654e915fd..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/20.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/21.png b/front/public/images/small/gendustry/HoneyDrop/21.png deleted file mode 100644 index 1527262cd4..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/21.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/22.png b/front/public/images/small/gendustry/HoneyDrop/22.png deleted file mode 100644 index 02ceff1aed..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/22.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/23.png b/front/public/images/small/gendustry/HoneyDrop/23.png deleted file mode 100644 index c5813f2bc0..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/23.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/24.png b/front/public/images/small/gendustry/HoneyDrop/24.png deleted file mode 100644 index 9fe0acdca9..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/24.png and /dev/null differ diff --git a/front/public/images/small/gendustry/HoneyDrop/25.png b/front/public/images/small/gendustry/HoneyDrop/25.png deleted file mode 100644 index 6ac385d13d..0000000000 Binary files a/front/public/images/small/gendustry/HoneyDrop/25.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ImportCover/0.png b/front/public/images/small/gendustry/ImportCover/0.png deleted file mode 100644 index 6227585e1c..0000000000 Binary files a/front/public/images/small/gendustry/ImportCover/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Imprinter/0.png b/front/public/images/small/gendustry/Imprinter/0.png deleted file mode 100644 index 2e4af85702..0000000000 Binary files a/front/public/images/small/gendustry/Imprinter/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/IndustrialApiary/0.png b/front/public/images/small/gendustry/IndustrialApiary/0.png deleted file mode 100644 index f0210c9c0b..0000000000 Binary files a/front/public/images/small/gendustry/IndustrialApiary/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/IndustrialGrafter/0.png b/front/public/images/small/gendustry/IndustrialGrafter/0.png deleted file mode 100644 index da03b8b985..0000000000 Binary files a/front/public/images/small/gendustry/IndustrialGrafter/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/IndustrialGrafter/1.png b/front/public/images/small/gendustry/IndustrialGrafter/1.png deleted file mode 100644 index da03b8b985..0000000000 Binary files a/front/public/images/small/gendustry/IndustrialGrafter/1.png and /dev/null differ diff --git a/front/public/images/small/gendustry/IndustrialScoop/0.png b/front/public/images/small/gendustry/IndustrialScoop/0.png deleted file mode 100644 index 3c3564b129..0000000000 Binary files a/front/public/images/small/gendustry/IndustrialScoop/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/IndustrialScoop/1.png b/front/public/images/small/gendustry/IndustrialScoop/1.png deleted file mode 100644 index 3c3564b129..0000000000 Binary files a/front/public/images/small/gendustry/IndustrialScoop/1.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Labware/0.png b/front/public/images/small/gendustry/Labware/0.png deleted file mode 100644 index 7fd68ef8f1..0000000000 Binary files a/front/public/images/small/gendustry/Labware/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/LiquidDNABucket/0.png b/front/public/images/small/gendustry/LiquidDNABucket/0.png deleted file mode 100644 index 80a6392c79..0000000000 Binary files a/front/public/images/small/gendustry/LiquidDNABucket/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/LiquidDNACan/0.png b/front/public/images/small/gendustry/LiquidDNACan/0.png deleted file mode 100644 index 5254346ea8..0000000000 Binary files a/front/public/images/small/gendustry/LiquidDNACan/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Liquifier/0.png b/front/public/images/small/gendustry/Liquifier/0.png deleted file mode 100644 index 78243ebc09..0000000000 Binary files a/front/public/images/small/gendustry/Liquifier/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/MutagenBucket/0.png b/front/public/images/small/gendustry/MutagenBucket/0.png deleted file mode 100644 index 12fd25d927..0000000000 Binary files a/front/public/images/small/gendustry/MutagenBucket/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/MutagenCan/0.png b/front/public/images/small/gendustry/MutagenCan/0.png deleted file mode 100644 index 70186c2ce4..0000000000 Binary files a/front/public/images/small/gendustry/MutagenCan/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/MutagenProducer/0.png b/front/public/images/small/gendustry/MutagenProducer/0.png deleted file mode 100644 index 49f3455e67..0000000000 Binary files a/front/public/images/small/gendustry/MutagenProducer/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/MutagenTank/0.png b/front/public/images/small/gendustry/MutagenTank/0.png deleted file mode 100644 index c4fa2944af..0000000000 Binary files a/front/public/images/small/gendustry/MutagenTank/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Mutatron/0.png b/front/public/images/small/gendustry/Mutatron/0.png deleted file mode 100644 index d9303e8968..0000000000 Binary files a/front/public/images/small/gendustry/Mutatron/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/MutatronAdv/0.png b/front/public/images/small/gendustry/MutatronAdv/0.png deleted file mode 100644 index 8b992f9505..0000000000 Binary files a/front/public/images/small/gendustry/MutatronAdv/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/PollenKit/0.png b/front/public/images/small/gendustry/PollenKit/0.png deleted file mode 100644 index a0f6c331a5..0000000000 Binary files a/front/public/images/small/gendustry/PollenKit/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/PowerModule/0.png b/front/public/images/small/gendustry/PowerModule/0.png deleted file mode 100644 index b6ce4126b0..0000000000 Binary files a/front/public/images/small/gendustry/PowerModule/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ProteinBucket/0.png b/front/public/images/small/gendustry/ProteinBucket/0.png deleted file mode 100644 index 95e613ab59..0000000000 Binary files a/front/public/images/small/gendustry/ProteinBucket/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/ProteinCan/0.png b/front/public/images/small/gendustry/ProteinCan/0.png deleted file mode 100644 index ded57219e1..0000000000 Binary files a/front/public/images/small/gendustry/ProteinCan/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Replicator/0.png b/front/public/images/small/gendustry/Replicator/0.png deleted file mode 100644 index 1c0533dea7..0000000000 Binary files a/front/public/images/small/gendustry/Replicator/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Sampler/0.png b/front/public/images/small/gendustry/Sampler/0.png deleted file mode 100644 index d107c465fd..0000000000 Binary files a/front/public/images/small/gendustry/Sampler/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Transposer/0.png b/front/public/images/small/gendustry/Transposer/0.png deleted file mode 100644 index 2d1b3ac42b..0000000000 Binary files a/front/public/images/small/gendustry/Transposer/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/UpgradeFrame/0.png b/front/public/images/small/gendustry/UpgradeFrame/0.png deleted file mode 100644 index 1ece89f284..0000000000 Binary files a/front/public/images/small/gendustry/UpgradeFrame/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/Waste/0.png b/front/public/images/small/gendustry/Waste/0.png deleted file mode 100644 index 4e32d5edbe..0000000000 Binary files a/front/public/images/small/gendustry/Waste/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/fluid.LiquidDNA/0.png b/front/public/images/small/gendustry/fluid.LiquidDNA/0.png deleted file mode 100644 index 852da703f0..0000000000 Binary files a/front/public/images/small/gendustry/fluid.LiquidDNA/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/fluid.Mutagen/0.png b/front/public/images/small/gendustry/fluid.Mutagen/0.png deleted file mode 100644 index 08908b78ab..0000000000 Binary files a/front/public/images/small/gendustry/fluid.Mutagen/0.png and /dev/null differ diff --git a/front/public/images/small/gendustry/fluid.Protein/0.png b/front/public/images/small/gendustry/fluid.Protein/0.png deleted file mode 100644 index 9efad4af00..0000000000 Binary files a/front/public/images/small/gendustry/fluid.Protein/0.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/0.png b/front/public/images/small/ggfab/gt.ggfab.d1/0.png deleted file mode 100644 index 21050cf7b7..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/0.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/1.png b/front/public/images/small/ggfab/gt.ggfab.d1/1.png deleted file mode 100644 index 2f0e8ca23f..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/1.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/2.png b/front/public/images/small/ggfab/gt.ggfab.d1/2.png deleted file mode 100644 index 4ce5b4b677..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/2.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/3.png b/front/public/images/small/ggfab/gt.ggfab.d1/3.png deleted file mode 100644 index 65da275ba9..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/3.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/30.png b/front/public/images/small/ggfab/gt.ggfab.d1/30.png deleted file mode 100644 index f80577ddbf..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/30.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/31.png b/front/public/images/small/ggfab/gt.ggfab.d1/31.png deleted file mode 100644 index 65c0329198..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/31.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/32.png b/front/public/images/small/ggfab/gt.ggfab.d1/32.png deleted file mode 100644 index 686a5382b1..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/32.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/33.png b/front/public/images/small/ggfab/gt.ggfab.d1/33.png deleted file mode 100644 index 1f7c15a4fb..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/33.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/34.png b/front/public/images/small/ggfab/gt.ggfab.d1/34.png deleted file mode 100644 index 9ac3113da9..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/34.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/35.png b/front/public/images/small/ggfab/gt.ggfab.d1/35.png deleted file mode 100644 index 0f82f0c613..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/35.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/36.png b/front/public/images/small/ggfab/gt.ggfab.d1/36.png deleted file mode 100644 index ce57996150..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/36.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/4.png b/front/public/images/small/ggfab/gt.ggfab.d1/4.png deleted file mode 100644 index 1aa0abfdcf..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/4.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/5.png b/front/public/images/small/ggfab/gt.ggfab.d1/5.png deleted file mode 100644 index 846f861168..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/5.png and /dev/null differ diff --git a/front/public/images/small/ggfab/gt.ggfab.d1/6.png b/front/public/images/small/ggfab/gt.ggfab.d1/6.png deleted file mode 100644 index 6d85196f13..0000000000 Binary files a/front/public/images/small/ggfab/gt.ggfab.d1/6.png and /dev/null differ diff --git a/front/public/images/small/gravisuiteneo/epicLappack/1.png b/front/public/images/small/gravisuiteneo/epicLappack/1.png deleted file mode 100644 index 750ab1bb85..0000000000 Binary files a/front/public/images/small/gravisuiteneo/epicLappack/1.png and /dev/null differ diff --git a/front/public/images/small/gravisuiteneo/epicLappack/27.png b/front/public/images/small/gravisuiteneo/epicLappack/27.png deleted file mode 100644 index 750ab1bb85..0000000000 Binary files a/front/public/images/small/gravisuiteneo/epicLappack/27.png and /dev/null differ diff --git a/front/public/images/small/gravisuiteneo/itemPlasmaCell/27.png b/front/public/images/small/gravisuiteneo/itemPlasmaCell/27.png deleted file mode 100644 index dbc6a857c1..0000000000 Binary files a/front/public/images/small/gravisuiteneo/itemPlasmaCell/27.png and /dev/null differ diff --git a/front/public/images/small/gravisuiteneo/sonicLauncher/0.png b/front/public/images/small/gravisuiteneo/sonicLauncher/0.png deleted file mode 100644 index bd58b36cf6..0000000000 Binary files a/front/public/images/small/gravisuiteneo/sonicLauncher/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.1080k_Space_Coolantcell/0.png b/front/public/images/small/gregtech/gt.1080k_Space_Coolantcell/0.png deleted file mode 100644 index 622add8bdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.1080k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.180k_Helium_Coolantcell/0.png b/front/public/images/small/gregtech/gt.180k_Helium_Coolantcell/0.png deleted file mode 100644 index b0b986ee53..0000000000 Binary files a/front/public/images/small/gregtech/gt.180k_Helium_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.180k_NaK_Coolantcell/0.png b/front/public/images/small/gregtech/gt.180k_NaK_Coolantcell/0.png deleted file mode 100644 index b8e1813a65..0000000000 Binary files a/front/public/images/small/gregtech/gt.180k_NaK_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.180k_Space_Coolantcell/0.png b/front/public/images/small/gregtech/gt.180k_Space_Coolantcell/0.png deleted file mode 100644 index 35dab6c1d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.180k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.360k_Helium_Coolantcell/0.png b/front/public/images/small/gregtech/gt.360k_Helium_Coolantcell/0.png deleted file mode 100644 index c94b612d50..0000000000 Binary files a/front/public/images/small/gregtech/gt.360k_Helium_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.360k_NaK_Coolantcell/0.png b/front/public/images/small/gregtech/gt.360k_NaK_Coolantcell/0.png deleted file mode 100644 index f924aee0bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.360k_NaK_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.360k_Space_Coolantcell/0.png b/front/public/images/small/gregtech/gt.360k_Space_Coolantcell/0.png deleted file mode 100644 index 735dba65b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.360k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.540k_Space_Coolantcell/0.png b/front/public/images/small/gregtech/gt.540k_Space_Coolantcell/0.png deleted file mode 100644 index 7db2896e43..0000000000 Binary files a/front/public/images/small/gregtech/gt.540k_Space_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.60k_Helium_Coolantcell/0.png b/front/public/images/small/gregtech/gt.60k_Helium_Coolantcell/0.png deleted file mode 100644 index c58bbbced4..0000000000 Binary files a/front/public/images/small/gregtech/gt.60k_Helium_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.60k_NaK_Coolantcell/0.png b/front/public/images/small/gregtech/gt.60k_NaK_Coolantcell/0.png deleted file mode 100644 index 9fa2edc470..0000000000 Binary files a/front/public/images/small/gregtech/gt.60k_NaK_Coolantcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Double_MNqCell/0.png b/front/public/images/small/gregtech/gt.Double_MNqCell/0.png deleted file mode 100644 index cd3be9bd6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.Double_MNqCell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Double_MNqCellDep/0.png b/front/public/images/small/gregtech/gt.Double_MNqCellDep/0.png deleted file mode 100644 index a1f5747878..0000000000 Binary files a/front/public/images/small/gregtech/gt.Double_MNqCellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Double_Naquadahcell/0.png b/front/public/images/small/gregtech/gt.Double_Naquadahcell/0.png deleted file mode 100644 index 6e62acb366..0000000000 Binary files a/front/public/images/small/gregtech/gt.Double_Naquadahcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Double_NaquadahcellDep/0.png b/front/public/images/small/gregtech/gt.Double_NaquadahcellDep/0.png deleted file mode 100644 index c528061dc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.Double_NaquadahcellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Double_Thoriumcell/0.png b/front/public/images/small/gregtech/gt.Double_Thoriumcell/0.png deleted file mode 100644 index d0ddc43682..0000000000 Binary files a/front/public/images/small/gregtech/gt.Double_Thoriumcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Double_ThoriumcellDep/0.png b/front/public/images/small/gregtech/gt.Double_ThoriumcellDep/0.png deleted file mode 100644 index d0ddc43682..0000000000 Binary files a/front/public/images/small/gregtech/gt.Double_ThoriumcellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/0.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/0.png deleted file mode 100644 index c4f4e86e7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/1.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/1.png deleted file mode 100644 index c4f4e86e7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/10.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/10.png deleted file mode 100644 index 230531b36b..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/11.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/11.png deleted file mode 100644 index 70d1ad59cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/12.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/12.png deleted file mode 100644 index 217c3c0725..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/13.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/13.png deleted file mode 100644 index e738d0fe28..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/14.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/14.png deleted file mode 100644 index 4ea459f081..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/15.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/15.png deleted file mode 100644 index 4ed7ae790b..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/2.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/2.png deleted file mode 100644 index c34dbdf282..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/3.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/3.png deleted file mode 100644 index 92231459c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/4.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/4.png deleted file mode 100644 index f197e964c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/5.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/5.png deleted file mode 100644 index e4358a78c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/6.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/6.png deleted file mode 100644 index 3cee00346e..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/7.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/7.png deleted file mode 100644 index 99e207ae17..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/8.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/8.png deleted file mode 100644 index b3e285f98f..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/9.png b/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/9.png deleted file mode 100644 index 6c01260849..0000000000 Binary files a/front/public/images/small/gregtech/gt.GregTech_FluidDisplay/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.MNqCell/0.png b/front/public/images/small/gregtech/gt.MNqCell/0.png deleted file mode 100644 index ab3643b375..0000000000 Binary files a/front/public/images/small/gregtech/gt.MNqCell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.MNqCellDep/0.png b/front/public/images/small/gregtech/gt.MNqCellDep/0.png deleted file mode 100644 index a50992e3bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.MNqCellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Naquadahcell/0.png b/front/public/images/small/gregtech/gt.Naquadahcell/0.png deleted file mode 100644 index 0b996990f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.Naquadahcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.NaquadahcellDep/0.png b/front/public/images/small/gregtech/gt.NaquadahcellDep/0.png deleted file mode 100644 index 770ced8c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.NaquadahcellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Quad_MNqCell/0.png b/front/public/images/small/gregtech/gt.Quad_MNqCell/0.png deleted file mode 100644 index da91af0d4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.Quad_MNqCell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Quad_MNqCellDep/0.png b/front/public/images/small/gregtech/gt.Quad_MNqCellDep/0.png deleted file mode 100644 index c9c62fbd04..0000000000 Binary files a/front/public/images/small/gregtech/gt.Quad_MNqCellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Quad_Naquadahcell/0.png b/front/public/images/small/gregtech/gt.Quad_Naquadahcell/0.png deleted file mode 100644 index dce1b47597..0000000000 Binary files a/front/public/images/small/gregtech/gt.Quad_Naquadahcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Quad_NaquadahcellDep/0.png b/front/public/images/small/gregtech/gt.Quad_NaquadahcellDep/0.png deleted file mode 100644 index b1655144f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.Quad_NaquadahcellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Quad_Thoriumcell/0.png b/front/public/images/small/gregtech/gt.Quad_Thoriumcell/0.png deleted file mode 100644 index 90590a2668..0000000000 Binary files a/front/public/images/small/gregtech/gt.Quad_Thoriumcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Quad_ThoriumcellDep/0.png b/front/public/images/small/gregtech/gt.Quad_ThoriumcellDep/0.png deleted file mode 100644 index 90590a2668..0000000000 Binary files a/front/public/images/small/gregtech/gt.Quad_ThoriumcellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Thoriumcell/0.png b/front/public/images/small/gregtech/gt.Thoriumcell/0.png deleted file mode 100644 index 96e8ca2139..0000000000 Binary files a/front/public/images/small/gregtech/gt.Thoriumcell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.ThoriumcellDep/0.png b/front/public/images/small/gregtech/gt.ThoriumcellDep/0.png deleted file mode 100644 index 96e8ca2139..0000000000 Binary files a/front/public/images/small/gregtech/gt.ThoriumcellDep/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.Volumetric_Flask/0.png b/front/public/images/small/gregtech/gt.Volumetric_Flask/0.png deleted file mode 100644 index 111090bd10..0000000000 Binary files a/front/public/images/small/gregtech/gt.Volumetric_Flask/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.advancedsensorcard/0.png b/front/public/images/small/gregtech/gt.advancedsensorcard/0.png deleted file mode 100644 index 2405733c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.advancedsensorcard/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.block.longdistancepipe/0.png b/front/public/images/small/gregtech/gt.block.longdistancepipe/0.png deleted file mode 100644 index 1a794cbe0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.block.longdistancepipe/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.block.longdistancepipe/1.png b/front/public/images/small/gregtech/gt.block.longdistancepipe/1.png deleted file mode 100644 index 105d073467..0000000000 Binary files a/front/public/images/small/gregtech/gt.block.longdistancepipe/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/0.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/0.png deleted file mode 100644 index 94c13afad7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/1.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/1.png deleted file mode 100644 index b6db772898..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/10.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/10.png deleted file mode 100644 index f84ae43c9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/2.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/2.png deleted file mode 100644 index d3bf4a77ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/3.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/3.png deleted file mode 100644 index 55338b8512..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/4.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/4.png deleted file mode 100644 index a3f07aa2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/5.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/5.png deleted file mode 100644 index f83b69073a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/6.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/6.png deleted file mode 100644 index 921291a677..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/7.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/7.png deleted file mode 100644 index 6a91ff898a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/8.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/8.png deleted file mode 100644 index 2b64e261d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/9.png b/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/9.png deleted file mode 100644 index da235e64af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings.cyclotron_coils/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/0.png b/front/public/images/small/gregtech/gt.blockcasings/0.png deleted file mode 100644 index 5f2691d6c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/1.png b/front/public/images/small/gregtech/gt.blockcasings/1.png deleted file mode 100644 index 20aff84696..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/10.png b/front/public/images/small/gregtech/gt.blockcasings/10.png deleted file mode 100644 index ea7efacce4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/11.png b/front/public/images/small/gregtech/gt.blockcasings/11.png deleted file mode 100644 index cb8805e173..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/12.png b/front/public/images/small/gregtech/gt.blockcasings/12.png deleted file mode 100644 index 431f9af2eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/13.png b/front/public/images/small/gregtech/gt.blockcasings/13.png deleted file mode 100644 index 25b3b015c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/14.png b/front/public/images/small/gregtech/gt.blockcasings/14.png deleted file mode 100644 index 62b9397e09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/15.png b/front/public/images/small/gregtech/gt.blockcasings/15.png deleted file mode 100644 index 0f42a62b27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/2.png b/front/public/images/small/gregtech/gt.blockcasings/2.png deleted file mode 100644 index 37881be5b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/3.png b/front/public/images/small/gregtech/gt.blockcasings/3.png deleted file mode 100644 index c18caa0117..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/4.png b/front/public/images/small/gregtech/gt.blockcasings/4.png deleted file mode 100644 index 2a4ac724b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/5.png b/front/public/images/small/gregtech/gt.blockcasings/5.png deleted file mode 100644 index 805486e2dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/6.png b/front/public/images/small/gregtech/gt.blockcasings/6.png deleted file mode 100644 index 9c6e19ed30..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/7.png b/front/public/images/small/gregtech/gt.blockcasings/7.png deleted file mode 100644 index 59717ae1f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/8.png b/front/public/images/small/gregtech/gt.blockcasings/8.png deleted file mode 100644 index e18463f6c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings/9.png b/front/public/images/small/gregtech/gt.blockcasings/9.png deleted file mode 100644 index dd16044537..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/0.png b/front/public/images/small/gregtech/gt.blockcasings2/0.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/1.png b/front/public/images/small/gregtech/gt.blockcasings2/1.png deleted file mode 100644 index f530d81bf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/10.png b/front/public/images/small/gregtech/gt.blockcasings2/10.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/11.png b/front/public/images/small/gregtech/gt.blockcasings2/11.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/12.png b/front/public/images/small/gregtech/gt.blockcasings2/12.png deleted file mode 100644 index 2db55c008a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/13.png b/front/public/images/small/gregtech/gt.blockcasings2/13.png deleted file mode 100644 index f8ae3a85d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/14.png b/front/public/images/small/gregtech/gt.blockcasings2/14.png deleted file mode 100644 index 126d9c5252..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/15.png b/front/public/images/small/gregtech/gt.blockcasings2/15.png deleted file mode 100644 index 8fe1a2b8c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/2.png b/front/public/images/small/gregtech/gt.blockcasings2/2.png deleted file mode 100644 index 0cc75c58d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/3.png b/front/public/images/small/gregtech/gt.blockcasings2/3.png deleted file mode 100644 index 7d6112a6f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/4.png b/front/public/images/small/gregtech/gt.blockcasings2/4.png deleted file mode 100644 index c0b08d3ceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/5.png b/front/public/images/small/gregtech/gt.blockcasings2/5.png deleted file mode 100644 index 9abbf3bbde..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/6.png b/front/public/images/small/gregtech/gt.blockcasings2/6.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/7.png b/front/public/images/small/gregtech/gt.blockcasings2/7.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/8.png b/front/public/images/small/gregtech/gt.blockcasings2/8.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings2/9.png b/front/public/images/small/gregtech/gt.blockcasings2/9.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings2/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/0.png b/front/public/images/small/gregtech/gt.blockcasings3/0.png deleted file mode 100644 index 92da05a652..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/1.png b/front/public/images/small/gregtech/gt.blockcasings3/1.png deleted file mode 100644 index d11fd8755e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/10.png b/front/public/images/small/gregtech/gt.blockcasings3/10.png deleted file mode 100644 index ceeeca088a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/11.png b/front/public/images/small/gregtech/gt.blockcasings3/11.png deleted file mode 100644 index fd2590bc2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/12.png b/front/public/images/small/gregtech/gt.blockcasings3/12.png deleted file mode 100644 index d2f7ca64ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/13.png b/front/public/images/small/gregtech/gt.blockcasings3/13.png deleted file mode 100644 index 20a72fd99b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/14.png b/front/public/images/small/gregtech/gt.blockcasings3/14.png deleted file mode 100644 index 36f12b22e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/15.png b/front/public/images/small/gregtech/gt.blockcasings3/15.png deleted file mode 100644 index 371186cca5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/2.png b/front/public/images/small/gregtech/gt.blockcasings3/2.png deleted file mode 100644 index 463016be25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/3.png b/front/public/images/small/gregtech/gt.blockcasings3/3.png deleted file mode 100644 index e54f0317f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/4.png b/front/public/images/small/gregtech/gt.blockcasings3/4.png deleted file mode 100644 index bd5180acec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/5.png b/front/public/images/small/gregtech/gt.blockcasings3/5.png deleted file mode 100644 index 91df2d9ea1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/6.png b/front/public/images/small/gregtech/gt.blockcasings3/6.png deleted file mode 100644 index 1dc36a6cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/7.png b/front/public/images/small/gregtech/gt.blockcasings3/7.png deleted file mode 100644 index 898f1a0d37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/8.png b/front/public/images/small/gregtech/gt.blockcasings3/8.png deleted file mode 100644 index a2a515e642..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings3/9.png b/front/public/images/small/gregtech/gt.blockcasings3/9.png deleted file mode 100644 index 893b7c917d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings3/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/0.png b/front/public/images/small/gregtech/gt.blockcasings4/0.png deleted file mode 100644 index 344c81be18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/1.png b/front/public/images/small/gregtech/gt.blockcasings4/1.png deleted file mode 100644 index 24b96e3bfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/10.png b/front/public/images/small/gregtech/gt.blockcasings4/10.png deleted file mode 100644 index 24b96e3bfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/11.png b/front/public/images/small/gregtech/gt.blockcasings4/11.png deleted file mode 100644 index e2fbbc8f8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/12.png b/front/public/images/small/gregtech/gt.blockcasings4/12.png deleted file mode 100644 index 344c81be18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/13.png b/front/public/images/small/gregtech/gt.blockcasings4/13.png deleted file mode 100644 index eb8013c7df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/14.png b/front/public/images/small/gregtech/gt.blockcasings4/14.png deleted file mode 100644 index 717d546214..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/15.png b/front/public/images/small/gregtech/gt.blockcasings4/15.png deleted file mode 100644 index 19f3834458..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/2.png b/front/public/images/small/gregtech/gt.blockcasings4/2.png deleted file mode 100644 index e2fbbc8f8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/3.png b/front/public/images/small/gregtech/gt.blockcasings4/3.png deleted file mode 100644 index c2bc4e6b7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/6.png b/front/public/images/small/gregtech/gt.blockcasings4/6.png deleted file mode 100644 index 57eba6e675..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/7.png b/front/public/images/small/gregtech/gt.blockcasings4/7.png deleted file mode 100644 index d02ddb5657..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/8.png b/front/public/images/small/gregtech/gt.blockcasings4/8.png deleted file mode 100644 index cf69385327..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings4/9.png b/front/public/images/small/gregtech/gt.blockcasings4/9.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings4/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/0.png b/front/public/images/small/gregtech/gt.blockcasings5/0.png deleted file mode 100644 index 82b1377421..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/1.png b/front/public/images/small/gregtech/gt.blockcasings5/1.png deleted file mode 100644 index 594471a050..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/10.png b/front/public/images/small/gregtech/gt.blockcasings5/10.png deleted file mode 100644 index c308af8971..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/11.png b/front/public/images/small/gregtech/gt.blockcasings5/11.png deleted file mode 100644 index 85fd479437..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/12.png b/front/public/images/small/gregtech/gt.blockcasings5/12.png deleted file mode 100644 index 67b40d4df2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/13.png b/front/public/images/small/gregtech/gt.blockcasings5/13.png deleted file mode 100644 index 54a554bdee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/2.png b/front/public/images/small/gregtech/gt.blockcasings5/2.png deleted file mode 100644 index f0d71af7b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/3.png b/front/public/images/small/gregtech/gt.blockcasings5/3.png deleted file mode 100644 index 5c7c60faf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/4.png b/front/public/images/small/gregtech/gt.blockcasings5/4.png deleted file mode 100644 index eedf716b06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/5.png b/front/public/images/small/gregtech/gt.blockcasings5/5.png deleted file mode 100644 index ec64f19293..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/6.png b/front/public/images/small/gregtech/gt.blockcasings5/6.png deleted file mode 100644 index 470e273ba9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/7.png b/front/public/images/small/gregtech/gt.blockcasings5/7.png deleted file mode 100644 index 4e62f83fe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/8.png b/front/public/images/small/gregtech/gt.blockcasings5/8.png deleted file mode 100644 index b27ead2e79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings5/9.png b/front/public/images/small/gregtech/gt.blockcasings5/9.png deleted file mode 100644 index b055d8c836..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings5/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/0.png b/front/public/images/small/gregtech/gt.blockcasings6/0.png deleted file mode 100644 index 6beabe1ddf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/1.png b/front/public/images/small/gregtech/gt.blockcasings6/1.png deleted file mode 100644 index 0479817afd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/10.png b/front/public/images/small/gregtech/gt.blockcasings6/10.png deleted file mode 100644 index 8f94c9ee79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/11.png b/front/public/images/small/gregtech/gt.blockcasings6/11.png deleted file mode 100644 index f40d2a093a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/12.png b/front/public/images/small/gregtech/gt.blockcasings6/12.png deleted file mode 100644 index af4ac62f62..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/13.png b/front/public/images/small/gregtech/gt.blockcasings6/13.png deleted file mode 100644 index 12bb9e62bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/14.png b/front/public/images/small/gregtech/gt.blockcasings6/14.png deleted file mode 100644 index 45dfed29a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/2.png b/front/public/images/small/gregtech/gt.blockcasings6/2.png deleted file mode 100644 index d44a6f1491..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/3.png b/front/public/images/small/gregtech/gt.blockcasings6/3.png deleted file mode 100644 index d115989dbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/4.png b/front/public/images/small/gregtech/gt.blockcasings6/4.png deleted file mode 100644 index d910085c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/5.png b/front/public/images/small/gregtech/gt.blockcasings6/5.png deleted file mode 100644 index 6a6d0f5ed6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/6.png b/front/public/images/small/gregtech/gt.blockcasings6/6.png deleted file mode 100644 index f539c5d4a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/7.png b/front/public/images/small/gregtech/gt.blockcasings6/7.png deleted file mode 100644 index 0c533ad814..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/8.png b/front/public/images/small/gregtech/gt.blockcasings6/8.png deleted file mode 100644 index 3c9ac59944..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings6/9.png b/front/public/images/small/gregtech/gt.blockcasings6/9.png deleted file mode 100644 index ddfa4e54f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings6/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/0.png b/front/public/images/small/gregtech/gt.blockcasings8/0.png deleted file mode 100644 index 93c4037a00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/1.png b/front/public/images/small/gregtech/gt.blockcasings8/1.png deleted file mode 100644 index 6c129128de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/10.png b/front/public/images/small/gregtech/gt.blockcasings8/10.png deleted file mode 100644 index 585936eb9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/11.png b/front/public/images/small/gregtech/gt.blockcasings8/11.png deleted file mode 100644 index 69ef4e61de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/12.png b/front/public/images/small/gregtech/gt.blockcasings8/12.png deleted file mode 100644 index ebc0e712f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/13.png b/front/public/images/small/gregtech/gt.blockcasings8/13.png deleted file mode 100644 index 45337cddab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/14.png b/front/public/images/small/gregtech/gt.blockcasings8/14.png deleted file mode 100644 index e49c23af84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/2.png b/front/public/images/small/gregtech/gt.blockcasings8/2.png deleted file mode 100644 index 87f1f68999..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/3.png b/front/public/images/small/gregtech/gt.blockcasings8/3.png deleted file mode 100644 index 8565deeca2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/4.png b/front/public/images/small/gregtech/gt.blockcasings8/4.png deleted file mode 100644 index 9d3fbb12bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/5.png b/front/public/images/small/gregtech/gt.blockcasings8/5.png deleted file mode 100644 index 735f7d70c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/6.png b/front/public/images/small/gregtech/gt.blockcasings8/6.png deleted file mode 100644 index 4583e09fed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/7.png b/front/public/images/small/gregtech/gt.blockcasings8/7.png deleted file mode 100644 index ddae9dc879..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/8.png b/front/public/images/small/gregtech/gt.blockcasings8/8.png deleted file mode 100644 index c570319755..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings8/9.png b/front/public/images/small/gregtech/gt.blockcasings8/9.png deleted file mode 100644 index 0a0749d5fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings8/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings9/0.png b/front/public/images/small/gregtech/gt.blockcasings9/0.png deleted file mode 100644 index fe4c944c1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings9/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockcasings9/1.png b/front/public/images/small/gregtech/gt.blockcasings9/1.png deleted file mode 100644 index a9e410607a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockcasings9/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/0.png b/front/public/images/small/gregtech/gt.blockconcretes/0.png deleted file mode 100644 index f72903fd25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/1.png b/front/public/images/small/gregtech/gt.blockconcretes/1.png deleted file mode 100644 index 9afc76d37a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/10.png b/front/public/images/small/gregtech/gt.blockconcretes/10.png deleted file mode 100644 index eb603eef12..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/11.png b/front/public/images/small/gregtech/gt.blockconcretes/11.png deleted file mode 100644 index 9eba52c70a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/12.png b/front/public/images/small/gregtech/gt.blockconcretes/12.png deleted file mode 100644 index a95e4522f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/13.png b/front/public/images/small/gregtech/gt.blockconcretes/13.png deleted file mode 100644 index 9e52bee1fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/14.png b/front/public/images/small/gregtech/gt.blockconcretes/14.png deleted file mode 100644 index b7e6451313..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/15.png b/front/public/images/small/gregtech/gt.blockconcretes/15.png deleted file mode 100644 index 0f08565aee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/2.png b/front/public/images/small/gregtech/gt.blockconcretes/2.png deleted file mode 100644 index 2f5518dba3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/3.png b/front/public/images/small/gregtech/gt.blockconcretes/3.png deleted file mode 100644 index 24450a9f73..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/4.png b/front/public/images/small/gregtech/gt.blockconcretes/4.png deleted file mode 100644 index 6145d5e574..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/5.png b/front/public/images/small/gregtech/gt.blockconcretes/5.png deleted file mode 100644 index 88d9cdcce0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/6.png b/front/public/images/small/gregtech/gt.blockconcretes/6.png deleted file mode 100644 index 9f51fc2833..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/7.png b/front/public/images/small/gregtech/gt.blockconcretes/7.png deleted file mode 100644 index 413028da88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/8.png b/front/public/images/small/gregtech/gt.blockconcretes/8.png deleted file mode 100644 index e3ddbdb0dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockconcretes/9.png b/front/public/images/small/gregtech/gt.blockconcretes/9.png deleted file mode 100644 index abbc1fd6f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockconcretes/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/0.png b/front/public/images/small/gregtech/gt.blockgem1/0.png deleted file mode 100644 index 21f9ec533b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/1.png b/front/public/images/small/gregtech/gt.blockgem1/1.png deleted file mode 100644 index 5b09441955..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/10.png b/front/public/images/small/gregtech/gt.blockgem1/10.png deleted file mode 100644 index 2e430919e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/11.png b/front/public/images/small/gregtech/gt.blockgem1/11.png deleted file mode 100644 index da133770b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/12.png b/front/public/images/small/gregtech/gt.blockgem1/12.png deleted file mode 100644 index da133770b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/13.png b/front/public/images/small/gregtech/gt.blockgem1/13.png deleted file mode 100644 index 6a777264ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/14.png b/front/public/images/small/gregtech/gt.blockgem1/14.png deleted file mode 100644 index 7b68c9fd4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/15.png b/front/public/images/small/gregtech/gt.blockgem1/15.png deleted file mode 100644 index e136be4fee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/2.png b/front/public/images/small/gregtech/gt.blockgem1/2.png deleted file mode 100644 index ad97866d44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/3.png b/front/public/images/small/gregtech/gt.blockgem1/3.png deleted file mode 100644 index 3697e88a8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/4.png b/front/public/images/small/gregtech/gt.blockgem1/4.png deleted file mode 100644 index 91706a8567..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/5.png b/front/public/images/small/gregtech/gt.blockgem1/5.png deleted file mode 100644 index cc4bc35df8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/6.png b/front/public/images/small/gregtech/gt.blockgem1/6.png deleted file mode 100644 index df61697c4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/7.png b/front/public/images/small/gregtech/gt.blockgem1/7.png deleted file mode 100644 index 70edd9296b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/8.png b/front/public/images/small/gregtech/gt.blockgem1/8.png deleted file mode 100644 index 9aafeb5ffe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem1/9.png b/front/public/images/small/gregtech/gt.blockgem1/9.png deleted file mode 100644 index cfd339165d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem1/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/0.png b/front/public/images/small/gregtech/gt.blockgem2/0.png deleted file mode 100644 index d0755ddf2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/1.png b/front/public/images/small/gregtech/gt.blockgem2/1.png deleted file mode 100644 index d1900d48c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/10.png b/front/public/images/small/gregtech/gt.blockgem2/10.png deleted file mode 100644 index e136be4fee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/11.png b/front/public/images/small/gregtech/gt.blockgem2/11.png deleted file mode 100644 index cfd339165d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/12.png b/front/public/images/small/gregtech/gt.blockgem2/12.png deleted file mode 100644 index 8d7b49e53e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/13.png b/front/public/images/small/gregtech/gt.blockgem2/13.png deleted file mode 100644 index f6c156bb42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/14.png b/front/public/images/small/gregtech/gt.blockgem2/14.png deleted file mode 100644 index fcc2e833a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/15.png b/front/public/images/small/gregtech/gt.blockgem2/15.png deleted file mode 100644 index 3612f7eca8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/2.png b/front/public/images/small/gregtech/gt.blockgem2/2.png deleted file mode 100644 index d4bc262337..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/3.png b/front/public/images/small/gregtech/gt.blockgem2/3.png deleted file mode 100644 index 720ff2acf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/4.png b/front/public/images/small/gregtech/gt.blockgem2/4.png deleted file mode 100644 index a19457e190..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/5.png b/front/public/images/small/gregtech/gt.blockgem2/5.png deleted file mode 100644 index 91706a8567..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/6.png b/front/public/images/small/gregtech/gt.blockgem2/6.png deleted file mode 100644 index df61697c4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/7.png b/front/public/images/small/gregtech/gt.blockgem2/7.png deleted file mode 100644 index 9d11b1c1e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/8.png b/front/public/images/small/gregtech/gt.blockgem2/8.png deleted file mode 100644 index 1e738b98d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem2/9.png b/front/public/images/small/gregtech/gt.blockgem2/9.png deleted file mode 100644 index 4afc457264..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem2/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem3/0.png b/front/public/images/small/gregtech/gt.blockgem3/0.png deleted file mode 100644 index f23bf2b94d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem3/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem3/1.png b/front/public/images/small/gregtech/gt.blockgem3/1.png deleted file mode 100644 index 49020f850d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem3/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem3/2.png b/front/public/images/small/gregtech/gt.blockgem3/2.png deleted file mode 100644 index bd40430412..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem3/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem3/3.png b/front/public/images/small/gregtech/gt.blockgem3/3.png deleted file mode 100644 index df61697c4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem3/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem3/4.png b/front/public/images/small/gregtech/gt.blockgem3/4.png deleted file mode 100644 index d1900d48c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem3/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgem3/5.png b/front/public/images/small/gregtech/gt.blockgem3/5.png deleted file mode 100644 index 48f75601eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgem3/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/0.png b/front/public/images/small/gregtech/gt.blockgranites/0.png deleted file mode 100644 index 6dd2db3b7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/1.png b/front/public/images/small/gregtech/gt.blockgranites/1.png deleted file mode 100644 index a4b2f0b820..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/10.png b/front/public/images/small/gregtech/gt.blockgranites/10.png deleted file mode 100644 index 0c20e45f26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/11.png b/front/public/images/small/gregtech/gt.blockgranites/11.png deleted file mode 100644 index 859facd281..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/12.png b/front/public/images/small/gregtech/gt.blockgranites/12.png deleted file mode 100644 index 2e3f229660..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/13.png b/front/public/images/small/gregtech/gt.blockgranites/13.png deleted file mode 100644 index 498ac26bb2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/14.png b/front/public/images/small/gregtech/gt.blockgranites/14.png deleted file mode 100644 index e7788596ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/15.png b/front/public/images/small/gregtech/gt.blockgranites/15.png deleted file mode 100644 index 2a559fed9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/2.png b/front/public/images/small/gregtech/gt.blockgranites/2.png deleted file mode 100644 index 88ed5eda04..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/3.png b/front/public/images/small/gregtech/gt.blockgranites/3.png deleted file mode 100644 index b502093b0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/4.png b/front/public/images/small/gregtech/gt.blockgranites/4.png deleted file mode 100644 index 42f4e3f920..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/5.png b/front/public/images/small/gregtech/gt.blockgranites/5.png deleted file mode 100644 index 3effa5f34c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/6.png b/front/public/images/small/gregtech/gt.blockgranites/6.png deleted file mode 100644 index 593f75b026..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/7.png b/front/public/images/small/gregtech/gt.blockgranites/7.png deleted file mode 100644 index ce4888a41b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/8.png b/front/public/images/small/gregtech/gt.blockgranites/8.png deleted file mode 100644 index 3eccbf3ed7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockgranites/9.png b/front/public/images/small/gregtech/gt.blockgranites/9.png deleted file mode 100644 index 13e7426402..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockgranites/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1.png b/front/public/images/small/gregtech/gt.blockmachines/1.png deleted file mode 100644 index 86858a7960..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/10.png b/front/public/images/small/gregtech/gt.blockmachines/10.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/100.png b/front/public/images/small/gregtech/gt.blockmachines/100.png deleted file mode 100644 index 92a2bbecf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1000.png b/front/public/images/small/gregtech/gt.blockmachines/1000.png deleted file mode 100644 index edca9c4e25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1000.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1001.png b/front/public/images/small/gregtech/gt.blockmachines/1001.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1002.png b/front/public/images/small/gregtech/gt.blockmachines/1002.png deleted file mode 100644 index 9e98d7f26f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1003.png b/front/public/images/small/gregtech/gt.blockmachines/1003.png deleted file mode 100644 index edca9c4e25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1004.png b/front/public/images/small/gregtech/gt.blockmachines/1004.png deleted file mode 100644 index 2fc1c82199..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1005.png b/front/public/images/small/gregtech/gt.blockmachines/1005.png deleted file mode 100644 index fbc927c152..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1006.png b/front/public/images/small/gregtech/gt.blockmachines/1006.png deleted file mode 100644 index 68a33f8fb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/101.png b/front/public/images/small/gregtech/gt.blockmachines/101.png deleted file mode 100644 index 11a5de41c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/102.png b/front/public/images/small/gregtech/gt.blockmachines/102.png deleted file mode 100644 index 96453e9b79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1020.png b/front/public/images/small/gregtech/gt.blockmachines/1020.png deleted file mode 100644 index 0c79eceb53..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1021.png b/front/public/images/small/gregtech/gt.blockmachines/1021.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1022.png b/front/public/images/small/gregtech/gt.blockmachines/1022.png deleted file mode 100644 index 03de8c5f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1023.png b/front/public/images/small/gregtech/gt.blockmachines/1023.png deleted file mode 100644 index 565a6d3ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/103.png b/front/public/images/small/gregtech/gt.blockmachines/103.png deleted file mode 100644 index 9244e6cf79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/104.png b/front/public/images/small/gregtech/gt.blockmachines/104.png deleted file mode 100644 index efe149e773..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/105.png b/front/public/images/small/gregtech/gt.blockmachines/105.png deleted file mode 100644 index 863c62309d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/105.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/10500.png b/front/public/images/small/gregtech/gt.blockmachines/10500.png deleted file mode 100644 index 129aeccb92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/10500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/10501.png b/front/public/images/small/gregtech/gt.blockmachines/10501.png deleted file mode 100644 index 201b9c878c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/10501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/106.png b/front/public/images/small/gregtech/gt.blockmachines/106.png deleted file mode 100644 index bd422fc972..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/107.png b/front/public/images/small/gregtech/gt.blockmachines/107.png deleted file mode 100644 index e49efe3c13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/107.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/109.png b/front/public/images/small/gregtech/gt.blockmachines/109.png deleted file mode 100644 index 3a8561dfd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/109.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/11.png b/front/public/images/small/gregtech/gt.blockmachines/11.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/110.png b/front/public/images/small/gregtech/gt.blockmachines/110.png deleted file mode 100644 index 7feef2501c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/111.png b/front/public/images/small/gregtech/gt.blockmachines/111.png deleted file mode 100644 index c14a856f17..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1110.png b/front/public/images/small/gregtech/gt.blockmachines/1110.png deleted file mode 100644 index 756be6fc38..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1111.png b/front/public/images/small/gregtech/gt.blockmachines/1111.png deleted file mode 100644 index 6632edc8ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1112.png b/front/public/images/small/gregtech/gt.blockmachines/1112.png deleted file mode 100644 index bff0a2d9e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1113.png b/front/public/images/small/gregtech/gt.blockmachines/1113.png deleted file mode 100644 index bc7868215b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1113.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1114.png b/front/public/images/small/gregtech/gt.blockmachines/1114.png deleted file mode 100644 index 7ecd9553fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1115.png b/front/public/images/small/gregtech/gt.blockmachines/1115.png deleted file mode 100644 index 53d1ae1861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1115.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1116.png b/front/public/images/small/gregtech/gt.blockmachines/1116.png deleted file mode 100644 index 6f0322755c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1116.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1117.png b/front/public/images/small/gregtech/gt.blockmachines/1117.png deleted file mode 100644 index a594edaaf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1117.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1118.png b/front/public/images/small/gregtech/gt.blockmachines/1118.png deleted file mode 100644 index ce7cf2fef9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1118.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1119.png b/front/public/images/small/gregtech/gt.blockmachines/1119.png deleted file mode 100644 index 569db0b40b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1119.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/112.png b/front/public/images/small/gregtech/gt.blockmachines/112.png deleted file mode 100644 index 2b73200b71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1120.png b/front/public/images/small/gregtech/gt.blockmachines/1120.png deleted file mode 100644 index 53d1ae1861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1120.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1121.png b/front/public/images/small/gregtech/gt.blockmachines/1121.png deleted file mode 100644 index 6f0322755c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1121.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1122.png b/front/public/images/small/gregtech/gt.blockmachines/1122.png deleted file mode 100644 index a594edaaf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1122.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1123.png b/front/public/images/small/gregtech/gt.blockmachines/1123.png deleted file mode 100644 index b20f91d6a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1123.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1124.png b/front/public/images/small/gregtech/gt.blockmachines/1124.png deleted file mode 100644 index 1a69504e10..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1124.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1125.png b/front/public/images/small/gregtech/gt.blockmachines/1125.png deleted file mode 100644 index 092f4b71c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1125.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1126.png b/front/public/images/small/gregtech/gt.blockmachines/1126.png deleted file mode 100644 index 201b9c878c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1126.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1127.png b/front/public/images/small/gregtech/gt.blockmachines/1127.png deleted file mode 100644 index 76e4037837..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1127.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1128.png b/front/public/images/small/gregtech/gt.blockmachines/1128.png deleted file mode 100644 index 4bd94ef516..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1128.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1129.png b/front/public/images/small/gregtech/gt.blockmachines/1129.png deleted file mode 100644 index b1b5315ab9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/113.png b/front/public/images/small/gregtech/gt.blockmachines/113.png deleted file mode 100644 index d7803ee324..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/113.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1130.png b/front/public/images/small/gregtech/gt.blockmachines/1130.png deleted file mode 100644 index dc4d6766cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1131.png b/front/public/images/small/gregtech/gt.blockmachines/1131.png deleted file mode 100644 index 5778c761c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1132.png b/front/public/images/small/gregtech/gt.blockmachines/1132.png deleted file mode 100644 index 201b9c878c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1132.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1135.png b/front/public/images/small/gregtech/gt.blockmachines/1135.png deleted file mode 100644 index 3fa18d3624..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1135.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1136.png b/front/public/images/small/gregtech/gt.blockmachines/1136.png deleted file mode 100644 index 39afda97a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1136.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1137.png b/front/public/images/small/gregtech/gt.blockmachines/1137.png deleted file mode 100644 index 419ca55e70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1137.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/114.png b/front/public/images/small/gregtech/gt.blockmachines/114.png deleted file mode 100644 index eb9a36aca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1140.png b/front/public/images/small/gregtech/gt.blockmachines/1140.png deleted file mode 100644 index c2399913a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1140.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1141.png b/front/public/images/small/gregtech/gt.blockmachines/1141.png deleted file mode 100644 index 866994d6c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1142.png b/front/public/images/small/gregtech/gt.blockmachines/1142.png deleted file mode 100644 index ae74d3ce3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1142.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1143.png b/front/public/images/small/gregtech/gt.blockmachines/1143.png deleted file mode 100644 index 8359bb8cc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1144.png b/front/public/images/small/gregtech/gt.blockmachines/1144.png deleted file mode 100644 index 50f5e6c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1145.png b/front/public/images/small/gregtech/gt.blockmachines/1145.png deleted file mode 100644 index b889aa18f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1145.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1146.png b/front/public/images/small/gregtech/gt.blockmachines/1146.png deleted file mode 100644 index d8f4be88fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1146.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1147.png b/front/public/images/small/gregtech/gt.blockmachines/1147.png deleted file mode 100644 index 6401fe59c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1147.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1148.png b/front/public/images/small/gregtech/gt.blockmachines/1148.png deleted file mode 100644 index ef2f9d4ce7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1148.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1149.png b/front/public/images/small/gregtech/gt.blockmachines/1149.png deleted file mode 100644 index 5e71f03704..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1149.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/115.png b/front/public/images/small/gregtech/gt.blockmachines/115.png deleted file mode 100644 index 5eb4c7eaa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/115.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1150.png b/front/public/images/small/gregtech/gt.blockmachines/1150.png deleted file mode 100644 index ed21f6f5bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1151.png b/front/public/images/small/gregtech/gt.blockmachines/1151.png deleted file mode 100644 index 72a6620a50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1151.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1152.png b/front/public/images/small/gregtech/gt.blockmachines/1152.png deleted file mode 100644 index 7da3ec6b83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1152.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1153.png b/front/public/images/small/gregtech/gt.blockmachines/1153.png deleted file mode 100644 index 807167c565..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1153.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1154.png b/front/public/images/small/gregtech/gt.blockmachines/1154.png deleted file mode 100644 index 03de8c5f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1154.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1155.png b/front/public/images/small/gregtech/gt.blockmachines/1155.png deleted file mode 100644 index f7b2ce78bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1155.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1157.png b/front/public/images/small/gregtech/gt.blockmachines/1157.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1157.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1158.png b/front/public/images/small/gregtech/gt.blockmachines/1158.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1158.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1159.png b/front/public/images/small/gregtech/gt.blockmachines/1159.png deleted file mode 100644 index 4c930cfb0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1159.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/116.png b/front/public/images/small/gregtech/gt.blockmachines/116.png deleted file mode 100644 index 0660a9e4a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/116.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1160.png b/front/public/images/small/gregtech/gt.blockmachines/1160.png deleted file mode 100644 index 201b9c878c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1160.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1161.png b/front/public/images/small/gregtech/gt.blockmachines/1161.png deleted file mode 100644 index 48a95f1210..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1161.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1162.png b/front/public/images/small/gregtech/gt.blockmachines/1162.png deleted file mode 100644 index 48a95f1210..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1162.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1163.png b/front/public/images/small/gregtech/gt.blockmachines/1163.png deleted file mode 100644 index 982415bea5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1163.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1164.png b/front/public/images/small/gregtech/gt.blockmachines/1164.png deleted file mode 100644 index 30c5213ff6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1164.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1165.png b/front/public/images/small/gregtech/gt.blockmachines/1165.png deleted file mode 100644 index 969a502e3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1165.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1166.png b/front/public/images/small/gregtech/gt.blockmachines/1166.png deleted file mode 100644 index 969a502e3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1166.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1169.png b/front/public/images/small/gregtech/gt.blockmachines/1169.png deleted file mode 100644 index f1d2dfe5df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1169.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1170.png b/front/public/images/small/gregtech/gt.blockmachines/1170.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1170.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1171.png b/front/public/images/small/gregtech/gt.blockmachines/1171.png deleted file mode 100644 index 03de8c5f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1171.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1172.png b/front/public/images/small/gregtech/gt.blockmachines/1172.png deleted file mode 100644 index ab83b8fe5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1172.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1173.png b/front/public/images/small/gregtech/gt.blockmachines/1173.png deleted file mode 100644 index a725f0999f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1173.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1174.png b/front/public/images/small/gregtech/gt.blockmachines/1174.png deleted file mode 100644 index 186a79908f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1174.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1175.png b/front/public/images/small/gregtech/gt.blockmachines/1175.png deleted file mode 100644 index 17fd608c85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1175.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1176.png b/front/public/images/small/gregtech/gt.blockmachines/1176.png deleted file mode 100644 index fa86bc9a6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1176.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1177.png b/front/public/images/small/gregtech/gt.blockmachines/1177.png deleted file mode 100644 index 03de8c5f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1177.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1178.png b/front/public/images/small/gregtech/gt.blockmachines/1178.png deleted file mode 100644 index 565a6d3ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1178.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1179.png b/front/public/images/small/gregtech/gt.blockmachines/1179.png deleted file mode 100644 index a2012e1dd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1179.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/118.png b/front/public/images/small/gregtech/gt.blockmachines/118.png deleted file mode 100644 index 49f74bcfe1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/118.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1188.png b/front/public/images/small/gregtech/gt.blockmachines/1188.png deleted file mode 100644 index 15aabe7cf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1188.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1189.png b/front/public/images/small/gregtech/gt.blockmachines/1189.png deleted file mode 100644 index 72a999d1f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1189.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/119.png b/front/public/images/small/gregtech/gt.blockmachines/119.png deleted file mode 100644 index 70de94a9ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/119.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1190.png b/front/public/images/small/gregtech/gt.blockmachines/1190.png deleted file mode 100644 index 1aad5a01bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1190.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1191.png b/front/public/images/small/gregtech/gt.blockmachines/1191.png deleted file mode 100644 index e619d1526e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1191.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1192.png b/front/public/images/small/gregtech/gt.blockmachines/1192.png deleted file mode 100644 index 4f88f423e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1192.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1193.png b/front/public/images/small/gregtech/gt.blockmachines/1193.png deleted file mode 100644 index e0c60829d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1193.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1194.png b/front/public/images/small/gregtech/gt.blockmachines/1194.png deleted file mode 100644 index e0c60829d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1194.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1195.png b/front/public/images/small/gregtech/gt.blockmachines/1195.png deleted file mode 100644 index e0c60829d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1195.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1196.png b/front/public/images/small/gregtech/gt.blockmachines/1196.png deleted file mode 100644 index ef7b34e0c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1196.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1197.png b/front/public/images/small/gregtech/gt.blockmachines/1197.png deleted file mode 100644 index 803e5a7b04..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1197.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1198.png b/front/public/images/small/gregtech/gt.blockmachines/1198.png deleted file mode 100644 index c0ed27c5c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1198.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1199.png b/front/public/images/small/gregtech/gt.blockmachines/1199.png deleted file mode 100644 index 565a6d3ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1199.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12.png b/front/public/images/small/gregtech/gt.blockmachines/12.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/120.png b/front/public/images/small/gregtech/gt.blockmachines/120.png deleted file mode 100644 index 3dc04c3a0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/120.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1200.png b/front/public/images/small/gregtech/gt.blockmachines/1200.png deleted file mode 100644 index 93c9b4b31a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1201.png b/front/public/images/small/gregtech/gt.blockmachines/1201.png deleted file mode 100644 index 1a061c9a7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1202.png b/front/public/images/small/gregtech/gt.blockmachines/1202.png deleted file mode 100644 index 3b0bb1f1ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1203.png b/front/public/images/small/gregtech/gt.blockmachines/1203.png deleted file mode 100644 index 7288039cf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1204.png b/front/public/images/small/gregtech/gt.blockmachines/1204.png deleted file mode 100644 index 2fcf17908c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1205.png b/front/public/images/small/gregtech/gt.blockmachines/1205.png deleted file mode 100644 index aada7897fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1206.png b/front/public/images/small/gregtech/gt.blockmachines/1206.png deleted file mode 100644 index 4d6b19feb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1207.png b/front/public/images/small/gregtech/gt.blockmachines/1207.png deleted file mode 100644 index a0e97771bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1208.png b/front/public/images/small/gregtech/gt.blockmachines/1208.png deleted file mode 100644 index b268db7e6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1209.png b/front/public/images/small/gregtech/gt.blockmachines/1209.png deleted file mode 100644 index ffd3fcdf31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/121.png b/front/public/images/small/gregtech/gt.blockmachines/121.png deleted file mode 100644 index 50d12c07c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/121.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1210.png b/front/public/images/small/gregtech/gt.blockmachines/1210.png deleted file mode 100644 index 7f5f9bf62e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1210.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1211.png b/front/public/images/small/gregtech/gt.blockmachines/1211.png deleted file mode 100644 index 2526e8bae8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1211.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/122.png b/front/public/images/small/gregtech/gt.blockmachines/122.png deleted file mode 100644 index 646ef39667..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/122.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1220.png b/front/public/images/small/gregtech/gt.blockmachines/1220.png deleted file mode 100644 index b4037dd9c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1220.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1221.png b/front/public/images/small/gregtech/gt.blockmachines/1221.png deleted file mode 100644 index b25491714f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1221.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1222.png b/front/public/images/small/gregtech/gt.blockmachines/1222.png deleted file mode 100644 index 8f535c9420..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1222.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1223.png b/front/public/images/small/gregtech/gt.blockmachines/1223.png deleted file mode 100644 index 79c4e9f16a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1223.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1224.png b/front/public/images/small/gregtech/gt.blockmachines/1224.png deleted file mode 100644 index ffbcfc870d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1224.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1225.png b/front/public/images/small/gregtech/gt.blockmachines/1225.png deleted file mode 100644 index 46e6b72916..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1225.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1226.png b/front/public/images/small/gregtech/gt.blockmachines/1226.png deleted file mode 100644 index d0a452149e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1226.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1227.png b/front/public/images/small/gregtech/gt.blockmachines/1227.png deleted file mode 100644 index 75130fd772..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1227.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1228.png b/front/public/images/small/gregtech/gt.blockmachines/1228.png deleted file mode 100644 index a5b6098316..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1228.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1229.png b/front/public/images/small/gregtech/gt.blockmachines/1229.png deleted file mode 100644 index c9ab3afb4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1229.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/123.png b/front/public/images/small/gregtech/gt.blockmachines/123.png deleted file mode 100644 index 85d134e8e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/123.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1230.png b/front/public/images/small/gregtech/gt.blockmachines/1230.png deleted file mode 100644 index 6497943d75..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1231.png b/front/public/images/small/gregtech/gt.blockmachines/1231.png deleted file mode 100644 index 238bf7c7d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1231.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/124.png b/front/public/images/small/gregtech/gt.blockmachines/124.png deleted file mode 100644 index 97157a4619..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/124.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1240.png b/front/public/images/small/gregtech/gt.blockmachines/1240.png deleted file mode 100644 index 1ecfa83f9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1240.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1241.png b/front/public/images/small/gregtech/gt.blockmachines/1241.png deleted file mode 100644 index 01d8a5f1d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1241.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1242.png b/front/public/images/small/gregtech/gt.blockmachines/1242.png deleted file mode 100644 index 2d31048d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1242.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1243.png b/front/public/images/small/gregtech/gt.blockmachines/1243.png deleted file mode 100644 index 3f7735a0f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1243.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1244.png b/front/public/images/small/gregtech/gt.blockmachines/1244.png deleted file mode 100644 index 3454342efc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1244.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1245.png b/front/public/images/small/gregtech/gt.blockmachines/1245.png deleted file mode 100644 index 1657bd0cc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1245.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1246.png b/front/public/images/small/gregtech/gt.blockmachines/1246.png deleted file mode 100644 index 5f01ec4f95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1246.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1247.png b/front/public/images/small/gregtech/gt.blockmachines/1247.png deleted file mode 100644 index 3ce811feb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1247.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1248.png b/front/public/images/small/gregtech/gt.blockmachines/1248.png deleted file mode 100644 index b06e872bdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1248.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1249.png b/front/public/images/small/gregtech/gt.blockmachines/1249.png deleted file mode 100644 index ddc39abc81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1249.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/125.png b/front/public/images/small/gregtech/gt.blockmachines/125.png deleted file mode 100644 index e9359beb20..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/125.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1250.png b/front/public/images/small/gregtech/gt.blockmachines/1250.png deleted file mode 100644 index 013d4e7757..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1250.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12501.png b/front/public/images/small/gregtech/gt.blockmachines/12501.png deleted file mode 100644 index 2ee56ef94c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12502.png b/front/public/images/small/gregtech/gt.blockmachines/12502.png deleted file mode 100644 index afb076fefe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12503.png b/front/public/images/small/gregtech/gt.blockmachines/12503.png deleted file mode 100644 index 1e80cf8b50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12504.png b/front/public/images/small/gregtech/gt.blockmachines/12504.png deleted file mode 100644 index ad6fed18c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12505.png b/front/public/images/small/gregtech/gt.blockmachines/12505.png deleted file mode 100644 index 1b7dfd534e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12506.png b/front/public/images/small/gregtech/gt.blockmachines/12506.png deleted file mode 100644 index d5a863823b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12507.png b/front/public/images/small/gregtech/gt.blockmachines/12507.png deleted file mode 100644 index 34e8cef384..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12508.png b/front/public/images/small/gregtech/gt.blockmachines/12508.png deleted file mode 100644 index b49f994bbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12509.png b/front/public/images/small/gregtech/gt.blockmachines/12509.png deleted file mode 100644 index a562a214bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1251.png b/front/public/images/small/gregtech/gt.blockmachines/1251.png deleted file mode 100644 index f1fceb25f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1251.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12510.png b/front/public/images/small/gregtech/gt.blockmachines/12510.png deleted file mode 100644 index 2ee56ef94c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12511.png b/front/public/images/small/gregtech/gt.blockmachines/12511.png deleted file mode 100644 index afb076fefe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12512.png b/front/public/images/small/gregtech/gt.blockmachines/12512.png deleted file mode 100644 index 1e80cf8b50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12513.png b/front/public/images/small/gregtech/gt.blockmachines/12513.png deleted file mode 100644 index ad6fed18c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12514.png b/front/public/images/small/gregtech/gt.blockmachines/12514.png deleted file mode 100644 index 1b7dfd534e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12515.png b/front/public/images/small/gregtech/gt.blockmachines/12515.png deleted file mode 100644 index d5a863823b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12516.png b/front/public/images/small/gregtech/gt.blockmachines/12516.png deleted file mode 100644 index 34e8cef384..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12517.png b/front/public/images/small/gregtech/gt.blockmachines/12517.png deleted file mode 100644 index b49f994bbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12518.png b/front/public/images/small/gregtech/gt.blockmachines/12518.png deleted file mode 100644 index a562a214bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12519.png b/front/public/images/small/gregtech/gt.blockmachines/12519.png deleted file mode 100644 index 2ee56ef94c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12520.png b/front/public/images/small/gregtech/gt.blockmachines/12520.png deleted file mode 100644 index afb076fefe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12521.png b/front/public/images/small/gregtech/gt.blockmachines/12521.png deleted file mode 100644 index 1e80cf8b50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12522.png b/front/public/images/small/gregtech/gt.blockmachines/12522.png deleted file mode 100644 index ad6fed18c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12523.png b/front/public/images/small/gregtech/gt.blockmachines/12523.png deleted file mode 100644 index 1b7dfd534e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12524.png b/front/public/images/small/gregtech/gt.blockmachines/12524.png deleted file mode 100644 index d5a863823b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12525.png b/front/public/images/small/gregtech/gt.blockmachines/12525.png deleted file mode 100644 index 34e8cef384..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12526.png b/front/public/images/small/gregtech/gt.blockmachines/12526.png deleted file mode 100644 index b49f994bbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12527.png b/front/public/images/small/gregtech/gt.blockmachines/12527.png deleted file mode 100644 index a562a214bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12528.png b/front/public/images/small/gregtech/gt.blockmachines/12528.png deleted file mode 100644 index a2bffd57c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/126.png b/front/public/images/small/gregtech/gt.blockmachines/126.png deleted file mode 100644 index 1aa5608766..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/126.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1260.png b/front/public/images/small/gregtech/gt.blockmachines/1260.png deleted file mode 100644 index 79c7631e1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1260.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12601.png b/front/public/images/small/gregtech/gt.blockmachines/12601.png deleted file mode 100644 index 958e6ecf45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12601.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12602.png b/front/public/images/small/gregtech/gt.blockmachines/12602.png deleted file mode 100644 index 3cda8cdfb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12602.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12603.png b/front/public/images/small/gregtech/gt.blockmachines/12603.png deleted file mode 100644 index dea41b5e0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12603.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12604.png b/front/public/images/small/gregtech/gt.blockmachines/12604.png deleted file mode 100644 index ab611475e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12604.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12605.png b/front/public/images/small/gregtech/gt.blockmachines/12605.png deleted file mode 100644 index 19d7c4865e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12605.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12606.png b/front/public/images/small/gregtech/gt.blockmachines/12606.png deleted file mode 100644 index 5e9c1a059b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12606.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12607.png b/front/public/images/small/gregtech/gt.blockmachines/12607.png deleted file mode 100644 index 8fa5c3311c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12608.png b/front/public/images/small/gregtech/gt.blockmachines/12608.png deleted file mode 100644 index 84861c518f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12608.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12609.png b/front/public/images/small/gregtech/gt.blockmachines/12609.png deleted file mode 100644 index acd108543a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12609.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1261.png b/front/public/images/small/gregtech/gt.blockmachines/1261.png deleted file mode 100644 index 38e499c0bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1261.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12610.png b/front/public/images/small/gregtech/gt.blockmachines/12610.png deleted file mode 100644 index 19e8a64d31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12611.png b/front/public/images/small/gregtech/gt.blockmachines/12611.png deleted file mode 100644 index 21368bd2da..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12612.png b/front/public/images/small/gregtech/gt.blockmachines/12612.png deleted file mode 100644 index 5570c124ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12612.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12613.png b/front/public/images/small/gregtech/gt.blockmachines/12613.png deleted file mode 100644 index 95e188a393..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12614.png b/front/public/images/small/gregtech/gt.blockmachines/12614.png deleted file mode 100644 index 09b4a2917b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12614.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12615.png b/front/public/images/small/gregtech/gt.blockmachines/12615.png deleted file mode 100644 index 06df9c00a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12615.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12617.png b/front/public/images/small/gregtech/gt.blockmachines/12617.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12617.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12618.png b/front/public/images/small/gregtech/gt.blockmachines/12618.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12618.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12619.png b/front/public/images/small/gregtech/gt.blockmachines/12619.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12619.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1262.png b/front/public/images/small/gregtech/gt.blockmachines/1262.png deleted file mode 100644 index 823676da03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1262.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12620.png b/front/public/images/small/gregtech/gt.blockmachines/12620.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12620.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12621.png b/front/public/images/small/gregtech/gt.blockmachines/12621.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12621.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12622.png b/front/public/images/small/gregtech/gt.blockmachines/12622.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12622.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12623.png b/front/public/images/small/gregtech/gt.blockmachines/12623.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12623.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12624.png b/front/public/images/small/gregtech/gt.blockmachines/12624.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12624.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12625.png b/front/public/images/small/gregtech/gt.blockmachines/12625.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12625.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12626.png b/front/public/images/small/gregtech/gt.blockmachines/12626.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12626.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12627.png b/front/public/images/small/gregtech/gt.blockmachines/12627.png deleted file mode 100644 index 5e00c0804f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12627.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12628.png b/front/public/images/small/gregtech/gt.blockmachines/12628.png deleted file mode 100644 index 92ee415ec6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12628.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12629.png b/front/public/images/small/gregtech/gt.blockmachines/12629.png deleted file mode 100644 index 0cb9ee413e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12629.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1263.png b/front/public/images/small/gregtech/gt.blockmachines/1263.png deleted file mode 100644 index e1f27efc4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1263.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12630.png b/front/public/images/small/gregtech/gt.blockmachines/12630.png deleted file mode 100644 index 4666d35ef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12630.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12631.png b/front/public/images/small/gregtech/gt.blockmachines/12631.png deleted file mode 100644 index fe3f0716dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12633.png b/front/public/images/small/gregtech/gt.blockmachines/12633.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12633.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12634.png b/front/public/images/small/gregtech/gt.blockmachines/12634.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12634.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12635.png b/front/public/images/small/gregtech/gt.blockmachines/12635.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12636.png b/front/public/images/small/gregtech/gt.blockmachines/12636.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12637.png b/front/public/images/small/gregtech/gt.blockmachines/12637.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12637.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12638.png b/front/public/images/small/gregtech/gt.blockmachines/12638.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12638.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12639.png b/front/public/images/small/gregtech/gt.blockmachines/12639.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12639.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1264.png b/front/public/images/small/gregtech/gt.blockmachines/1264.png deleted file mode 100644 index 2707564d75..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1264.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12640.png b/front/public/images/small/gregtech/gt.blockmachines/12640.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12640.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12641.png b/front/public/images/small/gregtech/gt.blockmachines/12641.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12641.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12642.png b/front/public/images/small/gregtech/gt.blockmachines/12642.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12643.png b/front/public/images/small/gregtech/gt.blockmachines/12643.png deleted file mode 100644 index 5e00c0804f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12644.png b/front/public/images/small/gregtech/gt.blockmachines/12644.png deleted file mode 100644 index 92ee415ec6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12645.png b/front/public/images/small/gregtech/gt.blockmachines/12645.png deleted file mode 100644 index 0cb9ee413e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12646.png b/front/public/images/small/gregtech/gt.blockmachines/12646.png deleted file mode 100644 index 4666d35ef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12647.png b/front/public/images/small/gregtech/gt.blockmachines/12647.png deleted file mode 100644 index fe3f0716dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12647.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12649.png b/front/public/images/small/gregtech/gt.blockmachines/12649.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1265.png b/front/public/images/small/gregtech/gt.blockmachines/1265.png deleted file mode 100644 index 430c237902..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1265.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12650.png b/front/public/images/small/gregtech/gt.blockmachines/12650.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12650.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12651.png b/front/public/images/small/gregtech/gt.blockmachines/12651.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12651.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12652.png b/front/public/images/small/gregtech/gt.blockmachines/12652.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12652.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12653.png b/front/public/images/small/gregtech/gt.blockmachines/12653.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12653.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12654.png b/front/public/images/small/gregtech/gt.blockmachines/12654.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12654.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12655.png b/front/public/images/small/gregtech/gt.blockmachines/12655.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12655.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12656.png b/front/public/images/small/gregtech/gt.blockmachines/12656.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12656.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12657.png b/front/public/images/small/gregtech/gt.blockmachines/12657.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12657.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12658.png b/front/public/images/small/gregtech/gt.blockmachines/12658.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12658.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12659.png b/front/public/images/small/gregtech/gt.blockmachines/12659.png deleted file mode 100644 index 5e00c0804f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12659.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1266.png b/front/public/images/small/gregtech/gt.blockmachines/1266.png deleted file mode 100644 index 58b2d0d85d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1266.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12660.png b/front/public/images/small/gregtech/gt.blockmachines/12660.png deleted file mode 100644 index 92ee415ec6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12660.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12661.png b/front/public/images/small/gregtech/gt.blockmachines/12661.png deleted file mode 100644 index 0cb9ee413e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12661.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12662.png b/front/public/images/small/gregtech/gt.blockmachines/12662.png deleted file mode 100644 index 4666d35ef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12662.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12663.png b/front/public/images/small/gregtech/gt.blockmachines/12663.png deleted file mode 100644 index fe3f0716dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12663.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12665.png b/front/public/images/small/gregtech/gt.blockmachines/12665.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12665.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12666.png b/front/public/images/small/gregtech/gt.blockmachines/12666.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12666.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12667.png b/front/public/images/small/gregtech/gt.blockmachines/12667.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12667.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12668.png b/front/public/images/small/gregtech/gt.blockmachines/12668.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12668.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12669.png b/front/public/images/small/gregtech/gt.blockmachines/12669.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12669.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1267.png b/front/public/images/small/gregtech/gt.blockmachines/1267.png deleted file mode 100644 index 638a6b3f04..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1267.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12670.png b/front/public/images/small/gregtech/gt.blockmachines/12670.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12670.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12671.png b/front/public/images/small/gregtech/gt.blockmachines/12671.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12671.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12672.png b/front/public/images/small/gregtech/gt.blockmachines/12672.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12672.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12673.png b/front/public/images/small/gregtech/gt.blockmachines/12673.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12673.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12674.png b/front/public/images/small/gregtech/gt.blockmachines/12674.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12674.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12675.png b/front/public/images/small/gregtech/gt.blockmachines/12675.png deleted file mode 100644 index 5e00c0804f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12675.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12676.png b/front/public/images/small/gregtech/gt.blockmachines/12676.png deleted file mode 100644 index 92ee415ec6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12676.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12677.png b/front/public/images/small/gregtech/gt.blockmachines/12677.png deleted file mode 100644 index 0cb9ee413e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12678.png b/front/public/images/small/gregtech/gt.blockmachines/12678.png deleted file mode 100644 index 4666d35ef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12679.png b/front/public/images/small/gregtech/gt.blockmachines/12679.png deleted file mode 100644 index fe3f0716dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12679.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1268.png b/front/public/images/small/gregtech/gt.blockmachines/1268.png deleted file mode 100644 index aac3b52d0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1268.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12681.png b/front/public/images/small/gregtech/gt.blockmachines/12681.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12681.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12682.png b/front/public/images/small/gregtech/gt.blockmachines/12682.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12682.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12683.png b/front/public/images/small/gregtech/gt.blockmachines/12683.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12683.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12684.png b/front/public/images/small/gregtech/gt.blockmachines/12684.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12684.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12685.png b/front/public/images/small/gregtech/gt.blockmachines/12685.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12685.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12686.png b/front/public/images/small/gregtech/gt.blockmachines/12686.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12686.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12687.png b/front/public/images/small/gregtech/gt.blockmachines/12687.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12687.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12688.png b/front/public/images/small/gregtech/gt.blockmachines/12688.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12688.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12689.png b/front/public/images/small/gregtech/gt.blockmachines/12689.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12689.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1269.png b/front/public/images/small/gregtech/gt.blockmachines/1269.png deleted file mode 100644 index 569d7b4668..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1269.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12690.png b/front/public/images/small/gregtech/gt.blockmachines/12690.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12690.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12691.png b/front/public/images/small/gregtech/gt.blockmachines/12691.png deleted file mode 100644 index 5e00c0804f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12691.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12692.png b/front/public/images/small/gregtech/gt.blockmachines/12692.png deleted file mode 100644 index 92ee415ec6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12692.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12693.png b/front/public/images/small/gregtech/gt.blockmachines/12693.png deleted file mode 100644 index 0cb9ee413e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12693.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12694.png b/front/public/images/small/gregtech/gt.blockmachines/12694.png deleted file mode 100644 index 4666d35ef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12694.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12695.png b/front/public/images/small/gregtech/gt.blockmachines/12695.png deleted file mode 100644 index fe3f0716dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12695.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/127.png b/front/public/images/small/gregtech/gt.blockmachines/127.png deleted file mode 100644 index bbc1921531..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/127.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1270.png b/front/public/images/small/gregtech/gt.blockmachines/1270.png deleted file mode 100644 index 7515d9f2eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1270.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1271.png b/front/public/images/small/gregtech/gt.blockmachines/1271.png deleted file mode 100644 index 7cbf92577c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1271.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12726.png b/front/public/images/small/gregtech/gt.blockmachines/12726.png deleted file mode 100644 index 95782d4b73..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12726.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12727.png b/front/public/images/small/gregtech/gt.blockmachines/12727.png deleted file mode 100644 index 0bfa0bd14d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12727.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12728.png b/front/public/images/small/gregtech/gt.blockmachines/12728.png deleted file mode 100644 index 55b286036b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12728.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12729.png b/front/public/images/small/gregtech/gt.blockmachines/12729.png deleted file mode 100644 index edca9c4e25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12729.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12730.png b/front/public/images/small/gregtech/gt.blockmachines/12730.png deleted file mode 100644 index edca9c4e25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12730.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12731.png b/front/public/images/small/gregtech/gt.blockmachines/12731.png deleted file mode 100644 index 9e98d7f26f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12731.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12732.png b/front/public/images/small/gregtech/gt.blockmachines/12732.png deleted file mode 100644 index 5c61428e1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12732.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12733.png b/front/public/images/small/gregtech/gt.blockmachines/12733.png deleted file mode 100644 index 6d73cf9de4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12733.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12734.png b/front/public/images/small/gregtech/gt.blockmachines/12734.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12734.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12735.png b/front/public/images/small/gregtech/gt.blockmachines/12735.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12736.png b/front/public/images/small/gregtech/gt.blockmachines/12736.png deleted file mode 100644 index c9da6b101d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12736.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12737.png b/front/public/images/small/gregtech/gt.blockmachines/12737.png deleted file mode 100644 index fca47fe254..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12737.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12738.png b/front/public/images/small/gregtech/gt.blockmachines/12738.png deleted file mode 100644 index 201b9c878c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12738.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12739.png b/front/public/images/small/gregtech/gt.blockmachines/12739.png deleted file mode 100644 index 23edb3e25f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12740.png b/front/public/images/small/gregtech/gt.blockmachines/12740.png deleted file mode 100644 index a3df57c78f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12741.png b/front/public/images/small/gregtech/gt.blockmachines/12741.png deleted file mode 100644 index 90459db88e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12742.png b/front/public/images/small/gregtech/gt.blockmachines/12742.png deleted file mode 100644 index 2a66f77a3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12742.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12743.png b/front/public/images/small/gregtech/gt.blockmachines/12743.png deleted file mode 100644 index fffe5b9309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12743.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12744.png b/front/public/images/small/gregtech/gt.blockmachines/12744.png deleted file mode 100644 index 497e80c9db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12744.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12745.png b/front/public/images/small/gregtech/gt.blockmachines/12745.png deleted file mode 100644 index 9de518ba92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12746.png b/front/public/images/small/gregtech/gt.blockmachines/12746.png deleted file mode 100644 index 1c28a99a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12746.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12747.png b/front/public/images/small/gregtech/gt.blockmachines/12747.png deleted file mode 100644 index fffe5b9309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12747.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12748.png b/front/public/images/small/gregtech/gt.blockmachines/12748.png deleted file mode 100644 index 497e80c9db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12748.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12749.png b/front/public/images/small/gregtech/gt.blockmachines/12749.png deleted file mode 100644 index 9de518ba92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12750.png b/front/public/images/small/gregtech/gt.blockmachines/12750.png deleted file mode 100644 index 1c28a99a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12750.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12751.png b/front/public/images/small/gregtech/gt.blockmachines/12751.png deleted file mode 100644 index fffe5b9309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12752.png b/front/public/images/small/gregtech/gt.blockmachines/12752.png deleted file mode 100644 index 497e80c9db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12752.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12753.png b/front/public/images/small/gregtech/gt.blockmachines/12753.png deleted file mode 100644 index 9de518ba92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12753.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12754.png b/front/public/images/small/gregtech/gt.blockmachines/12754.png deleted file mode 100644 index 1c28a99a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12754.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12755.png b/front/public/images/small/gregtech/gt.blockmachines/12755.png deleted file mode 100644 index fffe5b9309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12755.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12756.png b/front/public/images/small/gregtech/gt.blockmachines/12756.png deleted file mode 100644 index 497e80c9db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12756.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12757.png b/front/public/images/small/gregtech/gt.blockmachines/12757.png deleted file mode 100644 index 9de518ba92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12757.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12758.png b/front/public/images/small/gregtech/gt.blockmachines/12758.png deleted file mode 100644 index 1c28a99a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12758.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12759.png b/front/public/images/small/gregtech/gt.blockmachines/12759.png deleted file mode 100644 index 8027961e15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12759.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12760.png b/front/public/images/small/gregtech/gt.blockmachines/12760.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12761.png b/front/public/images/small/gregtech/gt.blockmachines/12761.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12761.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12762.png b/front/public/images/small/gregtech/gt.blockmachines/12762.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12762.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12763.png b/front/public/images/small/gregtech/gt.blockmachines/12763.png deleted file mode 100644 index 8027961e15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12763.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12764.png b/front/public/images/small/gregtech/gt.blockmachines/12764.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12764.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12765.png b/front/public/images/small/gregtech/gt.blockmachines/12765.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12766.png b/front/public/images/small/gregtech/gt.blockmachines/12766.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12766.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12767.png b/front/public/images/small/gregtech/gt.blockmachines/12767.png deleted file mode 100644 index 8027961e15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12767.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12768.png b/front/public/images/small/gregtech/gt.blockmachines/12768.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12768.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12769.png b/front/public/images/small/gregtech/gt.blockmachines/12769.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12769.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12770.png b/front/public/images/small/gregtech/gt.blockmachines/12770.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12771.png b/front/public/images/small/gregtech/gt.blockmachines/12771.png deleted file mode 100644 index 8027961e15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12771.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12772.png b/front/public/images/small/gregtech/gt.blockmachines/12772.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12773.png b/front/public/images/small/gregtech/gt.blockmachines/12773.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12773.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12774.png b/front/public/images/small/gregtech/gt.blockmachines/12774.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12774.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12775.png b/front/public/images/small/gregtech/gt.blockmachines/12775.png deleted file mode 100644 index 88357adddb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12775.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12776.png b/front/public/images/small/gregtech/gt.blockmachines/12776.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12776.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12777.png b/front/public/images/small/gregtech/gt.blockmachines/12777.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12777.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12778.png b/front/public/images/small/gregtech/gt.blockmachines/12778.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12778.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12779.png b/front/public/images/small/gregtech/gt.blockmachines/12779.png deleted file mode 100644 index 88357adddb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12779.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12780.png b/front/public/images/small/gregtech/gt.blockmachines/12780.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12780.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12781.png b/front/public/images/small/gregtech/gt.blockmachines/12781.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12781.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12782.png b/front/public/images/small/gregtech/gt.blockmachines/12782.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12782.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12783.png b/front/public/images/small/gregtech/gt.blockmachines/12783.png deleted file mode 100644 index 88357adddb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12783.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12784.png b/front/public/images/small/gregtech/gt.blockmachines/12784.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12784.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12785.png b/front/public/images/small/gregtech/gt.blockmachines/12785.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12785.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12786.png b/front/public/images/small/gregtech/gt.blockmachines/12786.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12786.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12787.png b/front/public/images/small/gregtech/gt.blockmachines/12787.png deleted file mode 100644 index 88357adddb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12787.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12788.png b/front/public/images/small/gregtech/gt.blockmachines/12788.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12788.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12789.png b/front/public/images/small/gregtech/gt.blockmachines/12789.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12789.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12790.png b/front/public/images/small/gregtech/gt.blockmachines/12790.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12790.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12791.png b/front/public/images/small/gregtech/gt.blockmachines/12791.png deleted file mode 100644 index 5764fbe8cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12791.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12793.png b/front/public/images/small/gregtech/gt.blockmachines/12793.png deleted file mode 100644 index 2330f8f7e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12793.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/12799.png b/front/public/images/small/gregtech/gt.blockmachines/12799.png deleted file mode 100644 index 3299857b57..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/12799.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/128.png b/front/public/images/small/gregtech/gt.blockmachines/128.png deleted file mode 100644 index 20ee4a04d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/128.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1280.png b/front/public/images/small/gregtech/gt.blockmachines/1280.png deleted file mode 100644 index c3046b5ab8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1280.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1281.png b/front/public/images/small/gregtech/gt.blockmachines/1281.png deleted file mode 100644 index 14d1a97b77..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1281.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1282.png b/front/public/images/small/gregtech/gt.blockmachines/1282.png deleted file mode 100644 index 62c2ee722b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1282.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1283.png b/front/public/images/small/gregtech/gt.blockmachines/1283.png deleted file mode 100644 index 56e832adcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1283.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1284.png b/front/public/images/small/gregtech/gt.blockmachines/1284.png deleted file mode 100644 index 9ea57a40c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1284.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1285.png b/front/public/images/small/gregtech/gt.blockmachines/1285.png deleted file mode 100644 index b121e773c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1285.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1286.png b/front/public/images/small/gregtech/gt.blockmachines/1286.png deleted file mode 100644 index 033c966efd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1286.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1287.png b/front/public/images/small/gregtech/gt.blockmachines/1287.png deleted file mode 100644 index 6b25329ce7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1287.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1288.png b/front/public/images/small/gregtech/gt.blockmachines/1288.png deleted file mode 100644 index 38f01dcd10..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1288.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1289.png b/front/public/images/small/gregtech/gt.blockmachines/1289.png deleted file mode 100644 index 6fb3d0b2a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1289.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/129.png b/front/public/images/small/gregtech/gt.blockmachines/129.png deleted file mode 100644 index f9ba6a7423..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1290.png b/front/public/images/small/gregtech/gt.blockmachines/1290.png deleted file mode 100644 index 555ba2c4e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1290.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1291.png b/front/public/images/small/gregtech/gt.blockmachines/1291.png deleted file mode 100644 index 73b27a6e35..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1291.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13.png b/front/public/images/small/gregtech/gt.blockmachines/13.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/130.png b/front/public/images/small/gregtech/gt.blockmachines/130.png deleted file mode 100644 index 6fcd9ebc4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1300.png b/front/public/images/small/gregtech/gt.blockmachines/1300.png deleted file mode 100644 index 670ad1d2d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13001.png b/front/public/images/small/gregtech/gt.blockmachines/13001.png deleted file mode 100644 index f7d04d0edc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1301.png b/front/public/images/small/gregtech/gt.blockmachines/1301.png deleted file mode 100644 index dc2f5118bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1302.png b/front/public/images/small/gregtech/gt.blockmachines/1302.png deleted file mode 100644 index 3dc3f88d8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1303.png b/front/public/images/small/gregtech/gt.blockmachines/1303.png deleted file mode 100644 index 15f7c42573..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1304.png b/front/public/images/small/gregtech/gt.blockmachines/1304.png deleted file mode 100644 index a2ec3c3c9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1305.png b/front/public/images/small/gregtech/gt.blockmachines/1305.png deleted file mode 100644 index 1a223bff38..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1306.png b/front/public/images/small/gregtech/gt.blockmachines/1306.png deleted file mode 100644 index 838ace1df4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1307.png b/front/public/images/small/gregtech/gt.blockmachines/1307.png deleted file mode 100644 index 86988e539a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1308.png b/front/public/images/small/gregtech/gt.blockmachines/1308.png deleted file mode 100644 index 84725137a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1309.png b/front/public/images/small/gregtech/gt.blockmachines/1309.png deleted file mode 100644 index a78cc0019a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/131.png b/front/public/images/small/gregtech/gt.blockmachines/131.png deleted file mode 100644 index 47cd741d07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1310.png b/front/public/images/small/gregtech/gt.blockmachines/1310.png deleted file mode 100644 index abb02485c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1311.png b/front/public/images/small/gregtech/gt.blockmachines/1311.png deleted file mode 100644 index f1f1a3bbd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/132.png b/front/public/images/small/gregtech/gt.blockmachines/132.png deleted file mode 100644 index c313ceef26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/132.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1320.png b/front/public/images/small/gregtech/gt.blockmachines/1320.png deleted file mode 100644 index ecb82d05ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1321.png b/front/public/images/small/gregtech/gt.blockmachines/1321.png deleted file mode 100644 index 3dc4aaa6de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1322.png b/front/public/images/small/gregtech/gt.blockmachines/1322.png deleted file mode 100644 index 2845f0a87e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1322.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1323.png b/front/public/images/small/gregtech/gt.blockmachines/1323.png deleted file mode 100644 index ee63368740..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1324.png b/front/public/images/small/gregtech/gt.blockmachines/1324.png deleted file mode 100644 index 4edbd1630a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1325.png b/front/public/images/small/gregtech/gt.blockmachines/1325.png deleted file mode 100644 index 5cb376e3a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1326.png b/front/public/images/small/gregtech/gt.blockmachines/1326.png deleted file mode 100644 index eaf86a0d32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1327.png b/front/public/images/small/gregtech/gt.blockmachines/1327.png deleted file mode 100644 index 943abe77f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1328.png b/front/public/images/small/gregtech/gt.blockmachines/1328.png deleted file mode 100644 index 9d60514ea8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1329.png b/front/public/images/small/gregtech/gt.blockmachines/1329.png deleted file mode 100644 index 2f2291670d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/133.png b/front/public/images/small/gregtech/gt.blockmachines/133.png deleted file mode 100644 index 1b6a2ecd71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/133.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1330.png b/front/public/images/small/gregtech/gt.blockmachines/1330.png deleted file mode 100644 index 5a7f9d4168..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1331.png b/front/public/images/small/gregtech/gt.blockmachines/1331.png deleted file mode 100644 index 0c914d0f0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13366.png b/front/public/images/small/gregtech/gt.blockmachines/13366.png deleted file mode 100644 index f1d2dfe5df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13367.png b/front/public/images/small/gregtech/gt.blockmachines/13367.png deleted file mode 100644 index 201b9c878c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/134.png b/front/public/images/small/gregtech/gt.blockmachines/134.png deleted file mode 100644 index def9c73a94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1340.png b/front/public/images/small/gregtech/gt.blockmachines/1340.png deleted file mode 100644 index 028d1e7956..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1341.png b/front/public/images/small/gregtech/gt.blockmachines/1341.png deleted file mode 100644 index 0bd423e96a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1342.png b/front/public/images/small/gregtech/gt.blockmachines/1342.png deleted file mode 100644 index db00a95741..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1343.png b/front/public/images/small/gregtech/gt.blockmachines/1343.png deleted file mode 100644 index 0b38cefab2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1344.png b/front/public/images/small/gregtech/gt.blockmachines/1344.png deleted file mode 100644 index e27072d1b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1345.png b/front/public/images/small/gregtech/gt.blockmachines/1345.png deleted file mode 100644 index 7329c4857e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1346.png b/front/public/images/small/gregtech/gt.blockmachines/1346.png deleted file mode 100644 index b8af38e661..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1347.png b/front/public/images/small/gregtech/gt.blockmachines/1347.png deleted file mode 100644 index 2b6cb92270..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1348.png b/front/public/images/small/gregtech/gt.blockmachines/1348.png deleted file mode 100644 index af0437ead1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1349.png b/front/public/images/small/gregtech/gt.blockmachines/1349.png deleted file mode 100644 index 09eb69ed76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/135.png b/front/public/images/small/gregtech/gt.blockmachines/135.png deleted file mode 100644 index b54006abc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/135.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1350.png b/front/public/images/small/gregtech/gt.blockmachines/1350.png deleted file mode 100644 index b346d18a4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1351.png b/front/public/images/small/gregtech/gt.blockmachines/1351.png deleted file mode 100644 index d436f2373c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13532.png b/front/public/images/small/gregtech/gt.blockmachines/13532.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13533.png b/front/public/images/small/gregtech/gt.blockmachines/13533.png deleted file mode 100644 index 91d7f7e1a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13534.png b/front/public/images/small/gregtech/gt.blockmachines/13534.png deleted file mode 100644 index 752bfab6b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13535.png b/front/public/images/small/gregtech/gt.blockmachines/13535.png deleted file mode 100644 index a7a162ec37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/13536.png b/front/public/images/small/gregtech/gt.blockmachines/13536.png deleted file mode 100644 index 1cfb9c6289..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/13536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/136.png b/front/public/images/small/gregtech/gt.blockmachines/136.png deleted file mode 100644 index c1c9e8a7b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/136.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1360.png b/front/public/images/small/gregtech/gt.blockmachines/1360.png deleted file mode 100644 index 75234fef25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1361.png b/front/public/images/small/gregtech/gt.blockmachines/1361.png deleted file mode 100644 index f909764d47..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1362.png b/front/public/images/small/gregtech/gt.blockmachines/1362.png deleted file mode 100644 index 3328f4e47f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1363.png b/front/public/images/small/gregtech/gt.blockmachines/1363.png deleted file mode 100644 index be4a18bee1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1364.png b/front/public/images/small/gregtech/gt.blockmachines/1364.png deleted file mode 100644 index d7fa962fa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1365.png b/front/public/images/small/gregtech/gt.blockmachines/1365.png deleted file mode 100644 index 12b51ec7a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1366.png b/front/public/images/small/gregtech/gt.blockmachines/1366.png deleted file mode 100644 index 3108dd888b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1367.png b/front/public/images/small/gregtech/gt.blockmachines/1367.png deleted file mode 100644 index d246885df0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1368.png b/front/public/images/small/gregtech/gt.blockmachines/1368.png deleted file mode 100644 index dc3f5a2caa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1369.png b/front/public/images/small/gregtech/gt.blockmachines/1369.png deleted file mode 100644 index 4bd6beefe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/137.png b/front/public/images/small/gregtech/gt.blockmachines/137.png deleted file mode 100644 index 3bebb94f14..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/137.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1370.png b/front/public/images/small/gregtech/gt.blockmachines/1370.png deleted file mode 100644 index 0b95f720de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1371.png b/front/public/images/small/gregtech/gt.blockmachines/1371.png deleted file mode 100644 index 3fa704a479..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/138.png b/front/public/images/small/gregtech/gt.blockmachines/138.png deleted file mode 100644 index 61fbf13aa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/138.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1380.png b/front/public/images/small/gregtech/gt.blockmachines/1380.png deleted file mode 100644 index aa5756cb17..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1381.png b/front/public/images/small/gregtech/gt.blockmachines/1381.png deleted file mode 100644 index 4dff6f8df6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1382.png b/front/public/images/small/gregtech/gt.blockmachines/1382.png deleted file mode 100644 index ec2736b839..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1383.png b/front/public/images/small/gregtech/gt.blockmachines/1383.png deleted file mode 100644 index f4e46f6fa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1384.png b/front/public/images/small/gregtech/gt.blockmachines/1384.png deleted file mode 100644 index b23b0b236d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1385.png b/front/public/images/small/gregtech/gt.blockmachines/1385.png deleted file mode 100644 index b15cbc1f84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1386.png b/front/public/images/small/gregtech/gt.blockmachines/1386.png deleted file mode 100644 index b3944ab251..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1387.png b/front/public/images/small/gregtech/gt.blockmachines/1387.png deleted file mode 100644 index ac3e6843b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1388.png b/front/public/images/small/gregtech/gt.blockmachines/1388.png deleted file mode 100644 index 414615ee54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1389.png b/front/public/images/small/gregtech/gt.blockmachines/1389.png deleted file mode 100644 index 26aa7d771b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/139.png b/front/public/images/small/gregtech/gt.blockmachines/139.png deleted file mode 100644 index 1fadc7be63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1390.png b/front/public/images/small/gregtech/gt.blockmachines/1390.png deleted file mode 100644 index c53bdd11ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1391.png b/front/public/images/small/gregtech/gt.blockmachines/1391.png deleted file mode 100644 index 7bc39e1c45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14.png b/front/public/images/small/gregtech/gt.blockmachines/14.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/140.png b/front/public/images/small/gregtech/gt.blockmachines/140.png deleted file mode 100644 index 8f704b0758..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/140.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1400.png b/front/public/images/small/gregtech/gt.blockmachines/1400.png deleted file mode 100644 index c518ba1351..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14001.png b/front/public/images/small/gregtech/gt.blockmachines/14001.png deleted file mode 100644 index 05b21acc6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14002.png b/front/public/images/small/gregtech/gt.blockmachines/14002.png deleted file mode 100644 index 1d5328a3fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14003.png b/front/public/images/small/gregtech/gt.blockmachines/14003.png deleted file mode 100644 index 4abec9d07a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14004.png b/front/public/images/small/gregtech/gt.blockmachines/14004.png deleted file mode 100644 index da73200454..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14005.png b/front/public/images/small/gregtech/gt.blockmachines/14005.png deleted file mode 100644 index da73200454..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14006.png b/front/public/images/small/gregtech/gt.blockmachines/14006.png deleted file mode 100644 index da73200454..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14007.png b/front/public/images/small/gregtech/gt.blockmachines/14007.png deleted file mode 100644 index 060eec69a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14008.png b/front/public/images/small/gregtech/gt.blockmachines/14008.png deleted file mode 100644 index 060eec69a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14009.png b/front/public/images/small/gregtech/gt.blockmachines/14009.png deleted file mode 100644 index 060eec69a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1401.png b/front/public/images/small/gregtech/gt.blockmachines/1401.png deleted file mode 100644 index b71f362e0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14010.png b/front/public/images/small/gregtech/gt.blockmachines/14010.png deleted file mode 100644 index c7a0a39a0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14011.png b/front/public/images/small/gregtech/gt.blockmachines/14011.png deleted file mode 100644 index c7a0a39a0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14011.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14012.png b/front/public/images/small/gregtech/gt.blockmachines/14012.png deleted file mode 100644 index 4abec9d07a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14012.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14013.png b/front/public/images/small/gregtech/gt.blockmachines/14013.png deleted file mode 100644 index 4abec9d07a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14013.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/14014.png b/front/public/images/small/gregtech/gt.blockmachines/14014.png deleted file mode 100644 index c7a0a39a0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/14014.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1402.png b/front/public/images/small/gregtech/gt.blockmachines/1402.png deleted file mode 100644 index 9526a03a26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1403.png b/front/public/images/small/gregtech/gt.blockmachines/1403.png deleted file mode 100644 index 7a0a5c55d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1404.png b/front/public/images/small/gregtech/gt.blockmachines/1404.png deleted file mode 100644 index ef896bce0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1405.png b/front/public/images/small/gregtech/gt.blockmachines/1405.png deleted file mode 100644 index 787b056ad5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1406.png b/front/public/images/small/gregtech/gt.blockmachines/1406.png deleted file mode 100644 index 40d88024a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1407.png b/front/public/images/small/gregtech/gt.blockmachines/1407.png deleted file mode 100644 index dfbc8e52dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1408.png b/front/public/images/small/gregtech/gt.blockmachines/1408.png deleted file mode 100644 index f7fa03ff7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1409.png b/front/public/images/small/gregtech/gt.blockmachines/1409.png deleted file mode 100644 index 524546ceaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1409.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/141.png b/front/public/images/small/gregtech/gt.blockmachines/141.png deleted file mode 100644 index 201b9c878c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1410.png b/front/public/images/small/gregtech/gt.blockmachines/1410.png deleted file mode 100644 index 66c0d44037..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1410.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1411.png b/front/public/images/small/gregtech/gt.blockmachines/1411.png deleted file mode 100644 index 7467957354..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1411.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/142.png b/front/public/images/small/gregtech/gt.blockmachines/142.png deleted file mode 100644 index 03de8c5f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/142.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1420.png b/front/public/images/small/gregtech/gt.blockmachines/1420.png deleted file mode 100644 index d7535c0f2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1420.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1421.png b/front/public/images/small/gregtech/gt.blockmachines/1421.png deleted file mode 100644 index 57b9f680e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1421.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1422.png b/front/public/images/small/gregtech/gt.blockmachines/1422.png deleted file mode 100644 index 8f1aba6950..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1422.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1423.png b/front/public/images/small/gregtech/gt.blockmachines/1423.png deleted file mode 100644 index fa91238190..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1423.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1424.png b/front/public/images/small/gregtech/gt.blockmachines/1424.png deleted file mode 100644 index c1ac32104b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1424.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1425.png b/front/public/images/small/gregtech/gt.blockmachines/1425.png deleted file mode 100644 index 84650eb0e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1425.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1426.png b/front/public/images/small/gregtech/gt.blockmachines/1426.png deleted file mode 100644 index 1ad171d124..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1426.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1427.png b/front/public/images/small/gregtech/gt.blockmachines/1427.png deleted file mode 100644 index 32fc3fd05f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1427.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1428.png b/front/public/images/small/gregtech/gt.blockmachines/1428.png deleted file mode 100644 index 99ff56249a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1428.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1429.png b/front/public/images/small/gregtech/gt.blockmachines/1429.png deleted file mode 100644 index e2fb342621..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1429.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/143.png b/front/public/images/small/gregtech/gt.blockmachines/143.png deleted file mode 100644 index 652db1d48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1430.png b/front/public/images/small/gregtech/gt.blockmachines/1430.png deleted file mode 100644 index a11cd4eeb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1430.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1431.png b/front/public/images/small/gregtech/gt.blockmachines/1431.png deleted file mode 100644 index 38f1fc482c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1431.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/144.png b/front/public/images/small/gregtech/gt.blockmachines/144.png deleted file mode 100644 index 03de8c5f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1440.png b/front/public/images/small/gregtech/gt.blockmachines/1440.png deleted file mode 100644 index fc930536fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1440.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1441.png b/front/public/images/small/gregtech/gt.blockmachines/1441.png deleted file mode 100644 index 641b2cd564..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1441.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1442.png b/front/public/images/small/gregtech/gt.blockmachines/1442.png deleted file mode 100644 index 4c992b4288..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1442.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1443.png b/front/public/images/small/gregtech/gt.blockmachines/1443.png deleted file mode 100644 index 5e2aa97a85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1443.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1444.png b/front/public/images/small/gregtech/gt.blockmachines/1444.png deleted file mode 100644 index 5c5c41345c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1444.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1445.png b/front/public/images/small/gregtech/gt.blockmachines/1445.png deleted file mode 100644 index a9071371bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1445.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1446.png b/front/public/images/small/gregtech/gt.blockmachines/1446.png deleted file mode 100644 index d8a19e5299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1446.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1447.png b/front/public/images/small/gregtech/gt.blockmachines/1447.png deleted file mode 100644 index 36a4bf7dbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1447.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1448.png b/front/public/images/small/gregtech/gt.blockmachines/1448.png deleted file mode 100644 index 9568834a3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1448.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1449.png b/front/public/images/small/gregtech/gt.blockmachines/1449.png deleted file mode 100644 index e3b7597c82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1449.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/145.png b/front/public/images/small/gregtech/gt.blockmachines/145.png deleted file mode 100644 index f72a19f84c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/145.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1450.png b/front/public/images/small/gregtech/gt.blockmachines/1450.png deleted file mode 100644 index e3ecedd0f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1450.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1451.png b/front/public/images/small/gregtech/gt.blockmachines/1451.png deleted file mode 100644 index 7d04c72d0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1451.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/146.png b/front/public/images/small/gregtech/gt.blockmachines/146.png deleted file mode 100644 index cfc305f043..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/146.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1460.png b/front/public/images/small/gregtech/gt.blockmachines/1460.png deleted file mode 100644 index 2fc399142b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1460.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1461.png b/front/public/images/small/gregtech/gt.blockmachines/1461.png deleted file mode 100644 index cc2fce2a13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1461.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1462.png b/front/public/images/small/gregtech/gt.blockmachines/1462.png deleted file mode 100644 index 8aeb6c4159..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1462.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1463.png b/front/public/images/small/gregtech/gt.blockmachines/1463.png deleted file mode 100644 index f0ede306ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1463.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1464.png b/front/public/images/small/gregtech/gt.blockmachines/1464.png deleted file mode 100644 index 9bddb2e05d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1464.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1465.png b/front/public/images/small/gregtech/gt.blockmachines/1465.png deleted file mode 100644 index baf9c9961f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1465.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1466.png b/front/public/images/small/gregtech/gt.blockmachines/1466.png deleted file mode 100644 index d0336bbc15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1466.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1467.png b/front/public/images/small/gregtech/gt.blockmachines/1467.png deleted file mode 100644 index dfaa52bd3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1467.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1468.png b/front/public/images/small/gregtech/gt.blockmachines/1468.png deleted file mode 100644 index 13ffc69147..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1468.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1469.png b/front/public/images/small/gregtech/gt.blockmachines/1469.png deleted file mode 100644 index 5983353d15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1469.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/147.png b/front/public/images/small/gregtech/gt.blockmachines/147.png deleted file mode 100644 index d969b69995..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/147.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1470.png b/front/public/images/small/gregtech/gt.blockmachines/1470.png deleted file mode 100644 index ffc78b24ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1471.png b/front/public/images/small/gregtech/gt.blockmachines/1471.png deleted file mode 100644 index bb69c253d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/148.png b/front/public/images/small/gregtech/gt.blockmachines/148.png deleted file mode 100644 index 23edb3e25f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/148.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1480.png b/front/public/images/small/gregtech/gt.blockmachines/1480.png deleted file mode 100644 index 1c70b5dfcc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1480.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1481.png b/front/public/images/small/gregtech/gt.blockmachines/1481.png deleted file mode 100644 index 41aa8a047b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1481.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1482.png b/front/public/images/small/gregtech/gt.blockmachines/1482.png deleted file mode 100644 index 3b8ae9f92f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1482.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1483.png b/front/public/images/small/gregtech/gt.blockmachines/1483.png deleted file mode 100644 index 9c012a7708..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1483.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1484.png b/front/public/images/small/gregtech/gt.blockmachines/1484.png deleted file mode 100644 index 2fcf01a490..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1484.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1485.png b/front/public/images/small/gregtech/gt.blockmachines/1485.png deleted file mode 100644 index f6b3123b9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1486.png b/front/public/images/small/gregtech/gt.blockmachines/1486.png deleted file mode 100644 index a00d777042..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1486.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1487.png b/front/public/images/small/gregtech/gt.blockmachines/1487.png deleted file mode 100644 index e7b3141004..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1487.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1488.png b/front/public/images/small/gregtech/gt.blockmachines/1488.png deleted file mode 100644 index 6386490e4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1489.png b/front/public/images/small/gregtech/gt.blockmachines/1489.png deleted file mode 100644 index 79a0be54ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/149.png b/front/public/images/small/gregtech/gt.blockmachines/149.png deleted file mode 100644 index 565a6d3ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/149.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1490.png b/front/public/images/small/gregtech/gt.blockmachines/1490.png deleted file mode 100644 index 03ec4eb01d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1490.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1491.png b/front/public/images/small/gregtech/gt.blockmachines/1491.png deleted file mode 100644 index 85a095b5c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1491.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15.png b/front/public/images/small/gregtech/gt.blockmachines/15.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/150.png b/front/public/images/small/gregtech/gt.blockmachines/150.png deleted file mode 100644 index 6972ae0a77..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1500.png b/front/public/images/small/gregtech/gt.blockmachines/1500.png deleted file mode 100644 index 81830ef454..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1501.png b/front/public/images/small/gregtech/gt.blockmachines/1501.png deleted file mode 100644 index 975e2cc094..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1502.png b/front/public/images/small/gregtech/gt.blockmachines/1502.png deleted file mode 100644 index f0e381ec4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1503.png b/front/public/images/small/gregtech/gt.blockmachines/1503.png deleted file mode 100644 index 273728ee4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1504.png b/front/public/images/small/gregtech/gt.blockmachines/1504.png deleted file mode 100644 index 405b70cab4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1505.png b/front/public/images/small/gregtech/gt.blockmachines/1505.png deleted file mode 100644 index 22f6d87480..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1506.png b/front/public/images/small/gregtech/gt.blockmachines/1506.png deleted file mode 100644 index 53a43e9e83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15065.png b/front/public/images/small/gregtech/gt.blockmachines/15065.png deleted file mode 100644 index 2778182420..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15066.png b/front/public/images/small/gregtech/gt.blockmachines/15066.png deleted file mode 100644 index 892a3ea386..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15067.png b/front/public/images/small/gregtech/gt.blockmachines/15067.png deleted file mode 100644 index 118f8148ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15068.png b/front/public/images/small/gregtech/gt.blockmachines/15068.png deleted file mode 100644 index 98d493ccb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15069.png b/front/public/images/small/gregtech/gt.blockmachines/15069.png deleted file mode 100644 index 29222f8c67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1507.png b/front/public/images/small/gregtech/gt.blockmachines/1507.png deleted file mode 100644 index c57490949f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15070.png b/front/public/images/small/gregtech/gt.blockmachines/15070.png deleted file mode 100644 index 097a6b0c6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15071.png b/front/public/images/small/gregtech/gt.blockmachines/15071.png deleted file mode 100644 index 90462e9952..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15072.png b/front/public/images/small/gregtech/gt.blockmachines/15072.png deleted file mode 100644 index 051fa826fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15073.png b/front/public/images/small/gregtech/gt.blockmachines/15073.png deleted file mode 100644 index 302fdee64a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15074.png b/front/public/images/small/gregtech/gt.blockmachines/15074.png deleted file mode 100644 index 531b05339c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15075.png b/front/public/images/small/gregtech/gt.blockmachines/15075.png deleted file mode 100644 index a3969029d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15076.png b/front/public/images/small/gregtech/gt.blockmachines/15076.png deleted file mode 100644 index 66e196ba3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15077.png b/front/public/images/small/gregtech/gt.blockmachines/15077.png deleted file mode 100644 index 72781e69d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15078.png b/front/public/images/small/gregtech/gt.blockmachines/15078.png deleted file mode 100644 index 33e453aef7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15079.png b/front/public/images/small/gregtech/gt.blockmachines/15079.png deleted file mode 100644 index ab65c224b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15079.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1508.png b/front/public/images/small/gregtech/gt.blockmachines/1508.png deleted file mode 100644 index 83e4726c6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15080.png b/front/public/images/small/gregtech/gt.blockmachines/15080.png deleted file mode 100644 index 88e3dadd7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15081.png b/front/public/images/small/gregtech/gt.blockmachines/15081.png deleted file mode 100644 index 3a45eb2fb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15082.png b/front/public/images/small/gregtech/gt.blockmachines/15082.png deleted file mode 100644 index ebde003ad1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15082.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15083.png b/front/public/images/small/gregtech/gt.blockmachines/15083.png deleted file mode 100644 index 3845fcec88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15084.png b/front/public/images/small/gregtech/gt.blockmachines/15084.png deleted file mode 100644 index 30f08c43d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15085.png b/front/public/images/small/gregtech/gt.blockmachines/15085.png deleted file mode 100644 index 059237e769..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15086.png b/front/public/images/small/gregtech/gt.blockmachines/15086.png deleted file mode 100644 index f3a23b7b86..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15087.png b/front/public/images/small/gregtech/gt.blockmachines/15087.png deleted file mode 100644 index fdc05878c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15087.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15088.png b/front/public/images/small/gregtech/gt.blockmachines/15088.png deleted file mode 100644 index 20a6a82802..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15088.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15089.png b/front/public/images/small/gregtech/gt.blockmachines/15089.png deleted file mode 100644 index 8e17d16bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1509.png b/front/public/images/small/gregtech/gt.blockmachines/1509.png deleted file mode 100644 index 3f0bf29eff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15090.png b/front/public/images/small/gregtech/gt.blockmachines/15090.png deleted file mode 100644 index 9f31806e89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15091.png b/front/public/images/small/gregtech/gt.blockmachines/15091.png deleted file mode 100644 index 8cb82b615c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15091.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15092.png b/front/public/images/small/gregtech/gt.blockmachines/15092.png deleted file mode 100644 index 95d4ddb39d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15092.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15093.png b/front/public/images/small/gregtech/gt.blockmachines/15093.png deleted file mode 100644 index e846031fc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15093.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15094.png b/front/public/images/small/gregtech/gt.blockmachines/15094.png deleted file mode 100644 index 2c60ccf0f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15094.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15095.png b/front/public/images/small/gregtech/gt.blockmachines/15095.png deleted file mode 100644 index 8d35853a9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15095.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15096.png b/front/public/images/small/gregtech/gt.blockmachines/15096.png deleted file mode 100644 index 4d69e597ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15097.png b/front/public/images/small/gregtech/gt.blockmachines/15097.png deleted file mode 100644 index 4254049203..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/151.png b/front/public/images/small/gregtech/gt.blockmachines/151.png deleted file mode 100644 index 2c7fceba64..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/151.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1510.png b/front/public/images/small/gregtech/gt.blockmachines/1510.png deleted file mode 100644 index 8958af590b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15100.png b/front/public/images/small/gregtech/gt.blockmachines/15100.png deleted file mode 100644 index 2dd47e23cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15101.png b/front/public/images/small/gregtech/gt.blockmachines/15101.png deleted file mode 100644 index aefd7d4c31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15102.png b/front/public/images/small/gregtech/gt.blockmachines/15102.png deleted file mode 100644 index 7302620bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15103.png b/front/public/images/small/gregtech/gt.blockmachines/15103.png deleted file mode 100644 index eadbb0f6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15104.png b/front/public/images/small/gregtech/gt.blockmachines/15104.png deleted file mode 100644 index 911f6a2777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15105.png b/front/public/images/small/gregtech/gt.blockmachines/15105.png deleted file mode 100644 index 5e0b7bc768..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15105.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15106.png b/front/public/images/small/gregtech/gt.blockmachines/15106.png deleted file mode 100644 index 05c6add0b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15107.png b/front/public/images/small/gregtech/gt.blockmachines/15107.png deleted file mode 100644 index b173af624c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15107.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15108.png b/front/public/images/small/gregtech/gt.blockmachines/15108.png deleted file mode 100644 index b2cbf438a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15108.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15109.png b/front/public/images/small/gregtech/gt.blockmachines/15109.png deleted file mode 100644 index 1247685bef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15109.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1511.png b/front/public/images/small/gregtech/gt.blockmachines/1511.png deleted file mode 100644 index 0265dcfeec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15110.png b/front/public/images/small/gregtech/gt.blockmachines/15110.png deleted file mode 100644 index 2dd47e23cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15111.png b/front/public/images/small/gregtech/gt.blockmachines/15111.png deleted file mode 100644 index aefd7d4c31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15112.png b/front/public/images/small/gregtech/gt.blockmachines/15112.png deleted file mode 100644 index 7302620bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15113.png b/front/public/images/small/gregtech/gt.blockmachines/15113.png deleted file mode 100644 index eadbb0f6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15113.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15114.png b/front/public/images/small/gregtech/gt.blockmachines/15114.png deleted file mode 100644 index 911f6a2777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15115.png b/front/public/images/small/gregtech/gt.blockmachines/15115.png deleted file mode 100644 index 5e0b7bc768..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15115.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15116.png b/front/public/images/small/gregtech/gt.blockmachines/15116.png deleted file mode 100644 index 05c6add0b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15116.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15117.png b/front/public/images/small/gregtech/gt.blockmachines/15117.png deleted file mode 100644 index b173af624c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15117.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15118.png b/front/public/images/small/gregtech/gt.blockmachines/15118.png deleted file mode 100644 index b2cbf438a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15118.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15119.png b/front/public/images/small/gregtech/gt.blockmachines/15119.png deleted file mode 100644 index 1247685bef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15119.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15120.png b/front/public/images/small/gregtech/gt.blockmachines/15120.png deleted file mode 100644 index 2dd47e23cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15120.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15121.png b/front/public/images/small/gregtech/gt.blockmachines/15121.png deleted file mode 100644 index aefd7d4c31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15121.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15122.png b/front/public/images/small/gregtech/gt.blockmachines/15122.png deleted file mode 100644 index 7302620bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15122.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15123.png b/front/public/images/small/gregtech/gt.blockmachines/15123.png deleted file mode 100644 index eadbb0f6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15123.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15124.png b/front/public/images/small/gregtech/gt.blockmachines/15124.png deleted file mode 100644 index 911f6a2777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15124.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15125.png b/front/public/images/small/gregtech/gt.blockmachines/15125.png deleted file mode 100644 index 5e0b7bc768..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15125.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15126.png b/front/public/images/small/gregtech/gt.blockmachines/15126.png deleted file mode 100644 index 05c6add0b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15126.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15127.png b/front/public/images/small/gregtech/gt.blockmachines/15127.png deleted file mode 100644 index b173af624c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15127.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15128.png b/front/public/images/small/gregtech/gt.blockmachines/15128.png deleted file mode 100644 index b2cbf438a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15128.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15129.png b/front/public/images/small/gregtech/gt.blockmachines/15129.png deleted file mode 100644 index 1247685bef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15130.png b/front/public/images/small/gregtech/gt.blockmachines/15130.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15131.png b/front/public/images/small/gregtech/gt.blockmachines/15131.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15132.png b/front/public/images/small/gregtech/gt.blockmachines/15132.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15132.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15133.png b/front/public/images/small/gregtech/gt.blockmachines/15133.png deleted file mode 100644 index 9efd2df8d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15133.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15134.png b/front/public/images/small/gregtech/gt.blockmachines/15134.png deleted file mode 100644 index aebc6499a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15135.png b/front/public/images/small/gregtech/gt.blockmachines/15135.png deleted file mode 100644 index 61ded29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15135.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15136.png b/front/public/images/small/gregtech/gt.blockmachines/15136.png deleted file mode 100644 index 1658bd8e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15136.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15137.png b/front/public/images/small/gregtech/gt.blockmachines/15137.png deleted file mode 100644 index 471d6d8121..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15137.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15138.png b/front/public/images/small/gregtech/gt.blockmachines/15138.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15138.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15140.png b/front/public/images/small/gregtech/gt.blockmachines/15140.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15140.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15141.png b/front/public/images/small/gregtech/gt.blockmachines/15141.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15142.png b/front/public/images/small/gregtech/gt.blockmachines/15142.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15142.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15143.png b/front/public/images/small/gregtech/gt.blockmachines/15143.png deleted file mode 100644 index 9efd2df8d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15144.png b/front/public/images/small/gregtech/gt.blockmachines/15144.png deleted file mode 100644 index aebc6499a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15145.png b/front/public/images/small/gregtech/gt.blockmachines/15145.png deleted file mode 100644 index 61ded29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15145.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15146.png b/front/public/images/small/gregtech/gt.blockmachines/15146.png deleted file mode 100644 index 1658bd8e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15146.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15147.png b/front/public/images/small/gregtech/gt.blockmachines/15147.png deleted file mode 100644 index 471d6d8121..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15147.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15148.png b/front/public/images/small/gregtech/gt.blockmachines/15148.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15148.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15150.png b/front/public/images/small/gregtech/gt.blockmachines/15150.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15151.png b/front/public/images/small/gregtech/gt.blockmachines/15151.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15151.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15152.png b/front/public/images/small/gregtech/gt.blockmachines/15152.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15152.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15153.png b/front/public/images/small/gregtech/gt.blockmachines/15153.png deleted file mode 100644 index 9efd2df8d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15153.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15154.png b/front/public/images/small/gregtech/gt.blockmachines/15154.png deleted file mode 100644 index aebc6499a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15154.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15155.png b/front/public/images/small/gregtech/gt.blockmachines/15155.png deleted file mode 100644 index 61ded29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15155.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15156.png b/front/public/images/small/gregtech/gt.blockmachines/15156.png deleted file mode 100644 index 1658bd8e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15156.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15157.png b/front/public/images/small/gregtech/gt.blockmachines/15157.png deleted file mode 100644 index 471d6d8121..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15157.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15158.png b/front/public/images/small/gregtech/gt.blockmachines/15158.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15158.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15160.png b/front/public/images/small/gregtech/gt.blockmachines/15160.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15160.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15161.png b/front/public/images/small/gregtech/gt.blockmachines/15161.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15161.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15162.png b/front/public/images/small/gregtech/gt.blockmachines/15162.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15162.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15163.png b/front/public/images/small/gregtech/gt.blockmachines/15163.png deleted file mode 100644 index 9efd2df8d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15163.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15164.png b/front/public/images/small/gregtech/gt.blockmachines/15164.png deleted file mode 100644 index aebc6499a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15164.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15165.png b/front/public/images/small/gregtech/gt.blockmachines/15165.png deleted file mode 100644 index 61ded29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15165.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15166.png b/front/public/images/small/gregtech/gt.blockmachines/15166.png deleted file mode 100644 index 1658bd8e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15166.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15167.png b/front/public/images/small/gregtech/gt.blockmachines/15167.png deleted file mode 100644 index 471d6d8121..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15167.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15168.png b/front/public/images/small/gregtech/gt.blockmachines/15168.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15168.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15170.png b/front/public/images/small/gregtech/gt.blockmachines/15170.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15170.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15171.png b/front/public/images/small/gregtech/gt.blockmachines/15171.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15171.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15172.png b/front/public/images/small/gregtech/gt.blockmachines/15172.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15172.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15173.png b/front/public/images/small/gregtech/gt.blockmachines/15173.png deleted file mode 100644 index 9efd2df8d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15173.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15174.png b/front/public/images/small/gregtech/gt.blockmachines/15174.png deleted file mode 100644 index aebc6499a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15174.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15175.png b/front/public/images/small/gregtech/gt.blockmachines/15175.png deleted file mode 100644 index 61ded29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15175.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15176.png b/front/public/images/small/gregtech/gt.blockmachines/15176.png deleted file mode 100644 index 1658bd8e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15176.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15177.png b/front/public/images/small/gregtech/gt.blockmachines/15177.png deleted file mode 100644 index 471d6d8121..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15177.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15178.png b/front/public/images/small/gregtech/gt.blockmachines/15178.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15178.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15180.png b/front/public/images/small/gregtech/gt.blockmachines/15180.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15180.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15181.png b/front/public/images/small/gregtech/gt.blockmachines/15181.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15181.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15182.png b/front/public/images/small/gregtech/gt.blockmachines/15182.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15182.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15183.png b/front/public/images/small/gregtech/gt.blockmachines/15183.png deleted file mode 100644 index 9efd2df8d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15183.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15184.png b/front/public/images/small/gregtech/gt.blockmachines/15184.png deleted file mode 100644 index aebc6499a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15184.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15185.png b/front/public/images/small/gregtech/gt.blockmachines/15185.png deleted file mode 100644 index 61ded29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15185.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15186.png b/front/public/images/small/gregtech/gt.blockmachines/15186.png deleted file mode 100644 index 1658bd8e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15186.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15187.png b/front/public/images/small/gregtech/gt.blockmachines/15187.png deleted file mode 100644 index 471d6d8121..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15187.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15188.png b/front/public/images/small/gregtech/gt.blockmachines/15188.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15188.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15190.png b/front/public/images/small/gregtech/gt.blockmachines/15190.png deleted file mode 100644 index 0f889ba216..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15190.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15191.png b/front/public/images/small/gregtech/gt.blockmachines/15191.png deleted file mode 100644 index a0d05fc6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15191.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15192.png b/front/public/images/small/gregtech/gt.blockmachines/15192.png deleted file mode 100644 index eceb5f29bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15192.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15193.png b/front/public/images/small/gregtech/gt.blockmachines/15193.png deleted file mode 100644 index 9efd2df8d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15193.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15194.png b/front/public/images/small/gregtech/gt.blockmachines/15194.png deleted file mode 100644 index aebc6499a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15194.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15195.png b/front/public/images/small/gregtech/gt.blockmachines/15195.png deleted file mode 100644 index 61ded29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15195.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15196.png b/front/public/images/small/gregtech/gt.blockmachines/15196.png deleted file mode 100644 index 1658bd8e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15196.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15197.png b/front/public/images/small/gregtech/gt.blockmachines/15197.png deleted file mode 100644 index 471d6d8121..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15197.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15198.png b/front/public/images/small/gregtech/gt.blockmachines/15198.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15198.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15199.png b/front/public/images/small/gregtech/gt.blockmachines/15199.png deleted file mode 100644 index ab389968d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15199.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/152.png b/front/public/images/small/gregtech/gt.blockmachines/152.png deleted file mode 100644 index 364a799cec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/152.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1520.png b/front/public/images/small/gregtech/gt.blockmachines/1520.png deleted file mode 100644 index 34b9b3d473..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15200.png b/front/public/images/small/gregtech/gt.blockmachines/15200.png deleted file mode 100644 index 2dd47e23cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15201.png b/front/public/images/small/gregtech/gt.blockmachines/15201.png deleted file mode 100644 index aefd7d4c31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15202.png b/front/public/images/small/gregtech/gt.blockmachines/15202.png deleted file mode 100644 index 7302620bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15203.png b/front/public/images/small/gregtech/gt.blockmachines/15203.png deleted file mode 100644 index eadbb0f6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15204.png b/front/public/images/small/gregtech/gt.blockmachines/15204.png deleted file mode 100644 index 911f6a2777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15205.png b/front/public/images/small/gregtech/gt.blockmachines/15205.png deleted file mode 100644 index 5e0b7bc768..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15206.png b/front/public/images/small/gregtech/gt.blockmachines/15206.png deleted file mode 100644 index 05c6add0b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15207.png b/front/public/images/small/gregtech/gt.blockmachines/15207.png deleted file mode 100644 index b173af624c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15208.png b/front/public/images/small/gregtech/gt.blockmachines/15208.png deleted file mode 100644 index b2cbf438a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15209.png b/front/public/images/small/gregtech/gt.blockmachines/15209.png deleted file mode 100644 index 1247685bef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1521.png b/front/public/images/small/gregtech/gt.blockmachines/1521.png deleted file mode 100644 index da2eb09215..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15210.png b/front/public/images/small/gregtech/gt.blockmachines/15210.png deleted file mode 100644 index 2dd47e23cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15210.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15211.png b/front/public/images/small/gregtech/gt.blockmachines/15211.png deleted file mode 100644 index aefd7d4c31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15211.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15212.png b/front/public/images/small/gregtech/gt.blockmachines/15212.png deleted file mode 100644 index 7302620bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15212.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15213.png b/front/public/images/small/gregtech/gt.blockmachines/15213.png deleted file mode 100644 index eadbb0f6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15213.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15214.png b/front/public/images/small/gregtech/gt.blockmachines/15214.png deleted file mode 100644 index 911f6a2777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15214.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15215.png b/front/public/images/small/gregtech/gt.blockmachines/15215.png deleted file mode 100644 index 5e0b7bc768..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15215.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15216.png b/front/public/images/small/gregtech/gt.blockmachines/15216.png deleted file mode 100644 index 05c6add0b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15216.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15217.png b/front/public/images/small/gregtech/gt.blockmachines/15217.png deleted file mode 100644 index b173af624c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15217.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15218.png b/front/public/images/small/gregtech/gt.blockmachines/15218.png deleted file mode 100644 index b2cbf438a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15218.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15219.png b/front/public/images/small/gregtech/gt.blockmachines/15219.png deleted file mode 100644 index 1247685bef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15219.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1522.png b/front/public/images/small/gregtech/gt.blockmachines/1522.png deleted file mode 100644 index e683fe488c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15220.png b/front/public/images/small/gregtech/gt.blockmachines/15220.png deleted file mode 100644 index 2dd47e23cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15220.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15221.png b/front/public/images/small/gregtech/gt.blockmachines/15221.png deleted file mode 100644 index aefd7d4c31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15221.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15222.png b/front/public/images/small/gregtech/gt.blockmachines/15222.png deleted file mode 100644 index 7302620bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15222.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15223.png b/front/public/images/small/gregtech/gt.blockmachines/15223.png deleted file mode 100644 index eadbb0f6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15223.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15224.png b/front/public/images/small/gregtech/gt.blockmachines/15224.png deleted file mode 100644 index 911f6a2777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15224.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15225.png b/front/public/images/small/gregtech/gt.blockmachines/15225.png deleted file mode 100644 index 5e0b7bc768..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15225.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15226.png b/front/public/images/small/gregtech/gt.blockmachines/15226.png deleted file mode 100644 index 05c6add0b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15226.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15227.png b/front/public/images/small/gregtech/gt.blockmachines/15227.png deleted file mode 100644 index b173af624c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15227.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15228.png b/front/public/images/small/gregtech/gt.blockmachines/15228.png deleted file mode 100644 index b2cbf438a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15228.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15229.png b/front/public/images/small/gregtech/gt.blockmachines/15229.png deleted file mode 100644 index 1247685bef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15229.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1523.png b/front/public/images/small/gregtech/gt.blockmachines/1523.png deleted file mode 100644 index fb535ac353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15230.png b/front/public/images/small/gregtech/gt.blockmachines/15230.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15231.png b/front/public/images/small/gregtech/gt.blockmachines/15231.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15231.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15232.png b/front/public/images/small/gregtech/gt.blockmachines/15232.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15232.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15233.png b/front/public/images/small/gregtech/gt.blockmachines/15233.png deleted file mode 100644 index 015347c891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15233.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15234.png b/front/public/images/small/gregtech/gt.blockmachines/15234.png deleted file mode 100644 index 42eb7a1628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15234.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15235.png b/front/public/images/small/gregtech/gt.blockmachines/15235.png deleted file mode 100644 index 8d27dcdce2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15235.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15236.png b/front/public/images/small/gregtech/gt.blockmachines/15236.png deleted file mode 100644 index 3125ee9c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15236.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15237.png b/front/public/images/small/gregtech/gt.blockmachines/15237.png deleted file mode 100644 index 810b7e7322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15237.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15238.png b/front/public/images/small/gregtech/gt.blockmachines/15238.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15238.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1524.png b/front/public/images/small/gregtech/gt.blockmachines/1524.png deleted file mode 100644 index abf3e4ca8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15240.png b/front/public/images/small/gregtech/gt.blockmachines/15240.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15240.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15241.png b/front/public/images/small/gregtech/gt.blockmachines/15241.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15241.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15242.png b/front/public/images/small/gregtech/gt.blockmachines/15242.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15242.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15243.png b/front/public/images/small/gregtech/gt.blockmachines/15243.png deleted file mode 100644 index 015347c891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15243.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15244.png b/front/public/images/small/gregtech/gt.blockmachines/15244.png deleted file mode 100644 index 42eb7a1628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15244.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15245.png b/front/public/images/small/gregtech/gt.blockmachines/15245.png deleted file mode 100644 index 8d27dcdce2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15245.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15246.png b/front/public/images/small/gregtech/gt.blockmachines/15246.png deleted file mode 100644 index 3125ee9c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15246.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15247.png b/front/public/images/small/gregtech/gt.blockmachines/15247.png deleted file mode 100644 index 810b7e7322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15247.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15248.png b/front/public/images/small/gregtech/gt.blockmachines/15248.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15248.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1525.png b/front/public/images/small/gregtech/gt.blockmachines/1525.png deleted file mode 100644 index 80201101b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15250.png b/front/public/images/small/gregtech/gt.blockmachines/15250.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15250.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15251.png b/front/public/images/small/gregtech/gt.blockmachines/15251.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15251.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15252.png b/front/public/images/small/gregtech/gt.blockmachines/15252.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15252.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15253.png b/front/public/images/small/gregtech/gt.blockmachines/15253.png deleted file mode 100644 index 015347c891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15253.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15254.png b/front/public/images/small/gregtech/gt.blockmachines/15254.png deleted file mode 100644 index 42eb7a1628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15254.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15255.png b/front/public/images/small/gregtech/gt.blockmachines/15255.png deleted file mode 100644 index 8d27dcdce2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15255.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15256.png b/front/public/images/small/gregtech/gt.blockmachines/15256.png deleted file mode 100644 index 3125ee9c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15256.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15257.png b/front/public/images/small/gregtech/gt.blockmachines/15257.png deleted file mode 100644 index 810b7e7322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15257.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15258.png b/front/public/images/small/gregtech/gt.blockmachines/15258.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15258.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1526.png b/front/public/images/small/gregtech/gt.blockmachines/1526.png deleted file mode 100644 index e2efdf63ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15260.png b/front/public/images/small/gregtech/gt.blockmachines/15260.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15260.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15261.png b/front/public/images/small/gregtech/gt.blockmachines/15261.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15261.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15262.png b/front/public/images/small/gregtech/gt.blockmachines/15262.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15262.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15263.png b/front/public/images/small/gregtech/gt.blockmachines/15263.png deleted file mode 100644 index 015347c891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15263.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15264.png b/front/public/images/small/gregtech/gt.blockmachines/15264.png deleted file mode 100644 index 42eb7a1628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15264.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15265.png b/front/public/images/small/gregtech/gt.blockmachines/15265.png deleted file mode 100644 index 8d27dcdce2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15265.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15266.png b/front/public/images/small/gregtech/gt.blockmachines/15266.png deleted file mode 100644 index 3125ee9c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15266.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15267.png b/front/public/images/small/gregtech/gt.blockmachines/15267.png deleted file mode 100644 index 810b7e7322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15267.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15268.png b/front/public/images/small/gregtech/gt.blockmachines/15268.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15268.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1527.png b/front/public/images/small/gregtech/gt.blockmachines/1527.png deleted file mode 100644 index 8d9bddcd6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15270.png b/front/public/images/small/gregtech/gt.blockmachines/15270.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15270.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15271.png b/front/public/images/small/gregtech/gt.blockmachines/15271.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15271.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15272.png b/front/public/images/small/gregtech/gt.blockmachines/15272.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15272.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15273.png b/front/public/images/small/gregtech/gt.blockmachines/15273.png deleted file mode 100644 index 015347c891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15273.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15274.png b/front/public/images/small/gregtech/gt.blockmachines/15274.png deleted file mode 100644 index 42eb7a1628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15274.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15275.png b/front/public/images/small/gregtech/gt.blockmachines/15275.png deleted file mode 100644 index 8d27dcdce2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15275.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15276.png b/front/public/images/small/gregtech/gt.blockmachines/15276.png deleted file mode 100644 index 3125ee9c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15276.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15277.png b/front/public/images/small/gregtech/gt.blockmachines/15277.png deleted file mode 100644 index 810b7e7322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15277.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15278.png b/front/public/images/small/gregtech/gt.blockmachines/15278.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15278.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1528.png b/front/public/images/small/gregtech/gt.blockmachines/1528.png deleted file mode 100644 index 33dacf63b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15280.png b/front/public/images/small/gregtech/gt.blockmachines/15280.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15280.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15281.png b/front/public/images/small/gregtech/gt.blockmachines/15281.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15281.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15282.png b/front/public/images/small/gregtech/gt.blockmachines/15282.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15282.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15283.png b/front/public/images/small/gregtech/gt.blockmachines/15283.png deleted file mode 100644 index 015347c891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15283.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15284.png b/front/public/images/small/gregtech/gt.blockmachines/15284.png deleted file mode 100644 index 42eb7a1628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15284.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15285.png b/front/public/images/small/gregtech/gt.blockmachines/15285.png deleted file mode 100644 index 8d27dcdce2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15285.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15286.png b/front/public/images/small/gregtech/gt.blockmachines/15286.png deleted file mode 100644 index 3125ee9c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15286.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15287.png b/front/public/images/small/gregtech/gt.blockmachines/15287.png deleted file mode 100644 index 810b7e7322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15287.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15288.png b/front/public/images/small/gregtech/gt.blockmachines/15288.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15288.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1529.png b/front/public/images/small/gregtech/gt.blockmachines/1529.png deleted file mode 100644 index 698d661144..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15290.png b/front/public/images/small/gregtech/gt.blockmachines/15290.png deleted file mode 100644 index dcacc5cb48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15290.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15291.png b/front/public/images/small/gregtech/gt.blockmachines/15291.png deleted file mode 100644 index 5daec0859f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15291.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15292.png b/front/public/images/small/gregtech/gt.blockmachines/15292.png deleted file mode 100644 index dca3668da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15292.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15293.png b/front/public/images/small/gregtech/gt.blockmachines/15293.png deleted file mode 100644 index 015347c891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15293.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15294.png b/front/public/images/small/gregtech/gt.blockmachines/15294.png deleted file mode 100644 index 42eb7a1628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15294.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15295.png b/front/public/images/small/gregtech/gt.blockmachines/15295.png deleted file mode 100644 index 8d27dcdce2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15295.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15296.png b/front/public/images/small/gregtech/gt.blockmachines/15296.png deleted file mode 100644 index 3125ee9c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15296.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15297.png b/front/public/images/small/gregtech/gt.blockmachines/15297.png deleted file mode 100644 index 810b7e7322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15297.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15298.png b/front/public/images/small/gregtech/gt.blockmachines/15298.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15298.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15299.png b/front/public/images/small/gregtech/gt.blockmachines/15299.png deleted file mode 100644 index 17f7d703ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/153.png b/front/public/images/small/gregtech/gt.blockmachines/153.png deleted file mode 100644 index ba8854df74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/153.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1530.png b/front/public/images/small/gregtech/gt.blockmachines/1530.png deleted file mode 100644 index bf750a7551..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15300.png b/front/public/images/small/gregtech/gt.blockmachines/15300.png deleted file mode 100644 index 66d83027d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1531.png b/front/public/images/small/gregtech/gt.blockmachines/1531.png deleted file mode 100644 index f62680c99c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15310.png b/front/public/images/small/gregtech/gt.blockmachines/15310.png deleted file mode 100644 index 1888297802..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15311.png b/front/public/images/small/gregtech/gt.blockmachines/15311.png deleted file mode 100644 index 293f46bf1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15312.png b/front/public/images/small/gregtech/gt.blockmachines/15312.png deleted file mode 100644 index 9a4d2c4338..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15313.png b/front/public/images/small/gregtech/gt.blockmachines/15313.png deleted file mode 100644 index 1888297802..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15314.png b/front/public/images/small/gregtech/gt.blockmachines/15314.png deleted file mode 100644 index ef7c1a446d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15331.png b/front/public/images/small/gregtech/gt.blockmachines/15331.png deleted file mode 100644 index 96e3ff14cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15350.png b/front/public/images/small/gregtech/gt.blockmachines/15350.png deleted file mode 100644 index 2091f90a14..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/154.png b/front/public/images/small/gregtech/gt.blockmachines/154.png deleted file mode 100644 index d4f82e6763..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/154.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1540.png b/front/public/images/small/gregtech/gt.blockmachines/1540.png deleted file mode 100644 index 4cd1ce54fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1541.png b/front/public/images/small/gregtech/gt.blockmachines/1541.png deleted file mode 100644 index b6a3a54a30..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15410.png b/front/public/images/small/gregtech/gt.blockmachines/15410.png deleted file mode 100644 index afe3c50603..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15410.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1542.png b/front/public/images/small/gregtech/gt.blockmachines/1542.png deleted file mode 100644 index 064bec09bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15420.png b/front/public/images/small/gregtech/gt.blockmachines/15420.png deleted file mode 100644 index 01c0a4c6d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15420.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15421.png b/front/public/images/small/gregtech/gt.blockmachines/15421.png deleted file mode 100644 index c0d2675bbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15421.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15422.png b/front/public/images/small/gregtech/gt.blockmachines/15422.png deleted file mode 100644 index e215415efb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15422.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1543.png b/front/public/images/small/gregtech/gt.blockmachines/1543.png deleted file mode 100644 index e73fcb5dac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15430.png b/front/public/images/small/gregtech/gt.blockmachines/15430.png deleted file mode 100644 index e0cabc308e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15430.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15431.png b/front/public/images/small/gregtech/gt.blockmachines/15431.png deleted file mode 100644 index cdb3e24409..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15431.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1544.png b/front/public/images/small/gregtech/gt.blockmachines/1544.png deleted file mode 100644 index d7053753e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15440.png b/front/public/images/small/gregtech/gt.blockmachines/15440.png deleted file mode 100644 index 953d7c4d48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15440.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15441.png b/front/public/images/small/gregtech/gt.blockmachines/15441.png deleted file mode 100644 index 953d7c4d48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15441.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15442.png b/front/public/images/small/gregtech/gt.blockmachines/15442.png deleted file mode 100644 index 953d7c4d48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15442.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15443.png b/front/public/images/small/gregtech/gt.blockmachines/15443.png deleted file mode 100644 index 953d7c4d48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15443.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1545.png b/front/public/images/small/gregtech/gt.blockmachines/1545.png deleted file mode 100644 index e6c57d9c1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15450.png b/front/public/images/small/gregtech/gt.blockmachines/15450.png deleted file mode 100644 index d2febfbc11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15450.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15451.png b/front/public/images/small/gregtech/gt.blockmachines/15451.png deleted file mode 100644 index 43f8d49aae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15451.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15452.png b/front/public/images/small/gregtech/gt.blockmachines/15452.png deleted file mode 100644 index efedfd022b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15452.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1546.png b/front/public/images/small/gregtech/gt.blockmachines/1546.png deleted file mode 100644 index 88b8051ed3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1546.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15465.png b/front/public/images/small/gregtech/gt.blockmachines/15465.png deleted file mode 100644 index ca73cbcddb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15465.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1547.png b/front/public/images/small/gregtech/gt.blockmachines/1547.png deleted file mode 100644 index 16575294d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1547.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15470.png b/front/public/images/small/gregtech/gt.blockmachines/15470.png deleted file mode 100644 index 243ef69486..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15472.png b/front/public/images/small/gregtech/gt.blockmachines/15472.png deleted file mode 100644 index 8ea1399612..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15473.png b/front/public/images/small/gregtech/gt.blockmachines/15473.png deleted file mode 100644 index c57e3e36be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1548.png b/front/public/images/small/gregtech/gt.blockmachines/1548.png deleted file mode 100644 index 4529e4642c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15480.png b/front/public/images/small/gregtech/gt.blockmachines/15480.png deleted file mode 100644 index de2a7b8524..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15480.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15485.png b/front/public/images/small/gregtech/gt.blockmachines/15485.png deleted file mode 100644 index e70d3d4ae2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15486.png b/front/public/images/small/gregtech/gt.blockmachines/15486.png deleted file mode 100644 index 0470210e92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15486.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15487.png b/front/public/images/small/gregtech/gt.blockmachines/15487.png deleted file mode 100644 index 2a3ff1dab6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15487.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15488.png b/front/public/images/small/gregtech/gt.blockmachines/15488.png deleted file mode 100644 index 302d65ec79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15489.png b/front/public/images/small/gregtech/gt.blockmachines/15489.png deleted file mode 100644 index a48e11271d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1549.png b/front/public/images/small/gregtech/gt.blockmachines/1549.png deleted file mode 100644 index 2c723a4453..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15490.png b/front/public/images/small/gregtech/gt.blockmachines/15490.png deleted file mode 100644 index fb6d1c21ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15490.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15491.png b/front/public/images/small/gregtech/gt.blockmachines/15491.png deleted file mode 100644 index 64b12fde9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15491.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15492.png b/front/public/images/small/gregtech/gt.blockmachines/15492.png deleted file mode 100644 index c695b23dde..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15492.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15493.png b/front/public/images/small/gregtech/gt.blockmachines/15493.png deleted file mode 100644 index 2d8d932146..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15493.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15495.png b/front/public/images/small/gregtech/gt.blockmachines/15495.png deleted file mode 100644 index 1a6a25cf88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15495.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15496.png b/front/public/images/small/gregtech/gt.blockmachines/15496.png deleted file mode 100644 index 41307b2222..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15496.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15497.png b/front/public/images/small/gregtech/gt.blockmachines/15497.png deleted file mode 100644 index 6bb37b145f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15497.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15498.png b/front/public/images/small/gregtech/gt.blockmachines/15498.png deleted file mode 100644 index e5a24a71b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15498.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15499.png b/front/public/images/small/gregtech/gt.blockmachines/15499.png deleted file mode 100644 index f6bb5cfb92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15499.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/155.png b/front/public/images/small/gregtech/gt.blockmachines/155.png deleted file mode 100644 index 6bb5c7c7b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/155.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1550.png b/front/public/images/small/gregtech/gt.blockmachines/1550.png deleted file mode 100644 index 6fc88de612..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1550.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15500.png b/front/public/images/small/gregtech/gt.blockmachines/15500.png deleted file mode 100644 index 715eda7299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15501.png b/front/public/images/small/gregtech/gt.blockmachines/15501.png deleted file mode 100644 index 715eda7299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15502.png b/front/public/images/small/gregtech/gt.blockmachines/15502.png deleted file mode 100644 index 715eda7299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15503.png b/front/public/images/small/gregtech/gt.blockmachines/15503.png deleted file mode 100644 index 715eda7299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15504.png b/front/public/images/small/gregtech/gt.blockmachines/15504.png deleted file mode 100644 index 715eda7299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15505.png b/front/public/images/small/gregtech/gt.blockmachines/15505.png deleted file mode 100644 index 715eda7299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15506.png b/front/public/images/small/gregtech/gt.blockmachines/15506.png deleted file mode 100644 index 715eda7299..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1551.png b/front/public/images/small/gregtech/gt.blockmachines/1551.png deleted file mode 100644 index 533265a52d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1551.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/15510.png b/front/public/images/small/gregtech/gt.blockmachines/15510.png deleted file mode 100644 index bc735e9194..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/15510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/156.png b/front/public/images/small/gregtech/gt.blockmachines/156.png deleted file mode 100644 index 1742c3172b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/156.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1560.png b/front/public/images/small/gregtech/gt.blockmachines/1560.png deleted file mode 100644 index 1f992e0e6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1560.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1561.png b/front/public/images/small/gregtech/gt.blockmachines/1561.png deleted file mode 100644 index 29343b6cad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1561.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1562.png b/front/public/images/small/gregtech/gt.blockmachines/1562.png deleted file mode 100644 index d8a5be6113..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1562.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1563.png b/front/public/images/small/gregtech/gt.blockmachines/1563.png deleted file mode 100644 index 0324583ff8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1563.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1564.png b/front/public/images/small/gregtech/gt.blockmachines/1564.png deleted file mode 100644 index 8f49545dc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1564.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1565.png b/front/public/images/small/gregtech/gt.blockmachines/1565.png deleted file mode 100644 index 8596fa15fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1565.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1566.png b/front/public/images/small/gregtech/gt.blockmachines/1566.png deleted file mode 100644 index 1c97b92391..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1566.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1567.png b/front/public/images/small/gregtech/gt.blockmachines/1567.png deleted file mode 100644 index e8ee4127c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1567.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1568.png b/front/public/images/small/gregtech/gt.blockmachines/1568.png deleted file mode 100644 index 1c2bf61636..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1568.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1569.png b/front/public/images/small/gregtech/gt.blockmachines/1569.png deleted file mode 100644 index c600f77fc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1569.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/157.png b/front/public/images/small/gregtech/gt.blockmachines/157.png deleted file mode 100644 index 50b54305e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/157.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1570.png b/front/public/images/small/gregtech/gt.blockmachines/1570.png deleted file mode 100644 index d0cd3712d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1570.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1571.png b/front/public/images/small/gregtech/gt.blockmachines/1571.png deleted file mode 100644 index b5ed9fc9e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1571.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/158.png b/front/public/images/small/gregtech/gt.blockmachines/158.png deleted file mode 100644 index 0a33fd929f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/158.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1580.png b/front/public/images/small/gregtech/gt.blockmachines/1580.png deleted file mode 100644 index b164400ffb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1580.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1581.png b/front/public/images/small/gregtech/gt.blockmachines/1581.png deleted file mode 100644 index b16c2a8f19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1582.png b/front/public/images/small/gregtech/gt.blockmachines/1582.png deleted file mode 100644 index d4a994d6d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1583.png b/front/public/images/small/gregtech/gt.blockmachines/1583.png deleted file mode 100644 index 89cd29fb40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1584.png b/front/public/images/small/gregtech/gt.blockmachines/1584.png deleted file mode 100644 index 03b26219e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1584.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1585.png b/front/public/images/small/gregtech/gt.blockmachines/1585.png deleted file mode 100644 index f140a55faf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1586.png b/front/public/images/small/gregtech/gt.blockmachines/1586.png deleted file mode 100644 index 32df36ef74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1587.png b/front/public/images/small/gregtech/gt.blockmachines/1587.png deleted file mode 100644 index 2e075cc434..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1587.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1588.png b/front/public/images/small/gregtech/gt.blockmachines/1588.png deleted file mode 100644 index a50a7d3125..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1589.png b/front/public/images/small/gregtech/gt.blockmachines/1589.png deleted file mode 100644 index 374c16e6ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1589.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/159.png b/front/public/images/small/gregtech/gt.blockmachines/159.png deleted file mode 100644 index e0f9f709d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/159.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1590.png b/front/public/images/small/gregtech/gt.blockmachines/1590.png deleted file mode 100644 index 0b8ddd5d94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1590.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1591.png b/front/public/images/small/gregtech/gt.blockmachines/1591.png deleted file mode 100644 index 39118c63aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1591.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16.png b/front/public/images/small/gregtech/gt.blockmachines/16.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/160.png b/front/public/images/small/gregtech/gt.blockmachines/160.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/160.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1600.png b/front/public/images/small/gregtech/gt.blockmachines/1600.png deleted file mode 100644 index 34b9b3d473..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1600.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16000.png b/front/public/images/small/gregtech/gt.blockmachines/16000.png deleted file mode 100644 index 7f767e2331..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16000.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16001.png b/front/public/images/small/gregtech/gt.blockmachines/16001.png deleted file mode 100644 index 53c36bdafe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16002.png b/front/public/images/small/gregtech/gt.blockmachines/16002.png deleted file mode 100644 index dff2e1fc27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16003.png b/front/public/images/small/gregtech/gt.blockmachines/16003.png deleted file mode 100644 index 4d6d0b2525..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16004.png b/front/public/images/small/gregtech/gt.blockmachines/16004.png deleted file mode 100644 index 31940e7f21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16005.png b/front/public/images/small/gregtech/gt.blockmachines/16005.png deleted file mode 100644 index 7f767e2331..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16006.png b/front/public/images/small/gregtech/gt.blockmachines/16006.png deleted file mode 100644 index 53c36bdafe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16007.png b/front/public/images/small/gregtech/gt.blockmachines/16007.png deleted file mode 100644 index dff2e1fc27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16008.png b/front/public/images/small/gregtech/gt.blockmachines/16008.png deleted file mode 100644 index 4d6d0b2525..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16009.png b/front/public/images/small/gregtech/gt.blockmachines/16009.png deleted file mode 100644 index 31940e7f21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1601.png b/front/public/images/small/gregtech/gt.blockmachines/1601.png deleted file mode 100644 index da2eb09215..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1601.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16010.png b/front/public/images/small/gregtech/gt.blockmachines/16010.png deleted file mode 100644 index 4a837a6493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16011.png b/front/public/images/small/gregtech/gt.blockmachines/16011.png deleted file mode 100644 index 4b5c866c3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16011.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16012.png b/front/public/images/small/gregtech/gt.blockmachines/16012.png deleted file mode 100644 index 3b1befcc37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16012.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16013.png b/front/public/images/small/gregtech/gt.blockmachines/16013.png deleted file mode 100644 index 40bdb7cfb2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16013.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16014.png b/front/public/images/small/gregtech/gt.blockmachines/16014.png deleted file mode 100644 index 1b1334f3a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16014.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16015.png b/front/public/images/small/gregtech/gt.blockmachines/16015.png deleted file mode 100644 index e22d5018ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16015.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16016.png b/front/public/images/small/gregtech/gt.blockmachines/16016.png deleted file mode 100644 index b43feb088e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16016.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16017.png b/front/public/images/small/gregtech/gt.blockmachines/16017.png deleted file mode 100644 index 1464b61507..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16017.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16018.png b/front/public/images/small/gregtech/gt.blockmachines/16018.png deleted file mode 100644 index 078820a454..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16019.png b/front/public/images/small/gregtech/gt.blockmachines/16019.png deleted file mode 100644 index a219009304..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1602.png b/front/public/images/small/gregtech/gt.blockmachines/1602.png deleted file mode 100644 index e683fe488c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1602.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1603.png b/front/public/images/small/gregtech/gt.blockmachines/1603.png deleted file mode 100644 index fb535ac353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1603.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1604.png b/front/public/images/small/gregtech/gt.blockmachines/1604.png deleted file mode 100644 index abf3e4ca8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1604.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1605.png b/front/public/images/small/gregtech/gt.blockmachines/1605.png deleted file mode 100644 index 80201101b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1605.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/161.png b/front/public/images/small/gregtech/gt.blockmachines/161.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/161.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/162.png b/front/public/images/small/gregtech/gt.blockmachines/162.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/162.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1620.png b/front/public/images/small/gregtech/gt.blockmachines/1620.png deleted file mode 100644 index 6f81768f39..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1620.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1621.png b/front/public/images/small/gregtech/gt.blockmachines/1621.png deleted file mode 100644 index 0c835e744b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1621.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1622.png b/front/public/images/small/gregtech/gt.blockmachines/1622.png deleted file mode 100644 index 89b45b096a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1622.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1623.png b/front/public/images/small/gregtech/gt.blockmachines/1623.png deleted file mode 100644 index 1e9c95e563..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1623.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1624.png b/front/public/images/small/gregtech/gt.blockmachines/1624.png deleted file mode 100644 index 1b7f67c2b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1624.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1625.png b/front/public/images/small/gregtech/gt.blockmachines/1625.png deleted file mode 100644 index 6142c80a7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1625.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1626.png b/front/public/images/small/gregtech/gt.blockmachines/1626.png deleted file mode 100644 index e04fb3b9a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1626.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1627.png b/front/public/images/small/gregtech/gt.blockmachines/1627.png deleted file mode 100644 index 511cc3b010..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1627.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1628.png b/front/public/images/small/gregtech/gt.blockmachines/1628.png deleted file mode 100644 index 8be2d51959..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1628.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1629.png b/front/public/images/small/gregtech/gt.blockmachines/1629.png deleted file mode 100644 index efee941a05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1629.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/163.png b/front/public/images/small/gregtech/gt.blockmachines/163.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/163.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1630.png b/front/public/images/small/gregtech/gt.blockmachines/1630.png deleted file mode 100644 index 10289a586b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1630.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1631.png b/front/public/images/small/gregtech/gt.blockmachines/1631.png deleted file mode 100644 index 80670edf00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/164.png b/front/public/images/small/gregtech/gt.blockmachines/164.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/164.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1640.png b/front/public/images/small/gregtech/gt.blockmachines/1640.png deleted file mode 100644 index 1a88b7f526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1640.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1641.png b/front/public/images/small/gregtech/gt.blockmachines/1641.png deleted file mode 100644 index ac3b706559..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1641.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1642.png b/front/public/images/small/gregtech/gt.blockmachines/1642.png deleted file mode 100644 index d1696c0d2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1643.png b/front/public/images/small/gregtech/gt.blockmachines/1643.png deleted file mode 100644 index b0ad5e184c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1644.png b/front/public/images/small/gregtech/gt.blockmachines/1644.png deleted file mode 100644 index 428e0761c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1645.png b/front/public/images/small/gregtech/gt.blockmachines/1645.png deleted file mode 100644 index d00e1e9312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1646.png b/front/public/images/small/gregtech/gt.blockmachines/1646.png deleted file mode 100644 index a7462b4f9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1647.png b/front/public/images/small/gregtech/gt.blockmachines/1647.png deleted file mode 100644 index 1e91087bf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1647.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1648.png b/front/public/images/small/gregtech/gt.blockmachines/1648.png deleted file mode 100644 index bc14e2d264..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1648.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1649.png b/front/public/images/small/gregtech/gt.blockmachines/1649.png deleted file mode 100644 index b8546d57d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/165.png b/front/public/images/small/gregtech/gt.blockmachines/165.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/165.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1650.png b/front/public/images/small/gregtech/gt.blockmachines/1650.png deleted file mode 100644 index 2663773799..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1650.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1651.png b/front/public/images/small/gregtech/gt.blockmachines/1651.png deleted file mode 100644 index 28564ae634..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1651.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/166.png b/front/public/images/small/gregtech/gt.blockmachines/166.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/166.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1660.png b/front/public/images/small/gregtech/gt.blockmachines/1660.png deleted file mode 100644 index c873361d4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1660.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1661.png b/front/public/images/small/gregtech/gt.blockmachines/1661.png deleted file mode 100644 index 3159c8cebd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1661.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1662.png b/front/public/images/small/gregtech/gt.blockmachines/1662.png deleted file mode 100644 index 0e996bd87c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1662.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1663.png b/front/public/images/small/gregtech/gt.blockmachines/1663.png deleted file mode 100644 index 72d36e73ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1663.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1664.png b/front/public/images/small/gregtech/gt.blockmachines/1664.png deleted file mode 100644 index 8582ea8462..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1664.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1665.png b/front/public/images/small/gregtech/gt.blockmachines/1665.png deleted file mode 100644 index 0873cdae4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1665.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1666.png b/front/public/images/small/gregtech/gt.blockmachines/1666.png deleted file mode 100644 index 17139f31c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1666.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1667.png b/front/public/images/small/gregtech/gt.blockmachines/1667.png deleted file mode 100644 index e857d815d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1667.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1668.png b/front/public/images/small/gregtech/gt.blockmachines/1668.png deleted file mode 100644 index f457066b26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1668.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1669.png b/front/public/images/small/gregtech/gt.blockmachines/1669.png deleted file mode 100644 index c80443f81e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1669.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/167.png b/front/public/images/small/gregtech/gt.blockmachines/167.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/167.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1670.png b/front/public/images/small/gregtech/gt.blockmachines/1670.png deleted file mode 100644 index 6dd01d47bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1670.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1671.png b/front/public/images/small/gregtech/gt.blockmachines/1671.png deleted file mode 100644 index c3c9100b7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1671.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/168.png b/front/public/images/small/gregtech/gt.blockmachines/168.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/168.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1680.png b/front/public/images/small/gregtech/gt.blockmachines/1680.png deleted file mode 100644 index a250835879..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1680.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1681.png b/front/public/images/small/gregtech/gt.blockmachines/1681.png deleted file mode 100644 index a1e1858c5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1681.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1682.png b/front/public/images/small/gregtech/gt.blockmachines/1682.png deleted file mode 100644 index 4e8950bcd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1682.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1683.png b/front/public/images/small/gregtech/gt.blockmachines/1683.png deleted file mode 100644 index 8a39f881ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1683.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1684.png b/front/public/images/small/gregtech/gt.blockmachines/1684.png deleted file mode 100644 index 9292885733..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1684.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1685.png b/front/public/images/small/gregtech/gt.blockmachines/1685.png deleted file mode 100644 index 84c31e9f30..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1685.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1686.png b/front/public/images/small/gregtech/gt.blockmachines/1686.png deleted file mode 100644 index 8c07273ca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1686.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1687.png b/front/public/images/small/gregtech/gt.blockmachines/1687.png deleted file mode 100644 index 97e0522b6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1687.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1688.png b/front/public/images/small/gregtech/gt.blockmachines/1688.png deleted file mode 100644 index 0a2edd9a93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1688.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1689.png b/front/public/images/small/gregtech/gt.blockmachines/1689.png deleted file mode 100644 index 8fd6487d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1689.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/169.png b/front/public/images/small/gregtech/gt.blockmachines/169.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/169.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1690.png b/front/public/images/small/gregtech/gt.blockmachines/1690.png deleted file mode 100644 index 505896ef46..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1690.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1691.png b/front/public/images/small/gregtech/gt.blockmachines/1691.png deleted file mode 100644 index 616d9b5592..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1691.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/16999.png b/front/public/images/small/gregtech/gt.blockmachines/16999.png deleted file mode 100644 index a3df57c78f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/16999.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17.png b/front/public/images/small/gregtech/gt.blockmachines/17.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/170.png b/front/public/images/small/gregtech/gt.blockmachines/170.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/170.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1700.png b/front/public/images/small/gregtech/gt.blockmachines/1700.png deleted file mode 100644 index 51347bcccb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1700.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17000.png b/front/public/images/small/gregtech/gt.blockmachines/17000.png deleted file mode 100644 index 47faadde8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17000.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17002.png b/front/public/images/small/gregtech/gt.blockmachines/17002.png deleted file mode 100644 index 80551604bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17003.png b/front/public/images/small/gregtech/gt.blockmachines/17003.png deleted file mode 100644 index e8b22835bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17004.png b/front/public/images/small/gregtech/gt.blockmachines/17004.png deleted file mode 100644 index 326a5a166a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17005.png b/front/public/images/small/gregtech/gt.blockmachines/17005.png deleted file mode 100644 index ce0be5c5e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17006.png b/front/public/images/small/gregtech/gt.blockmachines/17006.png deleted file mode 100644 index 01202ce427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17007.png b/front/public/images/small/gregtech/gt.blockmachines/17007.png deleted file mode 100644 index 2b8da8dbf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17008.png b/front/public/images/small/gregtech/gt.blockmachines/17008.png deleted file mode 100644 index 9bae696387..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17009.png b/front/public/images/small/gregtech/gt.blockmachines/17009.png deleted file mode 100644 index 0d1b389808..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1701.png b/front/public/images/small/gregtech/gt.blockmachines/1701.png deleted file mode 100644 index 14cf6f3292..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1701.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17010.png b/front/public/images/small/gregtech/gt.blockmachines/17010.png deleted file mode 100644 index 3e12486725..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17011.png b/front/public/images/small/gregtech/gt.blockmachines/17011.png deleted file mode 100644 index 80551604bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17011.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17012.png b/front/public/images/small/gregtech/gt.blockmachines/17012.png deleted file mode 100644 index f9c655a109..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17012.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17013.png b/front/public/images/small/gregtech/gt.blockmachines/17013.png deleted file mode 100644 index 80551604bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17013.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17014.png b/front/public/images/small/gregtech/gt.blockmachines/17014.png deleted file mode 100644 index 80551604bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17014.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17015.png b/front/public/images/small/gregtech/gt.blockmachines/17015.png deleted file mode 100644 index 80551604bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17015.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17018.png b/front/public/images/small/gregtech/gt.blockmachines/17018.png deleted file mode 100644 index 965056f806..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17019.png b/front/public/images/small/gregtech/gt.blockmachines/17019.png deleted file mode 100644 index a5fa6366ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1702.png b/front/public/images/small/gregtech/gt.blockmachines/1702.png deleted file mode 100644 index e34cfcaf6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1702.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17020.png b/front/public/images/small/gregtech/gt.blockmachines/17020.png deleted file mode 100644 index 5080c80c97..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17021.png b/front/public/images/small/gregtech/gt.blockmachines/17021.png deleted file mode 100644 index 53451bcd5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17022.png b/front/public/images/small/gregtech/gt.blockmachines/17022.png deleted file mode 100644 index 0d9f37e1b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17023.png b/front/public/images/small/gregtech/gt.blockmachines/17023.png deleted file mode 100644 index 38aa563a60..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17024.png b/front/public/images/small/gregtech/gt.blockmachines/17024.png deleted file mode 100644 index 5dd8cc0547..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17024.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17025.png b/front/public/images/small/gregtech/gt.blockmachines/17025.png deleted file mode 100644 index 9a3932caa0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17026.png b/front/public/images/small/gregtech/gt.blockmachines/17026.png deleted file mode 100644 index 0b8443fbf2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17027.png b/front/public/images/small/gregtech/gt.blockmachines/17027.png deleted file mode 100644 index 965056f806..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17028.png b/front/public/images/small/gregtech/gt.blockmachines/17028.png deleted file mode 100644 index 776b9710af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17029.png b/front/public/images/small/gregtech/gt.blockmachines/17029.png deleted file mode 100644 index 965056f806..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1703.png b/front/public/images/small/gregtech/gt.blockmachines/1703.png deleted file mode 100644 index beb00979c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1703.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17030.png b/front/public/images/small/gregtech/gt.blockmachines/17030.png deleted file mode 100644 index 965056f806..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/17031.png b/front/public/images/small/gregtech/gt.blockmachines/17031.png deleted file mode 100644 index 965056f806..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/17031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1704.png b/front/public/images/small/gregtech/gt.blockmachines/1704.png deleted file mode 100644 index 37786c8024..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1704.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1705.png b/front/public/images/small/gregtech/gt.blockmachines/1705.png deleted file mode 100644 index 727d99165f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1705.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1706.png b/front/public/images/small/gregtech/gt.blockmachines/1706.png deleted file mode 100644 index 9a91083540..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1706.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1707.png b/front/public/images/small/gregtech/gt.blockmachines/1707.png deleted file mode 100644 index 4b25a2d21b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1707.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1708.png b/front/public/images/small/gregtech/gt.blockmachines/1708.png deleted file mode 100644 index 73310e48cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1708.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1709.png b/front/public/images/small/gregtech/gt.blockmachines/1709.png deleted file mode 100644 index 5fb671922e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1709.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/171.png b/front/public/images/small/gregtech/gt.blockmachines/171.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/171.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1710.png b/front/public/images/small/gregtech/gt.blockmachines/1710.png deleted file mode 100644 index 22ae95f06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1710.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1711.png b/front/public/images/small/gregtech/gt.blockmachines/1711.png deleted file mode 100644 index d8ce7b755a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1711.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/172.png b/front/public/images/small/gregtech/gt.blockmachines/172.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/172.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1720.png b/front/public/images/small/gregtech/gt.blockmachines/1720.png deleted file mode 100644 index 9032b61bb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1720.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1721.png b/front/public/images/small/gregtech/gt.blockmachines/1721.png deleted file mode 100644 index 5752339ebd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1721.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1722.png b/front/public/images/small/gregtech/gt.blockmachines/1722.png deleted file mode 100644 index 1f2ec35e68..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1722.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1723.png b/front/public/images/small/gregtech/gt.blockmachines/1723.png deleted file mode 100644 index 5dfca970a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1723.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1724.png b/front/public/images/small/gregtech/gt.blockmachines/1724.png deleted file mode 100644 index 0d8bb11d82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1724.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1725.png b/front/public/images/small/gregtech/gt.blockmachines/1725.png deleted file mode 100644 index df476d98a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1725.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1726.png b/front/public/images/small/gregtech/gt.blockmachines/1726.png deleted file mode 100644 index ee6c24a746..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1726.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1727.png b/front/public/images/small/gregtech/gt.blockmachines/1727.png deleted file mode 100644 index 9e26f29c81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1727.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1728.png b/front/public/images/small/gregtech/gt.blockmachines/1728.png deleted file mode 100644 index be8e0ab138..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1728.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1729.png b/front/public/images/small/gregtech/gt.blockmachines/1729.png deleted file mode 100644 index dc6c57e572..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1729.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/173.png b/front/public/images/small/gregtech/gt.blockmachines/173.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/173.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1730.png b/front/public/images/small/gregtech/gt.blockmachines/1730.png deleted file mode 100644 index 0000e794d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1730.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1731.png b/front/public/images/small/gregtech/gt.blockmachines/1731.png deleted file mode 100644 index 33c3c593ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1731.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/174.png b/front/public/images/small/gregtech/gt.blockmachines/174.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/174.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1740.png b/front/public/images/small/gregtech/gt.blockmachines/1740.png deleted file mode 100644 index 42203e6a18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1741.png b/front/public/images/small/gregtech/gt.blockmachines/1741.png deleted file mode 100644 index 66aedc9ee5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1742.png b/front/public/images/small/gregtech/gt.blockmachines/1742.png deleted file mode 100644 index 3a788c1bdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1742.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1743.png b/front/public/images/small/gregtech/gt.blockmachines/1743.png deleted file mode 100644 index 7709433a21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1743.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1744.png b/front/public/images/small/gregtech/gt.blockmachines/1744.png deleted file mode 100644 index 4ca54f1dd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1744.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1745.png b/front/public/images/small/gregtech/gt.blockmachines/1745.png deleted file mode 100644 index 40aae5a5d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1746.png b/front/public/images/small/gregtech/gt.blockmachines/1746.png deleted file mode 100644 index 36be66d1aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1746.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1747.png b/front/public/images/small/gregtech/gt.blockmachines/1747.png deleted file mode 100644 index 073c2b4ef8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1747.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1748.png b/front/public/images/small/gregtech/gt.blockmachines/1748.png deleted file mode 100644 index b75c71fc25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1748.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1749.png b/front/public/images/small/gregtech/gt.blockmachines/1749.png deleted file mode 100644 index 9d523b452b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/175.png b/front/public/images/small/gregtech/gt.blockmachines/175.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/175.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1750.png b/front/public/images/small/gregtech/gt.blockmachines/1750.png deleted file mode 100644 index 596ea7b84d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1750.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1751.png b/front/public/images/small/gregtech/gt.blockmachines/1751.png deleted file mode 100644 index c42b823936..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/176.png b/front/public/images/small/gregtech/gt.blockmachines/176.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/176.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1760.png b/front/public/images/small/gregtech/gt.blockmachines/1760.png deleted file mode 100644 index a039bff0f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1761.png b/front/public/images/small/gregtech/gt.blockmachines/1761.png deleted file mode 100644 index d65bf8cca8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1761.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1762.png b/front/public/images/small/gregtech/gt.blockmachines/1762.png deleted file mode 100644 index ff14a5c226..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1762.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1763.png b/front/public/images/small/gregtech/gt.blockmachines/1763.png deleted file mode 100644 index 67f65c990e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1763.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1764.png b/front/public/images/small/gregtech/gt.blockmachines/1764.png deleted file mode 100644 index 610165a599..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1764.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1765.png b/front/public/images/small/gregtech/gt.blockmachines/1765.png deleted file mode 100644 index 9e4130185d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1766.png b/front/public/images/small/gregtech/gt.blockmachines/1766.png deleted file mode 100644 index 4b927734e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1766.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1767.png b/front/public/images/small/gregtech/gt.blockmachines/1767.png deleted file mode 100644 index 13f0250e02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1767.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1768.png b/front/public/images/small/gregtech/gt.blockmachines/1768.png deleted file mode 100644 index ff9800955b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1768.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1769.png b/front/public/images/small/gregtech/gt.blockmachines/1769.png deleted file mode 100644 index a8a4af128f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1769.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/177.png b/front/public/images/small/gregtech/gt.blockmachines/177.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/177.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1770.png b/front/public/images/small/gregtech/gt.blockmachines/1770.png deleted file mode 100644 index 9ed36cd292..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1771.png b/front/public/images/small/gregtech/gt.blockmachines/1771.png deleted file mode 100644 index 3752f03ff0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1771.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/178.png b/front/public/images/small/gregtech/gt.blockmachines/178.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/178.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1780.png b/front/public/images/small/gregtech/gt.blockmachines/1780.png deleted file mode 100644 index a250835879..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1780.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1781.png b/front/public/images/small/gregtech/gt.blockmachines/1781.png deleted file mode 100644 index a1e1858c5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1781.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1782.png b/front/public/images/small/gregtech/gt.blockmachines/1782.png deleted file mode 100644 index 4e8950bcd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1782.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1783.png b/front/public/images/small/gregtech/gt.blockmachines/1783.png deleted file mode 100644 index 8a39f881ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1783.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1784.png b/front/public/images/small/gregtech/gt.blockmachines/1784.png deleted file mode 100644 index 9292885733..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1784.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1785.png b/front/public/images/small/gregtech/gt.blockmachines/1785.png deleted file mode 100644 index 84c31e9f30..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1785.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1786.png b/front/public/images/small/gregtech/gt.blockmachines/1786.png deleted file mode 100644 index 8c07273ca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1786.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1787.png b/front/public/images/small/gregtech/gt.blockmachines/1787.png deleted file mode 100644 index 97e0522b6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1787.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1788.png b/front/public/images/small/gregtech/gt.blockmachines/1788.png deleted file mode 100644 index 0a2edd9a93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1788.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1789.png b/front/public/images/small/gregtech/gt.blockmachines/1789.png deleted file mode 100644 index 8fd6487d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1789.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/179.png b/front/public/images/small/gregtech/gt.blockmachines/179.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/179.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1790.png b/front/public/images/small/gregtech/gt.blockmachines/1790.png deleted file mode 100644 index 505896ef46..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1790.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1791.png b/front/public/images/small/gregtech/gt.blockmachines/1791.png deleted file mode 100644 index 616d9b5592..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1791.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/18.png b/front/public/images/small/gregtech/gt.blockmachines/18.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/18.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/180.png b/front/public/images/small/gregtech/gt.blockmachines/180.png deleted file mode 100644 index b94891ad4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/180.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1800.png b/front/public/images/small/gregtech/gt.blockmachines/1800.png deleted file mode 100644 index 9d2373e3a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1800.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1801.png b/front/public/images/small/gregtech/gt.blockmachines/1801.png deleted file mode 100644 index 06ca5876fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1801.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1802.png b/front/public/images/small/gregtech/gt.blockmachines/1802.png deleted file mode 100644 index ef73c34c98..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1802.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1803.png b/front/public/images/small/gregtech/gt.blockmachines/1803.png deleted file mode 100644 index fb2b874a44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1803.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1804.png b/front/public/images/small/gregtech/gt.blockmachines/1804.png deleted file mode 100644 index a97ca6baff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1805.png b/front/public/images/small/gregtech/gt.blockmachines/1805.png deleted file mode 100644 index 2e329a7b98..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1805.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1806.png b/front/public/images/small/gregtech/gt.blockmachines/1806.png deleted file mode 100644 index e1a2c563e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1806.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1807.png b/front/public/images/small/gregtech/gt.blockmachines/1807.png deleted file mode 100644 index 3f77dc5be6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1807.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1808.png b/front/public/images/small/gregtech/gt.blockmachines/1808.png deleted file mode 100644 index 30a26893ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1808.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1809.png b/front/public/images/small/gregtech/gt.blockmachines/1809.png deleted file mode 100644 index e2e1bc23ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/181.png b/front/public/images/small/gregtech/gt.blockmachines/181.png deleted file mode 100644 index 620d44ef42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/181.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1810.png b/front/public/images/small/gregtech/gt.blockmachines/1810.png deleted file mode 100644 index c0bf5a70c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1811.png b/front/public/images/small/gregtech/gt.blockmachines/1811.png deleted file mode 100644 index a0aa9aab24..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1811.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/182.png b/front/public/images/small/gregtech/gt.blockmachines/182.png deleted file mode 100644 index 179d7bb4d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/182.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1820.png b/front/public/images/small/gregtech/gt.blockmachines/1820.png deleted file mode 100644 index 7b3b16e122..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1821.png b/front/public/images/small/gregtech/gt.blockmachines/1821.png deleted file mode 100644 index 527888e50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1822.png b/front/public/images/small/gregtech/gt.blockmachines/1822.png deleted file mode 100644 index 4e34809311..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1823.png b/front/public/images/small/gregtech/gt.blockmachines/1823.png deleted file mode 100644 index 2ce444d16b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1824.png b/front/public/images/small/gregtech/gt.blockmachines/1824.png deleted file mode 100644 index 5f56f05839..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1825.png b/front/public/images/small/gregtech/gt.blockmachines/1825.png deleted file mode 100644 index f9f3136a3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1826.png b/front/public/images/small/gregtech/gt.blockmachines/1826.png deleted file mode 100644 index f20e30da4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1827.png b/front/public/images/small/gregtech/gt.blockmachines/1827.png deleted file mode 100644 index 7155296a5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1828.png b/front/public/images/small/gregtech/gt.blockmachines/1828.png deleted file mode 100644 index f713f24081..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1829.png b/front/public/images/small/gregtech/gt.blockmachines/1829.png deleted file mode 100644 index c4662a2778..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/183.png b/front/public/images/small/gregtech/gt.blockmachines/183.png deleted file mode 100644 index a6d0dcdfb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/183.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1830.png b/front/public/images/small/gregtech/gt.blockmachines/1830.png deleted file mode 100644 index 59e63ee93c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1831.png b/front/public/images/small/gregtech/gt.blockmachines/1831.png deleted file mode 100644 index cfc19c53b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/184.png b/front/public/images/small/gregtech/gt.blockmachines/184.png deleted file mode 100644 index 13f10bb9d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/184.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1840.png b/front/public/images/small/gregtech/gt.blockmachines/1840.png deleted file mode 100644 index 5041d03510..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1841.png b/front/public/images/small/gregtech/gt.blockmachines/1841.png deleted file mode 100644 index a4221cdb12..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1842.png b/front/public/images/small/gregtech/gt.blockmachines/1842.png deleted file mode 100644 index 93b7219eca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1843.png b/front/public/images/small/gregtech/gt.blockmachines/1843.png deleted file mode 100644 index 08e55546db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1843.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1844.png b/front/public/images/small/gregtech/gt.blockmachines/1844.png deleted file mode 100644 index 0d1c75416d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1844.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1845.png b/front/public/images/small/gregtech/gt.blockmachines/1845.png deleted file mode 100644 index 8bf9155982..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1845.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1846.png b/front/public/images/small/gregtech/gt.blockmachines/1846.png deleted file mode 100644 index 0552236f5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1846.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1847.png b/front/public/images/small/gregtech/gt.blockmachines/1847.png deleted file mode 100644 index c41a5385c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1847.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1848.png b/front/public/images/small/gregtech/gt.blockmachines/1848.png deleted file mode 100644 index c3b5ca1060..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1848.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1849.png b/front/public/images/small/gregtech/gt.blockmachines/1849.png deleted file mode 100644 index 3cd6e49f2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/185.png b/front/public/images/small/gregtech/gt.blockmachines/185.png deleted file mode 100644 index 6b407cc1d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/185.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1850.png b/front/public/images/small/gregtech/gt.blockmachines/1850.png deleted file mode 100644 index 7c127a84ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/1851.png b/front/public/images/small/gregtech/gt.blockmachines/1851.png deleted file mode 100644 index a576cf7834..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/1851.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/186.png b/front/public/images/small/gregtech/gt.blockmachines/186.png deleted file mode 100644 index fdc693c77c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/186.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/187.png b/front/public/images/small/gregtech/gt.blockmachines/187.png deleted file mode 100644 index b5b4401fac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/187.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/188.png b/front/public/images/small/gregtech/gt.blockmachines/188.png deleted file mode 100644 index 412cf8de95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/188.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/189.png b/front/public/images/small/gregtech/gt.blockmachines/189.png deleted file mode 100644 index 754c2f9e65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/189.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/19.png b/front/public/images/small/gregtech/gt.blockmachines/19.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/19.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/190.png b/front/public/images/small/gregtech/gt.blockmachines/190.png deleted file mode 100644 index 05ada6e3d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/190.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/191.png b/front/public/images/small/gregtech/gt.blockmachines/191.png deleted file mode 100644 index 10267c2bf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/191.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/192.png b/front/public/images/small/gregtech/gt.blockmachines/192.png deleted file mode 100644 index 457b7b51bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/192.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/193.png b/front/public/images/small/gregtech/gt.blockmachines/193.png deleted file mode 100644 index 903a86a48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/193.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/194.png b/front/public/images/small/gregtech/gt.blockmachines/194.png deleted file mode 100644 index d68e4b410a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/194.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/195.png b/front/public/images/small/gregtech/gt.blockmachines/195.png deleted file mode 100644 index 49821c7961..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/195.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/196.png b/front/public/images/small/gregtech/gt.blockmachines/196.png deleted file mode 100644 index 5abc155017..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/196.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/197.png b/front/public/images/small/gregtech/gt.blockmachines/197.png deleted file mode 100644 index 0c923373d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/197.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/198.png b/front/public/images/small/gregtech/gt.blockmachines/198.png deleted file mode 100644 index 2cb2267e59..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/198.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/199.png b/front/public/images/small/gregtech/gt.blockmachines/199.png deleted file mode 100644 index 9707a9f741..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/199.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2.png b/front/public/images/small/gregtech/gt.blockmachines/2.png deleted file mode 100644 index eb25b85f5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/20.png b/front/public/images/small/gregtech/gt.blockmachines/20.png deleted file mode 100644 index 958e6ecf45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/20.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/200.png b/front/public/images/small/gregtech/gt.blockmachines/200.png deleted file mode 100644 index a6a99c2b48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2000.png b/front/public/images/small/gregtech/gt.blockmachines/2000.png deleted file mode 100644 index 6b11d06165..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2000.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2001.png b/front/public/images/small/gregtech/gt.blockmachines/2001.png deleted file mode 100644 index 5ef5e87823..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2002.png b/front/public/images/small/gregtech/gt.blockmachines/2002.png deleted file mode 100644 index 0bbc101db8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2003.png b/front/public/images/small/gregtech/gt.blockmachines/2003.png deleted file mode 100644 index 236464de23..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2004.png b/front/public/images/small/gregtech/gt.blockmachines/2004.png deleted file mode 100644 index 80a85f1031..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2005.png b/front/public/images/small/gregtech/gt.blockmachines/2005.png deleted file mode 100644 index fb573a124a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2006.png b/front/public/images/small/gregtech/gt.blockmachines/2006.png deleted file mode 100644 index beb8b2cf0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2007.png b/front/public/images/small/gregtech/gt.blockmachines/2007.png deleted file mode 100644 index 639b0b5850..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2008.png b/front/public/images/small/gregtech/gt.blockmachines/2008.png deleted file mode 100644 index dcdf70691f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2009.png b/front/public/images/small/gregtech/gt.blockmachines/2009.png deleted file mode 100644 index 6789272c16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2010.png b/front/public/images/small/gregtech/gt.blockmachines/2010.png deleted file mode 100644 index 00fe535019..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2011.png b/front/public/images/small/gregtech/gt.blockmachines/2011.png deleted file mode 100644 index 981d9bdce0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2011.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2020.png b/front/public/images/small/gregtech/gt.blockmachines/2020.png deleted file mode 100644 index 464d114f2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2021.png b/front/public/images/small/gregtech/gt.blockmachines/2021.png deleted file mode 100644 index 2bce8cb92a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2022.png b/front/public/images/small/gregtech/gt.blockmachines/2022.png deleted file mode 100644 index b585c9dc03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2023.png b/front/public/images/small/gregtech/gt.blockmachines/2023.png deleted file mode 100644 index 4e5dac40ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2024.png b/front/public/images/small/gregtech/gt.blockmachines/2024.png deleted file mode 100644 index a180db1e19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2024.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2025.png b/front/public/images/small/gregtech/gt.blockmachines/2025.png deleted file mode 100644 index 26fdf1ede4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2026.png b/front/public/images/small/gregtech/gt.blockmachines/2026.png deleted file mode 100644 index 71d486181e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2027.png b/front/public/images/small/gregtech/gt.blockmachines/2027.png deleted file mode 100644 index 2c45a4a1b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2028.png b/front/public/images/small/gregtech/gt.blockmachines/2028.png deleted file mode 100644 index 4692e7a9e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2029.png b/front/public/images/small/gregtech/gt.blockmachines/2029.png deleted file mode 100644 index c51155e222..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2030.png b/front/public/images/small/gregtech/gt.blockmachines/2030.png deleted file mode 100644 index 2056edf4ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2031.png b/front/public/images/small/gregtech/gt.blockmachines/2031.png deleted file mode 100644 index 641f6cec8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2032.png b/front/public/images/small/gregtech/gt.blockmachines/2032.png deleted file mode 100644 index 71d486181e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2033.png b/front/public/images/small/gregtech/gt.blockmachines/2033.png deleted file mode 100644 index 2c45a4a1b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2034.png b/front/public/images/small/gregtech/gt.blockmachines/2034.png deleted file mode 100644 index 4692e7a9e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2035.png b/front/public/images/small/gregtech/gt.blockmachines/2035.png deleted file mode 100644 index c51155e222..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2036.png b/front/public/images/small/gregtech/gt.blockmachines/2036.png deleted file mode 100644 index 2056edf4ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2037.png b/front/public/images/small/gregtech/gt.blockmachines/2037.png deleted file mode 100644 index 641f6cec8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2052.png b/front/public/images/small/gregtech/gt.blockmachines/2052.png deleted file mode 100644 index d4e7d2e7c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2053.png b/front/public/images/small/gregtech/gt.blockmachines/2053.png deleted file mode 100644 index e9b45c298d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2053.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2054.png b/front/public/images/small/gregtech/gt.blockmachines/2054.png deleted file mode 100644 index 64433536e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2055.png b/front/public/images/small/gregtech/gt.blockmachines/2055.png deleted file mode 100644 index ea0ab3fc72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2056.png b/front/public/images/small/gregtech/gt.blockmachines/2056.png deleted file mode 100644 index 7ca1aadddd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2057.png b/front/public/images/small/gregtech/gt.blockmachines/2057.png deleted file mode 100644 index 49ce1514aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/206.png b/front/public/images/small/gregtech/gt.blockmachines/206.png deleted file mode 100644 index 3e87977703..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/207.png b/front/public/images/small/gregtech/gt.blockmachines/207.png deleted file mode 100644 index 935e2a89c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2072.png b/front/public/images/small/gregtech/gt.blockmachines/2072.png deleted file mode 100644 index c407ff2fbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2073.png b/front/public/images/small/gregtech/gt.blockmachines/2073.png deleted file mode 100644 index 61557756ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2074.png b/front/public/images/small/gregtech/gt.blockmachines/2074.png deleted file mode 100644 index 8f50fdde2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2075.png b/front/public/images/small/gregtech/gt.blockmachines/2075.png deleted file mode 100644 index a898ddc635..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2076.png b/front/public/images/small/gregtech/gt.blockmachines/2076.png deleted file mode 100644 index 0b6051ae5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2077.png b/front/public/images/small/gregtech/gt.blockmachines/2077.png deleted file mode 100644 index 3bda0a6b21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/208.png b/front/public/images/small/gregtech/gt.blockmachines/208.png deleted file mode 100644 index 0f006bee7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2081.png b/front/public/images/small/gregtech/gt.blockmachines/2081.png deleted file mode 100644 index d4e7d2e7c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2082.png b/front/public/images/small/gregtech/gt.blockmachines/2082.png deleted file mode 100644 index e9b45c298d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2082.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2083.png b/front/public/images/small/gregtech/gt.blockmachines/2083.png deleted file mode 100644 index 64433536e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2084.png b/front/public/images/small/gregtech/gt.blockmachines/2084.png deleted file mode 100644 index ea0ab3fc72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2085.png b/front/public/images/small/gregtech/gt.blockmachines/2085.png deleted file mode 100644 index 7ca1aadddd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2086.png b/front/public/images/small/gregtech/gt.blockmachines/2086.png deleted file mode 100644 index 49ce1514aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2089.png b/front/public/images/small/gregtech/gt.blockmachines/2089.png deleted file mode 100644 index c407ff2fbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/209.png b/front/public/images/small/gregtech/gt.blockmachines/209.png deleted file mode 100644 index de4ce3a6e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2090.png b/front/public/images/small/gregtech/gt.blockmachines/2090.png deleted file mode 100644 index 61557756ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2091.png b/front/public/images/small/gregtech/gt.blockmachines/2091.png deleted file mode 100644 index 8f50fdde2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2091.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2092.png b/front/public/images/small/gregtech/gt.blockmachines/2092.png deleted file mode 100644 index a898ddc635..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2092.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2093.png b/front/public/images/small/gregtech/gt.blockmachines/2093.png deleted file mode 100644 index 0b6051ae5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2093.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2094.png b/front/public/images/small/gregtech/gt.blockmachines/2094.png deleted file mode 100644 index 3bda0a6b21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2094.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/21.png b/front/public/images/small/gregtech/gt.blockmachines/21.png deleted file mode 100644 index 3cda8cdfb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/21.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2102.png b/front/public/images/small/gregtech/gt.blockmachines/2102.png deleted file mode 100644 index 2623a3ca18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2103.png b/front/public/images/small/gregtech/gt.blockmachines/2103.png deleted file mode 100644 index d37d4ae523..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2104.png b/front/public/images/small/gregtech/gt.blockmachines/2104.png deleted file mode 100644 index d4bd94a7bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2105.png b/front/public/images/small/gregtech/gt.blockmachines/2105.png deleted file mode 100644 index 565a6d3ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2105.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/216.png b/front/public/images/small/gregtech/gt.blockmachines/216.png deleted file mode 100644 index bf95f3e62b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/216.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/217.png b/front/public/images/small/gregtech/gt.blockmachines/217.png deleted file mode 100644 index 0f2a282203..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/217.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/218.png b/front/public/images/small/gregtech/gt.blockmachines/218.png deleted file mode 100644 index b4fb7b91d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/218.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/219.png b/front/public/images/small/gregtech/gt.blockmachines/219.png deleted file mode 100644 index 614474ccfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/219.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/22.png b/front/public/images/small/gregtech/gt.blockmachines/22.png deleted file mode 100644 index dea41b5e0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/22.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2200.png b/front/public/images/small/gregtech/gt.blockmachines/2200.png deleted file mode 100644 index 49d62cb742..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2201.png b/front/public/images/small/gregtech/gt.blockmachines/2201.png deleted file mode 100644 index d1ee4e5f6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2202.png b/front/public/images/small/gregtech/gt.blockmachines/2202.png deleted file mode 100644 index a4e651b342..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2203.png b/front/public/images/small/gregtech/gt.blockmachines/2203.png deleted file mode 100644 index 6d1f27cfcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2204.png b/front/public/images/small/gregtech/gt.blockmachines/2204.png deleted file mode 100644 index 9c83facafd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2205.png b/front/public/images/small/gregtech/gt.blockmachines/2205.png deleted file mode 100644 index d53a3940b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2220.png b/front/public/images/small/gregtech/gt.blockmachines/2220.png deleted file mode 100644 index e19ff98f1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2220.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2221.png b/front/public/images/small/gregtech/gt.blockmachines/2221.png deleted file mode 100644 index 2f57ca1410..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2221.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2222.png b/front/public/images/small/gregtech/gt.blockmachines/2222.png deleted file mode 100644 index 824e3aae2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2222.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2223.png b/front/public/images/small/gregtech/gt.blockmachines/2223.png deleted file mode 100644 index c9bd87b379..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2223.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2224.png b/front/public/images/small/gregtech/gt.blockmachines/2224.png deleted file mode 100644 index b0df02d21a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2224.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2225.png b/front/public/images/small/gregtech/gt.blockmachines/2225.png deleted file mode 100644 index d2f4c7d1f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2225.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2240.png b/front/public/images/small/gregtech/gt.blockmachines/2240.png deleted file mode 100644 index 2b222f8a21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2240.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2241.png b/front/public/images/small/gregtech/gt.blockmachines/2241.png deleted file mode 100644 index ce6e572152..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2241.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2242.png b/front/public/images/small/gregtech/gt.blockmachines/2242.png deleted file mode 100644 index b7301a089b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2242.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2243.png b/front/public/images/small/gregtech/gt.blockmachines/2243.png deleted file mode 100644 index 78f2c18df0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2243.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2244.png b/front/public/images/small/gregtech/gt.blockmachines/2244.png deleted file mode 100644 index 233a556457..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2244.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2245.png b/front/public/images/small/gregtech/gt.blockmachines/2245.png deleted file mode 100644 index 6d2f71fe2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2245.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2260.png b/front/public/images/small/gregtech/gt.blockmachines/2260.png deleted file mode 100644 index 9cc78effc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2260.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2261.png b/front/public/images/small/gregtech/gt.blockmachines/2261.png deleted file mode 100644 index 96f17967ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2261.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2262.png b/front/public/images/small/gregtech/gt.blockmachines/2262.png deleted file mode 100644 index a99eb182db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2262.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2263.png b/front/public/images/small/gregtech/gt.blockmachines/2263.png deleted file mode 100644 index 8491d2bc62..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2263.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2264.png b/front/public/images/small/gregtech/gt.blockmachines/2264.png deleted file mode 100644 index 18227d5956..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2264.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2265.png b/front/public/images/small/gregtech/gt.blockmachines/2265.png deleted file mode 100644 index 7416545fcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2265.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/227.png b/front/public/images/small/gregtech/gt.blockmachines/227.png deleted file mode 100644 index 131a5094eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/227.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2280.png b/front/public/images/small/gregtech/gt.blockmachines/2280.png deleted file mode 100644 index 3d561afbb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2280.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2281.png b/front/public/images/small/gregtech/gt.blockmachines/2281.png deleted file mode 100644 index cba810791e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2281.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2282.png b/front/public/images/small/gregtech/gt.blockmachines/2282.png deleted file mode 100644 index 2860d281d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2282.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2283.png b/front/public/images/small/gregtech/gt.blockmachines/2283.png deleted file mode 100644 index 2a85e75078..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2283.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2284.png b/front/public/images/small/gregtech/gt.blockmachines/2284.png deleted file mode 100644 index c20bd3408e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2284.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2285.png b/front/public/images/small/gregtech/gt.blockmachines/2285.png deleted file mode 100644 index 9ea8fef9a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2285.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/229.png b/front/public/images/small/gregtech/gt.blockmachines/229.png deleted file mode 100644 index e9e5d44adf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/229.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/23.png b/front/public/images/small/gregtech/gt.blockmachines/23.png deleted file mode 100644 index ab611475e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/23.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2300.png b/front/public/images/small/gregtech/gt.blockmachines/2300.png deleted file mode 100644 index 377b5b2347..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2301.png b/front/public/images/small/gregtech/gt.blockmachines/2301.png deleted file mode 100644 index 31283d6e11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2302.png b/front/public/images/small/gregtech/gt.blockmachines/2302.png deleted file mode 100644 index 2379285556..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2303.png b/front/public/images/small/gregtech/gt.blockmachines/2303.png deleted file mode 100644 index fb2efdd151..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2304.png b/front/public/images/small/gregtech/gt.blockmachines/2304.png deleted file mode 100644 index e17cc4ec23..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2305.png b/front/public/images/small/gregtech/gt.blockmachines/2305.png deleted file mode 100644 index e8ff72ad54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2320.png b/front/public/images/small/gregtech/gt.blockmachines/2320.png deleted file mode 100644 index 49d62cb742..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2321.png b/front/public/images/small/gregtech/gt.blockmachines/2321.png deleted file mode 100644 index d1ee4e5f6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2322.png b/front/public/images/small/gregtech/gt.blockmachines/2322.png deleted file mode 100644 index a4e651b342..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2322.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2323.png b/front/public/images/small/gregtech/gt.blockmachines/2323.png deleted file mode 100644 index 6d1f27cfcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2324.png b/front/public/images/small/gregtech/gt.blockmachines/2324.png deleted file mode 100644 index 9c83facafd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2325.png b/front/public/images/small/gregtech/gt.blockmachines/2325.png deleted file mode 100644 index d53a3940b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2340.png b/front/public/images/small/gregtech/gt.blockmachines/2340.png deleted file mode 100644 index e19ff98f1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2341.png b/front/public/images/small/gregtech/gt.blockmachines/2341.png deleted file mode 100644 index 2f57ca1410..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2342.png b/front/public/images/small/gregtech/gt.blockmachines/2342.png deleted file mode 100644 index 824e3aae2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2343.png b/front/public/images/small/gregtech/gt.blockmachines/2343.png deleted file mode 100644 index c9bd87b379..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2344.png b/front/public/images/small/gregtech/gt.blockmachines/2344.png deleted file mode 100644 index b0df02d21a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2345.png b/front/public/images/small/gregtech/gt.blockmachines/2345.png deleted file mode 100644 index d2f4c7d1f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2360.png b/front/public/images/small/gregtech/gt.blockmachines/2360.png deleted file mode 100644 index 2b222f8a21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2361.png b/front/public/images/small/gregtech/gt.blockmachines/2361.png deleted file mode 100644 index ce6e572152..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2362.png b/front/public/images/small/gregtech/gt.blockmachines/2362.png deleted file mode 100644 index b7301a089b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2363.png b/front/public/images/small/gregtech/gt.blockmachines/2363.png deleted file mode 100644 index 78f2c18df0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2364.png b/front/public/images/small/gregtech/gt.blockmachines/2364.png deleted file mode 100644 index 233a556457..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2365.png b/front/public/images/small/gregtech/gt.blockmachines/2365.png deleted file mode 100644 index 6d2f71fe2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2380.png b/front/public/images/small/gregtech/gt.blockmachines/2380.png deleted file mode 100644 index 9cc78effc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2381.png b/front/public/images/small/gregtech/gt.blockmachines/2381.png deleted file mode 100644 index 96f17967ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2382.png b/front/public/images/small/gregtech/gt.blockmachines/2382.png deleted file mode 100644 index a99eb182db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2383.png b/front/public/images/small/gregtech/gt.blockmachines/2383.png deleted file mode 100644 index 8491d2bc62..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2384.png b/front/public/images/small/gregtech/gt.blockmachines/2384.png deleted file mode 100644 index 18227d5956..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2385.png b/front/public/images/small/gregtech/gt.blockmachines/2385.png deleted file mode 100644 index 7416545fcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/24.png b/front/public/images/small/gregtech/gt.blockmachines/24.png deleted file mode 100644 index 19d7c4865e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/24.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2400.png b/front/public/images/small/gregtech/gt.blockmachines/2400.png deleted file mode 100644 index 3d561afbb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2401.png b/front/public/images/small/gregtech/gt.blockmachines/2401.png deleted file mode 100644 index cba810791e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2402.png b/front/public/images/small/gregtech/gt.blockmachines/2402.png deleted file mode 100644 index 2860d281d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2403.png b/front/public/images/small/gregtech/gt.blockmachines/2403.png deleted file mode 100644 index 2a85e75078..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2404.png b/front/public/images/small/gregtech/gt.blockmachines/2404.png deleted file mode 100644 index c20bd3408e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2405.png b/front/public/images/small/gregtech/gt.blockmachines/2405.png deleted file mode 100644 index 9ea8fef9a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2420.png b/front/public/images/small/gregtech/gt.blockmachines/2420.png deleted file mode 100644 index 377b5b2347..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2420.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2421.png b/front/public/images/small/gregtech/gt.blockmachines/2421.png deleted file mode 100644 index 31283d6e11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2421.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2422.png b/front/public/images/small/gregtech/gt.blockmachines/2422.png deleted file mode 100644 index 2379285556..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2422.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2423.png b/front/public/images/small/gregtech/gt.blockmachines/2423.png deleted file mode 100644 index fb2efdd151..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2423.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2424.png b/front/public/images/small/gregtech/gt.blockmachines/2424.png deleted file mode 100644 index e17cc4ec23..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2424.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2425.png b/front/public/images/small/gregtech/gt.blockmachines/2425.png deleted file mode 100644 index e8ff72ad54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2425.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2440.png b/front/public/images/small/gregtech/gt.blockmachines/2440.png deleted file mode 100644 index 01470cd472..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2440.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2441.png b/front/public/images/small/gregtech/gt.blockmachines/2441.png deleted file mode 100644 index 1e890cf804..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2441.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2442.png b/front/public/images/small/gregtech/gt.blockmachines/2442.png deleted file mode 100644 index 8acc696e6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2442.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2443.png b/front/public/images/small/gregtech/gt.blockmachines/2443.png deleted file mode 100644 index 3e2f6f0ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2443.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2444.png b/front/public/images/small/gregtech/gt.blockmachines/2444.png deleted file mode 100644 index 47646d66f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2444.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2445.png b/front/public/images/small/gregtech/gt.blockmachines/2445.png deleted file mode 100644 index aa5a91a3be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2445.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/25.png b/front/public/images/small/gregtech/gt.blockmachines/25.png deleted file mode 100644 index 5e9c1a059b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/25.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2500.png b/front/public/images/small/gregtech/gt.blockmachines/2500.png deleted file mode 100644 index 01470cd472..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2501.png b/front/public/images/small/gregtech/gt.blockmachines/2501.png deleted file mode 100644 index 1e890cf804..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2502.png b/front/public/images/small/gregtech/gt.blockmachines/2502.png deleted file mode 100644 index 8acc696e6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2503.png b/front/public/images/small/gregtech/gt.blockmachines/2503.png deleted file mode 100644 index 3e2f6f0ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2504.png b/front/public/images/small/gregtech/gt.blockmachines/2504.png deleted file mode 100644 index 47646d66f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2505.png b/front/public/images/small/gregtech/gt.blockmachines/2505.png deleted file mode 100644 index aa5a91a3be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2520.png b/front/public/images/small/gregtech/gt.blockmachines/2520.png deleted file mode 100644 index 464d114f2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2521.png b/front/public/images/small/gregtech/gt.blockmachines/2521.png deleted file mode 100644 index 2bce8cb92a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2522.png b/front/public/images/small/gregtech/gt.blockmachines/2522.png deleted file mode 100644 index b585c9dc03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2523.png b/front/public/images/small/gregtech/gt.blockmachines/2523.png deleted file mode 100644 index 4e5dac40ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2524.png b/front/public/images/small/gregtech/gt.blockmachines/2524.png deleted file mode 100644 index a180db1e19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2525.png b/front/public/images/small/gregtech/gt.blockmachines/2525.png deleted file mode 100644 index 26fdf1ede4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/26.png b/front/public/images/small/gregtech/gt.blockmachines/26.png deleted file mode 100644 index 8fa5c3311c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/26.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2600.png b/front/public/images/small/gregtech/gt.blockmachines/2600.png deleted file mode 100644 index c9736bd1c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2600.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2601.png b/front/public/images/small/gregtech/gt.blockmachines/2601.png deleted file mode 100644 index f063576b90..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2601.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2602.png b/front/public/images/small/gregtech/gt.blockmachines/2602.png deleted file mode 100644 index ab7de9da67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2602.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2603.png b/front/public/images/small/gregtech/gt.blockmachines/2603.png deleted file mode 100644 index 81d1b731ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2603.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2604.png b/front/public/images/small/gregtech/gt.blockmachines/2604.png deleted file mode 100644 index c4dc714c20..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2604.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2605.png b/front/public/images/small/gregtech/gt.blockmachines/2605.png deleted file mode 100644 index 97c2d85861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2605.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2606.png b/front/public/images/small/gregtech/gt.blockmachines/2606.png deleted file mode 100644 index 0ef8391327..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2606.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2607.png b/front/public/images/small/gregtech/gt.blockmachines/2607.png deleted file mode 100644 index 9dd974e5ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2608.png b/front/public/images/small/gregtech/gt.blockmachines/2608.png deleted file mode 100644 index a38c605b82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2608.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2609.png b/front/public/images/small/gregtech/gt.blockmachines/2609.png deleted file mode 100644 index 56e498dd54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2609.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2610.png b/front/public/images/small/gregtech/gt.blockmachines/2610.png deleted file mode 100644 index ed43424455..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2611.png b/front/public/images/small/gregtech/gt.blockmachines/2611.png deleted file mode 100644 index dfe3bfe9c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/266.png b/front/public/images/small/gregtech/gt.blockmachines/266.png deleted file mode 100644 index 599eba2f22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/266.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/267.png b/front/public/images/small/gregtech/gt.blockmachines/267.png deleted file mode 100644 index 8d81cd969e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/267.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/268.png b/front/public/images/small/gregtech/gt.blockmachines/268.png deleted file mode 100644 index aae67fa666..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/268.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/269.png b/front/public/images/small/gregtech/gt.blockmachines/269.png deleted file mode 100644 index b7a17c6d24..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/269.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/27.png b/front/public/images/small/gregtech/gt.blockmachines/27.png deleted file mode 100644 index 84861c518f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/27.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2700.png b/front/public/images/small/gregtech/gt.blockmachines/2700.png deleted file mode 100644 index 11a235fdbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2700.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2701.png b/front/public/images/small/gregtech/gt.blockmachines/2701.png deleted file mode 100644 index 181d2fc1f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2701.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2710.png b/front/public/images/small/gregtech/gt.blockmachines/2710.png deleted file mode 100644 index f0b2fdd916..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2710.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2711.png b/front/public/images/small/gregtech/gt.blockmachines/2711.png deleted file mode 100644 index c19576f72a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2711.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2712.png b/front/public/images/small/gregtech/gt.blockmachines/2712.png deleted file mode 100644 index a0ff607d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2712.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2713.png b/front/public/images/small/gregtech/gt.blockmachines/2713.png deleted file mode 100644 index e35b23de1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2713.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2714.png b/front/public/images/small/gregtech/gt.blockmachines/2714.png deleted file mode 100644 index 3bcb102a54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2714.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2715.png b/front/public/images/small/gregtech/gt.blockmachines/2715.png deleted file mode 100644 index 9b5db1d832..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2715.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2716.png b/front/public/images/small/gregtech/gt.blockmachines/2716.png deleted file mode 100644 index b23753debf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2716.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2717.png b/front/public/images/small/gregtech/gt.blockmachines/2717.png deleted file mode 100644 index 0bbad36c9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2717.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/2718.png b/front/public/images/small/gregtech/gt.blockmachines/2718.png deleted file mode 100644 index 1bb52c1259..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/2718.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/28.png b/front/public/images/small/gregtech/gt.blockmachines/28.png deleted file mode 100644 index acd108543a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/28.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/286.png b/front/public/images/small/gregtech/gt.blockmachines/286.png deleted file mode 100644 index ee03c6204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/286.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/287.png b/front/public/images/small/gregtech/gt.blockmachines/287.png deleted file mode 100644 index 3e87977703..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/287.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/288.png b/front/public/images/small/gregtech/gt.blockmachines/288.png deleted file mode 100644 index 935e2a89c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/288.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/289.png b/front/public/images/small/gregtech/gt.blockmachines/289.png deleted file mode 100644 index 0f006bee7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/289.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/296.png b/front/public/images/small/gregtech/gt.blockmachines/296.png deleted file mode 100644 index de4ce3a6e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/296.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/297.png b/front/public/images/small/gregtech/gt.blockmachines/297.png deleted file mode 100644 index bf95f3e62b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/297.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/298.png b/front/public/images/small/gregtech/gt.blockmachines/298.png deleted file mode 100644 index 0f2a282203..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/298.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/299.png b/front/public/images/small/gregtech/gt.blockmachines/299.png deleted file mode 100644 index b4fb7b91d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/3.png b/front/public/images/small/gregtech/gt.blockmachines/3.png deleted file mode 100644 index 8b6f9f37a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30.png b/front/public/images/small/gregtech/gt.blockmachines/30.png deleted file mode 100644 index b94891ad4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30001.png b/front/public/images/small/gregtech/gt.blockmachines/30001.png deleted file mode 100644 index 8a83a64e1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30002.png b/front/public/images/small/gregtech/gt.blockmachines/30002.png deleted file mode 100644 index f3e7921fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30003.png b/front/public/images/small/gregtech/gt.blockmachines/30003.png deleted file mode 100644 index 0c9594500c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30004.png b/front/public/images/small/gregtech/gt.blockmachines/30004.png deleted file mode 100644 index 1c7057cf8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30005.png b/front/public/images/small/gregtech/gt.blockmachines/30005.png deleted file mode 100644 index 368d2fccc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30006.png b/front/public/images/small/gregtech/gt.blockmachines/30006.png deleted file mode 100644 index 3b49de4c47..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30007.png b/front/public/images/small/gregtech/gt.blockmachines/30007.png deleted file mode 100644 index 93a0d918c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30008.png b/front/public/images/small/gregtech/gt.blockmachines/30008.png deleted file mode 100644 index e1a7372f02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30009.png b/front/public/images/small/gregtech/gt.blockmachines/30009.png deleted file mode 100644 index 62d311cb9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30010.png b/front/public/images/small/gregtech/gt.blockmachines/30010.png deleted file mode 100644 index 0fbec1baf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30022.png b/front/public/images/small/gregtech/gt.blockmachines/30022.png deleted file mode 100644 index 4673b2475a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30023.png b/front/public/images/small/gregtech/gt.blockmachines/30023.png deleted file mode 100644 index 91c2e82fa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30024.png b/front/public/images/small/gregtech/gt.blockmachines/30024.png deleted file mode 100644 index 3f4c893c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30024.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30025.png b/front/public/images/small/gregtech/gt.blockmachines/30025.png deleted file mode 100644 index 778f47d4e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30026.png b/front/public/images/small/gregtech/gt.blockmachines/30026.png deleted file mode 100644 index 91d7f7e1a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30027.png b/front/public/images/small/gregtech/gt.blockmachines/30027.png deleted file mode 100644 index 656bfef9c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30028.png b/front/public/images/small/gregtech/gt.blockmachines/30028.png deleted file mode 100644 index 9dc05b25a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30029.png b/front/public/images/small/gregtech/gt.blockmachines/30029.png deleted file mode 100644 index a16e7a6463..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30030.png b/front/public/images/small/gregtech/gt.blockmachines/30030.png deleted file mode 100644 index c8b4c8c60d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30032.png b/front/public/images/small/gregtech/gt.blockmachines/30032.png deleted file mode 100644 index bb909e1f57..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30033.png b/front/public/images/small/gregtech/gt.blockmachines/30033.png deleted file mode 100644 index 80c1b135bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30034.png b/front/public/images/small/gregtech/gt.blockmachines/30034.png deleted file mode 100644 index a487537bdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30035.png b/front/public/images/small/gregtech/gt.blockmachines/30035.png deleted file mode 100644 index e2ca232f31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30036.png b/front/public/images/small/gregtech/gt.blockmachines/30036.png deleted file mode 100644 index cc22c3a9f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30037.png b/front/public/images/small/gregtech/gt.blockmachines/30037.png deleted file mode 100644 index 7f7110629d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30038.png b/front/public/images/small/gregtech/gt.blockmachines/30038.png deleted file mode 100644 index ed2b486fd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30038.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30039.png b/front/public/images/small/gregtech/gt.blockmachines/30039.png deleted file mode 100644 index e880ba9484..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30040.png b/front/public/images/small/gregtech/gt.blockmachines/30040.png deleted file mode 100644 index 71c3ffad71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30040.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30100.png b/front/public/images/small/gregtech/gt.blockmachines/30100.png deleted file mode 100644 index 6b689db251..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30101.png b/front/public/images/small/gregtech/gt.blockmachines/30101.png deleted file mode 100644 index bdfd54837f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30102.png b/front/public/images/small/gregtech/gt.blockmachines/30102.png deleted file mode 100644 index f63a6b76ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30103.png b/front/public/images/small/gregtech/gt.blockmachines/30103.png deleted file mode 100644 index bcfb2ec961..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30104.png b/front/public/images/small/gregtech/gt.blockmachines/30104.png deleted file mode 100644 index 231d6ba31e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30105.png b/front/public/images/small/gregtech/gt.blockmachines/30105.png deleted file mode 100644 index cd3c63f106..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30105.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30106.png b/front/public/images/small/gregtech/gt.blockmachines/30106.png deleted file mode 100644 index 1ab1105684..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30107.png b/front/public/images/small/gregtech/gt.blockmachines/30107.png deleted file mode 100644 index 3345ba137e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30107.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30500.png b/front/public/images/small/gregtech/gt.blockmachines/30500.png deleted file mode 100644 index 7588940546..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30501.png b/front/public/images/small/gregtech/gt.blockmachines/30501.png deleted file mode 100644 index 420c31e66d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30502.png b/front/public/images/small/gregtech/gt.blockmachines/30502.png deleted file mode 100644 index b7b1c0c7ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30503.png b/front/public/images/small/gregtech/gt.blockmachines/30503.png deleted file mode 100644 index 46c1ce609c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30504.png b/front/public/images/small/gregtech/gt.blockmachines/30504.png deleted file mode 100644 index 3b6319964a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30585.png b/front/public/images/small/gregtech/gt.blockmachines/30585.png deleted file mode 100644 index 5cc7ed2bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30586.png b/front/public/images/small/gregtech/gt.blockmachines/30586.png deleted file mode 100644 index 7b39cbf62c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30587.png b/front/public/images/small/gregtech/gt.blockmachines/30587.png deleted file mode 100644 index 8cd753539b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30587.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30588.png b/front/public/images/small/gregtech/gt.blockmachines/30588.png deleted file mode 100644 index 3952d61110..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30589.png b/front/public/images/small/gregtech/gt.blockmachines/30589.png deleted file mode 100644 index 8b20f912e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30589.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30590.png b/front/public/images/small/gregtech/gt.blockmachines/30590.png deleted file mode 100644 index 9b4646a212..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30590.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30645.png b/front/public/images/small/gregtech/gt.blockmachines/30645.png deleted file mode 100644 index 34f50120bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30646.png b/front/public/images/small/gregtech/gt.blockmachines/30646.png deleted file mode 100644 index d361051a2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30647.png b/front/public/images/small/gregtech/gt.blockmachines/30647.png deleted file mode 100644 index ed1373f979..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30647.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30648.png b/front/public/images/small/gregtech/gt.blockmachines/30648.png deleted file mode 100644 index 6e8eadba84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30648.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30649.png b/front/public/images/small/gregtech/gt.blockmachines/30649.png deleted file mode 100644 index d51d4e0179..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30650.png b/front/public/images/small/gregtech/gt.blockmachines/30650.png deleted file mode 100644 index 223e6940f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30650.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30651.png b/front/public/images/small/gregtech/gt.blockmachines/30651.png deleted file mode 100644 index 8294f0089f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30651.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30652.png b/front/public/images/small/gregtech/gt.blockmachines/30652.png deleted file mode 100644 index 7978e50734..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30652.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30653.png b/front/public/images/small/gregtech/gt.blockmachines/30653.png deleted file mode 100644 index 03144620f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30653.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30654.png b/front/public/images/small/gregtech/gt.blockmachines/30654.png deleted file mode 100644 index 458dad680b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30654.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30655.png b/front/public/images/small/gregtech/gt.blockmachines/30655.png deleted file mode 100644 index fe26218ba1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30655.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30656.png b/front/public/images/small/gregtech/gt.blockmachines/30656.png deleted file mode 100644 index 992633010d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30656.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30700.png b/front/public/images/small/gregtech/gt.blockmachines/30700.png deleted file mode 100644 index d1d237662c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30700.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30701.png b/front/public/images/small/gregtech/gt.blockmachines/30701.png deleted file mode 100644 index 10374e4d81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30701.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30702.png b/front/public/images/small/gregtech/gt.blockmachines/30702.png deleted file mode 100644 index 3cf41a4071..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30702.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30703.png b/front/public/images/small/gregtech/gt.blockmachines/30703.png deleted file mode 100644 index 33d0a165bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30703.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30704.png b/front/public/images/small/gregtech/gt.blockmachines/30704.png deleted file mode 100644 index 5863ea06c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30704.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30705.png b/front/public/images/small/gregtech/gt.blockmachines/30705.png deleted file mode 100644 index 20c34cd731..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30705.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30706.png b/front/public/images/small/gregtech/gt.blockmachines/30706.png deleted file mode 100644 index 6b665ab4e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30706.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30707.png b/front/public/images/small/gregtech/gt.blockmachines/30707.png deleted file mode 100644 index f718646bdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30707.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30708.png b/front/public/images/small/gregtech/gt.blockmachines/30708.png deleted file mode 100644 index 698db200fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30708.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30709.png b/front/public/images/small/gregtech/gt.blockmachines/30709.png deleted file mode 100644 index b215c7022a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30709.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30710.png b/front/public/images/small/gregtech/gt.blockmachines/30710.png deleted file mode 100644 index d191349312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30710.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30711.png b/front/public/images/small/gregtech/gt.blockmachines/30711.png deleted file mode 100644 index 7793c0d473..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30711.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30712.png b/front/public/images/small/gregtech/gt.blockmachines/30712.png deleted file mode 100644 index cb6ef984ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30712.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30713.png b/front/public/images/small/gregtech/gt.blockmachines/30713.png deleted file mode 100644 index e571271d5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30713.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30714.png b/front/public/images/small/gregtech/gt.blockmachines/30714.png deleted file mode 100644 index b101525e49..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30714.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30715.png b/front/public/images/small/gregtech/gt.blockmachines/30715.png deleted file mode 100644 index 19c3ea0eab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30715.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30716.png b/front/public/images/small/gregtech/gt.blockmachines/30716.png deleted file mode 100644 index 804694c82f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30716.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30717.png b/front/public/images/small/gregtech/gt.blockmachines/30717.png deleted file mode 100644 index ec5340d5c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30717.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30718.png b/front/public/images/small/gregtech/gt.blockmachines/30718.png deleted file mode 100644 index ed57b600e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30718.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30719.png b/front/public/images/small/gregtech/gt.blockmachines/30719.png deleted file mode 100644 index ed3186080e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30719.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30720.png b/front/public/images/small/gregtech/gt.blockmachines/30720.png deleted file mode 100644 index 0a8824a750..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30720.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30721.png b/front/public/images/small/gregtech/gt.blockmachines/30721.png deleted file mode 100644 index 9c9f2339fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30721.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30722.png b/front/public/images/small/gregtech/gt.blockmachines/30722.png deleted file mode 100644 index 8b8dc9af39..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30722.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30723.png b/front/public/images/small/gregtech/gt.blockmachines/30723.png deleted file mode 100644 index cd6290f20a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30723.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30724.png b/front/public/images/small/gregtech/gt.blockmachines/30724.png deleted file mode 100644 index c9574e8d63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30724.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30725.png b/front/public/images/small/gregtech/gt.blockmachines/30725.png deleted file mode 100644 index f949ee9e4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30725.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30726.png b/front/public/images/small/gregtech/gt.blockmachines/30726.png deleted file mode 100644 index 12f2031563..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30726.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30727.png b/front/public/images/small/gregtech/gt.blockmachines/30727.png deleted file mode 100644 index 3777ffcf95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30727.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30728.png b/front/public/images/small/gregtech/gt.blockmachines/30728.png deleted file mode 100644 index 9406a24d40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30728.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30729.png b/front/public/images/small/gregtech/gt.blockmachines/30729.png deleted file mode 100644 index 9654245385..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30729.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30730.png b/front/public/images/small/gregtech/gt.blockmachines/30730.png deleted file mode 100644 index b469e5ab9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30730.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30731.png b/front/public/images/small/gregtech/gt.blockmachines/30731.png deleted file mode 100644 index 3b5daffe65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30731.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30732.png b/front/public/images/small/gregtech/gt.blockmachines/30732.png deleted file mode 100644 index 1c76343073..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30732.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30733.png b/front/public/images/small/gregtech/gt.blockmachines/30733.png deleted file mode 100644 index dd70714701..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30733.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30734.png b/front/public/images/small/gregtech/gt.blockmachines/30734.png deleted file mode 100644 index 6c5e730cc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30734.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30735.png b/front/public/images/small/gregtech/gt.blockmachines/30735.png deleted file mode 100644 index 431ccfd227..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30736.png b/front/public/images/small/gregtech/gt.blockmachines/30736.png deleted file mode 100644 index d568def2bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30736.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30737.png b/front/public/images/small/gregtech/gt.blockmachines/30737.png deleted file mode 100644 index 68e347886e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30737.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30738.png b/front/public/images/small/gregtech/gt.blockmachines/30738.png deleted file mode 100644 index c0f37106dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30738.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30739.png b/front/public/images/small/gregtech/gt.blockmachines/30739.png deleted file mode 100644 index aa1b921010..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30740.png b/front/public/images/small/gregtech/gt.blockmachines/30740.png deleted file mode 100644 index 1bd39d9511..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30741.png b/front/public/images/small/gregtech/gt.blockmachines/30741.png deleted file mode 100644 index d30bb12e02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30742.png b/front/public/images/small/gregtech/gt.blockmachines/30742.png deleted file mode 100644 index 7c412d0138..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30742.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30743.png b/front/public/images/small/gregtech/gt.blockmachines/30743.png deleted file mode 100644 index f0fac48d07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30743.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30744.png b/front/public/images/small/gregtech/gt.blockmachines/30744.png deleted file mode 100644 index 3a0cdc3c27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30744.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30745.png b/front/public/images/small/gregtech/gt.blockmachines/30745.png deleted file mode 100644 index 3bada23393..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30746.png b/front/public/images/small/gregtech/gt.blockmachines/30746.png deleted file mode 100644 index 612481e035..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30746.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30747.png b/front/public/images/small/gregtech/gt.blockmachines/30747.png deleted file mode 100644 index 6594838cac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30747.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30748.png b/front/public/images/small/gregtech/gt.blockmachines/30748.png deleted file mode 100644 index 97a2d95453..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30748.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30749.png b/front/public/images/small/gregtech/gt.blockmachines/30749.png deleted file mode 100644 index 97592a4d4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30750.png b/front/public/images/small/gregtech/gt.blockmachines/30750.png deleted file mode 100644 index b99bf53a6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30750.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30751.png b/front/public/images/small/gregtech/gt.blockmachines/30751.png deleted file mode 100644 index 6ec4699980..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30752.png b/front/public/images/small/gregtech/gt.blockmachines/30752.png deleted file mode 100644 index 46f68f98f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30752.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30753.png b/front/public/images/small/gregtech/gt.blockmachines/30753.png deleted file mode 100644 index 8cc8838f49..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30753.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30754.png b/front/public/images/small/gregtech/gt.blockmachines/30754.png deleted file mode 100644 index e60a2fb355..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30754.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30755.png b/front/public/images/small/gregtech/gt.blockmachines/30755.png deleted file mode 100644 index b584ddff2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30755.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30756.png b/front/public/images/small/gregtech/gt.blockmachines/30756.png deleted file mode 100644 index d9ffe1a770..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30756.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30757.png b/front/public/images/small/gregtech/gt.blockmachines/30757.png deleted file mode 100644 index 5de632db4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30757.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30758.png b/front/public/images/small/gregtech/gt.blockmachines/30758.png deleted file mode 100644 index 6c39dbb2d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30758.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30759.png b/front/public/images/small/gregtech/gt.blockmachines/30759.png deleted file mode 100644 index 7997de4fd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30759.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30760.png b/front/public/images/small/gregtech/gt.blockmachines/30760.png deleted file mode 100644 index e51c2bf6ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30761.png b/front/public/images/small/gregtech/gt.blockmachines/30761.png deleted file mode 100644 index 1ea83adfc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30761.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30762.png b/front/public/images/small/gregtech/gt.blockmachines/30762.png deleted file mode 100644 index cefd1405eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30762.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30763.png b/front/public/images/small/gregtech/gt.blockmachines/30763.png deleted file mode 100644 index 7d403974fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30763.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30764.png b/front/public/images/small/gregtech/gt.blockmachines/30764.png deleted file mode 100644 index e03fbf302e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30764.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30765.png b/front/public/images/small/gregtech/gt.blockmachines/30765.png deleted file mode 100644 index 292e5756d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30766.png b/front/public/images/small/gregtech/gt.blockmachines/30766.png deleted file mode 100644 index a971a18123..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30766.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30767.png b/front/public/images/small/gregtech/gt.blockmachines/30767.png deleted file mode 100644 index aa3a466d0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30767.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30768.png b/front/public/images/small/gregtech/gt.blockmachines/30768.png deleted file mode 100644 index 521cf91a3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30768.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30769.png b/front/public/images/small/gregtech/gt.blockmachines/30769.png deleted file mode 100644 index 4134220a07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30769.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30770.png b/front/public/images/small/gregtech/gt.blockmachines/30770.png deleted file mode 100644 index a2387d3eed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30771.png b/front/public/images/small/gregtech/gt.blockmachines/30771.png deleted file mode 100644 index b8805bb61f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30771.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30772.png b/front/public/images/small/gregtech/gt.blockmachines/30772.png deleted file mode 100644 index aa2a39ec15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30773.png b/front/public/images/small/gregtech/gt.blockmachines/30773.png deleted file mode 100644 index 9235397cc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30773.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30774.png b/front/public/images/small/gregtech/gt.blockmachines/30774.png deleted file mode 100644 index 71058c84dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30774.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30995.png b/front/public/images/small/gregtech/gt.blockmachines/30995.png deleted file mode 100644 index 2554f0b975..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30995.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30996.png b/front/public/images/small/gregtech/gt.blockmachines/30996.png deleted file mode 100644 index 702ee87040..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30996.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30997.png b/front/public/images/small/gregtech/gt.blockmachines/30997.png deleted file mode 100644 index 73210a245a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30997.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30998.png b/front/public/images/small/gregtech/gt.blockmachines/30998.png deleted file mode 100644 index ddc2156c2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30998.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/30999.png b/front/public/images/small/gregtech/gt.blockmachines/30999.png deleted file mode 100644 index e16c356146..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/30999.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31.png b/front/public/images/small/gregtech/gt.blockmachines/31.png deleted file mode 100644 index 620d44ef42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/310.png b/front/public/images/small/gregtech/gt.blockmachines/310.png deleted file mode 100644 index 614474ccfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31010.png b/front/public/images/small/gregtech/gt.blockmachines/31010.png deleted file mode 100644 index 75df629adc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31017.png b/front/public/images/small/gregtech/gt.blockmachines/31017.png deleted file mode 100644 index a20ef3b869..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31017.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31018.png b/front/public/images/small/gregtech/gt.blockmachines/31018.png deleted file mode 100644 index 24c18ddd63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31019.png b/front/public/images/small/gregtech/gt.blockmachines/31019.png deleted file mode 100644 index 4a4f5aaee6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31020.png b/front/public/images/small/gregtech/gt.blockmachines/31020.png deleted file mode 100644 index 58ffed23e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31021.png b/front/public/images/small/gregtech/gt.blockmachines/31021.png deleted file mode 100644 index 9a4d2c4338..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31023.png b/front/public/images/small/gregtech/gt.blockmachines/31023.png deleted file mode 100644 index 3529663526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31025.png b/front/public/images/small/gregtech/gt.blockmachines/31025.png deleted file mode 100644 index a16e7a6463..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31026.png b/front/public/images/small/gregtech/gt.blockmachines/31026.png deleted file mode 100644 index 41377a87f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31027.png b/front/public/images/small/gregtech/gt.blockmachines/31027.png deleted file mode 100644 index e728539ab7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31028.png b/front/public/images/small/gregtech/gt.blockmachines/31028.png deleted file mode 100644 index 4c436f552a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31029.png b/front/public/images/small/gregtech/gt.blockmachines/31029.png deleted file mode 100644 index aecac46199..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31030.png b/front/public/images/small/gregtech/gt.blockmachines/31030.png deleted file mode 100644 index 2fdf1f0efb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31031.png b/front/public/images/small/gregtech/gt.blockmachines/31031.png deleted file mode 100644 index 19aece5d78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31032.png b/front/public/images/small/gregtech/gt.blockmachines/31032.png deleted file mode 100644 index 99d43b735f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31033.png b/front/public/images/small/gregtech/gt.blockmachines/31033.png deleted file mode 100644 index aad08f883b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31034.png b/front/public/images/small/gregtech/gt.blockmachines/31034.png deleted file mode 100644 index 1c44e1dcd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31035.png b/front/public/images/small/gregtech/gt.blockmachines/31035.png deleted file mode 100644 index bc54aae851..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31040.png b/front/public/images/small/gregtech/gt.blockmachines/31040.png deleted file mode 100644 index 2ceb2733e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31040.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31041.png b/front/public/images/small/gregtech/gt.blockmachines/31041.png deleted file mode 100644 index fb9b19791d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31041.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31046.png b/front/public/images/small/gregtech/gt.blockmachines/31046.png deleted file mode 100644 index 93ba3b27b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31046.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31047.png b/front/public/images/small/gregtech/gt.blockmachines/31047.png deleted file mode 100644 index dcc5d2a662..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31050.png b/front/public/images/small/gregtech/gt.blockmachines/31050.png deleted file mode 100644 index 238cf13133..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31050.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31051.png b/front/public/images/small/gregtech/gt.blockmachines/31051.png deleted file mode 100644 index 06e62a07b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31051.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31065.png b/front/public/images/small/gregtech/gt.blockmachines/31065.png deleted file mode 100644 index 35771b156b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31066.png b/front/public/images/small/gregtech/gt.blockmachines/31066.png deleted file mode 100644 index 5af8a23b1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31067.png b/front/public/images/small/gregtech/gt.blockmachines/31067.png deleted file mode 100644 index 391a904d1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31068.png b/front/public/images/small/gregtech/gt.blockmachines/31068.png deleted file mode 100644 index e1c050f7e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31069.png b/front/public/images/small/gregtech/gt.blockmachines/31069.png deleted file mode 100644 index a7d6c95f22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31070.png b/front/public/images/small/gregtech/gt.blockmachines/31070.png deleted file mode 100644 index 1e6535a284..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31071.png b/front/public/images/small/gregtech/gt.blockmachines/31071.png deleted file mode 100644 index 4bc0b6921b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31072.png b/front/public/images/small/gregtech/gt.blockmachines/31072.png deleted file mode 100644 index 75277ddf45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31073.png b/front/public/images/small/gregtech/gt.blockmachines/31073.png deleted file mode 100644 index e8dba7a102..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31074.png b/front/public/images/small/gregtech/gt.blockmachines/31074.png deleted file mode 100644 index c00da59e8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31075.png b/front/public/images/small/gregtech/gt.blockmachines/31075.png deleted file mode 100644 index 189a26430b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31076.png b/front/public/images/small/gregtech/gt.blockmachines/31076.png deleted file mode 100644 index 4ff454e381..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31077.png b/front/public/images/small/gregtech/gt.blockmachines/31077.png deleted file mode 100644 index a080370c09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31078.png b/front/public/images/small/gregtech/gt.blockmachines/31078.png deleted file mode 100644 index dcbe82699a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31079.png b/front/public/images/small/gregtech/gt.blockmachines/31079.png deleted file mode 100644 index b6fa03ad2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31079.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31091.png b/front/public/images/small/gregtech/gt.blockmachines/31091.png deleted file mode 100644 index 3822d7dbcc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31091.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31092.png b/front/public/images/small/gregtech/gt.blockmachines/31092.png deleted file mode 100644 index dc2fcee59e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31092.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31093.png b/front/public/images/small/gregtech/gt.blockmachines/31093.png deleted file mode 100644 index 4c6d83aceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31093.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31094.png b/front/public/images/small/gregtech/gt.blockmachines/31094.png deleted file mode 100644 index 8cd5e3fbea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31094.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31095.png b/front/public/images/small/gregtech/gt.blockmachines/31095.png deleted file mode 100644 index 7c84556cf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31095.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31096.png b/front/public/images/small/gregtech/gt.blockmachines/31096.png deleted file mode 100644 index 43587489e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31097.png b/front/public/images/small/gregtech/gt.blockmachines/31097.png deleted file mode 100644 index b182fd6185..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31098.png b/front/public/images/small/gregtech/gt.blockmachines/31098.png deleted file mode 100644 index 66c521fb08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31111.png b/front/public/images/small/gregtech/gt.blockmachines/31111.png deleted file mode 100644 index 46173f5cce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31112.png b/front/public/images/small/gregtech/gt.blockmachines/31112.png deleted file mode 100644 index 5554f8abe0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31113.png b/front/public/images/small/gregtech/gt.blockmachines/31113.png deleted file mode 100644 index 0e97abce65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31113.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31114.png b/front/public/images/small/gregtech/gt.blockmachines/31114.png deleted file mode 100644 index 0dc1a45ea8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31115.png b/front/public/images/small/gregtech/gt.blockmachines/31115.png deleted file mode 100644 index de590353b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31115.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31116.png b/front/public/images/small/gregtech/gt.blockmachines/31116.png deleted file mode 100644 index 1ad8d46f89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31116.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31117.png b/front/public/images/small/gregtech/gt.blockmachines/31117.png deleted file mode 100644 index b4c850a111..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31117.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31118.png b/front/public/images/small/gregtech/gt.blockmachines/31118.png deleted file mode 100644 index b981d303d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31118.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31150.png b/front/public/images/small/gregtech/gt.blockmachines/31150.png deleted file mode 100644 index 81c5406c8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31151.png b/front/public/images/small/gregtech/gt.blockmachines/31151.png deleted file mode 100644 index 4ce050aee1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31151.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/316.png b/front/public/images/small/gregtech/gt.blockmachines/316.png deleted file mode 100644 index 131a5094eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/317.png b/front/public/images/small/gregtech/gt.blockmachines/317.png deleted file mode 100644 index e9e5d44adf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31778.png b/front/public/images/small/gregtech/gt.blockmachines/31778.png deleted file mode 100644 index 4673b2475a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31778.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31779.png b/front/public/images/small/gregtech/gt.blockmachines/31779.png deleted file mode 100644 index 91c2e82fa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31779.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31780.png b/front/public/images/small/gregtech/gt.blockmachines/31780.png deleted file mode 100644 index 3f4c893c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31780.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31781.png b/front/public/images/small/gregtech/gt.blockmachines/31781.png deleted file mode 100644 index 8da2275c89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31781.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31782.png b/front/public/images/small/gregtech/gt.blockmachines/31782.png deleted file mode 100644 index 2ceb2733e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31782.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31783.png b/front/public/images/small/gregtech/gt.blockmachines/31783.png deleted file mode 100644 index 50486ff43f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31783.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31784.png b/front/public/images/small/gregtech/gt.blockmachines/31784.png deleted file mode 100644 index 8aa0524872..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31784.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31790.png b/front/public/images/small/gregtech/gt.blockmachines/31790.png deleted file mode 100644 index 4b8d74be5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31790.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31791.png b/front/public/images/small/gregtech/gt.blockmachines/31791.png deleted file mode 100644 index a5371359ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31791.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31792.png b/front/public/images/small/gregtech/gt.blockmachines/31792.png deleted file mode 100644 index a973f42beb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31792.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/31793.png b/front/public/images/small/gregtech/gt.blockmachines/31793.png deleted file mode 100644 index af234c3f06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/31793.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/318.png b/front/public/images/small/gregtech/gt.blockmachines/318.png deleted file mode 100644 index 599eba2f22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/319.png b/front/public/images/small/gregtech/gt.blockmachines/319.png deleted file mode 100644 index 8d81cd969e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32.png b/front/public/images/small/gregtech/gt.blockmachines/32.png deleted file mode 100644 index 179d7bb4d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32001.png b/front/public/images/small/gregtech/gt.blockmachines/32001.png deleted file mode 100644 index 03de8c5f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32002.png b/front/public/images/small/gregtech/gt.blockmachines/32002.png deleted file mode 100644 index 86451d1267..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32003.png b/front/public/images/small/gregtech/gt.blockmachines/32003.png deleted file mode 100644 index bc0e44547a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32004.png b/front/public/images/small/gregtech/gt.blockmachines/32004.png deleted file mode 100644 index 7802e17ed1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32005.png b/front/public/images/small/gregtech/gt.blockmachines/32005.png deleted file mode 100644 index 7245ded251..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32006.png b/front/public/images/small/gregtech/gt.blockmachines/32006.png deleted file mode 100644 index 1c3b1bc49c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32007.png b/front/public/images/small/gregtech/gt.blockmachines/32007.png deleted file mode 100644 index c25b1de58a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32008.png b/front/public/images/small/gregtech/gt.blockmachines/32008.png deleted file mode 100644 index 0b4a34550b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32009.png b/front/public/images/small/gregtech/gt.blockmachines/32009.png deleted file mode 100644 index 9634c5dec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32010.png b/front/public/images/small/gregtech/gt.blockmachines/32010.png deleted file mode 100644 index e7684f2cda..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32011.png b/front/public/images/small/gregtech/gt.blockmachines/32011.png deleted file mode 100644 index ea4e160c92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32011.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32012.png b/front/public/images/small/gregtech/gt.blockmachines/32012.png deleted file mode 100644 index 447060ef42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32012.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32013.png b/front/public/images/small/gregtech/gt.blockmachines/32013.png deleted file mode 100644 index f31a3c04a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32013.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32014.png b/front/public/images/small/gregtech/gt.blockmachines/32014.png deleted file mode 100644 index 142b2379ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32014.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32015.png b/front/public/images/small/gregtech/gt.blockmachines/32015.png deleted file mode 100644 index 4d724202f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32015.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32016.png b/front/public/images/small/gregtech/gt.blockmachines/32016.png deleted file mode 100644 index 86a74c694f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32016.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32017.png b/front/public/images/small/gregtech/gt.blockmachines/32017.png deleted file mode 100644 index 565a6d3ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32017.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32018.png b/front/public/images/small/gregtech/gt.blockmachines/32018.png deleted file mode 100644 index ac6d7b4931..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32019.png b/front/public/images/small/gregtech/gt.blockmachines/32019.png deleted file mode 100644 index e0c60829d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32020.png b/front/public/images/small/gregtech/gt.blockmachines/32020.png deleted file mode 100644 index e0c60829d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32021.png b/front/public/images/small/gregtech/gt.blockmachines/32021.png deleted file mode 100644 index e0c60829d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32022.png b/front/public/images/small/gregtech/gt.blockmachines/32022.png deleted file mode 100644 index 0a833b7e37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32023.png b/front/public/images/small/gregtech/gt.blockmachines/32023.png deleted file mode 100644 index eba181234a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32024.png b/front/public/images/small/gregtech/gt.blockmachines/32024.png deleted file mode 100644 index 32acc09826..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32024.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32025.png b/front/public/images/small/gregtech/gt.blockmachines/32025.png deleted file mode 100644 index 6c3b0a7554..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32026.png b/front/public/images/small/gregtech/gt.blockmachines/32026.png deleted file mode 100644 index f0f512be79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32737.png b/front/public/images/small/gregtech/gt.blockmachines/32737.png deleted file mode 100644 index a5f48ec381..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32737.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32738.png b/front/public/images/small/gregtech/gt.blockmachines/32738.png deleted file mode 100644 index e5f7a57be5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32738.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32739.png b/front/public/images/small/gregtech/gt.blockmachines/32739.png deleted file mode 100644 index 1ece432f4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32740.png b/front/public/images/small/gregtech/gt.blockmachines/32740.png deleted file mode 100644 index 6eb4b33646..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32741.png b/front/public/images/small/gregtech/gt.blockmachines/32741.png deleted file mode 100644 index 76ee7676c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32742.png b/front/public/images/small/gregtech/gt.blockmachines/32742.png deleted file mode 100644 index 7a3fac8413..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32742.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32743.png b/front/public/images/small/gregtech/gt.blockmachines/32743.png deleted file mode 100644 index 8c2247eba2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32743.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32744.png b/front/public/images/small/gregtech/gt.blockmachines/32744.png deleted file mode 100644 index ebb92c203f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32744.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32745.png b/front/public/images/small/gregtech/gt.blockmachines/32745.png deleted file mode 100644 index 5038c6ca74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32746.png b/front/public/images/small/gregtech/gt.blockmachines/32746.png deleted file mode 100644 index dbf3a457a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32746.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32747.png b/front/public/images/small/gregtech/gt.blockmachines/32747.png deleted file mode 100644 index 337726bc7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32747.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32748.png b/front/public/images/small/gregtech/gt.blockmachines/32748.png deleted file mode 100644 index 34527e3206..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32748.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32749.png b/front/public/images/small/gregtech/gt.blockmachines/32749.png deleted file mode 100644 index 011705359d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32750.png b/front/public/images/small/gregtech/gt.blockmachines/32750.png deleted file mode 100644 index 8923125785..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32750.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32751.png b/front/public/images/small/gregtech/gt.blockmachines/32751.png deleted file mode 100644 index c1cf990279..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32752.png b/front/public/images/small/gregtech/gt.blockmachines/32752.png deleted file mode 100644 index 9645fc63ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32752.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32753.png b/front/public/images/small/gregtech/gt.blockmachines/32753.png deleted file mode 100644 index 5960c88a9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32753.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32754.png b/front/public/images/small/gregtech/gt.blockmachines/32754.png deleted file mode 100644 index bc36e7ef2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32754.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32755.png b/front/public/images/small/gregtech/gt.blockmachines/32755.png deleted file mode 100644 index 434027594a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32755.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32756.png b/front/public/images/small/gregtech/gt.blockmachines/32756.png deleted file mode 100644 index e56c8cac8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32756.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32757.png b/front/public/images/small/gregtech/gt.blockmachines/32757.png deleted file mode 100644 index 5007f0605d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32757.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32758.png b/front/public/images/small/gregtech/gt.blockmachines/32758.png deleted file mode 100644 index 1e5568b713..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32758.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32759.png b/front/public/images/small/gregtech/gt.blockmachines/32759.png deleted file mode 100644 index e59913b6c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32759.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/32760.png b/front/public/images/small/gregtech/gt.blockmachines/32760.png deleted file mode 100644 index 4159f9fcf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/32760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/33.png b/front/public/images/small/gregtech/gt.blockmachines/33.png deleted file mode 100644 index a6d0dcdfb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/33.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/34.png b/front/public/images/small/gregtech/gt.blockmachines/34.png deleted file mode 100644 index 13f10bb9d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/34.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/341.png b/front/public/images/small/gregtech/gt.blockmachines/341.png deleted file mode 100644 index 2ee56ef94c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/342.png b/front/public/images/small/gregtech/gt.blockmachines/342.png deleted file mode 100644 index afb076fefe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/343.png b/front/public/images/small/gregtech/gt.blockmachines/343.png deleted file mode 100644 index 1e80cf8b50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/344.png b/front/public/images/small/gregtech/gt.blockmachines/344.png deleted file mode 100644 index ad6fed18c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/345.png b/front/public/images/small/gregtech/gt.blockmachines/345.png deleted file mode 100644 index 1b7dfd534e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/346.png b/front/public/images/small/gregtech/gt.blockmachines/346.png deleted file mode 100644 index aae67fa666..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/347.png b/front/public/images/small/gregtech/gt.blockmachines/347.png deleted file mode 100644 index b7a17c6d24..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/348.png b/front/public/images/small/gregtech/gt.blockmachines/348.png deleted file mode 100644 index ee03c6204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/349.png b/front/public/images/small/gregtech/gt.blockmachines/349.png deleted file mode 100644 index af42f1623c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/35.png b/front/public/images/small/gregtech/gt.blockmachines/35.png deleted file mode 100644 index 6b407cc1d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/35.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/356.png b/front/public/images/small/gregtech/gt.blockmachines/356.png deleted file mode 100644 index 3df6abef76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/357.png b/front/public/images/small/gregtech/gt.blockmachines/357.png deleted file mode 100644 index 1cc16cfe96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/36.png b/front/public/images/small/gregtech/gt.blockmachines/36.png deleted file mode 100644 index fdc693c77c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/36.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/37.png b/front/public/images/small/gregtech/gt.blockmachines/37.png deleted file mode 100644 index b5b4401fac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/37.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/38.png b/front/public/images/small/gregtech/gt.blockmachines/38.png deleted file mode 100644 index 412cf8de95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/38.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/39.png b/front/public/images/small/gregtech/gt.blockmachines/39.png deleted file mode 100644 index 754c2f9e65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/39.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4.png b/front/public/images/small/gregtech/gt.blockmachines/4.png deleted file mode 100644 index 3138a4a2ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/40.png b/front/public/images/small/gregtech/gt.blockmachines/40.png deleted file mode 100644 index bc0e44547a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/40.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/401.png b/front/public/images/small/gregtech/gt.blockmachines/401.png deleted file mode 100644 index 7c426b4745..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/402.png b/front/public/images/small/gregtech/gt.blockmachines/402.png deleted file mode 100644 index 0e58479cc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/403.png b/front/public/images/small/gregtech/gt.blockmachines/403.png deleted file mode 100644 index 768ad6e705..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/404.png b/front/public/images/small/gregtech/gt.blockmachines/404.png deleted file mode 100644 index 1bb423211b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/405.png b/front/public/images/small/gregtech/gt.blockmachines/405.png deleted file mode 100644 index 1caf1ae576..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/406.png b/front/public/images/small/gregtech/gt.blockmachines/406.png deleted file mode 100644 index ef019ce29a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/407.png b/front/public/images/small/gregtech/gt.blockmachines/407.png deleted file mode 100644 index 1c7821c227..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/408.png b/front/public/images/small/gregtech/gt.blockmachines/408.png deleted file mode 100644 index ee444260f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/41.png b/front/public/images/small/gregtech/gt.blockmachines/41.png deleted file mode 100644 index 7802e17ed1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/41.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4102.png b/front/public/images/small/gregtech/gt.blockmachines/4102.png deleted file mode 100644 index 318484924a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4104.png b/front/public/images/small/gregtech/gt.blockmachines/4104.png deleted file mode 100644 index 671ac76af3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4106.png b/front/public/images/small/gregtech/gt.blockmachines/4106.png deleted file mode 100644 index 8b207da56f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4114.png b/front/public/images/small/gregtech/gt.blockmachines/4114.png deleted file mode 100644 index f66858ba4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4115.png b/front/public/images/small/gregtech/gt.blockmachines/4115.png deleted file mode 100644 index 3d3bc2b068..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4115.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4116.png b/front/public/images/small/gregtech/gt.blockmachines/4116.png deleted file mode 100644 index 999a6f5921..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4116.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4121.png b/front/public/images/small/gregtech/gt.blockmachines/4121.png deleted file mode 100644 index bf42261667..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4121.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4123.png b/front/public/images/small/gregtech/gt.blockmachines/4123.png deleted file mode 100644 index 7a27c99d7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4123.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4124.png b/front/public/images/small/gregtech/gt.blockmachines/4124.png deleted file mode 100644 index a91e602a8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4124.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4125.png b/front/public/images/small/gregtech/gt.blockmachines/4125.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4125.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4126.png b/front/public/images/small/gregtech/gt.blockmachines/4126.png deleted file mode 100644 index 1596ed8991..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4126.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4127.png b/front/public/images/small/gregtech/gt.blockmachines/4127.png deleted file mode 100644 index a30b87a2bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4127.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4128.png b/front/public/images/small/gregtech/gt.blockmachines/4128.png deleted file mode 100644 index 1598ff581f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4128.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4129.png b/front/public/images/small/gregtech/gt.blockmachines/4129.png deleted file mode 100644 index c9d6200ad9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4130.png b/front/public/images/small/gregtech/gt.blockmachines/4130.png deleted file mode 100644 index 0ee7dbe667..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4131.png b/front/public/images/small/gregtech/gt.blockmachines/4131.png deleted file mode 100644 index 2e7a13d9c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4132.png b/front/public/images/small/gregtech/gt.blockmachines/4132.png deleted file mode 100644 index 1c9ac25f85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4132.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4133.png b/front/public/images/small/gregtech/gt.blockmachines/4133.png deleted file mode 100644 index 4d954fa75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4133.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4135.png b/front/public/images/small/gregtech/gt.blockmachines/4135.png deleted file mode 100644 index e1a29582fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4135.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4139.png b/front/public/images/small/gregtech/gt.blockmachines/4139.png deleted file mode 100644 index 4de8c8eccc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4141.png b/front/public/images/small/gregtech/gt.blockmachines/4141.png deleted file mode 100644 index 93574a851f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4143.png b/front/public/images/small/gregtech/gt.blockmachines/4143.png deleted file mode 100644 index 512c472748..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4144.png b/front/public/images/small/gregtech/gt.blockmachines/4144.png deleted file mode 100644 index 08a0869c21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4148.png b/front/public/images/small/gregtech/gt.blockmachines/4148.png deleted file mode 100644 index 101741f222..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4148.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4150.png b/front/public/images/small/gregtech/gt.blockmachines/4150.png deleted file mode 100644 index 4d954fa75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4152.png b/front/public/images/small/gregtech/gt.blockmachines/4152.png deleted file mode 100644 index 52091bf306..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4152.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4153.png b/front/public/images/small/gregtech/gt.blockmachines/4153.png deleted file mode 100644 index 725338ff21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4153.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4154.png b/front/public/images/small/gregtech/gt.blockmachines/4154.png deleted file mode 100644 index 84fb3b6514..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4154.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4155.png b/front/public/images/small/gregtech/gt.blockmachines/4155.png deleted file mode 100644 index 935a6a900b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4155.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4158.png b/front/public/images/small/gregtech/gt.blockmachines/4158.png deleted file mode 100644 index 56b5573445..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4158.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4159.png b/front/public/images/small/gregtech/gt.blockmachines/4159.png deleted file mode 100644 index e1a29582fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4159.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4160.png b/front/public/images/small/gregtech/gt.blockmachines/4160.png deleted file mode 100644 index b0e8917b02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4160.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4161.png b/front/public/images/small/gregtech/gt.blockmachines/4161.png deleted file mode 100644 index 87a22f4149..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4161.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4162.png b/front/public/images/small/gregtech/gt.blockmachines/4162.png deleted file mode 100644 index 1547bd905e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4162.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4163.png b/front/public/images/small/gregtech/gt.blockmachines/4163.png deleted file mode 100644 index a3ef08095d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4163.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4164.png b/front/public/images/small/gregtech/gt.blockmachines/4164.png deleted file mode 100644 index 72aeddeec5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4164.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4165.png b/front/public/images/small/gregtech/gt.blockmachines/4165.png deleted file mode 100644 index 89899be41c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4165.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4166.png b/front/public/images/small/gregtech/gt.blockmachines/4166.png deleted file mode 100644 index ba7a7282bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4166.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4167.png b/front/public/images/small/gregtech/gt.blockmachines/4167.png deleted file mode 100644 index 3da1d1c448..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4167.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4168.png b/front/public/images/small/gregtech/gt.blockmachines/4168.png deleted file mode 100644 index e1a29582fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4168.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4169.png b/front/public/images/small/gregtech/gt.blockmachines/4169.png deleted file mode 100644 index 47cbea7a24..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4169.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4170.png b/front/public/images/small/gregtech/gt.blockmachines/4170.png deleted file mode 100644 index 4859e0ac77..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4170.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4171.png b/front/public/images/small/gregtech/gt.blockmachines/4171.png deleted file mode 100644 index 59ee07e58c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4171.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4172.png b/front/public/images/small/gregtech/gt.blockmachines/4172.png deleted file mode 100644 index 6332916b73..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4172.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4173.png b/front/public/images/small/gregtech/gt.blockmachines/4173.png deleted file mode 100644 index c7abf05333..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4173.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4174.png b/front/public/images/small/gregtech/gt.blockmachines/4174.png deleted file mode 100644 index eb0c67dae2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4174.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4176.png b/front/public/images/small/gregtech/gt.blockmachines/4176.png deleted file mode 100644 index c2a0b19920..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4176.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4177.png b/front/public/images/small/gregtech/gt.blockmachines/4177.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4177.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4179.png b/front/public/images/small/gregtech/gt.blockmachines/4179.png deleted file mode 100644 index db0b00ba81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4179.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4180.png b/front/public/images/small/gregtech/gt.blockmachines/4180.png deleted file mode 100644 index a730630172..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4180.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4181.png b/front/public/images/small/gregtech/gt.blockmachines/4181.png deleted file mode 100644 index a164baa063..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4181.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4182.png b/front/public/images/small/gregtech/gt.blockmachines/4182.png deleted file mode 100644 index 63012f3af6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4182.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4185.png b/front/public/images/small/gregtech/gt.blockmachines/4185.png deleted file mode 100644 index f3bc49464e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4185.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4186.png b/front/public/images/small/gregtech/gt.blockmachines/4186.png deleted file mode 100644 index 89a631b001..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4186.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4192.png b/front/public/images/small/gregtech/gt.blockmachines/4192.png deleted file mode 100644 index 5ac98ace00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4192.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4193.png b/front/public/images/small/gregtech/gt.blockmachines/4193.png deleted file mode 100644 index f1fb5b3b59..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4193.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4194.png b/front/public/images/small/gregtech/gt.blockmachines/4194.png deleted file mode 100644 index 6d684db358..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4194.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4196.png b/front/public/images/small/gregtech/gt.blockmachines/4196.png deleted file mode 100644 index 4538da6289..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4196.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4197.png b/front/public/images/small/gregtech/gt.blockmachines/4197.png deleted file mode 100644 index 412dd7807f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4197.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4199.png b/front/public/images/small/gregtech/gt.blockmachines/4199.png deleted file mode 100644 index 1598ff581f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4199.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/42.png b/front/public/images/small/gregtech/gt.blockmachines/42.png deleted file mode 100644 index 7245ded251..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/42.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4207.png b/front/public/images/small/gregtech/gt.blockmachines/4207.png deleted file mode 100644 index 11522c9f2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4208.png b/front/public/images/small/gregtech/gt.blockmachines/4208.png deleted file mode 100644 index 8a86cdadbd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4225.png b/front/public/images/small/gregtech/gt.blockmachines/4225.png deleted file mode 100644 index a30b87a2bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4225.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4227.png b/front/public/images/small/gregtech/gt.blockmachines/4227.png deleted file mode 100644 index 7855c58bc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4227.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4230.png b/front/public/images/small/gregtech/gt.blockmachines/4230.png deleted file mode 100644 index 7c9591b6eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4235.png b/front/public/images/small/gregtech/gt.blockmachines/4235.png deleted file mode 100644 index 51764d13d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4235.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4237.png b/front/public/images/small/gregtech/gt.blockmachines/4237.png deleted file mode 100644 index 457b19f302..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4237.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4239.png b/front/public/images/small/gregtech/gt.blockmachines/4239.png deleted file mode 100644 index 5ddc8b98e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4239.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4297.png b/front/public/images/small/gregtech/gt.blockmachines/4297.png deleted file mode 100644 index 1a9d0b5ca4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4297.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4298.png b/front/public/images/small/gregtech/gt.blockmachines/4298.png deleted file mode 100644 index b140c68e80..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4298.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4299.png b/front/public/images/small/gregtech/gt.blockmachines/4299.png deleted file mode 100644 index 48826cbf3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/43.png b/front/public/images/small/gregtech/gt.blockmachines/43.png deleted file mode 100644 index 1c3b1bc49c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/43.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4301.png b/front/public/images/small/gregtech/gt.blockmachines/4301.png deleted file mode 100644 index 7fe654632f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4302.png b/front/public/images/small/gregtech/gt.blockmachines/4302.png deleted file mode 100644 index 9ec175b303..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4303.png b/front/public/images/small/gregtech/gt.blockmachines/4303.png deleted file mode 100644 index 99b129a5d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4396.png b/front/public/images/small/gregtech/gt.blockmachines/4396.png deleted file mode 100644 index a7a2a05dcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4396.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4397.png b/front/public/images/small/gregtech/gt.blockmachines/4397.png deleted file mode 100644 index fb06529b2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4398.png b/front/public/images/small/gregtech/gt.blockmachines/4398.png deleted file mode 100644 index 0834e6b680..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4399.png b/front/public/images/small/gregtech/gt.blockmachines/4399.png deleted file mode 100644 index 6c23a4ba32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/44.png b/front/public/images/small/gregtech/gt.blockmachines/44.png deleted file mode 100644 index c25b1de58a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/44.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4400.png b/front/public/images/small/gregtech/gt.blockmachines/4400.png deleted file mode 100644 index 5d72b74220..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4401.png b/front/public/images/small/gregtech/gt.blockmachines/4401.png deleted file mode 100644 index 101741f222..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4402.png b/front/public/images/small/gregtech/gt.blockmachines/4402.png deleted file mode 100644 index 1320b1a25e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4403.png b/front/public/images/small/gregtech/gt.blockmachines/4403.png deleted file mode 100644 index 5d72b74220..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4404.png b/front/public/images/small/gregtech/gt.blockmachines/4404.png deleted file mode 100644 index f5c5246c51..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4405.png b/front/public/images/small/gregtech/gt.blockmachines/4405.png deleted file mode 100644 index d8eb11101c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4406.png b/front/public/images/small/gregtech/gt.blockmachines/4406.png deleted file mode 100644 index 9133e378a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4407.png b/front/public/images/small/gregtech/gt.blockmachines/4407.png deleted file mode 100644 index 28b4214850..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4408.png b/front/public/images/small/gregtech/gt.blockmachines/4408.png deleted file mode 100644 index ff02627dfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4409.png b/front/public/images/small/gregtech/gt.blockmachines/4409.png deleted file mode 100644 index 1ad517fb7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4409.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/441.png b/front/public/images/small/gregtech/gt.blockmachines/441.png deleted file mode 100644 index 27f25b14e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/441.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4410.png b/front/public/images/small/gregtech/gt.blockmachines/4410.png deleted file mode 100644 index 1192c9751d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4410.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4411.png b/front/public/images/small/gregtech/gt.blockmachines/4411.png deleted file mode 100644 index 52cf03d8a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4411.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4412.png b/front/public/images/small/gregtech/gt.blockmachines/4412.png deleted file mode 100644 index 2b3bd75e53..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4412.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4413.png b/front/public/images/small/gregtech/gt.blockmachines/4413.png deleted file mode 100644 index 29d1312c92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4413.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4414.png b/front/public/images/small/gregtech/gt.blockmachines/4414.png deleted file mode 100644 index a98e55e3c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4414.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4415.png b/front/public/images/small/gregtech/gt.blockmachines/4415.png deleted file mode 100644 index e1a29582fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4415.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4416.png b/front/public/images/small/gregtech/gt.blockmachines/4416.png deleted file mode 100644 index b4d7886a6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4416.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4417.png b/front/public/images/small/gregtech/gt.blockmachines/4417.png deleted file mode 100644 index 824cf550d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4417.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4419.png b/front/public/images/small/gregtech/gt.blockmachines/4419.png deleted file mode 100644 index 1bcae2f59d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4419.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/442.png b/front/public/images/small/gregtech/gt.blockmachines/442.png deleted file mode 100644 index 9bd008336b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/442.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4420.png b/front/public/images/small/gregtech/gt.blockmachines/4420.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4420.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4421.png b/front/public/images/small/gregtech/gt.blockmachines/4421.png deleted file mode 100644 index 60126993c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4421.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4422.png b/front/public/images/small/gregtech/gt.blockmachines/4422.png deleted file mode 100644 index e9dc4da450..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4422.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4423.png b/front/public/images/small/gregtech/gt.blockmachines/4423.png deleted file mode 100644 index 7887625488..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4423.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4424.png b/front/public/images/small/gregtech/gt.blockmachines/4424.png deleted file mode 100644 index e1a29582fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4424.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4425.png b/front/public/images/small/gregtech/gt.blockmachines/4425.png deleted file mode 100644 index 267b3cf2c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4425.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4426.png b/front/public/images/small/gregtech/gt.blockmachines/4426.png deleted file mode 100644 index fee5c6906b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4426.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4427.png b/front/public/images/small/gregtech/gt.blockmachines/4427.png deleted file mode 100644 index f10609e85c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4427.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4429.png b/front/public/images/small/gregtech/gt.blockmachines/4429.png deleted file mode 100644 index 3f7e94e4d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4429.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/443.png b/front/public/images/small/gregtech/gt.blockmachines/443.png deleted file mode 100644 index f11dc54ff8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/443.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4430.png b/front/public/images/small/gregtech/gt.blockmachines/4430.png deleted file mode 100644 index a3ef08095d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4430.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4431.png b/front/public/images/small/gregtech/gt.blockmachines/4431.png deleted file mode 100644 index b80803f33d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4431.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4432.png b/front/public/images/small/gregtech/gt.blockmachines/4432.png deleted file mode 100644 index 6ba9fcdcd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4432.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4433.png b/front/public/images/small/gregtech/gt.blockmachines/4433.png deleted file mode 100644 index 7fab2bc727..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4433.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4434.png b/front/public/images/small/gregtech/gt.blockmachines/4434.png deleted file mode 100644 index a13863739f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4434.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4435.png b/front/public/images/small/gregtech/gt.blockmachines/4435.png deleted file mode 100644 index cb5623cdc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4435.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4436.png b/front/public/images/small/gregtech/gt.blockmachines/4436.png deleted file mode 100644 index 9c1df342b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4436.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4437.png b/front/public/images/small/gregtech/gt.blockmachines/4437.png deleted file mode 100644 index 0ab1ebf3f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4437.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4438.png b/front/public/images/small/gregtech/gt.blockmachines/4438.png deleted file mode 100644 index 00b70b57b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4438.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4439.png b/front/public/images/small/gregtech/gt.blockmachines/4439.png deleted file mode 100644 index eb8eece2bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4439.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/444.png b/front/public/images/small/gregtech/gt.blockmachines/444.png deleted file mode 100644 index 91e3c2a4bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/444.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4440.png b/front/public/images/small/gregtech/gt.blockmachines/4440.png deleted file mode 100644 index 2da414e861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4440.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4441.png b/front/public/images/small/gregtech/gt.blockmachines/4441.png deleted file mode 100644 index af11101464..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4441.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4442.png b/front/public/images/small/gregtech/gt.blockmachines/4442.png deleted file mode 100644 index 25df0ca61b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4442.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4444.png b/front/public/images/small/gregtech/gt.blockmachines/4444.png deleted file mode 100644 index 4baf70e71d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4444.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4445.png b/front/public/images/small/gregtech/gt.blockmachines/4445.png deleted file mode 100644 index 0ca0d0747f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4445.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4446.png b/front/public/images/small/gregtech/gt.blockmachines/4446.png deleted file mode 100644 index ad98609dfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4446.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4447.png b/front/public/images/small/gregtech/gt.blockmachines/4447.png deleted file mode 100644 index 2384bed340..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4447.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4448.png b/front/public/images/small/gregtech/gt.blockmachines/4448.png deleted file mode 100644 index 3742d98863..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4448.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4449.png b/front/public/images/small/gregtech/gt.blockmachines/4449.png deleted file mode 100644 index cb2a58d9f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4449.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/445.png b/front/public/images/small/gregtech/gt.blockmachines/445.png deleted file mode 100644 index 3da5cdac66..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/445.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4450.png b/front/public/images/small/gregtech/gt.blockmachines/4450.png deleted file mode 100644 index 1598ff581f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4450.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4451.png b/front/public/images/small/gregtech/gt.blockmachines/4451.png deleted file mode 100644 index 101741f222..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4451.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4452.png b/front/public/images/small/gregtech/gt.blockmachines/4452.png deleted file mode 100644 index a3ef08095d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4452.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4453.png b/front/public/images/small/gregtech/gt.blockmachines/4453.png deleted file mode 100644 index 7fdca0790f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4453.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4454.png b/front/public/images/small/gregtech/gt.blockmachines/4454.png deleted file mode 100644 index 17e2aa07ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4454.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4455.png b/front/public/images/small/gregtech/gt.blockmachines/4455.png deleted file mode 100644 index d605763d06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4455.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4456.png b/front/public/images/small/gregtech/gt.blockmachines/4456.png deleted file mode 100644 index 6f9229ecc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4456.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4457.png b/front/public/images/small/gregtech/gt.blockmachines/4457.png deleted file mode 100644 index 492800fa02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4457.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4458.png b/front/public/images/small/gregtech/gt.blockmachines/4458.png deleted file mode 100644 index 6db8a1bdfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4458.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4459.png b/front/public/images/small/gregtech/gt.blockmachines/4459.png deleted file mode 100644 index 1598ff581f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4459.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4460.png b/front/public/images/small/gregtech/gt.blockmachines/4460.png deleted file mode 100644 index 2009157f58..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4460.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4461.png b/front/public/images/small/gregtech/gt.blockmachines/4461.png deleted file mode 100644 index f583c8b54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4461.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4462.png b/front/public/images/small/gregtech/gt.blockmachines/4462.png deleted file mode 100644 index 38a34ec6bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4462.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4463.png b/front/public/images/small/gregtech/gt.blockmachines/4463.png deleted file mode 100644 index 0011dbb98e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4463.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4464.png b/front/public/images/small/gregtech/gt.blockmachines/4464.png deleted file mode 100644 index fd8bf3ac30..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4464.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4465.png b/front/public/images/small/gregtech/gt.blockmachines/4465.png deleted file mode 100644 index 257294317b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4465.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4466.png b/front/public/images/small/gregtech/gt.blockmachines/4466.png deleted file mode 100644 index 8f73a88940..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4466.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4467.png b/front/public/images/small/gregtech/gt.blockmachines/4467.png deleted file mode 100644 index 39a93cfe68..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4467.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4468.png b/front/public/images/small/gregtech/gt.blockmachines/4468.png deleted file mode 100644 index 845f35014c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4468.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4469.png b/front/public/images/small/gregtech/gt.blockmachines/4469.png deleted file mode 100644 index b10b6eaf3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4469.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4470.png b/front/public/images/small/gregtech/gt.blockmachines/4470.png deleted file mode 100644 index 2154f622d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4474.png b/front/public/images/small/gregtech/gt.blockmachines/4474.png deleted file mode 100644 index 4fa77732c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4474.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4475.png b/front/public/images/small/gregtech/gt.blockmachines/4475.png deleted file mode 100644 index 365f6e8555..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4475.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4476.png b/front/public/images/small/gregtech/gt.blockmachines/4476.png deleted file mode 100644 index a16a9e5662..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4476.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4477.png b/front/public/images/small/gregtech/gt.blockmachines/4477.png deleted file mode 100644 index dd8243ca96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4477.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4478.png b/front/public/images/small/gregtech/gt.blockmachines/4478.png deleted file mode 100644 index eba00b5b25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4478.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4479.png b/front/public/images/small/gregtech/gt.blockmachines/4479.png deleted file mode 100644 index aa0ef90a14..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4479.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4480.png b/front/public/images/small/gregtech/gt.blockmachines/4480.png deleted file mode 100644 index 2059da2c68..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4480.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4481.png b/front/public/images/small/gregtech/gt.blockmachines/4481.png deleted file mode 100644 index 5be04a80bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4481.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4482.png b/front/public/images/small/gregtech/gt.blockmachines/4482.png deleted file mode 100644 index 0e0e8b9604..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4482.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4483.png b/front/public/images/small/gregtech/gt.blockmachines/4483.png deleted file mode 100644 index 0fa2e7025c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4483.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4484.png b/front/public/images/small/gregtech/gt.blockmachines/4484.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4484.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4485.png b/front/public/images/small/gregtech/gt.blockmachines/4485.png deleted file mode 100644 index 422eb5413b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4486.png b/front/public/images/small/gregtech/gt.blockmachines/4486.png deleted file mode 100644 index 0086448939..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4486.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4487.png b/front/public/images/small/gregtech/gt.blockmachines/4487.png deleted file mode 100644 index 0540684912..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4487.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4488.png b/front/public/images/small/gregtech/gt.blockmachines/4488.png deleted file mode 100644 index 1ca5d63db3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4489.png b/front/public/images/small/gregtech/gt.blockmachines/4489.png deleted file mode 100644 index aa77d46536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4490.png b/front/public/images/small/gregtech/gt.blockmachines/4490.png deleted file mode 100644 index e1a29582fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4490.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4491.png b/front/public/images/small/gregtech/gt.blockmachines/4491.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4491.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4493.png b/front/public/images/small/gregtech/gt.blockmachines/4493.png deleted file mode 100644 index 853252d211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4493.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4494.png b/front/public/images/small/gregtech/gt.blockmachines/4494.png deleted file mode 100644 index 02036e70f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4494.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4495.png b/front/public/images/small/gregtech/gt.blockmachines/4495.png deleted file mode 100644 index 89899be41c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4495.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4496.png b/front/public/images/small/gregtech/gt.blockmachines/4496.png deleted file mode 100644 index 7976e37758..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4496.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4497.png b/front/public/images/small/gregtech/gt.blockmachines/4497.png deleted file mode 100644 index 9b54bd0305..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4497.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4498.png b/front/public/images/small/gregtech/gt.blockmachines/4498.png deleted file mode 100644 index 8070fb0f8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4498.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4499.png b/front/public/images/small/gregtech/gt.blockmachines/4499.png deleted file mode 100644 index 1c86d95c86..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4499.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/45.png b/front/public/images/small/gregtech/gt.blockmachines/45.png deleted file mode 100644 index 0b4a34550b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/45.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4500.png b/front/public/images/small/gregtech/gt.blockmachines/4500.png deleted file mode 100644 index 135ef848ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4501.png b/front/public/images/small/gregtech/gt.blockmachines/4501.png deleted file mode 100644 index 57ded7135c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4502.png b/front/public/images/small/gregtech/gt.blockmachines/4502.png deleted file mode 100644 index 9333afb59c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4503.png b/front/public/images/small/gregtech/gt.blockmachines/4503.png deleted file mode 100644 index e39ee1598c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4504.png b/front/public/images/small/gregtech/gt.blockmachines/4504.png deleted file mode 100644 index 0c283939c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4566.png b/front/public/images/small/gregtech/gt.blockmachines/4566.png deleted file mode 100644 index e5a20fba9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4566.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4567.png b/front/public/images/small/gregtech/gt.blockmachines/4567.png deleted file mode 100644 index 725338ff21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4567.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4568.png b/front/public/images/small/gregtech/gt.blockmachines/4568.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4568.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4569.png b/front/public/images/small/gregtech/gt.blockmachines/4569.png deleted file mode 100644 index a3ef08095d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4569.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4581.png b/front/public/images/small/gregtech/gt.blockmachines/4581.png deleted file mode 100644 index 0257575fdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4584.png b/front/public/images/small/gregtech/gt.blockmachines/4584.png deleted file mode 100644 index 1eab5a9752..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4584.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4585.png b/front/public/images/small/gregtech/gt.blockmachines/4585.png deleted file mode 100644 index 989cdd1d82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/46.png b/front/public/images/small/gregtech/gt.blockmachines/46.png deleted file mode 100644 index 9634c5dec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/46.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/461.png b/front/public/images/small/gregtech/gt.blockmachines/461.png deleted file mode 100644 index 4b1ec8fada..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/461.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4617.png b/front/public/images/small/gregtech/gt.blockmachines/4617.png deleted file mode 100644 index a98e55e3c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4617.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/462.png b/front/public/images/small/gregtech/gt.blockmachines/462.png deleted file mode 100644 index 1feb3d5ce0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/462.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4625.png b/front/public/images/small/gregtech/gt.blockmachines/4625.png deleted file mode 100644 index db740c1881..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4625.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/463.png b/front/public/images/small/gregtech/gt.blockmachines/463.png deleted file mode 100644 index c5a999c385..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/463.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/464.png b/front/public/images/small/gregtech/gt.blockmachines/464.png deleted file mode 100644 index 33e9a1217b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/464.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/465.png b/front/public/images/small/gregtech/gt.blockmachines/465.png deleted file mode 100644 index 1ac3ad1b1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/465.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4672.png b/front/public/images/small/gregtech/gt.blockmachines/4672.png deleted file mode 100644 index c9b582a4a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4672.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4677.png b/front/public/images/small/gregtech/gt.blockmachines/4677.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4678.png b/front/public/images/small/gregtech/gt.blockmachines/4678.png deleted file mode 100644 index 8ddd75621f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4679.png b/front/public/images/small/gregtech/gt.blockmachines/4679.png deleted file mode 100644 index 76c21a9896..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4679.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4681.png b/front/public/images/small/gregtech/gt.blockmachines/4681.png deleted file mode 100644 index 5b73681028..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4681.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4682.png b/front/public/images/small/gregtech/gt.blockmachines/4682.png deleted file mode 100644 index 2e8992be07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4682.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4684.png b/front/public/images/small/gregtech/gt.blockmachines/4684.png deleted file mode 100644 index 0ddb98bf63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4684.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4695.png b/front/public/images/small/gregtech/gt.blockmachines/4695.png deleted file mode 100644 index 7a1e53bef9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4695.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/47.png b/front/public/images/small/gregtech/gt.blockmachines/47.png deleted file mode 100644 index e7684f2cda..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/47.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4706.png b/front/public/images/small/gregtech/gt.blockmachines/4706.png deleted file mode 100644 index 04bdff2c97..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4706.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4707.png b/front/public/images/small/gregtech/gt.blockmachines/4707.png deleted file mode 100644 index 9262b31a0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4707.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4709.png b/front/public/images/small/gregtech/gt.blockmachines/4709.png deleted file mode 100644 index 692c287b43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4709.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4727.png b/front/public/images/small/gregtech/gt.blockmachines/4727.png deleted file mode 100644 index eec13d4804..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4727.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4731.png b/front/public/images/small/gregtech/gt.blockmachines/4731.png deleted file mode 100644 index f65757e30f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4731.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4732.png b/front/public/images/small/gregtech/gt.blockmachines/4732.png deleted file mode 100644 index 26424cce9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4732.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4745.png b/front/public/images/small/gregtech/gt.blockmachines/4745.png deleted file mode 100644 index a710f3e504..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/48.png b/front/public/images/small/gregtech/gt.blockmachines/48.png deleted file mode 100644 index ea4e160c92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/48.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/481.png b/front/public/images/small/gregtech/gt.blockmachines/481.png deleted file mode 100644 index 884d42d240..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/481.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/482.png b/front/public/images/small/gregtech/gt.blockmachines/482.png deleted file mode 100644 index 6ed321cd88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/482.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/483.png b/front/public/images/small/gregtech/gt.blockmachines/483.png deleted file mode 100644 index a6b89c16b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/483.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/484.png b/front/public/images/small/gregtech/gt.blockmachines/484.png deleted file mode 100644 index 98fa143e70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/484.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/485.png b/front/public/images/small/gregtech/gt.blockmachines/485.png deleted file mode 100644 index 341b1bbce0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4861.png b/front/public/images/small/gregtech/gt.blockmachines/4861.png deleted file mode 100644 index 788d9b3781..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4866.png b/front/public/images/small/gregtech/gt.blockmachines/4866.png deleted file mode 100644 index e393340085..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4866.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4868.png b/front/public/images/small/gregtech/gt.blockmachines/4868.png deleted file mode 100644 index cd2d538d2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/49.png b/front/public/images/small/gregtech/gt.blockmachines/49.png deleted file mode 100644 index 8f96c02560..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/49.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4900.png b/front/public/images/small/gregtech/gt.blockmachines/4900.png deleted file mode 100644 index 5a5d79d161..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4905.png b/front/public/images/small/gregtech/gt.blockmachines/4905.png deleted file mode 100644 index b48f0582ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/491.png b/front/public/images/small/gregtech/gt.blockmachines/491.png deleted file mode 100644 index ec4e2cae2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/491.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/492.png b/front/public/images/small/gregtech/gt.blockmachines/492.png deleted file mode 100644 index 7c9a8e6c02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/492.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4925.png b/front/public/images/small/gregtech/gt.blockmachines/4925.png deleted file mode 100644 index b844722f32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/493.png b/front/public/images/small/gregtech/gt.blockmachines/493.png deleted file mode 100644 index ce2d3da4e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/493.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/494.png b/front/public/images/small/gregtech/gt.blockmachines/494.png deleted file mode 100644 index 592a1de0fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/494.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/495.png b/front/public/images/small/gregtech/gt.blockmachines/495.png deleted file mode 100644 index 85efcb0f60..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/495.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4952.png b/front/public/images/small/gregtech/gt.blockmachines/4952.png deleted file mode 100644 index e39b7da0bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4964.png b/front/public/images/small/gregtech/gt.blockmachines/4964.png deleted file mode 100644 index 29c27d52a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4964.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4970.png b/front/public/images/small/gregtech/gt.blockmachines/4970.png deleted file mode 100644 index 1598ff581f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4976.png b/front/public/images/small/gregtech/gt.blockmachines/4976.png deleted file mode 100644 index 2e8992be07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4980.png b/front/public/images/small/gregtech/gt.blockmachines/4980.png deleted file mode 100644 index 60126993c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/4985.png b/front/public/images/small/gregtech/gt.blockmachines/4985.png deleted file mode 100644 index c25067ee64..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/4985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/50.png b/front/public/images/small/gregtech/gt.blockmachines/50.png deleted file mode 100644 index c9da6b101d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/50.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5008.png b/front/public/images/small/gregtech/gt.blockmachines/5008.png deleted file mode 100644 index a6b3a832dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5009.png b/front/public/images/small/gregtech/gt.blockmachines/5009.png deleted file mode 100644 index 4baf70e71d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5047.png b/front/public/images/small/gregtech/gt.blockmachines/5047.png deleted file mode 100644 index fe6b624c63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5048.png b/front/public/images/small/gregtech/gt.blockmachines/5048.png deleted file mode 100644 index 32071d03cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5052.png b/front/public/images/small/gregtech/gt.blockmachines/5052.png deleted file mode 100644 index bc7152983d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5062.png b/front/public/images/small/gregtech/gt.blockmachines/5062.png deleted file mode 100644 index 5fa52d5615..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5066.png b/front/public/images/small/gregtech/gt.blockmachines/5066.png deleted file mode 100644 index 0e43a66d67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5070.png b/front/public/images/small/gregtech/gt.blockmachines/5070.png deleted file mode 100644 index 269fe0ab66..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5071.png b/front/public/images/small/gregtech/gt.blockmachines/5071.png deleted file mode 100644 index 3a7688d740..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5072.png b/front/public/images/small/gregtech/gt.blockmachines/5072.png deleted file mode 100644 index 1f96098a2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5073.png b/front/public/images/small/gregtech/gt.blockmachines/5073.png deleted file mode 100644 index be80ae32db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5074.png b/front/public/images/small/gregtech/gt.blockmachines/5074.png deleted file mode 100644 index 17864dee0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5075.png b/front/public/images/small/gregtech/gt.blockmachines/5075.png deleted file mode 100644 index 44aab4e5b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5076.png b/front/public/images/small/gregtech/gt.blockmachines/5076.png deleted file mode 100644 index ba9ea1238f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5077.png b/front/public/images/small/gregtech/gt.blockmachines/5077.png deleted file mode 100644 index 90c28cf2a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5078.png b/front/public/images/small/gregtech/gt.blockmachines/5078.png deleted file mode 100644 index 32fd606c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5080.png b/front/public/images/small/gregtech/gt.blockmachines/5080.png deleted file mode 100644 index e1a29582fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5081.png b/front/public/images/small/gregtech/gt.blockmachines/5081.png deleted file mode 100644 index e770f96020..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5082.png b/front/public/images/small/gregtech/gt.blockmachines/5082.png deleted file mode 100644 index 395d144205..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5082.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5083.png b/front/public/images/small/gregtech/gt.blockmachines/5083.png deleted file mode 100644 index 3845366e8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5084.png b/front/public/images/small/gregtech/gt.blockmachines/5084.png deleted file mode 100644 index 64be7ee7b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5085.png b/front/public/images/small/gregtech/gt.blockmachines/5085.png deleted file mode 100644 index fc15e3979b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5086.png b/front/public/images/small/gregtech/gt.blockmachines/5086.png deleted file mode 100644 index 02b6a7215f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5087.png b/front/public/images/small/gregtech/gt.blockmachines/5087.png deleted file mode 100644 index 124a049104..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5087.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5088.png b/front/public/images/small/gregtech/gt.blockmachines/5088.png deleted file mode 100644 index 2390ed2c41..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5088.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/51.png b/front/public/images/small/gregtech/gt.blockmachines/51.png deleted file mode 100644 index 4dc11e1a7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/51.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5101.png b/front/public/images/small/gregtech/gt.blockmachines/5101.png deleted file mode 100644 index 058b82e77e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5102.png b/front/public/images/small/gregtech/gt.blockmachines/5102.png deleted file mode 100644 index 050dfe92cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5103.png b/front/public/images/small/gregtech/gt.blockmachines/5103.png deleted file mode 100644 index 67ab359baf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5110.png b/front/public/images/small/gregtech/gt.blockmachines/5110.png deleted file mode 100644 index b89838fd22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5111.png b/front/public/images/small/gregtech/gt.blockmachines/5111.png deleted file mode 100644 index b8b948c992..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5112.png b/front/public/images/small/gregtech/gt.blockmachines/5112.png deleted file mode 100644 index 3adbb2d5ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5113.png b/front/public/images/small/gregtech/gt.blockmachines/5113.png deleted file mode 100644 index 06941467bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5113.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5114.png b/front/public/images/small/gregtech/gt.blockmachines/5114.png deleted file mode 100644 index 1c4efbdbc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5115.png b/front/public/images/small/gregtech/gt.blockmachines/5115.png deleted file mode 100644 index f3989ca3be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5115.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5116.png b/front/public/images/small/gregtech/gt.blockmachines/5116.png deleted file mode 100644 index 6b689db251..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5116.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5120.png b/front/public/images/small/gregtech/gt.blockmachines/5120.png deleted file mode 100644 index ac780ef935..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5120.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5121.png b/front/public/images/small/gregtech/gt.blockmachines/5121.png deleted file mode 100644 index 1bf3b9c7e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5121.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5122.png b/front/public/images/small/gregtech/gt.blockmachines/5122.png deleted file mode 100644 index 310f394f42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5122.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5123.png b/front/public/images/small/gregtech/gt.blockmachines/5123.png deleted file mode 100644 index 062be2c15d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5123.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5124.png b/front/public/images/small/gregtech/gt.blockmachines/5124.png deleted file mode 100644 index 9dbd634c8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5124.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5125.png b/front/public/images/small/gregtech/gt.blockmachines/5125.png deleted file mode 100644 index 34f44de0f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5125.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5126.png b/front/public/images/small/gregtech/gt.blockmachines/5126.png deleted file mode 100644 index bdfd54837f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5126.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5130.png b/front/public/images/small/gregtech/gt.blockmachines/5130.png deleted file mode 100644 index 5ac7251105..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5131.png b/front/public/images/small/gregtech/gt.blockmachines/5131.png deleted file mode 100644 index 18577bc572..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5132.png b/front/public/images/small/gregtech/gt.blockmachines/5132.png deleted file mode 100644 index e3b46d865b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5132.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5133.png b/front/public/images/small/gregtech/gt.blockmachines/5133.png deleted file mode 100644 index d5accac291..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5133.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5134.png b/front/public/images/small/gregtech/gt.blockmachines/5134.png deleted file mode 100644 index a4691656e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5135.png b/front/public/images/small/gregtech/gt.blockmachines/5135.png deleted file mode 100644 index 9ad882194b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5135.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5136.png b/front/public/images/small/gregtech/gt.blockmachines/5136.png deleted file mode 100644 index f63a6b76ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5136.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5140.png b/front/public/images/small/gregtech/gt.blockmachines/5140.png deleted file mode 100644 index 292e5756d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5140.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5141.png b/front/public/images/small/gregtech/gt.blockmachines/5141.png deleted file mode 100644 index a971a18123..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5142.png b/front/public/images/small/gregtech/gt.blockmachines/5142.png deleted file mode 100644 index aa3a466d0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5142.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5143.png b/front/public/images/small/gregtech/gt.blockmachines/5143.png deleted file mode 100644 index 521cf91a3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5144.png b/front/public/images/small/gregtech/gt.blockmachines/5144.png deleted file mode 100644 index 4134220a07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5145.png b/front/public/images/small/gregtech/gt.blockmachines/5145.png deleted file mode 100644 index 92084d937e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5145.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5146.png b/front/public/images/small/gregtech/gt.blockmachines/5146.png deleted file mode 100644 index bcfb2ec961..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5146.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5150.png b/front/public/images/small/gregtech/gt.blockmachines/5150.png deleted file mode 100644 index ea4e91701f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5151.png b/front/public/images/small/gregtech/gt.blockmachines/5151.png deleted file mode 100644 index 71d57d34c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5151.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5152.png b/front/public/images/small/gregtech/gt.blockmachines/5152.png deleted file mode 100644 index 03cb612993..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5152.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5153.png b/front/public/images/small/gregtech/gt.blockmachines/5153.png deleted file mode 100644 index e99aa619f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5153.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5154.png b/front/public/images/small/gregtech/gt.blockmachines/5154.png deleted file mode 100644 index fea577509d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5154.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5155.png b/front/public/images/small/gregtech/gt.blockmachines/5155.png deleted file mode 100644 index ad248dec3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5155.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5156.png b/front/public/images/small/gregtech/gt.blockmachines/5156.png deleted file mode 100644 index 231d6ba31e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5156.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5160.png b/front/public/images/small/gregtech/gt.blockmachines/5160.png deleted file mode 100644 index 4bb2d828c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5160.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5161.png b/front/public/images/small/gregtech/gt.blockmachines/5161.png deleted file mode 100644 index 6192bcbd93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5161.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5162.png b/front/public/images/small/gregtech/gt.blockmachines/5162.png deleted file mode 100644 index 461a0e981b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5162.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5163.png b/front/public/images/small/gregtech/gt.blockmachines/5163.png deleted file mode 100644 index d94e6a258e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5163.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5164.png b/front/public/images/small/gregtech/gt.blockmachines/5164.png deleted file mode 100644 index 2cbc077254..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5164.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5165.png b/front/public/images/small/gregtech/gt.blockmachines/5165.png deleted file mode 100644 index 786c4b90aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5165.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5166.png b/front/public/images/small/gregtech/gt.blockmachines/5166.png deleted file mode 100644 index 2b9d38a49f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5166.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5167.png b/front/public/images/small/gregtech/gt.blockmachines/5167.png deleted file mode 100644 index 2fc0a78711..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5167.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5170.png b/front/public/images/small/gregtech/gt.blockmachines/5170.png deleted file mode 100644 index 17cc362f7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5170.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5171.png b/front/public/images/small/gregtech/gt.blockmachines/5171.png deleted file mode 100644 index ff7a12bc1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5171.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5172.png b/front/public/images/small/gregtech/gt.blockmachines/5172.png deleted file mode 100644 index 829fc12b33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5172.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5173.png b/front/public/images/small/gregtech/gt.blockmachines/5173.png deleted file mode 100644 index 9d76afc3f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5173.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5174.png b/front/public/images/small/gregtech/gt.blockmachines/5174.png deleted file mode 100644 index 124215ebb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5174.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5175.png b/front/public/images/small/gregtech/gt.blockmachines/5175.png deleted file mode 100644 index d05278e265..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5175.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5176.png b/front/public/images/small/gregtech/gt.blockmachines/5176.png deleted file mode 100644 index 1ab1105684..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5176.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5180.png b/front/public/images/small/gregtech/gt.blockmachines/5180.png deleted file mode 100644 index bb8581821d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5180.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5181.png b/front/public/images/small/gregtech/gt.blockmachines/5181.png deleted file mode 100644 index c273b1cd16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5181.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5182.png b/front/public/images/small/gregtech/gt.blockmachines/5182.png deleted file mode 100644 index 42b4d1475e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5182.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5183.png b/front/public/images/small/gregtech/gt.blockmachines/5183.png deleted file mode 100644 index 19d2bd8cae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5183.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5184.png b/front/public/images/small/gregtech/gt.blockmachines/5184.png deleted file mode 100644 index a3072547be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5184.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5185.png b/front/public/images/small/gregtech/gt.blockmachines/5185.png deleted file mode 100644 index fbf3ea297e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5185.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5186.png b/front/public/images/small/gregtech/gt.blockmachines/5186.png deleted file mode 100644 index f1b6d0cb5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5186.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5190.png b/front/public/images/small/gregtech/gt.blockmachines/5190.png deleted file mode 100644 index 058b10298a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5190.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5191.png b/front/public/images/small/gregtech/gt.blockmachines/5191.png deleted file mode 100644 index 498c84527d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5191.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5192.png b/front/public/images/small/gregtech/gt.blockmachines/5192.png deleted file mode 100644 index 7265743990..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5192.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5193.png b/front/public/images/small/gregtech/gt.blockmachines/5193.png deleted file mode 100644 index b9c0dd1b3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5193.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5194.png b/front/public/images/small/gregtech/gt.blockmachines/5194.png deleted file mode 100644 index 7617066fce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5194.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5195.png b/front/public/images/small/gregtech/gt.blockmachines/5195.png deleted file mode 100644 index 813e99cbea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5195.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5196.png b/front/public/images/small/gregtech/gt.blockmachines/5196.png deleted file mode 100644 index dde0a00a3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5196.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/52.png b/front/public/images/small/gregtech/gt.blockmachines/52.png deleted file mode 100644 index 20d1ee74e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/52.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5200.png b/front/public/images/small/gregtech/gt.blockmachines/5200.png deleted file mode 100644 index b584ddff2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5201.png b/front/public/images/small/gregtech/gt.blockmachines/5201.png deleted file mode 100644 index d9ffe1a770..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5202.png b/front/public/images/small/gregtech/gt.blockmachines/5202.png deleted file mode 100644 index 5de632db4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5203.png b/front/public/images/small/gregtech/gt.blockmachines/5203.png deleted file mode 100644 index 6c39dbb2d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5204.png b/front/public/images/small/gregtech/gt.blockmachines/5204.png deleted file mode 100644 index 7997de4fd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5205.png b/front/public/images/small/gregtech/gt.blockmachines/5205.png deleted file mode 100644 index d764a40a56..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5206.png b/front/public/images/small/gregtech/gt.blockmachines/5206.png deleted file mode 100644 index 91b213512d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5210.png b/front/public/images/small/gregtech/gt.blockmachines/5210.png deleted file mode 100644 index 422cbf89c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5210.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5211.png b/front/public/images/small/gregtech/gt.blockmachines/5211.png deleted file mode 100644 index ee36f8e28d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5211.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5212.png b/front/public/images/small/gregtech/gt.blockmachines/5212.png deleted file mode 100644 index eaacff0965..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5212.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5213.png b/front/public/images/small/gregtech/gt.blockmachines/5213.png deleted file mode 100644 index 2bbec4a6eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5213.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5214.png b/front/public/images/small/gregtech/gt.blockmachines/5214.png deleted file mode 100644 index a6eccf66e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5214.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5215.png b/front/public/images/small/gregtech/gt.blockmachines/5215.png deleted file mode 100644 index 5e7ef6581d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5215.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5216.png b/front/public/images/small/gregtech/gt.blockmachines/5216.png deleted file mode 100644 index 463c729009..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5216.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5220.png b/front/public/images/small/gregtech/gt.blockmachines/5220.png deleted file mode 100644 index 422cbf89c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5220.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5221.png b/front/public/images/small/gregtech/gt.blockmachines/5221.png deleted file mode 100644 index ee36f8e28d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5221.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5222.png b/front/public/images/small/gregtech/gt.blockmachines/5222.png deleted file mode 100644 index eaacff0965..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5222.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5223.png b/front/public/images/small/gregtech/gt.blockmachines/5223.png deleted file mode 100644 index 2bbec4a6eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5223.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5224.png b/front/public/images/small/gregtech/gt.blockmachines/5224.png deleted file mode 100644 index a6eccf66e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5224.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5225.png b/front/public/images/small/gregtech/gt.blockmachines/5225.png deleted file mode 100644 index 5e7ef6581d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5225.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5226.png b/front/public/images/small/gregtech/gt.blockmachines/5226.png deleted file mode 100644 index 463c729009..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5226.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5230.png b/front/public/images/small/gregtech/gt.blockmachines/5230.png deleted file mode 100644 index 7ac39eaf9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5231.png b/front/public/images/small/gregtech/gt.blockmachines/5231.png deleted file mode 100644 index 0bae5d747e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5231.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5232.png b/front/public/images/small/gregtech/gt.blockmachines/5232.png deleted file mode 100644 index 4bef200a36..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5232.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5233.png b/front/public/images/small/gregtech/gt.blockmachines/5233.png deleted file mode 100644 index a4a8813195..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5233.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5234.png b/front/public/images/small/gregtech/gt.blockmachines/5234.png deleted file mode 100644 index 65764a62df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5234.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5235.png b/front/public/images/small/gregtech/gt.blockmachines/5235.png deleted file mode 100644 index fbdbc1bf83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5235.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5236.png b/front/public/images/small/gregtech/gt.blockmachines/5236.png deleted file mode 100644 index 9b6a0ab0e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5236.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5240.png b/front/public/images/small/gregtech/gt.blockmachines/5240.png deleted file mode 100644 index 9af0b11c76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5240.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5241.png b/front/public/images/small/gregtech/gt.blockmachines/5241.png deleted file mode 100644 index a89cd086f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5241.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5242.png b/front/public/images/small/gregtech/gt.blockmachines/5242.png deleted file mode 100644 index e79e75cfd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5242.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5243.png b/front/public/images/small/gregtech/gt.blockmachines/5243.png deleted file mode 100644 index 9d30ba3be1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5243.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5244.png b/front/public/images/small/gregtech/gt.blockmachines/5244.png deleted file mode 100644 index e39f624ee4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5244.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5245.png b/front/public/images/small/gregtech/gt.blockmachines/5245.png deleted file mode 100644 index 1dbfaf0ed6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5245.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5246.png b/front/public/images/small/gregtech/gt.blockmachines/5246.png deleted file mode 100644 index 3e6798263a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5246.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5250.png b/front/public/images/small/gregtech/gt.blockmachines/5250.png deleted file mode 100644 index 2cd8ca41bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5250.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5251.png b/front/public/images/small/gregtech/gt.blockmachines/5251.png deleted file mode 100644 index 81a2ea4523..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5251.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5252.png b/front/public/images/small/gregtech/gt.blockmachines/5252.png deleted file mode 100644 index 05144971ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5252.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5253.png b/front/public/images/small/gregtech/gt.blockmachines/5253.png deleted file mode 100644 index 41422f6951..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5253.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5254.png b/front/public/images/small/gregtech/gt.blockmachines/5254.png deleted file mode 100644 index 533d3ae661..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5254.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5255.png b/front/public/images/small/gregtech/gt.blockmachines/5255.png deleted file mode 100644 index 8714be3daa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5255.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5256.png b/front/public/images/small/gregtech/gt.blockmachines/5256.png deleted file mode 100644 index d0e89deb90..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5256.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5260.png b/front/public/images/small/gregtech/gt.blockmachines/5260.png deleted file mode 100644 index 1af11b0bf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5260.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5261.png b/front/public/images/small/gregtech/gt.blockmachines/5261.png deleted file mode 100644 index 58514a53a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5261.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5262.png b/front/public/images/small/gregtech/gt.blockmachines/5262.png deleted file mode 100644 index b642ee75f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5262.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5263.png b/front/public/images/small/gregtech/gt.blockmachines/5263.png deleted file mode 100644 index 5abfcce9a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5263.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5264.png b/front/public/images/small/gregtech/gt.blockmachines/5264.png deleted file mode 100644 index e9e2aeb946..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5264.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5265.png b/front/public/images/small/gregtech/gt.blockmachines/5265.png deleted file mode 100644 index cf0b6373c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5265.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5266.png b/front/public/images/small/gregtech/gt.blockmachines/5266.png deleted file mode 100644 index 8ef81860e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5266.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5270.png b/front/public/images/small/gregtech/gt.blockmachines/5270.png deleted file mode 100644 index 1c04f78eac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5270.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5271.png b/front/public/images/small/gregtech/gt.blockmachines/5271.png deleted file mode 100644 index cd3c63f106..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5271.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5280.png b/front/public/images/small/gregtech/gt.blockmachines/5280.png deleted file mode 100644 index 7e06f4de5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5280.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5281.png b/front/public/images/small/gregtech/gt.blockmachines/5281.png deleted file mode 100644 index 8d4f734298..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5281.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5282.png b/front/public/images/small/gregtech/gt.blockmachines/5282.png deleted file mode 100644 index 892d21861e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5282.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5283.png b/front/public/images/small/gregtech/gt.blockmachines/5283.png deleted file mode 100644 index af9858047c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5283.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5284.png b/front/public/images/small/gregtech/gt.blockmachines/5284.png deleted file mode 100644 index be3b3752db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5284.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5290.png b/front/public/images/small/gregtech/gt.blockmachines/5290.png deleted file mode 100644 index 88e04a9a32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5290.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5291.png b/front/public/images/small/gregtech/gt.blockmachines/5291.png deleted file mode 100644 index 7c0c88e1d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5291.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/53.png b/front/public/images/small/gregtech/gt.blockmachines/53.png deleted file mode 100644 index fc31939b95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/53.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5300.png b/front/public/images/small/gregtech/gt.blockmachines/5300.png deleted file mode 100644 index a1a1ad943e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5301.png b/front/public/images/small/gregtech/gt.blockmachines/5301.png deleted file mode 100644 index e982b190f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5302.png b/front/public/images/small/gregtech/gt.blockmachines/5302.png deleted file mode 100644 index 3fd9f44f35..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5303.png b/front/public/images/small/gregtech/gt.blockmachines/5303.png deleted file mode 100644 index 3139e31b03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5304.png b/front/public/images/small/gregtech/gt.blockmachines/5304.png deleted file mode 100644 index 4a525bde19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5305.png b/front/public/images/small/gregtech/gt.blockmachines/5305.png deleted file mode 100644 index e43e0ce168..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5306.png b/front/public/images/small/gregtech/gt.blockmachines/5306.png deleted file mode 100644 index 3c8afe104c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5310.png b/front/public/images/small/gregtech/gt.blockmachines/5310.png deleted file mode 100644 index b584ddff2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5311.png b/front/public/images/small/gregtech/gt.blockmachines/5311.png deleted file mode 100644 index d9ffe1a770..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5312.png b/front/public/images/small/gregtech/gt.blockmachines/5312.png deleted file mode 100644 index 5de632db4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5313.png b/front/public/images/small/gregtech/gt.blockmachines/5313.png deleted file mode 100644 index 6c39dbb2d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5314.png b/front/public/images/small/gregtech/gt.blockmachines/5314.png deleted file mode 100644 index 7997de4fd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5315.png b/front/public/images/small/gregtech/gt.blockmachines/5315.png deleted file mode 100644 index d764a40a56..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5316.png b/front/public/images/small/gregtech/gt.blockmachines/5316.png deleted file mode 100644 index 91b213512d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/54.png b/front/public/images/small/gregtech/gt.blockmachines/54.png deleted file mode 100644 index 7a63455380..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/54.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/55.png b/front/public/images/small/gregtech/gt.blockmachines/55.png deleted file mode 100644 index 8da2275c89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/55.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/56.png b/front/public/images/small/gregtech/gt.blockmachines/56.png deleted file mode 100644 index 2ceb2733e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/56.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5602.png b/front/public/images/small/gregtech/gt.blockmachines/5602.png deleted file mode 100644 index c3e787332d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5602.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5603.png b/front/public/images/small/gregtech/gt.blockmachines/5603.png deleted file mode 100644 index 3a42b86e91..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5603.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5604.png b/front/public/images/small/gregtech/gt.blockmachines/5604.png deleted file mode 100644 index b9c799da1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5604.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5605.png b/front/public/images/small/gregtech/gt.blockmachines/5605.png deleted file mode 100644 index 6e222757d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5605.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5606.png b/front/public/images/small/gregtech/gt.blockmachines/5606.png deleted file mode 100644 index a305248d80..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5606.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5607.png b/front/public/images/small/gregtech/gt.blockmachines/5607.png deleted file mode 100644 index d725f33814..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5612.png b/front/public/images/small/gregtech/gt.blockmachines/5612.png deleted file mode 100644 index 1cdee89e6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5612.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5613.png b/front/public/images/small/gregtech/gt.blockmachines/5613.png deleted file mode 100644 index 61d3eff240..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5614.png b/front/public/images/small/gregtech/gt.blockmachines/5614.png deleted file mode 100644 index bf1537e87d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5614.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5615.png b/front/public/images/small/gregtech/gt.blockmachines/5615.png deleted file mode 100644 index c52efaa03b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5615.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5616.png b/front/public/images/small/gregtech/gt.blockmachines/5616.png deleted file mode 100644 index 552ec41f5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5616.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5617.png b/front/public/images/small/gregtech/gt.blockmachines/5617.png deleted file mode 100644 index 3b1fd24c29..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5617.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5622.png b/front/public/images/small/gregtech/gt.blockmachines/5622.png deleted file mode 100644 index ad7fff83dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5622.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5623.png b/front/public/images/small/gregtech/gt.blockmachines/5623.png deleted file mode 100644 index 3418c6199b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5623.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5624.png b/front/public/images/small/gregtech/gt.blockmachines/5624.png deleted file mode 100644 index e59b3dfdac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5624.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5625.png b/front/public/images/small/gregtech/gt.blockmachines/5625.png deleted file mode 100644 index 11ab7293e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5625.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5626.png b/front/public/images/small/gregtech/gt.blockmachines/5626.png deleted file mode 100644 index 260afb29c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5626.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5627.png b/front/public/images/small/gregtech/gt.blockmachines/5627.png deleted file mode 100644 index 063caf3a6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5627.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5632.png b/front/public/images/small/gregtech/gt.blockmachines/5632.png deleted file mode 100644 index a2da104d2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5632.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5633.png b/front/public/images/small/gregtech/gt.blockmachines/5633.png deleted file mode 100644 index 4db2bfb306..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5633.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5634.png b/front/public/images/small/gregtech/gt.blockmachines/5634.png deleted file mode 100644 index 06a3550f17..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5634.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5635.png b/front/public/images/small/gregtech/gt.blockmachines/5635.png deleted file mode 100644 index 679c0b71eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5636.png b/front/public/images/small/gregtech/gt.blockmachines/5636.png deleted file mode 100644 index 948d2c64b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5637.png b/front/public/images/small/gregtech/gt.blockmachines/5637.png deleted file mode 100644 index eef2eb4d3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5637.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5680.png b/front/public/images/small/gregtech/gt.blockmachines/5680.png deleted file mode 100644 index 3408f17638..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5680.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5681.png b/front/public/images/small/gregtech/gt.blockmachines/5681.png deleted file mode 100644 index 7f5161ff14..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5681.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5682.png b/front/public/images/small/gregtech/gt.blockmachines/5682.png deleted file mode 100644 index 9e921053c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5682.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5683.png b/front/public/images/small/gregtech/gt.blockmachines/5683.png deleted file mode 100644 index 01741fe881..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5683.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5684.png b/front/public/images/small/gregtech/gt.blockmachines/5684.png deleted file mode 100644 index b6f98f5792..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5684.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5685.png b/front/public/images/small/gregtech/gt.blockmachines/5685.png deleted file mode 100644 index 94f9eaef32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5685.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5686.png b/front/public/images/small/gregtech/gt.blockmachines/5686.png deleted file mode 100644 index 3345ba137e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5686.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5690.png b/front/public/images/small/gregtech/gt.blockmachines/5690.png deleted file mode 100644 index 207cf001f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5690.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5691.png b/front/public/images/small/gregtech/gt.blockmachines/5691.png deleted file mode 100644 index 6dfe56ad12..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5691.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5692.png b/front/public/images/small/gregtech/gt.blockmachines/5692.png deleted file mode 100644 index de9ae594bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5692.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5693.png b/front/public/images/small/gregtech/gt.blockmachines/5693.png deleted file mode 100644 index e96a28fd01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5693.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5694.png b/front/public/images/small/gregtech/gt.blockmachines/5694.png deleted file mode 100644 index 98c5c7dbe0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5694.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5695.png b/front/public/images/small/gregtech/gt.blockmachines/5695.png deleted file mode 100644 index b5ca4f90a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5695.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/57.png b/front/public/images/small/gregtech/gt.blockmachines/57.png deleted file mode 100644 index 50486ff43f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/57.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5700.png b/front/public/images/small/gregtech/gt.blockmachines/5700.png deleted file mode 100644 index b25ae403ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5700.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5701.png b/front/public/images/small/gregtech/gt.blockmachines/5701.png deleted file mode 100644 index cd4176b42e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5701.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5702.png b/front/public/images/small/gregtech/gt.blockmachines/5702.png deleted file mode 100644 index 47860a7d14..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5702.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5703.png b/front/public/images/small/gregtech/gt.blockmachines/5703.png deleted file mode 100644 index 0a8bc56eed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5703.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5704.png b/front/public/images/small/gregtech/gt.blockmachines/5704.png deleted file mode 100644 index d50160196b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5704.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5705.png b/front/public/images/small/gregtech/gt.blockmachines/5705.png deleted file mode 100644 index ca9ef550f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5705.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5710.png b/front/public/images/small/gregtech/gt.blockmachines/5710.png deleted file mode 100644 index f3a1d6d9f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5710.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5711.png b/front/public/images/small/gregtech/gt.blockmachines/5711.png deleted file mode 100644 index fedb31be9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5711.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5712.png b/front/public/images/small/gregtech/gt.blockmachines/5712.png deleted file mode 100644 index c8dd1a6686..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5712.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5713.png b/front/public/images/small/gregtech/gt.blockmachines/5713.png deleted file mode 100644 index add3e208a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5713.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5714.png b/front/public/images/small/gregtech/gt.blockmachines/5714.png deleted file mode 100644 index 423ccde7a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5714.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5715.png b/front/public/images/small/gregtech/gt.blockmachines/5715.png deleted file mode 100644 index de36cfe4cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5715.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5720.png b/front/public/images/small/gregtech/gt.blockmachines/5720.png deleted file mode 100644 index b0ba6ca31c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5720.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5721.png b/front/public/images/small/gregtech/gt.blockmachines/5721.png deleted file mode 100644 index 733e2ba623..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5721.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5722.png b/front/public/images/small/gregtech/gt.blockmachines/5722.png deleted file mode 100644 index 8648f2bbc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5722.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5723.png b/front/public/images/small/gregtech/gt.blockmachines/5723.png deleted file mode 100644 index 9dd66669d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5723.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5724.png b/front/public/images/small/gregtech/gt.blockmachines/5724.png deleted file mode 100644 index d9a9502d41..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5724.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5725.png b/front/public/images/small/gregtech/gt.blockmachines/5725.png deleted file mode 100644 index 4d811b8507..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5725.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5760.png b/front/public/images/small/gregtech/gt.blockmachines/5760.png deleted file mode 100644 index 6994f530c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5761.png b/front/public/images/small/gregtech/gt.blockmachines/5761.png deleted file mode 100644 index 7dec6aad6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5761.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5762.png b/front/public/images/small/gregtech/gt.blockmachines/5762.png deleted file mode 100644 index 188e160f8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5762.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5763.png b/front/public/images/small/gregtech/gt.blockmachines/5763.png deleted file mode 100644 index 1cd5da87f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5763.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/5764.png b/front/public/images/small/gregtech/gt.blockmachines/5764.png deleted file mode 100644 index 05b0c2d097..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/5764.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/58.png b/front/public/images/small/gregtech/gt.blockmachines/58.png deleted file mode 100644 index 8aa0524872..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/58.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/59.png b/front/public/images/small/gregtech/gt.blockmachines/59.png deleted file mode 100644 index b00241b55f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/59.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/60.png b/front/public/images/small/gregtech/gt.blockmachines/60.png deleted file mode 100644 index fca47fe254..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/60.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/61.png b/front/public/images/small/gregtech/gt.blockmachines/61.png deleted file mode 100644 index 25ddb1c3b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/61.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/62.png b/front/public/images/small/gregtech/gt.blockmachines/62.png deleted file mode 100644 index 77a9e3cbab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/62.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/63.png b/front/public/images/small/gregtech/gt.blockmachines/63.png deleted file mode 100644 index 783f8858ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/63.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/64.png b/front/public/images/small/gregtech/gt.blockmachines/64.png deleted file mode 100644 index 17aa9f6114..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/64.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/65.png b/front/public/images/small/gregtech/gt.blockmachines/65.png deleted file mode 100644 index df0765761e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/65.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/66.png b/front/public/images/small/gregtech/gt.blockmachines/66.png deleted file mode 100644 index ae5863a7b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/66.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/67.png b/front/public/images/small/gregtech/gt.blockmachines/67.png deleted file mode 100644 index ad592e157f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/67.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/679.png b/front/public/images/small/gregtech/gt.blockmachines/679.png deleted file mode 100644 index 54cbad39c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/679.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/68.png b/front/public/images/small/gregtech/gt.blockmachines/68.png deleted file mode 100644 index 9721042d56..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/68.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/680.png b/front/public/images/small/gregtech/gt.blockmachines/680.png deleted file mode 100644 index f68c99fb50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/680.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/681.png b/front/public/images/small/gregtech/gt.blockmachines/681.png deleted file mode 100644 index 29817d3db5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/681.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/69.png b/front/public/images/small/gregtech/gt.blockmachines/69.png deleted file mode 100644 index 8bd6f780a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/69.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/690.png b/front/public/images/small/gregtech/gt.blockmachines/690.png deleted file mode 100644 index 96f6246756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/690.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/691.png b/front/public/images/small/gregtech/gt.blockmachines/691.png deleted file mode 100644 index fc1faa16dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/691.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/692.png b/front/public/images/small/gregtech/gt.blockmachines/692.png deleted file mode 100644 index ce2e7f0536..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/692.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/693.png b/front/public/images/small/gregtech/gt.blockmachines/693.png deleted file mode 100644 index 9606ea314e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/693.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/694.png b/front/public/images/small/gregtech/gt.blockmachines/694.png deleted file mode 100644 index 9321120341..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/694.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/695.png b/front/public/images/small/gregtech/gt.blockmachines/695.png deleted file mode 100644 index 9d4eb06e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/695.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/696.png b/front/public/images/small/gregtech/gt.blockmachines/696.png deleted file mode 100644 index 986f1068ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/696.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/697.png b/front/public/images/small/gregtech/gt.blockmachines/697.png deleted file mode 100644 index b5951adaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/697.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/698.png b/front/public/images/small/gregtech/gt.blockmachines/698.png deleted file mode 100644 index 9194bc5bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/698.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/699.png b/front/public/images/small/gregtech/gt.blockmachines/699.png deleted file mode 100644 index 8eb7827467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/70.png b/front/public/images/small/gregtech/gt.blockmachines/70.png deleted file mode 100644 index 93ba3b27b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/70.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/71.png b/front/public/images/small/gregtech/gt.blockmachines/71.png deleted file mode 100644 index 4673b2475a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/71.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/710.png b/front/public/images/small/gregtech/gt.blockmachines/710.png deleted file mode 100644 index 6b9429e783..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/710.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/711.png b/front/public/images/small/gregtech/gt.blockmachines/711.png deleted file mode 100644 index ca080f9ab4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/711.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/712.png b/front/public/images/small/gregtech/gt.blockmachines/712.png deleted file mode 100644 index 22ae94f0cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/712.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/713.png b/front/public/images/small/gregtech/gt.blockmachines/713.png deleted file mode 100644 index f1bafbf4f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/713.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/714.png b/front/public/images/small/gregtech/gt.blockmachines/714.png deleted file mode 100644 index 4b04a390f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/714.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/715.png b/front/public/images/small/gregtech/gt.blockmachines/715.png deleted file mode 100644 index fafa21199d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/715.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/716.png b/front/public/images/small/gregtech/gt.blockmachines/716.png deleted file mode 100644 index af032731d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/716.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/717.png b/front/public/images/small/gregtech/gt.blockmachines/717.png deleted file mode 100644 index 3c6070112f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/717.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/718.png b/front/public/images/small/gregtech/gt.blockmachines/718.png deleted file mode 100644 index 10b2b3ca58..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/718.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/719.png b/front/public/images/small/gregtech/gt.blockmachines/719.png deleted file mode 100644 index 10b2b3ca58..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/719.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/72.png b/front/public/images/small/gregtech/gt.blockmachines/72.png deleted file mode 100644 index 91c2e82fa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/72.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/73.png b/front/public/images/small/gregtech/gt.blockmachines/73.png deleted file mode 100644 index 3f4c893c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/73.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/74.png b/front/public/images/small/gregtech/gt.blockmachines/74.png deleted file mode 100644 index 778f47d4e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/74.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/749.png b/front/public/images/small/gregtech/gt.blockmachines/749.png deleted file mode 100644 index c607f944f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/75.png b/front/public/images/small/gregtech/gt.blockmachines/75.png deleted file mode 100644 index 91d7f7e1a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/75.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/751.png b/front/public/images/small/gregtech/gt.blockmachines/751.png deleted file mode 100644 index f1ecb4bebf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/752.png b/front/public/images/small/gregtech/gt.blockmachines/752.png deleted file mode 100644 index 8b984fac88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/752.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/753.png b/front/public/images/small/gregtech/gt.blockmachines/753.png deleted file mode 100644 index 4f085cb317..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/753.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/754.png b/front/public/images/small/gregtech/gt.blockmachines/754.png deleted file mode 100644 index 0d98ff063d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/754.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/755.png b/front/public/images/small/gregtech/gt.blockmachines/755.png deleted file mode 100644 index 7d566b809a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/755.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/756.png b/front/public/images/small/gregtech/gt.blockmachines/756.png deleted file mode 100644 index e3b6060333..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/756.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/758.png b/front/public/images/small/gregtech/gt.blockmachines/758.png deleted file mode 100644 index 0f7067bf50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/758.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/759.png b/front/public/images/small/gregtech/gt.blockmachines/759.png deleted file mode 100644 index bd90626e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/759.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/76.png b/front/public/images/small/gregtech/gt.blockmachines/76.png deleted file mode 100644 index 656bfef9c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/76.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/760.png b/front/public/images/small/gregtech/gt.blockmachines/760.png deleted file mode 100644 index 3c49d5141b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/761.png b/front/public/images/small/gregtech/gt.blockmachines/761.png deleted file mode 100644 index 704100a82c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/761.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/762.png b/front/public/images/small/gregtech/gt.blockmachines/762.png deleted file mode 100644 index d2fbaabc9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/762.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/763.png b/front/public/images/small/gregtech/gt.blockmachines/763.png deleted file mode 100644 index ab1b48d227..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/763.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/764.png b/front/public/images/small/gregtech/gt.blockmachines/764.png deleted file mode 100644 index 5e065584fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/764.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/765.png b/front/public/images/small/gregtech/gt.blockmachines/765.png deleted file mode 100644 index bc0bcc099c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/766.png b/front/public/images/small/gregtech/gt.blockmachines/766.png deleted file mode 100644 index 7be4c84a35..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/766.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/767.png b/front/public/images/small/gregtech/gt.blockmachines/767.png deleted file mode 100644 index 31e33918d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/767.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/77.png b/front/public/images/small/gregtech/gt.blockmachines/77.png deleted file mode 100644 index 9dc05b25a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/77.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/770.png b/front/public/images/small/gregtech/gt.blockmachines/770.png deleted file mode 100644 index 1d8b162c81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/771.png b/front/public/images/small/gregtech/gt.blockmachines/771.png deleted file mode 100644 index 4c21f056d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/771.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/772.png b/front/public/images/small/gregtech/gt.blockmachines/772.png deleted file mode 100644 index 85ba0ad718..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/773.png b/front/public/images/small/gregtech/gt.blockmachines/773.png deleted file mode 100644 index 355de35db4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/773.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/774.png b/front/public/images/small/gregtech/gt.blockmachines/774.png deleted file mode 100644 index bb19fb64f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/774.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/775.png b/front/public/images/small/gregtech/gt.blockmachines/775.png deleted file mode 100644 index 33c7f22d33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/775.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/776.png b/front/public/images/small/gregtech/gt.blockmachines/776.png deleted file mode 100644 index db4267e964..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/776.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/777.png b/front/public/images/small/gregtech/gt.blockmachines/777.png deleted file mode 100644 index e9c2126aeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/777.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/778.png b/front/public/images/small/gregtech/gt.blockmachines/778.png deleted file mode 100644 index a23fbeef5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/778.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/779.png b/front/public/images/small/gregtech/gt.blockmachines/779.png deleted file mode 100644 index 5c9dadb049..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/779.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/78.png b/front/public/images/small/gregtech/gt.blockmachines/78.png deleted file mode 100644 index a16e7a6463..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/78.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/79.png b/front/public/images/small/gregtech/gt.blockmachines/79.png deleted file mode 100644 index c8b4c8c60d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/79.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/790.png b/front/public/images/small/gregtech/gt.blockmachines/790.png deleted file mode 100644 index 86389a5e6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/790.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/791.png b/front/public/images/small/gregtech/gt.blockmachines/791.png deleted file mode 100644 index a080370c09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/791.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/792.png b/front/public/images/small/gregtech/gt.blockmachines/792.png deleted file mode 100644 index 84296dea5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/792.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/793.png b/front/public/images/small/gregtech/gt.blockmachines/793.png deleted file mode 100644 index 95eeaa726e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/793.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/794.png b/front/public/images/small/gregtech/gt.blockmachines/794.png deleted file mode 100644 index c4706a7358..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/794.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/795.png b/front/public/images/small/gregtech/gt.blockmachines/795.png deleted file mode 100644 index 4b980fdc74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/795.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/796.png b/front/public/images/small/gregtech/gt.blockmachines/796.png deleted file mode 100644 index c03d4a1c84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/796.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/797.png b/front/public/images/small/gregtech/gt.blockmachines/797.png deleted file mode 100644 index 5448d728b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/798.png b/front/public/images/small/gregtech/gt.blockmachines/798.png deleted file mode 100644 index 27b94fb293..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/798.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/799.png b/front/public/images/small/gregtech/gt.blockmachines/799.png deleted file mode 100644 index 9c0b30845a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/799.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/80.png b/front/public/images/small/gregtech/gt.blockmachines/80.png deleted file mode 100644 index dcc5d2a662..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/80.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/81.png b/front/public/images/small/gregtech/gt.blockmachines/81.png deleted file mode 100644 index bb909e1f57..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/81.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/810.png b/front/public/images/small/gregtech/gt.blockmachines/810.png deleted file mode 100644 index 81c5406c8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/811.png b/front/public/images/small/gregtech/gt.blockmachines/811.png deleted file mode 100644 index 82a5bfa75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/811.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/812.png b/front/public/images/small/gregtech/gt.blockmachines/812.png deleted file mode 100644 index 0ed4123906..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/813.png b/front/public/images/small/gregtech/gt.blockmachines/813.png deleted file mode 100644 index 8a7c1742e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/813.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/814.png b/front/public/images/small/gregtech/gt.blockmachines/814.png deleted file mode 100644 index 87e89281a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/814.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/815.png b/front/public/images/small/gregtech/gt.blockmachines/815.png deleted file mode 100644 index e1542437d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/815.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/816.png b/front/public/images/small/gregtech/gt.blockmachines/816.png deleted file mode 100644 index d14b15905b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/816.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/817.png b/front/public/images/small/gregtech/gt.blockmachines/817.png deleted file mode 100644 index 2a4a5797e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/818.png b/front/public/images/small/gregtech/gt.blockmachines/818.png deleted file mode 100644 index fdf5a3ec4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/818.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/819.png b/front/public/images/small/gregtech/gt.blockmachines/819.png deleted file mode 100644 index f815997d5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/819.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/82.png b/front/public/images/small/gregtech/gt.blockmachines/82.png deleted file mode 100644 index 80c1b135bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/82.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/820.png b/front/public/images/small/gregtech/gt.blockmachines/820.png deleted file mode 100644 index 97177be4e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/828.png b/front/public/images/small/gregtech/gt.blockmachines/828.png deleted file mode 100644 index adcbb2b0e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/829.png b/front/public/images/small/gregtech/gt.blockmachines/829.png deleted file mode 100644 index 564a965cb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/83.png b/front/public/images/small/gregtech/gt.blockmachines/83.png deleted file mode 100644 index a487537bdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/83.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/830.png b/front/public/images/small/gregtech/gt.blockmachines/830.png deleted file mode 100644 index fb2ad39e91..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/831.png b/front/public/images/small/gregtech/gt.blockmachines/831.png deleted file mode 100644 index 2f3e954560..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/832.png b/front/public/images/small/gregtech/gt.blockmachines/832.png deleted file mode 100644 index 51114477aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/832.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/833.png b/front/public/images/small/gregtech/gt.blockmachines/833.png deleted file mode 100644 index e3b6060333..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/834.png b/front/public/images/small/gregtech/gt.blockmachines/834.png deleted file mode 100644 index e3b6060333..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/835.png b/front/public/images/small/gregtech/gt.blockmachines/835.png deleted file mode 100644 index a35464ab8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/836.png b/front/public/images/small/gregtech/gt.blockmachines/836.png deleted file mode 100644 index bce3e616eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/837.png b/front/public/images/small/gregtech/gt.blockmachines/837.png deleted file mode 100644 index 5e1bce1988..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/837.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/838.png b/front/public/images/small/gregtech/gt.blockmachines/838.png deleted file mode 100644 index 9e3343580e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/839.png b/front/public/images/small/gregtech/gt.blockmachines/839.png deleted file mode 100644 index bafc9559ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/84.png b/front/public/images/small/gregtech/gt.blockmachines/84.png deleted file mode 100644 index e2ca232f31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/84.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/840.png b/front/public/images/small/gregtech/gt.blockmachines/840.png deleted file mode 100644 index 97aa3cd0d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/849.png b/front/public/images/small/gregtech/gt.blockmachines/849.png deleted file mode 100644 index 646414e63f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/85.png b/front/public/images/small/gregtech/gt.blockmachines/85.png deleted file mode 100644 index cc22c3a9f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/85.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/850.png b/front/public/images/small/gregtech/gt.blockmachines/850.png deleted file mode 100644 index ffc562976e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/859.png b/front/public/images/small/gregtech/gt.blockmachines/859.png deleted file mode 100644 index 4c436f552a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/859.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/86.png b/front/public/images/small/gregtech/gt.blockmachines/86.png deleted file mode 100644 index 7f7110629d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/86.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/860.png b/front/public/images/small/gregtech/gt.blockmachines/860.png deleted file mode 100644 index bc78c370d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/860.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/861.png b/front/public/images/small/gregtech/gt.blockmachines/861.png deleted file mode 100644 index 5ff418b5e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/862.png b/front/public/images/small/gregtech/gt.blockmachines/862.png deleted file mode 100644 index 2b8546f15e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/862.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/863.png b/front/public/images/small/gregtech/gt.blockmachines/863.png deleted file mode 100644 index e2f5a0e11f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/863.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/864.png b/front/public/images/small/gregtech/gt.blockmachines/864.png deleted file mode 100644 index 71ffbe17be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/864.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/865.png b/front/public/images/small/gregtech/gt.blockmachines/865.png deleted file mode 100644 index 606071b72e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/866.png b/front/public/images/small/gregtech/gt.blockmachines/866.png deleted file mode 100644 index 510dee0802..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/866.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/869.png b/front/public/images/small/gregtech/gt.blockmachines/869.png deleted file mode 100644 index d040799edd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/869.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/87.png b/front/public/images/small/gregtech/gt.blockmachines/87.png deleted file mode 100644 index ed2b486fd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/87.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/875.png b/front/public/images/small/gregtech/gt.blockmachines/875.png deleted file mode 100644 index a080370c09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/875.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/876.png b/front/public/images/small/gregtech/gt.blockmachines/876.png deleted file mode 100644 index c607f944f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/876.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/877.png b/front/public/images/small/gregtech/gt.blockmachines/877.png deleted file mode 100644 index 48ddc0a3b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/878.png b/front/public/images/small/gregtech/gt.blockmachines/878.png deleted file mode 100644 index 98f5285d30..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/879.png b/front/public/images/small/gregtech/gt.blockmachines/879.png deleted file mode 100644 index 30b6c89a84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/879.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/88.png b/front/public/images/small/gregtech/gt.blockmachines/88.png deleted file mode 100644 index e880ba9484..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/88.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/880.png b/front/public/images/small/gregtech/gt.blockmachines/880.png deleted file mode 100644 index b0c22537d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/881.png b/front/public/images/small/gregtech/gt.blockmachines/881.png deleted file mode 100644 index eac0cb5b12..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/881.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/882.png b/front/public/images/small/gregtech/gt.blockmachines/882.png deleted file mode 100644 index e74f8be8f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/883.png b/front/public/images/small/gregtech/gt.blockmachines/883.png deleted file mode 100644 index 23902b0b52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/884.png b/front/public/images/small/gregtech/gt.blockmachines/884.png deleted file mode 100644 index 4e51cf5aaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/885.png b/front/public/images/small/gregtech/gt.blockmachines/885.png deleted file mode 100644 index 826bf1fdad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/885.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/886.png b/front/public/images/small/gregtech/gt.blockmachines/886.png deleted file mode 100644 index f994544695..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/886.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/887.png b/front/public/images/small/gregtech/gt.blockmachines/887.png deleted file mode 100644 index 7a5c597a91..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/887.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/888.png b/front/public/images/small/gregtech/gt.blockmachines/888.png deleted file mode 100644 index e1c76694ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/888.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/889.png b/front/public/images/small/gregtech/gt.blockmachines/889.png deleted file mode 100644 index 1de34f0886..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/89.png b/front/public/images/small/gregtech/gt.blockmachines/89.png deleted file mode 100644 index 71c3ffad71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/89.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/890.png b/front/public/images/small/gregtech/gt.blockmachines/890.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/891.png b/front/public/images/small/gregtech/gt.blockmachines/891.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/891.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/892.png b/front/public/images/small/gregtech/gt.blockmachines/892.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/892.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/893.png b/front/public/images/small/gregtech/gt.blockmachines/893.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/893.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/894.png b/front/public/images/small/gregtech/gt.blockmachines/894.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/895.png b/front/public/images/small/gregtech/gt.blockmachines/895.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/895.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/896.png b/front/public/images/small/gregtech/gt.blockmachines/896.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/896.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/897.png b/front/public/images/small/gregtech/gt.blockmachines/897.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/897.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/898.png b/front/public/images/small/gregtech/gt.blockmachines/898.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/898.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/899.png b/front/public/images/small/gregtech/gt.blockmachines/899.png deleted file mode 100644 index 465b0e074f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/899.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/90.png b/front/public/images/small/gregtech/gt.blockmachines/90.png deleted file mode 100644 index c5720c5170..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/90.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/900.png b/front/public/images/small/gregtech/gt.blockmachines/900.png deleted file mode 100644 index 1e6489fb51..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/901.png b/front/public/images/small/gregtech/gt.blockmachines/901.png deleted file mode 100644 index 90100497d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/902.png b/front/public/images/small/gregtech/gt.blockmachines/902.png deleted file mode 100644 index 8878deabfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/903.png b/front/public/images/small/gregtech/gt.blockmachines/903.png deleted file mode 100644 index b4f2233f7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/904.png b/front/public/images/small/gregtech/gt.blockmachines/904.png deleted file mode 100644 index 9eda74d17e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/905.png b/front/public/images/small/gregtech/gt.blockmachines/905.png deleted file mode 100644 index 1dd37ef12e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/906.png b/front/public/images/small/gregtech/gt.blockmachines/906.png deleted file mode 100644 index 4a3167a8aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/907.png b/front/public/images/small/gregtech/gt.blockmachines/907.png deleted file mode 100644 index 561041ad45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/908.png b/front/public/images/small/gregtech/gt.blockmachines/908.png deleted file mode 100644 index fc5fece5ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/91.png b/front/public/images/small/gregtech/gt.blockmachines/91.png deleted file mode 100644 index 1947f59268..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/91.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/910.png b/front/public/images/small/gregtech/gt.blockmachines/910.png deleted file mode 100644 index a0b8c5e23f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/911.png b/front/public/images/small/gregtech/gt.blockmachines/911.png deleted file mode 100644 index 9a36c68a91..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/912.png b/front/public/images/small/gregtech/gt.blockmachines/912.png deleted file mode 100644 index 6f23401a8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/92.png b/front/public/images/small/gregtech/gt.blockmachines/92.png deleted file mode 100644 index 10fd80b009..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/92.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9230.png b/front/public/images/small/gregtech/gt.blockmachines/9230.png deleted file mode 100644 index 1be62e7c09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9231.png b/front/public/images/small/gregtech/gt.blockmachines/9231.png deleted file mode 100644 index 30c1d73921..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9231.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9232.png b/front/public/images/small/gregtech/gt.blockmachines/9232.png deleted file mode 100644 index 7a06a3011c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9232.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9233.png b/front/public/images/small/gregtech/gt.blockmachines/9233.png deleted file mode 100644 index 06f0f3c603..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9233.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9234.png b/front/public/images/small/gregtech/gt.blockmachines/9234.png deleted file mode 100644 index dd2111df1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9234.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9235.png b/front/public/images/small/gregtech/gt.blockmachines/9235.png deleted file mode 100644 index e81190fc85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9235.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9236.png b/front/public/images/small/gregtech/gt.blockmachines/9236.png deleted file mode 100644 index 0ffa3c4fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9236.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9237.png b/front/public/images/small/gregtech/gt.blockmachines/9237.png deleted file mode 100644 index ce2b45cf46..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9237.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9238.png b/front/public/images/small/gregtech/gt.blockmachines/9238.png deleted file mode 100644 index 6cd0c3b946..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9238.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9239.png b/front/public/images/small/gregtech/gt.blockmachines/9239.png deleted file mode 100644 index 29bcf701c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9239.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9240.png b/front/public/images/small/gregtech/gt.blockmachines/9240.png deleted file mode 100644 index c84c55e4d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9240.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9241.png b/front/public/images/small/gregtech/gt.blockmachines/9241.png deleted file mode 100644 index 3f56c35fbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9241.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9242.png b/front/public/images/small/gregtech/gt.blockmachines/9242.png deleted file mode 100644 index 96d5ea2151..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9242.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9243.png b/front/public/images/small/gregtech/gt.blockmachines/9243.png deleted file mode 100644 index a2534027b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9243.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9244.png b/front/public/images/small/gregtech/gt.blockmachines/9244.png deleted file mode 100644 index d2f88d3437..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9244.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9245.png b/front/public/images/small/gregtech/gt.blockmachines/9245.png deleted file mode 100644 index d8138caad2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9245.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9246.png b/front/public/images/small/gregtech/gt.blockmachines/9246.png deleted file mode 100644 index 71424e420b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9246.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9247.png b/front/public/images/small/gregtech/gt.blockmachines/9247.png deleted file mode 100644 index 13b6877944..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9247.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9248.png b/front/public/images/small/gregtech/gt.blockmachines/9248.png deleted file mode 100644 index aa710a1e4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9248.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9249.png b/front/public/images/small/gregtech/gt.blockmachines/9249.png deleted file mode 100644 index b2d55714ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9249.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9250.png b/front/public/images/small/gregtech/gt.blockmachines/9250.png deleted file mode 100644 index c84c55e4d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9250.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9251.png b/front/public/images/small/gregtech/gt.blockmachines/9251.png deleted file mode 100644 index 3f56c35fbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9251.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9252.png b/front/public/images/small/gregtech/gt.blockmachines/9252.png deleted file mode 100644 index 96d5ea2151..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9252.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9253.png b/front/public/images/small/gregtech/gt.blockmachines/9253.png deleted file mode 100644 index a2534027b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9253.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9254.png b/front/public/images/small/gregtech/gt.blockmachines/9254.png deleted file mode 100644 index d2f88d3437..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9254.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9255.png b/front/public/images/small/gregtech/gt.blockmachines/9255.png deleted file mode 100644 index d8138caad2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9255.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9256.png b/front/public/images/small/gregtech/gt.blockmachines/9256.png deleted file mode 100644 index 71424e420b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9256.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9257.png b/front/public/images/small/gregtech/gt.blockmachines/9257.png deleted file mode 100644 index 13b6877944..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9257.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9258.png b/front/public/images/small/gregtech/gt.blockmachines/9258.png deleted file mode 100644 index aa710a1e4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9258.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9259.png b/front/public/images/small/gregtech/gt.blockmachines/9259.png deleted file mode 100644 index b2d55714ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9259.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9270.png b/front/public/images/small/gregtech/gt.blockmachines/9270.png deleted file mode 100644 index 3b974dbcd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9270.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9271.png b/front/public/images/small/gregtech/gt.blockmachines/9271.png deleted file mode 100644 index 8fe2deb3b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9271.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9272.png b/front/public/images/small/gregtech/gt.blockmachines/9272.png deleted file mode 100644 index ad82a965d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9272.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9273.png b/front/public/images/small/gregtech/gt.blockmachines/9273.png deleted file mode 100644 index cd8acfd7dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9273.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9274.png b/front/public/images/small/gregtech/gt.blockmachines/9274.png deleted file mode 100644 index 002790026f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9274.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9275.png b/front/public/images/small/gregtech/gt.blockmachines/9275.png deleted file mode 100644 index c27bc8ee3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9275.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9276.png b/front/public/images/small/gregtech/gt.blockmachines/9276.png deleted file mode 100644 index 6e337a2fbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9276.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9277.png b/front/public/images/small/gregtech/gt.blockmachines/9277.png deleted file mode 100644 index 98e6bb4cc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9277.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9278.png b/front/public/images/small/gregtech/gt.blockmachines/9278.png deleted file mode 100644 index 54c3d49f5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9278.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9279.png b/front/public/images/small/gregtech/gt.blockmachines/9279.png deleted file mode 100644 index b6985486d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9279.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/93.png b/front/public/images/small/gregtech/gt.blockmachines/93.png deleted file mode 100644 index 7e98833458..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/93.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9300.png b/front/public/images/small/gregtech/gt.blockmachines/9300.png deleted file mode 100644 index 163cacaceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9301.png b/front/public/images/small/gregtech/gt.blockmachines/9301.png deleted file mode 100644 index 56c769a2bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9302.png b/front/public/images/small/gregtech/gt.blockmachines/9302.png deleted file mode 100644 index b26ff19f0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9303.png b/front/public/images/small/gregtech/gt.blockmachines/9303.png deleted file mode 100644 index e1cfc81c75..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9304.png b/front/public/images/small/gregtech/gt.blockmachines/9304.png deleted file mode 100644 index 044a9938da..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9305.png b/front/public/images/small/gregtech/gt.blockmachines/9305.png deleted file mode 100644 index e9ca543628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9306.png b/front/public/images/small/gregtech/gt.blockmachines/9306.png deleted file mode 100644 index f1f6c4ebaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9307.png b/front/public/images/small/gregtech/gt.blockmachines/9307.png deleted file mode 100644 index 34eb8615f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9308.png b/front/public/images/small/gregtech/gt.blockmachines/9308.png deleted file mode 100644 index 0d51fb83c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9309.png b/front/public/images/small/gregtech/gt.blockmachines/9309.png deleted file mode 100644 index 701d169f74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9320.png b/front/public/images/small/gregtech/gt.blockmachines/9320.png deleted file mode 100644 index 966fff9135..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9321.png b/front/public/images/small/gregtech/gt.blockmachines/9321.png deleted file mode 100644 index ae18f3465f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9322.png b/front/public/images/small/gregtech/gt.blockmachines/9322.png deleted file mode 100644 index 1d6554623c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9322.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9323.png b/front/public/images/small/gregtech/gt.blockmachines/9323.png deleted file mode 100644 index eb3334c354..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9324.png b/front/public/images/small/gregtech/gt.blockmachines/9324.png deleted file mode 100644 index fbcacc7700..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9325.png b/front/public/images/small/gregtech/gt.blockmachines/9325.png deleted file mode 100644 index a0d9543c24..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9326.png b/front/public/images/small/gregtech/gt.blockmachines/9326.png deleted file mode 100644 index c900ae20c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9327.png b/front/public/images/small/gregtech/gt.blockmachines/9327.png deleted file mode 100644 index 5c0d4cdf12..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9328.png b/front/public/images/small/gregtech/gt.blockmachines/9328.png deleted file mode 100644 index 64a1b41147..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9329.png b/front/public/images/small/gregtech/gt.blockmachines/9329.png deleted file mode 100644 index 2fe405cadd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9330.png b/front/public/images/small/gregtech/gt.blockmachines/9330.png deleted file mode 100644 index 1fa3863617..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9331.png b/front/public/images/small/gregtech/gt.blockmachines/9331.png deleted file mode 100644 index cf4494b1a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9332.png b/front/public/images/small/gregtech/gt.blockmachines/9332.png deleted file mode 100644 index 8a35706380..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9332.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9333.png b/front/public/images/small/gregtech/gt.blockmachines/9333.png deleted file mode 100644 index 7d0ae93183..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9334.png b/front/public/images/small/gregtech/gt.blockmachines/9334.png deleted file mode 100644 index f34736ca26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9335.png b/front/public/images/small/gregtech/gt.blockmachines/9335.png deleted file mode 100644 index 4a1570d5ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9336.png b/front/public/images/small/gregtech/gt.blockmachines/9336.png deleted file mode 100644 index 1cc759a94b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9337.png b/front/public/images/small/gregtech/gt.blockmachines/9337.png deleted file mode 100644 index bda8d35c25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9338.png b/front/public/images/small/gregtech/gt.blockmachines/9338.png deleted file mode 100644 index 6dc1ae02a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9339.png b/front/public/images/small/gregtech/gt.blockmachines/9339.png deleted file mode 100644 index 4292f5a356..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9399.png b/front/public/images/small/gregtech/gt.blockmachines/9399.png deleted file mode 100644 index 061496761f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/94.png b/front/public/images/small/gregtech/gt.blockmachines/94.png deleted file mode 100644 index 3c1c77161a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/94.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9400.png b/front/public/images/small/gregtech/gt.blockmachines/9400.png deleted file mode 100644 index 8c7aec6d71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/9401.png b/front/public/images/small/gregtech/gt.blockmachines/9401.png deleted file mode 100644 index 2f0df358ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/9401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/942.png b/front/public/images/small/gregtech/gt.blockmachines/942.png deleted file mode 100644 index e8e5c51994..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/946.png b/front/public/images/small/gregtech/gt.blockmachines/946.png deleted file mode 100644 index 75df629adc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/947.png b/front/public/images/small/gregtech/gt.blockmachines/947.png deleted file mode 100644 index 3e946d471d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/947.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/948.png b/front/public/images/small/gregtech/gt.blockmachines/948.png deleted file mode 100644 index 2a7664d5a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/949.png b/front/public/images/small/gregtech/gt.blockmachines/949.png deleted file mode 100644 index b90e974698..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/95.png b/front/public/images/small/gregtech/gt.blockmachines/95.png deleted file mode 100644 index 5ff418b5e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/95.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/950.png b/front/public/images/small/gregtech/gt.blockmachines/950.png deleted file mode 100644 index 5271168a9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/950.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/951.png b/front/public/images/small/gregtech/gt.blockmachines/951.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/956.png b/front/public/images/small/gregtech/gt.blockmachines/956.png deleted file mode 100644 index df1f03204a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/96.png b/front/public/images/small/gregtech/gt.blockmachines/96.png deleted file mode 100644 index 1e6535a284..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/96.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/963.png b/front/public/images/small/gregtech/gt.blockmachines/963.png deleted file mode 100644 index d0ab941c12..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/963.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/964.png b/front/public/images/small/gregtech/gt.blockmachines/964.png deleted file mode 100644 index d3507a040a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/964.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/965.png b/front/public/images/small/gregtech/gt.blockmachines/965.png deleted file mode 100644 index 0a833b7e37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/965.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/967.png b/front/public/images/small/gregtech/gt.blockmachines/967.png deleted file mode 100644 index 2ceb2733e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/967.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/968.png b/front/public/images/small/gregtech/gt.blockmachines/968.png deleted file mode 100644 index 2ceb2733e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/968.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/969.png b/front/public/images/small/gregtech/gt.blockmachines/969.png deleted file mode 100644 index 0200405763..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/97.png b/front/public/images/small/gregtech/gt.blockmachines/97.png deleted file mode 100644 index 1820d6290a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/97.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/975.png b/front/public/images/small/gregtech/gt.blockmachines/975.png deleted file mode 100644 index eba181234a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/98.png b/front/public/images/small/gregtech/gt.blockmachines/98.png deleted file mode 100644 index a0ae6ad64e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/98.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/99.png b/front/public/images/small/gregtech/gt.blockmachines/99.png deleted file mode 100644 index c7e21628a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/99.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/992.png b/front/public/images/small/gregtech/gt.blockmachines/992.png deleted file mode 100644 index 6804788dee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/993.png b/front/public/images/small/gregtech/gt.blockmachines/993.png deleted file mode 100644 index 83be37fc9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/993.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/994.png b/front/public/images/small/gregtech/gt.blockmachines/994.png deleted file mode 100644 index 463d8d9302..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/994.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/995.png b/front/public/images/small/gregtech/gt.blockmachines/995.png deleted file mode 100644 index 3fbc51f81b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/995.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/996.png b/front/public/images/small/gregtech/gt.blockmachines/996.png deleted file mode 100644 index fa94e7d1cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/996.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/997.png b/front/public/images/small/gregtech/gt.blockmachines/997.png deleted file mode 100644 index cb7a3ff620..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/997.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmachines/998.png b/front/public/images/small/gregtech/gt.blockmachines/998.png deleted file mode 100644 index 3276a20fac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmachines/998.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/0.png b/front/public/images/small/gregtech/gt.blockmetal1/0.png deleted file mode 100644 index 35e23270b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/1.png b/front/public/images/small/gregtech/gt.blockmetal1/1.png deleted file mode 100644 index 332afae2fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/10.png b/front/public/images/small/gregtech/gt.blockmetal1/10.png deleted file mode 100644 index 43b254ded9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/11.png b/front/public/images/small/gregtech/gt.blockmetal1/11.png deleted file mode 100644 index f1bc0dd54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/12.png b/front/public/images/small/gregtech/gt.blockmetal1/12.png deleted file mode 100644 index b620a9445f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/13.png b/front/public/images/small/gregtech/gt.blockmetal1/13.png deleted file mode 100644 index 01cacb6076..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/14.png b/front/public/images/small/gregtech/gt.blockmetal1/14.png deleted file mode 100644 index e234660f0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/15.png b/front/public/images/small/gregtech/gt.blockmetal1/15.png deleted file mode 100644 index 3d07d9018a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/2.png b/front/public/images/small/gregtech/gt.blockmetal1/2.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/3.png b/front/public/images/small/gregtech/gt.blockmetal1/3.png deleted file mode 100644 index e80b9e90e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/4.png b/front/public/images/small/gregtech/gt.blockmetal1/4.png deleted file mode 100644 index e7338ebaf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/5.png b/front/public/images/small/gregtech/gt.blockmetal1/5.png deleted file mode 100644 index 066dba5b17..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/6.png b/front/public/images/small/gregtech/gt.blockmetal1/6.png deleted file mode 100644 index f2627992b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/7.png b/front/public/images/small/gregtech/gt.blockmetal1/7.png deleted file mode 100644 index 8d24234a4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/8.png b/front/public/images/small/gregtech/gt.blockmetal1/8.png deleted file mode 100644 index 70a7af2fe7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal1/9.png b/front/public/images/small/gregtech/gt.blockmetal1/9.png deleted file mode 100644 index 6512cd6c31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal1/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/0.png b/front/public/images/small/gregtech/gt.blockmetal2/0.png deleted file mode 100644 index 86e5a0ed08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/1.png b/front/public/images/small/gregtech/gt.blockmetal2/1.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/10.png b/front/public/images/small/gregtech/gt.blockmetal2/10.png deleted file mode 100644 index 2dc4315d03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/11.png b/front/public/images/small/gregtech/gt.blockmetal2/11.png deleted file mode 100644 index b796760b40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/12.png b/front/public/images/small/gregtech/gt.blockmetal2/12.png deleted file mode 100644 index 37cf01f484..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/13.png b/front/public/images/small/gregtech/gt.blockmetal2/13.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/14.png b/front/public/images/small/gregtech/gt.blockmetal2/14.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/15.png b/front/public/images/small/gregtech/gt.blockmetal2/15.png deleted file mode 100644 index 46c5b2245e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/2.png b/front/public/images/small/gregtech/gt.blockmetal2/2.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/3.png b/front/public/images/small/gregtech/gt.blockmetal2/3.png deleted file mode 100644 index bd22b1d705..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/4.png b/front/public/images/small/gregtech/gt.blockmetal2/4.png deleted file mode 100644 index 4cf0abf698..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/5.png b/front/public/images/small/gregtech/gt.blockmetal2/5.png deleted file mode 100644 index afc668cbb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/6.png b/front/public/images/small/gregtech/gt.blockmetal2/6.png deleted file mode 100644 index 6a8afd11cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/7.png b/front/public/images/small/gregtech/gt.blockmetal2/7.png deleted file mode 100644 index 1f590a5780..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/8.png b/front/public/images/small/gregtech/gt.blockmetal2/8.png deleted file mode 100644 index a638e748da..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal2/9.png b/front/public/images/small/gregtech/gt.blockmetal2/9.png deleted file mode 100644 index a71f73e980..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal2/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/0.png b/front/public/images/small/gregtech/gt.blockmetal3/0.png deleted file mode 100644 index 46c5b2245e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/1.png b/front/public/images/small/gregtech/gt.blockmetal3/1.png deleted file mode 100644 index 3643c1a10c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/10.png b/front/public/images/small/gregtech/gt.blockmetal3/10.png deleted file mode 100644 index ac607453d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/11.png b/front/public/images/small/gregtech/gt.blockmetal3/11.png deleted file mode 100644 index 61c9d41c11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/12.png b/front/public/images/small/gregtech/gt.blockmetal3/12.png deleted file mode 100644 index 1541b083bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/13.png b/front/public/images/small/gregtech/gt.blockmetal3/13.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/14.png b/front/public/images/small/gregtech/gt.blockmetal3/14.png deleted file mode 100644 index 290e37c367..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/15.png b/front/public/images/small/gregtech/gt.blockmetal3/15.png deleted file mode 100644 index b8c89e84f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/2.png b/front/public/images/small/gregtech/gt.blockmetal3/2.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/3.png b/front/public/images/small/gregtech/gt.blockmetal3/3.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/4.png b/front/public/images/small/gregtech/gt.blockmetal3/4.png deleted file mode 100644 index 5a7a51c57d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/5.png b/front/public/images/small/gregtech/gt.blockmetal3/5.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/6.png b/front/public/images/small/gregtech/gt.blockmetal3/6.png deleted file mode 100644 index 19b99c0091..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/7.png b/front/public/images/small/gregtech/gt.blockmetal3/7.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal3/9.png b/front/public/images/small/gregtech/gt.blockmetal3/9.png deleted file mode 100644 index f2846d20e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal3/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/0.png b/front/public/images/small/gregtech/gt.blockmetal4/0.png deleted file mode 100644 index c141086acc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/1.png b/front/public/images/small/gregtech/gt.blockmetal4/1.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/10.png b/front/public/images/small/gregtech/gt.blockmetal4/10.png deleted file mode 100644 index 2a01cae2d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/11.png b/front/public/images/small/gregtech/gt.blockmetal4/11.png deleted file mode 100644 index 607a0f1cc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/12.png b/front/public/images/small/gregtech/gt.blockmetal4/12.png deleted file mode 100644 index 9258258e92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/13.png b/front/public/images/small/gregtech/gt.blockmetal4/13.png deleted file mode 100644 index 9258258e92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/14.png b/front/public/images/small/gregtech/gt.blockmetal4/14.png deleted file mode 100644 index d5a8371416..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/15.png b/front/public/images/small/gregtech/gt.blockmetal4/15.png deleted file mode 100644 index b7531f5e80..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/2.png b/front/public/images/small/gregtech/gt.blockmetal4/2.png deleted file mode 100644 index 7d54b67664..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/3.png b/front/public/images/small/gregtech/gt.blockmetal4/3.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/4.png b/front/public/images/small/gregtech/gt.blockmetal4/4.png deleted file mode 100644 index 40d6804c76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/5.png b/front/public/images/small/gregtech/gt.blockmetal4/5.png deleted file mode 100644 index ceacea82c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/6.png b/front/public/images/small/gregtech/gt.blockmetal4/6.png deleted file mode 100644 index 25a1c1bec7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/7.png b/front/public/images/small/gregtech/gt.blockmetal4/7.png deleted file mode 100644 index b2d3ff1fcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/8.png b/front/public/images/small/gregtech/gt.blockmetal4/8.png deleted file mode 100644 index 78fc9d404b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal4/9.png b/front/public/images/small/gregtech/gt.blockmetal4/9.png deleted file mode 100644 index fd08636e6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal4/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/0.png b/front/public/images/small/gregtech/gt.blockmetal5/0.png deleted file mode 100644 index ade23aede6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/1.png b/front/public/images/small/gregtech/gt.blockmetal5/1.png deleted file mode 100644 index ade23aede6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/10.png b/front/public/images/small/gregtech/gt.blockmetal5/10.png deleted file mode 100644 index 989e964268..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/11.png b/front/public/images/small/gregtech/gt.blockmetal5/11.png deleted file mode 100644 index 1f9d0eeb0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/12.png b/front/public/images/small/gregtech/gt.blockmetal5/12.png deleted file mode 100644 index 88492d9ae1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/13.png b/front/public/images/small/gregtech/gt.blockmetal5/13.png deleted file mode 100644 index 951f19eda1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/14.png b/front/public/images/small/gregtech/gt.blockmetal5/14.png deleted file mode 100644 index 65722f2135..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/15.png b/front/public/images/small/gregtech/gt.blockmetal5/15.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/2.png b/front/public/images/small/gregtech/gt.blockmetal5/2.png deleted file mode 100644 index 1541b083bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/3.png b/front/public/images/small/gregtech/gt.blockmetal5/3.png deleted file mode 100644 index 30d85ad0a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/4.png b/front/public/images/small/gregtech/gt.blockmetal5/4.png deleted file mode 100644 index 30d85ad0a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/5.png b/front/public/images/small/gregtech/gt.blockmetal5/5.png deleted file mode 100644 index eba452e433..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/6.png b/front/public/images/small/gregtech/gt.blockmetal5/6.png deleted file mode 100644 index 989603c1fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/7.png b/front/public/images/small/gregtech/gt.blockmetal5/7.png deleted file mode 100644 index fea9947234..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/8.png b/front/public/images/small/gregtech/gt.blockmetal5/8.png deleted file mode 100644 index 008fea4e34..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal5/9.png b/front/public/images/small/gregtech/gt.blockmetal5/9.png deleted file mode 100644 index 6df6953b8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal5/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/0.png b/front/public/images/small/gregtech/gt.blockmetal6/0.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/1.png b/front/public/images/small/gregtech/gt.blockmetal6/1.png deleted file mode 100644 index 8dd02ae5af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/10.png b/front/public/images/small/gregtech/gt.blockmetal6/10.png deleted file mode 100644 index b30a5918b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/11.png b/front/public/images/small/gregtech/gt.blockmetal6/11.png deleted file mode 100644 index c51e9118b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/12.png b/front/public/images/small/gregtech/gt.blockmetal6/12.png deleted file mode 100644 index 5b68b81e1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/13.png b/front/public/images/small/gregtech/gt.blockmetal6/13.png deleted file mode 100644 index 350a07c971..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/14.png b/front/public/images/small/gregtech/gt.blockmetal6/14.png deleted file mode 100644 index 350a07c971..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/15.png b/front/public/images/small/gregtech/gt.blockmetal6/15.png deleted file mode 100644 index 0819f016be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/2.png b/front/public/images/small/gregtech/gt.blockmetal6/2.png deleted file mode 100644 index d96dce85ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/3.png b/front/public/images/small/gregtech/gt.blockmetal6/3.png deleted file mode 100644 index d0b1a3d63f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/4.png b/front/public/images/small/gregtech/gt.blockmetal6/4.png deleted file mode 100644 index a8b409aa20..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/5.png b/front/public/images/small/gregtech/gt.blockmetal6/5.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/6.png b/front/public/images/small/gregtech/gt.blockmetal6/6.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/7.png b/front/public/images/small/gregtech/gt.blockmetal6/7.png deleted file mode 100644 index 1485f661c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/8.png b/front/public/images/small/gregtech/gt.blockmetal6/8.png deleted file mode 100644 index e9c518f794..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal6/9.png b/front/public/images/small/gregtech/gt.blockmetal6/9.png deleted file mode 100644 index 9a3a0d56ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal6/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/0.png b/front/public/images/small/gregtech/gt.blockmetal7/0.png deleted file mode 100644 index 469fa5d4e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/1.png b/front/public/images/small/gregtech/gt.blockmetal7/1.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/10.png b/front/public/images/small/gregtech/gt.blockmetal7/10.png deleted file mode 100644 index 2e4352eba9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/11.png b/front/public/images/small/gregtech/gt.blockmetal7/11.png deleted file mode 100644 index 9258258e92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/12.png b/front/public/images/small/gregtech/gt.blockmetal7/12.png deleted file mode 100644 index a01af3106e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/13.png b/front/public/images/small/gregtech/gt.blockmetal7/13.png deleted file mode 100644 index 607a0f1cc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/14.png b/front/public/images/small/gregtech/gt.blockmetal7/14.png deleted file mode 100644 index bcb1cdc721..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/15.png b/front/public/images/small/gregtech/gt.blockmetal7/15.png deleted file mode 100644 index 4a5426786c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/2.png b/front/public/images/small/gregtech/gt.blockmetal7/2.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/3.png b/front/public/images/small/gregtech/gt.blockmetal7/3.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/4.png b/front/public/images/small/gregtech/gt.blockmetal7/4.png deleted file mode 100644 index da11ad9e78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/5.png b/front/public/images/small/gregtech/gt.blockmetal7/5.png deleted file mode 100644 index aad0a26086..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/6.png b/front/public/images/small/gregtech/gt.blockmetal7/6.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/7.png b/front/public/images/small/gregtech/gt.blockmetal7/7.png deleted file mode 100644 index ec805bea11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/8.png b/front/public/images/small/gregtech/gt.blockmetal7/8.png deleted file mode 100644 index 2709f2e8ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal7/9.png b/front/public/images/small/gregtech/gt.blockmetal7/9.png deleted file mode 100644 index e96262f95a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal7/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/0.png b/front/public/images/small/gregtech/gt.blockmetal8/0.png deleted file mode 100644 index 85e92fb8f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/1.png b/front/public/images/small/gregtech/gt.blockmetal8/1.png deleted file mode 100644 index 146a5c8312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/10.png b/front/public/images/small/gregtech/gt.blockmetal8/10.png deleted file mode 100644 index 70a7af2fe7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/11.png b/front/public/images/small/gregtech/gt.blockmetal8/11.png deleted file mode 100644 index 8dd02ae5af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/12.png b/front/public/images/small/gregtech/gt.blockmetal8/12.png deleted file mode 100644 index 8fef2d221a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/13.png b/front/public/images/small/gregtech/gt.blockmetal8/13.png deleted file mode 100644 index e99bb38792..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/14.png b/front/public/images/small/gregtech/gt.blockmetal8/14.png deleted file mode 100644 index 159ad6b71b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/15.png b/front/public/images/small/gregtech/gt.blockmetal8/15.png deleted file mode 100644 index d5a8371416..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/2.png b/front/public/images/small/gregtech/gt.blockmetal8/2.png deleted file mode 100644 index 1f9d0eeb0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/3.png b/front/public/images/small/gregtech/gt.blockmetal8/3.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/4.png b/front/public/images/small/gregtech/gt.blockmetal8/4.png deleted file mode 100644 index 51d250e199..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/5.png b/front/public/images/small/gregtech/gt.blockmetal8/5.png deleted file mode 100644 index 56d6e0cad9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/6.png b/front/public/images/small/gregtech/gt.blockmetal8/6.png deleted file mode 100644 index beab16a7f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/7.png b/front/public/images/small/gregtech/gt.blockmetal8/7.png deleted file mode 100644 index f2846d20e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/8.png b/front/public/images/small/gregtech/gt.blockmetal8/8.png deleted file mode 100644 index 989e964268..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal8/9.png b/front/public/images/small/gregtech/gt.blockmetal8/9.png deleted file mode 100644 index d0b1a3d63f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal8/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/0.png b/front/public/images/small/gregtech/gt.blockmetal9/0.png deleted file mode 100644 index b8aaa804a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/1.png b/front/public/images/small/gregtech/gt.blockmetal9/1.png deleted file mode 100644 index 916720a20e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/10.png b/front/public/images/small/gregtech/gt.blockmetal9/10.png deleted file mode 100644 index a5932694d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/2.png b/front/public/images/small/gregtech/gt.blockmetal9/2.png deleted file mode 100644 index 8d47b4e018..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/3.png b/front/public/images/small/gregtech/gt.blockmetal9/3.png deleted file mode 100644 index 9eadfb8a45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/4.png b/front/public/images/small/gregtech/gt.blockmetal9/4.png deleted file mode 100644 index b7531f5e80..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/5.png b/front/public/images/small/gregtech/gt.blockmetal9/5.png deleted file mode 100644 index 4d182091b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/6.png b/front/public/images/small/gregtech/gt.blockmetal9/6.png deleted file mode 100644 index 9931200b2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/7.png b/front/public/images/small/gregtech/gt.blockmetal9/7.png deleted file mode 100644 index 3c1a75c176..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/8.png b/front/public/images/small/gregtech/gt.blockmetal9/8.png deleted file mode 100644 index bd6bc6a560..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockmetal9/9.png b/front/public/images/small/gregtech/gt.blockmetal9/9.png deleted file mode 100644 index 4db459e467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockmetal9/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/100.png b/front/public/images/small/gregtech/gt.blockores/100.png deleted file mode 100644 index a366994bdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1006.png b/front/public/images/small/gregtech/gt.blockores/1006.png deleted file mode 100644 index 57332ca83e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1008.png b/front/public/images/small/gregtech/gt.blockores/1008.png deleted file mode 100644 index e27cd58ddc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/101.png b/front/public/images/small/gregtech/gt.blockores/101.png deleted file mode 100644 index 5028bf1c56..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1018.png b/front/public/images/small/gregtech/gt.blockores/1018.png deleted file mode 100644 index 8bbd98e39b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1019.png b/front/public/images/small/gregtech/gt.blockores/1019.png deleted file mode 100644 index be78115690..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1020.png b/front/public/images/small/gregtech/gt.blockores/1020.png deleted file mode 100644 index 4e694e5987..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1022.png b/front/public/images/small/gregtech/gt.blockores/1022.png deleted file mode 100644 index 3015ee4803..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1027.png b/front/public/images/small/gregtech/gt.blockores/1027.png deleted file mode 100644 index 358a3bc900..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1028.png b/front/public/images/small/gregtech/gt.blockores/1028.png deleted file mode 100644 index cd43011771..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1029.png b/front/public/images/small/gregtech/gt.blockores/1029.png deleted file mode 100644 index d3cd3e8852..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/103.png b/front/public/images/small/gregtech/gt.blockores/103.png deleted file mode 100644 index acee54c2e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1030.png b/front/public/images/small/gregtech/gt.blockores/1030.png deleted file mode 100644 index 10aa55b2b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1031.png b/front/public/images/small/gregtech/gt.blockores/1031.png deleted file mode 100644 index 6f6da6df5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1032.png b/front/public/images/small/gregtech/gt.blockores/1032.png deleted file mode 100644 index aba56dec7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1033.png b/front/public/images/small/gregtech/gt.blockores/1033.png deleted file mode 100644 index abdde4ae70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1034.png b/front/public/images/small/gregtech/gt.blockores/1034.png deleted file mode 100644 index 5e8f5745b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1035.png b/front/public/images/small/gregtech/gt.blockores/1035.png deleted file mode 100644 index 91aac7655e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1036.png b/front/public/images/small/gregtech/gt.blockores/1036.png deleted file mode 100644 index 71b3a50b67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1037.png b/front/public/images/small/gregtech/gt.blockores/1037.png deleted file mode 100644 index 0543b77a49..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1039.png b/front/public/images/small/gregtech/gt.blockores/1039.png deleted file mode 100644 index 9aa3136e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1043.png b/front/public/images/small/gregtech/gt.blockores/1043.png deleted file mode 100644 index 1af1b45a44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1044.png b/front/public/images/small/gregtech/gt.blockores/1044.png deleted file mode 100644 index aba56dec7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1045.png b/front/public/images/small/gregtech/gt.blockores/1045.png deleted file mode 100644 index b06f817e76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1047.png b/front/public/images/small/gregtech/gt.blockores/1047.png deleted file mode 100644 index 8b1032a93c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1048.png b/front/public/images/small/gregtech/gt.blockores/1048.png deleted file mode 100644 index a30b993ca3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1052.png b/front/public/images/small/gregtech/gt.blockores/1052.png deleted file mode 100644 index a2456e3967..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1054.png b/front/public/images/small/gregtech/gt.blockores/1054.png deleted file mode 100644 index 0543b77a49..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1055.png b/front/public/images/small/gregtech/gt.blockores/1055.png deleted file mode 100644 index 508fc4cc9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1056.png b/front/public/images/small/gregtech/gt.blockores/1056.png deleted file mode 100644 index f0c2f51f66..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1057.png b/front/public/images/small/gregtech/gt.blockores/1057.png deleted file mode 100644 index 19581d383f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1058.png b/front/public/images/small/gregtech/gt.blockores/1058.png deleted file mode 100644 index f448e643d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1059.png b/front/public/images/small/gregtech/gt.blockores/1059.png deleted file mode 100644 index 27a21a7dcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1062.png b/front/public/images/small/gregtech/gt.blockores/1062.png deleted file mode 100644 index ad5eff4e40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1063.png b/front/public/images/small/gregtech/gt.blockores/1063.png deleted file mode 100644 index 9aa3136e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1064.png b/front/public/images/small/gregtech/gt.blockores/1064.png deleted file mode 100644 index adbc6a7175..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1065.png b/front/public/images/small/gregtech/gt.blockores/1065.png deleted file mode 100644 index 31cd6eb3f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1066.png b/front/public/images/small/gregtech/gt.blockores/1066.png deleted file mode 100644 index d75cc6384c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1067.png b/front/public/images/small/gregtech/gt.blockores/1067.png deleted file mode 100644 index 6230d739e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1068.png b/front/public/images/small/gregtech/gt.blockores/1068.png deleted file mode 100644 index ebb2c6dbee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1069.png b/front/public/images/small/gregtech/gt.blockores/1069.png deleted file mode 100644 index 0c07949c7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1070.png b/front/public/images/small/gregtech/gt.blockores/1070.png deleted file mode 100644 index ff8126e9b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1071.png b/front/public/images/small/gregtech/gt.blockores/1071.png deleted file mode 100644 index 59454a6c02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1072.png b/front/public/images/small/gregtech/gt.blockores/1072.png deleted file mode 100644 index 9aa3136e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1073.png b/front/public/images/small/gregtech/gt.blockores/1073.png deleted file mode 100644 index 77eac45efc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1074.png b/front/public/images/small/gregtech/gt.blockores/1074.png deleted file mode 100644 index 8d927dd28c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1075.png b/front/public/images/small/gregtech/gt.blockores/1075.png deleted file mode 100644 index 544680d145..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1076.png b/front/public/images/small/gregtech/gt.blockores/1076.png deleted file mode 100644 index 6d6febdbb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1077.png b/front/public/images/small/gregtech/gt.blockores/1077.png deleted file mode 100644 index 27518886c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1078.png b/front/public/images/small/gregtech/gt.blockores/1078.png deleted file mode 100644 index 22576fa8bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1080.png b/front/public/images/small/gregtech/gt.blockores/1080.png deleted file mode 100644 index 9ede1c9bbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1081.png b/front/public/images/small/gregtech/gt.blockores/1081.png deleted file mode 100644 index d3cd3e8852..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1083.png b/front/public/images/small/gregtech/gt.blockores/1083.png deleted file mode 100644 index 7004988b5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1084.png b/front/public/images/small/gregtech/gt.blockores/1084.png deleted file mode 100644 index a57593bc0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1085.png b/front/public/images/small/gregtech/gt.blockores/1085.png deleted file mode 100644 index d96dbb58a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1086.png b/front/public/images/small/gregtech/gt.blockores/1086.png deleted file mode 100644 index ae3e691d9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1089.png b/front/public/images/small/gregtech/gt.blockores/1089.png deleted file mode 100644 index dbcc54acd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1090.png b/front/public/images/small/gregtech/gt.blockores/1090.png deleted file mode 100644 index ea7fb18473..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1096.png b/front/public/images/small/gregtech/gt.blockores/1096.png deleted file mode 100644 index f552127040..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1097.png b/front/public/images/small/gregtech/gt.blockores/1097.png deleted file mode 100644 index de0c57b20f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1098.png b/front/public/images/small/gregtech/gt.blockores/1098.png deleted file mode 100644 index e0fe28ee07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/110.png b/front/public/images/small/gregtech/gt.blockores/110.png deleted file mode 100644 index a81ed9e50b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1100.png b/front/public/images/small/gregtech/gt.blockores/1100.png deleted file mode 100644 index e5e0d9d3d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1101.png b/front/public/images/small/gregtech/gt.blockores/1101.png deleted file mode 100644 index a95d732242..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1103.png b/front/public/images/small/gregtech/gt.blockores/1103.png deleted file mode 100644 index aba56dec7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1110.png b/front/public/images/small/gregtech/gt.blockores/1110.png deleted file mode 100644 index 2d106e8554..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1129.png b/front/public/images/small/gregtech/gt.blockores/1129.png deleted file mode 100644 index 6f6da6df5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/129.png b/front/public/images/small/gregtech/gt.blockores/129.png deleted file mode 100644 index ff1bec4a48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1303.png b/front/public/images/small/gregtech/gt.blockores/1303.png deleted file mode 100644 index 5cc065aba1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1307.png b/front/public/images/small/gregtech/gt.blockores/1307.png deleted file mode 100644 index 549cd1d540..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1319.png b/front/public/images/small/gregtech/gt.blockores/1319.png deleted file mode 100644 index 8d25d5df10..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1320.png b/front/public/images/small/gregtech/gt.blockores/1320.png deleted file mode 100644 index dd3d0f7a0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1323.png b/front/public/images/small/gregtech/gt.blockores/1323.png deleted file mode 100644 index a22020a088..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1324.png b/front/public/images/small/gregtech/gt.blockores/1324.png deleted file mode 100644 index d3cd3e8852..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1326.png b/front/public/images/small/gregtech/gt.blockores/1326.png deleted file mode 100644 index 186f6e087c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1327.png b/front/public/images/small/gregtech/gt.blockores/1327.png deleted file mode 100644 index edfeedce27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1329.png b/front/public/images/small/gregtech/gt.blockores/1329.png deleted file mode 100644 index 74db375b58..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1331.png b/front/public/images/small/gregtech/gt.blockores/1331.png deleted file mode 100644 index ea75af2705..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1336.png b/front/public/images/small/gregtech/gt.blockores/1336.png deleted file mode 100644 index 70e2a4f7a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1340.png b/front/public/images/small/gregtech/gt.blockores/1340.png deleted file mode 100644 index a2c9ffd186..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1342.png b/front/public/images/small/gregtech/gt.blockores/1342.png deleted file mode 100644 index 443085d966..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1347.png b/front/public/images/small/gregtech/gt.blockores/1347.png deleted file mode 100644 index 68163f98b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1368.png b/front/public/images/small/gregtech/gt.blockores/1368.png deleted file mode 100644 index c13a366527..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1375.png b/front/public/images/small/gregtech/gt.blockores/1375.png deleted file mode 100644 index 587860564c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1382.png b/front/public/images/small/gregtech/gt.blockores/1382.png deleted file mode 100644 index b4bf47378b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1386.png b/front/public/images/small/gregtech/gt.blockores/1386.png deleted file mode 100644 index 4623332389..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1387.png b/front/public/images/small/gregtech/gt.blockores/1387.png deleted file mode 100644 index 7c5e6524c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1388.png b/front/public/images/small/gregtech/gt.blockores/1388.png deleted file mode 100644 index d3cd3e8852..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1389.png b/front/public/images/small/gregtech/gt.blockores/1389.png deleted file mode 100644 index 9ce00546d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1390.png b/front/public/images/small/gregtech/gt.blockores/1390.png deleted file mode 100644 index 9959384fad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1391.png b/front/public/images/small/gregtech/gt.blockores/1391.png deleted file mode 100644 index e4b23cebb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1392.png b/front/public/images/small/gregtech/gt.blockores/1392.png deleted file mode 100644 index 298430211b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1393.png b/front/public/images/small/gregtech/gt.blockores/1393.png deleted file mode 100644 index 0a9e7c88d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1394.png b/front/public/images/small/gregtech/gt.blockores/1394.png deleted file mode 100644 index 8d25d5df10..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1395.png b/front/public/images/small/gregtech/gt.blockores/1395.png deleted file mode 100644 index d3cd3e8852..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1398.png b/front/public/images/small/gregtech/gt.blockores/1398.png deleted file mode 100644 index c8ff7576a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1485.png b/front/public/images/small/gregtech/gt.blockores/1485.png deleted file mode 100644 index 7e92cbc2b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1488.png b/front/public/images/small/gregtech/gt.blockores/1488.png deleted file mode 100644 index c5494cdb11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1489.png b/front/public/images/small/gregtech/gt.blockores/1489.png deleted file mode 100644 index f0debdc5a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1500.png b/front/public/images/small/gregtech/gt.blockores/1500.png deleted file mode 100644 index 4ca5e3af99..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1501.png b/front/public/images/small/gregtech/gt.blockores/1501.png deleted file mode 100644 index 8fb9e47720..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1502.png b/front/public/images/small/gregtech/gt.blockores/1502.png deleted file mode 100644 index a96b2af43a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1503.png b/front/public/images/small/gregtech/gt.blockores/1503.png deleted file mode 100644 index f2b7da3291..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1504.png b/front/public/images/small/gregtech/gt.blockores/1504.png deleted file mode 100644 index 957885b8e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1505.png b/front/public/images/small/gregtech/gt.blockores/1505.png deleted file mode 100644 index 53113cf499..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1506.png b/front/public/images/small/gregtech/gt.blockores/1506.png deleted file mode 100644 index dabd48182d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1507.png b/front/public/images/small/gregtech/gt.blockores/1507.png deleted file mode 100644 index d57220bfd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1508.png b/front/public/images/small/gregtech/gt.blockores/1508.png deleted file mode 100644 index 5eba4c1bca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1509.png b/front/public/images/small/gregtech/gt.blockores/1509.png deleted file mode 100644 index 4f41f656e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1510.png b/front/public/images/small/gregtech/gt.blockores/1510.png deleted file mode 100644 index 9f9019a55c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1511.png b/front/public/images/small/gregtech/gt.blockores/1511.png deleted file mode 100644 index 58b86012a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1512.png b/front/public/images/small/gregtech/gt.blockores/1512.png deleted file mode 100644 index a96b2af43a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1513.png b/front/public/images/small/gregtech/gt.blockores/1513.png deleted file mode 100644 index 9f9019a55c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1514.png b/front/public/images/small/gregtech/gt.blockores/1514.png deleted file mode 100644 index d57220bfd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1515.png b/front/public/images/small/gregtech/gt.blockores/1515.png deleted file mode 100644 index 6c4a25b9bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1516.png b/front/public/images/small/gregtech/gt.blockores/1516.png deleted file mode 100644 index 3909e5c10a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1517.png b/front/public/images/small/gregtech/gt.blockores/1517.png deleted file mode 100644 index 85c880fa01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1518.png b/front/public/images/small/gregtech/gt.blockores/1518.png deleted file mode 100644 index 0c6cf79f08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1519.png b/front/public/images/small/gregtech/gt.blockores/1519.png deleted file mode 100644 index 0c6cf79f08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1520.png b/front/public/images/small/gregtech/gt.blockores/1520.png deleted file mode 100644 index 5f71bddadd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1521.png b/front/public/images/small/gregtech/gt.blockores/1521.png deleted file mode 100644 index b1c1127df0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1522.png b/front/public/images/small/gregtech/gt.blockores/1522.png deleted file mode 100644 index 6f1dfbe052..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1523.png b/front/public/images/small/gregtech/gt.blockores/1523.png deleted file mode 100644 index b2eeea8283..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1524.png b/front/public/images/small/gregtech/gt.blockores/1524.png deleted file mode 100644 index f487352e33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1525.png b/front/public/images/small/gregtech/gt.blockores/1525.png deleted file mode 100644 index 8f12010e40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1526.png b/front/public/images/small/gregtech/gt.blockores/1526.png deleted file mode 100644 index 68a86c453d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1527.png b/front/public/images/small/gregtech/gt.blockores/1527.png deleted file mode 100644 index 58b86012a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1528.png b/front/public/images/small/gregtech/gt.blockores/1528.png deleted file mode 100644 index d1076212f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1529.png b/front/public/images/small/gregtech/gt.blockores/1529.png deleted file mode 100644 index 33ef3cb9bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1530.png b/front/public/images/small/gregtech/gt.blockores/1530.png deleted file mode 100644 index bf0fa50fac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1531.png b/front/public/images/small/gregtech/gt.blockores/1531.png deleted file mode 100644 index 59e9e2c84d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1534.png b/front/public/images/small/gregtech/gt.blockores/1534.png deleted file mode 100644 index d1662d9331..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1535.png b/front/public/images/small/gregtech/gt.blockores/1535.png deleted file mode 100644 index 17277978fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1537.png b/front/public/images/small/gregtech/gt.blockores/1537.png deleted file mode 100644 index b7756196d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1538.png b/front/public/images/small/gregtech/gt.blockores/1538.png deleted file mode 100644 index f80d6091c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1540.png b/front/public/images/small/gregtech/gt.blockores/1540.png deleted file mode 100644 index 8b146a56ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1541.png b/front/public/images/small/gregtech/gt.blockores/1541.png deleted file mode 100644 index c3283ec2d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1542.png b/front/public/images/small/gregtech/gt.blockores/1542.png deleted file mode 100644 index fa4e122538..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1543.png b/front/public/images/small/gregtech/gt.blockores/1543.png deleted file mode 100644 index 2e86904d8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1544.png b/front/public/images/small/gregtech/gt.blockores/1544.png deleted file mode 100644 index 2bf00e8cf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1545.png b/front/public/images/small/gregtech/gt.blockores/1545.png deleted file mode 100644 index 0f18906e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1548.png b/front/public/images/small/gregtech/gt.blockores/1548.png deleted file mode 100644 index 8206f5dccb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1549.png b/front/public/images/small/gregtech/gt.blockores/1549.png deleted file mode 100644 index f127ff1c66..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16006.png b/front/public/images/small/gregtech/gt.blockores/16006.png deleted file mode 100644 index 5199737612..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16008.png b/front/public/images/small/gregtech/gt.blockores/16008.png deleted file mode 100644 index c67fd78a33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16018.png b/front/public/images/small/gregtech/gt.blockores/16018.png deleted file mode 100644 index 1ea7a6c44b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16019.png b/front/public/images/small/gregtech/gt.blockores/16019.png deleted file mode 100644 index 5c983b9b1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16020.png b/front/public/images/small/gregtech/gt.blockores/16020.png deleted file mode 100644 index 78e27f01ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16022.png b/front/public/images/small/gregtech/gt.blockores/16022.png deleted file mode 100644 index f362d1291b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16027.png b/front/public/images/small/gregtech/gt.blockores/16027.png deleted file mode 100644 index 3c893fdbd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16028.png b/front/public/images/small/gregtech/gt.blockores/16028.png deleted file mode 100644 index 064a9d47c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16029.png b/front/public/images/small/gregtech/gt.blockores/16029.png deleted file mode 100644 index 3558738d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16030.png b/front/public/images/small/gregtech/gt.blockores/16030.png deleted file mode 100644 index bd73182442..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16031.png b/front/public/images/small/gregtech/gt.blockores/16031.png deleted file mode 100644 index 7ee1830427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16032.png b/front/public/images/small/gregtech/gt.blockores/16032.png deleted file mode 100644 index 1bf4538d03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16033.png b/front/public/images/small/gregtech/gt.blockores/16033.png deleted file mode 100644 index 0ca5ac6f05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16034.png b/front/public/images/small/gregtech/gt.blockores/16034.png deleted file mode 100644 index 180115c97c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16035.png b/front/public/images/small/gregtech/gt.blockores/16035.png deleted file mode 100644 index 0dc7581a8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16036.png b/front/public/images/small/gregtech/gt.blockores/16036.png deleted file mode 100644 index 64f811cac8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16037.png b/front/public/images/small/gregtech/gt.blockores/16037.png deleted file mode 100644 index a8adf66c25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16039.png b/front/public/images/small/gregtech/gt.blockores/16039.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16043.png b/front/public/images/small/gregtech/gt.blockores/16043.png deleted file mode 100644 index 95c87f7db9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16044.png b/front/public/images/small/gregtech/gt.blockores/16044.png deleted file mode 100644 index 1bf4538d03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16045.png b/front/public/images/small/gregtech/gt.blockores/16045.png deleted file mode 100644 index 39194b9fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16047.png b/front/public/images/small/gregtech/gt.blockores/16047.png deleted file mode 100644 index c5395fcb4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16048.png b/front/public/images/small/gregtech/gt.blockores/16048.png deleted file mode 100644 index b1213a7799..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16052.png b/front/public/images/small/gregtech/gt.blockores/16052.png deleted file mode 100644 index 805612e620..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16054.png b/front/public/images/small/gregtech/gt.blockores/16054.png deleted file mode 100644 index a8adf66c25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16055.png b/front/public/images/small/gregtech/gt.blockores/16055.png deleted file mode 100644 index 7055aa33d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16056.png b/front/public/images/small/gregtech/gt.blockores/16056.png deleted file mode 100644 index 872fbc5728..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16057.png b/front/public/images/small/gregtech/gt.blockores/16057.png deleted file mode 100644 index 3e0f4c416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16058.png b/front/public/images/small/gregtech/gt.blockores/16058.png deleted file mode 100644 index 1e55c9dc08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16059.png b/front/public/images/small/gregtech/gt.blockores/16059.png deleted file mode 100644 index b4ca89f761..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16062.png b/front/public/images/small/gregtech/gt.blockores/16062.png deleted file mode 100644 index 78fc6dc847..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16063.png b/front/public/images/small/gregtech/gt.blockores/16063.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16064.png b/front/public/images/small/gregtech/gt.blockores/16064.png deleted file mode 100644 index 501a8e02b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16065.png b/front/public/images/small/gregtech/gt.blockores/16065.png deleted file mode 100644 index 6b3e6c241b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16066.png b/front/public/images/small/gregtech/gt.blockores/16066.png deleted file mode 100644 index db850a7453..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16067.png b/front/public/images/small/gregtech/gt.blockores/16067.png deleted file mode 100644 index dabd2087c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16068.png b/front/public/images/small/gregtech/gt.blockores/16068.png deleted file mode 100644 index a362394631..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16069.png b/front/public/images/small/gregtech/gt.blockores/16069.png deleted file mode 100644 index ae85ed212b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1607.png b/front/public/images/small/gregtech/gt.blockores/1607.png deleted file mode 100644 index a0f71f1c26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16070.png b/front/public/images/small/gregtech/gt.blockores/16070.png deleted file mode 100644 index ce0f0f7419..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16071.png b/front/public/images/small/gregtech/gt.blockores/16071.png deleted file mode 100644 index 6591875b0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16072.png b/front/public/images/small/gregtech/gt.blockores/16072.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16073.png b/front/public/images/small/gregtech/gt.blockores/16073.png deleted file mode 100644 index 29832cc2ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16074.png b/front/public/images/small/gregtech/gt.blockores/16074.png deleted file mode 100644 index e90aaffdb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16075.png b/front/public/images/small/gregtech/gt.blockores/16075.png deleted file mode 100644 index 2bcf3e67b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16076.png b/front/public/images/small/gregtech/gt.blockores/16076.png deleted file mode 100644 index a2b4346f76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16077.png b/front/public/images/small/gregtech/gt.blockores/16077.png deleted file mode 100644 index a207a69330..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16078.png b/front/public/images/small/gregtech/gt.blockores/16078.png deleted file mode 100644 index 46f78f0e8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16080.png b/front/public/images/small/gregtech/gt.blockores/16080.png deleted file mode 100644 index bba8786b31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16081.png b/front/public/images/small/gregtech/gt.blockores/16081.png deleted file mode 100644 index 3558738d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16083.png b/front/public/images/small/gregtech/gt.blockores/16083.png deleted file mode 100644 index aadbc6d734..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16084.png b/front/public/images/small/gregtech/gt.blockores/16084.png deleted file mode 100644 index 98ddd30b81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16085.png b/front/public/images/small/gregtech/gt.blockores/16085.png deleted file mode 100644 index ea7329de06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16086.png b/front/public/images/small/gregtech/gt.blockores/16086.png deleted file mode 100644 index 4d6e418cbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16089.png b/front/public/images/small/gregtech/gt.blockores/16089.png deleted file mode 100644 index d8944de72e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16090.png b/front/public/images/small/gregtech/gt.blockores/16090.png deleted file mode 100644 index d45f347e86..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16096.png b/front/public/images/small/gregtech/gt.blockores/16096.png deleted file mode 100644 index 12aae3514e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16097.png b/front/public/images/small/gregtech/gt.blockores/16097.png deleted file mode 100644 index 39650c3cc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16098.png b/front/public/images/small/gregtech/gt.blockores/16098.png deleted file mode 100644 index 0f8ac3f38e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16100.png b/front/public/images/small/gregtech/gt.blockores/16100.png deleted file mode 100644 index 5918fa9651..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16101.png b/front/public/images/small/gregtech/gt.blockores/16101.png deleted file mode 100644 index b1c69f64b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16103.png b/front/public/images/small/gregtech/gt.blockores/16103.png deleted file mode 100644 index 1bf4538d03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16110.png b/front/public/images/small/gregtech/gt.blockores/16110.png deleted file mode 100644 index ba77e6e334..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16129.png b/front/public/images/small/gregtech/gt.blockores/16129.png deleted file mode 100644 index 7ee1830427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16303.png b/front/public/images/small/gregtech/gt.blockores/16303.png deleted file mode 100644 index c4d71d8982..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16307.png b/front/public/images/small/gregtech/gt.blockores/16307.png deleted file mode 100644 index b35e0ee5e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16319.png b/front/public/images/small/gregtech/gt.blockores/16319.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16320.png b/front/public/images/small/gregtech/gt.blockores/16320.png deleted file mode 100644 index 0a6a6667a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16323.png b/front/public/images/small/gregtech/gt.blockores/16323.png deleted file mode 100644 index 9aa607ffef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16324.png b/front/public/images/small/gregtech/gt.blockores/16324.png deleted file mode 100644 index 3558738d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16326.png b/front/public/images/small/gregtech/gt.blockores/16326.png deleted file mode 100644 index afe83d1b72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16327.png b/front/public/images/small/gregtech/gt.blockores/16327.png deleted file mode 100644 index a02862f151..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16329.png b/front/public/images/small/gregtech/gt.blockores/16329.png deleted file mode 100644 index 54b002a6c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16331.png b/front/public/images/small/gregtech/gt.blockores/16331.png deleted file mode 100644 index ccfcee20a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16336.png b/front/public/images/small/gregtech/gt.blockores/16336.png deleted file mode 100644 index f42118ae67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16340.png b/front/public/images/small/gregtech/gt.blockores/16340.png deleted file mode 100644 index 0448f13ad2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16342.png b/front/public/images/small/gregtech/gt.blockores/16342.png deleted file mode 100644 index b95a2060ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16347.png b/front/public/images/small/gregtech/gt.blockores/16347.png deleted file mode 100644 index 049d5d50f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16368.png b/front/public/images/small/gregtech/gt.blockores/16368.png deleted file mode 100644 index 5e2d471a8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16375.png b/front/public/images/small/gregtech/gt.blockores/16375.png deleted file mode 100644 index 8e50ae17a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16382.png b/front/public/images/small/gregtech/gt.blockores/16382.png deleted file mode 100644 index b28c5a82b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16386.png b/front/public/images/small/gregtech/gt.blockores/16386.png deleted file mode 100644 index 71fd127df9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16387.png b/front/public/images/small/gregtech/gt.blockores/16387.png deleted file mode 100644 index 068efb52a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16388.png b/front/public/images/small/gregtech/gt.blockores/16388.png deleted file mode 100644 index 3558738d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16389.png b/front/public/images/small/gregtech/gt.blockores/16389.png deleted file mode 100644 index 458956c1bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16390.png b/front/public/images/small/gregtech/gt.blockores/16390.png deleted file mode 100644 index d93f280326..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16391.png b/front/public/images/small/gregtech/gt.blockores/16391.png deleted file mode 100644 index 4d7cb29913..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16392.png b/front/public/images/small/gregtech/gt.blockores/16392.png deleted file mode 100644 index 9da3413453..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16393.png b/front/public/images/small/gregtech/gt.blockores/16393.png deleted file mode 100644 index fe3751ab73..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16394.png b/front/public/images/small/gregtech/gt.blockores/16394.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16395.png b/front/public/images/small/gregtech/gt.blockores/16395.png deleted file mode 100644 index 3558738d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16398.png b/front/public/images/small/gregtech/gt.blockores/16398.png deleted file mode 100644 index c33df5ccb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16485.png b/front/public/images/small/gregtech/gt.blockores/16485.png deleted file mode 100644 index 14f33d5fe3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16488.png b/front/public/images/small/gregtech/gt.blockores/16488.png deleted file mode 100644 index 0f102455eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16489.png b/front/public/images/small/gregtech/gt.blockores/16489.png deleted file mode 100644 index 93a17088bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16500.png b/front/public/images/small/gregtech/gt.blockores/16500.png deleted file mode 100644 index 7cf586978d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16501.png b/front/public/images/small/gregtech/gt.blockores/16501.png deleted file mode 100644 index 90f30db9fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16502.png b/front/public/images/small/gregtech/gt.blockores/16502.png deleted file mode 100644 index 0637d459c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16503.png b/front/public/images/small/gregtech/gt.blockores/16503.png deleted file mode 100644 index 5dcfca573a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16504.png b/front/public/images/small/gregtech/gt.blockores/16504.png deleted file mode 100644 index 93a2922348..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16505.png b/front/public/images/small/gregtech/gt.blockores/16505.png deleted file mode 100644 index 84931177a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16506.png b/front/public/images/small/gregtech/gt.blockores/16506.png deleted file mode 100644 index 7ee1830427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16507.png b/front/public/images/small/gregtech/gt.blockores/16507.png deleted file mode 100644 index 7e1863707d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16508.png b/front/public/images/small/gregtech/gt.blockores/16508.png deleted file mode 100644 index c067a64cfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16509.png b/front/public/images/small/gregtech/gt.blockores/16509.png deleted file mode 100644 index d52691fd7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16510.png b/front/public/images/small/gregtech/gt.blockores/16510.png deleted file mode 100644 index 63ddea354a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16511.png b/front/public/images/small/gregtech/gt.blockores/16511.png deleted file mode 100644 index 2ef9a500e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16512.png b/front/public/images/small/gregtech/gt.blockores/16512.png deleted file mode 100644 index 0637d459c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16513.png b/front/public/images/small/gregtech/gt.blockores/16513.png deleted file mode 100644 index 63ddea354a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16514.png b/front/public/images/small/gregtech/gt.blockores/16514.png deleted file mode 100644 index 7e1863707d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16515.png b/front/public/images/small/gregtech/gt.blockores/16515.png deleted file mode 100644 index 76a313bb10..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16516.png b/front/public/images/small/gregtech/gt.blockores/16516.png deleted file mode 100644 index 6cbaca3666..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16517.png b/front/public/images/small/gregtech/gt.blockores/16517.png deleted file mode 100644 index ea4d68d2dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16518.png b/front/public/images/small/gregtech/gt.blockores/16518.png deleted file mode 100644 index 66df8d6c8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16519.png b/front/public/images/small/gregtech/gt.blockores/16519.png deleted file mode 100644 index 66df8d6c8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16520.png b/front/public/images/small/gregtech/gt.blockores/16520.png deleted file mode 100644 index 58cf1259ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16521.png b/front/public/images/small/gregtech/gt.blockores/16521.png deleted file mode 100644 index 3f3b93fbb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16522.png b/front/public/images/small/gregtech/gt.blockores/16522.png deleted file mode 100644 index 0ca671cc29..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16523.png b/front/public/images/small/gregtech/gt.blockores/16523.png deleted file mode 100644 index 8840b4f20a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16524.png b/front/public/images/small/gregtech/gt.blockores/16524.png deleted file mode 100644 index 87361d1de2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16525.png b/front/public/images/small/gregtech/gt.blockores/16525.png deleted file mode 100644 index dbdb86883d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16526.png b/front/public/images/small/gregtech/gt.blockores/16526.png deleted file mode 100644 index c99d611787..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16527.png b/front/public/images/small/gregtech/gt.blockores/16527.png deleted file mode 100644 index 2ef9a500e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16528.png b/front/public/images/small/gregtech/gt.blockores/16528.png deleted file mode 100644 index dcdd9b53f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16529.png b/front/public/images/small/gregtech/gt.blockores/16529.png deleted file mode 100644 index 9f8f88f002..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16530.png b/front/public/images/small/gregtech/gt.blockores/16530.png deleted file mode 100644 index fb9e9ff6cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16531.png b/front/public/images/small/gregtech/gt.blockores/16531.png deleted file mode 100644 index 1ea7a6c44b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16534.png b/front/public/images/small/gregtech/gt.blockores/16534.png deleted file mode 100644 index 668957ac71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16535.png b/front/public/images/small/gregtech/gt.blockores/16535.png deleted file mode 100644 index 641db9d2e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16537.png b/front/public/images/small/gregtech/gt.blockores/16537.png deleted file mode 100644 index f55a9b3b85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16538.png b/front/public/images/small/gregtech/gt.blockores/16538.png deleted file mode 100644 index d2f2654687..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16540.png b/front/public/images/small/gregtech/gt.blockores/16540.png deleted file mode 100644 index 3f3b93fbb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16541.png b/front/public/images/small/gregtech/gt.blockores/16541.png deleted file mode 100644 index 971a97a863..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16542.png b/front/public/images/small/gregtech/gt.blockores/16542.png deleted file mode 100644 index 91f1b19733..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16543.png b/front/public/images/small/gregtech/gt.blockores/16543.png deleted file mode 100644 index a35a080d77..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16544.png b/front/public/images/small/gregtech/gt.blockores/16544.png deleted file mode 100644 index 44e2d11d02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16545.png b/front/public/images/small/gregtech/gt.blockores/16545.png deleted file mode 100644 index 9ef9c6eb1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16548.png b/front/public/images/small/gregtech/gt.blockores/16548.png deleted file mode 100644 index 0cb81dedf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16549.png b/front/public/images/small/gregtech/gt.blockores/16549.png deleted file mode 100644 index ee7c6f5182..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16607.png b/front/public/images/small/gregtech/gt.blockores/16607.png deleted file mode 100644 index f720d14590..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16699.png b/front/public/images/small/gregtech/gt.blockores/16699.png deleted file mode 100644 index 7d0aedd28a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16770.png b/front/public/images/small/gregtech/gt.blockores/16770.png deleted file mode 100644 index e01f72341f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16797.png b/front/public/images/small/gregtech/gt.blockores/16797.png deleted file mode 100644 index 3e0f4c416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16810.png b/front/public/images/small/gregtech/gt.blockores/16810.png deleted file mode 100644 index c79b9d9353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16812.png b/front/public/images/small/gregtech/gt.blockores/16812.png deleted file mode 100644 index 1ba47edc4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16817.png b/front/public/images/small/gregtech/gt.blockores/16817.png deleted file mode 100644 index 7ee1830427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16820.png b/front/public/images/small/gregtech/gt.blockores/16820.png deleted file mode 100644 index e106a26aa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16821.png b/front/public/images/small/gregtech/gt.blockores/16821.png deleted file mode 100644 index 4a73599978..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16822.png b/front/public/images/small/gregtech/gt.blockores/16822.png deleted file mode 100644 index d66be34353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16823.png b/front/public/images/small/gregtech/gt.blockores/16823.png deleted file mode 100644 index 2f26c23cf2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16824.png b/front/public/images/small/gregtech/gt.blockores/16824.png deleted file mode 100644 index 3e0f4c416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16825.png b/front/public/images/small/gregtech/gt.blockores/16825.png deleted file mode 100644 index c6f862f2ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16826.png b/front/public/images/small/gregtech/gt.blockores/16826.png deleted file mode 100644 index da1105b0ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16827.png b/front/public/images/small/gregtech/gt.blockores/16827.png deleted file mode 100644 index 0ca5ac6f05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16828.png b/front/public/images/small/gregtech/gt.blockores/16828.png deleted file mode 100644 index ea7329de06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16829.png b/front/public/images/small/gregtech/gt.blockores/16829.png deleted file mode 100644 index b8296904d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16830.png b/front/public/images/small/gregtech/gt.blockores/16830.png deleted file mode 100644 index e3b6de70f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16831.png b/front/public/images/small/gregtech/gt.blockores/16831.png deleted file mode 100644 index d66be34353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16833.png b/front/public/images/small/gregtech/gt.blockores/16833.png deleted file mode 100644 index 668957ac71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16834.png b/front/public/images/small/gregtech/gt.blockores/16834.png deleted file mode 100644 index e75b6cc938..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16835.png b/front/public/images/small/gregtech/gt.blockores/16835.png deleted file mode 100644 index 2059c7ec9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16836.png b/front/public/images/small/gregtech/gt.blockores/16836.png deleted file mode 100644 index 74927a6ace..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16838.png b/front/public/images/small/gregtech/gt.blockores/16838.png deleted file mode 100644 index 0637d459c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16839.png b/front/public/images/small/gregtech/gt.blockores/16839.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16840.png b/front/public/images/small/gregtech/gt.blockores/16840.png deleted file mode 100644 index cd739e9a0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16841.png b/front/public/images/small/gregtech/gt.blockores/16841.png deleted file mode 100644 index c6c1291a5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16842.png b/front/public/images/small/gregtech/gt.blockores/16842.png deleted file mode 100644 index 6888c9562d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16855.png b/front/public/images/small/gregtech/gt.blockores/16855.png deleted file mode 100644 index 9e38f57a63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16856.png b/front/public/images/small/gregtech/gt.blockores/16856.png deleted file mode 100644 index 862cd4e57e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16861.png b/front/public/images/small/gregtech/gt.blockores/16861.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16865.png b/front/public/images/small/gregtech/gt.blockores/16865.png deleted file mode 100644 index 805612e620..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16868.png b/front/public/images/small/gregtech/gt.blockores/16868.png deleted file mode 100644 index 0058dd0dfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16870.png b/front/public/images/small/gregtech/gt.blockores/16870.png deleted file mode 100644 index 113644ff99..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16871.png b/front/public/images/small/gregtech/gt.blockores/16871.png deleted file mode 100644 index 460b460fb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16873.png b/front/public/images/small/gregtech/gt.blockores/16873.png deleted file mode 100644 index 584bcbc8ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16877.png b/front/public/images/small/gregtech/gt.blockores/16877.png deleted file mode 100644 index efbbd8add3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16878.png b/front/public/images/small/gregtech/gt.blockores/16878.png deleted file mode 100644 index 73a4d3b1ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16882.png b/front/public/images/small/gregtech/gt.blockores/16882.png deleted file mode 100644 index 7e1863707d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16883.png b/front/public/images/small/gregtech/gt.blockores/16883.png deleted file mode 100644 index 668957ac71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16884.png b/front/public/images/small/gregtech/gt.blockores/16884.png deleted file mode 100644 index 1e20eff2f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16894.png b/front/public/images/small/gregtech/gt.blockores/16894.png deleted file mode 100644 index 668957ac71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16900.png b/front/public/images/small/gregtech/gt.blockores/16900.png deleted file mode 100644 index d4d7ecada7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16901.png b/front/public/images/small/gregtech/gt.blockores/16901.png deleted file mode 100644 index 4241c16ba4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16902.png b/front/public/images/small/gregtech/gt.blockores/16902.png deleted file mode 100644 index 4aa16bc17a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16903.png b/front/public/images/small/gregtech/gt.blockores/16903.png deleted file mode 100644 index b551237cd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16904.png b/front/public/images/small/gregtech/gt.blockores/16904.png deleted file mode 100644 index a5224f926e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16905.png b/front/public/images/small/gregtech/gt.blockores/16905.png deleted file mode 100644 index 1d4f62091e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16906.png b/front/public/images/small/gregtech/gt.blockores/16906.png deleted file mode 100644 index b8189aeb7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16907.png b/front/public/images/small/gregtech/gt.blockores/16907.png deleted file mode 100644 index 8627c21e71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16908.png b/front/public/images/small/gregtech/gt.blockores/16908.png deleted file mode 100644 index 335b5756b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16909.png b/front/public/images/small/gregtech/gt.blockores/16909.png deleted file mode 100644 index db2c0f4518..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16910.png b/front/public/images/small/gregtech/gt.blockores/16910.png deleted file mode 100644 index 38009be837..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16911.png b/front/public/images/small/gregtech/gt.blockores/16911.png deleted file mode 100644 index 3647690e81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16912.png b/front/public/images/small/gregtech/gt.blockores/16912.png deleted file mode 100644 index ae1a23ed13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16913.png b/front/public/images/small/gregtech/gt.blockores/16913.png deleted file mode 100644 index 8eeadb7df1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16914.png b/front/public/images/small/gregtech/gt.blockores/16914.png deleted file mode 100644 index 23dfc666dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16915.png b/front/public/images/small/gregtech/gt.blockores/16915.png deleted file mode 100644 index 280b15ece6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16916.png b/front/public/images/small/gregtech/gt.blockores/16916.png deleted file mode 100644 index 534ea69e16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16917.png b/front/public/images/small/gregtech/gt.blockores/16917.png deleted file mode 100644 index f9bb3f9d39..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16918.png b/front/public/images/small/gregtech/gt.blockores/16918.png deleted file mode 100644 index 446626e1b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16919.png b/front/public/images/small/gregtech/gt.blockores/16919.png deleted file mode 100644 index edbf8d526a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16920.png b/front/public/images/small/gregtech/gt.blockores/16920.png deleted file mode 100644 index d80d4ea377..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16921.png b/front/public/images/small/gregtech/gt.blockores/16921.png deleted file mode 100644 index 17ff02127f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16922.png b/front/public/images/small/gregtech/gt.blockores/16922.png deleted file mode 100644 index 92dece9e10..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16923.png b/front/public/images/small/gregtech/gt.blockores/16923.png deleted file mode 100644 index 041b0fed50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16924.png b/front/public/images/small/gregtech/gt.blockores/16924.png deleted file mode 100644 index 80a70dbf13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16925.png b/front/public/images/small/gregtech/gt.blockores/16925.png deleted file mode 100644 index bcb0ef4ae3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16926.png b/front/public/images/small/gregtech/gt.blockores/16926.png deleted file mode 100644 index 4270ad6f8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16927.png b/front/public/images/small/gregtech/gt.blockores/16927.png deleted file mode 100644 index eb0e52fabe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16928.png b/front/public/images/small/gregtech/gt.blockores/16928.png deleted file mode 100644 index afe6e97d5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16929.png b/front/public/images/small/gregtech/gt.blockores/16929.png deleted file mode 100644 index 5ca48392d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16930.png b/front/public/images/small/gregtech/gt.blockores/16930.png deleted file mode 100644 index d66be34353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16931.png b/front/public/images/small/gregtech/gt.blockores/16931.png deleted file mode 100644 index f362d1291b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16932.png b/front/public/images/small/gregtech/gt.blockores/16932.png deleted file mode 100644 index e78d31fda8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16933.png b/front/public/images/small/gregtech/gt.blockores/16933.png deleted file mode 100644 index 9dc426242d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16934.png b/front/public/images/small/gregtech/gt.blockores/16934.png deleted file mode 100644 index eba6892071..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16935.png b/front/public/images/small/gregtech/gt.blockores/16935.png deleted file mode 100644 index 036c7ee864..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16936.png b/front/public/images/small/gregtech/gt.blockores/16936.png deleted file mode 100644 index a84384d48d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16937.png b/front/public/images/small/gregtech/gt.blockores/16937.png deleted file mode 100644 index 3e0f4c416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16938.png b/front/public/images/small/gregtech/gt.blockores/16938.png deleted file mode 100644 index d66be34353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16939.png b/front/public/images/small/gregtech/gt.blockores/16939.png deleted file mode 100644 index bef5dbd000..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16941.png b/front/public/images/small/gregtech/gt.blockores/16941.png deleted file mode 100644 index 7ee1830427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16942.png b/front/public/images/small/gregtech/gt.blockores/16942.png deleted file mode 100644 index b02768f84f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16943.png b/front/public/images/small/gregtech/gt.blockores/16943.png deleted file mode 100644 index ba4c8713ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16944.png b/front/public/images/small/gregtech/gt.blockores/16944.png deleted file mode 100644 index 66e9645698..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16945.png b/front/public/images/small/gregtech/gt.blockores/16945.png deleted file mode 100644 index 641db9d2e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16946.png b/front/public/images/small/gregtech/gt.blockores/16946.png deleted file mode 100644 index 74927a6ace..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16948.png b/front/public/images/small/gregtech/gt.blockores/16948.png deleted file mode 100644 index 5ad9d1404f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16949.png b/front/public/images/small/gregtech/gt.blockores/16949.png deleted file mode 100644 index 9dc426242d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16951.png b/front/public/images/small/gregtech/gt.blockores/16951.png deleted file mode 100644 index 05972438e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16952.png b/front/public/images/small/gregtech/gt.blockores/16952.png deleted file mode 100644 index 16efefe79a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16956.png b/front/public/images/small/gregtech/gt.blockores/16956.png deleted file mode 100644 index ce29294d34..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16966.png b/front/public/images/small/gregtech/gt.blockores/16966.png deleted file mode 100644 index 4c5a109498..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16969.png b/front/public/images/small/gregtech/gt.blockores/16969.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16971.png b/front/public/images/small/gregtech/gt.blockores/16971.png deleted file mode 100644 index d8a4388200..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16975.png b/front/public/images/small/gregtech/gt.blockores/16975.png deleted file mode 100644 index 37d79fb99c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16976.png b/front/public/images/small/gregtech/gt.blockores/16976.png deleted file mode 100644 index c6dd6d1528..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16978.png b/front/public/images/small/gregtech/gt.blockores/16978.png deleted file mode 100644 index a53b05f0e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16982.png b/front/public/images/small/gregtech/gt.blockores/16982.png deleted file mode 100644 index 3558738d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/16984.png b/front/public/images/small/gregtech/gt.blockores/16984.png deleted file mode 100644 index e86b9e0ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/16984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1699.png b/front/public/images/small/gregtech/gt.blockores/1699.png deleted file mode 100644 index 3e9e542435..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17006.png b/front/public/images/small/gregtech/gt.blockores/17006.png deleted file mode 100644 index 567cc95e0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17008.png b/front/public/images/small/gregtech/gt.blockores/17008.png deleted file mode 100644 index 55d89b98bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17018.png b/front/public/images/small/gregtech/gt.blockores/17018.png deleted file mode 100644 index 790a53b8e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17019.png b/front/public/images/small/gregtech/gt.blockores/17019.png deleted file mode 100644 index 7ff17030f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17020.png b/front/public/images/small/gregtech/gt.blockores/17020.png deleted file mode 100644 index 38870f7dbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17022.png b/front/public/images/small/gregtech/gt.blockores/17022.png deleted file mode 100644 index 71d910b25f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17027.png b/front/public/images/small/gregtech/gt.blockores/17027.png deleted file mode 100644 index b1f1cbb315..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17028.png b/front/public/images/small/gregtech/gt.blockores/17028.png deleted file mode 100644 index d88b861e1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17029.png b/front/public/images/small/gregtech/gt.blockores/17029.png deleted file mode 100644 index cee1c90756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17030.png b/front/public/images/small/gregtech/gt.blockores/17030.png deleted file mode 100644 index 5dd032d904..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17031.png b/front/public/images/small/gregtech/gt.blockores/17031.png deleted file mode 100644 index 8083df112f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17032.png b/front/public/images/small/gregtech/gt.blockores/17032.png deleted file mode 100644 index 1c211a4777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17033.png b/front/public/images/small/gregtech/gt.blockores/17033.png deleted file mode 100644 index c5c8e9fb43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17034.png b/front/public/images/small/gregtech/gt.blockores/17034.png deleted file mode 100644 index ed3822e0b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17035.png b/front/public/images/small/gregtech/gt.blockores/17035.png deleted file mode 100644 index 120a2dd382..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17036.png b/front/public/images/small/gregtech/gt.blockores/17036.png deleted file mode 100644 index 2edfcd0d32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17037.png b/front/public/images/small/gregtech/gt.blockores/17037.png deleted file mode 100644 index 043f7a7687..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17039.png b/front/public/images/small/gregtech/gt.blockores/17039.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17043.png b/front/public/images/small/gregtech/gt.blockores/17043.png deleted file mode 100644 index f86182a99e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17044.png b/front/public/images/small/gregtech/gt.blockores/17044.png deleted file mode 100644 index 1c211a4777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17045.png b/front/public/images/small/gregtech/gt.blockores/17045.png deleted file mode 100644 index a59b2b8d15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17047.png b/front/public/images/small/gregtech/gt.blockores/17047.png deleted file mode 100644 index a2331df55c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17048.png b/front/public/images/small/gregtech/gt.blockores/17048.png deleted file mode 100644 index 9018fbbeb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17052.png b/front/public/images/small/gregtech/gt.blockores/17052.png deleted file mode 100644 index d1b23a2184..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17054.png b/front/public/images/small/gregtech/gt.blockores/17054.png deleted file mode 100644 index 043f7a7687..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17055.png b/front/public/images/small/gregtech/gt.blockores/17055.png deleted file mode 100644 index 0c49a9dfe6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17056.png b/front/public/images/small/gregtech/gt.blockores/17056.png deleted file mode 100644 index c9db26165f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17057.png b/front/public/images/small/gregtech/gt.blockores/17057.png deleted file mode 100644 index fe871cdf52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17058.png b/front/public/images/small/gregtech/gt.blockores/17058.png deleted file mode 100644 index d3fb6d15ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17059.png b/front/public/images/small/gregtech/gt.blockores/17059.png deleted file mode 100644 index 122cd9b935..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17062.png b/front/public/images/small/gregtech/gt.blockores/17062.png deleted file mode 100644 index b2cf2a0db9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17063.png b/front/public/images/small/gregtech/gt.blockores/17063.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17064.png b/front/public/images/small/gregtech/gt.blockores/17064.png deleted file mode 100644 index c7b73d48cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17065.png b/front/public/images/small/gregtech/gt.blockores/17065.png deleted file mode 100644 index 02a97f1349..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17066.png b/front/public/images/small/gregtech/gt.blockores/17066.png deleted file mode 100644 index 0326e8800c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17067.png b/front/public/images/small/gregtech/gt.blockores/17067.png deleted file mode 100644 index 4a2cbdd964..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17068.png b/front/public/images/small/gregtech/gt.blockores/17068.png deleted file mode 100644 index fc5ea6c727..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17069.png b/front/public/images/small/gregtech/gt.blockores/17069.png deleted file mode 100644 index 6b5496ae24..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17070.png b/front/public/images/small/gregtech/gt.blockores/17070.png deleted file mode 100644 index eddb051b65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17071.png b/front/public/images/small/gregtech/gt.blockores/17071.png deleted file mode 100644 index 3f929ec1e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17072.png b/front/public/images/small/gregtech/gt.blockores/17072.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17073.png b/front/public/images/small/gregtech/gt.blockores/17073.png deleted file mode 100644 index 75fe79c1c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17074.png b/front/public/images/small/gregtech/gt.blockores/17074.png deleted file mode 100644 index 66e6c20232..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17075.png b/front/public/images/small/gregtech/gt.blockores/17075.png deleted file mode 100644 index d4ee4657bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17076.png b/front/public/images/small/gregtech/gt.blockores/17076.png deleted file mode 100644 index b6f983223e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17077.png b/front/public/images/small/gregtech/gt.blockores/17077.png deleted file mode 100644 index 6390f7e86e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17078.png b/front/public/images/small/gregtech/gt.blockores/17078.png deleted file mode 100644 index b9b26df80e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17080.png b/front/public/images/small/gregtech/gt.blockores/17080.png deleted file mode 100644 index baa6f65303..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17081.png b/front/public/images/small/gregtech/gt.blockores/17081.png deleted file mode 100644 index cee1c90756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17083.png b/front/public/images/small/gregtech/gt.blockores/17083.png deleted file mode 100644 index 8ad6d0cf74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17084.png b/front/public/images/small/gregtech/gt.blockores/17084.png deleted file mode 100644 index be688a7a2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17085.png b/front/public/images/small/gregtech/gt.blockores/17085.png deleted file mode 100644 index 9fe6e21830..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17086.png b/front/public/images/small/gregtech/gt.blockores/17086.png deleted file mode 100644 index 43a0ca59d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17089.png b/front/public/images/small/gregtech/gt.blockores/17089.png deleted file mode 100644 index 838df4176e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17090.png b/front/public/images/small/gregtech/gt.blockores/17090.png deleted file mode 100644 index ac42c2e110..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17096.png b/front/public/images/small/gregtech/gt.blockores/17096.png deleted file mode 100644 index 9b9c0ca276..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17097.png b/front/public/images/small/gregtech/gt.blockores/17097.png deleted file mode 100644 index f0f6ea6ac7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17098.png b/front/public/images/small/gregtech/gt.blockores/17098.png deleted file mode 100644 index d680b3e640..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17100.png b/front/public/images/small/gregtech/gt.blockores/17100.png deleted file mode 100644 index 88835553f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17101.png b/front/public/images/small/gregtech/gt.blockores/17101.png deleted file mode 100644 index af36617c57..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17103.png b/front/public/images/small/gregtech/gt.blockores/17103.png deleted file mode 100644 index 1c211a4777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17110.png b/front/public/images/small/gregtech/gt.blockores/17110.png deleted file mode 100644 index 9ceb68a4de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17129.png b/front/public/images/small/gregtech/gt.blockores/17129.png deleted file mode 100644 index 8083df112f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17303.png b/front/public/images/small/gregtech/gt.blockores/17303.png deleted file mode 100644 index 70b65ce9c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17307.png b/front/public/images/small/gregtech/gt.blockores/17307.png deleted file mode 100644 index 6c7b6c52e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17319.png b/front/public/images/small/gregtech/gt.blockores/17319.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17320.png b/front/public/images/small/gregtech/gt.blockores/17320.png deleted file mode 100644 index 59ff357389..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17323.png b/front/public/images/small/gregtech/gt.blockores/17323.png deleted file mode 100644 index ca294a627a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17324.png b/front/public/images/small/gregtech/gt.blockores/17324.png deleted file mode 100644 index cee1c90756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17326.png b/front/public/images/small/gregtech/gt.blockores/17326.png deleted file mode 100644 index db945984b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17327.png b/front/public/images/small/gregtech/gt.blockores/17327.png deleted file mode 100644 index fd65558fca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17329.png b/front/public/images/small/gregtech/gt.blockores/17329.png deleted file mode 100644 index e368ed3409..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17331.png b/front/public/images/small/gregtech/gt.blockores/17331.png deleted file mode 100644 index 3249fc9a91..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17336.png b/front/public/images/small/gregtech/gt.blockores/17336.png deleted file mode 100644 index 0c1c0250e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17340.png b/front/public/images/small/gregtech/gt.blockores/17340.png deleted file mode 100644 index 6a89aacf34..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17342.png b/front/public/images/small/gregtech/gt.blockores/17342.png deleted file mode 100644 index 55cc4090cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17347.png b/front/public/images/small/gregtech/gt.blockores/17347.png deleted file mode 100644 index 17f43b1148..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17368.png b/front/public/images/small/gregtech/gt.blockores/17368.png deleted file mode 100644 index 22300041ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17375.png b/front/public/images/small/gregtech/gt.blockores/17375.png deleted file mode 100644 index e38b10f941..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17382.png b/front/public/images/small/gregtech/gt.blockores/17382.png deleted file mode 100644 index 2b2a407f39..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17386.png b/front/public/images/small/gregtech/gt.blockores/17386.png deleted file mode 100644 index 266b03af31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17387.png b/front/public/images/small/gregtech/gt.blockores/17387.png deleted file mode 100644 index 0c3aad9736..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17388.png b/front/public/images/small/gregtech/gt.blockores/17388.png deleted file mode 100644 index cee1c90756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17389.png b/front/public/images/small/gregtech/gt.blockores/17389.png deleted file mode 100644 index b2ff6c5bcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17390.png b/front/public/images/small/gregtech/gt.blockores/17390.png deleted file mode 100644 index 3adc54bfc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17391.png b/front/public/images/small/gregtech/gt.blockores/17391.png deleted file mode 100644 index 3fb72fdd15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17392.png b/front/public/images/small/gregtech/gt.blockores/17392.png deleted file mode 100644 index 46e52c99aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17393.png b/front/public/images/small/gregtech/gt.blockores/17393.png deleted file mode 100644 index 2fab5c1485..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17394.png b/front/public/images/small/gregtech/gt.blockores/17394.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17395.png b/front/public/images/small/gregtech/gt.blockores/17395.png deleted file mode 100644 index cee1c90756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17398.png b/front/public/images/small/gregtech/gt.blockores/17398.png deleted file mode 100644 index 04c2c43ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17485.png b/front/public/images/small/gregtech/gt.blockores/17485.png deleted file mode 100644 index 5b7f08d22f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17488.png b/front/public/images/small/gregtech/gt.blockores/17488.png deleted file mode 100644 index b2f4b7981f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17489.png b/front/public/images/small/gregtech/gt.blockores/17489.png deleted file mode 100644 index 0a4d5d3217..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17500.png b/front/public/images/small/gregtech/gt.blockores/17500.png deleted file mode 100644 index 219e4664c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17501.png b/front/public/images/small/gregtech/gt.blockores/17501.png deleted file mode 100644 index 17f5b42c70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17502.png b/front/public/images/small/gregtech/gt.blockores/17502.png deleted file mode 100644 index 356f24a4a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17503.png b/front/public/images/small/gregtech/gt.blockores/17503.png deleted file mode 100644 index 6ba5154571..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17504.png b/front/public/images/small/gregtech/gt.blockores/17504.png deleted file mode 100644 index 3da63a98c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17505.png b/front/public/images/small/gregtech/gt.blockores/17505.png deleted file mode 100644 index 05b2251fd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17506.png b/front/public/images/small/gregtech/gt.blockores/17506.png deleted file mode 100644 index 8083df112f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17507.png b/front/public/images/small/gregtech/gt.blockores/17507.png deleted file mode 100644 index 68982a6eb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17508.png b/front/public/images/small/gregtech/gt.blockores/17508.png deleted file mode 100644 index 4ac0ee883b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17509.png b/front/public/images/small/gregtech/gt.blockores/17509.png deleted file mode 100644 index d4a7865346..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17510.png b/front/public/images/small/gregtech/gt.blockores/17510.png deleted file mode 100644 index 2eb7878336..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17511.png b/front/public/images/small/gregtech/gt.blockores/17511.png deleted file mode 100644 index f33d0573cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17512.png b/front/public/images/small/gregtech/gt.blockores/17512.png deleted file mode 100644 index 356f24a4a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17513.png b/front/public/images/small/gregtech/gt.blockores/17513.png deleted file mode 100644 index 2eb7878336..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17514.png b/front/public/images/small/gregtech/gt.blockores/17514.png deleted file mode 100644 index 68982a6eb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17515.png b/front/public/images/small/gregtech/gt.blockores/17515.png deleted file mode 100644 index 6642a90043..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17516.png b/front/public/images/small/gregtech/gt.blockores/17516.png deleted file mode 100644 index 6ffeb45145..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17517.png b/front/public/images/small/gregtech/gt.blockores/17517.png deleted file mode 100644 index a29de9e57d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17518.png b/front/public/images/small/gregtech/gt.blockores/17518.png deleted file mode 100644 index 619f939129..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17519.png b/front/public/images/small/gregtech/gt.blockores/17519.png deleted file mode 100644 index 619f939129..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17520.png b/front/public/images/small/gregtech/gt.blockores/17520.png deleted file mode 100644 index 5fe9ddab41..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17521.png b/front/public/images/small/gregtech/gt.blockores/17521.png deleted file mode 100644 index 7d70d9cb02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17522.png b/front/public/images/small/gregtech/gt.blockores/17522.png deleted file mode 100644 index c7be0589e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17523.png b/front/public/images/small/gregtech/gt.blockores/17523.png deleted file mode 100644 index aaba2988a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17524.png b/front/public/images/small/gregtech/gt.blockores/17524.png deleted file mode 100644 index e0a32f8e3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17525.png b/front/public/images/small/gregtech/gt.blockores/17525.png deleted file mode 100644 index eb6f8a3643..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17526.png b/front/public/images/small/gregtech/gt.blockores/17526.png deleted file mode 100644 index 4728aad93c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17527.png b/front/public/images/small/gregtech/gt.blockores/17527.png deleted file mode 100644 index f33d0573cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17528.png b/front/public/images/small/gregtech/gt.blockores/17528.png deleted file mode 100644 index 0868396276..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17529.png b/front/public/images/small/gregtech/gt.blockores/17529.png deleted file mode 100644 index ffae024bbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17530.png b/front/public/images/small/gregtech/gt.blockores/17530.png deleted file mode 100644 index e44a37b95e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17531.png b/front/public/images/small/gregtech/gt.blockores/17531.png deleted file mode 100644 index 790a53b8e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17534.png b/front/public/images/small/gregtech/gt.blockores/17534.png deleted file mode 100644 index f9b56df93d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17535.png b/front/public/images/small/gregtech/gt.blockores/17535.png deleted file mode 100644 index ea7d5a817f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17537.png b/front/public/images/small/gregtech/gt.blockores/17537.png deleted file mode 100644 index aa564f25e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17538.png b/front/public/images/small/gregtech/gt.blockores/17538.png deleted file mode 100644 index 78cab54371..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17540.png b/front/public/images/small/gregtech/gt.blockores/17540.png deleted file mode 100644 index 7d70d9cb02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17541.png b/front/public/images/small/gregtech/gt.blockores/17541.png deleted file mode 100644 index f38172e18b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17542.png b/front/public/images/small/gregtech/gt.blockores/17542.png deleted file mode 100644 index 0ab785d540..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17543.png b/front/public/images/small/gregtech/gt.blockores/17543.png deleted file mode 100644 index d0594b7dcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17544.png b/front/public/images/small/gregtech/gt.blockores/17544.png deleted file mode 100644 index 4d41213e6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17545.png b/front/public/images/small/gregtech/gt.blockores/17545.png deleted file mode 100644 index 8f743aba0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17548.png b/front/public/images/small/gregtech/gt.blockores/17548.png deleted file mode 100644 index 4c50e883d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17549.png b/front/public/images/small/gregtech/gt.blockores/17549.png deleted file mode 100644 index 7dbef3698e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17607.png b/front/public/images/small/gregtech/gt.blockores/17607.png deleted file mode 100644 index f5dd49d6ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17699.png b/front/public/images/small/gregtech/gt.blockores/17699.png deleted file mode 100644 index 6311ce7cb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1770.png b/front/public/images/small/gregtech/gt.blockores/1770.png deleted file mode 100644 index 5f9540728a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17770.png b/front/public/images/small/gregtech/gt.blockores/17770.png deleted file mode 100644 index 2bcbbbec9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17797.png b/front/public/images/small/gregtech/gt.blockores/17797.png deleted file mode 100644 index fe871cdf52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17810.png b/front/public/images/small/gregtech/gt.blockores/17810.png deleted file mode 100644 index 2307c5b3dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17812.png b/front/public/images/small/gregtech/gt.blockores/17812.png deleted file mode 100644 index e085f6df9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17817.png b/front/public/images/small/gregtech/gt.blockores/17817.png deleted file mode 100644 index 8083df112f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17820.png b/front/public/images/small/gregtech/gt.blockores/17820.png deleted file mode 100644 index 1316566e65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17821.png b/front/public/images/small/gregtech/gt.blockores/17821.png deleted file mode 100644 index d034badc5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17822.png b/front/public/images/small/gregtech/gt.blockores/17822.png deleted file mode 100644 index c595be56ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17823.png b/front/public/images/small/gregtech/gt.blockores/17823.png deleted file mode 100644 index 89def5d5ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17824.png b/front/public/images/small/gregtech/gt.blockores/17824.png deleted file mode 100644 index fe871cdf52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17825.png b/front/public/images/small/gregtech/gt.blockores/17825.png deleted file mode 100644 index eadecaf0d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17826.png b/front/public/images/small/gregtech/gt.blockores/17826.png deleted file mode 100644 index e0fd6c1cdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17827.png b/front/public/images/small/gregtech/gt.blockores/17827.png deleted file mode 100644 index c5c8e9fb43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17828.png b/front/public/images/small/gregtech/gt.blockores/17828.png deleted file mode 100644 index 9fe6e21830..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17829.png b/front/public/images/small/gregtech/gt.blockores/17829.png deleted file mode 100644 index fffae536b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17830.png b/front/public/images/small/gregtech/gt.blockores/17830.png deleted file mode 100644 index 7ded20a697..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17831.png b/front/public/images/small/gregtech/gt.blockores/17831.png deleted file mode 100644 index c595be56ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17833.png b/front/public/images/small/gregtech/gt.blockores/17833.png deleted file mode 100644 index f9b56df93d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17834.png b/front/public/images/small/gregtech/gt.blockores/17834.png deleted file mode 100644 index 40bcb5ddd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17835.png b/front/public/images/small/gregtech/gt.blockores/17835.png deleted file mode 100644 index 5cd4521a06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17836.png b/front/public/images/small/gregtech/gt.blockores/17836.png deleted file mode 100644 index 91580e754a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17838.png b/front/public/images/small/gregtech/gt.blockores/17838.png deleted file mode 100644 index 356f24a4a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17839.png b/front/public/images/small/gregtech/gt.blockores/17839.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17840.png b/front/public/images/small/gregtech/gt.blockores/17840.png deleted file mode 100644 index ba7182e7c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17841.png b/front/public/images/small/gregtech/gt.blockores/17841.png deleted file mode 100644 index 3cb14699b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17842.png b/front/public/images/small/gregtech/gt.blockores/17842.png deleted file mode 100644 index 4f5bea4aa7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17855.png b/front/public/images/small/gregtech/gt.blockores/17855.png deleted file mode 100644 index e1c346a36c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17856.png b/front/public/images/small/gregtech/gt.blockores/17856.png deleted file mode 100644 index b410da90bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17861.png b/front/public/images/small/gregtech/gt.blockores/17861.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17865.png b/front/public/images/small/gregtech/gt.blockores/17865.png deleted file mode 100644 index d1b23a2184..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17868.png b/front/public/images/small/gregtech/gt.blockores/17868.png deleted file mode 100644 index b336d607a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17870.png b/front/public/images/small/gregtech/gt.blockores/17870.png deleted file mode 100644 index f1ac9ccbee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17871.png b/front/public/images/small/gregtech/gt.blockores/17871.png deleted file mode 100644 index 16bb2c9fbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17873.png b/front/public/images/small/gregtech/gt.blockores/17873.png deleted file mode 100644 index 78db9851b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17877.png b/front/public/images/small/gregtech/gt.blockores/17877.png deleted file mode 100644 index 6b32fdacd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17878.png b/front/public/images/small/gregtech/gt.blockores/17878.png deleted file mode 100644 index f3cd665ec2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17882.png b/front/public/images/small/gregtech/gt.blockores/17882.png deleted file mode 100644 index 68982a6eb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17883.png b/front/public/images/small/gregtech/gt.blockores/17883.png deleted file mode 100644 index f9b56df93d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17884.png b/front/public/images/small/gregtech/gt.blockores/17884.png deleted file mode 100644 index ad202405bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17894.png b/front/public/images/small/gregtech/gt.blockores/17894.png deleted file mode 100644 index f9b56df93d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17900.png b/front/public/images/small/gregtech/gt.blockores/17900.png deleted file mode 100644 index dc81b7b917..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17901.png b/front/public/images/small/gregtech/gt.blockores/17901.png deleted file mode 100644 index 2ae10efe27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17902.png b/front/public/images/small/gregtech/gt.blockores/17902.png deleted file mode 100644 index c9c7931dae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17903.png b/front/public/images/small/gregtech/gt.blockores/17903.png deleted file mode 100644 index 9dcdfcf9aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17904.png b/front/public/images/small/gregtech/gt.blockores/17904.png deleted file mode 100644 index b7ff4db70f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17905.png b/front/public/images/small/gregtech/gt.blockores/17905.png deleted file mode 100644 index d8ba481c22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17906.png b/front/public/images/small/gregtech/gt.blockores/17906.png deleted file mode 100644 index d76346bc78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17907.png b/front/public/images/small/gregtech/gt.blockores/17907.png deleted file mode 100644 index f9f874ccfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17908.png b/front/public/images/small/gregtech/gt.blockores/17908.png deleted file mode 100644 index 3ed4da0e29..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17909.png b/front/public/images/small/gregtech/gt.blockores/17909.png deleted file mode 100644 index 77588475cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17910.png b/front/public/images/small/gregtech/gt.blockores/17910.png deleted file mode 100644 index ab5fb7886f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17911.png b/front/public/images/small/gregtech/gt.blockores/17911.png deleted file mode 100644 index d68faa1dc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17912.png b/front/public/images/small/gregtech/gt.blockores/17912.png deleted file mode 100644 index 0d09ea68b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17913.png b/front/public/images/small/gregtech/gt.blockores/17913.png deleted file mode 100644 index 3013046f13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17914.png b/front/public/images/small/gregtech/gt.blockores/17914.png deleted file mode 100644 index 031359a60a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17915.png b/front/public/images/small/gregtech/gt.blockores/17915.png deleted file mode 100644 index 9328ff809a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17916.png b/front/public/images/small/gregtech/gt.blockores/17916.png deleted file mode 100644 index 77dea89665..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17917.png b/front/public/images/small/gregtech/gt.blockores/17917.png deleted file mode 100644 index 9fc0eabbbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17918.png b/front/public/images/small/gregtech/gt.blockores/17918.png deleted file mode 100644 index 5712f74759..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17919.png b/front/public/images/small/gregtech/gt.blockores/17919.png deleted file mode 100644 index 7ff13d97ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17920.png b/front/public/images/small/gregtech/gt.blockores/17920.png deleted file mode 100644 index ce91860b93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17921.png b/front/public/images/small/gregtech/gt.blockores/17921.png deleted file mode 100644 index 1b5987f8d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17922.png b/front/public/images/small/gregtech/gt.blockores/17922.png deleted file mode 100644 index 9ef66e12e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17923.png b/front/public/images/small/gregtech/gt.blockores/17923.png deleted file mode 100644 index dea549705f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17924.png b/front/public/images/small/gregtech/gt.blockores/17924.png deleted file mode 100644 index e3ff362954..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17925.png b/front/public/images/small/gregtech/gt.blockores/17925.png deleted file mode 100644 index defee670f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17926.png b/front/public/images/small/gregtech/gt.blockores/17926.png deleted file mode 100644 index e58ff1a140..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17927.png b/front/public/images/small/gregtech/gt.blockores/17927.png deleted file mode 100644 index 211f3ade45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17928.png b/front/public/images/small/gregtech/gt.blockores/17928.png deleted file mode 100644 index 60d687f8e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17929.png b/front/public/images/small/gregtech/gt.blockores/17929.png deleted file mode 100644 index 720614f014..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17930.png b/front/public/images/small/gregtech/gt.blockores/17930.png deleted file mode 100644 index c595be56ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17931.png b/front/public/images/small/gregtech/gt.blockores/17931.png deleted file mode 100644 index 71d910b25f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17932.png b/front/public/images/small/gregtech/gt.blockores/17932.png deleted file mode 100644 index 00dde7a388..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17933.png b/front/public/images/small/gregtech/gt.blockores/17933.png deleted file mode 100644 index a6ee0e396d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17934.png b/front/public/images/small/gregtech/gt.blockores/17934.png deleted file mode 100644 index 040463feea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17935.png b/front/public/images/small/gregtech/gt.blockores/17935.png deleted file mode 100644 index 1d471e7cd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17936.png b/front/public/images/small/gregtech/gt.blockores/17936.png deleted file mode 100644 index 56309b577a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17937.png b/front/public/images/small/gregtech/gt.blockores/17937.png deleted file mode 100644 index fe871cdf52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17938.png b/front/public/images/small/gregtech/gt.blockores/17938.png deleted file mode 100644 index c595be56ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17939.png b/front/public/images/small/gregtech/gt.blockores/17939.png deleted file mode 100644 index 5a76be2653..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17941.png b/front/public/images/small/gregtech/gt.blockores/17941.png deleted file mode 100644 index 8083df112f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17942.png b/front/public/images/small/gregtech/gt.blockores/17942.png deleted file mode 100644 index 7aad6e5011..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17943.png b/front/public/images/small/gregtech/gt.blockores/17943.png deleted file mode 100644 index ac1d014c8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17944.png b/front/public/images/small/gregtech/gt.blockores/17944.png deleted file mode 100644 index cc54c23717..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17945.png b/front/public/images/small/gregtech/gt.blockores/17945.png deleted file mode 100644 index ea7d5a817f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17946.png b/front/public/images/small/gregtech/gt.blockores/17946.png deleted file mode 100644 index 91580e754a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17948.png b/front/public/images/small/gregtech/gt.blockores/17948.png deleted file mode 100644 index 5f22dc3e8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17949.png b/front/public/images/small/gregtech/gt.blockores/17949.png deleted file mode 100644 index a6ee0e396d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17951.png b/front/public/images/small/gregtech/gt.blockores/17951.png deleted file mode 100644 index 4085a51b8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17952.png b/front/public/images/small/gregtech/gt.blockores/17952.png deleted file mode 100644 index 8293076dbd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17956.png b/front/public/images/small/gregtech/gt.blockores/17956.png deleted file mode 100644 index a608f37ded..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17966.png b/front/public/images/small/gregtech/gt.blockores/17966.png deleted file mode 100644 index ccb8252cca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17969.png b/front/public/images/small/gregtech/gt.blockores/17969.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1797.png b/front/public/images/small/gregtech/gt.blockores/1797.png deleted file mode 100644 index 19581d383f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17971.png b/front/public/images/small/gregtech/gt.blockores/17971.png deleted file mode 100644 index 98ac9a3adb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17975.png b/front/public/images/small/gregtech/gt.blockores/17975.png deleted file mode 100644 index ed1336c419..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17976.png b/front/public/images/small/gregtech/gt.blockores/17976.png deleted file mode 100644 index 9d8e1e5c94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17978.png b/front/public/images/small/gregtech/gt.blockores/17978.png deleted file mode 100644 index 958eb61601..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17982.png b/front/public/images/small/gregtech/gt.blockores/17982.png deleted file mode 100644 index cee1c90756..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/17984.png b/front/public/images/small/gregtech/gt.blockores/17984.png deleted file mode 100644 index 54b52568b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/17984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18.png b/front/public/images/small/gregtech/gt.blockores/18.png deleted file mode 100644 index de723f03a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18006.png b/front/public/images/small/gregtech/gt.blockores/18006.png deleted file mode 100644 index 9dbc67224e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18008.png b/front/public/images/small/gregtech/gt.blockores/18008.png deleted file mode 100644 index 3c906daf7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18018.png b/front/public/images/small/gregtech/gt.blockores/18018.png deleted file mode 100644 index 216d63ba57..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18019.png b/front/public/images/small/gregtech/gt.blockores/18019.png deleted file mode 100644 index 31d622ddc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18020.png b/front/public/images/small/gregtech/gt.blockores/18020.png deleted file mode 100644 index 3ff6b35750..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18022.png b/front/public/images/small/gregtech/gt.blockores/18022.png deleted file mode 100644 index 5fa66e7309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18027.png b/front/public/images/small/gregtech/gt.blockores/18027.png deleted file mode 100644 index 7ba21e716b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18028.png b/front/public/images/small/gregtech/gt.blockores/18028.png deleted file mode 100644 index 5fb479ed8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18029.png b/front/public/images/small/gregtech/gt.blockores/18029.png deleted file mode 100644 index b1779bea44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18030.png b/front/public/images/small/gregtech/gt.blockores/18030.png deleted file mode 100644 index c7945d3453..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18031.png b/front/public/images/small/gregtech/gt.blockores/18031.png deleted file mode 100644 index b41268cec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18032.png b/front/public/images/small/gregtech/gt.blockores/18032.png deleted file mode 100644 index 1ae1de2473..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18033.png b/front/public/images/small/gregtech/gt.blockores/18033.png deleted file mode 100644 index 44d2ac37f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18034.png b/front/public/images/small/gregtech/gt.blockores/18034.png deleted file mode 100644 index d7bc47155b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18035.png b/front/public/images/small/gregtech/gt.blockores/18035.png deleted file mode 100644 index 957c429190..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18036.png b/front/public/images/small/gregtech/gt.blockores/18036.png deleted file mode 100644 index de7b7f327b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18037.png b/front/public/images/small/gregtech/gt.blockores/18037.png deleted file mode 100644 index 664b147e20..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18039.png b/front/public/images/small/gregtech/gt.blockores/18039.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18043.png b/front/public/images/small/gregtech/gt.blockores/18043.png deleted file mode 100644 index b6091ac817..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18044.png b/front/public/images/small/gregtech/gt.blockores/18044.png deleted file mode 100644 index 1ae1de2473..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18045.png b/front/public/images/small/gregtech/gt.blockores/18045.png deleted file mode 100644 index 38511c60d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18047.png b/front/public/images/small/gregtech/gt.blockores/18047.png deleted file mode 100644 index 6bcf29a241..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18048.png b/front/public/images/small/gregtech/gt.blockores/18048.png deleted file mode 100644 index f23299dae3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18052.png b/front/public/images/small/gregtech/gt.blockores/18052.png deleted file mode 100644 index fed3091290..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18054.png b/front/public/images/small/gregtech/gt.blockores/18054.png deleted file mode 100644 index 664b147e20..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18055.png b/front/public/images/small/gregtech/gt.blockores/18055.png deleted file mode 100644 index 2f03071c96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18056.png b/front/public/images/small/gregtech/gt.blockores/18056.png deleted file mode 100644 index bb0ee57f1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18057.png b/front/public/images/small/gregtech/gt.blockores/18057.png deleted file mode 100644 index afba784cd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18058.png b/front/public/images/small/gregtech/gt.blockores/18058.png deleted file mode 100644 index 872e8f7d19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18059.png b/front/public/images/small/gregtech/gt.blockores/18059.png deleted file mode 100644 index 143247ad6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18062.png b/front/public/images/small/gregtech/gt.blockores/18062.png deleted file mode 100644 index 4f33c1503d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18063.png b/front/public/images/small/gregtech/gt.blockores/18063.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18064.png b/front/public/images/small/gregtech/gt.blockores/18064.png deleted file mode 100644 index b09086ba47..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18065.png b/front/public/images/small/gregtech/gt.blockores/18065.png deleted file mode 100644 index 69d83e403b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18066.png b/front/public/images/small/gregtech/gt.blockores/18066.png deleted file mode 100644 index 1733b5b278..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18067.png b/front/public/images/small/gregtech/gt.blockores/18067.png deleted file mode 100644 index 669cd9524f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18068.png b/front/public/images/small/gregtech/gt.blockores/18068.png deleted file mode 100644 index c8472fbc93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18069.png b/front/public/images/small/gregtech/gt.blockores/18069.png deleted file mode 100644 index 5a141a8f2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18070.png b/front/public/images/small/gregtech/gt.blockores/18070.png deleted file mode 100644 index 455029b157..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18071.png b/front/public/images/small/gregtech/gt.blockores/18071.png deleted file mode 100644 index 28776b198c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18072.png b/front/public/images/small/gregtech/gt.blockores/18072.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18073.png b/front/public/images/small/gregtech/gt.blockores/18073.png deleted file mode 100644 index 6b5383cb13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18074.png b/front/public/images/small/gregtech/gt.blockores/18074.png deleted file mode 100644 index 8cbeed106a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18075.png b/front/public/images/small/gregtech/gt.blockores/18075.png deleted file mode 100644 index e3f09a46fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18076.png b/front/public/images/small/gregtech/gt.blockores/18076.png deleted file mode 100644 index 5a88d25d42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18077.png b/front/public/images/small/gregtech/gt.blockores/18077.png deleted file mode 100644 index 797a54f48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18078.png b/front/public/images/small/gregtech/gt.blockores/18078.png deleted file mode 100644 index e9534d0f13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18080.png b/front/public/images/small/gregtech/gt.blockores/18080.png deleted file mode 100644 index 9f81e1facd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18081.png b/front/public/images/small/gregtech/gt.blockores/18081.png deleted file mode 100644 index b1779bea44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18083.png b/front/public/images/small/gregtech/gt.blockores/18083.png deleted file mode 100644 index 1b6d6ef213..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18084.png b/front/public/images/small/gregtech/gt.blockores/18084.png deleted file mode 100644 index e763ec486b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18085.png b/front/public/images/small/gregtech/gt.blockores/18085.png deleted file mode 100644 index ed0160ec3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18086.png b/front/public/images/small/gregtech/gt.blockores/18086.png deleted file mode 100644 index 5e97797147..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18089.png b/front/public/images/small/gregtech/gt.blockores/18089.png deleted file mode 100644 index 446030cc9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18090.png b/front/public/images/small/gregtech/gt.blockores/18090.png deleted file mode 100644 index 2f0b154289..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18096.png b/front/public/images/small/gregtech/gt.blockores/18096.png deleted file mode 100644 index 6e837b0502..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18097.png b/front/public/images/small/gregtech/gt.blockores/18097.png deleted file mode 100644 index b344d85970..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18098.png b/front/public/images/small/gregtech/gt.blockores/18098.png deleted file mode 100644 index 751b721740..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1810.png b/front/public/images/small/gregtech/gt.blockores/1810.png deleted file mode 100644 index dc8a72b592..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18100.png b/front/public/images/small/gregtech/gt.blockores/18100.png deleted file mode 100644 index 5531d4287f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18101.png b/front/public/images/small/gregtech/gt.blockores/18101.png deleted file mode 100644 index 4ff38a5503..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18103.png b/front/public/images/small/gregtech/gt.blockores/18103.png deleted file mode 100644 index 1ae1de2473..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18110.png b/front/public/images/small/gregtech/gt.blockores/18110.png deleted file mode 100644 index 81103182dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1812.png b/front/public/images/small/gregtech/gt.blockores/1812.png deleted file mode 100644 index 16d393698e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18129.png b/front/public/images/small/gregtech/gt.blockores/18129.png deleted file mode 100644 index b41268cec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1817.png b/front/public/images/small/gregtech/gt.blockores/1817.png deleted file mode 100644 index 72977c5a67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1820.png b/front/public/images/small/gregtech/gt.blockores/1820.png deleted file mode 100644 index f32e0e54b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1821.png b/front/public/images/small/gregtech/gt.blockores/1821.png deleted file mode 100644 index 9e36188a38..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1822.png b/front/public/images/small/gregtech/gt.blockores/1822.png deleted file mode 100644 index 3370653cee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1823.png b/front/public/images/small/gregtech/gt.blockores/1823.png deleted file mode 100644 index 18c620e000..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1824.png b/front/public/images/small/gregtech/gt.blockores/1824.png deleted file mode 100644 index 19581d383f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1825.png b/front/public/images/small/gregtech/gt.blockores/1825.png deleted file mode 100644 index 8616f2ea7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1826.png b/front/public/images/small/gregtech/gt.blockores/1826.png deleted file mode 100644 index 1287dcc093..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1827.png b/front/public/images/small/gregtech/gt.blockores/1827.png deleted file mode 100644 index abdde4ae70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1828.png b/front/public/images/small/gregtech/gt.blockores/1828.png deleted file mode 100644 index 7ff8f66250..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1829.png b/front/public/images/small/gregtech/gt.blockores/1829.png deleted file mode 100644 index 5e3a364f1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1830.png b/front/public/images/small/gregtech/gt.blockores/1830.png deleted file mode 100644 index f7234d5a31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18303.png b/front/public/images/small/gregtech/gt.blockores/18303.png deleted file mode 100644 index 407cc115da..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18307.png b/front/public/images/small/gregtech/gt.blockores/18307.png deleted file mode 100644 index 4c97242966..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1831.png b/front/public/images/small/gregtech/gt.blockores/1831.png deleted file mode 100644 index 3370653cee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18319.png b/front/public/images/small/gregtech/gt.blockores/18319.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18320.png b/front/public/images/small/gregtech/gt.blockores/18320.png deleted file mode 100644 index bfa35c6e4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18323.png b/front/public/images/small/gregtech/gt.blockores/18323.png deleted file mode 100644 index bbae358dbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18324.png b/front/public/images/small/gregtech/gt.blockores/18324.png deleted file mode 100644 index b1779bea44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18326.png b/front/public/images/small/gregtech/gt.blockores/18326.png deleted file mode 100644 index 978e86097b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18327.png b/front/public/images/small/gregtech/gt.blockores/18327.png deleted file mode 100644 index c35f3c2228..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18329.png b/front/public/images/small/gregtech/gt.blockores/18329.png deleted file mode 100644 index e8a04b5478..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1833.png b/front/public/images/small/gregtech/gt.blockores/1833.png deleted file mode 100644 index 7e3f6cd5ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18331.png b/front/public/images/small/gregtech/gt.blockores/18331.png deleted file mode 100644 index 835f17a126..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18336.png b/front/public/images/small/gregtech/gt.blockores/18336.png deleted file mode 100644 index f073ed0118..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1834.png b/front/public/images/small/gregtech/gt.blockores/1834.png deleted file mode 100644 index 11828c48cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18340.png b/front/public/images/small/gregtech/gt.blockores/18340.png deleted file mode 100644 index bee2930d0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18342.png b/front/public/images/small/gregtech/gt.blockores/18342.png deleted file mode 100644 index df3bbdb144..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18347.png b/front/public/images/small/gregtech/gt.blockores/18347.png deleted file mode 100644 index 6df2bb5c25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1835.png b/front/public/images/small/gregtech/gt.blockores/1835.png deleted file mode 100644 index 4cd814bc2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1836.png b/front/public/images/small/gregtech/gt.blockores/1836.png deleted file mode 100644 index 4b1388bf45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18368.png b/front/public/images/small/gregtech/gt.blockores/18368.png deleted file mode 100644 index b5a89bf830..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18375.png b/front/public/images/small/gregtech/gt.blockores/18375.png deleted file mode 100644 index e6af73f576..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1838.png b/front/public/images/small/gregtech/gt.blockores/1838.png deleted file mode 100644 index 3fce5344af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18382.png b/front/public/images/small/gregtech/gt.blockores/18382.png deleted file mode 100644 index a483d7d5f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18386.png b/front/public/images/small/gregtech/gt.blockores/18386.png deleted file mode 100644 index 63ea508984..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18387.png b/front/public/images/small/gregtech/gt.blockores/18387.png deleted file mode 100644 index 1dcab8cb75..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18388.png b/front/public/images/small/gregtech/gt.blockores/18388.png deleted file mode 100644 index b1779bea44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18389.png b/front/public/images/small/gregtech/gt.blockores/18389.png deleted file mode 100644 index dc62d8205f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1839.png b/front/public/images/small/gregtech/gt.blockores/1839.png deleted file mode 100644 index 9aa3136e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18390.png b/front/public/images/small/gregtech/gt.blockores/18390.png deleted file mode 100644 index 5db3a80ad7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18391.png b/front/public/images/small/gregtech/gt.blockores/18391.png deleted file mode 100644 index 7e5804aa72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18392.png b/front/public/images/small/gregtech/gt.blockores/18392.png deleted file mode 100644 index af63c0b245..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18393.png b/front/public/images/small/gregtech/gt.blockores/18393.png deleted file mode 100644 index d0348a164d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18394.png b/front/public/images/small/gregtech/gt.blockores/18394.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18395.png b/front/public/images/small/gregtech/gt.blockores/18395.png deleted file mode 100644 index b1779bea44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18398.png b/front/public/images/small/gregtech/gt.blockores/18398.png deleted file mode 100644 index 6bb24a2e7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1840.png b/front/public/images/small/gregtech/gt.blockores/1840.png deleted file mode 100644 index 94ee34d17f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1841.png b/front/public/images/small/gregtech/gt.blockores/1841.png deleted file mode 100644 index 8cd9e016b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1842.png b/front/public/images/small/gregtech/gt.blockores/1842.png deleted file mode 100644 index fb4f6f8c63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18485.png b/front/public/images/small/gregtech/gt.blockores/18485.png deleted file mode 100644 index 5618bad05d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18488.png b/front/public/images/small/gregtech/gt.blockores/18488.png deleted file mode 100644 index 9d97bd7f07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18489.png b/front/public/images/small/gregtech/gt.blockores/18489.png deleted file mode 100644 index 706571dc44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18500.png b/front/public/images/small/gregtech/gt.blockores/18500.png deleted file mode 100644 index bda434de82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18501.png b/front/public/images/small/gregtech/gt.blockores/18501.png deleted file mode 100644 index 7df304b31a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18502.png b/front/public/images/small/gregtech/gt.blockores/18502.png deleted file mode 100644 index 9b46d74fc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18503.png b/front/public/images/small/gregtech/gt.blockores/18503.png deleted file mode 100644 index caca4d8495..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18504.png b/front/public/images/small/gregtech/gt.blockores/18504.png deleted file mode 100644 index b81e25b9de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18505.png b/front/public/images/small/gregtech/gt.blockores/18505.png deleted file mode 100644 index 8d7f6cbf16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18506.png b/front/public/images/small/gregtech/gt.blockores/18506.png deleted file mode 100644 index b41268cec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18507.png b/front/public/images/small/gregtech/gt.blockores/18507.png deleted file mode 100644 index 3581855fd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18508.png b/front/public/images/small/gregtech/gt.blockores/18508.png deleted file mode 100644 index 30157daa7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18509.png b/front/public/images/small/gregtech/gt.blockores/18509.png deleted file mode 100644 index 00e44f42e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18510.png b/front/public/images/small/gregtech/gt.blockores/18510.png deleted file mode 100644 index 90442fbc63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18511.png b/front/public/images/small/gregtech/gt.blockores/18511.png deleted file mode 100644 index f52c456980..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18512.png b/front/public/images/small/gregtech/gt.blockores/18512.png deleted file mode 100644 index 9b46d74fc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18513.png b/front/public/images/small/gregtech/gt.blockores/18513.png deleted file mode 100644 index 90442fbc63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18514.png b/front/public/images/small/gregtech/gt.blockores/18514.png deleted file mode 100644 index 3581855fd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18515.png b/front/public/images/small/gregtech/gt.blockores/18515.png deleted file mode 100644 index fc8a9a2bbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18516.png b/front/public/images/small/gregtech/gt.blockores/18516.png deleted file mode 100644 index 531e371bba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18517.png b/front/public/images/small/gregtech/gt.blockores/18517.png deleted file mode 100644 index 8963a1d658..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18518.png b/front/public/images/small/gregtech/gt.blockores/18518.png deleted file mode 100644 index ffd74640af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18519.png b/front/public/images/small/gregtech/gt.blockores/18519.png deleted file mode 100644 index ffd74640af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18520.png b/front/public/images/small/gregtech/gt.blockores/18520.png deleted file mode 100644 index 350e9e344c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18521.png b/front/public/images/small/gregtech/gt.blockores/18521.png deleted file mode 100644 index 408879d3cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18522.png b/front/public/images/small/gregtech/gt.blockores/18522.png deleted file mode 100644 index 2148409ed3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18523.png b/front/public/images/small/gregtech/gt.blockores/18523.png deleted file mode 100644 index 243c89f23f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18524.png b/front/public/images/small/gregtech/gt.blockores/18524.png deleted file mode 100644 index a64dbcf851..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18525.png b/front/public/images/small/gregtech/gt.blockores/18525.png deleted file mode 100644 index d10314741e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18526.png b/front/public/images/small/gregtech/gt.blockores/18526.png deleted file mode 100644 index 4ecfa5eacd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18527.png b/front/public/images/small/gregtech/gt.blockores/18527.png deleted file mode 100644 index f52c456980..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18528.png b/front/public/images/small/gregtech/gt.blockores/18528.png deleted file mode 100644 index 178f136c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18529.png b/front/public/images/small/gregtech/gt.blockores/18529.png deleted file mode 100644 index 705a5d5d43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18530.png b/front/public/images/small/gregtech/gt.blockores/18530.png deleted file mode 100644 index 7fb9e6f245..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18531.png b/front/public/images/small/gregtech/gt.blockores/18531.png deleted file mode 100644 index 216d63ba57..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18534.png b/front/public/images/small/gregtech/gt.blockores/18534.png deleted file mode 100644 index 7ca9013526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18535.png b/front/public/images/small/gregtech/gt.blockores/18535.png deleted file mode 100644 index 78d62bee71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18537.png b/front/public/images/small/gregtech/gt.blockores/18537.png deleted file mode 100644 index bf15279725..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18538.png b/front/public/images/small/gregtech/gt.blockores/18538.png deleted file mode 100644 index 1834f577fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18540.png b/front/public/images/small/gregtech/gt.blockores/18540.png deleted file mode 100644 index 408879d3cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18541.png b/front/public/images/small/gregtech/gt.blockores/18541.png deleted file mode 100644 index b09aefd06b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18542.png b/front/public/images/small/gregtech/gt.blockores/18542.png deleted file mode 100644 index 292c0dee7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18543.png b/front/public/images/small/gregtech/gt.blockores/18543.png deleted file mode 100644 index 18d9f0b5f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18544.png b/front/public/images/small/gregtech/gt.blockores/18544.png deleted file mode 100644 index e9c201d6d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18545.png b/front/public/images/small/gregtech/gt.blockores/18545.png deleted file mode 100644 index d651b39bdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18548.png b/front/public/images/small/gregtech/gt.blockores/18548.png deleted file mode 100644 index 3e077e9b2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18549.png b/front/public/images/small/gregtech/gt.blockores/18549.png deleted file mode 100644 index fdbfe9ae94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1855.png b/front/public/images/small/gregtech/gt.blockores/1855.png deleted file mode 100644 index 97cf153005..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1856.png b/front/public/images/small/gregtech/gt.blockores/1856.png deleted file mode 100644 index efb01d957a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18607.png b/front/public/images/small/gregtech/gt.blockores/18607.png deleted file mode 100644 index 22f1c0092a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1861.png b/front/public/images/small/gregtech/gt.blockores/1861.png deleted file mode 100644 index 9aa3136e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1865.png b/front/public/images/small/gregtech/gt.blockores/1865.png deleted file mode 100644 index a5621b815d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1868.png b/front/public/images/small/gregtech/gt.blockores/1868.png deleted file mode 100644 index 864bba130c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18699.png b/front/public/images/small/gregtech/gt.blockores/18699.png deleted file mode 100644 index 8eed3889d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1870.png b/front/public/images/small/gregtech/gt.blockores/1870.png deleted file mode 100644 index 23da043b54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1871.png b/front/public/images/small/gregtech/gt.blockores/1871.png deleted file mode 100644 index 60ab060001..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1873.png b/front/public/images/small/gregtech/gt.blockores/1873.png deleted file mode 100644 index 30b8823b2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1877.png b/front/public/images/small/gregtech/gt.blockores/1877.png deleted file mode 100644 index f6a23c6ba8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18770.png b/front/public/images/small/gregtech/gt.blockores/18770.png deleted file mode 100644 index 48adb19637..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1878.png b/front/public/images/small/gregtech/gt.blockores/1878.png deleted file mode 100644 index 5dc38db32d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18797.png b/front/public/images/small/gregtech/gt.blockores/18797.png deleted file mode 100644 index afba784cd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18810.png b/front/public/images/small/gregtech/gt.blockores/18810.png deleted file mode 100644 index e7a167be33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18812.png b/front/public/images/small/gregtech/gt.blockores/18812.png deleted file mode 100644 index a02473312a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18817.png b/front/public/images/small/gregtech/gt.blockores/18817.png deleted file mode 100644 index b41268cec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1882.png b/front/public/images/small/gregtech/gt.blockores/1882.png deleted file mode 100644 index 7bd3925eda..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18820.png b/front/public/images/small/gregtech/gt.blockores/18820.png deleted file mode 100644 index 85d5d12c9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18821.png b/front/public/images/small/gregtech/gt.blockores/18821.png deleted file mode 100644 index d0c3b22493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18822.png b/front/public/images/small/gregtech/gt.blockores/18822.png deleted file mode 100644 index bd52f5b4e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18823.png b/front/public/images/small/gregtech/gt.blockores/18823.png deleted file mode 100644 index 8d64fb243d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18824.png b/front/public/images/small/gregtech/gt.blockores/18824.png deleted file mode 100644 index afba784cd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18825.png b/front/public/images/small/gregtech/gt.blockores/18825.png deleted file mode 100644 index f442f67b89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18826.png b/front/public/images/small/gregtech/gt.blockores/18826.png deleted file mode 100644 index e317eaac8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18827.png b/front/public/images/small/gregtech/gt.blockores/18827.png deleted file mode 100644 index 44d2ac37f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18828.png b/front/public/images/small/gregtech/gt.blockores/18828.png deleted file mode 100644 index ed0160ec3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18829.png b/front/public/images/small/gregtech/gt.blockores/18829.png deleted file mode 100644 index 97f453b2a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1883.png b/front/public/images/small/gregtech/gt.blockores/1883.png deleted file mode 100644 index 7e3f6cd5ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18830.png b/front/public/images/small/gregtech/gt.blockores/18830.png deleted file mode 100644 index bc4319612a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18831.png b/front/public/images/small/gregtech/gt.blockores/18831.png deleted file mode 100644 index bd52f5b4e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18833.png b/front/public/images/small/gregtech/gt.blockores/18833.png deleted file mode 100644 index 7ca9013526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18834.png b/front/public/images/small/gregtech/gt.blockores/18834.png deleted file mode 100644 index 8a2b22be70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18835.png b/front/public/images/small/gregtech/gt.blockores/18835.png deleted file mode 100644 index bdb54aa437..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18836.png b/front/public/images/small/gregtech/gt.blockores/18836.png deleted file mode 100644 index 6f2c7a9a2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18838.png b/front/public/images/small/gregtech/gt.blockores/18838.png deleted file mode 100644 index 9b46d74fc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18839.png b/front/public/images/small/gregtech/gt.blockores/18839.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1884.png b/front/public/images/small/gregtech/gt.blockores/1884.png deleted file mode 100644 index 5a04b0b6e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18840.png b/front/public/images/small/gregtech/gt.blockores/18840.png deleted file mode 100644 index 4672b76b23..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18841.png b/front/public/images/small/gregtech/gt.blockores/18841.png deleted file mode 100644 index 42ac6a1d41..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18842.png b/front/public/images/small/gregtech/gt.blockores/18842.png deleted file mode 100644 index eaa99eb0b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18855.png b/front/public/images/small/gregtech/gt.blockores/18855.png deleted file mode 100644 index 452e9cdd87..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18856.png b/front/public/images/small/gregtech/gt.blockores/18856.png deleted file mode 100644 index 31b301baa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18861.png b/front/public/images/small/gregtech/gt.blockores/18861.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18865.png b/front/public/images/small/gregtech/gt.blockores/18865.png deleted file mode 100644 index fed3091290..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18868.png b/front/public/images/small/gregtech/gt.blockores/18868.png deleted file mode 100644 index 80963574b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18870.png b/front/public/images/small/gregtech/gt.blockores/18870.png deleted file mode 100644 index d8499b7ccc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18871.png b/front/public/images/small/gregtech/gt.blockores/18871.png deleted file mode 100644 index ced0b3df61..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18873.png b/front/public/images/small/gregtech/gt.blockores/18873.png deleted file mode 100644 index 8c6b3df417..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18877.png b/front/public/images/small/gregtech/gt.blockores/18877.png deleted file mode 100644 index 087e7e380d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18878.png b/front/public/images/small/gregtech/gt.blockores/18878.png deleted file mode 100644 index 3ce8e2effe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18882.png b/front/public/images/small/gregtech/gt.blockores/18882.png deleted file mode 100644 index 3581855fd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18883.png b/front/public/images/small/gregtech/gt.blockores/18883.png deleted file mode 100644 index 7ca9013526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18884.png b/front/public/images/small/gregtech/gt.blockores/18884.png deleted file mode 100644 index 6721c6b3aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18894.png b/front/public/images/small/gregtech/gt.blockores/18894.png deleted file mode 100644 index 7ca9013526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18900.png b/front/public/images/small/gregtech/gt.blockores/18900.png deleted file mode 100644 index 1685929c15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18901.png b/front/public/images/small/gregtech/gt.blockores/18901.png deleted file mode 100644 index 44091cd9b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18902.png b/front/public/images/small/gregtech/gt.blockores/18902.png deleted file mode 100644 index 1b3a85b980..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18903.png b/front/public/images/small/gregtech/gt.blockores/18903.png deleted file mode 100644 index 4498227c27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18904.png b/front/public/images/small/gregtech/gt.blockores/18904.png deleted file mode 100644 index caddf5b47c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18905.png b/front/public/images/small/gregtech/gt.blockores/18905.png deleted file mode 100644 index 6ff95593cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18906.png b/front/public/images/small/gregtech/gt.blockores/18906.png deleted file mode 100644 index 8e343f5399..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18907.png b/front/public/images/small/gregtech/gt.blockores/18907.png deleted file mode 100644 index c4c87f621e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18908.png b/front/public/images/small/gregtech/gt.blockores/18908.png deleted file mode 100644 index 0784714a5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18909.png b/front/public/images/small/gregtech/gt.blockores/18909.png deleted file mode 100644 index 601a6d1b92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18910.png b/front/public/images/small/gregtech/gt.blockores/18910.png deleted file mode 100644 index 4213a3aefa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18911.png b/front/public/images/small/gregtech/gt.blockores/18911.png deleted file mode 100644 index 50a6f5bb8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18912.png b/front/public/images/small/gregtech/gt.blockores/18912.png deleted file mode 100644 index 9b4644ffbd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18913.png b/front/public/images/small/gregtech/gt.blockores/18913.png deleted file mode 100644 index f14caf632b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18914.png b/front/public/images/small/gregtech/gt.blockores/18914.png deleted file mode 100644 index 29083a97df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18915.png b/front/public/images/small/gregtech/gt.blockores/18915.png deleted file mode 100644 index d712bec5be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18916.png b/front/public/images/small/gregtech/gt.blockores/18916.png deleted file mode 100644 index 7c01acbf26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18917.png b/front/public/images/small/gregtech/gt.blockores/18917.png deleted file mode 100644 index d4294987c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18918.png b/front/public/images/small/gregtech/gt.blockores/18918.png deleted file mode 100644 index 0b750f6faf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18919.png b/front/public/images/small/gregtech/gt.blockores/18919.png deleted file mode 100644 index d30171ff09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18920.png b/front/public/images/small/gregtech/gt.blockores/18920.png deleted file mode 100644 index b3b5488143..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18921.png b/front/public/images/small/gregtech/gt.blockores/18921.png deleted file mode 100644 index ab3d495600..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18922.png b/front/public/images/small/gregtech/gt.blockores/18922.png deleted file mode 100644 index 470d331595..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18923.png b/front/public/images/small/gregtech/gt.blockores/18923.png deleted file mode 100644 index 3a8a091b43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18924.png b/front/public/images/small/gregtech/gt.blockores/18924.png deleted file mode 100644 index a355b69344..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18925.png b/front/public/images/small/gregtech/gt.blockores/18925.png deleted file mode 100644 index 82e1c77810..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18926.png b/front/public/images/small/gregtech/gt.blockores/18926.png deleted file mode 100644 index 344c23a8a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18927.png b/front/public/images/small/gregtech/gt.blockores/18927.png deleted file mode 100644 index c28f5e3351..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18928.png b/front/public/images/small/gregtech/gt.blockores/18928.png deleted file mode 100644 index 0dc3a1edd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18929.png b/front/public/images/small/gregtech/gt.blockores/18929.png deleted file mode 100644 index 5eb46264ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18930.png b/front/public/images/small/gregtech/gt.blockores/18930.png deleted file mode 100644 index bd52f5b4e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18931.png b/front/public/images/small/gregtech/gt.blockores/18931.png deleted file mode 100644 index 5fa66e7309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18932.png b/front/public/images/small/gregtech/gt.blockores/18932.png deleted file mode 100644 index 3fdcc4ca7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18933.png b/front/public/images/small/gregtech/gt.blockores/18933.png deleted file mode 100644 index f79247474b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18934.png b/front/public/images/small/gregtech/gt.blockores/18934.png deleted file mode 100644 index f9d2d58e64..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18935.png b/front/public/images/small/gregtech/gt.blockores/18935.png deleted file mode 100644 index 4dee91e91e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18936.png b/front/public/images/small/gregtech/gt.blockores/18936.png deleted file mode 100644 index d185bf3788..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18937.png b/front/public/images/small/gregtech/gt.blockores/18937.png deleted file mode 100644 index afba784cd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18938.png b/front/public/images/small/gregtech/gt.blockores/18938.png deleted file mode 100644 index bd52f5b4e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18939.png b/front/public/images/small/gregtech/gt.blockores/18939.png deleted file mode 100644 index fedf05ffab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1894.png b/front/public/images/small/gregtech/gt.blockores/1894.png deleted file mode 100644 index b8c5667fc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18941.png b/front/public/images/small/gregtech/gt.blockores/18941.png deleted file mode 100644 index b41268cec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18942.png b/front/public/images/small/gregtech/gt.blockores/18942.png deleted file mode 100644 index ef43da4d68..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18943.png b/front/public/images/small/gregtech/gt.blockores/18943.png deleted file mode 100644 index a3fd30e755..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18944.png b/front/public/images/small/gregtech/gt.blockores/18944.png deleted file mode 100644 index d4d2d39391..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18945.png b/front/public/images/small/gregtech/gt.blockores/18945.png deleted file mode 100644 index 78d62bee71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18946.png b/front/public/images/small/gregtech/gt.blockores/18946.png deleted file mode 100644 index 6f2c7a9a2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18948.png b/front/public/images/small/gregtech/gt.blockores/18948.png deleted file mode 100644 index a42e178f74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18949.png b/front/public/images/small/gregtech/gt.blockores/18949.png deleted file mode 100644 index f79247474b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18951.png b/front/public/images/small/gregtech/gt.blockores/18951.png deleted file mode 100644 index 47ffef6545..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18952.png b/front/public/images/small/gregtech/gt.blockores/18952.png deleted file mode 100644 index 265e4344ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18956.png b/front/public/images/small/gregtech/gt.blockores/18956.png deleted file mode 100644 index 8995eb01a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18966.png b/front/public/images/small/gregtech/gt.blockores/18966.png deleted file mode 100644 index cb15c59f17..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18969.png b/front/public/images/small/gregtech/gt.blockores/18969.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18971.png b/front/public/images/small/gregtech/gt.blockores/18971.png deleted file mode 100644 index bb2885e79d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18975.png b/front/public/images/small/gregtech/gt.blockores/18975.png deleted file mode 100644 index 694530ea78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18976.png b/front/public/images/small/gregtech/gt.blockores/18976.png deleted file mode 100644 index 2603aa4ddc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18978.png b/front/public/images/small/gregtech/gt.blockores/18978.png deleted file mode 100644 index 24d7ba167d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18982.png b/front/public/images/small/gregtech/gt.blockores/18982.png deleted file mode 100644 index b1779bea44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/18984.png b/front/public/images/small/gregtech/gt.blockores/18984.png deleted file mode 100644 index 36e2699211..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/18984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19.png b/front/public/images/small/gregtech/gt.blockores/19.png deleted file mode 100644 index ac7c5fe4b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1900.png b/front/public/images/small/gregtech/gt.blockores/1900.png deleted file mode 100644 index 0167df6e88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19006.png b/front/public/images/small/gregtech/gt.blockores/19006.png deleted file mode 100644 index ec0f87c43b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19008.png b/front/public/images/small/gregtech/gt.blockores/19008.png deleted file mode 100644 index 057bca2eba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1901.png b/front/public/images/small/gregtech/gt.blockores/1901.png deleted file mode 100644 index 9200a36fb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19018.png b/front/public/images/small/gregtech/gt.blockores/19018.png deleted file mode 100644 index 281ed847e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19019.png b/front/public/images/small/gregtech/gt.blockores/19019.png deleted file mode 100644 index c707ecaec2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1902.png b/front/public/images/small/gregtech/gt.blockores/1902.png deleted file mode 100644 index 00b7b100c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19020.png b/front/public/images/small/gregtech/gt.blockores/19020.png deleted file mode 100644 index 0a18265e5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19022.png b/front/public/images/small/gregtech/gt.blockores/19022.png deleted file mode 100644 index 9d4278d0e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19027.png b/front/public/images/small/gregtech/gt.blockores/19027.png deleted file mode 100644 index a9ac65c347..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19028.png b/front/public/images/small/gregtech/gt.blockores/19028.png deleted file mode 100644 index 81913e5aaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19029.png b/front/public/images/small/gregtech/gt.blockores/19029.png deleted file mode 100644 index 4282a7ebbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1903.png b/front/public/images/small/gregtech/gt.blockores/1903.png deleted file mode 100644 index 139bbacc57..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19030.png b/front/public/images/small/gregtech/gt.blockores/19030.png deleted file mode 100644 index 5273f3d47d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19031.png b/front/public/images/small/gregtech/gt.blockores/19031.png deleted file mode 100644 index 8e6790c3de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19032.png b/front/public/images/small/gregtech/gt.blockores/19032.png deleted file mode 100644 index f50198e238..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19033.png b/front/public/images/small/gregtech/gt.blockores/19033.png deleted file mode 100644 index b68c1dcec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19034.png b/front/public/images/small/gregtech/gt.blockores/19034.png deleted file mode 100644 index c746e9232f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19035.png b/front/public/images/small/gregtech/gt.blockores/19035.png deleted file mode 100644 index 0bb378d2f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19036.png b/front/public/images/small/gregtech/gt.blockores/19036.png deleted file mode 100644 index 3742f43e22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19037.png b/front/public/images/small/gregtech/gt.blockores/19037.png deleted file mode 100644 index 87b8837512..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19039.png b/front/public/images/small/gregtech/gt.blockores/19039.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1904.png b/front/public/images/small/gregtech/gt.blockores/1904.png deleted file mode 100644 index 4d75a1169f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19043.png b/front/public/images/small/gregtech/gt.blockores/19043.png deleted file mode 100644 index ad260cfd0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19044.png b/front/public/images/small/gregtech/gt.blockores/19044.png deleted file mode 100644 index f50198e238..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19045.png b/front/public/images/small/gregtech/gt.blockores/19045.png deleted file mode 100644 index cd7db1661d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19047.png b/front/public/images/small/gregtech/gt.blockores/19047.png deleted file mode 100644 index 72f769ab8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19048.png b/front/public/images/small/gregtech/gt.blockores/19048.png deleted file mode 100644 index 1597bd0cca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1905.png b/front/public/images/small/gregtech/gt.blockores/1905.png deleted file mode 100644 index 9f9a33807a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19052.png b/front/public/images/small/gregtech/gt.blockores/19052.png deleted file mode 100644 index d19ca3944c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19054.png b/front/public/images/small/gregtech/gt.blockores/19054.png deleted file mode 100644 index 87b8837512..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19055.png b/front/public/images/small/gregtech/gt.blockores/19055.png deleted file mode 100644 index 1031c5192e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19056.png b/front/public/images/small/gregtech/gt.blockores/19056.png deleted file mode 100644 index 85694942db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19057.png b/front/public/images/small/gregtech/gt.blockores/19057.png deleted file mode 100644 index b31da82ffb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19058.png b/front/public/images/small/gregtech/gt.blockores/19058.png deleted file mode 100644 index 6ab67f0eb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19059.png b/front/public/images/small/gregtech/gt.blockores/19059.png deleted file mode 100644 index 4b2aa25974..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1906.png b/front/public/images/small/gregtech/gt.blockores/1906.png deleted file mode 100644 index e0c9ba5873..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19062.png b/front/public/images/small/gregtech/gt.blockores/19062.png deleted file mode 100644 index a6feb1ea69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19063.png b/front/public/images/small/gregtech/gt.blockores/19063.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19064.png b/front/public/images/small/gregtech/gt.blockores/19064.png deleted file mode 100644 index b22163a885..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19065.png b/front/public/images/small/gregtech/gt.blockores/19065.png deleted file mode 100644 index 4a2686e3f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19066.png b/front/public/images/small/gregtech/gt.blockores/19066.png deleted file mode 100644 index 45f22fad18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19067.png b/front/public/images/small/gregtech/gt.blockores/19067.png deleted file mode 100644 index e690bb6b63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19068.png b/front/public/images/small/gregtech/gt.blockores/19068.png deleted file mode 100644 index 181d1d2afa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19069.png b/front/public/images/small/gregtech/gt.blockores/19069.png deleted file mode 100644 index 9798bddfda..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1907.png b/front/public/images/small/gregtech/gt.blockores/1907.png deleted file mode 100644 index aecc322f8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19070.png b/front/public/images/small/gregtech/gt.blockores/19070.png deleted file mode 100644 index 165918ec53..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19071.png b/front/public/images/small/gregtech/gt.blockores/19071.png deleted file mode 100644 index be31c9ff95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19072.png b/front/public/images/small/gregtech/gt.blockores/19072.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19073.png b/front/public/images/small/gregtech/gt.blockores/19073.png deleted file mode 100644 index d9dbb54df4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19074.png b/front/public/images/small/gregtech/gt.blockores/19074.png deleted file mode 100644 index 88616c01e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19075.png b/front/public/images/small/gregtech/gt.blockores/19075.png deleted file mode 100644 index 25398fbd5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19076.png b/front/public/images/small/gregtech/gt.blockores/19076.png deleted file mode 100644 index 863a51dcc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19077.png b/front/public/images/small/gregtech/gt.blockores/19077.png deleted file mode 100644 index d0f8462015..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19078.png b/front/public/images/small/gregtech/gt.blockores/19078.png deleted file mode 100644 index d6ccff6a7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1908.png b/front/public/images/small/gregtech/gt.blockores/1908.png deleted file mode 100644 index 09e3b3eacd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19080.png b/front/public/images/small/gregtech/gt.blockores/19080.png deleted file mode 100644 index b18968d166..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19081.png b/front/public/images/small/gregtech/gt.blockores/19081.png deleted file mode 100644 index 4282a7ebbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19083.png b/front/public/images/small/gregtech/gt.blockores/19083.png deleted file mode 100644 index 47e033c6a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19084.png b/front/public/images/small/gregtech/gt.blockores/19084.png deleted file mode 100644 index 88e6315bed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19085.png b/front/public/images/small/gregtech/gt.blockores/19085.png deleted file mode 100644 index d81b9136ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19086.png b/front/public/images/small/gregtech/gt.blockores/19086.png deleted file mode 100644 index 4f531578d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19089.png b/front/public/images/small/gregtech/gt.blockores/19089.png deleted file mode 100644 index b8b8669dfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1909.png b/front/public/images/small/gregtech/gt.blockores/1909.png deleted file mode 100644 index 82472fe27f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19090.png b/front/public/images/small/gregtech/gt.blockores/19090.png deleted file mode 100644 index fa56318ab3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19096.png b/front/public/images/small/gregtech/gt.blockores/19096.png deleted file mode 100644 index c05ec39dd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19097.png b/front/public/images/small/gregtech/gt.blockores/19097.png deleted file mode 100644 index c2facea60e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19098.png b/front/public/images/small/gregtech/gt.blockores/19098.png deleted file mode 100644 index 0183266129..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1910.png b/front/public/images/small/gregtech/gt.blockores/1910.png deleted file mode 100644 index 951ba99f21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19100.png b/front/public/images/small/gregtech/gt.blockores/19100.png deleted file mode 100644 index 22c7271b64..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19101.png b/front/public/images/small/gregtech/gt.blockores/19101.png deleted file mode 100644 index 896e15bb18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19103.png b/front/public/images/small/gregtech/gt.blockores/19103.png deleted file mode 100644 index f50198e238..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1911.png b/front/public/images/small/gregtech/gt.blockores/1911.png deleted file mode 100644 index a59f23dc1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19110.png b/front/public/images/small/gregtech/gt.blockores/19110.png deleted file mode 100644 index 45a45f06c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1912.png b/front/public/images/small/gregtech/gt.blockores/1912.png deleted file mode 100644 index da705d49a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19129.png b/front/public/images/small/gregtech/gt.blockores/19129.png deleted file mode 100644 index 8e6790c3de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1913.png b/front/public/images/small/gregtech/gt.blockores/1913.png deleted file mode 100644 index f52508db8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1914.png b/front/public/images/small/gregtech/gt.blockores/1914.png deleted file mode 100644 index 823975567e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1915.png b/front/public/images/small/gregtech/gt.blockores/1915.png deleted file mode 100644 index ac7f14844c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1916.png b/front/public/images/small/gregtech/gt.blockores/1916.png deleted file mode 100644 index f205359da3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1917.png b/front/public/images/small/gregtech/gt.blockores/1917.png deleted file mode 100644 index a74d0d165e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1918.png b/front/public/images/small/gregtech/gt.blockores/1918.png deleted file mode 100644 index f189900789..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1919.png b/front/public/images/small/gregtech/gt.blockores/1919.png deleted file mode 100644 index f9d664f932..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1920.png b/front/public/images/small/gregtech/gt.blockores/1920.png deleted file mode 100644 index 54bbb6180e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1921.png b/front/public/images/small/gregtech/gt.blockores/1921.png deleted file mode 100644 index fea5cebf53..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1922.png b/front/public/images/small/gregtech/gt.blockores/1922.png deleted file mode 100644 index 19355cad03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1923.png b/front/public/images/small/gregtech/gt.blockores/1923.png deleted file mode 100644 index 18a23e276d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1924.png b/front/public/images/small/gregtech/gt.blockores/1924.png deleted file mode 100644 index d9a9127eb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1925.png b/front/public/images/small/gregtech/gt.blockores/1925.png deleted file mode 100644 index acfeba008f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1926.png b/front/public/images/small/gregtech/gt.blockores/1926.png deleted file mode 100644 index 0bdc1347dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1927.png b/front/public/images/small/gregtech/gt.blockores/1927.png deleted file mode 100644 index 8b4298f718..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1928.png b/front/public/images/small/gregtech/gt.blockores/1928.png deleted file mode 100644 index b296bfd85a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1929.png b/front/public/images/small/gregtech/gt.blockores/1929.png deleted file mode 100644 index 1499becf4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1930.png b/front/public/images/small/gregtech/gt.blockores/1930.png deleted file mode 100644 index 3370653cee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19303.png b/front/public/images/small/gregtech/gt.blockores/19303.png deleted file mode 100644 index 8aec0e8422..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19307.png b/front/public/images/small/gregtech/gt.blockores/19307.png deleted file mode 100644 index 9e2921d9ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1931.png b/front/public/images/small/gregtech/gt.blockores/1931.png deleted file mode 100644 index 3015ee4803..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19319.png b/front/public/images/small/gregtech/gt.blockores/19319.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1932.png b/front/public/images/small/gregtech/gt.blockores/1932.png deleted file mode 100644 index 8b074fe723..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19320.png b/front/public/images/small/gregtech/gt.blockores/19320.png deleted file mode 100644 index 62cb1b2aa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19323.png b/front/public/images/small/gregtech/gt.blockores/19323.png deleted file mode 100644 index 6d2525a5bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19324.png b/front/public/images/small/gregtech/gt.blockores/19324.png deleted file mode 100644 index 4282a7ebbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19326.png b/front/public/images/small/gregtech/gt.blockores/19326.png deleted file mode 100644 index fd976ddf5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19327.png b/front/public/images/small/gregtech/gt.blockores/19327.png deleted file mode 100644 index 59dafa6c18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19329.png b/front/public/images/small/gregtech/gt.blockores/19329.png deleted file mode 100644 index 90828d5639..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1933.png b/front/public/images/small/gregtech/gt.blockores/1933.png deleted file mode 100644 index 2bbd172a2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19331.png b/front/public/images/small/gregtech/gt.blockores/19331.png deleted file mode 100644 index 31f387393b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19336.png b/front/public/images/small/gregtech/gt.blockores/19336.png deleted file mode 100644 index 9171c37939..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1934.png b/front/public/images/small/gregtech/gt.blockores/1934.png deleted file mode 100644 index 20b228976c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19340.png b/front/public/images/small/gregtech/gt.blockores/19340.png deleted file mode 100644 index f4b5f40c80..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19342.png b/front/public/images/small/gregtech/gt.blockores/19342.png deleted file mode 100644 index 9bcb4a712f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19347.png b/front/public/images/small/gregtech/gt.blockores/19347.png deleted file mode 100644 index 632537012e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1935.png b/front/public/images/small/gregtech/gt.blockores/1935.png deleted file mode 100644 index d77d22f04a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1936.png b/front/public/images/small/gregtech/gt.blockores/1936.png deleted file mode 100644 index 9310ea9694..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19368.png b/front/public/images/small/gregtech/gt.blockores/19368.png deleted file mode 100644 index 8a96577c8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1937.png b/front/public/images/small/gregtech/gt.blockores/1937.png deleted file mode 100644 index 29d523cc34..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19375.png b/front/public/images/small/gregtech/gt.blockores/19375.png deleted file mode 100644 index 7691fc146d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1938.png b/front/public/images/small/gregtech/gt.blockores/1938.png deleted file mode 100644 index 20be19de1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19382.png b/front/public/images/small/gregtech/gt.blockores/19382.png deleted file mode 100644 index b99392db93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19386.png b/front/public/images/small/gregtech/gt.blockores/19386.png deleted file mode 100644 index 0a75170a7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19387.png b/front/public/images/small/gregtech/gt.blockores/19387.png deleted file mode 100644 index 3d12131f6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19388.png b/front/public/images/small/gregtech/gt.blockores/19388.png deleted file mode 100644 index 4282a7ebbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19389.png b/front/public/images/small/gregtech/gt.blockores/19389.png deleted file mode 100644 index f46ecec788..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1939.png b/front/public/images/small/gregtech/gt.blockores/1939.png deleted file mode 100644 index 3797e5041c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19390.png b/front/public/images/small/gregtech/gt.blockores/19390.png deleted file mode 100644 index 6d253f2ec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19391.png b/front/public/images/small/gregtech/gt.blockores/19391.png deleted file mode 100644 index de737dddde..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19392.png b/front/public/images/small/gregtech/gt.blockores/19392.png deleted file mode 100644 index 45248773e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19393.png b/front/public/images/small/gregtech/gt.blockores/19393.png deleted file mode 100644 index b792e0fe4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19394.png b/front/public/images/small/gregtech/gt.blockores/19394.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19395.png b/front/public/images/small/gregtech/gt.blockores/19395.png deleted file mode 100644 index 4282a7ebbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19398.png b/front/public/images/small/gregtech/gt.blockores/19398.png deleted file mode 100644 index 7bdf101351..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1941.png b/front/public/images/small/gregtech/gt.blockores/1941.png deleted file mode 100644 index 72977c5a67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1942.png b/front/public/images/small/gregtech/gt.blockores/1942.png deleted file mode 100644 index 54399f711d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1943.png b/front/public/images/small/gregtech/gt.blockores/1943.png deleted file mode 100644 index 6f64706cd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1944.png b/front/public/images/small/gregtech/gt.blockores/1944.png deleted file mode 100644 index 1a1164a0d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1945.png b/front/public/images/small/gregtech/gt.blockores/1945.png deleted file mode 100644 index 17277978fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1946.png b/front/public/images/small/gregtech/gt.blockores/1946.png deleted file mode 100644 index 27ece3eaae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1948.png b/front/public/images/small/gregtech/gt.blockores/1948.png deleted file mode 100644 index e2d6b12556..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19485.png b/front/public/images/small/gregtech/gt.blockores/19485.png deleted file mode 100644 index 1a2388c2d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19488.png b/front/public/images/small/gregtech/gt.blockores/19488.png deleted file mode 100644 index 9aeed26846..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19489.png b/front/public/images/small/gregtech/gt.blockores/19489.png deleted file mode 100644 index 5e9443311a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1949.png b/front/public/images/small/gregtech/gt.blockores/1949.png deleted file mode 100644 index 2bbd172a2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19500.png b/front/public/images/small/gregtech/gt.blockores/19500.png deleted file mode 100644 index c81fb9846a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19501.png b/front/public/images/small/gregtech/gt.blockores/19501.png deleted file mode 100644 index 89aa18ee33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19502.png b/front/public/images/small/gregtech/gt.blockores/19502.png deleted file mode 100644 index 2db8ddd976..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19503.png b/front/public/images/small/gregtech/gt.blockores/19503.png deleted file mode 100644 index 28343ca1c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19504.png b/front/public/images/small/gregtech/gt.blockores/19504.png deleted file mode 100644 index 76396343ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19505.png b/front/public/images/small/gregtech/gt.blockores/19505.png deleted file mode 100644 index 310b2c98e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19506.png b/front/public/images/small/gregtech/gt.blockores/19506.png deleted file mode 100644 index 8e6790c3de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19507.png b/front/public/images/small/gregtech/gt.blockores/19507.png deleted file mode 100644 index bdd449d519..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19508.png b/front/public/images/small/gregtech/gt.blockores/19508.png deleted file mode 100644 index 67311e870f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19509.png b/front/public/images/small/gregtech/gt.blockores/19509.png deleted file mode 100644 index aace33b543..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1951.png b/front/public/images/small/gregtech/gt.blockores/1951.png deleted file mode 100644 index ade6d9d9a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19510.png b/front/public/images/small/gregtech/gt.blockores/19510.png deleted file mode 100644 index e75f11b496..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19511.png b/front/public/images/small/gregtech/gt.blockores/19511.png deleted file mode 100644 index ee904b16db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19512.png b/front/public/images/small/gregtech/gt.blockores/19512.png deleted file mode 100644 index 2db8ddd976..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19513.png b/front/public/images/small/gregtech/gt.blockores/19513.png deleted file mode 100644 index e75f11b496..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19514.png b/front/public/images/small/gregtech/gt.blockores/19514.png deleted file mode 100644 index bdd449d519..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19515.png b/front/public/images/small/gregtech/gt.blockores/19515.png deleted file mode 100644 index 182a2d5378..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19516.png b/front/public/images/small/gregtech/gt.blockores/19516.png deleted file mode 100644 index f55f308400..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19517.png b/front/public/images/small/gregtech/gt.blockores/19517.png deleted file mode 100644 index 8cc71764ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19518.png b/front/public/images/small/gregtech/gt.blockores/19518.png deleted file mode 100644 index 71d31e8711..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19519.png b/front/public/images/small/gregtech/gt.blockores/19519.png deleted file mode 100644 index 71d31e8711..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1952.png b/front/public/images/small/gregtech/gt.blockores/1952.png deleted file mode 100644 index 7aed36da08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19520.png b/front/public/images/small/gregtech/gt.blockores/19520.png deleted file mode 100644 index 56772d6666..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19521.png b/front/public/images/small/gregtech/gt.blockores/19521.png deleted file mode 100644 index 939667674b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19522.png b/front/public/images/small/gregtech/gt.blockores/19522.png deleted file mode 100644 index 5d5be34659..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19523.png b/front/public/images/small/gregtech/gt.blockores/19523.png deleted file mode 100644 index f9e6f91fc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19524.png b/front/public/images/small/gregtech/gt.blockores/19524.png deleted file mode 100644 index 950ea9f558..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19525.png b/front/public/images/small/gregtech/gt.blockores/19525.png deleted file mode 100644 index 94da1e282a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19526.png b/front/public/images/small/gregtech/gt.blockores/19526.png deleted file mode 100644 index 8e22af7a4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19527.png b/front/public/images/small/gregtech/gt.blockores/19527.png deleted file mode 100644 index ee904b16db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19528.png b/front/public/images/small/gregtech/gt.blockores/19528.png deleted file mode 100644 index 4bbcf35735..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19529.png b/front/public/images/small/gregtech/gt.blockores/19529.png deleted file mode 100644 index db639e74fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19530.png b/front/public/images/small/gregtech/gt.blockores/19530.png deleted file mode 100644 index 13d6a7b234..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19531.png b/front/public/images/small/gregtech/gt.blockores/19531.png deleted file mode 100644 index 281ed847e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19534.png b/front/public/images/small/gregtech/gt.blockores/19534.png deleted file mode 100644 index 36556faf5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19535.png b/front/public/images/small/gregtech/gt.blockores/19535.png deleted file mode 100644 index 7e4e2cc5d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19537.png b/front/public/images/small/gregtech/gt.blockores/19537.png deleted file mode 100644 index bf39f75212..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19538.png b/front/public/images/small/gregtech/gt.blockores/19538.png deleted file mode 100644 index a86219e97e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19540.png b/front/public/images/small/gregtech/gt.blockores/19540.png deleted file mode 100644 index 939667674b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19541.png b/front/public/images/small/gregtech/gt.blockores/19541.png deleted file mode 100644 index ecd76ec68d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19542.png b/front/public/images/small/gregtech/gt.blockores/19542.png deleted file mode 100644 index 8ff51c40fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19543.png b/front/public/images/small/gregtech/gt.blockores/19543.png deleted file mode 100644 index acc1b03c78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19544.png b/front/public/images/small/gregtech/gt.blockores/19544.png deleted file mode 100644 index 825a9f3c72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19545.png b/front/public/images/small/gregtech/gt.blockores/19545.png deleted file mode 100644 index d99fdea3fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19548.png b/front/public/images/small/gregtech/gt.blockores/19548.png deleted file mode 100644 index 15ce1243c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19549.png b/front/public/images/small/gregtech/gt.blockores/19549.png deleted file mode 100644 index be1915eb1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1956.png b/front/public/images/small/gregtech/gt.blockores/1956.png deleted file mode 100644 index 5f7e4026b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19607.png b/front/public/images/small/gregtech/gt.blockores/19607.png deleted file mode 100644 index 727753f85f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1966.png b/front/public/images/small/gregtech/gt.blockores/1966.png deleted file mode 100644 index 74ba2eef2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1969.png b/front/public/images/small/gregtech/gt.blockores/1969.png deleted file mode 100644 index 9aa3136e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19699.png b/front/public/images/small/gregtech/gt.blockores/19699.png deleted file mode 100644 index 8d3db800ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1971.png b/front/public/images/small/gregtech/gt.blockores/1971.png deleted file mode 100644 index 61ef03b3ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1975.png b/front/public/images/small/gregtech/gt.blockores/1975.png deleted file mode 100644 index f5362cc260..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1976.png b/front/public/images/small/gregtech/gt.blockores/1976.png deleted file mode 100644 index 86775c2e9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19770.png b/front/public/images/small/gregtech/gt.blockores/19770.png deleted file mode 100644 index b7abf53248..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1978.png b/front/public/images/small/gregtech/gt.blockores/1978.png deleted file mode 100644 index 882cb11e3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19797.png b/front/public/images/small/gregtech/gt.blockores/19797.png deleted file mode 100644 index b31da82ffb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19810.png b/front/public/images/small/gregtech/gt.blockores/19810.png deleted file mode 100644 index 78b71af49f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19812.png b/front/public/images/small/gregtech/gt.blockores/19812.png deleted file mode 100644 index 04b4e104f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19817.png b/front/public/images/small/gregtech/gt.blockores/19817.png deleted file mode 100644 index 8e6790c3de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1982.png b/front/public/images/small/gregtech/gt.blockores/1982.png deleted file mode 100644 index 635c48e6e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19820.png b/front/public/images/small/gregtech/gt.blockores/19820.png deleted file mode 100644 index 37d34f18b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19821.png b/front/public/images/small/gregtech/gt.blockores/19821.png deleted file mode 100644 index f55c81aa55..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19822.png b/front/public/images/small/gregtech/gt.blockores/19822.png deleted file mode 100644 index 5848cbe8c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19823.png b/front/public/images/small/gregtech/gt.blockores/19823.png deleted file mode 100644 index 88a0b38603..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19824.png b/front/public/images/small/gregtech/gt.blockores/19824.png deleted file mode 100644 index b31da82ffb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19825.png b/front/public/images/small/gregtech/gt.blockores/19825.png deleted file mode 100644 index f634ae13bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19826.png b/front/public/images/small/gregtech/gt.blockores/19826.png deleted file mode 100644 index 55a028f490..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19827.png b/front/public/images/small/gregtech/gt.blockores/19827.png deleted file mode 100644 index b68c1dcec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19828.png b/front/public/images/small/gregtech/gt.blockores/19828.png deleted file mode 100644 index d81b9136ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19829.png b/front/public/images/small/gregtech/gt.blockores/19829.png deleted file mode 100644 index 95ef5f776a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19830.png b/front/public/images/small/gregtech/gt.blockores/19830.png deleted file mode 100644 index 2ff9a65d2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19831.png b/front/public/images/small/gregtech/gt.blockores/19831.png deleted file mode 100644 index 5848cbe8c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19833.png b/front/public/images/small/gregtech/gt.blockores/19833.png deleted file mode 100644 index 36556faf5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19834.png b/front/public/images/small/gregtech/gt.blockores/19834.png deleted file mode 100644 index f895a7284e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19835.png b/front/public/images/small/gregtech/gt.blockores/19835.png deleted file mode 100644 index 0a9b992891..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19836.png b/front/public/images/small/gregtech/gt.blockores/19836.png deleted file mode 100644 index 0560532bc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19838.png b/front/public/images/small/gregtech/gt.blockores/19838.png deleted file mode 100644 index 2db8ddd976..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19839.png b/front/public/images/small/gregtech/gt.blockores/19839.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/1984.png b/front/public/images/small/gregtech/gt.blockores/1984.png deleted file mode 100644 index 8d25d5df10..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/1984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19840.png b/front/public/images/small/gregtech/gt.blockores/19840.png deleted file mode 100644 index 274dd0427c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19841.png b/front/public/images/small/gregtech/gt.blockores/19841.png deleted file mode 100644 index 965a1fe2f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19842.png b/front/public/images/small/gregtech/gt.blockores/19842.png deleted file mode 100644 index 2d4f8050d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19855.png b/front/public/images/small/gregtech/gt.blockores/19855.png deleted file mode 100644 index b05faf221b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19856.png b/front/public/images/small/gregtech/gt.blockores/19856.png deleted file mode 100644 index 29aa15d9d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19861.png b/front/public/images/small/gregtech/gt.blockores/19861.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19865.png b/front/public/images/small/gregtech/gt.blockores/19865.png deleted file mode 100644 index d19ca3944c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19868.png b/front/public/images/small/gregtech/gt.blockores/19868.png deleted file mode 100644 index 129db64538..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19870.png b/front/public/images/small/gregtech/gt.blockores/19870.png deleted file mode 100644 index 19f1cd0970..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19871.png b/front/public/images/small/gregtech/gt.blockores/19871.png deleted file mode 100644 index c8b6b90449..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19873.png b/front/public/images/small/gregtech/gt.blockores/19873.png deleted file mode 100644 index 7da703e12a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19877.png b/front/public/images/small/gregtech/gt.blockores/19877.png deleted file mode 100644 index df76c0833c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19878.png b/front/public/images/small/gregtech/gt.blockores/19878.png deleted file mode 100644 index 14952e4775..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19882.png b/front/public/images/small/gregtech/gt.blockores/19882.png deleted file mode 100644 index bdd449d519..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19883.png b/front/public/images/small/gregtech/gt.blockores/19883.png deleted file mode 100644 index 36556faf5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19884.png b/front/public/images/small/gregtech/gt.blockores/19884.png deleted file mode 100644 index a85efef40f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19894.png b/front/public/images/small/gregtech/gt.blockores/19894.png deleted file mode 100644 index 36556faf5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19900.png b/front/public/images/small/gregtech/gt.blockores/19900.png deleted file mode 100644 index 6c3968a528..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19901.png b/front/public/images/small/gregtech/gt.blockores/19901.png deleted file mode 100644 index 9ee4be062f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19902.png b/front/public/images/small/gregtech/gt.blockores/19902.png deleted file mode 100644 index 430e3fbdfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19903.png b/front/public/images/small/gregtech/gt.blockores/19903.png deleted file mode 100644 index 0bda0ab611..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19904.png b/front/public/images/small/gregtech/gt.blockores/19904.png deleted file mode 100644 index 67cb5a7735..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19905.png b/front/public/images/small/gregtech/gt.blockores/19905.png deleted file mode 100644 index b4eafe7e2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19906.png b/front/public/images/small/gregtech/gt.blockores/19906.png deleted file mode 100644 index bcae111dbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19907.png b/front/public/images/small/gregtech/gt.blockores/19907.png deleted file mode 100644 index eed8c702ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19908.png b/front/public/images/small/gregtech/gt.blockores/19908.png deleted file mode 100644 index 09d8b37567..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19909.png b/front/public/images/small/gregtech/gt.blockores/19909.png deleted file mode 100644 index 6bf7a966fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19910.png b/front/public/images/small/gregtech/gt.blockores/19910.png deleted file mode 100644 index 14a68d86fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19911.png b/front/public/images/small/gregtech/gt.blockores/19911.png deleted file mode 100644 index e6d3d32728..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19912.png b/front/public/images/small/gregtech/gt.blockores/19912.png deleted file mode 100644 index b331b675c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19913.png b/front/public/images/small/gregtech/gt.blockores/19913.png deleted file mode 100644 index ef3996a6db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19914.png b/front/public/images/small/gregtech/gt.blockores/19914.png deleted file mode 100644 index 682078ddb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19915.png b/front/public/images/small/gregtech/gt.blockores/19915.png deleted file mode 100644 index fad1a86eb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19916.png b/front/public/images/small/gregtech/gt.blockores/19916.png deleted file mode 100644 index 294f06eeba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19917.png b/front/public/images/small/gregtech/gt.blockores/19917.png deleted file mode 100644 index e0fdc48a37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19918.png b/front/public/images/small/gregtech/gt.blockores/19918.png deleted file mode 100644 index 99d017f1c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19919.png b/front/public/images/small/gregtech/gt.blockores/19919.png deleted file mode 100644 index d0ab72e274..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19920.png b/front/public/images/small/gregtech/gt.blockores/19920.png deleted file mode 100644 index 85f598da13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19921.png b/front/public/images/small/gregtech/gt.blockores/19921.png deleted file mode 100644 index 5423ef07ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19922.png b/front/public/images/small/gregtech/gt.blockores/19922.png deleted file mode 100644 index 218c19293c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19923.png b/front/public/images/small/gregtech/gt.blockores/19923.png deleted file mode 100644 index 041b5f0e15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19924.png b/front/public/images/small/gregtech/gt.blockores/19924.png deleted file mode 100644 index 851361ce9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19925.png b/front/public/images/small/gregtech/gt.blockores/19925.png deleted file mode 100644 index e73e2d5784..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19926.png b/front/public/images/small/gregtech/gt.blockores/19926.png deleted file mode 100644 index a94619df24..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19927.png b/front/public/images/small/gregtech/gt.blockores/19927.png deleted file mode 100644 index 33303d1ab5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19928.png b/front/public/images/small/gregtech/gt.blockores/19928.png deleted file mode 100644 index ff6b204d32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19929.png b/front/public/images/small/gregtech/gt.blockores/19929.png deleted file mode 100644 index 58e7d2685e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19930.png b/front/public/images/small/gregtech/gt.blockores/19930.png deleted file mode 100644 index 5848cbe8c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19931.png b/front/public/images/small/gregtech/gt.blockores/19931.png deleted file mode 100644 index 9d4278d0e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19932.png b/front/public/images/small/gregtech/gt.blockores/19932.png deleted file mode 100644 index 4732129f74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19933.png b/front/public/images/small/gregtech/gt.blockores/19933.png deleted file mode 100644 index d0ed0b886e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19934.png b/front/public/images/small/gregtech/gt.blockores/19934.png deleted file mode 100644 index 836b0d4d8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19935.png b/front/public/images/small/gregtech/gt.blockores/19935.png deleted file mode 100644 index 07f4c0022d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19936.png b/front/public/images/small/gregtech/gt.blockores/19936.png deleted file mode 100644 index 8101e8e27d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19937.png b/front/public/images/small/gregtech/gt.blockores/19937.png deleted file mode 100644 index b31da82ffb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19938.png b/front/public/images/small/gregtech/gt.blockores/19938.png deleted file mode 100644 index 5848cbe8c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19939.png b/front/public/images/small/gregtech/gt.blockores/19939.png deleted file mode 100644 index e2251f8f0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19941.png b/front/public/images/small/gregtech/gt.blockores/19941.png deleted file mode 100644 index 8e6790c3de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19942.png b/front/public/images/small/gregtech/gt.blockores/19942.png deleted file mode 100644 index 17668d3606..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19943.png b/front/public/images/small/gregtech/gt.blockores/19943.png deleted file mode 100644 index b8953f3231..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19944.png b/front/public/images/small/gregtech/gt.blockores/19944.png deleted file mode 100644 index ed4aee5529..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19945.png b/front/public/images/small/gregtech/gt.blockores/19945.png deleted file mode 100644 index 7e4e2cc5d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19946.png b/front/public/images/small/gregtech/gt.blockores/19946.png deleted file mode 100644 index 0560532bc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19948.png b/front/public/images/small/gregtech/gt.blockores/19948.png deleted file mode 100644 index 967e711ed2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19949.png b/front/public/images/small/gregtech/gt.blockores/19949.png deleted file mode 100644 index d0ed0b886e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19951.png b/front/public/images/small/gregtech/gt.blockores/19951.png deleted file mode 100644 index e4f9f12873..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19952.png b/front/public/images/small/gregtech/gt.blockores/19952.png deleted file mode 100644 index 4b64547b22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19956.png b/front/public/images/small/gregtech/gt.blockores/19956.png deleted file mode 100644 index faa2afcb68..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19966.png b/front/public/images/small/gregtech/gt.blockores/19966.png deleted file mode 100644 index 7470736c49..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19969.png b/front/public/images/small/gregtech/gt.blockores/19969.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19971.png b/front/public/images/small/gregtech/gt.blockores/19971.png deleted file mode 100644 index 54d0d87ba6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19975.png b/front/public/images/small/gregtech/gt.blockores/19975.png deleted file mode 100644 index 12f091237b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19976.png b/front/public/images/small/gregtech/gt.blockores/19976.png deleted file mode 100644 index f393de4455..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19978.png b/front/public/images/small/gregtech/gt.blockores/19978.png deleted file mode 100644 index fb848f7276..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19982.png b/front/public/images/small/gregtech/gt.blockores/19982.png deleted file mode 100644 index 4282a7ebbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/19984.png b/front/public/images/small/gregtech/gt.blockores/19984.png deleted file mode 100644 index b7163af54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/19984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20.png b/front/public/images/small/gregtech/gt.blockores/20.png deleted file mode 100644 index 83dcd0cc01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20006.png b/front/public/images/small/gregtech/gt.blockores/20006.png deleted file mode 100644 index 47d9b04b60..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20008.png b/front/public/images/small/gregtech/gt.blockores/20008.png deleted file mode 100644 index eea992e5af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20018.png b/front/public/images/small/gregtech/gt.blockores/20018.png deleted file mode 100644 index 06b9c31076..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20019.png b/front/public/images/small/gregtech/gt.blockores/20019.png deleted file mode 100644 index 4d4011e1ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20020.png b/front/public/images/small/gregtech/gt.blockores/20020.png deleted file mode 100644 index 1d105bcf72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20022.png b/front/public/images/small/gregtech/gt.blockores/20022.png deleted file mode 100644 index ff3935bcad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20027.png b/front/public/images/small/gregtech/gt.blockores/20027.png deleted file mode 100644 index d574a86504..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20028.png b/front/public/images/small/gregtech/gt.blockores/20028.png deleted file mode 100644 index 889f0e4aad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20029.png b/front/public/images/small/gregtech/gt.blockores/20029.png deleted file mode 100644 index 7b94bbd2e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20030.png b/front/public/images/small/gregtech/gt.blockores/20030.png deleted file mode 100644 index 82f61c2aaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20031.png b/front/public/images/small/gregtech/gt.blockores/20031.png deleted file mode 100644 index 29cde45a31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20032.png b/front/public/images/small/gregtech/gt.blockores/20032.png deleted file mode 100644 index 38a27d5da4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20033.png b/front/public/images/small/gregtech/gt.blockores/20033.png deleted file mode 100644 index 6e2ebbeecc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20034.png b/front/public/images/small/gregtech/gt.blockores/20034.png deleted file mode 100644 index 7e7fe337d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20035.png b/front/public/images/small/gregtech/gt.blockores/20035.png deleted file mode 100644 index 034f69c4ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20036.png b/front/public/images/small/gregtech/gt.blockores/20036.png deleted file mode 100644 index b6a2c56757..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20037.png b/front/public/images/small/gregtech/gt.blockores/20037.png deleted file mode 100644 index be76b8c6b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20039.png b/front/public/images/small/gregtech/gt.blockores/20039.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20043.png b/front/public/images/small/gregtech/gt.blockores/20043.png deleted file mode 100644 index da06f1ee72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20044.png b/front/public/images/small/gregtech/gt.blockores/20044.png deleted file mode 100644 index 38a27d5da4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20045.png b/front/public/images/small/gregtech/gt.blockores/20045.png deleted file mode 100644 index b671283fef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20047.png b/front/public/images/small/gregtech/gt.blockores/20047.png deleted file mode 100644 index 9a2d2bcdc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20048.png b/front/public/images/small/gregtech/gt.blockores/20048.png deleted file mode 100644 index 8f9e3cf69b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20052.png b/front/public/images/small/gregtech/gt.blockores/20052.png deleted file mode 100644 index 1932797140..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20054.png b/front/public/images/small/gregtech/gt.blockores/20054.png deleted file mode 100644 index be76b8c6b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20055.png b/front/public/images/small/gregtech/gt.blockores/20055.png deleted file mode 100644 index f2f6b3633b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20056.png b/front/public/images/small/gregtech/gt.blockores/20056.png deleted file mode 100644 index 771607e886..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20057.png b/front/public/images/small/gregtech/gt.blockores/20057.png deleted file mode 100644 index a32556b942..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20058.png b/front/public/images/small/gregtech/gt.blockores/20058.png deleted file mode 100644 index 6a9fa95f06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20059.png b/front/public/images/small/gregtech/gt.blockores/20059.png deleted file mode 100644 index ee2923ddae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2006.png b/front/public/images/small/gregtech/gt.blockores/2006.png deleted file mode 100644 index abbd59b4b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20062.png b/front/public/images/small/gregtech/gt.blockores/20062.png deleted file mode 100644 index eef3980db5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20063.png b/front/public/images/small/gregtech/gt.blockores/20063.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20064.png b/front/public/images/small/gregtech/gt.blockores/20064.png deleted file mode 100644 index c9b91c6d0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20065.png b/front/public/images/small/gregtech/gt.blockores/20065.png deleted file mode 100644 index 1258820ad7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20066.png b/front/public/images/small/gregtech/gt.blockores/20066.png deleted file mode 100644 index 5f48e3cd42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20067.png b/front/public/images/small/gregtech/gt.blockores/20067.png deleted file mode 100644 index 45367c7e81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20068.png b/front/public/images/small/gregtech/gt.blockores/20068.png deleted file mode 100644 index 4f5a086116..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20069.png b/front/public/images/small/gregtech/gt.blockores/20069.png deleted file mode 100644 index cdcea3da13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20070.png b/front/public/images/small/gregtech/gt.blockores/20070.png deleted file mode 100644 index 950fd5b1e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20071.png b/front/public/images/small/gregtech/gt.blockores/20071.png deleted file mode 100644 index 69c2a79514..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20072.png b/front/public/images/small/gregtech/gt.blockores/20072.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20073.png b/front/public/images/small/gregtech/gt.blockores/20073.png deleted file mode 100644 index 51d29a1282..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20074.png b/front/public/images/small/gregtech/gt.blockores/20074.png deleted file mode 100644 index ff3c9bca54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20075.png b/front/public/images/small/gregtech/gt.blockores/20075.png deleted file mode 100644 index 1e63dd3be1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20076.png b/front/public/images/small/gregtech/gt.blockores/20076.png deleted file mode 100644 index cc8ffc7572..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20077.png b/front/public/images/small/gregtech/gt.blockores/20077.png deleted file mode 100644 index fcbc917650..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20078.png b/front/public/images/small/gregtech/gt.blockores/20078.png deleted file mode 100644 index 8e918bc289..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2008.png b/front/public/images/small/gregtech/gt.blockores/2008.png deleted file mode 100644 index af5610cb5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20080.png b/front/public/images/small/gregtech/gt.blockores/20080.png deleted file mode 100644 index 4c6cb25b82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20081.png b/front/public/images/small/gregtech/gt.blockores/20081.png deleted file mode 100644 index 7b94bbd2e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20083.png b/front/public/images/small/gregtech/gt.blockores/20083.png deleted file mode 100644 index 87cad9ecf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20084.png b/front/public/images/small/gregtech/gt.blockores/20084.png deleted file mode 100644 index 671f7000cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20085.png b/front/public/images/small/gregtech/gt.blockores/20085.png deleted file mode 100644 index 90896c62a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20086.png b/front/public/images/small/gregtech/gt.blockores/20086.png deleted file mode 100644 index 9a18f1142a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20089.png b/front/public/images/small/gregtech/gt.blockores/20089.png deleted file mode 100644 index e56c178746..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20090.png b/front/public/images/small/gregtech/gt.blockores/20090.png deleted file mode 100644 index 9a1f5abf3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20096.png b/front/public/images/small/gregtech/gt.blockores/20096.png deleted file mode 100644 index 0f8c0af427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20097.png b/front/public/images/small/gregtech/gt.blockores/20097.png deleted file mode 100644 index 6dc68ecf25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20098.png b/front/public/images/small/gregtech/gt.blockores/20098.png deleted file mode 100644 index 90311bbc0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20100.png b/front/public/images/small/gregtech/gt.blockores/20100.png deleted file mode 100644 index 9b7843aca8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20101.png b/front/public/images/small/gregtech/gt.blockores/20101.png deleted file mode 100644 index e8b5ba3ac7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20103.png b/front/public/images/small/gregtech/gt.blockores/20103.png deleted file mode 100644 index 38a27d5da4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20110.png b/front/public/images/small/gregtech/gt.blockores/20110.png deleted file mode 100644 index 27d4e6d328..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20129.png b/front/public/images/small/gregtech/gt.blockores/20129.png deleted file mode 100644 index 29cde45a31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2018.png b/front/public/images/small/gregtech/gt.blockores/2018.png deleted file mode 100644 index 7a8cc7feb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2019.png b/front/public/images/small/gregtech/gt.blockores/2019.png deleted file mode 100644 index f9a78ba62b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2020.png b/front/public/images/small/gregtech/gt.blockores/2020.png deleted file mode 100644 index 7e4b4be69e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2022.png b/front/public/images/small/gregtech/gt.blockores/2022.png deleted file mode 100644 index 6cf7bdde76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2027.png b/front/public/images/small/gregtech/gt.blockores/2027.png deleted file mode 100644 index 332113eb8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2028.png b/front/public/images/small/gregtech/gt.blockores/2028.png deleted file mode 100644 index 159d630959..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2029.png b/front/public/images/small/gregtech/gt.blockores/2029.png deleted file mode 100644 index ec3d851861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2030.png b/front/public/images/small/gregtech/gt.blockores/2030.png deleted file mode 100644 index 706ecad31f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20303.png b/front/public/images/small/gregtech/gt.blockores/20303.png deleted file mode 100644 index 52bf0ef4aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20307.png b/front/public/images/small/gregtech/gt.blockores/20307.png deleted file mode 100644 index 9783b99f2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2031.png b/front/public/images/small/gregtech/gt.blockores/2031.png deleted file mode 100644 index f2a2f065c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20319.png b/front/public/images/small/gregtech/gt.blockores/20319.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2032.png b/front/public/images/small/gregtech/gt.blockores/2032.png deleted file mode 100644 index 171b8692c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20320.png b/front/public/images/small/gregtech/gt.blockores/20320.png deleted file mode 100644 index 1abfeac662..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20323.png b/front/public/images/small/gregtech/gt.blockores/20323.png deleted file mode 100644 index 04a41397ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20324.png b/front/public/images/small/gregtech/gt.blockores/20324.png deleted file mode 100644 index 7b94bbd2e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20326.png b/front/public/images/small/gregtech/gt.blockores/20326.png deleted file mode 100644 index a5cb92d905..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20327.png b/front/public/images/small/gregtech/gt.blockores/20327.png deleted file mode 100644 index 8d3b4349a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20329.png b/front/public/images/small/gregtech/gt.blockores/20329.png deleted file mode 100644 index 678c7d19ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2033.png b/front/public/images/small/gregtech/gt.blockores/2033.png deleted file mode 100644 index 38090fbc3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20331.png b/front/public/images/small/gregtech/gt.blockores/20331.png deleted file mode 100644 index 0725e6e40d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20336.png b/front/public/images/small/gregtech/gt.blockores/20336.png deleted file mode 100644 index 380d320f7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2034.png b/front/public/images/small/gregtech/gt.blockores/2034.png deleted file mode 100644 index 3c96f01ed2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20340.png b/front/public/images/small/gregtech/gt.blockores/20340.png deleted file mode 100644 index 0d49d4deca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20342.png b/front/public/images/small/gregtech/gt.blockores/20342.png deleted file mode 100644 index 014efd06e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20347.png b/front/public/images/small/gregtech/gt.blockores/20347.png deleted file mode 100644 index fd976025dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2035.png b/front/public/images/small/gregtech/gt.blockores/2035.png deleted file mode 100644 index 6d6ecf2225..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2036.png b/front/public/images/small/gregtech/gt.blockores/2036.png deleted file mode 100644 index 2a47163441..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20368.png b/front/public/images/small/gregtech/gt.blockores/20368.png deleted file mode 100644 index b485e28c65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2037.png b/front/public/images/small/gregtech/gt.blockores/2037.png deleted file mode 100644 index d787a0e9d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20375.png b/front/public/images/small/gregtech/gt.blockores/20375.png deleted file mode 100644 index 3c22b0fb55..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20382.png b/front/public/images/small/gregtech/gt.blockores/20382.png deleted file mode 100644 index 4eb1be8fad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20386.png b/front/public/images/small/gregtech/gt.blockores/20386.png deleted file mode 100644 index ab0373601a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20387.png b/front/public/images/small/gregtech/gt.blockores/20387.png deleted file mode 100644 index 2a1416d610..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20388.png b/front/public/images/small/gregtech/gt.blockores/20388.png deleted file mode 100644 index 7b94bbd2e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20389.png b/front/public/images/small/gregtech/gt.blockores/20389.png deleted file mode 100644 index d0e3309cc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2039.png b/front/public/images/small/gregtech/gt.blockores/2039.png deleted file mode 100644 index 5e8c308493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20390.png b/front/public/images/small/gregtech/gt.blockores/20390.png deleted file mode 100644 index 1d58c6cc1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20391.png b/front/public/images/small/gregtech/gt.blockores/20391.png deleted file mode 100644 index 2e4235217e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20392.png b/front/public/images/small/gregtech/gt.blockores/20392.png deleted file mode 100644 index ecc4362138..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20393.png b/front/public/images/small/gregtech/gt.blockores/20393.png deleted file mode 100644 index d714d02712..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20394.png b/front/public/images/small/gregtech/gt.blockores/20394.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20395.png b/front/public/images/small/gregtech/gt.blockores/20395.png deleted file mode 100644 index 7b94bbd2e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20398.png b/front/public/images/small/gregtech/gt.blockores/20398.png deleted file mode 100644 index 9f49670221..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2043.png b/front/public/images/small/gregtech/gt.blockores/2043.png deleted file mode 100644 index 916f615b18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2044.png b/front/public/images/small/gregtech/gt.blockores/2044.png deleted file mode 100644 index 171b8692c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2045.png b/front/public/images/small/gregtech/gt.blockores/2045.png deleted file mode 100644 index f4ee971d5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2047.png b/front/public/images/small/gregtech/gt.blockores/2047.png deleted file mode 100644 index 46747e29ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2048.png b/front/public/images/small/gregtech/gt.blockores/2048.png deleted file mode 100644 index c7148b7dfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20485.png b/front/public/images/small/gregtech/gt.blockores/20485.png deleted file mode 100644 index 93affd019f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20488.png b/front/public/images/small/gregtech/gt.blockores/20488.png deleted file mode 100644 index b6d17794cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20489.png b/front/public/images/small/gregtech/gt.blockores/20489.png deleted file mode 100644 index 482d5e093e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20500.png b/front/public/images/small/gregtech/gt.blockores/20500.png deleted file mode 100644 index e3c2d5e0f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20501.png b/front/public/images/small/gregtech/gt.blockores/20501.png deleted file mode 100644 index 5fd3a7e604..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20502.png b/front/public/images/small/gregtech/gt.blockores/20502.png deleted file mode 100644 index 8d84957f78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20503.png b/front/public/images/small/gregtech/gt.blockores/20503.png deleted file mode 100644 index a5f679fd71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20504.png b/front/public/images/small/gregtech/gt.blockores/20504.png deleted file mode 100644 index 85b62c656e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20505.png b/front/public/images/small/gregtech/gt.blockores/20505.png deleted file mode 100644 index c78e373b92..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20506.png b/front/public/images/small/gregtech/gt.blockores/20506.png deleted file mode 100644 index 29cde45a31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20507.png b/front/public/images/small/gregtech/gt.blockores/20507.png deleted file mode 100644 index a9a31bfd5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20508.png b/front/public/images/small/gregtech/gt.blockores/20508.png deleted file mode 100644 index 2425fec7f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20509.png b/front/public/images/small/gregtech/gt.blockores/20509.png deleted file mode 100644 index 095429c44f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20510.png b/front/public/images/small/gregtech/gt.blockores/20510.png deleted file mode 100644 index 1b199f1f4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20511.png b/front/public/images/small/gregtech/gt.blockores/20511.png deleted file mode 100644 index 5706708017..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20512.png b/front/public/images/small/gregtech/gt.blockores/20512.png deleted file mode 100644 index 8d84957f78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20513.png b/front/public/images/small/gregtech/gt.blockores/20513.png deleted file mode 100644 index 1b199f1f4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20514.png b/front/public/images/small/gregtech/gt.blockores/20514.png deleted file mode 100644 index a9a31bfd5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20515.png b/front/public/images/small/gregtech/gt.blockores/20515.png deleted file mode 100644 index ca408f9c05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20516.png b/front/public/images/small/gregtech/gt.blockores/20516.png deleted file mode 100644 index 03d3bc6d93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20517.png b/front/public/images/small/gregtech/gt.blockores/20517.png deleted file mode 100644 index 634549d9fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20518.png b/front/public/images/small/gregtech/gt.blockores/20518.png deleted file mode 100644 index 78e60e6d40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20519.png b/front/public/images/small/gregtech/gt.blockores/20519.png deleted file mode 100644 index 78e60e6d40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2052.png b/front/public/images/small/gregtech/gt.blockores/2052.png deleted file mode 100644 index 7dd99ef562..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20520.png b/front/public/images/small/gregtech/gt.blockores/20520.png deleted file mode 100644 index 25c61ca3d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20521.png b/front/public/images/small/gregtech/gt.blockores/20521.png deleted file mode 100644 index f8d3081877..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20522.png b/front/public/images/small/gregtech/gt.blockores/20522.png deleted file mode 100644 index 12885f10ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20523.png b/front/public/images/small/gregtech/gt.blockores/20523.png deleted file mode 100644 index 037a6b4011..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20524.png b/front/public/images/small/gregtech/gt.blockores/20524.png deleted file mode 100644 index 91c5c5b525..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20525.png b/front/public/images/small/gregtech/gt.blockores/20525.png deleted file mode 100644 index b8da552b94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20526.png b/front/public/images/small/gregtech/gt.blockores/20526.png deleted file mode 100644 index 6c8c08c6b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20527.png b/front/public/images/small/gregtech/gt.blockores/20527.png deleted file mode 100644 index 5706708017..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20528.png b/front/public/images/small/gregtech/gt.blockores/20528.png deleted file mode 100644 index 9be57555a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20529.png b/front/public/images/small/gregtech/gt.blockores/20529.png deleted file mode 100644 index 21b5394677..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20530.png b/front/public/images/small/gregtech/gt.blockores/20530.png deleted file mode 100644 index d0337ab24c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20531.png b/front/public/images/small/gregtech/gt.blockores/20531.png deleted file mode 100644 index 06b9c31076..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20534.png b/front/public/images/small/gregtech/gt.blockores/20534.png deleted file mode 100644 index 662069d130..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20535.png b/front/public/images/small/gregtech/gt.blockores/20535.png deleted file mode 100644 index 4475e3e030..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20537.png b/front/public/images/small/gregtech/gt.blockores/20537.png deleted file mode 100644 index b5abf26a8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20538.png b/front/public/images/small/gregtech/gt.blockores/20538.png deleted file mode 100644 index b5188528c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2054.png b/front/public/images/small/gregtech/gt.blockores/2054.png deleted file mode 100644 index d787a0e9d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20540.png b/front/public/images/small/gregtech/gt.blockores/20540.png deleted file mode 100644 index f8d3081877..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20541.png b/front/public/images/small/gregtech/gt.blockores/20541.png deleted file mode 100644 index 047b2f522e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20542.png b/front/public/images/small/gregtech/gt.blockores/20542.png deleted file mode 100644 index 0dfed0a581..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20543.png b/front/public/images/small/gregtech/gt.blockores/20543.png deleted file mode 100644 index ac2a111580..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20544.png b/front/public/images/small/gregtech/gt.blockores/20544.png deleted file mode 100644 index 982730d9eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20545.png b/front/public/images/small/gregtech/gt.blockores/20545.png deleted file mode 100644 index b45c40bdb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20548.png b/front/public/images/small/gregtech/gt.blockores/20548.png deleted file mode 100644 index 023bbf7f61..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20549.png b/front/public/images/small/gregtech/gt.blockores/20549.png deleted file mode 100644 index 26e264fee7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2055.png b/front/public/images/small/gregtech/gt.blockores/2055.png deleted file mode 100644 index 544dad5a80..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2056.png b/front/public/images/small/gregtech/gt.blockores/2056.png deleted file mode 100644 index a454696d56..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2057.png b/front/public/images/small/gregtech/gt.blockores/2057.png deleted file mode 100644 index 6d6d54696d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2058.png b/front/public/images/small/gregtech/gt.blockores/2058.png deleted file mode 100644 index 710e92d961..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2059.png b/front/public/images/small/gregtech/gt.blockores/2059.png deleted file mode 100644 index 458fa963ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20607.png b/front/public/images/small/gregtech/gt.blockores/20607.png deleted file mode 100644 index 0b3f1b3f6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2062.png b/front/public/images/small/gregtech/gt.blockores/2062.png deleted file mode 100644 index fccf7dd001..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2063.png b/front/public/images/small/gregtech/gt.blockores/2063.png deleted file mode 100644 index 5e8c308493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2064.png b/front/public/images/small/gregtech/gt.blockores/2064.png deleted file mode 100644 index 6bb6ecd36f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2065.png b/front/public/images/small/gregtech/gt.blockores/2065.png deleted file mode 100644 index 602f3eab5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2066.png b/front/public/images/small/gregtech/gt.blockores/2066.png deleted file mode 100644 index 6fa1872122..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2067.png b/front/public/images/small/gregtech/gt.blockores/2067.png deleted file mode 100644 index fd38955950..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2068.png b/front/public/images/small/gregtech/gt.blockores/2068.png deleted file mode 100644 index e2dbe91ec7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2069.png b/front/public/images/small/gregtech/gt.blockores/2069.png deleted file mode 100644 index a3e0dfca96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20699.png b/front/public/images/small/gregtech/gt.blockores/20699.png deleted file mode 100644 index 3b798fb274..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2070.png b/front/public/images/small/gregtech/gt.blockores/2070.png deleted file mode 100644 index 9a886e3113..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2071.png b/front/public/images/small/gregtech/gt.blockores/2071.png deleted file mode 100644 index 672767d9e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2072.png b/front/public/images/small/gregtech/gt.blockores/2072.png deleted file mode 100644 index 5e8c308493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2073.png b/front/public/images/small/gregtech/gt.blockores/2073.png deleted file mode 100644 index a108949ed8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2074.png b/front/public/images/small/gregtech/gt.blockores/2074.png deleted file mode 100644 index 950cdfcd61..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2075.png b/front/public/images/small/gregtech/gt.blockores/2075.png deleted file mode 100644 index 12c3489462..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2076.png b/front/public/images/small/gregtech/gt.blockores/2076.png deleted file mode 100644 index b5443190f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2077.png b/front/public/images/small/gregtech/gt.blockores/2077.png deleted file mode 100644 index f7b7d6e721..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20770.png b/front/public/images/small/gregtech/gt.blockores/20770.png deleted file mode 100644 index 37d9fd8ec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2078.png b/front/public/images/small/gregtech/gt.blockores/2078.png deleted file mode 100644 index 800f5882dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20797.png b/front/public/images/small/gregtech/gt.blockores/20797.png deleted file mode 100644 index a32556b942..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2080.png b/front/public/images/small/gregtech/gt.blockores/2080.png deleted file mode 100644 index 687bbc401c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2081.png b/front/public/images/small/gregtech/gt.blockores/2081.png deleted file mode 100644 index ec3d851861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20810.png b/front/public/images/small/gregtech/gt.blockores/20810.png deleted file mode 100644 index 7cf58c5dfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20812.png b/front/public/images/small/gregtech/gt.blockores/20812.png deleted file mode 100644 index 64150cce4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20817.png b/front/public/images/small/gregtech/gt.blockores/20817.png deleted file mode 100644 index 29cde45a31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20820.png b/front/public/images/small/gregtech/gt.blockores/20820.png deleted file mode 100644 index c55d69253d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20821.png b/front/public/images/small/gregtech/gt.blockores/20821.png deleted file mode 100644 index 14b3ee5776..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20822.png b/front/public/images/small/gregtech/gt.blockores/20822.png deleted file mode 100644 index 929811ebfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20823.png b/front/public/images/small/gregtech/gt.blockores/20823.png deleted file mode 100644 index 909f3f9599..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20824.png b/front/public/images/small/gregtech/gt.blockores/20824.png deleted file mode 100644 index a32556b942..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20825.png b/front/public/images/small/gregtech/gt.blockores/20825.png deleted file mode 100644 index 6653a2505f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20826.png b/front/public/images/small/gregtech/gt.blockores/20826.png deleted file mode 100644 index 7e3972a67d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20827.png b/front/public/images/small/gregtech/gt.blockores/20827.png deleted file mode 100644 index 6e2ebbeecc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20828.png b/front/public/images/small/gregtech/gt.blockores/20828.png deleted file mode 100644 index 90896c62a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20829.png b/front/public/images/small/gregtech/gt.blockores/20829.png deleted file mode 100644 index db9e9500d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2083.png b/front/public/images/small/gregtech/gt.blockores/2083.png deleted file mode 100644 index c6611c969d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20830.png b/front/public/images/small/gregtech/gt.blockores/20830.png deleted file mode 100644 index 957abf8dca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20831.png b/front/public/images/small/gregtech/gt.blockores/20831.png deleted file mode 100644 index 929811ebfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20833.png b/front/public/images/small/gregtech/gt.blockores/20833.png deleted file mode 100644 index 662069d130..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20834.png b/front/public/images/small/gregtech/gt.blockores/20834.png deleted file mode 100644 index 8a202445ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20835.png b/front/public/images/small/gregtech/gt.blockores/20835.png deleted file mode 100644 index 417afd9e86..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20836.png b/front/public/images/small/gregtech/gt.blockores/20836.png deleted file mode 100644 index b559e8e9be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20838.png b/front/public/images/small/gregtech/gt.blockores/20838.png deleted file mode 100644 index 8d84957f78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20839.png b/front/public/images/small/gregtech/gt.blockores/20839.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2084.png b/front/public/images/small/gregtech/gt.blockores/2084.png deleted file mode 100644 index 359b8cff50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20840.png b/front/public/images/small/gregtech/gt.blockores/20840.png deleted file mode 100644 index 4905bde2cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20841.png b/front/public/images/small/gregtech/gt.blockores/20841.png deleted file mode 100644 index 8d6f3900e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20842.png b/front/public/images/small/gregtech/gt.blockores/20842.png deleted file mode 100644 index 7853be4550..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2085.png b/front/public/images/small/gregtech/gt.blockores/2085.png deleted file mode 100644 index 5ecdd39e1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20855.png b/front/public/images/small/gregtech/gt.blockores/20855.png deleted file mode 100644 index 0632e8e52e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20856.png b/front/public/images/small/gregtech/gt.blockores/20856.png deleted file mode 100644 index 0ce868c0c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2086.png b/front/public/images/small/gregtech/gt.blockores/2086.png deleted file mode 100644 index 4fe45c7bdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20861.png b/front/public/images/small/gregtech/gt.blockores/20861.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20865.png b/front/public/images/small/gregtech/gt.blockores/20865.png deleted file mode 100644 index 1932797140..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20868.png b/front/public/images/small/gregtech/gt.blockores/20868.png deleted file mode 100644 index 13c05af5d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20870.png b/front/public/images/small/gregtech/gt.blockores/20870.png deleted file mode 100644 index 5a2dafb7b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20871.png b/front/public/images/small/gregtech/gt.blockores/20871.png deleted file mode 100644 index 61d2813b37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20873.png b/front/public/images/small/gregtech/gt.blockores/20873.png deleted file mode 100644 index 28557eb915..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20877.png b/front/public/images/small/gregtech/gt.blockores/20877.png deleted file mode 100644 index 75bd0c4cc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20878.png b/front/public/images/small/gregtech/gt.blockores/20878.png deleted file mode 100644 index b6c4b704a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20882.png b/front/public/images/small/gregtech/gt.blockores/20882.png deleted file mode 100644 index a9a31bfd5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20883.png b/front/public/images/small/gregtech/gt.blockores/20883.png deleted file mode 100644 index 662069d130..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20884.png b/front/public/images/small/gregtech/gt.blockores/20884.png deleted file mode 100644 index cdbf403bb2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2089.png b/front/public/images/small/gregtech/gt.blockores/2089.png deleted file mode 100644 index 6f1b1b8902..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20894.png b/front/public/images/small/gregtech/gt.blockores/20894.png deleted file mode 100644 index 662069d130..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2090.png b/front/public/images/small/gregtech/gt.blockores/2090.png deleted file mode 100644 index 97c5b690fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20900.png b/front/public/images/small/gregtech/gt.blockores/20900.png deleted file mode 100644 index ce2e828153..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20901.png b/front/public/images/small/gregtech/gt.blockores/20901.png deleted file mode 100644 index de23834078..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20902.png b/front/public/images/small/gregtech/gt.blockores/20902.png deleted file mode 100644 index 87100e5410..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20903.png b/front/public/images/small/gregtech/gt.blockores/20903.png deleted file mode 100644 index 3382bb132f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20904.png b/front/public/images/small/gregtech/gt.blockores/20904.png deleted file mode 100644 index 4cab65d6b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20905.png b/front/public/images/small/gregtech/gt.blockores/20905.png deleted file mode 100644 index 02e73e8b86..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20906.png b/front/public/images/small/gregtech/gt.blockores/20906.png deleted file mode 100644 index c971e6d45f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20907.png b/front/public/images/small/gregtech/gt.blockores/20907.png deleted file mode 100644 index 9ba948d464..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20908.png b/front/public/images/small/gregtech/gt.blockores/20908.png deleted file mode 100644 index 8677a92fc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20909.png b/front/public/images/small/gregtech/gt.blockores/20909.png deleted file mode 100644 index f0bc859e9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20910.png b/front/public/images/small/gregtech/gt.blockores/20910.png deleted file mode 100644 index 8f4b8e133d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20911.png b/front/public/images/small/gregtech/gt.blockores/20911.png deleted file mode 100644 index 5e6de6773f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20912.png b/front/public/images/small/gregtech/gt.blockores/20912.png deleted file mode 100644 index 18f820d9e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20913.png b/front/public/images/small/gregtech/gt.blockores/20913.png deleted file mode 100644 index 8e894b4c91..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20914.png b/front/public/images/small/gregtech/gt.blockores/20914.png deleted file mode 100644 index fd99af981b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20915.png b/front/public/images/small/gregtech/gt.blockores/20915.png deleted file mode 100644 index 8b82a057be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20916.png b/front/public/images/small/gregtech/gt.blockores/20916.png deleted file mode 100644 index cf60a3e350..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20917.png b/front/public/images/small/gregtech/gt.blockores/20917.png deleted file mode 100644 index 9aa5a2e6d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20918.png b/front/public/images/small/gregtech/gt.blockores/20918.png deleted file mode 100644 index 017bad1773..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20919.png b/front/public/images/small/gregtech/gt.blockores/20919.png deleted file mode 100644 index 41278e1eef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20920.png b/front/public/images/small/gregtech/gt.blockores/20920.png deleted file mode 100644 index 904d82a938..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20921.png b/front/public/images/small/gregtech/gt.blockores/20921.png deleted file mode 100644 index 6bae729d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20922.png b/front/public/images/small/gregtech/gt.blockores/20922.png deleted file mode 100644 index c47abe5ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20923.png b/front/public/images/small/gregtech/gt.blockores/20923.png deleted file mode 100644 index 0ab7e78f71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20924.png b/front/public/images/small/gregtech/gt.blockores/20924.png deleted file mode 100644 index 91d99cd64b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20925.png b/front/public/images/small/gregtech/gt.blockores/20925.png deleted file mode 100644 index 2079f364f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20926.png b/front/public/images/small/gregtech/gt.blockores/20926.png deleted file mode 100644 index 59c2afa8fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20927.png b/front/public/images/small/gregtech/gt.blockores/20927.png deleted file mode 100644 index caacabc469..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20928.png b/front/public/images/small/gregtech/gt.blockores/20928.png deleted file mode 100644 index 83bd41c420..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20929.png b/front/public/images/small/gregtech/gt.blockores/20929.png deleted file mode 100644 index 83548bd694..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20930.png b/front/public/images/small/gregtech/gt.blockores/20930.png deleted file mode 100644 index 929811ebfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20931.png b/front/public/images/small/gregtech/gt.blockores/20931.png deleted file mode 100644 index ff3935bcad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20932.png b/front/public/images/small/gregtech/gt.blockores/20932.png deleted file mode 100644 index 1db4bea249..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20933.png b/front/public/images/small/gregtech/gt.blockores/20933.png deleted file mode 100644 index 65db2912f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20934.png b/front/public/images/small/gregtech/gt.blockores/20934.png deleted file mode 100644 index 6593efe389..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20935.png b/front/public/images/small/gregtech/gt.blockores/20935.png deleted file mode 100644 index fced81a3fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20936.png b/front/public/images/small/gregtech/gt.blockores/20936.png deleted file mode 100644 index c710d89d4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20937.png b/front/public/images/small/gregtech/gt.blockores/20937.png deleted file mode 100644 index a32556b942..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20938.png b/front/public/images/small/gregtech/gt.blockores/20938.png deleted file mode 100644 index 929811ebfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20939.png b/front/public/images/small/gregtech/gt.blockores/20939.png deleted file mode 100644 index b48d9f6304..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20941.png b/front/public/images/small/gregtech/gt.blockores/20941.png deleted file mode 100644 index 29cde45a31..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20942.png b/front/public/images/small/gregtech/gt.blockores/20942.png deleted file mode 100644 index e7fc5b175d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20943.png b/front/public/images/small/gregtech/gt.blockores/20943.png deleted file mode 100644 index c775033be5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20944.png b/front/public/images/small/gregtech/gt.blockores/20944.png deleted file mode 100644 index 4fcb436d03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20945.png b/front/public/images/small/gregtech/gt.blockores/20945.png deleted file mode 100644 index 4475e3e030..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20946.png b/front/public/images/small/gregtech/gt.blockores/20946.png deleted file mode 100644 index b559e8e9be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20948.png b/front/public/images/small/gregtech/gt.blockores/20948.png deleted file mode 100644 index 32611f33c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20949.png b/front/public/images/small/gregtech/gt.blockores/20949.png deleted file mode 100644 index 65db2912f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20951.png b/front/public/images/small/gregtech/gt.blockores/20951.png deleted file mode 100644 index a9f0ebd2d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20952.png b/front/public/images/small/gregtech/gt.blockores/20952.png deleted file mode 100644 index 1c33c67c4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20956.png b/front/public/images/small/gregtech/gt.blockores/20956.png deleted file mode 100644 index 9ba5d3cbf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2096.png b/front/public/images/small/gregtech/gt.blockores/2096.png deleted file mode 100644 index 8a628d723a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20966.png b/front/public/images/small/gregtech/gt.blockores/20966.png deleted file mode 100644 index 28ca60225e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20969.png b/front/public/images/small/gregtech/gt.blockores/20969.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2097.png b/front/public/images/small/gregtech/gt.blockores/2097.png deleted file mode 100644 index 257b055e8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20971.png b/front/public/images/small/gregtech/gt.blockores/20971.png deleted file mode 100644 index 8f4a9d56ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20975.png b/front/public/images/small/gregtech/gt.blockores/20975.png deleted file mode 100644 index e922f19ebf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20976.png b/front/public/images/small/gregtech/gt.blockores/20976.png deleted file mode 100644 index 638e212df2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20978.png b/front/public/images/small/gregtech/gt.blockores/20978.png deleted file mode 100644 index 77908a6149..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2098.png b/front/public/images/small/gregtech/gt.blockores/2098.png deleted file mode 100644 index 166606058c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20982.png b/front/public/images/small/gregtech/gt.blockores/20982.png deleted file mode 100644 index 7b94bbd2e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/20984.png b/front/public/images/small/gregtech/gt.blockores/20984.png deleted file mode 100644 index b626a46f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/20984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2100.png b/front/public/images/small/gregtech/gt.blockores/2100.png deleted file mode 100644 index 171ba129eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21006.png b/front/public/images/small/gregtech/gt.blockores/21006.png deleted file mode 100644 index 416a378845..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21008.png b/front/public/images/small/gregtech/gt.blockores/21008.png deleted file mode 100644 index 56178280c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2101.png b/front/public/images/small/gregtech/gt.blockores/2101.png deleted file mode 100644 index 52d8a9e698..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21018.png b/front/public/images/small/gregtech/gt.blockores/21018.png deleted file mode 100644 index 10d347aaf3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21019.png b/front/public/images/small/gregtech/gt.blockores/21019.png deleted file mode 100644 index 0e62ec350c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21020.png b/front/public/images/small/gregtech/gt.blockores/21020.png deleted file mode 100644 index a915a2e6e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21022.png b/front/public/images/small/gregtech/gt.blockores/21022.png deleted file mode 100644 index ca7b51fbeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21027.png b/front/public/images/small/gregtech/gt.blockores/21027.png deleted file mode 100644 index 08a87c0378..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21028.png b/front/public/images/small/gregtech/gt.blockores/21028.png deleted file mode 100644 index 05bce87d8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21029.png b/front/public/images/small/gregtech/gt.blockores/21029.png deleted file mode 100644 index 6eb10980d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2103.png b/front/public/images/small/gregtech/gt.blockores/2103.png deleted file mode 100644 index 171b8692c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21030.png b/front/public/images/small/gregtech/gt.blockores/21030.png deleted file mode 100644 index f6d904c76f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21031.png b/front/public/images/small/gregtech/gt.blockores/21031.png deleted file mode 100644 index c620937af1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21032.png b/front/public/images/small/gregtech/gt.blockores/21032.png deleted file mode 100644 index 7d904440ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21033.png b/front/public/images/small/gregtech/gt.blockores/21033.png deleted file mode 100644 index d1a6bf9945..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21034.png b/front/public/images/small/gregtech/gt.blockores/21034.png deleted file mode 100644 index a77fa20128..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21035.png b/front/public/images/small/gregtech/gt.blockores/21035.png deleted file mode 100644 index f404efd81d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21036.png b/front/public/images/small/gregtech/gt.blockores/21036.png deleted file mode 100644 index 51460cf4fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21037.png b/front/public/images/small/gregtech/gt.blockores/21037.png deleted file mode 100644 index 97e6fa4667..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21039.png b/front/public/images/small/gregtech/gt.blockores/21039.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21043.png b/front/public/images/small/gregtech/gt.blockores/21043.png deleted file mode 100644 index 76b2fb4626..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21044.png b/front/public/images/small/gregtech/gt.blockores/21044.png deleted file mode 100644 index 7d904440ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21045.png b/front/public/images/small/gregtech/gt.blockores/21045.png deleted file mode 100644 index 02f8dd81c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21047.png b/front/public/images/small/gregtech/gt.blockores/21047.png deleted file mode 100644 index 50b226f7ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21048.png b/front/public/images/small/gregtech/gt.blockores/21048.png deleted file mode 100644 index d6bdbcbadd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21052.png b/front/public/images/small/gregtech/gt.blockores/21052.png deleted file mode 100644 index f85caac6c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21054.png b/front/public/images/small/gregtech/gt.blockores/21054.png deleted file mode 100644 index 97e6fa4667..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21055.png b/front/public/images/small/gregtech/gt.blockores/21055.png deleted file mode 100644 index fbfaef97e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21056.png b/front/public/images/small/gregtech/gt.blockores/21056.png deleted file mode 100644 index 520850d777..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21057.png b/front/public/images/small/gregtech/gt.blockores/21057.png deleted file mode 100644 index 67ac57d214..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21058.png b/front/public/images/small/gregtech/gt.blockores/21058.png deleted file mode 100644 index 38d4f15e1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21059.png b/front/public/images/small/gregtech/gt.blockores/21059.png deleted file mode 100644 index 8f4006e49d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21062.png b/front/public/images/small/gregtech/gt.blockores/21062.png deleted file mode 100644 index 5919453eaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21063.png b/front/public/images/small/gregtech/gt.blockores/21063.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21064.png b/front/public/images/small/gregtech/gt.blockores/21064.png deleted file mode 100644 index 577e493690..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21065.png b/front/public/images/small/gregtech/gt.blockores/21065.png deleted file mode 100644 index 5cbb3335ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21066.png b/front/public/images/small/gregtech/gt.blockores/21066.png deleted file mode 100644 index 33fe12c3ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21067.png b/front/public/images/small/gregtech/gt.blockores/21067.png deleted file mode 100644 index ccfc3fb638..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21068.png b/front/public/images/small/gregtech/gt.blockores/21068.png deleted file mode 100644 index 7212f4acf2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21069.png b/front/public/images/small/gregtech/gt.blockores/21069.png deleted file mode 100644 index eec91dddf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21070.png b/front/public/images/small/gregtech/gt.blockores/21070.png deleted file mode 100644 index 88b25ecf04..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21071.png b/front/public/images/small/gregtech/gt.blockores/21071.png deleted file mode 100644 index b165163f62..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21072.png b/front/public/images/small/gregtech/gt.blockores/21072.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21073.png b/front/public/images/small/gregtech/gt.blockores/21073.png deleted file mode 100644 index dcca446844..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21074.png b/front/public/images/small/gregtech/gt.blockores/21074.png deleted file mode 100644 index f08e89e485..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21075.png b/front/public/images/small/gregtech/gt.blockores/21075.png deleted file mode 100644 index 0a3cbcc58c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21076.png b/front/public/images/small/gregtech/gt.blockores/21076.png deleted file mode 100644 index 85f762279c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21077.png b/front/public/images/small/gregtech/gt.blockores/21077.png deleted file mode 100644 index d7448a5513..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21078.png b/front/public/images/small/gregtech/gt.blockores/21078.png deleted file mode 100644 index 4f9372e50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21080.png b/front/public/images/small/gregtech/gt.blockores/21080.png deleted file mode 100644 index b6cc99e138..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21081.png b/front/public/images/small/gregtech/gt.blockores/21081.png deleted file mode 100644 index 6eb10980d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21083.png b/front/public/images/small/gregtech/gt.blockores/21083.png deleted file mode 100644 index bf53571c25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21084.png b/front/public/images/small/gregtech/gt.blockores/21084.png deleted file mode 100644 index 68689f74bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21085.png b/front/public/images/small/gregtech/gt.blockores/21085.png deleted file mode 100644 index c087ea5639..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21086.png b/front/public/images/small/gregtech/gt.blockores/21086.png deleted file mode 100644 index b60a3627d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21089.png b/front/public/images/small/gregtech/gt.blockores/21089.png deleted file mode 100644 index a832cb5a5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21090.png b/front/public/images/small/gregtech/gt.blockores/21090.png deleted file mode 100644 index d851729491..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21096.png b/front/public/images/small/gregtech/gt.blockores/21096.png deleted file mode 100644 index 6e50733944..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21097.png b/front/public/images/small/gregtech/gt.blockores/21097.png deleted file mode 100644 index 71980e2b78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21098.png b/front/public/images/small/gregtech/gt.blockores/21098.png deleted file mode 100644 index e928fa412d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2110.png b/front/public/images/small/gregtech/gt.blockores/2110.png deleted file mode 100644 index a9a8996648..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21100.png b/front/public/images/small/gregtech/gt.blockores/21100.png deleted file mode 100644 index cd3d0d218d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21101.png b/front/public/images/small/gregtech/gt.blockores/21101.png deleted file mode 100644 index ca1e258867..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21103.png b/front/public/images/small/gregtech/gt.blockores/21103.png deleted file mode 100644 index 7d904440ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21110.png b/front/public/images/small/gregtech/gt.blockores/21110.png deleted file mode 100644 index 23463e106e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21129.png b/front/public/images/small/gregtech/gt.blockores/21129.png deleted file mode 100644 index c620937af1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2129.png b/front/public/images/small/gregtech/gt.blockores/2129.png deleted file mode 100644 index f2a2f065c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21303.png b/front/public/images/small/gregtech/gt.blockores/21303.png deleted file mode 100644 index 8f0a33b418..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21307.png b/front/public/images/small/gregtech/gt.blockores/21307.png deleted file mode 100644 index ac64dd8142..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21319.png b/front/public/images/small/gregtech/gt.blockores/21319.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21320.png b/front/public/images/small/gregtech/gt.blockores/21320.png deleted file mode 100644 index 5c110f6a64..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21323.png b/front/public/images/small/gregtech/gt.blockores/21323.png deleted file mode 100644 index 35bbde12ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21324.png b/front/public/images/small/gregtech/gt.blockores/21324.png deleted file mode 100644 index 6eb10980d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21326.png b/front/public/images/small/gregtech/gt.blockores/21326.png deleted file mode 100644 index 3db83d21b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21327.png b/front/public/images/small/gregtech/gt.blockores/21327.png deleted file mode 100644 index c3afe544d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21329.png b/front/public/images/small/gregtech/gt.blockores/21329.png deleted file mode 100644 index df59ede847..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21331.png b/front/public/images/small/gregtech/gt.blockores/21331.png deleted file mode 100644 index 15a0668412..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21336.png b/front/public/images/small/gregtech/gt.blockores/21336.png deleted file mode 100644 index 4794b156b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21340.png b/front/public/images/small/gregtech/gt.blockores/21340.png deleted file mode 100644 index b3c2ca9c07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21342.png b/front/public/images/small/gregtech/gt.blockores/21342.png deleted file mode 100644 index 4e48945109..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21347.png b/front/public/images/small/gregtech/gt.blockores/21347.png deleted file mode 100644 index 4f160e4380..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21368.png b/front/public/images/small/gregtech/gt.blockores/21368.png deleted file mode 100644 index dab8ae7a67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21375.png b/front/public/images/small/gregtech/gt.blockores/21375.png deleted file mode 100644 index 0c43129f9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21382.png b/front/public/images/small/gregtech/gt.blockores/21382.png deleted file mode 100644 index e564c9f5bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21386.png b/front/public/images/small/gregtech/gt.blockores/21386.png deleted file mode 100644 index 4900ca3007..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21387.png b/front/public/images/small/gregtech/gt.blockores/21387.png deleted file mode 100644 index d9a3d26a4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21388.png b/front/public/images/small/gregtech/gt.blockores/21388.png deleted file mode 100644 index 6eb10980d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21389.png b/front/public/images/small/gregtech/gt.blockores/21389.png deleted file mode 100644 index cad1e41589..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21390.png b/front/public/images/small/gregtech/gt.blockores/21390.png deleted file mode 100644 index 114cba328d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21391.png b/front/public/images/small/gregtech/gt.blockores/21391.png deleted file mode 100644 index ab547c2bad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21392.png b/front/public/images/small/gregtech/gt.blockores/21392.png deleted file mode 100644 index b6950769db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21393.png b/front/public/images/small/gregtech/gt.blockores/21393.png deleted file mode 100644 index 32de494743..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21394.png b/front/public/images/small/gregtech/gt.blockores/21394.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21395.png b/front/public/images/small/gregtech/gt.blockores/21395.png deleted file mode 100644 index 6eb10980d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21398.png b/front/public/images/small/gregtech/gt.blockores/21398.png deleted file mode 100644 index b4cdcb3c68..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21485.png b/front/public/images/small/gregtech/gt.blockores/21485.png deleted file mode 100644 index 905881ec0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21488.png b/front/public/images/small/gregtech/gt.blockores/21488.png deleted file mode 100644 index f663493776..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21489.png b/front/public/images/small/gregtech/gt.blockores/21489.png deleted file mode 100644 index 581cf74f33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21500.png b/front/public/images/small/gregtech/gt.blockores/21500.png deleted file mode 100644 index 51061e16d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21501.png b/front/public/images/small/gregtech/gt.blockores/21501.png deleted file mode 100644 index 0237a482c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21502.png b/front/public/images/small/gregtech/gt.blockores/21502.png deleted file mode 100644 index 259d17f312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21503.png b/front/public/images/small/gregtech/gt.blockores/21503.png deleted file mode 100644 index 6d1dbbee17..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21504.png b/front/public/images/small/gregtech/gt.blockores/21504.png deleted file mode 100644 index 2b4304b4f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21505.png b/front/public/images/small/gregtech/gt.blockores/21505.png deleted file mode 100644 index c4ac67104c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21506.png b/front/public/images/small/gregtech/gt.blockores/21506.png deleted file mode 100644 index c620937af1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21507.png b/front/public/images/small/gregtech/gt.blockores/21507.png deleted file mode 100644 index f1c9ce5c67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21508.png b/front/public/images/small/gregtech/gt.blockores/21508.png deleted file mode 100644 index dc4eff95bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21509.png b/front/public/images/small/gregtech/gt.blockores/21509.png deleted file mode 100644 index 7cf027a3b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21510.png b/front/public/images/small/gregtech/gt.blockores/21510.png deleted file mode 100644 index 200d3e30ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21511.png b/front/public/images/small/gregtech/gt.blockores/21511.png deleted file mode 100644 index 912391e148..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21512.png b/front/public/images/small/gregtech/gt.blockores/21512.png deleted file mode 100644 index 259d17f312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21513.png b/front/public/images/small/gregtech/gt.blockores/21513.png deleted file mode 100644 index 200d3e30ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21514.png b/front/public/images/small/gregtech/gt.blockores/21514.png deleted file mode 100644 index f1c9ce5c67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21515.png b/front/public/images/small/gregtech/gt.blockores/21515.png deleted file mode 100644 index a2e3e92437..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21516.png b/front/public/images/small/gregtech/gt.blockores/21516.png deleted file mode 100644 index d70d6d9bce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21517.png b/front/public/images/small/gregtech/gt.blockores/21517.png deleted file mode 100644 index dfab38f6ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21518.png b/front/public/images/small/gregtech/gt.blockores/21518.png deleted file mode 100644 index b611f75406..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21519.png b/front/public/images/small/gregtech/gt.blockores/21519.png deleted file mode 100644 index b611f75406..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21520.png b/front/public/images/small/gregtech/gt.blockores/21520.png deleted file mode 100644 index 49e2eeff99..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21521.png b/front/public/images/small/gregtech/gt.blockores/21521.png deleted file mode 100644 index 899e760be6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21522.png b/front/public/images/small/gregtech/gt.blockores/21522.png deleted file mode 100644 index 6b3eeb5fc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21523.png b/front/public/images/small/gregtech/gt.blockores/21523.png deleted file mode 100644 index 13e5a68e4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21524.png b/front/public/images/small/gregtech/gt.blockores/21524.png deleted file mode 100644 index ea4bfc37a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21525.png b/front/public/images/small/gregtech/gt.blockores/21525.png deleted file mode 100644 index af607d2de0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21526.png b/front/public/images/small/gregtech/gt.blockores/21526.png deleted file mode 100644 index 7ea4e0be3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21527.png b/front/public/images/small/gregtech/gt.blockores/21527.png deleted file mode 100644 index 912391e148..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21528.png b/front/public/images/small/gregtech/gt.blockores/21528.png deleted file mode 100644 index 8e819bd49f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21529.png b/front/public/images/small/gregtech/gt.blockores/21529.png deleted file mode 100644 index fe8273bc8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21530.png b/front/public/images/small/gregtech/gt.blockores/21530.png deleted file mode 100644 index 11695b494c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21531.png b/front/public/images/small/gregtech/gt.blockores/21531.png deleted file mode 100644 index 10d347aaf3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21534.png b/front/public/images/small/gregtech/gt.blockores/21534.png deleted file mode 100644 index 68c1139df5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21535.png b/front/public/images/small/gregtech/gt.blockores/21535.png deleted file mode 100644 index a901192bb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21537.png b/front/public/images/small/gregtech/gt.blockores/21537.png deleted file mode 100644 index 26db3b8580..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21538.png b/front/public/images/small/gregtech/gt.blockores/21538.png deleted file mode 100644 index eb49235faa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21540.png b/front/public/images/small/gregtech/gt.blockores/21540.png deleted file mode 100644 index 899e760be6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21541.png b/front/public/images/small/gregtech/gt.blockores/21541.png deleted file mode 100644 index c51de43003..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21542.png b/front/public/images/small/gregtech/gt.blockores/21542.png deleted file mode 100644 index 9447695a56..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21543.png b/front/public/images/small/gregtech/gt.blockores/21543.png deleted file mode 100644 index 279269363f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21544.png b/front/public/images/small/gregtech/gt.blockores/21544.png deleted file mode 100644 index 51a40ab785..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21545.png b/front/public/images/small/gregtech/gt.blockores/21545.png deleted file mode 100644 index 5c0f9e2128..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21548.png b/front/public/images/small/gregtech/gt.blockores/21548.png deleted file mode 100644 index 73bd597cc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21549.png b/front/public/images/small/gregtech/gt.blockores/21549.png deleted file mode 100644 index 55c6a2b709..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21607.png b/front/public/images/small/gregtech/gt.blockores/21607.png deleted file mode 100644 index 49ffd25e2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21699.png b/front/public/images/small/gregtech/gt.blockores/21699.png deleted file mode 100644 index 65c3f9d2fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21770.png b/front/public/images/small/gregtech/gt.blockores/21770.png deleted file mode 100644 index 55b0cf42c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21797.png b/front/public/images/small/gregtech/gt.blockores/21797.png deleted file mode 100644 index 67ac57d214..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21810.png b/front/public/images/small/gregtech/gt.blockores/21810.png deleted file mode 100644 index 8d0e08c9af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21812.png b/front/public/images/small/gregtech/gt.blockores/21812.png deleted file mode 100644 index c8b46e2947..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21817.png b/front/public/images/small/gregtech/gt.blockores/21817.png deleted file mode 100644 index c620937af1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21820.png b/front/public/images/small/gregtech/gt.blockores/21820.png deleted file mode 100644 index a9c9a95cd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21821.png b/front/public/images/small/gregtech/gt.blockores/21821.png deleted file mode 100644 index 1d3ee98351..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21822.png b/front/public/images/small/gregtech/gt.blockores/21822.png deleted file mode 100644 index 4eaf3c77d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21823.png b/front/public/images/small/gregtech/gt.blockores/21823.png deleted file mode 100644 index 74590f9445..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21824.png b/front/public/images/small/gregtech/gt.blockores/21824.png deleted file mode 100644 index 67ac57d214..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21825.png b/front/public/images/small/gregtech/gt.blockores/21825.png deleted file mode 100644 index a1cef5e707..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21826.png b/front/public/images/small/gregtech/gt.blockores/21826.png deleted file mode 100644 index 0ac9b85275..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21827.png b/front/public/images/small/gregtech/gt.blockores/21827.png deleted file mode 100644 index d1a6bf9945..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21828.png b/front/public/images/small/gregtech/gt.blockores/21828.png deleted file mode 100644 index c087ea5639..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21829.png b/front/public/images/small/gregtech/gt.blockores/21829.png deleted file mode 100644 index e9e76a195e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21830.png b/front/public/images/small/gregtech/gt.blockores/21830.png deleted file mode 100644 index ca0cd3800b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21831.png b/front/public/images/small/gregtech/gt.blockores/21831.png deleted file mode 100644 index 4eaf3c77d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21833.png b/front/public/images/small/gregtech/gt.blockores/21833.png deleted file mode 100644 index 68c1139df5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21834.png b/front/public/images/small/gregtech/gt.blockores/21834.png deleted file mode 100644 index 7394973d9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21835.png b/front/public/images/small/gregtech/gt.blockores/21835.png deleted file mode 100644 index e08d2301d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21836.png b/front/public/images/small/gregtech/gt.blockores/21836.png deleted file mode 100644 index 2d67e4d101..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21838.png b/front/public/images/small/gregtech/gt.blockores/21838.png deleted file mode 100644 index 259d17f312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21839.png b/front/public/images/small/gregtech/gt.blockores/21839.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21840.png b/front/public/images/small/gregtech/gt.blockores/21840.png deleted file mode 100644 index 32b355cba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21841.png b/front/public/images/small/gregtech/gt.blockores/21841.png deleted file mode 100644 index c5d4efc06c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21842.png b/front/public/images/small/gregtech/gt.blockores/21842.png deleted file mode 100644 index 2413befd84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21855.png b/front/public/images/small/gregtech/gt.blockores/21855.png deleted file mode 100644 index 3881969fcc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21856.png b/front/public/images/small/gregtech/gt.blockores/21856.png deleted file mode 100644 index cca4a23309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21861.png b/front/public/images/small/gregtech/gt.blockores/21861.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21865.png b/front/public/images/small/gregtech/gt.blockores/21865.png deleted file mode 100644 index f85caac6c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21868.png b/front/public/images/small/gregtech/gt.blockores/21868.png deleted file mode 100644 index 5474a7bbdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21870.png b/front/public/images/small/gregtech/gt.blockores/21870.png deleted file mode 100644 index 96f69f512e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21871.png b/front/public/images/small/gregtech/gt.blockores/21871.png deleted file mode 100644 index 4eb7b3e3f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21873.png b/front/public/images/small/gregtech/gt.blockores/21873.png deleted file mode 100644 index 2cdb696598..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21877.png b/front/public/images/small/gregtech/gt.blockores/21877.png deleted file mode 100644 index 4da7aa4077..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21878.png b/front/public/images/small/gregtech/gt.blockores/21878.png deleted file mode 100644 index ebe8cc55ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21882.png b/front/public/images/small/gregtech/gt.blockores/21882.png deleted file mode 100644 index f1c9ce5c67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21883.png b/front/public/images/small/gregtech/gt.blockores/21883.png deleted file mode 100644 index 68c1139df5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21884.png b/front/public/images/small/gregtech/gt.blockores/21884.png deleted file mode 100644 index f4df312d8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21894.png b/front/public/images/small/gregtech/gt.blockores/21894.png deleted file mode 100644 index 68c1139df5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21900.png b/front/public/images/small/gregtech/gt.blockores/21900.png deleted file mode 100644 index 584fe25057..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21901.png b/front/public/images/small/gregtech/gt.blockores/21901.png deleted file mode 100644 index 667bfbae8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21902.png b/front/public/images/small/gregtech/gt.blockores/21902.png deleted file mode 100644 index e682efdef7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21903.png b/front/public/images/small/gregtech/gt.blockores/21903.png deleted file mode 100644 index 18d49763d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21904.png b/front/public/images/small/gregtech/gt.blockores/21904.png deleted file mode 100644 index 15441bcb40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21905.png b/front/public/images/small/gregtech/gt.blockores/21905.png deleted file mode 100644 index 7e6c0e7b43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21906.png b/front/public/images/small/gregtech/gt.blockores/21906.png deleted file mode 100644 index cfd5e4099a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21907.png b/front/public/images/small/gregtech/gt.blockores/21907.png deleted file mode 100644 index 864820ca19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21908.png b/front/public/images/small/gregtech/gt.blockores/21908.png deleted file mode 100644 index 083a04cf4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21909.png b/front/public/images/small/gregtech/gt.blockores/21909.png deleted file mode 100644 index 24b3b6011e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21910.png b/front/public/images/small/gregtech/gt.blockores/21910.png deleted file mode 100644 index a613731d46..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21911.png b/front/public/images/small/gregtech/gt.blockores/21911.png deleted file mode 100644 index 9fdd2711f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21912.png b/front/public/images/small/gregtech/gt.blockores/21912.png deleted file mode 100644 index 053eb2b008..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21913.png b/front/public/images/small/gregtech/gt.blockores/21913.png deleted file mode 100644 index 8bffd8e39f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21914.png b/front/public/images/small/gregtech/gt.blockores/21914.png deleted file mode 100644 index 8d6d718298..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21915.png b/front/public/images/small/gregtech/gt.blockores/21915.png deleted file mode 100644 index 8dc2e32be0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21916.png b/front/public/images/small/gregtech/gt.blockores/21916.png deleted file mode 100644 index 330940c173..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21917.png b/front/public/images/small/gregtech/gt.blockores/21917.png deleted file mode 100644 index 0192de6c5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21918.png b/front/public/images/small/gregtech/gt.blockores/21918.png deleted file mode 100644 index 560714b322..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21919.png b/front/public/images/small/gregtech/gt.blockores/21919.png deleted file mode 100644 index bff97c315c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21920.png b/front/public/images/small/gregtech/gt.blockores/21920.png deleted file mode 100644 index f4417df838..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21921.png b/front/public/images/small/gregtech/gt.blockores/21921.png deleted file mode 100644 index f5acb1659b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21922.png b/front/public/images/small/gregtech/gt.blockores/21922.png deleted file mode 100644 index 52476042da..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21923.png b/front/public/images/small/gregtech/gt.blockores/21923.png deleted file mode 100644 index a22069b82e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21924.png b/front/public/images/small/gregtech/gt.blockores/21924.png deleted file mode 100644 index eafc9b635e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21925.png b/front/public/images/small/gregtech/gt.blockores/21925.png deleted file mode 100644 index 8523e37d1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21926.png b/front/public/images/small/gregtech/gt.blockores/21926.png deleted file mode 100644 index 6c194cac19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21927.png b/front/public/images/small/gregtech/gt.blockores/21927.png deleted file mode 100644 index 2968d4980f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21928.png b/front/public/images/small/gregtech/gt.blockores/21928.png deleted file mode 100644 index 55bc9050b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21929.png b/front/public/images/small/gregtech/gt.blockores/21929.png deleted file mode 100644 index 19efc86212..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21930.png b/front/public/images/small/gregtech/gt.blockores/21930.png deleted file mode 100644 index 4eaf3c77d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21931.png b/front/public/images/small/gregtech/gt.blockores/21931.png deleted file mode 100644 index ca7b51fbeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21932.png b/front/public/images/small/gregtech/gt.blockores/21932.png deleted file mode 100644 index d4f01a4b75..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21933.png b/front/public/images/small/gregtech/gt.blockores/21933.png deleted file mode 100644 index 2ea1cb402d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21934.png b/front/public/images/small/gregtech/gt.blockores/21934.png deleted file mode 100644 index 883173e923..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21935.png b/front/public/images/small/gregtech/gt.blockores/21935.png deleted file mode 100644 index d504c383aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21936.png b/front/public/images/small/gregtech/gt.blockores/21936.png deleted file mode 100644 index f51cc3e809..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21937.png b/front/public/images/small/gregtech/gt.blockores/21937.png deleted file mode 100644 index 67ac57d214..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21938.png b/front/public/images/small/gregtech/gt.blockores/21938.png deleted file mode 100644 index 4eaf3c77d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21939.png b/front/public/images/small/gregtech/gt.blockores/21939.png deleted file mode 100644 index 79c51ba3bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21941.png b/front/public/images/small/gregtech/gt.blockores/21941.png deleted file mode 100644 index c620937af1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21942.png b/front/public/images/small/gregtech/gt.blockores/21942.png deleted file mode 100644 index 5e9585cfee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21943.png b/front/public/images/small/gregtech/gt.blockores/21943.png deleted file mode 100644 index 1589ac89d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21944.png b/front/public/images/small/gregtech/gt.blockores/21944.png deleted file mode 100644 index fcc7453b13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21945.png b/front/public/images/small/gregtech/gt.blockores/21945.png deleted file mode 100644 index a901192bb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21946.png b/front/public/images/small/gregtech/gt.blockores/21946.png deleted file mode 100644 index 2d67e4d101..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21948.png b/front/public/images/small/gregtech/gt.blockores/21948.png deleted file mode 100644 index 7649d73ba4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21949.png b/front/public/images/small/gregtech/gt.blockores/21949.png deleted file mode 100644 index 2ea1cb402d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21951.png b/front/public/images/small/gregtech/gt.blockores/21951.png deleted file mode 100644 index 9829decac6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21952.png b/front/public/images/small/gregtech/gt.blockores/21952.png deleted file mode 100644 index 61cdbc251d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21956.png b/front/public/images/small/gregtech/gt.blockores/21956.png deleted file mode 100644 index 248551cfec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21966.png b/front/public/images/small/gregtech/gt.blockores/21966.png deleted file mode 100644 index ab4d4b217f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21969.png b/front/public/images/small/gregtech/gt.blockores/21969.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21971.png b/front/public/images/small/gregtech/gt.blockores/21971.png deleted file mode 100644 index 31e601630b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21975.png b/front/public/images/small/gregtech/gt.blockores/21975.png deleted file mode 100644 index a93f2c25ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21976.png b/front/public/images/small/gregtech/gt.blockores/21976.png deleted file mode 100644 index 66eee197eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21978.png b/front/public/images/small/gregtech/gt.blockores/21978.png deleted file mode 100644 index b0e3368be3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21982.png b/front/public/images/small/gregtech/gt.blockores/21982.png deleted file mode 100644 index 6eb10980d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/21984.png b/front/public/images/small/gregtech/gt.blockores/21984.png deleted file mode 100644 index ea217b82d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/21984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22.png b/front/public/images/small/gregtech/gt.blockores/22.png deleted file mode 100644 index d835919e53..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22006.png b/front/public/images/small/gregtech/gt.blockores/22006.png deleted file mode 100644 index b90f373666..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22008.png b/front/public/images/small/gregtech/gt.blockores/22008.png deleted file mode 100644 index 9ddca105aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22018.png b/front/public/images/small/gregtech/gt.blockores/22018.png deleted file mode 100644 index 8cf4772624..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22019.png b/front/public/images/small/gregtech/gt.blockores/22019.png deleted file mode 100644 index 52c78b9151..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22020.png b/front/public/images/small/gregtech/gt.blockores/22020.png deleted file mode 100644 index dd6827a719..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22022.png b/front/public/images/small/gregtech/gt.blockores/22022.png deleted file mode 100644 index dce7ec8951..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22027.png b/front/public/images/small/gregtech/gt.blockores/22027.png deleted file mode 100644 index 77eda10a3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22028.png b/front/public/images/small/gregtech/gt.blockores/22028.png deleted file mode 100644 index dc4be367ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22029.png b/front/public/images/small/gregtech/gt.blockores/22029.png deleted file mode 100644 index 5ab82fe4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22030.png b/front/public/images/small/gregtech/gt.blockores/22030.png deleted file mode 100644 index 58a872f8d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22031.png b/front/public/images/small/gregtech/gt.blockores/22031.png deleted file mode 100644 index 33a2ef911d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22032.png b/front/public/images/small/gregtech/gt.blockores/22032.png deleted file mode 100644 index 37ae5846a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22033.png b/front/public/images/small/gregtech/gt.blockores/22033.png deleted file mode 100644 index f69f892ebd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22034.png b/front/public/images/small/gregtech/gt.blockores/22034.png deleted file mode 100644 index 07c8162c4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22035.png b/front/public/images/small/gregtech/gt.blockores/22035.png deleted file mode 100644 index fcc2f942bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22036.png b/front/public/images/small/gregtech/gt.blockores/22036.png deleted file mode 100644 index 526f715254..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22037.png b/front/public/images/small/gregtech/gt.blockores/22037.png deleted file mode 100644 index dbc32cb95f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22039.png b/front/public/images/small/gregtech/gt.blockores/22039.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22043.png b/front/public/images/small/gregtech/gt.blockores/22043.png deleted file mode 100644 index 8d1ced8cfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22044.png b/front/public/images/small/gregtech/gt.blockores/22044.png deleted file mode 100644 index 37ae5846a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22045.png b/front/public/images/small/gregtech/gt.blockores/22045.png deleted file mode 100644 index 6d7afe6535..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22047.png b/front/public/images/small/gregtech/gt.blockores/22047.png deleted file mode 100644 index 5d359b60d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22048.png b/front/public/images/small/gregtech/gt.blockores/22048.png deleted file mode 100644 index 1159aa1102..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22052.png b/front/public/images/small/gregtech/gt.blockores/22052.png deleted file mode 100644 index b2d5969650..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22054.png b/front/public/images/small/gregtech/gt.blockores/22054.png deleted file mode 100644 index dbc32cb95f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22055.png b/front/public/images/small/gregtech/gt.blockores/22055.png deleted file mode 100644 index 80e6d47c42..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22056.png b/front/public/images/small/gregtech/gt.blockores/22056.png deleted file mode 100644 index cef7c5e689..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22057.png b/front/public/images/small/gregtech/gt.blockores/22057.png deleted file mode 100644 index 11b8f412c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22058.png b/front/public/images/small/gregtech/gt.blockores/22058.png deleted file mode 100644 index 2afa9f505c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22059.png b/front/public/images/small/gregtech/gt.blockores/22059.png deleted file mode 100644 index c48ea8aced..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22062.png b/front/public/images/small/gregtech/gt.blockores/22062.png deleted file mode 100644 index 25ac22613c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22063.png b/front/public/images/small/gregtech/gt.blockores/22063.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22064.png b/front/public/images/small/gregtech/gt.blockores/22064.png deleted file mode 100644 index a7dc62d7c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22065.png b/front/public/images/small/gregtech/gt.blockores/22065.png deleted file mode 100644 index 953db2288f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22066.png b/front/public/images/small/gregtech/gt.blockores/22066.png deleted file mode 100644 index e196b98f72..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22067.png b/front/public/images/small/gregtech/gt.blockores/22067.png deleted file mode 100644 index 927e5dfa64..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22068.png b/front/public/images/small/gregtech/gt.blockores/22068.png deleted file mode 100644 index 03625a5383..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22069.png b/front/public/images/small/gregtech/gt.blockores/22069.png deleted file mode 100644 index 94b7ee1a50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22070.png b/front/public/images/small/gregtech/gt.blockores/22070.png deleted file mode 100644 index 9ffdf927f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22071.png b/front/public/images/small/gregtech/gt.blockores/22071.png deleted file mode 100644 index 9ee939e4b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22072.png b/front/public/images/small/gregtech/gt.blockores/22072.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22073.png b/front/public/images/small/gregtech/gt.blockores/22073.png deleted file mode 100644 index 48a21a572b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22074.png b/front/public/images/small/gregtech/gt.blockores/22074.png deleted file mode 100644 index 9445a04149..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22075.png b/front/public/images/small/gregtech/gt.blockores/22075.png deleted file mode 100644 index 92b6a0076c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22076.png b/front/public/images/small/gregtech/gt.blockores/22076.png deleted file mode 100644 index 0dd8f019ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22077.png b/front/public/images/small/gregtech/gt.blockores/22077.png deleted file mode 100644 index eccd421c13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22078.png b/front/public/images/small/gregtech/gt.blockores/22078.png deleted file mode 100644 index 525ae52a23..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22080.png b/front/public/images/small/gregtech/gt.blockores/22080.png deleted file mode 100644 index efbad7e5bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22081.png b/front/public/images/small/gregtech/gt.blockores/22081.png deleted file mode 100644 index 5ab82fe4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22083.png b/front/public/images/small/gregtech/gt.blockores/22083.png deleted file mode 100644 index a45048555c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22084.png b/front/public/images/small/gregtech/gt.blockores/22084.png deleted file mode 100644 index 4aa9b27f76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22085.png b/front/public/images/small/gregtech/gt.blockores/22085.png deleted file mode 100644 index 11207ac114..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22086.png b/front/public/images/small/gregtech/gt.blockores/22086.png deleted file mode 100644 index 67de241ad9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22089.png b/front/public/images/small/gregtech/gt.blockores/22089.png deleted file mode 100644 index 7f66a94300..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22090.png b/front/public/images/small/gregtech/gt.blockores/22090.png deleted file mode 100644 index 0914f43e62..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22096.png b/front/public/images/small/gregtech/gt.blockores/22096.png deleted file mode 100644 index 1cb4520028..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22097.png b/front/public/images/small/gregtech/gt.blockores/22097.png deleted file mode 100644 index e414878526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22098.png b/front/public/images/small/gregtech/gt.blockores/22098.png deleted file mode 100644 index 32d15c8b37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22100.png b/front/public/images/small/gregtech/gt.blockores/22100.png deleted file mode 100644 index 59cbe2194f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22101.png b/front/public/images/small/gregtech/gt.blockores/22101.png deleted file mode 100644 index 841863a57f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22103.png b/front/public/images/small/gregtech/gt.blockores/22103.png deleted file mode 100644 index 37ae5846a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22110.png b/front/public/images/small/gregtech/gt.blockores/22110.png deleted file mode 100644 index 4949806c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22129.png b/front/public/images/small/gregtech/gt.blockores/22129.png deleted file mode 100644 index 33a2ef911d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22303.png b/front/public/images/small/gregtech/gt.blockores/22303.png deleted file mode 100644 index dfbcfa5b27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22307.png b/front/public/images/small/gregtech/gt.blockores/22307.png deleted file mode 100644 index 551665df45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22319.png b/front/public/images/small/gregtech/gt.blockores/22319.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22320.png b/front/public/images/small/gregtech/gt.blockores/22320.png deleted file mode 100644 index 62b9820b62..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22323.png b/front/public/images/small/gregtech/gt.blockores/22323.png deleted file mode 100644 index 8694db134c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22324.png b/front/public/images/small/gregtech/gt.blockores/22324.png deleted file mode 100644 index 5ab82fe4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22326.png b/front/public/images/small/gregtech/gt.blockores/22326.png deleted file mode 100644 index 4cda27c970..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22327.png b/front/public/images/small/gregtech/gt.blockores/22327.png deleted file mode 100644 index 5efe69c438..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22329.png b/front/public/images/small/gregtech/gt.blockores/22329.png deleted file mode 100644 index bca51d9b47..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22331.png b/front/public/images/small/gregtech/gt.blockores/22331.png deleted file mode 100644 index 06a7df7d69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22336.png b/front/public/images/small/gregtech/gt.blockores/22336.png deleted file mode 100644 index 9669d44a20..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22340.png b/front/public/images/small/gregtech/gt.blockores/22340.png deleted file mode 100644 index a19220354e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22342.png b/front/public/images/small/gregtech/gt.blockores/22342.png deleted file mode 100644 index 14c5ea8889..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22347.png b/front/public/images/small/gregtech/gt.blockores/22347.png deleted file mode 100644 index 530f71980a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22368.png b/front/public/images/small/gregtech/gt.blockores/22368.png deleted file mode 100644 index 95481d60ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22375.png b/front/public/images/small/gregtech/gt.blockores/22375.png deleted file mode 100644 index 12c96588ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22382.png b/front/public/images/small/gregtech/gt.blockores/22382.png deleted file mode 100644 index 7c8ca3ae7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22386.png b/front/public/images/small/gregtech/gt.blockores/22386.png deleted file mode 100644 index f692b3750e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22387.png b/front/public/images/small/gregtech/gt.blockores/22387.png deleted file mode 100644 index 33434387ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22388.png b/front/public/images/small/gregtech/gt.blockores/22388.png deleted file mode 100644 index 5ab82fe4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22389.png b/front/public/images/small/gregtech/gt.blockores/22389.png deleted file mode 100644 index ebbab368ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22390.png b/front/public/images/small/gregtech/gt.blockores/22390.png deleted file mode 100644 index ac24e2ab96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22391.png b/front/public/images/small/gregtech/gt.blockores/22391.png deleted file mode 100644 index 0f02efe527..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22392.png b/front/public/images/small/gregtech/gt.blockores/22392.png deleted file mode 100644 index 36c1a6f8b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22393.png b/front/public/images/small/gregtech/gt.blockores/22393.png deleted file mode 100644 index 9d70ae87e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22394.png b/front/public/images/small/gregtech/gt.blockores/22394.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22395.png b/front/public/images/small/gregtech/gt.blockores/22395.png deleted file mode 100644 index 5ab82fe4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22398.png b/front/public/images/small/gregtech/gt.blockores/22398.png deleted file mode 100644 index afe0f47530..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22485.png b/front/public/images/small/gregtech/gt.blockores/22485.png deleted file mode 100644 index 4f0d6e64d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22488.png b/front/public/images/small/gregtech/gt.blockores/22488.png deleted file mode 100644 index b6830b7907..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22489.png b/front/public/images/small/gregtech/gt.blockores/22489.png deleted file mode 100644 index 6297d64fd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22500.png b/front/public/images/small/gregtech/gt.blockores/22500.png deleted file mode 100644 index a656b0281a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22501.png b/front/public/images/small/gregtech/gt.blockores/22501.png deleted file mode 100644 index 1f445fea4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22502.png b/front/public/images/small/gregtech/gt.blockores/22502.png deleted file mode 100644 index c1bd713f84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22503.png b/front/public/images/small/gregtech/gt.blockores/22503.png deleted file mode 100644 index cf0c9ada14..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22504.png b/front/public/images/small/gregtech/gt.blockores/22504.png deleted file mode 100644 index b9514faf05..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22505.png b/front/public/images/small/gregtech/gt.blockores/22505.png deleted file mode 100644 index 8ddbe1faef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22506.png b/front/public/images/small/gregtech/gt.blockores/22506.png deleted file mode 100644 index 33a2ef911d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22507.png b/front/public/images/small/gregtech/gt.blockores/22507.png deleted file mode 100644 index 610614f447..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22508.png b/front/public/images/small/gregtech/gt.blockores/22508.png deleted file mode 100644 index bdaabc473d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22509.png b/front/public/images/small/gregtech/gt.blockores/22509.png deleted file mode 100644 index ca8900b637..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22510.png b/front/public/images/small/gregtech/gt.blockores/22510.png deleted file mode 100644 index ac02e4e5f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22511.png b/front/public/images/small/gregtech/gt.blockores/22511.png deleted file mode 100644 index b06bf4fdf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22512.png b/front/public/images/small/gregtech/gt.blockores/22512.png deleted file mode 100644 index c1bd713f84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22513.png b/front/public/images/small/gregtech/gt.blockores/22513.png deleted file mode 100644 index ac02e4e5f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22514.png b/front/public/images/small/gregtech/gt.blockores/22514.png deleted file mode 100644 index 610614f447..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22515.png b/front/public/images/small/gregtech/gt.blockores/22515.png deleted file mode 100644 index 8b182b5c7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22516.png b/front/public/images/small/gregtech/gt.blockores/22516.png deleted file mode 100644 index aa20966ac3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22517.png b/front/public/images/small/gregtech/gt.blockores/22517.png deleted file mode 100644 index 9ceb26743e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22518.png b/front/public/images/small/gregtech/gt.blockores/22518.png deleted file mode 100644 index 9fd03171d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22519.png b/front/public/images/small/gregtech/gt.blockores/22519.png deleted file mode 100644 index 9fd03171d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22520.png b/front/public/images/small/gregtech/gt.blockores/22520.png deleted file mode 100644 index 005d27312b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22521.png b/front/public/images/small/gregtech/gt.blockores/22521.png deleted file mode 100644 index 7b8d1b43ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22522.png b/front/public/images/small/gregtech/gt.blockores/22522.png deleted file mode 100644 index 1d40e4cf40..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22523.png b/front/public/images/small/gregtech/gt.blockores/22523.png deleted file mode 100644 index ba537a0477..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22524.png b/front/public/images/small/gregtech/gt.blockores/22524.png deleted file mode 100644 index 737c7c848c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22525.png b/front/public/images/small/gregtech/gt.blockores/22525.png deleted file mode 100644 index 477b94e43d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22526.png b/front/public/images/small/gregtech/gt.blockores/22526.png deleted file mode 100644 index ee8968df2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22527.png b/front/public/images/small/gregtech/gt.blockores/22527.png deleted file mode 100644 index b06bf4fdf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22528.png b/front/public/images/small/gregtech/gt.blockores/22528.png deleted file mode 100644 index 5375fbdfb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22529.png b/front/public/images/small/gregtech/gt.blockores/22529.png deleted file mode 100644 index bb4242f2f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22530.png b/front/public/images/small/gregtech/gt.blockores/22530.png deleted file mode 100644 index 826c210dce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22531.png b/front/public/images/small/gregtech/gt.blockores/22531.png deleted file mode 100644 index 8cf4772624..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22534.png b/front/public/images/small/gregtech/gt.blockores/22534.png deleted file mode 100644 index e52aeb5581..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22535.png b/front/public/images/small/gregtech/gt.blockores/22535.png deleted file mode 100644 index 26e554224f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22537.png b/front/public/images/small/gregtech/gt.blockores/22537.png deleted file mode 100644 index 3e8f2f141e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22538.png b/front/public/images/small/gregtech/gt.blockores/22538.png deleted file mode 100644 index 531bbe8df2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22540.png b/front/public/images/small/gregtech/gt.blockores/22540.png deleted file mode 100644 index 7b8d1b43ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22541.png b/front/public/images/small/gregtech/gt.blockores/22541.png deleted file mode 100644 index 7c375b1748..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22542.png b/front/public/images/small/gregtech/gt.blockores/22542.png deleted file mode 100644 index 256ae03c16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22543.png b/front/public/images/small/gregtech/gt.blockores/22543.png deleted file mode 100644 index ceb585c1fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22544.png b/front/public/images/small/gregtech/gt.blockores/22544.png deleted file mode 100644 index 7b5cddfdc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22545.png b/front/public/images/small/gregtech/gt.blockores/22545.png deleted file mode 100644 index 98dbc7055d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22548.png b/front/public/images/small/gregtech/gt.blockores/22548.png deleted file mode 100644 index 1307808338..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22549.png b/front/public/images/small/gregtech/gt.blockores/22549.png deleted file mode 100644 index d69d689307..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22607.png b/front/public/images/small/gregtech/gt.blockores/22607.png deleted file mode 100644 index 8736e2e1e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22699.png b/front/public/images/small/gregtech/gt.blockores/22699.png deleted file mode 100644 index be920db76b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22770.png b/front/public/images/small/gregtech/gt.blockores/22770.png deleted file mode 100644 index 60ac6a04c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22797.png b/front/public/images/small/gregtech/gt.blockores/22797.png deleted file mode 100644 index 11b8f412c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22810.png b/front/public/images/small/gregtech/gt.blockores/22810.png deleted file mode 100644 index d8d5c263e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22812.png b/front/public/images/small/gregtech/gt.blockores/22812.png deleted file mode 100644 index 1791a10c98..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22817.png b/front/public/images/small/gregtech/gt.blockores/22817.png deleted file mode 100644 index 33a2ef911d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22820.png b/front/public/images/small/gregtech/gt.blockores/22820.png deleted file mode 100644 index 9568e163f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22821.png b/front/public/images/small/gregtech/gt.blockores/22821.png deleted file mode 100644 index 25e0914c08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22822.png b/front/public/images/small/gregtech/gt.blockores/22822.png deleted file mode 100644 index 16494790c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22823.png b/front/public/images/small/gregtech/gt.blockores/22823.png deleted file mode 100644 index 0501117261..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22824.png b/front/public/images/small/gregtech/gt.blockores/22824.png deleted file mode 100644 index 11b8f412c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22825.png b/front/public/images/small/gregtech/gt.blockores/22825.png deleted file mode 100644 index 7d3077c895..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22826.png b/front/public/images/small/gregtech/gt.blockores/22826.png deleted file mode 100644 index 66a23ea16d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22827.png b/front/public/images/small/gregtech/gt.blockores/22827.png deleted file mode 100644 index f69f892ebd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22828.png b/front/public/images/small/gregtech/gt.blockores/22828.png deleted file mode 100644 index 11207ac114..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22829.png b/front/public/images/small/gregtech/gt.blockores/22829.png deleted file mode 100644 index 18027077cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22830.png b/front/public/images/small/gregtech/gt.blockores/22830.png deleted file mode 100644 index bee8d114c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22831.png b/front/public/images/small/gregtech/gt.blockores/22831.png deleted file mode 100644 index 16494790c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22833.png b/front/public/images/small/gregtech/gt.blockores/22833.png deleted file mode 100644 index e52aeb5581..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22834.png b/front/public/images/small/gregtech/gt.blockores/22834.png deleted file mode 100644 index 56c3125e3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22835.png b/front/public/images/small/gregtech/gt.blockores/22835.png deleted file mode 100644 index 6512bead21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22836.png b/front/public/images/small/gregtech/gt.blockores/22836.png deleted file mode 100644 index 76e59ceaec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22838.png b/front/public/images/small/gregtech/gt.blockores/22838.png deleted file mode 100644 index c1bd713f84..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22839.png b/front/public/images/small/gregtech/gt.blockores/22839.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22840.png b/front/public/images/small/gregtech/gt.blockores/22840.png deleted file mode 100644 index bd6edba6c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22841.png b/front/public/images/small/gregtech/gt.blockores/22841.png deleted file mode 100644 index 9ef042de4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22842.png b/front/public/images/small/gregtech/gt.blockores/22842.png deleted file mode 100644 index 039b1ddfc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22855.png b/front/public/images/small/gregtech/gt.blockores/22855.png deleted file mode 100644 index 8e7d985154..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22856.png b/front/public/images/small/gregtech/gt.blockores/22856.png deleted file mode 100644 index fc497f9281..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22861.png b/front/public/images/small/gregtech/gt.blockores/22861.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22865.png b/front/public/images/small/gregtech/gt.blockores/22865.png deleted file mode 100644 index b2d5969650..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22868.png b/front/public/images/small/gregtech/gt.blockores/22868.png deleted file mode 100644 index 0c0b15f8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22870.png b/front/public/images/small/gregtech/gt.blockores/22870.png deleted file mode 100644 index 4d616439fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22871.png b/front/public/images/small/gregtech/gt.blockores/22871.png deleted file mode 100644 index 730c226453..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22873.png b/front/public/images/small/gregtech/gt.blockores/22873.png deleted file mode 100644 index 1797f8cb32..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22877.png b/front/public/images/small/gregtech/gt.blockores/22877.png deleted file mode 100644 index 3880e3121b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22878.png b/front/public/images/small/gregtech/gt.blockores/22878.png deleted file mode 100644 index 387b7c865b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22882.png b/front/public/images/small/gregtech/gt.blockores/22882.png deleted file mode 100644 index 610614f447..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22883.png b/front/public/images/small/gregtech/gt.blockores/22883.png deleted file mode 100644 index e52aeb5581..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22884.png b/front/public/images/small/gregtech/gt.blockores/22884.png deleted file mode 100644 index dbff4944f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22894.png b/front/public/images/small/gregtech/gt.blockores/22894.png deleted file mode 100644 index e52aeb5581..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22900.png b/front/public/images/small/gregtech/gt.blockores/22900.png deleted file mode 100644 index 53c8318011..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22901.png b/front/public/images/small/gregtech/gt.blockores/22901.png deleted file mode 100644 index 45a917f3d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22902.png b/front/public/images/small/gregtech/gt.blockores/22902.png deleted file mode 100644 index 3d3ef95c44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22903.png b/front/public/images/small/gregtech/gt.blockores/22903.png deleted file mode 100644 index d9692f6c13..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22904.png b/front/public/images/small/gregtech/gt.blockores/22904.png deleted file mode 100644 index 16b3ed23df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22905.png b/front/public/images/small/gregtech/gt.blockores/22905.png deleted file mode 100644 index 1c61b41514..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22906.png b/front/public/images/small/gregtech/gt.blockores/22906.png deleted file mode 100644 index 035b79d11a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22907.png b/front/public/images/small/gregtech/gt.blockores/22907.png deleted file mode 100644 index 0edd84f0e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22908.png b/front/public/images/small/gregtech/gt.blockores/22908.png deleted file mode 100644 index ee427e085b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22909.png b/front/public/images/small/gregtech/gt.blockores/22909.png deleted file mode 100644 index 9833761b94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22910.png b/front/public/images/small/gregtech/gt.blockores/22910.png deleted file mode 100644 index 3b1cb04220..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22911.png b/front/public/images/small/gregtech/gt.blockores/22911.png deleted file mode 100644 index 04afd2193f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22912.png b/front/public/images/small/gregtech/gt.blockores/22912.png deleted file mode 100644 index edb8e08105..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22913.png b/front/public/images/small/gregtech/gt.blockores/22913.png deleted file mode 100644 index 7ec11a967e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22914.png b/front/public/images/small/gregtech/gt.blockores/22914.png deleted file mode 100644 index 850f01a6fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22915.png b/front/public/images/small/gregtech/gt.blockores/22915.png deleted file mode 100644 index f57bdbe60f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22916.png b/front/public/images/small/gregtech/gt.blockores/22916.png deleted file mode 100644 index 414575aba5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22917.png b/front/public/images/small/gregtech/gt.blockores/22917.png deleted file mode 100644 index 05f18b4869..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22918.png b/front/public/images/small/gregtech/gt.blockores/22918.png deleted file mode 100644 index 12c515293f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22919.png b/front/public/images/small/gregtech/gt.blockores/22919.png deleted file mode 100644 index 07a6c05cdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22920.png b/front/public/images/small/gregtech/gt.blockores/22920.png deleted file mode 100644 index f6be7b470d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22921.png b/front/public/images/small/gregtech/gt.blockores/22921.png deleted file mode 100644 index c2b80a1687..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22922.png b/front/public/images/small/gregtech/gt.blockores/22922.png deleted file mode 100644 index c90c358018..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22923.png b/front/public/images/small/gregtech/gt.blockores/22923.png deleted file mode 100644 index 8c2623e8be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22924.png b/front/public/images/small/gregtech/gt.blockores/22924.png deleted file mode 100644 index 89b4bcf056..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22925.png b/front/public/images/small/gregtech/gt.blockores/22925.png deleted file mode 100644 index e791dfd1fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22926.png b/front/public/images/small/gregtech/gt.blockores/22926.png deleted file mode 100644 index 7563484193..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22927.png b/front/public/images/small/gregtech/gt.blockores/22927.png deleted file mode 100644 index 5aae872dab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22928.png b/front/public/images/small/gregtech/gt.blockores/22928.png deleted file mode 100644 index 287471f673..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22929.png b/front/public/images/small/gregtech/gt.blockores/22929.png deleted file mode 100644 index 882b2e2929..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22930.png b/front/public/images/small/gregtech/gt.blockores/22930.png deleted file mode 100644 index 16494790c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22931.png b/front/public/images/small/gregtech/gt.blockores/22931.png deleted file mode 100644 index dce7ec8951..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22932.png b/front/public/images/small/gregtech/gt.blockores/22932.png deleted file mode 100644 index 70e08fc160..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22933.png b/front/public/images/small/gregtech/gt.blockores/22933.png deleted file mode 100644 index 1d498d460f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22934.png b/front/public/images/small/gregtech/gt.blockores/22934.png deleted file mode 100644 index bce747e98a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22935.png b/front/public/images/small/gregtech/gt.blockores/22935.png deleted file mode 100644 index d3e44c2850..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22936.png b/front/public/images/small/gregtech/gt.blockores/22936.png deleted file mode 100644 index 4673cd5388..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22937.png b/front/public/images/small/gregtech/gt.blockores/22937.png deleted file mode 100644 index 11b8f412c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22938.png b/front/public/images/small/gregtech/gt.blockores/22938.png deleted file mode 100644 index 16494790c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22939.png b/front/public/images/small/gregtech/gt.blockores/22939.png deleted file mode 100644 index bd4be3b3a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22941.png b/front/public/images/small/gregtech/gt.blockores/22941.png deleted file mode 100644 index 33a2ef911d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22942.png b/front/public/images/small/gregtech/gt.blockores/22942.png deleted file mode 100644 index cbb7174715..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22943.png b/front/public/images/small/gregtech/gt.blockores/22943.png deleted file mode 100644 index d44eada1e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22944.png b/front/public/images/small/gregtech/gt.blockores/22944.png deleted file mode 100644 index 1aebbaa369..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22945.png b/front/public/images/small/gregtech/gt.blockores/22945.png deleted file mode 100644 index 26e554224f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22946.png b/front/public/images/small/gregtech/gt.blockores/22946.png deleted file mode 100644 index 76e59ceaec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22948.png b/front/public/images/small/gregtech/gt.blockores/22948.png deleted file mode 100644 index 4485cb5957..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22949.png b/front/public/images/small/gregtech/gt.blockores/22949.png deleted file mode 100644 index 1d498d460f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22951.png b/front/public/images/small/gregtech/gt.blockores/22951.png deleted file mode 100644 index 322b8b911f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22952.png b/front/public/images/small/gregtech/gt.blockores/22952.png deleted file mode 100644 index d6dcebd506..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22956.png b/front/public/images/small/gregtech/gt.blockores/22956.png deleted file mode 100644 index 701f6dc929..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22966.png b/front/public/images/small/gregtech/gt.blockores/22966.png deleted file mode 100644 index c23abb71ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22969.png b/front/public/images/small/gregtech/gt.blockores/22969.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22971.png b/front/public/images/small/gregtech/gt.blockores/22971.png deleted file mode 100644 index 6d181bbae3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22975.png b/front/public/images/small/gregtech/gt.blockores/22975.png deleted file mode 100644 index 600aeaaee4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22976.png b/front/public/images/small/gregtech/gt.blockores/22976.png deleted file mode 100644 index 62ae87cf6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22978.png b/front/public/images/small/gregtech/gt.blockores/22978.png deleted file mode 100644 index ef27f3f33c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22982.png b/front/public/images/small/gregtech/gt.blockores/22982.png deleted file mode 100644 index 5ab82fe4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/22984.png b/front/public/images/small/gregtech/gt.blockores/22984.png deleted file mode 100644 index bb703a1f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/22984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2303.png b/front/public/images/small/gregtech/gt.blockores/2303.png deleted file mode 100644 index de1d1f5803..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2307.png b/front/public/images/small/gregtech/gt.blockores/2307.png deleted file mode 100644 index 39c71a007f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2319.png b/front/public/images/small/gregtech/gt.blockores/2319.png deleted file mode 100644 index d07f0ef696..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2320.png b/front/public/images/small/gregtech/gt.blockores/2320.png deleted file mode 100644 index 341095c6a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2323.png b/front/public/images/small/gregtech/gt.blockores/2323.png deleted file mode 100644 index 2659d01c04..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2324.png b/front/public/images/small/gregtech/gt.blockores/2324.png deleted file mode 100644 index ec3d851861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2326.png b/front/public/images/small/gregtech/gt.blockores/2326.png deleted file mode 100644 index 6b46dc2e21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2327.png b/front/public/images/small/gregtech/gt.blockores/2327.png deleted file mode 100644 index 8261cc9e33..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2329.png b/front/public/images/small/gregtech/gt.blockores/2329.png deleted file mode 100644 index 85f30c88d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2331.png b/front/public/images/small/gregtech/gt.blockores/2331.png deleted file mode 100644 index 8edb4e0347..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2336.png b/front/public/images/small/gregtech/gt.blockores/2336.png deleted file mode 100644 index 294a5110bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2340.png b/front/public/images/small/gregtech/gt.blockores/2340.png deleted file mode 100644 index 9d7eb01c50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2342.png b/front/public/images/small/gregtech/gt.blockores/2342.png deleted file mode 100644 index 1cd431469b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2347.png b/front/public/images/small/gregtech/gt.blockores/2347.png deleted file mode 100644 index 3374c707b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2368.png b/front/public/images/small/gregtech/gt.blockores/2368.png deleted file mode 100644 index 04da889403..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2375.png b/front/public/images/small/gregtech/gt.blockores/2375.png deleted file mode 100644 index f992023fe4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2382.png b/front/public/images/small/gregtech/gt.blockores/2382.png deleted file mode 100644 index cbe805d52f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2386.png b/front/public/images/small/gregtech/gt.blockores/2386.png deleted file mode 100644 index 7f2d93d7ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2387.png b/front/public/images/small/gregtech/gt.blockores/2387.png deleted file mode 100644 index 2f181813d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2388.png b/front/public/images/small/gregtech/gt.blockores/2388.png deleted file mode 100644 index ec3d851861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2389.png b/front/public/images/small/gregtech/gt.blockores/2389.png deleted file mode 100644 index a8948e5677..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2390.png b/front/public/images/small/gregtech/gt.blockores/2390.png deleted file mode 100644 index 8ad7342d3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2391.png b/front/public/images/small/gregtech/gt.blockores/2391.png deleted file mode 100644 index 4a05a50a08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2392.png b/front/public/images/small/gregtech/gt.blockores/2392.png deleted file mode 100644 index 25f1d58ce6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2393.png b/front/public/images/small/gregtech/gt.blockores/2393.png deleted file mode 100644 index 4d07cda523..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2394.png b/front/public/images/small/gregtech/gt.blockores/2394.png deleted file mode 100644 index d07f0ef696..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2395.png b/front/public/images/small/gregtech/gt.blockores/2395.png deleted file mode 100644 index ec3d851861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2398.png b/front/public/images/small/gregtech/gt.blockores/2398.png deleted file mode 100644 index b81ed42b75..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2485.png b/front/public/images/small/gregtech/gt.blockores/2485.png deleted file mode 100644 index 3529380b3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2488.png b/front/public/images/small/gregtech/gt.blockores/2488.png deleted file mode 100644 index a7f7247500..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2489.png b/front/public/images/small/gregtech/gt.blockores/2489.png deleted file mode 100644 index 2e074e8ff9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2500.png b/front/public/images/small/gregtech/gt.blockores/2500.png deleted file mode 100644 index a2ae0d1de5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2501.png b/front/public/images/small/gregtech/gt.blockores/2501.png deleted file mode 100644 index fe165f176b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2502.png b/front/public/images/small/gregtech/gt.blockores/2502.png deleted file mode 100644 index 2e3be6609e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2503.png b/front/public/images/small/gregtech/gt.blockores/2503.png deleted file mode 100644 index 95147479e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2504.png b/front/public/images/small/gregtech/gt.blockores/2504.png deleted file mode 100644 index 892dc32b9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2505.png b/front/public/images/small/gregtech/gt.blockores/2505.png deleted file mode 100644 index d588ad7839..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2506.png b/front/public/images/small/gregtech/gt.blockores/2506.png deleted file mode 100644 index b6e75aeb7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2507.png b/front/public/images/small/gregtech/gt.blockores/2507.png deleted file mode 100644 index 813a3b2007..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2508.png b/front/public/images/small/gregtech/gt.blockores/2508.png deleted file mode 100644 index 33c66fa03f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2509.png b/front/public/images/small/gregtech/gt.blockores/2509.png deleted file mode 100644 index 6a842decef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2510.png b/front/public/images/small/gregtech/gt.blockores/2510.png deleted file mode 100644 index 3788eb4e48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2511.png b/front/public/images/small/gregtech/gt.blockores/2511.png deleted file mode 100644 index 21f1b12691..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2512.png b/front/public/images/small/gregtech/gt.blockores/2512.png deleted file mode 100644 index 2e3be6609e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2513.png b/front/public/images/small/gregtech/gt.blockores/2513.png deleted file mode 100644 index 3788eb4e48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2514.png b/front/public/images/small/gregtech/gt.blockores/2514.png deleted file mode 100644 index 813a3b2007..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2515.png b/front/public/images/small/gregtech/gt.blockores/2515.png deleted file mode 100644 index 90be07d04b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2516.png b/front/public/images/small/gregtech/gt.blockores/2516.png deleted file mode 100644 index 6d5065a2a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2517.png b/front/public/images/small/gregtech/gt.blockores/2517.png deleted file mode 100644 index 92a59aaee6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2518.png b/front/public/images/small/gregtech/gt.blockores/2518.png deleted file mode 100644 index a81e836909..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2519.png b/front/public/images/small/gregtech/gt.blockores/2519.png deleted file mode 100644 index a81e836909..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2520.png b/front/public/images/small/gregtech/gt.blockores/2520.png deleted file mode 100644 index 9d82ea044e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2521.png b/front/public/images/small/gregtech/gt.blockores/2521.png deleted file mode 100644 index 3d5567c5f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2522.png b/front/public/images/small/gregtech/gt.blockores/2522.png deleted file mode 100644 index 091fc30508..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2523.png b/front/public/images/small/gregtech/gt.blockores/2523.png deleted file mode 100644 index 038628d416..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2524.png b/front/public/images/small/gregtech/gt.blockores/2524.png deleted file mode 100644 index f9ea232193..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2525.png b/front/public/images/small/gregtech/gt.blockores/2525.png deleted file mode 100644 index 201cba019c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2526.png b/front/public/images/small/gregtech/gt.blockores/2526.png deleted file mode 100644 index 10caaea7f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2527.png b/front/public/images/small/gregtech/gt.blockores/2527.png deleted file mode 100644 index 21f1b12691..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2528.png b/front/public/images/small/gregtech/gt.blockores/2528.png deleted file mode 100644 index bded502034..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2529.png b/front/public/images/small/gregtech/gt.blockores/2529.png deleted file mode 100644 index 03d6401e0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2530.png b/front/public/images/small/gregtech/gt.blockores/2530.png deleted file mode 100644 index 831e1af145..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2531.png b/front/public/images/small/gregtech/gt.blockores/2531.png deleted file mode 100644 index 0bfb0a4516..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2534.png b/front/public/images/small/gregtech/gt.blockores/2534.png deleted file mode 100644 index 2ea955ef87..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2535.png b/front/public/images/small/gregtech/gt.blockores/2535.png deleted file mode 100644 index f71605b8ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2537.png b/front/public/images/small/gregtech/gt.blockores/2537.png deleted file mode 100644 index d09b99c674..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2538.png b/front/public/images/small/gregtech/gt.blockores/2538.png deleted file mode 100644 index b7c954bfc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2540.png b/front/public/images/small/gregtech/gt.blockores/2540.png deleted file mode 100644 index cf9bc7394c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2541.png b/front/public/images/small/gregtech/gt.blockores/2541.png deleted file mode 100644 index bb4b9bdf8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2542.png b/front/public/images/small/gregtech/gt.blockores/2542.png deleted file mode 100644 index ca68a6a5c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2543.png b/front/public/images/small/gregtech/gt.blockores/2543.png deleted file mode 100644 index 896fb5f34f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2544.png b/front/public/images/small/gregtech/gt.blockores/2544.png deleted file mode 100644 index 791ca58c34..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2545.png b/front/public/images/small/gregtech/gt.blockores/2545.png deleted file mode 100644 index 7527f18696..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2548.png b/front/public/images/small/gregtech/gt.blockores/2548.png deleted file mode 100644 index 9f72ef7fde..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2549.png b/front/public/images/small/gregtech/gt.blockores/2549.png deleted file mode 100644 index deae6f3623..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2607.png b/front/public/images/small/gregtech/gt.blockores/2607.png deleted file mode 100644 index 866113c450..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2699.png b/front/public/images/small/gregtech/gt.blockores/2699.png deleted file mode 100644 index 3b7b26c673..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/27.png b/front/public/images/small/gregtech/gt.blockores/27.png deleted file mode 100644 index 7c3bb49dcc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/27.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2770.png b/front/public/images/small/gregtech/gt.blockores/2770.png deleted file mode 100644 index b3654005d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2797.png b/front/public/images/small/gregtech/gt.blockores/2797.png deleted file mode 100644 index 6d6d54696d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/28.png b/front/public/images/small/gregtech/gt.blockores/28.png deleted file mode 100644 index 63e5a1e1bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/28.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2810.png b/front/public/images/small/gregtech/gt.blockores/2810.png deleted file mode 100644 index bc7a65dece..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2812.png b/front/public/images/small/gregtech/gt.blockores/2812.png deleted file mode 100644 index 7773b8934f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2817.png b/front/public/images/small/gregtech/gt.blockores/2817.png deleted file mode 100644 index 5280348b8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2820.png b/front/public/images/small/gregtech/gt.blockores/2820.png deleted file mode 100644 index e8eeeb89a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2821.png b/front/public/images/small/gregtech/gt.blockores/2821.png deleted file mode 100644 index b39002cc9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2822.png b/front/public/images/small/gregtech/gt.blockores/2822.png deleted file mode 100644 index 44a28f8c1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2823.png b/front/public/images/small/gregtech/gt.blockores/2823.png deleted file mode 100644 index c499f005ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2824.png b/front/public/images/small/gregtech/gt.blockores/2824.png deleted file mode 100644 index 6d6d54696d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2825.png b/front/public/images/small/gregtech/gt.blockores/2825.png deleted file mode 100644 index 4584fb46a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2826.png b/front/public/images/small/gregtech/gt.blockores/2826.png deleted file mode 100644 index 7a7e74e57f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2827.png b/front/public/images/small/gregtech/gt.blockores/2827.png deleted file mode 100644 index 38090fbc3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2828.png b/front/public/images/small/gregtech/gt.blockores/2828.png deleted file mode 100644 index 57b2d9e40f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2829.png b/front/public/images/small/gregtech/gt.blockores/2829.png deleted file mode 100644 index dab8726953..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2830.png b/front/public/images/small/gregtech/gt.blockores/2830.png deleted file mode 100644 index 4ea496c108..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2831.png b/front/public/images/small/gregtech/gt.blockores/2831.png deleted file mode 100644 index 44a28f8c1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2833.png b/front/public/images/small/gregtech/gt.blockores/2833.png deleted file mode 100644 index 3d98682201..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2834.png b/front/public/images/small/gregtech/gt.blockores/2834.png deleted file mode 100644 index 3267755e88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2835.png b/front/public/images/small/gregtech/gt.blockores/2835.png deleted file mode 100644 index ef7d89c27c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2836.png b/front/public/images/small/gregtech/gt.blockores/2836.png deleted file mode 100644 index 1a70ca35de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2838.png b/front/public/images/small/gregtech/gt.blockores/2838.png deleted file mode 100644 index 30ae9a9790..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2839.png b/front/public/images/small/gregtech/gt.blockores/2839.png deleted file mode 100644 index 5e8c308493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2840.png b/front/public/images/small/gregtech/gt.blockores/2840.png deleted file mode 100644 index 67ad7303b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2841.png b/front/public/images/small/gregtech/gt.blockores/2841.png deleted file mode 100644 index d4cd1733f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2842.png b/front/public/images/small/gregtech/gt.blockores/2842.png deleted file mode 100644 index 4c7311095e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2855.png b/front/public/images/small/gregtech/gt.blockores/2855.png deleted file mode 100644 index cb42f92dd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2856.png b/front/public/images/small/gregtech/gt.blockores/2856.png deleted file mode 100644 index bdd52a6895..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2861.png b/front/public/images/small/gregtech/gt.blockores/2861.png deleted file mode 100644 index 5e8c308493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2865.png b/front/public/images/small/gregtech/gt.blockores/2865.png deleted file mode 100644 index e2145ae277..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2868.png b/front/public/images/small/gregtech/gt.blockores/2868.png deleted file mode 100644 index 6298b58655..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2870.png b/front/public/images/small/gregtech/gt.blockores/2870.png deleted file mode 100644 index 87b33f5e96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2871.png b/front/public/images/small/gregtech/gt.blockores/2871.png deleted file mode 100644 index c85b46e4b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2873.png b/front/public/images/small/gregtech/gt.blockores/2873.png deleted file mode 100644 index 94cd02ed16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2877.png b/front/public/images/small/gregtech/gt.blockores/2877.png deleted file mode 100644 index 7527dedd52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2878.png b/front/public/images/small/gregtech/gt.blockores/2878.png deleted file mode 100644 index effb2c9465..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2882.png b/front/public/images/small/gregtech/gt.blockores/2882.png deleted file mode 100644 index 50a5a70541..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2883.png b/front/public/images/small/gregtech/gt.blockores/2883.png deleted file mode 100644 index 3d98682201..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2884.png b/front/public/images/small/gregtech/gt.blockores/2884.png deleted file mode 100644 index 921b84124e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2894.png b/front/public/images/small/gregtech/gt.blockores/2894.png deleted file mode 100644 index 1b9db81fa7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/29.png b/front/public/images/small/gregtech/gt.blockores/29.png deleted file mode 100644 index 8b2b78b2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/29.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2900.png b/front/public/images/small/gregtech/gt.blockores/2900.png deleted file mode 100644 index 934a13bd6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2901.png b/front/public/images/small/gregtech/gt.blockores/2901.png deleted file mode 100644 index 672585e43f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2902.png b/front/public/images/small/gregtech/gt.blockores/2902.png deleted file mode 100644 index a301bd1844..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2903.png b/front/public/images/small/gregtech/gt.blockores/2903.png deleted file mode 100644 index 0733359ee9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2904.png b/front/public/images/small/gregtech/gt.blockores/2904.png deleted file mode 100644 index 4828e18eaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2905.png b/front/public/images/small/gregtech/gt.blockores/2905.png deleted file mode 100644 index a659102333..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2906.png b/front/public/images/small/gregtech/gt.blockores/2906.png deleted file mode 100644 index b25f552dbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2907.png b/front/public/images/small/gregtech/gt.blockores/2907.png deleted file mode 100644 index 001d7eb13c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2908.png b/front/public/images/small/gregtech/gt.blockores/2908.png deleted file mode 100644 index ed73e34f5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2909.png b/front/public/images/small/gregtech/gt.blockores/2909.png deleted file mode 100644 index 1c4c33b7ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2910.png b/front/public/images/small/gregtech/gt.blockores/2910.png deleted file mode 100644 index 94d46535b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2911.png b/front/public/images/small/gregtech/gt.blockores/2911.png deleted file mode 100644 index c2884eb538..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2912.png b/front/public/images/small/gregtech/gt.blockores/2912.png deleted file mode 100644 index be0a927527..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2913.png b/front/public/images/small/gregtech/gt.blockores/2913.png deleted file mode 100644 index a63421f96b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2914.png b/front/public/images/small/gregtech/gt.blockores/2914.png deleted file mode 100644 index d315b58526..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2915.png b/front/public/images/small/gregtech/gt.blockores/2915.png deleted file mode 100644 index ca0a9f4433..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2916.png b/front/public/images/small/gregtech/gt.blockores/2916.png deleted file mode 100644 index 283252d92d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2917.png b/front/public/images/small/gregtech/gt.blockores/2917.png deleted file mode 100644 index c9f9d5f07d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2918.png b/front/public/images/small/gregtech/gt.blockores/2918.png deleted file mode 100644 index c68add8775..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2919.png b/front/public/images/small/gregtech/gt.blockores/2919.png deleted file mode 100644 index ca5655b600..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2920.png b/front/public/images/small/gregtech/gt.blockores/2920.png deleted file mode 100644 index 89cee23e95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2921.png b/front/public/images/small/gregtech/gt.blockores/2921.png deleted file mode 100644 index 23d1ab0868..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2922.png b/front/public/images/small/gregtech/gt.blockores/2922.png deleted file mode 100644 index e1e00a8ea3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2923.png b/front/public/images/small/gregtech/gt.blockores/2923.png deleted file mode 100644 index b35be809da..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2924.png b/front/public/images/small/gregtech/gt.blockores/2924.png deleted file mode 100644 index bfe2aca662..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2925.png b/front/public/images/small/gregtech/gt.blockores/2925.png deleted file mode 100644 index eada72a5f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2926.png b/front/public/images/small/gregtech/gt.blockores/2926.png deleted file mode 100644 index de380ad1b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2927.png b/front/public/images/small/gregtech/gt.blockores/2927.png deleted file mode 100644 index be3da7f09e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2928.png b/front/public/images/small/gregtech/gt.blockores/2928.png deleted file mode 100644 index 56a6d935d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2929.png b/front/public/images/small/gregtech/gt.blockores/2929.png deleted file mode 100644 index f386615a00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2930.png b/front/public/images/small/gregtech/gt.blockores/2930.png deleted file mode 100644 index 44a28f8c1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2931.png b/front/public/images/small/gregtech/gt.blockores/2931.png deleted file mode 100644 index 6cf7bdde76..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2932.png b/front/public/images/small/gregtech/gt.blockores/2932.png deleted file mode 100644 index 7cde5b313f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2933.png b/front/public/images/small/gregtech/gt.blockores/2933.png deleted file mode 100644 index 07df0c127e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2934.png b/front/public/images/small/gregtech/gt.blockores/2934.png deleted file mode 100644 index aecd5f0942..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2935.png b/front/public/images/small/gregtech/gt.blockores/2935.png deleted file mode 100644 index 085c706c8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2936.png b/front/public/images/small/gregtech/gt.blockores/2936.png deleted file mode 100644 index 6a28ca3b67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2937.png b/front/public/images/small/gregtech/gt.blockores/2937.png deleted file mode 100644 index bc9ca8e7f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2938.png b/front/public/images/small/gregtech/gt.blockores/2938.png deleted file mode 100644 index 68616964dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2939.png b/front/public/images/small/gregtech/gt.blockores/2939.png deleted file mode 100644 index e2d607294e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2941.png b/front/public/images/small/gregtech/gt.blockores/2941.png deleted file mode 100644 index 5280348b8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2942.png b/front/public/images/small/gregtech/gt.blockores/2942.png deleted file mode 100644 index c1b906d115..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2943.png b/front/public/images/small/gregtech/gt.blockores/2943.png deleted file mode 100644 index 0bc38c6963..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2944.png b/front/public/images/small/gregtech/gt.blockores/2944.png deleted file mode 100644 index 552fd88e0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2945.png b/front/public/images/small/gregtech/gt.blockores/2945.png deleted file mode 100644 index f71605b8ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2946.png b/front/public/images/small/gregtech/gt.blockores/2946.png deleted file mode 100644 index 4ae0054f6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2948.png b/front/public/images/small/gregtech/gt.blockores/2948.png deleted file mode 100644 index 232ed85d7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2949.png b/front/public/images/small/gregtech/gt.blockores/2949.png deleted file mode 100644 index 07df0c127e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2951.png b/front/public/images/small/gregtech/gt.blockores/2951.png deleted file mode 100644 index 8941137bfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2952.png b/front/public/images/small/gregtech/gt.blockores/2952.png deleted file mode 100644 index 592277d5c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2956.png b/front/public/images/small/gregtech/gt.blockores/2956.png deleted file mode 100644 index 396011dcf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2966.png b/front/public/images/small/gregtech/gt.blockores/2966.png deleted file mode 100644 index 8a3e90918f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2969.png b/front/public/images/small/gregtech/gt.blockores/2969.png deleted file mode 100644 index 5e8c308493..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2971.png b/front/public/images/small/gregtech/gt.blockores/2971.png deleted file mode 100644 index 1e5700aac4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2975.png b/front/public/images/small/gregtech/gt.blockores/2975.png deleted file mode 100644 index 4d101f2783..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2976.png b/front/public/images/small/gregtech/gt.blockores/2976.png deleted file mode 100644 index 9aa4490fa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2978.png b/front/public/images/small/gregtech/gt.blockores/2978.png deleted file mode 100644 index 4030944fb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2982.png b/front/public/images/small/gregtech/gt.blockores/2982.png deleted file mode 100644 index 7ab78fefa4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/2984.png b/front/public/images/small/gregtech/gt.blockores/2984.png deleted file mode 100644 index d07f0ef696..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/2984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/30.png b/front/public/images/small/gregtech/gt.blockores/30.png deleted file mode 100644 index 99fc6a29db..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/30.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3006.png b/front/public/images/small/gregtech/gt.blockores/3006.png deleted file mode 100644 index d7aebc154b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3008.png b/front/public/images/small/gregtech/gt.blockores/3008.png deleted file mode 100644 index 7ce7035acc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3018.png b/front/public/images/small/gregtech/gt.blockores/3018.png deleted file mode 100644 index 427672f2e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3019.png b/front/public/images/small/gregtech/gt.blockores/3019.png deleted file mode 100644 index 7711a795f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3020.png b/front/public/images/small/gregtech/gt.blockores/3020.png deleted file mode 100644 index 88356a3562..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3022.png b/front/public/images/small/gregtech/gt.blockores/3022.png deleted file mode 100644 index f58cf483b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3027.png b/front/public/images/small/gregtech/gt.blockores/3027.png deleted file mode 100644 index 9c9be62001..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3028.png b/front/public/images/small/gregtech/gt.blockores/3028.png deleted file mode 100644 index b0dd5c3d1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3029.png b/front/public/images/small/gregtech/gt.blockores/3029.png deleted file mode 100644 index d6fe3c403b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/303.png b/front/public/images/small/gregtech/gt.blockores/303.png deleted file mode 100644 index d9645df42e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3030.png b/front/public/images/small/gregtech/gt.blockores/3030.png deleted file mode 100644 index f2ec399dba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3031.png b/front/public/images/small/gregtech/gt.blockores/3031.png deleted file mode 100644 index b31b2976d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3032.png b/front/public/images/small/gregtech/gt.blockores/3032.png deleted file mode 100644 index e4ed4b25de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3033.png b/front/public/images/small/gregtech/gt.blockores/3033.png deleted file mode 100644 index 70970b83ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3034.png b/front/public/images/small/gregtech/gt.blockores/3034.png deleted file mode 100644 index 563f4e2709..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3035.png b/front/public/images/small/gregtech/gt.blockores/3035.png deleted file mode 100644 index 7519c31d9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3036.png b/front/public/images/small/gregtech/gt.blockores/3036.png deleted file mode 100644 index 107f4750f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3037.png b/front/public/images/small/gregtech/gt.blockores/3037.png deleted file mode 100644 index 8fcb0f14ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3039.png b/front/public/images/small/gregtech/gt.blockores/3039.png deleted file mode 100644 index d2716c3edb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3043.png b/front/public/images/small/gregtech/gt.blockores/3043.png deleted file mode 100644 index 376ab964eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3044.png b/front/public/images/small/gregtech/gt.blockores/3044.png deleted file mode 100644 index e4ed4b25de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3045.png b/front/public/images/small/gregtech/gt.blockores/3045.png deleted file mode 100644 index 2a978fbc96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3047.png b/front/public/images/small/gregtech/gt.blockores/3047.png deleted file mode 100644 index 51f99d3be7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3048.png b/front/public/images/small/gregtech/gt.blockores/3048.png deleted file mode 100644 index cf7f39d92a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3052.png b/front/public/images/small/gregtech/gt.blockores/3052.png deleted file mode 100644 index 785ad55373..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3054.png b/front/public/images/small/gregtech/gt.blockores/3054.png deleted file mode 100644 index 8fcb0f14ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3055.png b/front/public/images/small/gregtech/gt.blockores/3055.png deleted file mode 100644 index 546345a373..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3056.png b/front/public/images/small/gregtech/gt.blockores/3056.png deleted file mode 100644 index a197f3a23a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3057.png b/front/public/images/small/gregtech/gt.blockores/3057.png deleted file mode 100644 index faa86388ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3058.png b/front/public/images/small/gregtech/gt.blockores/3058.png deleted file mode 100644 index d9b2f2f629..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3059.png b/front/public/images/small/gregtech/gt.blockores/3059.png deleted file mode 100644 index 47eb67093b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3062.png b/front/public/images/small/gregtech/gt.blockores/3062.png deleted file mode 100644 index d59a577878..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3063.png b/front/public/images/small/gregtech/gt.blockores/3063.png deleted file mode 100644 index d2716c3edb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3064.png b/front/public/images/small/gregtech/gt.blockores/3064.png deleted file mode 100644 index 18169a9789..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3065.png b/front/public/images/small/gregtech/gt.blockores/3065.png deleted file mode 100644 index c36d6656fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3066.png b/front/public/images/small/gregtech/gt.blockores/3066.png deleted file mode 100644 index 0b9a7d8fe7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3067.png b/front/public/images/small/gregtech/gt.blockores/3067.png deleted file mode 100644 index 9ce63b4519..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3068.png b/front/public/images/small/gregtech/gt.blockores/3068.png deleted file mode 100644 index 5f24c02101..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3069.png b/front/public/images/small/gregtech/gt.blockores/3069.png deleted file mode 100644 index 2417c9321f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/307.png b/front/public/images/small/gregtech/gt.blockores/307.png deleted file mode 100644 index 159028796a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3070.png b/front/public/images/small/gregtech/gt.blockores/3070.png deleted file mode 100644 index aa2f21c41b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3071.png b/front/public/images/small/gregtech/gt.blockores/3071.png deleted file mode 100644 index d921fabcf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3072.png b/front/public/images/small/gregtech/gt.blockores/3072.png deleted file mode 100644 index d2716c3edb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3073.png b/front/public/images/small/gregtech/gt.blockores/3073.png deleted file mode 100644 index cdbe2e3ad7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3074.png b/front/public/images/small/gregtech/gt.blockores/3074.png deleted file mode 100644 index 40a7185c12..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3075.png b/front/public/images/small/gregtech/gt.blockores/3075.png deleted file mode 100644 index 7cedf89bff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3076.png b/front/public/images/small/gregtech/gt.blockores/3076.png deleted file mode 100644 index f1b2981ad3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3077.png b/front/public/images/small/gregtech/gt.blockores/3077.png deleted file mode 100644 index f5b036936c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3078.png b/front/public/images/small/gregtech/gt.blockores/3078.png deleted file mode 100644 index 347a43e34d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3080.png b/front/public/images/small/gregtech/gt.blockores/3080.png deleted file mode 100644 index 0d8d2cabe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3081.png b/front/public/images/small/gregtech/gt.blockores/3081.png deleted file mode 100644 index d6fe3c403b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3083.png b/front/public/images/small/gregtech/gt.blockores/3083.png deleted file mode 100644 index c119b32063..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3084.png b/front/public/images/small/gregtech/gt.blockores/3084.png deleted file mode 100644 index 85fcfbc9e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3085.png b/front/public/images/small/gregtech/gt.blockores/3085.png deleted file mode 100644 index d55517dd82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3086.png b/front/public/images/small/gregtech/gt.blockores/3086.png deleted file mode 100644 index 32b966dbe7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3089.png b/front/public/images/small/gregtech/gt.blockores/3089.png deleted file mode 100644 index 21cf16c72c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3090.png b/front/public/images/small/gregtech/gt.blockores/3090.png deleted file mode 100644 index a1377edc94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3096.png b/front/public/images/small/gregtech/gt.blockores/3096.png deleted file mode 100644 index 480c25ab28..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3097.png b/front/public/images/small/gregtech/gt.blockores/3097.png deleted file mode 100644 index 26b7e6f4a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3098.png b/front/public/images/small/gregtech/gt.blockores/3098.png deleted file mode 100644 index ee8cce14d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/31.png b/front/public/images/small/gregtech/gt.blockores/31.png deleted file mode 100644 index ff1bec4a48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/31.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3100.png b/front/public/images/small/gregtech/gt.blockores/3100.png deleted file mode 100644 index 8656305472..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3101.png b/front/public/images/small/gregtech/gt.blockores/3101.png deleted file mode 100644 index 939b6f6cf2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3103.png b/front/public/images/small/gregtech/gt.blockores/3103.png deleted file mode 100644 index e4ed4b25de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3110.png b/front/public/images/small/gregtech/gt.blockores/3110.png deleted file mode 100644 index 47e54cafc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3129.png b/front/public/images/small/gregtech/gt.blockores/3129.png deleted file mode 100644 index b31b2976d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/319.png b/front/public/images/small/gregtech/gt.blockores/319.png deleted file mode 100644 index c577e8ce7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/32.png b/front/public/images/small/gregtech/gt.blockores/32.png deleted file mode 100644 index acee54c2e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/32.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/320.png b/front/public/images/small/gregtech/gt.blockores/320.png deleted file mode 100644 index 09789c9acc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/323.png b/front/public/images/small/gregtech/gt.blockores/323.png deleted file mode 100644 index 59f28524c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/324.png b/front/public/images/small/gregtech/gt.blockores/324.png deleted file mode 100644 index 8b2b78b2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/326.png b/front/public/images/small/gregtech/gt.blockores/326.png deleted file mode 100644 index 8084f97f2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/327.png b/front/public/images/small/gregtech/gt.blockores/327.png deleted file mode 100644 index e84b0928d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/329.png b/front/public/images/small/gregtech/gt.blockores/329.png deleted file mode 100644 index cdab946e1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/33.png b/front/public/images/small/gregtech/gt.blockores/33.png deleted file mode 100644 index 017b14ca89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/33.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3303.png b/front/public/images/small/gregtech/gt.blockores/3303.png deleted file mode 100644 index 082195c920..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3307.png b/front/public/images/small/gregtech/gt.blockores/3307.png deleted file mode 100644 index 060e1cf97f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/331.png b/front/public/images/small/gregtech/gt.blockores/331.png deleted file mode 100644 index c4ad73b230..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3319.png b/front/public/images/small/gregtech/gt.blockores/3319.png deleted file mode 100644 index b5f737aa9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3320.png b/front/public/images/small/gregtech/gt.blockores/3320.png deleted file mode 100644 index 1bf80a4331..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3323.png b/front/public/images/small/gregtech/gt.blockores/3323.png deleted file mode 100644 index bfc118faff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3324.png b/front/public/images/small/gregtech/gt.blockores/3324.png deleted file mode 100644 index d6fe3c403b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3326.png b/front/public/images/small/gregtech/gt.blockores/3326.png deleted file mode 100644 index b2ec99d454..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3327.png b/front/public/images/small/gregtech/gt.blockores/3327.png deleted file mode 100644 index c3b8d56d23..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3329.png b/front/public/images/small/gregtech/gt.blockores/3329.png deleted file mode 100644 index ad0580949b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3331.png b/front/public/images/small/gregtech/gt.blockores/3331.png deleted file mode 100644 index 95b37124e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3336.png b/front/public/images/small/gregtech/gt.blockores/3336.png deleted file mode 100644 index b9e2775ce7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3340.png b/front/public/images/small/gregtech/gt.blockores/3340.png deleted file mode 100644 index 3c478dc34d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3342.png b/front/public/images/small/gregtech/gt.blockores/3342.png deleted file mode 100644 index ac4d19eddd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3347.png b/front/public/images/small/gregtech/gt.blockores/3347.png deleted file mode 100644 index 1dae93d977..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/336.png b/front/public/images/small/gregtech/gt.blockores/336.png deleted file mode 100644 index 59b1055627..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3368.png b/front/public/images/small/gregtech/gt.blockores/3368.png deleted file mode 100644 index 254a4593fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3375.png b/front/public/images/small/gregtech/gt.blockores/3375.png deleted file mode 100644 index a0be7855ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3382.png b/front/public/images/small/gregtech/gt.blockores/3382.png deleted file mode 100644 index d04eeb2b5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3386.png b/front/public/images/small/gregtech/gt.blockores/3386.png deleted file mode 100644 index f4bca5df67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3387.png b/front/public/images/small/gregtech/gt.blockores/3387.png deleted file mode 100644 index ae32bda694..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3388.png b/front/public/images/small/gregtech/gt.blockores/3388.png deleted file mode 100644 index d6fe3c403b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3389.png b/front/public/images/small/gregtech/gt.blockores/3389.png deleted file mode 100644 index db460a9c80..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3390.png b/front/public/images/small/gregtech/gt.blockores/3390.png deleted file mode 100644 index 788c1c2fb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3391.png b/front/public/images/small/gregtech/gt.blockores/3391.png deleted file mode 100644 index bc53d1f47e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3392.png b/front/public/images/small/gregtech/gt.blockores/3392.png deleted file mode 100644 index 09bf67b2eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3393.png b/front/public/images/small/gregtech/gt.blockores/3393.png deleted file mode 100644 index 13954b35f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3394.png b/front/public/images/small/gregtech/gt.blockores/3394.png deleted file mode 100644 index b5f737aa9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3395.png b/front/public/images/small/gregtech/gt.blockores/3395.png deleted file mode 100644 index d6fe3c403b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3398.png b/front/public/images/small/gregtech/gt.blockores/3398.png deleted file mode 100644 index d7865ac661..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/34.png b/front/public/images/small/gregtech/gt.blockores/34.png deleted file mode 100644 index b626ee94e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/34.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/340.png b/front/public/images/small/gregtech/gt.blockores/340.png deleted file mode 100644 index 259f76a039..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/342.png b/front/public/images/small/gregtech/gt.blockores/342.png deleted file mode 100644 index 728129a9d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/347.png b/front/public/images/small/gregtech/gt.blockores/347.png deleted file mode 100644 index d8b67005a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3485.png b/front/public/images/small/gregtech/gt.blockores/3485.png deleted file mode 100644 index 53aad1fdd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3488.png b/front/public/images/small/gregtech/gt.blockores/3488.png deleted file mode 100644 index 53af3712e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3489.png b/front/public/images/small/gregtech/gt.blockores/3489.png deleted file mode 100644 index 3588339dcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/35.png b/front/public/images/small/gregtech/gt.blockores/35.png deleted file mode 100644 index 009beeb639..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/35.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3500.png b/front/public/images/small/gregtech/gt.blockores/3500.png deleted file mode 100644 index 801f3f79a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3501.png b/front/public/images/small/gregtech/gt.blockores/3501.png deleted file mode 100644 index 82fbb8b27d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3502.png b/front/public/images/small/gregtech/gt.blockores/3502.png deleted file mode 100644 index c5ae57418f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3503.png b/front/public/images/small/gregtech/gt.blockores/3503.png deleted file mode 100644 index 31cda1cb82..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3504.png b/front/public/images/small/gregtech/gt.blockores/3504.png deleted file mode 100644 index cd64bcf0e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3505.png b/front/public/images/small/gregtech/gt.blockores/3505.png deleted file mode 100644 index 6eda6c3452..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3506.png b/front/public/images/small/gregtech/gt.blockores/3506.png deleted file mode 100644 index 3d11788128..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3507.png b/front/public/images/small/gregtech/gt.blockores/3507.png deleted file mode 100644 index f605b7efbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3508.png b/front/public/images/small/gregtech/gt.blockores/3508.png deleted file mode 100644 index 3ff3b84b3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3509.png b/front/public/images/small/gregtech/gt.blockores/3509.png deleted file mode 100644 index f1365204be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3510.png b/front/public/images/small/gregtech/gt.blockores/3510.png deleted file mode 100644 index 0c01bf352a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3511.png b/front/public/images/small/gregtech/gt.blockores/3511.png deleted file mode 100644 index 7d64278655..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3512.png b/front/public/images/small/gregtech/gt.blockores/3512.png deleted file mode 100644 index c5ae57418f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3513.png b/front/public/images/small/gregtech/gt.blockores/3513.png deleted file mode 100644 index 0c01bf352a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3514.png b/front/public/images/small/gregtech/gt.blockores/3514.png deleted file mode 100644 index f605b7efbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3515.png b/front/public/images/small/gregtech/gt.blockores/3515.png deleted file mode 100644 index 844ccc3e27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3516.png b/front/public/images/small/gregtech/gt.blockores/3516.png deleted file mode 100644 index d33ab1bec7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3517.png b/front/public/images/small/gregtech/gt.blockores/3517.png deleted file mode 100644 index b548f4f407..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3518.png b/front/public/images/small/gregtech/gt.blockores/3518.png deleted file mode 100644 index e86400acfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3519.png b/front/public/images/small/gregtech/gt.blockores/3519.png deleted file mode 100644 index e86400acfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3520.png b/front/public/images/small/gregtech/gt.blockores/3520.png deleted file mode 100644 index f8c7e5f6bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3521.png b/front/public/images/small/gregtech/gt.blockores/3521.png deleted file mode 100644 index 920f303eda..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3522.png b/front/public/images/small/gregtech/gt.blockores/3522.png deleted file mode 100644 index 3b3f829efb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3523.png b/front/public/images/small/gregtech/gt.blockores/3523.png deleted file mode 100644 index de406d7971..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3524.png b/front/public/images/small/gregtech/gt.blockores/3524.png deleted file mode 100644 index a5f5339e20..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3525.png b/front/public/images/small/gregtech/gt.blockores/3525.png deleted file mode 100644 index 2c9b353bd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3526.png b/front/public/images/small/gregtech/gt.blockores/3526.png deleted file mode 100644 index 10e7e47312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3527.png b/front/public/images/small/gregtech/gt.blockores/3527.png deleted file mode 100644 index 7d64278655..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3528.png b/front/public/images/small/gregtech/gt.blockores/3528.png deleted file mode 100644 index 240a88484b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3529.png b/front/public/images/small/gregtech/gt.blockores/3529.png deleted file mode 100644 index 636ccfd826..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3530.png b/front/public/images/small/gregtech/gt.blockores/3530.png deleted file mode 100644 index 8345ad5a0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3531.png b/front/public/images/small/gregtech/gt.blockores/3531.png deleted file mode 100644 index 7af666ca47..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3534.png b/front/public/images/small/gregtech/gt.blockores/3534.png deleted file mode 100644 index 57a584d6b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3535.png b/front/public/images/small/gregtech/gt.blockores/3535.png deleted file mode 100644 index 2befa9aa96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3537.png b/front/public/images/small/gregtech/gt.blockores/3537.png deleted file mode 100644 index 236c3a919a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3538.png b/front/public/images/small/gregtech/gt.blockores/3538.png deleted file mode 100644 index 283a5ef131..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3540.png b/front/public/images/small/gregtech/gt.blockores/3540.png deleted file mode 100644 index ae1e2a73f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3541.png b/front/public/images/small/gregtech/gt.blockores/3541.png deleted file mode 100644 index ae71cbe017..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3542.png b/front/public/images/small/gregtech/gt.blockores/3542.png deleted file mode 100644 index ecdc229b0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3543.png b/front/public/images/small/gregtech/gt.blockores/3543.png deleted file mode 100644 index b8c496bf73..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3544.png b/front/public/images/small/gregtech/gt.blockores/3544.png deleted file mode 100644 index 208edbebbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3545.png b/front/public/images/small/gregtech/gt.blockores/3545.png deleted file mode 100644 index 64118d0fb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3548.png b/front/public/images/small/gregtech/gt.blockores/3548.png deleted file mode 100644 index 3c54dbdacf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3549.png b/front/public/images/small/gregtech/gt.blockores/3549.png deleted file mode 100644 index 7b848e03f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/36.png b/front/public/images/small/gregtech/gt.blockores/36.png deleted file mode 100644 index 35881a881d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/36.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3607.png b/front/public/images/small/gregtech/gt.blockores/3607.png deleted file mode 100644 index db234e9108..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/368.png b/front/public/images/small/gregtech/gt.blockores/368.png deleted file mode 100644 index 3635e553fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3699.png b/front/public/images/small/gregtech/gt.blockores/3699.png deleted file mode 100644 index e0d2913032..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/37.png b/front/public/images/small/gregtech/gt.blockores/37.png deleted file mode 100644 index 6bc7b242bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/37.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/375.png b/front/public/images/small/gregtech/gt.blockores/375.png deleted file mode 100644 index bca2b75f5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3770.png b/front/public/images/small/gregtech/gt.blockores/3770.png deleted file mode 100644 index f6d13dfb8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3797.png b/front/public/images/small/gregtech/gt.blockores/3797.png deleted file mode 100644 index faa86388ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3810.png b/front/public/images/small/gregtech/gt.blockores/3810.png deleted file mode 100644 index 91576624e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3812.png b/front/public/images/small/gregtech/gt.blockores/3812.png deleted file mode 100644 index 484e3a0b25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3817.png b/front/public/images/small/gregtech/gt.blockores/3817.png deleted file mode 100644 index dc4f8a1665..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/382.png b/front/public/images/small/gregtech/gt.blockores/382.png deleted file mode 100644 index 9b5db4064c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3820.png b/front/public/images/small/gregtech/gt.blockores/3820.png deleted file mode 100644 index 42bed122a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3821.png b/front/public/images/small/gregtech/gt.blockores/3821.png deleted file mode 100644 index 03888f1a14..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3822.png b/front/public/images/small/gregtech/gt.blockores/3822.png deleted file mode 100644 index 8682088312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3823.png b/front/public/images/small/gregtech/gt.blockores/3823.png deleted file mode 100644 index 87c63269d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3824.png b/front/public/images/small/gregtech/gt.blockores/3824.png deleted file mode 100644 index faa86388ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3825.png b/front/public/images/small/gregtech/gt.blockores/3825.png deleted file mode 100644 index 1e6d357736..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3826.png b/front/public/images/small/gregtech/gt.blockores/3826.png deleted file mode 100644 index afbf88c04f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3827.png b/front/public/images/small/gregtech/gt.blockores/3827.png deleted file mode 100644 index 70970b83ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3828.png b/front/public/images/small/gregtech/gt.blockores/3828.png deleted file mode 100644 index 721b5b39ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3829.png b/front/public/images/small/gregtech/gt.blockores/3829.png deleted file mode 100644 index ed05a10030..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3830.png b/front/public/images/small/gregtech/gt.blockores/3830.png deleted file mode 100644 index bb6ed6c309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3831.png b/front/public/images/small/gregtech/gt.blockores/3831.png deleted file mode 100644 index 8682088312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3833.png b/front/public/images/small/gregtech/gt.blockores/3833.png deleted file mode 100644 index 6904900fb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3834.png b/front/public/images/small/gregtech/gt.blockores/3834.png deleted file mode 100644 index 8e611fcf1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3835.png b/front/public/images/small/gregtech/gt.blockores/3835.png deleted file mode 100644 index 075419a154..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3836.png b/front/public/images/small/gregtech/gt.blockores/3836.png deleted file mode 100644 index 64547a32a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3838.png b/front/public/images/small/gregtech/gt.blockores/3838.png deleted file mode 100644 index 3bb9186dbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3839.png b/front/public/images/small/gregtech/gt.blockores/3839.png deleted file mode 100644 index d2716c3edb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3840.png b/front/public/images/small/gregtech/gt.blockores/3840.png deleted file mode 100644 index cc3f88b2e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3841.png b/front/public/images/small/gregtech/gt.blockores/3841.png deleted file mode 100644 index e8fbd4567a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3842.png b/front/public/images/small/gregtech/gt.blockores/3842.png deleted file mode 100644 index 458bc04a3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3855.png b/front/public/images/small/gregtech/gt.blockores/3855.png deleted file mode 100644 index 4d54446bc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3856.png b/front/public/images/small/gregtech/gt.blockores/3856.png deleted file mode 100644 index c8600290e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/386.png b/front/public/images/small/gregtech/gt.blockores/386.png deleted file mode 100644 index 1f4ce2e640..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3861.png b/front/public/images/small/gregtech/gt.blockores/3861.png deleted file mode 100644 index d2716c3edb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3865.png b/front/public/images/small/gregtech/gt.blockores/3865.png deleted file mode 100644 index 7016182557..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3868.png b/front/public/images/small/gregtech/gt.blockores/3868.png deleted file mode 100644 index 41b7b784b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/387.png b/front/public/images/small/gregtech/gt.blockores/387.png deleted file mode 100644 index aa815d7f29..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3870.png b/front/public/images/small/gregtech/gt.blockores/3870.png deleted file mode 100644 index 5186a4fc3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3871.png b/front/public/images/small/gregtech/gt.blockores/3871.png deleted file mode 100644 index 2d2d8e108b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3873.png b/front/public/images/small/gregtech/gt.blockores/3873.png deleted file mode 100644 index 3cc3fe3917..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3877.png b/front/public/images/small/gregtech/gt.blockores/3877.png deleted file mode 100644 index 3e5435ab3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3878.png b/front/public/images/small/gregtech/gt.blockores/3878.png deleted file mode 100644 index e8592761dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/388.png b/front/public/images/small/gregtech/gt.blockores/388.png deleted file mode 100644 index 8b2b78b2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3882.png b/front/public/images/small/gregtech/gt.blockores/3882.png deleted file mode 100644 index 15d2c18a65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3883.png b/front/public/images/small/gregtech/gt.blockores/3883.png deleted file mode 100644 index 6904900fb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3884.png b/front/public/images/small/gregtech/gt.blockores/3884.png deleted file mode 100644 index 33eb664324..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/389.png b/front/public/images/small/gregtech/gt.blockores/389.png deleted file mode 100644 index 38d122e9b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3894.png b/front/public/images/small/gregtech/gt.blockores/3894.png deleted file mode 100644 index 23b439fd5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/39.png b/front/public/images/small/gregtech/gt.blockores/39.png deleted file mode 100644 index 0d85b4323e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/39.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/390.png b/front/public/images/small/gregtech/gt.blockores/390.png deleted file mode 100644 index 743a93d3b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3900.png b/front/public/images/small/gregtech/gt.blockores/3900.png deleted file mode 100644 index 48de05d353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3901.png b/front/public/images/small/gregtech/gt.blockores/3901.png deleted file mode 100644 index bab53bff98..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3902.png b/front/public/images/small/gregtech/gt.blockores/3902.png deleted file mode 100644 index 8abebcbcb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3903.png b/front/public/images/small/gregtech/gt.blockores/3903.png deleted file mode 100644 index 74127bffd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3904.png b/front/public/images/small/gregtech/gt.blockores/3904.png deleted file mode 100644 index 49eb55a210..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3905.png b/front/public/images/small/gregtech/gt.blockores/3905.png deleted file mode 100644 index 573604b321..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3906.png b/front/public/images/small/gregtech/gt.blockores/3906.png deleted file mode 100644 index 36e41a0597..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3907.png b/front/public/images/small/gregtech/gt.blockores/3907.png deleted file mode 100644 index 11e3e843f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3908.png b/front/public/images/small/gregtech/gt.blockores/3908.png deleted file mode 100644 index f0dddb0b29..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3909.png b/front/public/images/small/gregtech/gt.blockores/3909.png deleted file mode 100644 index 65b0c1237c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/391.png b/front/public/images/small/gregtech/gt.blockores/391.png deleted file mode 100644 index 30ca8b545d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3910.png b/front/public/images/small/gregtech/gt.blockores/3910.png deleted file mode 100644 index 4d32aeec69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3911.png b/front/public/images/small/gregtech/gt.blockores/3911.png deleted file mode 100644 index 4dcec651a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3912.png b/front/public/images/small/gregtech/gt.blockores/3912.png deleted file mode 100644 index b0cfb72383..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3913.png b/front/public/images/small/gregtech/gt.blockores/3913.png deleted file mode 100644 index bdbd81fa0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3914.png b/front/public/images/small/gregtech/gt.blockores/3914.png deleted file mode 100644 index f851406140..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3915.png b/front/public/images/small/gregtech/gt.blockores/3915.png deleted file mode 100644 index b6e3c8c85f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3916.png b/front/public/images/small/gregtech/gt.blockores/3916.png deleted file mode 100644 index 4f326c9db2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3917.png b/front/public/images/small/gregtech/gt.blockores/3917.png deleted file mode 100644 index 13d91ff0a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3918.png b/front/public/images/small/gregtech/gt.blockores/3918.png deleted file mode 100644 index 811c682aa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3919.png b/front/public/images/small/gregtech/gt.blockores/3919.png deleted file mode 100644 index a5ba0a16bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/392.png b/front/public/images/small/gregtech/gt.blockores/392.png deleted file mode 100644 index 0337c850b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3920.png b/front/public/images/small/gregtech/gt.blockores/3920.png deleted file mode 100644 index 196cc52984..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3921.png b/front/public/images/small/gregtech/gt.blockores/3921.png deleted file mode 100644 index a73f21c08e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3922.png b/front/public/images/small/gregtech/gt.blockores/3922.png deleted file mode 100644 index 4703ce0eaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3923.png b/front/public/images/small/gregtech/gt.blockores/3923.png deleted file mode 100644 index 6d298f5242..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3924.png b/front/public/images/small/gregtech/gt.blockores/3924.png deleted file mode 100644 index 700232ba7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3925.png b/front/public/images/small/gregtech/gt.blockores/3925.png deleted file mode 100644 index 7ba461457c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3926.png b/front/public/images/small/gregtech/gt.blockores/3926.png deleted file mode 100644 index ef1bad5924..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3927.png b/front/public/images/small/gregtech/gt.blockores/3927.png deleted file mode 100644 index 477b2793c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3928.png b/front/public/images/small/gregtech/gt.blockores/3928.png deleted file mode 100644 index bec8c34771..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3929.png b/front/public/images/small/gregtech/gt.blockores/3929.png deleted file mode 100644 index c86099b7d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/393.png b/front/public/images/small/gregtech/gt.blockores/393.png deleted file mode 100644 index 55d5ac7ce3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3930.png b/front/public/images/small/gregtech/gt.blockores/3930.png deleted file mode 100644 index 8682088312..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3931.png b/front/public/images/small/gregtech/gt.blockores/3931.png deleted file mode 100644 index f58cf483b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3932.png b/front/public/images/small/gregtech/gt.blockores/3932.png deleted file mode 100644 index ecc2b94611..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3933.png b/front/public/images/small/gregtech/gt.blockores/3933.png deleted file mode 100644 index ec211698a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3934.png b/front/public/images/small/gregtech/gt.blockores/3934.png deleted file mode 100644 index a43f7507e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3935.png b/front/public/images/small/gregtech/gt.blockores/3935.png deleted file mode 100644 index 65fb8fcfdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3936.png b/front/public/images/small/gregtech/gt.blockores/3936.png deleted file mode 100644 index 9ea04ea434..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3937.png b/front/public/images/small/gregtech/gt.blockores/3937.png deleted file mode 100644 index cea5103b8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3938.png b/front/public/images/small/gregtech/gt.blockores/3938.png deleted file mode 100644 index 1463238f79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3939.png b/front/public/images/small/gregtech/gt.blockores/3939.png deleted file mode 100644 index b08151e47d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/394.png b/front/public/images/small/gregtech/gt.blockores/394.png deleted file mode 100644 index c577e8ce7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3941.png b/front/public/images/small/gregtech/gt.blockores/3941.png deleted file mode 100644 index dc4f8a1665..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3942.png b/front/public/images/small/gregtech/gt.blockores/3942.png deleted file mode 100644 index a914e48335..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3943.png b/front/public/images/small/gregtech/gt.blockores/3943.png deleted file mode 100644 index d3e17448aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3944.png b/front/public/images/small/gregtech/gt.blockores/3944.png deleted file mode 100644 index dd272b1d2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3945.png b/front/public/images/small/gregtech/gt.blockores/3945.png deleted file mode 100644 index 2befa9aa96..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3946.png b/front/public/images/small/gregtech/gt.blockores/3946.png deleted file mode 100644 index 895624aa37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3948.png b/front/public/images/small/gregtech/gt.blockores/3948.png deleted file mode 100644 index 96c31c61ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3949.png b/front/public/images/small/gregtech/gt.blockores/3949.png deleted file mode 100644 index ec211698a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/395.png b/front/public/images/small/gregtech/gt.blockores/395.png deleted file mode 100644 index 8b2b78b2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3951.png b/front/public/images/small/gregtech/gt.blockores/3951.png deleted file mode 100644 index 10f57d981e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3952.png b/front/public/images/small/gregtech/gt.blockores/3952.png deleted file mode 100644 index 08727ddb02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3956.png b/front/public/images/small/gregtech/gt.blockores/3956.png deleted file mode 100644 index 3930aa3b65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3966.png b/front/public/images/small/gregtech/gt.blockores/3966.png deleted file mode 100644 index daafecbcd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3969.png b/front/public/images/small/gregtech/gt.blockores/3969.png deleted file mode 100644 index d2716c3edb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3971.png b/front/public/images/small/gregtech/gt.blockores/3971.png deleted file mode 100644 index e32290cc19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3975.png b/front/public/images/small/gregtech/gt.blockores/3975.png deleted file mode 100644 index 1f44b9514d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3976.png b/front/public/images/small/gregtech/gt.blockores/3976.png deleted file mode 100644 index b5220d5474..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3978.png b/front/public/images/small/gregtech/gt.blockores/3978.png deleted file mode 100644 index 2869742845..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/398.png b/front/public/images/small/gregtech/gt.blockores/398.png deleted file mode 100644 index 5454d42eac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3982.png b/front/public/images/small/gregtech/gt.blockores/3982.png deleted file mode 100644 index 8a04bae407..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/3984.png b/front/public/images/small/gregtech/gt.blockores/3984.png deleted file mode 100644 index b5f737aa9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/3984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4006.png b/front/public/images/small/gregtech/gt.blockores/4006.png deleted file mode 100644 index 2506145202..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4008.png b/front/public/images/small/gregtech/gt.blockores/4008.png deleted file mode 100644 index 181e2f3e18..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4018.png b/front/public/images/small/gregtech/gt.blockores/4018.png deleted file mode 100644 index 87a247a22e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4019.png b/front/public/images/small/gregtech/gt.blockores/4019.png deleted file mode 100644 index 847c8c6847..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4020.png b/front/public/images/small/gregtech/gt.blockores/4020.png deleted file mode 100644 index 2071958557..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4022.png b/front/public/images/small/gregtech/gt.blockores/4022.png deleted file mode 100644 index 319143e52f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4027.png b/front/public/images/small/gregtech/gt.blockores/4027.png deleted file mode 100644 index aa7afab704..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4028.png b/front/public/images/small/gregtech/gt.blockores/4028.png deleted file mode 100644 index 1b0579841b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4029.png b/front/public/images/small/gregtech/gt.blockores/4029.png deleted file mode 100644 index f2359c6794..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4030.png b/front/public/images/small/gregtech/gt.blockores/4030.png deleted file mode 100644 index 59c034e565..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4031.png b/front/public/images/small/gregtech/gt.blockores/4031.png deleted file mode 100644 index c92cf6e2fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4032.png b/front/public/images/small/gregtech/gt.blockores/4032.png deleted file mode 100644 index b33bcee75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4033.png b/front/public/images/small/gregtech/gt.blockores/4033.png deleted file mode 100644 index 1210ca5443..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4034.png b/front/public/images/small/gregtech/gt.blockores/4034.png deleted file mode 100644 index 5e61a1c7be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4035.png b/front/public/images/small/gregtech/gt.blockores/4035.png deleted file mode 100644 index c3dc5d14e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4036.png b/front/public/images/small/gregtech/gt.blockores/4036.png deleted file mode 100644 index 205be0460f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4037.png b/front/public/images/small/gregtech/gt.blockores/4037.png deleted file mode 100644 index ad89c702a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4039.png b/front/public/images/small/gregtech/gt.blockores/4039.png deleted file mode 100644 index c3248f5c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4043.png b/front/public/images/small/gregtech/gt.blockores/4043.png deleted file mode 100644 index bb421a612c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4044.png b/front/public/images/small/gregtech/gt.blockores/4044.png deleted file mode 100644 index b33bcee75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4045.png b/front/public/images/small/gregtech/gt.blockores/4045.png deleted file mode 100644 index 7bd69fcbc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4047.png b/front/public/images/small/gregtech/gt.blockores/4047.png deleted file mode 100644 index 02ed269d03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4048.png b/front/public/images/small/gregtech/gt.blockores/4048.png deleted file mode 100644 index 5546ff6045..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4052.png b/front/public/images/small/gregtech/gt.blockores/4052.png deleted file mode 100644 index ab3d9410f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4054.png b/front/public/images/small/gregtech/gt.blockores/4054.png deleted file mode 100644 index ad89c702a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4055.png b/front/public/images/small/gregtech/gt.blockores/4055.png deleted file mode 100644 index 6c07ba1719..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4056.png b/front/public/images/small/gregtech/gt.blockores/4056.png deleted file mode 100644 index 1a0d505065..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4057.png b/front/public/images/small/gregtech/gt.blockores/4057.png deleted file mode 100644 index 1bd733c60c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4058.png b/front/public/images/small/gregtech/gt.blockores/4058.png deleted file mode 100644 index 9c719af12c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4059.png b/front/public/images/small/gregtech/gt.blockores/4059.png deleted file mode 100644 index 8a5a9f0974..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4062.png b/front/public/images/small/gregtech/gt.blockores/4062.png deleted file mode 100644 index cc5310c881..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4063.png b/front/public/images/small/gregtech/gt.blockores/4063.png deleted file mode 100644 index c3248f5c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4064.png b/front/public/images/small/gregtech/gt.blockores/4064.png deleted file mode 100644 index ef04a323cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4065.png b/front/public/images/small/gregtech/gt.blockores/4065.png deleted file mode 100644 index 9e2dcd3047..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4066.png b/front/public/images/small/gregtech/gt.blockores/4066.png deleted file mode 100644 index 27c27e0b03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4067.png b/front/public/images/small/gregtech/gt.blockores/4067.png deleted file mode 100644 index 9bc7678731..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4068.png b/front/public/images/small/gregtech/gt.blockores/4068.png deleted file mode 100644 index 1282aa21cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4069.png b/front/public/images/small/gregtech/gt.blockores/4069.png deleted file mode 100644 index 75192c233e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4070.png b/front/public/images/small/gregtech/gt.blockores/4070.png deleted file mode 100644 index 35e54a9a6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4071.png b/front/public/images/small/gregtech/gt.blockores/4071.png deleted file mode 100644 index acb7209ed0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4072.png b/front/public/images/small/gregtech/gt.blockores/4072.png deleted file mode 100644 index c3248f5c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4073.png b/front/public/images/small/gregtech/gt.blockores/4073.png deleted file mode 100644 index a14bd8a1e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4074.png b/front/public/images/small/gregtech/gt.blockores/4074.png deleted file mode 100644 index a343fcaeb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4075.png b/front/public/images/small/gregtech/gt.blockores/4075.png deleted file mode 100644 index 3e7a4f1219..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4076.png b/front/public/images/small/gregtech/gt.blockores/4076.png deleted file mode 100644 index 7353852b0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4077.png b/front/public/images/small/gregtech/gt.blockores/4077.png deleted file mode 100644 index d2ebd4f32f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4078.png b/front/public/images/small/gregtech/gt.blockores/4078.png deleted file mode 100644 index 9841e25dfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4080.png b/front/public/images/small/gregtech/gt.blockores/4080.png deleted file mode 100644 index 6d9fca336e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4081.png b/front/public/images/small/gregtech/gt.blockores/4081.png deleted file mode 100644 index f2359c6794..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4083.png b/front/public/images/small/gregtech/gt.blockores/4083.png deleted file mode 100644 index d9bb0c4ed8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4084.png b/front/public/images/small/gregtech/gt.blockores/4084.png deleted file mode 100644 index 0b6f0f591b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4085.png b/front/public/images/small/gregtech/gt.blockores/4085.png deleted file mode 100644 index 427c082796..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4086.png b/front/public/images/small/gregtech/gt.blockores/4086.png deleted file mode 100644 index a00f6c4aee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4089.png b/front/public/images/small/gregtech/gt.blockores/4089.png deleted file mode 100644 index fb5434735e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4090.png b/front/public/images/small/gregtech/gt.blockores/4090.png deleted file mode 100644 index 0589d1d156..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4096.png b/front/public/images/small/gregtech/gt.blockores/4096.png deleted file mode 100644 index 51b3468038..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4097.png b/front/public/images/small/gregtech/gt.blockores/4097.png deleted file mode 100644 index 63f49f43b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4098.png b/front/public/images/small/gregtech/gt.blockores/4098.png deleted file mode 100644 index db133a8b0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4100.png b/front/public/images/small/gregtech/gt.blockores/4100.png deleted file mode 100644 index 8460544e4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4101.png b/front/public/images/small/gregtech/gt.blockores/4101.png deleted file mode 100644 index d73ff954d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4103.png b/front/public/images/small/gregtech/gt.blockores/4103.png deleted file mode 100644 index b33bcee75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4110.png b/front/public/images/small/gregtech/gt.blockores/4110.png deleted file mode 100644 index 3fdbbc56d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4129.png b/front/public/images/small/gregtech/gt.blockores/4129.png deleted file mode 100644 index c92cf6e2fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/43.png b/front/public/images/small/gregtech/gt.blockores/43.png deleted file mode 100644 index 362ab4e9f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/43.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4303.png b/front/public/images/small/gregtech/gt.blockores/4303.png deleted file mode 100644 index 7f9bed3962..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4307.png b/front/public/images/small/gregtech/gt.blockores/4307.png deleted file mode 100644 index 898e1ab08a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4319.png b/front/public/images/small/gregtech/gt.blockores/4319.png deleted file mode 100644 index 4aa9e1a396..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4320.png b/front/public/images/small/gregtech/gt.blockores/4320.png deleted file mode 100644 index 5b1ef21f3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4323.png b/front/public/images/small/gregtech/gt.blockores/4323.png deleted file mode 100644 index 0489930f67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4324.png b/front/public/images/small/gregtech/gt.blockores/4324.png deleted file mode 100644 index f2359c6794..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4326.png b/front/public/images/small/gregtech/gt.blockores/4326.png deleted file mode 100644 index a28c81a31e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4327.png b/front/public/images/small/gregtech/gt.blockores/4327.png deleted file mode 100644 index c47ae10ad0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4329.png b/front/public/images/small/gregtech/gt.blockores/4329.png deleted file mode 100644 index c47e3b6604..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4331.png b/front/public/images/small/gregtech/gt.blockores/4331.png deleted file mode 100644 index f631234d65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4336.png b/front/public/images/small/gregtech/gt.blockores/4336.png deleted file mode 100644 index 80be209567..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4340.png b/front/public/images/small/gregtech/gt.blockores/4340.png deleted file mode 100644 index ce5d75abd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4342.png b/front/public/images/small/gregtech/gt.blockores/4342.png deleted file mode 100644 index 57295f2ede..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4347.png b/front/public/images/small/gregtech/gt.blockores/4347.png deleted file mode 100644 index 3165bcc174..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4368.png b/front/public/images/small/gregtech/gt.blockores/4368.png deleted file mode 100644 index 7dec4d4eda..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4375.png b/front/public/images/small/gregtech/gt.blockores/4375.png deleted file mode 100644 index 6832cf7864..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4382.png b/front/public/images/small/gregtech/gt.blockores/4382.png deleted file mode 100644 index a84c4657fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4386.png b/front/public/images/small/gregtech/gt.blockores/4386.png deleted file mode 100644 index 72c4b041c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4387.png b/front/public/images/small/gregtech/gt.blockores/4387.png deleted file mode 100644 index a8fdab2eee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4388.png b/front/public/images/small/gregtech/gt.blockores/4388.png deleted file mode 100644 index f2359c6794..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4389.png b/front/public/images/small/gregtech/gt.blockores/4389.png deleted file mode 100644 index 3e767788d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4390.png b/front/public/images/small/gregtech/gt.blockores/4390.png deleted file mode 100644 index 620d28a292..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4391.png b/front/public/images/small/gregtech/gt.blockores/4391.png deleted file mode 100644 index c20ea90f43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4392.png b/front/public/images/small/gregtech/gt.blockores/4392.png deleted file mode 100644 index 8df991d049..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4393.png b/front/public/images/small/gregtech/gt.blockores/4393.png deleted file mode 100644 index bf8ff13912..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4394.png b/front/public/images/small/gregtech/gt.blockores/4394.png deleted file mode 100644 index 4aa9e1a396..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4395.png b/front/public/images/small/gregtech/gt.blockores/4395.png deleted file mode 100644 index f2359c6794..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4398.png b/front/public/images/small/gregtech/gt.blockores/4398.png deleted file mode 100644 index 36106ca2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/44.png b/front/public/images/small/gregtech/gt.blockores/44.png deleted file mode 100644 index acee54c2e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/44.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4485.png b/front/public/images/small/gregtech/gt.blockores/4485.png deleted file mode 100644 index 7ee33defd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4488.png b/front/public/images/small/gregtech/gt.blockores/4488.png deleted file mode 100644 index b655aa997c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4489.png b/front/public/images/small/gregtech/gt.blockores/4489.png deleted file mode 100644 index 0dc92ea2a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/45.png b/front/public/images/small/gregtech/gt.blockores/45.png deleted file mode 100644 index da1ed3c814..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/45.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4500.png b/front/public/images/small/gregtech/gt.blockores/4500.png deleted file mode 100644 index e2fdbb9deb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4501.png b/front/public/images/small/gregtech/gt.blockores/4501.png deleted file mode 100644 index a8a5d3d19e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4502.png b/front/public/images/small/gregtech/gt.blockores/4502.png deleted file mode 100644 index fff1e0ba47..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4503.png b/front/public/images/small/gregtech/gt.blockores/4503.png deleted file mode 100644 index 9d72f85628..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4504.png b/front/public/images/small/gregtech/gt.blockores/4504.png deleted file mode 100644 index 612d9ee760..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4505.png b/front/public/images/small/gregtech/gt.blockores/4505.png deleted file mode 100644 index 6d239b824b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4506.png b/front/public/images/small/gregtech/gt.blockores/4506.png deleted file mode 100644 index 21fa493094..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4507.png b/front/public/images/small/gregtech/gt.blockores/4507.png deleted file mode 100644 index c12c869738..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4508.png b/front/public/images/small/gregtech/gt.blockores/4508.png deleted file mode 100644 index cdd176c269..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4509.png b/front/public/images/small/gregtech/gt.blockores/4509.png deleted file mode 100644 index e0bd4112d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4510.png b/front/public/images/small/gregtech/gt.blockores/4510.png deleted file mode 100644 index 6fccd05e7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4511.png b/front/public/images/small/gregtech/gt.blockores/4511.png deleted file mode 100644 index 19638f91ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4512.png b/front/public/images/small/gregtech/gt.blockores/4512.png deleted file mode 100644 index fff1e0ba47..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4513.png b/front/public/images/small/gregtech/gt.blockores/4513.png deleted file mode 100644 index 6fccd05e7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4514.png b/front/public/images/small/gregtech/gt.blockores/4514.png deleted file mode 100644 index c12c869738..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4515.png b/front/public/images/small/gregtech/gt.blockores/4515.png deleted file mode 100644 index bb76e03c4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4516.png b/front/public/images/small/gregtech/gt.blockores/4516.png deleted file mode 100644 index 093e46777f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4517.png b/front/public/images/small/gregtech/gt.blockores/4517.png deleted file mode 100644 index a971899047..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4518.png b/front/public/images/small/gregtech/gt.blockores/4518.png deleted file mode 100644 index f8a5caf4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4519.png b/front/public/images/small/gregtech/gt.blockores/4519.png deleted file mode 100644 index f8a5caf4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4520.png b/front/public/images/small/gregtech/gt.blockores/4520.png deleted file mode 100644 index 6bf2e9342e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4521.png b/front/public/images/small/gregtech/gt.blockores/4521.png deleted file mode 100644 index be160023ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4522.png b/front/public/images/small/gregtech/gt.blockores/4522.png deleted file mode 100644 index e66ee9e965..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4523.png b/front/public/images/small/gregtech/gt.blockores/4523.png deleted file mode 100644 index 04273c0a7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4524.png b/front/public/images/small/gregtech/gt.blockores/4524.png deleted file mode 100644 index 3fea94ba4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4525.png b/front/public/images/small/gregtech/gt.blockores/4525.png deleted file mode 100644 index 69dbcbb86d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4526.png b/front/public/images/small/gregtech/gt.blockores/4526.png deleted file mode 100644 index 72a61f81e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4527.png b/front/public/images/small/gregtech/gt.blockores/4527.png deleted file mode 100644 index 19638f91ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4528.png b/front/public/images/small/gregtech/gt.blockores/4528.png deleted file mode 100644 index f9da3bf96a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4529.png b/front/public/images/small/gregtech/gt.blockores/4529.png deleted file mode 100644 index 1d8a06bd02..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4530.png b/front/public/images/small/gregtech/gt.blockores/4530.png deleted file mode 100644 index 6c583b5e78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4531.png b/front/public/images/small/gregtech/gt.blockores/4531.png deleted file mode 100644 index 0725b61786..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4534.png b/front/public/images/small/gregtech/gt.blockores/4534.png deleted file mode 100644 index 43e671f919..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4535.png b/front/public/images/small/gregtech/gt.blockores/4535.png deleted file mode 100644 index 65e0bcd23e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4537.png b/front/public/images/small/gregtech/gt.blockores/4537.png deleted file mode 100644 index 301e081eba..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4538.png b/front/public/images/small/gregtech/gt.blockores/4538.png deleted file mode 100644 index 43e31fbc99..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4540.png b/front/public/images/small/gregtech/gt.blockores/4540.png deleted file mode 100644 index 6dd2661fc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4541.png b/front/public/images/small/gregtech/gt.blockores/4541.png deleted file mode 100644 index 3cd95c5599..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4542.png b/front/public/images/small/gregtech/gt.blockores/4542.png deleted file mode 100644 index 5016feaeaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4543.png b/front/public/images/small/gregtech/gt.blockores/4543.png deleted file mode 100644 index 72b898a36a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4544.png b/front/public/images/small/gregtech/gt.blockores/4544.png deleted file mode 100644 index 7ef893ab4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4545.png b/front/public/images/small/gregtech/gt.blockores/4545.png deleted file mode 100644 index ebbd13a55f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4548.png b/front/public/images/small/gregtech/gt.blockores/4548.png deleted file mode 100644 index 3a0137b6e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4549.png b/front/public/images/small/gregtech/gt.blockores/4549.png deleted file mode 100644 index 2bbd0b5f50..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4607.png b/front/public/images/small/gregtech/gt.blockores/4607.png deleted file mode 100644 index 7f6074c27b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4699.png b/front/public/images/small/gregtech/gt.blockores/4699.png deleted file mode 100644 index 0ae9368af0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/47.png b/front/public/images/small/gregtech/gt.blockores/47.png deleted file mode 100644 index 51a3b1058e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/47.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4770.png b/front/public/images/small/gregtech/gt.blockores/4770.png deleted file mode 100644 index 9b7fe93e9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4797.png b/front/public/images/small/gregtech/gt.blockores/4797.png deleted file mode 100644 index 1bd733c60c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/48.png b/front/public/images/small/gregtech/gt.blockores/48.png deleted file mode 100644 index ee7d507ef0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/48.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4810.png b/front/public/images/small/gregtech/gt.blockores/4810.png deleted file mode 100644 index a69a9502f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4812.png b/front/public/images/small/gregtech/gt.blockores/4812.png deleted file mode 100644 index b30788c5f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4817.png b/front/public/images/small/gregtech/gt.blockores/4817.png deleted file mode 100644 index f6df93f353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4820.png b/front/public/images/small/gregtech/gt.blockores/4820.png deleted file mode 100644 index 7a0fb4aa09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4821.png b/front/public/images/small/gregtech/gt.blockores/4821.png deleted file mode 100644 index 013ccca69a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4822.png b/front/public/images/small/gregtech/gt.blockores/4822.png deleted file mode 100644 index 7402206861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4823.png b/front/public/images/small/gregtech/gt.blockores/4823.png deleted file mode 100644 index 601cca0670..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4824.png b/front/public/images/small/gregtech/gt.blockores/4824.png deleted file mode 100644 index 1bd733c60c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4825.png b/front/public/images/small/gregtech/gt.blockores/4825.png deleted file mode 100644 index 480f4f1d55..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4826.png b/front/public/images/small/gregtech/gt.blockores/4826.png deleted file mode 100644 index c5bf0d70e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4827.png b/front/public/images/small/gregtech/gt.blockores/4827.png deleted file mode 100644 index 1210ca5443..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4828.png b/front/public/images/small/gregtech/gt.blockores/4828.png deleted file mode 100644 index e82723e031..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4829.png b/front/public/images/small/gregtech/gt.blockores/4829.png deleted file mode 100644 index 9ec88abbc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4830.png b/front/public/images/small/gregtech/gt.blockores/4830.png deleted file mode 100644 index d3778dbd0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4831.png b/front/public/images/small/gregtech/gt.blockores/4831.png deleted file mode 100644 index 7402206861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4833.png b/front/public/images/small/gregtech/gt.blockores/4833.png deleted file mode 100644 index ccc18de319..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4834.png b/front/public/images/small/gregtech/gt.blockores/4834.png deleted file mode 100644 index aedc008e59..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4835.png b/front/public/images/small/gregtech/gt.blockores/4835.png deleted file mode 100644 index b568c28053..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4836.png b/front/public/images/small/gregtech/gt.blockores/4836.png deleted file mode 100644 index 47afaa6e1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4838.png b/front/public/images/small/gregtech/gt.blockores/4838.png deleted file mode 100644 index 3579506613..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4839.png b/front/public/images/small/gregtech/gt.blockores/4839.png deleted file mode 100644 index c3248f5c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4840.png b/front/public/images/small/gregtech/gt.blockores/4840.png deleted file mode 100644 index e1eb432d41..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4841.png b/front/public/images/small/gregtech/gt.blockores/4841.png deleted file mode 100644 index 75e51212b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4842.png b/front/public/images/small/gregtech/gt.blockores/4842.png deleted file mode 100644 index 8f0ac4dff0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/485.png b/front/public/images/small/gregtech/gt.blockores/485.png deleted file mode 100644 index 069314f953..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4855.png b/front/public/images/small/gregtech/gt.blockores/4855.png deleted file mode 100644 index fa02f91aa7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4856.png b/front/public/images/small/gregtech/gt.blockores/4856.png deleted file mode 100644 index 4c7d6529bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4861.png b/front/public/images/small/gregtech/gt.blockores/4861.png deleted file mode 100644 index c3248f5c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4865.png b/front/public/images/small/gregtech/gt.blockores/4865.png deleted file mode 100644 index d306071235..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4868.png b/front/public/images/small/gregtech/gt.blockores/4868.png deleted file mode 100644 index e010f8d280..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4870.png b/front/public/images/small/gregtech/gt.blockores/4870.png deleted file mode 100644 index ade1fd4cd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4871.png b/front/public/images/small/gregtech/gt.blockores/4871.png deleted file mode 100644 index 0a32bbb106..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4873.png b/front/public/images/small/gregtech/gt.blockores/4873.png deleted file mode 100644 index dedb89db9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4877.png b/front/public/images/small/gregtech/gt.blockores/4877.png deleted file mode 100644 index e0f75ffd37..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4878.png b/front/public/images/small/gregtech/gt.blockores/4878.png deleted file mode 100644 index 9253e76940..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/488.png b/front/public/images/small/gregtech/gt.blockores/488.png deleted file mode 100644 index fb852b3f15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4882.png b/front/public/images/small/gregtech/gt.blockores/4882.png deleted file mode 100644 index 96002f15a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4883.png b/front/public/images/small/gregtech/gt.blockores/4883.png deleted file mode 100644 index ccc18de319..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4884.png b/front/public/images/small/gregtech/gt.blockores/4884.png deleted file mode 100644 index 0c925a27c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/489.png b/front/public/images/small/gregtech/gt.blockores/489.png deleted file mode 100644 index c734203e7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4894.png b/front/public/images/small/gregtech/gt.blockores/4894.png deleted file mode 100644 index ce4a685398..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4900.png b/front/public/images/small/gregtech/gt.blockores/4900.png deleted file mode 100644 index db74a94430..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4901.png b/front/public/images/small/gregtech/gt.blockores/4901.png deleted file mode 100644 index bca1a2ef73..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4902.png b/front/public/images/small/gregtech/gt.blockores/4902.png deleted file mode 100644 index a3dd2e8040..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4903.png b/front/public/images/small/gregtech/gt.blockores/4903.png deleted file mode 100644 index b252fa7d28..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4904.png b/front/public/images/small/gregtech/gt.blockores/4904.png deleted file mode 100644 index 311a1cf838..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4905.png b/front/public/images/small/gregtech/gt.blockores/4905.png deleted file mode 100644 index 6bb8670dd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4906.png b/front/public/images/small/gregtech/gt.blockores/4906.png deleted file mode 100644 index 602279c637..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4907.png b/front/public/images/small/gregtech/gt.blockores/4907.png deleted file mode 100644 index 5fe6a4d467..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4908.png b/front/public/images/small/gregtech/gt.blockores/4908.png deleted file mode 100644 index 148149eed7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4909.png b/front/public/images/small/gregtech/gt.blockores/4909.png deleted file mode 100644 index 2a7e5521ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4910.png b/front/public/images/small/gregtech/gt.blockores/4910.png deleted file mode 100644 index 1e36d4c551..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4911.png b/front/public/images/small/gregtech/gt.blockores/4911.png deleted file mode 100644 index 339880b904..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4912.png b/front/public/images/small/gregtech/gt.blockores/4912.png deleted file mode 100644 index 63bca06d6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4913.png b/front/public/images/small/gregtech/gt.blockores/4913.png deleted file mode 100644 index 5f0e60ec8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4914.png b/front/public/images/small/gregtech/gt.blockores/4914.png deleted file mode 100644 index 2db4e0ce83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4915.png b/front/public/images/small/gregtech/gt.blockores/4915.png deleted file mode 100644 index adf1ab3f5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4916.png b/front/public/images/small/gregtech/gt.blockores/4916.png deleted file mode 100644 index 4cf4e1d8fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4917.png b/front/public/images/small/gregtech/gt.blockores/4917.png deleted file mode 100644 index a2d5e59b71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4918.png b/front/public/images/small/gregtech/gt.blockores/4918.png deleted file mode 100644 index bbd5076c03..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4919.png b/front/public/images/small/gregtech/gt.blockores/4919.png deleted file mode 100644 index ea9f1aef1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4920.png b/front/public/images/small/gregtech/gt.blockores/4920.png deleted file mode 100644 index fa861536fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4921.png b/front/public/images/small/gregtech/gt.blockores/4921.png deleted file mode 100644 index 28ee397548..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4922.png b/front/public/images/small/gregtech/gt.blockores/4922.png deleted file mode 100644 index 6d577486c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4923.png b/front/public/images/small/gregtech/gt.blockores/4923.png deleted file mode 100644 index 2125f074a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4924.png b/front/public/images/small/gregtech/gt.blockores/4924.png deleted file mode 100644 index cae2f07d06..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4925.png b/front/public/images/small/gregtech/gt.blockores/4925.png deleted file mode 100644 index c1e2feef9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4926.png b/front/public/images/small/gregtech/gt.blockores/4926.png deleted file mode 100644 index ad50378449..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4927.png b/front/public/images/small/gregtech/gt.blockores/4927.png deleted file mode 100644 index 81d3d2aabe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4928.png b/front/public/images/small/gregtech/gt.blockores/4928.png deleted file mode 100644 index 74483eed11..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4929.png b/front/public/images/small/gregtech/gt.blockores/4929.png deleted file mode 100644 index 16b638ff3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4930.png b/front/public/images/small/gregtech/gt.blockores/4930.png deleted file mode 100644 index 7402206861..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4931.png b/front/public/images/small/gregtech/gt.blockores/4931.png deleted file mode 100644 index 319143e52f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4932.png b/front/public/images/small/gregtech/gt.blockores/4932.png deleted file mode 100644 index 25a3dc1ebb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4933.png b/front/public/images/small/gregtech/gt.blockores/4933.png deleted file mode 100644 index 1afda026d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4934.png b/front/public/images/small/gregtech/gt.blockores/4934.png deleted file mode 100644 index 258e1ed5d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4935.png b/front/public/images/small/gregtech/gt.blockores/4935.png deleted file mode 100644 index bc421376f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4936.png b/front/public/images/small/gregtech/gt.blockores/4936.png deleted file mode 100644 index c15801ded9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4937.png b/front/public/images/small/gregtech/gt.blockores/4937.png deleted file mode 100644 index 013a054043..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4938.png b/front/public/images/small/gregtech/gt.blockores/4938.png deleted file mode 100644 index a7dc0eed17..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4939.png b/front/public/images/small/gregtech/gt.blockores/4939.png deleted file mode 100644 index df285dbcf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4941.png b/front/public/images/small/gregtech/gt.blockores/4941.png deleted file mode 100644 index f6df93f353..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4942.png b/front/public/images/small/gregtech/gt.blockores/4942.png deleted file mode 100644 index 24510c8e75..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4943.png b/front/public/images/small/gregtech/gt.blockores/4943.png deleted file mode 100644 index ccb3ba535e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4944.png b/front/public/images/small/gregtech/gt.blockores/4944.png deleted file mode 100644 index f82d7fb722..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4945.png b/front/public/images/small/gregtech/gt.blockores/4945.png deleted file mode 100644 index 65e0bcd23e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4946.png b/front/public/images/small/gregtech/gt.blockores/4946.png deleted file mode 100644 index 1480ddcf6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4948.png b/front/public/images/small/gregtech/gt.blockores/4948.png deleted file mode 100644 index 6b4a5d0379..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4949.png b/front/public/images/small/gregtech/gt.blockores/4949.png deleted file mode 100644 index 1afda026d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4951.png b/front/public/images/small/gregtech/gt.blockores/4951.png deleted file mode 100644 index 79d6c0ae27..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4952.png b/front/public/images/small/gregtech/gt.blockores/4952.png deleted file mode 100644 index 3775acc2c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4956.png b/front/public/images/small/gregtech/gt.blockores/4956.png deleted file mode 100644 index 17d18fc08a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4966.png b/front/public/images/small/gregtech/gt.blockores/4966.png deleted file mode 100644 index cddbae2f9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4969.png b/front/public/images/small/gregtech/gt.blockores/4969.png deleted file mode 100644 index c3248f5c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4971.png b/front/public/images/small/gregtech/gt.blockores/4971.png deleted file mode 100644 index 1631af6519..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4975.png b/front/public/images/small/gregtech/gt.blockores/4975.png deleted file mode 100644 index 4f1949df99..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4976.png b/front/public/images/small/gregtech/gt.blockores/4976.png deleted file mode 100644 index d5878c4c09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4978.png b/front/public/images/small/gregtech/gt.blockores/4978.png deleted file mode 100644 index af77623736..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4982.png b/front/public/images/small/gregtech/gt.blockores/4982.png deleted file mode 100644 index b36fc8cb36..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/4984.png b/front/public/images/small/gregtech/gt.blockores/4984.png deleted file mode 100644 index 4aa9e1a396..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/4984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/500.png b/front/public/images/small/gregtech/gt.blockores/500.png deleted file mode 100644 index f71457288a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5006.png b/front/public/images/small/gregtech/gt.blockores/5006.png deleted file mode 100644 index 00609305c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5008.png b/front/public/images/small/gregtech/gt.blockores/5008.png deleted file mode 100644 index 7319ca1f0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/501.png b/front/public/images/small/gregtech/gt.blockores/501.png deleted file mode 100644 index e70160108c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5018.png b/front/public/images/small/gregtech/gt.blockores/5018.png deleted file mode 100644 index e8d3c5a8c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5019.png b/front/public/images/small/gregtech/gt.blockores/5019.png deleted file mode 100644 index 657839663f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/502.png b/front/public/images/small/gregtech/gt.blockores/502.png deleted file mode 100644 index 674de0b6e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5020.png b/front/public/images/small/gregtech/gt.blockores/5020.png deleted file mode 100644 index cc4c013b25..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5022.png b/front/public/images/small/gregtech/gt.blockores/5022.png deleted file mode 100644 index a1b5271d1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5027.png b/front/public/images/small/gregtech/gt.blockores/5027.png deleted file mode 100644 index 92bce05a78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5028.png b/front/public/images/small/gregtech/gt.blockores/5028.png deleted file mode 100644 index 6f8f2761e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5029.png b/front/public/images/small/gregtech/gt.blockores/5029.png deleted file mode 100644 index 83b06d1a6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/503.png b/front/public/images/small/gregtech/gt.blockores/503.png deleted file mode 100644 index 9df7af54f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5030.png b/front/public/images/small/gregtech/gt.blockores/5030.png deleted file mode 100644 index dc3b34355d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5031.png b/front/public/images/small/gregtech/gt.blockores/5031.png deleted file mode 100644 index 318f4c95de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5032.png b/front/public/images/small/gregtech/gt.blockores/5032.png deleted file mode 100644 index 210b8bc3ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5033.png b/front/public/images/small/gregtech/gt.blockores/5033.png deleted file mode 100644 index 8cbaaff344..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5034.png b/front/public/images/small/gregtech/gt.blockores/5034.png deleted file mode 100644 index 8a9bcff0f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5035.png b/front/public/images/small/gregtech/gt.blockores/5035.png deleted file mode 100644 index bbb10eba59..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5036.png b/front/public/images/small/gregtech/gt.blockores/5036.png deleted file mode 100644 index 5af1bc1533..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5037.png b/front/public/images/small/gregtech/gt.blockores/5037.png deleted file mode 100644 index f8c96197cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5039.png b/front/public/images/small/gregtech/gt.blockores/5039.png deleted file mode 100644 index dde2f907d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/504.png b/front/public/images/small/gregtech/gt.blockores/504.png deleted file mode 100644 index b34a00af0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5043.png b/front/public/images/small/gregtech/gt.blockores/5043.png deleted file mode 100644 index 1ca8873471..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5044.png b/front/public/images/small/gregtech/gt.blockores/5044.png deleted file mode 100644 index 210b8bc3ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5045.png b/front/public/images/small/gregtech/gt.blockores/5045.png deleted file mode 100644 index 7d8d652502..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5047.png b/front/public/images/small/gregtech/gt.blockores/5047.png deleted file mode 100644 index f2187a7ef8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5048.png b/front/public/images/small/gregtech/gt.blockores/5048.png deleted file mode 100644 index 6e7b6a6739..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/505.png b/front/public/images/small/gregtech/gt.blockores/505.png deleted file mode 100644 index 3d3233c2a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5052.png b/front/public/images/small/gregtech/gt.blockores/5052.png deleted file mode 100644 index 7c11fbbb52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5054.png b/front/public/images/small/gregtech/gt.blockores/5054.png deleted file mode 100644 index f8c96197cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5055.png b/front/public/images/small/gregtech/gt.blockores/5055.png deleted file mode 100644 index 7be208d309..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5056.png b/front/public/images/small/gregtech/gt.blockores/5056.png deleted file mode 100644 index cbff967bbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5057.png b/front/public/images/small/gregtech/gt.blockores/5057.png deleted file mode 100644 index 1e1fa9bd85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5058.png b/front/public/images/small/gregtech/gt.blockores/5058.png deleted file mode 100644 index ab6e77909c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5059.png b/front/public/images/small/gregtech/gt.blockores/5059.png deleted file mode 100644 index 19d2a045e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/506.png b/front/public/images/small/gregtech/gt.blockores/506.png deleted file mode 100644 index 3a56a229fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5062.png b/front/public/images/small/gregtech/gt.blockores/5062.png deleted file mode 100644 index f699117c45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5063.png b/front/public/images/small/gregtech/gt.blockores/5063.png deleted file mode 100644 index dde2f907d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5064.png b/front/public/images/small/gregtech/gt.blockores/5064.png deleted file mode 100644 index 8fe94697b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5065.png b/front/public/images/small/gregtech/gt.blockores/5065.png deleted file mode 100644 index 43035da0fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5066.png b/front/public/images/small/gregtech/gt.blockores/5066.png deleted file mode 100644 index 5741647fd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5067.png b/front/public/images/small/gregtech/gt.blockores/5067.png deleted file mode 100644 index 8f65d1b7d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5068.png b/front/public/images/small/gregtech/gt.blockores/5068.png deleted file mode 100644 index d7c5c0b4e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5069.png b/front/public/images/small/gregtech/gt.blockores/5069.png deleted file mode 100644 index 76b22b5b21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/507.png b/front/public/images/small/gregtech/gt.blockores/507.png deleted file mode 100644 index 4bb0e5a6c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5070.png b/front/public/images/small/gregtech/gt.blockores/5070.png deleted file mode 100644 index fd1612bc16..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5071.png b/front/public/images/small/gregtech/gt.blockores/5071.png deleted file mode 100644 index 0b258643f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5072.png b/front/public/images/small/gregtech/gt.blockores/5072.png deleted file mode 100644 index dde2f907d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5073.png b/front/public/images/small/gregtech/gt.blockores/5073.png deleted file mode 100644 index 6a211d8adb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5074.png b/front/public/images/small/gregtech/gt.blockores/5074.png deleted file mode 100644 index 447e154e09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5075.png b/front/public/images/small/gregtech/gt.blockores/5075.png deleted file mode 100644 index 5765ab8b89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5076.png b/front/public/images/small/gregtech/gt.blockores/5076.png deleted file mode 100644 index 27a074ac35..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5077.png b/front/public/images/small/gregtech/gt.blockores/5077.png deleted file mode 100644 index 2b05507659..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5078.png b/front/public/images/small/gregtech/gt.blockores/5078.png deleted file mode 100644 index 999642fb00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/508.png b/front/public/images/small/gregtech/gt.blockores/508.png deleted file mode 100644 index 5939ccf7b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5080.png b/front/public/images/small/gregtech/gt.blockores/5080.png deleted file mode 100644 index 715a8b52c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5081.png b/front/public/images/small/gregtech/gt.blockores/5081.png deleted file mode 100644 index 83b06d1a6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5083.png b/front/public/images/small/gregtech/gt.blockores/5083.png deleted file mode 100644 index b1252a3f71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5084.png b/front/public/images/small/gregtech/gt.blockores/5084.png deleted file mode 100644 index 0401121a54..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5085.png b/front/public/images/small/gregtech/gt.blockores/5085.png deleted file mode 100644 index 2dcd9e5633..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5086.png b/front/public/images/small/gregtech/gt.blockores/5086.png deleted file mode 100644 index 5bfed5d77f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5089.png b/front/public/images/small/gregtech/gt.blockores/5089.png deleted file mode 100644 index 63d15f8194..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/509.png b/front/public/images/small/gregtech/gt.blockores/509.png deleted file mode 100644 index 45b39ac6bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5090.png b/front/public/images/small/gregtech/gt.blockores/5090.png deleted file mode 100644 index 1b5f353f1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5096.png b/front/public/images/small/gregtech/gt.blockores/5096.png deleted file mode 100644 index db88363b58..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5097.png b/front/public/images/small/gregtech/gt.blockores/5097.png deleted file mode 100644 index 78c8e4556b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5098.png b/front/public/images/small/gregtech/gt.blockores/5098.png deleted file mode 100644 index 3bada7db8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/510.png b/front/public/images/small/gregtech/gt.blockores/510.png deleted file mode 100644 index 5476c1d885..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5100.png b/front/public/images/small/gregtech/gt.blockores/5100.png deleted file mode 100644 index c322ad71c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5101.png b/front/public/images/small/gregtech/gt.blockores/5101.png deleted file mode 100644 index b9f347f9fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5103.png b/front/public/images/small/gregtech/gt.blockores/5103.png deleted file mode 100644 index 210b8bc3ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/511.png b/front/public/images/small/gregtech/gt.blockores/511.png deleted file mode 100644 index 50c85eb5c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5110.png b/front/public/images/small/gregtech/gt.blockores/5110.png deleted file mode 100644 index 5b011b3ff1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/512.png b/front/public/images/small/gregtech/gt.blockores/512.png deleted file mode 100644 index 674de0b6e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5129.png b/front/public/images/small/gregtech/gt.blockores/5129.png deleted file mode 100644 index 318f4c95de..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/513.png b/front/public/images/small/gregtech/gt.blockores/513.png deleted file mode 100644 index 5476c1d885..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/514.png b/front/public/images/small/gregtech/gt.blockores/514.png deleted file mode 100644 index 4bb0e5a6c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/515.png b/front/public/images/small/gregtech/gt.blockores/515.png deleted file mode 100644 index 6b926717c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/516.png b/front/public/images/small/gregtech/gt.blockores/516.png deleted file mode 100644 index 07f36ef35e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/517.png b/front/public/images/small/gregtech/gt.blockores/517.png deleted file mode 100644 index 5ec3f911aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/518.png b/front/public/images/small/gregtech/gt.blockores/518.png deleted file mode 100644 index e928db1c45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/519.png b/front/public/images/small/gregtech/gt.blockores/519.png deleted file mode 100644 index e928db1c45..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/52.png b/front/public/images/small/gregtech/gt.blockores/52.png deleted file mode 100644 index edc655e6d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/52.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/520.png b/front/public/images/small/gregtech/gt.blockores/520.png deleted file mode 100644 index d120c5ea78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/521.png b/front/public/images/small/gregtech/gt.blockores/521.png deleted file mode 100644 index d75392cbc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/522.png b/front/public/images/small/gregtech/gt.blockores/522.png deleted file mode 100644 index 481d7ded0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/523.png b/front/public/images/small/gregtech/gt.blockores/523.png deleted file mode 100644 index 9319068b7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/524.png b/front/public/images/small/gregtech/gt.blockores/524.png deleted file mode 100644 index c8d346528e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/525.png b/front/public/images/small/gregtech/gt.blockores/525.png deleted file mode 100644 index 0845dd4719..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/526.png b/front/public/images/small/gregtech/gt.blockores/526.png deleted file mode 100644 index d56cbb2e2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/527.png b/front/public/images/small/gregtech/gt.blockores/527.png deleted file mode 100644 index 50c85eb5c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/528.png b/front/public/images/small/gregtech/gt.blockores/528.png deleted file mode 100644 index db0cc5c330..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/529.png b/front/public/images/small/gregtech/gt.blockores/529.png deleted file mode 100644 index 236bbaac61..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/530.png b/front/public/images/small/gregtech/gt.blockores/530.png deleted file mode 100644 index dc5707b4ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5303.png b/front/public/images/small/gregtech/gt.blockores/5303.png deleted file mode 100644 index 0175e054aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5307.png b/front/public/images/small/gregtech/gt.blockores/5307.png deleted file mode 100644 index 69ed4e5ac2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/531.png b/front/public/images/small/gregtech/gt.blockores/531.png deleted file mode 100644 index 4186148175..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5319.png b/front/public/images/small/gregtech/gt.blockores/5319.png deleted file mode 100644 index 727b515420..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5320.png b/front/public/images/small/gregtech/gt.blockores/5320.png deleted file mode 100644 index 6d2566ca07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5323.png b/front/public/images/small/gregtech/gt.blockores/5323.png deleted file mode 100644 index f4205fbece..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5324.png b/front/public/images/small/gregtech/gt.blockores/5324.png deleted file mode 100644 index 83b06d1a6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5326.png b/front/public/images/small/gregtech/gt.blockores/5326.png deleted file mode 100644 index 7b829c3fa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5327.png b/front/public/images/small/gregtech/gt.blockores/5327.png deleted file mode 100644 index 1c9882d6d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5329.png b/front/public/images/small/gregtech/gt.blockores/5329.png deleted file mode 100644 index de7a4a64f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5331.png b/front/public/images/small/gregtech/gt.blockores/5331.png deleted file mode 100644 index 5850b66175..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5336.png b/front/public/images/small/gregtech/gt.blockores/5336.png deleted file mode 100644 index 752aed859a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/534.png b/front/public/images/small/gregtech/gt.blockores/534.png deleted file mode 100644 index 3084b4b90b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5340.png b/front/public/images/small/gregtech/gt.blockores/5340.png deleted file mode 100644 index f0a508b938..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5342.png b/front/public/images/small/gregtech/gt.blockores/5342.png deleted file mode 100644 index 42ceb52f85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5347.png b/front/public/images/small/gregtech/gt.blockores/5347.png deleted file mode 100644 index 6b2173880e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/535.png b/front/public/images/small/gregtech/gt.blockores/535.png deleted file mode 100644 index 3b5fc3f36b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5368.png b/front/public/images/small/gregtech/gt.blockores/5368.png deleted file mode 100644 index fd40199711..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/537.png b/front/public/images/small/gregtech/gt.blockores/537.png deleted file mode 100644 index dff85d0e36..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5375.png b/front/public/images/small/gregtech/gt.blockores/5375.png deleted file mode 100644 index 9de7a23b3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/538.png b/front/public/images/small/gregtech/gt.blockores/538.png deleted file mode 100644 index c13cd8f141..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5382.png b/front/public/images/small/gregtech/gt.blockores/5382.png deleted file mode 100644 index 05fb09816e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5386.png b/front/public/images/small/gregtech/gt.blockores/5386.png deleted file mode 100644 index 9b8d92c2a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5387.png b/front/public/images/small/gregtech/gt.blockores/5387.png deleted file mode 100644 index ac77c0c43d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5388.png b/front/public/images/small/gregtech/gt.blockores/5388.png deleted file mode 100644 index 83b06d1a6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5389.png b/front/public/images/small/gregtech/gt.blockores/5389.png deleted file mode 100644 index 81244eca58..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5390.png b/front/public/images/small/gregtech/gt.blockores/5390.png deleted file mode 100644 index 15ceb6ee43..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5391.png b/front/public/images/small/gregtech/gt.blockores/5391.png deleted file mode 100644 index f5a185aa1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5392.png b/front/public/images/small/gregtech/gt.blockores/5392.png deleted file mode 100644 index 31680d897d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5393.png b/front/public/images/small/gregtech/gt.blockores/5393.png deleted file mode 100644 index f67d88e884..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5394.png b/front/public/images/small/gregtech/gt.blockores/5394.png deleted file mode 100644 index 727b515420..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5395.png b/front/public/images/small/gregtech/gt.blockores/5395.png deleted file mode 100644 index 83b06d1a6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5398.png b/front/public/images/small/gregtech/gt.blockores/5398.png deleted file mode 100644 index 3fe91ec28f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/54.png b/front/public/images/small/gregtech/gt.blockores/54.png deleted file mode 100644 index 6bc7b242bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/54.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/540.png b/front/public/images/small/gregtech/gt.blockores/540.png deleted file mode 100644 index 85791713e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/541.png b/front/public/images/small/gregtech/gt.blockores/541.png deleted file mode 100644 index eaf89d7fd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/542.png b/front/public/images/small/gregtech/gt.blockores/542.png deleted file mode 100644 index 6507a90d3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/543.png b/front/public/images/small/gregtech/gt.blockores/543.png deleted file mode 100644 index 8e73528699..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/544.png b/front/public/images/small/gregtech/gt.blockores/544.png deleted file mode 100644 index 9f4ea05f38..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/545.png b/front/public/images/small/gregtech/gt.blockores/545.png deleted file mode 100644 index ee0dd8780b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/548.png b/front/public/images/small/gregtech/gt.blockores/548.png deleted file mode 100644 index 7a6fbddc3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5485.png b/front/public/images/small/gregtech/gt.blockores/5485.png deleted file mode 100644 index 2667d14f8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5488.png b/front/public/images/small/gregtech/gt.blockores/5488.png deleted file mode 100644 index d273291555..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5489.png b/front/public/images/small/gregtech/gt.blockores/5489.png deleted file mode 100644 index bcfe2d9e7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/549.png b/front/public/images/small/gregtech/gt.blockores/549.png deleted file mode 100644 index cacc44765c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/55.png b/front/public/images/small/gregtech/gt.blockores/55.png deleted file mode 100644 index ba35f5570f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/55.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5500.png b/front/public/images/small/gregtech/gt.blockores/5500.png deleted file mode 100644 index 9d618e6a4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5501.png b/front/public/images/small/gregtech/gt.blockores/5501.png deleted file mode 100644 index 7d24944fc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5502.png b/front/public/images/small/gregtech/gt.blockores/5502.png deleted file mode 100644 index 056aaa8a6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5503.png b/front/public/images/small/gregtech/gt.blockores/5503.png deleted file mode 100644 index 0bf7f0a3c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5504.png b/front/public/images/small/gregtech/gt.blockores/5504.png deleted file mode 100644 index 37ad947008..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5505.png b/front/public/images/small/gregtech/gt.blockores/5505.png deleted file mode 100644 index f50a341c29..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5506.png b/front/public/images/small/gregtech/gt.blockores/5506.png deleted file mode 100644 index fde58333a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5507.png b/front/public/images/small/gregtech/gt.blockores/5507.png deleted file mode 100644 index d4710e9dc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5508.png b/front/public/images/small/gregtech/gt.blockores/5508.png deleted file mode 100644 index 9e67fe98a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5509.png b/front/public/images/small/gregtech/gt.blockores/5509.png deleted file mode 100644 index 34379a9f04..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5510.png b/front/public/images/small/gregtech/gt.blockores/5510.png deleted file mode 100644 index 53816d36cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5511.png b/front/public/images/small/gregtech/gt.blockores/5511.png deleted file mode 100644 index 0bb0fe2946..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5512.png b/front/public/images/small/gregtech/gt.blockores/5512.png deleted file mode 100644 index 056aaa8a6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5513.png b/front/public/images/small/gregtech/gt.blockores/5513.png deleted file mode 100644 index 53816d36cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5514.png b/front/public/images/small/gregtech/gt.blockores/5514.png deleted file mode 100644 index d4710e9dc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5515.png b/front/public/images/small/gregtech/gt.blockores/5515.png deleted file mode 100644 index 5e388a01ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5516.png b/front/public/images/small/gregtech/gt.blockores/5516.png deleted file mode 100644 index 5da98dd033..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5517.png b/front/public/images/small/gregtech/gt.blockores/5517.png deleted file mode 100644 index 70e93e9a21..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5518.png b/front/public/images/small/gregtech/gt.blockores/5518.png deleted file mode 100644 index 94d9934bae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5519.png b/front/public/images/small/gregtech/gt.blockores/5519.png deleted file mode 100644 index 94d9934bae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5520.png b/front/public/images/small/gregtech/gt.blockores/5520.png deleted file mode 100644 index fbf927a320..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5521.png b/front/public/images/small/gregtech/gt.blockores/5521.png deleted file mode 100644 index be4cac555e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5522.png b/front/public/images/small/gregtech/gt.blockores/5522.png deleted file mode 100644 index 2bf793f54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5523.png b/front/public/images/small/gregtech/gt.blockores/5523.png deleted file mode 100644 index 91b5e4b3d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5524.png b/front/public/images/small/gregtech/gt.blockores/5524.png deleted file mode 100644 index 19baabd111..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5525.png b/front/public/images/small/gregtech/gt.blockores/5525.png deleted file mode 100644 index e6b44e10a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5526.png b/front/public/images/small/gregtech/gt.blockores/5526.png deleted file mode 100644 index 4df2142a01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5527.png b/front/public/images/small/gregtech/gt.blockores/5527.png deleted file mode 100644 index 0bb0fe2946..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5528.png b/front/public/images/small/gregtech/gt.blockores/5528.png deleted file mode 100644 index 682efc81c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5529.png b/front/public/images/small/gregtech/gt.blockores/5529.png deleted file mode 100644 index 5e482cd886..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5530.png b/front/public/images/small/gregtech/gt.blockores/5530.png deleted file mode 100644 index 1dd5044b7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5531.png b/front/public/images/small/gregtech/gt.blockores/5531.png deleted file mode 100644 index 3861f1da66..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5534.png b/front/public/images/small/gregtech/gt.blockores/5534.png deleted file mode 100644 index 2ed71488f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5535.png b/front/public/images/small/gregtech/gt.blockores/5535.png deleted file mode 100644 index 3bdf90c180..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5537.png b/front/public/images/small/gregtech/gt.blockores/5537.png deleted file mode 100644 index 9646cd87d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5538.png b/front/public/images/small/gregtech/gt.blockores/5538.png deleted file mode 100644 index 5766c1e003..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5540.png b/front/public/images/small/gregtech/gt.blockores/5540.png deleted file mode 100644 index d55e200d0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5541.png b/front/public/images/small/gregtech/gt.blockores/5541.png deleted file mode 100644 index 48689259a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5542.png b/front/public/images/small/gregtech/gt.blockores/5542.png deleted file mode 100644 index 24f6601728..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5543.png b/front/public/images/small/gregtech/gt.blockores/5543.png deleted file mode 100644 index 3b26e7c136..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5544.png b/front/public/images/small/gregtech/gt.blockores/5544.png deleted file mode 100644 index 8d9385b0bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5545.png b/front/public/images/small/gregtech/gt.blockores/5545.png deleted file mode 100644 index b22fe15373..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5548.png b/front/public/images/small/gregtech/gt.blockores/5548.png deleted file mode 100644 index 078c927419..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5549.png b/front/public/images/small/gregtech/gt.blockores/5549.png deleted file mode 100644 index ac834c819d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/56.png b/front/public/images/small/gregtech/gt.blockores/56.png deleted file mode 100644 index e8e66dd226..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/56.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5607.png b/front/public/images/small/gregtech/gt.blockores/5607.png deleted file mode 100644 index f9d1a342e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5699.png b/front/public/images/small/gregtech/gt.blockores/5699.png deleted file mode 100644 index 01d3739cbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/57.png b/front/public/images/small/gregtech/gt.blockores/57.png deleted file mode 100644 index 4118b05ceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/57.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5770.png b/front/public/images/small/gregtech/gt.blockores/5770.png deleted file mode 100644 index 9c2e201879..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5797.png b/front/public/images/small/gregtech/gt.blockores/5797.png deleted file mode 100644 index 1e1fa9bd85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/58.png b/front/public/images/small/gregtech/gt.blockores/58.png deleted file mode 100644 index 073c0cf937..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/58.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5810.png b/front/public/images/small/gregtech/gt.blockores/5810.png deleted file mode 100644 index 5893f0a54b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5812.png b/front/public/images/small/gregtech/gt.blockores/5812.png deleted file mode 100644 index 94942f89fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5817.png b/front/public/images/small/gregtech/gt.blockores/5817.png deleted file mode 100644 index fa2b77c110..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5820.png b/front/public/images/small/gregtech/gt.blockores/5820.png deleted file mode 100644 index 054eb66632..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5821.png b/front/public/images/small/gregtech/gt.blockores/5821.png deleted file mode 100644 index 19b045c9aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5822.png b/front/public/images/small/gregtech/gt.blockores/5822.png deleted file mode 100644 index 63c9d253c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5823.png b/front/public/images/small/gregtech/gt.blockores/5823.png deleted file mode 100644 index 870bbc7ff6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5824.png b/front/public/images/small/gregtech/gt.blockores/5824.png deleted file mode 100644 index 1e1fa9bd85..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5825.png b/front/public/images/small/gregtech/gt.blockores/5825.png deleted file mode 100644 index 8ff87abc00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5826.png b/front/public/images/small/gregtech/gt.blockores/5826.png deleted file mode 100644 index eada35c013..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5827.png b/front/public/images/small/gregtech/gt.blockores/5827.png deleted file mode 100644 index 8cbaaff344..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5828.png b/front/public/images/small/gregtech/gt.blockores/5828.png deleted file mode 100644 index 753a37fd07..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5829.png b/front/public/images/small/gregtech/gt.blockores/5829.png deleted file mode 100644 index 555ed81858..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5830.png b/front/public/images/small/gregtech/gt.blockores/5830.png deleted file mode 100644 index 44e1e87546..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5831.png b/front/public/images/small/gregtech/gt.blockores/5831.png deleted file mode 100644 index 63c9d253c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5833.png b/front/public/images/small/gregtech/gt.blockores/5833.png deleted file mode 100644 index 9c6a765e77..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5834.png b/front/public/images/small/gregtech/gt.blockores/5834.png deleted file mode 100644 index e2b5b2fcb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5835.png b/front/public/images/small/gregtech/gt.blockores/5835.png deleted file mode 100644 index b8f558eb90..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5836.png b/front/public/images/small/gregtech/gt.blockores/5836.png deleted file mode 100644 index c3a3c80e5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5838.png b/front/public/images/small/gregtech/gt.blockores/5838.png deleted file mode 100644 index 7629dc0dae..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5839.png b/front/public/images/small/gregtech/gt.blockores/5839.png deleted file mode 100644 index dde2f907d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5840.png b/front/public/images/small/gregtech/gt.blockores/5840.png deleted file mode 100644 index 3d72c54b8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5841.png b/front/public/images/small/gregtech/gt.blockores/5841.png deleted file mode 100644 index b7965c6262..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5842.png b/front/public/images/small/gregtech/gt.blockores/5842.png deleted file mode 100644 index e0d4fec475..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5855.png b/front/public/images/small/gregtech/gt.blockores/5855.png deleted file mode 100644 index 941953dcdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5856.png b/front/public/images/small/gregtech/gt.blockores/5856.png deleted file mode 100644 index efd671f072..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5861.png b/front/public/images/small/gregtech/gt.blockores/5861.png deleted file mode 100644 index dde2f907d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5865.png b/front/public/images/small/gregtech/gt.blockores/5865.png deleted file mode 100644 index 533795ea4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5868.png b/front/public/images/small/gregtech/gt.blockores/5868.png deleted file mode 100644 index eaa4052663..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5870.png b/front/public/images/small/gregtech/gt.blockores/5870.png deleted file mode 100644 index 4594d033a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5871.png b/front/public/images/small/gregtech/gt.blockores/5871.png deleted file mode 100644 index 7256db1063..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5873.png b/front/public/images/small/gregtech/gt.blockores/5873.png deleted file mode 100644 index 3d269610a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5877.png b/front/public/images/small/gregtech/gt.blockores/5877.png deleted file mode 100644 index feb45b4176..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5878.png b/front/public/images/small/gregtech/gt.blockores/5878.png deleted file mode 100644 index 8e74eb8855..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5882.png b/front/public/images/small/gregtech/gt.blockores/5882.png deleted file mode 100644 index a219bbb6fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5883.png b/front/public/images/small/gregtech/gt.blockores/5883.png deleted file mode 100644 index 9c6a765e77..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5884.png b/front/public/images/small/gregtech/gt.blockores/5884.png deleted file mode 100644 index 6c58e968a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5894.png b/front/public/images/small/gregtech/gt.blockores/5894.png deleted file mode 100644 index 1ed17f9747..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/59.png b/front/public/images/small/gregtech/gt.blockores/59.png deleted file mode 100644 index ea1253a602..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/59.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5900.png b/front/public/images/small/gregtech/gt.blockores/5900.png deleted file mode 100644 index 593a7ff9b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5901.png b/front/public/images/small/gregtech/gt.blockores/5901.png deleted file mode 100644 index 2de22fac15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5902.png b/front/public/images/small/gregtech/gt.blockores/5902.png deleted file mode 100644 index 750b3a1ce4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5903.png b/front/public/images/small/gregtech/gt.blockores/5903.png deleted file mode 100644 index eae03c4721..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5904.png b/front/public/images/small/gregtech/gt.blockores/5904.png deleted file mode 100644 index 0dbc04d77a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5905.png b/front/public/images/small/gregtech/gt.blockores/5905.png deleted file mode 100644 index 4569596156..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5906.png b/front/public/images/small/gregtech/gt.blockores/5906.png deleted file mode 100644 index fc2cf491df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5907.png b/front/public/images/small/gregtech/gt.blockores/5907.png deleted file mode 100644 index df77c8a0a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5908.png b/front/public/images/small/gregtech/gt.blockores/5908.png deleted file mode 100644 index e1681fad3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5909.png b/front/public/images/small/gregtech/gt.blockores/5909.png deleted file mode 100644 index 6f65bcb708..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5910.png b/front/public/images/small/gregtech/gt.blockores/5910.png deleted file mode 100644 index 20568c967b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5911.png b/front/public/images/small/gregtech/gt.blockores/5911.png deleted file mode 100644 index 1442508b8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5912.png b/front/public/images/small/gregtech/gt.blockores/5912.png deleted file mode 100644 index 87c3a97697..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5913.png b/front/public/images/small/gregtech/gt.blockores/5913.png deleted file mode 100644 index 4ddc369772..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5914.png b/front/public/images/small/gregtech/gt.blockores/5914.png deleted file mode 100644 index df7d2cd689..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5915.png b/front/public/images/small/gregtech/gt.blockores/5915.png deleted file mode 100644 index 1e02662715..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5916.png b/front/public/images/small/gregtech/gt.blockores/5916.png deleted file mode 100644 index 472047c1ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5917.png b/front/public/images/small/gregtech/gt.blockores/5917.png deleted file mode 100644 index 7107df9174..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5918.png b/front/public/images/small/gregtech/gt.blockores/5918.png deleted file mode 100644 index 28bc31f2f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5919.png b/front/public/images/small/gregtech/gt.blockores/5919.png deleted file mode 100644 index 6d3bf1190a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5920.png b/front/public/images/small/gregtech/gt.blockores/5920.png deleted file mode 100644 index 0bf1c98854..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5921.png b/front/public/images/small/gregtech/gt.blockores/5921.png deleted file mode 100644 index 3ca6b78196..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5922.png b/front/public/images/small/gregtech/gt.blockores/5922.png deleted file mode 100644 index 70f1e06ee5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5923.png b/front/public/images/small/gregtech/gt.blockores/5923.png deleted file mode 100644 index b4d2db693d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5924.png b/front/public/images/small/gregtech/gt.blockores/5924.png deleted file mode 100644 index 5bba040324..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5925.png b/front/public/images/small/gregtech/gt.blockores/5925.png deleted file mode 100644 index f3c4721ae4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5926.png b/front/public/images/small/gregtech/gt.blockores/5926.png deleted file mode 100644 index 046459eaf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5927.png b/front/public/images/small/gregtech/gt.blockores/5927.png deleted file mode 100644 index 19cf62da15..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5928.png b/front/public/images/small/gregtech/gt.blockores/5928.png deleted file mode 100644 index c44a5168ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5929.png b/front/public/images/small/gregtech/gt.blockores/5929.png deleted file mode 100644 index b6b9fab54d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5930.png b/front/public/images/small/gregtech/gt.blockores/5930.png deleted file mode 100644 index 63c9d253c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5931.png b/front/public/images/small/gregtech/gt.blockores/5931.png deleted file mode 100644 index a1b5271d1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5932.png b/front/public/images/small/gregtech/gt.blockores/5932.png deleted file mode 100644 index bbaf87db3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5933.png b/front/public/images/small/gregtech/gt.blockores/5933.png deleted file mode 100644 index e3fb4788b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5934.png b/front/public/images/small/gregtech/gt.blockores/5934.png deleted file mode 100644 index 37f6d3c137..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5935.png b/front/public/images/small/gregtech/gt.blockores/5935.png deleted file mode 100644 index b2a0100ab4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5936.png b/front/public/images/small/gregtech/gt.blockores/5936.png deleted file mode 100644 index 28d86193c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5937.png b/front/public/images/small/gregtech/gt.blockores/5937.png deleted file mode 100644 index c264684b09..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5938.png b/front/public/images/small/gregtech/gt.blockores/5938.png deleted file mode 100644 index f740d534e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5939.png b/front/public/images/small/gregtech/gt.blockores/5939.png deleted file mode 100644 index bc8b7c7e2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5941.png b/front/public/images/small/gregtech/gt.blockores/5941.png deleted file mode 100644 index fa2b77c110..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5942.png b/front/public/images/small/gregtech/gt.blockores/5942.png deleted file mode 100644 index e1cc7af614..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5943.png b/front/public/images/small/gregtech/gt.blockores/5943.png deleted file mode 100644 index 1ae4d7a736..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5944.png b/front/public/images/small/gregtech/gt.blockores/5944.png deleted file mode 100644 index efaa7ea957..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5945.png b/front/public/images/small/gregtech/gt.blockores/5945.png deleted file mode 100644 index 3bdf90c180..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5946.png b/front/public/images/small/gregtech/gt.blockores/5946.png deleted file mode 100644 index f4f6577905..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5948.png b/front/public/images/small/gregtech/gt.blockores/5948.png deleted file mode 100644 index 55ed71de6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5949.png b/front/public/images/small/gregtech/gt.blockores/5949.png deleted file mode 100644 index e3fb4788b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5951.png b/front/public/images/small/gregtech/gt.blockores/5951.png deleted file mode 100644 index 54a7570938..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5952.png b/front/public/images/small/gregtech/gt.blockores/5952.png deleted file mode 100644 index eee111257c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5956.png b/front/public/images/small/gregtech/gt.blockores/5956.png deleted file mode 100644 index 99662d56c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5966.png b/front/public/images/small/gregtech/gt.blockores/5966.png deleted file mode 100644 index ea1960eb61..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5969.png b/front/public/images/small/gregtech/gt.blockores/5969.png deleted file mode 100644 index dde2f907d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5971.png b/front/public/images/small/gregtech/gt.blockores/5971.png deleted file mode 100644 index d30d1ffdfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5975.png b/front/public/images/small/gregtech/gt.blockores/5975.png deleted file mode 100644 index 187ad9479c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5976.png b/front/public/images/small/gregtech/gt.blockores/5976.png deleted file mode 100644 index 81eaf7af95..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5978.png b/front/public/images/small/gregtech/gt.blockores/5978.png deleted file mode 100644 index cd2af81df4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5982.png b/front/public/images/small/gregtech/gt.blockores/5982.png deleted file mode 100644 index 08863de499..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/5984.png b/front/public/images/small/gregtech/gt.blockores/5984.png deleted file mode 100644 index 727b515420..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/5984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6.png b/front/public/images/small/gregtech/gt.blockores/6.png deleted file mode 100644 index 9133e5e619..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6006.png b/front/public/images/small/gregtech/gt.blockores/6006.png deleted file mode 100644 index 9ee68aa673..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6008.png b/front/public/images/small/gregtech/gt.blockores/6008.png deleted file mode 100644 index 34995386e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6018.png b/front/public/images/small/gregtech/gt.blockores/6018.png deleted file mode 100644 index c0ebb3e588..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6019.png b/front/public/images/small/gregtech/gt.blockores/6019.png deleted file mode 100644 index 8bc59a9d1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6020.png b/front/public/images/small/gregtech/gt.blockores/6020.png deleted file mode 100644 index 820034da08..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6022.png b/front/public/images/small/gregtech/gt.blockores/6022.png deleted file mode 100644 index d1e1528b7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6027.png b/front/public/images/small/gregtech/gt.blockores/6027.png deleted file mode 100644 index 074c3993d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6028.png b/front/public/images/small/gregtech/gt.blockores/6028.png deleted file mode 100644 index 47b1b16bc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6029.png b/front/public/images/small/gregtech/gt.blockores/6029.png deleted file mode 100644 index 38b2631fa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6030.png b/front/public/images/small/gregtech/gt.blockores/6030.png deleted file mode 100644 index be721bf520..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6031.png b/front/public/images/small/gregtech/gt.blockores/6031.png deleted file mode 100644 index 777a9415d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6032.png b/front/public/images/small/gregtech/gt.blockores/6032.png deleted file mode 100644 index a6203992df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6033.png b/front/public/images/small/gregtech/gt.blockores/6033.png deleted file mode 100644 index 87d6a9d252..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6034.png b/front/public/images/small/gregtech/gt.blockores/6034.png deleted file mode 100644 index dbcd5a847f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6035.png b/front/public/images/small/gregtech/gt.blockores/6035.png deleted file mode 100644 index 134028695c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6036.png b/front/public/images/small/gregtech/gt.blockores/6036.png deleted file mode 100644 index dcac8b694d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6037.png b/front/public/images/small/gregtech/gt.blockores/6037.png deleted file mode 100644 index 803473948e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6039.png b/front/public/images/small/gregtech/gt.blockores/6039.png deleted file mode 100644 index 521bd3a4f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6043.png b/front/public/images/small/gregtech/gt.blockores/6043.png deleted file mode 100644 index bc814eb7cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6044.png b/front/public/images/small/gregtech/gt.blockores/6044.png deleted file mode 100644 index a6203992df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6045.png b/front/public/images/small/gregtech/gt.blockores/6045.png deleted file mode 100644 index 590f79b0cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6047.png b/front/public/images/small/gregtech/gt.blockores/6047.png deleted file mode 100644 index 8d1451632c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6048.png b/front/public/images/small/gregtech/gt.blockores/6048.png deleted file mode 100644 index 9db9f18ab4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6052.png b/front/public/images/small/gregtech/gt.blockores/6052.png deleted file mode 100644 index d2fcc0869f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6054.png b/front/public/images/small/gregtech/gt.blockores/6054.png deleted file mode 100644 index 803473948e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6055.png b/front/public/images/small/gregtech/gt.blockores/6055.png deleted file mode 100644 index 1a6a1af5a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6056.png b/front/public/images/small/gregtech/gt.blockores/6056.png deleted file mode 100644 index 3b963c8c88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6057.png b/front/public/images/small/gregtech/gt.blockores/6057.png deleted file mode 100644 index 360cc9ba4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6058.png b/front/public/images/small/gregtech/gt.blockores/6058.png deleted file mode 100644 index 0666a02a69..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6059.png b/front/public/images/small/gregtech/gt.blockores/6059.png deleted file mode 100644 index 15f083eca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6062.png b/front/public/images/small/gregtech/gt.blockores/6062.png deleted file mode 100644 index 5a3abe66b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6063.png b/front/public/images/small/gregtech/gt.blockores/6063.png deleted file mode 100644 index 521bd3a4f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6064.png b/front/public/images/small/gregtech/gt.blockores/6064.png deleted file mode 100644 index 9b96648823..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6065.png b/front/public/images/small/gregtech/gt.blockores/6065.png deleted file mode 100644 index 0ca4276032..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6066.png b/front/public/images/small/gregtech/gt.blockores/6066.png deleted file mode 100644 index d912b39c01..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6067.png b/front/public/images/small/gregtech/gt.blockores/6067.png deleted file mode 100644 index c061bc0d28..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6068.png b/front/public/images/small/gregtech/gt.blockores/6068.png deleted file mode 100644 index 26f542f2dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6069.png b/front/public/images/small/gregtech/gt.blockores/6069.png deleted file mode 100644 index 847a9fa268..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/607.png b/front/public/images/small/gregtech/gt.blockores/607.png deleted file mode 100644 index ce480715c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6070.png b/front/public/images/small/gregtech/gt.blockores/6070.png deleted file mode 100644 index 0ab946bf41..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6071.png b/front/public/images/small/gregtech/gt.blockores/6071.png deleted file mode 100644 index 9a2bd28e3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6072.png b/front/public/images/small/gregtech/gt.blockores/6072.png deleted file mode 100644 index 521bd3a4f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6073.png b/front/public/images/small/gregtech/gt.blockores/6073.png deleted file mode 100644 index 383f018ee9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6074.png b/front/public/images/small/gregtech/gt.blockores/6074.png deleted file mode 100644 index bf76077d3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6075.png b/front/public/images/small/gregtech/gt.blockores/6075.png deleted file mode 100644 index ce59ac0e22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6076.png b/front/public/images/small/gregtech/gt.blockores/6076.png deleted file mode 100644 index 0342f93b52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6077.png b/front/public/images/small/gregtech/gt.blockores/6077.png deleted file mode 100644 index 68586cdf8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6078.png b/front/public/images/small/gregtech/gt.blockores/6078.png deleted file mode 100644 index 5b3761f17d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6080.png b/front/public/images/small/gregtech/gt.blockores/6080.png deleted file mode 100644 index 85c4cd32c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6081.png b/front/public/images/small/gregtech/gt.blockores/6081.png deleted file mode 100644 index 38b2631fa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6083.png b/front/public/images/small/gregtech/gt.blockores/6083.png deleted file mode 100644 index ae8d856be5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6084.png b/front/public/images/small/gregtech/gt.blockores/6084.png deleted file mode 100644 index dd0131e1ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6085.png b/front/public/images/small/gregtech/gt.blockores/6085.png deleted file mode 100644 index 173c367252..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6086.png b/front/public/images/small/gregtech/gt.blockores/6086.png deleted file mode 100644 index aecdb533a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6089.png b/front/public/images/small/gregtech/gt.blockores/6089.png deleted file mode 100644 index bd335f308b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6090.png b/front/public/images/small/gregtech/gt.blockores/6090.png deleted file mode 100644 index d0dd07330b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6096.png b/front/public/images/small/gregtech/gt.blockores/6096.png deleted file mode 100644 index d4d9dcf33d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6097.png b/front/public/images/small/gregtech/gt.blockores/6097.png deleted file mode 100644 index 163404382a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6098.png b/front/public/images/small/gregtech/gt.blockores/6098.png deleted file mode 100644 index 509d85250d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6100.png b/front/public/images/small/gregtech/gt.blockores/6100.png deleted file mode 100644 index a4924a70ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6101.png b/front/public/images/small/gregtech/gt.blockores/6101.png deleted file mode 100644 index 037457a5ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6103.png b/front/public/images/small/gregtech/gt.blockores/6103.png deleted file mode 100644 index a6203992df..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6110.png b/front/public/images/small/gregtech/gt.blockores/6110.png deleted file mode 100644 index 4b7d4a68c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6129.png b/front/public/images/small/gregtech/gt.blockores/6129.png deleted file mode 100644 index 777a9415d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/62.png b/front/public/images/small/gregtech/gt.blockores/62.png deleted file mode 100644 index ba370cd4fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/62.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/63.png b/front/public/images/small/gregtech/gt.blockores/63.png deleted file mode 100644 index 0d85b4323e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/63.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6303.png b/front/public/images/small/gregtech/gt.blockores/6303.png deleted file mode 100644 index ef480aba6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6307.png b/front/public/images/small/gregtech/gt.blockores/6307.png deleted file mode 100644 index bbdf8abc9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6319.png b/front/public/images/small/gregtech/gt.blockores/6319.png deleted file mode 100644 index 3815db3771..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6320.png b/front/public/images/small/gregtech/gt.blockores/6320.png deleted file mode 100644 index 8c03ad28aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6323.png b/front/public/images/small/gregtech/gt.blockores/6323.png deleted file mode 100644 index d0fb719b7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6324.png b/front/public/images/small/gregtech/gt.blockores/6324.png deleted file mode 100644 index 38b2631fa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6326.png b/front/public/images/small/gregtech/gt.blockores/6326.png deleted file mode 100644 index 52d710138a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6327.png b/front/public/images/small/gregtech/gt.blockores/6327.png deleted file mode 100644 index 2b82fa7311..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6329.png b/front/public/images/small/gregtech/gt.blockores/6329.png deleted file mode 100644 index b52761e427..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6331.png b/front/public/images/small/gregtech/gt.blockores/6331.png deleted file mode 100644 index 836c80d28a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6336.png b/front/public/images/small/gregtech/gt.blockores/6336.png deleted file mode 100644 index d3f8c58d8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6340.png b/front/public/images/small/gregtech/gt.blockores/6340.png deleted file mode 100644 index 66f919a798..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6342.png b/front/public/images/small/gregtech/gt.blockores/6342.png deleted file mode 100644 index 6560355e79..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6347.png b/front/public/images/small/gregtech/gt.blockores/6347.png deleted file mode 100644 index be2eece2b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6368.png b/front/public/images/small/gregtech/gt.blockores/6368.png deleted file mode 100644 index 05ea6d914c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6375.png b/front/public/images/small/gregtech/gt.blockores/6375.png deleted file mode 100644 index f035fb6b9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6382.png b/front/public/images/small/gregtech/gt.blockores/6382.png deleted file mode 100644 index 6dc5ecb56b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6386.png b/front/public/images/small/gregtech/gt.blockores/6386.png deleted file mode 100644 index 78cf30ce7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6387.png b/front/public/images/small/gregtech/gt.blockores/6387.png deleted file mode 100644 index 9c6a1b2b9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6388.png b/front/public/images/small/gregtech/gt.blockores/6388.png deleted file mode 100644 index 38b2631fa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6389.png b/front/public/images/small/gregtech/gt.blockores/6389.png deleted file mode 100644 index 21616ffb88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6390.png b/front/public/images/small/gregtech/gt.blockores/6390.png deleted file mode 100644 index 4d358eb1cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6391.png b/front/public/images/small/gregtech/gt.blockores/6391.png deleted file mode 100644 index cfcd3ead7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6392.png b/front/public/images/small/gregtech/gt.blockores/6392.png deleted file mode 100644 index a38ce85fcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6393.png b/front/public/images/small/gregtech/gt.blockores/6393.png deleted file mode 100644 index a00570e600..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6394.png b/front/public/images/small/gregtech/gt.blockores/6394.png deleted file mode 100644 index 3815db3771..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6395.png b/front/public/images/small/gregtech/gt.blockores/6395.png deleted file mode 100644 index 38b2631fa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6398.png b/front/public/images/small/gregtech/gt.blockores/6398.png deleted file mode 100644 index b8af58f8d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/64.png b/front/public/images/small/gregtech/gt.blockores/64.png deleted file mode 100644 index 2c5dd65657..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/64.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6485.png b/front/public/images/small/gregtech/gt.blockores/6485.png deleted file mode 100644 index 43329f6e56..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6488.png b/front/public/images/small/gregtech/gt.blockores/6488.png deleted file mode 100644 index 176dd16c29..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6489.png b/front/public/images/small/gregtech/gt.blockores/6489.png deleted file mode 100644 index 989c31a3f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/65.png b/front/public/images/small/gregtech/gt.blockores/65.png deleted file mode 100644 index 53cd4d5036..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/65.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6500.png b/front/public/images/small/gregtech/gt.blockores/6500.png deleted file mode 100644 index 2307d01852..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6501.png b/front/public/images/small/gregtech/gt.blockores/6501.png deleted file mode 100644 index 7498ed5771..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6502.png b/front/public/images/small/gregtech/gt.blockores/6502.png deleted file mode 100644 index 4d430b1bc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6503.png b/front/public/images/small/gregtech/gt.blockores/6503.png deleted file mode 100644 index 6b5f7f98ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6504.png b/front/public/images/small/gregtech/gt.blockores/6504.png deleted file mode 100644 index c59b7937c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6505.png b/front/public/images/small/gregtech/gt.blockores/6505.png deleted file mode 100644 index 4c111fbe91..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6506.png b/front/public/images/small/gregtech/gt.blockores/6506.png deleted file mode 100644 index 153245d142..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6507.png b/front/public/images/small/gregtech/gt.blockores/6507.png deleted file mode 100644 index 63f81da227..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6508.png b/front/public/images/small/gregtech/gt.blockores/6508.png deleted file mode 100644 index b0f672ca2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6509.png b/front/public/images/small/gregtech/gt.blockores/6509.png deleted file mode 100644 index ddb1e17b2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6510.png b/front/public/images/small/gregtech/gt.blockores/6510.png deleted file mode 100644 index 2ef641a823..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6511.png b/front/public/images/small/gregtech/gt.blockores/6511.png deleted file mode 100644 index c7f5c474a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6512.png b/front/public/images/small/gregtech/gt.blockores/6512.png deleted file mode 100644 index 4d430b1bc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6513.png b/front/public/images/small/gregtech/gt.blockores/6513.png deleted file mode 100644 index 2ef641a823..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6514.png b/front/public/images/small/gregtech/gt.blockores/6514.png deleted file mode 100644 index 63f81da227..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6515.png b/front/public/images/small/gregtech/gt.blockores/6515.png deleted file mode 100644 index 6e527b8749..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6516.png b/front/public/images/small/gregtech/gt.blockores/6516.png deleted file mode 100644 index 9a43a6c9c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6517.png b/front/public/images/small/gregtech/gt.blockores/6517.png deleted file mode 100644 index e4709191be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6518.png b/front/public/images/small/gregtech/gt.blockores/6518.png deleted file mode 100644 index 1e6064f4d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6519.png b/front/public/images/small/gregtech/gt.blockores/6519.png deleted file mode 100644 index 1e6064f4d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6520.png b/front/public/images/small/gregtech/gt.blockores/6520.png deleted file mode 100644 index f675ecbe93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6521.png b/front/public/images/small/gregtech/gt.blockores/6521.png deleted file mode 100644 index d94e105561..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6522.png b/front/public/images/small/gregtech/gt.blockores/6522.png deleted file mode 100644 index 00f97faf65..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6523.png b/front/public/images/small/gregtech/gt.blockores/6523.png deleted file mode 100644 index 1ab7cd780e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6524.png b/front/public/images/small/gregtech/gt.blockores/6524.png deleted file mode 100644 index 9eb95196b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6525.png b/front/public/images/small/gregtech/gt.blockores/6525.png deleted file mode 100644 index 1c3a71f00f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6526.png b/front/public/images/small/gregtech/gt.blockores/6526.png deleted file mode 100644 index bec99b842a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6527.png b/front/public/images/small/gregtech/gt.blockores/6527.png deleted file mode 100644 index c7f5c474a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6528.png b/front/public/images/small/gregtech/gt.blockores/6528.png deleted file mode 100644 index f748abaf93..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6529.png b/front/public/images/small/gregtech/gt.blockores/6529.png deleted file mode 100644 index 4d29058b04..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6530.png b/front/public/images/small/gregtech/gt.blockores/6530.png deleted file mode 100644 index f64086b3ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6531.png b/front/public/images/small/gregtech/gt.blockores/6531.png deleted file mode 100644 index 9fb21a52a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6534.png b/front/public/images/small/gregtech/gt.blockores/6534.png deleted file mode 100644 index f4266d40c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6535.png b/front/public/images/small/gregtech/gt.blockores/6535.png deleted file mode 100644 index 8350d611ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6537.png b/front/public/images/small/gregtech/gt.blockores/6537.png deleted file mode 100644 index fa69c71da3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6538.png b/front/public/images/small/gregtech/gt.blockores/6538.png deleted file mode 100644 index a21f3d5d8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6540.png b/front/public/images/small/gregtech/gt.blockores/6540.png deleted file mode 100644 index c2c38341ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6541.png b/front/public/images/small/gregtech/gt.blockores/6541.png deleted file mode 100644 index edeab48664..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6542.png b/front/public/images/small/gregtech/gt.blockores/6542.png deleted file mode 100644 index 3c880f969d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6543.png b/front/public/images/small/gregtech/gt.blockores/6543.png deleted file mode 100644 index 401e9aa695..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6544.png b/front/public/images/small/gregtech/gt.blockores/6544.png deleted file mode 100644 index dfe4854e39..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6545.png b/front/public/images/small/gregtech/gt.blockores/6545.png deleted file mode 100644 index 7e5cf45069..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6548.png b/front/public/images/small/gregtech/gt.blockores/6548.png deleted file mode 100644 index d97a3371d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6549.png b/front/public/images/small/gregtech/gt.blockores/6549.png deleted file mode 100644 index 35168caf26..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/66.png b/front/public/images/small/gregtech/gt.blockores/66.png deleted file mode 100644 index 3929f95593..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/66.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6607.png b/front/public/images/small/gregtech/gt.blockores/6607.png deleted file mode 100644 index 70f3f5d89c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6699.png b/front/public/images/small/gregtech/gt.blockores/6699.png deleted file mode 100644 index d9f2d228f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/67.png b/front/public/images/small/gregtech/gt.blockores/67.png deleted file mode 100644 index fad4bc7660..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/67.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6770.png b/front/public/images/small/gregtech/gt.blockores/6770.png deleted file mode 100644 index a368c2a8e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6797.png b/front/public/images/small/gregtech/gt.blockores/6797.png deleted file mode 100644 index 360cc9ba4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/68.png b/front/public/images/small/gregtech/gt.blockores/68.png deleted file mode 100644 index 8393e34439..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/68.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6810.png b/front/public/images/small/gregtech/gt.blockores/6810.png deleted file mode 100644 index 9e289e020f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6812.png b/front/public/images/small/gregtech/gt.blockores/6812.png deleted file mode 100644 index f4a1f171cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6817.png b/front/public/images/small/gregtech/gt.blockores/6817.png deleted file mode 100644 index de2281faaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6820.png b/front/public/images/small/gregtech/gt.blockores/6820.png deleted file mode 100644 index 38839b2dab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6821.png b/front/public/images/small/gregtech/gt.blockores/6821.png deleted file mode 100644 index 4b878b2a8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6822.png b/front/public/images/small/gregtech/gt.blockores/6822.png deleted file mode 100644 index e5987d10e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6823.png b/front/public/images/small/gregtech/gt.blockores/6823.png deleted file mode 100644 index b4831ab927..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6824.png b/front/public/images/small/gregtech/gt.blockores/6824.png deleted file mode 100644 index 360cc9ba4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6825.png b/front/public/images/small/gregtech/gt.blockores/6825.png deleted file mode 100644 index edad7835e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6826.png b/front/public/images/small/gregtech/gt.blockores/6826.png deleted file mode 100644 index 47ff77f2c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6827.png b/front/public/images/small/gregtech/gt.blockores/6827.png deleted file mode 100644 index 87d6a9d252..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6828.png b/front/public/images/small/gregtech/gt.blockores/6828.png deleted file mode 100644 index 8ee96bad3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6829.png b/front/public/images/small/gregtech/gt.blockores/6829.png deleted file mode 100644 index 1e0635dfbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6830.png b/front/public/images/small/gregtech/gt.blockores/6830.png deleted file mode 100644 index cd5979c409..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6831.png b/front/public/images/small/gregtech/gt.blockores/6831.png deleted file mode 100644 index e5987d10e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6833.png b/front/public/images/small/gregtech/gt.blockores/6833.png deleted file mode 100644 index c88e78ac00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6834.png b/front/public/images/small/gregtech/gt.blockores/6834.png deleted file mode 100644 index c367930026..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6835.png b/front/public/images/small/gregtech/gt.blockores/6835.png deleted file mode 100644 index f5bbadb417..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6836.png b/front/public/images/small/gregtech/gt.blockores/6836.png deleted file mode 100644 index 7727f7483e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6838.png b/front/public/images/small/gregtech/gt.blockores/6838.png deleted file mode 100644 index 06e3d02f0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6839.png b/front/public/images/small/gregtech/gt.blockores/6839.png deleted file mode 100644 index 521bd3a4f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6840.png b/front/public/images/small/gregtech/gt.blockores/6840.png deleted file mode 100644 index bb1c9c3bec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6841.png b/front/public/images/small/gregtech/gt.blockores/6841.png deleted file mode 100644 index 48b7d1d4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6842.png b/front/public/images/small/gregtech/gt.blockores/6842.png deleted file mode 100644 index d2fa7a16b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6855.png b/front/public/images/small/gregtech/gt.blockores/6855.png deleted file mode 100644 index 18a7bbccd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6856.png b/front/public/images/small/gregtech/gt.blockores/6856.png deleted file mode 100644 index a064e8dc7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6861.png b/front/public/images/small/gregtech/gt.blockores/6861.png deleted file mode 100644 index 521bd3a4f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6865.png b/front/public/images/small/gregtech/gt.blockores/6865.png deleted file mode 100644 index 56ffdf85ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6868.png b/front/public/images/small/gregtech/gt.blockores/6868.png deleted file mode 100644 index d7b5eb7107..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6870.png b/front/public/images/small/gregtech/gt.blockores/6870.png deleted file mode 100644 index 30b9b0ca51..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6871.png b/front/public/images/small/gregtech/gt.blockores/6871.png deleted file mode 100644 index ab26c18681..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6873.png b/front/public/images/small/gregtech/gt.blockores/6873.png deleted file mode 100644 index a7d73b68ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6877.png b/front/public/images/small/gregtech/gt.blockores/6877.png deleted file mode 100644 index f40318c329..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6878.png b/front/public/images/small/gregtech/gt.blockores/6878.png deleted file mode 100644 index 7b027f645f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6882.png b/front/public/images/small/gregtech/gt.blockores/6882.png deleted file mode 100644 index efb43f9a52..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6883.png b/front/public/images/small/gregtech/gt.blockores/6883.png deleted file mode 100644 index c88e78ac00..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6884.png b/front/public/images/small/gregtech/gt.blockores/6884.png deleted file mode 100644 index ca34cce25a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6894.png b/front/public/images/small/gregtech/gt.blockores/6894.png deleted file mode 100644 index 88582ec28a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/69.png b/front/public/images/small/gregtech/gt.blockores/69.png deleted file mode 100644 index 1a898d2c7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/69.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6900.png b/front/public/images/small/gregtech/gt.blockores/6900.png deleted file mode 100644 index 64c40bb50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6901.png b/front/public/images/small/gregtech/gt.blockores/6901.png deleted file mode 100644 index e1d58e8a74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6902.png b/front/public/images/small/gregtech/gt.blockores/6902.png deleted file mode 100644 index caf34ac5a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6903.png b/front/public/images/small/gregtech/gt.blockores/6903.png deleted file mode 100644 index b8cdd52408..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6904.png b/front/public/images/small/gregtech/gt.blockores/6904.png deleted file mode 100644 index f2afca7629..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6905.png b/front/public/images/small/gregtech/gt.blockores/6905.png deleted file mode 100644 index d8eeee67ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6906.png b/front/public/images/small/gregtech/gt.blockores/6906.png deleted file mode 100644 index 5adb784694..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6907.png b/front/public/images/small/gregtech/gt.blockores/6907.png deleted file mode 100644 index 1210438bb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6908.png b/front/public/images/small/gregtech/gt.blockores/6908.png deleted file mode 100644 index 8723a2d6ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6909.png b/front/public/images/small/gregtech/gt.blockores/6909.png deleted file mode 100644 index d24676caf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6910.png b/front/public/images/small/gregtech/gt.blockores/6910.png deleted file mode 100644 index cf8df87ea4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6911.png b/front/public/images/small/gregtech/gt.blockores/6911.png deleted file mode 100644 index 6f51cf8d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6912.png b/front/public/images/small/gregtech/gt.blockores/6912.png deleted file mode 100644 index a788d756c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6913.png b/front/public/images/small/gregtech/gt.blockores/6913.png deleted file mode 100644 index 222c1fbc9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6914.png b/front/public/images/small/gregtech/gt.blockores/6914.png deleted file mode 100644 index ca91fa6aa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6915.png b/front/public/images/small/gregtech/gt.blockores/6915.png deleted file mode 100644 index a6aa4a87fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6916.png b/front/public/images/small/gregtech/gt.blockores/6916.png deleted file mode 100644 index 5e3128ce88..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6917.png b/front/public/images/small/gregtech/gt.blockores/6917.png deleted file mode 100644 index 040b128a2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6918.png b/front/public/images/small/gregtech/gt.blockores/6918.png deleted file mode 100644 index f511b53187..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6919.png b/front/public/images/small/gregtech/gt.blockores/6919.png deleted file mode 100644 index 04d1e8dd6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6920.png b/front/public/images/small/gregtech/gt.blockores/6920.png deleted file mode 100644 index 232b49839a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6921.png b/front/public/images/small/gregtech/gt.blockores/6921.png deleted file mode 100644 index 1ba1a95980..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6922.png b/front/public/images/small/gregtech/gt.blockores/6922.png deleted file mode 100644 index 979e2bfea2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6923.png b/front/public/images/small/gregtech/gt.blockores/6923.png deleted file mode 100644 index 23762c60d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6924.png b/front/public/images/small/gregtech/gt.blockores/6924.png deleted file mode 100644 index 8b7c31bfed..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6925.png b/front/public/images/small/gregtech/gt.blockores/6925.png deleted file mode 100644 index 260a08cafa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6926.png b/front/public/images/small/gregtech/gt.blockores/6926.png deleted file mode 100644 index 8700dee9d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6927.png b/front/public/images/small/gregtech/gt.blockores/6927.png deleted file mode 100644 index 422ca08b19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6928.png b/front/public/images/small/gregtech/gt.blockores/6928.png deleted file mode 100644 index 42d1ddb89e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6929.png b/front/public/images/small/gregtech/gt.blockores/6929.png deleted file mode 100644 index 12cfc3cc8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6930.png b/front/public/images/small/gregtech/gt.blockores/6930.png deleted file mode 100644 index e5987d10e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6931.png b/front/public/images/small/gregtech/gt.blockores/6931.png deleted file mode 100644 index d1e1528b7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6932.png b/front/public/images/small/gregtech/gt.blockores/6932.png deleted file mode 100644 index 927d3f8ee0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6933.png b/front/public/images/small/gregtech/gt.blockores/6933.png deleted file mode 100644 index ab42350369..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6934.png b/front/public/images/small/gregtech/gt.blockores/6934.png deleted file mode 100644 index c2877e9c3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6935.png b/front/public/images/small/gregtech/gt.blockores/6935.png deleted file mode 100644 index 2d5a5cc8be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6936.png b/front/public/images/small/gregtech/gt.blockores/6936.png deleted file mode 100644 index 4fb6815c2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6937.png b/front/public/images/small/gregtech/gt.blockores/6937.png deleted file mode 100644 index 2c01f4ef59..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6938.png b/front/public/images/small/gregtech/gt.blockores/6938.png deleted file mode 100644 index 1d151e60ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6939.png b/front/public/images/small/gregtech/gt.blockores/6939.png deleted file mode 100644 index 93a5ae5a48..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6941.png b/front/public/images/small/gregtech/gt.blockores/6941.png deleted file mode 100644 index de2281faaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6942.png b/front/public/images/small/gregtech/gt.blockores/6942.png deleted file mode 100644 index b401c145dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6943.png b/front/public/images/small/gregtech/gt.blockores/6943.png deleted file mode 100644 index b2bbd0b0ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6944.png b/front/public/images/small/gregtech/gt.blockores/6944.png deleted file mode 100644 index b5629fa775..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6945.png b/front/public/images/small/gregtech/gt.blockores/6945.png deleted file mode 100644 index 8350d611ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6946.png b/front/public/images/small/gregtech/gt.blockores/6946.png deleted file mode 100644 index 29adecf8ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6948.png b/front/public/images/small/gregtech/gt.blockores/6948.png deleted file mode 100644 index fbe5886e35..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6949.png b/front/public/images/small/gregtech/gt.blockores/6949.png deleted file mode 100644 index ab42350369..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6951.png b/front/public/images/small/gregtech/gt.blockores/6951.png deleted file mode 100644 index 7b513d394f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6952.png b/front/public/images/small/gregtech/gt.blockores/6952.png deleted file mode 100644 index aacce4451c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6956.png b/front/public/images/small/gregtech/gt.blockores/6956.png deleted file mode 100644 index b2799f6a94..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6966.png b/front/public/images/small/gregtech/gt.blockores/6966.png deleted file mode 100644 index 8673cd10ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6969.png b/front/public/images/small/gregtech/gt.blockores/6969.png deleted file mode 100644 index 521bd3a4f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6971.png b/front/public/images/small/gregtech/gt.blockores/6971.png deleted file mode 100644 index a54d298e81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6975.png b/front/public/images/small/gregtech/gt.blockores/6975.png deleted file mode 100644 index e9944082e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6976.png b/front/public/images/small/gregtech/gt.blockores/6976.png deleted file mode 100644 index d68a415db8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6978.png b/front/public/images/small/gregtech/gt.blockores/6978.png deleted file mode 100644 index 6ab29b3714..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6982.png b/front/public/images/small/gregtech/gt.blockores/6982.png deleted file mode 100644 index a8d131f30b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/6984.png b/front/public/images/small/gregtech/gt.blockores/6984.png deleted file mode 100644 index 3815db3771..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/6984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/699.png b/front/public/images/small/gregtech/gt.blockores/699.png deleted file mode 100644 index 8f7c998802..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/70.png b/front/public/images/small/gregtech/gt.blockores/70.png deleted file mode 100644 index bb145b3736..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/70.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/71.png b/front/public/images/small/gregtech/gt.blockores/71.png deleted file mode 100644 index 97221183c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/71.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/72.png b/front/public/images/small/gregtech/gt.blockores/72.png deleted file mode 100644 index 0d85b4323e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/72.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/73.png b/front/public/images/small/gregtech/gt.blockores/73.png deleted file mode 100644 index 861a8b485e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/73.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/74.png b/front/public/images/small/gregtech/gt.blockores/74.png deleted file mode 100644 index d0db3cd8be..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/74.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/75.png b/front/public/images/small/gregtech/gt.blockores/75.png deleted file mode 100644 index ae8e1f9af7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/75.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/76.png b/front/public/images/small/gregtech/gt.blockores/76.png deleted file mode 100644 index 3fd06c0e1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/76.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/77.png b/front/public/images/small/gregtech/gt.blockores/77.png deleted file mode 100644 index 4a287e1953..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/77.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/770.png b/front/public/images/small/gregtech/gt.blockores/770.png deleted file mode 100644 index 299beaa333..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/78.png b/front/public/images/small/gregtech/gt.blockores/78.png deleted file mode 100644 index 3d79795485..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/78.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/797.png b/front/public/images/small/gregtech/gt.blockores/797.png deleted file mode 100644 index 4118b05ceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/8.png b/front/public/images/small/gregtech/gt.blockores/8.png deleted file mode 100644 index 699e41cc7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/80.png b/front/public/images/small/gregtech/gt.blockores/80.png deleted file mode 100644 index 77ff09fdd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/80.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/81.png b/front/public/images/small/gregtech/gt.blockores/81.png deleted file mode 100644 index 8b2b78b2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/81.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/810.png b/front/public/images/small/gregtech/gt.blockores/810.png deleted file mode 100644 index d02478eefc..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/812.png b/front/public/images/small/gregtech/gt.blockores/812.png deleted file mode 100644 index b47a87087c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/817.png b/front/public/images/small/gregtech/gt.blockores/817.png deleted file mode 100644 index 7842752e81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/820.png b/front/public/images/small/gregtech/gt.blockores/820.png deleted file mode 100644 index c25545fd90..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/821.png b/front/public/images/small/gregtech/gt.blockores/821.png deleted file mode 100644 index fbc8a5c6c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/822.png b/front/public/images/small/gregtech/gt.blockores/822.png deleted file mode 100644 index 0c33be0500..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/823.png b/front/public/images/small/gregtech/gt.blockores/823.png deleted file mode 100644 index 8624361cd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/824.png b/front/public/images/small/gregtech/gt.blockores/824.png deleted file mode 100644 index 4118b05ceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/825.png b/front/public/images/small/gregtech/gt.blockores/825.png deleted file mode 100644 index 7ae66fb8a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/826.png b/front/public/images/small/gregtech/gt.blockores/826.png deleted file mode 100644 index 55ea939aee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/827.png b/front/public/images/small/gregtech/gt.blockores/827.png deleted file mode 100644 index 017b14ca89..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/828.png b/front/public/images/small/gregtech/gt.blockores/828.png deleted file mode 100644 index 7a4fa26431..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/829.png b/front/public/images/small/gregtech/gt.blockores/829.png deleted file mode 100644 index 2a680d74a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/83.png b/front/public/images/small/gregtech/gt.blockores/83.png deleted file mode 100644 index 116ead9b2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/83.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/830.png b/front/public/images/small/gregtech/gt.blockores/830.png deleted file mode 100644 index 85fc8dc509..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/831.png b/front/public/images/small/gregtech/gt.blockores/831.png deleted file mode 100644 index 0c33be0500..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/833.png b/front/public/images/small/gregtech/gt.blockores/833.png deleted file mode 100644 index 78af3100e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/834.png b/front/public/images/small/gregtech/gt.blockores/834.png deleted file mode 100644 index 1305162fd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/835.png b/front/public/images/small/gregtech/gt.blockores/835.png deleted file mode 100644 index 1a6f07e150..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/836.png b/front/public/images/small/gregtech/gt.blockores/836.png deleted file mode 100644 index 207f752c5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/838.png b/front/public/images/small/gregtech/gt.blockores/838.png deleted file mode 100644 index 2a39b6e0b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/839.png b/front/public/images/small/gregtech/gt.blockores/839.png deleted file mode 100644 index 0d85b4323e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/84.png b/front/public/images/small/gregtech/gt.blockores/84.png deleted file mode 100644 index faea7d97d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/84.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/840.png b/front/public/images/small/gregtech/gt.blockores/840.png deleted file mode 100644 index bcdb5c58ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/841.png b/front/public/images/small/gregtech/gt.blockores/841.png deleted file mode 100644 index 7e5375fe78..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/842.png b/front/public/images/small/gregtech/gt.blockores/842.png deleted file mode 100644 index b293c2a17b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/85.png b/front/public/images/small/gregtech/gt.blockores/85.png deleted file mode 100644 index 99bd319866..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/85.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/855.png b/front/public/images/small/gregtech/gt.blockores/855.png deleted file mode 100644 index 42ac7e3c3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/856.png b/front/public/images/small/gregtech/gt.blockores/856.png deleted file mode 100644 index d55a87e492..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/86.png b/front/public/images/small/gregtech/gt.blockores/86.png deleted file mode 100644 index dda9db7e7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/86.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/861.png b/front/public/images/small/gregtech/gt.blockores/861.png deleted file mode 100644 index 0d85b4323e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/865.png b/front/public/images/small/gregtech/gt.blockores/865.png deleted file mode 100644 index 66f94a1377..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/868.png b/front/public/images/small/gregtech/gt.blockores/868.png deleted file mode 100644 index a5b71b2f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/870.png b/front/public/images/small/gregtech/gt.blockores/870.png deleted file mode 100644 index 3d6566e221..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/871.png b/front/public/images/small/gregtech/gt.blockores/871.png deleted file mode 100644 index 2422690b63..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/873.png b/front/public/images/small/gregtech/gt.blockores/873.png deleted file mode 100644 index 01281dcf4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/877.png b/front/public/images/small/gregtech/gt.blockores/877.png deleted file mode 100644 index 83541d742c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/878.png b/front/public/images/small/gregtech/gt.blockores/878.png deleted file mode 100644 index 91f45fd505..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/882.png b/front/public/images/small/gregtech/gt.blockores/882.png deleted file mode 100644 index 75ff1a9efd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/883.png b/front/public/images/small/gregtech/gt.blockores/883.png deleted file mode 100644 index 78af3100e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/884.png b/front/public/images/small/gregtech/gt.blockores/884.png deleted file mode 100644 index b24ac0d3f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/89.png b/front/public/images/small/gregtech/gt.blockores/89.png deleted file mode 100644 index abd2780b8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/89.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/894.png b/front/public/images/small/gregtech/gt.blockores/894.png deleted file mode 100644 index 000eedd5cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/90.png b/front/public/images/small/gregtech/gt.blockores/90.png deleted file mode 100644 index b17bada505..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/90.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/900.png b/front/public/images/small/gregtech/gt.blockores/900.png deleted file mode 100644 index 77ddc8c194..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/901.png b/front/public/images/small/gregtech/gt.blockores/901.png deleted file mode 100644 index ef0ea27272..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/902.png b/front/public/images/small/gregtech/gt.blockores/902.png deleted file mode 100644 index e6a8fee18f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/903.png b/front/public/images/small/gregtech/gt.blockores/903.png deleted file mode 100644 index 67a132873a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/904.png b/front/public/images/small/gregtech/gt.blockores/904.png deleted file mode 100644 index 0d1aa95249..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/905.png b/front/public/images/small/gregtech/gt.blockores/905.png deleted file mode 100644 index c488a21bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/906.png b/front/public/images/small/gregtech/gt.blockores/906.png deleted file mode 100644 index 341fcf712c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/907.png b/front/public/images/small/gregtech/gt.blockores/907.png deleted file mode 100644 index 2d57cbc47d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/908.png b/front/public/images/small/gregtech/gt.blockores/908.png deleted file mode 100644 index 0c36cfd7d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/909.png b/front/public/images/small/gregtech/gt.blockores/909.png deleted file mode 100644 index 778cc38ba7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/910.png b/front/public/images/small/gregtech/gt.blockores/910.png deleted file mode 100644 index 03af9471d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/911.png b/front/public/images/small/gregtech/gt.blockores/911.png deleted file mode 100644 index 8de5edd7b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/912.png b/front/public/images/small/gregtech/gt.blockores/912.png deleted file mode 100644 index 83eb3ec46a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/913.png b/front/public/images/small/gregtech/gt.blockores/913.png deleted file mode 100644 index 198c1a8c90..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/914.png b/front/public/images/small/gregtech/gt.blockores/914.png deleted file mode 100644 index 363b553978..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/915.png b/front/public/images/small/gregtech/gt.blockores/915.png deleted file mode 100644 index 071aa6b625..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/916.png b/front/public/images/small/gregtech/gt.blockores/916.png deleted file mode 100644 index 0ba6fd6a44..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/917.png b/front/public/images/small/gregtech/gt.blockores/917.png deleted file mode 100644 index fb92ea0491..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/918.png b/front/public/images/small/gregtech/gt.blockores/918.png deleted file mode 100644 index 10314cdf53..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/919.png b/front/public/images/small/gregtech/gt.blockores/919.png deleted file mode 100644 index bae348a2da..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/920.png b/front/public/images/small/gregtech/gt.blockores/920.png deleted file mode 100644 index 1eb62b04a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/921.png b/front/public/images/small/gregtech/gt.blockores/921.png deleted file mode 100644 index 3a0c2281e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/922.png b/front/public/images/small/gregtech/gt.blockores/922.png deleted file mode 100644 index 8ab5b2a8aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/923.png b/front/public/images/small/gregtech/gt.blockores/923.png deleted file mode 100644 index f81ad05afe..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/924.png b/front/public/images/small/gregtech/gt.blockores/924.png deleted file mode 100644 index e9f30cb52f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/925.png b/front/public/images/small/gregtech/gt.blockores/925.png deleted file mode 100644 index ff1c061e6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/926.png b/front/public/images/small/gregtech/gt.blockores/926.png deleted file mode 100644 index 21654cae36..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/927.png b/front/public/images/small/gregtech/gt.blockores/927.png deleted file mode 100644 index d03e2f3c71..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/928.png b/front/public/images/small/gregtech/gt.blockores/928.png deleted file mode 100644 index 75b8591072..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/929.png b/front/public/images/small/gregtech/gt.blockores/929.png deleted file mode 100644 index b2efff5123..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/930.png b/front/public/images/small/gregtech/gt.blockores/930.png deleted file mode 100644 index 0c33be0500..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/931.png b/front/public/images/small/gregtech/gt.blockores/931.png deleted file mode 100644 index d835919e53..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/932.png b/front/public/images/small/gregtech/gt.blockores/932.png deleted file mode 100644 index f459b5fcdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/933.png b/front/public/images/small/gregtech/gt.blockores/933.png deleted file mode 100644 index 0e1d6b3c67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/934.png b/front/public/images/small/gregtech/gt.blockores/934.png deleted file mode 100644 index e1599137aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/935.png b/front/public/images/small/gregtech/gt.blockores/935.png deleted file mode 100644 index 09bc9d8499..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/936.png b/front/public/images/small/gregtech/gt.blockores/936.png deleted file mode 100644 index 6ca175f81b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/937.png b/front/public/images/small/gregtech/gt.blockores/937.png deleted file mode 100644 index 826fda8aab..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/938.png b/front/public/images/small/gregtech/gt.blockores/938.png deleted file mode 100644 index 4d819cfce9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/939.png b/front/public/images/small/gregtech/gt.blockores/939.png deleted file mode 100644 index 21e2bd0009..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/941.png b/front/public/images/small/gregtech/gt.blockores/941.png deleted file mode 100644 index 7842752e81..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/942.png b/front/public/images/small/gregtech/gt.blockores/942.png deleted file mode 100644 index 48066e520f..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/943.png b/front/public/images/small/gregtech/gt.blockores/943.png deleted file mode 100644 index 84d2cfd18e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/944.png b/front/public/images/small/gregtech/gt.blockores/944.png deleted file mode 100644 index 0c0521ed19..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/945.png b/front/public/images/small/gregtech/gt.blockores/945.png deleted file mode 100644 index 3b5fc3f36b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/946.png b/front/public/images/small/gregtech/gt.blockores/946.png deleted file mode 100644 index 95b3353af9..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/948.png b/front/public/images/small/gregtech/gt.blockores/948.png deleted file mode 100644 index cb370bece0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/949.png b/front/public/images/small/gregtech/gt.blockores/949.png deleted file mode 100644 index 0e1d6b3c67..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/951.png b/front/public/images/small/gregtech/gt.blockores/951.png deleted file mode 100644 index 04365bef9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/952.png b/front/public/images/small/gregtech/gt.blockores/952.png deleted file mode 100644 index cab1009cc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/956.png b/front/public/images/small/gregtech/gt.blockores/956.png deleted file mode 100644 index 54637e3ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/96.png b/front/public/images/small/gregtech/gt.blockores/96.png deleted file mode 100644 index b05ab0218b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/96.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/966.png b/front/public/images/small/gregtech/gt.blockores/966.png deleted file mode 100644 index 2ecb869599..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/969.png b/front/public/images/small/gregtech/gt.blockores/969.png deleted file mode 100644 index 0d85b4323e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/97.png b/front/public/images/small/gregtech/gt.blockores/97.png deleted file mode 100644 index f616c6f517..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/97.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/971.png b/front/public/images/small/gregtech/gt.blockores/971.png deleted file mode 100644 index d28f405408..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/975.png b/front/public/images/small/gregtech/gt.blockores/975.png deleted file mode 100644 index 058ad3a215..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/976.png b/front/public/images/small/gregtech/gt.blockores/976.png deleted file mode 100644 index caf6097302..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/978.png b/front/public/images/small/gregtech/gt.blockores/978.png deleted file mode 100644 index 638760e761..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/98.png b/front/public/images/small/gregtech/gt.blockores/98.png deleted file mode 100644 index 0b71fb2e0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/98.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/982.png b/front/public/images/small/gregtech/gt.blockores/982.png deleted file mode 100644 index 79e15be026..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockores/984.png b/front/public/images/small/gregtech/gt.blockores/984.png deleted file mode 100644 index c577e8ce7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockores/984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/0.png b/front/public/images/small/gregtech/gt.blockreinforced/0.png deleted file mode 100644 index 19e1498140..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/1.png b/front/public/images/small/gregtech/gt.blockreinforced/1.png deleted file mode 100644 index 1b58ea2b98..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/10.png b/front/public/images/small/gregtech/gt.blockreinforced/10.png deleted file mode 100644 index aa007bae1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/11.png b/front/public/images/small/gregtech/gt.blockreinforced/11.png deleted file mode 100644 index 690453bea8..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/12.png b/front/public/images/small/gregtech/gt.blockreinforced/12.png deleted file mode 100644 index 9f1ee0210a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/2.png b/front/public/images/small/gregtech/gt.blockreinforced/2.png deleted file mode 100644 index e608d4afcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/3.png b/front/public/images/small/gregtech/gt.blockreinforced/3.png deleted file mode 100644 index 1064a3ae0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/4.png b/front/public/images/small/gregtech/gt.blockreinforced/4.png deleted file mode 100644 index 0c526d93a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/5.png b/front/public/images/small/gregtech/gt.blockreinforced/5.png deleted file mode 100644 index 004224a6a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/6.png b/front/public/images/small/gregtech/gt.blockreinforced/6.png deleted file mode 100644 index 0c526d93a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/7.png b/front/public/images/small/gregtech/gt.blockreinforced/7.png deleted file mode 100644 index 0c526d93a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/8.png b/front/public/images/small/gregtech/gt.blockreinforced/8.png deleted file mode 100644 index 9c4203c187..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockreinforced/9.png b/front/public/images/small/gregtech/gt.blockreinforced/9.png deleted file mode 100644 index f574ac4c74..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockreinforced/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/0.png b/front/public/images/small/gregtech/gt.blockstones/0.png deleted file mode 100644 index 5a8b4e125e..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/1.png b/front/public/images/small/gregtech/gt.blockstones/1.png deleted file mode 100644 index 56ad6b9fe0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/10.png b/front/public/images/small/gregtech/gt.blockstones/10.png deleted file mode 100644 index 33b8061c8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/11.png b/front/public/images/small/gregtech/gt.blockstones/11.png deleted file mode 100644 index 33c5c68673..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/12.png b/front/public/images/small/gregtech/gt.blockstones/12.png deleted file mode 100644 index 413cbc6ac6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/13.png b/front/public/images/small/gregtech/gt.blockstones/13.png deleted file mode 100644 index 7e0918c9bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/14.png b/front/public/images/small/gregtech/gt.blockstones/14.png deleted file mode 100644 index 8c928d0b7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/15.png b/front/public/images/small/gregtech/gt.blockstones/15.png deleted file mode 100644 index a7cbdd6971..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/2.png b/front/public/images/small/gregtech/gt.blockstones/2.png deleted file mode 100644 index eec9fd04c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/3.png b/front/public/images/small/gregtech/gt.blockstones/3.png deleted file mode 100644 index fb7c3f8492..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/4.png b/front/public/images/small/gregtech/gt.blockstones/4.png deleted file mode 100644 index b6570f666a..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/5.png b/front/public/images/small/gregtech/gt.blockstones/5.png deleted file mode 100644 index 7d9a96b975..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/6.png b/front/public/images/small/gregtech/gt.blockstones/6.png deleted file mode 100644 index fcb9b5d137..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/7.png b/front/public/images/small/gregtech/gt.blockstones/7.png deleted file mode 100644 index 170b51f8a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/7.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/8.png b/front/public/images/small/gregtech/gt.blockstones/8.png deleted file mode 100644 index e4b1764901..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.blockstones/9.png b/front/public/images/small/gregtech/gt.blockstones/9.png deleted file mode 100644 index 9989adf550..0000000000 Binary files a/front/public/images/small/gregtech/gt.blockstones/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/0.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/0.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/10.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/10.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/100.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/100.png deleted file mode 100644 index 76bc5809b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/102.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/102.png deleted file mode 100644 index 640eadf18c..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/104.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/104.png deleted file mode 100644 index 584deed074..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/106.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/106.png deleted file mode 100644 index 90827ca801..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/12.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/12.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/14.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/14.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/16.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/16.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/16.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/18.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/18.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/18.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/2.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/2.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/4.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/4.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/6.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/6.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.detrav.metatool.01/8.png b/front/public/images/small/gregtech/gt.detrav.metatool.01/8.png deleted file mode 100644 index 0f0c124675..0000000000 Binary files a/front/public/images/small/gregtech/gt.detrav.metatool.01/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.glowstoneCell/0.png b/front/public/images/small/gregtech/gt.glowstoneCell/0.png deleted file mode 100644 index 6734500f6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.glowstoneCell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.integrated_circuit/0.png b/front/public/images/small/gregtech/gt.integrated_circuit/0.png deleted file mode 100644 index b95156cb84..0000000000 Binary files a/front/public/images/small/gregtech/gt.integrated_circuit/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11006.png b/front/public/images/small/gregtech/gt.metaitem.01/11006.png deleted file mode 100644 index da528251bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11008.png b/front/public/images/small/gregtech/gt.metaitem.01/11008.png deleted file mode 100644 index 2c7afe19cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11010.png b/front/public/images/small/gregtech/gt.metaitem.01/11010.png deleted file mode 100644 index 3bf058d35a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11018.png b/front/public/images/small/gregtech/gt.metaitem.01/11018.png deleted file mode 100644 index d076ca230c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11019.png b/front/public/images/small/gregtech/gt.metaitem.01/11019.png deleted file mode 100644 index da07b90765..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11020.png b/front/public/images/small/gregtech/gt.metaitem.01/11020.png deleted file mode 100644 index 3fa0b675cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11025.png b/front/public/images/small/gregtech/gt.metaitem.01/11025.png deleted file mode 100644 index 7e97cbb0b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11027.png b/front/public/images/small/gregtech/gt.metaitem.01/11027.png deleted file mode 100644 index b50a2a3d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11028.png b/front/public/images/small/gregtech/gt.metaitem.01/11028.png deleted file mode 100644 index c35e3aba1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11029.png b/front/public/images/small/gregtech/gt.metaitem.01/11029.png deleted file mode 100644 index a136e2cd98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11030.png b/front/public/images/small/gregtech/gt.metaitem.01/11030.png deleted file mode 100644 index 9cd65192ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11031.png b/front/public/images/small/gregtech/gt.metaitem.01/11031.png deleted file mode 100644 index 29e0d62d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11033.png b/front/public/images/small/gregtech/gt.metaitem.01/11033.png deleted file mode 100644 index cf059eebba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11034.png b/front/public/images/small/gregtech/gt.metaitem.01/11034.png deleted file mode 100644 index 00010a6bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11035.png b/front/public/images/small/gregtech/gt.metaitem.01/11035.png deleted file mode 100644 index 63af0956b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11036.png b/front/public/images/small/gregtech/gt.metaitem.01/11036.png deleted file mode 100644 index 3abc16d29c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11037.png b/front/public/images/small/gregtech/gt.metaitem.01/11037.png deleted file mode 100644 index 15f654bd7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11039.png b/front/public/images/small/gregtech/gt.metaitem.01/11039.png deleted file mode 100644 index 71fbd59a43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11043.png b/front/public/images/small/gregtech/gt.metaitem.01/11043.png deleted file mode 100644 index 30895e6eeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11045.png b/front/public/images/small/gregtech/gt.metaitem.01/11045.png deleted file mode 100644 index aab8ef92c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11047.png b/front/public/images/small/gregtech/gt.metaitem.01/11047.png deleted file mode 100644 index 138610b5a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11048.png b/front/public/images/small/gregtech/gt.metaitem.01/11048.png deleted file mode 100644 index 48ee91160f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11052.png b/front/public/images/small/gregtech/gt.metaitem.01/11052.png deleted file mode 100644 index 0e9a0e756f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11054.png b/front/public/images/small/gregtech/gt.metaitem.01/11054.png deleted file mode 100644 index 15f654bd7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11056.png b/front/public/images/small/gregtech/gt.metaitem.01/11056.png deleted file mode 100644 index 49404e651c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11057.png b/front/public/images/small/gregtech/gt.metaitem.01/11057.png deleted file mode 100644 index 4e4cd951cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11058.png b/front/public/images/small/gregtech/gt.metaitem.01/11058.png deleted file mode 100644 index a86181fa4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11059.png b/front/public/images/small/gregtech/gt.metaitem.01/11059.png deleted file mode 100644 index 82e9dd25b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11062.png b/front/public/images/small/gregtech/gt.metaitem.01/11062.png deleted file mode 100644 index fcccbef456..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11063.png b/front/public/images/small/gregtech/gt.metaitem.01/11063.png deleted file mode 100644 index c5a0154939..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11064.png b/front/public/images/small/gregtech/gt.metaitem.01/11064.png deleted file mode 100644 index 681f713f4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11065.png b/front/public/images/small/gregtech/gt.metaitem.01/11065.png deleted file mode 100644 index 50af37a5a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11066.png b/front/public/images/small/gregtech/gt.metaitem.01/11066.png deleted file mode 100644 index e3fddb2bfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11067.png b/front/public/images/small/gregtech/gt.metaitem.01/11067.png deleted file mode 100644 index 7ec1d51e31..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11068.png b/front/public/images/small/gregtech/gt.metaitem.01/11068.png deleted file mode 100644 index 1b54f767d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11069.png b/front/public/images/small/gregtech/gt.metaitem.01/11069.png deleted file mode 100644 index ad896bc6d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11070.png b/front/public/images/small/gregtech/gt.metaitem.01/11070.png deleted file mode 100644 index ec3b2746cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11071.png b/front/public/images/small/gregtech/gt.metaitem.01/11071.png deleted file mode 100644 index 5360f02c0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11072.png b/front/public/images/small/gregtech/gt.metaitem.01/11072.png deleted file mode 100644 index c5a0154939..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11073.png b/front/public/images/small/gregtech/gt.metaitem.01/11073.png deleted file mode 100644 index a4f709754b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11074.png b/front/public/images/small/gregtech/gt.metaitem.01/11074.png deleted file mode 100644 index 9bb75937d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11075.png b/front/public/images/small/gregtech/gt.metaitem.01/11075.png deleted file mode 100644 index 3785e56fd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11076.png b/front/public/images/small/gregtech/gt.metaitem.01/11076.png deleted file mode 100644 index 2e496b9fec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11077.png b/front/public/images/small/gregtech/gt.metaitem.01/11077.png deleted file mode 100644 index f84185397f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11078.png b/front/public/images/small/gregtech/gt.metaitem.01/11078.png deleted file mode 100644 index b484345236..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11080.png b/front/public/images/small/gregtech/gt.metaitem.01/11080.png deleted file mode 100644 index ef500ca1c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11081.png b/front/public/images/small/gregtech/gt.metaitem.01/11081.png deleted file mode 100644 index a136e2cd98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11083.png b/front/public/images/small/gregtech/gt.metaitem.01/11083.png deleted file mode 100644 index d010de82bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11084.png b/front/public/images/small/gregtech/gt.metaitem.01/11084.png deleted file mode 100644 index 40bdb645d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11085.png b/front/public/images/small/gregtech/gt.metaitem.01/11085.png deleted file mode 100644 index e7855f3c20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11089.png b/front/public/images/small/gregtech/gt.metaitem.01/11089.png deleted file mode 100644 index f3f703aeba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11090.png b/front/public/images/small/gregtech/gt.metaitem.01/11090.png deleted file mode 100644 index 1346f8c83c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11096.png b/front/public/images/small/gregtech/gt.metaitem.01/11096.png deleted file mode 100644 index 2aa6d58ee7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11097.png b/front/public/images/small/gregtech/gt.metaitem.01/11097.png deleted file mode 100644 index 756c218c1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11098.png b/front/public/images/small/gregtech/gt.metaitem.01/11098.png deleted file mode 100644 index 3c3312ed60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11100.png b/front/public/images/small/gregtech/gt.metaitem.01/11100.png deleted file mode 100644 index 225273fe38..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11101.png b/front/public/images/small/gregtech/gt.metaitem.01/11101.png deleted file mode 100644 index d1f2ba4653..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11103.png b/front/public/images/small/gregtech/gt.metaitem.01/11103.png deleted file mode 100644 index 0b7f8eb07a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11111.png b/front/public/images/small/gregtech/gt.metaitem.01/11111.png deleted file mode 100644 index d67d0773a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11112.png b/front/public/images/small/gregtech/gt.metaitem.01/11112.png deleted file mode 100644 index 13efdc1933..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11129.png b/front/public/images/small/gregtech/gt.metaitem.01/11129.png deleted file mode 100644 index 29e0d62d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11131.png b/front/public/images/small/gregtech/gt.metaitem.01/11131.png deleted file mode 100644 index 064878caec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11134.png b/front/public/images/small/gregtech/gt.metaitem.01/11134.png deleted file mode 100644 index 928eca201f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11139.png b/front/public/images/small/gregtech/gt.metaitem.01/11139.png deleted file mode 100644 index d24400df31..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11141.png b/front/public/images/small/gregtech/gt.metaitem.01/11141.png deleted file mode 100644 index 5473b424d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11143.png b/front/public/images/small/gregtech/gt.metaitem.01/11143.png deleted file mode 100644 index c5d068f542..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11300.png b/front/public/images/small/gregtech/gt.metaitem.01/11300.png deleted file mode 100644 index dac0d70283..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11301.png b/front/public/images/small/gregtech/gt.metaitem.01/11301.png deleted file mode 100644 index 77e501d3bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11302.png b/front/public/images/small/gregtech/gt.metaitem.01/11302.png deleted file mode 100644 index 7887074e68..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11303.png b/front/public/images/small/gregtech/gt.metaitem.01/11303.png deleted file mode 100644 index cb6eb03021..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11304.png b/front/public/images/small/gregtech/gt.metaitem.01/11304.png deleted file mode 100644 index f5f6c01933..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11305.png b/front/public/images/small/gregtech/gt.metaitem.01/11305.png deleted file mode 100644 index c235c22c68..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11306.png b/front/public/images/small/gregtech/gt.metaitem.01/11306.png deleted file mode 100644 index adfa99e186..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11307.png b/front/public/images/small/gregtech/gt.metaitem.01/11307.png deleted file mode 100644 index f5f6c01933..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11308.png b/front/public/images/small/gregtech/gt.metaitem.01/11308.png deleted file mode 100644 index 48c6d493d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11309.png b/front/public/images/small/gregtech/gt.metaitem.01/11309.png deleted file mode 100644 index 016a4ab1af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11310.png b/front/public/images/small/gregtech/gt.metaitem.01/11310.png deleted file mode 100644 index 8ac81470ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11311.png b/front/public/images/small/gregtech/gt.metaitem.01/11311.png deleted file mode 100644 index f4ea0857e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11312.png b/front/public/images/small/gregtech/gt.metaitem.01/11312.png deleted file mode 100644 index d785426c34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11313.png b/front/public/images/small/gregtech/gt.metaitem.01/11313.png deleted file mode 100644 index 12f9f85655..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11314.png b/front/public/images/small/gregtech/gt.metaitem.01/11314.png deleted file mode 100644 index cbe9fb5d46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11315.png b/front/public/images/small/gregtech/gt.metaitem.01/11315.png deleted file mode 100644 index a9a286f68c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11316.png b/front/public/images/small/gregtech/gt.metaitem.01/11316.png deleted file mode 100644 index cd4956db3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11317.png b/front/public/images/small/gregtech/gt.metaitem.01/11317.png deleted file mode 100644 index 997c50062d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11318.png b/front/public/images/small/gregtech/gt.metaitem.01/11318.png deleted file mode 100644 index d1198b1ecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11319.png b/front/public/images/small/gregtech/gt.metaitem.01/11319.png deleted file mode 100644 index a20a0b423b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11320.png b/front/public/images/small/gregtech/gt.metaitem.01/11320.png deleted file mode 100644 index de7fb4655e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11321.png b/front/public/images/small/gregtech/gt.metaitem.01/11321.png deleted file mode 100644 index a14b8466c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11323.png b/front/public/images/small/gregtech/gt.metaitem.01/11323.png deleted file mode 100644 index 42a3da10b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11324.png b/front/public/images/small/gregtech/gt.metaitem.01/11324.png deleted file mode 100644 index a136e2cd98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11325.png b/front/public/images/small/gregtech/gt.metaitem.01/11325.png deleted file mode 100644 index 255519e7e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11326.png b/front/public/images/small/gregtech/gt.metaitem.01/11326.png deleted file mode 100644 index 2d73cecdbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11327.png b/front/public/images/small/gregtech/gt.metaitem.01/11327.png deleted file mode 100644 index e78b91e14d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11328.png b/front/public/images/small/gregtech/gt.metaitem.01/11328.png deleted file mode 100644 index c5a0154939..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11329.png b/front/public/images/small/gregtech/gt.metaitem.01/11329.png deleted file mode 100644 index d6d28a642a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11330.png b/front/public/images/small/gregtech/gt.metaitem.01/11330.png deleted file mode 100644 index 0c4f311ee8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11331.png b/front/public/images/small/gregtech/gt.metaitem.01/11331.png deleted file mode 100644 index c74aa8abc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11333.png b/front/public/images/small/gregtech/gt.metaitem.01/11333.png deleted file mode 100644 index 61d4225eac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11334.png b/front/public/images/small/gregtech/gt.metaitem.01/11334.png deleted file mode 100644 index 7ec1d51e31..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11335.png b/front/public/images/small/gregtech/gt.metaitem.01/11335.png deleted file mode 100644 index 8fec79c20c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11336.png b/front/public/images/small/gregtech/gt.metaitem.01/11336.png deleted file mode 100644 index e1572e10a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11337.png b/front/public/images/small/gregtech/gt.metaitem.01/11337.png deleted file mode 100644 index 905dd7688c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11338.png b/front/public/images/small/gregtech/gt.metaitem.01/11338.png deleted file mode 100644 index 3c77c1d345..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11339.png b/front/public/images/small/gregtech/gt.metaitem.01/11339.png deleted file mode 100644 index 06ee971a57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11340.png b/front/public/images/small/gregtech/gt.metaitem.01/11340.png deleted file mode 100644 index d06bb9f824..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11341.png b/front/public/images/small/gregtech/gt.metaitem.01/11341.png deleted file mode 100644 index 305d10131a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11342.png b/front/public/images/small/gregtech/gt.metaitem.01/11342.png deleted file mode 100644 index 6afbcff241..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11343.png b/front/public/images/small/gregtech/gt.metaitem.01/11343.png deleted file mode 100644 index a8103b935a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11344.png b/front/public/images/small/gregtech/gt.metaitem.01/11344.png deleted file mode 100644 index 049b618105..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11345.png b/front/public/images/small/gregtech/gt.metaitem.01/11345.png deleted file mode 100644 index 31a97cfbd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11346.png b/front/public/images/small/gregtech/gt.metaitem.01/11346.png deleted file mode 100644 index 6e8bd80b09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11348.png b/front/public/images/small/gregtech/gt.metaitem.01/11348.png deleted file mode 100644 index 5f57e3ec0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11349.png b/front/public/images/small/gregtech/gt.metaitem.01/11349.png deleted file mode 100644 index 34181aaa51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11350.png b/front/public/images/small/gregtech/gt.metaitem.01/11350.png deleted file mode 100644 index 6804ed3807..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11351.png b/front/public/images/small/gregtech/gt.metaitem.01/11351.png deleted file mode 100644 index 12ff2e6a47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11352.png b/front/public/images/small/gregtech/gt.metaitem.01/11352.png deleted file mode 100644 index c6046a187a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11353.png b/front/public/images/small/gregtech/gt.metaitem.01/11353.png deleted file mode 100644 index 403a550e07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11354.png b/front/public/images/small/gregtech/gt.metaitem.01/11354.png deleted file mode 100644 index 43d12f3c3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11355.png b/front/public/images/small/gregtech/gt.metaitem.01/11355.png deleted file mode 100644 index 555fb62833..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11356.png b/front/public/images/small/gregtech/gt.metaitem.01/11356.png deleted file mode 100644 index 9a504be476..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11357.png b/front/public/images/small/gregtech/gt.metaitem.01/11357.png deleted file mode 100644 index f8949444b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11358.png b/front/public/images/small/gregtech/gt.metaitem.01/11358.png deleted file mode 100644 index 2a46447ee7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11359.png b/front/public/images/small/gregtech/gt.metaitem.01/11359.png deleted file mode 100644 index 0094ba1c9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11360.png b/front/public/images/small/gregtech/gt.metaitem.01/11360.png deleted file mode 100644 index 602cab9c23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11361.png b/front/public/images/small/gregtech/gt.metaitem.01/11361.png deleted file mode 100644 index 6033eb1d30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11362.png b/front/public/images/small/gregtech/gt.metaitem.01/11362.png deleted file mode 100644 index cdac1b9ede..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11363.png b/front/public/images/small/gregtech/gt.metaitem.01/11363.png deleted file mode 100644 index 0b7f8eb07a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11364.png b/front/public/images/small/gregtech/gt.metaitem.01/11364.png deleted file mode 100644 index cbb3b17714..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11365.png b/front/public/images/small/gregtech/gt.metaitem.01/11365.png deleted file mode 100644 index 530a3b68f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11366.png b/front/public/images/small/gregtech/gt.metaitem.01/11366.png deleted file mode 100644 index 91aee6a31d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11367.png b/front/public/images/small/gregtech/gt.metaitem.01/11367.png deleted file mode 100644 index 7788c478ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11368.png b/front/public/images/small/gregtech/gt.metaitem.01/11368.png deleted file mode 100644 index 1bff46300f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11369.png b/front/public/images/small/gregtech/gt.metaitem.01/11369.png deleted file mode 100644 index ae13241da9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11370.png b/front/public/images/small/gregtech/gt.metaitem.01/11370.png deleted file mode 100644 index 61812611a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11371.png b/front/public/images/small/gregtech/gt.metaitem.01/11371.png deleted file mode 100644 index b9795d9765..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11372.png b/front/public/images/small/gregtech/gt.metaitem.01/11372.png deleted file mode 100644 index 6c84cfe814..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11373.png b/front/public/images/small/gregtech/gt.metaitem.01/11373.png deleted file mode 100644 index 9cd36196f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11374.png b/front/public/images/small/gregtech/gt.metaitem.01/11374.png deleted file mode 100644 index 84d21b1623..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11378.png b/front/public/images/small/gregtech/gt.metaitem.01/11378.png deleted file mode 100644 index 69584cc1c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11379.png b/front/public/images/small/gregtech/gt.metaitem.01/11379.png deleted file mode 100644 index 3f259d0004..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11380.png b/front/public/images/small/gregtech/gt.metaitem.01/11380.png deleted file mode 100644 index 00c63fc7fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11381.png b/front/public/images/small/gregtech/gt.metaitem.01/11381.png deleted file mode 100644 index 68e7044497..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11382.png b/front/public/images/small/gregtech/gt.metaitem.01/11382.png deleted file mode 100644 index f93bd80d61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11383.png b/front/public/images/small/gregtech/gt.metaitem.01/11383.png deleted file mode 100644 index 246cd1fc56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11384.png b/front/public/images/small/gregtech/gt.metaitem.01/11384.png deleted file mode 100644 index f4dbce1ce6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11385.png b/front/public/images/small/gregtech/gt.metaitem.01/11385.png deleted file mode 100644 index 06b228045c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11386.png b/front/public/images/small/gregtech/gt.metaitem.01/11386.png deleted file mode 100644 index b013449bef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11387.png b/front/public/images/small/gregtech/gt.metaitem.01/11387.png deleted file mode 100644 index b9b1d07443..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11388.png b/front/public/images/small/gregtech/gt.metaitem.01/11388.png deleted file mode 100644 index 9a76fd902a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11389.png b/front/public/images/small/gregtech/gt.metaitem.01/11389.png deleted file mode 100644 index 0352b7709c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11390.png b/front/public/images/small/gregtech/gt.metaitem.01/11390.png deleted file mode 100644 index c27125eea0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11391.png b/front/public/images/small/gregtech/gt.metaitem.01/11391.png deleted file mode 100644 index 4a566729ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11392.png b/front/public/images/small/gregtech/gt.metaitem.01/11392.png deleted file mode 100644 index 78779ca13b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11393.png b/front/public/images/small/gregtech/gt.metaitem.01/11393.png deleted file mode 100644 index c2281e1f35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11394.png b/front/public/images/small/gregtech/gt.metaitem.01/11394.png deleted file mode 100644 index a20a0b423b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11395.png b/front/public/images/small/gregtech/gt.metaitem.01/11395.png deleted file mode 100644 index 9a76fd902a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11397.png b/front/public/images/small/gregtech/gt.metaitem.01/11397.png deleted file mode 100644 index 3edd3a21c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11398.png b/front/public/images/small/gregtech/gt.metaitem.01/11398.png deleted file mode 100644 index afe8da764c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11399.png b/front/public/images/small/gregtech/gt.metaitem.01/11399.png deleted file mode 100644 index db61d71dd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11400.png b/front/public/images/small/gregtech/gt.metaitem.01/11400.png deleted file mode 100644 index 87c13487dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11401.png b/front/public/images/small/gregtech/gt.metaitem.01/11401.png deleted file mode 100644 index 7238a4781b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11402.png b/front/public/images/small/gregtech/gt.metaitem.01/11402.png deleted file mode 100644 index a676b1a950..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11403.png b/front/public/images/small/gregtech/gt.metaitem.01/11403.png deleted file mode 100644 index 6400bdc322..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11404.png b/front/public/images/small/gregtech/gt.metaitem.01/11404.png deleted file mode 100644 index 3c9ab296f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11405.png b/front/public/images/small/gregtech/gt.metaitem.01/11405.png deleted file mode 100644 index 022c5c1bc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11406.png b/front/public/images/small/gregtech/gt.metaitem.01/11406.png deleted file mode 100644 index e15a7f64b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11407.png b/front/public/images/small/gregtech/gt.metaitem.01/11407.png deleted file mode 100644 index 5ef40f7b8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11408.png b/front/public/images/small/gregtech/gt.metaitem.01/11408.png deleted file mode 100644 index ea7dcb5d08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11470.png b/front/public/images/small/gregtech/gt.metaitem.01/11470.png deleted file mode 100644 index 72fc7af77e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11471.png b/front/public/images/small/gregtech/gt.metaitem.01/11471.png deleted file mode 100644 index 4e4cd951cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11472.png b/front/public/images/small/gregtech/gt.metaitem.01/11472.png deleted file mode 100644 index 9a76fd902a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11473.png b/front/public/images/small/gregtech/gt.metaitem.01/11473.png deleted file mode 100644 index 5daa953103..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11485.png b/front/public/images/small/gregtech/gt.metaitem.01/11485.png deleted file mode 100644 index 56b61d25f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11488.png b/front/public/images/small/gregtech/gt.metaitem.01/11488.png deleted file mode 100644 index 6fa6361794..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11489.png b/front/public/images/small/gregtech/gt.metaitem.01/11489.png deleted file mode 100644 index 703b361769..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11521.png b/front/public/images/small/gregtech/gt.metaitem.01/11521.png deleted file mode 100644 index d1198b1ecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11529.png b/front/public/images/small/gregtech/gt.metaitem.01/11529.png deleted file mode 100644 index ef7a4318e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11576.png b/front/public/images/small/gregtech/gt.metaitem.01/11576.png deleted file mode 100644 index 1b04274328..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11581.png b/front/public/images/small/gregtech/gt.metaitem.01/11581.png deleted file mode 100644 index ee5fab8485..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11582.png b/front/public/images/small/gregtech/gt.metaitem.01/11582.png deleted file mode 100644 index c14fe48a28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11583.png b/front/public/images/small/gregtech/gt.metaitem.01/11583.png deleted file mode 100644 index 9b880afa42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11585.png b/front/public/images/small/gregtech/gt.metaitem.01/11585.png deleted file mode 100644 index c3a9bac7a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11586.png b/front/public/images/small/gregtech/gt.metaitem.01/11586.png deleted file mode 100644 index a614eca373..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11588.png b/front/public/images/small/gregtech/gt.metaitem.01/11588.png deleted file mode 100644 index c5f11a9d8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11599.png b/front/public/images/small/gregtech/gt.metaitem.01/11599.png deleted file mode 100644 index 5629e28faf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11610.png b/front/public/images/small/gregtech/gt.metaitem.01/11610.png deleted file mode 100644 index 03734d1bbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11611.png b/front/public/images/small/gregtech/gt.metaitem.01/11611.png deleted file mode 100644 index 859d7cb15b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11613.png b/front/public/images/small/gregtech/gt.metaitem.01/11613.png deleted file mode 100644 index f370832fb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11631.png b/front/public/images/small/gregtech/gt.metaitem.01/11631.png deleted file mode 100644 index 37e9e49947..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11635.png b/front/public/images/small/gregtech/gt.metaitem.01/11635.png deleted file mode 100644 index 81c37e7727..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11636.png b/front/public/images/small/gregtech/gt.metaitem.01/11636.png deleted file mode 100644 index a2be845a57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11649.png b/front/public/images/small/gregtech/gt.metaitem.01/11649.png deleted file mode 100644 index 9368fc1683..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11765.png b/front/public/images/small/gregtech/gt.metaitem.01/11765.png deleted file mode 100644 index 334687f9d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11770.png b/front/public/images/small/gregtech/gt.metaitem.01/11770.png deleted file mode 100644 index 8a67bb943e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11772.png b/front/public/images/small/gregtech/gt.metaitem.01/11772.png deleted file mode 100644 index f05003b62f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11804.png b/front/public/images/small/gregtech/gt.metaitem.01/11804.png deleted file mode 100644 index e94c935b22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11829.png b/front/public/images/small/gregtech/gt.metaitem.01/11829.png deleted file mode 100644 index 4dd981c8f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11856.png b/front/public/images/small/gregtech/gt.metaitem.01/11856.png deleted file mode 100644 index dea959e54b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11868.png b/front/public/images/small/gregtech/gt.metaitem.01/11868.png deleted file mode 100644 index f25ff3dc66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11874.png b/front/public/images/small/gregtech/gt.metaitem.01/11874.png deleted file mode 100644 index d8e327ccb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11880.png b/front/public/images/small/gregtech/gt.metaitem.01/11880.png deleted file mode 100644 index a33372f31c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11884.png b/front/public/images/small/gregtech/gt.metaitem.01/11884.png deleted file mode 100644 index 0fc4193e7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11912.png b/front/public/images/small/gregtech/gt.metaitem.01/11912.png deleted file mode 100644 index 2394db0d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11913.png b/front/public/images/small/gregtech/gt.metaitem.01/11913.png deleted file mode 100644 index f531e40b67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11951.png b/front/public/images/small/gregtech/gt.metaitem.01/11951.png deleted file mode 100644 index 213473da5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11952.png b/front/public/images/small/gregtech/gt.metaitem.01/11952.png deleted file mode 100644 index fd0f140273..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11956.png b/front/public/images/small/gregtech/gt.metaitem.01/11956.png deleted file mode 100644 index 51f21442a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11966.png b/front/public/images/small/gregtech/gt.metaitem.01/11966.png deleted file mode 100644 index f5a5e09279..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11970.png b/front/public/images/small/gregtech/gt.metaitem.01/11970.png deleted file mode 100644 index 9c19144224..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11974.png b/front/public/images/small/gregtech/gt.metaitem.01/11974.png deleted file mode 100644 index b823ef1b5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11975.png b/front/public/images/small/gregtech/gt.metaitem.01/11975.png deleted file mode 100644 index 2ef80b7e0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11976.png b/front/public/images/small/gregtech/gt.metaitem.01/11976.png deleted file mode 100644 index 063a277f40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11977.png b/front/public/images/small/gregtech/gt.metaitem.01/11977.png deleted file mode 100644 index 17491acf2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11978.png b/front/public/images/small/gregtech/gt.metaitem.01/11978.png deleted file mode 100644 index 3c2609f098..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11979.png b/front/public/images/small/gregtech/gt.metaitem.01/11979.png deleted file mode 100644 index c6dc816bfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11980.png b/front/public/images/small/gregtech/gt.metaitem.01/11980.png deleted file mode 100644 index 3e07f180f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11981.png b/front/public/images/small/gregtech/gt.metaitem.01/11981.png deleted file mode 100644 index 35896001da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11982.png b/front/public/images/small/gregtech/gt.metaitem.01/11982.png deleted file mode 100644 index 0b32ee0ff1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11984.png b/front/public/images/small/gregtech/gt.metaitem.01/11984.png deleted file mode 100644 index a20a0b423b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11985.png b/front/public/images/small/gregtech/gt.metaitem.01/11985.png deleted file mode 100644 index 5e0fb18a59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11986.png b/front/public/images/small/gregtech/gt.metaitem.01/11986.png deleted file mode 100644 index e08b849351..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11987.png b/front/public/images/small/gregtech/gt.metaitem.01/11987.png deleted file mode 100644 index 7fb6e9d399..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11988.png b/front/public/images/small/gregtech/gt.metaitem.01/11988.png deleted file mode 100644 index 99cdd1f080..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11989.png b/front/public/images/small/gregtech/gt.metaitem.01/11989.png deleted file mode 100644 index cf8f55c0c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11990.png b/front/public/images/small/gregtech/gt.metaitem.01/11990.png deleted file mode 100644 index d03ce1e382..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11991.png b/front/public/images/small/gregtech/gt.metaitem.01/11991.png deleted file mode 100644 index 654d33daf2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/11992.png b/front/public/images/small/gregtech/gt.metaitem.01/11992.png deleted file mode 100644 index da3871cfed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/11992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13006.png b/front/public/images/small/gregtech/gt.metaitem.01/13006.png deleted file mode 100644 index f8b97b70bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13008.png b/front/public/images/small/gregtech/gt.metaitem.01/13008.png deleted file mode 100644 index 32cd3443b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13010.png b/front/public/images/small/gregtech/gt.metaitem.01/13010.png deleted file mode 100644 index 39a8159d3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13018.png b/front/public/images/small/gregtech/gt.metaitem.01/13018.png deleted file mode 100644 index 1048fc5384..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13019.png b/front/public/images/small/gregtech/gt.metaitem.01/13019.png deleted file mode 100644 index 4e8070dfa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13020.png b/front/public/images/small/gregtech/gt.metaitem.01/13020.png deleted file mode 100644 index 96c206475a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13025.png b/front/public/images/small/gregtech/gt.metaitem.01/13025.png deleted file mode 100644 index dead030bbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13027.png b/front/public/images/small/gregtech/gt.metaitem.01/13027.png deleted file mode 100644 index 9691943688..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13028.png b/front/public/images/small/gregtech/gt.metaitem.01/13028.png deleted file mode 100644 index a20c7573ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13029.png b/front/public/images/small/gregtech/gt.metaitem.01/13029.png deleted file mode 100644 index 92d5fba589..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13030.png b/front/public/images/small/gregtech/gt.metaitem.01/13030.png deleted file mode 100644 index 9a6ce68eef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13031.png b/front/public/images/small/gregtech/gt.metaitem.01/13031.png deleted file mode 100644 index 45e27debf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13032.png b/front/public/images/small/gregtech/gt.metaitem.01/13032.png deleted file mode 100644 index 012f5c9c6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13033.png b/front/public/images/small/gregtech/gt.metaitem.01/13033.png deleted file mode 100644 index 0b2a07974d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13034.png b/front/public/images/small/gregtech/gt.metaitem.01/13034.png deleted file mode 100644 index e9e87d347e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13035.png b/front/public/images/small/gregtech/gt.metaitem.01/13035.png deleted file mode 100644 index f71c6280b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13036.png b/front/public/images/small/gregtech/gt.metaitem.01/13036.png deleted file mode 100644 index b775d34ba5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13037.png b/front/public/images/small/gregtech/gt.metaitem.01/13037.png deleted file mode 100644 index 744941bffc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13039.png b/front/public/images/small/gregtech/gt.metaitem.01/13039.png deleted file mode 100644 index 07a2873626..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13043.png b/front/public/images/small/gregtech/gt.metaitem.01/13043.png deleted file mode 100644 index 62f362a4e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13045.png b/front/public/images/small/gregtech/gt.metaitem.01/13045.png deleted file mode 100644 index 0d286ed00f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13047.png b/front/public/images/small/gregtech/gt.metaitem.01/13047.png deleted file mode 100644 index 05ea4e511b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13048.png b/front/public/images/small/gregtech/gt.metaitem.01/13048.png deleted file mode 100644 index 69fbb9d699..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13052.png b/front/public/images/small/gregtech/gt.metaitem.01/13052.png deleted file mode 100644 index 511019a875..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13054.png b/front/public/images/small/gregtech/gt.metaitem.01/13054.png deleted file mode 100644 index 744941bffc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13056.png b/front/public/images/small/gregtech/gt.metaitem.01/13056.png deleted file mode 100644 index b475f54abe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13057.png b/front/public/images/small/gregtech/gt.metaitem.01/13057.png deleted file mode 100644 index 21f2a08bd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13058.png b/front/public/images/small/gregtech/gt.metaitem.01/13058.png deleted file mode 100644 index d7d9085bfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13059.png b/front/public/images/small/gregtech/gt.metaitem.01/13059.png deleted file mode 100644 index b2639869af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13062.png b/front/public/images/small/gregtech/gt.metaitem.01/13062.png deleted file mode 100644 index 4b6a275fb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13063.png b/front/public/images/small/gregtech/gt.metaitem.01/13063.png deleted file mode 100644 index f9d8c0b50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13064.png b/front/public/images/small/gregtech/gt.metaitem.01/13064.png deleted file mode 100644 index 40d5a0b774..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13065.png b/front/public/images/small/gregtech/gt.metaitem.01/13065.png deleted file mode 100644 index 5af7d2a46f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13066.png b/front/public/images/small/gregtech/gt.metaitem.01/13066.png deleted file mode 100644 index 648daf2941..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13067.png b/front/public/images/small/gregtech/gt.metaitem.01/13067.png deleted file mode 100644 index 6325e63ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13068.png b/front/public/images/small/gregtech/gt.metaitem.01/13068.png deleted file mode 100644 index 2dbcbffa2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13069.png b/front/public/images/small/gregtech/gt.metaitem.01/13069.png deleted file mode 100644 index ec32a14f03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13070.png b/front/public/images/small/gregtech/gt.metaitem.01/13070.png deleted file mode 100644 index 26c217298d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13071.png b/front/public/images/small/gregtech/gt.metaitem.01/13071.png deleted file mode 100644 index e32c72f898..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13072.png b/front/public/images/small/gregtech/gt.metaitem.01/13072.png deleted file mode 100644 index f9d8c0b50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13073.png b/front/public/images/small/gregtech/gt.metaitem.01/13073.png deleted file mode 100644 index 03ecfff7b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13074.png b/front/public/images/small/gregtech/gt.metaitem.01/13074.png deleted file mode 100644 index 49b241522a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13075.png b/front/public/images/small/gregtech/gt.metaitem.01/13075.png deleted file mode 100644 index 34866075cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13076.png b/front/public/images/small/gregtech/gt.metaitem.01/13076.png deleted file mode 100644 index bf48251771..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13077.png b/front/public/images/small/gregtech/gt.metaitem.01/13077.png deleted file mode 100644 index 58953e1678..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13078.png b/front/public/images/small/gregtech/gt.metaitem.01/13078.png deleted file mode 100644 index 7d516fb051..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13080.png b/front/public/images/small/gregtech/gt.metaitem.01/13080.png deleted file mode 100644 index 7bcc8a574e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13081.png b/front/public/images/small/gregtech/gt.metaitem.01/13081.png deleted file mode 100644 index 92d5fba589..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13083.png b/front/public/images/small/gregtech/gt.metaitem.01/13083.png deleted file mode 100644 index 1b3ad66f9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13084.png b/front/public/images/small/gregtech/gt.metaitem.01/13084.png deleted file mode 100644 index c3a141dc4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13085.png b/front/public/images/small/gregtech/gt.metaitem.01/13085.png deleted file mode 100644 index 6d8fd47096..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13086.png b/front/public/images/small/gregtech/gt.metaitem.01/13086.png deleted file mode 100644 index 6ac171a663..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13089.png b/front/public/images/small/gregtech/gt.metaitem.01/13089.png deleted file mode 100644 index 37d48907eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13090.png b/front/public/images/small/gregtech/gt.metaitem.01/13090.png deleted file mode 100644 index 72f1c73fc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13096.png b/front/public/images/small/gregtech/gt.metaitem.01/13096.png deleted file mode 100644 index 67995a5f51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13097.png b/front/public/images/small/gregtech/gt.metaitem.01/13097.png deleted file mode 100644 index 6b79a43729..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13098.png b/front/public/images/small/gregtech/gt.metaitem.01/13098.png deleted file mode 100644 index 56f45f7910..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13100.png b/front/public/images/small/gregtech/gt.metaitem.01/13100.png deleted file mode 100644 index 2279efeec6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13101.png b/front/public/images/small/gregtech/gt.metaitem.01/13101.png deleted file mode 100644 index d7f90896cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13103.png b/front/public/images/small/gregtech/gt.metaitem.01/13103.png deleted file mode 100644 index 012f5c9c6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13111.png b/front/public/images/small/gregtech/gt.metaitem.01/13111.png deleted file mode 100644 index 0cad0be1dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13112.png b/front/public/images/small/gregtech/gt.metaitem.01/13112.png deleted file mode 100644 index 2e81fa76bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13129.png b/front/public/images/small/gregtech/gt.metaitem.01/13129.png deleted file mode 100644 index 45e27debf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13131.png b/front/public/images/small/gregtech/gt.metaitem.01/13131.png deleted file mode 100644 index 7abe317052..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13134.png b/front/public/images/small/gregtech/gt.metaitem.01/13134.png deleted file mode 100644 index 35a0121452..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13139.png b/front/public/images/small/gregtech/gt.metaitem.01/13139.png deleted file mode 100644 index b4c732c88e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13141.png b/front/public/images/small/gregtech/gt.metaitem.01/13141.png deleted file mode 100644 index e76d532c2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13143.png b/front/public/images/small/gregtech/gt.metaitem.01/13143.png deleted file mode 100644 index e76ad83830..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13201.png b/front/public/images/small/gregtech/gt.metaitem.01/13201.png deleted file mode 100644 index 81d03f3500..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13202.png b/front/public/images/small/gregtech/gt.metaitem.01/13202.png deleted file mode 100644 index 9be18b0142..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13203.png b/front/public/images/small/gregtech/gt.metaitem.01/13203.png deleted file mode 100644 index d1cadd8f45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13205.png b/front/public/images/small/gregtech/gt.metaitem.01/13205.png deleted file mode 100644 index 89f7cb28b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13300.png b/front/public/images/small/gregtech/gt.metaitem.01/13300.png deleted file mode 100644 index 00ff976f33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13301.png b/front/public/images/small/gregtech/gt.metaitem.01/13301.png deleted file mode 100644 index 94e2f77e99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13302.png b/front/public/images/small/gregtech/gt.metaitem.01/13302.png deleted file mode 100644 index 8fdfd302df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13303.png b/front/public/images/small/gregtech/gt.metaitem.01/13303.png deleted file mode 100644 index dcf278af89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13304.png b/front/public/images/small/gregtech/gt.metaitem.01/13304.png deleted file mode 100644 index bc13a48ada..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13305.png b/front/public/images/small/gregtech/gt.metaitem.01/13305.png deleted file mode 100644 index 511019a875..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13306.png b/front/public/images/small/gregtech/gt.metaitem.01/13306.png deleted file mode 100644 index b3561d7ddd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13307.png b/front/public/images/small/gregtech/gt.metaitem.01/13307.png deleted file mode 100644 index bc13a48ada..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13308.png b/front/public/images/small/gregtech/gt.metaitem.01/13308.png deleted file mode 100644 index 01d605ba80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13309.png b/front/public/images/small/gregtech/gt.metaitem.01/13309.png deleted file mode 100644 index f0bb0b2dc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13310.png b/front/public/images/small/gregtech/gt.metaitem.01/13310.png deleted file mode 100644 index 8c6924819c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13311.png b/front/public/images/small/gregtech/gt.metaitem.01/13311.png deleted file mode 100644 index 6cc6704984..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13312.png b/front/public/images/small/gregtech/gt.metaitem.01/13312.png deleted file mode 100644 index ffeed4bb62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13313.png b/front/public/images/small/gregtech/gt.metaitem.01/13313.png deleted file mode 100644 index a145599b7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13314.png b/front/public/images/small/gregtech/gt.metaitem.01/13314.png deleted file mode 100644 index 8f2ddbe67e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13315.png b/front/public/images/small/gregtech/gt.metaitem.01/13315.png deleted file mode 100644 index ea1247db10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13316.png b/front/public/images/small/gregtech/gt.metaitem.01/13316.png deleted file mode 100644 index 7b57c79b6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13317.png b/front/public/images/small/gregtech/gt.metaitem.01/13317.png deleted file mode 100644 index fc8bc9f3ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13318.png b/front/public/images/small/gregtech/gt.metaitem.01/13318.png deleted file mode 100644 index 91393715d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13319.png b/front/public/images/small/gregtech/gt.metaitem.01/13319.png deleted file mode 100644 index f9d8c0b50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13320.png b/front/public/images/small/gregtech/gt.metaitem.01/13320.png deleted file mode 100644 index a66b1973d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13321.png b/front/public/images/small/gregtech/gt.metaitem.01/13321.png deleted file mode 100644 index 84345c45cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13323.png b/front/public/images/small/gregtech/gt.metaitem.01/13323.png deleted file mode 100644 index 6a1588e443..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13324.png b/front/public/images/small/gregtech/gt.metaitem.01/13324.png deleted file mode 100644 index 92d5fba589..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13325.png b/front/public/images/small/gregtech/gt.metaitem.01/13325.png deleted file mode 100644 index 48d3a0326b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13326.png b/front/public/images/small/gregtech/gt.metaitem.01/13326.png deleted file mode 100644 index b23c78cd00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13327.png b/front/public/images/small/gregtech/gt.metaitem.01/13327.png deleted file mode 100644 index d77583cd2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13328.png b/front/public/images/small/gregtech/gt.metaitem.01/13328.png deleted file mode 100644 index f9d8c0b50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13329.png b/front/public/images/small/gregtech/gt.metaitem.01/13329.png deleted file mode 100644 index 55c0dd14bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13330.png b/front/public/images/small/gregtech/gt.metaitem.01/13330.png deleted file mode 100644 index f6689f6aa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13331.png b/front/public/images/small/gregtech/gt.metaitem.01/13331.png deleted file mode 100644 index 703c7bd85e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13333.png b/front/public/images/small/gregtech/gt.metaitem.01/13333.png deleted file mode 100644 index a4f9a67d8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13334.png b/front/public/images/small/gregtech/gt.metaitem.01/13334.png deleted file mode 100644 index 6325e63ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13335.png b/front/public/images/small/gregtech/gt.metaitem.01/13335.png deleted file mode 100644 index 88ba5cf747..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13336.png b/front/public/images/small/gregtech/gt.metaitem.01/13336.png deleted file mode 100644 index f4c7bdfa0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13337.png b/front/public/images/small/gregtech/gt.metaitem.01/13337.png deleted file mode 100644 index d795e6ae07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13338.png b/front/public/images/small/gregtech/gt.metaitem.01/13338.png deleted file mode 100644 index f67df827d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13339.png b/front/public/images/small/gregtech/gt.metaitem.01/13339.png deleted file mode 100644 index 12127074ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13340.png b/front/public/images/small/gregtech/gt.metaitem.01/13340.png deleted file mode 100644 index bf2146aee2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13341.png b/front/public/images/small/gregtech/gt.metaitem.01/13341.png deleted file mode 100644 index f7a426d3cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13342.png b/front/public/images/small/gregtech/gt.metaitem.01/13342.png deleted file mode 100644 index aca3e1e4db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13343.png b/front/public/images/small/gregtech/gt.metaitem.01/13343.png deleted file mode 100644 index bba524e51e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13344.png b/front/public/images/small/gregtech/gt.metaitem.01/13344.png deleted file mode 100644 index 965d3d6a2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13345.png b/front/public/images/small/gregtech/gt.metaitem.01/13345.png deleted file mode 100644 index 783b221873..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13346.png b/front/public/images/small/gregtech/gt.metaitem.01/13346.png deleted file mode 100644 index 54bf9092db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13348.png b/front/public/images/small/gregtech/gt.metaitem.01/13348.png deleted file mode 100644 index b0f398c84d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13349.png b/front/public/images/small/gregtech/gt.metaitem.01/13349.png deleted file mode 100644 index 2120c32836..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13350.png b/front/public/images/small/gregtech/gt.metaitem.01/13350.png deleted file mode 100644 index 321ff59ed2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13351.png b/front/public/images/small/gregtech/gt.metaitem.01/13351.png deleted file mode 100644 index dd6bdeaabe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13352.png b/front/public/images/small/gregtech/gt.metaitem.01/13352.png deleted file mode 100644 index a8eaa3e682..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13353.png b/front/public/images/small/gregtech/gt.metaitem.01/13353.png deleted file mode 100644 index 03dec1c774..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13354.png b/front/public/images/small/gregtech/gt.metaitem.01/13354.png deleted file mode 100644 index eb7f67ab7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13355.png b/front/public/images/small/gregtech/gt.metaitem.01/13355.png deleted file mode 100644 index 6fe1a8e948..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13356.png b/front/public/images/small/gregtech/gt.metaitem.01/13356.png deleted file mode 100644 index 3924f2a79e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13357.png b/front/public/images/small/gregtech/gt.metaitem.01/13357.png deleted file mode 100644 index e02558e73d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13358.png b/front/public/images/small/gregtech/gt.metaitem.01/13358.png deleted file mode 100644 index 55fb3d7073..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13359.png b/front/public/images/small/gregtech/gt.metaitem.01/13359.png deleted file mode 100644 index 12ef63529e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13360.png b/front/public/images/small/gregtech/gt.metaitem.01/13360.png deleted file mode 100644 index fddb22d84d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13361.png b/front/public/images/small/gregtech/gt.metaitem.01/13361.png deleted file mode 100644 index ba6b155783..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13362.png b/front/public/images/small/gregtech/gt.metaitem.01/13362.png deleted file mode 100644 index 0ab2b2f4cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13363.png b/front/public/images/small/gregtech/gt.metaitem.01/13363.png deleted file mode 100644 index 012f5c9c6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13364.png b/front/public/images/small/gregtech/gt.metaitem.01/13364.png deleted file mode 100644 index 9b713a2c15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13365.png b/front/public/images/small/gregtech/gt.metaitem.01/13365.png deleted file mode 100644 index 42afdf2722..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13366.png b/front/public/images/small/gregtech/gt.metaitem.01/13366.png deleted file mode 100644 index a71a88f6df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13367.png b/front/public/images/small/gregtech/gt.metaitem.01/13367.png deleted file mode 100644 index 03bc70ba0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13368.png b/front/public/images/small/gregtech/gt.metaitem.01/13368.png deleted file mode 100644 index 7d8eac75bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13369.png b/front/public/images/small/gregtech/gt.metaitem.01/13369.png deleted file mode 100644 index e47343ed8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13370.png b/front/public/images/small/gregtech/gt.metaitem.01/13370.png deleted file mode 100644 index b958e9fc28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13371.png b/front/public/images/small/gregtech/gt.metaitem.01/13371.png deleted file mode 100644 index 661e997303..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13372.png b/front/public/images/small/gregtech/gt.metaitem.01/13372.png deleted file mode 100644 index 9b5ac912b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13373.png b/front/public/images/small/gregtech/gt.metaitem.01/13373.png deleted file mode 100644 index 4f80acac2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13374.png b/front/public/images/small/gregtech/gt.metaitem.01/13374.png deleted file mode 100644 index 38dc3ad054..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13378.png b/front/public/images/small/gregtech/gt.metaitem.01/13378.png deleted file mode 100644 index bfdf3f4cdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13379.png b/front/public/images/small/gregtech/gt.metaitem.01/13379.png deleted file mode 100644 index 93f47a121b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13380.png b/front/public/images/small/gregtech/gt.metaitem.01/13380.png deleted file mode 100644 index d9ef9fda80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13381.png b/front/public/images/small/gregtech/gt.metaitem.01/13381.png deleted file mode 100644 index c4292be897..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13382.png b/front/public/images/small/gregtech/gt.metaitem.01/13382.png deleted file mode 100644 index 3b61bdf222..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13383.png b/front/public/images/small/gregtech/gt.metaitem.01/13383.png deleted file mode 100644 index f15b4fa979..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13384.png b/front/public/images/small/gregtech/gt.metaitem.01/13384.png deleted file mode 100644 index 36931a9d98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13385.png b/front/public/images/small/gregtech/gt.metaitem.01/13385.png deleted file mode 100644 index 320663b795..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13386.png b/front/public/images/small/gregtech/gt.metaitem.01/13386.png deleted file mode 100644 index 888d2adfe9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13387.png b/front/public/images/small/gregtech/gt.metaitem.01/13387.png deleted file mode 100644 index be1365ac34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13388.png b/front/public/images/small/gregtech/gt.metaitem.01/13388.png deleted file mode 100644 index dda794633d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13389.png b/front/public/images/small/gregtech/gt.metaitem.01/13389.png deleted file mode 100644 index 0febf1aca8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13390.png b/front/public/images/small/gregtech/gt.metaitem.01/13390.png deleted file mode 100644 index 5f03eb8923..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13391.png b/front/public/images/small/gregtech/gt.metaitem.01/13391.png deleted file mode 100644 index cf544dfc17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13392.png b/front/public/images/small/gregtech/gt.metaitem.01/13392.png deleted file mode 100644 index 4210ef73b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13393.png b/front/public/images/small/gregtech/gt.metaitem.01/13393.png deleted file mode 100644 index 0ce02d0e81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13394.png b/front/public/images/small/gregtech/gt.metaitem.01/13394.png deleted file mode 100644 index f9d8c0b50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13395.png b/front/public/images/small/gregtech/gt.metaitem.01/13395.png deleted file mode 100644 index dda794633d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13397.png b/front/public/images/small/gregtech/gt.metaitem.01/13397.png deleted file mode 100644 index 07e308eb8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13398.png b/front/public/images/small/gregtech/gt.metaitem.01/13398.png deleted file mode 100644 index 916fb8a4d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13399.png b/front/public/images/small/gregtech/gt.metaitem.01/13399.png deleted file mode 100644 index 01c6279044..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13400.png b/front/public/images/small/gregtech/gt.metaitem.01/13400.png deleted file mode 100644 index 985ff4ab88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13401.png b/front/public/images/small/gregtech/gt.metaitem.01/13401.png deleted file mode 100644 index c6addbd841..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13402.png b/front/public/images/small/gregtech/gt.metaitem.01/13402.png deleted file mode 100644 index 35eddfba66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13403.png b/front/public/images/small/gregtech/gt.metaitem.01/13403.png deleted file mode 100644 index c39257832d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13404.png b/front/public/images/small/gregtech/gt.metaitem.01/13404.png deleted file mode 100644 index dc333a3c13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13405.png b/front/public/images/small/gregtech/gt.metaitem.01/13405.png deleted file mode 100644 index 622fa12194..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13406.png b/front/public/images/small/gregtech/gt.metaitem.01/13406.png deleted file mode 100644 index 7e81cb1ffc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13407.png b/front/public/images/small/gregtech/gt.metaitem.01/13407.png deleted file mode 100644 index 65cfd00b27..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13408.png b/front/public/images/small/gregtech/gt.metaitem.01/13408.png deleted file mode 100644 index 7138cbf0b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13470.png b/front/public/images/small/gregtech/gt.metaitem.01/13470.png deleted file mode 100644 index e22a8c516f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13471.png b/front/public/images/small/gregtech/gt.metaitem.01/13471.png deleted file mode 100644 index 21f2a08bd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13472.png b/front/public/images/small/gregtech/gt.metaitem.01/13472.png deleted file mode 100644 index dda794633d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13473.png b/front/public/images/small/gregtech/gt.metaitem.01/13473.png deleted file mode 100644 index a64f187bc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13485.png b/front/public/images/small/gregtech/gt.metaitem.01/13485.png deleted file mode 100644 index 72320a91fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13488.png b/front/public/images/small/gregtech/gt.metaitem.01/13488.png deleted file mode 100644 index 04586854c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13489.png b/front/public/images/small/gregtech/gt.metaitem.01/13489.png deleted file mode 100644 index 3852e519c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13521.png b/front/public/images/small/gregtech/gt.metaitem.01/13521.png deleted file mode 100644 index 91393715d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13529.png b/front/public/images/small/gregtech/gt.metaitem.01/13529.png deleted file mode 100644 index 9233f6cc19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13576.png b/front/public/images/small/gregtech/gt.metaitem.01/13576.png deleted file mode 100644 index b4c9b13b0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13581.png b/front/public/images/small/gregtech/gt.metaitem.01/13581.png deleted file mode 100644 index 1a57857ef8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13582.png b/front/public/images/small/gregtech/gt.metaitem.01/13582.png deleted file mode 100644 index b0b502acce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13585.png b/front/public/images/small/gregtech/gt.metaitem.01/13585.png deleted file mode 100644 index c96b0258f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13586.png b/front/public/images/small/gregtech/gt.metaitem.01/13586.png deleted file mode 100644 index 89a5273c0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13588.png b/front/public/images/small/gregtech/gt.metaitem.01/13588.png deleted file mode 100644 index 04c1010400..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13599.png b/front/public/images/small/gregtech/gt.metaitem.01/13599.png deleted file mode 100644 index dc22b4110b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13610.png b/front/public/images/small/gregtech/gt.metaitem.01/13610.png deleted file mode 100644 index bf4cab83ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13613.png b/front/public/images/small/gregtech/gt.metaitem.01/13613.png deleted file mode 100644 index 815c12e2f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13631.png b/front/public/images/small/gregtech/gt.metaitem.01/13631.png deleted file mode 100644 index 775ef546af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13635.png b/front/public/images/small/gregtech/gt.metaitem.01/13635.png deleted file mode 100644 index e05c530d82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13636.png b/front/public/images/small/gregtech/gt.metaitem.01/13636.png deleted file mode 100644 index 5eb498f623..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13649.png b/front/public/images/small/gregtech/gt.metaitem.01/13649.png deleted file mode 100644 index 5e957e571f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13765.png b/front/public/images/small/gregtech/gt.metaitem.01/13765.png deleted file mode 100644 index 54f16c3d34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13770.png b/front/public/images/small/gregtech/gt.metaitem.01/13770.png deleted file mode 100644 index d266482ac0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13772.png b/front/public/images/small/gregtech/gt.metaitem.01/13772.png deleted file mode 100644 index 439786c39e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13829.png b/front/public/images/small/gregtech/gt.metaitem.01/13829.png deleted file mode 100644 index 726878dcba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13856.png b/front/public/images/small/gregtech/gt.metaitem.01/13856.png deleted file mode 100644 index 9fb6de6e16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13868.png b/front/public/images/small/gregtech/gt.metaitem.01/13868.png deleted file mode 100644 index acf27f3705..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13874.png b/front/public/images/small/gregtech/gt.metaitem.01/13874.png deleted file mode 100644 index 78f69047c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13880.png b/front/public/images/small/gregtech/gt.metaitem.01/13880.png deleted file mode 100644 index 89a5273c0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13884.png b/front/public/images/small/gregtech/gt.metaitem.01/13884.png deleted file mode 100644 index 30222c8d88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13912.png b/front/public/images/small/gregtech/gt.metaitem.01/13912.png deleted file mode 100644 index c5564d13d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13913.png b/front/public/images/small/gregtech/gt.metaitem.01/13913.png deleted file mode 100644 index 4013d7dd3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13951.png b/front/public/images/small/gregtech/gt.metaitem.01/13951.png deleted file mode 100644 index 94900a7ee8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13952.png b/front/public/images/small/gregtech/gt.metaitem.01/13952.png deleted file mode 100644 index 514f70a33f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13956.png b/front/public/images/small/gregtech/gt.metaitem.01/13956.png deleted file mode 100644 index eee01a983a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13966.png b/front/public/images/small/gregtech/gt.metaitem.01/13966.png deleted file mode 100644 index 6e8095531e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13970.png b/front/public/images/small/gregtech/gt.metaitem.01/13970.png deleted file mode 100644 index 88c59b6c04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13974.png b/front/public/images/small/gregtech/gt.metaitem.01/13974.png deleted file mode 100644 index f6ce74c8ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13975.png b/front/public/images/small/gregtech/gt.metaitem.01/13975.png deleted file mode 100644 index 347b9850db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13976.png b/front/public/images/small/gregtech/gt.metaitem.01/13976.png deleted file mode 100644 index 2fe9ca10b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13977.png b/front/public/images/small/gregtech/gt.metaitem.01/13977.png deleted file mode 100644 index aec0a656cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13978.png b/front/public/images/small/gregtech/gt.metaitem.01/13978.png deleted file mode 100644 index 5c009fe1a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13979.png b/front/public/images/small/gregtech/gt.metaitem.01/13979.png deleted file mode 100644 index 58f3a36cf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13980.png b/front/public/images/small/gregtech/gt.metaitem.01/13980.png deleted file mode 100644 index bb607f1f37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13981.png b/front/public/images/small/gregtech/gt.metaitem.01/13981.png deleted file mode 100644 index b7b6962158..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13982.png b/front/public/images/small/gregtech/gt.metaitem.01/13982.png deleted file mode 100644 index a6a263bf05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13984.png b/front/public/images/small/gregtech/gt.metaitem.01/13984.png deleted file mode 100644 index f9d8c0b50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13985.png b/front/public/images/small/gregtech/gt.metaitem.01/13985.png deleted file mode 100644 index ca63660c0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13986.png b/front/public/images/small/gregtech/gt.metaitem.01/13986.png deleted file mode 100644 index 1b4e55c572..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13987.png b/front/public/images/small/gregtech/gt.metaitem.01/13987.png deleted file mode 100644 index 859f706d9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13988.png b/front/public/images/small/gregtech/gt.metaitem.01/13988.png deleted file mode 100644 index 257f9d6d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13989.png b/front/public/images/small/gregtech/gt.metaitem.01/13989.png deleted file mode 100644 index d3873ae83f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13990.png b/front/public/images/small/gregtech/gt.metaitem.01/13990.png deleted file mode 100644 index 0b815af368..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13991.png b/front/public/images/small/gregtech/gt.metaitem.01/13991.png deleted file mode 100644 index 017df6b65d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/13992.png b/front/public/images/small/gregtech/gt.metaitem.01/13992.png deleted file mode 100644 index 75ba68382a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/13992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14006.png b/front/public/images/small/gregtech/gt.metaitem.01/14006.png deleted file mode 100644 index 212fdcc4e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14008.png b/front/public/images/small/gregtech/gt.metaitem.01/14008.png deleted file mode 100644 index 6746f8ffb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14010.png b/front/public/images/small/gregtech/gt.metaitem.01/14010.png deleted file mode 100644 index 6532e49cf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14018.png b/front/public/images/small/gregtech/gt.metaitem.01/14018.png deleted file mode 100644 index 00f9800be1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14019.png b/front/public/images/small/gregtech/gt.metaitem.01/14019.png deleted file mode 100644 index e556ec1a9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14020.png b/front/public/images/small/gregtech/gt.metaitem.01/14020.png deleted file mode 100644 index b0b1e7eff5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14025.png b/front/public/images/small/gregtech/gt.metaitem.01/14025.png deleted file mode 100644 index 7af0c920ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14027.png b/front/public/images/small/gregtech/gt.metaitem.01/14027.png deleted file mode 100644 index a982a82bcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14028.png b/front/public/images/small/gregtech/gt.metaitem.01/14028.png deleted file mode 100644 index a11ea779cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14029.png b/front/public/images/small/gregtech/gt.metaitem.01/14029.png deleted file mode 100644 index abece13211..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14030.png b/front/public/images/small/gregtech/gt.metaitem.01/14030.png deleted file mode 100644 index 8f3fcf6751..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14031.png b/front/public/images/small/gregtech/gt.metaitem.01/14031.png deleted file mode 100644 index 56e38e9413..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14032.png b/front/public/images/small/gregtech/gt.metaitem.01/14032.png deleted file mode 100644 index da6d737048..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14033.png b/front/public/images/small/gregtech/gt.metaitem.01/14033.png deleted file mode 100644 index a187657839..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14034.png b/front/public/images/small/gregtech/gt.metaitem.01/14034.png deleted file mode 100644 index 37407bbc58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14035.png b/front/public/images/small/gregtech/gt.metaitem.01/14035.png deleted file mode 100644 index 616a902b65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14036.png b/front/public/images/small/gregtech/gt.metaitem.01/14036.png deleted file mode 100644 index e519a6ec1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14037.png b/front/public/images/small/gregtech/gt.metaitem.01/14037.png deleted file mode 100644 index 5d9ad183c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14039.png b/front/public/images/small/gregtech/gt.metaitem.01/14039.png deleted file mode 100644 index 9e0d79f448..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14043.png b/front/public/images/small/gregtech/gt.metaitem.01/14043.png deleted file mode 100644 index 1d4ecea4a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14045.png b/front/public/images/small/gregtech/gt.metaitem.01/14045.png deleted file mode 100644 index f4819612ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14047.png b/front/public/images/small/gregtech/gt.metaitem.01/14047.png deleted file mode 100644 index 7ed28cbaab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14048.png b/front/public/images/small/gregtech/gt.metaitem.01/14048.png deleted file mode 100644 index 5c9598ad4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14052.png b/front/public/images/small/gregtech/gt.metaitem.01/14052.png deleted file mode 100644 index 37844e33d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14054.png b/front/public/images/small/gregtech/gt.metaitem.01/14054.png deleted file mode 100644 index 5d9ad183c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14056.png b/front/public/images/small/gregtech/gt.metaitem.01/14056.png deleted file mode 100644 index 0787f1dc29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14057.png b/front/public/images/small/gregtech/gt.metaitem.01/14057.png deleted file mode 100644 index 221eb487d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14058.png b/front/public/images/small/gregtech/gt.metaitem.01/14058.png deleted file mode 100644 index d3742f98da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14059.png b/front/public/images/small/gregtech/gt.metaitem.01/14059.png deleted file mode 100644 index 9d653b25a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14062.png b/front/public/images/small/gregtech/gt.metaitem.01/14062.png deleted file mode 100644 index 663a9ea1c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14063.png b/front/public/images/small/gregtech/gt.metaitem.01/14063.png deleted file mode 100644 index ed925c7d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14064.png b/front/public/images/small/gregtech/gt.metaitem.01/14064.png deleted file mode 100644 index 60c413718a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14065.png b/front/public/images/small/gregtech/gt.metaitem.01/14065.png deleted file mode 100644 index 8f6e1ffd5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14066.png b/front/public/images/small/gregtech/gt.metaitem.01/14066.png deleted file mode 100644 index 6af68574f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14067.png b/front/public/images/small/gregtech/gt.metaitem.01/14067.png deleted file mode 100644 index 83a317bd13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14068.png b/front/public/images/small/gregtech/gt.metaitem.01/14068.png deleted file mode 100644 index 986e3c506a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14069.png b/front/public/images/small/gregtech/gt.metaitem.01/14069.png deleted file mode 100644 index 4687c74182..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14070.png b/front/public/images/small/gregtech/gt.metaitem.01/14070.png deleted file mode 100644 index 398a0f32e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14071.png b/front/public/images/small/gregtech/gt.metaitem.01/14071.png deleted file mode 100644 index 68c16f5945..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14072.png b/front/public/images/small/gregtech/gt.metaitem.01/14072.png deleted file mode 100644 index ed925c7d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14073.png b/front/public/images/small/gregtech/gt.metaitem.01/14073.png deleted file mode 100644 index 58dfd6049b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14074.png b/front/public/images/small/gregtech/gt.metaitem.01/14074.png deleted file mode 100644 index 164635cf99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14075.png b/front/public/images/small/gregtech/gt.metaitem.01/14075.png deleted file mode 100644 index f958f00c5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14076.png b/front/public/images/small/gregtech/gt.metaitem.01/14076.png deleted file mode 100644 index 4b927afd02..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14077.png b/front/public/images/small/gregtech/gt.metaitem.01/14077.png deleted file mode 100644 index 361839d286..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14078.png b/front/public/images/small/gregtech/gt.metaitem.01/14078.png deleted file mode 100644 index 99e8f0df54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14080.png b/front/public/images/small/gregtech/gt.metaitem.01/14080.png deleted file mode 100644 index b9b635a231..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14081.png b/front/public/images/small/gregtech/gt.metaitem.01/14081.png deleted file mode 100644 index abece13211..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14083.png b/front/public/images/small/gregtech/gt.metaitem.01/14083.png deleted file mode 100644 index 0d6676a786..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14084.png b/front/public/images/small/gregtech/gt.metaitem.01/14084.png deleted file mode 100644 index c91437ee84..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14085.png b/front/public/images/small/gregtech/gt.metaitem.01/14085.png deleted file mode 100644 index 60ead5fd33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14086.png b/front/public/images/small/gregtech/gt.metaitem.01/14086.png deleted file mode 100644 index c54d3e2966..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14089.png b/front/public/images/small/gregtech/gt.metaitem.01/14089.png deleted file mode 100644 index 89ef93617e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14090.png b/front/public/images/small/gregtech/gt.metaitem.01/14090.png deleted file mode 100644 index 8bd0ee4aab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14096.png b/front/public/images/small/gregtech/gt.metaitem.01/14096.png deleted file mode 100644 index 79914b33c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14097.png b/front/public/images/small/gregtech/gt.metaitem.01/14097.png deleted file mode 100644 index 12027c86ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14098.png b/front/public/images/small/gregtech/gt.metaitem.01/14098.png deleted file mode 100644 index c6328f1328..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14100.png b/front/public/images/small/gregtech/gt.metaitem.01/14100.png deleted file mode 100644 index cf2e08faac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14101.png b/front/public/images/small/gregtech/gt.metaitem.01/14101.png deleted file mode 100644 index 602e0e20af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14103.png b/front/public/images/small/gregtech/gt.metaitem.01/14103.png deleted file mode 100644 index da6d737048..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14111.png b/front/public/images/small/gregtech/gt.metaitem.01/14111.png deleted file mode 100644 index 980ac26f68..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14112.png b/front/public/images/small/gregtech/gt.metaitem.01/14112.png deleted file mode 100644 index fb755ba260..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14129.png b/front/public/images/small/gregtech/gt.metaitem.01/14129.png deleted file mode 100644 index 56e38e9413..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14131.png b/front/public/images/small/gregtech/gt.metaitem.01/14131.png deleted file mode 100644 index 4020b642f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14134.png b/front/public/images/small/gregtech/gt.metaitem.01/14134.png deleted file mode 100644 index 967b637059..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14139.png b/front/public/images/small/gregtech/gt.metaitem.01/14139.png deleted file mode 100644 index ae6e672b6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14141.png b/front/public/images/small/gregtech/gt.metaitem.01/14141.png deleted file mode 100644 index decd4d746e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14143.png b/front/public/images/small/gregtech/gt.metaitem.01/14143.png deleted file mode 100644 index 7ec0513c64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14201.png b/front/public/images/small/gregtech/gt.metaitem.01/14201.png deleted file mode 100644 index 642f1afd92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14202.png b/front/public/images/small/gregtech/gt.metaitem.01/14202.png deleted file mode 100644 index 5533e3c984..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14203.png b/front/public/images/small/gregtech/gt.metaitem.01/14203.png deleted file mode 100644 index 205137096f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14205.png b/front/public/images/small/gregtech/gt.metaitem.01/14205.png deleted file mode 100644 index 492db1d6c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14300.png b/front/public/images/small/gregtech/gt.metaitem.01/14300.png deleted file mode 100644 index 79dec222a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14301.png b/front/public/images/small/gregtech/gt.metaitem.01/14301.png deleted file mode 100644 index 834eed4169..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14302.png b/front/public/images/small/gregtech/gt.metaitem.01/14302.png deleted file mode 100644 index 669df45c95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14303.png b/front/public/images/small/gregtech/gt.metaitem.01/14303.png deleted file mode 100644 index 5b236cea5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14304.png b/front/public/images/small/gregtech/gt.metaitem.01/14304.png deleted file mode 100644 index ffeeb134da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14305.png b/front/public/images/small/gregtech/gt.metaitem.01/14305.png deleted file mode 100644 index 37844e33d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14306.png b/front/public/images/small/gregtech/gt.metaitem.01/14306.png deleted file mode 100644 index 03a0c79812..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14307.png b/front/public/images/small/gregtech/gt.metaitem.01/14307.png deleted file mode 100644 index ffeeb134da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14308.png b/front/public/images/small/gregtech/gt.metaitem.01/14308.png deleted file mode 100644 index 0af7f47a55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14309.png b/front/public/images/small/gregtech/gt.metaitem.01/14309.png deleted file mode 100644 index d39b157f76..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14310.png b/front/public/images/small/gregtech/gt.metaitem.01/14310.png deleted file mode 100644 index 71f630bc2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14311.png b/front/public/images/small/gregtech/gt.metaitem.01/14311.png deleted file mode 100644 index 1a803c2d74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14312.png b/front/public/images/small/gregtech/gt.metaitem.01/14312.png deleted file mode 100644 index eb0356df66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14313.png b/front/public/images/small/gregtech/gt.metaitem.01/14313.png deleted file mode 100644 index 348fa8496c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14314.png b/front/public/images/small/gregtech/gt.metaitem.01/14314.png deleted file mode 100644 index d2ed2025ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14315.png b/front/public/images/small/gregtech/gt.metaitem.01/14315.png deleted file mode 100644 index 6c9afe589e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14316.png b/front/public/images/small/gregtech/gt.metaitem.01/14316.png deleted file mode 100644 index e629534d07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14317.png b/front/public/images/small/gregtech/gt.metaitem.01/14317.png deleted file mode 100644 index 0f88d4aaf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14318.png b/front/public/images/small/gregtech/gt.metaitem.01/14318.png deleted file mode 100644 index 7002631637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14319.png b/front/public/images/small/gregtech/gt.metaitem.01/14319.png deleted file mode 100644 index ed925c7d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14320.png b/front/public/images/small/gregtech/gt.metaitem.01/14320.png deleted file mode 100644 index 96405e07af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14321.png b/front/public/images/small/gregtech/gt.metaitem.01/14321.png deleted file mode 100644 index 194f6cb67c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14323.png b/front/public/images/small/gregtech/gt.metaitem.01/14323.png deleted file mode 100644 index 64105f0a1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14324.png b/front/public/images/small/gregtech/gt.metaitem.01/14324.png deleted file mode 100644 index abece13211..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14325.png b/front/public/images/small/gregtech/gt.metaitem.01/14325.png deleted file mode 100644 index 87d8790484..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14326.png b/front/public/images/small/gregtech/gt.metaitem.01/14326.png deleted file mode 100644 index bbe60ffc79..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14327.png b/front/public/images/small/gregtech/gt.metaitem.01/14327.png deleted file mode 100644 index 45138cc249..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14328.png b/front/public/images/small/gregtech/gt.metaitem.01/14328.png deleted file mode 100644 index ed925c7d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14329.png b/front/public/images/small/gregtech/gt.metaitem.01/14329.png deleted file mode 100644 index 97578621ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14330.png b/front/public/images/small/gregtech/gt.metaitem.01/14330.png deleted file mode 100644 index 6e630365f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14331.png b/front/public/images/small/gregtech/gt.metaitem.01/14331.png deleted file mode 100644 index eb8a169ea5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14333.png b/front/public/images/small/gregtech/gt.metaitem.01/14333.png deleted file mode 100644 index 96e968ad81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14334.png b/front/public/images/small/gregtech/gt.metaitem.01/14334.png deleted file mode 100644 index 83a317bd13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14335.png b/front/public/images/small/gregtech/gt.metaitem.01/14335.png deleted file mode 100644 index 3a37edcb49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14336.png b/front/public/images/small/gregtech/gt.metaitem.01/14336.png deleted file mode 100644 index 9758195781..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14337.png b/front/public/images/small/gregtech/gt.metaitem.01/14337.png deleted file mode 100644 index 1f7b311eb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14338.png b/front/public/images/small/gregtech/gt.metaitem.01/14338.png deleted file mode 100644 index ebcab66b0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14339.png b/front/public/images/small/gregtech/gt.metaitem.01/14339.png deleted file mode 100644 index efdbcd72f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14340.png b/front/public/images/small/gregtech/gt.metaitem.01/14340.png deleted file mode 100644 index 24fccc2101..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14341.png b/front/public/images/small/gregtech/gt.metaitem.01/14341.png deleted file mode 100644 index e1fa6c3c09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14342.png b/front/public/images/small/gregtech/gt.metaitem.01/14342.png deleted file mode 100644 index 20c2eca1b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14343.png b/front/public/images/small/gregtech/gt.metaitem.01/14343.png deleted file mode 100644 index 031877984b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14344.png b/front/public/images/small/gregtech/gt.metaitem.01/14344.png deleted file mode 100644 index 50275c6255..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14345.png b/front/public/images/small/gregtech/gt.metaitem.01/14345.png deleted file mode 100644 index 3a672847e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14346.png b/front/public/images/small/gregtech/gt.metaitem.01/14346.png deleted file mode 100644 index 025900b2bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14348.png b/front/public/images/small/gregtech/gt.metaitem.01/14348.png deleted file mode 100644 index 04facdc788..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14349.png b/front/public/images/small/gregtech/gt.metaitem.01/14349.png deleted file mode 100644 index d0b0a5cc2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14350.png b/front/public/images/small/gregtech/gt.metaitem.01/14350.png deleted file mode 100644 index 748293bc5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14351.png b/front/public/images/small/gregtech/gt.metaitem.01/14351.png deleted file mode 100644 index 0210736811..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14352.png b/front/public/images/small/gregtech/gt.metaitem.01/14352.png deleted file mode 100644 index 0e4078341f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14353.png b/front/public/images/small/gregtech/gt.metaitem.01/14353.png deleted file mode 100644 index dad8b59f15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14354.png b/front/public/images/small/gregtech/gt.metaitem.01/14354.png deleted file mode 100644 index e99aaa8c6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14355.png b/front/public/images/small/gregtech/gt.metaitem.01/14355.png deleted file mode 100644 index e07a808ae9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14356.png b/front/public/images/small/gregtech/gt.metaitem.01/14356.png deleted file mode 100644 index 88f0e7e88b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14357.png b/front/public/images/small/gregtech/gt.metaitem.01/14357.png deleted file mode 100644 index 89e60da7de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14358.png b/front/public/images/small/gregtech/gt.metaitem.01/14358.png deleted file mode 100644 index 558815f4c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14359.png b/front/public/images/small/gregtech/gt.metaitem.01/14359.png deleted file mode 100644 index dba260d958..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14360.png b/front/public/images/small/gregtech/gt.metaitem.01/14360.png deleted file mode 100644 index 4615a8946f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14361.png b/front/public/images/small/gregtech/gt.metaitem.01/14361.png deleted file mode 100644 index 8a336d39c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14362.png b/front/public/images/small/gregtech/gt.metaitem.01/14362.png deleted file mode 100644 index c332b58b2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14363.png b/front/public/images/small/gregtech/gt.metaitem.01/14363.png deleted file mode 100644 index da6d737048..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14364.png b/front/public/images/small/gregtech/gt.metaitem.01/14364.png deleted file mode 100644 index 62efaafcb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14365.png b/front/public/images/small/gregtech/gt.metaitem.01/14365.png deleted file mode 100644 index e9fe5a042d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14366.png b/front/public/images/small/gregtech/gt.metaitem.01/14366.png deleted file mode 100644 index 0e1d5017ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14367.png b/front/public/images/small/gregtech/gt.metaitem.01/14367.png deleted file mode 100644 index 1db9be295c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14368.png b/front/public/images/small/gregtech/gt.metaitem.01/14368.png deleted file mode 100644 index 32a7ef627a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14369.png b/front/public/images/small/gregtech/gt.metaitem.01/14369.png deleted file mode 100644 index 6c373c153b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14370.png b/front/public/images/small/gregtech/gt.metaitem.01/14370.png deleted file mode 100644 index 00899a415f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14371.png b/front/public/images/small/gregtech/gt.metaitem.01/14371.png deleted file mode 100644 index c9ceda6136..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14372.png b/front/public/images/small/gregtech/gt.metaitem.01/14372.png deleted file mode 100644 index b60974638b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14373.png b/front/public/images/small/gregtech/gt.metaitem.01/14373.png deleted file mode 100644 index d5ae029505..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14374.png b/front/public/images/small/gregtech/gt.metaitem.01/14374.png deleted file mode 100644 index 2bcd58403b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14378.png b/front/public/images/small/gregtech/gt.metaitem.01/14378.png deleted file mode 100644 index 566bb862ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14379.png b/front/public/images/small/gregtech/gt.metaitem.01/14379.png deleted file mode 100644 index b86da1ffda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14380.png b/front/public/images/small/gregtech/gt.metaitem.01/14380.png deleted file mode 100644 index b753d00f0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14381.png b/front/public/images/small/gregtech/gt.metaitem.01/14381.png deleted file mode 100644 index ac23a7c83f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14382.png b/front/public/images/small/gregtech/gt.metaitem.01/14382.png deleted file mode 100644 index 064cd55171..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14383.png b/front/public/images/small/gregtech/gt.metaitem.01/14383.png deleted file mode 100644 index 2dfbfc9324..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14384.png b/front/public/images/small/gregtech/gt.metaitem.01/14384.png deleted file mode 100644 index bfb5a455b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14385.png b/front/public/images/small/gregtech/gt.metaitem.01/14385.png deleted file mode 100644 index 6548147c7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14386.png b/front/public/images/small/gregtech/gt.metaitem.01/14386.png deleted file mode 100644 index bfa1db7bc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14387.png b/front/public/images/small/gregtech/gt.metaitem.01/14387.png deleted file mode 100644 index f50fbab222..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14388.png b/front/public/images/small/gregtech/gt.metaitem.01/14388.png deleted file mode 100644 index 1d1dc36724..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14389.png b/front/public/images/small/gregtech/gt.metaitem.01/14389.png deleted file mode 100644 index c1a3e3e9ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14390.png b/front/public/images/small/gregtech/gt.metaitem.01/14390.png deleted file mode 100644 index 7b5fc5c293..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14391.png b/front/public/images/small/gregtech/gt.metaitem.01/14391.png deleted file mode 100644 index 7dd072d792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14392.png b/front/public/images/small/gregtech/gt.metaitem.01/14392.png deleted file mode 100644 index 6ca7f103b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14393.png b/front/public/images/small/gregtech/gt.metaitem.01/14393.png deleted file mode 100644 index dbb3f7a6da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14394.png b/front/public/images/small/gregtech/gt.metaitem.01/14394.png deleted file mode 100644 index ed925c7d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14395.png b/front/public/images/small/gregtech/gt.metaitem.01/14395.png deleted file mode 100644 index 1d1dc36724..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14397.png b/front/public/images/small/gregtech/gt.metaitem.01/14397.png deleted file mode 100644 index 3592fc367d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14398.png b/front/public/images/small/gregtech/gt.metaitem.01/14398.png deleted file mode 100644 index 2bbd146a05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14399.png b/front/public/images/small/gregtech/gt.metaitem.01/14399.png deleted file mode 100644 index ac3d197162..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14400.png b/front/public/images/small/gregtech/gt.metaitem.01/14400.png deleted file mode 100644 index 2c3fc9ed98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14401.png b/front/public/images/small/gregtech/gt.metaitem.01/14401.png deleted file mode 100644 index f309e8630b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14402.png b/front/public/images/small/gregtech/gt.metaitem.01/14402.png deleted file mode 100644 index ee30c3f7aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14403.png b/front/public/images/small/gregtech/gt.metaitem.01/14403.png deleted file mode 100644 index 9b022652a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14404.png b/front/public/images/small/gregtech/gt.metaitem.01/14404.png deleted file mode 100644 index fc24c7e51c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14405.png b/front/public/images/small/gregtech/gt.metaitem.01/14405.png deleted file mode 100644 index a7e93da06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14406.png b/front/public/images/small/gregtech/gt.metaitem.01/14406.png deleted file mode 100644 index d173827c41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14407.png b/front/public/images/small/gregtech/gt.metaitem.01/14407.png deleted file mode 100644 index a95e5ae8f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14408.png b/front/public/images/small/gregtech/gt.metaitem.01/14408.png deleted file mode 100644 index 2a541756ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14470.png b/front/public/images/small/gregtech/gt.metaitem.01/14470.png deleted file mode 100644 index 8f34dcfc21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14471.png b/front/public/images/small/gregtech/gt.metaitem.01/14471.png deleted file mode 100644 index 221eb487d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14472.png b/front/public/images/small/gregtech/gt.metaitem.01/14472.png deleted file mode 100644 index 1d1dc36724..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14473.png b/front/public/images/small/gregtech/gt.metaitem.01/14473.png deleted file mode 100644 index 3e92eabe22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14485.png b/front/public/images/small/gregtech/gt.metaitem.01/14485.png deleted file mode 100644 index 50b3d68130..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14488.png b/front/public/images/small/gregtech/gt.metaitem.01/14488.png deleted file mode 100644 index c34b562e06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14489.png b/front/public/images/small/gregtech/gt.metaitem.01/14489.png deleted file mode 100644 index c8319ce061..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14521.png b/front/public/images/small/gregtech/gt.metaitem.01/14521.png deleted file mode 100644 index 7002631637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14529.png b/front/public/images/small/gregtech/gt.metaitem.01/14529.png deleted file mode 100644 index cc1a5db295..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14576.png b/front/public/images/small/gregtech/gt.metaitem.01/14576.png deleted file mode 100644 index 1982402d76..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14581.png b/front/public/images/small/gregtech/gt.metaitem.01/14581.png deleted file mode 100644 index da078f5e7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14582.png b/front/public/images/small/gregtech/gt.metaitem.01/14582.png deleted file mode 100644 index 6f8381e78e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14585.png b/front/public/images/small/gregtech/gt.metaitem.01/14585.png deleted file mode 100644 index 91c55fb48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14586.png b/front/public/images/small/gregtech/gt.metaitem.01/14586.png deleted file mode 100644 index 5967b17bc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14588.png b/front/public/images/small/gregtech/gt.metaitem.01/14588.png deleted file mode 100644 index ab0e843048..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14599.png b/front/public/images/small/gregtech/gt.metaitem.01/14599.png deleted file mode 100644 index c6ef3e9953..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14610.png b/front/public/images/small/gregtech/gt.metaitem.01/14610.png deleted file mode 100644 index e7d83a82b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14613.png b/front/public/images/small/gregtech/gt.metaitem.01/14613.png deleted file mode 100644 index 5575878894..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14631.png b/front/public/images/small/gregtech/gt.metaitem.01/14631.png deleted file mode 100644 index 5876e27668..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14635.png b/front/public/images/small/gregtech/gt.metaitem.01/14635.png deleted file mode 100644 index 1af999a6fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14636.png b/front/public/images/small/gregtech/gt.metaitem.01/14636.png deleted file mode 100644 index b86edfe706..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14649.png b/front/public/images/small/gregtech/gt.metaitem.01/14649.png deleted file mode 100644 index c87278f2da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14765.png b/front/public/images/small/gregtech/gt.metaitem.01/14765.png deleted file mode 100644 index b416b625e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14770.png b/front/public/images/small/gregtech/gt.metaitem.01/14770.png deleted file mode 100644 index d1a7115319..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14772.png b/front/public/images/small/gregtech/gt.metaitem.01/14772.png deleted file mode 100644 index ca896df066..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14829.png b/front/public/images/small/gregtech/gt.metaitem.01/14829.png deleted file mode 100644 index e302f6a339..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14856.png b/front/public/images/small/gregtech/gt.metaitem.01/14856.png deleted file mode 100644 index 2947c8caf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14868.png b/front/public/images/small/gregtech/gt.metaitem.01/14868.png deleted file mode 100644 index 9fc3d4f3ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14874.png b/front/public/images/small/gregtech/gt.metaitem.01/14874.png deleted file mode 100644 index ed6d8b198e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14880.png b/front/public/images/small/gregtech/gt.metaitem.01/14880.png deleted file mode 100644 index 5967b17bc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14884.png b/front/public/images/small/gregtech/gt.metaitem.01/14884.png deleted file mode 100644 index 2bff8a09cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14912.png b/front/public/images/small/gregtech/gt.metaitem.01/14912.png deleted file mode 100644 index 3a6a3646e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14913.png b/front/public/images/small/gregtech/gt.metaitem.01/14913.png deleted file mode 100644 index 0aae344994..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14951.png b/front/public/images/small/gregtech/gt.metaitem.01/14951.png deleted file mode 100644 index 48159f36d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14952.png b/front/public/images/small/gregtech/gt.metaitem.01/14952.png deleted file mode 100644 index 5f4752245a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14956.png b/front/public/images/small/gregtech/gt.metaitem.01/14956.png deleted file mode 100644 index cccc44aaf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14966.png b/front/public/images/small/gregtech/gt.metaitem.01/14966.png deleted file mode 100644 index a7d56ff611..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14970.png b/front/public/images/small/gregtech/gt.metaitem.01/14970.png deleted file mode 100644 index 7cbf5b1da4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14974.png b/front/public/images/small/gregtech/gt.metaitem.01/14974.png deleted file mode 100644 index 721587197d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14975.png b/front/public/images/small/gregtech/gt.metaitem.01/14975.png deleted file mode 100644 index 4e0828e915..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14976.png b/front/public/images/small/gregtech/gt.metaitem.01/14976.png deleted file mode 100644 index f292861a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14977.png b/front/public/images/small/gregtech/gt.metaitem.01/14977.png deleted file mode 100644 index ef54aee85a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14978.png b/front/public/images/small/gregtech/gt.metaitem.01/14978.png deleted file mode 100644 index 41dbe5cbb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14979.png b/front/public/images/small/gregtech/gt.metaitem.01/14979.png deleted file mode 100644 index c660bc3183..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14980.png b/front/public/images/small/gregtech/gt.metaitem.01/14980.png deleted file mode 100644 index c9d35fbe4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14981.png b/front/public/images/small/gregtech/gt.metaitem.01/14981.png deleted file mode 100644 index 9bce7d7fc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14982.png b/front/public/images/small/gregtech/gt.metaitem.01/14982.png deleted file mode 100644 index 271b9b26eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14984.png b/front/public/images/small/gregtech/gt.metaitem.01/14984.png deleted file mode 100644 index ed925c7d7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14985.png b/front/public/images/small/gregtech/gt.metaitem.01/14985.png deleted file mode 100644 index 5b901e31cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14986.png b/front/public/images/small/gregtech/gt.metaitem.01/14986.png deleted file mode 100644 index 0f711e78d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14987.png b/front/public/images/small/gregtech/gt.metaitem.01/14987.png deleted file mode 100644 index c6c33015aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14988.png b/front/public/images/small/gregtech/gt.metaitem.01/14988.png deleted file mode 100644 index ced3946e2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14989.png b/front/public/images/small/gregtech/gt.metaitem.01/14989.png deleted file mode 100644 index f358ae29b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14990.png b/front/public/images/small/gregtech/gt.metaitem.01/14990.png deleted file mode 100644 index d8202fcc7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14991.png b/front/public/images/small/gregtech/gt.metaitem.01/14991.png deleted file mode 100644 index ccfc9f3007..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/14992.png b/front/public/images/small/gregtech/gt.metaitem.01/14992.png deleted file mode 100644 index b79583aef8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/14992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15006.png b/front/public/images/small/gregtech/gt.metaitem.01/15006.png deleted file mode 100644 index 3fb3276a52..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15008.png b/front/public/images/small/gregtech/gt.metaitem.01/15008.png deleted file mode 100644 index ea5826d272..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15010.png b/front/public/images/small/gregtech/gt.metaitem.01/15010.png deleted file mode 100644 index e75e48a72d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15018.png b/front/public/images/small/gregtech/gt.metaitem.01/15018.png deleted file mode 100644 index cd88452c51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15019.png b/front/public/images/small/gregtech/gt.metaitem.01/15019.png deleted file mode 100644 index b7f9877ca6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15020.png b/front/public/images/small/gregtech/gt.metaitem.01/15020.png deleted file mode 100644 index c6de0826ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15025.png b/front/public/images/small/gregtech/gt.metaitem.01/15025.png deleted file mode 100644 index 6274437c98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15027.png b/front/public/images/small/gregtech/gt.metaitem.01/15027.png deleted file mode 100644 index 8c565db582..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15028.png b/front/public/images/small/gregtech/gt.metaitem.01/15028.png deleted file mode 100644 index 213052b73c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15029.png b/front/public/images/small/gregtech/gt.metaitem.01/15029.png deleted file mode 100644 index 12e56beaa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15030.png b/front/public/images/small/gregtech/gt.metaitem.01/15030.png deleted file mode 100644 index 44298d8237..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15031.png b/front/public/images/small/gregtech/gt.metaitem.01/15031.png deleted file mode 100644 index 98ae9f0fdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15032.png b/front/public/images/small/gregtech/gt.metaitem.01/15032.png deleted file mode 100644 index b8a60c6fb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15033.png b/front/public/images/small/gregtech/gt.metaitem.01/15033.png deleted file mode 100644 index f8dd5c8ab2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15034.png b/front/public/images/small/gregtech/gt.metaitem.01/15034.png deleted file mode 100644 index 11a43ec209..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15035.png b/front/public/images/small/gregtech/gt.metaitem.01/15035.png deleted file mode 100644 index de436b360d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15036.png b/front/public/images/small/gregtech/gt.metaitem.01/15036.png deleted file mode 100644 index 4e1e974b61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15037.png b/front/public/images/small/gregtech/gt.metaitem.01/15037.png deleted file mode 100644 index 344d15649e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15039.png b/front/public/images/small/gregtech/gt.metaitem.01/15039.png deleted file mode 100644 index cda091c5ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15043.png b/front/public/images/small/gregtech/gt.metaitem.01/15043.png deleted file mode 100644 index e920570c23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15045.png b/front/public/images/small/gregtech/gt.metaitem.01/15045.png deleted file mode 100644 index 4b4f124c4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15047.png b/front/public/images/small/gregtech/gt.metaitem.01/15047.png deleted file mode 100644 index 3e691b9e8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15048.png b/front/public/images/small/gregtech/gt.metaitem.01/15048.png deleted file mode 100644 index 463c09b796..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15052.png b/front/public/images/small/gregtech/gt.metaitem.01/15052.png deleted file mode 100644 index 745689b3dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15054.png b/front/public/images/small/gregtech/gt.metaitem.01/15054.png deleted file mode 100644 index 344d15649e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15056.png b/front/public/images/small/gregtech/gt.metaitem.01/15056.png deleted file mode 100644 index 10310949be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15057.png b/front/public/images/small/gregtech/gt.metaitem.01/15057.png deleted file mode 100644 index bd0856bcc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15058.png b/front/public/images/small/gregtech/gt.metaitem.01/15058.png deleted file mode 100644 index e7c4cfed0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15059.png b/front/public/images/small/gregtech/gt.metaitem.01/15059.png deleted file mode 100644 index 3f9ce51f04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15062.png b/front/public/images/small/gregtech/gt.metaitem.01/15062.png deleted file mode 100644 index 6a89298890..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15063.png b/front/public/images/small/gregtech/gt.metaitem.01/15063.png deleted file mode 100644 index 9c64c41a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15064.png b/front/public/images/small/gregtech/gt.metaitem.01/15064.png deleted file mode 100644 index 1e9e43b3a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15065.png b/front/public/images/small/gregtech/gt.metaitem.01/15065.png deleted file mode 100644 index fb0b4b5838..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15066.png b/front/public/images/small/gregtech/gt.metaitem.01/15066.png deleted file mode 100644 index 30991cf4e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15067.png b/front/public/images/small/gregtech/gt.metaitem.01/15067.png deleted file mode 100644 index 3ac98362c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15068.png b/front/public/images/small/gregtech/gt.metaitem.01/15068.png deleted file mode 100644 index 6147452ad9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15069.png b/front/public/images/small/gregtech/gt.metaitem.01/15069.png deleted file mode 100644 index b8f2097868..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15070.png b/front/public/images/small/gregtech/gt.metaitem.01/15070.png deleted file mode 100644 index f4ad886dc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15071.png b/front/public/images/small/gregtech/gt.metaitem.01/15071.png deleted file mode 100644 index b778f09d9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15072.png b/front/public/images/small/gregtech/gt.metaitem.01/15072.png deleted file mode 100644 index 9c64c41a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15073.png b/front/public/images/small/gregtech/gt.metaitem.01/15073.png deleted file mode 100644 index 0832c77627..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15074.png b/front/public/images/small/gregtech/gt.metaitem.01/15074.png deleted file mode 100644 index 26576210bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15075.png b/front/public/images/small/gregtech/gt.metaitem.01/15075.png deleted file mode 100644 index 5beb5b5a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15076.png b/front/public/images/small/gregtech/gt.metaitem.01/15076.png deleted file mode 100644 index 4b4934b917..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15077.png b/front/public/images/small/gregtech/gt.metaitem.01/15077.png deleted file mode 100644 index 4f17139e4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15078.png b/front/public/images/small/gregtech/gt.metaitem.01/15078.png deleted file mode 100644 index 39bbc5a046..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15080.png b/front/public/images/small/gregtech/gt.metaitem.01/15080.png deleted file mode 100644 index 0963a021e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15081.png b/front/public/images/small/gregtech/gt.metaitem.01/15081.png deleted file mode 100644 index 12e56beaa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15083.png b/front/public/images/small/gregtech/gt.metaitem.01/15083.png deleted file mode 100644 index c4283f0fb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15084.png b/front/public/images/small/gregtech/gt.metaitem.01/15084.png deleted file mode 100644 index f88a6d130a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15085.png b/front/public/images/small/gregtech/gt.metaitem.01/15085.png deleted file mode 100644 index 4fcd56af6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15086.png b/front/public/images/small/gregtech/gt.metaitem.01/15086.png deleted file mode 100644 index e152de5091..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15089.png b/front/public/images/small/gregtech/gt.metaitem.01/15089.png deleted file mode 100644 index 2c316f16c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15090.png b/front/public/images/small/gregtech/gt.metaitem.01/15090.png deleted file mode 100644 index 3dd8b6e375..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15096.png b/front/public/images/small/gregtech/gt.metaitem.01/15096.png deleted file mode 100644 index a7b2083ff7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15097.png b/front/public/images/small/gregtech/gt.metaitem.01/15097.png deleted file mode 100644 index 52492b8dd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15098.png b/front/public/images/small/gregtech/gt.metaitem.01/15098.png deleted file mode 100644 index 93fd09caf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15100.png b/front/public/images/small/gregtech/gt.metaitem.01/15100.png deleted file mode 100644 index 5192b9768c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15101.png b/front/public/images/small/gregtech/gt.metaitem.01/15101.png deleted file mode 100644 index 9c9d68ff88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15103.png b/front/public/images/small/gregtech/gt.metaitem.01/15103.png deleted file mode 100644 index b8a60c6fb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15111.png b/front/public/images/small/gregtech/gt.metaitem.01/15111.png deleted file mode 100644 index 9e06e091cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15112.png b/front/public/images/small/gregtech/gt.metaitem.01/15112.png deleted file mode 100644 index 64653aaf46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15129.png b/front/public/images/small/gregtech/gt.metaitem.01/15129.png deleted file mode 100644 index 98ae9f0fdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15131.png b/front/public/images/small/gregtech/gt.metaitem.01/15131.png deleted file mode 100644 index f72488850c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15134.png b/front/public/images/small/gregtech/gt.metaitem.01/15134.png deleted file mode 100644 index 0f867c14a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15139.png b/front/public/images/small/gregtech/gt.metaitem.01/15139.png deleted file mode 100644 index 3667749621..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15141.png b/front/public/images/small/gregtech/gt.metaitem.01/15141.png deleted file mode 100644 index 2519863264..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15143.png b/front/public/images/small/gregtech/gt.metaitem.01/15143.png deleted file mode 100644 index d881164848..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15201.png b/front/public/images/small/gregtech/gt.metaitem.01/15201.png deleted file mode 100644 index 9b82b4ae40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15202.png b/front/public/images/small/gregtech/gt.metaitem.01/15202.png deleted file mode 100644 index 5d67a2dbdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15203.png b/front/public/images/small/gregtech/gt.metaitem.01/15203.png deleted file mode 100644 index 8a66694899..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15205.png b/front/public/images/small/gregtech/gt.metaitem.01/15205.png deleted file mode 100644 index c962444cec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15300.png b/front/public/images/small/gregtech/gt.metaitem.01/15300.png deleted file mode 100644 index f818d3b644..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15301.png b/front/public/images/small/gregtech/gt.metaitem.01/15301.png deleted file mode 100644 index 500bed1eae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15302.png b/front/public/images/small/gregtech/gt.metaitem.01/15302.png deleted file mode 100644 index ffefe4dd0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15303.png b/front/public/images/small/gregtech/gt.metaitem.01/15303.png deleted file mode 100644 index 9ac97b6cda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15304.png b/front/public/images/small/gregtech/gt.metaitem.01/15304.png deleted file mode 100644 index 1b113d031f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15305.png b/front/public/images/small/gregtech/gt.metaitem.01/15305.png deleted file mode 100644 index 745689b3dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15306.png b/front/public/images/small/gregtech/gt.metaitem.01/15306.png deleted file mode 100644 index 1f8c88bebf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15307.png b/front/public/images/small/gregtech/gt.metaitem.01/15307.png deleted file mode 100644 index 1b113d031f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15308.png b/front/public/images/small/gregtech/gt.metaitem.01/15308.png deleted file mode 100644 index f9ba295f73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15309.png b/front/public/images/small/gregtech/gt.metaitem.01/15309.png deleted file mode 100644 index 2222210fae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15310.png b/front/public/images/small/gregtech/gt.metaitem.01/15310.png deleted file mode 100644 index 191e3b400e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15311.png b/front/public/images/small/gregtech/gt.metaitem.01/15311.png deleted file mode 100644 index 26ca8af662..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15312.png b/front/public/images/small/gregtech/gt.metaitem.01/15312.png deleted file mode 100644 index 9e7e8b2fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15313.png b/front/public/images/small/gregtech/gt.metaitem.01/15313.png deleted file mode 100644 index aab6163f94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15314.png b/front/public/images/small/gregtech/gt.metaitem.01/15314.png deleted file mode 100644 index 489c40a791..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15315.png b/front/public/images/small/gregtech/gt.metaitem.01/15315.png deleted file mode 100644 index 8368e29968..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15316.png b/front/public/images/small/gregtech/gt.metaitem.01/15316.png deleted file mode 100644 index 871b5d62bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15317.png b/front/public/images/small/gregtech/gt.metaitem.01/15317.png deleted file mode 100644 index 746a99094a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15318.png b/front/public/images/small/gregtech/gt.metaitem.01/15318.png deleted file mode 100644 index 512e267615..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15319.png b/front/public/images/small/gregtech/gt.metaitem.01/15319.png deleted file mode 100644 index 9c64c41a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15320.png b/front/public/images/small/gregtech/gt.metaitem.01/15320.png deleted file mode 100644 index f8a745c899..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15321.png b/front/public/images/small/gregtech/gt.metaitem.01/15321.png deleted file mode 100644 index 4bb392505e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15323.png b/front/public/images/small/gregtech/gt.metaitem.01/15323.png deleted file mode 100644 index 8595199f9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15324.png b/front/public/images/small/gregtech/gt.metaitem.01/15324.png deleted file mode 100644 index 12e56beaa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15325.png b/front/public/images/small/gregtech/gt.metaitem.01/15325.png deleted file mode 100644 index 2eef14cad0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15326.png b/front/public/images/small/gregtech/gt.metaitem.01/15326.png deleted file mode 100644 index da17b7f503..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15327.png b/front/public/images/small/gregtech/gt.metaitem.01/15327.png deleted file mode 100644 index f4ffb88b28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15328.png b/front/public/images/small/gregtech/gt.metaitem.01/15328.png deleted file mode 100644 index 9c64c41a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15329.png b/front/public/images/small/gregtech/gt.metaitem.01/15329.png deleted file mode 100644 index b1e6f7159d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15330.png b/front/public/images/small/gregtech/gt.metaitem.01/15330.png deleted file mode 100644 index ded33f93e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15331.png b/front/public/images/small/gregtech/gt.metaitem.01/15331.png deleted file mode 100644 index 1a8ae93a10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15333.png b/front/public/images/small/gregtech/gt.metaitem.01/15333.png deleted file mode 100644 index dd1b9b46a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15334.png b/front/public/images/small/gregtech/gt.metaitem.01/15334.png deleted file mode 100644 index 3ac98362c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15335.png b/front/public/images/small/gregtech/gt.metaitem.01/15335.png deleted file mode 100644 index 820918e1ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15336.png b/front/public/images/small/gregtech/gt.metaitem.01/15336.png deleted file mode 100644 index d825ed4546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15337.png b/front/public/images/small/gregtech/gt.metaitem.01/15337.png deleted file mode 100644 index 75fb9ef8cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15338.png b/front/public/images/small/gregtech/gt.metaitem.01/15338.png deleted file mode 100644 index 29f772b627..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15339.png b/front/public/images/small/gregtech/gt.metaitem.01/15339.png deleted file mode 100644 index fa556ebf41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15340.png b/front/public/images/small/gregtech/gt.metaitem.01/15340.png deleted file mode 100644 index 9930dbabbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15341.png b/front/public/images/small/gregtech/gt.metaitem.01/15341.png deleted file mode 100644 index cf1b149789..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15342.png b/front/public/images/small/gregtech/gt.metaitem.01/15342.png deleted file mode 100644 index 3bbd12a371..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15343.png b/front/public/images/small/gregtech/gt.metaitem.01/15343.png deleted file mode 100644 index aba9959e8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15344.png b/front/public/images/small/gregtech/gt.metaitem.01/15344.png deleted file mode 100644 index 3aa3b94f07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15345.png b/front/public/images/small/gregtech/gt.metaitem.01/15345.png deleted file mode 100644 index 70bcddf50f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15346.png b/front/public/images/small/gregtech/gt.metaitem.01/15346.png deleted file mode 100644 index 83b452bad1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15348.png b/front/public/images/small/gregtech/gt.metaitem.01/15348.png deleted file mode 100644 index ab1c6a47f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15349.png b/front/public/images/small/gregtech/gt.metaitem.01/15349.png deleted file mode 100644 index f43720e97b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15350.png b/front/public/images/small/gregtech/gt.metaitem.01/15350.png deleted file mode 100644 index 95d64c25e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15351.png b/front/public/images/small/gregtech/gt.metaitem.01/15351.png deleted file mode 100644 index e1c434cb0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15352.png b/front/public/images/small/gregtech/gt.metaitem.01/15352.png deleted file mode 100644 index 9d0ef2f266..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15353.png b/front/public/images/small/gregtech/gt.metaitem.01/15353.png deleted file mode 100644 index a6abb64282..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15354.png b/front/public/images/small/gregtech/gt.metaitem.01/15354.png deleted file mode 100644 index 260e325695..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15355.png b/front/public/images/small/gregtech/gt.metaitem.01/15355.png deleted file mode 100644 index ba3540c5be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15356.png b/front/public/images/small/gregtech/gt.metaitem.01/15356.png deleted file mode 100644 index df34f88ab8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15357.png b/front/public/images/small/gregtech/gt.metaitem.01/15357.png deleted file mode 100644 index c90e749035..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15358.png b/front/public/images/small/gregtech/gt.metaitem.01/15358.png deleted file mode 100644 index 809bfe436b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15359.png b/front/public/images/small/gregtech/gt.metaitem.01/15359.png deleted file mode 100644 index 49cf5711bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15360.png b/front/public/images/small/gregtech/gt.metaitem.01/15360.png deleted file mode 100644 index 6bd7d96416..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15361.png b/front/public/images/small/gregtech/gt.metaitem.01/15361.png deleted file mode 100644 index a51a13c149..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15362.png b/front/public/images/small/gregtech/gt.metaitem.01/15362.png deleted file mode 100644 index d59acda79f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15363.png b/front/public/images/small/gregtech/gt.metaitem.01/15363.png deleted file mode 100644 index b8a60c6fb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15364.png b/front/public/images/small/gregtech/gt.metaitem.01/15364.png deleted file mode 100644 index 1661a8444d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15365.png b/front/public/images/small/gregtech/gt.metaitem.01/15365.png deleted file mode 100644 index d3e2f9a5e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15366.png b/front/public/images/small/gregtech/gt.metaitem.01/15366.png deleted file mode 100644 index 26df7b5a9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15367.png b/front/public/images/small/gregtech/gt.metaitem.01/15367.png deleted file mode 100644 index 7020c77cc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15368.png b/front/public/images/small/gregtech/gt.metaitem.01/15368.png deleted file mode 100644 index 1d11e1d597..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15369.png b/front/public/images/small/gregtech/gt.metaitem.01/15369.png deleted file mode 100644 index b16466319a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15370.png b/front/public/images/small/gregtech/gt.metaitem.01/15370.png deleted file mode 100644 index 285d0e356e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15371.png b/front/public/images/small/gregtech/gt.metaitem.01/15371.png deleted file mode 100644 index 0439a5c4f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15372.png b/front/public/images/small/gregtech/gt.metaitem.01/15372.png deleted file mode 100644 index a1b6e6c79c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15373.png b/front/public/images/small/gregtech/gt.metaitem.01/15373.png deleted file mode 100644 index 2c3a86852b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15374.png b/front/public/images/small/gregtech/gt.metaitem.01/15374.png deleted file mode 100644 index 647d70839a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15378.png b/front/public/images/small/gregtech/gt.metaitem.01/15378.png deleted file mode 100644 index 6d1f5e6b07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15379.png b/front/public/images/small/gregtech/gt.metaitem.01/15379.png deleted file mode 100644 index 586389ae20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15380.png b/front/public/images/small/gregtech/gt.metaitem.01/15380.png deleted file mode 100644 index 7e6909074c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15381.png b/front/public/images/small/gregtech/gt.metaitem.01/15381.png deleted file mode 100644 index 219742c7bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15382.png b/front/public/images/small/gregtech/gt.metaitem.01/15382.png deleted file mode 100644 index ffcaa817e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15383.png b/front/public/images/small/gregtech/gt.metaitem.01/15383.png deleted file mode 100644 index 14fe7680bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15384.png b/front/public/images/small/gregtech/gt.metaitem.01/15384.png deleted file mode 100644 index 95367e738e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15385.png b/front/public/images/small/gregtech/gt.metaitem.01/15385.png deleted file mode 100644 index 6b24fd6b6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15386.png b/front/public/images/small/gregtech/gt.metaitem.01/15386.png deleted file mode 100644 index 735a60eb32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15387.png b/front/public/images/small/gregtech/gt.metaitem.01/15387.png deleted file mode 100644 index 1d57264fa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15388.png b/front/public/images/small/gregtech/gt.metaitem.01/15388.png deleted file mode 100644 index c80ae43640..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15389.png b/front/public/images/small/gregtech/gt.metaitem.01/15389.png deleted file mode 100644 index a34cabac11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15390.png b/front/public/images/small/gregtech/gt.metaitem.01/15390.png deleted file mode 100644 index 98a6cbb1df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15391.png b/front/public/images/small/gregtech/gt.metaitem.01/15391.png deleted file mode 100644 index 1216a7c288..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15392.png b/front/public/images/small/gregtech/gt.metaitem.01/15392.png deleted file mode 100644 index 55688f62d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15393.png b/front/public/images/small/gregtech/gt.metaitem.01/15393.png deleted file mode 100644 index caf0ba7636..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15394.png b/front/public/images/small/gregtech/gt.metaitem.01/15394.png deleted file mode 100644 index 9c64c41a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15395.png b/front/public/images/small/gregtech/gt.metaitem.01/15395.png deleted file mode 100644 index c80ae43640..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15397.png b/front/public/images/small/gregtech/gt.metaitem.01/15397.png deleted file mode 100644 index 379f609560..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15398.png b/front/public/images/small/gregtech/gt.metaitem.01/15398.png deleted file mode 100644 index 45d4b8bbb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15399.png b/front/public/images/small/gregtech/gt.metaitem.01/15399.png deleted file mode 100644 index a119654bea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15400.png b/front/public/images/small/gregtech/gt.metaitem.01/15400.png deleted file mode 100644 index 63ce443730..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15401.png b/front/public/images/small/gregtech/gt.metaitem.01/15401.png deleted file mode 100644 index f6de775aed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15402.png b/front/public/images/small/gregtech/gt.metaitem.01/15402.png deleted file mode 100644 index 66a1f0b676..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15403.png b/front/public/images/small/gregtech/gt.metaitem.01/15403.png deleted file mode 100644 index 85ccbb5774..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15404.png b/front/public/images/small/gregtech/gt.metaitem.01/15404.png deleted file mode 100644 index 306ce50f2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15405.png b/front/public/images/small/gregtech/gt.metaitem.01/15405.png deleted file mode 100644 index 6f916ff140..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15406.png b/front/public/images/small/gregtech/gt.metaitem.01/15406.png deleted file mode 100644 index 15d1fc6b28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15407.png b/front/public/images/small/gregtech/gt.metaitem.01/15407.png deleted file mode 100644 index ef38dadf0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15408.png b/front/public/images/small/gregtech/gt.metaitem.01/15408.png deleted file mode 100644 index dceea16908..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15470.png b/front/public/images/small/gregtech/gt.metaitem.01/15470.png deleted file mode 100644 index d66745c37e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15471.png b/front/public/images/small/gregtech/gt.metaitem.01/15471.png deleted file mode 100644 index bd0856bcc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15472.png b/front/public/images/small/gregtech/gt.metaitem.01/15472.png deleted file mode 100644 index c80ae43640..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15473.png b/front/public/images/small/gregtech/gt.metaitem.01/15473.png deleted file mode 100644 index 7aa6efae4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15485.png b/front/public/images/small/gregtech/gt.metaitem.01/15485.png deleted file mode 100644 index 81a3b8e2de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15488.png b/front/public/images/small/gregtech/gt.metaitem.01/15488.png deleted file mode 100644 index 24908e5235..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15489.png b/front/public/images/small/gregtech/gt.metaitem.01/15489.png deleted file mode 100644 index bed0b37bd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15521.png b/front/public/images/small/gregtech/gt.metaitem.01/15521.png deleted file mode 100644 index 512e267615..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15529.png b/front/public/images/small/gregtech/gt.metaitem.01/15529.png deleted file mode 100644 index e567d6fc06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15576.png b/front/public/images/small/gregtech/gt.metaitem.01/15576.png deleted file mode 100644 index 9468b1f1d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15581.png b/front/public/images/small/gregtech/gt.metaitem.01/15581.png deleted file mode 100644 index 8e79c4ab50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15582.png b/front/public/images/small/gregtech/gt.metaitem.01/15582.png deleted file mode 100644 index 0b167551f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15585.png b/front/public/images/small/gregtech/gt.metaitem.01/15585.png deleted file mode 100644 index 4878bba62d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15586.png b/front/public/images/small/gregtech/gt.metaitem.01/15586.png deleted file mode 100644 index b32a1ca463..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15588.png b/front/public/images/small/gregtech/gt.metaitem.01/15588.png deleted file mode 100644 index 44ca43f4b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15599.png b/front/public/images/small/gregtech/gt.metaitem.01/15599.png deleted file mode 100644 index 6fcecb5d6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15610.png b/front/public/images/small/gregtech/gt.metaitem.01/15610.png deleted file mode 100644 index c20cc8b0ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15613.png b/front/public/images/small/gregtech/gt.metaitem.01/15613.png deleted file mode 100644 index c959066e24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15631.png b/front/public/images/small/gregtech/gt.metaitem.01/15631.png deleted file mode 100644 index c823c36575..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15635.png b/front/public/images/small/gregtech/gt.metaitem.01/15635.png deleted file mode 100644 index 6e35be6027..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15636.png b/front/public/images/small/gregtech/gt.metaitem.01/15636.png deleted file mode 100644 index 9cc4819c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15649.png b/front/public/images/small/gregtech/gt.metaitem.01/15649.png deleted file mode 100644 index 38b9f5a12f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15765.png b/front/public/images/small/gregtech/gt.metaitem.01/15765.png deleted file mode 100644 index e76da2e000..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15770.png b/front/public/images/small/gregtech/gt.metaitem.01/15770.png deleted file mode 100644 index 99ac24999c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15772.png b/front/public/images/small/gregtech/gt.metaitem.01/15772.png deleted file mode 100644 index 290f336ef2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15829.png b/front/public/images/small/gregtech/gt.metaitem.01/15829.png deleted file mode 100644 index 28357cd4cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15856.png b/front/public/images/small/gregtech/gt.metaitem.01/15856.png deleted file mode 100644 index bb395d806b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15868.png b/front/public/images/small/gregtech/gt.metaitem.01/15868.png deleted file mode 100644 index 38bcb9ee4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15874.png b/front/public/images/small/gregtech/gt.metaitem.01/15874.png deleted file mode 100644 index 4171b79c82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15880.png b/front/public/images/small/gregtech/gt.metaitem.01/15880.png deleted file mode 100644 index b32a1ca463..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15884.png b/front/public/images/small/gregtech/gt.metaitem.01/15884.png deleted file mode 100644 index 8e651d567f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15912.png b/front/public/images/small/gregtech/gt.metaitem.01/15912.png deleted file mode 100644 index 88bfc13f73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15913.png b/front/public/images/small/gregtech/gt.metaitem.01/15913.png deleted file mode 100644 index 4d818d8573..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15951.png b/front/public/images/small/gregtech/gt.metaitem.01/15951.png deleted file mode 100644 index 667b4c20bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15952.png b/front/public/images/small/gregtech/gt.metaitem.01/15952.png deleted file mode 100644 index bd9400bfd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15956.png b/front/public/images/small/gregtech/gt.metaitem.01/15956.png deleted file mode 100644 index 7c61fa3f6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15966.png b/front/public/images/small/gregtech/gt.metaitem.01/15966.png deleted file mode 100644 index 892b82908e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15970.png b/front/public/images/small/gregtech/gt.metaitem.01/15970.png deleted file mode 100644 index 4f3073886c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15974.png b/front/public/images/small/gregtech/gt.metaitem.01/15974.png deleted file mode 100644 index 501cb20a16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15975.png b/front/public/images/small/gregtech/gt.metaitem.01/15975.png deleted file mode 100644 index e237c5d808..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15976.png b/front/public/images/small/gregtech/gt.metaitem.01/15976.png deleted file mode 100644 index 92bddb3fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15977.png b/front/public/images/small/gregtech/gt.metaitem.01/15977.png deleted file mode 100644 index 4f07138b5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15978.png b/front/public/images/small/gregtech/gt.metaitem.01/15978.png deleted file mode 100644 index a13bdc01f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15979.png b/front/public/images/small/gregtech/gt.metaitem.01/15979.png deleted file mode 100644 index 83d148166a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15980.png b/front/public/images/small/gregtech/gt.metaitem.01/15980.png deleted file mode 100644 index fb23fa24e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15981.png b/front/public/images/small/gregtech/gt.metaitem.01/15981.png deleted file mode 100644 index b347cf9e38..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15982.png b/front/public/images/small/gregtech/gt.metaitem.01/15982.png deleted file mode 100644 index 3a7b9f09ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15984.png b/front/public/images/small/gregtech/gt.metaitem.01/15984.png deleted file mode 100644 index 9c64c41a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15985.png b/front/public/images/small/gregtech/gt.metaitem.01/15985.png deleted file mode 100644 index 0f31981e8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15986.png b/front/public/images/small/gregtech/gt.metaitem.01/15986.png deleted file mode 100644 index ca15a77ff8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15987.png b/front/public/images/small/gregtech/gt.metaitem.01/15987.png deleted file mode 100644 index 71633433c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15988.png b/front/public/images/small/gregtech/gt.metaitem.01/15988.png deleted file mode 100644 index 94cdb2b926..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15989.png b/front/public/images/small/gregtech/gt.metaitem.01/15989.png deleted file mode 100644 index 65350fed92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15990.png b/front/public/images/small/gregtech/gt.metaitem.01/15990.png deleted file mode 100644 index 6c4249ee7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15991.png b/front/public/images/small/gregtech/gt.metaitem.01/15991.png deleted file mode 100644 index 463ba6c7ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/15992.png b/front/public/images/small/gregtech/gt.metaitem.01/15992.png deleted file mode 100644 index 4eeff9a424..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/15992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16006.png b/front/public/images/small/gregtech/gt.metaitem.01/16006.png deleted file mode 100644 index 9204799413..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16008.png b/front/public/images/small/gregtech/gt.metaitem.01/16008.png deleted file mode 100644 index 8de100058c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16010.png b/front/public/images/small/gregtech/gt.metaitem.01/16010.png deleted file mode 100644 index f9e427ea44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16018.png b/front/public/images/small/gregtech/gt.metaitem.01/16018.png deleted file mode 100644 index f414f280d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16019.png b/front/public/images/small/gregtech/gt.metaitem.01/16019.png deleted file mode 100644 index 3e65c0adf3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16020.png b/front/public/images/small/gregtech/gt.metaitem.01/16020.png deleted file mode 100644 index 92063b139d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16025.png b/front/public/images/small/gregtech/gt.metaitem.01/16025.png deleted file mode 100644 index d4b6940ec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16027.png b/front/public/images/small/gregtech/gt.metaitem.01/16027.png deleted file mode 100644 index dff5134eab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16028.png b/front/public/images/small/gregtech/gt.metaitem.01/16028.png deleted file mode 100644 index 269be12a57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16029.png b/front/public/images/small/gregtech/gt.metaitem.01/16029.png deleted file mode 100644 index 4d83cf0565..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16030.png b/front/public/images/small/gregtech/gt.metaitem.01/16030.png deleted file mode 100644 index 50cc2f1ca4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16031.png b/front/public/images/small/gregtech/gt.metaitem.01/16031.png deleted file mode 100644 index 52c3ee03e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16032.png b/front/public/images/small/gregtech/gt.metaitem.01/16032.png deleted file mode 100644 index 870cd13e5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16033.png b/front/public/images/small/gregtech/gt.metaitem.01/16033.png deleted file mode 100644 index 2b1a3bc180..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16034.png b/front/public/images/small/gregtech/gt.metaitem.01/16034.png deleted file mode 100644 index e5339c83fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16035.png b/front/public/images/small/gregtech/gt.metaitem.01/16035.png deleted file mode 100644 index c70cdb32d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16036.png b/front/public/images/small/gregtech/gt.metaitem.01/16036.png deleted file mode 100644 index 53a2f9f469..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16037.png b/front/public/images/small/gregtech/gt.metaitem.01/16037.png deleted file mode 100644 index 1984594ece..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16039.png b/front/public/images/small/gregtech/gt.metaitem.01/16039.png deleted file mode 100644 index c685a2d959..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16043.png b/front/public/images/small/gregtech/gt.metaitem.01/16043.png deleted file mode 100644 index 4aa4e4a0af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16045.png b/front/public/images/small/gregtech/gt.metaitem.01/16045.png deleted file mode 100644 index 55fe77a58e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16047.png b/front/public/images/small/gregtech/gt.metaitem.01/16047.png deleted file mode 100644 index f6e40f743b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16048.png b/front/public/images/small/gregtech/gt.metaitem.01/16048.png deleted file mode 100644 index a5f17ec789..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16052.png b/front/public/images/small/gregtech/gt.metaitem.01/16052.png deleted file mode 100644 index b5dc3cc978..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16054.png b/front/public/images/small/gregtech/gt.metaitem.01/16054.png deleted file mode 100644 index 1984594ece..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16056.png b/front/public/images/small/gregtech/gt.metaitem.01/16056.png deleted file mode 100644 index fb53b63d75..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16057.png b/front/public/images/small/gregtech/gt.metaitem.01/16057.png deleted file mode 100644 index aad3aca2bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16058.png b/front/public/images/small/gregtech/gt.metaitem.01/16058.png deleted file mode 100644 index 2218866057..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16059.png b/front/public/images/small/gregtech/gt.metaitem.01/16059.png deleted file mode 100644 index 14075074f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16062.png b/front/public/images/small/gregtech/gt.metaitem.01/16062.png deleted file mode 100644 index aa05fe85de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16063.png b/front/public/images/small/gregtech/gt.metaitem.01/16063.png deleted file mode 100644 index 0124f6e207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16064.png b/front/public/images/small/gregtech/gt.metaitem.01/16064.png deleted file mode 100644 index b72730abc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16065.png b/front/public/images/small/gregtech/gt.metaitem.01/16065.png deleted file mode 100644 index 12123b7c96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16066.png b/front/public/images/small/gregtech/gt.metaitem.01/16066.png deleted file mode 100644 index 7edfb75490..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16067.png b/front/public/images/small/gregtech/gt.metaitem.01/16067.png deleted file mode 100644 index d6afbb495d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16068.png b/front/public/images/small/gregtech/gt.metaitem.01/16068.png deleted file mode 100644 index e8e4c60579..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16069.png b/front/public/images/small/gregtech/gt.metaitem.01/16069.png deleted file mode 100644 index 89b3535e6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16070.png b/front/public/images/small/gregtech/gt.metaitem.01/16070.png deleted file mode 100644 index 35fca141e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16071.png b/front/public/images/small/gregtech/gt.metaitem.01/16071.png deleted file mode 100644 index f3c1717bbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16072.png b/front/public/images/small/gregtech/gt.metaitem.01/16072.png deleted file mode 100644 index 0124f6e207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16073.png b/front/public/images/small/gregtech/gt.metaitem.01/16073.png deleted file mode 100644 index 3ad5357874..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16074.png b/front/public/images/small/gregtech/gt.metaitem.01/16074.png deleted file mode 100644 index 73d5d41255..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16075.png b/front/public/images/small/gregtech/gt.metaitem.01/16075.png deleted file mode 100644 index b3fcbb5314..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16076.png b/front/public/images/small/gregtech/gt.metaitem.01/16076.png deleted file mode 100644 index b497ebe404..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16077.png b/front/public/images/small/gregtech/gt.metaitem.01/16077.png deleted file mode 100644 index 8faafcf8f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16078.png b/front/public/images/small/gregtech/gt.metaitem.01/16078.png deleted file mode 100644 index b91b2311ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16080.png b/front/public/images/small/gregtech/gt.metaitem.01/16080.png deleted file mode 100644 index b114bc5425..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16081.png b/front/public/images/small/gregtech/gt.metaitem.01/16081.png deleted file mode 100644 index 4d83cf0565..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16083.png b/front/public/images/small/gregtech/gt.metaitem.01/16083.png deleted file mode 100644 index 280a91ea7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16084.png b/front/public/images/small/gregtech/gt.metaitem.01/16084.png deleted file mode 100644 index 23274d014e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16085.png b/front/public/images/small/gregtech/gt.metaitem.01/16085.png deleted file mode 100644 index 40d4bfb189..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16086.png b/front/public/images/small/gregtech/gt.metaitem.01/16086.png deleted file mode 100644 index 084d2d814d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16089.png b/front/public/images/small/gregtech/gt.metaitem.01/16089.png deleted file mode 100644 index 5e0149f6db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16090.png b/front/public/images/small/gregtech/gt.metaitem.01/16090.png deleted file mode 100644 index 034645c1f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16096.png b/front/public/images/small/gregtech/gt.metaitem.01/16096.png deleted file mode 100644 index 3c9cd6f605..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16097.png b/front/public/images/small/gregtech/gt.metaitem.01/16097.png deleted file mode 100644 index 73d2d76dd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16098.png b/front/public/images/small/gregtech/gt.metaitem.01/16098.png deleted file mode 100644 index 12a97cf698..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16100.png b/front/public/images/small/gregtech/gt.metaitem.01/16100.png deleted file mode 100644 index 1254906640..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16101.png b/front/public/images/small/gregtech/gt.metaitem.01/16101.png deleted file mode 100644 index 81f288c757..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16103.png b/front/public/images/small/gregtech/gt.metaitem.01/16103.png deleted file mode 100644 index 870cd13e5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16111.png b/front/public/images/small/gregtech/gt.metaitem.01/16111.png deleted file mode 100644 index 778c73e81e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16112.png b/front/public/images/small/gregtech/gt.metaitem.01/16112.png deleted file mode 100644 index 74f189f65c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16129.png b/front/public/images/small/gregtech/gt.metaitem.01/16129.png deleted file mode 100644 index 52c3ee03e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16131.png b/front/public/images/small/gregtech/gt.metaitem.01/16131.png deleted file mode 100644 index 3b26e79a99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16134.png b/front/public/images/small/gregtech/gt.metaitem.01/16134.png deleted file mode 100644 index e756669419..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16139.png b/front/public/images/small/gregtech/gt.metaitem.01/16139.png deleted file mode 100644 index 4be812338a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16141.png b/front/public/images/small/gregtech/gt.metaitem.01/16141.png deleted file mode 100644 index bab15eb7ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16143.png b/front/public/images/small/gregtech/gt.metaitem.01/16143.png deleted file mode 100644 index e5eae87a37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16201.png b/front/public/images/small/gregtech/gt.metaitem.01/16201.png deleted file mode 100644 index 08ed766a75..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16202.png b/front/public/images/small/gregtech/gt.metaitem.01/16202.png deleted file mode 100644 index 358c133f47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16203.png b/front/public/images/small/gregtech/gt.metaitem.01/16203.png deleted file mode 100644 index 6636c596b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16205.png b/front/public/images/small/gregtech/gt.metaitem.01/16205.png deleted file mode 100644 index c6eebd22ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16300.png b/front/public/images/small/gregtech/gt.metaitem.01/16300.png deleted file mode 100644 index 21a1582474..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16301.png b/front/public/images/small/gregtech/gt.metaitem.01/16301.png deleted file mode 100644 index 1e64462049..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16302.png b/front/public/images/small/gregtech/gt.metaitem.01/16302.png deleted file mode 100644 index 7e29e27c5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16303.png b/front/public/images/small/gregtech/gt.metaitem.01/16303.png deleted file mode 100644 index f59e27dbd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16304.png b/front/public/images/small/gregtech/gt.metaitem.01/16304.png deleted file mode 100644 index 322e2afe49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16305.png b/front/public/images/small/gregtech/gt.metaitem.01/16305.png deleted file mode 100644 index b5dc3cc978..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16306.png b/front/public/images/small/gregtech/gt.metaitem.01/16306.png deleted file mode 100644 index a3e777a16f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16307.png b/front/public/images/small/gregtech/gt.metaitem.01/16307.png deleted file mode 100644 index 322e2afe49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16308.png b/front/public/images/small/gregtech/gt.metaitem.01/16308.png deleted file mode 100644 index cc02675a10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16309.png b/front/public/images/small/gregtech/gt.metaitem.01/16309.png deleted file mode 100644 index eae5e442d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16310.png b/front/public/images/small/gregtech/gt.metaitem.01/16310.png deleted file mode 100644 index 16a53a8967..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16311.png b/front/public/images/small/gregtech/gt.metaitem.01/16311.png deleted file mode 100644 index c54e6a2b1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16312.png b/front/public/images/small/gregtech/gt.metaitem.01/16312.png deleted file mode 100644 index 08228df4f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16313.png b/front/public/images/small/gregtech/gt.metaitem.01/16313.png deleted file mode 100644 index ffd175ee82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16314.png b/front/public/images/small/gregtech/gt.metaitem.01/16314.png deleted file mode 100644 index 48d9a187dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16315.png b/front/public/images/small/gregtech/gt.metaitem.01/16315.png deleted file mode 100644 index c3fc74ddfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16316.png b/front/public/images/small/gregtech/gt.metaitem.01/16316.png deleted file mode 100644 index b99608494b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16317.png b/front/public/images/small/gregtech/gt.metaitem.01/16317.png deleted file mode 100644 index d75dcec4f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16318.png b/front/public/images/small/gregtech/gt.metaitem.01/16318.png deleted file mode 100644 index 2cd2a9028e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16319.png b/front/public/images/small/gregtech/gt.metaitem.01/16319.png deleted file mode 100644 index 0124f6e207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16320.png b/front/public/images/small/gregtech/gt.metaitem.01/16320.png deleted file mode 100644 index 326bc00da6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16321.png b/front/public/images/small/gregtech/gt.metaitem.01/16321.png deleted file mode 100644 index 8b82bd4ace..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16323.png b/front/public/images/small/gregtech/gt.metaitem.01/16323.png deleted file mode 100644 index 7c3d3218a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16324.png b/front/public/images/small/gregtech/gt.metaitem.01/16324.png deleted file mode 100644 index 4d83cf0565..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16325.png b/front/public/images/small/gregtech/gt.metaitem.01/16325.png deleted file mode 100644 index f600c3067a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16326.png b/front/public/images/small/gregtech/gt.metaitem.01/16326.png deleted file mode 100644 index 7219f57f19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16327.png b/front/public/images/small/gregtech/gt.metaitem.01/16327.png deleted file mode 100644 index acccd8c962..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16328.png b/front/public/images/small/gregtech/gt.metaitem.01/16328.png deleted file mode 100644 index 0124f6e207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16329.png b/front/public/images/small/gregtech/gt.metaitem.01/16329.png deleted file mode 100644 index 1feaed143c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16330.png b/front/public/images/small/gregtech/gt.metaitem.01/16330.png deleted file mode 100644 index 779521f2ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16331.png b/front/public/images/small/gregtech/gt.metaitem.01/16331.png deleted file mode 100644 index d475f594c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16333.png b/front/public/images/small/gregtech/gt.metaitem.01/16333.png deleted file mode 100644 index 7fd8ba38f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16334.png b/front/public/images/small/gregtech/gt.metaitem.01/16334.png deleted file mode 100644 index d6afbb495d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16335.png b/front/public/images/small/gregtech/gt.metaitem.01/16335.png deleted file mode 100644 index 9b1e1084e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16336.png b/front/public/images/small/gregtech/gt.metaitem.01/16336.png deleted file mode 100644 index e1dd6a2811..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16337.png b/front/public/images/small/gregtech/gt.metaitem.01/16337.png deleted file mode 100644 index a34ae7c4c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16338.png b/front/public/images/small/gregtech/gt.metaitem.01/16338.png deleted file mode 100644 index 01183fb842..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16339.png b/front/public/images/small/gregtech/gt.metaitem.01/16339.png deleted file mode 100644 index c4446ddda0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16340.png b/front/public/images/small/gregtech/gt.metaitem.01/16340.png deleted file mode 100644 index 8bc91d9829..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16341.png b/front/public/images/small/gregtech/gt.metaitem.01/16341.png deleted file mode 100644 index a876bd5246..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16342.png b/front/public/images/small/gregtech/gt.metaitem.01/16342.png deleted file mode 100644 index d3db17ee9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16343.png b/front/public/images/small/gregtech/gt.metaitem.01/16343.png deleted file mode 100644 index 2653ca5257..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16344.png b/front/public/images/small/gregtech/gt.metaitem.01/16344.png deleted file mode 100644 index 64cb3535a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16345.png b/front/public/images/small/gregtech/gt.metaitem.01/16345.png deleted file mode 100644 index 5713032e19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16346.png b/front/public/images/small/gregtech/gt.metaitem.01/16346.png deleted file mode 100644 index 0f557c208f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16348.png b/front/public/images/small/gregtech/gt.metaitem.01/16348.png deleted file mode 100644 index b2e828a2e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16349.png b/front/public/images/small/gregtech/gt.metaitem.01/16349.png deleted file mode 100644 index e6dca980f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16350.png b/front/public/images/small/gregtech/gt.metaitem.01/16350.png deleted file mode 100644 index 2d78c497e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16351.png b/front/public/images/small/gregtech/gt.metaitem.01/16351.png deleted file mode 100644 index 3da97dda49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16352.png b/front/public/images/small/gregtech/gt.metaitem.01/16352.png deleted file mode 100644 index 1c5016eac3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16353.png b/front/public/images/small/gregtech/gt.metaitem.01/16353.png deleted file mode 100644 index ed3d7dd9d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16354.png b/front/public/images/small/gregtech/gt.metaitem.01/16354.png deleted file mode 100644 index ed743bd602..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16355.png b/front/public/images/small/gregtech/gt.metaitem.01/16355.png deleted file mode 100644 index fdf32fd212..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16356.png b/front/public/images/small/gregtech/gt.metaitem.01/16356.png deleted file mode 100644 index 7cadabce95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16357.png b/front/public/images/small/gregtech/gt.metaitem.01/16357.png deleted file mode 100644 index eeba4903b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16358.png b/front/public/images/small/gregtech/gt.metaitem.01/16358.png deleted file mode 100644 index f2e5ddca89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16359.png b/front/public/images/small/gregtech/gt.metaitem.01/16359.png deleted file mode 100644 index 2b6d79edb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16360.png b/front/public/images/small/gregtech/gt.metaitem.01/16360.png deleted file mode 100644 index f9f4010f5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16361.png b/front/public/images/small/gregtech/gt.metaitem.01/16361.png deleted file mode 100644 index 6f9c2b21cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16362.png b/front/public/images/small/gregtech/gt.metaitem.01/16362.png deleted file mode 100644 index b3187d7670..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16363.png b/front/public/images/small/gregtech/gt.metaitem.01/16363.png deleted file mode 100644 index 870cd13e5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16364.png b/front/public/images/small/gregtech/gt.metaitem.01/16364.png deleted file mode 100644 index 75a205fd5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16365.png b/front/public/images/small/gregtech/gt.metaitem.01/16365.png deleted file mode 100644 index b49f510718..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16366.png b/front/public/images/small/gregtech/gt.metaitem.01/16366.png deleted file mode 100644 index 82470056d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16367.png b/front/public/images/small/gregtech/gt.metaitem.01/16367.png deleted file mode 100644 index 127be660c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16368.png b/front/public/images/small/gregtech/gt.metaitem.01/16368.png deleted file mode 100644 index 38a2b5d910..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16369.png b/front/public/images/small/gregtech/gt.metaitem.01/16369.png deleted file mode 100644 index 0573788f94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16370.png b/front/public/images/small/gregtech/gt.metaitem.01/16370.png deleted file mode 100644 index 70922d5884..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16371.png b/front/public/images/small/gregtech/gt.metaitem.01/16371.png deleted file mode 100644 index f3e8c5e4da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16372.png b/front/public/images/small/gregtech/gt.metaitem.01/16372.png deleted file mode 100644 index aee167a105..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16373.png b/front/public/images/small/gregtech/gt.metaitem.01/16373.png deleted file mode 100644 index 21a24e54a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16374.png b/front/public/images/small/gregtech/gt.metaitem.01/16374.png deleted file mode 100644 index 1fa6f3e49a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16378.png b/front/public/images/small/gregtech/gt.metaitem.01/16378.png deleted file mode 100644 index c865ff0bcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16379.png b/front/public/images/small/gregtech/gt.metaitem.01/16379.png deleted file mode 100644 index 09172e9d98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16380.png b/front/public/images/small/gregtech/gt.metaitem.01/16380.png deleted file mode 100644 index fe0b56d2b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16381.png b/front/public/images/small/gregtech/gt.metaitem.01/16381.png deleted file mode 100644 index 334f006511..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16382.png b/front/public/images/small/gregtech/gt.metaitem.01/16382.png deleted file mode 100644 index 2666af5404..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16383.png b/front/public/images/small/gregtech/gt.metaitem.01/16383.png deleted file mode 100644 index 7953b688fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16384.png b/front/public/images/small/gregtech/gt.metaitem.01/16384.png deleted file mode 100644 index 0131f9b40e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16385.png b/front/public/images/small/gregtech/gt.metaitem.01/16385.png deleted file mode 100644 index 9028122b08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16386.png b/front/public/images/small/gregtech/gt.metaitem.01/16386.png deleted file mode 100644 index b3aaf10ccd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16387.png b/front/public/images/small/gregtech/gt.metaitem.01/16387.png deleted file mode 100644 index 2b10e08865..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16388.png b/front/public/images/small/gregtech/gt.metaitem.01/16388.png deleted file mode 100644 index 10f19dcb1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16389.png b/front/public/images/small/gregtech/gt.metaitem.01/16389.png deleted file mode 100644 index ef097ae533..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16390.png b/front/public/images/small/gregtech/gt.metaitem.01/16390.png deleted file mode 100644 index 92abdf80a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16391.png b/front/public/images/small/gregtech/gt.metaitem.01/16391.png deleted file mode 100644 index 308e10442f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16392.png b/front/public/images/small/gregtech/gt.metaitem.01/16392.png deleted file mode 100644 index 0e82fce947..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16393.png b/front/public/images/small/gregtech/gt.metaitem.01/16393.png deleted file mode 100644 index f26da5dac6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16394.png b/front/public/images/small/gregtech/gt.metaitem.01/16394.png deleted file mode 100644 index 0124f6e207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16395.png b/front/public/images/small/gregtech/gt.metaitem.01/16395.png deleted file mode 100644 index 10f19dcb1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16397.png b/front/public/images/small/gregtech/gt.metaitem.01/16397.png deleted file mode 100644 index dfad159075..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16398.png b/front/public/images/small/gregtech/gt.metaitem.01/16398.png deleted file mode 100644 index 95b0d8fec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16399.png b/front/public/images/small/gregtech/gt.metaitem.01/16399.png deleted file mode 100644 index dd2b635e93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16400.png b/front/public/images/small/gregtech/gt.metaitem.01/16400.png deleted file mode 100644 index ac74aeefc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16401.png b/front/public/images/small/gregtech/gt.metaitem.01/16401.png deleted file mode 100644 index df27037e38..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16402.png b/front/public/images/small/gregtech/gt.metaitem.01/16402.png deleted file mode 100644 index 8b6830aa95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16403.png b/front/public/images/small/gregtech/gt.metaitem.01/16403.png deleted file mode 100644 index e3233921cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16404.png b/front/public/images/small/gregtech/gt.metaitem.01/16404.png deleted file mode 100644 index fc2c926067..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16405.png b/front/public/images/small/gregtech/gt.metaitem.01/16405.png deleted file mode 100644 index 40d0ba0519..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16406.png b/front/public/images/small/gregtech/gt.metaitem.01/16406.png deleted file mode 100644 index f7396f01dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16407.png b/front/public/images/small/gregtech/gt.metaitem.01/16407.png deleted file mode 100644 index 6a2d53b054..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16408.png b/front/public/images/small/gregtech/gt.metaitem.01/16408.png deleted file mode 100644 index 3521128e85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16470.png b/front/public/images/small/gregtech/gt.metaitem.01/16470.png deleted file mode 100644 index def0124e29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16471.png b/front/public/images/small/gregtech/gt.metaitem.01/16471.png deleted file mode 100644 index aad3aca2bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16472.png b/front/public/images/small/gregtech/gt.metaitem.01/16472.png deleted file mode 100644 index 10f19dcb1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16473.png b/front/public/images/small/gregtech/gt.metaitem.01/16473.png deleted file mode 100644 index e37cb08521..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16485.png b/front/public/images/small/gregtech/gt.metaitem.01/16485.png deleted file mode 100644 index a338a00686..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16488.png b/front/public/images/small/gregtech/gt.metaitem.01/16488.png deleted file mode 100644 index f2b7c35b88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16489.png b/front/public/images/small/gregtech/gt.metaitem.01/16489.png deleted file mode 100644 index 5ca0a84bc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16521.png b/front/public/images/small/gregtech/gt.metaitem.01/16521.png deleted file mode 100644 index 2cd2a9028e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16529.png b/front/public/images/small/gregtech/gt.metaitem.01/16529.png deleted file mode 100644 index 4bc0f8c197..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16576.png b/front/public/images/small/gregtech/gt.metaitem.01/16576.png deleted file mode 100644 index d2e338f142..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16581.png b/front/public/images/small/gregtech/gt.metaitem.01/16581.png deleted file mode 100644 index 8d29771ab5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16582.png b/front/public/images/small/gregtech/gt.metaitem.01/16582.png deleted file mode 100644 index 4f6fbe1a15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16585.png b/front/public/images/small/gregtech/gt.metaitem.01/16585.png deleted file mode 100644 index d4e92d0499..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16586.png b/front/public/images/small/gregtech/gt.metaitem.01/16586.png deleted file mode 100644 index 4c0f6402a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16588.png b/front/public/images/small/gregtech/gt.metaitem.01/16588.png deleted file mode 100644 index e79c846483..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16599.png b/front/public/images/small/gregtech/gt.metaitem.01/16599.png deleted file mode 100644 index c2ca92d883..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16610.png b/front/public/images/small/gregtech/gt.metaitem.01/16610.png deleted file mode 100644 index 245860ff4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16613.png b/front/public/images/small/gregtech/gt.metaitem.01/16613.png deleted file mode 100644 index 6bb979d6a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16631.png b/front/public/images/small/gregtech/gt.metaitem.01/16631.png deleted file mode 100644 index 02f3917b99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16635.png b/front/public/images/small/gregtech/gt.metaitem.01/16635.png deleted file mode 100644 index f67356d622..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16636.png b/front/public/images/small/gregtech/gt.metaitem.01/16636.png deleted file mode 100644 index bb9afcaff8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16649.png b/front/public/images/small/gregtech/gt.metaitem.01/16649.png deleted file mode 100644 index da6719c944..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16765.png b/front/public/images/small/gregtech/gt.metaitem.01/16765.png deleted file mode 100644 index 926e6049c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16770.png b/front/public/images/small/gregtech/gt.metaitem.01/16770.png deleted file mode 100644 index bca9c19936..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16772.png b/front/public/images/small/gregtech/gt.metaitem.01/16772.png deleted file mode 100644 index b71eef000a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16829.png b/front/public/images/small/gregtech/gt.metaitem.01/16829.png deleted file mode 100644 index 1674f0bb5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16856.png b/front/public/images/small/gregtech/gt.metaitem.01/16856.png deleted file mode 100644 index 8b98745b3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16868.png b/front/public/images/small/gregtech/gt.metaitem.01/16868.png deleted file mode 100644 index a5039bffd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16874.png b/front/public/images/small/gregtech/gt.metaitem.01/16874.png deleted file mode 100644 index 22b6e10fab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16880.png b/front/public/images/small/gregtech/gt.metaitem.01/16880.png deleted file mode 100644 index 4c0f6402a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16884.png b/front/public/images/small/gregtech/gt.metaitem.01/16884.png deleted file mode 100644 index b7138af9bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16912.png b/front/public/images/small/gregtech/gt.metaitem.01/16912.png deleted file mode 100644 index 51d80618cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16913.png b/front/public/images/small/gregtech/gt.metaitem.01/16913.png deleted file mode 100644 index 09bee61c10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16951.png b/front/public/images/small/gregtech/gt.metaitem.01/16951.png deleted file mode 100644 index 840804d4e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16952.png b/front/public/images/small/gregtech/gt.metaitem.01/16952.png deleted file mode 100644 index 887ef1bacc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16956.png b/front/public/images/small/gregtech/gt.metaitem.01/16956.png deleted file mode 100644 index 0da6096a8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16966.png b/front/public/images/small/gregtech/gt.metaitem.01/16966.png deleted file mode 100644 index 98c163b317..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16970.png b/front/public/images/small/gregtech/gt.metaitem.01/16970.png deleted file mode 100644 index 969e7e6c23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16974.png b/front/public/images/small/gregtech/gt.metaitem.01/16974.png deleted file mode 100644 index 7acaf5d8fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16975.png b/front/public/images/small/gregtech/gt.metaitem.01/16975.png deleted file mode 100644 index bee52d3f3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16976.png b/front/public/images/small/gregtech/gt.metaitem.01/16976.png deleted file mode 100644 index 9dcd5c0acd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16977.png b/front/public/images/small/gregtech/gt.metaitem.01/16977.png deleted file mode 100644 index bb095ee4de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16978.png b/front/public/images/small/gregtech/gt.metaitem.01/16978.png deleted file mode 100644 index 55ab805a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16979.png b/front/public/images/small/gregtech/gt.metaitem.01/16979.png deleted file mode 100644 index 65e2148953..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16980.png b/front/public/images/small/gregtech/gt.metaitem.01/16980.png deleted file mode 100644 index c3ead5c1c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16981.png b/front/public/images/small/gregtech/gt.metaitem.01/16981.png deleted file mode 100644 index af8c101246..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16982.png b/front/public/images/small/gregtech/gt.metaitem.01/16982.png deleted file mode 100644 index 7ce8f33234..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16984.png b/front/public/images/small/gregtech/gt.metaitem.01/16984.png deleted file mode 100644 index 0124f6e207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16985.png b/front/public/images/small/gregtech/gt.metaitem.01/16985.png deleted file mode 100644 index a6e18d6e48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16986.png b/front/public/images/small/gregtech/gt.metaitem.01/16986.png deleted file mode 100644 index 010e51bffd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16987.png b/front/public/images/small/gregtech/gt.metaitem.01/16987.png deleted file mode 100644 index 6c68d58407..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16988.png b/front/public/images/small/gregtech/gt.metaitem.01/16988.png deleted file mode 100644 index 61246d4b91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16989.png b/front/public/images/small/gregtech/gt.metaitem.01/16989.png deleted file mode 100644 index f36f790b08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16990.png b/front/public/images/small/gregtech/gt.metaitem.01/16990.png deleted file mode 100644 index 982c7ccc60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16991.png b/front/public/images/small/gregtech/gt.metaitem.01/16991.png deleted file mode 100644 index 8df978d970..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/16992.png b/front/public/images/small/gregtech/gt.metaitem.01/16992.png deleted file mode 100644 index dd8b19422f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/16992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17006.png b/front/public/images/small/gregtech/gt.metaitem.01/17006.png deleted file mode 100644 index ada556e926..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17008.png b/front/public/images/small/gregtech/gt.metaitem.01/17008.png deleted file mode 100644 index 9a31bde265..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17010.png b/front/public/images/small/gregtech/gt.metaitem.01/17010.png deleted file mode 100644 index 56dc5567e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17018.png b/front/public/images/small/gregtech/gt.metaitem.01/17018.png deleted file mode 100644 index cad2312ca0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17019.png b/front/public/images/small/gregtech/gt.metaitem.01/17019.png deleted file mode 100644 index 3bdf2d5ab2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17020.png b/front/public/images/small/gregtech/gt.metaitem.01/17020.png deleted file mode 100644 index ee8d9c69b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17025.png b/front/public/images/small/gregtech/gt.metaitem.01/17025.png deleted file mode 100644 index d171df86ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17027.png b/front/public/images/small/gregtech/gt.metaitem.01/17027.png deleted file mode 100644 index 09cf67b0af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17028.png b/front/public/images/small/gregtech/gt.metaitem.01/17028.png deleted file mode 100644 index 33caad334d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17029.png b/front/public/images/small/gregtech/gt.metaitem.01/17029.png deleted file mode 100644 index 023ee13a93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17030.png b/front/public/images/small/gregtech/gt.metaitem.01/17030.png deleted file mode 100644 index f9458e9ec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17031.png b/front/public/images/small/gregtech/gt.metaitem.01/17031.png deleted file mode 100644 index 5a0356c244..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17032.png b/front/public/images/small/gregtech/gt.metaitem.01/17032.png deleted file mode 100644 index c6a8cd237c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17033.png b/front/public/images/small/gregtech/gt.metaitem.01/17033.png deleted file mode 100644 index c1d5d65603..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17034.png b/front/public/images/small/gregtech/gt.metaitem.01/17034.png deleted file mode 100644 index bfa67e4fff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17035.png b/front/public/images/small/gregtech/gt.metaitem.01/17035.png deleted file mode 100644 index f8b7acd0d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17036.png b/front/public/images/small/gregtech/gt.metaitem.01/17036.png deleted file mode 100644 index d5c778d0b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17037.png b/front/public/images/small/gregtech/gt.metaitem.01/17037.png deleted file mode 100644 index 3991660540..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17039.png b/front/public/images/small/gregtech/gt.metaitem.01/17039.png deleted file mode 100644 index 54bc4090db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17043.png b/front/public/images/small/gregtech/gt.metaitem.01/17043.png deleted file mode 100644 index 4b92b77b98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17045.png b/front/public/images/small/gregtech/gt.metaitem.01/17045.png deleted file mode 100644 index 341771cbad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17047.png b/front/public/images/small/gregtech/gt.metaitem.01/17047.png deleted file mode 100644 index 7b81f06605..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17048.png b/front/public/images/small/gregtech/gt.metaitem.01/17048.png deleted file mode 100644 index f3612f47ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17052.png b/front/public/images/small/gregtech/gt.metaitem.01/17052.png deleted file mode 100644 index 0cac355244..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17054.png b/front/public/images/small/gregtech/gt.metaitem.01/17054.png deleted file mode 100644 index 3991660540..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17056.png b/front/public/images/small/gregtech/gt.metaitem.01/17056.png deleted file mode 100644 index 0f1e38ec78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17057.png b/front/public/images/small/gregtech/gt.metaitem.01/17057.png deleted file mode 100644 index dc30027e0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17058.png b/front/public/images/small/gregtech/gt.metaitem.01/17058.png deleted file mode 100644 index fdd6bc8f8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17059.png b/front/public/images/small/gregtech/gt.metaitem.01/17059.png deleted file mode 100644 index e3437ae359..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17062.png b/front/public/images/small/gregtech/gt.metaitem.01/17062.png deleted file mode 100644 index 7962f4849a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17063.png b/front/public/images/small/gregtech/gt.metaitem.01/17063.png deleted file mode 100644 index 8beaf7633e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17064.png b/front/public/images/small/gregtech/gt.metaitem.01/17064.png deleted file mode 100644 index 8603745fb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17065.png b/front/public/images/small/gregtech/gt.metaitem.01/17065.png deleted file mode 100644 index e8b49bf1ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17066.png b/front/public/images/small/gregtech/gt.metaitem.01/17066.png deleted file mode 100644 index 819569ee1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17067.png b/front/public/images/small/gregtech/gt.metaitem.01/17067.png deleted file mode 100644 index 8df8b19792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17068.png b/front/public/images/small/gregtech/gt.metaitem.01/17068.png deleted file mode 100644 index 7e40b3f532..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17069.png b/front/public/images/small/gregtech/gt.metaitem.01/17069.png deleted file mode 100644 index 1f248bf388..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17070.png b/front/public/images/small/gregtech/gt.metaitem.01/17070.png deleted file mode 100644 index 714b04b9eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17071.png b/front/public/images/small/gregtech/gt.metaitem.01/17071.png deleted file mode 100644 index 5442ccc8fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17072.png b/front/public/images/small/gregtech/gt.metaitem.01/17072.png deleted file mode 100644 index 8beaf7633e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17073.png b/front/public/images/small/gregtech/gt.metaitem.01/17073.png deleted file mode 100644 index 62ccc6d612..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17074.png b/front/public/images/small/gregtech/gt.metaitem.01/17074.png deleted file mode 100644 index 7deae1f3bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17075.png b/front/public/images/small/gregtech/gt.metaitem.01/17075.png deleted file mode 100644 index e42af49f1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17076.png b/front/public/images/small/gregtech/gt.metaitem.01/17076.png deleted file mode 100644 index 884d1728e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17077.png b/front/public/images/small/gregtech/gt.metaitem.01/17077.png deleted file mode 100644 index 3f57681e9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17078.png b/front/public/images/small/gregtech/gt.metaitem.01/17078.png deleted file mode 100644 index 0cb1dfa117..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17080.png b/front/public/images/small/gregtech/gt.metaitem.01/17080.png deleted file mode 100644 index de7971312d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17081.png b/front/public/images/small/gregtech/gt.metaitem.01/17081.png deleted file mode 100644 index 023ee13a93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17083.png b/front/public/images/small/gregtech/gt.metaitem.01/17083.png deleted file mode 100644 index 1370a3fc19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17084.png b/front/public/images/small/gregtech/gt.metaitem.01/17084.png deleted file mode 100644 index 0efb95ef9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17085.png b/front/public/images/small/gregtech/gt.metaitem.01/17085.png deleted file mode 100644 index ce1d51c048..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17086.png b/front/public/images/small/gregtech/gt.metaitem.01/17086.png deleted file mode 100644 index 8bada1b340..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17089.png b/front/public/images/small/gregtech/gt.metaitem.01/17089.png deleted file mode 100644 index 0276b0f5e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17090.png b/front/public/images/small/gregtech/gt.metaitem.01/17090.png deleted file mode 100644 index 24c341662c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17096.png b/front/public/images/small/gregtech/gt.metaitem.01/17096.png deleted file mode 100644 index 4a2bad99e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17097.png b/front/public/images/small/gregtech/gt.metaitem.01/17097.png deleted file mode 100644 index b8ab151256..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17098.png b/front/public/images/small/gregtech/gt.metaitem.01/17098.png deleted file mode 100644 index af72b0db8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17100.png b/front/public/images/small/gregtech/gt.metaitem.01/17100.png deleted file mode 100644 index f1aa924d0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17101.png b/front/public/images/small/gregtech/gt.metaitem.01/17101.png deleted file mode 100644 index 53d55e9e8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17103.png b/front/public/images/small/gregtech/gt.metaitem.01/17103.png deleted file mode 100644 index c6a8cd237c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17111.png b/front/public/images/small/gregtech/gt.metaitem.01/17111.png deleted file mode 100644 index c65f316a0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17112.png b/front/public/images/small/gregtech/gt.metaitem.01/17112.png deleted file mode 100644 index 8c8b943321..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17129.png b/front/public/images/small/gregtech/gt.metaitem.01/17129.png deleted file mode 100644 index 5a0356c244..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17131.png b/front/public/images/small/gregtech/gt.metaitem.01/17131.png deleted file mode 100644 index 10dc22ed5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17134.png b/front/public/images/small/gregtech/gt.metaitem.01/17134.png deleted file mode 100644 index 097fd1c834..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17139.png b/front/public/images/small/gregtech/gt.metaitem.01/17139.png deleted file mode 100644 index be7a6a565e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17141.png b/front/public/images/small/gregtech/gt.metaitem.01/17141.png deleted file mode 100644 index 8e75973e5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17143.png b/front/public/images/small/gregtech/gt.metaitem.01/17143.png deleted file mode 100644 index b2f1b0345d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17201.png b/front/public/images/small/gregtech/gt.metaitem.01/17201.png deleted file mode 100644 index c88d922fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17202.png b/front/public/images/small/gregtech/gt.metaitem.01/17202.png deleted file mode 100644 index 6c5bf1d762..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17203.png b/front/public/images/small/gregtech/gt.metaitem.01/17203.png deleted file mode 100644 index 5a8207597f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17204.png b/front/public/images/small/gregtech/gt.metaitem.01/17204.png deleted file mode 100644 index cf49ee3e4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17205.png b/front/public/images/small/gregtech/gt.metaitem.01/17205.png deleted file mode 100644 index 850a92b424..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17206.png b/front/public/images/small/gregtech/gt.metaitem.01/17206.png deleted file mode 100644 index ce1ed317a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17207.png b/front/public/images/small/gregtech/gt.metaitem.01/17207.png deleted file mode 100644 index 055bf49d72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17208.png b/front/public/images/small/gregtech/gt.metaitem.01/17208.png deleted file mode 100644 index 8a61d869c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17209.png b/front/public/images/small/gregtech/gt.metaitem.01/17209.png deleted file mode 100644 index 5e8b740acf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17300.png b/front/public/images/small/gregtech/gt.metaitem.01/17300.png deleted file mode 100644 index 90fbf1481f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17301.png b/front/public/images/small/gregtech/gt.metaitem.01/17301.png deleted file mode 100644 index 330e25b504..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17302.png b/front/public/images/small/gregtech/gt.metaitem.01/17302.png deleted file mode 100644 index 2c0273c2c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17303.png b/front/public/images/small/gregtech/gt.metaitem.01/17303.png deleted file mode 100644 index 9f7cb5b709..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17304.png b/front/public/images/small/gregtech/gt.metaitem.01/17304.png deleted file mode 100644 index 08cdf9d9ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17305.png b/front/public/images/small/gregtech/gt.metaitem.01/17305.png deleted file mode 100644 index 6929bf07f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17306.png b/front/public/images/small/gregtech/gt.metaitem.01/17306.png deleted file mode 100644 index 99ca96ef0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17307.png b/front/public/images/small/gregtech/gt.metaitem.01/17307.png deleted file mode 100644 index 08cdf9d9ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17308.png b/front/public/images/small/gregtech/gt.metaitem.01/17308.png deleted file mode 100644 index 53fc86ede1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17309.png b/front/public/images/small/gregtech/gt.metaitem.01/17309.png deleted file mode 100644 index 9548a34207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17310.png b/front/public/images/small/gregtech/gt.metaitem.01/17310.png deleted file mode 100644 index 3f773d0df5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17311.png b/front/public/images/small/gregtech/gt.metaitem.01/17311.png deleted file mode 100644 index bbf96a94ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17312.png b/front/public/images/small/gregtech/gt.metaitem.01/17312.png deleted file mode 100644 index b2679e9d59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17313.png b/front/public/images/small/gregtech/gt.metaitem.01/17313.png deleted file mode 100644 index 154b8f4044..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17314.png b/front/public/images/small/gregtech/gt.metaitem.01/17314.png deleted file mode 100644 index 9787e16254..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17315.png b/front/public/images/small/gregtech/gt.metaitem.01/17315.png deleted file mode 100644 index 0d832946ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17316.png b/front/public/images/small/gregtech/gt.metaitem.01/17316.png deleted file mode 100644 index f06b5b5990..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17317.png b/front/public/images/small/gregtech/gt.metaitem.01/17317.png deleted file mode 100644 index af253600bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17318.png b/front/public/images/small/gregtech/gt.metaitem.01/17318.png deleted file mode 100644 index 55b78b2693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17319.png b/front/public/images/small/gregtech/gt.metaitem.01/17319.png deleted file mode 100644 index 7e68d0dacc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17320.png b/front/public/images/small/gregtech/gt.metaitem.01/17320.png deleted file mode 100644 index 035a4da96a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17321.png b/front/public/images/small/gregtech/gt.metaitem.01/17321.png deleted file mode 100644 index 87f24c36a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17323.png b/front/public/images/small/gregtech/gt.metaitem.01/17323.png deleted file mode 100644 index e7cfd4fb83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17324.png b/front/public/images/small/gregtech/gt.metaitem.01/17324.png deleted file mode 100644 index 023ee13a93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17325.png b/front/public/images/small/gregtech/gt.metaitem.01/17325.png deleted file mode 100644 index 998f1f996a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17326.png b/front/public/images/small/gregtech/gt.metaitem.01/17326.png deleted file mode 100644 index d6187ceb11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17327.png b/front/public/images/small/gregtech/gt.metaitem.01/17327.png deleted file mode 100644 index 281e807d52..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17328.png b/front/public/images/small/gregtech/gt.metaitem.01/17328.png deleted file mode 100644 index 8beaf7633e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17329.png b/front/public/images/small/gregtech/gt.metaitem.01/17329.png deleted file mode 100644 index 93bc20dcff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17330.png b/front/public/images/small/gregtech/gt.metaitem.01/17330.png deleted file mode 100644 index 06810dbfa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17331.png b/front/public/images/small/gregtech/gt.metaitem.01/17331.png deleted file mode 100644 index 70dd7bf2ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17333.png b/front/public/images/small/gregtech/gt.metaitem.01/17333.png deleted file mode 100644 index 09e329de69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17334.png b/front/public/images/small/gregtech/gt.metaitem.01/17334.png deleted file mode 100644 index 8df8b19792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17335.png b/front/public/images/small/gregtech/gt.metaitem.01/17335.png deleted file mode 100644 index 109aab2d43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17336.png b/front/public/images/small/gregtech/gt.metaitem.01/17336.png deleted file mode 100644 index fc4e659721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17337.png b/front/public/images/small/gregtech/gt.metaitem.01/17337.png deleted file mode 100644 index 82fcd3c48b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17338.png b/front/public/images/small/gregtech/gt.metaitem.01/17338.png deleted file mode 100644 index e1cd9ac5c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17339.png b/front/public/images/small/gregtech/gt.metaitem.01/17339.png deleted file mode 100644 index fb5398a00b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17340.png b/front/public/images/small/gregtech/gt.metaitem.01/17340.png deleted file mode 100644 index 1625f010b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17341.png b/front/public/images/small/gregtech/gt.metaitem.01/17341.png deleted file mode 100644 index ef7c42254a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17342.png b/front/public/images/small/gregtech/gt.metaitem.01/17342.png deleted file mode 100644 index ba75c1f736..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17343.png b/front/public/images/small/gregtech/gt.metaitem.01/17343.png deleted file mode 100644 index 17650586aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17344.png b/front/public/images/small/gregtech/gt.metaitem.01/17344.png deleted file mode 100644 index ffec000066..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17345.png b/front/public/images/small/gregtech/gt.metaitem.01/17345.png deleted file mode 100644 index ff72fe0266..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17346.png b/front/public/images/small/gregtech/gt.metaitem.01/17346.png deleted file mode 100644 index 66d9138104..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17347.png b/front/public/images/small/gregtech/gt.metaitem.01/17347.png deleted file mode 100644 index 3830b210dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17348.png b/front/public/images/small/gregtech/gt.metaitem.01/17348.png deleted file mode 100644 index 6419e77877..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17349.png b/front/public/images/small/gregtech/gt.metaitem.01/17349.png deleted file mode 100644 index d5debc0c46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17350.png b/front/public/images/small/gregtech/gt.metaitem.01/17350.png deleted file mode 100644 index 3fda2e5b5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17351.png b/front/public/images/small/gregtech/gt.metaitem.01/17351.png deleted file mode 100644 index 4d801bbef5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17352.png b/front/public/images/small/gregtech/gt.metaitem.01/17352.png deleted file mode 100644 index eae0a67012..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17353.png b/front/public/images/small/gregtech/gt.metaitem.01/17353.png deleted file mode 100644 index 2f81baf112..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17354.png b/front/public/images/small/gregtech/gt.metaitem.01/17354.png deleted file mode 100644 index d56a83ba4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17355.png b/front/public/images/small/gregtech/gt.metaitem.01/17355.png deleted file mode 100644 index 0e96ece37d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17356.png b/front/public/images/small/gregtech/gt.metaitem.01/17356.png deleted file mode 100644 index f5f0a18b15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17357.png b/front/public/images/small/gregtech/gt.metaitem.01/17357.png deleted file mode 100644 index 4347185506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17358.png b/front/public/images/small/gregtech/gt.metaitem.01/17358.png deleted file mode 100644 index a18527b9a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17359.png b/front/public/images/small/gregtech/gt.metaitem.01/17359.png deleted file mode 100644 index 68bd288cec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17360.png b/front/public/images/small/gregtech/gt.metaitem.01/17360.png deleted file mode 100644 index 3a7720b65f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17361.png b/front/public/images/small/gregtech/gt.metaitem.01/17361.png deleted file mode 100644 index 07b73d34d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17362.png b/front/public/images/small/gregtech/gt.metaitem.01/17362.png deleted file mode 100644 index d23fea14f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17363.png b/front/public/images/small/gregtech/gt.metaitem.01/17363.png deleted file mode 100644 index c6a8cd237c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17364.png b/front/public/images/small/gregtech/gt.metaitem.01/17364.png deleted file mode 100644 index 956430e41f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17365.png b/front/public/images/small/gregtech/gt.metaitem.01/17365.png deleted file mode 100644 index 912aeef00e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17366.png b/front/public/images/small/gregtech/gt.metaitem.01/17366.png deleted file mode 100644 index 0408499d62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17367.png b/front/public/images/small/gregtech/gt.metaitem.01/17367.png deleted file mode 100644 index 0405ac1f4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17368.png b/front/public/images/small/gregtech/gt.metaitem.01/17368.png deleted file mode 100644 index 09b6cb92f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17369.png b/front/public/images/small/gregtech/gt.metaitem.01/17369.png deleted file mode 100644 index 0e3466e26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17370.png b/front/public/images/small/gregtech/gt.metaitem.01/17370.png deleted file mode 100644 index 99eada62c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17371.png b/front/public/images/small/gregtech/gt.metaitem.01/17371.png deleted file mode 100644 index 77d25940ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17372.png b/front/public/images/small/gregtech/gt.metaitem.01/17372.png deleted file mode 100644 index c4285bf7a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17373.png b/front/public/images/small/gregtech/gt.metaitem.01/17373.png deleted file mode 100644 index d42b04b41b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17374.png b/front/public/images/small/gregtech/gt.metaitem.01/17374.png deleted file mode 100644 index 96c7ff0cfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17378.png b/front/public/images/small/gregtech/gt.metaitem.01/17378.png deleted file mode 100644 index 864f95e653..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17379.png b/front/public/images/small/gregtech/gt.metaitem.01/17379.png deleted file mode 100644 index 8fce208260..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17380.png b/front/public/images/small/gregtech/gt.metaitem.01/17380.png deleted file mode 100644 index 16531c87c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17381.png b/front/public/images/small/gregtech/gt.metaitem.01/17381.png deleted file mode 100644 index aa3320e83b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17382.png b/front/public/images/small/gregtech/gt.metaitem.01/17382.png deleted file mode 100644 index 23fbdc0663..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17383.png b/front/public/images/small/gregtech/gt.metaitem.01/17383.png deleted file mode 100644 index 38309e1788..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17384.png b/front/public/images/small/gregtech/gt.metaitem.01/17384.png deleted file mode 100644 index da86537b0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17385.png b/front/public/images/small/gregtech/gt.metaitem.01/17385.png deleted file mode 100644 index 6f02f64aeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17386.png b/front/public/images/small/gregtech/gt.metaitem.01/17386.png deleted file mode 100644 index 4a2d339ab0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17387.png b/front/public/images/small/gregtech/gt.metaitem.01/17387.png deleted file mode 100644 index 021d87d604..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17388.png b/front/public/images/small/gregtech/gt.metaitem.01/17388.png deleted file mode 100644 index 68a1933fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17389.png b/front/public/images/small/gregtech/gt.metaitem.01/17389.png deleted file mode 100644 index 90bee3efd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17390.png b/front/public/images/small/gregtech/gt.metaitem.01/17390.png deleted file mode 100644 index a908b2901c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17391.png b/front/public/images/small/gregtech/gt.metaitem.01/17391.png deleted file mode 100644 index eb9bb89e61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17392.png b/front/public/images/small/gregtech/gt.metaitem.01/17392.png deleted file mode 100644 index 519dbb06c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17393.png b/front/public/images/small/gregtech/gt.metaitem.01/17393.png deleted file mode 100644 index 8026d778e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17394.png b/front/public/images/small/gregtech/gt.metaitem.01/17394.png deleted file mode 100644 index 7e68d0dacc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17395.png b/front/public/images/small/gregtech/gt.metaitem.01/17395.png deleted file mode 100644 index 68a1933fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17397.png b/front/public/images/small/gregtech/gt.metaitem.01/17397.png deleted file mode 100644 index b30b6b372e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17398.png b/front/public/images/small/gregtech/gt.metaitem.01/17398.png deleted file mode 100644 index 66ee28c619..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17399.png b/front/public/images/small/gregtech/gt.metaitem.01/17399.png deleted file mode 100644 index 25b93fb428..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17400.png b/front/public/images/small/gregtech/gt.metaitem.01/17400.png deleted file mode 100644 index ee363ca18e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17401.png b/front/public/images/small/gregtech/gt.metaitem.01/17401.png deleted file mode 100644 index c6cac911c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17402.png b/front/public/images/small/gregtech/gt.metaitem.01/17402.png deleted file mode 100644 index 2d28270fa3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17403.png b/front/public/images/small/gregtech/gt.metaitem.01/17403.png deleted file mode 100644 index 2aaa7c44ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17404.png b/front/public/images/small/gregtech/gt.metaitem.01/17404.png deleted file mode 100644 index a2df085476..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17405.png b/front/public/images/small/gregtech/gt.metaitem.01/17405.png deleted file mode 100644 index e672c4c399..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17406.png b/front/public/images/small/gregtech/gt.metaitem.01/17406.png deleted file mode 100644 index c192c8c1d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17407.png b/front/public/images/small/gregtech/gt.metaitem.01/17407.png deleted file mode 100644 index b76d38f935..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17408.png b/front/public/images/small/gregtech/gt.metaitem.01/17408.png deleted file mode 100644 index 446b2c6140..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17470.png b/front/public/images/small/gregtech/gt.metaitem.01/17470.png deleted file mode 100644 index 9c7e629c5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17471.png b/front/public/images/small/gregtech/gt.metaitem.01/17471.png deleted file mode 100644 index dc30027e0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17472.png b/front/public/images/small/gregtech/gt.metaitem.01/17472.png deleted file mode 100644 index 68a1933fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17473.png b/front/public/images/small/gregtech/gt.metaitem.01/17473.png deleted file mode 100644 index de13dc29e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17485.png b/front/public/images/small/gregtech/gt.metaitem.01/17485.png deleted file mode 100644 index 13fba0d581..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17488.png b/front/public/images/small/gregtech/gt.metaitem.01/17488.png deleted file mode 100644 index 802cd583dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17489.png b/front/public/images/small/gregtech/gt.metaitem.01/17489.png deleted file mode 100644 index 7065d2d09f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17500.png b/front/public/images/small/gregtech/gt.metaitem.01/17500.png deleted file mode 100644 index 257d8a670f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17501.png b/front/public/images/small/gregtech/gt.metaitem.01/17501.png deleted file mode 100644 index c7a269f53f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17502.png b/front/public/images/small/gregtech/gt.metaitem.01/17502.png deleted file mode 100644 index 3878cf78d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17503.png b/front/public/images/small/gregtech/gt.metaitem.01/17503.png deleted file mode 100644 index 1c91d5df4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17504.png b/front/public/images/small/gregtech/gt.metaitem.01/17504.png deleted file mode 100644 index 9a70bb365d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17505.png b/front/public/images/small/gregtech/gt.metaitem.01/17505.png deleted file mode 100644 index cc8be91285..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17506.png b/front/public/images/small/gregtech/gt.metaitem.01/17506.png deleted file mode 100644 index 6b24e5c1cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17507.png b/front/public/images/small/gregtech/gt.metaitem.01/17507.png deleted file mode 100644 index d864a1c329..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17508.png b/front/public/images/small/gregtech/gt.metaitem.01/17508.png deleted file mode 100644 index fe9c98ce5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17509.png b/front/public/images/small/gregtech/gt.metaitem.01/17509.png deleted file mode 100644 index eddc686909..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17510.png b/front/public/images/small/gregtech/gt.metaitem.01/17510.png deleted file mode 100644 index 88a891cb3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17511.png b/front/public/images/small/gregtech/gt.metaitem.01/17511.png deleted file mode 100644 index f861d2a0fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17512.png b/front/public/images/small/gregtech/gt.metaitem.01/17512.png deleted file mode 100644 index 3878cf78d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17513.png b/front/public/images/small/gregtech/gt.metaitem.01/17513.png deleted file mode 100644 index 88a891cb3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17514.png b/front/public/images/small/gregtech/gt.metaitem.01/17514.png deleted file mode 100644 index d864a1c329..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17515.png b/front/public/images/small/gregtech/gt.metaitem.01/17515.png deleted file mode 100644 index 926b86a5be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17516.png b/front/public/images/small/gregtech/gt.metaitem.01/17516.png deleted file mode 100644 index 74d41a6762..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17518.png b/front/public/images/small/gregtech/gt.metaitem.01/17518.png deleted file mode 100644 index ef392f0871..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17519.png b/front/public/images/small/gregtech/gt.metaitem.01/17519.png deleted file mode 100644 index ef392f0871..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17520.png b/front/public/images/small/gregtech/gt.metaitem.01/17520.png deleted file mode 100644 index 0dd613cf46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17521.png b/front/public/images/small/gregtech/gt.metaitem.01/17521.png deleted file mode 100644 index 55b78b2693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17522.png b/front/public/images/small/gregtech/gt.metaitem.01/17522.png deleted file mode 100644 index 7073dfe52e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17523.png b/front/public/images/small/gregtech/gt.metaitem.01/17523.png deleted file mode 100644 index 004842f059..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17524.png b/front/public/images/small/gregtech/gt.metaitem.01/17524.png deleted file mode 100644 index 1d38dfc1ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17525.png b/front/public/images/small/gregtech/gt.metaitem.01/17525.png deleted file mode 100644 index 78b0954277..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17526.png b/front/public/images/small/gregtech/gt.metaitem.01/17526.png deleted file mode 100644 index b52f3d05c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17527.png b/front/public/images/small/gregtech/gt.metaitem.01/17527.png deleted file mode 100644 index f861d2a0fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17528.png b/front/public/images/small/gregtech/gt.metaitem.01/17528.png deleted file mode 100644 index 56ae5f90b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17529.png b/front/public/images/small/gregtech/gt.metaitem.01/17529.png deleted file mode 100644 index 994ed498f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17530.png b/front/public/images/small/gregtech/gt.metaitem.01/17530.png deleted file mode 100644 index 6bbe796919..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17531.png b/front/public/images/small/gregtech/gt.metaitem.01/17531.png deleted file mode 100644 index bda74734b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17532.png b/front/public/images/small/gregtech/gt.metaitem.01/17532.png deleted file mode 100644 index b3cc691268..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17533.png b/front/public/images/small/gregtech/gt.metaitem.01/17533.png deleted file mode 100644 index b021b5c001..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17534.png b/front/public/images/small/gregtech/gt.metaitem.01/17534.png deleted file mode 100644 index 1b85c91938..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17535.png b/front/public/images/small/gregtech/gt.metaitem.01/17535.png deleted file mode 100644 index 32ab53a9b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17536.png b/front/public/images/small/gregtech/gt.metaitem.01/17536.png deleted file mode 100644 index ecf4925012..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17537.png b/front/public/images/small/gregtech/gt.metaitem.01/17537.png deleted file mode 100644 index 4b503cb6b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17538.png b/front/public/images/small/gregtech/gt.metaitem.01/17538.png deleted file mode 100644 index ecf4925012..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17540.png b/front/public/images/small/gregtech/gt.metaitem.01/17540.png deleted file mode 100644 index 55b78b2693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17541.png b/front/public/images/small/gregtech/gt.metaitem.01/17541.png deleted file mode 100644 index d9fa4e4e9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17542.png b/front/public/images/small/gregtech/gt.metaitem.01/17542.png deleted file mode 100644 index 95048bc7c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17543.png b/front/public/images/small/gregtech/gt.metaitem.01/17543.png deleted file mode 100644 index 0366e58876..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17544.png b/front/public/images/small/gregtech/gt.metaitem.01/17544.png deleted file mode 100644 index 71962899cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17545.png b/front/public/images/small/gregtech/gt.metaitem.01/17545.png deleted file mode 100644 index e71d37068c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17576.png b/front/public/images/small/gregtech/gt.metaitem.01/17576.png deleted file mode 100644 index bec225381c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17581.png b/front/public/images/small/gregtech/gt.metaitem.01/17581.png deleted file mode 100644 index 67bc7f3618..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17582.png b/front/public/images/small/gregtech/gt.metaitem.01/17582.png deleted file mode 100644 index 555e8ad7ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17583.png b/front/public/images/small/gregtech/gt.metaitem.01/17583.png deleted file mode 100644 index 98de7abbe3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17585.png b/front/public/images/small/gregtech/gt.metaitem.01/17585.png deleted file mode 100644 index f962477a95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17586.png b/front/public/images/small/gregtech/gt.metaitem.01/17586.png deleted file mode 100644 index a9d015c2ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17588.png b/front/public/images/small/gregtech/gt.metaitem.01/17588.png deleted file mode 100644 index 1c53bc3124..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17599.png b/front/public/images/small/gregtech/gt.metaitem.01/17599.png deleted file mode 100644 index 4cb6db2cb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17610.png b/front/public/images/small/gregtech/gt.metaitem.01/17610.png deleted file mode 100644 index 8443c3d145..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17611.png b/front/public/images/small/gregtech/gt.metaitem.01/17611.png deleted file mode 100644 index f22bafc1b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17613.png b/front/public/images/small/gregtech/gt.metaitem.01/17613.png deleted file mode 100644 index dea4484e1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17631.png b/front/public/images/small/gregtech/gt.metaitem.01/17631.png deleted file mode 100644 index 23cea84a7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17635.png b/front/public/images/small/gregtech/gt.metaitem.01/17635.png deleted file mode 100644 index 4a2a561b59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17636.png b/front/public/images/small/gregtech/gt.metaitem.01/17636.png deleted file mode 100644 index c303822651..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17649.png b/front/public/images/small/gregtech/gt.metaitem.01/17649.png deleted file mode 100644 index 61718360dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17765.png b/front/public/images/small/gregtech/gt.metaitem.01/17765.png deleted file mode 100644 index 0e103c66b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17770.png b/front/public/images/small/gregtech/gt.metaitem.01/17770.png deleted file mode 100644 index 3361874d5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17772.png b/front/public/images/small/gregtech/gt.metaitem.01/17772.png deleted file mode 100644 index b0a28cd2cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17804.png b/front/public/images/small/gregtech/gt.metaitem.01/17804.png deleted file mode 100644 index fe57dd1dba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17809.png b/front/public/images/small/gregtech/gt.metaitem.01/17809.png deleted file mode 100644 index 0b001c1546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17810.png b/front/public/images/small/gregtech/gt.metaitem.01/17810.png deleted file mode 100644 index 6e4e9bcbd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17811.png b/front/public/images/small/gregtech/gt.metaitem.01/17811.png deleted file mode 100644 index 55b78b2693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17811.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17812.png b/front/public/images/small/gregtech/gt.metaitem.01/17812.png deleted file mode 100644 index ac12df65ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17829.png b/front/public/images/small/gregtech/gt.metaitem.01/17829.png deleted file mode 100644 index e6bd25e3cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17844.png b/front/public/images/small/gregtech/gt.metaitem.01/17844.png deleted file mode 100644 index 38b0078917..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17844.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17845.png b/front/public/images/small/gregtech/gt.metaitem.01/17845.png deleted file mode 100644 index 6d64c3be37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17845.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17849.png b/front/public/images/small/gregtech/gt.metaitem.01/17849.png deleted file mode 100644 index dfa0ae83b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17850.png b/front/public/images/small/gregtech/gt.metaitem.01/17850.png deleted file mode 100644 index e87d9f4bdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17856.png b/front/public/images/small/gregtech/gt.metaitem.01/17856.png deleted file mode 100644 index 81d4f5ba7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17868.png b/front/public/images/small/gregtech/gt.metaitem.01/17868.png deleted file mode 100644 index b03e74e187..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17874.png b/front/public/images/small/gregtech/gt.metaitem.01/17874.png deleted file mode 100644 index 52f036af47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17880.png b/front/public/images/small/gregtech/gt.metaitem.01/17880.png deleted file mode 100644 index 15baaa139e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17884.png b/front/public/images/small/gregtech/gt.metaitem.01/17884.png deleted file mode 100644 index 096c039c58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17889.png b/front/public/images/small/gregtech/gt.metaitem.01/17889.png deleted file mode 100644 index aeb03c7b28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17890.png b/front/public/images/small/gregtech/gt.metaitem.01/17890.png deleted file mode 100644 index 6b24e5c1cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17912.png b/front/public/images/small/gregtech/gt.metaitem.01/17912.png deleted file mode 100644 index ae62f3fd36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17913.png b/front/public/images/small/gregtech/gt.metaitem.01/17913.png deleted file mode 100644 index a0412c0377..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17947.png b/front/public/images/small/gregtech/gt.metaitem.01/17947.png deleted file mode 100644 index 05d6998fdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17947.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17951.png b/front/public/images/small/gregtech/gt.metaitem.01/17951.png deleted file mode 100644 index c0d15e3a8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17952.png b/front/public/images/small/gregtech/gt.metaitem.01/17952.png deleted file mode 100644 index c73b03b27d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17956.png b/front/public/images/small/gregtech/gt.metaitem.01/17956.png deleted file mode 100644 index b8fff18d83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17966.png b/front/public/images/small/gregtech/gt.metaitem.01/17966.png deleted file mode 100644 index 5b30159222..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17970.png b/front/public/images/small/gregtech/gt.metaitem.01/17970.png deleted file mode 100644 index 98f5b96c3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17974.png b/front/public/images/small/gregtech/gt.metaitem.01/17974.png deleted file mode 100644 index 4ec409c06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17975.png b/front/public/images/small/gregtech/gt.metaitem.01/17975.png deleted file mode 100644 index 38b35277ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17976.png b/front/public/images/small/gregtech/gt.metaitem.01/17976.png deleted file mode 100644 index 8dba9b303c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17977.png b/front/public/images/small/gregtech/gt.metaitem.01/17977.png deleted file mode 100644 index fb0f2e6a19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17978.png b/front/public/images/small/gregtech/gt.metaitem.01/17978.png deleted file mode 100644 index 87532dc7b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17979.png b/front/public/images/small/gregtech/gt.metaitem.01/17979.png deleted file mode 100644 index ed19062d63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17980.png b/front/public/images/small/gregtech/gt.metaitem.01/17980.png deleted file mode 100644 index d321c48f2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17981.png b/front/public/images/small/gregtech/gt.metaitem.01/17981.png deleted file mode 100644 index eba8386881..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17982.png b/front/public/images/small/gregtech/gt.metaitem.01/17982.png deleted file mode 100644 index 1e175b0b33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17984.png b/front/public/images/small/gregtech/gt.metaitem.01/17984.png deleted file mode 100644 index 7e68d0dacc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17985.png b/front/public/images/small/gregtech/gt.metaitem.01/17985.png deleted file mode 100644 index 848cb5578d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17986.png b/front/public/images/small/gregtech/gt.metaitem.01/17986.png deleted file mode 100644 index 9fc055fc25..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17987.png b/front/public/images/small/gregtech/gt.metaitem.01/17987.png deleted file mode 100644 index ec65e2dead..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17988.png b/front/public/images/small/gregtech/gt.metaitem.01/17988.png deleted file mode 100644 index 1e843d21e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17989.png b/front/public/images/small/gregtech/gt.metaitem.01/17989.png deleted file mode 100644 index 981e074895..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17990.png b/front/public/images/small/gregtech/gt.metaitem.01/17990.png deleted file mode 100644 index 02cbc04dca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17991.png b/front/public/images/small/gregtech/gt.metaitem.01/17991.png deleted file mode 100644 index 176ed5efe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/17992.png b/front/public/images/small/gregtech/gt.metaitem.01/17992.png deleted file mode 100644 index adf63c3f44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/17992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18006.png b/front/public/images/small/gregtech/gt.metaitem.01/18006.png deleted file mode 100644 index ed1ac60ef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18008.png b/front/public/images/small/gregtech/gt.metaitem.01/18008.png deleted file mode 100644 index 8ee45c4534..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18010.png b/front/public/images/small/gregtech/gt.metaitem.01/18010.png deleted file mode 100644 index ef11197796..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18018.png b/front/public/images/small/gregtech/gt.metaitem.01/18018.png deleted file mode 100644 index 01f059e0b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18019.png b/front/public/images/small/gregtech/gt.metaitem.01/18019.png deleted file mode 100644 index ca86dba414..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18020.png b/front/public/images/small/gregtech/gt.metaitem.01/18020.png deleted file mode 100644 index 38352af7a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18025.png b/front/public/images/small/gregtech/gt.metaitem.01/18025.png deleted file mode 100644 index 6392e5c451..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18027.png b/front/public/images/small/gregtech/gt.metaitem.01/18027.png deleted file mode 100644 index 64ae9a38d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18028.png b/front/public/images/small/gregtech/gt.metaitem.01/18028.png deleted file mode 100644 index b62ee33fac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18029.png b/front/public/images/small/gregtech/gt.metaitem.01/18029.png deleted file mode 100644 index 183db78f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18030.png b/front/public/images/small/gregtech/gt.metaitem.01/18030.png deleted file mode 100644 index 53d35f5f1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18031.png b/front/public/images/small/gregtech/gt.metaitem.01/18031.png deleted file mode 100644 index bd1e74a2a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18032.png b/front/public/images/small/gregtech/gt.metaitem.01/18032.png deleted file mode 100644 index 86ca391863..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18033.png b/front/public/images/small/gregtech/gt.metaitem.01/18033.png deleted file mode 100644 index 728b3dee5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18034.png b/front/public/images/small/gregtech/gt.metaitem.01/18034.png deleted file mode 100644 index bd361073f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18035.png b/front/public/images/small/gregtech/gt.metaitem.01/18035.png deleted file mode 100644 index 603c212080..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18036.png b/front/public/images/small/gregtech/gt.metaitem.01/18036.png deleted file mode 100644 index 4a700eee3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18037.png b/front/public/images/small/gregtech/gt.metaitem.01/18037.png deleted file mode 100644 index 439dfa909d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18039.png b/front/public/images/small/gregtech/gt.metaitem.01/18039.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18043.png b/front/public/images/small/gregtech/gt.metaitem.01/18043.png deleted file mode 100644 index e708bf6208..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18045.png b/front/public/images/small/gregtech/gt.metaitem.01/18045.png deleted file mode 100644 index 74ee93d318..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18047.png b/front/public/images/small/gregtech/gt.metaitem.01/18047.png deleted file mode 100644 index 839157ca1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18048.png b/front/public/images/small/gregtech/gt.metaitem.01/18048.png deleted file mode 100644 index c4d2e4128c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18052.png b/front/public/images/small/gregtech/gt.metaitem.01/18052.png deleted file mode 100644 index 948c324c24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18054.png b/front/public/images/small/gregtech/gt.metaitem.01/18054.png deleted file mode 100644 index 439dfa909d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18056.png b/front/public/images/small/gregtech/gt.metaitem.01/18056.png deleted file mode 100644 index d80ab07e9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18057.png b/front/public/images/small/gregtech/gt.metaitem.01/18057.png deleted file mode 100644 index 0d48289b92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18058.png b/front/public/images/small/gregtech/gt.metaitem.01/18058.png deleted file mode 100644 index 3b67a194aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18059.png b/front/public/images/small/gregtech/gt.metaitem.01/18059.png deleted file mode 100644 index d72114113d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18062.png b/front/public/images/small/gregtech/gt.metaitem.01/18062.png deleted file mode 100644 index 3636eb05f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18063.png b/front/public/images/small/gregtech/gt.metaitem.01/18063.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18064.png b/front/public/images/small/gregtech/gt.metaitem.01/18064.png deleted file mode 100644 index 003e018be6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18065.png b/front/public/images/small/gregtech/gt.metaitem.01/18065.png deleted file mode 100644 index b97a04d817..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18066.png b/front/public/images/small/gregtech/gt.metaitem.01/18066.png deleted file mode 100644 index a62e6fb875..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18067.png b/front/public/images/small/gregtech/gt.metaitem.01/18067.png deleted file mode 100644 index ef6e7a6dde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18068.png b/front/public/images/small/gregtech/gt.metaitem.01/18068.png deleted file mode 100644 index 9c40bf5cd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18069.png b/front/public/images/small/gregtech/gt.metaitem.01/18069.png deleted file mode 100644 index 3608a9c92b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18070.png b/front/public/images/small/gregtech/gt.metaitem.01/18070.png deleted file mode 100644 index 58b3903340..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18071.png b/front/public/images/small/gregtech/gt.metaitem.01/18071.png deleted file mode 100644 index 3ae8a72ec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18072.png b/front/public/images/small/gregtech/gt.metaitem.01/18072.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18073.png b/front/public/images/small/gregtech/gt.metaitem.01/18073.png deleted file mode 100644 index 12239b8e07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18074.png b/front/public/images/small/gregtech/gt.metaitem.01/18074.png deleted file mode 100644 index 5d6b73d440..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18075.png b/front/public/images/small/gregtech/gt.metaitem.01/18075.png deleted file mode 100644 index 4557a48846..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18076.png b/front/public/images/small/gregtech/gt.metaitem.01/18076.png deleted file mode 100644 index 59a8c52d94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18077.png b/front/public/images/small/gregtech/gt.metaitem.01/18077.png deleted file mode 100644 index c1d5747ed8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18078.png b/front/public/images/small/gregtech/gt.metaitem.01/18078.png deleted file mode 100644 index d80aa89cbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18080.png b/front/public/images/small/gregtech/gt.metaitem.01/18080.png deleted file mode 100644 index 355b0655ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18081.png b/front/public/images/small/gregtech/gt.metaitem.01/18081.png deleted file mode 100644 index 183db78f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18083.png b/front/public/images/small/gregtech/gt.metaitem.01/18083.png deleted file mode 100644 index 0b8ef4501b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18084.png b/front/public/images/small/gregtech/gt.metaitem.01/18084.png deleted file mode 100644 index e1439b4c42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18085.png b/front/public/images/small/gregtech/gt.metaitem.01/18085.png deleted file mode 100644 index c6f1acd705..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18086.png b/front/public/images/small/gregtech/gt.metaitem.01/18086.png deleted file mode 100644 index 55804554f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18089.png b/front/public/images/small/gregtech/gt.metaitem.01/18089.png deleted file mode 100644 index f36b03fd01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18090.png b/front/public/images/small/gregtech/gt.metaitem.01/18090.png deleted file mode 100644 index 5f07ea5abd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18096.png b/front/public/images/small/gregtech/gt.metaitem.01/18096.png deleted file mode 100644 index 72e65c576a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18097.png b/front/public/images/small/gregtech/gt.metaitem.01/18097.png deleted file mode 100644 index 404f952472..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18098.png b/front/public/images/small/gregtech/gt.metaitem.01/18098.png deleted file mode 100644 index 10ed48c2d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18100.png b/front/public/images/small/gregtech/gt.metaitem.01/18100.png deleted file mode 100644 index 1ce98611c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18101.png b/front/public/images/small/gregtech/gt.metaitem.01/18101.png deleted file mode 100644 index 4eadcc35c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18103.png b/front/public/images/small/gregtech/gt.metaitem.01/18103.png deleted file mode 100644 index 86ca391863..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18111.png b/front/public/images/small/gregtech/gt.metaitem.01/18111.png deleted file mode 100644 index 9f7129ddfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18112.png b/front/public/images/small/gregtech/gt.metaitem.01/18112.png deleted file mode 100644 index bbc2f6581d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18129.png b/front/public/images/small/gregtech/gt.metaitem.01/18129.png deleted file mode 100644 index bd1e74a2a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18131.png b/front/public/images/small/gregtech/gt.metaitem.01/18131.png deleted file mode 100644 index fbff9ae798..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18134.png b/front/public/images/small/gregtech/gt.metaitem.01/18134.png deleted file mode 100644 index 5cf3a18cf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18139.png b/front/public/images/small/gregtech/gt.metaitem.01/18139.png deleted file mode 100644 index 07288725ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18141.png b/front/public/images/small/gregtech/gt.metaitem.01/18141.png deleted file mode 100644 index 5ee3c33d4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18143.png b/front/public/images/small/gregtech/gt.metaitem.01/18143.png deleted file mode 100644 index 90739fb138..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18201.png b/front/public/images/small/gregtech/gt.metaitem.01/18201.png deleted file mode 100644 index 3148307e00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18202.png b/front/public/images/small/gregtech/gt.metaitem.01/18202.png deleted file mode 100644 index c8acf3d166..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18203.png b/front/public/images/small/gregtech/gt.metaitem.01/18203.png deleted file mode 100644 index b5e1330778..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18205.png b/front/public/images/small/gregtech/gt.metaitem.01/18205.png deleted file mode 100644 index 05eae98998..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18300.png b/front/public/images/small/gregtech/gt.metaitem.01/18300.png deleted file mode 100644 index 3be0974a0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18301.png b/front/public/images/small/gregtech/gt.metaitem.01/18301.png deleted file mode 100644 index 4b4bfab853..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18302.png b/front/public/images/small/gregtech/gt.metaitem.01/18302.png deleted file mode 100644 index 6d667e0a7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18303.png b/front/public/images/small/gregtech/gt.metaitem.01/18303.png deleted file mode 100644 index e6c97d6e2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18304.png b/front/public/images/small/gregtech/gt.metaitem.01/18304.png deleted file mode 100644 index a073d2b60a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18305.png b/front/public/images/small/gregtech/gt.metaitem.01/18305.png deleted file mode 100644 index 948c324c24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18306.png b/front/public/images/small/gregtech/gt.metaitem.01/18306.png deleted file mode 100644 index dfd1592625..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18307.png b/front/public/images/small/gregtech/gt.metaitem.01/18307.png deleted file mode 100644 index a073d2b60a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18308.png b/front/public/images/small/gregtech/gt.metaitem.01/18308.png deleted file mode 100644 index d7d87ae12f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18309.png b/front/public/images/small/gregtech/gt.metaitem.01/18309.png deleted file mode 100644 index 093b79bbba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18310.png b/front/public/images/small/gregtech/gt.metaitem.01/18310.png deleted file mode 100644 index 63b5db91a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18311.png b/front/public/images/small/gregtech/gt.metaitem.01/18311.png deleted file mode 100644 index 85b51133c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18312.png b/front/public/images/small/gregtech/gt.metaitem.01/18312.png deleted file mode 100644 index 39a94e0d05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18313.png b/front/public/images/small/gregtech/gt.metaitem.01/18313.png deleted file mode 100644 index 75f11ec0dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18314.png b/front/public/images/small/gregtech/gt.metaitem.01/18314.png deleted file mode 100644 index 510fb9d44a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18315.png b/front/public/images/small/gregtech/gt.metaitem.01/18315.png deleted file mode 100644 index 86614e709e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18316.png b/front/public/images/small/gregtech/gt.metaitem.01/18316.png deleted file mode 100644 index f8fd04bd66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18317.png b/front/public/images/small/gregtech/gt.metaitem.01/18317.png deleted file mode 100644 index 5dde33b151..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18318.png b/front/public/images/small/gregtech/gt.metaitem.01/18318.png deleted file mode 100644 index a7c5bf42f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18319.png b/front/public/images/small/gregtech/gt.metaitem.01/18319.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18320.png b/front/public/images/small/gregtech/gt.metaitem.01/18320.png deleted file mode 100644 index 9c51580d89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18321.png b/front/public/images/small/gregtech/gt.metaitem.01/18321.png deleted file mode 100644 index caf7db0dde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18323.png b/front/public/images/small/gregtech/gt.metaitem.01/18323.png deleted file mode 100644 index 6c2abbbeb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18324.png b/front/public/images/small/gregtech/gt.metaitem.01/18324.png deleted file mode 100644 index 183db78f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18325.png b/front/public/images/small/gregtech/gt.metaitem.01/18325.png deleted file mode 100644 index 7cc9be9cb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18326.png b/front/public/images/small/gregtech/gt.metaitem.01/18326.png deleted file mode 100644 index 34567b88ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18327.png b/front/public/images/small/gregtech/gt.metaitem.01/18327.png deleted file mode 100644 index 010dd77733..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18328.png b/front/public/images/small/gregtech/gt.metaitem.01/18328.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18329.png b/front/public/images/small/gregtech/gt.metaitem.01/18329.png deleted file mode 100644 index 6a3f1b7826..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18330.png b/front/public/images/small/gregtech/gt.metaitem.01/18330.png deleted file mode 100644 index ae1af50d43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18331.png b/front/public/images/small/gregtech/gt.metaitem.01/18331.png deleted file mode 100644 index 3690df20cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18333.png b/front/public/images/small/gregtech/gt.metaitem.01/18333.png deleted file mode 100644 index 42bf36b8c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18334.png b/front/public/images/small/gregtech/gt.metaitem.01/18334.png deleted file mode 100644 index ef6e7a6dde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18335.png b/front/public/images/small/gregtech/gt.metaitem.01/18335.png deleted file mode 100644 index 78a66fc35b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18336.png b/front/public/images/small/gregtech/gt.metaitem.01/18336.png deleted file mode 100644 index 9942bfbaad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18337.png b/front/public/images/small/gregtech/gt.metaitem.01/18337.png deleted file mode 100644 index f864178cf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18338.png b/front/public/images/small/gregtech/gt.metaitem.01/18338.png deleted file mode 100644 index 365e52825b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18339.png b/front/public/images/small/gregtech/gt.metaitem.01/18339.png deleted file mode 100644 index 5f1c4d1ec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18340.png b/front/public/images/small/gregtech/gt.metaitem.01/18340.png deleted file mode 100644 index b48c13e554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18341.png b/front/public/images/small/gregtech/gt.metaitem.01/18341.png deleted file mode 100644 index d562946a05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18342.png b/front/public/images/small/gregtech/gt.metaitem.01/18342.png deleted file mode 100644 index be6fddf79c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18343.png b/front/public/images/small/gregtech/gt.metaitem.01/18343.png deleted file mode 100644 index a0e88d92e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18344.png b/front/public/images/small/gregtech/gt.metaitem.01/18344.png deleted file mode 100644 index fa6e6fbcf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18345.png b/front/public/images/small/gregtech/gt.metaitem.01/18345.png deleted file mode 100644 index 4cf71f3d34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18346.png b/front/public/images/small/gregtech/gt.metaitem.01/18346.png deleted file mode 100644 index 5e7f613e2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18348.png b/front/public/images/small/gregtech/gt.metaitem.01/18348.png deleted file mode 100644 index e208e7cfb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18349.png b/front/public/images/small/gregtech/gt.metaitem.01/18349.png deleted file mode 100644 index a880fc903e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18350.png b/front/public/images/small/gregtech/gt.metaitem.01/18350.png deleted file mode 100644 index aee657a212..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18351.png b/front/public/images/small/gregtech/gt.metaitem.01/18351.png deleted file mode 100644 index b86bfe5a2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18352.png b/front/public/images/small/gregtech/gt.metaitem.01/18352.png deleted file mode 100644 index 42e152c589..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18353.png b/front/public/images/small/gregtech/gt.metaitem.01/18353.png deleted file mode 100644 index defeb00bdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18354.png b/front/public/images/small/gregtech/gt.metaitem.01/18354.png deleted file mode 100644 index 9b3320bbc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18355.png b/front/public/images/small/gregtech/gt.metaitem.01/18355.png deleted file mode 100644 index 324114870b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18356.png b/front/public/images/small/gregtech/gt.metaitem.01/18356.png deleted file mode 100644 index 64ac782592..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18357.png b/front/public/images/small/gregtech/gt.metaitem.01/18357.png deleted file mode 100644 index 71b8ab6716..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18358.png b/front/public/images/small/gregtech/gt.metaitem.01/18358.png deleted file mode 100644 index 98242ee6f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18359.png b/front/public/images/small/gregtech/gt.metaitem.01/18359.png deleted file mode 100644 index bc56ef5515..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18360.png b/front/public/images/small/gregtech/gt.metaitem.01/18360.png deleted file mode 100644 index a8feaa989b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18361.png b/front/public/images/small/gregtech/gt.metaitem.01/18361.png deleted file mode 100644 index de054e09c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18362.png b/front/public/images/small/gregtech/gt.metaitem.01/18362.png deleted file mode 100644 index 5d4c0376ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18363.png b/front/public/images/small/gregtech/gt.metaitem.01/18363.png deleted file mode 100644 index 86ca391863..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18364.png b/front/public/images/small/gregtech/gt.metaitem.01/18364.png deleted file mode 100644 index 3467609d87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18365.png b/front/public/images/small/gregtech/gt.metaitem.01/18365.png deleted file mode 100644 index 0ccdc93acc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18366.png b/front/public/images/small/gregtech/gt.metaitem.01/18366.png deleted file mode 100644 index 7534159548..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18367.png b/front/public/images/small/gregtech/gt.metaitem.01/18367.png deleted file mode 100644 index 0122d71ef3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18368.png b/front/public/images/small/gregtech/gt.metaitem.01/18368.png deleted file mode 100644 index ea1a824cfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18369.png b/front/public/images/small/gregtech/gt.metaitem.01/18369.png deleted file mode 100644 index 8ef420aba8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18370.png b/front/public/images/small/gregtech/gt.metaitem.01/18370.png deleted file mode 100644 index ac58594ff8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18371.png b/front/public/images/small/gregtech/gt.metaitem.01/18371.png deleted file mode 100644 index 6acb4ab989..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18372.png b/front/public/images/small/gregtech/gt.metaitem.01/18372.png deleted file mode 100644 index 63b7c9043c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18373.png b/front/public/images/small/gregtech/gt.metaitem.01/18373.png deleted file mode 100644 index 52f34f909f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18374.png b/front/public/images/small/gregtech/gt.metaitem.01/18374.png deleted file mode 100644 index 9df5c81101..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18378.png b/front/public/images/small/gregtech/gt.metaitem.01/18378.png deleted file mode 100644 index 0f49d79e84..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18379.png b/front/public/images/small/gregtech/gt.metaitem.01/18379.png deleted file mode 100644 index 7a6b01493e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18380.png b/front/public/images/small/gregtech/gt.metaitem.01/18380.png deleted file mode 100644 index 19a5f5d32d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18381.png b/front/public/images/small/gregtech/gt.metaitem.01/18381.png deleted file mode 100644 index 16bcb7f3c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18382.png b/front/public/images/small/gregtech/gt.metaitem.01/18382.png deleted file mode 100644 index caf29e902a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18383.png b/front/public/images/small/gregtech/gt.metaitem.01/18383.png deleted file mode 100644 index 7239d95cc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18384.png b/front/public/images/small/gregtech/gt.metaitem.01/18384.png deleted file mode 100644 index a7f5fae3e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18385.png b/front/public/images/small/gregtech/gt.metaitem.01/18385.png deleted file mode 100644 index 2fe34d2794..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18386.png b/front/public/images/small/gregtech/gt.metaitem.01/18386.png deleted file mode 100644 index da1806e93e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18387.png b/front/public/images/small/gregtech/gt.metaitem.01/18387.png deleted file mode 100644 index d81b8654b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18388.png b/front/public/images/small/gregtech/gt.metaitem.01/18388.png deleted file mode 100644 index 183db78f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18389.png b/front/public/images/small/gregtech/gt.metaitem.01/18389.png deleted file mode 100644 index 10f4f78adf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18390.png b/front/public/images/small/gregtech/gt.metaitem.01/18390.png deleted file mode 100644 index 588ab73ea5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18391.png b/front/public/images/small/gregtech/gt.metaitem.01/18391.png deleted file mode 100644 index 03d2426805..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18392.png b/front/public/images/small/gregtech/gt.metaitem.01/18392.png deleted file mode 100644 index 45a985de24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18393.png b/front/public/images/small/gregtech/gt.metaitem.01/18393.png deleted file mode 100644 index 598839a415..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18394.png b/front/public/images/small/gregtech/gt.metaitem.01/18394.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18395.png b/front/public/images/small/gregtech/gt.metaitem.01/18395.png deleted file mode 100644 index 183db78f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18397.png b/front/public/images/small/gregtech/gt.metaitem.01/18397.png deleted file mode 100644 index 6774f65a89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18398.png b/front/public/images/small/gregtech/gt.metaitem.01/18398.png deleted file mode 100644 index bb69c005b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18399.png b/front/public/images/small/gregtech/gt.metaitem.01/18399.png deleted file mode 100644 index b0b8913d0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18400.png b/front/public/images/small/gregtech/gt.metaitem.01/18400.png deleted file mode 100644 index e2bb1cb4f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18401.png b/front/public/images/small/gregtech/gt.metaitem.01/18401.png deleted file mode 100644 index 5691fd7b36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18402.png b/front/public/images/small/gregtech/gt.metaitem.01/18402.png deleted file mode 100644 index dda619ce1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18403.png b/front/public/images/small/gregtech/gt.metaitem.01/18403.png deleted file mode 100644 index bf8f2b2697..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18404.png b/front/public/images/small/gregtech/gt.metaitem.01/18404.png deleted file mode 100644 index b4f131d5cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18405.png b/front/public/images/small/gregtech/gt.metaitem.01/18405.png deleted file mode 100644 index bf984c5498..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18406.png b/front/public/images/small/gregtech/gt.metaitem.01/18406.png deleted file mode 100644 index 9c6970e748..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18407.png b/front/public/images/small/gregtech/gt.metaitem.01/18407.png deleted file mode 100644 index 8dedd7393e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18408.png b/front/public/images/small/gregtech/gt.metaitem.01/18408.png deleted file mode 100644 index a9de10ff15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18470.png b/front/public/images/small/gregtech/gt.metaitem.01/18470.png deleted file mode 100644 index 92483a8826..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18471.png b/front/public/images/small/gregtech/gt.metaitem.01/18471.png deleted file mode 100644 index 0d48289b92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18472.png b/front/public/images/small/gregtech/gt.metaitem.01/18472.png deleted file mode 100644 index 183db78f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18473.png b/front/public/images/small/gregtech/gt.metaitem.01/18473.png deleted file mode 100644 index ef6e7a6dde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18485.png b/front/public/images/small/gregtech/gt.metaitem.01/18485.png deleted file mode 100644 index 410ae1467e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18488.png b/front/public/images/small/gregtech/gt.metaitem.01/18488.png deleted file mode 100644 index 0efdb091de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18489.png b/front/public/images/small/gregtech/gt.metaitem.01/18489.png deleted file mode 100644 index de10d47207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18521.png b/front/public/images/small/gregtech/gt.metaitem.01/18521.png deleted file mode 100644 index a7c5bf42f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18529.png b/front/public/images/small/gregtech/gt.metaitem.01/18529.png deleted file mode 100644 index 5f1d5fc923..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18576.png b/front/public/images/small/gregtech/gt.metaitem.01/18576.png deleted file mode 100644 index efbb1f0013..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18581.png b/front/public/images/small/gregtech/gt.metaitem.01/18581.png deleted file mode 100644 index 6ffb89b0dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18582.png b/front/public/images/small/gregtech/gt.metaitem.01/18582.png deleted file mode 100644 index 74a669155f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18585.png b/front/public/images/small/gregtech/gt.metaitem.01/18585.png deleted file mode 100644 index b49bb4a337..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18586.png b/front/public/images/small/gregtech/gt.metaitem.01/18586.png deleted file mode 100644 index 7f582f1e9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18588.png b/front/public/images/small/gregtech/gt.metaitem.01/18588.png deleted file mode 100644 index 3096e6e130..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18599.png b/front/public/images/small/gregtech/gt.metaitem.01/18599.png deleted file mode 100644 index fd57c581d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18610.png b/front/public/images/small/gregtech/gt.metaitem.01/18610.png deleted file mode 100644 index b858433c10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18613.png b/front/public/images/small/gregtech/gt.metaitem.01/18613.png deleted file mode 100644 index 9be0c67a72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18631.png b/front/public/images/small/gregtech/gt.metaitem.01/18631.png deleted file mode 100644 index dc77003d76..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18635.png b/front/public/images/small/gregtech/gt.metaitem.01/18635.png deleted file mode 100644 index 2eba8d4fdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18636.png b/front/public/images/small/gregtech/gt.metaitem.01/18636.png deleted file mode 100644 index 1da43ff88c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18649.png b/front/public/images/small/gregtech/gt.metaitem.01/18649.png deleted file mode 100644 index 970e5da07e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18765.png b/front/public/images/small/gregtech/gt.metaitem.01/18765.png deleted file mode 100644 index 564c622b8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18770.png b/front/public/images/small/gregtech/gt.metaitem.01/18770.png deleted file mode 100644 index 46ad2da5ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18772.png b/front/public/images/small/gregtech/gt.metaitem.01/18772.png deleted file mode 100644 index bbe7e8a749..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18829.png b/front/public/images/small/gregtech/gt.metaitem.01/18829.png deleted file mode 100644 index 1d52d44e65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18856.png b/front/public/images/small/gregtech/gt.metaitem.01/18856.png deleted file mode 100644 index 6f5c283e33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18868.png b/front/public/images/small/gregtech/gt.metaitem.01/18868.png deleted file mode 100644 index f772609ed8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18874.png b/front/public/images/small/gregtech/gt.metaitem.01/18874.png deleted file mode 100644 index 86ca391863..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18879.png b/front/public/images/small/gregtech/gt.metaitem.01/18879.png deleted file mode 100644 index 1cf524968a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18879.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18880.png b/front/public/images/small/gregtech/gt.metaitem.01/18880.png deleted file mode 100644 index 7f582f1e9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18884.png b/front/public/images/small/gregtech/gt.metaitem.01/18884.png deleted file mode 100644 index 7cc9be9cb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18912.png b/front/public/images/small/gregtech/gt.metaitem.01/18912.png deleted file mode 100644 index 5996d9581f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18913.png b/front/public/images/small/gregtech/gt.metaitem.01/18913.png deleted file mode 100644 index e208e7cfb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18951.png b/front/public/images/small/gregtech/gt.metaitem.01/18951.png deleted file mode 100644 index 1de883c6c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18952.png b/front/public/images/small/gregtech/gt.metaitem.01/18952.png deleted file mode 100644 index 1fdaa126d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18956.png b/front/public/images/small/gregtech/gt.metaitem.01/18956.png deleted file mode 100644 index 0a4353bcff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18966.png b/front/public/images/small/gregtech/gt.metaitem.01/18966.png deleted file mode 100644 index ae7e7725bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18970.png b/front/public/images/small/gregtech/gt.metaitem.01/18970.png deleted file mode 100644 index cab6fa408a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18974.png b/front/public/images/small/gregtech/gt.metaitem.01/18974.png deleted file mode 100644 index 746eb95be7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18975.png b/front/public/images/small/gregtech/gt.metaitem.01/18975.png deleted file mode 100644 index 09dede0a9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18976.png b/front/public/images/small/gregtech/gt.metaitem.01/18976.png deleted file mode 100644 index cb149f3527..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18977.png b/front/public/images/small/gregtech/gt.metaitem.01/18977.png deleted file mode 100644 index f21f001f88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18978.png b/front/public/images/small/gregtech/gt.metaitem.01/18978.png deleted file mode 100644 index e3a66fba88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18979.png b/front/public/images/small/gregtech/gt.metaitem.01/18979.png deleted file mode 100644 index e92ee63a88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18980.png b/front/public/images/small/gregtech/gt.metaitem.01/18980.png deleted file mode 100644 index 4b5aa00f47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18981.png b/front/public/images/small/gregtech/gt.metaitem.01/18981.png deleted file mode 100644 index e396d8224d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18982.png b/front/public/images/small/gregtech/gt.metaitem.01/18982.png deleted file mode 100644 index 1a81e10167..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18984.png b/front/public/images/small/gregtech/gt.metaitem.01/18984.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18985.png b/front/public/images/small/gregtech/gt.metaitem.01/18985.png deleted file mode 100644 index 227618f491..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18986.png b/front/public/images/small/gregtech/gt.metaitem.01/18986.png deleted file mode 100644 index e7fcefce01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18987.png b/front/public/images/small/gregtech/gt.metaitem.01/18987.png deleted file mode 100644 index de5736dda3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18988.png b/front/public/images/small/gregtech/gt.metaitem.01/18988.png deleted file mode 100644 index e439680693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18989.png b/front/public/images/small/gregtech/gt.metaitem.01/18989.png deleted file mode 100644 index ec53edf313..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18990.png b/front/public/images/small/gregtech/gt.metaitem.01/18990.png deleted file mode 100644 index db5530072c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18991.png b/front/public/images/small/gregtech/gt.metaitem.01/18991.png deleted file mode 100644 index 0dae8217f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/18992.png b/front/public/images/small/gregtech/gt.metaitem.01/18992.png deleted file mode 100644 index e4ad45c777..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/18992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19006.png b/front/public/images/small/gregtech/gt.metaitem.01/19006.png deleted file mode 100644 index e4fac78e01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19008.png b/front/public/images/small/gregtech/gt.metaitem.01/19008.png deleted file mode 100644 index a1940b18db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19010.png b/front/public/images/small/gregtech/gt.metaitem.01/19010.png deleted file mode 100644 index 7ccc489626..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19018.png b/front/public/images/small/gregtech/gt.metaitem.01/19018.png deleted file mode 100644 index 58ffb18d56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19019.png b/front/public/images/small/gregtech/gt.metaitem.01/19019.png deleted file mode 100644 index bba0bf88c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19020.png b/front/public/images/small/gregtech/gt.metaitem.01/19020.png deleted file mode 100644 index 5d6cc5b851..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19025.png b/front/public/images/small/gregtech/gt.metaitem.01/19025.png deleted file mode 100644 index 149b623fcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19027.png b/front/public/images/small/gregtech/gt.metaitem.01/19027.png deleted file mode 100644 index 83366c5fec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19028.png b/front/public/images/small/gregtech/gt.metaitem.01/19028.png deleted file mode 100644 index 58115568e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19029.png b/front/public/images/small/gregtech/gt.metaitem.01/19029.png deleted file mode 100644 index 5ddc15da54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19030.png b/front/public/images/small/gregtech/gt.metaitem.01/19030.png deleted file mode 100644 index 70c1df6c57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19031.png b/front/public/images/small/gregtech/gt.metaitem.01/19031.png deleted file mode 100644 index c29dd1e572..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19032.png b/front/public/images/small/gregtech/gt.metaitem.01/19032.png deleted file mode 100644 index ddfae18c0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19033.png b/front/public/images/small/gregtech/gt.metaitem.01/19033.png deleted file mode 100644 index f3da0e0733..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19034.png b/front/public/images/small/gregtech/gt.metaitem.01/19034.png deleted file mode 100644 index 01fd894108..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19035.png b/front/public/images/small/gregtech/gt.metaitem.01/19035.png deleted file mode 100644 index 400b1354da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19036.png b/front/public/images/small/gregtech/gt.metaitem.01/19036.png deleted file mode 100644 index e2cd5c8a55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19037.png b/front/public/images/small/gregtech/gt.metaitem.01/19037.png deleted file mode 100644 index 9125c07369..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19039.png b/front/public/images/small/gregtech/gt.metaitem.01/19039.png deleted file mode 100644 index 583bebf26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19043.png b/front/public/images/small/gregtech/gt.metaitem.01/19043.png deleted file mode 100644 index 91d5688aa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19045.png b/front/public/images/small/gregtech/gt.metaitem.01/19045.png deleted file mode 100644 index 9346abb7e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19047.png b/front/public/images/small/gregtech/gt.metaitem.01/19047.png deleted file mode 100644 index 62c2191d81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19048.png b/front/public/images/small/gregtech/gt.metaitem.01/19048.png deleted file mode 100644 index 086a04d20f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19052.png b/front/public/images/small/gregtech/gt.metaitem.01/19052.png deleted file mode 100644 index 51c88485d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19054.png b/front/public/images/small/gregtech/gt.metaitem.01/19054.png deleted file mode 100644 index 9125c07369..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19056.png b/front/public/images/small/gregtech/gt.metaitem.01/19056.png deleted file mode 100644 index 0a13cec24d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19057.png b/front/public/images/small/gregtech/gt.metaitem.01/19057.png deleted file mode 100644 index d56eeb0616..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19058.png b/front/public/images/small/gregtech/gt.metaitem.01/19058.png deleted file mode 100644 index ac288aedf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19059.png b/front/public/images/small/gregtech/gt.metaitem.01/19059.png deleted file mode 100644 index 9bb44f1055..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19062.png b/front/public/images/small/gregtech/gt.metaitem.01/19062.png deleted file mode 100644 index ef490599cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19063.png b/front/public/images/small/gregtech/gt.metaitem.01/19063.png deleted file mode 100644 index 583bebf26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19064.png b/front/public/images/small/gregtech/gt.metaitem.01/19064.png deleted file mode 100644 index dd09d63d19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19065.png b/front/public/images/small/gregtech/gt.metaitem.01/19065.png deleted file mode 100644 index 9a4e925fd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19066.png b/front/public/images/small/gregtech/gt.metaitem.01/19066.png deleted file mode 100644 index d2797f54ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19067.png b/front/public/images/small/gregtech/gt.metaitem.01/19067.png deleted file mode 100644 index 687af6f79a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19068.png b/front/public/images/small/gregtech/gt.metaitem.01/19068.png deleted file mode 100644 index fe5f8925e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19069.png b/front/public/images/small/gregtech/gt.metaitem.01/19069.png deleted file mode 100644 index d0096c5e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19070.png b/front/public/images/small/gregtech/gt.metaitem.01/19070.png deleted file mode 100644 index f1ee06d3b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19071.png b/front/public/images/small/gregtech/gt.metaitem.01/19071.png deleted file mode 100644 index 5160181e56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19072.png b/front/public/images/small/gregtech/gt.metaitem.01/19072.png deleted file mode 100644 index 583bebf26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19073.png b/front/public/images/small/gregtech/gt.metaitem.01/19073.png deleted file mode 100644 index 5bdd65c2a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19074.png b/front/public/images/small/gregtech/gt.metaitem.01/19074.png deleted file mode 100644 index 7a84df33a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19075.png b/front/public/images/small/gregtech/gt.metaitem.01/19075.png deleted file mode 100644 index 08f1fcfd50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19076.png b/front/public/images/small/gregtech/gt.metaitem.01/19076.png deleted file mode 100644 index c7b547bc2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19077.png b/front/public/images/small/gregtech/gt.metaitem.01/19077.png deleted file mode 100644 index e6981d70a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19078.png b/front/public/images/small/gregtech/gt.metaitem.01/19078.png deleted file mode 100644 index bcaa1352f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19080.png b/front/public/images/small/gregtech/gt.metaitem.01/19080.png deleted file mode 100644 index 457c63787a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19081.png b/front/public/images/small/gregtech/gt.metaitem.01/19081.png deleted file mode 100644 index 5ddc15da54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19083.png b/front/public/images/small/gregtech/gt.metaitem.01/19083.png deleted file mode 100644 index 87f8ff2067..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19084.png b/front/public/images/small/gregtech/gt.metaitem.01/19084.png deleted file mode 100644 index 9ed3c07659..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19085.png b/front/public/images/small/gregtech/gt.metaitem.01/19085.png deleted file mode 100644 index a07324bae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19086.png b/front/public/images/small/gregtech/gt.metaitem.01/19086.png deleted file mode 100644 index cafc38e600..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19089.png b/front/public/images/small/gregtech/gt.metaitem.01/19089.png deleted file mode 100644 index 2a396acb7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19090.png b/front/public/images/small/gregtech/gt.metaitem.01/19090.png deleted file mode 100644 index fb5aae8c6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19096.png b/front/public/images/small/gregtech/gt.metaitem.01/19096.png deleted file mode 100644 index 5f67a5cb7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19097.png b/front/public/images/small/gregtech/gt.metaitem.01/19097.png deleted file mode 100644 index dc89991376..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19098.png b/front/public/images/small/gregtech/gt.metaitem.01/19098.png deleted file mode 100644 index 13beddb6af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19100.png b/front/public/images/small/gregtech/gt.metaitem.01/19100.png deleted file mode 100644 index 6c58507fbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19101.png b/front/public/images/small/gregtech/gt.metaitem.01/19101.png deleted file mode 100644 index 60bdac45c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19103.png b/front/public/images/small/gregtech/gt.metaitem.01/19103.png deleted file mode 100644 index ddfae18c0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19111.png b/front/public/images/small/gregtech/gt.metaitem.01/19111.png deleted file mode 100644 index f08a07efd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19112.png b/front/public/images/small/gregtech/gt.metaitem.01/19112.png deleted file mode 100644 index 5595d94137..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19129.png b/front/public/images/small/gregtech/gt.metaitem.01/19129.png deleted file mode 100644 index c29dd1e572..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19131.png b/front/public/images/small/gregtech/gt.metaitem.01/19131.png deleted file mode 100644 index 81001b020d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19134.png b/front/public/images/small/gregtech/gt.metaitem.01/19134.png deleted file mode 100644 index ddc61b3ebd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19139.png b/front/public/images/small/gregtech/gt.metaitem.01/19139.png deleted file mode 100644 index 72b204f9c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19141.png b/front/public/images/small/gregtech/gt.metaitem.01/19141.png deleted file mode 100644 index 9b58e1a06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19143.png b/front/public/images/small/gregtech/gt.metaitem.01/19143.png deleted file mode 100644 index e3f1add10f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19201.png b/front/public/images/small/gregtech/gt.metaitem.01/19201.png deleted file mode 100644 index c19906b195..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19202.png b/front/public/images/small/gregtech/gt.metaitem.01/19202.png deleted file mode 100644 index 367340385b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19203.png b/front/public/images/small/gregtech/gt.metaitem.01/19203.png deleted file mode 100644 index 7100f93f4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19205.png b/front/public/images/small/gregtech/gt.metaitem.01/19205.png deleted file mode 100644 index 0b06928249..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19300.png b/front/public/images/small/gregtech/gt.metaitem.01/19300.png deleted file mode 100644 index 35bc01bf63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19301.png b/front/public/images/small/gregtech/gt.metaitem.01/19301.png deleted file mode 100644 index e618dfcf4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19302.png b/front/public/images/small/gregtech/gt.metaitem.01/19302.png deleted file mode 100644 index 51b6df02f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19303.png b/front/public/images/small/gregtech/gt.metaitem.01/19303.png deleted file mode 100644 index e1e9b0ff5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19304.png b/front/public/images/small/gregtech/gt.metaitem.01/19304.png deleted file mode 100644 index 648848e113..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19305.png b/front/public/images/small/gregtech/gt.metaitem.01/19305.png deleted file mode 100644 index 51c88485d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19306.png b/front/public/images/small/gregtech/gt.metaitem.01/19306.png deleted file mode 100644 index 633e141f42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19307.png b/front/public/images/small/gregtech/gt.metaitem.01/19307.png deleted file mode 100644 index 648848e113..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19308.png b/front/public/images/small/gregtech/gt.metaitem.01/19308.png deleted file mode 100644 index 09cb944560..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19309.png b/front/public/images/small/gregtech/gt.metaitem.01/19309.png deleted file mode 100644 index 247e827885..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19310.png b/front/public/images/small/gregtech/gt.metaitem.01/19310.png deleted file mode 100644 index 67a5af2f3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19311.png b/front/public/images/small/gregtech/gt.metaitem.01/19311.png deleted file mode 100644 index da617662d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19312.png b/front/public/images/small/gregtech/gt.metaitem.01/19312.png deleted file mode 100644 index 92641fa195..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19313.png b/front/public/images/small/gregtech/gt.metaitem.01/19313.png deleted file mode 100644 index 7ef886515f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19314.png b/front/public/images/small/gregtech/gt.metaitem.01/19314.png deleted file mode 100644 index 54321d9996..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19315.png b/front/public/images/small/gregtech/gt.metaitem.01/19315.png deleted file mode 100644 index ee0eaa5156..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19316.png b/front/public/images/small/gregtech/gt.metaitem.01/19316.png deleted file mode 100644 index 1dec84c7ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19317.png b/front/public/images/small/gregtech/gt.metaitem.01/19317.png deleted file mode 100644 index 63e4ddc7a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19318.png b/front/public/images/small/gregtech/gt.metaitem.01/19318.png deleted file mode 100644 index 6af3d94d91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19319.png b/front/public/images/small/gregtech/gt.metaitem.01/19319.png deleted file mode 100644 index 583bebf26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19320.png b/front/public/images/small/gregtech/gt.metaitem.01/19320.png deleted file mode 100644 index 4aced11f8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19321.png b/front/public/images/small/gregtech/gt.metaitem.01/19321.png deleted file mode 100644 index bde91b0496..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19323.png b/front/public/images/small/gregtech/gt.metaitem.01/19323.png deleted file mode 100644 index a8ebefc42d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19324.png b/front/public/images/small/gregtech/gt.metaitem.01/19324.png deleted file mode 100644 index 5ddc15da54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19325.png b/front/public/images/small/gregtech/gt.metaitem.01/19325.png deleted file mode 100644 index 20f4e4e78e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19326.png b/front/public/images/small/gregtech/gt.metaitem.01/19326.png deleted file mode 100644 index 1a37930423..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19327.png b/front/public/images/small/gregtech/gt.metaitem.01/19327.png deleted file mode 100644 index 921d2a8afc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19328.png b/front/public/images/small/gregtech/gt.metaitem.01/19328.png deleted file mode 100644 index 583bebf26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19329.png b/front/public/images/small/gregtech/gt.metaitem.01/19329.png deleted file mode 100644 index 60cbd279d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19330.png b/front/public/images/small/gregtech/gt.metaitem.01/19330.png deleted file mode 100644 index 3a8bbdeeb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19331.png b/front/public/images/small/gregtech/gt.metaitem.01/19331.png deleted file mode 100644 index d1056a6132..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19333.png b/front/public/images/small/gregtech/gt.metaitem.01/19333.png deleted file mode 100644 index 4491ab790a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19334.png b/front/public/images/small/gregtech/gt.metaitem.01/19334.png deleted file mode 100644 index 687af6f79a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19335.png b/front/public/images/small/gregtech/gt.metaitem.01/19335.png deleted file mode 100644 index af87a91f20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19336.png b/front/public/images/small/gregtech/gt.metaitem.01/19336.png deleted file mode 100644 index 33ff457f3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19337.png b/front/public/images/small/gregtech/gt.metaitem.01/19337.png deleted file mode 100644 index 04ad2103be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19338.png b/front/public/images/small/gregtech/gt.metaitem.01/19338.png deleted file mode 100644 index 45fdbb2512..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19339.png b/front/public/images/small/gregtech/gt.metaitem.01/19339.png deleted file mode 100644 index 7969b68d20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19340.png b/front/public/images/small/gregtech/gt.metaitem.01/19340.png deleted file mode 100644 index 154272c1dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19341.png b/front/public/images/small/gregtech/gt.metaitem.01/19341.png deleted file mode 100644 index f3bd6734d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19342.png b/front/public/images/small/gregtech/gt.metaitem.01/19342.png deleted file mode 100644 index 73549cb0ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19343.png b/front/public/images/small/gregtech/gt.metaitem.01/19343.png deleted file mode 100644 index f05a8c5f0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19344.png b/front/public/images/small/gregtech/gt.metaitem.01/19344.png deleted file mode 100644 index fbfb95ce21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19345.png b/front/public/images/small/gregtech/gt.metaitem.01/19345.png deleted file mode 100644 index a59ca29ef7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19346.png b/front/public/images/small/gregtech/gt.metaitem.01/19346.png deleted file mode 100644 index 884cae693b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19348.png b/front/public/images/small/gregtech/gt.metaitem.01/19348.png deleted file mode 100644 index ccad66e012..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19349.png b/front/public/images/small/gregtech/gt.metaitem.01/19349.png deleted file mode 100644 index 3c8ed69e91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19350.png b/front/public/images/small/gregtech/gt.metaitem.01/19350.png deleted file mode 100644 index cb02cbafa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19351.png b/front/public/images/small/gregtech/gt.metaitem.01/19351.png deleted file mode 100644 index 542d0b4a36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19352.png b/front/public/images/small/gregtech/gt.metaitem.01/19352.png deleted file mode 100644 index da490c197f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19353.png b/front/public/images/small/gregtech/gt.metaitem.01/19353.png deleted file mode 100644 index 25364e17ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19354.png b/front/public/images/small/gregtech/gt.metaitem.01/19354.png deleted file mode 100644 index ecc8ef6800..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19355.png b/front/public/images/small/gregtech/gt.metaitem.01/19355.png deleted file mode 100644 index 4df0e8ac52..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19356.png b/front/public/images/small/gregtech/gt.metaitem.01/19356.png deleted file mode 100644 index f7a841f2b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19357.png b/front/public/images/small/gregtech/gt.metaitem.01/19357.png deleted file mode 100644 index edbc07184a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19358.png b/front/public/images/small/gregtech/gt.metaitem.01/19358.png deleted file mode 100644 index f9f3e8ef47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19359.png b/front/public/images/small/gregtech/gt.metaitem.01/19359.png deleted file mode 100644 index 81601413d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19360.png b/front/public/images/small/gregtech/gt.metaitem.01/19360.png deleted file mode 100644 index ddb88f16a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19361.png b/front/public/images/small/gregtech/gt.metaitem.01/19361.png deleted file mode 100644 index 1f4e4605e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19362.png b/front/public/images/small/gregtech/gt.metaitem.01/19362.png deleted file mode 100644 index 3047ba241c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19363.png b/front/public/images/small/gregtech/gt.metaitem.01/19363.png deleted file mode 100644 index ddfae18c0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19364.png b/front/public/images/small/gregtech/gt.metaitem.01/19364.png deleted file mode 100644 index 0a7795967c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19365.png b/front/public/images/small/gregtech/gt.metaitem.01/19365.png deleted file mode 100644 index 6822847970..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19366.png b/front/public/images/small/gregtech/gt.metaitem.01/19366.png deleted file mode 100644 index 2b0b20e683..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19367.png b/front/public/images/small/gregtech/gt.metaitem.01/19367.png deleted file mode 100644 index cee3e50a2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19368.png b/front/public/images/small/gregtech/gt.metaitem.01/19368.png deleted file mode 100644 index 8c5dfe8865..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19369.png b/front/public/images/small/gregtech/gt.metaitem.01/19369.png deleted file mode 100644 index 72820f8b46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19370.png b/front/public/images/small/gregtech/gt.metaitem.01/19370.png deleted file mode 100644 index 38f20d95a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19371.png b/front/public/images/small/gregtech/gt.metaitem.01/19371.png deleted file mode 100644 index f31d69dc2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19372.png b/front/public/images/small/gregtech/gt.metaitem.01/19372.png deleted file mode 100644 index edbd1d7621..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19373.png b/front/public/images/small/gregtech/gt.metaitem.01/19373.png deleted file mode 100644 index 31b99f50d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19374.png b/front/public/images/small/gregtech/gt.metaitem.01/19374.png deleted file mode 100644 index 23841c394e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19378.png b/front/public/images/small/gregtech/gt.metaitem.01/19378.png deleted file mode 100644 index 02db67fdb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19379.png b/front/public/images/small/gregtech/gt.metaitem.01/19379.png deleted file mode 100644 index 9f0d2321f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19380.png b/front/public/images/small/gregtech/gt.metaitem.01/19380.png deleted file mode 100644 index 8683a8174f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19381.png b/front/public/images/small/gregtech/gt.metaitem.01/19381.png deleted file mode 100644 index 2b30c42b33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19382.png b/front/public/images/small/gregtech/gt.metaitem.01/19382.png deleted file mode 100644 index 8fbcf601b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19383.png b/front/public/images/small/gregtech/gt.metaitem.01/19383.png deleted file mode 100644 index 2cb7392204..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19384.png b/front/public/images/small/gregtech/gt.metaitem.01/19384.png deleted file mode 100644 index a26ff459de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19385.png b/front/public/images/small/gregtech/gt.metaitem.01/19385.png deleted file mode 100644 index 769e3e68a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19386.png b/front/public/images/small/gregtech/gt.metaitem.01/19386.png deleted file mode 100644 index f90882a49f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19387.png b/front/public/images/small/gregtech/gt.metaitem.01/19387.png deleted file mode 100644 index b16d829ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19388.png b/front/public/images/small/gregtech/gt.metaitem.01/19388.png deleted file mode 100644 index 5ddc15da54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19389.png b/front/public/images/small/gregtech/gt.metaitem.01/19389.png deleted file mode 100644 index cae0198156..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19390.png b/front/public/images/small/gregtech/gt.metaitem.01/19390.png deleted file mode 100644 index ee3800c315..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19391.png b/front/public/images/small/gregtech/gt.metaitem.01/19391.png deleted file mode 100644 index 1def2273ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19392.png b/front/public/images/small/gregtech/gt.metaitem.01/19392.png deleted file mode 100644 index 9f4510c2d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19393.png b/front/public/images/small/gregtech/gt.metaitem.01/19393.png deleted file mode 100644 index 62a6ce8d2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19394.png b/front/public/images/small/gregtech/gt.metaitem.01/19394.png deleted file mode 100644 index 583bebf26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19395.png b/front/public/images/small/gregtech/gt.metaitem.01/19395.png deleted file mode 100644 index 5ddc15da54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19397.png b/front/public/images/small/gregtech/gt.metaitem.01/19397.png deleted file mode 100644 index 25cc1729a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19398.png b/front/public/images/small/gregtech/gt.metaitem.01/19398.png deleted file mode 100644 index e3bf8b2f22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19399.png b/front/public/images/small/gregtech/gt.metaitem.01/19399.png deleted file mode 100644 index 5d902b7788..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19400.png b/front/public/images/small/gregtech/gt.metaitem.01/19400.png deleted file mode 100644 index d390e81bd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19401.png b/front/public/images/small/gregtech/gt.metaitem.01/19401.png deleted file mode 100644 index 0b85efd45f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19402.png b/front/public/images/small/gregtech/gt.metaitem.01/19402.png deleted file mode 100644 index 46808bea1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19403.png b/front/public/images/small/gregtech/gt.metaitem.01/19403.png deleted file mode 100644 index aece720801..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19404.png b/front/public/images/small/gregtech/gt.metaitem.01/19404.png deleted file mode 100644 index 2b04f0c0b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19405.png b/front/public/images/small/gregtech/gt.metaitem.01/19405.png deleted file mode 100644 index 476b350f43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19406.png b/front/public/images/small/gregtech/gt.metaitem.01/19406.png deleted file mode 100644 index 77ed9b8164..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19407.png b/front/public/images/small/gregtech/gt.metaitem.01/19407.png deleted file mode 100644 index bd7b4507bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19408.png b/front/public/images/small/gregtech/gt.metaitem.01/19408.png deleted file mode 100644 index 4f6e681cee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19470.png b/front/public/images/small/gregtech/gt.metaitem.01/19470.png deleted file mode 100644 index 4ee193880f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19471.png b/front/public/images/small/gregtech/gt.metaitem.01/19471.png deleted file mode 100644 index d56eeb0616..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19472.png b/front/public/images/small/gregtech/gt.metaitem.01/19472.png deleted file mode 100644 index 5ddc15da54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19473.png b/front/public/images/small/gregtech/gt.metaitem.01/19473.png deleted file mode 100644 index 687af6f79a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19485.png b/front/public/images/small/gregtech/gt.metaitem.01/19485.png deleted file mode 100644 index 7e26aca60d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19488.png b/front/public/images/small/gregtech/gt.metaitem.01/19488.png deleted file mode 100644 index 4ce20aea03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19489.png b/front/public/images/small/gregtech/gt.metaitem.01/19489.png deleted file mode 100644 index 411d063ae0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19521.png b/front/public/images/small/gregtech/gt.metaitem.01/19521.png deleted file mode 100644 index 6af3d94d91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19529.png b/front/public/images/small/gregtech/gt.metaitem.01/19529.png deleted file mode 100644 index f78771cbce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19576.png b/front/public/images/small/gregtech/gt.metaitem.01/19576.png deleted file mode 100644 index 4fc143ceda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19581.png b/front/public/images/small/gregtech/gt.metaitem.01/19581.png deleted file mode 100644 index 61318f4660..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19582.png b/front/public/images/small/gregtech/gt.metaitem.01/19582.png deleted file mode 100644 index 53733a803a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19585.png b/front/public/images/small/gregtech/gt.metaitem.01/19585.png deleted file mode 100644 index 90fcc74092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19586.png b/front/public/images/small/gregtech/gt.metaitem.01/19586.png deleted file mode 100644 index 116fc5351c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19588.png b/front/public/images/small/gregtech/gt.metaitem.01/19588.png deleted file mode 100644 index 90dea76636..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19599.png b/front/public/images/small/gregtech/gt.metaitem.01/19599.png deleted file mode 100644 index 7829018b08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19610.png b/front/public/images/small/gregtech/gt.metaitem.01/19610.png deleted file mode 100644 index b14e4aaa8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19613.png b/front/public/images/small/gregtech/gt.metaitem.01/19613.png deleted file mode 100644 index dfb8e9ffe2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19631.png b/front/public/images/small/gregtech/gt.metaitem.01/19631.png deleted file mode 100644 index 93cdaac332..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19635.png b/front/public/images/small/gregtech/gt.metaitem.01/19635.png deleted file mode 100644 index aa0aaea98f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19636.png b/front/public/images/small/gregtech/gt.metaitem.01/19636.png deleted file mode 100644 index 034dfd2a23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19649.png b/front/public/images/small/gregtech/gt.metaitem.01/19649.png deleted file mode 100644 index 3348cabf2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19765.png b/front/public/images/small/gregtech/gt.metaitem.01/19765.png deleted file mode 100644 index 104d93ffab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19770.png b/front/public/images/small/gregtech/gt.metaitem.01/19770.png deleted file mode 100644 index cb0b3d85dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19772.png b/front/public/images/small/gregtech/gt.metaitem.01/19772.png deleted file mode 100644 index 9c74ade7f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19829.png b/front/public/images/small/gregtech/gt.metaitem.01/19829.png deleted file mode 100644 index 6e75f57dc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19856.png b/front/public/images/small/gregtech/gt.metaitem.01/19856.png deleted file mode 100644 index 1055cd1dd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19868.png b/front/public/images/small/gregtech/gt.metaitem.01/19868.png deleted file mode 100644 index 7dd0d797f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19874.png b/front/public/images/small/gregtech/gt.metaitem.01/19874.png deleted file mode 100644 index ddfae18c0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19879.png b/front/public/images/small/gregtech/gt.metaitem.01/19879.png deleted file mode 100644 index 4779504d43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19879.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19880.png b/front/public/images/small/gregtech/gt.metaitem.01/19880.png deleted file mode 100644 index 116fc5351c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19884.png b/front/public/images/small/gregtech/gt.metaitem.01/19884.png deleted file mode 100644 index 20f4e4e78e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19912.png b/front/public/images/small/gregtech/gt.metaitem.01/19912.png deleted file mode 100644 index 9857f9756d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19913.png b/front/public/images/small/gregtech/gt.metaitem.01/19913.png deleted file mode 100644 index ccad66e012..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19951.png b/front/public/images/small/gregtech/gt.metaitem.01/19951.png deleted file mode 100644 index 0a9b29d297..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19952.png b/front/public/images/small/gregtech/gt.metaitem.01/19952.png deleted file mode 100644 index 73dbf3eeb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19956.png b/front/public/images/small/gregtech/gt.metaitem.01/19956.png deleted file mode 100644 index ec07ba1604..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19966.png b/front/public/images/small/gregtech/gt.metaitem.01/19966.png deleted file mode 100644 index 791004c6ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19970.png b/front/public/images/small/gregtech/gt.metaitem.01/19970.png deleted file mode 100644 index 6ac1c0e755..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19974.png b/front/public/images/small/gregtech/gt.metaitem.01/19974.png deleted file mode 100644 index 6095d2026c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19975.png b/front/public/images/small/gregtech/gt.metaitem.01/19975.png deleted file mode 100644 index 82c99fa392..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19976.png b/front/public/images/small/gregtech/gt.metaitem.01/19976.png deleted file mode 100644 index a9add14b57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19977.png b/front/public/images/small/gregtech/gt.metaitem.01/19977.png deleted file mode 100644 index 7cc37cfdc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19978.png b/front/public/images/small/gregtech/gt.metaitem.01/19978.png deleted file mode 100644 index 296f037e1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19979.png b/front/public/images/small/gregtech/gt.metaitem.01/19979.png deleted file mode 100644 index 161dbaf3dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19980.png b/front/public/images/small/gregtech/gt.metaitem.01/19980.png deleted file mode 100644 index 66feefa270..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19981.png b/front/public/images/small/gregtech/gt.metaitem.01/19981.png deleted file mode 100644 index 6de4dbccde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19982.png b/front/public/images/small/gregtech/gt.metaitem.01/19982.png deleted file mode 100644 index 4ebf312900..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19984.png b/front/public/images/small/gregtech/gt.metaitem.01/19984.png deleted file mode 100644 index 583bebf26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19985.png b/front/public/images/small/gregtech/gt.metaitem.01/19985.png deleted file mode 100644 index 3637a8ec9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19986.png b/front/public/images/small/gregtech/gt.metaitem.01/19986.png deleted file mode 100644 index ce5bb09067..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19987.png b/front/public/images/small/gregtech/gt.metaitem.01/19987.png deleted file mode 100644 index 00948fc375..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19988.png b/front/public/images/small/gregtech/gt.metaitem.01/19988.png deleted file mode 100644 index e2a4d56944..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19989.png b/front/public/images/small/gregtech/gt.metaitem.01/19989.png deleted file mode 100644 index 00bc7de691..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19990.png b/front/public/images/small/gregtech/gt.metaitem.01/19990.png deleted file mode 100644 index 0daaa93f7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19991.png b/front/public/images/small/gregtech/gt.metaitem.01/19991.png deleted file mode 100644 index ea9907459f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/19992.png b/front/public/images/small/gregtech/gt.metaitem.01/19992.png deleted file mode 100644 index 6d51bc53ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/19992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20006.png b/front/public/images/small/gregtech/gt.metaitem.01/20006.png deleted file mode 100644 index 7575881025..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20008.png b/front/public/images/small/gregtech/gt.metaitem.01/20008.png deleted file mode 100644 index 3f5707d641..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20010.png b/front/public/images/small/gregtech/gt.metaitem.01/20010.png deleted file mode 100644 index 82d012fb10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20018.png b/front/public/images/small/gregtech/gt.metaitem.01/20018.png deleted file mode 100644 index 7da258350c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20019.png b/front/public/images/small/gregtech/gt.metaitem.01/20019.png deleted file mode 100644 index aeeb5f88c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20020.png b/front/public/images/small/gregtech/gt.metaitem.01/20020.png deleted file mode 100644 index afeb272085..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20025.png b/front/public/images/small/gregtech/gt.metaitem.01/20025.png deleted file mode 100644 index fac1fd1ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20027.png b/front/public/images/small/gregtech/gt.metaitem.01/20027.png deleted file mode 100644 index 1ad0ffe390..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20028.png b/front/public/images/small/gregtech/gt.metaitem.01/20028.png deleted file mode 100644 index 644083ff82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20029.png b/front/public/images/small/gregtech/gt.metaitem.01/20029.png deleted file mode 100644 index 66dd93929e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20030.png b/front/public/images/small/gregtech/gt.metaitem.01/20030.png deleted file mode 100644 index 388cbf1251..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20031.png b/front/public/images/small/gregtech/gt.metaitem.01/20031.png deleted file mode 100644 index 4c7e0dd1c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20032.png b/front/public/images/small/gregtech/gt.metaitem.01/20032.png deleted file mode 100644 index 38f2170fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20033.png b/front/public/images/small/gregtech/gt.metaitem.01/20033.png deleted file mode 100644 index 0460e97be1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20034.png b/front/public/images/small/gregtech/gt.metaitem.01/20034.png deleted file mode 100644 index ba72a7ff9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20035.png b/front/public/images/small/gregtech/gt.metaitem.01/20035.png deleted file mode 100644 index 22e3d2b6a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20036.png b/front/public/images/small/gregtech/gt.metaitem.01/20036.png deleted file mode 100644 index 2c4c79cab5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20037.png b/front/public/images/small/gregtech/gt.metaitem.01/20037.png deleted file mode 100644 index 25cbb9bd77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20039.png b/front/public/images/small/gregtech/gt.metaitem.01/20039.png deleted file mode 100644 index ca97abb8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20043.png b/front/public/images/small/gregtech/gt.metaitem.01/20043.png deleted file mode 100644 index 24316e1eaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20045.png b/front/public/images/small/gregtech/gt.metaitem.01/20045.png deleted file mode 100644 index c01ed4459a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20047.png b/front/public/images/small/gregtech/gt.metaitem.01/20047.png deleted file mode 100644 index 020bbd1864..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20048.png b/front/public/images/small/gregtech/gt.metaitem.01/20048.png deleted file mode 100644 index 8dc97fe58b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20052.png b/front/public/images/small/gregtech/gt.metaitem.01/20052.png deleted file mode 100644 index f34dc8d4fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20054.png b/front/public/images/small/gregtech/gt.metaitem.01/20054.png deleted file mode 100644 index 25cbb9bd77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20056.png b/front/public/images/small/gregtech/gt.metaitem.01/20056.png deleted file mode 100644 index 3bad4d07b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20057.png b/front/public/images/small/gregtech/gt.metaitem.01/20057.png deleted file mode 100644 index c4bda8d2b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20058.png b/front/public/images/small/gregtech/gt.metaitem.01/20058.png deleted file mode 100644 index 9188a3f7fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20059.png b/front/public/images/small/gregtech/gt.metaitem.01/20059.png deleted file mode 100644 index 3ce39e7ab3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2006.png b/front/public/images/small/gregtech/gt.metaitem.01/2006.png deleted file mode 100644 index e97e00b590..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20062.png b/front/public/images/small/gregtech/gt.metaitem.01/20062.png deleted file mode 100644 index c681dbcb06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20063.png b/front/public/images/small/gregtech/gt.metaitem.01/20063.png deleted file mode 100644 index ca97abb8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20064.png b/front/public/images/small/gregtech/gt.metaitem.01/20064.png deleted file mode 100644 index 912c3fbecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20065.png b/front/public/images/small/gregtech/gt.metaitem.01/20065.png deleted file mode 100644 index 6e1e7ceda1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20066.png b/front/public/images/small/gregtech/gt.metaitem.01/20066.png deleted file mode 100644 index 660f1813ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20067.png b/front/public/images/small/gregtech/gt.metaitem.01/20067.png deleted file mode 100644 index 0673940984..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20068.png b/front/public/images/small/gregtech/gt.metaitem.01/20068.png deleted file mode 100644 index 2257c97ffc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20069.png b/front/public/images/small/gregtech/gt.metaitem.01/20069.png deleted file mode 100644 index ed79b9b364..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20070.png b/front/public/images/small/gregtech/gt.metaitem.01/20070.png deleted file mode 100644 index 052ed29515..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20071.png b/front/public/images/small/gregtech/gt.metaitem.01/20071.png deleted file mode 100644 index 17e4f16ff0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20072.png b/front/public/images/small/gregtech/gt.metaitem.01/20072.png deleted file mode 100644 index ca97abb8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20073.png b/front/public/images/small/gregtech/gt.metaitem.01/20073.png deleted file mode 100644 index f71d85b9d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20074.png b/front/public/images/small/gregtech/gt.metaitem.01/20074.png deleted file mode 100644 index 2a6e4697bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20075.png b/front/public/images/small/gregtech/gt.metaitem.01/20075.png deleted file mode 100644 index 1d7ff7c631..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20076.png b/front/public/images/small/gregtech/gt.metaitem.01/20076.png deleted file mode 100644 index cb5c0bf81b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20077.png b/front/public/images/small/gregtech/gt.metaitem.01/20077.png deleted file mode 100644 index 280eebac9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20078.png b/front/public/images/small/gregtech/gt.metaitem.01/20078.png deleted file mode 100644 index 756728d2e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2008.png b/front/public/images/small/gregtech/gt.metaitem.01/2008.png deleted file mode 100644 index 7496a8ff09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20080.png b/front/public/images/small/gregtech/gt.metaitem.01/20080.png deleted file mode 100644 index 17894b1236..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20081.png b/front/public/images/small/gregtech/gt.metaitem.01/20081.png deleted file mode 100644 index 66dd93929e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20083.png b/front/public/images/small/gregtech/gt.metaitem.01/20083.png deleted file mode 100644 index 22efbe389b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20084.png b/front/public/images/small/gregtech/gt.metaitem.01/20084.png deleted file mode 100644 index 511baea1d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20085.png b/front/public/images/small/gregtech/gt.metaitem.01/20085.png deleted file mode 100644 index ecbe09e0d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20086.png b/front/public/images/small/gregtech/gt.metaitem.01/20086.png deleted file mode 100644 index e5f1577026..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20089.png b/front/public/images/small/gregtech/gt.metaitem.01/20089.png deleted file mode 100644 index d8036b2a2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2009.png b/front/public/images/small/gregtech/gt.metaitem.01/2009.png deleted file mode 100644 index cadb6e7c97..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20090.png b/front/public/images/small/gregtech/gt.metaitem.01/20090.png deleted file mode 100644 index 43c64fe39e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20096.png b/front/public/images/small/gregtech/gt.metaitem.01/20096.png deleted file mode 100644 index 5247946bb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20097.png b/front/public/images/small/gregtech/gt.metaitem.01/20097.png deleted file mode 100644 index 821e01448c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20098.png b/front/public/images/small/gregtech/gt.metaitem.01/20098.png deleted file mode 100644 index 4f0d944384..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2010.png b/front/public/images/small/gregtech/gt.metaitem.01/2010.png deleted file mode 100644 index c4751d914c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20100.png b/front/public/images/small/gregtech/gt.metaitem.01/20100.png deleted file mode 100644 index 47893bcc7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20101.png b/front/public/images/small/gregtech/gt.metaitem.01/20101.png deleted file mode 100644 index 16abd3fb0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20103.png b/front/public/images/small/gregtech/gt.metaitem.01/20103.png deleted file mode 100644 index 38f2170fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20111.png b/front/public/images/small/gregtech/gt.metaitem.01/20111.png deleted file mode 100644 index 6dbfa82126..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20112.png b/front/public/images/small/gregtech/gt.metaitem.01/20112.png deleted file mode 100644 index fa8b01d7c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20129.png b/front/public/images/small/gregtech/gt.metaitem.01/20129.png deleted file mode 100644 index 4c7e0dd1c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20131.png b/front/public/images/small/gregtech/gt.metaitem.01/20131.png deleted file mode 100644 index 3db2e06ee3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20134.png b/front/public/images/small/gregtech/gt.metaitem.01/20134.png deleted file mode 100644 index a2daed7f3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20139.png b/front/public/images/small/gregtech/gt.metaitem.01/20139.png deleted file mode 100644 index 08cd2a1846..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20141.png b/front/public/images/small/gregtech/gt.metaitem.01/20141.png deleted file mode 100644 index 0306c727a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20143.png b/front/public/images/small/gregtech/gt.metaitem.01/20143.png deleted file mode 100644 index 855a9657cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2017.png b/front/public/images/small/gregtech/gt.metaitem.01/2017.png deleted file mode 100644 index 001f442d2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2017.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2018.png b/front/public/images/small/gregtech/gt.metaitem.01/2018.png deleted file mode 100644 index 08532ff9f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2019.png b/front/public/images/small/gregtech/gt.metaitem.01/2019.png deleted file mode 100644 index e1386a45c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2020.png b/front/public/images/small/gregtech/gt.metaitem.01/2020.png deleted file mode 100644 index 0b3b90907d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20201.png b/front/public/images/small/gregtech/gt.metaitem.01/20201.png deleted file mode 100644 index 1493dc9fe5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20202.png b/front/public/images/small/gregtech/gt.metaitem.01/20202.png deleted file mode 100644 index 9e03b811cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20203.png b/front/public/images/small/gregtech/gt.metaitem.01/20203.png deleted file mode 100644 index b3adb64ef0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20205.png b/front/public/images/small/gregtech/gt.metaitem.01/20205.png deleted file mode 100644 index 63723e0ce8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2021.png b/front/public/images/small/gregtech/gt.metaitem.01/2021.png deleted file mode 100644 index 74d9523b9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2022.png b/front/public/images/small/gregtech/gt.metaitem.01/2022.png deleted file mode 100644 index e4ea1a3c8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2025.png b/front/public/images/small/gregtech/gt.metaitem.01/2025.png deleted file mode 100644 index 286f90f912..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2026.png b/front/public/images/small/gregtech/gt.metaitem.01/2026.png deleted file mode 100644 index 29ddf3c0d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2027.png b/front/public/images/small/gregtech/gt.metaitem.01/2027.png deleted file mode 100644 index e2f075b941..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2028.png b/front/public/images/small/gregtech/gt.metaitem.01/2028.png deleted file mode 100644 index ab84301331..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2029.png b/front/public/images/small/gregtech/gt.metaitem.01/2029.png deleted file mode 100644 index 675e22631d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2030.png b/front/public/images/small/gregtech/gt.metaitem.01/2030.png deleted file mode 100644 index c9b36ade5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20300.png b/front/public/images/small/gregtech/gt.metaitem.01/20300.png deleted file mode 100644 index aff9d1a847..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20301.png b/front/public/images/small/gregtech/gt.metaitem.01/20301.png deleted file mode 100644 index c3dd955f97..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20302.png b/front/public/images/small/gregtech/gt.metaitem.01/20302.png deleted file mode 100644 index 896ad49761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20303.png b/front/public/images/small/gregtech/gt.metaitem.01/20303.png deleted file mode 100644 index 80bc2ba210..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20304.png b/front/public/images/small/gregtech/gt.metaitem.01/20304.png deleted file mode 100644 index 93839b15ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20305.png b/front/public/images/small/gregtech/gt.metaitem.01/20305.png deleted file mode 100644 index f34dc8d4fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20306.png b/front/public/images/small/gregtech/gt.metaitem.01/20306.png deleted file mode 100644 index f49efb985a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20307.png b/front/public/images/small/gregtech/gt.metaitem.01/20307.png deleted file mode 100644 index 93839b15ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20308.png b/front/public/images/small/gregtech/gt.metaitem.01/20308.png deleted file mode 100644 index d7b92e76b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20309.png b/front/public/images/small/gregtech/gt.metaitem.01/20309.png deleted file mode 100644 index eb0c00a1fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2031.png b/front/public/images/small/gregtech/gt.metaitem.01/2031.png deleted file mode 100644 index 18fa137561..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20310.png b/front/public/images/small/gregtech/gt.metaitem.01/20310.png deleted file mode 100644 index 294681f987..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20311.png b/front/public/images/small/gregtech/gt.metaitem.01/20311.png deleted file mode 100644 index 7743c9ebfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20312.png b/front/public/images/small/gregtech/gt.metaitem.01/20312.png deleted file mode 100644 index a440173e03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20313.png b/front/public/images/small/gregtech/gt.metaitem.01/20313.png deleted file mode 100644 index 44223c3685..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20314.png b/front/public/images/small/gregtech/gt.metaitem.01/20314.png deleted file mode 100644 index 30b0cb05a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20315.png b/front/public/images/small/gregtech/gt.metaitem.01/20315.png deleted file mode 100644 index fbd721eb63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20316.png b/front/public/images/small/gregtech/gt.metaitem.01/20316.png deleted file mode 100644 index 73e3be0e07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20317.png b/front/public/images/small/gregtech/gt.metaitem.01/20317.png deleted file mode 100644 index b83aff2832..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20318.png b/front/public/images/small/gregtech/gt.metaitem.01/20318.png deleted file mode 100644 index 037fecdb6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20319.png b/front/public/images/small/gregtech/gt.metaitem.01/20319.png deleted file mode 100644 index ca97abb8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2032.png b/front/public/images/small/gregtech/gt.metaitem.01/2032.png deleted file mode 100644 index 7b93ca3419..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20320.png b/front/public/images/small/gregtech/gt.metaitem.01/20320.png deleted file mode 100644 index 2ac6fcc604..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20321.png b/front/public/images/small/gregtech/gt.metaitem.01/20321.png deleted file mode 100644 index 5c04afbdf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20323.png b/front/public/images/small/gregtech/gt.metaitem.01/20323.png deleted file mode 100644 index 437d91ba95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20324.png b/front/public/images/small/gregtech/gt.metaitem.01/20324.png deleted file mode 100644 index 66dd93929e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20325.png b/front/public/images/small/gregtech/gt.metaitem.01/20325.png deleted file mode 100644 index 671e13fc7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20326.png b/front/public/images/small/gregtech/gt.metaitem.01/20326.png deleted file mode 100644 index 085685d1b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20327.png b/front/public/images/small/gregtech/gt.metaitem.01/20327.png deleted file mode 100644 index 816dc6be8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20328.png b/front/public/images/small/gregtech/gt.metaitem.01/20328.png deleted file mode 100644 index ca97abb8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20329.png b/front/public/images/small/gregtech/gt.metaitem.01/20329.png deleted file mode 100644 index c31cff2eef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2033.png b/front/public/images/small/gregtech/gt.metaitem.01/2033.png deleted file mode 100644 index bee03c85ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20330.png b/front/public/images/small/gregtech/gt.metaitem.01/20330.png deleted file mode 100644 index 228bd52262..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20331.png b/front/public/images/small/gregtech/gt.metaitem.01/20331.png deleted file mode 100644 index 0a01783b03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20333.png b/front/public/images/small/gregtech/gt.metaitem.01/20333.png deleted file mode 100644 index 4f8ede9fce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20334.png b/front/public/images/small/gregtech/gt.metaitem.01/20334.png deleted file mode 100644 index 0673940984..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20335.png b/front/public/images/small/gregtech/gt.metaitem.01/20335.png deleted file mode 100644 index b2a61e9546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20336.png b/front/public/images/small/gregtech/gt.metaitem.01/20336.png deleted file mode 100644 index 8333f7f4d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20337.png b/front/public/images/small/gregtech/gt.metaitem.01/20337.png deleted file mode 100644 index c1cea9bf49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20338.png b/front/public/images/small/gregtech/gt.metaitem.01/20338.png deleted file mode 100644 index 9edf9443d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20339.png b/front/public/images/small/gregtech/gt.metaitem.01/20339.png deleted file mode 100644 index ea11685830..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2034.png b/front/public/images/small/gregtech/gt.metaitem.01/2034.png deleted file mode 100644 index 7131f405e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20340.png b/front/public/images/small/gregtech/gt.metaitem.01/20340.png deleted file mode 100644 index c8f8737169..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20341.png b/front/public/images/small/gregtech/gt.metaitem.01/20341.png deleted file mode 100644 index 27bf6e9ee9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20342.png b/front/public/images/small/gregtech/gt.metaitem.01/20342.png deleted file mode 100644 index 9aad3eaacd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20343.png b/front/public/images/small/gregtech/gt.metaitem.01/20343.png deleted file mode 100644 index 5e1ace9313..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20344.png b/front/public/images/small/gregtech/gt.metaitem.01/20344.png deleted file mode 100644 index cbd3ec466b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20345.png b/front/public/images/small/gregtech/gt.metaitem.01/20345.png deleted file mode 100644 index 649c78a085..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20346.png b/front/public/images/small/gregtech/gt.metaitem.01/20346.png deleted file mode 100644 index c9c6dbc129..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20348.png b/front/public/images/small/gregtech/gt.metaitem.01/20348.png deleted file mode 100644 index 35a2c84f86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20349.png b/front/public/images/small/gregtech/gt.metaitem.01/20349.png deleted file mode 100644 index 4f05e29340..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2035.png b/front/public/images/small/gregtech/gt.metaitem.01/2035.png deleted file mode 100644 index a007595fde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20350.png b/front/public/images/small/gregtech/gt.metaitem.01/20350.png deleted file mode 100644 index ee38737ef5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20351.png b/front/public/images/small/gregtech/gt.metaitem.01/20351.png deleted file mode 100644 index 7a6ccc7a38..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20352.png b/front/public/images/small/gregtech/gt.metaitem.01/20352.png deleted file mode 100644 index 35fb1f3aa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20353.png b/front/public/images/small/gregtech/gt.metaitem.01/20353.png deleted file mode 100644 index ac15dd3dd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20354.png b/front/public/images/small/gregtech/gt.metaitem.01/20354.png deleted file mode 100644 index 098f9e31db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20355.png b/front/public/images/small/gregtech/gt.metaitem.01/20355.png deleted file mode 100644 index ad9848d140..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20356.png b/front/public/images/small/gregtech/gt.metaitem.01/20356.png deleted file mode 100644 index 8da5b4c6d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20357.png b/front/public/images/small/gregtech/gt.metaitem.01/20357.png deleted file mode 100644 index 16fa52194e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20358.png b/front/public/images/small/gregtech/gt.metaitem.01/20358.png deleted file mode 100644 index c897b778b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20359.png b/front/public/images/small/gregtech/gt.metaitem.01/20359.png deleted file mode 100644 index d023fb681e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2036.png b/front/public/images/small/gregtech/gt.metaitem.01/2036.png deleted file mode 100644 index d34dfbb990..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20360.png b/front/public/images/small/gregtech/gt.metaitem.01/20360.png deleted file mode 100644 index aa76bf234f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20361.png b/front/public/images/small/gregtech/gt.metaitem.01/20361.png deleted file mode 100644 index 09fed1d133..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20362.png b/front/public/images/small/gregtech/gt.metaitem.01/20362.png deleted file mode 100644 index 8aee3b35ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20363.png b/front/public/images/small/gregtech/gt.metaitem.01/20363.png deleted file mode 100644 index 38f2170fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20364.png b/front/public/images/small/gregtech/gt.metaitem.01/20364.png deleted file mode 100644 index 03b0fa129e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20365.png b/front/public/images/small/gregtech/gt.metaitem.01/20365.png deleted file mode 100644 index 8da6e51cca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20366.png b/front/public/images/small/gregtech/gt.metaitem.01/20366.png deleted file mode 100644 index 1b1f36411e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20367.png b/front/public/images/small/gregtech/gt.metaitem.01/20367.png deleted file mode 100644 index 10f5f00b2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20368.png b/front/public/images/small/gregtech/gt.metaitem.01/20368.png deleted file mode 100644 index 38867ece7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20369.png b/front/public/images/small/gregtech/gt.metaitem.01/20369.png deleted file mode 100644 index fce2fc140c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2037.png b/front/public/images/small/gregtech/gt.metaitem.01/2037.png deleted file mode 100644 index 5e2f9f67b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20370.png b/front/public/images/small/gregtech/gt.metaitem.01/20370.png deleted file mode 100644 index 84c5476df2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20371.png b/front/public/images/small/gregtech/gt.metaitem.01/20371.png deleted file mode 100644 index 4ed0135834..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20372.png b/front/public/images/small/gregtech/gt.metaitem.01/20372.png deleted file mode 100644 index a394e4b360..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20373.png b/front/public/images/small/gregtech/gt.metaitem.01/20373.png deleted file mode 100644 index 725f73e279..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20374.png b/front/public/images/small/gregtech/gt.metaitem.01/20374.png deleted file mode 100644 index c8ab9259a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20378.png b/front/public/images/small/gregtech/gt.metaitem.01/20378.png deleted file mode 100644 index 313b344b45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20379.png b/front/public/images/small/gregtech/gt.metaitem.01/20379.png deleted file mode 100644 index 4eb62ca4ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20380.png b/front/public/images/small/gregtech/gt.metaitem.01/20380.png deleted file mode 100644 index da778bbec8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20381.png b/front/public/images/small/gregtech/gt.metaitem.01/20381.png deleted file mode 100644 index fc7ee26e8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20382.png b/front/public/images/small/gregtech/gt.metaitem.01/20382.png deleted file mode 100644 index d165f50915..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20383.png b/front/public/images/small/gregtech/gt.metaitem.01/20383.png deleted file mode 100644 index 1e07658eda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20384.png b/front/public/images/small/gregtech/gt.metaitem.01/20384.png deleted file mode 100644 index 5fb5939fed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20385.png b/front/public/images/small/gregtech/gt.metaitem.01/20385.png deleted file mode 100644 index a9446011f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20386.png b/front/public/images/small/gregtech/gt.metaitem.01/20386.png deleted file mode 100644 index 314a15987e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20387.png b/front/public/images/small/gregtech/gt.metaitem.01/20387.png deleted file mode 100644 index 4c108d2b73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20388.png b/front/public/images/small/gregtech/gt.metaitem.01/20388.png deleted file mode 100644 index 66dd93929e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20389.png b/front/public/images/small/gregtech/gt.metaitem.01/20389.png deleted file mode 100644 index 7b029dab12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2039.png b/front/public/images/small/gregtech/gt.metaitem.01/2039.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20390.png b/front/public/images/small/gregtech/gt.metaitem.01/20390.png deleted file mode 100644 index e5a9a60d3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20391.png b/front/public/images/small/gregtech/gt.metaitem.01/20391.png deleted file mode 100644 index a4054ad44b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20392.png b/front/public/images/small/gregtech/gt.metaitem.01/20392.png deleted file mode 100644 index 783a11a120..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20393.png b/front/public/images/small/gregtech/gt.metaitem.01/20393.png deleted file mode 100644 index 2a0ae8e28f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20394.png b/front/public/images/small/gregtech/gt.metaitem.01/20394.png deleted file mode 100644 index ca97abb8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20395.png b/front/public/images/small/gregtech/gt.metaitem.01/20395.png deleted file mode 100644 index 66dd93929e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20397.png b/front/public/images/small/gregtech/gt.metaitem.01/20397.png deleted file mode 100644 index 6bab0bfb03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20398.png b/front/public/images/small/gregtech/gt.metaitem.01/20398.png deleted file mode 100644 index 1e52134b55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20399.png b/front/public/images/small/gregtech/gt.metaitem.01/20399.png deleted file mode 100644 index f620b1d683..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20400.png b/front/public/images/small/gregtech/gt.metaitem.01/20400.png deleted file mode 100644 index 0d9fbfccd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20401.png b/front/public/images/small/gregtech/gt.metaitem.01/20401.png deleted file mode 100644 index 64a79bfda6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20402.png b/front/public/images/small/gregtech/gt.metaitem.01/20402.png deleted file mode 100644 index d884abfb59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20403.png b/front/public/images/small/gregtech/gt.metaitem.01/20403.png deleted file mode 100644 index 0b723ee942..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20404.png b/front/public/images/small/gregtech/gt.metaitem.01/20404.png deleted file mode 100644 index e8a2686054..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20405.png b/front/public/images/small/gregtech/gt.metaitem.01/20405.png deleted file mode 100644 index 0e24cb9e37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20406.png b/front/public/images/small/gregtech/gt.metaitem.01/20406.png deleted file mode 100644 index a259dffffd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20407.png b/front/public/images/small/gregtech/gt.metaitem.01/20407.png deleted file mode 100644 index 9814eaaba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20408.png b/front/public/images/small/gregtech/gt.metaitem.01/20408.png deleted file mode 100644 index 271e75fc05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2043.png b/front/public/images/small/gregtech/gt.metaitem.01/2043.png deleted file mode 100644 index 4ac3ff56a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2044.png b/front/public/images/small/gregtech/gt.metaitem.01/2044.png deleted file mode 100644 index 7b93ca3419..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2045.png b/front/public/images/small/gregtech/gt.metaitem.01/2045.png deleted file mode 100644 index 958ca09610..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2047.png b/front/public/images/small/gregtech/gt.metaitem.01/2047.png deleted file mode 100644 index 412ee96805..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20470.png b/front/public/images/small/gregtech/gt.metaitem.01/20470.png deleted file mode 100644 index 2f7aa4f15d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20471.png b/front/public/images/small/gregtech/gt.metaitem.01/20471.png deleted file mode 100644 index c4bda8d2b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20472.png b/front/public/images/small/gregtech/gt.metaitem.01/20472.png deleted file mode 100644 index 66dd93929e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20473.png b/front/public/images/small/gregtech/gt.metaitem.01/20473.png deleted file mode 100644 index 0673940984..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2048.png b/front/public/images/small/gregtech/gt.metaitem.01/2048.png deleted file mode 100644 index 50c7ee318f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20485.png b/front/public/images/small/gregtech/gt.metaitem.01/20485.png deleted file mode 100644 index e4522bd7a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20488.png b/front/public/images/small/gregtech/gt.metaitem.01/20488.png deleted file mode 100644 index 7085cf4511..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20489.png b/front/public/images/small/gregtech/gt.metaitem.01/20489.png deleted file mode 100644 index c4fed5da04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2052.png b/front/public/images/small/gregtech/gt.metaitem.01/2052.png deleted file mode 100644 index 44be128b4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20521.png b/front/public/images/small/gregtech/gt.metaitem.01/20521.png deleted file mode 100644 index 037fecdb6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20529.png b/front/public/images/small/gregtech/gt.metaitem.01/20529.png deleted file mode 100644 index 256ec12ca4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2054.png b/front/public/images/small/gregtech/gt.metaitem.01/2054.png deleted file mode 100644 index 5e2f9f67b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2055.png b/front/public/images/small/gregtech/gt.metaitem.01/2055.png deleted file mode 100644 index 30df383ce8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2056.png b/front/public/images/small/gregtech/gt.metaitem.01/2056.png deleted file mode 100644 index 33700dca29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2057.png b/front/public/images/small/gregtech/gt.metaitem.01/2057.png deleted file mode 100644 index 68715f4de6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20576.png b/front/public/images/small/gregtech/gt.metaitem.01/20576.png deleted file mode 100644 index ae5da96537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2058.png b/front/public/images/small/gregtech/gt.metaitem.01/2058.png deleted file mode 100644 index c50f847a29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20581.png b/front/public/images/small/gregtech/gt.metaitem.01/20581.png deleted file mode 100644 index c43bfd0571..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20582.png b/front/public/images/small/gregtech/gt.metaitem.01/20582.png deleted file mode 100644 index f6c9c77f43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20585.png b/front/public/images/small/gregtech/gt.metaitem.01/20585.png deleted file mode 100644 index 2deaeca375..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20586.png b/front/public/images/small/gregtech/gt.metaitem.01/20586.png deleted file mode 100644 index ec3447e276..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20588.png b/front/public/images/small/gregtech/gt.metaitem.01/20588.png deleted file mode 100644 index 606b4a1bb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2059.png b/front/public/images/small/gregtech/gt.metaitem.01/2059.png deleted file mode 100644 index 5c0a944cc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20599.png b/front/public/images/small/gregtech/gt.metaitem.01/20599.png deleted file mode 100644 index c227f99a44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20610.png b/front/public/images/small/gregtech/gt.metaitem.01/20610.png deleted file mode 100644 index 5a158af25b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20613.png b/front/public/images/small/gregtech/gt.metaitem.01/20613.png deleted file mode 100644 index 1bcc945d68..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2062.png b/front/public/images/small/gregtech/gt.metaitem.01/2062.png deleted file mode 100644 index ae12371994..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2063.png b/front/public/images/small/gregtech/gt.metaitem.01/2063.png deleted file mode 100644 index cceae7fae9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20631.png b/front/public/images/small/gregtech/gt.metaitem.01/20631.png deleted file mode 100644 index 42ef314c9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20635.png b/front/public/images/small/gregtech/gt.metaitem.01/20635.png deleted file mode 100644 index 5a9d2099f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20636.png b/front/public/images/small/gregtech/gt.metaitem.01/20636.png deleted file mode 100644 index d5a39de537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2064.png b/front/public/images/small/gregtech/gt.metaitem.01/2064.png deleted file mode 100644 index 5c7e2ed416..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20649.png b/front/public/images/small/gregtech/gt.metaitem.01/20649.png deleted file mode 100644 index bf0a9397e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2065.png b/front/public/images/small/gregtech/gt.metaitem.01/2065.png deleted file mode 100644 index ca3d48947e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2066.png b/front/public/images/small/gregtech/gt.metaitem.01/2066.png deleted file mode 100644 index 3b408537ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2067.png b/front/public/images/small/gregtech/gt.metaitem.01/2067.png deleted file mode 100644 index 2f92b8059a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2068.png b/front/public/images/small/gregtech/gt.metaitem.01/2068.png deleted file mode 100644 index eeaa46db04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2069.png b/front/public/images/small/gregtech/gt.metaitem.01/2069.png deleted file mode 100644 index c49f13f9ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2070.png b/front/public/images/small/gregtech/gt.metaitem.01/2070.png deleted file mode 100644 index 144412cab2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2071.png b/front/public/images/small/gregtech/gt.metaitem.01/2071.png deleted file mode 100644 index e0290a7ac4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2072.png b/front/public/images/small/gregtech/gt.metaitem.01/2072.png deleted file mode 100644 index cceae7fae9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2073.png b/front/public/images/small/gregtech/gt.metaitem.01/2073.png deleted file mode 100644 index 38f8904971..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2074.png b/front/public/images/small/gregtech/gt.metaitem.01/2074.png deleted file mode 100644 index 975db60910..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2075.png b/front/public/images/small/gregtech/gt.metaitem.01/2075.png deleted file mode 100644 index c01f463441..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2076.png b/front/public/images/small/gregtech/gt.metaitem.01/2076.png deleted file mode 100644 index f0e80ba465..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20765.png b/front/public/images/small/gregtech/gt.metaitem.01/20765.png deleted file mode 100644 index d7b6832147..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2077.png b/front/public/images/small/gregtech/gt.metaitem.01/2077.png deleted file mode 100644 index bbdeb25efe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20770.png b/front/public/images/small/gregtech/gt.metaitem.01/20770.png deleted file mode 100644 index ca6faa4c94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20772.png b/front/public/images/small/gregtech/gt.metaitem.01/20772.png deleted file mode 100644 index 74b18a48bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2078.png b/front/public/images/small/gregtech/gt.metaitem.01/2078.png deleted file mode 100644 index 794c6b4eb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2080.png b/front/public/images/small/gregtech/gt.metaitem.01/2080.png deleted file mode 100644 index a2477703f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2081.png b/front/public/images/small/gregtech/gt.metaitem.01/2081.png deleted file mode 100644 index 675e22631d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20829.png b/front/public/images/small/gregtech/gt.metaitem.01/20829.png deleted file mode 100644 index a3d79f0963..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2083.png b/front/public/images/small/gregtech/gt.metaitem.01/2083.png deleted file mode 100644 index 525d2635fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2084.png b/front/public/images/small/gregtech/gt.metaitem.01/2084.png deleted file mode 100644 index 28b6198ce7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2085.png b/front/public/images/small/gregtech/gt.metaitem.01/2085.png deleted file mode 100644 index 7e17b80256..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20856.png b/front/public/images/small/gregtech/gt.metaitem.01/20856.png deleted file mode 100644 index aba7a56861..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2086.png b/front/public/images/small/gregtech/gt.metaitem.01/2086.png deleted file mode 100644 index 86ae2e3730..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20868.png b/front/public/images/small/gregtech/gt.metaitem.01/20868.png deleted file mode 100644 index 0f5374a42b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20874.png b/front/public/images/small/gregtech/gt.metaitem.01/20874.png deleted file mode 100644 index 38f2170fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20879.png b/front/public/images/small/gregtech/gt.metaitem.01/20879.png deleted file mode 100644 index 775ee928b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20879.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20880.png b/front/public/images/small/gregtech/gt.metaitem.01/20880.png deleted file mode 100644 index ec3447e276..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20884.png b/front/public/images/small/gregtech/gt.metaitem.01/20884.png deleted file mode 100644 index 671e13fc7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2089.png b/front/public/images/small/gregtech/gt.metaitem.01/2089.png deleted file mode 100644 index 8f4cb2519b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2090.png b/front/public/images/small/gregtech/gt.metaitem.01/2090.png deleted file mode 100644 index afad1f216e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20912.png b/front/public/images/small/gregtech/gt.metaitem.01/20912.png deleted file mode 100644 index 54345cca5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20913.png b/front/public/images/small/gregtech/gt.metaitem.01/20913.png deleted file mode 100644 index 35a2c84f86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20951.png b/front/public/images/small/gregtech/gt.metaitem.01/20951.png deleted file mode 100644 index d44891ea21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20952.png b/front/public/images/small/gregtech/gt.metaitem.01/20952.png deleted file mode 100644 index 239935ae67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20956.png b/front/public/images/small/gregtech/gt.metaitem.01/20956.png deleted file mode 100644 index f25f291994..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2096.png b/front/public/images/small/gregtech/gt.metaitem.01/2096.png deleted file mode 100644 index 288b754cfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20966.png b/front/public/images/small/gregtech/gt.metaitem.01/20966.png deleted file mode 100644 index 298b7290b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2097.png b/front/public/images/small/gregtech/gt.metaitem.01/2097.png deleted file mode 100644 index d9990dc698..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20970.png b/front/public/images/small/gregtech/gt.metaitem.01/20970.png deleted file mode 100644 index 82833929a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20974.png b/front/public/images/small/gregtech/gt.metaitem.01/20974.png deleted file mode 100644 index d354048d52..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20975.png b/front/public/images/small/gregtech/gt.metaitem.01/20975.png deleted file mode 100644 index 19fae51fe5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20976.png b/front/public/images/small/gregtech/gt.metaitem.01/20976.png deleted file mode 100644 index 2012137fed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20977.png b/front/public/images/small/gregtech/gt.metaitem.01/20977.png deleted file mode 100644 index 66f7eff971..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20978.png b/front/public/images/small/gregtech/gt.metaitem.01/20978.png deleted file mode 100644 index 10a8a20701..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20979.png b/front/public/images/small/gregtech/gt.metaitem.01/20979.png deleted file mode 100644 index 106c86c5fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2098.png b/front/public/images/small/gregtech/gt.metaitem.01/2098.png deleted file mode 100644 index 44b1665b44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20980.png b/front/public/images/small/gregtech/gt.metaitem.01/20980.png deleted file mode 100644 index 9863e69daa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20981.png b/front/public/images/small/gregtech/gt.metaitem.01/20981.png deleted file mode 100644 index 877128da74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20982.png b/front/public/images/small/gregtech/gt.metaitem.01/20982.png deleted file mode 100644 index 5061d4d5cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20984.png b/front/public/images/small/gregtech/gt.metaitem.01/20984.png deleted file mode 100644 index ca97abb8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20985.png b/front/public/images/small/gregtech/gt.metaitem.01/20985.png deleted file mode 100644 index 62ccaf13fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20986.png b/front/public/images/small/gregtech/gt.metaitem.01/20986.png deleted file mode 100644 index 0da69a92ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20987.png b/front/public/images/small/gregtech/gt.metaitem.01/20987.png deleted file mode 100644 index b07d0f9b6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20988.png b/front/public/images/small/gregtech/gt.metaitem.01/20988.png deleted file mode 100644 index 9e5fee350e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20989.png b/front/public/images/small/gregtech/gt.metaitem.01/20989.png deleted file mode 100644 index c24cd4b3f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20990.png b/front/public/images/small/gregtech/gt.metaitem.01/20990.png deleted file mode 100644 index fffdb8c702..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20991.png b/front/public/images/small/gregtech/gt.metaitem.01/20991.png deleted file mode 100644 index 8dfade7a35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/20992.png b/front/public/images/small/gregtech/gt.metaitem.01/20992.png deleted file mode 100644 index 2bde348fcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/20992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2100.png b/front/public/images/small/gregtech/gt.metaitem.01/2100.png deleted file mode 100644 index f95ebdf163..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21006.png b/front/public/images/small/gregtech/gt.metaitem.01/21006.png deleted file mode 100644 index 519e8aee34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21008.png b/front/public/images/small/gregtech/gt.metaitem.01/21008.png deleted file mode 100644 index 3aac31f937..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2101.png b/front/public/images/small/gregtech/gt.metaitem.01/2101.png deleted file mode 100644 index df2d93ce47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21010.png b/front/public/images/small/gregtech/gt.metaitem.01/21010.png deleted file mode 100644 index 15caa084dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21018.png b/front/public/images/small/gregtech/gt.metaitem.01/21018.png deleted file mode 100644 index 203f2efb93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21019.png b/front/public/images/small/gregtech/gt.metaitem.01/21019.png deleted file mode 100644 index a4b7cb8cce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21020.png b/front/public/images/small/gregtech/gt.metaitem.01/21020.png deleted file mode 100644 index f6ececf8f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21025.png b/front/public/images/small/gregtech/gt.metaitem.01/21025.png deleted file mode 100644 index 3e0ea9940b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21027.png b/front/public/images/small/gregtech/gt.metaitem.01/21027.png deleted file mode 100644 index 0967f2005e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21028.png b/front/public/images/small/gregtech/gt.metaitem.01/21028.png deleted file mode 100644 index dd5e59ef43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21029.png b/front/public/images/small/gregtech/gt.metaitem.01/21029.png deleted file mode 100644 index 37410b5566..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2103.png b/front/public/images/small/gregtech/gt.metaitem.01/2103.png deleted file mode 100644 index 7b93ca3419..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21030.png b/front/public/images/small/gregtech/gt.metaitem.01/21030.png deleted file mode 100644 index 854bc4a5e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21031.png b/front/public/images/small/gregtech/gt.metaitem.01/21031.png deleted file mode 100644 index 8f6a2c6339..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21032.png b/front/public/images/small/gregtech/gt.metaitem.01/21032.png deleted file mode 100644 index cf207ae342..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21033.png b/front/public/images/small/gregtech/gt.metaitem.01/21033.png deleted file mode 100644 index 9e6a4d861f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21034.png b/front/public/images/small/gregtech/gt.metaitem.01/21034.png deleted file mode 100644 index bf1d4c05f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21035.png b/front/public/images/small/gregtech/gt.metaitem.01/21035.png deleted file mode 100644 index 0f40f5081f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21036.png b/front/public/images/small/gregtech/gt.metaitem.01/21036.png deleted file mode 100644 index 8c5c85a7b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21037.png b/front/public/images/small/gregtech/gt.metaitem.01/21037.png deleted file mode 100644 index 1f37af8577..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21039.png b/front/public/images/small/gregtech/gt.metaitem.01/21039.png deleted file mode 100644 index e7780a93f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21043.png b/front/public/images/small/gregtech/gt.metaitem.01/21043.png deleted file mode 100644 index 4914a4dcdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21045.png b/front/public/images/small/gregtech/gt.metaitem.01/21045.png deleted file mode 100644 index 1655e2e133..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21047.png b/front/public/images/small/gregtech/gt.metaitem.01/21047.png deleted file mode 100644 index b8541ae984..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21048.png b/front/public/images/small/gregtech/gt.metaitem.01/21048.png deleted file mode 100644 index d0fa018270..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21052.png b/front/public/images/small/gregtech/gt.metaitem.01/21052.png deleted file mode 100644 index b388937064..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21054.png b/front/public/images/small/gregtech/gt.metaitem.01/21054.png deleted file mode 100644 index 1f37af8577..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21056.png b/front/public/images/small/gregtech/gt.metaitem.01/21056.png deleted file mode 100644 index 6da588a5fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21057.png b/front/public/images/small/gregtech/gt.metaitem.01/21057.png deleted file mode 100644 index f4f85e9db6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21058.png b/front/public/images/small/gregtech/gt.metaitem.01/21058.png deleted file mode 100644 index a105f92c85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21059.png b/front/public/images/small/gregtech/gt.metaitem.01/21059.png deleted file mode 100644 index e3285c6aa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21062.png b/front/public/images/small/gregtech/gt.metaitem.01/21062.png deleted file mode 100644 index dfbe745393..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21063.png b/front/public/images/small/gregtech/gt.metaitem.01/21063.png deleted file mode 100644 index e7780a93f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21064.png b/front/public/images/small/gregtech/gt.metaitem.01/21064.png deleted file mode 100644 index 95df077f80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21065.png b/front/public/images/small/gregtech/gt.metaitem.01/21065.png deleted file mode 100644 index a2d2c76768..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21066.png b/front/public/images/small/gregtech/gt.metaitem.01/21066.png deleted file mode 100644 index a7ba45182b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21067.png b/front/public/images/small/gregtech/gt.metaitem.01/21067.png deleted file mode 100644 index c017def13d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21068.png b/front/public/images/small/gregtech/gt.metaitem.01/21068.png deleted file mode 100644 index 8fc9de9055..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21069.png b/front/public/images/small/gregtech/gt.metaitem.01/21069.png deleted file mode 100644 index 3704212a16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21070.png b/front/public/images/small/gregtech/gt.metaitem.01/21070.png deleted file mode 100644 index b3cc08bdbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21071.png b/front/public/images/small/gregtech/gt.metaitem.01/21071.png deleted file mode 100644 index ddbdea09bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21072.png b/front/public/images/small/gregtech/gt.metaitem.01/21072.png deleted file mode 100644 index e7780a93f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21073.png b/front/public/images/small/gregtech/gt.metaitem.01/21073.png deleted file mode 100644 index c6b5d734af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21074.png b/front/public/images/small/gregtech/gt.metaitem.01/21074.png deleted file mode 100644 index 777873d145..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21075.png b/front/public/images/small/gregtech/gt.metaitem.01/21075.png deleted file mode 100644 index 2f50a7936c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21076.png b/front/public/images/small/gregtech/gt.metaitem.01/21076.png deleted file mode 100644 index 6480aa86e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21077.png b/front/public/images/small/gregtech/gt.metaitem.01/21077.png deleted file mode 100644 index d84ead2bf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21078.png b/front/public/images/small/gregtech/gt.metaitem.01/21078.png deleted file mode 100644 index 60950d05b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21080.png b/front/public/images/small/gregtech/gt.metaitem.01/21080.png deleted file mode 100644 index 571ca99342..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21081.png b/front/public/images/small/gregtech/gt.metaitem.01/21081.png deleted file mode 100644 index 37410b5566..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21083.png b/front/public/images/small/gregtech/gt.metaitem.01/21083.png deleted file mode 100644 index 41636fa483..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21084.png b/front/public/images/small/gregtech/gt.metaitem.01/21084.png deleted file mode 100644 index 7314054576..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21085.png b/front/public/images/small/gregtech/gt.metaitem.01/21085.png deleted file mode 100644 index 943aa3aad4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21086.png b/front/public/images/small/gregtech/gt.metaitem.01/21086.png deleted file mode 100644 index ef7f0c362d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21089.png b/front/public/images/small/gregtech/gt.metaitem.01/21089.png deleted file mode 100644 index 34cfa6a710..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21090.png b/front/public/images/small/gregtech/gt.metaitem.01/21090.png deleted file mode 100644 index 87f837fea8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21096.png b/front/public/images/small/gregtech/gt.metaitem.01/21096.png deleted file mode 100644 index 440999e7a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21097.png b/front/public/images/small/gregtech/gt.metaitem.01/21097.png deleted file mode 100644 index bfc9b96567..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21098.png b/front/public/images/small/gregtech/gt.metaitem.01/21098.png deleted file mode 100644 index e88f333ecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2110.png b/front/public/images/small/gregtech/gt.metaitem.01/2110.png deleted file mode 100644 index fb8baf0600..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21100.png b/front/public/images/small/gregtech/gt.metaitem.01/21100.png deleted file mode 100644 index 8f4fc53912..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21101.png b/front/public/images/small/gregtech/gt.metaitem.01/21101.png deleted file mode 100644 index 7662efd590..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21103.png b/front/public/images/small/gregtech/gt.metaitem.01/21103.png deleted file mode 100644 index cf207ae342..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2111.png b/front/public/images/small/gregtech/gt.metaitem.01/2111.png deleted file mode 100644 index 9e48f382ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21111.png b/front/public/images/small/gregtech/gt.metaitem.01/21111.png deleted file mode 100644 index 83db98ad0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21112.png b/front/public/images/small/gregtech/gt.metaitem.01/21112.png deleted file mode 100644 index 66beb01779..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2112.png b/front/public/images/small/gregtech/gt.metaitem.01/2112.png deleted file mode 100644 index d8c94b8a50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21129.png b/front/public/images/small/gregtech/gt.metaitem.01/21129.png deleted file mode 100644 index 8f6a2c6339..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21131.png b/front/public/images/small/gregtech/gt.metaitem.01/21131.png deleted file mode 100644 index af4cae6307..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21134.png b/front/public/images/small/gregtech/gt.metaitem.01/21134.png deleted file mode 100644 index 7a347d2e15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21139.png b/front/public/images/small/gregtech/gt.metaitem.01/21139.png deleted file mode 100644 index a109cb8a02..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21141.png b/front/public/images/small/gregtech/gt.metaitem.01/21141.png deleted file mode 100644 index 9e6847f0f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21143.png b/front/public/images/small/gregtech/gt.metaitem.01/21143.png deleted file mode 100644 index daec78ab35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21201.png b/front/public/images/small/gregtech/gt.metaitem.01/21201.png deleted file mode 100644 index a678c3f93b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21202.png b/front/public/images/small/gregtech/gt.metaitem.01/21202.png deleted file mode 100644 index 45b5f8e4fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21203.png b/front/public/images/small/gregtech/gt.metaitem.01/21203.png deleted file mode 100644 index 48ea61195b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21205.png b/front/public/images/small/gregtech/gt.metaitem.01/21205.png deleted file mode 100644 index 955b4b6cc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2129.png b/front/public/images/small/gregtech/gt.metaitem.01/2129.png deleted file mode 100644 index 18fa137561..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21300.png b/front/public/images/small/gregtech/gt.metaitem.01/21300.png deleted file mode 100644 index f43c30f432..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21301.png b/front/public/images/small/gregtech/gt.metaitem.01/21301.png deleted file mode 100644 index 0fc6de3012..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21302.png b/front/public/images/small/gregtech/gt.metaitem.01/21302.png deleted file mode 100644 index b36f2eeae4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21303.png b/front/public/images/small/gregtech/gt.metaitem.01/21303.png deleted file mode 100644 index 39dba15c72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21304.png b/front/public/images/small/gregtech/gt.metaitem.01/21304.png deleted file mode 100644 index 24511856ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21305.png b/front/public/images/small/gregtech/gt.metaitem.01/21305.png deleted file mode 100644 index b388937064..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21306.png b/front/public/images/small/gregtech/gt.metaitem.01/21306.png deleted file mode 100644 index f4718ff23f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21307.png b/front/public/images/small/gregtech/gt.metaitem.01/21307.png deleted file mode 100644 index 24511856ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21308.png b/front/public/images/small/gregtech/gt.metaitem.01/21308.png deleted file mode 100644 index a9ff717c1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21309.png b/front/public/images/small/gregtech/gt.metaitem.01/21309.png deleted file mode 100644 index 66de655088..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2131.png b/front/public/images/small/gregtech/gt.metaitem.01/2131.png deleted file mode 100644 index b70e45f614..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21310.png b/front/public/images/small/gregtech/gt.metaitem.01/21310.png deleted file mode 100644 index af51a501da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21311.png b/front/public/images/small/gregtech/gt.metaitem.01/21311.png deleted file mode 100644 index 60779b0777..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21312.png b/front/public/images/small/gregtech/gt.metaitem.01/21312.png deleted file mode 100644 index 4172302920..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21313.png b/front/public/images/small/gregtech/gt.metaitem.01/21313.png deleted file mode 100644 index 90789374a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21314.png b/front/public/images/small/gregtech/gt.metaitem.01/21314.png deleted file mode 100644 index 25b6a7289c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21315.png b/front/public/images/small/gregtech/gt.metaitem.01/21315.png deleted file mode 100644 index b5a286509c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21316.png b/front/public/images/small/gregtech/gt.metaitem.01/21316.png deleted file mode 100644 index fe71047f0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21317.png b/front/public/images/small/gregtech/gt.metaitem.01/21317.png deleted file mode 100644 index 63c63ec083..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21318.png b/front/public/images/small/gregtech/gt.metaitem.01/21318.png deleted file mode 100644 index 33e8e8cff7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21319.png b/front/public/images/small/gregtech/gt.metaitem.01/21319.png deleted file mode 100644 index e7780a93f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21320.png b/front/public/images/small/gregtech/gt.metaitem.01/21320.png deleted file mode 100644 index 2c918bba13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21321.png b/front/public/images/small/gregtech/gt.metaitem.01/21321.png deleted file mode 100644 index 7cc34f3cd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21323.png b/front/public/images/small/gregtech/gt.metaitem.01/21323.png deleted file mode 100644 index e204c23d35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21324.png b/front/public/images/small/gregtech/gt.metaitem.01/21324.png deleted file mode 100644 index 37410b5566..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21325.png b/front/public/images/small/gregtech/gt.metaitem.01/21325.png deleted file mode 100644 index caa5df5043..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21326.png b/front/public/images/small/gregtech/gt.metaitem.01/21326.png deleted file mode 100644 index 6309db7b8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21327.png b/front/public/images/small/gregtech/gt.metaitem.01/21327.png deleted file mode 100644 index c58f54b44d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21328.png b/front/public/images/small/gregtech/gt.metaitem.01/21328.png deleted file mode 100644 index e7780a93f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21329.png b/front/public/images/small/gregtech/gt.metaitem.01/21329.png deleted file mode 100644 index 2b0831b1a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21330.png b/front/public/images/small/gregtech/gt.metaitem.01/21330.png deleted file mode 100644 index aa567936e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21331.png b/front/public/images/small/gregtech/gt.metaitem.01/21331.png deleted file mode 100644 index a6020666b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21333.png b/front/public/images/small/gregtech/gt.metaitem.01/21333.png deleted file mode 100644 index 145ff62cb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21334.png b/front/public/images/small/gregtech/gt.metaitem.01/21334.png deleted file mode 100644 index c017def13d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21335.png b/front/public/images/small/gregtech/gt.metaitem.01/21335.png deleted file mode 100644 index a89241cfaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21336.png b/front/public/images/small/gregtech/gt.metaitem.01/21336.png deleted file mode 100644 index 875113f76d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21337.png b/front/public/images/small/gregtech/gt.metaitem.01/21337.png deleted file mode 100644 index 13faf0a7ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21338.png b/front/public/images/small/gregtech/gt.metaitem.01/21338.png deleted file mode 100644 index f168e62510..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21339.png b/front/public/images/small/gregtech/gt.metaitem.01/21339.png deleted file mode 100644 index d15ce35cc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2134.png b/front/public/images/small/gregtech/gt.metaitem.01/2134.png deleted file mode 100644 index 0da11137e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21340.png b/front/public/images/small/gregtech/gt.metaitem.01/21340.png deleted file mode 100644 index b813bd5548..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21341.png b/front/public/images/small/gregtech/gt.metaitem.01/21341.png deleted file mode 100644 index 8aecec5e0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21342.png b/front/public/images/small/gregtech/gt.metaitem.01/21342.png deleted file mode 100644 index 55fe70528d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21343.png b/front/public/images/small/gregtech/gt.metaitem.01/21343.png deleted file mode 100644 index 71de5a6998..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21344.png b/front/public/images/small/gregtech/gt.metaitem.01/21344.png deleted file mode 100644 index d4debf99cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21345.png b/front/public/images/small/gregtech/gt.metaitem.01/21345.png deleted file mode 100644 index 0e31917493..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21346.png b/front/public/images/small/gregtech/gt.metaitem.01/21346.png deleted file mode 100644 index 82644cbb2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21348.png b/front/public/images/small/gregtech/gt.metaitem.01/21348.png deleted file mode 100644 index ca8be5a9e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21349.png b/front/public/images/small/gregtech/gt.metaitem.01/21349.png deleted file mode 100644 index db4173bef9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21350.png b/front/public/images/small/gregtech/gt.metaitem.01/21350.png deleted file mode 100644 index 125f8a903e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21351.png b/front/public/images/small/gregtech/gt.metaitem.01/21351.png deleted file mode 100644 index 21a2d946bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21352.png b/front/public/images/small/gregtech/gt.metaitem.01/21352.png deleted file mode 100644 index f98ce2829e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21353.png b/front/public/images/small/gregtech/gt.metaitem.01/21353.png deleted file mode 100644 index ef90e37992..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21354.png b/front/public/images/small/gregtech/gt.metaitem.01/21354.png deleted file mode 100644 index b1fdeeae6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21355.png b/front/public/images/small/gregtech/gt.metaitem.01/21355.png deleted file mode 100644 index c5c6ab77c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21356.png b/front/public/images/small/gregtech/gt.metaitem.01/21356.png deleted file mode 100644 index 61a0d4aaff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21357.png b/front/public/images/small/gregtech/gt.metaitem.01/21357.png deleted file mode 100644 index bab9128684..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21358.png b/front/public/images/small/gregtech/gt.metaitem.01/21358.png deleted file mode 100644 index 4537bdc152..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21359.png b/front/public/images/small/gregtech/gt.metaitem.01/21359.png deleted file mode 100644 index 695fa9a14b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21360.png b/front/public/images/small/gregtech/gt.metaitem.01/21360.png deleted file mode 100644 index dc3cbf8d83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21361.png b/front/public/images/small/gregtech/gt.metaitem.01/21361.png deleted file mode 100644 index 0815fa62a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21362.png b/front/public/images/small/gregtech/gt.metaitem.01/21362.png deleted file mode 100644 index 025b416c43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21363.png b/front/public/images/small/gregtech/gt.metaitem.01/21363.png deleted file mode 100644 index cf207ae342..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21364.png b/front/public/images/small/gregtech/gt.metaitem.01/21364.png deleted file mode 100644 index c64094df1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21365.png b/front/public/images/small/gregtech/gt.metaitem.01/21365.png deleted file mode 100644 index 6b04f55d36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21366.png b/front/public/images/small/gregtech/gt.metaitem.01/21366.png deleted file mode 100644 index 8d72c09aee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21367.png b/front/public/images/small/gregtech/gt.metaitem.01/21367.png deleted file mode 100644 index 3ead4d6132..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21368.png b/front/public/images/small/gregtech/gt.metaitem.01/21368.png deleted file mode 100644 index bad9893bf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21369.png b/front/public/images/small/gregtech/gt.metaitem.01/21369.png deleted file mode 100644 index fbaf791c4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21370.png b/front/public/images/small/gregtech/gt.metaitem.01/21370.png deleted file mode 100644 index ed7f8310ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21371.png b/front/public/images/small/gregtech/gt.metaitem.01/21371.png deleted file mode 100644 index c8655e628d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21372.png b/front/public/images/small/gregtech/gt.metaitem.01/21372.png deleted file mode 100644 index fe1027b915..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21373.png b/front/public/images/small/gregtech/gt.metaitem.01/21373.png deleted file mode 100644 index f58f75955b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21374.png b/front/public/images/small/gregtech/gt.metaitem.01/21374.png deleted file mode 100644 index ab5026477e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21378.png b/front/public/images/small/gregtech/gt.metaitem.01/21378.png deleted file mode 100644 index e4aa77bcb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21379.png b/front/public/images/small/gregtech/gt.metaitem.01/21379.png deleted file mode 100644 index aa078819be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21380.png b/front/public/images/small/gregtech/gt.metaitem.01/21380.png deleted file mode 100644 index 3af130dd6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21381.png b/front/public/images/small/gregtech/gt.metaitem.01/21381.png deleted file mode 100644 index b465fc03eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21382.png b/front/public/images/small/gregtech/gt.metaitem.01/21382.png deleted file mode 100644 index f7173ebeac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21383.png b/front/public/images/small/gregtech/gt.metaitem.01/21383.png deleted file mode 100644 index 00416c4e20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21384.png b/front/public/images/small/gregtech/gt.metaitem.01/21384.png deleted file mode 100644 index 62ca1410f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21385.png b/front/public/images/small/gregtech/gt.metaitem.01/21385.png deleted file mode 100644 index 155e062c16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21386.png b/front/public/images/small/gregtech/gt.metaitem.01/21386.png deleted file mode 100644 index dd46fda33f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21387.png b/front/public/images/small/gregtech/gt.metaitem.01/21387.png deleted file mode 100644 index 66c58a1b8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21388.png b/front/public/images/small/gregtech/gt.metaitem.01/21388.png deleted file mode 100644 index 37410b5566..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21389.png b/front/public/images/small/gregtech/gt.metaitem.01/21389.png deleted file mode 100644 index 61bbc43a46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2139.png b/front/public/images/small/gregtech/gt.metaitem.01/2139.png deleted file mode 100644 index 150a28332e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21390.png b/front/public/images/small/gregtech/gt.metaitem.01/21390.png deleted file mode 100644 index a9c1e364e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21391.png b/front/public/images/small/gregtech/gt.metaitem.01/21391.png deleted file mode 100644 index 60873c22b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21392.png b/front/public/images/small/gregtech/gt.metaitem.01/21392.png deleted file mode 100644 index 6601c0e3a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21393.png b/front/public/images/small/gregtech/gt.metaitem.01/21393.png deleted file mode 100644 index 911b48b76c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21394.png b/front/public/images/small/gregtech/gt.metaitem.01/21394.png deleted file mode 100644 index e7780a93f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21395.png b/front/public/images/small/gregtech/gt.metaitem.01/21395.png deleted file mode 100644 index 37410b5566..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21397.png b/front/public/images/small/gregtech/gt.metaitem.01/21397.png deleted file mode 100644 index ad6af8f315..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21398.png b/front/public/images/small/gregtech/gt.metaitem.01/21398.png deleted file mode 100644 index 7b4785c641..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21399.png b/front/public/images/small/gregtech/gt.metaitem.01/21399.png deleted file mode 100644 index 75b4ace514..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21400.png b/front/public/images/small/gregtech/gt.metaitem.01/21400.png deleted file mode 100644 index 8a97b3ecad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21401.png b/front/public/images/small/gregtech/gt.metaitem.01/21401.png deleted file mode 100644 index 93ab66bbf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21402.png b/front/public/images/small/gregtech/gt.metaitem.01/21402.png deleted file mode 100644 index ed468b0c3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21403.png b/front/public/images/small/gregtech/gt.metaitem.01/21403.png deleted file mode 100644 index 3f8b59495a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21404.png b/front/public/images/small/gregtech/gt.metaitem.01/21404.png deleted file mode 100644 index d6adcc2bb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21405.png b/front/public/images/small/gregtech/gt.metaitem.01/21405.png deleted file mode 100644 index 7791d8c34f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21406.png b/front/public/images/small/gregtech/gt.metaitem.01/21406.png deleted file mode 100644 index bc8e3fd1e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21407.png b/front/public/images/small/gregtech/gt.metaitem.01/21407.png deleted file mode 100644 index c6addec1e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21408.png b/front/public/images/small/gregtech/gt.metaitem.01/21408.png deleted file mode 100644 index 9da41729da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2141.png b/front/public/images/small/gregtech/gt.metaitem.01/2141.png deleted file mode 100644 index 6051df886a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2143.png b/front/public/images/small/gregtech/gt.metaitem.01/2143.png deleted file mode 100644 index 96cd4a342a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21470.png b/front/public/images/small/gregtech/gt.metaitem.01/21470.png deleted file mode 100644 index 3d73031e6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21471.png b/front/public/images/small/gregtech/gt.metaitem.01/21471.png deleted file mode 100644 index f4f85e9db6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21472.png b/front/public/images/small/gregtech/gt.metaitem.01/21472.png deleted file mode 100644 index 37410b5566..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21473.png b/front/public/images/small/gregtech/gt.metaitem.01/21473.png deleted file mode 100644 index c017def13d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21485.png b/front/public/images/small/gregtech/gt.metaitem.01/21485.png deleted file mode 100644 index 99578aaa18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21488.png b/front/public/images/small/gregtech/gt.metaitem.01/21488.png deleted file mode 100644 index 828a398bff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21489.png b/front/public/images/small/gregtech/gt.metaitem.01/21489.png deleted file mode 100644 index a38ab1d64c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21521.png b/front/public/images/small/gregtech/gt.metaitem.01/21521.png deleted file mode 100644 index 33e8e8cff7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21529.png b/front/public/images/small/gregtech/gt.metaitem.01/21529.png deleted file mode 100644 index 0d683e45d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21576.png b/front/public/images/small/gregtech/gt.metaitem.01/21576.png deleted file mode 100644 index e9c2b1653e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21581.png b/front/public/images/small/gregtech/gt.metaitem.01/21581.png deleted file mode 100644 index 4143f53e1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21582.png b/front/public/images/small/gregtech/gt.metaitem.01/21582.png deleted file mode 100644 index 52bb4308ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21585.png b/front/public/images/small/gregtech/gt.metaitem.01/21585.png deleted file mode 100644 index 2f7889e466..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21586.png b/front/public/images/small/gregtech/gt.metaitem.01/21586.png deleted file mode 100644 index 799b38c300..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21588.png b/front/public/images/small/gregtech/gt.metaitem.01/21588.png deleted file mode 100644 index 04174fa0c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21599.png b/front/public/images/small/gregtech/gt.metaitem.01/21599.png deleted file mode 100644 index fb4b62d10b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21610.png b/front/public/images/small/gregtech/gt.metaitem.01/21610.png deleted file mode 100644 index 5f636243a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21613.png b/front/public/images/small/gregtech/gt.metaitem.01/21613.png deleted file mode 100644 index 4a4c35f916..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21631.png b/front/public/images/small/gregtech/gt.metaitem.01/21631.png deleted file mode 100644 index 659a913941..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21635.png b/front/public/images/small/gregtech/gt.metaitem.01/21635.png deleted file mode 100644 index 277bdbe1e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21636.png b/front/public/images/small/gregtech/gt.metaitem.01/21636.png deleted file mode 100644 index 68d2305870..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21649.png b/front/public/images/small/gregtech/gt.metaitem.01/21649.png deleted file mode 100644 index 3b9a71ece0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21765.png b/front/public/images/small/gregtech/gt.metaitem.01/21765.png deleted file mode 100644 index ebdd37884e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21770.png b/front/public/images/small/gregtech/gt.metaitem.01/21770.png deleted file mode 100644 index d25b95d06e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21772.png b/front/public/images/small/gregtech/gt.metaitem.01/21772.png deleted file mode 100644 index ffb3a1a67c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21829.png b/front/public/images/small/gregtech/gt.metaitem.01/21829.png deleted file mode 100644 index 9025972fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21856.png b/front/public/images/small/gregtech/gt.metaitem.01/21856.png deleted file mode 100644 index 2bb18f623c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21868.png b/front/public/images/small/gregtech/gt.metaitem.01/21868.png deleted file mode 100644 index bfed70deb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21874.png b/front/public/images/small/gregtech/gt.metaitem.01/21874.png deleted file mode 100644 index cf207ae342..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21879.png b/front/public/images/small/gregtech/gt.metaitem.01/21879.png deleted file mode 100644 index b612f6c0b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21879.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21880.png b/front/public/images/small/gregtech/gt.metaitem.01/21880.png deleted file mode 100644 index 799b38c300..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21884.png b/front/public/images/small/gregtech/gt.metaitem.01/21884.png deleted file mode 100644 index caa5df5043..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21912.png b/front/public/images/small/gregtech/gt.metaitem.01/21912.png deleted file mode 100644 index a41d84651b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21913.png b/front/public/images/small/gregtech/gt.metaitem.01/21913.png deleted file mode 100644 index ca8be5a9e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21951.png b/front/public/images/small/gregtech/gt.metaitem.01/21951.png deleted file mode 100644 index ddb371f072..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21952.png b/front/public/images/small/gregtech/gt.metaitem.01/21952.png deleted file mode 100644 index 220271c742..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21956.png b/front/public/images/small/gregtech/gt.metaitem.01/21956.png deleted file mode 100644 index 080e1c826e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21966.png b/front/public/images/small/gregtech/gt.metaitem.01/21966.png deleted file mode 100644 index d8542d233e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21970.png b/front/public/images/small/gregtech/gt.metaitem.01/21970.png deleted file mode 100644 index 691896b9b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21974.png b/front/public/images/small/gregtech/gt.metaitem.01/21974.png deleted file mode 100644 index 278f0becf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21975.png b/front/public/images/small/gregtech/gt.metaitem.01/21975.png deleted file mode 100644 index 957f204e3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21976.png b/front/public/images/small/gregtech/gt.metaitem.01/21976.png deleted file mode 100644 index c3b53b1bed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21977.png b/front/public/images/small/gregtech/gt.metaitem.01/21977.png deleted file mode 100644 index c69e7a221a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21978.png b/front/public/images/small/gregtech/gt.metaitem.01/21978.png deleted file mode 100644 index f1f0af7c2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21979.png b/front/public/images/small/gregtech/gt.metaitem.01/21979.png deleted file mode 100644 index 1267409850..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21980.png b/front/public/images/small/gregtech/gt.metaitem.01/21980.png deleted file mode 100644 index cdf1714d64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21981.png b/front/public/images/small/gregtech/gt.metaitem.01/21981.png deleted file mode 100644 index 656194af22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21982.png b/front/public/images/small/gregtech/gt.metaitem.01/21982.png deleted file mode 100644 index 8533ef8036..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21984.png b/front/public/images/small/gregtech/gt.metaitem.01/21984.png deleted file mode 100644 index e7780a93f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21985.png b/front/public/images/small/gregtech/gt.metaitem.01/21985.png deleted file mode 100644 index 84aa2e6356..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21986.png b/front/public/images/small/gregtech/gt.metaitem.01/21986.png deleted file mode 100644 index 859ac14a48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21987.png b/front/public/images/small/gregtech/gt.metaitem.01/21987.png deleted file mode 100644 index ee663504bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21988.png b/front/public/images/small/gregtech/gt.metaitem.01/21988.png deleted file mode 100644 index a21431e87f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21989.png b/front/public/images/small/gregtech/gt.metaitem.01/21989.png deleted file mode 100644 index cfe989baf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21990.png b/front/public/images/small/gregtech/gt.metaitem.01/21990.png deleted file mode 100644 index 0ec1a7e543..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21991.png b/front/public/images/small/gregtech/gt.metaitem.01/21991.png deleted file mode 100644 index 7e02c4380e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/21992.png b/front/public/images/small/gregtech/gt.metaitem.01/21992.png deleted file mode 100644 index e00b6aaba5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/21992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22006.png b/front/public/images/small/gregtech/gt.metaitem.01/22006.png deleted file mode 100644 index e0d2ea20c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22008.png b/front/public/images/small/gregtech/gt.metaitem.01/22008.png deleted file mode 100644 index 88244b5588..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2201.png b/front/public/images/small/gregtech/gt.metaitem.01/2201.png deleted file mode 100644 index deb36487ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22010.png b/front/public/images/small/gregtech/gt.metaitem.01/22010.png deleted file mode 100644 index 097dda259c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22018.png b/front/public/images/small/gregtech/gt.metaitem.01/22018.png deleted file mode 100644 index ab77a8ca6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22019.png b/front/public/images/small/gregtech/gt.metaitem.01/22019.png deleted file mode 100644 index 9527ff4f46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2202.png b/front/public/images/small/gregtech/gt.metaitem.01/2202.png deleted file mode 100644 index 28094bd8f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22020.png b/front/public/images/small/gregtech/gt.metaitem.01/22020.png deleted file mode 100644 index 367f7ac462..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22025.png b/front/public/images/small/gregtech/gt.metaitem.01/22025.png deleted file mode 100644 index 6c0c4fe661..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22027.png b/front/public/images/small/gregtech/gt.metaitem.01/22027.png deleted file mode 100644 index 58c9605ee0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22028.png b/front/public/images/small/gregtech/gt.metaitem.01/22028.png deleted file mode 100644 index bb83eb3d17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22029.png b/front/public/images/small/gregtech/gt.metaitem.01/22029.png deleted file mode 100644 index 701046d637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2203.png b/front/public/images/small/gregtech/gt.metaitem.01/2203.png deleted file mode 100644 index 6292762809..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22030.png b/front/public/images/small/gregtech/gt.metaitem.01/22030.png deleted file mode 100644 index f5f287f46d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22031.png b/front/public/images/small/gregtech/gt.metaitem.01/22031.png deleted file mode 100644 index b1d7a144f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22032.png b/front/public/images/small/gregtech/gt.metaitem.01/22032.png deleted file mode 100644 index ac12eaf87d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22033.png b/front/public/images/small/gregtech/gt.metaitem.01/22033.png deleted file mode 100644 index 1c95db5edd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22034.png b/front/public/images/small/gregtech/gt.metaitem.01/22034.png deleted file mode 100644 index 2fde132fa0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22035.png b/front/public/images/small/gregtech/gt.metaitem.01/22035.png deleted file mode 100644 index b8cf3eb4ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22036.png b/front/public/images/small/gregtech/gt.metaitem.01/22036.png deleted file mode 100644 index c97d5d672f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22037.png b/front/public/images/small/gregtech/gt.metaitem.01/22037.png deleted file mode 100644 index f84a096cf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22039.png b/front/public/images/small/gregtech/gt.metaitem.01/22039.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2204.png b/front/public/images/small/gregtech/gt.metaitem.01/2204.png deleted file mode 100644 index 920770526d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22043.png b/front/public/images/small/gregtech/gt.metaitem.01/22043.png deleted file mode 100644 index a6f54f90e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22045.png b/front/public/images/small/gregtech/gt.metaitem.01/22045.png deleted file mode 100644 index 60017dd2ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22047.png b/front/public/images/small/gregtech/gt.metaitem.01/22047.png deleted file mode 100644 index 3669425e7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22048.png b/front/public/images/small/gregtech/gt.metaitem.01/22048.png deleted file mode 100644 index 7119576db0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2205.png b/front/public/images/small/gregtech/gt.metaitem.01/2205.png deleted file mode 100644 index 7a5417f744..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22052.png b/front/public/images/small/gregtech/gt.metaitem.01/22052.png deleted file mode 100644 index 4dd60822b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22054.png b/front/public/images/small/gregtech/gt.metaitem.01/22054.png deleted file mode 100644 index f84a096cf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22056.png b/front/public/images/small/gregtech/gt.metaitem.01/22056.png deleted file mode 100644 index e5347d5010..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22057.png b/front/public/images/small/gregtech/gt.metaitem.01/22057.png deleted file mode 100644 index 7694766c87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22058.png b/front/public/images/small/gregtech/gt.metaitem.01/22058.png deleted file mode 100644 index 443ecb0bb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22059.png b/front/public/images/small/gregtech/gt.metaitem.01/22059.png deleted file mode 100644 index 34cc1db7af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2206.png b/front/public/images/small/gregtech/gt.metaitem.01/2206.png deleted file mode 100644 index 1096b5e551..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22062.png b/front/public/images/small/gregtech/gt.metaitem.01/22062.png deleted file mode 100644 index d431b2422f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22063.png b/front/public/images/small/gregtech/gt.metaitem.01/22063.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22064.png b/front/public/images/small/gregtech/gt.metaitem.01/22064.png deleted file mode 100644 index 2670ee5cba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22065.png b/front/public/images/small/gregtech/gt.metaitem.01/22065.png deleted file mode 100644 index 6d7c25377a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22066.png b/front/public/images/small/gregtech/gt.metaitem.01/22066.png deleted file mode 100644 index 7e28a6a9fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22067.png b/front/public/images/small/gregtech/gt.metaitem.01/22067.png deleted file mode 100644 index 24860d12c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22068.png b/front/public/images/small/gregtech/gt.metaitem.01/22068.png deleted file mode 100644 index 2e580aa992..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22069.png b/front/public/images/small/gregtech/gt.metaitem.01/22069.png deleted file mode 100644 index ea272b4c32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2207.png b/front/public/images/small/gregtech/gt.metaitem.01/2207.png deleted file mode 100644 index 1bbccabf7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22070.png b/front/public/images/small/gregtech/gt.metaitem.01/22070.png deleted file mode 100644 index a52504048f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22071.png b/front/public/images/small/gregtech/gt.metaitem.01/22071.png deleted file mode 100644 index 5450749dcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22072.png b/front/public/images/small/gregtech/gt.metaitem.01/22072.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22073.png b/front/public/images/small/gregtech/gt.metaitem.01/22073.png deleted file mode 100644 index 65f98a99cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22074.png b/front/public/images/small/gregtech/gt.metaitem.01/22074.png deleted file mode 100644 index dd1bdac596..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22075.png b/front/public/images/small/gregtech/gt.metaitem.01/22075.png deleted file mode 100644 index 1c92e18af7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22076.png b/front/public/images/small/gregtech/gt.metaitem.01/22076.png deleted file mode 100644 index ca46316dfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22077.png b/front/public/images/small/gregtech/gt.metaitem.01/22077.png deleted file mode 100644 index 9ce4721c1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22078.png b/front/public/images/small/gregtech/gt.metaitem.01/22078.png deleted file mode 100644 index 1741340288..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2208.png b/front/public/images/small/gregtech/gt.metaitem.01/2208.png deleted file mode 100644 index 66947e80a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22080.png b/front/public/images/small/gregtech/gt.metaitem.01/22080.png deleted file mode 100644 index b6fb0c78fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22081.png b/front/public/images/small/gregtech/gt.metaitem.01/22081.png deleted file mode 100644 index 701046d637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22083.png b/front/public/images/small/gregtech/gt.metaitem.01/22083.png deleted file mode 100644 index 13656cad24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22084.png b/front/public/images/small/gregtech/gt.metaitem.01/22084.png deleted file mode 100644 index c0d8fda658..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22085.png b/front/public/images/small/gregtech/gt.metaitem.01/22085.png deleted file mode 100644 index c174e54bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22086.png b/front/public/images/small/gregtech/gt.metaitem.01/22086.png deleted file mode 100644 index 1b3d8fa510..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22089.png b/front/public/images/small/gregtech/gt.metaitem.01/22089.png deleted file mode 100644 index 70086785f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2209.png b/front/public/images/small/gregtech/gt.metaitem.01/2209.png deleted file mode 100644 index 153dd9b376..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22090.png b/front/public/images/small/gregtech/gt.metaitem.01/22090.png deleted file mode 100644 index f23e100c00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22096.png b/front/public/images/small/gregtech/gt.metaitem.01/22096.png deleted file mode 100644 index 9883bf99e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22097.png b/front/public/images/small/gregtech/gt.metaitem.01/22097.png deleted file mode 100644 index dd522e6e90..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22098.png b/front/public/images/small/gregtech/gt.metaitem.01/22098.png deleted file mode 100644 index 248a3de4d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22100.png b/front/public/images/small/gregtech/gt.metaitem.01/22100.png deleted file mode 100644 index cb01e1f3f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22101.png b/front/public/images/small/gregtech/gt.metaitem.01/22101.png deleted file mode 100644 index 2a1a32d3b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22103.png b/front/public/images/small/gregtech/gt.metaitem.01/22103.png deleted file mode 100644 index ac12eaf87d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22111.png b/front/public/images/small/gregtech/gt.metaitem.01/22111.png deleted file mode 100644 index 3a9f9c23bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22112.png b/front/public/images/small/gregtech/gt.metaitem.01/22112.png deleted file mode 100644 index 340e712f8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22129.png b/front/public/images/small/gregtech/gt.metaitem.01/22129.png deleted file mode 100644 index b1d7a144f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22131.png b/front/public/images/small/gregtech/gt.metaitem.01/22131.png deleted file mode 100644 index 2631e6c3ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22134.png b/front/public/images/small/gregtech/gt.metaitem.01/22134.png deleted file mode 100644 index 42313a6402..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22139.png b/front/public/images/small/gregtech/gt.metaitem.01/22139.png deleted file mode 100644 index 4739044697..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22141.png b/front/public/images/small/gregtech/gt.metaitem.01/22141.png deleted file mode 100644 index c72bfaabb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22143.png b/front/public/images/small/gregtech/gt.metaitem.01/22143.png deleted file mode 100644 index 6b8a1fa8c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22201.png b/front/public/images/small/gregtech/gt.metaitem.01/22201.png deleted file mode 100644 index c1cece75ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22202.png b/front/public/images/small/gregtech/gt.metaitem.01/22202.png deleted file mode 100644 index 8164fbf003..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22203.png b/front/public/images/small/gregtech/gt.metaitem.01/22203.png deleted file mode 100644 index 3bfcc5f2ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22205.png b/front/public/images/small/gregtech/gt.metaitem.01/22205.png deleted file mode 100644 index 30d2c9544f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22300.png b/front/public/images/small/gregtech/gt.metaitem.01/22300.png deleted file mode 100644 index 3d89ccb118..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22301.png b/front/public/images/small/gregtech/gt.metaitem.01/22301.png deleted file mode 100644 index 2d486146a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22302.png b/front/public/images/small/gregtech/gt.metaitem.01/22302.png deleted file mode 100644 index fd4e4a6d1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22303.png b/front/public/images/small/gregtech/gt.metaitem.01/22303.png deleted file mode 100644 index 3bb4381195..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22304.png b/front/public/images/small/gregtech/gt.metaitem.01/22304.png deleted file mode 100644 index d2d92305ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22305.png b/front/public/images/small/gregtech/gt.metaitem.01/22305.png deleted file mode 100644 index 4dd60822b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22306.png b/front/public/images/small/gregtech/gt.metaitem.01/22306.png deleted file mode 100644 index 7c7c6310ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22307.png b/front/public/images/small/gregtech/gt.metaitem.01/22307.png deleted file mode 100644 index d2d92305ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22308.png b/front/public/images/small/gregtech/gt.metaitem.01/22308.png deleted file mode 100644 index b841c6c5f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22309.png b/front/public/images/small/gregtech/gt.metaitem.01/22309.png deleted file mode 100644 index e80f2913d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22310.png b/front/public/images/small/gregtech/gt.metaitem.01/22310.png deleted file mode 100644 index c98de09040..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22311.png b/front/public/images/small/gregtech/gt.metaitem.01/22311.png deleted file mode 100644 index 9db4c9443d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22312.png b/front/public/images/small/gregtech/gt.metaitem.01/22312.png deleted file mode 100644 index 715e265cb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22313.png b/front/public/images/small/gregtech/gt.metaitem.01/22313.png deleted file mode 100644 index e3c1f1eacd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22314.png b/front/public/images/small/gregtech/gt.metaitem.01/22314.png deleted file mode 100644 index 35652b2c26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22315.png b/front/public/images/small/gregtech/gt.metaitem.01/22315.png deleted file mode 100644 index 895e397c7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22316.png b/front/public/images/small/gregtech/gt.metaitem.01/22316.png deleted file mode 100644 index dcace197d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22317.png b/front/public/images/small/gregtech/gt.metaitem.01/22317.png deleted file mode 100644 index 45387736c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22318.png b/front/public/images/small/gregtech/gt.metaitem.01/22318.png deleted file mode 100644 index 504ebd2688..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22319.png b/front/public/images/small/gregtech/gt.metaitem.01/22319.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22320.png b/front/public/images/small/gregtech/gt.metaitem.01/22320.png deleted file mode 100644 index 944884fc32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22321.png b/front/public/images/small/gregtech/gt.metaitem.01/22321.png deleted file mode 100644 index 6f3c180b9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22323.png b/front/public/images/small/gregtech/gt.metaitem.01/22323.png deleted file mode 100644 index 6dc0eaac88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22324.png b/front/public/images/small/gregtech/gt.metaitem.01/22324.png deleted file mode 100644 index 701046d637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22325.png b/front/public/images/small/gregtech/gt.metaitem.01/22325.png deleted file mode 100644 index 4fc023dab1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22326.png b/front/public/images/small/gregtech/gt.metaitem.01/22326.png deleted file mode 100644 index 2f5a186b55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22327.png b/front/public/images/small/gregtech/gt.metaitem.01/22327.png deleted file mode 100644 index d2ce0765f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22328.png b/front/public/images/small/gregtech/gt.metaitem.01/22328.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22329.png b/front/public/images/small/gregtech/gt.metaitem.01/22329.png deleted file mode 100644 index 2408863743..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22330.png b/front/public/images/small/gregtech/gt.metaitem.01/22330.png deleted file mode 100644 index e5c9fbd81f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22331.png b/front/public/images/small/gregtech/gt.metaitem.01/22331.png deleted file mode 100644 index b6b0046f5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22333.png b/front/public/images/small/gregtech/gt.metaitem.01/22333.png deleted file mode 100644 index 4023e882f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22334.png b/front/public/images/small/gregtech/gt.metaitem.01/22334.png deleted file mode 100644 index 24860d12c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22335.png b/front/public/images/small/gregtech/gt.metaitem.01/22335.png deleted file mode 100644 index 7ce02443d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22336.png b/front/public/images/small/gregtech/gt.metaitem.01/22336.png deleted file mode 100644 index 63484b4ff4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22337.png b/front/public/images/small/gregtech/gt.metaitem.01/22337.png deleted file mode 100644 index 454946b8b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22338.png b/front/public/images/small/gregtech/gt.metaitem.01/22338.png deleted file mode 100644 index f62bb0fd0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22339.png b/front/public/images/small/gregtech/gt.metaitem.01/22339.png deleted file mode 100644 index 4d2cf35cdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22340.png b/front/public/images/small/gregtech/gt.metaitem.01/22340.png deleted file mode 100644 index 41a1c36300..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22341.png b/front/public/images/small/gregtech/gt.metaitem.01/22341.png deleted file mode 100644 index 7fc84c4eaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22342.png b/front/public/images/small/gregtech/gt.metaitem.01/22342.png deleted file mode 100644 index 5b4ac2787c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22343.png b/front/public/images/small/gregtech/gt.metaitem.01/22343.png deleted file mode 100644 index 7680e0e3c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22344.png b/front/public/images/small/gregtech/gt.metaitem.01/22344.png deleted file mode 100644 index f48c47db7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22345.png b/front/public/images/small/gregtech/gt.metaitem.01/22345.png deleted file mode 100644 index 526d6e22ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22346.png b/front/public/images/small/gregtech/gt.metaitem.01/22346.png deleted file mode 100644 index f0da2019de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22348.png b/front/public/images/small/gregtech/gt.metaitem.01/22348.png deleted file mode 100644 index 5cbc7fdf0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22349.png b/front/public/images/small/gregtech/gt.metaitem.01/22349.png deleted file mode 100644 index 5a936793fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22350.png b/front/public/images/small/gregtech/gt.metaitem.01/22350.png deleted file mode 100644 index ca7c2e27a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22351.png b/front/public/images/small/gregtech/gt.metaitem.01/22351.png deleted file mode 100644 index 8ec1aaf9c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22352.png b/front/public/images/small/gregtech/gt.metaitem.01/22352.png deleted file mode 100644 index 6eddfb8ab7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22353.png b/front/public/images/small/gregtech/gt.metaitem.01/22353.png deleted file mode 100644 index a6e414b618..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22354.png b/front/public/images/small/gregtech/gt.metaitem.01/22354.png deleted file mode 100644 index 4bf0ecbffd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22355.png b/front/public/images/small/gregtech/gt.metaitem.01/22355.png deleted file mode 100644 index 4db10eb08f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22356.png b/front/public/images/small/gregtech/gt.metaitem.01/22356.png deleted file mode 100644 index 8184778434..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22357.png b/front/public/images/small/gregtech/gt.metaitem.01/22357.png deleted file mode 100644 index 59eaaeb3fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22358.png b/front/public/images/small/gregtech/gt.metaitem.01/22358.png deleted file mode 100644 index ee82dd975d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22359.png b/front/public/images/small/gregtech/gt.metaitem.01/22359.png deleted file mode 100644 index cec57faa9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22360.png b/front/public/images/small/gregtech/gt.metaitem.01/22360.png deleted file mode 100644 index 2324fdba74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22361.png b/front/public/images/small/gregtech/gt.metaitem.01/22361.png deleted file mode 100644 index 2e9c6c7ae5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22362.png b/front/public/images/small/gregtech/gt.metaitem.01/22362.png deleted file mode 100644 index 469554348a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22363.png b/front/public/images/small/gregtech/gt.metaitem.01/22363.png deleted file mode 100644 index ac12eaf87d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22364.png b/front/public/images/small/gregtech/gt.metaitem.01/22364.png deleted file mode 100644 index 8e759d303b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22365.png b/front/public/images/small/gregtech/gt.metaitem.01/22365.png deleted file mode 100644 index bae769c3ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22366.png b/front/public/images/small/gregtech/gt.metaitem.01/22366.png deleted file mode 100644 index dcaa17cfb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22367.png b/front/public/images/small/gregtech/gt.metaitem.01/22367.png deleted file mode 100644 index 356f061122..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22368.png b/front/public/images/small/gregtech/gt.metaitem.01/22368.png deleted file mode 100644 index f8fc987d5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22369.png b/front/public/images/small/gregtech/gt.metaitem.01/22369.png deleted file mode 100644 index 18e414241a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22370.png b/front/public/images/small/gregtech/gt.metaitem.01/22370.png deleted file mode 100644 index 30e937bbe2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22371.png b/front/public/images/small/gregtech/gt.metaitem.01/22371.png deleted file mode 100644 index f35b6f7a11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22372.png b/front/public/images/small/gregtech/gt.metaitem.01/22372.png deleted file mode 100644 index 4394b1d299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22373.png b/front/public/images/small/gregtech/gt.metaitem.01/22373.png deleted file mode 100644 index aa52e9f225..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22374.png b/front/public/images/small/gregtech/gt.metaitem.01/22374.png deleted file mode 100644 index aa445fd296..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22378.png b/front/public/images/small/gregtech/gt.metaitem.01/22378.png deleted file mode 100644 index d6fa75b660..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22379.png b/front/public/images/small/gregtech/gt.metaitem.01/22379.png deleted file mode 100644 index b6e4506090..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22380.png b/front/public/images/small/gregtech/gt.metaitem.01/22380.png deleted file mode 100644 index 56ba6fa3bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22381.png b/front/public/images/small/gregtech/gt.metaitem.01/22381.png deleted file mode 100644 index bc5e42a356..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22382.png b/front/public/images/small/gregtech/gt.metaitem.01/22382.png deleted file mode 100644 index 7e0603f20a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22383.png b/front/public/images/small/gregtech/gt.metaitem.01/22383.png deleted file mode 100644 index e4022fee81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22384.png b/front/public/images/small/gregtech/gt.metaitem.01/22384.png deleted file mode 100644 index 474e9f6f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22385.png b/front/public/images/small/gregtech/gt.metaitem.01/22385.png deleted file mode 100644 index a01151f340..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22386.png b/front/public/images/small/gregtech/gt.metaitem.01/22386.png deleted file mode 100644 index 9ea49acd2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22387.png b/front/public/images/small/gregtech/gt.metaitem.01/22387.png deleted file mode 100644 index f140ddcbd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22388.png b/front/public/images/small/gregtech/gt.metaitem.01/22388.png deleted file mode 100644 index 701046d637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22389.png b/front/public/images/small/gregtech/gt.metaitem.01/22389.png deleted file mode 100644 index 9e216d234f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22390.png b/front/public/images/small/gregtech/gt.metaitem.01/22390.png deleted file mode 100644 index ba1dd3697f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22391.png b/front/public/images/small/gregtech/gt.metaitem.01/22391.png deleted file mode 100644 index e9bb0c6adf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22392.png b/front/public/images/small/gregtech/gt.metaitem.01/22392.png deleted file mode 100644 index 75eecdde04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22393.png b/front/public/images/small/gregtech/gt.metaitem.01/22393.png deleted file mode 100644 index dccb8f4aed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22394.png b/front/public/images/small/gregtech/gt.metaitem.01/22394.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22395.png b/front/public/images/small/gregtech/gt.metaitem.01/22395.png deleted file mode 100644 index 701046d637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22397.png b/front/public/images/small/gregtech/gt.metaitem.01/22397.png deleted file mode 100644 index 2149f4c252..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22398.png b/front/public/images/small/gregtech/gt.metaitem.01/22398.png deleted file mode 100644 index b20276e94d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22399.png b/front/public/images/small/gregtech/gt.metaitem.01/22399.png deleted file mode 100644 index a6b1efbb0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22400.png b/front/public/images/small/gregtech/gt.metaitem.01/22400.png deleted file mode 100644 index c739e1f317..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22401.png b/front/public/images/small/gregtech/gt.metaitem.01/22401.png deleted file mode 100644 index 8525092f06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22402.png b/front/public/images/small/gregtech/gt.metaitem.01/22402.png deleted file mode 100644 index c98a939b2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22403.png b/front/public/images/small/gregtech/gt.metaitem.01/22403.png deleted file mode 100644 index e4a99cd55e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22404.png b/front/public/images/small/gregtech/gt.metaitem.01/22404.png deleted file mode 100644 index 3316a4389a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22405.png b/front/public/images/small/gregtech/gt.metaitem.01/22405.png deleted file mode 100644 index 27e37f055b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22406.png b/front/public/images/small/gregtech/gt.metaitem.01/22406.png deleted file mode 100644 index fbae5778f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22407.png b/front/public/images/small/gregtech/gt.metaitem.01/22407.png deleted file mode 100644 index c3a040a10c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22408.png b/front/public/images/small/gregtech/gt.metaitem.01/22408.png deleted file mode 100644 index 30481d2fdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2241.png b/front/public/images/small/gregtech/gt.metaitem.01/2241.png deleted file mode 100644 index 106204826b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2241.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22470.png b/front/public/images/small/gregtech/gt.metaitem.01/22470.png deleted file mode 100644 index 08046226d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22471.png b/front/public/images/small/gregtech/gt.metaitem.01/22471.png deleted file mode 100644 index 7694766c87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22472.png b/front/public/images/small/gregtech/gt.metaitem.01/22472.png deleted file mode 100644 index 701046d637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22473.png b/front/public/images/small/gregtech/gt.metaitem.01/22473.png deleted file mode 100644 index 24860d12c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22485.png b/front/public/images/small/gregtech/gt.metaitem.01/22485.png deleted file mode 100644 index 3d2a47dbdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22488.png b/front/public/images/small/gregtech/gt.metaitem.01/22488.png deleted file mode 100644 index fb2f07448d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22489.png b/front/public/images/small/gregtech/gt.metaitem.01/22489.png deleted file mode 100644 index 7cce45bbe2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22521.png b/front/public/images/small/gregtech/gt.metaitem.01/22521.png deleted file mode 100644 index 504ebd2688..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22529.png b/front/public/images/small/gregtech/gt.metaitem.01/22529.png deleted file mode 100644 index 2ec66af0a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22576.png b/front/public/images/small/gregtech/gt.metaitem.01/22576.png deleted file mode 100644 index 5b92a7d1db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22581.png b/front/public/images/small/gregtech/gt.metaitem.01/22581.png deleted file mode 100644 index 2adf70cfd3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22582.png b/front/public/images/small/gregtech/gt.metaitem.01/22582.png deleted file mode 100644 index 067c1678ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22583.png b/front/public/images/small/gregtech/gt.metaitem.01/22583.png deleted file mode 100644 index 28d62c6090..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22585.png b/front/public/images/small/gregtech/gt.metaitem.01/22585.png deleted file mode 100644 index 623e52ec67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22586.png b/front/public/images/small/gregtech/gt.metaitem.01/22586.png deleted file mode 100644 index 025221ad77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22588.png b/front/public/images/small/gregtech/gt.metaitem.01/22588.png deleted file mode 100644 index 9b307f6a68..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22599.png b/front/public/images/small/gregtech/gt.metaitem.01/22599.png deleted file mode 100644 index 3537a398b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22610.png b/front/public/images/small/gregtech/gt.metaitem.01/22610.png deleted file mode 100644 index 8803c98870..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22613.png b/front/public/images/small/gregtech/gt.metaitem.01/22613.png deleted file mode 100644 index 97ab30e3ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22631.png b/front/public/images/small/gregtech/gt.metaitem.01/22631.png deleted file mode 100644 index 8b7f8734d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22635.png b/front/public/images/small/gregtech/gt.metaitem.01/22635.png deleted file mode 100644 index f7286bea9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22636.png b/front/public/images/small/gregtech/gt.metaitem.01/22636.png deleted file mode 100644 index 18c081a514..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22649.png b/front/public/images/small/gregtech/gt.metaitem.01/22649.png deleted file mode 100644 index 7497b7aa95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22765.png b/front/public/images/small/gregtech/gt.metaitem.01/22765.png deleted file mode 100644 index 023ae10932..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22770.png b/front/public/images/small/gregtech/gt.metaitem.01/22770.png deleted file mode 100644 index 1dcf1b240d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22772.png b/front/public/images/small/gregtech/gt.metaitem.01/22772.png deleted file mode 100644 index ebd9fc5ded..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22829.png b/front/public/images/small/gregtech/gt.metaitem.01/22829.png deleted file mode 100644 index 770e2c3bf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22856.png b/front/public/images/small/gregtech/gt.metaitem.01/22856.png deleted file mode 100644 index cd075c1060..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22868.png b/front/public/images/small/gregtech/gt.metaitem.01/22868.png deleted file mode 100644 index a2a54d9022..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22874.png b/front/public/images/small/gregtech/gt.metaitem.01/22874.png deleted file mode 100644 index ac12eaf87d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22880.png b/front/public/images/small/gregtech/gt.metaitem.01/22880.png deleted file mode 100644 index 025221ad77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22884.png b/front/public/images/small/gregtech/gt.metaitem.01/22884.png deleted file mode 100644 index 4fc023dab1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22912.png b/front/public/images/small/gregtech/gt.metaitem.01/22912.png deleted file mode 100644 index 89f83a0ae5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22913.png b/front/public/images/small/gregtech/gt.metaitem.01/22913.png deleted file mode 100644 index 5cbc7fdf0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22951.png b/front/public/images/small/gregtech/gt.metaitem.01/22951.png deleted file mode 100644 index 1516cfa694..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22952.png b/front/public/images/small/gregtech/gt.metaitem.01/22952.png deleted file mode 100644 index 7a87f8452d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22956.png b/front/public/images/small/gregtech/gt.metaitem.01/22956.png deleted file mode 100644 index 41be354cde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22966.png b/front/public/images/small/gregtech/gt.metaitem.01/22966.png deleted file mode 100644 index ad8f80b198..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22970.png b/front/public/images/small/gregtech/gt.metaitem.01/22970.png deleted file mode 100644 index 4bce0541d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22974.png b/front/public/images/small/gregtech/gt.metaitem.01/22974.png deleted file mode 100644 index 6b55d7dc85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22975.png b/front/public/images/small/gregtech/gt.metaitem.01/22975.png deleted file mode 100644 index e263d20294..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22976.png b/front/public/images/small/gregtech/gt.metaitem.01/22976.png deleted file mode 100644 index 5dda982dad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22977.png b/front/public/images/small/gregtech/gt.metaitem.01/22977.png deleted file mode 100644 index b1b40c81b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22978.png b/front/public/images/small/gregtech/gt.metaitem.01/22978.png deleted file mode 100644 index 74cc2c852b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22979.png b/front/public/images/small/gregtech/gt.metaitem.01/22979.png deleted file mode 100644 index 59bb2a8723..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22980.png b/front/public/images/small/gregtech/gt.metaitem.01/22980.png deleted file mode 100644 index 081c46b528..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22981.png b/front/public/images/small/gregtech/gt.metaitem.01/22981.png deleted file mode 100644 index f729266ea5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22982.png b/front/public/images/small/gregtech/gt.metaitem.01/22982.png deleted file mode 100644 index 589751deb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22984.png b/front/public/images/small/gregtech/gt.metaitem.01/22984.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22985.png b/front/public/images/small/gregtech/gt.metaitem.01/22985.png deleted file mode 100644 index 9d92a23fe4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22986.png b/front/public/images/small/gregtech/gt.metaitem.01/22986.png deleted file mode 100644 index 1aad0f5c13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22987.png b/front/public/images/small/gregtech/gt.metaitem.01/22987.png deleted file mode 100644 index 32f47fbc35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22988.png b/front/public/images/small/gregtech/gt.metaitem.01/22988.png deleted file mode 100644 index 7ce04eede5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22989.png b/front/public/images/small/gregtech/gt.metaitem.01/22989.png deleted file mode 100644 index 1879aa3cc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2299.png b/front/public/images/small/gregtech/gt.metaitem.01/2299.png deleted file mode 100644 index 886bffe711..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22990.png b/front/public/images/small/gregtech/gt.metaitem.01/22990.png deleted file mode 100644 index 09c8ff4007..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22991.png b/front/public/images/small/gregtech/gt.metaitem.01/22991.png deleted file mode 100644 index ab95729c0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/22992.png b/front/public/images/small/gregtech/gt.metaitem.01/22992.png deleted file mode 100644 index 4bb64aff65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/22992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2300.png b/front/public/images/small/gregtech/gt.metaitem.01/2300.png deleted file mode 100644 index 959c544cd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23006.png b/front/public/images/small/gregtech/gt.metaitem.01/23006.png deleted file mode 100644 index a9dde1f73f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23008.png b/front/public/images/small/gregtech/gt.metaitem.01/23008.png deleted file mode 100644 index 4c0140e123..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2301.png b/front/public/images/small/gregtech/gt.metaitem.01/2301.png deleted file mode 100644 index 6a0a82bf8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23010.png b/front/public/images/small/gregtech/gt.metaitem.01/23010.png deleted file mode 100644 index 771b14853e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23018.png b/front/public/images/small/gregtech/gt.metaitem.01/23018.png deleted file mode 100644 index 4882edff69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23019.png b/front/public/images/small/gregtech/gt.metaitem.01/23019.png deleted file mode 100644 index 9f8d8237a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2302.png b/front/public/images/small/gregtech/gt.metaitem.01/2302.png deleted file mode 100644 index fb0b412969..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23020.png b/front/public/images/small/gregtech/gt.metaitem.01/23020.png deleted file mode 100644 index 9bb2c78a8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23025.png b/front/public/images/small/gregtech/gt.metaitem.01/23025.png deleted file mode 100644 index 3306055954..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23027.png b/front/public/images/small/gregtech/gt.metaitem.01/23027.png deleted file mode 100644 index 2c069c12a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23028.png b/front/public/images/small/gregtech/gt.metaitem.01/23028.png deleted file mode 100644 index b1ad56b5c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23029.png b/front/public/images/small/gregtech/gt.metaitem.01/23029.png deleted file mode 100644 index a153d4688a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2303.png b/front/public/images/small/gregtech/gt.metaitem.01/2303.png deleted file mode 100644 index 0cf50fc384..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23030.png b/front/public/images/small/gregtech/gt.metaitem.01/23030.png deleted file mode 100644 index d2f30451b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23031.png b/front/public/images/small/gregtech/gt.metaitem.01/23031.png deleted file mode 100644 index c69f2d6532..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23032.png b/front/public/images/small/gregtech/gt.metaitem.01/23032.png deleted file mode 100644 index 92c0549de9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23033.png b/front/public/images/small/gregtech/gt.metaitem.01/23033.png deleted file mode 100644 index 2d847b2768..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23034.png b/front/public/images/small/gregtech/gt.metaitem.01/23034.png deleted file mode 100644 index eed714e656..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23035.png b/front/public/images/small/gregtech/gt.metaitem.01/23035.png deleted file mode 100644 index dbbf060f2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23036.png b/front/public/images/small/gregtech/gt.metaitem.01/23036.png deleted file mode 100644 index 8f81621371..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23037.png b/front/public/images/small/gregtech/gt.metaitem.01/23037.png deleted file mode 100644 index 8853ca22bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23039.png b/front/public/images/small/gregtech/gt.metaitem.01/23039.png deleted file mode 100644 index 91507f5dff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2304.png b/front/public/images/small/gregtech/gt.metaitem.01/2304.png deleted file mode 100644 index b09b369355..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23043.png b/front/public/images/small/gregtech/gt.metaitem.01/23043.png deleted file mode 100644 index 82c7486db6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23045.png b/front/public/images/small/gregtech/gt.metaitem.01/23045.png deleted file mode 100644 index 31d86e6012..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23047.png b/front/public/images/small/gregtech/gt.metaitem.01/23047.png deleted file mode 100644 index 1be3ab274d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23048.png b/front/public/images/small/gregtech/gt.metaitem.01/23048.png deleted file mode 100644 index e3594fcab2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2305.png b/front/public/images/small/gregtech/gt.metaitem.01/2305.png deleted file mode 100644 index b5fa6e83ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23052.png b/front/public/images/small/gregtech/gt.metaitem.01/23052.png deleted file mode 100644 index 5f753b972b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23054.png b/front/public/images/small/gregtech/gt.metaitem.01/23054.png deleted file mode 100644 index 8853ca22bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23056.png b/front/public/images/small/gregtech/gt.metaitem.01/23056.png deleted file mode 100644 index 5ef9614b5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23057.png b/front/public/images/small/gregtech/gt.metaitem.01/23057.png deleted file mode 100644 index 7f92e9fa29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23058.png b/front/public/images/small/gregtech/gt.metaitem.01/23058.png deleted file mode 100644 index 1623aef8e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23059.png b/front/public/images/small/gregtech/gt.metaitem.01/23059.png deleted file mode 100644 index 656181df9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2306.png b/front/public/images/small/gregtech/gt.metaitem.01/2306.png deleted file mode 100644 index cf83fa7d88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23062.png b/front/public/images/small/gregtech/gt.metaitem.01/23062.png deleted file mode 100644 index 98c666d137..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23063.png b/front/public/images/small/gregtech/gt.metaitem.01/23063.png deleted file mode 100644 index c49cffaecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23064.png b/front/public/images/small/gregtech/gt.metaitem.01/23064.png deleted file mode 100644 index b7d39758d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23065.png b/front/public/images/small/gregtech/gt.metaitem.01/23065.png deleted file mode 100644 index ea514cef6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23066.png b/front/public/images/small/gregtech/gt.metaitem.01/23066.png deleted file mode 100644 index d5b3bba485..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23067.png b/front/public/images/small/gregtech/gt.metaitem.01/23067.png deleted file mode 100644 index 7c8f073dad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23068.png b/front/public/images/small/gregtech/gt.metaitem.01/23068.png deleted file mode 100644 index f50c59dd85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23069.png b/front/public/images/small/gregtech/gt.metaitem.01/23069.png deleted file mode 100644 index 2e27694df3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2307.png b/front/public/images/small/gregtech/gt.metaitem.01/2307.png deleted file mode 100644 index b09b369355..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23070.png b/front/public/images/small/gregtech/gt.metaitem.01/23070.png deleted file mode 100644 index cfa65a56f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23071.png b/front/public/images/small/gregtech/gt.metaitem.01/23071.png deleted file mode 100644 index dcc6b2b5b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23072.png b/front/public/images/small/gregtech/gt.metaitem.01/23072.png deleted file mode 100644 index c49cffaecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23073.png b/front/public/images/small/gregtech/gt.metaitem.01/23073.png deleted file mode 100644 index f406097cfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23074.png b/front/public/images/small/gregtech/gt.metaitem.01/23074.png deleted file mode 100644 index fdf87bddbd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23075.png b/front/public/images/small/gregtech/gt.metaitem.01/23075.png deleted file mode 100644 index 7d70df6a24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23076.png b/front/public/images/small/gregtech/gt.metaitem.01/23076.png deleted file mode 100644 index 15e37b2586..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23077.png b/front/public/images/small/gregtech/gt.metaitem.01/23077.png deleted file mode 100644 index 044ce029f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23078.png b/front/public/images/small/gregtech/gt.metaitem.01/23078.png deleted file mode 100644 index 2aad397584..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2308.png b/front/public/images/small/gregtech/gt.metaitem.01/2308.png deleted file mode 100644 index 0d0e962c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23080.png b/front/public/images/small/gregtech/gt.metaitem.01/23080.png deleted file mode 100644 index f740b2fd12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23081.png b/front/public/images/small/gregtech/gt.metaitem.01/23081.png deleted file mode 100644 index a153d4688a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23083.png b/front/public/images/small/gregtech/gt.metaitem.01/23083.png deleted file mode 100644 index 8ad8705fc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23084.png b/front/public/images/small/gregtech/gt.metaitem.01/23084.png deleted file mode 100644 index c2a7c7f3be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23085.png b/front/public/images/small/gregtech/gt.metaitem.01/23085.png deleted file mode 100644 index 47c3256617..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23086.png b/front/public/images/small/gregtech/gt.metaitem.01/23086.png deleted file mode 100644 index 7c1f8cf971..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23089.png b/front/public/images/small/gregtech/gt.metaitem.01/23089.png deleted file mode 100644 index 8ba06d32b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2309.png b/front/public/images/small/gregtech/gt.metaitem.01/2309.png deleted file mode 100644 index 8991ce6c10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23090.png b/front/public/images/small/gregtech/gt.metaitem.01/23090.png deleted file mode 100644 index f8c65fd6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23096.png b/front/public/images/small/gregtech/gt.metaitem.01/23096.png deleted file mode 100644 index 2de6cce075..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23097.png b/front/public/images/small/gregtech/gt.metaitem.01/23097.png deleted file mode 100644 index e244da1d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23098.png b/front/public/images/small/gregtech/gt.metaitem.01/23098.png deleted file mode 100644 index bd059b7cbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2310.png b/front/public/images/small/gregtech/gt.metaitem.01/2310.png deleted file mode 100644 index 8744792fdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23100.png b/front/public/images/small/gregtech/gt.metaitem.01/23100.png deleted file mode 100644 index 4b020a9428..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23101.png b/front/public/images/small/gregtech/gt.metaitem.01/23101.png deleted file mode 100644 index 37c001828b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23103.png b/front/public/images/small/gregtech/gt.metaitem.01/23103.png deleted file mode 100644 index 92c0549de9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2311.png b/front/public/images/small/gregtech/gt.metaitem.01/2311.png deleted file mode 100644 index 31f4530eaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23111.png b/front/public/images/small/gregtech/gt.metaitem.01/23111.png deleted file mode 100644 index dc0892a866..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23112.png b/front/public/images/small/gregtech/gt.metaitem.01/23112.png deleted file mode 100644 index e604a93631..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2312.png b/front/public/images/small/gregtech/gt.metaitem.01/2312.png deleted file mode 100644 index d3bb8ea22b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23129.png b/front/public/images/small/gregtech/gt.metaitem.01/23129.png deleted file mode 100644 index c69f2d6532..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2313.png b/front/public/images/small/gregtech/gt.metaitem.01/2313.png deleted file mode 100644 index dee54d35c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23131.png b/front/public/images/small/gregtech/gt.metaitem.01/23131.png deleted file mode 100644 index 9209db59c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23134.png b/front/public/images/small/gregtech/gt.metaitem.01/23134.png deleted file mode 100644 index eb2c015e22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23139.png b/front/public/images/small/gregtech/gt.metaitem.01/23139.png deleted file mode 100644 index 8b8f13ac0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2314.png b/front/public/images/small/gregtech/gt.metaitem.01/2314.png deleted file mode 100644 index 18a132f643..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23141.png b/front/public/images/small/gregtech/gt.metaitem.01/23141.png deleted file mode 100644 index 4a0ec57ed3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23143.png b/front/public/images/small/gregtech/gt.metaitem.01/23143.png deleted file mode 100644 index 8674c83ff5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2315.png b/front/public/images/small/gregtech/gt.metaitem.01/2315.png deleted file mode 100644 index 3221d34055..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2316.png b/front/public/images/small/gregtech/gt.metaitem.01/2316.png deleted file mode 100644 index fa702ae8fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2317.png b/front/public/images/small/gregtech/gt.metaitem.01/2317.png deleted file mode 100644 index 5b2b25d0b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2318.png b/front/public/images/small/gregtech/gt.metaitem.01/2318.png deleted file mode 100644 index fe103282c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2319.png b/front/public/images/small/gregtech/gt.metaitem.01/2319.png deleted file mode 100644 index 318e8c1337..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2320.png b/front/public/images/small/gregtech/gt.metaitem.01/2320.png deleted file mode 100644 index d11921e4f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23201.png b/front/public/images/small/gregtech/gt.metaitem.01/23201.png deleted file mode 100644 index f09be4d3e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23202.png b/front/public/images/small/gregtech/gt.metaitem.01/23202.png deleted file mode 100644 index bbc97b39fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23203.png b/front/public/images/small/gregtech/gt.metaitem.01/23203.png deleted file mode 100644 index 86f4fcfff0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23205.png b/front/public/images/small/gregtech/gt.metaitem.01/23205.png deleted file mode 100644 index 4c8e5d5d95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23206.png b/front/public/images/small/gregtech/gt.metaitem.01/23206.png deleted file mode 100644 index 9f7d4802b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23207.png b/front/public/images/small/gregtech/gt.metaitem.01/23207.png deleted file mode 100644 index 4da86e7fa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23208.png b/front/public/images/small/gregtech/gt.metaitem.01/23208.png deleted file mode 100644 index 3a211d7bbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23209.png b/front/public/images/small/gregtech/gt.metaitem.01/23209.png deleted file mode 100644 index a4c3fd87d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2321.png b/front/public/images/small/gregtech/gt.metaitem.01/2321.png deleted file mode 100644 index d71771c34a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2323.png b/front/public/images/small/gregtech/gt.metaitem.01/2323.png deleted file mode 100644 index de639f5e21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2324.png b/front/public/images/small/gregtech/gt.metaitem.01/2324.png deleted file mode 100644 index 675e22631d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2325.png b/front/public/images/small/gregtech/gt.metaitem.01/2325.png deleted file mode 100644 index 965b9ed792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2326.png b/front/public/images/small/gregtech/gt.metaitem.01/2326.png deleted file mode 100644 index c81c4aaa1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2327.png b/front/public/images/small/gregtech/gt.metaitem.01/2327.png deleted file mode 100644 index 7d46cd266c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2328.png b/front/public/images/small/gregtech/gt.metaitem.01/2328.png deleted file mode 100644 index cceae7fae9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2329.png b/front/public/images/small/gregtech/gt.metaitem.01/2329.png deleted file mode 100644 index 3d95db1a04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2330.png b/front/public/images/small/gregtech/gt.metaitem.01/2330.png deleted file mode 100644 index 54e24a5770..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23300.png b/front/public/images/small/gregtech/gt.metaitem.01/23300.png deleted file mode 100644 index e78160bf6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23301.png b/front/public/images/small/gregtech/gt.metaitem.01/23301.png deleted file mode 100644 index a9d282a358..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23302.png b/front/public/images/small/gregtech/gt.metaitem.01/23302.png deleted file mode 100644 index e99fde8fa3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23303.png b/front/public/images/small/gregtech/gt.metaitem.01/23303.png deleted file mode 100644 index a9477c253c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23304.png b/front/public/images/small/gregtech/gt.metaitem.01/23304.png deleted file mode 100644 index 8cf04a87f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23305.png b/front/public/images/small/gregtech/gt.metaitem.01/23305.png deleted file mode 100644 index efc72fa559..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23306.png b/front/public/images/small/gregtech/gt.metaitem.01/23306.png deleted file mode 100644 index 3427869bc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23307.png b/front/public/images/small/gregtech/gt.metaitem.01/23307.png deleted file mode 100644 index 8cf04a87f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23308.png b/front/public/images/small/gregtech/gt.metaitem.01/23308.png deleted file mode 100644 index 27f9bbdb3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23309.png b/front/public/images/small/gregtech/gt.metaitem.01/23309.png deleted file mode 100644 index 8865fdc1ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2331.png b/front/public/images/small/gregtech/gt.metaitem.01/2331.png deleted file mode 100644 index b3d3f20d94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23310.png b/front/public/images/small/gregtech/gt.metaitem.01/23310.png deleted file mode 100644 index 33d56d6016..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23311.png b/front/public/images/small/gregtech/gt.metaitem.01/23311.png deleted file mode 100644 index c362a3359b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23312.png b/front/public/images/small/gregtech/gt.metaitem.01/23312.png deleted file mode 100644 index 80d23a9c94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23313.png b/front/public/images/small/gregtech/gt.metaitem.01/23313.png deleted file mode 100644 index d5af111fed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23314.png b/front/public/images/small/gregtech/gt.metaitem.01/23314.png deleted file mode 100644 index 51b7a274ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23315.png b/front/public/images/small/gregtech/gt.metaitem.01/23315.png deleted file mode 100644 index 8826cf8278..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23316.png b/front/public/images/small/gregtech/gt.metaitem.01/23316.png deleted file mode 100644 index 8408041557..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23317.png b/front/public/images/small/gregtech/gt.metaitem.01/23317.png deleted file mode 100644 index 5d7d06c6e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23318.png b/front/public/images/small/gregtech/gt.metaitem.01/23318.png deleted file mode 100644 index 005b2ee1a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23319.png b/front/public/images/small/gregtech/gt.metaitem.01/23319.png deleted file mode 100644 index f9dccca37b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23320.png b/front/public/images/small/gregtech/gt.metaitem.01/23320.png deleted file mode 100644 index ef77d212e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23321.png b/front/public/images/small/gregtech/gt.metaitem.01/23321.png deleted file mode 100644 index 74e5b1dfb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23323.png b/front/public/images/small/gregtech/gt.metaitem.01/23323.png deleted file mode 100644 index 1959a760e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23324.png b/front/public/images/small/gregtech/gt.metaitem.01/23324.png deleted file mode 100644 index a153d4688a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23325.png b/front/public/images/small/gregtech/gt.metaitem.01/23325.png deleted file mode 100644 index baee410720..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23326.png b/front/public/images/small/gregtech/gt.metaitem.01/23326.png deleted file mode 100644 index af60188dc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23327.png b/front/public/images/small/gregtech/gt.metaitem.01/23327.png deleted file mode 100644 index 0af2934800..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23328.png b/front/public/images/small/gregtech/gt.metaitem.01/23328.png deleted file mode 100644 index c49cffaecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23329.png b/front/public/images/small/gregtech/gt.metaitem.01/23329.png deleted file mode 100644 index 335f79c0af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2333.png b/front/public/images/small/gregtech/gt.metaitem.01/2333.png deleted file mode 100644 index cfbc308427..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23330.png b/front/public/images/small/gregtech/gt.metaitem.01/23330.png deleted file mode 100644 index 2f9f839be0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23331.png b/front/public/images/small/gregtech/gt.metaitem.01/23331.png deleted file mode 100644 index cce79bbec5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23333.png b/front/public/images/small/gregtech/gt.metaitem.01/23333.png deleted file mode 100644 index b91121f907..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23334.png b/front/public/images/small/gregtech/gt.metaitem.01/23334.png deleted file mode 100644 index 7c8f073dad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23335.png b/front/public/images/small/gregtech/gt.metaitem.01/23335.png deleted file mode 100644 index 86588511cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23336.png b/front/public/images/small/gregtech/gt.metaitem.01/23336.png deleted file mode 100644 index 6dfc0f497c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23337.png b/front/public/images/small/gregtech/gt.metaitem.01/23337.png deleted file mode 100644 index 7e1713c41d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23338.png b/front/public/images/small/gregtech/gt.metaitem.01/23338.png deleted file mode 100644 index 9f980295c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23339.png b/front/public/images/small/gregtech/gt.metaitem.01/23339.png deleted file mode 100644 index a23ea326f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2334.png b/front/public/images/small/gregtech/gt.metaitem.01/2334.png deleted file mode 100644 index 2f92b8059a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23340.png b/front/public/images/small/gregtech/gt.metaitem.01/23340.png deleted file mode 100644 index 665d48ccd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23341.png b/front/public/images/small/gregtech/gt.metaitem.01/23341.png deleted file mode 100644 index 784c4805dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23342.png b/front/public/images/small/gregtech/gt.metaitem.01/23342.png deleted file mode 100644 index e4c455442c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23343.png b/front/public/images/small/gregtech/gt.metaitem.01/23343.png deleted file mode 100644 index 77ec2ced49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23344.png b/front/public/images/small/gregtech/gt.metaitem.01/23344.png deleted file mode 100644 index 61ea2ae8ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23345.png b/front/public/images/small/gregtech/gt.metaitem.01/23345.png deleted file mode 100644 index 4b1bbb0dc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23346.png b/front/public/images/small/gregtech/gt.metaitem.01/23346.png deleted file mode 100644 index 347bc74c6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23347.png b/front/public/images/small/gregtech/gt.metaitem.01/23347.png deleted file mode 100644 index be694de242..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23348.png b/front/public/images/small/gregtech/gt.metaitem.01/23348.png deleted file mode 100644 index 47bdbfabd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23349.png b/front/public/images/small/gregtech/gt.metaitem.01/23349.png deleted file mode 100644 index aeca5d6c72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2335.png b/front/public/images/small/gregtech/gt.metaitem.01/2335.png deleted file mode 100644 index 6b5a3c2c1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23350.png b/front/public/images/small/gregtech/gt.metaitem.01/23350.png deleted file mode 100644 index 5807d9c756..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23351.png b/front/public/images/small/gregtech/gt.metaitem.01/23351.png deleted file mode 100644 index b0582cb044..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23352.png b/front/public/images/small/gregtech/gt.metaitem.01/23352.png deleted file mode 100644 index 1f0c464234..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23353.png b/front/public/images/small/gregtech/gt.metaitem.01/23353.png deleted file mode 100644 index f562f1519b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23354.png b/front/public/images/small/gregtech/gt.metaitem.01/23354.png deleted file mode 100644 index 4ee348fdad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23355.png b/front/public/images/small/gregtech/gt.metaitem.01/23355.png deleted file mode 100644 index 9438f0f541..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23356.png b/front/public/images/small/gregtech/gt.metaitem.01/23356.png deleted file mode 100644 index 04480757f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23357.png b/front/public/images/small/gregtech/gt.metaitem.01/23357.png deleted file mode 100644 index 42a03be11a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23358.png b/front/public/images/small/gregtech/gt.metaitem.01/23358.png deleted file mode 100644 index 9d765a0a66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23359.png b/front/public/images/small/gregtech/gt.metaitem.01/23359.png deleted file mode 100644 index 3b44222975..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2336.png b/front/public/images/small/gregtech/gt.metaitem.01/2336.png deleted file mode 100644 index ed905d1865..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23360.png b/front/public/images/small/gregtech/gt.metaitem.01/23360.png deleted file mode 100644 index e516e24797..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23361.png b/front/public/images/small/gregtech/gt.metaitem.01/23361.png deleted file mode 100644 index 3fbe19830a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23362.png b/front/public/images/small/gregtech/gt.metaitem.01/23362.png deleted file mode 100644 index c580095733..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23363.png b/front/public/images/small/gregtech/gt.metaitem.01/23363.png deleted file mode 100644 index 92c0549de9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23364.png b/front/public/images/small/gregtech/gt.metaitem.01/23364.png deleted file mode 100644 index 6683ada895..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23365.png b/front/public/images/small/gregtech/gt.metaitem.01/23365.png deleted file mode 100644 index fed4a169b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23366.png b/front/public/images/small/gregtech/gt.metaitem.01/23366.png deleted file mode 100644 index 0166d1b197..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23367.png b/front/public/images/small/gregtech/gt.metaitem.01/23367.png deleted file mode 100644 index 702ff3da54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23368.png b/front/public/images/small/gregtech/gt.metaitem.01/23368.png deleted file mode 100644 index 47effeaec1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23369.png b/front/public/images/small/gregtech/gt.metaitem.01/23369.png deleted file mode 100644 index 83312b6c19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2337.png b/front/public/images/small/gregtech/gt.metaitem.01/2337.png deleted file mode 100644 index f78c9938fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23370.png b/front/public/images/small/gregtech/gt.metaitem.01/23370.png deleted file mode 100644 index a5aca1d89e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23371.png b/front/public/images/small/gregtech/gt.metaitem.01/23371.png deleted file mode 100644 index 0030928b2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23372.png b/front/public/images/small/gregtech/gt.metaitem.01/23372.png deleted file mode 100644 index 496a670f6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23373.png b/front/public/images/small/gregtech/gt.metaitem.01/23373.png deleted file mode 100644 index 85516a793a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23374.png b/front/public/images/small/gregtech/gt.metaitem.01/23374.png deleted file mode 100644 index 860d96cbd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23378.png b/front/public/images/small/gregtech/gt.metaitem.01/23378.png deleted file mode 100644 index 7932049ddc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23379.png b/front/public/images/small/gregtech/gt.metaitem.01/23379.png deleted file mode 100644 index ceccbdab94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2338.png b/front/public/images/small/gregtech/gt.metaitem.01/2338.png deleted file mode 100644 index b960f87430..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23380.png b/front/public/images/small/gregtech/gt.metaitem.01/23380.png deleted file mode 100644 index a75ea53947..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23381.png b/front/public/images/small/gregtech/gt.metaitem.01/23381.png deleted file mode 100644 index f048525033..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23382.png b/front/public/images/small/gregtech/gt.metaitem.01/23382.png deleted file mode 100644 index 9bbb4e79d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23383.png b/front/public/images/small/gregtech/gt.metaitem.01/23383.png deleted file mode 100644 index f1c4fe2a2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23384.png b/front/public/images/small/gregtech/gt.metaitem.01/23384.png deleted file mode 100644 index 47468c6d39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23385.png b/front/public/images/small/gregtech/gt.metaitem.01/23385.png deleted file mode 100644 index e3392d378f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23386.png b/front/public/images/small/gregtech/gt.metaitem.01/23386.png deleted file mode 100644 index 87efd1d8ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23387.png b/front/public/images/small/gregtech/gt.metaitem.01/23387.png deleted file mode 100644 index 5ef45c2349..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23388.png b/front/public/images/small/gregtech/gt.metaitem.01/23388.png deleted file mode 100644 index 07bebb94cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23389.png b/front/public/images/small/gregtech/gt.metaitem.01/23389.png deleted file mode 100644 index 2deb0b8d13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2339.png b/front/public/images/small/gregtech/gt.metaitem.01/2339.png deleted file mode 100644 index 633bd32b2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23390.png b/front/public/images/small/gregtech/gt.metaitem.01/23390.png deleted file mode 100644 index bccd2bbdeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23391.png b/front/public/images/small/gregtech/gt.metaitem.01/23391.png deleted file mode 100644 index 27e254501f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23392.png b/front/public/images/small/gregtech/gt.metaitem.01/23392.png deleted file mode 100644 index 5737b38178..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23393.png b/front/public/images/small/gregtech/gt.metaitem.01/23393.png deleted file mode 100644 index 53476eaa7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23394.png b/front/public/images/small/gregtech/gt.metaitem.01/23394.png deleted file mode 100644 index f9dccca37b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23395.png b/front/public/images/small/gregtech/gt.metaitem.01/23395.png deleted file mode 100644 index 07bebb94cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23397.png b/front/public/images/small/gregtech/gt.metaitem.01/23397.png deleted file mode 100644 index 1fede08e53..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23398.png b/front/public/images/small/gregtech/gt.metaitem.01/23398.png deleted file mode 100644 index 5bfcfe28ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23399.png b/front/public/images/small/gregtech/gt.metaitem.01/23399.png deleted file mode 100644 index fb4cb55197..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2340.png b/front/public/images/small/gregtech/gt.metaitem.01/2340.png deleted file mode 100644 index f57a8ace87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23400.png b/front/public/images/small/gregtech/gt.metaitem.01/23400.png deleted file mode 100644 index c8e8cc9700..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23401.png b/front/public/images/small/gregtech/gt.metaitem.01/23401.png deleted file mode 100644 index 23f7a06d4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23402.png b/front/public/images/small/gregtech/gt.metaitem.01/23402.png deleted file mode 100644 index 5a480baa15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23403.png b/front/public/images/small/gregtech/gt.metaitem.01/23403.png deleted file mode 100644 index 625b44ecb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23404.png b/front/public/images/small/gregtech/gt.metaitem.01/23404.png deleted file mode 100644 index 27a5452b5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23405.png b/front/public/images/small/gregtech/gt.metaitem.01/23405.png deleted file mode 100644 index 92c8f6b316..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23406.png b/front/public/images/small/gregtech/gt.metaitem.01/23406.png deleted file mode 100644 index bc9a8eb8ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23407.png b/front/public/images/small/gregtech/gt.metaitem.01/23407.png deleted file mode 100644 index 02dc04348f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23408.png b/front/public/images/small/gregtech/gt.metaitem.01/23408.png deleted file mode 100644 index b9f7968d9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2341.png b/front/public/images/small/gregtech/gt.metaitem.01/2341.png deleted file mode 100644 index 6591550965..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2342.png b/front/public/images/small/gregtech/gt.metaitem.01/2342.png deleted file mode 100644 index b1be6dc415..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2343.png b/front/public/images/small/gregtech/gt.metaitem.01/2343.png deleted file mode 100644 index 58f1d41137..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2344.png b/front/public/images/small/gregtech/gt.metaitem.01/2344.png deleted file mode 100644 index 6fc37708e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2345.png b/front/public/images/small/gregtech/gt.metaitem.01/2345.png deleted file mode 100644 index 7dd6302797..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2346.png b/front/public/images/small/gregtech/gt.metaitem.01/2346.png deleted file mode 100644 index eb67e12db4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2347.png b/front/public/images/small/gregtech/gt.metaitem.01/2347.png deleted file mode 100644 index 45a0b141ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23470.png b/front/public/images/small/gregtech/gt.metaitem.01/23470.png deleted file mode 100644 index ad77b06757..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23471.png b/front/public/images/small/gregtech/gt.metaitem.01/23471.png deleted file mode 100644 index 7f92e9fa29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23472.png b/front/public/images/small/gregtech/gt.metaitem.01/23472.png deleted file mode 100644 index 07bebb94cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23473.png b/front/public/images/small/gregtech/gt.metaitem.01/23473.png deleted file mode 100644 index ff699c8ad0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2348.png b/front/public/images/small/gregtech/gt.metaitem.01/2348.png deleted file mode 100644 index 3d18a3d2cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23485.png b/front/public/images/small/gregtech/gt.metaitem.01/23485.png deleted file mode 100644 index 025e8e3963..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23488.png b/front/public/images/small/gregtech/gt.metaitem.01/23488.png deleted file mode 100644 index 1d895bebb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23489.png b/front/public/images/small/gregtech/gt.metaitem.01/23489.png deleted file mode 100644 index 31df9200a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2349.png b/front/public/images/small/gregtech/gt.metaitem.01/2349.png deleted file mode 100644 index 68ab06991d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2350.png b/front/public/images/small/gregtech/gt.metaitem.01/2350.png deleted file mode 100644 index 0aaed6944c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23500.png b/front/public/images/small/gregtech/gt.metaitem.01/23500.png deleted file mode 100644 index cf58621ed6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23501.png b/front/public/images/small/gregtech/gt.metaitem.01/23501.png deleted file mode 100644 index 586769133f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23502.png b/front/public/images/small/gregtech/gt.metaitem.01/23502.png deleted file mode 100644 index f33b3e9205..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23503.png b/front/public/images/small/gregtech/gt.metaitem.01/23503.png deleted file mode 100644 index d699e9e568..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23504.png b/front/public/images/small/gregtech/gt.metaitem.01/23504.png deleted file mode 100644 index 3624b9a472..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23505.png b/front/public/images/small/gregtech/gt.metaitem.01/23505.png deleted file mode 100644 index d93c00b0ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23506.png b/front/public/images/small/gregtech/gt.metaitem.01/23506.png deleted file mode 100644 index b23a25c0c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23507.png b/front/public/images/small/gregtech/gt.metaitem.01/23507.png deleted file mode 100644 index 7fbb07f42d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23508.png b/front/public/images/small/gregtech/gt.metaitem.01/23508.png deleted file mode 100644 index fffd3abe94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23509.png b/front/public/images/small/gregtech/gt.metaitem.01/23509.png deleted file mode 100644 index 00c11f8a99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2351.png b/front/public/images/small/gregtech/gt.metaitem.01/2351.png deleted file mode 100644 index 3910787ac6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23510.png b/front/public/images/small/gregtech/gt.metaitem.01/23510.png deleted file mode 100644 index d0363ba2e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23511.png b/front/public/images/small/gregtech/gt.metaitem.01/23511.png deleted file mode 100644 index 4968de67a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23512.png b/front/public/images/small/gregtech/gt.metaitem.01/23512.png deleted file mode 100644 index f33b3e9205..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23513.png b/front/public/images/small/gregtech/gt.metaitem.01/23513.png deleted file mode 100644 index d0363ba2e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23514.png b/front/public/images/small/gregtech/gt.metaitem.01/23514.png deleted file mode 100644 index 7fbb07f42d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23515.png b/front/public/images/small/gregtech/gt.metaitem.01/23515.png deleted file mode 100644 index 05b2dfab92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23516.png b/front/public/images/small/gregtech/gt.metaitem.01/23516.png deleted file mode 100644 index d3e19e76df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23518.png b/front/public/images/small/gregtech/gt.metaitem.01/23518.png deleted file mode 100644 index bfe3626ac0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23519.png b/front/public/images/small/gregtech/gt.metaitem.01/23519.png deleted file mode 100644 index bfe3626ac0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2352.png b/front/public/images/small/gregtech/gt.metaitem.01/2352.png deleted file mode 100644 index 4431521d05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23520.png b/front/public/images/small/gregtech/gt.metaitem.01/23520.png deleted file mode 100644 index 5684cd7c45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23521.png b/front/public/images/small/gregtech/gt.metaitem.01/23521.png deleted file mode 100644 index 005b2ee1a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23522.png b/front/public/images/small/gregtech/gt.metaitem.01/23522.png deleted file mode 100644 index 0bd66bdba2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23523.png b/front/public/images/small/gregtech/gt.metaitem.01/23523.png deleted file mode 100644 index e12aadfce5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23524.png b/front/public/images/small/gregtech/gt.metaitem.01/23524.png deleted file mode 100644 index fee67756aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23525.png b/front/public/images/small/gregtech/gt.metaitem.01/23525.png deleted file mode 100644 index 0852592460..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23526.png b/front/public/images/small/gregtech/gt.metaitem.01/23526.png deleted file mode 100644 index 443cb805b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23527.png b/front/public/images/small/gregtech/gt.metaitem.01/23527.png deleted file mode 100644 index 4968de67a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23528.png b/front/public/images/small/gregtech/gt.metaitem.01/23528.png deleted file mode 100644 index 53750246fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23529.png b/front/public/images/small/gregtech/gt.metaitem.01/23529.png deleted file mode 100644 index 237a58961d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2353.png b/front/public/images/small/gregtech/gt.metaitem.01/2353.png deleted file mode 100644 index 066ef61b73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23530.png b/front/public/images/small/gregtech/gt.metaitem.01/23530.png deleted file mode 100644 index 97ffdf31c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23531.png b/front/public/images/small/gregtech/gt.metaitem.01/23531.png deleted file mode 100644 index 4882edff69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23532.png b/front/public/images/small/gregtech/gt.metaitem.01/23532.png deleted file mode 100644 index a6032bb965..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23533.png b/front/public/images/small/gregtech/gt.metaitem.01/23533.png deleted file mode 100644 index c1b5be7802..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23534.png b/front/public/images/small/gregtech/gt.metaitem.01/23534.png deleted file mode 100644 index e7024245d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23535.png b/front/public/images/small/gregtech/gt.metaitem.01/23535.png deleted file mode 100644 index 3dbc82c6d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23536.png b/front/public/images/small/gregtech/gt.metaitem.01/23536.png deleted file mode 100644 index 42fe34bbf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23537.png b/front/public/images/small/gregtech/gt.metaitem.01/23537.png deleted file mode 100644 index 137a6a00dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23538.png b/front/public/images/small/gregtech/gt.metaitem.01/23538.png deleted file mode 100644 index c8f0c23c9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2354.png b/front/public/images/small/gregtech/gt.metaitem.01/2354.png deleted file mode 100644 index 0d391daea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23540.png b/front/public/images/small/gregtech/gt.metaitem.01/23540.png deleted file mode 100644 index 005b2ee1a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23541.png b/front/public/images/small/gregtech/gt.metaitem.01/23541.png deleted file mode 100644 index 196df116d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23542.png b/front/public/images/small/gregtech/gt.metaitem.01/23542.png deleted file mode 100644 index 300863e795..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23543.png b/front/public/images/small/gregtech/gt.metaitem.01/23543.png deleted file mode 100644 index 1c2fb64cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23544.png b/front/public/images/small/gregtech/gt.metaitem.01/23544.png deleted file mode 100644 index 25d2e1e43e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23545.png b/front/public/images/small/gregtech/gt.metaitem.01/23545.png deleted file mode 100644 index a016e3310b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2355.png b/front/public/images/small/gregtech/gt.metaitem.01/2355.png deleted file mode 100644 index 1878f1941f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2356.png b/front/public/images/small/gregtech/gt.metaitem.01/2356.png deleted file mode 100644 index b51a2ee171..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2357.png b/front/public/images/small/gregtech/gt.metaitem.01/2357.png deleted file mode 100644 index c83d63fad2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23576.png b/front/public/images/small/gregtech/gt.metaitem.01/23576.png deleted file mode 100644 index bf7412b5fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2358.png b/front/public/images/small/gregtech/gt.metaitem.01/2358.png deleted file mode 100644 index 34a2d6a551..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23581.png b/front/public/images/small/gregtech/gt.metaitem.01/23581.png deleted file mode 100644 index aa4dd54ae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23582.png b/front/public/images/small/gregtech/gt.metaitem.01/23582.png deleted file mode 100644 index 744d702758..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23583.png b/front/public/images/small/gregtech/gt.metaitem.01/23583.png deleted file mode 100644 index 162aab7154..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23585.png b/front/public/images/small/gregtech/gt.metaitem.01/23585.png deleted file mode 100644 index 58ce738ae7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23586.png b/front/public/images/small/gregtech/gt.metaitem.01/23586.png deleted file mode 100644 index 96cfa48062..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23588.png b/front/public/images/small/gregtech/gt.metaitem.01/23588.png deleted file mode 100644 index 759f782e6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2359.png b/front/public/images/small/gregtech/gt.metaitem.01/2359.png deleted file mode 100644 index b168151672..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23599.png b/front/public/images/small/gregtech/gt.metaitem.01/23599.png deleted file mode 100644 index 9ae06ab071..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2360.png b/front/public/images/small/gregtech/gt.metaitem.01/2360.png deleted file mode 100644 index 40757e83c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2361.png b/front/public/images/small/gregtech/gt.metaitem.01/2361.png deleted file mode 100644 index 1f46f3ec22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23610.png b/front/public/images/small/gregtech/gt.metaitem.01/23610.png deleted file mode 100644 index b804df2ce6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23611.png b/front/public/images/small/gregtech/gt.metaitem.01/23611.png deleted file mode 100644 index 2d57689a41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23613.png b/front/public/images/small/gregtech/gt.metaitem.01/23613.png deleted file mode 100644 index ae6221d772..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2362.png b/front/public/images/small/gregtech/gt.metaitem.01/2362.png deleted file mode 100644 index c64178b0c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2363.png b/front/public/images/small/gregtech/gt.metaitem.01/2363.png deleted file mode 100644 index 7b93ca3419..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23631.png b/front/public/images/small/gregtech/gt.metaitem.01/23631.png deleted file mode 100644 index 17a655d2c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23635.png b/front/public/images/small/gregtech/gt.metaitem.01/23635.png deleted file mode 100644 index 1595d7c2f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23636.png b/front/public/images/small/gregtech/gt.metaitem.01/23636.png deleted file mode 100644 index 7858bf0148..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2364.png b/front/public/images/small/gregtech/gt.metaitem.01/2364.png deleted file mode 100644 index 0587fab1df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23649.png b/front/public/images/small/gregtech/gt.metaitem.01/23649.png deleted file mode 100644 index 285c025c07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2365.png b/front/public/images/small/gregtech/gt.metaitem.01/2365.png deleted file mode 100644 index ff592f16ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2366.png b/front/public/images/small/gregtech/gt.metaitem.01/2366.png deleted file mode 100644 index eea57653ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2367.png b/front/public/images/small/gregtech/gt.metaitem.01/2367.png deleted file mode 100644 index 68d079ab89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2368.png b/front/public/images/small/gregtech/gt.metaitem.01/2368.png deleted file mode 100644 index b8c72da427..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2369.png b/front/public/images/small/gregtech/gt.metaitem.01/2369.png deleted file mode 100644 index 57101e5e43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2370.png b/front/public/images/small/gregtech/gt.metaitem.01/2370.png deleted file mode 100644 index 9b00fb66cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2371.png b/front/public/images/small/gregtech/gt.metaitem.01/2371.png deleted file mode 100644 index e9fb1b2c2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2372.png b/front/public/images/small/gregtech/gt.metaitem.01/2372.png deleted file mode 100644 index f628d9232b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2373.png b/front/public/images/small/gregtech/gt.metaitem.01/2373.png deleted file mode 100644 index 6f1b398349..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2374.png b/front/public/images/small/gregtech/gt.metaitem.01/2374.png deleted file mode 100644 index d723d66a23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2375.png b/front/public/images/small/gregtech/gt.metaitem.01/2375.png deleted file mode 100644 index a49d34d50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23765.png b/front/public/images/small/gregtech/gt.metaitem.01/23765.png deleted file mode 100644 index c60e781725..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2377.png b/front/public/images/small/gregtech/gt.metaitem.01/2377.png deleted file mode 100644 index f406b62e05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2377.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23770.png b/front/public/images/small/gregtech/gt.metaitem.01/23770.png deleted file mode 100644 index 633931c29b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23772.png b/front/public/images/small/gregtech/gt.metaitem.01/23772.png deleted file mode 100644 index 1e1ab4fe10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2378.png b/front/public/images/small/gregtech/gt.metaitem.01/2378.png deleted file mode 100644 index 699a9b6992..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2379.png b/front/public/images/small/gregtech/gt.metaitem.01/2379.png deleted file mode 100644 index 403944dfe1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2380.png b/front/public/images/small/gregtech/gt.metaitem.01/2380.png deleted file mode 100644 index 48a29162bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23804.png b/front/public/images/small/gregtech/gt.metaitem.01/23804.png deleted file mode 100644 index 2f226e71f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2381.png b/front/public/images/small/gregtech/gt.metaitem.01/2381.png deleted file mode 100644 index 14610dbae4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2382.png b/front/public/images/small/gregtech/gt.metaitem.01/2382.png deleted file mode 100644 index 9ba5a9b6ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23829.png b/front/public/images/small/gregtech/gt.metaitem.01/23829.png deleted file mode 100644 index 01ef19334b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2383.png b/front/public/images/small/gregtech/gt.metaitem.01/2383.png deleted file mode 100644 index f521f4b936..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2384.png b/front/public/images/small/gregtech/gt.metaitem.01/2384.png deleted file mode 100644 index e3915bcdaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2385.png b/front/public/images/small/gregtech/gt.metaitem.01/2385.png deleted file mode 100644 index 18fff45ac2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23856.png b/front/public/images/small/gregtech/gt.metaitem.01/23856.png deleted file mode 100644 index 41ab0716ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2386.png b/front/public/images/small/gregtech/gt.metaitem.01/2386.png deleted file mode 100644 index ed42df04fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23868.png b/front/public/images/small/gregtech/gt.metaitem.01/23868.png deleted file mode 100644 index 381ab87f3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2387.png b/front/public/images/small/gregtech/gt.metaitem.01/2387.png deleted file mode 100644 index 8b50556140..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23874.png b/front/public/images/small/gregtech/gt.metaitem.01/23874.png deleted file mode 100644 index 5181e5329b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2388.png b/front/public/images/small/gregtech/gt.metaitem.01/2388.png deleted file mode 100644 index f374d389b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23880.png b/front/public/images/small/gregtech/gt.metaitem.01/23880.png deleted file mode 100644 index e50f0f50b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23884.png b/front/public/images/small/gregtech/gt.metaitem.01/23884.png deleted file mode 100644 index f701ed53e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23889.png b/front/public/images/small/gregtech/gt.metaitem.01/23889.png deleted file mode 100644 index 14a3f14305..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2389.png b/front/public/images/small/gregtech/gt.metaitem.01/2389.png deleted file mode 100644 index 17263a8b8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23890.png b/front/public/images/small/gregtech/gt.metaitem.01/23890.png deleted file mode 100644 index b23a25c0c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2390.png b/front/public/images/small/gregtech/gt.metaitem.01/2390.png deleted file mode 100644 index 2ad65c5e12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2391.png b/front/public/images/small/gregtech/gt.metaitem.01/2391.png deleted file mode 100644 index b3e78d95e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23912.png b/front/public/images/small/gregtech/gt.metaitem.01/23912.png deleted file mode 100644 index aa66476cd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23913.png b/front/public/images/small/gregtech/gt.metaitem.01/23913.png deleted file mode 100644 index 0470cc34d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2392.png b/front/public/images/small/gregtech/gt.metaitem.01/2392.png deleted file mode 100644 index c0645320fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2393.png b/front/public/images/small/gregtech/gt.metaitem.01/2393.png deleted file mode 100644 index 24bf2aac35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2394.png b/front/public/images/small/gregtech/gt.metaitem.01/2394.png deleted file mode 100644 index 318e8c1337..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2395.png b/front/public/images/small/gregtech/gt.metaitem.01/2395.png deleted file mode 100644 index f374d389b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23951.png b/front/public/images/small/gregtech/gt.metaitem.01/23951.png deleted file mode 100644 index a21fde6dc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23952.png b/front/public/images/small/gregtech/gt.metaitem.01/23952.png deleted file mode 100644 index 0d18fb3204..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23956.png b/front/public/images/small/gregtech/gt.metaitem.01/23956.png deleted file mode 100644 index 3770ab6452..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2396.png b/front/public/images/small/gregtech/gt.metaitem.01/2396.png deleted file mode 100644 index 56fabf7cd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2396.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23966.png b/front/public/images/small/gregtech/gt.metaitem.01/23966.png deleted file mode 100644 index 737dad7f7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2397.png b/front/public/images/small/gregtech/gt.metaitem.01/2397.png deleted file mode 100644 index 5092bf4dab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23970.png b/front/public/images/small/gregtech/gt.metaitem.01/23970.png deleted file mode 100644 index 6f1e7ae5a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23974.png b/front/public/images/small/gregtech/gt.metaitem.01/23974.png deleted file mode 100644 index e8b3a9e10d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23975.png b/front/public/images/small/gregtech/gt.metaitem.01/23975.png deleted file mode 100644 index d6a4e81c67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23976.png b/front/public/images/small/gregtech/gt.metaitem.01/23976.png deleted file mode 100644 index dd5ae9c3a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23977.png b/front/public/images/small/gregtech/gt.metaitem.01/23977.png deleted file mode 100644 index 615b3dd500..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23978.png b/front/public/images/small/gregtech/gt.metaitem.01/23978.png deleted file mode 100644 index e03a1de3e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23979.png b/front/public/images/small/gregtech/gt.metaitem.01/23979.png deleted file mode 100644 index 9183fc26a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2398.png b/front/public/images/small/gregtech/gt.metaitem.01/2398.png deleted file mode 100644 index 9caf5dcd59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23980.png b/front/public/images/small/gregtech/gt.metaitem.01/23980.png deleted file mode 100644 index 5b67c15486..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23981.png b/front/public/images/small/gregtech/gt.metaitem.01/23981.png deleted file mode 100644 index 39bbdadddd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23982.png b/front/public/images/small/gregtech/gt.metaitem.01/23982.png deleted file mode 100644 index 74c6b6125c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23984.png b/front/public/images/small/gregtech/gt.metaitem.01/23984.png deleted file mode 100644 index f9dccca37b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23985.png b/front/public/images/small/gregtech/gt.metaitem.01/23985.png deleted file mode 100644 index aacebb5ce8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23986.png b/front/public/images/small/gregtech/gt.metaitem.01/23986.png deleted file mode 100644 index e7cf87c42b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23987.png b/front/public/images/small/gregtech/gt.metaitem.01/23987.png deleted file mode 100644 index 560daaad68..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23988.png b/front/public/images/small/gregtech/gt.metaitem.01/23988.png deleted file mode 100644 index 85242195e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23989.png b/front/public/images/small/gregtech/gt.metaitem.01/23989.png deleted file mode 100644 index 9c454ca391..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2399.png b/front/public/images/small/gregtech/gt.metaitem.01/2399.png deleted file mode 100644 index 620d295eac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23990.png b/front/public/images/small/gregtech/gt.metaitem.01/23990.png deleted file mode 100644 index ecc16fc434..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23991.png b/front/public/images/small/gregtech/gt.metaitem.01/23991.png deleted file mode 100644 index 237d7e3d36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/23992.png b/front/public/images/small/gregtech/gt.metaitem.01/23992.png deleted file mode 100644 index 2bf9840f18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/23992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2400.png b/front/public/images/small/gregtech/gt.metaitem.01/2400.png deleted file mode 100644 index d344d6ac03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2401.png b/front/public/images/small/gregtech/gt.metaitem.01/2401.png deleted file mode 100644 index acec3c647c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2402.png b/front/public/images/small/gregtech/gt.metaitem.01/2402.png deleted file mode 100644 index efa06c11d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2403.png b/front/public/images/small/gregtech/gt.metaitem.01/2403.png deleted file mode 100644 index 1fdaea47a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2404.png b/front/public/images/small/gregtech/gt.metaitem.01/2404.png deleted file mode 100644 index adc3c4b502..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2405.png b/front/public/images/small/gregtech/gt.metaitem.01/2405.png deleted file mode 100644 index 060c802dfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2406.png b/front/public/images/small/gregtech/gt.metaitem.01/2406.png deleted file mode 100644 index 187873bd79..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2407.png b/front/public/images/small/gregtech/gt.metaitem.01/2407.png deleted file mode 100644 index 3c623268e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2408.png b/front/public/images/small/gregtech/gt.metaitem.01/2408.png deleted file mode 100644 index a00f874636..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2412.png b/front/public/images/small/gregtech/gt.metaitem.01/2412.png deleted file mode 100644 index 930a1808cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2412.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2413.png b/front/public/images/small/gregtech/gt.metaitem.01/2413.png deleted file mode 100644 index f308e37c6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2413.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2414.png b/front/public/images/small/gregtech/gt.metaitem.01/2414.png deleted file mode 100644 index b1ca5e88ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2414.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24208.png b/front/public/images/small/gregtech/gt.metaitem.01/24208.png deleted file mode 100644 index 9b1fc4cbd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24209.png b/front/public/images/small/gregtech/gt.metaitem.01/24209.png deleted file mode 100644 index 4fc7c901b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24347.png b/front/public/images/small/gregtech/gt.metaitem.01/24347.png deleted file mode 100644 index 4f19d4e3d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24500.png b/front/public/images/small/gregtech/gt.metaitem.01/24500.png deleted file mode 100644 index d25735bc70..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24501.png b/front/public/images/small/gregtech/gt.metaitem.01/24501.png deleted file mode 100644 index 519d6c1b45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24502.png b/front/public/images/small/gregtech/gt.metaitem.01/24502.png deleted file mode 100644 index edb2745ad7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24503.png b/front/public/images/small/gregtech/gt.metaitem.01/24503.png deleted file mode 100644 index 10f148e286..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24504.png b/front/public/images/small/gregtech/gt.metaitem.01/24504.png deleted file mode 100644 index 82acc29b23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24505.png b/front/public/images/small/gregtech/gt.metaitem.01/24505.png deleted file mode 100644 index d22846ba1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24506.png b/front/public/images/small/gregtech/gt.metaitem.01/24506.png deleted file mode 100644 index fa593ed6c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24507.png b/front/public/images/small/gregtech/gt.metaitem.01/24507.png deleted file mode 100644 index f3709cc160..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24508.png b/front/public/images/small/gregtech/gt.metaitem.01/24508.png deleted file mode 100644 index c6bd6c5b19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24509.png b/front/public/images/small/gregtech/gt.metaitem.01/24509.png deleted file mode 100644 index a187c831df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24510.png b/front/public/images/small/gregtech/gt.metaitem.01/24510.png deleted file mode 100644 index b337ca55c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24511.png b/front/public/images/small/gregtech/gt.metaitem.01/24511.png deleted file mode 100644 index c339d2e42d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24512.png b/front/public/images/small/gregtech/gt.metaitem.01/24512.png deleted file mode 100644 index edb2745ad7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24513.png b/front/public/images/small/gregtech/gt.metaitem.01/24513.png deleted file mode 100644 index b337ca55c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24514.png b/front/public/images/small/gregtech/gt.metaitem.01/24514.png deleted file mode 100644 index f3709cc160..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24515.png b/front/public/images/small/gregtech/gt.metaitem.01/24515.png deleted file mode 100644 index 95566e11d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24518.png b/front/public/images/small/gregtech/gt.metaitem.01/24518.png deleted file mode 100644 index 9bed0ac823..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24519.png b/front/public/images/small/gregtech/gt.metaitem.01/24519.png deleted file mode 100644 index 9bed0ac823..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24521.png b/front/public/images/small/gregtech/gt.metaitem.01/24521.png deleted file mode 100644 index dc48ef2f77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24527.png b/front/public/images/small/gregtech/gt.metaitem.01/24527.png deleted file mode 100644 index c339d2e42d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24528.png b/front/public/images/small/gregtech/gt.metaitem.01/24528.png deleted file mode 100644 index 555813099a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24532.png b/front/public/images/small/gregtech/gt.metaitem.01/24532.png deleted file mode 100644 index 56d5591b9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24533.png b/front/public/images/small/gregtech/gt.metaitem.01/24533.png deleted file mode 100644 index f49aa8fff6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24540.png b/front/public/images/small/gregtech/gt.metaitem.01/24540.png deleted file mode 100644 index dc48ef2f77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24541.png b/front/public/images/small/gregtech/gt.metaitem.01/24541.png deleted file mode 100644 index 3265061e14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24542.png b/front/public/images/small/gregtech/gt.metaitem.01/24542.png deleted file mode 100644 index fc53564c5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24543.png b/front/public/images/small/gregtech/gt.metaitem.01/24543.png deleted file mode 100644 index dbf07ab3a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24544.png b/front/public/images/small/gregtech/gt.metaitem.01/24544.png deleted file mode 100644 index 77cabac0ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24545.png b/front/public/images/small/gregtech/gt.metaitem.01/24545.png deleted file mode 100644 index eadcfff3be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2470.png b/front/public/images/small/gregtech/gt.metaitem.01/2470.png deleted file mode 100644 index 7e43efe4c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2471.png b/front/public/images/small/gregtech/gt.metaitem.01/2471.png deleted file mode 100644 index 68715f4de6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2472.png b/front/public/images/small/gregtech/gt.metaitem.01/2472.png deleted file mode 100644 index f374d389b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2473.png b/front/public/images/small/gregtech/gt.metaitem.01/2473.png deleted file mode 100644 index 509d9dc8a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2485.png b/front/public/images/small/gregtech/gt.metaitem.01/2485.png deleted file mode 100644 index 2cd4ddf5f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2488.png b/front/public/images/small/gregtech/gt.metaitem.01/2488.png deleted file mode 100644 index f2eef061a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2489.png b/front/public/images/small/gregtech/gt.metaitem.01/2489.png deleted file mode 100644 index fd20884b74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/24890.png b/front/public/images/small/gregtech/gt.metaitem.01/24890.png deleted file mode 100644 index fa593ed6c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/24890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2500.png b/front/public/images/small/gregtech/gt.metaitem.01/2500.png deleted file mode 100644 index 9e580f1cdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25006.png b/front/public/images/small/gregtech/gt.metaitem.01/25006.png deleted file mode 100644 index aeb01b953e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25008.png b/front/public/images/small/gregtech/gt.metaitem.01/25008.png deleted file mode 100644 index 982dd6133d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2501.png b/front/public/images/small/gregtech/gt.metaitem.01/2501.png deleted file mode 100644 index f5649c9dd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25010.png b/front/public/images/small/gregtech/gt.metaitem.01/25010.png deleted file mode 100644 index 2a26b69eda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25018.png b/front/public/images/small/gregtech/gt.metaitem.01/25018.png deleted file mode 100644 index b8fd170127..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25019.png b/front/public/images/small/gregtech/gt.metaitem.01/25019.png deleted file mode 100644 index fb635d24e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2502.png b/front/public/images/small/gregtech/gt.metaitem.01/2502.png deleted file mode 100644 index 22f3996982..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25020.png b/front/public/images/small/gregtech/gt.metaitem.01/25020.png deleted file mode 100644 index 0c7f8c6466..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25025.png b/front/public/images/small/gregtech/gt.metaitem.01/25025.png deleted file mode 100644 index 3697c0cc46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25027.png b/front/public/images/small/gregtech/gt.metaitem.01/25027.png deleted file mode 100644 index c063f89c29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25028.png b/front/public/images/small/gregtech/gt.metaitem.01/25028.png deleted file mode 100644 index ac3b187a8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25029.png b/front/public/images/small/gregtech/gt.metaitem.01/25029.png deleted file mode 100644 index ae50166513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2503.png b/front/public/images/small/gregtech/gt.metaitem.01/2503.png deleted file mode 100644 index e1d4f05127..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25030.png b/front/public/images/small/gregtech/gt.metaitem.01/25030.png deleted file mode 100644 index b38f2233b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25031.png b/front/public/images/small/gregtech/gt.metaitem.01/25031.png deleted file mode 100644 index 6fb3fc96df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25032.png b/front/public/images/small/gregtech/gt.metaitem.01/25032.png deleted file mode 100644 index cc1f57f9c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25033.png b/front/public/images/small/gregtech/gt.metaitem.01/25033.png deleted file mode 100644 index 04e2e609a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25034.png b/front/public/images/small/gregtech/gt.metaitem.01/25034.png deleted file mode 100644 index e4103b2907..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25035.png b/front/public/images/small/gregtech/gt.metaitem.01/25035.png deleted file mode 100644 index 2da7a95221..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25036.png b/front/public/images/small/gregtech/gt.metaitem.01/25036.png deleted file mode 100644 index e770a5a700..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25037.png b/front/public/images/small/gregtech/gt.metaitem.01/25037.png deleted file mode 100644 index 1c5c532659..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25039.png b/front/public/images/small/gregtech/gt.metaitem.01/25039.png deleted file mode 100644 index 045fc68d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2504.png b/front/public/images/small/gregtech/gt.metaitem.01/2504.png deleted file mode 100644 index 7914522c5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25043.png b/front/public/images/small/gregtech/gt.metaitem.01/25043.png deleted file mode 100644 index 37b2c25daa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25045.png b/front/public/images/small/gregtech/gt.metaitem.01/25045.png deleted file mode 100644 index ad110ba843..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25047.png b/front/public/images/small/gregtech/gt.metaitem.01/25047.png deleted file mode 100644 index 8494f7c46c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25048.png b/front/public/images/small/gregtech/gt.metaitem.01/25048.png deleted file mode 100644 index 7779cf2922..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2505.png b/front/public/images/small/gregtech/gt.metaitem.01/2505.png deleted file mode 100644 index 2a9ee360d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25052.png b/front/public/images/small/gregtech/gt.metaitem.01/25052.png deleted file mode 100644 index 5f6f132134..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25054.png b/front/public/images/small/gregtech/gt.metaitem.01/25054.png deleted file mode 100644 index 1c5c532659..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25056.png b/front/public/images/small/gregtech/gt.metaitem.01/25056.png deleted file mode 100644 index ec3a16794f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25057.png b/front/public/images/small/gregtech/gt.metaitem.01/25057.png deleted file mode 100644 index e59674be39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25058.png b/front/public/images/small/gregtech/gt.metaitem.01/25058.png deleted file mode 100644 index 0667493e41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25059.png b/front/public/images/small/gregtech/gt.metaitem.01/25059.png deleted file mode 100644 index 8123e019d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2506.png b/front/public/images/small/gregtech/gt.metaitem.01/2506.png deleted file mode 100644 index c44dfdade8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25062.png b/front/public/images/small/gregtech/gt.metaitem.01/25062.png deleted file mode 100644 index 4e72a95740..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25063.png b/front/public/images/small/gregtech/gt.metaitem.01/25063.png deleted file mode 100644 index 045fc68d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25064.png b/front/public/images/small/gregtech/gt.metaitem.01/25064.png deleted file mode 100644 index 1b5bce1273..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25065.png b/front/public/images/small/gregtech/gt.metaitem.01/25065.png deleted file mode 100644 index 865f3fe513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25066.png b/front/public/images/small/gregtech/gt.metaitem.01/25066.png deleted file mode 100644 index 7ab58ebe72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25067.png b/front/public/images/small/gregtech/gt.metaitem.01/25067.png deleted file mode 100644 index 68a758f475..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25068.png b/front/public/images/small/gregtech/gt.metaitem.01/25068.png deleted file mode 100644 index a1160d4f74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25069.png b/front/public/images/small/gregtech/gt.metaitem.01/25069.png deleted file mode 100644 index d56a51c44a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2507.png b/front/public/images/small/gregtech/gt.metaitem.01/2507.png deleted file mode 100644 index 75cbcbf52c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25070.png b/front/public/images/small/gregtech/gt.metaitem.01/25070.png deleted file mode 100644 index 2b9483caa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25071.png b/front/public/images/small/gregtech/gt.metaitem.01/25071.png deleted file mode 100644 index c76e98041d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25072.png b/front/public/images/small/gregtech/gt.metaitem.01/25072.png deleted file mode 100644 index 045fc68d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25073.png b/front/public/images/small/gregtech/gt.metaitem.01/25073.png deleted file mode 100644 index 4fabecc633..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25074.png b/front/public/images/small/gregtech/gt.metaitem.01/25074.png deleted file mode 100644 index 62d9a7a267..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25075.png b/front/public/images/small/gregtech/gt.metaitem.01/25075.png deleted file mode 100644 index dc514e3693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25076.png b/front/public/images/small/gregtech/gt.metaitem.01/25076.png deleted file mode 100644 index 9bf1ff24ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25077.png b/front/public/images/small/gregtech/gt.metaitem.01/25077.png deleted file mode 100644 index f9bc559dfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25078.png b/front/public/images/small/gregtech/gt.metaitem.01/25078.png deleted file mode 100644 index c4d2fd5b2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2508.png b/front/public/images/small/gregtech/gt.metaitem.01/2508.png deleted file mode 100644 index ae9fcc6256..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25080.png b/front/public/images/small/gregtech/gt.metaitem.01/25080.png deleted file mode 100644 index 566aa924f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25081.png b/front/public/images/small/gregtech/gt.metaitem.01/25081.png deleted file mode 100644 index ae50166513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25083.png b/front/public/images/small/gregtech/gt.metaitem.01/25083.png deleted file mode 100644 index 884afb838f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25084.png b/front/public/images/small/gregtech/gt.metaitem.01/25084.png deleted file mode 100644 index 957ef4adea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25085.png b/front/public/images/small/gregtech/gt.metaitem.01/25085.png deleted file mode 100644 index b94a3c442a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25086.png b/front/public/images/small/gregtech/gt.metaitem.01/25086.png deleted file mode 100644 index 158a219c7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25089.png b/front/public/images/small/gregtech/gt.metaitem.01/25089.png deleted file mode 100644 index a96dd8f5e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2509.png b/front/public/images/small/gregtech/gt.metaitem.01/2509.png deleted file mode 100644 index e3ad599b2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25090.png b/front/public/images/small/gregtech/gt.metaitem.01/25090.png deleted file mode 100644 index 2240a91a67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25096.png b/front/public/images/small/gregtech/gt.metaitem.01/25096.png deleted file mode 100644 index e9a28ad6cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25097.png b/front/public/images/small/gregtech/gt.metaitem.01/25097.png deleted file mode 100644 index e0a1e84c63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25098.png b/front/public/images/small/gregtech/gt.metaitem.01/25098.png deleted file mode 100644 index 7432dcd455..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2510.png b/front/public/images/small/gregtech/gt.metaitem.01/2510.png deleted file mode 100644 index 24e9602090..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25100.png b/front/public/images/small/gregtech/gt.metaitem.01/25100.png deleted file mode 100644 index 1545b96a73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25101.png b/front/public/images/small/gregtech/gt.metaitem.01/25101.png deleted file mode 100644 index 23da948e15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25103.png b/front/public/images/small/gregtech/gt.metaitem.01/25103.png deleted file mode 100644 index cc1f57f9c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2511.png b/front/public/images/small/gregtech/gt.metaitem.01/2511.png deleted file mode 100644 index 295cda1af1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25111.png b/front/public/images/small/gregtech/gt.metaitem.01/25111.png deleted file mode 100644 index 20f100edd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25112.png b/front/public/images/small/gregtech/gt.metaitem.01/25112.png deleted file mode 100644 index df4cbebbb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2512.png b/front/public/images/small/gregtech/gt.metaitem.01/2512.png deleted file mode 100644 index 22f3996982..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25129.png b/front/public/images/small/gregtech/gt.metaitem.01/25129.png deleted file mode 100644 index 6fb3fc96df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2513.png b/front/public/images/small/gregtech/gt.metaitem.01/2513.png deleted file mode 100644 index 24e9602090..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25131.png b/front/public/images/small/gregtech/gt.metaitem.01/25131.png deleted file mode 100644 index 8788675a4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25134.png b/front/public/images/small/gregtech/gt.metaitem.01/25134.png deleted file mode 100644 index e3d2907519..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25139.png b/front/public/images/small/gregtech/gt.metaitem.01/25139.png deleted file mode 100644 index 0c773c50ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2514.png b/front/public/images/small/gregtech/gt.metaitem.01/2514.png deleted file mode 100644 index 75cbcbf52c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25141.png b/front/public/images/small/gregtech/gt.metaitem.01/25141.png deleted file mode 100644 index 1578c3f257..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25143.png b/front/public/images/small/gregtech/gt.metaitem.01/25143.png deleted file mode 100644 index 3f2992ad7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2515.png b/front/public/images/small/gregtech/gt.metaitem.01/2515.png deleted file mode 100644 index 6d4d733956..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2516.png b/front/public/images/small/gregtech/gt.metaitem.01/2516.png deleted file mode 100644 index d5861601ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2518.png b/front/public/images/small/gregtech/gt.metaitem.01/2518.png deleted file mode 100644 index 207d79cbeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2519.png b/front/public/images/small/gregtech/gt.metaitem.01/2519.png deleted file mode 100644 index 207d79cbeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2520.png b/front/public/images/small/gregtech/gt.metaitem.01/2520.png deleted file mode 100644 index 9a1b85bfbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25201.png b/front/public/images/small/gregtech/gt.metaitem.01/25201.png deleted file mode 100644 index 9ad2323f61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25202.png b/front/public/images/small/gregtech/gt.metaitem.01/25202.png deleted file mode 100644 index 5316fd0498..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25203.png b/front/public/images/small/gregtech/gt.metaitem.01/25203.png deleted file mode 100644 index d4cf78a822..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25205.png b/front/public/images/small/gregtech/gt.metaitem.01/25205.png deleted file mode 100644 index cafedd5be8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25206.png b/front/public/images/small/gregtech/gt.metaitem.01/25206.png deleted file mode 100644 index b32a9387b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25207.png b/front/public/images/small/gregtech/gt.metaitem.01/25207.png deleted file mode 100644 index fa562a2255..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2521.png b/front/public/images/small/gregtech/gt.metaitem.01/2521.png deleted file mode 100644 index fe103282c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2522.png b/front/public/images/small/gregtech/gt.metaitem.01/2522.png deleted file mode 100644 index 72a2d4f0c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2523.png b/front/public/images/small/gregtech/gt.metaitem.01/2523.png deleted file mode 100644 index a4c7861bcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2524.png b/front/public/images/small/gregtech/gt.metaitem.01/2524.png deleted file mode 100644 index baa6542e23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2525.png b/front/public/images/small/gregtech/gt.metaitem.01/2525.png deleted file mode 100644 index e5cff4ab6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2526.png b/front/public/images/small/gregtech/gt.metaitem.01/2526.png deleted file mode 100644 index 618786897a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2527.png b/front/public/images/small/gregtech/gt.metaitem.01/2527.png deleted file mode 100644 index 295cda1af1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2528.png b/front/public/images/small/gregtech/gt.metaitem.01/2528.png deleted file mode 100644 index 9442aa4fe7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2529.png b/front/public/images/small/gregtech/gt.metaitem.01/2529.png deleted file mode 100644 index f100cd93b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2530.png b/front/public/images/small/gregtech/gt.metaitem.01/2530.png deleted file mode 100644 index e6c1d97ac2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25300.png b/front/public/images/small/gregtech/gt.metaitem.01/25300.png deleted file mode 100644 index fb63121f16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25301.png b/front/public/images/small/gregtech/gt.metaitem.01/25301.png deleted file mode 100644 index 78d4478299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25302.png b/front/public/images/small/gregtech/gt.metaitem.01/25302.png deleted file mode 100644 index 1b83ca6468..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25303.png b/front/public/images/small/gregtech/gt.metaitem.01/25303.png deleted file mode 100644 index af6a55aab2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25304.png b/front/public/images/small/gregtech/gt.metaitem.01/25304.png deleted file mode 100644 index e5ba59ad9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25305.png b/front/public/images/small/gregtech/gt.metaitem.01/25305.png deleted file mode 100644 index 5f6f132134..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25306.png b/front/public/images/small/gregtech/gt.metaitem.01/25306.png deleted file mode 100644 index 5a3de87551..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25307.png b/front/public/images/small/gregtech/gt.metaitem.01/25307.png deleted file mode 100644 index e5ba59ad9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25308.png b/front/public/images/small/gregtech/gt.metaitem.01/25308.png deleted file mode 100644 index 54b44fb022..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25309.png b/front/public/images/small/gregtech/gt.metaitem.01/25309.png deleted file mode 100644 index ee03edad0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2531.png b/front/public/images/small/gregtech/gt.metaitem.01/2531.png deleted file mode 100644 index 074fb70adc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25310.png b/front/public/images/small/gregtech/gt.metaitem.01/25310.png deleted file mode 100644 index f56b268417..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25311.png b/front/public/images/small/gregtech/gt.metaitem.01/25311.png deleted file mode 100644 index 5081519a29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25312.png b/front/public/images/small/gregtech/gt.metaitem.01/25312.png deleted file mode 100644 index 75da8cca19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25313.png b/front/public/images/small/gregtech/gt.metaitem.01/25313.png deleted file mode 100644 index c5c5067aab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25314.png b/front/public/images/small/gregtech/gt.metaitem.01/25314.png deleted file mode 100644 index ced0e97acf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25315.png b/front/public/images/small/gregtech/gt.metaitem.01/25315.png deleted file mode 100644 index e26d66c201..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25316.png b/front/public/images/small/gregtech/gt.metaitem.01/25316.png deleted file mode 100644 index 6f7a2751a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25317.png b/front/public/images/small/gregtech/gt.metaitem.01/25317.png deleted file mode 100644 index a0e22ab5d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25318.png b/front/public/images/small/gregtech/gt.metaitem.01/25318.png deleted file mode 100644 index 8e98e9d480..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25319.png b/front/public/images/small/gregtech/gt.metaitem.01/25319.png deleted file mode 100644 index 045fc68d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2532.png b/front/public/images/small/gregtech/gt.metaitem.01/2532.png deleted file mode 100644 index 056be5990f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25320.png b/front/public/images/small/gregtech/gt.metaitem.01/25320.png deleted file mode 100644 index f769fe3193..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25321.png b/front/public/images/small/gregtech/gt.metaitem.01/25321.png deleted file mode 100644 index 9a6a9a2d78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25323.png b/front/public/images/small/gregtech/gt.metaitem.01/25323.png deleted file mode 100644 index 7974a09637..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25324.png b/front/public/images/small/gregtech/gt.metaitem.01/25324.png deleted file mode 100644 index ae50166513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25325.png b/front/public/images/small/gregtech/gt.metaitem.01/25325.png deleted file mode 100644 index 4022756118..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25326.png b/front/public/images/small/gregtech/gt.metaitem.01/25326.png deleted file mode 100644 index a716a7234b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25327.png b/front/public/images/small/gregtech/gt.metaitem.01/25327.png deleted file mode 100644 index b39e7786ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25328.png b/front/public/images/small/gregtech/gt.metaitem.01/25328.png deleted file mode 100644 index 045fc68d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25329.png b/front/public/images/small/gregtech/gt.metaitem.01/25329.png deleted file mode 100644 index bff4b6f632..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2533.png b/front/public/images/small/gregtech/gt.metaitem.01/2533.png deleted file mode 100644 index a92d8917c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25330.png b/front/public/images/small/gregtech/gt.metaitem.01/25330.png deleted file mode 100644 index e0c3dc99c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25331.png b/front/public/images/small/gregtech/gt.metaitem.01/25331.png deleted file mode 100644 index 305d076752..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25333.png b/front/public/images/small/gregtech/gt.metaitem.01/25333.png deleted file mode 100644 index bae108b0fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25334.png b/front/public/images/small/gregtech/gt.metaitem.01/25334.png deleted file mode 100644 index 68a758f475..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25335.png b/front/public/images/small/gregtech/gt.metaitem.01/25335.png deleted file mode 100644 index 3044029990..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25336.png b/front/public/images/small/gregtech/gt.metaitem.01/25336.png deleted file mode 100644 index fc0624b667..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25337.png b/front/public/images/small/gregtech/gt.metaitem.01/25337.png deleted file mode 100644 index 56df088dfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25338.png b/front/public/images/small/gregtech/gt.metaitem.01/25338.png deleted file mode 100644 index 492af7294b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25339.png b/front/public/images/small/gregtech/gt.metaitem.01/25339.png deleted file mode 100644 index 1c89b64cd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2534.png b/front/public/images/small/gregtech/gt.metaitem.01/2534.png deleted file mode 100644 index 5d463fa1db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25340.png b/front/public/images/small/gregtech/gt.metaitem.01/25340.png deleted file mode 100644 index eb8d0751b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25341.png b/front/public/images/small/gregtech/gt.metaitem.01/25341.png deleted file mode 100644 index d44a678b56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25342.png b/front/public/images/small/gregtech/gt.metaitem.01/25342.png deleted file mode 100644 index 939ef039d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25343.png b/front/public/images/small/gregtech/gt.metaitem.01/25343.png deleted file mode 100644 index 838177fca1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25344.png b/front/public/images/small/gregtech/gt.metaitem.01/25344.png deleted file mode 100644 index 7c0e749cc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25345.png b/front/public/images/small/gregtech/gt.metaitem.01/25345.png deleted file mode 100644 index 59b0f2e283..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25346.png b/front/public/images/small/gregtech/gt.metaitem.01/25346.png deleted file mode 100644 index 2fe9ff430f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25348.png b/front/public/images/small/gregtech/gt.metaitem.01/25348.png deleted file mode 100644 index e1fbb3b8f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25349.png b/front/public/images/small/gregtech/gt.metaitem.01/25349.png deleted file mode 100644 index f53166f9f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2535.png b/front/public/images/small/gregtech/gt.metaitem.01/2535.png deleted file mode 100644 index a3e4fa4b49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25350.png b/front/public/images/small/gregtech/gt.metaitem.01/25350.png deleted file mode 100644 index a643196d73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25351.png b/front/public/images/small/gregtech/gt.metaitem.01/25351.png deleted file mode 100644 index 679955325d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25352.png b/front/public/images/small/gregtech/gt.metaitem.01/25352.png deleted file mode 100644 index ea55493ec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25353.png b/front/public/images/small/gregtech/gt.metaitem.01/25353.png deleted file mode 100644 index d70ba16b3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25354.png b/front/public/images/small/gregtech/gt.metaitem.01/25354.png deleted file mode 100644 index 43832bcba9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25355.png b/front/public/images/small/gregtech/gt.metaitem.01/25355.png deleted file mode 100644 index 7d7bdfcb17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25356.png b/front/public/images/small/gregtech/gt.metaitem.01/25356.png deleted file mode 100644 index 7dcbf7e657..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25357.png b/front/public/images/small/gregtech/gt.metaitem.01/25357.png deleted file mode 100644 index 897007e383..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25358.png b/front/public/images/small/gregtech/gt.metaitem.01/25358.png deleted file mode 100644 index ef5e4a54cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25359.png b/front/public/images/small/gregtech/gt.metaitem.01/25359.png deleted file mode 100644 index 9ea3f57b43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2536.png b/front/public/images/small/gregtech/gt.metaitem.01/2536.png deleted file mode 100644 index 37942898ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25360.png b/front/public/images/small/gregtech/gt.metaitem.01/25360.png deleted file mode 100644 index f50293b238..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25361.png b/front/public/images/small/gregtech/gt.metaitem.01/25361.png deleted file mode 100644 index 5fea6f3365..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25362.png b/front/public/images/small/gregtech/gt.metaitem.01/25362.png deleted file mode 100644 index 9c9b0334af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25363.png b/front/public/images/small/gregtech/gt.metaitem.01/25363.png deleted file mode 100644 index cc1f57f9c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25364.png b/front/public/images/small/gregtech/gt.metaitem.01/25364.png deleted file mode 100644 index e0f7144380..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25365.png b/front/public/images/small/gregtech/gt.metaitem.01/25365.png deleted file mode 100644 index 7ceae9a8b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25366.png b/front/public/images/small/gregtech/gt.metaitem.01/25366.png deleted file mode 100644 index 42fc869130..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25367.png b/front/public/images/small/gregtech/gt.metaitem.01/25367.png deleted file mode 100644 index 9c39527904..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25368.png b/front/public/images/small/gregtech/gt.metaitem.01/25368.png deleted file mode 100644 index f6c49a5a05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25369.png b/front/public/images/small/gregtech/gt.metaitem.01/25369.png deleted file mode 100644 index 8c3c77ef0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2537.png b/front/public/images/small/gregtech/gt.metaitem.01/2537.png deleted file mode 100644 index c784d72884..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25370.png b/front/public/images/small/gregtech/gt.metaitem.01/25370.png deleted file mode 100644 index 5e1c72f69c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25371.png b/front/public/images/small/gregtech/gt.metaitem.01/25371.png deleted file mode 100644 index feb4d5a7fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25372.png b/front/public/images/small/gregtech/gt.metaitem.01/25372.png deleted file mode 100644 index dbf2ad039e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25373.png b/front/public/images/small/gregtech/gt.metaitem.01/25373.png deleted file mode 100644 index f9acd75f72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25374.png b/front/public/images/small/gregtech/gt.metaitem.01/25374.png deleted file mode 100644 index 0a4c3e0145..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25378.png b/front/public/images/small/gregtech/gt.metaitem.01/25378.png deleted file mode 100644 index ae348c1c30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25379.png b/front/public/images/small/gregtech/gt.metaitem.01/25379.png deleted file mode 100644 index b9fec11ce3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2538.png b/front/public/images/small/gregtech/gt.metaitem.01/2538.png deleted file mode 100644 index b86e1081df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25380.png b/front/public/images/small/gregtech/gt.metaitem.01/25380.png deleted file mode 100644 index 596107bbdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25381.png b/front/public/images/small/gregtech/gt.metaitem.01/25381.png deleted file mode 100644 index 322efcc284..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25382.png b/front/public/images/small/gregtech/gt.metaitem.01/25382.png deleted file mode 100644 index c0af0ff9f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25383.png b/front/public/images/small/gregtech/gt.metaitem.01/25383.png deleted file mode 100644 index e175d4902f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25384.png b/front/public/images/small/gregtech/gt.metaitem.01/25384.png deleted file mode 100644 index 8b3c743899..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25385.png b/front/public/images/small/gregtech/gt.metaitem.01/25385.png deleted file mode 100644 index 996dc48f1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25386.png b/front/public/images/small/gregtech/gt.metaitem.01/25386.png deleted file mode 100644 index 39b3a91733..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25387.png b/front/public/images/small/gregtech/gt.metaitem.01/25387.png deleted file mode 100644 index a945b828a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25388.png b/front/public/images/small/gregtech/gt.metaitem.01/25388.png deleted file mode 100644 index ae50166513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25389.png b/front/public/images/small/gregtech/gt.metaitem.01/25389.png deleted file mode 100644 index 9356dad47e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25390.png b/front/public/images/small/gregtech/gt.metaitem.01/25390.png deleted file mode 100644 index edfdb745fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25391.png b/front/public/images/small/gregtech/gt.metaitem.01/25391.png deleted file mode 100644 index e81bd0462d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25392.png b/front/public/images/small/gregtech/gt.metaitem.01/25392.png deleted file mode 100644 index c9bc6745c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25393.png b/front/public/images/small/gregtech/gt.metaitem.01/25393.png deleted file mode 100644 index b88e3e1587..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25394.png b/front/public/images/small/gregtech/gt.metaitem.01/25394.png deleted file mode 100644 index 045fc68d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25395.png b/front/public/images/small/gregtech/gt.metaitem.01/25395.png deleted file mode 100644 index ae50166513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25397.png b/front/public/images/small/gregtech/gt.metaitem.01/25397.png deleted file mode 100644 index e01744a66c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25398.png b/front/public/images/small/gregtech/gt.metaitem.01/25398.png deleted file mode 100644 index 7b0d11cf44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25399.png b/front/public/images/small/gregtech/gt.metaitem.01/25399.png deleted file mode 100644 index de57e22513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2540.png b/front/public/images/small/gregtech/gt.metaitem.01/2540.png deleted file mode 100644 index fe103282c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25400.png b/front/public/images/small/gregtech/gt.metaitem.01/25400.png deleted file mode 100644 index 78e60a8968..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25401.png b/front/public/images/small/gregtech/gt.metaitem.01/25401.png deleted file mode 100644 index e215091b93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25402.png b/front/public/images/small/gregtech/gt.metaitem.01/25402.png deleted file mode 100644 index d7455888ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25403.png b/front/public/images/small/gregtech/gt.metaitem.01/25403.png deleted file mode 100644 index 0b5d1cf12e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25404.png b/front/public/images/small/gregtech/gt.metaitem.01/25404.png deleted file mode 100644 index f2c8d70e9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25405.png b/front/public/images/small/gregtech/gt.metaitem.01/25405.png deleted file mode 100644 index 838a32d61a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25406.png b/front/public/images/small/gregtech/gt.metaitem.01/25406.png deleted file mode 100644 index c4f96b1d0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25407.png b/front/public/images/small/gregtech/gt.metaitem.01/25407.png deleted file mode 100644 index a852d855bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25408.png b/front/public/images/small/gregtech/gt.metaitem.01/25408.png deleted file mode 100644 index a409ee0ab1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2541.png b/front/public/images/small/gregtech/gt.metaitem.01/2541.png deleted file mode 100644 index 724f00fb59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2542.png b/front/public/images/small/gregtech/gt.metaitem.01/2542.png deleted file mode 100644 index 7a8f2e1582..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2543.png b/front/public/images/small/gregtech/gt.metaitem.01/2543.png deleted file mode 100644 index 8dbce02030..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2544.png b/front/public/images/small/gregtech/gt.metaitem.01/2544.png deleted file mode 100644 index 01335a696f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2545.png b/front/public/images/small/gregtech/gt.metaitem.01/2545.png deleted file mode 100644 index d1297c3dbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2546.png b/front/public/images/small/gregtech/gt.metaitem.01/2546.png deleted file mode 100644 index 3911b9fea8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2546.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2547.png b/front/public/images/small/gregtech/gt.metaitem.01/2547.png deleted file mode 100644 index a2490196b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2547.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25470.png b/front/public/images/small/gregtech/gt.metaitem.01/25470.png deleted file mode 100644 index 470ca51d67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25471.png b/front/public/images/small/gregtech/gt.metaitem.01/25471.png deleted file mode 100644 index e59674be39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25472.png b/front/public/images/small/gregtech/gt.metaitem.01/25472.png deleted file mode 100644 index ae50166513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25473.png b/front/public/images/small/gregtech/gt.metaitem.01/25473.png deleted file mode 100644 index 68a758f475..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2548.png b/front/public/images/small/gregtech/gt.metaitem.01/2548.png deleted file mode 100644 index 43949a5814..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2548.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25485.png b/front/public/images/small/gregtech/gt.metaitem.01/25485.png deleted file mode 100644 index a05886875f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25488.png b/front/public/images/small/gregtech/gt.metaitem.01/25488.png deleted file mode 100644 index 1981c7456b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25489.png b/front/public/images/small/gregtech/gt.metaitem.01/25489.png deleted file mode 100644 index 708aca36db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2549.png b/front/public/images/small/gregtech/gt.metaitem.01/2549.png deleted file mode 100644 index b96a484339..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2549.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2550.png b/front/public/images/small/gregtech/gt.metaitem.01/2550.png deleted file mode 100644 index a7222a9be6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2550.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2551.png b/front/public/images/small/gregtech/gt.metaitem.01/2551.png deleted file mode 100644 index 5f80ed5a8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2551.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2552.png b/front/public/images/small/gregtech/gt.metaitem.01/2552.png deleted file mode 100644 index 92207dd93f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2552.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25521.png b/front/public/images/small/gregtech/gt.metaitem.01/25521.png deleted file mode 100644 index 8e98e9d480..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25529.png b/front/public/images/small/gregtech/gt.metaitem.01/25529.png deleted file mode 100644 index 95daa79c9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2553.png b/front/public/images/small/gregtech/gt.metaitem.01/2553.png deleted file mode 100644 index 81145e6958..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2553.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25576.png b/front/public/images/small/gregtech/gt.metaitem.01/25576.png deleted file mode 100644 index 84dac03f2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25581.png b/front/public/images/small/gregtech/gt.metaitem.01/25581.png deleted file mode 100644 index 9fa4b08edf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25582.png b/front/public/images/small/gregtech/gt.metaitem.01/25582.png deleted file mode 100644 index 4e49554669..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25583.png b/front/public/images/small/gregtech/gt.metaitem.01/25583.png deleted file mode 100644 index 07ea9a1e5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25585.png b/front/public/images/small/gregtech/gt.metaitem.01/25585.png deleted file mode 100644 index eb33a38b39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25586.png b/front/public/images/small/gregtech/gt.metaitem.01/25586.png deleted file mode 100644 index 78357d7eb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25588.png b/front/public/images/small/gregtech/gt.metaitem.01/25588.png deleted file mode 100644 index 0f540f5b4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25599.png b/front/public/images/small/gregtech/gt.metaitem.01/25599.png deleted file mode 100644 index ec86978596..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25610.png b/front/public/images/small/gregtech/gt.metaitem.01/25610.png deleted file mode 100644 index 5bb69900b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25611.png b/front/public/images/small/gregtech/gt.metaitem.01/25611.png deleted file mode 100644 index 89511b5b2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25613.png b/front/public/images/small/gregtech/gt.metaitem.01/25613.png deleted file mode 100644 index a0350f71e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25631.png b/front/public/images/small/gregtech/gt.metaitem.01/25631.png deleted file mode 100644 index 9ac5d73bd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25635.png b/front/public/images/small/gregtech/gt.metaitem.01/25635.png deleted file mode 100644 index 177a58f156..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25636.png b/front/public/images/small/gregtech/gt.metaitem.01/25636.png deleted file mode 100644 index dc6fb8b9f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25649.png b/front/public/images/small/gregtech/gt.metaitem.01/25649.png deleted file mode 100644 index 4e1817794d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2576.png b/front/public/images/small/gregtech/gt.metaitem.01/2576.png deleted file mode 100644 index 12e0ac81ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25765.png b/front/public/images/small/gregtech/gt.metaitem.01/25765.png deleted file mode 100644 index 5c635eb401..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25770.png b/front/public/images/small/gregtech/gt.metaitem.01/25770.png deleted file mode 100644 index 551c99caec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25772.png b/front/public/images/small/gregtech/gt.metaitem.01/25772.png deleted file mode 100644 index 57f9fca540..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25804.png b/front/public/images/small/gregtech/gt.metaitem.01/25804.png deleted file mode 100644 index 92a5457432..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25809.png b/front/public/images/small/gregtech/gt.metaitem.01/25809.png deleted file mode 100644 index edbe76dfe7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2581.png b/front/public/images/small/gregtech/gt.metaitem.01/2581.png deleted file mode 100644 index 4727472fab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2582.png b/front/public/images/small/gregtech/gt.metaitem.01/2582.png deleted file mode 100644 index 7095ec7a3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25829.png b/front/public/images/small/gregtech/gt.metaitem.01/25829.png deleted file mode 100644 index 93459524f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2585.png b/front/public/images/small/gregtech/gt.metaitem.01/2585.png deleted file mode 100644 index 8debe496ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25856.png b/front/public/images/small/gregtech/gt.metaitem.01/25856.png deleted file mode 100644 index 6f7d0d6eeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2586.png b/front/public/images/small/gregtech/gt.metaitem.01/2586.png deleted file mode 100644 index 5b8f4081b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25868.png b/front/public/images/small/gregtech/gt.metaitem.01/25868.png deleted file mode 100644 index 7b852f27a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25874.png b/front/public/images/small/gregtech/gt.metaitem.01/25874.png deleted file mode 100644 index cc1f57f9c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2588.png b/front/public/images/small/gregtech/gt.metaitem.01/2588.png deleted file mode 100644 index 6d47d59a60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25880.png b/front/public/images/small/gregtech/gt.metaitem.01/25880.png deleted file mode 100644 index 78357d7eb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25884.png b/front/public/images/small/gregtech/gt.metaitem.01/25884.png deleted file mode 100644 index 4022756118..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25889.png b/front/public/images/small/gregtech/gt.metaitem.01/25889.png deleted file mode 100644 index fe4aa529fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2590.png b/front/public/images/small/gregtech/gt.metaitem.01/2590.png deleted file mode 100644 index d99344db0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2590.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2591.png b/front/public/images/small/gregtech/gt.metaitem.01/2591.png deleted file mode 100644 index 5a61f208bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2591.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25912.png b/front/public/images/small/gregtech/gt.metaitem.01/25912.png deleted file mode 100644 index 0e3d733c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25913.png b/front/public/images/small/gregtech/gt.metaitem.01/25913.png deleted file mode 100644 index e1fbb3b8f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2594.png b/front/public/images/small/gregtech/gt.metaitem.01/2594.png deleted file mode 100644 index f1ffae4a95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2594.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25951.png b/front/public/images/small/gregtech/gt.metaitem.01/25951.png deleted file mode 100644 index a001a1bf7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25952.png b/front/public/images/small/gregtech/gt.metaitem.01/25952.png deleted file mode 100644 index e2ba920190..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25956.png b/front/public/images/small/gregtech/gt.metaitem.01/25956.png deleted file mode 100644 index 08bab6a450..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25966.png b/front/public/images/small/gregtech/gt.metaitem.01/25966.png deleted file mode 100644 index 192cea4748..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25970.png b/front/public/images/small/gregtech/gt.metaitem.01/25970.png deleted file mode 100644 index f4c9700a32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25974.png b/front/public/images/small/gregtech/gt.metaitem.01/25974.png deleted file mode 100644 index 31c82f244f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25975.png b/front/public/images/small/gregtech/gt.metaitem.01/25975.png deleted file mode 100644 index 839cd030ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25976.png b/front/public/images/small/gregtech/gt.metaitem.01/25976.png deleted file mode 100644 index 03aeae3601..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25977.png b/front/public/images/small/gregtech/gt.metaitem.01/25977.png deleted file mode 100644 index 5307582466..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25978.png b/front/public/images/small/gregtech/gt.metaitem.01/25978.png deleted file mode 100644 index e28f17230e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25979.png b/front/public/images/small/gregtech/gt.metaitem.01/25979.png deleted file mode 100644 index 0d5466869c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25980.png b/front/public/images/small/gregtech/gt.metaitem.01/25980.png deleted file mode 100644 index 76f2b78f80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25981.png b/front/public/images/small/gregtech/gt.metaitem.01/25981.png deleted file mode 100644 index 66df6f5543..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25982.png b/front/public/images/small/gregtech/gt.metaitem.01/25982.png deleted file mode 100644 index 97c9e9afe0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25984.png b/front/public/images/small/gregtech/gt.metaitem.01/25984.png deleted file mode 100644 index 045fc68d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25985.png b/front/public/images/small/gregtech/gt.metaitem.01/25985.png deleted file mode 100644 index e249772831..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25986.png b/front/public/images/small/gregtech/gt.metaitem.01/25986.png deleted file mode 100644 index 3498ecf562..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25987.png b/front/public/images/small/gregtech/gt.metaitem.01/25987.png deleted file mode 100644 index 8270b3c54f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25988.png b/front/public/images/small/gregtech/gt.metaitem.01/25988.png deleted file mode 100644 index cfedb9df87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25989.png b/front/public/images/small/gregtech/gt.metaitem.01/25989.png deleted file mode 100644 index 41245a1703..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2599.png b/front/public/images/small/gregtech/gt.metaitem.01/2599.png deleted file mode 100644 index ed1ffca646..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25990.png b/front/public/images/small/gregtech/gt.metaitem.01/25990.png deleted file mode 100644 index d59341adde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25991.png b/front/public/images/small/gregtech/gt.metaitem.01/25991.png deleted file mode 100644 index 02a11cf838..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/25992.png b/front/public/images/small/gregtech/gt.metaitem.01/25992.png deleted file mode 100644 index 92f41b39f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/25992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26006.png b/front/public/images/small/gregtech/gt.metaitem.01/26006.png deleted file mode 100644 index 79f636e044..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26008.png b/front/public/images/small/gregtech/gt.metaitem.01/26008.png deleted file mode 100644 index c618fb70b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26010.png b/front/public/images/small/gregtech/gt.metaitem.01/26010.png deleted file mode 100644 index 33ea7b7c3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26018.png b/front/public/images/small/gregtech/gt.metaitem.01/26018.png deleted file mode 100644 index 0666036328..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26019.png b/front/public/images/small/gregtech/gt.metaitem.01/26019.png deleted file mode 100644 index d55f3334f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26020.png b/front/public/images/small/gregtech/gt.metaitem.01/26020.png deleted file mode 100644 index 0eb5c16fea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26025.png b/front/public/images/small/gregtech/gt.metaitem.01/26025.png deleted file mode 100644 index a58027e039..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26027.png b/front/public/images/small/gregtech/gt.metaitem.01/26027.png deleted file mode 100644 index eb6162d7f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26028.png b/front/public/images/small/gregtech/gt.metaitem.01/26028.png deleted file mode 100644 index ca49fa37f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26029.png b/front/public/images/small/gregtech/gt.metaitem.01/26029.png deleted file mode 100644 index 328796cc67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26030.png b/front/public/images/small/gregtech/gt.metaitem.01/26030.png deleted file mode 100644 index 6606fe1679..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26031.png b/front/public/images/small/gregtech/gt.metaitem.01/26031.png deleted file mode 100644 index 311baec45c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26032.png b/front/public/images/small/gregtech/gt.metaitem.01/26032.png deleted file mode 100644 index 772de11dd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26033.png b/front/public/images/small/gregtech/gt.metaitem.01/26033.png deleted file mode 100644 index af66259101..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26034.png b/front/public/images/small/gregtech/gt.metaitem.01/26034.png deleted file mode 100644 index 494892c046..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26035.png b/front/public/images/small/gregtech/gt.metaitem.01/26035.png deleted file mode 100644 index c590a991a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26036.png b/front/public/images/small/gregtech/gt.metaitem.01/26036.png deleted file mode 100644 index f36ebebc94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26037.png b/front/public/images/small/gregtech/gt.metaitem.01/26037.png deleted file mode 100644 index 819a9e01c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26039.png b/front/public/images/small/gregtech/gt.metaitem.01/26039.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26043.png b/front/public/images/small/gregtech/gt.metaitem.01/26043.png deleted file mode 100644 index 774391b5e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26045.png b/front/public/images/small/gregtech/gt.metaitem.01/26045.png deleted file mode 100644 index c044ee71df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26047.png b/front/public/images/small/gregtech/gt.metaitem.01/26047.png deleted file mode 100644 index 512a3184c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26048.png b/front/public/images/small/gregtech/gt.metaitem.01/26048.png deleted file mode 100644 index 731482277b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26052.png b/front/public/images/small/gregtech/gt.metaitem.01/26052.png deleted file mode 100644 index 3c014074e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26054.png b/front/public/images/small/gregtech/gt.metaitem.01/26054.png deleted file mode 100644 index 819a9e01c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26056.png b/front/public/images/small/gregtech/gt.metaitem.01/26056.png deleted file mode 100644 index a73287948a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26057.png b/front/public/images/small/gregtech/gt.metaitem.01/26057.png deleted file mode 100644 index 2d93d8731d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26058.png b/front/public/images/small/gregtech/gt.metaitem.01/26058.png deleted file mode 100644 index 5b126b580a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26059.png b/front/public/images/small/gregtech/gt.metaitem.01/26059.png deleted file mode 100644 index 22c38fd6b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26062.png b/front/public/images/small/gregtech/gt.metaitem.01/26062.png deleted file mode 100644 index 61080485a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26063.png b/front/public/images/small/gregtech/gt.metaitem.01/26063.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26064.png b/front/public/images/small/gregtech/gt.metaitem.01/26064.png deleted file mode 100644 index bdb229458d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26065.png b/front/public/images/small/gregtech/gt.metaitem.01/26065.png deleted file mode 100644 index 29aeed5cea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26066.png b/front/public/images/small/gregtech/gt.metaitem.01/26066.png deleted file mode 100644 index 4f6277e8c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26067.png b/front/public/images/small/gregtech/gt.metaitem.01/26067.png deleted file mode 100644 index 12c7ab5c07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26068.png b/front/public/images/small/gregtech/gt.metaitem.01/26068.png deleted file mode 100644 index 0edad22e1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26069.png b/front/public/images/small/gregtech/gt.metaitem.01/26069.png deleted file mode 100644 index 1edb5f4ab0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2607.png b/front/public/images/small/gregtech/gt.metaitem.01/2607.png deleted file mode 100644 index 57909acfff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26070.png b/front/public/images/small/gregtech/gt.metaitem.01/26070.png deleted file mode 100644 index 5a741144f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26071.png b/front/public/images/small/gregtech/gt.metaitem.01/26071.png deleted file mode 100644 index d7d7c85fc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26072.png b/front/public/images/small/gregtech/gt.metaitem.01/26072.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26073.png b/front/public/images/small/gregtech/gt.metaitem.01/26073.png deleted file mode 100644 index 934bd927f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26074.png b/front/public/images/small/gregtech/gt.metaitem.01/26074.png deleted file mode 100644 index 7a739fc8a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26075.png b/front/public/images/small/gregtech/gt.metaitem.01/26075.png deleted file mode 100644 index f95c0cf1de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26076.png b/front/public/images/small/gregtech/gt.metaitem.01/26076.png deleted file mode 100644 index f84b333f49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26077.png b/front/public/images/small/gregtech/gt.metaitem.01/26077.png deleted file mode 100644 index 630e065e02..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26078.png b/front/public/images/small/gregtech/gt.metaitem.01/26078.png deleted file mode 100644 index 9809cd70df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26080.png b/front/public/images/small/gregtech/gt.metaitem.01/26080.png deleted file mode 100644 index 96b1f9d734..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26081.png b/front/public/images/small/gregtech/gt.metaitem.01/26081.png deleted file mode 100644 index 328796cc67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26083.png b/front/public/images/small/gregtech/gt.metaitem.01/26083.png deleted file mode 100644 index d121629dbd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26084.png b/front/public/images/small/gregtech/gt.metaitem.01/26084.png deleted file mode 100644 index e4677f083d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26085.png b/front/public/images/small/gregtech/gt.metaitem.01/26085.png deleted file mode 100644 index 04eb6c41f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26086.png b/front/public/images/small/gregtech/gt.metaitem.01/26086.png deleted file mode 100644 index 458077d28d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26089.png b/front/public/images/small/gregtech/gt.metaitem.01/26089.png deleted file mode 100644 index fcde929daf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26090.png b/front/public/images/small/gregtech/gt.metaitem.01/26090.png deleted file mode 100644 index 7b50a88109..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26096.png b/front/public/images/small/gregtech/gt.metaitem.01/26096.png deleted file mode 100644 index ecc9e70fe7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26097.png b/front/public/images/small/gregtech/gt.metaitem.01/26097.png deleted file mode 100644 index 094a1616f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26098.png b/front/public/images/small/gregtech/gt.metaitem.01/26098.png deleted file mode 100644 index 35870144e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2610.png b/front/public/images/small/gregtech/gt.metaitem.01/2610.png deleted file mode 100644 index 1edf8559f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26100.png b/front/public/images/small/gregtech/gt.metaitem.01/26100.png deleted file mode 100644 index 4e09bb0efd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26101.png b/front/public/images/small/gregtech/gt.metaitem.01/26101.png deleted file mode 100644 index 045112d40e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26103.png b/front/public/images/small/gregtech/gt.metaitem.01/26103.png deleted file mode 100644 index 772de11dd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2611.png b/front/public/images/small/gregtech/gt.metaitem.01/2611.png deleted file mode 100644 index 14a9fbaeee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26111.png b/front/public/images/small/gregtech/gt.metaitem.01/26111.png deleted file mode 100644 index 16d2d9f7a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26112.png b/front/public/images/small/gregtech/gt.metaitem.01/26112.png deleted file mode 100644 index d3fce65cce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2612.png b/front/public/images/small/gregtech/gt.metaitem.01/2612.png deleted file mode 100644 index b72dd30ec8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2612.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26129.png b/front/public/images/small/gregtech/gt.metaitem.01/26129.png deleted file mode 100644 index 311baec45c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2613.png b/front/public/images/small/gregtech/gt.metaitem.01/2613.png deleted file mode 100644 index 13f27784ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26131.png b/front/public/images/small/gregtech/gt.metaitem.01/26131.png deleted file mode 100644 index 968e3036e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26134.png b/front/public/images/small/gregtech/gt.metaitem.01/26134.png deleted file mode 100644 index ff50d174d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26139.png b/front/public/images/small/gregtech/gt.metaitem.01/26139.png deleted file mode 100644 index e543bd08e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2614.png b/front/public/images/small/gregtech/gt.metaitem.01/2614.png deleted file mode 100644 index 6806f34395..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2614.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26141.png b/front/public/images/small/gregtech/gt.metaitem.01/26141.png deleted file mode 100644 index b93ed5744e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26143.png b/front/public/images/small/gregtech/gt.metaitem.01/26143.png deleted file mode 100644 index b4c0b3cc61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2615.png b/front/public/images/small/gregtech/gt.metaitem.01/2615.png deleted file mode 100644 index 318e8c1337..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2615.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2616.png b/front/public/images/small/gregtech/gt.metaitem.01/2616.png deleted file mode 100644 index 89a3430833..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2616.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2617.png b/front/public/images/small/gregtech/gt.metaitem.01/2617.png deleted file mode 100644 index 6d4ae545f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2617.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2618.png b/front/public/images/small/gregtech/gt.metaitem.01/2618.png deleted file mode 100644 index 9f8bb74f7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2618.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2619.png b/front/public/images/small/gregtech/gt.metaitem.01/2619.png deleted file mode 100644 index db5682db0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2619.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2620.png b/front/public/images/small/gregtech/gt.metaitem.01/2620.png deleted file mode 100644 index a74ebbd0d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2620.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26201.png b/front/public/images/small/gregtech/gt.metaitem.01/26201.png deleted file mode 100644 index ddd6b7a42e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26202.png b/front/public/images/small/gregtech/gt.metaitem.01/26202.png deleted file mode 100644 index bc4b8550d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26203.png b/front/public/images/small/gregtech/gt.metaitem.01/26203.png deleted file mode 100644 index f43c16abb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26205.png b/front/public/images/small/gregtech/gt.metaitem.01/26205.png deleted file mode 100644 index 91c7d15052..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26206.png b/front/public/images/small/gregtech/gt.metaitem.01/26206.png deleted file mode 100644 index 77cd8ef0f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26207.png b/front/public/images/small/gregtech/gt.metaitem.01/26207.png deleted file mode 100644 index e8cc64ac28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26208.png b/front/public/images/small/gregtech/gt.metaitem.01/26208.png deleted file mode 100644 index 0c76068e39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26209.png b/front/public/images/small/gregtech/gt.metaitem.01/26209.png deleted file mode 100644 index ac033e67de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2621.png b/front/public/images/small/gregtech/gt.metaitem.01/2621.png deleted file mode 100644 index c431e1c23c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2621.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2622.png b/front/public/images/small/gregtech/gt.metaitem.01/2622.png deleted file mode 100644 index 5d244d39ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2622.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2623.png b/front/public/images/small/gregtech/gt.metaitem.01/2623.png deleted file mode 100644 index 35b4de2346..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2623.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2624.png b/front/public/images/small/gregtech/gt.metaitem.01/2624.png deleted file mode 100644 index 1aeaaa28fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2624.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2625.png b/front/public/images/small/gregtech/gt.metaitem.01/2625.png deleted file mode 100644 index 203717eb95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2625.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2626.png b/front/public/images/small/gregtech/gt.metaitem.01/2626.png deleted file mode 100644 index 4f0fa21623..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2626.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2630.png b/front/public/images/small/gregtech/gt.metaitem.01/2630.png deleted file mode 100644 index 1a14e79ad0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2630.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26300.png b/front/public/images/small/gregtech/gt.metaitem.01/26300.png deleted file mode 100644 index 2072f2a3fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26301.png b/front/public/images/small/gregtech/gt.metaitem.01/26301.png deleted file mode 100644 index 78491e5d50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26302.png b/front/public/images/small/gregtech/gt.metaitem.01/26302.png deleted file mode 100644 index 152f80062c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26303.png b/front/public/images/small/gregtech/gt.metaitem.01/26303.png deleted file mode 100644 index 9fd6167aa0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26304.png b/front/public/images/small/gregtech/gt.metaitem.01/26304.png deleted file mode 100644 index 01323cf2ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26305.png b/front/public/images/small/gregtech/gt.metaitem.01/26305.png deleted file mode 100644 index 3c014074e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26306.png b/front/public/images/small/gregtech/gt.metaitem.01/26306.png deleted file mode 100644 index 629801b5cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26307.png b/front/public/images/small/gregtech/gt.metaitem.01/26307.png deleted file mode 100644 index 01323cf2ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26308.png b/front/public/images/small/gregtech/gt.metaitem.01/26308.png deleted file mode 100644 index 5d14e10ed9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26309.png b/front/public/images/small/gregtech/gt.metaitem.01/26309.png deleted file mode 100644 index 4f432a8eed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2631.png b/front/public/images/small/gregtech/gt.metaitem.01/2631.png deleted file mode 100644 index e3d41f1790..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26310.png b/front/public/images/small/gregtech/gt.metaitem.01/26310.png deleted file mode 100644 index 12d0381bcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26311.png b/front/public/images/small/gregtech/gt.metaitem.01/26311.png deleted file mode 100644 index 51e8a2440e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26312.png b/front/public/images/small/gregtech/gt.metaitem.01/26312.png deleted file mode 100644 index 07502c248d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26313.png b/front/public/images/small/gregtech/gt.metaitem.01/26313.png deleted file mode 100644 index 682b7057a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26314.png b/front/public/images/small/gregtech/gt.metaitem.01/26314.png deleted file mode 100644 index d601473545..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26315.png b/front/public/images/small/gregtech/gt.metaitem.01/26315.png deleted file mode 100644 index 7e82133d91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26316.png b/front/public/images/small/gregtech/gt.metaitem.01/26316.png deleted file mode 100644 index 87802f6b93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26317.png b/front/public/images/small/gregtech/gt.metaitem.01/26317.png deleted file mode 100644 index a441b9e992..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26318.png b/front/public/images/small/gregtech/gt.metaitem.01/26318.png deleted file mode 100644 index fd903818b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26319.png b/front/public/images/small/gregtech/gt.metaitem.01/26319.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26320.png b/front/public/images/small/gregtech/gt.metaitem.01/26320.png deleted file mode 100644 index f50fbc2127..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26321.png b/front/public/images/small/gregtech/gt.metaitem.01/26321.png deleted file mode 100644 index b4fbc16118..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26323.png b/front/public/images/small/gregtech/gt.metaitem.01/26323.png deleted file mode 100644 index 3355537210..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26324.png b/front/public/images/small/gregtech/gt.metaitem.01/26324.png deleted file mode 100644 index 328796cc67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26325.png b/front/public/images/small/gregtech/gt.metaitem.01/26325.png deleted file mode 100644 index 6ca316c0fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26326.png b/front/public/images/small/gregtech/gt.metaitem.01/26326.png deleted file mode 100644 index f05fd2427c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26327.png b/front/public/images/small/gregtech/gt.metaitem.01/26327.png deleted file mode 100644 index 5c917abd81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26328.png b/front/public/images/small/gregtech/gt.metaitem.01/26328.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26329.png b/front/public/images/small/gregtech/gt.metaitem.01/26329.png deleted file mode 100644 index a439155b82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2633.png b/front/public/images/small/gregtech/gt.metaitem.01/2633.png deleted file mode 100644 index f6388ae241..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2633.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26330.png b/front/public/images/small/gregtech/gt.metaitem.01/26330.png deleted file mode 100644 index 172e8ee94f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26331.png b/front/public/images/small/gregtech/gt.metaitem.01/26331.png deleted file mode 100644 index 3c5793694b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26333.png b/front/public/images/small/gregtech/gt.metaitem.01/26333.png deleted file mode 100644 index 56f0bd41e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26334.png b/front/public/images/small/gregtech/gt.metaitem.01/26334.png deleted file mode 100644 index 12c7ab5c07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26335.png b/front/public/images/small/gregtech/gt.metaitem.01/26335.png deleted file mode 100644 index 9b8393ebac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26336.png b/front/public/images/small/gregtech/gt.metaitem.01/26336.png deleted file mode 100644 index 58dc17b324..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26337.png b/front/public/images/small/gregtech/gt.metaitem.01/26337.png deleted file mode 100644 index 222ac4efd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26338.png b/front/public/images/small/gregtech/gt.metaitem.01/26338.png deleted file mode 100644 index 18b748f335..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26339.png b/front/public/images/small/gregtech/gt.metaitem.01/26339.png deleted file mode 100644 index 2fc94affb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2634.png b/front/public/images/small/gregtech/gt.metaitem.01/2634.png deleted file mode 100644 index 51e3090f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2634.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26340.png b/front/public/images/small/gregtech/gt.metaitem.01/26340.png deleted file mode 100644 index e949ce5eca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26341.png b/front/public/images/small/gregtech/gt.metaitem.01/26341.png deleted file mode 100644 index 74ba252c4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26342.png b/front/public/images/small/gregtech/gt.metaitem.01/26342.png deleted file mode 100644 index 2147c6cbc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26343.png b/front/public/images/small/gregtech/gt.metaitem.01/26343.png deleted file mode 100644 index ee4b2fdc19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26344.png b/front/public/images/small/gregtech/gt.metaitem.01/26344.png deleted file mode 100644 index 1b603cf733..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26345.png b/front/public/images/small/gregtech/gt.metaitem.01/26345.png deleted file mode 100644 index 276a044e3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26346.png b/front/public/images/small/gregtech/gt.metaitem.01/26346.png deleted file mode 100644 index 300a254098..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26347.png b/front/public/images/small/gregtech/gt.metaitem.01/26347.png deleted file mode 100644 index d35834ec93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26348.png b/front/public/images/small/gregtech/gt.metaitem.01/26348.png deleted file mode 100644 index 86c456cf5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26349.png b/front/public/images/small/gregtech/gt.metaitem.01/26349.png deleted file mode 100644 index 32e03a703b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2635.png b/front/public/images/small/gregtech/gt.metaitem.01/2635.png deleted file mode 100644 index 1b97c1c17d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26350.png b/front/public/images/small/gregtech/gt.metaitem.01/26350.png deleted file mode 100644 index 0228acf64a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26351.png b/front/public/images/small/gregtech/gt.metaitem.01/26351.png deleted file mode 100644 index cd6ef99504..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26352.png b/front/public/images/small/gregtech/gt.metaitem.01/26352.png deleted file mode 100644 index 798320732b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26353.png b/front/public/images/small/gregtech/gt.metaitem.01/26353.png deleted file mode 100644 index 172da74349..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26354.png b/front/public/images/small/gregtech/gt.metaitem.01/26354.png deleted file mode 100644 index 5066082690..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26355.png b/front/public/images/small/gregtech/gt.metaitem.01/26355.png deleted file mode 100644 index 2a4166e91c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26356.png b/front/public/images/small/gregtech/gt.metaitem.01/26356.png deleted file mode 100644 index 92fbb0636a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26357.png b/front/public/images/small/gregtech/gt.metaitem.01/26357.png deleted file mode 100644 index 824f6b9e07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26358.png b/front/public/images/small/gregtech/gt.metaitem.01/26358.png deleted file mode 100644 index f0fbc5f2c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26359.png b/front/public/images/small/gregtech/gt.metaitem.01/26359.png deleted file mode 100644 index 22c8bca6ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2636.png b/front/public/images/small/gregtech/gt.metaitem.01/2636.png deleted file mode 100644 index 3f4a337dfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26360.png b/front/public/images/small/gregtech/gt.metaitem.01/26360.png deleted file mode 100644 index 3a064a0386..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26361.png b/front/public/images/small/gregtech/gt.metaitem.01/26361.png deleted file mode 100644 index 1c26ca2bb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26362.png b/front/public/images/small/gregtech/gt.metaitem.01/26362.png deleted file mode 100644 index b3431b4039..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26363.png b/front/public/images/small/gregtech/gt.metaitem.01/26363.png deleted file mode 100644 index 772de11dd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26364.png b/front/public/images/small/gregtech/gt.metaitem.01/26364.png deleted file mode 100644 index e2f8977544..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26365.png b/front/public/images/small/gregtech/gt.metaitem.01/26365.png deleted file mode 100644 index b643dc67ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26366.png b/front/public/images/small/gregtech/gt.metaitem.01/26366.png deleted file mode 100644 index 2cd836218d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26367.png b/front/public/images/small/gregtech/gt.metaitem.01/26367.png deleted file mode 100644 index 5447700734..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26368.png b/front/public/images/small/gregtech/gt.metaitem.01/26368.png deleted file mode 100644 index 1ddec7e112..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26369.png b/front/public/images/small/gregtech/gt.metaitem.01/26369.png deleted file mode 100644 index fc92f0a77b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26370.png b/front/public/images/small/gregtech/gt.metaitem.01/26370.png deleted file mode 100644 index 7e83afdc00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26371.png b/front/public/images/small/gregtech/gt.metaitem.01/26371.png deleted file mode 100644 index 5b5cdbe00b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26372.png b/front/public/images/small/gregtech/gt.metaitem.01/26372.png deleted file mode 100644 index 32247d284d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26373.png b/front/public/images/small/gregtech/gt.metaitem.01/26373.png deleted file mode 100644 index a6b4cf95b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26374.png b/front/public/images/small/gregtech/gt.metaitem.01/26374.png deleted file mode 100644 index 21ca878181..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26378.png b/front/public/images/small/gregtech/gt.metaitem.01/26378.png deleted file mode 100644 index 5ca53a481d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26379.png b/front/public/images/small/gregtech/gt.metaitem.01/26379.png deleted file mode 100644 index 71201f081d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26380.png b/front/public/images/small/gregtech/gt.metaitem.01/26380.png deleted file mode 100644 index 883c3dd879..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26381.png b/front/public/images/small/gregtech/gt.metaitem.01/26381.png deleted file mode 100644 index 2f88f6196c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26382.png b/front/public/images/small/gregtech/gt.metaitem.01/26382.png deleted file mode 100644 index 11f91852e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26383.png b/front/public/images/small/gregtech/gt.metaitem.01/26383.png deleted file mode 100644 index 0962717ab8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26384.png b/front/public/images/small/gregtech/gt.metaitem.01/26384.png deleted file mode 100644 index a7072f5543..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26385.png b/front/public/images/small/gregtech/gt.metaitem.01/26385.png deleted file mode 100644 index 65e4541d17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26386.png b/front/public/images/small/gregtech/gt.metaitem.01/26386.png deleted file mode 100644 index bbce5a711d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26387.png b/front/public/images/small/gregtech/gt.metaitem.01/26387.png deleted file mode 100644 index 3986da0347..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26388.png b/front/public/images/small/gregtech/gt.metaitem.01/26388.png deleted file mode 100644 index 328796cc67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26389.png b/front/public/images/small/gregtech/gt.metaitem.01/26389.png deleted file mode 100644 index 61a742b331..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26390.png b/front/public/images/small/gregtech/gt.metaitem.01/26390.png deleted file mode 100644 index e3f1e73d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26391.png b/front/public/images/small/gregtech/gt.metaitem.01/26391.png deleted file mode 100644 index 5546bdec9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26392.png b/front/public/images/small/gregtech/gt.metaitem.01/26392.png deleted file mode 100644 index 9374d7ce12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26393.png b/front/public/images/small/gregtech/gt.metaitem.01/26393.png deleted file mode 100644 index c03efd3479..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26394.png b/front/public/images/small/gregtech/gt.metaitem.01/26394.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26395.png b/front/public/images/small/gregtech/gt.metaitem.01/26395.png deleted file mode 100644 index 328796cc67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26397.png b/front/public/images/small/gregtech/gt.metaitem.01/26397.png deleted file mode 100644 index 41b7184b85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26398.png b/front/public/images/small/gregtech/gt.metaitem.01/26398.png deleted file mode 100644 index 1e454c9bcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26399.png b/front/public/images/small/gregtech/gt.metaitem.01/26399.png deleted file mode 100644 index 26d58db6b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26400.png b/front/public/images/small/gregtech/gt.metaitem.01/26400.png deleted file mode 100644 index fb5a068bcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26401.png b/front/public/images/small/gregtech/gt.metaitem.01/26401.png deleted file mode 100644 index 309c9842a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26402.png b/front/public/images/small/gregtech/gt.metaitem.01/26402.png deleted file mode 100644 index b6a9a6d417..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26403.png b/front/public/images/small/gregtech/gt.metaitem.01/26403.png deleted file mode 100644 index 5d51f3609a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26404.png b/front/public/images/small/gregtech/gt.metaitem.01/26404.png deleted file mode 100644 index 83bb07cf61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26405.png b/front/public/images/small/gregtech/gt.metaitem.01/26405.png deleted file mode 100644 index 226e489dc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26406.png b/front/public/images/small/gregtech/gt.metaitem.01/26406.png deleted file mode 100644 index 08acafb1a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26407.png b/front/public/images/small/gregtech/gt.metaitem.01/26407.png deleted file mode 100644 index 164924e4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26408.png b/front/public/images/small/gregtech/gt.metaitem.01/26408.png deleted file mode 100644 index 032aa85b67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26470.png b/front/public/images/small/gregtech/gt.metaitem.01/26470.png deleted file mode 100644 index 297d83c76e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26471.png b/front/public/images/small/gregtech/gt.metaitem.01/26471.png deleted file mode 100644 index 2d93d8731d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26472.png b/front/public/images/small/gregtech/gt.metaitem.01/26472.png deleted file mode 100644 index 328796cc67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26473.png b/front/public/images/small/gregtech/gt.metaitem.01/26473.png deleted file mode 100644 index 12c7ab5c07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26485.png b/front/public/images/small/gregtech/gt.metaitem.01/26485.png deleted file mode 100644 index d6db8eec86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26488.png b/front/public/images/small/gregtech/gt.metaitem.01/26488.png deleted file mode 100644 index 0cb5d1cd09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26489.png b/front/public/images/small/gregtech/gt.metaitem.01/26489.png deleted file mode 100644 index 7fad4344e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2649.png b/front/public/images/small/gregtech/gt.metaitem.01/2649.png deleted file mode 100644 index f6c707996d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26500.png b/front/public/images/small/gregtech/gt.metaitem.01/26500.png deleted file mode 100644 index 2745600439..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26501.png b/front/public/images/small/gregtech/gt.metaitem.01/26501.png deleted file mode 100644 index 8ee7ec2c6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26502.png b/front/public/images/small/gregtech/gt.metaitem.01/26502.png deleted file mode 100644 index 473f734bad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26503.png b/front/public/images/small/gregtech/gt.metaitem.01/26503.png deleted file mode 100644 index 72a2512c36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26504.png b/front/public/images/small/gregtech/gt.metaitem.01/26504.png deleted file mode 100644 index 142d02339d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26505.png b/front/public/images/small/gregtech/gt.metaitem.01/26505.png deleted file mode 100644 index 0cbd444027..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26506.png b/front/public/images/small/gregtech/gt.metaitem.01/26506.png deleted file mode 100644 index 311baec45c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26507.png b/front/public/images/small/gregtech/gt.metaitem.01/26507.png deleted file mode 100644 index 2072f2a3fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26508.png b/front/public/images/small/gregtech/gt.metaitem.01/26508.png deleted file mode 100644 index 8ac8f1ab01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26509.png b/front/public/images/small/gregtech/gt.metaitem.01/26509.png deleted file mode 100644 index a22938c16d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26510.png b/front/public/images/small/gregtech/gt.metaitem.01/26510.png deleted file mode 100644 index 268b22ee86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26511.png b/front/public/images/small/gregtech/gt.metaitem.01/26511.png deleted file mode 100644 index 0b2a61d9de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26512.png b/front/public/images/small/gregtech/gt.metaitem.01/26512.png deleted file mode 100644 index 473f734bad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26513.png b/front/public/images/small/gregtech/gt.metaitem.01/26513.png deleted file mode 100644 index 268b22ee86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26514.png b/front/public/images/small/gregtech/gt.metaitem.01/26514.png deleted file mode 100644 index 2072f2a3fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26515.png b/front/public/images/small/gregtech/gt.metaitem.01/26515.png deleted file mode 100644 index 708e8d806b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26516.png b/front/public/images/small/gregtech/gt.metaitem.01/26516.png deleted file mode 100644 index 7eeed9a1b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26518.png b/front/public/images/small/gregtech/gt.metaitem.01/26518.png deleted file mode 100644 index 4a7ecc8129..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26519.png b/front/public/images/small/gregtech/gt.metaitem.01/26519.png deleted file mode 100644 index 4a7ecc8129..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26520.png b/front/public/images/small/gregtech/gt.metaitem.01/26520.png deleted file mode 100644 index 8db5b21006..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26521.png b/front/public/images/small/gregtech/gt.metaitem.01/26521.png deleted file mode 100644 index fd903818b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26522.png b/front/public/images/small/gregtech/gt.metaitem.01/26522.png deleted file mode 100644 index b2939f5643..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26523.png b/front/public/images/small/gregtech/gt.metaitem.01/26523.png deleted file mode 100644 index 40373eca4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26524.png b/front/public/images/small/gregtech/gt.metaitem.01/26524.png deleted file mode 100644 index 825bc3d0b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26525.png b/front/public/images/small/gregtech/gt.metaitem.01/26525.png deleted file mode 100644 index 10c9649eb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26526.png b/front/public/images/small/gregtech/gt.metaitem.01/26526.png deleted file mode 100644 index 5d3b5fdf19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26527.png b/front/public/images/small/gregtech/gt.metaitem.01/26527.png deleted file mode 100644 index 0b2a61d9de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26528.png b/front/public/images/small/gregtech/gt.metaitem.01/26528.png deleted file mode 100644 index 111bac1fb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26529.png b/front/public/images/small/gregtech/gt.metaitem.01/26529.png deleted file mode 100644 index eb4151ba10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26530.png b/front/public/images/small/gregtech/gt.metaitem.01/26530.png deleted file mode 100644 index 26bd6c33a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26531.png b/front/public/images/small/gregtech/gt.metaitem.01/26531.png deleted file mode 100644 index 0666036328..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26532.png b/front/public/images/small/gregtech/gt.metaitem.01/26532.png deleted file mode 100644 index 31a5ba4587..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26533.png b/front/public/images/small/gregtech/gt.metaitem.01/26533.png deleted file mode 100644 index 04d457c717..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26534.png b/front/public/images/small/gregtech/gt.metaitem.01/26534.png deleted file mode 100644 index db3bf9f1a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26535.png b/front/public/images/small/gregtech/gt.metaitem.01/26535.png deleted file mode 100644 index 1887020c7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26536.png b/front/public/images/small/gregtech/gt.metaitem.01/26536.png deleted file mode 100644 index 58d6a51649..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26537.png b/front/public/images/small/gregtech/gt.metaitem.01/26537.png deleted file mode 100644 index 3ab931f146..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26538.png b/front/public/images/small/gregtech/gt.metaitem.01/26538.png deleted file mode 100644 index 58d6a51649..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26540.png b/front/public/images/small/gregtech/gt.metaitem.01/26540.png deleted file mode 100644 index fd903818b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26541.png b/front/public/images/small/gregtech/gt.metaitem.01/26541.png deleted file mode 100644 index b841539a36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26542.png b/front/public/images/small/gregtech/gt.metaitem.01/26542.png deleted file mode 100644 index 006f4ae6c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26543.png b/front/public/images/small/gregtech/gt.metaitem.01/26543.png deleted file mode 100644 index 2ca32e7d37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26544.png b/front/public/images/small/gregtech/gt.metaitem.01/26544.png deleted file mode 100644 index 968594f752..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26545.png b/front/public/images/small/gregtech/gt.metaitem.01/26545.png deleted file mode 100644 index af253e8e44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26576.png b/front/public/images/small/gregtech/gt.metaitem.01/26576.png deleted file mode 100644 index 2953182738..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26581.png b/front/public/images/small/gregtech/gt.metaitem.01/26581.png deleted file mode 100644 index 78179edd56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26582.png b/front/public/images/small/gregtech/gt.metaitem.01/26582.png deleted file mode 100644 index fb827c35c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26583.png b/front/public/images/small/gregtech/gt.metaitem.01/26583.png deleted file mode 100644 index a4d849ea50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26585.png b/front/public/images/small/gregtech/gt.metaitem.01/26585.png deleted file mode 100644 index 55620e6796..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26586.png b/front/public/images/small/gregtech/gt.metaitem.01/26586.png deleted file mode 100644 index db528dbb06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26588.png b/front/public/images/small/gregtech/gt.metaitem.01/26588.png deleted file mode 100644 index 165783827b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26599.png b/front/public/images/small/gregtech/gt.metaitem.01/26599.png deleted file mode 100644 index 860dd034a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26610.png b/front/public/images/small/gregtech/gt.metaitem.01/26610.png deleted file mode 100644 index 237b1330b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26611.png b/front/public/images/small/gregtech/gt.metaitem.01/26611.png deleted file mode 100644 index 87f5891046..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26613.png b/front/public/images/small/gregtech/gt.metaitem.01/26613.png deleted file mode 100644 index f42ec6ae2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26631.png b/front/public/images/small/gregtech/gt.metaitem.01/26631.png deleted file mode 100644 index 1d2aa75da2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26635.png b/front/public/images/small/gregtech/gt.metaitem.01/26635.png deleted file mode 100644 index 0cbed41f43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26636.png b/front/public/images/small/gregtech/gt.metaitem.01/26636.png deleted file mode 100644 index e31013bda1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26649.png b/front/public/images/small/gregtech/gt.metaitem.01/26649.png deleted file mode 100644 index 9857920a30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2665.png b/front/public/images/small/gregtech/gt.metaitem.01/2665.png deleted file mode 100644 index 563af20750..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2665.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2676.png b/front/public/images/small/gregtech/gt.metaitem.01/2676.png deleted file mode 100644 index 49aeb60518..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2676.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26765.png b/front/public/images/small/gregtech/gt.metaitem.01/26765.png deleted file mode 100644 index d1646c8dc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26770.png b/front/public/images/small/gregtech/gt.metaitem.01/26770.png deleted file mode 100644 index 1be2a47ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26772.png b/front/public/images/small/gregtech/gt.metaitem.01/26772.png deleted file mode 100644 index c2721e6a5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26804.png b/front/public/images/small/gregtech/gt.metaitem.01/26804.png deleted file mode 100644 index 9aa2382782..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26809.png b/front/public/images/small/gregtech/gt.metaitem.01/26809.png deleted file mode 100644 index 1cf8ecab0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26829.png b/front/public/images/small/gregtech/gt.metaitem.01/26829.png deleted file mode 100644 index 63acda7ded..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2685.png b/front/public/images/small/gregtech/gt.metaitem.01/2685.png deleted file mode 100644 index 89ebe06ea0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2685.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26856.png b/front/public/images/small/gregtech/gt.metaitem.01/26856.png deleted file mode 100644 index d32b3cca4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26868.png b/front/public/images/small/gregtech/gt.metaitem.01/26868.png deleted file mode 100644 index d44c325691..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26874.png b/front/public/images/small/gregtech/gt.metaitem.01/26874.png deleted file mode 100644 index 772de11dd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26880.png b/front/public/images/small/gregtech/gt.metaitem.01/26880.png deleted file mode 100644 index db528dbb06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26884.png b/front/public/images/small/gregtech/gt.metaitem.01/26884.png deleted file mode 100644 index 6ca316c0fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26889.png b/front/public/images/small/gregtech/gt.metaitem.01/26889.png deleted file mode 100644 index 62ddc7ca5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26890.png b/front/public/images/small/gregtech/gt.metaitem.01/26890.png deleted file mode 100644 index 311baec45c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26912.png b/front/public/images/small/gregtech/gt.metaitem.01/26912.png deleted file mode 100644 index e338484e6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26913.png b/front/public/images/small/gregtech/gt.metaitem.01/26913.png deleted file mode 100644 index 86c456cf5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2695.png b/front/public/images/small/gregtech/gt.metaitem.01/2695.png deleted file mode 100644 index ad1f6a6c58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2695.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26951.png b/front/public/images/small/gregtech/gt.metaitem.01/26951.png deleted file mode 100644 index ad000aae99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26952.png b/front/public/images/small/gregtech/gt.metaitem.01/26952.png deleted file mode 100644 index ca8ffda6ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26956.png b/front/public/images/small/gregtech/gt.metaitem.01/26956.png deleted file mode 100644 index 8eae7e8d9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2696.png b/front/public/images/small/gregtech/gt.metaitem.01/2696.png deleted file mode 100644 index f44ea0f9dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2696.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26966.png b/front/public/images/small/gregtech/gt.metaitem.01/26966.png deleted file mode 100644 index 15c49305cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2697.png b/front/public/images/small/gregtech/gt.metaitem.01/2697.png deleted file mode 100644 index 89942d2d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2697.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26970.png b/front/public/images/small/gregtech/gt.metaitem.01/26970.png deleted file mode 100644 index 6750e76a96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26974.png b/front/public/images/small/gregtech/gt.metaitem.01/26974.png deleted file mode 100644 index 594d861ef0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26975.png b/front/public/images/small/gregtech/gt.metaitem.01/26975.png deleted file mode 100644 index e3f726510a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26976.png b/front/public/images/small/gregtech/gt.metaitem.01/26976.png deleted file mode 100644 index 168430d2c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26977.png b/front/public/images/small/gregtech/gt.metaitem.01/26977.png deleted file mode 100644 index e84ccaf10b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26978.png b/front/public/images/small/gregtech/gt.metaitem.01/26978.png deleted file mode 100644 index 8f97253d33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26979.png b/front/public/images/small/gregtech/gt.metaitem.01/26979.png deleted file mode 100644 index ca2d81cef0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2698.png b/front/public/images/small/gregtech/gt.metaitem.01/2698.png deleted file mode 100644 index 08cf0ae612..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2698.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26980.png b/front/public/images/small/gregtech/gt.metaitem.01/26980.png deleted file mode 100644 index 6425aa3103..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26981.png b/front/public/images/small/gregtech/gt.metaitem.01/26981.png deleted file mode 100644 index 9d94b49ce5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26982.png b/front/public/images/small/gregtech/gt.metaitem.01/26982.png deleted file mode 100644 index 2a17e2e919..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26984.png b/front/public/images/small/gregtech/gt.metaitem.01/26984.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26985.png b/front/public/images/small/gregtech/gt.metaitem.01/26985.png deleted file mode 100644 index bea1132714..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26986.png b/front/public/images/small/gregtech/gt.metaitem.01/26986.png deleted file mode 100644 index 8cc6b00266..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26987.png b/front/public/images/small/gregtech/gt.metaitem.01/26987.png deleted file mode 100644 index 7e2b40cd8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26988.png b/front/public/images/small/gregtech/gt.metaitem.01/26988.png deleted file mode 100644 index fdae432eec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26989.png b/front/public/images/small/gregtech/gt.metaitem.01/26989.png deleted file mode 100644 index cc9497debd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2699.png b/front/public/images/small/gregtech/gt.metaitem.01/2699.png deleted file mode 100644 index 6e29a07f91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26990.png b/front/public/images/small/gregtech/gt.metaitem.01/26990.png deleted file mode 100644 index 49361be89f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26991.png b/front/public/images/small/gregtech/gt.metaitem.01/26991.png deleted file mode 100644 index 8081856e77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/26992.png b/front/public/images/small/gregtech/gt.metaitem.01/26992.png deleted file mode 100644 index 24dd4f053c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/26992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27006.png b/front/public/images/small/gregtech/gt.metaitem.01/27006.png deleted file mode 100644 index 0ebf8ca4ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27008.png b/front/public/images/small/gregtech/gt.metaitem.01/27008.png deleted file mode 100644 index f78f415ce6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27010.png b/front/public/images/small/gregtech/gt.metaitem.01/27010.png deleted file mode 100644 index d8119aedeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27018.png b/front/public/images/small/gregtech/gt.metaitem.01/27018.png deleted file mode 100644 index 4c9ada0d6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27019.png b/front/public/images/small/gregtech/gt.metaitem.01/27019.png deleted file mode 100644 index 462b79a5bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2702.png b/front/public/images/small/gregtech/gt.metaitem.01/2702.png deleted file mode 100644 index e6c1d97ac2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2702.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27020.png b/front/public/images/small/gregtech/gt.metaitem.01/27020.png deleted file mode 100644 index 4439bc0e0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27025.png b/front/public/images/small/gregtech/gt.metaitem.01/27025.png deleted file mode 100644 index f983325f97..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27027.png b/front/public/images/small/gregtech/gt.metaitem.01/27027.png deleted file mode 100644 index ab45c5c493..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27028.png b/front/public/images/small/gregtech/gt.metaitem.01/27028.png deleted file mode 100644 index 55c484935b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27029.png b/front/public/images/small/gregtech/gt.metaitem.01/27029.png deleted file mode 100644 index dfe7f98f4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27030.png b/front/public/images/small/gregtech/gt.metaitem.01/27030.png deleted file mode 100644 index e72b161cda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27031.png b/front/public/images/small/gregtech/gt.metaitem.01/27031.png deleted file mode 100644 index 9c2f08934e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27032.png b/front/public/images/small/gregtech/gt.metaitem.01/27032.png deleted file mode 100644 index 786755e4aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27033.png b/front/public/images/small/gregtech/gt.metaitem.01/27033.png deleted file mode 100644 index 44a836c5d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27034.png b/front/public/images/small/gregtech/gt.metaitem.01/27034.png deleted file mode 100644 index e64ab0c65c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27035.png b/front/public/images/small/gregtech/gt.metaitem.01/27035.png deleted file mode 100644 index 9d8db94f17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27036.png b/front/public/images/small/gregtech/gt.metaitem.01/27036.png deleted file mode 100644 index 569f5d1d34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27037.png b/front/public/images/small/gregtech/gt.metaitem.01/27037.png deleted file mode 100644 index 6a1c82377b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27039.png b/front/public/images/small/gregtech/gt.metaitem.01/27039.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27043.png b/front/public/images/small/gregtech/gt.metaitem.01/27043.png deleted file mode 100644 index 12a7333b9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27045.png b/front/public/images/small/gregtech/gt.metaitem.01/27045.png deleted file mode 100644 index 7b8c0459ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27047.png b/front/public/images/small/gregtech/gt.metaitem.01/27047.png deleted file mode 100644 index fd26fb52f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27048.png b/front/public/images/small/gregtech/gt.metaitem.01/27048.png deleted file mode 100644 index c233f9bcc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27052.png b/front/public/images/small/gregtech/gt.metaitem.01/27052.png deleted file mode 100644 index 7bb708599e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27054.png b/front/public/images/small/gregtech/gt.metaitem.01/27054.png deleted file mode 100644 index 6a1c82377b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27056.png b/front/public/images/small/gregtech/gt.metaitem.01/27056.png deleted file mode 100644 index 88eee90a0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27057.png b/front/public/images/small/gregtech/gt.metaitem.01/27057.png deleted file mode 100644 index 41aaba12c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27058.png b/front/public/images/small/gregtech/gt.metaitem.01/27058.png deleted file mode 100644 index a606bd51eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27059.png b/front/public/images/small/gregtech/gt.metaitem.01/27059.png deleted file mode 100644 index e526bbf9f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27062.png b/front/public/images/small/gregtech/gt.metaitem.01/27062.png deleted file mode 100644 index d5ed400749..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27063.png b/front/public/images/small/gregtech/gt.metaitem.01/27063.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27064.png b/front/public/images/small/gregtech/gt.metaitem.01/27064.png deleted file mode 100644 index b350895586..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27065.png b/front/public/images/small/gregtech/gt.metaitem.01/27065.png deleted file mode 100644 index 34a7c059c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27066.png b/front/public/images/small/gregtech/gt.metaitem.01/27066.png deleted file mode 100644 index ff1ed73045..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27067.png b/front/public/images/small/gregtech/gt.metaitem.01/27067.png deleted file mode 100644 index 015ad00b66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27068.png b/front/public/images/small/gregtech/gt.metaitem.01/27068.png deleted file mode 100644 index 535c9f98e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27069.png b/front/public/images/small/gregtech/gt.metaitem.01/27069.png deleted file mode 100644 index 49a083f347..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27070.png b/front/public/images/small/gregtech/gt.metaitem.01/27070.png deleted file mode 100644 index 7c378b21e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27071.png b/front/public/images/small/gregtech/gt.metaitem.01/27071.png deleted file mode 100644 index c215b7edc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27072.png b/front/public/images/small/gregtech/gt.metaitem.01/27072.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27073.png b/front/public/images/small/gregtech/gt.metaitem.01/27073.png deleted file mode 100644 index 3de105dccb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27074.png b/front/public/images/small/gregtech/gt.metaitem.01/27074.png deleted file mode 100644 index d77e99ac5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27075.png b/front/public/images/small/gregtech/gt.metaitem.01/27075.png deleted file mode 100644 index 5c229653a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27076.png b/front/public/images/small/gregtech/gt.metaitem.01/27076.png deleted file mode 100644 index f484f612e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27077.png b/front/public/images/small/gregtech/gt.metaitem.01/27077.png deleted file mode 100644 index 78c3234abf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27078.png b/front/public/images/small/gregtech/gt.metaitem.01/27078.png deleted file mode 100644 index c11edcce2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27080.png b/front/public/images/small/gregtech/gt.metaitem.01/27080.png deleted file mode 100644 index de58e673ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27081.png b/front/public/images/small/gregtech/gt.metaitem.01/27081.png deleted file mode 100644 index dfe7f98f4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27083.png b/front/public/images/small/gregtech/gt.metaitem.01/27083.png deleted file mode 100644 index 9b9f3ea1e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27084.png b/front/public/images/small/gregtech/gt.metaitem.01/27084.png deleted file mode 100644 index df22d8b573..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27085.png b/front/public/images/small/gregtech/gt.metaitem.01/27085.png deleted file mode 100644 index 7a541bea78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27086.png b/front/public/images/small/gregtech/gt.metaitem.01/27086.png deleted file mode 100644 index 4273409d8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27089.png b/front/public/images/small/gregtech/gt.metaitem.01/27089.png deleted file mode 100644 index 2f6819dfd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27090.png b/front/public/images/small/gregtech/gt.metaitem.01/27090.png deleted file mode 100644 index f581ea14cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27096.png b/front/public/images/small/gregtech/gt.metaitem.01/27096.png deleted file mode 100644 index 72f68a8827..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27097.png b/front/public/images/small/gregtech/gt.metaitem.01/27097.png deleted file mode 100644 index fd8ba02c34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27098.png b/front/public/images/small/gregtech/gt.metaitem.01/27098.png deleted file mode 100644 index e66df85217..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27100.png b/front/public/images/small/gregtech/gt.metaitem.01/27100.png deleted file mode 100644 index 307d29376a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27101.png b/front/public/images/small/gregtech/gt.metaitem.01/27101.png deleted file mode 100644 index 6c66bfc60e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27103.png b/front/public/images/small/gregtech/gt.metaitem.01/27103.png deleted file mode 100644 index 786755e4aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27111.png b/front/public/images/small/gregtech/gt.metaitem.01/27111.png deleted file mode 100644 index b57b1841f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27112.png b/front/public/images/small/gregtech/gt.metaitem.01/27112.png deleted file mode 100644 index 54c050e427..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27129.png b/front/public/images/small/gregtech/gt.metaitem.01/27129.png deleted file mode 100644 index 9c2f08934e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27131.png b/front/public/images/small/gregtech/gt.metaitem.01/27131.png deleted file mode 100644 index 16aaf25e47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27134.png b/front/public/images/small/gregtech/gt.metaitem.01/27134.png deleted file mode 100644 index 165a7f3c32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27139.png b/front/public/images/small/gregtech/gt.metaitem.01/27139.png deleted file mode 100644 index e494de3555..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27141.png b/front/public/images/small/gregtech/gt.metaitem.01/27141.png deleted file mode 100644 index 4d1647e923..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27143.png b/front/public/images/small/gregtech/gt.metaitem.01/27143.png deleted file mode 100644 index 54bbe837e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2719.png b/front/public/images/small/gregtech/gt.metaitem.01/2719.png deleted file mode 100644 index 28ec39752f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2719.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27201.png b/front/public/images/small/gregtech/gt.metaitem.01/27201.png deleted file mode 100644 index 30550fbf7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27202.png b/front/public/images/small/gregtech/gt.metaitem.01/27202.png deleted file mode 100644 index 4610042b89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27203.png b/front/public/images/small/gregtech/gt.metaitem.01/27203.png deleted file mode 100644 index 555c6e5f55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27205.png b/front/public/images/small/gregtech/gt.metaitem.01/27205.png deleted file mode 100644 index edc770083b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27206.png b/front/public/images/small/gregtech/gt.metaitem.01/27206.png deleted file mode 100644 index 6fd1e8c433..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27207.png b/front/public/images/small/gregtech/gt.metaitem.01/27207.png deleted file mode 100644 index 5d226a56c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27208.png b/front/public/images/small/gregtech/gt.metaitem.01/27208.png deleted file mode 100644 index ed477f99ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27209.png b/front/public/images/small/gregtech/gt.metaitem.01/27209.png deleted file mode 100644 index cc5df1a89e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2728.png b/front/public/images/small/gregtech/gt.metaitem.01/2728.png deleted file mode 100644 index 9183e0b54a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2728.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27300.png b/front/public/images/small/gregtech/gt.metaitem.01/27300.png deleted file mode 100644 index 2385b001af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27301.png b/front/public/images/small/gregtech/gt.metaitem.01/27301.png deleted file mode 100644 index 326fd09d1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27302.png b/front/public/images/small/gregtech/gt.metaitem.01/27302.png deleted file mode 100644 index 376637d489..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27303.png b/front/public/images/small/gregtech/gt.metaitem.01/27303.png deleted file mode 100644 index c4e4bf6c63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27304.png b/front/public/images/small/gregtech/gt.metaitem.01/27304.png deleted file mode 100644 index be1a1a3b1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27305.png b/front/public/images/small/gregtech/gt.metaitem.01/27305.png deleted file mode 100644 index 7bb708599e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27306.png b/front/public/images/small/gregtech/gt.metaitem.01/27306.png deleted file mode 100644 index 72945c7a50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27307.png b/front/public/images/small/gregtech/gt.metaitem.01/27307.png deleted file mode 100644 index be1a1a3b1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27308.png b/front/public/images/small/gregtech/gt.metaitem.01/27308.png deleted file mode 100644 index a975e9b049..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27309.png b/front/public/images/small/gregtech/gt.metaitem.01/27309.png deleted file mode 100644 index d08f49426b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27310.png b/front/public/images/small/gregtech/gt.metaitem.01/27310.png deleted file mode 100644 index 3a8cf7ddfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27311.png b/front/public/images/small/gregtech/gt.metaitem.01/27311.png deleted file mode 100644 index 42a553228d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27312.png b/front/public/images/small/gregtech/gt.metaitem.01/27312.png deleted file mode 100644 index 7be5962578..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27313.png b/front/public/images/small/gregtech/gt.metaitem.01/27313.png deleted file mode 100644 index 0e8c7c4a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27314.png b/front/public/images/small/gregtech/gt.metaitem.01/27314.png deleted file mode 100644 index b6b7c62dc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27315.png b/front/public/images/small/gregtech/gt.metaitem.01/27315.png deleted file mode 100644 index 3b3b360811..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27316.png b/front/public/images/small/gregtech/gt.metaitem.01/27316.png deleted file mode 100644 index e159718817..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27317.png b/front/public/images/small/gregtech/gt.metaitem.01/27317.png deleted file mode 100644 index b432be8466..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27318.png b/front/public/images/small/gregtech/gt.metaitem.01/27318.png deleted file mode 100644 index f00f71d245..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27319.png b/front/public/images/small/gregtech/gt.metaitem.01/27319.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27320.png b/front/public/images/small/gregtech/gt.metaitem.01/27320.png deleted file mode 100644 index 0d1ae734b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27321.png b/front/public/images/small/gregtech/gt.metaitem.01/27321.png deleted file mode 100644 index c9c0531fe3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27323.png b/front/public/images/small/gregtech/gt.metaitem.01/27323.png deleted file mode 100644 index 9521f1f3e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27324.png b/front/public/images/small/gregtech/gt.metaitem.01/27324.png deleted file mode 100644 index dfe7f98f4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27325.png b/front/public/images/small/gregtech/gt.metaitem.01/27325.png deleted file mode 100644 index bcb06c5188..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27326.png b/front/public/images/small/gregtech/gt.metaitem.01/27326.png deleted file mode 100644 index 35db131ba9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27327.png b/front/public/images/small/gregtech/gt.metaitem.01/27327.png deleted file mode 100644 index 05b90b7bb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27328.png b/front/public/images/small/gregtech/gt.metaitem.01/27328.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27329.png b/front/public/images/small/gregtech/gt.metaitem.01/27329.png deleted file mode 100644 index 515c77dfbd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27330.png b/front/public/images/small/gregtech/gt.metaitem.01/27330.png deleted file mode 100644 index 73834d1b95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27331.png b/front/public/images/small/gregtech/gt.metaitem.01/27331.png deleted file mode 100644 index 37a08008fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27333.png b/front/public/images/small/gregtech/gt.metaitem.01/27333.png deleted file mode 100644 index 4d8f4410bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27334.png b/front/public/images/small/gregtech/gt.metaitem.01/27334.png deleted file mode 100644 index 015ad00b66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27335.png b/front/public/images/small/gregtech/gt.metaitem.01/27335.png deleted file mode 100644 index 3a0aa9f1a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27336.png b/front/public/images/small/gregtech/gt.metaitem.01/27336.png deleted file mode 100644 index 6c99b861b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27337.png b/front/public/images/small/gregtech/gt.metaitem.01/27337.png deleted file mode 100644 index f34f01dd6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27338.png b/front/public/images/small/gregtech/gt.metaitem.01/27338.png deleted file mode 100644 index 2ccf23c15f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27339.png b/front/public/images/small/gregtech/gt.metaitem.01/27339.png deleted file mode 100644 index 347942da89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27340.png b/front/public/images/small/gregtech/gt.metaitem.01/27340.png deleted file mode 100644 index 399d280138..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27341.png b/front/public/images/small/gregtech/gt.metaitem.01/27341.png deleted file mode 100644 index d9293aecbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27342.png b/front/public/images/small/gregtech/gt.metaitem.01/27342.png deleted file mode 100644 index 4a22c1a2ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27343.png b/front/public/images/small/gregtech/gt.metaitem.01/27343.png deleted file mode 100644 index 68c784e05b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27344.png b/front/public/images/small/gregtech/gt.metaitem.01/27344.png deleted file mode 100644 index ebc6aebb3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27345.png b/front/public/images/small/gregtech/gt.metaitem.01/27345.png deleted file mode 100644 index 4c62884bbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27346.png b/front/public/images/small/gregtech/gt.metaitem.01/27346.png deleted file mode 100644 index a863fe7738..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27347.png b/front/public/images/small/gregtech/gt.metaitem.01/27347.png deleted file mode 100644 index a9f47de5e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27348.png b/front/public/images/small/gregtech/gt.metaitem.01/27348.png deleted file mode 100644 index a3b6059f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27349.png b/front/public/images/small/gregtech/gt.metaitem.01/27349.png deleted file mode 100644 index 5f9fda46c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27350.png b/front/public/images/small/gregtech/gt.metaitem.01/27350.png deleted file mode 100644 index db98ad406b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27351.png b/front/public/images/small/gregtech/gt.metaitem.01/27351.png deleted file mode 100644 index c650ccfbf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27352.png b/front/public/images/small/gregtech/gt.metaitem.01/27352.png deleted file mode 100644 index f0354311e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27353.png b/front/public/images/small/gregtech/gt.metaitem.01/27353.png deleted file mode 100644 index b815868d5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27354.png b/front/public/images/small/gregtech/gt.metaitem.01/27354.png deleted file mode 100644 index ba2c8d2dea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27355.png b/front/public/images/small/gregtech/gt.metaitem.01/27355.png deleted file mode 100644 index c23cb960af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27356.png b/front/public/images/small/gregtech/gt.metaitem.01/27356.png deleted file mode 100644 index 806bd3f913..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27357.png b/front/public/images/small/gregtech/gt.metaitem.01/27357.png deleted file mode 100644 index 71f03a24cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27358.png b/front/public/images/small/gregtech/gt.metaitem.01/27358.png deleted file mode 100644 index 1b1ccde932..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27359.png b/front/public/images/small/gregtech/gt.metaitem.01/27359.png deleted file mode 100644 index 5ac5c70207..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27360.png b/front/public/images/small/gregtech/gt.metaitem.01/27360.png deleted file mode 100644 index b2fc5a1095..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27361.png b/front/public/images/small/gregtech/gt.metaitem.01/27361.png deleted file mode 100644 index 454a9684dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27362.png b/front/public/images/small/gregtech/gt.metaitem.01/27362.png deleted file mode 100644 index b04bc2a7d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27363.png b/front/public/images/small/gregtech/gt.metaitem.01/27363.png deleted file mode 100644 index 786755e4aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27364.png b/front/public/images/small/gregtech/gt.metaitem.01/27364.png deleted file mode 100644 index 31f1c0e5a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27365.png b/front/public/images/small/gregtech/gt.metaitem.01/27365.png deleted file mode 100644 index 5399dba753..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27366.png b/front/public/images/small/gregtech/gt.metaitem.01/27366.png deleted file mode 100644 index 3032f5147b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27367.png b/front/public/images/small/gregtech/gt.metaitem.01/27367.png deleted file mode 100644 index 4d675cbbe5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27368.png b/front/public/images/small/gregtech/gt.metaitem.01/27368.png deleted file mode 100644 index 4d97e8ac8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27369.png b/front/public/images/small/gregtech/gt.metaitem.01/27369.png deleted file mode 100644 index a3eac33054..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27370.png b/front/public/images/small/gregtech/gt.metaitem.01/27370.png deleted file mode 100644 index bddf0dc2eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27371.png b/front/public/images/small/gregtech/gt.metaitem.01/27371.png deleted file mode 100644 index 4abbe967fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27372.png b/front/public/images/small/gregtech/gt.metaitem.01/27372.png deleted file mode 100644 index 8b3ea6d8ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27373.png b/front/public/images/small/gregtech/gt.metaitem.01/27373.png deleted file mode 100644 index e1a71956d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27374.png b/front/public/images/small/gregtech/gt.metaitem.01/27374.png deleted file mode 100644 index 9b91682bb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27378.png b/front/public/images/small/gregtech/gt.metaitem.01/27378.png deleted file mode 100644 index 978f9e174f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27379.png b/front/public/images/small/gregtech/gt.metaitem.01/27379.png deleted file mode 100644 index 5f78c763c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27380.png b/front/public/images/small/gregtech/gt.metaitem.01/27380.png deleted file mode 100644 index 8c5023955e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27381.png b/front/public/images/small/gregtech/gt.metaitem.01/27381.png deleted file mode 100644 index 6398e28919..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27382.png b/front/public/images/small/gregtech/gt.metaitem.01/27382.png deleted file mode 100644 index 62306f9009..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27383.png b/front/public/images/small/gregtech/gt.metaitem.01/27383.png deleted file mode 100644 index fed1d98c84..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27384.png b/front/public/images/small/gregtech/gt.metaitem.01/27384.png deleted file mode 100644 index 3f22517695..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27385.png b/front/public/images/small/gregtech/gt.metaitem.01/27385.png deleted file mode 100644 index 352a6f9b93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27386.png b/front/public/images/small/gregtech/gt.metaitem.01/27386.png deleted file mode 100644 index 438ea5d226..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27387.png b/front/public/images/small/gregtech/gt.metaitem.01/27387.png deleted file mode 100644 index 7075fa3546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27388.png b/front/public/images/small/gregtech/gt.metaitem.01/27388.png deleted file mode 100644 index dfe7f98f4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27389.png b/front/public/images/small/gregtech/gt.metaitem.01/27389.png deleted file mode 100644 index b9b470492d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27390.png b/front/public/images/small/gregtech/gt.metaitem.01/27390.png deleted file mode 100644 index e489f84e49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27391.png b/front/public/images/small/gregtech/gt.metaitem.01/27391.png deleted file mode 100644 index 839fa4f98f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27392.png b/front/public/images/small/gregtech/gt.metaitem.01/27392.png deleted file mode 100644 index 8e2952ed0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27393.png b/front/public/images/small/gregtech/gt.metaitem.01/27393.png deleted file mode 100644 index 9dd979aadb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27394.png b/front/public/images/small/gregtech/gt.metaitem.01/27394.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27395.png b/front/public/images/small/gregtech/gt.metaitem.01/27395.png deleted file mode 100644 index dfe7f98f4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27397.png b/front/public/images/small/gregtech/gt.metaitem.01/27397.png deleted file mode 100644 index 012ff3f0cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27398.png b/front/public/images/small/gregtech/gt.metaitem.01/27398.png deleted file mode 100644 index 4d694f4677..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27399.png b/front/public/images/small/gregtech/gt.metaitem.01/27399.png deleted file mode 100644 index 6590b5f06e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27400.png b/front/public/images/small/gregtech/gt.metaitem.01/27400.png deleted file mode 100644 index 7595ebd183..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27401.png b/front/public/images/small/gregtech/gt.metaitem.01/27401.png deleted file mode 100644 index 1e72eaf157..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27402.png b/front/public/images/small/gregtech/gt.metaitem.01/27402.png deleted file mode 100644 index 7703a2a9b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27403.png b/front/public/images/small/gregtech/gt.metaitem.01/27403.png deleted file mode 100644 index 4b2ac49ad4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27404.png b/front/public/images/small/gregtech/gt.metaitem.01/27404.png deleted file mode 100644 index d8f6411b40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27405.png b/front/public/images/small/gregtech/gt.metaitem.01/27405.png deleted file mode 100644 index 77597426b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27406.png b/front/public/images/small/gregtech/gt.metaitem.01/27406.png deleted file mode 100644 index bb7f7683eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27407.png b/front/public/images/small/gregtech/gt.metaitem.01/27407.png deleted file mode 100644 index b40e6be006..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27408.png b/front/public/images/small/gregtech/gt.metaitem.01/27408.png deleted file mode 100644 index bc11d40ac9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2744.png b/front/public/images/small/gregtech/gt.metaitem.01/2744.png deleted file mode 100644 index a259b81d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2744.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27470.png b/front/public/images/small/gregtech/gt.metaitem.01/27470.png deleted file mode 100644 index 2ed69f1ead..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27471.png b/front/public/images/small/gregtech/gt.metaitem.01/27471.png deleted file mode 100644 index 41aaba12c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27472.png b/front/public/images/small/gregtech/gt.metaitem.01/27472.png deleted file mode 100644 index dfe7f98f4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27473.png b/front/public/images/small/gregtech/gt.metaitem.01/27473.png deleted file mode 100644 index 015ad00b66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27485.png b/front/public/images/small/gregtech/gt.metaitem.01/27485.png deleted file mode 100644 index ab83c253b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27488.png b/front/public/images/small/gregtech/gt.metaitem.01/27488.png deleted file mode 100644 index f29aa5da1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27489.png b/front/public/images/small/gregtech/gt.metaitem.01/27489.png deleted file mode 100644 index a845f565ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2749.png b/front/public/images/small/gregtech/gt.metaitem.01/2749.png deleted file mode 100644 index 822002de2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27500.png b/front/public/images/small/gregtech/gt.metaitem.01/27500.png deleted file mode 100644 index 0687da1df8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27501.png b/front/public/images/small/gregtech/gt.metaitem.01/27501.png deleted file mode 100644 index 5ecc67eec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27502.png b/front/public/images/small/gregtech/gt.metaitem.01/27502.png deleted file mode 100644 index cee98b81c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27503.png b/front/public/images/small/gregtech/gt.metaitem.01/27503.png deleted file mode 100644 index 2cf3fce631..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27504.png b/front/public/images/small/gregtech/gt.metaitem.01/27504.png deleted file mode 100644 index 6b69129237..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27505.png b/front/public/images/small/gregtech/gt.metaitem.01/27505.png deleted file mode 100644 index 9d3cd98664..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27506.png b/front/public/images/small/gregtech/gt.metaitem.01/27506.png deleted file mode 100644 index 9c2f08934e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27507.png b/front/public/images/small/gregtech/gt.metaitem.01/27507.png deleted file mode 100644 index 2385b001af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27508.png b/front/public/images/small/gregtech/gt.metaitem.01/27508.png deleted file mode 100644 index 313686c2ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27509.png b/front/public/images/small/gregtech/gt.metaitem.01/27509.png deleted file mode 100644 index ff1cf1146c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2751.png b/front/public/images/small/gregtech/gt.metaitem.01/2751.png deleted file mode 100644 index 6eeb5c1392..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27510.png b/front/public/images/small/gregtech/gt.metaitem.01/27510.png deleted file mode 100644 index 454efdc536..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27511.png b/front/public/images/small/gregtech/gt.metaitem.01/27511.png deleted file mode 100644 index 19f890a546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27512.png b/front/public/images/small/gregtech/gt.metaitem.01/27512.png deleted file mode 100644 index cee98b81c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27513.png b/front/public/images/small/gregtech/gt.metaitem.01/27513.png deleted file mode 100644 index 454efdc536..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27514.png b/front/public/images/small/gregtech/gt.metaitem.01/27514.png deleted file mode 100644 index 2385b001af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27515.png b/front/public/images/small/gregtech/gt.metaitem.01/27515.png deleted file mode 100644 index 13a465220a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27516.png b/front/public/images/small/gregtech/gt.metaitem.01/27516.png deleted file mode 100644 index 6a65529e93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27518.png b/front/public/images/small/gregtech/gt.metaitem.01/27518.png deleted file mode 100644 index 1659d754db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27519.png b/front/public/images/small/gregtech/gt.metaitem.01/27519.png deleted file mode 100644 index 1659d754db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27520.png b/front/public/images/small/gregtech/gt.metaitem.01/27520.png deleted file mode 100644 index a09fd7538e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27521.png b/front/public/images/small/gregtech/gt.metaitem.01/27521.png deleted file mode 100644 index f00f71d245..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27522.png b/front/public/images/small/gregtech/gt.metaitem.01/27522.png deleted file mode 100644 index 2c17dd1ed6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27523.png b/front/public/images/small/gregtech/gt.metaitem.01/27523.png deleted file mode 100644 index d83540cbd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27524.png b/front/public/images/small/gregtech/gt.metaitem.01/27524.png deleted file mode 100644 index d76089f486..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27525.png b/front/public/images/small/gregtech/gt.metaitem.01/27525.png deleted file mode 100644 index e334aa31f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27526.png b/front/public/images/small/gregtech/gt.metaitem.01/27526.png deleted file mode 100644 index c13e2942ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27527.png b/front/public/images/small/gregtech/gt.metaitem.01/27527.png deleted file mode 100644 index 19f890a546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27528.png b/front/public/images/small/gregtech/gt.metaitem.01/27528.png deleted file mode 100644 index 01894ee4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27529.png b/front/public/images/small/gregtech/gt.metaitem.01/27529.png deleted file mode 100644 index 48ca23bae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2753.png b/front/public/images/small/gregtech/gt.metaitem.01/2753.png deleted file mode 100644 index 822002de2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2753.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27530.png b/front/public/images/small/gregtech/gt.metaitem.01/27530.png deleted file mode 100644 index fe90b24dce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27531.png b/front/public/images/small/gregtech/gt.metaitem.01/27531.png deleted file mode 100644 index 4c9ada0d6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27532.png b/front/public/images/small/gregtech/gt.metaitem.01/27532.png deleted file mode 100644 index 9f944ca82d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27533.png b/front/public/images/small/gregtech/gt.metaitem.01/27533.png deleted file mode 100644 index bb2718d134..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27534.png b/front/public/images/small/gregtech/gt.metaitem.01/27534.png deleted file mode 100644 index 95f1158676..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27535.png b/front/public/images/small/gregtech/gt.metaitem.01/27535.png deleted file mode 100644 index 77fe7c3038..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27536.png b/front/public/images/small/gregtech/gt.metaitem.01/27536.png deleted file mode 100644 index ae2544a0e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27537.png b/front/public/images/small/gregtech/gt.metaitem.01/27537.png deleted file mode 100644 index ceed9843b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27538.png b/front/public/images/small/gregtech/gt.metaitem.01/27538.png deleted file mode 100644 index ae2544a0e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2754.png b/front/public/images/small/gregtech/gt.metaitem.01/2754.png deleted file mode 100644 index 4c25e84df7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2754.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27540.png b/front/public/images/small/gregtech/gt.metaitem.01/27540.png deleted file mode 100644 index f00f71d245..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27541.png b/front/public/images/small/gregtech/gt.metaitem.01/27541.png deleted file mode 100644 index a95d424b58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27542.png b/front/public/images/small/gregtech/gt.metaitem.01/27542.png deleted file mode 100644 index 2947938081..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27543.png b/front/public/images/small/gregtech/gt.metaitem.01/27543.png deleted file mode 100644 index 51a6baa9dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27544.png b/front/public/images/small/gregtech/gt.metaitem.01/27544.png deleted file mode 100644 index 8b3cb66ada..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27545.png b/front/public/images/small/gregtech/gt.metaitem.01/27545.png deleted file mode 100644 index a72d6e2e78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2755.png b/front/public/images/small/gregtech/gt.metaitem.01/2755.png deleted file mode 100644 index 822002de2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2755.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2756.png b/front/public/images/small/gregtech/gt.metaitem.01/2756.png deleted file mode 100644 index 01c18244bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2756.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2757.png b/front/public/images/small/gregtech/gt.metaitem.01/2757.png deleted file mode 100644 index 01c18244bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2757.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27576.png b/front/public/images/small/gregtech/gt.metaitem.01/27576.png deleted file mode 100644 index 959b2c6a66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2758.png b/front/public/images/small/gregtech/gt.metaitem.01/2758.png deleted file mode 100644 index 7e2a065e7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2758.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27581.png b/front/public/images/small/gregtech/gt.metaitem.01/27581.png deleted file mode 100644 index e143605752..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27582.png b/front/public/images/small/gregtech/gt.metaitem.01/27582.png deleted file mode 100644 index 18b344f8fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27583.png b/front/public/images/small/gregtech/gt.metaitem.01/27583.png deleted file mode 100644 index 9543850b4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27585.png b/front/public/images/small/gregtech/gt.metaitem.01/27585.png deleted file mode 100644 index 13d1fcfc3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27586.png b/front/public/images/small/gregtech/gt.metaitem.01/27586.png deleted file mode 100644 index 9d355cf074..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27588.png b/front/public/images/small/gregtech/gt.metaitem.01/27588.png deleted file mode 100644 index 0f0e080be8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2759.png b/front/public/images/small/gregtech/gt.metaitem.01/2759.png deleted file mode 100644 index e74b023be8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2759.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27599.png b/front/public/images/small/gregtech/gt.metaitem.01/27599.png deleted file mode 100644 index bb08002035..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2761.png b/front/public/images/small/gregtech/gt.metaitem.01/2761.png deleted file mode 100644 index 6b3313010d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2761.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27610.png b/front/public/images/small/gregtech/gt.metaitem.01/27610.png deleted file mode 100644 index 106f8e289d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27611.png b/front/public/images/small/gregtech/gt.metaitem.01/27611.png deleted file mode 100644 index 4b6858862e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27613.png b/front/public/images/small/gregtech/gt.metaitem.01/27613.png deleted file mode 100644 index 1aba2761f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27631.png b/front/public/images/small/gregtech/gt.metaitem.01/27631.png deleted file mode 100644 index 3e7ed8f3dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27635.png b/front/public/images/small/gregtech/gt.metaitem.01/27635.png deleted file mode 100644 index 7d84ed3526..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27636.png b/front/public/images/small/gregtech/gt.metaitem.01/27636.png deleted file mode 100644 index 3cfdf00998..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27649.png b/front/public/images/small/gregtech/gt.metaitem.01/27649.png deleted file mode 100644 index 986002e824..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2765.png b/front/public/images/small/gregtech/gt.metaitem.01/2765.png deleted file mode 100644 index 7c83fac06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2769.png b/front/public/images/small/gregtech/gt.metaitem.01/2769.png deleted file mode 100644 index 8972699667..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2769.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2770.png b/front/public/images/small/gregtech/gt.metaitem.01/2770.png deleted file mode 100644 index cafa330ab3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2771.png b/front/public/images/small/gregtech/gt.metaitem.01/2771.png deleted file mode 100644 index 12f830f8d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2771.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2772.png b/front/public/images/small/gregtech/gt.metaitem.01/2772.png deleted file mode 100644 index 8db14dbf96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2773.png b/front/public/images/small/gregtech/gt.metaitem.01/2773.png deleted file mode 100644 index 91563d6af6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2773.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2775.png b/front/public/images/small/gregtech/gt.metaitem.01/2775.png deleted file mode 100644 index 1a21d12ff1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2775.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27765.png b/front/public/images/small/gregtech/gt.metaitem.01/27765.png deleted file mode 100644 index cb956c7b49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27770.png b/front/public/images/small/gregtech/gt.metaitem.01/27770.png deleted file mode 100644 index 31ebb0b1d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27772.png b/front/public/images/small/gregtech/gt.metaitem.01/27772.png deleted file mode 100644 index cc76c515fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2779.png b/front/public/images/small/gregtech/gt.metaitem.01/2779.png deleted file mode 100644 index 5cd69a447e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2779.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27804.png b/front/public/images/small/gregtech/gt.metaitem.01/27804.png deleted file mode 100644 index a91e3b7f3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27809.png b/front/public/images/small/gregtech/gt.metaitem.01/27809.png deleted file mode 100644 index 86cba75e4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2782.png b/front/public/images/small/gregtech/gt.metaitem.01/2782.png deleted file mode 100644 index 6046686f67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2782.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27829.png b/front/public/images/small/gregtech/gt.metaitem.01/27829.png deleted file mode 100644 index 300398e8e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2785.png b/front/public/images/small/gregtech/gt.metaitem.01/2785.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2785.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27856.png b/front/public/images/small/gregtech/gt.metaitem.01/27856.png deleted file mode 100644 index 8e8bda4600..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27868.png b/front/public/images/small/gregtech/gt.metaitem.01/27868.png deleted file mode 100644 index b1fbcdf2e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27874.png b/front/public/images/small/gregtech/gt.metaitem.01/27874.png deleted file mode 100644 index 786755e4aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27880.png b/front/public/images/small/gregtech/gt.metaitem.01/27880.png deleted file mode 100644 index 9d355cf074..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27884.png b/front/public/images/small/gregtech/gt.metaitem.01/27884.png deleted file mode 100644 index bcb06c5188..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27889.png b/front/public/images/small/gregtech/gt.metaitem.01/27889.png deleted file mode 100644 index 394bb7c371..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27890.png b/front/public/images/small/gregtech/gt.metaitem.01/27890.png deleted file mode 100644 index 9c2f08934e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2790.png b/front/public/images/small/gregtech/gt.metaitem.01/2790.png deleted file mode 100644 index f374d389b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2790.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27912.png b/front/public/images/small/gregtech/gt.metaitem.01/27912.png deleted file mode 100644 index 071590fba9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27913.png b/front/public/images/small/gregtech/gt.metaitem.01/27913.png deleted file mode 100644 index a3b6059f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27951.png b/front/public/images/small/gregtech/gt.metaitem.01/27951.png deleted file mode 100644 index 2fc634ecf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27952.png b/front/public/images/small/gregtech/gt.metaitem.01/27952.png deleted file mode 100644 index ed7925ec21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27956.png b/front/public/images/small/gregtech/gt.metaitem.01/27956.png deleted file mode 100644 index 01898d2456..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2796.png b/front/public/images/small/gregtech/gt.metaitem.01/2796.png deleted file mode 100644 index 19ea3ec19e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2796.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27966.png b/front/public/images/small/gregtech/gt.metaitem.01/27966.png deleted file mode 100644 index 53cae88c2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2797.png b/front/public/images/small/gregtech/gt.metaitem.01/2797.png deleted file mode 100644 index 65c405d17b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2797.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27970.png b/front/public/images/small/gregtech/gt.metaitem.01/27970.png deleted file mode 100644 index 1753dcabac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27974.png b/front/public/images/small/gregtech/gt.metaitem.01/27974.png deleted file mode 100644 index 6197345e98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27975.png b/front/public/images/small/gregtech/gt.metaitem.01/27975.png deleted file mode 100644 index ea7a1956bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27976.png b/front/public/images/small/gregtech/gt.metaitem.01/27976.png deleted file mode 100644 index 225eb8a64c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27977.png b/front/public/images/small/gregtech/gt.metaitem.01/27977.png deleted file mode 100644 index 64deca63e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27978.png b/front/public/images/small/gregtech/gt.metaitem.01/27978.png deleted file mode 100644 index 71cc9743a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27979.png b/front/public/images/small/gregtech/gt.metaitem.01/27979.png deleted file mode 100644 index f85005b48c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27980.png b/front/public/images/small/gregtech/gt.metaitem.01/27980.png deleted file mode 100644 index 2a9091bfe0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27981.png b/front/public/images/small/gregtech/gt.metaitem.01/27981.png deleted file mode 100644 index 886cb155a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27982.png b/front/public/images/small/gregtech/gt.metaitem.01/27982.png deleted file mode 100644 index 82bd5e9211..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27984.png b/front/public/images/small/gregtech/gt.metaitem.01/27984.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27985.png b/front/public/images/small/gregtech/gt.metaitem.01/27985.png deleted file mode 100644 index 3bdad9d589..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27986.png b/front/public/images/small/gregtech/gt.metaitem.01/27986.png deleted file mode 100644 index a9e25c144d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27987.png b/front/public/images/small/gregtech/gt.metaitem.01/27987.png deleted file mode 100644 index 2711a00424..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27988.png b/front/public/images/small/gregtech/gt.metaitem.01/27988.png deleted file mode 100644 index e2668e3a3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27989.png b/front/public/images/small/gregtech/gt.metaitem.01/27989.png deleted file mode 100644 index 85c387089c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27990.png b/front/public/images/small/gregtech/gt.metaitem.01/27990.png deleted file mode 100644 index c076a1fdd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27991.png b/front/public/images/small/gregtech/gt.metaitem.01/27991.png deleted file mode 100644 index af6b314be1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/27992.png b/front/public/images/small/gregtech/gt.metaitem.01/27992.png deleted file mode 100644 index 95a3e73345..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/27992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28006.png b/front/public/images/small/gregtech/gt.metaitem.01/28006.png deleted file mode 100644 index 485e674f61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28008.png b/front/public/images/small/gregtech/gt.metaitem.01/28008.png deleted file mode 100644 index 75f7e93634..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28010.png b/front/public/images/small/gregtech/gt.metaitem.01/28010.png deleted file mode 100644 index 038a9863e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28018.png b/front/public/images/small/gregtech/gt.metaitem.01/28018.png deleted file mode 100644 index 8b8127d71a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28019.png b/front/public/images/small/gregtech/gt.metaitem.01/28019.png deleted file mode 100644 index f7b189eb00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2802.png b/front/public/images/small/gregtech/gt.metaitem.01/2802.png deleted file mode 100644 index 96c41fe357..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2802.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28020.png b/front/public/images/small/gregtech/gt.metaitem.01/28020.png deleted file mode 100644 index a7aecb9631..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28025.png b/front/public/images/small/gregtech/gt.metaitem.01/28025.png deleted file mode 100644 index b245a1c2e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28027.png b/front/public/images/small/gregtech/gt.metaitem.01/28027.png deleted file mode 100644 index 4f117af937..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28028.png b/front/public/images/small/gregtech/gt.metaitem.01/28028.png deleted file mode 100644 index 67ab49ea5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28029.png b/front/public/images/small/gregtech/gt.metaitem.01/28029.png deleted file mode 100644 index d3cbfc7cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28030.png b/front/public/images/small/gregtech/gt.metaitem.01/28030.png deleted file mode 100644 index cd6ac66d8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28031.png b/front/public/images/small/gregtech/gt.metaitem.01/28031.png deleted file mode 100644 index 05423c0435..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28032.png b/front/public/images/small/gregtech/gt.metaitem.01/28032.png deleted file mode 100644 index 8ae5165506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28033.png b/front/public/images/small/gregtech/gt.metaitem.01/28033.png deleted file mode 100644 index 5201518d07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28034.png b/front/public/images/small/gregtech/gt.metaitem.01/28034.png deleted file mode 100644 index 4a4d8cdd53..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28035.png b/front/public/images/small/gregtech/gt.metaitem.01/28035.png deleted file mode 100644 index 64744eddd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28036.png b/front/public/images/small/gregtech/gt.metaitem.01/28036.png deleted file mode 100644 index 80eadf6929..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28037.png b/front/public/images/small/gregtech/gt.metaitem.01/28037.png deleted file mode 100644 index 3e70447646..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28039.png b/front/public/images/small/gregtech/gt.metaitem.01/28039.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2804.png b/front/public/images/small/gregtech/gt.metaitem.01/2804.png deleted file mode 100644 index 026e5c2814..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28043.png b/front/public/images/small/gregtech/gt.metaitem.01/28043.png deleted file mode 100644 index c651fe9ee8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28045.png b/front/public/images/small/gregtech/gt.metaitem.01/28045.png deleted file mode 100644 index fb9b58087a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28047.png b/front/public/images/small/gregtech/gt.metaitem.01/28047.png deleted file mode 100644 index f3eeb4fff0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28048.png b/front/public/images/small/gregtech/gt.metaitem.01/28048.png deleted file mode 100644 index c082a988b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2805.png b/front/public/images/small/gregtech/gt.metaitem.01/2805.png deleted file mode 100644 index 7db468a512..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2805.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28052.png b/front/public/images/small/gregtech/gt.metaitem.01/28052.png deleted file mode 100644 index cf2dcdd890..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28054.png b/front/public/images/small/gregtech/gt.metaitem.01/28054.png deleted file mode 100644 index 3e70447646..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28056.png b/front/public/images/small/gregtech/gt.metaitem.01/28056.png deleted file mode 100644 index 03f4b549be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28057.png b/front/public/images/small/gregtech/gt.metaitem.01/28057.png deleted file mode 100644 index d06932cf2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28058.png b/front/public/images/small/gregtech/gt.metaitem.01/28058.png deleted file mode 100644 index d2502a1bed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28059.png b/front/public/images/small/gregtech/gt.metaitem.01/28059.png deleted file mode 100644 index 4c4615bae0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28062.png b/front/public/images/small/gregtech/gt.metaitem.01/28062.png deleted file mode 100644 index d939c977dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28063.png b/front/public/images/small/gregtech/gt.metaitem.01/28063.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28064.png b/front/public/images/small/gregtech/gt.metaitem.01/28064.png deleted file mode 100644 index 92ed466105..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28065.png b/front/public/images/small/gregtech/gt.metaitem.01/28065.png deleted file mode 100644 index f5cb9cfd51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28066.png b/front/public/images/small/gregtech/gt.metaitem.01/28066.png deleted file mode 100644 index 71641f4471..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28067.png b/front/public/images/small/gregtech/gt.metaitem.01/28067.png deleted file mode 100644 index 3c5f13b235..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28068.png b/front/public/images/small/gregtech/gt.metaitem.01/28068.png deleted file mode 100644 index da065dc35e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28069.png b/front/public/images/small/gregtech/gt.metaitem.01/28069.png deleted file mode 100644 index 8d615c9d0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2807.png b/front/public/images/small/gregtech/gt.metaitem.01/2807.png deleted file mode 100644 index 0d0e962c37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2807.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28070.png b/front/public/images/small/gregtech/gt.metaitem.01/28070.png deleted file mode 100644 index 3c567176dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28071.png b/front/public/images/small/gregtech/gt.metaitem.01/28071.png deleted file mode 100644 index e9d18cfc1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28072.png b/front/public/images/small/gregtech/gt.metaitem.01/28072.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28073.png b/front/public/images/small/gregtech/gt.metaitem.01/28073.png deleted file mode 100644 index 061dc20baf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28074.png b/front/public/images/small/gregtech/gt.metaitem.01/28074.png deleted file mode 100644 index e18d9d7d39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28075.png b/front/public/images/small/gregtech/gt.metaitem.01/28075.png deleted file mode 100644 index 52ad5e5cea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28076.png b/front/public/images/small/gregtech/gt.metaitem.01/28076.png deleted file mode 100644 index 0c3ecd880e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28077.png b/front/public/images/small/gregtech/gt.metaitem.01/28077.png deleted file mode 100644 index 794b07924d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28078.png b/front/public/images/small/gregtech/gt.metaitem.01/28078.png deleted file mode 100644 index a8242d1713..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2808.png b/front/public/images/small/gregtech/gt.metaitem.01/2808.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2808.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28080.png b/front/public/images/small/gregtech/gt.metaitem.01/28080.png deleted file mode 100644 index ea32b350f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28081.png b/front/public/images/small/gregtech/gt.metaitem.01/28081.png deleted file mode 100644 index d3cbfc7cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28083.png b/front/public/images/small/gregtech/gt.metaitem.01/28083.png deleted file mode 100644 index 11247ac864..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28084.png b/front/public/images/small/gregtech/gt.metaitem.01/28084.png deleted file mode 100644 index 44f6a1f69d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28085.png b/front/public/images/small/gregtech/gt.metaitem.01/28085.png deleted file mode 100644 index 5ce299e36d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28086.png b/front/public/images/small/gregtech/gt.metaitem.01/28086.png deleted file mode 100644 index 2dbb8f3ee6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28089.png b/front/public/images/small/gregtech/gt.metaitem.01/28089.png deleted file mode 100644 index 462ca2ef75..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2809.png b/front/public/images/small/gregtech/gt.metaitem.01/2809.png deleted file mode 100644 index 422c2b65b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28090.png b/front/public/images/small/gregtech/gt.metaitem.01/28090.png deleted file mode 100644 index 4700fdb620..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28096.png b/front/public/images/small/gregtech/gt.metaitem.01/28096.png deleted file mode 100644 index 4a7819b1fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28097.png b/front/public/images/small/gregtech/gt.metaitem.01/28097.png deleted file mode 100644 index 20c3c71144..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28098.png b/front/public/images/small/gregtech/gt.metaitem.01/28098.png deleted file mode 100644 index c546eb07ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28100.png b/front/public/images/small/gregtech/gt.metaitem.01/28100.png deleted file mode 100644 index e985542749..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28101.png b/front/public/images/small/gregtech/gt.metaitem.01/28101.png deleted file mode 100644 index dc851714d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28103.png b/front/public/images/small/gregtech/gt.metaitem.01/28103.png deleted file mode 100644 index 8ae5165506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28111.png b/front/public/images/small/gregtech/gt.metaitem.01/28111.png deleted file mode 100644 index e1e0a23ef2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28112.png b/front/public/images/small/gregtech/gt.metaitem.01/28112.png deleted file mode 100644 index e981afc5f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2812.png b/front/public/images/small/gregtech/gt.metaitem.01/2812.png deleted file mode 100644 index 157234b427..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28129.png b/front/public/images/small/gregtech/gt.metaitem.01/28129.png deleted file mode 100644 index 05423c0435..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2813.png b/front/public/images/small/gregtech/gt.metaitem.01/2813.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2813.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28131.png b/front/public/images/small/gregtech/gt.metaitem.01/28131.png deleted file mode 100644 index 7fd96db28a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28134.png b/front/public/images/small/gregtech/gt.metaitem.01/28134.png deleted file mode 100644 index 51c3cda503..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28139.png b/front/public/images/small/gregtech/gt.metaitem.01/28139.png deleted file mode 100644 index 39a3cb81b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2814.png b/front/public/images/small/gregtech/gt.metaitem.01/2814.png deleted file mode 100644 index 223df9b4c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2814.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28141.png b/front/public/images/small/gregtech/gt.metaitem.01/28141.png deleted file mode 100644 index c2c8a18df3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28143.png b/front/public/images/small/gregtech/gt.metaitem.01/28143.png deleted file mode 100644 index 7a664a0574..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2815.png b/front/public/images/small/gregtech/gt.metaitem.01/2815.png deleted file mode 100644 index f04083691f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2815.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2816.png b/front/public/images/small/gregtech/gt.metaitem.01/2816.png deleted file mode 100644 index f374d389b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2816.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2817.png b/front/public/images/small/gregtech/gt.metaitem.01/2817.png deleted file mode 100644 index 9183e0b54a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2817.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2818.png b/front/public/images/small/gregtech/gt.metaitem.01/2818.png deleted file mode 100644 index 862600e76d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2818.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2819.png b/front/public/images/small/gregtech/gt.metaitem.01/2819.png deleted file mode 100644 index fb1f5b0267..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2819.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2820.png b/front/public/images/small/gregtech/gt.metaitem.01/2820.png deleted file mode 100644 index 9d6e485bdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2820.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28201.png b/front/public/images/small/gregtech/gt.metaitem.01/28201.png deleted file mode 100644 index f5014dbee0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28202.png b/front/public/images/small/gregtech/gt.metaitem.01/28202.png deleted file mode 100644 index b1129f6ba4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28203.png b/front/public/images/small/gregtech/gt.metaitem.01/28203.png deleted file mode 100644 index 4d0e13c186..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28205.png b/front/public/images/small/gregtech/gt.metaitem.01/28205.png deleted file mode 100644 index d4c686cdc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28206.png b/front/public/images/small/gregtech/gt.metaitem.01/28206.png deleted file mode 100644 index 8d497c1096..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28207.png b/front/public/images/small/gregtech/gt.metaitem.01/28207.png deleted file mode 100644 index 0514be5174..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2821.png b/front/public/images/small/gregtech/gt.metaitem.01/2821.png deleted file mode 100644 index 8b7371dc7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2821.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2822.png b/front/public/images/small/gregtech/gt.metaitem.01/2822.png deleted file mode 100644 index 4b9b719e48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2822.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2823.png b/front/public/images/small/gregtech/gt.metaitem.01/2823.png deleted file mode 100644 index e1341ad9ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2823.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2824.png b/front/public/images/small/gregtech/gt.metaitem.01/2824.png deleted file mode 100644 index 65c405d17b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2824.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2825.png b/front/public/images/small/gregtech/gt.metaitem.01/2825.png deleted file mode 100644 index 58fea18e1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2825.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2826.png b/front/public/images/small/gregtech/gt.metaitem.01/2826.png deleted file mode 100644 index 203394b56d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2826.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2827.png b/front/public/images/small/gregtech/gt.metaitem.01/2827.png deleted file mode 100644 index bee03c85ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2827.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2828.png b/front/public/images/small/gregtech/gt.metaitem.01/2828.png deleted file mode 100644 index b5300ced71..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2828.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2829.png b/front/public/images/small/gregtech/gt.metaitem.01/2829.png deleted file mode 100644 index 2afcfcb9fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2830.png b/front/public/images/small/gregtech/gt.metaitem.01/2830.png deleted file mode 100644 index 7a54d0ae75..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2830.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28300.png b/front/public/images/small/gregtech/gt.metaitem.01/28300.png deleted file mode 100644 index 40b68e7996..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28301.png b/front/public/images/small/gregtech/gt.metaitem.01/28301.png deleted file mode 100644 index d43984240c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28302.png b/front/public/images/small/gregtech/gt.metaitem.01/28302.png deleted file mode 100644 index c3a2a5a80e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28303.png b/front/public/images/small/gregtech/gt.metaitem.01/28303.png deleted file mode 100644 index 2f0512dac1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28304.png b/front/public/images/small/gregtech/gt.metaitem.01/28304.png deleted file mode 100644 index e0f43c126c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28305.png b/front/public/images/small/gregtech/gt.metaitem.01/28305.png deleted file mode 100644 index cf2dcdd890..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28306.png b/front/public/images/small/gregtech/gt.metaitem.01/28306.png deleted file mode 100644 index f2b36f446a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28307.png b/front/public/images/small/gregtech/gt.metaitem.01/28307.png deleted file mode 100644 index e0f43c126c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28308.png b/front/public/images/small/gregtech/gt.metaitem.01/28308.png deleted file mode 100644 index 7857e217b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28309.png b/front/public/images/small/gregtech/gt.metaitem.01/28309.png deleted file mode 100644 index 39397e8600..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2831.png b/front/public/images/small/gregtech/gt.metaitem.01/2831.png deleted file mode 100644 index 8f20f025b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2831.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28310.png b/front/public/images/small/gregtech/gt.metaitem.01/28310.png deleted file mode 100644 index a97af101a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28311.png b/front/public/images/small/gregtech/gt.metaitem.01/28311.png deleted file mode 100644 index afbad5a0b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28312.png b/front/public/images/small/gregtech/gt.metaitem.01/28312.png deleted file mode 100644 index d8cfe65939..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28313.png b/front/public/images/small/gregtech/gt.metaitem.01/28313.png deleted file mode 100644 index 922c5a94e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28314.png b/front/public/images/small/gregtech/gt.metaitem.01/28314.png deleted file mode 100644 index f94e8f2550..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28315.png b/front/public/images/small/gregtech/gt.metaitem.01/28315.png deleted file mode 100644 index dc4fcd20e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28316.png b/front/public/images/small/gregtech/gt.metaitem.01/28316.png deleted file mode 100644 index 4fdc0c986d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28317.png b/front/public/images/small/gregtech/gt.metaitem.01/28317.png deleted file mode 100644 index a61395acf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28318.png b/front/public/images/small/gregtech/gt.metaitem.01/28318.png deleted file mode 100644 index 0661169414..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28319.png b/front/public/images/small/gregtech/gt.metaitem.01/28319.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2832.png b/front/public/images/small/gregtech/gt.metaitem.01/2832.png deleted file mode 100644 index ce48030a38..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2832.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28320.png b/front/public/images/small/gregtech/gt.metaitem.01/28320.png deleted file mode 100644 index 5d4841acf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28321.png b/front/public/images/small/gregtech/gt.metaitem.01/28321.png deleted file mode 100644 index c48b5d2116..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28323.png b/front/public/images/small/gregtech/gt.metaitem.01/28323.png deleted file mode 100644 index b7dbff1044..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28324.png b/front/public/images/small/gregtech/gt.metaitem.01/28324.png deleted file mode 100644 index d3cbfc7cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28325.png b/front/public/images/small/gregtech/gt.metaitem.01/28325.png deleted file mode 100644 index 8fc6c5370a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28326.png b/front/public/images/small/gregtech/gt.metaitem.01/28326.png deleted file mode 100644 index 23273bb320..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28327.png b/front/public/images/small/gregtech/gt.metaitem.01/28327.png deleted file mode 100644 index ac9eba7405..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28328.png b/front/public/images/small/gregtech/gt.metaitem.01/28328.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28329.png b/front/public/images/small/gregtech/gt.metaitem.01/28329.png deleted file mode 100644 index 7f7ebab004..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2833.png b/front/public/images/small/gregtech/gt.metaitem.01/2833.png deleted file mode 100644 index 74d9523b9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28330.png b/front/public/images/small/gregtech/gt.metaitem.01/28330.png deleted file mode 100644 index 1ad248b82f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28331.png b/front/public/images/small/gregtech/gt.metaitem.01/28331.png deleted file mode 100644 index 4dcd99f44f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28333.png b/front/public/images/small/gregtech/gt.metaitem.01/28333.png deleted file mode 100644 index 5f08ebd643..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28334.png b/front/public/images/small/gregtech/gt.metaitem.01/28334.png deleted file mode 100644 index 3c5f13b235..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28335.png b/front/public/images/small/gregtech/gt.metaitem.01/28335.png deleted file mode 100644 index beae735d71..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28336.png b/front/public/images/small/gregtech/gt.metaitem.01/28336.png deleted file mode 100644 index 983a0dd52a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28337.png b/front/public/images/small/gregtech/gt.metaitem.01/28337.png deleted file mode 100644 index b15beff59e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28338.png b/front/public/images/small/gregtech/gt.metaitem.01/28338.png deleted file mode 100644 index 9413fe3708..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28339.png b/front/public/images/small/gregtech/gt.metaitem.01/28339.png deleted file mode 100644 index 73a465a696..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2834.png b/front/public/images/small/gregtech/gt.metaitem.01/2834.png deleted file mode 100644 index 64cce8a62b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2834.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28340.png b/front/public/images/small/gregtech/gt.metaitem.01/28340.png deleted file mode 100644 index 740f182a08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28341.png b/front/public/images/small/gregtech/gt.metaitem.01/28341.png deleted file mode 100644 index 8535b02ce1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28342.png b/front/public/images/small/gregtech/gt.metaitem.01/28342.png deleted file mode 100644 index 5f967299b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28343.png b/front/public/images/small/gregtech/gt.metaitem.01/28343.png deleted file mode 100644 index 6410427095..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28344.png b/front/public/images/small/gregtech/gt.metaitem.01/28344.png deleted file mode 100644 index 80c86ba12f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28345.png b/front/public/images/small/gregtech/gt.metaitem.01/28345.png deleted file mode 100644 index d62498e7bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28346.png b/front/public/images/small/gregtech/gt.metaitem.01/28346.png deleted file mode 100644 index c25e1207dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28348.png b/front/public/images/small/gregtech/gt.metaitem.01/28348.png deleted file mode 100644 index c52e02ffd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28349.png b/front/public/images/small/gregtech/gt.metaitem.01/28349.png deleted file mode 100644 index 75edd86e8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2835.png b/front/public/images/small/gregtech/gt.metaitem.01/2835.png deleted file mode 100644 index 63dc7996fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2835.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28350.png b/front/public/images/small/gregtech/gt.metaitem.01/28350.png deleted file mode 100644 index 722c64a0d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28351.png b/front/public/images/small/gregtech/gt.metaitem.01/28351.png deleted file mode 100644 index 05ec6c3fb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28352.png b/front/public/images/small/gregtech/gt.metaitem.01/28352.png deleted file mode 100644 index f96f54d00a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28353.png b/front/public/images/small/gregtech/gt.metaitem.01/28353.png deleted file mode 100644 index 3b9543726d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28354.png b/front/public/images/small/gregtech/gt.metaitem.01/28354.png deleted file mode 100644 index c78b5a1919..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28355.png b/front/public/images/small/gregtech/gt.metaitem.01/28355.png deleted file mode 100644 index c07f6b05e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28356.png b/front/public/images/small/gregtech/gt.metaitem.01/28356.png deleted file mode 100644 index 6c5b2ff0bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28357.png b/front/public/images/small/gregtech/gt.metaitem.01/28357.png deleted file mode 100644 index 422d2c45b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28358.png b/front/public/images/small/gregtech/gt.metaitem.01/28358.png deleted file mode 100644 index 23dc58c033..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28359.png b/front/public/images/small/gregtech/gt.metaitem.01/28359.png deleted file mode 100644 index 11ee4875e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2836.png b/front/public/images/small/gregtech/gt.metaitem.01/2836.png deleted file mode 100644 index 47a057d6f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2836.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28360.png b/front/public/images/small/gregtech/gt.metaitem.01/28360.png deleted file mode 100644 index c136a89fc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28361.png b/front/public/images/small/gregtech/gt.metaitem.01/28361.png deleted file mode 100644 index 452441df3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28362.png b/front/public/images/small/gregtech/gt.metaitem.01/28362.png deleted file mode 100644 index 92f91cfb24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28363.png b/front/public/images/small/gregtech/gt.metaitem.01/28363.png deleted file mode 100644 index 8ae5165506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28364.png b/front/public/images/small/gregtech/gt.metaitem.01/28364.png deleted file mode 100644 index c14e572fdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28365.png b/front/public/images/small/gregtech/gt.metaitem.01/28365.png deleted file mode 100644 index a0db785df9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28366.png b/front/public/images/small/gregtech/gt.metaitem.01/28366.png deleted file mode 100644 index ff012f1086..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28367.png b/front/public/images/small/gregtech/gt.metaitem.01/28367.png deleted file mode 100644 index fb15bc5900..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28368.png b/front/public/images/small/gregtech/gt.metaitem.01/28368.png deleted file mode 100644 index a49237ae24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28369.png b/front/public/images/small/gregtech/gt.metaitem.01/28369.png deleted file mode 100644 index cfd457adc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2837.png b/front/public/images/small/gregtech/gt.metaitem.01/2837.png deleted file mode 100644 index b626cb2621..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2837.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28370.png b/front/public/images/small/gregtech/gt.metaitem.01/28370.png deleted file mode 100644 index 5d4b4db1a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28371.png b/front/public/images/small/gregtech/gt.metaitem.01/28371.png deleted file mode 100644 index 52bd899129..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28372.png b/front/public/images/small/gregtech/gt.metaitem.01/28372.png deleted file mode 100644 index 020efe7f15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28373.png b/front/public/images/small/gregtech/gt.metaitem.01/28373.png deleted file mode 100644 index 9f2a032daa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28374.png b/front/public/images/small/gregtech/gt.metaitem.01/28374.png deleted file mode 100644 index 5de6360b12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28378.png b/front/public/images/small/gregtech/gt.metaitem.01/28378.png deleted file mode 100644 index aee77c787a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28379.png b/front/public/images/small/gregtech/gt.metaitem.01/28379.png deleted file mode 100644 index 52f00b1d5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2838.png b/front/public/images/small/gregtech/gt.metaitem.01/2838.png deleted file mode 100644 index ae5b3e5b4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2838.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28380.png b/front/public/images/small/gregtech/gt.metaitem.01/28380.png deleted file mode 100644 index a711d9f57f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28381.png b/front/public/images/small/gregtech/gt.metaitem.01/28381.png deleted file mode 100644 index b5bdb06a9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28382.png b/front/public/images/small/gregtech/gt.metaitem.01/28382.png deleted file mode 100644 index 99eefd85c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28383.png b/front/public/images/small/gregtech/gt.metaitem.01/28383.png deleted file mode 100644 index eea30a31d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28384.png b/front/public/images/small/gregtech/gt.metaitem.01/28384.png deleted file mode 100644 index a8d1d09fda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28385.png b/front/public/images/small/gregtech/gt.metaitem.01/28385.png deleted file mode 100644 index 95e8a4338d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28386.png b/front/public/images/small/gregtech/gt.metaitem.01/28386.png deleted file mode 100644 index ab82838953..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28387.png b/front/public/images/small/gregtech/gt.metaitem.01/28387.png deleted file mode 100644 index 790e9a7e91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28388.png b/front/public/images/small/gregtech/gt.metaitem.01/28388.png deleted file mode 100644 index d3cbfc7cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28389.png b/front/public/images/small/gregtech/gt.metaitem.01/28389.png deleted file mode 100644 index 369c02bf5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2839.png b/front/public/images/small/gregtech/gt.metaitem.01/2839.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2839.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28390.png b/front/public/images/small/gregtech/gt.metaitem.01/28390.png deleted file mode 100644 index 90b0741d9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28391.png b/front/public/images/small/gregtech/gt.metaitem.01/28391.png deleted file mode 100644 index 4424db015c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28392.png b/front/public/images/small/gregtech/gt.metaitem.01/28392.png deleted file mode 100644 index d40e15f0ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28393.png b/front/public/images/small/gregtech/gt.metaitem.01/28393.png deleted file mode 100644 index 8cae220007..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28394.png b/front/public/images/small/gregtech/gt.metaitem.01/28394.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28395.png b/front/public/images/small/gregtech/gt.metaitem.01/28395.png deleted file mode 100644 index d3cbfc7cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28397.png b/front/public/images/small/gregtech/gt.metaitem.01/28397.png deleted file mode 100644 index 7681b21257..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28398.png b/front/public/images/small/gregtech/gt.metaitem.01/28398.png deleted file mode 100644 index f0a29a4c7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28399.png b/front/public/images/small/gregtech/gt.metaitem.01/28399.png deleted file mode 100644 index c2077f0aa5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2840.png b/front/public/images/small/gregtech/gt.metaitem.01/2840.png deleted file mode 100644 index c22bb65cac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2840.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28400.png b/front/public/images/small/gregtech/gt.metaitem.01/28400.png deleted file mode 100644 index ab22efacd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28401.png b/front/public/images/small/gregtech/gt.metaitem.01/28401.png deleted file mode 100644 index 41e742d0ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28402.png b/front/public/images/small/gregtech/gt.metaitem.01/28402.png deleted file mode 100644 index 98e3a3430b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28403.png b/front/public/images/small/gregtech/gt.metaitem.01/28403.png deleted file mode 100644 index df4e16a93d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28404.png b/front/public/images/small/gregtech/gt.metaitem.01/28404.png deleted file mode 100644 index 1c01a94e43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28405.png b/front/public/images/small/gregtech/gt.metaitem.01/28405.png deleted file mode 100644 index 0e7fb435a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28406.png b/front/public/images/small/gregtech/gt.metaitem.01/28406.png deleted file mode 100644 index a102035309..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28407.png b/front/public/images/small/gregtech/gt.metaitem.01/28407.png deleted file mode 100644 index 7f3edc8a56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28408.png b/front/public/images/small/gregtech/gt.metaitem.01/28408.png deleted file mode 100644 index be30c3fcc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2841.png b/front/public/images/small/gregtech/gt.metaitem.01/2841.png deleted file mode 100644 index 6fef675802..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2841.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2842.png b/front/public/images/small/gregtech/gt.metaitem.01/2842.png deleted file mode 100644 index f1a2e1c9bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2842.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2843.png b/front/public/images/small/gregtech/gt.metaitem.01/2843.png deleted file mode 100644 index 7071ab9010..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2843.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2844.png b/front/public/images/small/gregtech/gt.metaitem.01/2844.png deleted file mode 100644 index f5bd3041ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2844.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2845.png b/front/public/images/small/gregtech/gt.metaitem.01/2845.png deleted file mode 100644 index e06f2a9ff0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2845.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2846.png b/front/public/images/small/gregtech/gt.metaitem.01/2846.png deleted file mode 100644 index 07dc8f4953..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2846.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2847.png b/front/public/images/small/gregtech/gt.metaitem.01/2847.png deleted file mode 100644 index b010441156..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2847.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28470.png b/front/public/images/small/gregtech/gt.metaitem.01/28470.png deleted file mode 100644 index b41c54a80a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28471.png b/front/public/images/small/gregtech/gt.metaitem.01/28471.png deleted file mode 100644 index d06932cf2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28472.png b/front/public/images/small/gregtech/gt.metaitem.01/28472.png deleted file mode 100644 index d3cbfc7cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28473.png b/front/public/images/small/gregtech/gt.metaitem.01/28473.png deleted file mode 100644 index 3c5f13b235..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2848.png b/front/public/images/small/gregtech/gt.metaitem.01/2848.png deleted file mode 100644 index 49ac59ec10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2848.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28485.png b/front/public/images/small/gregtech/gt.metaitem.01/28485.png deleted file mode 100644 index d7a139d753..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28488.png b/front/public/images/small/gregtech/gt.metaitem.01/28488.png deleted file mode 100644 index 0a8d05f4e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28489.png b/front/public/images/small/gregtech/gt.metaitem.01/28489.png deleted file mode 100644 index ab897b3496..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2849.png b/front/public/images/small/gregtech/gt.metaitem.01/2849.png deleted file mode 100644 index f5e098c40c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2850.png b/front/public/images/small/gregtech/gt.metaitem.01/2850.png deleted file mode 100644 index b2e59af91c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2851.png b/front/public/images/small/gregtech/gt.metaitem.01/2851.png deleted file mode 100644 index 4ff52bd459..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2851.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28521.png b/front/public/images/small/gregtech/gt.metaitem.01/28521.png deleted file mode 100644 index 0661169414..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28529.png b/front/public/images/small/gregtech/gt.metaitem.01/28529.png deleted file mode 100644 index e8b208e11f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2853.png b/front/public/images/small/gregtech/gt.metaitem.01/2853.png deleted file mode 100644 index bee03c85ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2853.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2854.png b/front/public/images/small/gregtech/gt.metaitem.01/2854.png deleted file mode 100644 index fb1f5b0267..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2854.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2855.png b/front/public/images/small/gregtech/gt.metaitem.01/2855.png deleted file mode 100644 index 7478b3a995..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2855.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2856.png b/front/public/images/small/gregtech/gt.metaitem.01/2856.png deleted file mode 100644 index da103b263e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28576.png b/front/public/images/small/gregtech/gt.metaitem.01/28576.png deleted file mode 100644 index 5418c34f19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2858.png b/front/public/images/small/gregtech/gt.metaitem.01/2858.png deleted file mode 100644 index 0142f948c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2858.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28581.png b/front/public/images/small/gregtech/gt.metaitem.01/28581.png deleted file mode 100644 index 8396dda7be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28582.png b/front/public/images/small/gregtech/gt.metaitem.01/28582.png deleted file mode 100644 index 9cb229e6b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28583.png b/front/public/images/small/gregtech/gt.metaitem.01/28583.png deleted file mode 100644 index 1b5fbd5a5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28585.png b/front/public/images/small/gregtech/gt.metaitem.01/28585.png deleted file mode 100644 index ab80485d00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28586.png b/front/public/images/small/gregtech/gt.metaitem.01/28586.png deleted file mode 100644 index 81ec6b5c7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28588.png b/front/public/images/small/gregtech/gt.metaitem.01/28588.png deleted file mode 100644 index 0cb71675ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28599.png b/front/public/images/small/gregtech/gt.metaitem.01/28599.png deleted file mode 100644 index dfd087a537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2861.png b/front/public/images/small/gregtech/gt.metaitem.01/2861.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2861.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28610.png b/front/public/images/small/gregtech/gt.metaitem.01/28610.png deleted file mode 100644 index cc35a6a4d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28611.png b/front/public/images/small/gregtech/gt.metaitem.01/28611.png deleted file mode 100644 index 5088686a23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28613.png b/front/public/images/small/gregtech/gt.metaitem.01/28613.png deleted file mode 100644 index 9ae8675c97..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2862.png b/front/public/images/small/gregtech/gt.metaitem.01/2862.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2862.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28631.png b/front/public/images/small/gregtech/gt.metaitem.01/28631.png deleted file mode 100644 index 8f3a9ef80d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28635.png b/front/public/images/small/gregtech/gt.metaitem.01/28635.png deleted file mode 100644 index 500afc81e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28636.png b/front/public/images/small/gregtech/gt.metaitem.01/28636.png deleted file mode 100644 index 0a63c0cc00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28649.png b/front/public/images/small/gregtech/gt.metaitem.01/28649.png deleted file mode 100644 index e4ee7e0fad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2865.png b/front/public/images/small/gregtech/gt.metaitem.01/2865.png deleted file mode 100644 index fb1f5b0267..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2867.png b/front/public/images/small/gregtech/gt.metaitem.01/2867.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2867.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2868.png b/front/public/images/small/gregtech/gt.metaitem.01/2868.png deleted file mode 100644 index 6a7c408849..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2870.png b/front/public/images/small/gregtech/gt.metaitem.01/2870.png deleted file mode 100644 index 47c5ddf7fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2870.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2871.png b/front/public/images/small/gregtech/gt.metaitem.01/2871.png deleted file mode 100644 index bdf176607a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2871.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2872.png b/front/public/images/small/gregtech/gt.metaitem.01/2872.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2872.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2873.png b/front/public/images/small/gregtech/gt.metaitem.01/2873.png deleted file mode 100644 index b2ec9d60bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2873.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2874.png b/front/public/images/small/gregtech/gt.metaitem.01/2874.png deleted file mode 100644 index 62c2fbe17a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2876.png b/front/public/images/small/gregtech/gt.metaitem.01/2876.png deleted file mode 100644 index 812c2ef75a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2876.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28765.png b/front/public/images/small/gregtech/gt.metaitem.01/28765.png deleted file mode 100644 index 45dbc91359..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2877.png b/front/public/images/small/gregtech/gt.metaitem.01/2877.png deleted file mode 100644 index b6b9d7aaa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2877.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28770.png b/front/public/images/small/gregtech/gt.metaitem.01/28770.png deleted file mode 100644 index e23f21d546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28772.png b/front/public/images/small/gregtech/gt.metaitem.01/28772.png deleted file mode 100644 index eb25ecd5c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2878.png b/front/public/images/small/gregtech/gt.metaitem.01/2878.png deleted file mode 100644 index 0142f948c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2878.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2879.png b/front/public/images/small/gregtech/gt.metaitem.01/2879.png deleted file mode 100644 index 9183e0b54a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2879.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2880.png b/front/public/images/small/gregtech/gt.metaitem.01/2880.png deleted file mode 100644 index 31f7a11cc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28804.png b/front/public/images/small/gregtech/gt.metaitem.01/28804.png deleted file mode 100644 index 6ae3850403..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28809.png b/front/public/images/small/gregtech/gt.metaitem.01/28809.png deleted file mode 100644 index c55a26e28f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2881.png b/front/public/images/small/gregtech/gt.metaitem.01/2881.png deleted file mode 100644 index 32b29a856d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2881.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2882.png b/front/public/images/small/gregtech/gt.metaitem.01/2882.png deleted file mode 100644 index 312e8b9ad0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2882.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28829.png b/front/public/images/small/gregtech/gt.metaitem.01/28829.png deleted file mode 100644 index 35bb4ce41a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2883.png b/front/public/images/small/gregtech/gt.metaitem.01/2883.png deleted file mode 100644 index 74d9523b9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2883.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2884.png b/front/public/images/small/gregtech/gt.metaitem.01/2884.png deleted file mode 100644 index bb449c3fcc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2885.png b/front/public/images/small/gregtech/gt.metaitem.01/2885.png deleted file mode 100644 index 722f642fd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2885.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28856.png b/front/public/images/small/gregtech/gt.metaitem.01/28856.png deleted file mode 100644 index a4853138c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2886.png b/front/public/images/small/gregtech/gt.metaitem.01/2886.png deleted file mode 100644 index bde53b5374..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2886.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28868.png b/front/public/images/small/gregtech/gt.metaitem.01/28868.png deleted file mode 100644 index d83ffdac07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2887.png b/front/public/images/small/gregtech/gt.metaitem.01/2887.png deleted file mode 100644 index bde53b5374..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2887.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28874.png b/front/public/images/small/gregtech/gt.metaitem.01/28874.png deleted file mode 100644 index 8ae5165506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28879.png b/front/public/images/small/gregtech/gt.metaitem.01/28879.png deleted file mode 100644 index 05423c0435..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28879.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2888.png b/front/public/images/small/gregtech/gt.metaitem.01/2888.png deleted file mode 100644 index 91839e5e5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2888.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28880.png b/front/public/images/small/gregtech/gt.metaitem.01/28880.png deleted file mode 100644 index 81ec6b5c7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28884.png b/front/public/images/small/gregtech/gt.metaitem.01/28884.png deleted file mode 100644 index 8fc6c5370a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28889.png b/front/public/images/small/gregtech/gt.metaitem.01/28889.png deleted file mode 100644 index 2c9c79fdc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2889.png b/front/public/images/small/gregtech/gt.metaitem.01/2889.png deleted file mode 100644 index 23dfcbb94e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2890.png b/front/public/images/small/gregtech/gt.metaitem.01/2890.png deleted file mode 100644 index c44dfdade8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2891.png b/front/public/images/small/gregtech/gt.metaitem.01/2891.png deleted file mode 100644 index 060f1a8c32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2891.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28912.png b/front/public/images/small/gregtech/gt.metaitem.01/28912.png deleted file mode 100644 index e37a0d5cd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28913.png b/front/public/images/small/gregtech/gt.metaitem.01/28913.png deleted file mode 100644 index c52e02ffd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2892.png b/front/public/images/small/gregtech/gt.metaitem.01/2892.png deleted file mode 100644 index 98c53c47d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2892.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2893.png b/front/public/images/small/gregtech/gt.metaitem.01/2893.png deleted file mode 100644 index cef23c1761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2893.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2894.png b/front/public/images/small/gregtech/gt.metaitem.01/2894.png deleted file mode 100644 index d9530e98b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2895.png b/front/public/images/small/gregtech/gt.metaitem.01/2895.png deleted file mode 100644 index a25b9970be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2895.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28951.png b/front/public/images/small/gregtech/gt.metaitem.01/28951.png deleted file mode 100644 index 94decf9d1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28952.png b/front/public/images/small/gregtech/gt.metaitem.01/28952.png deleted file mode 100644 index 72957eaaeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28956.png b/front/public/images/small/gregtech/gt.metaitem.01/28956.png deleted file mode 100644 index d0e675b41f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2896.png b/front/public/images/small/gregtech/gt.metaitem.01/2896.png deleted file mode 100644 index 270b737329..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2896.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28966.png b/front/public/images/small/gregtech/gt.metaitem.01/28966.png deleted file mode 100644 index b358451ceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28970.png b/front/public/images/small/gregtech/gt.metaitem.01/28970.png deleted file mode 100644 index d854a17c4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28974.png b/front/public/images/small/gregtech/gt.metaitem.01/28974.png deleted file mode 100644 index f06cc4c882..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28975.png b/front/public/images/small/gregtech/gt.metaitem.01/28975.png deleted file mode 100644 index 8fc3f9b18c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28976.png b/front/public/images/small/gregtech/gt.metaitem.01/28976.png deleted file mode 100644 index 47baa7cd67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28977.png b/front/public/images/small/gregtech/gt.metaitem.01/28977.png deleted file mode 100644 index 21c856c8a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28978.png b/front/public/images/small/gregtech/gt.metaitem.01/28978.png deleted file mode 100644 index dd4830d355..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28979.png b/front/public/images/small/gregtech/gt.metaitem.01/28979.png deleted file mode 100644 index bf8d1be792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2898.png b/front/public/images/small/gregtech/gt.metaitem.01/2898.png deleted file mode 100644 index 49b66b607f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2898.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28980.png b/front/public/images/small/gregtech/gt.metaitem.01/28980.png deleted file mode 100644 index 73aa3f6f88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28981.png b/front/public/images/small/gregtech/gt.metaitem.01/28981.png deleted file mode 100644 index 69b3e8d0ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28982.png b/front/public/images/small/gregtech/gt.metaitem.01/28982.png deleted file mode 100644 index e40aacb36b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28984.png b/front/public/images/small/gregtech/gt.metaitem.01/28984.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28985.png b/front/public/images/small/gregtech/gt.metaitem.01/28985.png deleted file mode 100644 index 2a73e56f83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28986.png b/front/public/images/small/gregtech/gt.metaitem.01/28986.png deleted file mode 100644 index dfee0e5ee7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28987.png b/front/public/images/small/gregtech/gt.metaitem.01/28987.png deleted file mode 100644 index 2b25c0016f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28988.png b/front/public/images/small/gregtech/gt.metaitem.01/28988.png deleted file mode 100644 index 1b48bd0a2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28989.png b/front/public/images/small/gregtech/gt.metaitem.01/28989.png deleted file mode 100644 index 3e730216e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28990.png b/front/public/images/small/gregtech/gt.metaitem.01/28990.png deleted file mode 100644 index 46d2592228..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28991.png b/front/public/images/small/gregtech/gt.metaitem.01/28991.png deleted file mode 100644 index b985767375..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/28992.png b/front/public/images/small/gregtech/gt.metaitem.01/28992.png deleted file mode 100644 index 90722574e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/28992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2900.png b/front/public/images/small/gregtech/gt.metaitem.01/2900.png deleted file mode 100644 index 93c4fc5016..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2900.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29006.png b/front/public/images/small/gregtech/gt.metaitem.01/29006.png deleted file mode 100644 index 357df62240..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29008.png b/front/public/images/small/gregtech/gt.metaitem.01/29008.png deleted file mode 100644 index ae17f86ec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2901.png b/front/public/images/small/gregtech/gt.metaitem.01/2901.png deleted file mode 100644 index 2ddce7f3a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2901.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29010.png b/front/public/images/small/gregtech/gt.metaitem.01/29010.png deleted file mode 100644 index d4e5ba1078..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29018.png b/front/public/images/small/gregtech/gt.metaitem.01/29018.png deleted file mode 100644 index 9b3b0badb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29019.png b/front/public/images/small/gregtech/gt.metaitem.01/29019.png deleted file mode 100644 index fb06188b11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2902.png b/front/public/images/small/gregtech/gt.metaitem.01/2902.png deleted file mode 100644 index eb25c92d3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2902.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29020.png b/front/public/images/small/gregtech/gt.metaitem.01/29020.png deleted file mode 100644 index 1e81551693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29025.png b/front/public/images/small/gregtech/gt.metaitem.01/29025.png deleted file mode 100644 index 91e65d0043..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29027.png b/front/public/images/small/gregtech/gt.metaitem.01/29027.png deleted file mode 100644 index a5395ca674..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29028.png b/front/public/images/small/gregtech/gt.metaitem.01/29028.png deleted file mode 100644 index 58edeac2e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29029.png b/front/public/images/small/gregtech/gt.metaitem.01/29029.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2903.png b/front/public/images/small/gregtech/gt.metaitem.01/2903.png deleted file mode 100644 index d1f9dd0b01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2903.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29030.png b/front/public/images/small/gregtech/gt.metaitem.01/29030.png deleted file mode 100644 index e868e62cd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29031.png b/front/public/images/small/gregtech/gt.metaitem.01/29031.png deleted file mode 100644 index 2e51cabfad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29032.png b/front/public/images/small/gregtech/gt.metaitem.01/29032.png deleted file mode 100644 index 29146e1741..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29033.png b/front/public/images/small/gregtech/gt.metaitem.01/29033.png deleted file mode 100644 index 0ed612ab85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29034.png b/front/public/images/small/gregtech/gt.metaitem.01/29034.png deleted file mode 100644 index 182b319edf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29035.png b/front/public/images/small/gregtech/gt.metaitem.01/29035.png deleted file mode 100644 index caff8d7318..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29036.png b/front/public/images/small/gregtech/gt.metaitem.01/29036.png deleted file mode 100644 index 755a6d2dce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29037.png b/front/public/images/small/gregtech/gt.metaitem.01/29037.png deleted file mode 100644 index 6131e30f15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29039.png b/front/public/images/small/gregtech/gt.metaitem.01/29039.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2904.png b/front/public/images/small/gregtech/gt.metaitem.01/2904.png deleted file mode 100644 index aa830a4b1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2904.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29043.png b/front/public/images/small/gregtech/gt.metaitem.01/29043.png deleted file mode 100644 index 9b0cabc41e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29045.png b/front/public/images/small/gregtech/gt.metaitem.01/29045.png deleted file mode 100644 index 9d1683876e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29047.png b/front/public/images/small/gregtech/gt.metaitem.01/29047.png deleted file mode 100644 index d7eb41fe8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29048.png b/front/public/images/small/gregtech/gt.metaitem.01/29048.png deleted file mode 100644 index 1cc703495e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2905.png b/front/public/images/small/gregtech/gt.metaitem.01/2905.png deleted file mode 100644 index 38efcbce20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2905.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29052.png b/front/public/images/small/gregtech/gt.metaitem.01/29052.png deleted file mode 100644 index f48594afa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29054.png b/front/public/images/small/gregtech/gt.metaitem.01/29054.png deleted file mode 100644 index 6131e30f15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29056.png b/front/public/images/small/gregtech/gt.metaitem.01/29056.png deleted file mode 100644 index e8c81dd653..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29057.png b/front/public/images/small/gregtech/gt.metaitem.01/29057.png deleted file mode 100644 index 389c88a57f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29058.png b/front/public/images/small/gregtech/gt.metaitem.01/29058.png deleted file mode 100644 index c491a616b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29059.png b/front/public/images/small/gregtech/gt.metaitem.01/29059.png deleted file mode 100644 index 4e654edd9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2906.png b/front/public/images/small/gregtech/gt.metaitem.01/2906.png deleted file mode 100644 index a96a77175e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2906.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29062.png b/front/public/images/small/gregtech/gt.metaitem.01/29062.png deleted file mode 100644 index 0d5d29fe3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29063.png b/front/public/images/small/gregtech/gt.metaitem.01/29063.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29064.png b/front/public/images/small/gregtech/gt.metaitem.01/29064.png deleted file mode 100644 index 4d04d00cbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29065.png b/front/public/images/small/gregtech/gt.metaitem.01/29065.png deleted file mode 100644 index 6ed9a30db0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29066.png b/front/public/images/small/gregtech/gt.metaitem.01/29066.png deleted file mode 100644 index 5a4c1f97f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29067.png b/front/public/images/small/gregtech/gt.metaitem.01/29067.png deleted file mode 100644 index d4a6204a09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29068.png b/front/public/images/small/gregtech/gt.metaitem.01/29068.png deleted file mode 100644 index c6616ca9a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29069.png b/front/public/images/small/gregtech/gt.metaitem.01/29069.png deleted file mode 100644 index 415980bc5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2907.png b/front/public/images/small/gregtech/gt.metaitem.01/2907.png deleted file mode 100644 index 1b4fd5ac45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2907.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29070.png b/front/public/images/small/gregtech/gt.metaitem.01/29070.png deleted file mode 100644 index 1ba513b860..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29071.png b/front/public/images/small/gregtech/gt.metaitem.01/29071.png deleted file mode 100644 index ee2f6b8a7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29072.png b/front/public/images/small/gregtech/gt.metaitem.01/29072.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29073.png b/front/public/images/small/gregtech/gt.metaitem.01/29073.png deleted file mode 100644 index 93a41e8f29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29074.png b/front/public/images/small/gregtech/gt.metaitem.01/29074.png deleted file mode 100644 index 0beb5b520c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29075.png b/front/public/images/small/gregtech/gt.metaitem.01/29075.png deleted file mode 100644 index 1b6bd12946..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29076.png b/front/public/images/small/gregtech/gt.metaitem.01/29076.png deleted file mode 100644 index fce7d1d0ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29077.png b/front/public/images/small/gregtech/gt.metaitem.01/29077.png deleted file mode 100644 index 265e44cf5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29078.png b/front/public/images/small/gregtech/gt.metaitem.01/29078.png deleted file mode 100644 index 5b715985a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2908.png b/front/public/images/small/gregtech/gt.metaitem.01/2908.png deleted file mode 100644 index 4c2e9435ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2908.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29080.png b/front/public/images/small/gregtech/gt.metaitem.01/29080.png deleted file mode 100644 index b5536b2a29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29081.png b/front/public/images/small/gregtech/gt.metaitem.01/29081.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29083.png b/front/public/images/small/gregtech/gt.metaitem.01/29083.png deleted file mode 100644 index 578ff5affa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29084.png b/front/public/images/small/gregtech/gt.metaitem.01/29084.png deleted file mode 100644 index a27f5da4b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29085.png b/front/public/images/small/gregtech/gt.metaitem.01/29085.png deleted file mode 100644 index 6553e9e14a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29086.png b/front/public/images/small/gregtech/gt.metaitem.01/29086.png deleted file mode 100644 index d8d8036ee9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29089.png b/front/public/images/small/gregtech/gt.metaitem.01/29089.png deleted file mode 100644 index bd0e9beed8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2909.png b/front/public/images/small/gregtech/gt.metaitem.01/2909.png deleted file mode 100644 index 6b4f0b6ffe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2909.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29090.png b/front/public/images/small/gregtech/gt.metaitem.01/29090.png deleted file mode 100644 index 08b6a2fcd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29096.png b/front/public/images/small/gregtech/gt.metaitem.01/29096.png deleted file mode 100644 index ef2766c615..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29097.png b/front/public/images/small/gregtech/gt.metaitem.01/29097.png deleted file mode 100644 index 25594f1501..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29098.png b/front/public/images/small/gregtech/gt.metaitem.01/29098.png deleted file mode 100644 index 31dffdc985..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2910.png b/front/public/images/small/gregtech/gt.metaitem.01/2910.png deleted file mode 100644 index 7e43efe4c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2910.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29100.png b/front/public/images/small/gregtech/gt.metaitem.01/29100.png deleted file mode 100644 index e77f799799..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29101.png b/front/public/images/small/gregtech/gt.metaitem.01/29101.png deleted file mode 100644 index f9fd1cc87f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29103.png b/front/public/images/small/gregtech/gt.metaitem.01/29103.png deleted file mode 100644 index 29146e1741..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2911.png b/front/public/images/small/gregtech/gt.metaitem.01/2911.png deleted file mode 100644 index 495b92e202..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2911.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29111.png b/front/public/images/small/gregtech/gt.metaitem.01/29111.png deleted file mode 100644 index 54c6e02528..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29112.png b/front/public/images/small/gregtech/gt.metaitem.01/29112.png deleted file mode 100644 index 7995f67e39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2912.png b/front/public/images/small/gregtech/gt.metaitem.01/2912.png deleted file mode 100644 index d07e87e45f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29129.png b/front/public/images/small/gregtech/gt.metaitem.01/29129.png deleted file mode 100644 index 2e51cabfad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2913.png b/front/public/images/small/gregtech/gt.metaitem.01/2913.png deleted file mode 100644 index 76b9aa0289..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29131.png b/front/public/images/small/gregtech/gt.metaitem.01/29131.png deleted file mode 100644 index 0f13b9801d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29134.png b/front/public/images/small/gregtech/gt.metaitem.01/29134.png deleted file mode 100644 index af9d4edad7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29139.png b/front/public/images/small/gregtech/gt.metaitem.01/29139.png deleted file mode 100644 index c985e8ec54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2914.png b/front/public/images/small/gregtech/gt.metaitem.01/2914.png deleted file mode 100644 index 1e814dd13e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2914.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29141.png b/front/public/images/small/gregtech/gt.metaitem.01/29141.png deleted file mode 100644 index 912b1cff7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29143.png b/front/public/images/small/gregtech/gt.metaitem.01/29143.png deleted file mode 100644 index 589fb3a0fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2915.png b/front/public/images/small/gregtech/gt.metaitem.01/2915.png deleted file mode 100644 index 5d244d39ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2915.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2916.png b/front/public/images/small/gregtech/gt.metaitem.01/2916.png deleted file mode 100644 index 77196229b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2916.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2917.png b/front/public/images/small/gregtech/gt.metaitem.01/2917.png deleted file mode 100644 index 661818d4f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2917.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2918.png b/front/public/images/small/gregtech/gt.metaitem.01/2918.png deleted file mode 100644 index a1ffe8f84c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2918.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2919.png b/front/public/images/small/gregtech/gt.metaitem.01/2919.png deleted file mode 100644 index 7ed84f68a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2919.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2920.png b/front/public/images/small/gregtech/gt.metaitem.01/2920.png deleted file mode 100644 index dfc6c916b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2920.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29201.png b/front/public/images/small/gregtech/gt.metaitem.01/29201.png deleted file mode 100644 index df5b5ab50a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29202.png b/front/public/images/small/gregtech/gt.metaitem.01/29202.png deleted file mode 100644 index cc9dd776b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29203.png b/front/public/images/small/gregtech/gt.metaitem.01/29203.png deleted file mode 100644 index 4e3e147165..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29205.png b/front/public/images/small/gregtech/gt.metaitem.01/29205.png deleted file mode 100644 index 0c4286436f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29206.png b/front/public/images/small/gregtech/gt.metaitem.01/29206.png deleted file mode 100644 index 8c571363db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29207.png b/front/public/images/small/gregtech/gt.metaitem.01/29207.png deleted file mode 100644 index 189591bcf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2921.png b/front/public/images/small/gregtech/gt.metaitem.01/2921.png deleted file mode 100644 index 4dbbfc7958..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2921.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2922.png b/front/public/images/small/gregtech/gt.metaitem.01/2922.png deleted file mode 100644 index 0f6c064ecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2922.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2923.png b/front/public/images/small/gregtech/gt.metaitem.01/2923.png deleted file mode 100644 index 23c6f023c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2923.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2924.png b/front/public/images/small/gregtech/gt.metaitem.01/2924.png deleted file mode 100644 index 8960b7d639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2924.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2925.png b/front/public/images/small/gregtech/gt.metaitem.01/2925.png deleted file mode 100644 index bc8901ba48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2925.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2926.png b/front/public/images/small/gregtech/gt.metaitem.01/2926.png deleted file mode 100644 index 28d7e0dfa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2926.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2927.png b/front/public/images/small/gregtech/gt.metaitem.01/2927.png deleted file mode 100644 index be3906fb9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2927.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2928.png b/front/public/images/small/gregtech/gt.metaitem.01/2928.png deleted file mode 100644 index 53e230bc3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2928.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2929.png b/front/public/images/small/gregtech/gt.metaitem.01/2929.png deleted file mode 100644 index 3f76b6bc7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2929.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2930.png b/front/public/images/small/gregtech/gt.metaitem.01/2930.png deleted file mode 100644 index be72e5cfa3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2930.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29300.png b/front/public/images/small/gregtech/gt.metaitem.01/29300.png deleted file mode 100644 index f68c2f7f45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29301.png b/front/public/images/small/gregtech/gt.metaitem.01/29301.png deleted file mode 100644 index d1d976d6d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29302.png b/front/public/images/small/gregtech/gt.metaitem.01/29302.png deleted file mode 100644 index 3b72531e18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29303.png b/front/public/images/small/gregtech/gt.metaitem.01/29303.png deleted file mode 100644 index d3d9317cb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29304.png b/front/public/images/small/gregtech/gt.metaitem.01/29304.png deleted file mode 100644 index 56a5aebbc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29305.png b/front/public/images/small/gregtech/gt.metaitem.01/29305.png deleted file mode 100644 index f48594afa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29306.png b/front/public/images/small/gregtech/gt.metaitem.01/29306.png deleted file mode 100644 index ffcdbd4391..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29307.png b/front/public/images/small/gregtech/gt.metaitem.01/29307.png deleted file mode 100644 index 56a5aebbc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29308.png b/front/public/images/small/gregtech/gt.metaitem.01/29308.png deleted file mode 100644 index 211e66d7c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29309.png b/front/public/images/small/gregtech/gt.metaitem.01/29309.png deleted file mode 100644 index 289d10514e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2931.png b/front/public/images/small/gregtech/gt.metaitem.01/2931.png deleted file mode 100644 index d70372a555..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2931.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29310.png b/front/public/images/small/gregtech/gt.metaitem.01/29310.png deleted file mode 100644 index ebb5739536..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29311.png b/front/public/images/small/gregtech/gt.metaitem.01/29311.png deleted file mode 100644 index 209c59ee67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29312.png b/front/public/images/small/gregtech/gt.metaitem.01/29312.png deleted file mode 100644 index 31f51c9d6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29313.png b/front/public/images/small/gregtech/gt.metaitem.01/29313.png deleted file mode 100644 index f4ee58c916..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29314.png b/front/public/images/small/gregtech/gt.metaitem.01/29314.png deleted file mode 100644 index 1f29880a01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29315.png b/front/public/images/small/gregtech/gt.metaitem.01/29315.png deleted file mode 100644 index 328a5b427b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29316.png b/front/public/images/small/gregtech/gt.metaitem.01/29316.png deleted file mode 100644 index fa0fc4e86a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29317.png b/front/public/images/small/gregtech/gt.metaitem.01/29317.png deleted file mode 100644 index 10c7aa9d23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29318.png b/front/public/images/small/gregtech/gt.metaitem.01/29318.png deleted file mode 100644 index 59610613ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29319.png b/front/public/images/small/gregtech/gt.metaitem.01/29319.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2932.png b/front/public/images/small/gregtech/gt.metaitem.01/2932.png deleted file mode 100644 index 1bb55243c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2932.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29320.png b/front/public/images/small/gregtech/gt.metaitem.01/29320.png deleted file mode 100644 index aaf3b617c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29321.png b/front/public/images/small/gregtech/gt.metaitem.01/29321.png deleted file mode 100644 index 72ee78c9b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29323.png b/front/public/images/small/gregtech/gt.metaitem.01/29323.png deleted file mode 100644 index 27ecabd774..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29324.png b/front/public/images/small/gregtech/gt.metaitem.01/29324.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29325.png b/front/public/images/small/gregtech/gt.metaitem.01/29325.png deleted file mode 100644 index 4236dd6be3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29326.png b/front/public/images/small/gregtech/gt.metaitem.01/29326.png deleted file mode 100644 index 792c988393..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29327.png b/front/public/images/small/gregtech/gt.metaitem.01/29327.png deleted file mode 100644 index d3ac6c74cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29328.png b/front/public/images/small/gregtech/gt.metaitem.01/29328.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29329.png b/front/public/images/small/gregtech/gt.metaitem.01/29329.png deleted file mode 100644 index 7fe0c03051..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2933.png b/front/public/images/small/gregtech/gt.metaitem.01/2933.png deleted file mode 100644 index f4288654ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2933.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29330.png b/front/public/images/small/gregtech/gt.metaitem.01/29330.png deleted file mode 100644 index 4f298f7290..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29331.png b/front/public/images/small/gregtech/gt.metaitem.01/29331.png deleted file mode 100644 index 09848b0a03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29333.png b/front/public/images/small/gregtech/gt.metaitem.01/29333.png deleted file mode 100644 index 94b4d541c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29334.png b/front/public/images/small/gregtech/gt.metaitem.01/29334.png deleted file mode 100644 index d4a6204a09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29335.png b/front/public/images/small/gregtech/gt.metaitem.01/29335.png deleted file mode 100644 index 9d97d7c66f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29336.png b/front/public/images/small/gregtech/gt.metaitem.01/29336.png deleted file mode 100644 index 8aa8e5041c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29337.png b/front/public/images/small/gregtech/gt.metaitem.01/29337.png deleted file mode 100644 index 9efad0131d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29338.png b/front/public/images/small/gregtech/gt.metaitem.01/29338.png deleted file mode 100644 index 8e855e4ac8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29339.png b/front/public/images/small/gregtech/gt.metaitem.01/29339.png deleted file mode 100644 index 49b5969009..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2934.png b/front/public/images/small/gregtech/gt.metaitem.01/2934.png deleted file mode 100644 index 58c9a78167..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2934.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29340.png b/front/public/images/small/gregtech/gt.metaitem.01/29340.png deleted file mode 100644 index ae520d3b6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29341.png b/front/public/images/small/gregtech/gt.metaitem.01/29341.png deleted file mode 100644 index c8f38c5d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29342.png b/front/public/images/small/gregtech/gt.metaitem.01/29342.png deleted file mode 100644 index dd24869d14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29343.png b/front/public/images/small/gregtech/gt.metaitem.01/29343.png deleted file mode 100644 index eb0072cff6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29344.png b/front/public/images/small/gregtech/gt.metaitem.01/29344.png deleted file mode 100644 index 4a96767c3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29345.png b/front/public/images/small/gregtech/gt.metaitem.01/29345.png deleted file mode 100644 index 6800a84181..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29346.png b/front/public/images/small/gregtech/gt.metaitem.01/29346.png deleted file mode 100644 index ddaf7926c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29348.png b/front/public/images/small/gregtech/gt.metaitem.01/29348.png deleted file mode 100644 index c8ca13b147..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29349.png b/front/public/images/small/gregtech/gt.metaitem.01/29349.png deleted file mode 100644 index b30bd0aba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2935.png b/front/public/images/small/gregtech/gt.metaitem.01/2935.png deleted file mode 100644 index 1159d91b21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2935.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29350.png b/front/public/images/small/gregtech/gt.metaitem.01/29350.png deleted file mode 100644 index 76a38c0a1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29351.png b/front/public/images/small/gregtech/gt.metaitem.01/29351.png deleted file mode 100644 index 42c283d3b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29352.png b/front/public/images/small/gregtech/gt.metaitem.01/29352.png deleted file mode 100644 index a67b5606b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29353.png b/front/public/images/small/gregtech/gt.metaitem.01/29353.png deleted file mode 100644 index 24c175498d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29354.png b/front/public/images/small/gregtech/gt.metaitem.01/29354.png deleted file mode 100644 index e225796600..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29355.png b/front/public/images/small/gregtech/gt.metaitem.01/29355.png deleted file mode 100644 index 2e38cb6e42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29356.png b/front/public/images/small/gregtech/gt.metaitem.01/29356.png deleted file mode 100644 index f6bfda14d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29357.png b/front/public/images/small/gregtech/gt.metaitem.01/29357.png deleted file mode 100644 index 1d36c841f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29358.png b/front/public/images/small/gregtech/gt.metaitem.01/29358.png deleted file mode 100644 index ededd4ea60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29359.png b/front/public/images/small/gregtech/gt.metaitem.01/29359.png deleted file mode 100644 index 75f2e60866..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2936.png b/front/public/images/small/gregtech/gt.metaitem.01/2936.png deleted file mode 100644 index 606c7c6af7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2936.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29360.png b/front/public/images/small/gregtech/gt.metaitem.01/29360.png deleted file mode 100644 index d1d5148cc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29361.png b/front/public/images/small/gregtech/gt.metaitem.01/29361.png deleted file mode 100644 index 5313419904..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29362.png b/front/public/images/small/gregtech/gt.metaitem.01/29362.png deleted file mode 100644 index 4c5b3382e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29363.png b/front/public/images/small/gregtech/gt.metaitem.01/29363.png deleted file mode 100644 index 29146e1741..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29364.png b/front/public/images/small/gregtech/gt.metaitem.01/29364.png deleted file mode 100644 index d364b6646f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29365.png b/front/public/images/small/gregtech/gt.metaitem.01/29365.png deleted file mode 100644 index 1b548f344b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29366.png b/front/public/images/small/gregtech/gt.metaitem.01/29366.png deleted file mode 100644 index 810bb8d11e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29367.png b/front/public/images/small/gregtech/gt.metaitem.01/29367.png deleted file mode 100644 index 43f3f4e635..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29368.png b/front/public/images/small/gregtech/gt.metaitem.01/29368.png deleted file mode 100644 index 18f1252999..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29369.png b/front/public/images/small/gregtech/gt.metaitem.01/29369.png deleted file mode 100644 index 21fd4fa1fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2937.png b/front/public/images/small/gregtech/gt.metaitem.01/2937.png deleted file mode 100644 index edef4b9f99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2937.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29370.png b/front/public/images/small/gregtech/gt.metaitem.01/29370.png deleted file mode 100644 index ab0841a35f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29371.png b/front/public/images/small/gregtech/gt.metaitem.01/29371.png deleted file mode 100644 index 0b6808896e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29372.png b/front/public/images/small/gregtech/gt.metaitem.01/29372.png deleted file mode 100644 index 38e45830d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29373.png b/front/public/images/small/gregtech/gt.metaitem.01/29373.png deleted file mode 100644 index 8a69ad9bb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29374.png b/front/public/images/small/gregtech/gt.metaitem.01/29374.png deleted file mode 100644 index 0b21ddeb7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29378.png b/front/public/images/small/gregtech/gt.metaitem.01/29378.png deleted file mode 100644 index fb0670f250..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29379.png b/front/public/images/small/gregtech/gt.metaitem.01/29379.png deleted file mode 100644 index 9114bcb621..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2938.png b/front/public/images/small/gregtech/gt.metaitem.01/2938.png deleted file mode 100644 index 0f90492dd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2938.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29380.png b/front/public/images/small/gregtech/gt.metaitem.01/29380.png deleted file mode 100644 index ad7b281392..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29381.png b/front/public/images/small/gregtech/gt.metaitem.01/29381.png deleted file mode 100644 index 5340086930..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29382.png b/front/public/images/small/gregtech/gt.metaitem.01/29382.png deleted file mode 100644 index 76c857719e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29383.png b/front/public/images/small/gregtech/gt.metaitem.01/29383.png deleted file mode 100644 index d944129be3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29384.png b/front/public/images/small/gregtech/gt.metaitem.01/29384.png deleted file mode 100644 index fdb64dbf70..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29385.png b/front/public/images/small/gregtech/gt.metaitem.01/29385.png deleted file mode 100644 index d1faf8bc00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29386.png b/front/public/images/small/gregtech/gt.metaitem.01/29386.png deleted file mode 100644 index fb591fd1f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29387.png b/front/public/images/small/gregtech/gt.metaitem.01/29387.png deleted file mode 100644 index 3c1fb2c596..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29388.png b/front/public/images/small/gregtech/gt.metaitem.01/29388.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29389.png b/front/public/images/small/gregtech/gt.metaitem.01/29389.png deleted file mode 100644 index b85faaaaf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2939.png b/front/public/images/small/gregtech/gt.metaitem.01/2939.png deleted file mode 100644 index d37401aa46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2939.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29390.png b/front/public/images/small/gregtech/gt.metaitem.01/29390.png deleted file mode 100644 index 6955a65773..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29391.png b/front/public/images/small/gregtech/gt.metaitem.01/29391.png deleted file mode 100644 index 12567b41d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29392.png b/front/public/images/small/gregtech/gt.metaitem.01/29392.png deleted file mode 100644 index b8fb49af06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29393.png b/front/public/images/small/gregtech/gt.metaitem.01/29393.png deleted file mode 100644 index 9af48abaa4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29394.png b/front/public/images/small/gregtech/gt.metaitem.01/29394.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29395.png b/front/public/images/small/gregtech/gt.metaitem.01/29395.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29397.png b/front/public/images/small/gregtech/gt.metaitem.01/29397.png deleted file mode 100644 index a7b1a7b688..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29398.png b/front/public/images/small/gregtech/gt.metaitem.01/29398.png deleted file mode 100644 index 09fcad2e04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29399.png b/front/public/images/small/gregtech/gt.metaitem.01/29399.png deleted file mode 100644 index 8f2324e9ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2940.png b/front/public/images/small/gregtech/gt.metaitem.01/2940.png deleted file mode 100644 index 0e8d1ba430..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2940.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29400.png b/front/public/images/small/gregtech/gt.metaitem.01/29400.png deleted file mode 100644 index f0049b7517..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29401.png b/front/public/images/small/gregtech/gt.metaitem.01/29401.png deleted file mode 100644 index bbe627612d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29402.png b/front/public/images/small/gregtech/gt.metaitem.01/29402.png deleted file mode 100644 index eea15e20e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29403.png b/front/public/images/small/gregtech/gt.metaitem.01/29403.png deleted file mode 100644 index dc0173c611..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29404.png b/front/public/images/small/gregtech/gt.metaitem.01/29404.png deleted file mode 100644 index 158ab24a3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29405.png b/front/public/images/small/gregtech/gt.metaitem.01/29405.png deleted file mode 100644 index 17a49b6a26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29406.png b/front/public/images/small/gregtech/gt.metaitem.01/29406.png deleted file mode 100644 index bd6681f762..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29407.png b/front/public/images/small/gregtech/gt.metaitem.01/29407.png deleted file mode 100644 index 7c4b46acdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29408.png b/front/public/images/small/gregtech/gt.metaitem.01/29408.png deleted file mode 100644 index e8a9462e66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2941.png b/front/public/images/small/gregtech/gt.metaitem.01/2941.png deleted file mode 100644 index 9183e0b54a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2941.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2942.png b/front/public/images/small/gregtech/gt.metaitem.01/2942.png deleted file mode 100644 index 096a591aa4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2942.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2943.png b/front/public/images/small/gregtech/gt.metaitem.01/2943.png deleted file mode 100644 index 8626674a56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2943.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2944.png b/front/public/images/small/gregtech/gt.metaitem.01/2944.png deleted file mode 100644 index 50c51f0624..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2944.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2945.png b/front/public/images/small/gregtech/gt.metaitem.01/2945.png deleted file mode 100644 index 584e3febdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2945.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2946.png b/front/public/images/small/gregtech/gt.metaitem.01/2946.png deleted file mode 100644 index bc54382f52..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2946.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2947.png b/front/public/images/small/gregtech/gt.metaitem.01/2947.png deleted file mode 100644 index 8d68791faf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2947.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29470.png b/front/public/images/small/gregtech/gt.metaitem.01/29470.png deleted file mode 100644 index 58960feba5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29471.png b/front/public/images/small/gregtech/gt.metaitem.01/29471.png deleted file mode 100644 index 389c88a57f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29472.png b/front/public/images/small/gregtech/gt.metaitem.01/29472.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29473.png b/front/public/images/small/gregtech/gt.metaitem.01/29473.png deleted file mode 100644 index d4a6204a09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2948.png b/front/public/images/small/gregtech/gt.metaitem.01/2948.png deleted file mode 100644 index d399a1b9a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2948.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29485.png b/front/public/images/small/gregtech/gt.metaitem.01/29485.png deleted file mode 100644 index 03c46ad487..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29488.png b/front/public/images/small/gregtech/gt.metaitem.01/29488.png deleted file mode 100644 index 752973e548..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29489.png b/front/public/images/small/gregtech/gt.metaitem.01/29489.png deleted file mode 100644 index cfb5c9a882..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2949.png b/front/public/images/small/gregtech/gt.metaitem.01/2949.png deleted file mode 100644 index f4288654ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2949.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2951.png b/front/public/images/small/gregtech/gt.metaitem.01/2951.png deleted file mode 100644 index d760e38231..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2952.png b/front/public/images/small/gregtech/gt.metaitem.01/2952.png deleted file mode 100644 index 6ba8d34fd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29521.png b/front/public/images/small/gregtech/gt.metaitem.01/29521.png deleted file mode 100644 index 59610613ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29529.png b/front/public/images/small/gregtech/gt.metaitem.01/29529.png deleted file mode 100644 index 8b842a8cd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2956.png b/front/public/images/small/gregtech/gt.metaitem.01/2956.png deleted file mode 100644 index fc88d310ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29576.png b/front/public/images/small/gregtech/gt.metaitem.01/29576.png deleted file mode 100644 index 7a91261544..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29581.png b/front/public/images/small/gregtech/gt.metaitem.01/29581.png deleted file mode 100644 index 8d6787afef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29582.png b/front/public/images/small/gregtech/gt.metaitem.01/29582.png deleted file mode 100644 index 5c48466c58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29583.png b/front/public/images/small/gregtech/gt.metaitem.01/29583.png deleted file mode 100644 index 2dfffe2f13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29585.png b/front/public/images/small/gregtech/gt.metaitem.01/29585.png deleted file mode 100644 index 7dcad8150e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29586.png b/front/public/images/small/gregtech/gt.metaitem.01/29586.png deleted file mode 100644 index 0524be9c61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29588.png b/front/public/images/small/gregtech/gt.metaitem.01/29588.png deleted file mode 100644 index 0d852a4bc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29599.png b/front/public/images/small/gregtech/gt.metaitem.01/29599.png deleted file mode 100644 index 5d12c00c16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29610.png b/front/public/images/small/gregtech/gt.metaitem.01/29610.png deleted file mode 100644 index 74b5ecd819..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29611.png b/front/public/images/small/gregtech/gt.metaitem.01/29611.png deleted file mode 100644 index 40bfa75bb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29613.png b/front/public/images/small/gregtech/gt.metaitem.01/29613.png deleted file mode 100644 index 59146f1a6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29631.png b/front/public/images/small/gregtech/gt.metaitem.01/29631.png deleted file mode 100644 index 74254cf46e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29635.png b/front/public/images/small/gregtech/gt.metaitem.01/29635.png deleted file mode 100644 index 91d6356173..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29636.png b/front/public/images/small/gregtech/gt.metaitem.01/29636.png deleted file mode 100644 index ac22601136..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29649.png b/front/public/images/small/gregtech/gt.metaitem.01/29649.png deleted file mode 100644 index eb47444ff2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2966.png b/front/public/images/small/gregtech/gt.metaitem.01/2966.png deleted file mode 100644 index f1e8829823..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2969.png b/front/public/images/small/gregtech/gt.metaitem.01/2969.png deleted file mode 100644 index cceae7fae9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2969.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2970.png b/front/public/images/small/gregtech/gt.metaitem.01/2970.png deleted file mode 100644 index d80fc2c659..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2971.png b/front/public/images/small/gregtech/gt.metaitem.01/2971.png deleted file mode 100644 index b72dd30ec8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2971.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2974.png b/front/public/images/small/gregtech/gt.metaitem.01/2974.png deleted file mode 100644 index 21607e107a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2975.png b/front/public/images/small/gregtech/gt.metaitem.01/2975.png deleted file mode 100644 index 1d75b2ed27..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2976.png b/front/public/images/small/gregtech/gt.metaitem.01/2976.png deleted file mode 100644 index 625040dd76..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29765.png b/front/public/images/small/gregtech/gt.metaitem.01/29765.png deleted file mode 100644 index e3e6aba8c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2977.png b/front/public/images/small/gregtech/gt.metaitem.01/2977.png deleted file mode 100644 index 304014e3f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29770.png b/front/public/images/small/gregtech/gt.metaitem.01/29770.png deleted file mode 100644 index b7192e03e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29772.png b/front/public/images/small/gregtech/gt.metaitem.01/29772.png deleted file mode 100644 index d29bfd60be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2978.png b/front/public/images/small/gregtech/gt.metaitem.01/2978.png deleted file mode 100644 index 561ba2be14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2979.png b/front/public/images/small/gregtech/gt.metaitem.01/2979.png deleted file mode 100644 index eca1ab2a3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2980.png b/front/public/images/small/gregtech/gt.metaitem.01/2980.png deleted file mode 100644 index aaf18741a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29804.png b/front/public/images/small/gregtech/gt.metaitem.01/29804.png deleted file mode 100644 index 19020397f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29809.png b/front/public/images/small/gregtech/gt.metaitem.01/29809.png deleted file mode 100644 index d62fa34cd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2981.png b/front/public/images/small/gregtech/gt.metaitem.01/2981.png deleted file mode 100644 index 8834dec65e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2982.png b/front/public/images/small/gregtech/gt.metaitem.01/2982.png deleted file mode 100644 index 472b9e1f32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29829.png b/front/public/images/small/gregtech/gt.metaitem.01/29829.png deleted file mode 100644 index c0d8476649..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2984.png b/front/public/images/small/gregtech/gt.metaitem.01/2984.png deleted file mode 100644 index 318e8c1337..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2985.png b/front/public/images/small/gregtech/gt.metaitem.01/2985.png deleted file mode 100644 index 197e0d0126..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29856.png b/front/public/images/small/gregtech/gt.metaitem.01/29856.png deleted file mode 100644 index 8e5efd73d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2986.png b/front/public/images/small/gregtech/gt.metaitem.01/2986.png deleted file mode 100644 index d9b483c2a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29868.png b/front/public/images/small/gregtech/gt.metaitem.01/29868.png deleted file mode 100644 index 1ab664619e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2987.png b/front/public/images/small/gregtech/gt.metaitem.01/2987.png deleted file mode 100644 index b22ac40997..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29874.png b/front/public/images/small/gregtech/gt.metaitem.01/29874.png deleted file mode 100644 index 29146e1741..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2988.png b/front/public/images/small/gregtech/gt.metaitem.01/2988.png deleted file mode 100644 index 2a65d73f42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29880.png b/front/public/images/small/gregtech/gt.metaitem.01/29880.png deleted file mode 100644 index 0524be9c61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29884.png b/front/public/images/small/gregtech/gt.metaitem.01/29884.png deleted file mode 100644 index 4236dd6be3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29889.png b/front/public/images/small/gregtech/gt.metaitem.01/29889.png deleted file mode 100644 index e4b7aefcb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2989.png b/front/public/images/small/gregtech/gt.metaitem.01/2989.png deleted file mode 100644 index f17ebe616f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2990.png b/front/public/images/small/gregtech/gt.metaitem.01/2990.png deleted file mode 100644 index 44de710f99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2991.png b/front/public/images/small/gregtech/gt.metaitem.01/2991.png deleted file mode 100644 index 9f4cbe566e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29912.png b/front/public/images/small/gregtech/gt.metaitem.01/29912.png deleted file mode 100644 index df81286198..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29913.png b/front/public/images/small/gregtech/gt.metaitem.01/29913.png deleted file mode 100644 index c8ca13b147..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/2992.png b/front/public/images/small/gregtech/gt.metaitem.01/2992.png deleted file mode 100644 index eb91b4437a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/2992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29951.png b/front/public/images/small/gregtech/gt.metaitem.01/29951.png deleted file mode 100644 index 0dbfee6d8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29952.png b/front/public/images/small/gregtech/gt.metaitem.01/29952.png deleted file mode 100644 index 6918a032f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29956.png b/front/public/images/small/gregtech/gt.metaitem.01/29956.png deleted file mode 100644 index 4d7609da81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29966.png b/front/public/images/small/gregtech/gt.metaitem.01/29966.png deleted file mode 100644 index 3e928b20c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29970.png b/front/public/images/small/gregtech/gt.metaitem.01/29970.png deleted file mode 100644 index 7ed078bd7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29974.png b/front/public/images/small/gregtech/gt.metaitem.01/29974.png deleted file mode 100644 index 09c7ae7975..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29975.png b/front/public/images/small/gregtech/gt.metaitem.01/29975.png deleted file mode 100644 index 6895b3e547..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29976.png b/front/public/images/small/gregtech/gt.metaitem.01/29976.png deleted file mode 100644 index 75f723ce4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29977.png b/front/public/images/small/gregtech/gt.metaitem.01/29977.png deleted file mode 100644 index bb3d8df3ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29978.png b/front/public/images/small/gregtech/gt.metaitem.01/29978.png deleted file mode 100644 index 40233597cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29979.png b/front/public/images/small/gregtech/gt.metaitem.01/29979.png deleted file mode 100644 index 19d643c264..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29980.png b/front/public/images/small/gregtech/gt.metaitem.01/29980.png deleted file mode 100644 index 17e503c986..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29981.png b/front/public/images/small/gregtech/gt.metaitem.01/29981.png deleted file mode 100644 index e4d0f2022a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29982.png b/front/public/images/small/gregtech/gt.metaitem.01/29982.png deleted file mode 100644 index 493e27be87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29984.png b/front/public/images/small/gregtech/gt.metaitem.01/29984.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29985.png b/front/public/images/small/gregtech/gt.metaitem.01/29985.png deleted file mode 100644 index 3c488770ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29986.png b/front/public/images/small/gregtech/gt.metaitem.01/29986.png deleted file mode 100644 index 1332ce560e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29987.png b/front/public/images/small/gregtech/gt.metaitem.01/29987.png deleted file mode 100644 index d19c66d9c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29988.png b/front/public/images/small/gregtech/gt.metaitem.01/29988.png deleted file mode 100644 index 8e6ef48c53..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29989.png b/front/public/images/small/gregtech/gt.metaitem.01/29989.png deleted file mode 100644 index 359c33a5af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29990.png b/front/public/images/small/gregtech/gt.metaitem.01/29990.png deleted file mode 100644 index b155d21b5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29991.png b/front/public/images/small/gregtech/gt.metaitem.01/29991.png deleted file mode 100644 index 265d77426b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/29992.png b/front/public/images/small/gregtech/gt.metaitem.01/29992.png deleted file mode 100644 index f8e45f111e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/29992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30001.png b/front/public/images/small/gregtech/gt.metaitem.01/30001.png deleted file mode 100644 index b3baa551fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30002.png b/front/public/images/small/gregtech/gt.metaitem.01/30002.png deleted file mode 100644 index 8cd93b4c21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30003.png b/front/public/images/small/gregtech/gt.metaitem.01/30003.png deleted file mode 100644 index c0bf8a7839..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30004.png b/front/public/images/small/gregtech/gt.metaitem.01/30004.png deleted file mode 100644 index 942158b198..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30005.png b/front/public/images/small/gregtech/gt.metaitem.01/30005.png deleted file mode 100644 index 4ad428f482..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30010.png b/front/public/images/small/gregtech/gt.metaitem.01/30010.png deleted file mode 100644 index f29ed0b913..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30012.png b/front/public/images/small/gregtech/gt.metaitem.01/30012.png deleted file mode 100644 index f17c70d376..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30012.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30013.png b/front/public/images/small/gregtech/gt.metaitem.01/30013.png deleted file mode 100644 index e736d5d31a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30013.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30014.png b/front/public/images/small/gregtech/gt.metaitem.01/30014.png deleted file mode 100644 index 1c2ea58f94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30014.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30017.png b/front/public/images/small/gregtech/gt.metaitem.01/30017.png deleted file mode 100644 index 37adc9a61c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30017.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30023.png b/front/public/images/small/gregtech/gt.metaitem.01/30023.png deleted file mode 100644 index 9bb6de7eab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30024.png b/front/public/images/small/gregtech/gt.metaitem.01/30024.png deleted file mode 100644 index b19aa20dd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30024.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30039.png b/front/public/images/small/gregtech/gt.metaitem.01/30039.png deleted file mode 100644 index f2b2e2438f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30087.png b/front/public/images/small/gregtech/gt.metaitem.01/30087.png deleted file mode 100644 index edb2748dca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30087.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30093.png b/front/public/images/small/gregtech/gt.metaitem.01/30093.png deleted file mode 100644 index c281a5830e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30093.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30106.png b/front/public/images/small/gregtech/gt.metaitem.01/30106.png deleted file mode 100644 index aa13c6fa54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30109.png b/front/public/images/small/gregtech/gt.metaitem.01/30109.png deleted file mode 100644 index b63f6109cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30109.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30113.png b/front/public/images/small/gregtech/gt.metaitem.01/30113.png deleted file mode 100644 index b63f6109cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30113.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30121.png b/front/public/images/small/gregtech/gt.metaitem.01/30121.png deleted file mode 100644 index b63f6109cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30121.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30126.png b/front/public/images/small/gregtech/gt.metaitem.01/30126.png deleted file mode 100644 index b63f6109cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30126.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30127.png b/front/public/images/small/gregtech/gt.metaitem.01/30127.png deleted file mode 100644 index a9c8a50a13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30127.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30130.png b/front/public/images/small/gregtech/gt.metaitem.01/30130.png deleted file mode 100644 index 327912fc6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30140.png b/front/public/images/small/gregtech/gt.metaitem.01/30140.png deleted file mode 100644 index af1102d96a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30140.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30142.png b/front/public/images/small/gregtech/gt.metaitem.01/30142.png deleted file mode 100644 index 492d385caa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30142.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30144.png b/front/public/images/small/gregtech/gt.metaitem.01/30144.png deleted file mode 100644 index 536303a2b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30376.png b/front/public/images/small/gregtech/gt.metaitem.01/30376.png deleted file mode 100644 index 50fae9a5cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30376.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30377.png b/front/public/images/small/gregtech/gt.metaitem.01/30377.png deleted file mode 100644 index c3975fedfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30377.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30409.png b/front/public/images/small/gregtech/gt.metaitem.01/30409.png deleted file mode 100644 index d73d351aef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30409.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30410.png b/front/public/images/small/gregtech/gt.metaitem.01/30410.png deleted file mode 100644 index 529f07e885..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30410.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30411.png b/front/public/images/small/gregtech/gt.metaitem.01/30411.png deleted file mode 100644 index c85f4e83bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30411.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30415.png b/front/public/images/small/gregtech/gt.metaitem.01/30415.png deleted file mode 100644 index b7b0c8f538..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30415.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30416.png b/front/public/images/small/gregtech/gt.metaitem.01/30416.png deleted file mode 100644 index 887187620d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30416.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30417.png b/front/public/images/small/gregtech/gt.metaitem.01/30417.png deleted file mode 100644 index ff4063e15f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30417.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30460.png b/front/public/images/small/gregtech/gt.metaitem.01/30460.png deleted file mode 100644 index 739e5224c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30460.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30493.png b/front/public/images/small/gregtech/gt.metaitem.01/30493.png deleted file mode 100644 index 114c22c7fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30493.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30494.png b/front/public/images/small/gregtech/gt.metaitem.01/30494.png deleted file mode 100644 index 4a06a3316b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30494.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30495.png b/front/public/images/small/gregtech/gt.metaitem.01/30495.png deleted file mode 100644 index 0d419cfcc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30495.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30496.png b/front/public/images/small/gregtech/gt.metaitem.01/30496.png deleted file mode 100644 index e38cf9c4ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30496.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30497.png b/front/public/images/small/gregtech/gt.metaitem.01/30497.png deleted file mode 100644 index 0b4d0e7764..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30497.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30515.png b/front/public/images/small/gregtech/gt.metaitem.01/30515.png deleted file mode 100644 index e1d5207f8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30518.png b/front/public/images/small/gregtech/gt.metaitem.01/30518.png deleted file mode 100644 index 97fd09591d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30519.png b/front/public/images/small/gregtech/gt.metaitem.01/30519.png deleted file mode 100644 index 97fd09591d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30534.png b/front/public/images/small/gregtech/gt.metaitem.01/30534.png deleted file mode 100644 index c1c9a9e7df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30554.png b/front/public/images/small/gregtech/gt.metaitem.01/30554.png deleted file mode 100644 index 815473389e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30554.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30555.png b/front/public/images/small/gregtech/gt.metaitem.01/30555.png deleted file mode 100644 index 006650a430..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30555.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30556.png b/front/public/images/small/gregtech/gt.metaitem.01/30556.png deleted file mode 100644 index 04fd716934..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30556.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30557.png b/front/public/images/small/gregtech/gt.metaitem.01/30557.png deleted file mode 100644 index ceb8cb7b8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30557.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30558.png b/front/public/images/small/gregtech/gt.metaitem.01/30558.png deleted file mode 100644 index f21b432172..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30558.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30559.png b/front/public/images/small/gregtech/gt.metaitem.01/30559.png deleted file mode 100644 index 38d998a232..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30559.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30560.png b/front/public/images/small/gregtech/gt.metaitem.01/30560.png deleted file mode 100644 index e862f7ac8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30560.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30561.png b/front/public/images/small/gregtech/gt.metaitem.01/30561.png deleted file mode 100644 index 3429d45bf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30561.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30567.png b/front/public/images/small/gregtech/gt.metaitem.01/30567.png deleted file mode 100644 index 9490030840..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30567.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30584.png b/front/public/images/small/gregtech/gt.metaitem.01/30584.png deleted file mode 100644 index 9107ffbcb9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30584.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30587.png b/front/public/images/small/gregtech/gt.metaitem.01/30587.png deleted file mode 100644 index a86d76b68b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30587.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30589.png b/front/public/images/small/gregtech/gt.metaitem.01/30589.png deleted file mode 100644 index f1f3de7e47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30589.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30592.png b/front/public/images/small/gregtech/gt.metaitem.01/30592.png deleted file mode 100644 index 26cb3ee165..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30592.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30593.png b/front/public/images/small/gregtech/gt.metaitem.01/30593.png deleted file mode 100644 index e409394275..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30593.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30595.png b/front/public/images/small/gregtech/gt.metaitem.01/30595.png deleted file mode 100644 index 0849f2b203..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30595.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30596.png b/front/public/images/small/gregtech/gt.metaitem.01/30596.png deleted file mode 100644 index f667f7f395..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30596.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30597.png b/front/public/images/small/gregtech/gt.metaitem.01/30597.png deleted file mode 100644 index 39748c3c50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30597.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30598.png b/front/public/images/small/gregtech/gt.metaitem.01/30598.png deleted file mode 100644 index 3f00ddd300..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30598.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30600.png b/front/public/images/small/gregtech/gt.metaitem.01/30600.png deleted file mode 100644 index 86572bd401..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30600.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30601.png b/front/public/images/small/gregtech/gt.metaitem.01/30601.png deleted file mode 100644 index 76712314b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30601.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30603.png b/front/public/images/small/gregtech/gt.metaitem.01/30603.png deleted file mode 100644 index 4b04f791ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30603.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30604.png b/front/public/images/small/gregtech/gt.metaitem.01/30604.png deleted file mode 100644 index 1f148c2eec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30604.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30605.png b/front/public/images/small/gregtech/gt.metaitem.01/30605.png deleted file mode 100644 index 0b7af65f7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30605.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30606.png b/front/public/images/small/gregtech/gt.metaitem.01/30606.png deleted file mode 100644 index 2c545b2f14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30606.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30608.png b/front/public/images/small/gregtech/gt.metaitem.01/30608.png deleted file mode 100644 index 852f28ec3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30608.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30609.png b/front/public/images/small/gregtech/gt.metaitem.01/30609.png deleted file mode 100644 index f8e258bd26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30609.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30627.png b/front/public/images/small/gregtech/gt.metaitem.01/30627.png deleted file mode 100644 index 2c41cba80d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30627.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30628.png b/front/public/images/small/gregtech/gt.metaitem.01/30628.png deleted file mode 100644 index 5be5b812f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30628.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30629.png b/front/public/images/small/gregtech/gt.metaitem.01/30629.png deleted file mode 100644 index c0a8437fb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30629.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30632.png b/front/public/images/small/gregtech/gt.metaitem.01/30632.png deleted file mode 100644 index 714452ec86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30632.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30637.png b/front/public/images/small/gregtech/gt.metaitem.01/30637.png deleted file mode 100644 index 35adc04b45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30637.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30638.png b/front/public/images/small/gregtech/gt.metaitem.01/30638.png deleted file mode 100644 index c8497812d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30638.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30639.png b/front/public/images/small/gregtech/gt.metaitem.01/30639.png deleted file mode 100644 index 8dde4ecb5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30639.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30640.png b/front/public/images/small/gregtech/gt.metaitem.01/30640.png deleted file mode 100644 index cc63767d9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30640.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30641.png b/front/public/images/small/gregtech/gt.metaitem.01/30641.png deleted file mode 100644 index 61816dbc3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30641.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30642.png b/front/public/images/small/gregtech/gt.metaitem.01/30642.png deleted file mode 100644 index 9cacb09760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30643.png b/front/public/images/small/gregtech/gt.metaitem.01/30643.png deleted file mode 100644 index c57912c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30644.png b/front/public/images/small/gregtech/gt.metaitem.01/30644.png deleted file mode 100644 index ae6278732d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30645.png b/front/public/images/small/gregtech/gt.metaitem.01/30645.png deleted file mode 100644 index 6bc371cbaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30646.png b/front/public/images/small/gregtech/gt.metaitem.01/30646.png deleted file mode 100644 index 5d34f8959d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30647.png b/front/public/images/small/gregtech/gt.metaitem.01/30647.png deleted file mode 100644 index 2a0a66c9fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30647.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30648.png b/front/public/images/small/gregtech/gt.metaitem.01/30648.png deleted file mode 100644 index 2a0a66c9fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30648.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30650.png b/front/public/images/small/gregtech/gt.metaitem.01/30650.png deleted file mode 100644 index 2fa5b78a21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30650.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30651.png b/front/public/images/small/gregtech/gt.metaitem.01/30651.png deleted file mode 100644 index 2e3ab26055..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30651.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30652.png b/front/public/images/small/gregtech/gt.metaitem.01/30652.png deleted file mode 100644 index 9f83f34af9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30652.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30653.png b/front/public/images/small/gregtech/gt.metaitem.01/30653.png deleted file mode 100644 index 69f155a90b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30653.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30654.png b/front/public/images/small/gregtech/gt.metaitem.01/30654.png deleted file mode 100644 index dead2c2a5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30654.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30655.png b/front/public/images/small/gregtech/gt.metaitem.01/30655.png deleted file mode 100644 index cd2ef31de9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30655.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30656.png b/front/public/images/small/gregtech/gt.metaitem.01/30656.png deleted file mode 100644 index 5f5287cdfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30656.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30657.png b/front/public/images/small/gregtech/gt.metaitem.01/30657.png deleted file mode 100644 index 7fe5acf93e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30657.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30658.png b/front/public/images/small/gregtech/gt.metaitem.01/30658.png deleted file mode 100644 index c631e71a5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30658.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30659.png b/front/public/images/small/gregtech/gt.metaitem.01/30659.png deleted file mode 100644 index 7daf3db067..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30659.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30660.png b/front/public/images/small/gregtech/gt.metaitem.01/30660.png deleted file mode 100644 index ff655097af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30660.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30661.png b/front/public/images/small/gregtech/gt.metaitem.01/30661.png deleted file mode 100644 index 81ee02789f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30661.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30662.png b/front/public/images/small/gregtech/gt.metaitem.01/30662.png deleted file mode 100644 index faee7905c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30662.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30663.png b/front/public/images/small/gregtech/gt.metaitem.01/30663.png deleted file mode 100644 index d00139e535..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30663.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30664.png b/front/public/images/small/gregtech/gt.metaitem.01/30664.png deleted file mode 100644 index 1c382a8d6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30664.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30665.png b/front/public/images/small/gregtech/gt.metaitem.01/30665.png deleted file mode 100644 index 0bbf523d54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30665.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30666.png b/front/public/images/small/gregtech/gt.metaitem.01/30666.png deleted file mode 100644 index 8b53aa7650..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30666.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30667.png b/front/public/images/small/gregtech/gt.metaitem.01/30667.png deleted file mode 100644 index eb73703c46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30667.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30668.png b/front/public/images/small/gregtech/gt.metaitem.01/30668.png deleted file mode 100644 index 7befc1a9f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30668.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30669.png b/front/public/images/small/gregtech/gt.metaitem.01/30669.png deleted file mode 100644 index 7c9361be24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30669.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30670.png b/front/public/images/small/gregtech/gt.metaitem.01/30670.png deleted file mode 100644 index 3295d4efb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30670.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30671.png b/front/public/images/small/gregtech/gt.metaitem.01/30671.png deleted file mode 100644 index 1e66168677..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30671.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30672.png b/front/public/images/small/gregtech/gt.metaitem.01/30672.png deleted file mode 100644 index 05db7859bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30672.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30673.png b/front/public/images/small/gregtech/gt.metaitem.01/30673.png deleted file mode 100644 index a8cd91731a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30673.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30674.png b/front/public/images/small/gregtech/gt.metaitem.01/30674.png deleted file mode 100644 index fbc5a41db1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30674.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30675.png b/front/public/images/small/gregtech/gt.metaitem.01/30675.png deleted file mode 100644 index d31c464cee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30675.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30677.png b/front/public/images/small/gregtech/gt.metaitem.01/30677.png deleted file mode 100644 index deed8835ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30678.png b/front/public/images/small/gregtech/gt.metaitem.01/30678.png deleted file mode 100644 index 12d1b17554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30679.png b/front/public/images/small/gregtech/gt.metaitem.01/30679.png deleted file mode 100644 index d1f03ddc3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30679.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30680.png b/front/public/images/small/gregtech/gt.metaitem.01/30680.png deleted file mode 100644 index 8188c01ea8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30680.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30681.png b/front/public/images/small/gregtech/gt.metaitem.01/30681.png deleted file mode 100644 index d176b6d735..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30681.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30682.png b/front/public/images/small/gregtech/gt.metaitem.01/30682.png deleted file mode 100644 index 36d2fae0c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30682.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30683.png b/front/public/images/small/gregtech/gt.metaitem.01/30683.png deleted file mode 100644 index 863f8915bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30683.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30684.png b/front/public/images/small/gregtech/gt.metaitem.01/30684.png deleted file mode 100644 index ddb28c494a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30684.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30686.png b/front/public/images/small/gregtech/gt.metaitem.01/30686.png deleted file mode 100644 index 275556b16b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30686.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30687.png b/front/public/images/small/gregtech/gt.metaitem.01/30687.png deleted file mode 100644 index c40c8582e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30687.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30688.png b/front/public/images/small/gregtech/gt.metaitem.01/30688.png deleted file mode 100644 index 428aad7799..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30688.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30689.png b/front/public/images/small/gregtech/gt.metaitem.01/30689.png deleted file mode 100644 index 0ab136fb5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30689.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30691.png b/front/public/images/small/gregtech/gt.metaitem.01/30691.png deleted file mode 100644 index ebac4038a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30691.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30692.png b/front/public/images/small/gregtech/gt.metaitem.01/30692.png deleted file mode 100644 index cc3594fda3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30692.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30693.png b/front/public/images/small/gregtech/gt.metaitem.01/30693.png deleted file mode 100644 index 4b36937402..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30693.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30694.png b/front/public/images/small/gregtech/gt.metaitem.01/30694.png deleted file mode 100644 index 8ea3e70a18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30694.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30702.png b/front/public/images/small/gregtech/gt.metaitem.01/30702.png deleted file mode 100644 index 0df4a22889..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30702.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30704.png b/front/public/images/small/gregtech/gt.metaitem.01/30704.png deleted file mode 100644 index 7dd1dd56be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30704.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30705.png b/front/public/images/small/gregtech/gt.metaitem.01/30705.png deleted file mode 100644 index 56a3a265bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30705.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30706.png b/front/public/images/small/gregtech/gt.metaitem.01/30706.png deleted file mode 100644 index a344f55fb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30706.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30707.png b/front/public/images/small/gregtech/gt.metaitem.01/30707.png deleted file mode 100644 index 3716a5acaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30707.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30708.png b/front/public/images/small/gregtech/gt.metaitem.01/30708.png deleted file mode 100644 index ef5d83ede8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30708.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30709.png b/front/public/images/small/gregtech/gt.metaitem.01/30709.png deleted file mode 100644 index b6f51e56ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30709.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30711.png b/front/public/images/small/gregtech/gt.metaitem.01/30711.png deleted file mode 100644 index b256cc70e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30711.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30712.png b/front/public/images/small/gregtech/gt.metaitem.01/30712.png deleted file mode 100644 index 8a27d8b2e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30712.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30713.png b/front/public/images/small/gregtech/gt.metaitem.01/30713.png deleted file mode 100644 index 22ec92370b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30713.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30714.png b/front/public/images/small/gregtech/gt.metaitem.01/30714.png deleted file mode 100644 index 913e4df4a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30714.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30715.png b/front/public/images/small/gregtech/gt.metaitem.01/30715.png deleted file mode 100644 index 36ec4acc63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30715.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30716.png b/front/public/images/small/gregtech/gt.metaitem.01/30716.png deleted file mode 100644 index ba05522b69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30716.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30717.png b/front/public/images/small/gregtech/gt.metaitem.01/30717.png deleted file mode 100644 index 2cb3a451c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30717.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30718.png b/front/public/images/small/gregtech/gt.metaitem.01/30718.png deleted file mode 100644 index d09b1ee593..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30718.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30720.png b/front/public/images/small/gregtech/gt.metaitem.01/30720.png deleted file mode 100644 index 739e5224c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30720.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30721.png b/front/public/images/small/gregtech/gt.metaitem.01/30721.png deleted file mode 100644 index 87bda202fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30721.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30722.png b/front/public/images/small/gregtech/gt.metaitem.01/30722.png deleted file mode 100644 index 7cd1249c34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30722.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30723.png b/front/public/images/small/gregtech/gt.metaitem.01/30723.png deleted file mode 100644 index 7cd1249c34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30723.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30724.png b/front/public/images/small/gregtech/gt.metaitem.01/30724.png deleted file mode 100644 index 5a02d9b744..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30724.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30725.png b/front/public/images/small/gregtech/gt.metaitem.01/30725.png deleted file mode 100644 index 921d0a3c86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30725.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30726.png b/front/public/images/small/gregtech/gt.metaitem.01/30726.png deleted file mode 100644 index e8a03cac58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30726.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30727.png b/front/public/images/small/gregtech/gt.metaitem.01/30727.png deleted file mode 100644 index 6fd8c9a3fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30727.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30728.png b/front/public/images/small/gregtech/gt.metaitem.01/30728.png deleted file mode 100644 index 29ba8f1543..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30728.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30729.png b/front/public/images/small/gregtech/gt.metaitem.01/30729.png deleted file mode 100644 index efdd33df80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30729.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30730.png b/front/public/images/small/gregtech/gt.metaitem.01/30730.png deleted file mode 100644 index 4e06a129f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30730.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30731.png b/front/public/images/small/gregtech/gt.metaitem.01/30731.png deleted file mode 100644 index 4e06a129f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30731.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30732.png b/front/public/images/small/gregtech/gt.metaitem.01/30732.png deleted file mode 100644 index 4e06a129f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30732.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30733.png b/front/public/images/small/gregtech/gt.metaitem.01/30733.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30733.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30734.png b/front/public/images/small/gregtech/gt.metaitem.01/30734.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30734.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30735.png b/front/public/images/small/gregtech/gt.metaitem.01/30735.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30736.png b/front/public/images/small/gregtech/gt.metaitem.01/30736.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30736.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30737.png b/front/public/images/small/gregtech/gt.metaitem.01/30737.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30737.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30738.png b/front/public/images/small/gregtech/gt.metaitem.01/30738.png deleted file mode 100644 index 5a02d9b744..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30738.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30739.png b/front/public/images/small/gregtech/gt.metaitem.01/30739.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30740.png b/front/public/images/small/gregtech/gt.metaitem.01/30740.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30741.png b/front/public/images/small/gregtech/gt.metaitem.01/30741.png deleted file mode 100644 index 5a02d9b744..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30742.png b/front/public/images/small/gregtech/gt.metaitem.01/30742.png deleted file mode 100644 index c44f3cc931..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30742.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30743.png b/front/public/images/small/gregtech/gt.metaitem.01/30743.png deleted file mode 100644 index 3844e6aab6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30743.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30745.png b/front/public/images/small/gregtech/gt.metaitem.01/30745.png deleted file mode 100644 index 327912fc6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30746.png b/front/public/images/small/gregtech/gt.metaitem.01/30746.png deleted file mode 100644 index 327912fc6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30746.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30747.png b/front/public/images/small/gregtech/gt.metaitem.01/30747.png deleted file mode 100644 index 327912fc6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30747.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30748.png b/front/public/images/small/gregtech/gt.metaitem.01/30748.png deleted file mode 100644 index 327912fc6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30748.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30750.png b/front/public/images/small/gregtech/gt.metaitem.01/30750.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30750.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30752.png b/front/public/images/small/gregtech/gt.metaitem.01/30752.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30752.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30760.png b/front/public/images/small/gregtech/gt.metaitem.01/30760.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30762.png b/front/public/images/small/gregtech/gt.metaitem.01/30762.png deleted file mode 100644 index ed65a61f29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30762.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30763.png b/front/public/images/small/gregtech/gt.metaitem.01/30763.png deleted file mode 100644 index a49708caec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30763.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30764.png b/front/public/images/small/gregtech/gt.metaitem.01/30764.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30764.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30766.png b/front/public/images/small/gregtech/gt.metaitem.01/30766.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30766.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30767.png b/front/public/images/small/gregtech/gt.metaitem.01/30767.png deleted file mode 100644 index 1a63cc9544..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30767.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30768.png b/front/public/images/small/gregtech/gt.metaitem.01/30768.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30768.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30774.png b/front/public/images/small/gregtech/gt.metaitem.01/30774.png deleted file mode 100644 index 64f72fed12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30774.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30776.png b/front/public/images/small/gregtech/gt.metaitem.01/30776.png deleted file mode 100644 index a0c713d71b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30776.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30777.png b/front/public/images/small/gregtech/gt.metaitem.01/30777.png deleted file mode 100644 index 293366d0b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30777.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30778.png b/front/public/images/small/gregtech/gt.metaitem.01/30778.png deleted file mode 100644 index 464fb03c7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30778.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30780.png b/front/public/images/small/gregtech/gt.metaitem.01/30780.png deleted file mode 100644 index 4e8ee1d4d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30780.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30781.png b/front/public/images/small/gregtech/gt.metaitem.01/30781.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30781.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30783.png b/front/public/images/small/gregtech/gt.metaitem.01/30783.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30783.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30784.png b/front/public/images/small/gregtech/gt.metaitem.01/30784.png deleted file mode 100644 index 46c98e539f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30784.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30786.png b/front/public/images/small/gregtech/gt.metaitem.01/30786.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30786.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30787.png b/front/public/images/small/gregtech/gt.metaitem.01/30787.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30787.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30788.png b/front/public/images/small/gregtech/gt.metaitem.01/30788.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30788.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30789.png b/front/public/images/small/gregtech/gt.metaitem.01/30789.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30789.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30791.png b/front/public/images/small/gregtech/gt.metaitem.01/30791.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30791.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30792.png b/front/public/images/small/gregtech/gt.metaitem.01/30792.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30792.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30793.png b/front/public/images/small/gregtech/gt.metaitem.01/30793.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30793.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30794.png b/front/public/images/small/gregtech/gt.metaitem.01/30794.png deleted file mode 100644 index bd27a1f54f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30794.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30795.png b/front/public/images/small/gregtech/gt.metaitem.01/30795.png deleted file mode 100644 index 990894307d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30795.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30798.png b/front/public/images/small/gregtech/gt.metaitem.01/30798.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30798.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30799.png b/front/public/images/small/gregtech/gt.metaitem.01/30799.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30799.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30811.png b/front/public/images/small/gregtech/gt.metaitem.01/30811.png deleted file mode 100644 index 6e1b0657f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30811.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30833.png b/front/public/images/small/gregtech/gt.metaitem.01/30833.png deleted file mode 100644 index c1c9a9e7df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30833.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30853.png b/front/public/images/small/gregtech/gt.metaitem.01/30853.png deleted file mode 100644 index b150edd62c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30853.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30865.png b/front/public/images/small/gregtech/gt.metaitem.01/30865.png deleted file mode 100644 index 371bd0ec64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30885.png b/front/public/images/small/gregtech/gt.metaitem.01/30885.png deleted file mode 100644 index 53ef46dc5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30885.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30967.png b/front/public/images/small/gregtech/gt.metaitem.01/30967.png deleted file mode 100644 index 0e4e92cbc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30967.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30968.png b/front/public/images/small/gregtech/gt.metaitem.01/30968.png deleted file mode 100644 index b733a662b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30968.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30972.png b/front/public/images/small/gregtech/gt.metaitem.01/30972.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30972.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30973.png b/front/public/images/small/gregtech/gt.metaitem.01/30973.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30973.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30979.png b/front/public/images/small/gregtech/gt.metaitem.01/30979.png deleted file mode 100644 index ee3a13c288..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30983.png b/front/public/images/small/gregtech/gt.metaitem.01/30983.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30983.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30993.png b/front/public/images/small/gregtech/gt.metaitem.01/30993.png deleted file mode 100644 index c9a3a5eef2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30993.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30994.png b/front/public/images/small/gregtech/gt.metaitem.01/30994.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30994.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30995.png b/front/public/images/small/gregtech/gt.metaitem.01/30995.png deleted file mode 100644 index 906f4344fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30995.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30996.png b/front/public/images/small/gregtech/gt.metaitem.01/30996.png deleted file mode 100644 index 96bb3ca78b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30996.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30997.png b/front/public/images/small/gregtech/gt.metaitem.01/30997.png deleted file mode 100644 index a426893d08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30997.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30998.png b/front/public/images/small/gregtech/gt.metaitem.01/30998.png deleted file mode 100644 index a426893d08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30998.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/30999.png b/front/public/images/small/gregtech/gt.metaitem.01/30999.png deleted file mode 100644 index c06f6943a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/30999.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32000.png b/front/public/images/small/gregtech/gt.metaitem.01/32000.png deleted file mode 100644 index 2bfa95ec1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32000.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32001.png b/front/public/images/small/gregtech/gt.metaitem.01/32001.png deleted file mode 100644 index eaa7ac4196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32002.png b/front/public/images/small/gregtech/gt.metaitem.01/32002.png deleted file mode 100644 index a56c2aca65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32003.png b/front/public/images/small/gregtech/gt.metaitem.01/32003.png deleted file mode 100644 index 6222dc780f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32004.png b/front/public/images/small/gregtech/gt.metaitem.01/32004.png deleted file mode 100644 index a963e92ca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32005.png b/front/public/images/small/gregtech/gt.metaitem.01/32005.png deleted file mode 100644 index ff30bbaac2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32006.png b/front/public/images/small/gregtech/gt.metaitem.01/32006.png deleted file mode 100644 index 75990d885e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32007.png b/front/public/images/small/gregtech/gt.metaitem.01/32007.png deleted file mode 100644 index 8fb1ea5ce5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32008.png b/front/public/images/small/gregtech/gt.metaitem.01/32008.png deleted file mode 100644 index 6da34b7ef5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32009.png b/front/public/images/small/gregtech/gt.metaitem.01/32009.png deleted file mode 100644 index 04c7c812df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32010.png b/front/public/images/small/gregtech/gt.metaitem.01/32010.png deleted file mode 100644 index 27989b3295..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32011.png b/front/public/images/small/gregtech/gt.metaitem.01/32011.png deleted file mode 100644 index d053b57eef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32011.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32013.png b/front/public/images/small/gregtech/gt.metaitem.01/32013.png deleted file mode 100644 index f8266093a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32013.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32014.png b/front/public/images/small/gregtech/gt.metaitem.01/32014.png deleted file mode 100644 index 0fa972d2c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32014.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32015.png b/front/public/images/small/gregtech/gt.metaitem.01/32015.png deleted file mode 100644 index f35f1216dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32015.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32016.png b/front/public/images/small/gregtech/gt.metaitem.01/32016.png deleted file mode 100644 index b9ebd0abe5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32016.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32017.png b/front/public/images/small/gregtech/gt.metaitem.01/32017.png deleted file mode 100644 index c60e654ece..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32017.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32018.png b/front/public/images/small/gregtech/gt.metaitem.01/32018.png deleted file mode 100644 index 8c7848b1c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32019.png b/front/public/images/small/gregtech/gt.metaitem.01/32019.png deleted file mode 100644 index db43f80bd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32020.png b/front/public/images/small/gregtech/gt.metaitem.01/32020.png deleted file mode 100644 index cf8cdc6bfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32021.png b/front/public/images/small/gregtech/gt.metaitem.01/32021.png deleted file mode 100644 index 786b5c2fa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32022.png b/front/public/images/small/gregtech/gt.metaitem.01/32022.png deleted file mode 100644 index c544d9dd11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32023.png b/front/public/images/small/gregtech/gt.metaitem.01/32023.png deleted file mode 100644 index 79480530cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32024.png b/front/public/images/small/gregtech/gt.metaitem.01/32024.png deleted file mode 100644 index 1cc5d5cda7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32024.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32025.png b/front/public/images/small/gregtech/gt.metaitem.01/32025.png deleted file mode 100644 index 16f330ad5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32026.png b/front/public/images/small/gregtech/gt.metaitem.01/32026.png deleted file mode 100644 index f1b1fc2c8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32027.png b/front/public/images/small/gregtech/gt.metaitem.01/32027.png deleted file mode 100644 index b6c1f2341c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32028.png b/front/public/images/small/gregtech/gt.metaitem.01/32028.png deleted file mode 100644 index 3f7fb59f17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32029.png b/front/public/images/small/gregtech/gt.metaitem.01/32029.png deleted file mode 100644 index 40a5a922e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32030.png b/front/public/images/small/gregtech/gt.metaitem.01/32030.png deleted file mode 100644 index ebc24c9890..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32031.png b/front/public/images/small/gregtech/gt.metaitem.01/32031.png deleted file mode 100644 index 227b6b7567..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32032.png b/front/public/images/small/gregtech/gt.metaitem.01/32032.png deleted file mode 100644 index 88a3218bff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32033.png b/front/public/images/small/gregtech/gt.metaitem.01/32033.png deleted file mode 100644 index fad1a6ee87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32034.png b/front/public/images/small/gregtech/gt.metaitem.01/32034.png deleted file mode 100644 index fe4263ff86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32035.png b/front/public/images/small/gregtech/gt.metaitem.01/32035.png deleted file mode 100644 index 132f00699d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32036.png b/front/public/images/small/gregtech/gt.metaitem.01/32036.png deleted file mode 100644 index a5beb7c037..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32037.png b/front/public/images/small/gregtech/gt.metaitem.01/32037.png deleted file mode 100644 index d6ca4c8138..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32038.png b/front/public/images/small/gregtech/gt.metaitem.01/32038.png deleted file mode 100644 index 61f81349ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32038.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32039.png b/front/public/images/small/gregtech/gt.metaitem.01/32039.png deleted file mode 100644 index 07188da07b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32040.png b/front/public/images/small/gregtech/gt.metaitem.01/32040.png deleted file mode 100644 index 28a5bd91f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32040.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32041.png b/front/public/images/small/gregtech/gt.metaitem.01/32041.png deleted file mode 100644 index 731f56ae39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32041.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32042.png b/front/public/images/small/gregtech/gt.metaitem.01/32042.png deleted file mode 100644 index a90be54cca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32042.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32043.png b/front/public/images/small/gregtech/gt.metaitem.01/32043.png deleted file mode 100644 index 5e52a2a631..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32044.png b/front/public/images/small/gregtech/gt.metaitem.01/32044.png deleted file mode 100644 index bac73513ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32045.png b/front/public/images/small/gregtech/gt.metaitem.01/32045.png deleted file mode 100644 index aee374f191..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32046.png b/front/public/images/small/gregtech/gt.metaitem.01/32046.png deleted file mode 100644 index 12a0082c3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32046.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32047.png b/front/public/images/small/gregtech/gt.metaitem.01/32047.png deleted file mode 100644 index 13ee615753..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32048.png b/front/public/images/small/gregtech/gt.metaitem.01/32048.png deleted file mode 100644 index c420feba84..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32100.png b/front/public/images/small/gregtech/gt.metaitem.01/32100.png deleted file mode 100644 index 6af6c70fc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32101.png b/front/public/images/small/gregtech/gt.metaitem.01/32101.png deleted file mode 100644 index db2041b23a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32110.png b/front/public/images/small/gregtech/gt.metaitem.01/32110.png deleted file mode 100644 index 5e9259cb12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32111.png b/front/public/images/small/gregtech/gt.metaitem.01/32111.png deleted file mode 100644 index ad47e57722..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32145.png b/front/public/images/small/gregtech/gt.metaitem.01/32145.png deleted file mode 100644 index 49baf0ca57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32145.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32146.png b/front/public/images/small/gregtech/gt.metaitem.01/32146.png deleted file mode 100644 index 54e4f33179..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32146.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32200.png b/front/public/images/small/gregtech/gt.metaitem.01/32200.png deleted file mode 100644 index 3aaacd03a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32201.png b/front/public/images/small/gregtech/gt.metaitem.01/32201.png deleted file mode 100644 index c88fb5298b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32202.png b/front/public/images/small/gregtech/gt.metaitem.01/32202.png deleted file mode 100644 index c88fb5298b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32203.png b/front/public/images/small/gregtech/gt.metaitem.01/32203.png deleted file mode 100644 index c88fb5298b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32204.png b/front/public/images/small/gregtech/gt.metaitem.01/32204.png deleted file mode 100644 index f984129e4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32205.png b/front/public/images/small/gregtech/gt.metaitem.01/32205.png deleted file mode 100644 index f984129e4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32206.png b/front/public/images/small/gregtech/gt.metaitem.01/32206.png deleted file mode 100644 index f616ef1126..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32207.png b/front/public/images/small/gregtech/gt.metaitem.01/32207.png deleted file mode 100644 index f616ef1126..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32208.png b/front/public/images/small/gregtech/gt.metaitem.01/32208.png deleted file mode 100644 index 722bafa9c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32225.png b/front/public/images/small/gregtech/gt.metaitem.01/32225.png deleted file mode 100644 index ca7fbee0f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32225.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32226.png b/front/public/images/small/gregtech/gt.metaitem.01/32226.png deleted file mode 100644 index 6aa13014b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32226.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32227.png b/front/public/images/small/gregtech/gt.metaitem.01/32227.png deleted file mode 100644 index 6aa13014b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32227.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32228.png b/front/public/images/small/gregtech/gt.metaitem.01/32228.png deleted file mode 100644 index 6aa13014b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32228.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32229.png b/front/public/images/small/gregtech/gt.metaitem.01/32229.png deleted file mode 100644 index 8c45ffe6d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32229.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32230.png b/front/public/images/small/gregtech/gt.metaitem.01/32230.png deleted file mode 100644 index 8c45ffe6d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32231.png b/front/public/images/small/gregtech/gt.metaitem.01/32231.png deleted file mode 100644 index 5464305702..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32231.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32232.png b/front/public/images/small/gregtech/gt.metaitem.01/32232.png deleted file mode 100644 index 5464305702..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32232.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32233.png b/front/public/images/small/gregtech/gt.metaitem.01/32233.png deleted file mode 100644 index 7ea693590d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32233.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32250.png b/front/public/images/small/gregtech/gt.metaitem.01/32250.png deleted file mode 100644 index 78e28c4d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32250.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32251.png b/front/public/images/small/gregtech/gt.metaitem.01/32251.png deleted file mode 100644 index 62fe028918..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32251.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32252.png b/front/public/images/small/gregtech/gt.metaitem.01/32252.png deleted file mode 100644 index 62fe028918..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32252.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32253.png b/front/public/images/small/gregtech/gt.metaitem.01/32253.png deleted file mode 100644 index 62fe028918..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32253.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32254.png b/front/public/images/small/gregtech/gt.metaitem.01/32254.png deleted file mode 100644 index 15c627014f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32254.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32255.png b/front/public/images/small/gregtech/gt.metaitem.01/32255.png deleted file mode 100644 index 15c627014f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32255.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32256.png b/front/public/images/small/gregtech/gt.metaitem.01/32256.png deleted file mode 100644 index 26026791c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32256.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32257.png b/front/public/images/small/gregtech/gt.metaitem.01/32257.png deleted file mode 100644 index 26026791c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32257.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32258.png b/front/public/images/small/gregtech/gt.metaitem.01/32258.png deleted file mode 100644 index bd8617cf1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32258.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32270.png b/front/public/images/small/gregtech/gt.metaitem.01/32270.png deleted file mode 100644 index 4b49fc5060..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32270.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32271.png b/front/public/images/small/gregtech/gt.metaitem.01/32271.png deleted file mode 100644 index 4b49fc5060..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32271.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32272.png b/front/public/images/small/gregtech/gt.metaitem.01/32272.png deleted file mode 100644 index 213ecb75b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32272.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32300.png b/front/public/images/small/gregtech/gt.metaitem.01/32300.png deleted file mode 100644 index 2d7ba93794..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32301.png b/front/public/images/small/gregtech/gt.metaitem.01/32301.png deleted file mode 100644 index 5e7f68df6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32302.png b/front/public/images/small/gregtech/gt.metaitem.01/32302.png deleted file mode 100644 index b228bfb0c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32303.png b/front/public/images/small/gregtech/gt.metaitem.01/32303.png deleted file mode 100644 index 0397aad871..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32304.png b/front/public/images/small/gregtech/gt.metaitem.01/32304.png deleted file mode 100644 index 9371f53c9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32305.png b/front/public/images/small/gregtech/gt.metaitem.01/32305.png deleted file mode 100644 index df8b209654..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32306.png b/front/public/images/small/gregtech/gt.metaitem.01/32306.png deleted file mode 100644 index c823dab0c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32307.png b/front/public/images/small/gregtech/gt.metaitem.01/32307.png deleted file mode 100644 index 2a3a39888e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32308.png b/front/public/images/small/gregtech/gt.metaitem.01/32308.png deleted file mode 100644 index ae6e7f53ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32309.png b/front/public/images/small/gregtech/gt.metaitem.01/32309.png deleted file mode 100644 index c0b3758d8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32310.png b/front/public/images/small/gregtech/gt.metaitem.01/32310.png deleted file mode 100644 index fb0878d7f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32311.png b/front/public/images/small/gregtech/gt.metaitem.01/32311.png deleted file mode 100644 index 9740843cf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32312.png b/front/public/images/small/gregtech/gt.metaitem.01/32312.png deleted file mode 100644 index 42cd941859..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32313.png b/front/public/images/small/gregtech/gt.metaitem.01/32313.png deleted file mode 100644 index aadc302888..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32314.png b/front/public/images/small/gregtech/gt.metaitem.01/32314.png deleted file mode 100644 index 2e4683afe6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32315.png b/front/public/images/small/gregtech/gt.metaitem.01/32315.png deleted file mode 100644 index 05075606fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32316.png b/front/public/images/small/gregtech/gt.metaitem.01/32316.png deleted file mode 100644 index 98120a0482..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32317.png b/front/public/images/small/gregtech/gt.metaitem.01/32317.png deleted file mode 100644 index 6a6b3d9959..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32318.png b/front/public/images/small/gregtech/gt.metaitem.01/32318.png deleted file mode 100644 index 6f579e8e4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32319.png b/front/public/images/small/gregtech/gt.metaitem.01/32319.png deleted file mode 100644 index 550268eb96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32320.png b/front/public/images/small/gregtech/gt.metaitem.01/32320.png deleted file mode 100644 index e084c220a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32321.png b/front/public/images/small/gregtech/gt.metaitem.01/32321.png deleted file mode 100644 index 68c295c713..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32322.png b/front/public/images/small/gregtech/gt.metaitem.01/32322.png deleted file mode 100644 index 89429cfdd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32322.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32323.png b/front/public/images/small/gregtech/gt.metaitem.01/32323.png deleted file mode 100644 index 0f620954ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32324.png b/front/public/images/small/gregtech/gt.metaitem.01/32324.png deleted file mode 100644 index 02da600de3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32325.png b/front/public/images/small/gregtech/gt.metaitem.01/32325.png deleted file mode 100644 index c22a531d85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32326.png b/front/public/images/small/gregtech/gt.metaitem.01/32326.png deleted file mode 100644 index 320705b8f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32327.png b/front/public/images/small/gregtech/gt.metaitem.01/32327.png deleted file mode 100644 index 8787d446d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32328.png b/front/public/images/small/gregtech/gt.metaitem.01/32328.png deleted file mode 100644 index 62f5ae58ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32329.png b/front/public/images/small/gregtech/gt.metaitem.01/32329.png deleted file mode 100644 index 76cfac171a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32330.png b/front/public/images/small/gregtech/gt.metaitem.01/32330.png deleted file mode 100644 index 0428143730..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32331.png b/front/public/images/small/gregtech/gt.metaitem.01/32331.png deleted file mode 100644 index 9e407290f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32332.png b/front/public/images/small/gregtech/gt.metaitem.01/32332.png deleted file mode 100644 index ad377bc1c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32332.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32333.png b/front/public/images/small/gregtech/gt.metaitem.01/32333.png deleted file mode 100644 index b2345e2369..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32334.png b/front/public/images/small/gregtech/gt.metaitem.01/32334.png deleted file mode 100644 index d50bcf27b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32335.png b/front/public/images/small/gregtech/gt.metaitem.01/32335.png deleted file mode 100644 index 25121ff704..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32336.png b/front/public/images/small/gregtech/gt.metaitem.01/32336.png deleted file mode 100644 index 4491951ccd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32350.png b/front/public/images/small/gregtech/gt.metaitem.01/32350.png deleted file mode 100644 index d7f2eca117..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32351.png b/front/public/images/small/gregtech/gt.metaitem.01/32351.png deleted file mode 100644 index 84a2a265f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32352.png b/front/public/images/small/gregtech/gt.metaitem.01/32352.png deleted file mode 100644 index 065603c8bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32353.png b/front/public/images/small/gregtech/gt.metaitem.01/32353.png deleted file mode 100644 index d92e4bdf46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32354.png b/front/public/images/small/gregtech/gt.metaitem.01/32354.png deleted file mode 100644 index e700b6c198..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32355.png b/front/public/images/small/gregtech/gt.metaitem.01/32355.png deleted file mode 100644 index b4ac04a259..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32356.png b/front/public/images/small/gregtech/gt.metaitem.01/32356.png deleted file mode 100644 index 86ba730dce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32357.png b/front/public/images/small/gregtech/gt.metaitem.01/32357.png deleted file mode 100644 index 96c4605567..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32358.png b/front/public/images/small/gregtech/gt.metaitem.01/32358.png deleted file mode 100644 index 094075c0b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32359.png b/front/public/images/small/gregtech/gt.metaitem.01/32359.png deleted file mode 100644 index 8700238d66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32360.png b/front/public/images/small/gregtech/gt.metaitem.01/32360.png deleted file mode 100644 index 53d241b387..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32361.png b/front/public/images/small/gregtech/gt.metaitem.01/32361.png deleted file mode 100644 index 7b40047e13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32362.png b/front/public/images/small/gregtech/gt.metaitem.01/32362.png deleted file mode 100644 index 903b034d8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32363.png b/front/public/images/small/gregtech/gt.metaitem.01/32363.png deleted file mode 100644 index d18207ebe3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32364.png b/front/public/images/small/gregtech/gt.metaitem.01/32364.png deleted file mode 100644 index 81219f27ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32365.png b/front/public/images/small/gregtech/gt.metaitem.01/32365.png deleted file mode 100644 index e60e6812b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32366.png b/front/public/images/small/gregtech/gt.metaitem.01/32366.png deleted file mode 100644 index 3a82155bc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32367.png b/front/public/images/small/gregtech/gt.metaitem.01/32367.png deleted file mode 100644 index 33faa09f6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32368.png b/front/public/images/small/gregtech/gt.metaitem.01/32368.png deleted file mode 100644 index 3cd949e00f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32369.png b/front/public/images/small/gregtech/gt.metaitem.01/32369.png deleted file mode 100644 index 8261770611..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32370.png b/front/public/images/small/gregtech/gt.metaitem.01/32370.png deleted file mode 100644 index 10248f6b04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32371.png b/front/public/images/small/gregtech/gt.metaitem.01/32371.png deleted file mode 100644 index 59acd9d3df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32372.png b/front/public/images/small/gregtech/gt.metaitem.01/32372.png deleted file mode 100644 index 83805b980a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32373.png b/front/public/images/small/gregtech/gt.metaitem.01/32373.png deleted file mode 100644 index d24ffc99e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32374.png b/front/public/images/small/gregtech/gt.metaitem.01/32374.png deleted file mode 100644 index 226a22300d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32375.png b/front/public/images/small/gregtech/gt.metaitem.01/32375.png deleted file mode 100644 index 51000f1165..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32375.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32376.png b/front/public/images/small/gregtech/gt.metaitem.01/32376.png deleted file mode 100644 index e75b72a6b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32376.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32377.png b/front/public/images/small/gregtech/gt.metaitem.01/32377.png deleted file mode 100644 index c2f1673744..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32377.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32398.png b/front/public/images/small/gregtech/gt.metaitem.01/32398.png deleted file mode 100644 index 1c960a9851..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32399.png b/front/public/images/small/gregtech/gt.metaitem.01/32399.png deleted file mode 100644 index 22a9df63bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32400.png b/front/public/images/small/gregtech/gt.metaitem.01/32400.png deleted file mode 100644 index 65ef68ed3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32401.png b/front/public/images/small/gregtech/gt.metaitem.01/32401.png deleted file mode 100644 index 205cc49b39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32402.png b/front/public/images/small/gregtech/gt.metaitem.01/32402.png deleted file mode 100644 index c9d78fb652..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32403.png b/front/public/images/small/gregtech/gt.metaitem.01/32403.png deleted file mode 100644 index fd341c68d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32404.png b/front/public/images/small/gregtech/gt.metaitem.01/32404.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32405.png b/front/public/images/small/gregtech/gt.metaitem.01/32405.png deleted file mode 100644 index 4f3ab74b01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32406.png b/front/public/images/small/gregtech/gt.metaitem.01/32406.png deleted file mode 100644 index 9b38aafc5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32407.png b/front/public/images/small/gregtech/gt.metaitem.01/32407.png deleted file mode 100644 index 612cac06c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32408.png b/front/public/images/small/gregtech/gt.metaitem.01/32408.png deleted file mode 100644 index f2bc9f483a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32409.png b/front/public/images/small/gregtech/gt.metaitem.01/32409.png deleted file mode 100644 index b1873735b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32409.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32410.png b/front/public/images/small/gregtech/gt.metaitem.01/32410.png deleted file mode 100644 index 3c84284b93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32410.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32411.png b/front/public/images/small/gregtech/gt.metaitem.01/32411.png deleted file mode 100644 index 64028ed2a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32411.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32412.png b/front/public/images/small/gregtech/gt.metaitem.01/32412.png deleted file mode 100644 index 5d25925ca4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32412.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32413.png b/front/public/images/small/gregtech/gt.metaitem.01/32413.png deleted file mode 100644 index f04d929bdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32413.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32415.png b/front/public/images/small/gregtech/gt.metaitem.01/32415.png deleted file mode 100644 index a0df0cdb99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32415.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32416.png b/front/public/images/small/gregtech/gt.metaitem.01/32416.png deleted file mode 100644 index fb6442425c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32416.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32417.png b/front/public/images/small/gregtech/gt.metaitem.01/32417.png deleted file mode 100644 index ada7f66564..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32417.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32427.png b/front/public/images/small/gregtech/gt.metaitem.01/32427.png deleted file mode 100644 index 1be16d7405..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32427.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32428.png b/front/public/images/small/gregtech/gt.metaitem.01/32428.png deleted file mode 100644 index 6ddde82a13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32428.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32429.png b/front/public/images/small/gregtech/gt.metaitem.01/32429.png deleted file mode 100644 index afe415937b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32429.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32430.png b/front/public/images/small/gregtech/gt.metaitem.01/32430.png deleted file mode 100644 index 45e456bef3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32430.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32432.png b/front/public/images/small/gregtech/gt.metaitem.01/32432.png deleted file mode 100644 index f9e9190c3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32432.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32434.png b/front/public/images/small/gregtech/gt.metaitem.01/32434.png deleted file mode 100644 index 800c36f786..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32434.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32436.png b/front/public/images/small/gregtech/gt.metaitem.01/32436.png deleted file mode 100644 index 21ac7b7464..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32436.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32438.png b/front/public/images/small/gregtech/gt.metaitem.01/32438.png deleted file mode 100644 index 2e2e2d6963..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32438.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32440.png b/front/public/images/small/gregtech/gt.metaitem.01/32440.png deleted file mode 100644 index ccb9396769..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32440.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32442.png b/front/public/images/small/gregtech/gt.metaitem.01/32442.png deleted file mode 100644 index fc44d0624a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32442.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32444.png b/front/public/images/small/gregtech/gt.metaitem.01/32444.png deleted file mode 100644 index 504b526367..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32444.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32446.png b/front/public/images/small/gregtech/gt.metaitem.01/32446.png deleted file mode 100644 index e420d0bf19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32446.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32448.png b/front/public/images/small/gregtech/gt.metaitem.01/32448.png deleted file mode 100644 index 0a4e5a50dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32448.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32450.png b/front/public/images/small/gregtech/gt.metaitem.01/32450.png deleted file mode 100644 index 0e840ecbd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32450.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32452.png b/front/public/images/small/gregtech/gt.metaitem.01/32452.png deleted file mode 100644 index 1a96aa3e85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32452.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32454.png b/front/public/images/small/gregtech/gt.metaitem.01/32454.png deleted file mode 100644 index 741160d869..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32454.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32456.png b/front/public/images/small/gregtech/gt.metaitem.01/32456.png deleted file mode 100644 index 66266006b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32456.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32458.png b/front/public/images/small/gregtech/gt.metaitem.01/32458.png deleted file mode 100644 index 5f37790c08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32458.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32460.png b/front/public/images/small/gregtech/gt.metaitem.01/32460.png deleted file mode 100644 index 29e84532fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32460.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32462.png b/front/public/images/small/gregtech/gt.metaitem.01/32462.png deleted file mode 100644 index 0ecc50a8be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32462.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32463.png b/front/public/images/small/gregtech/gt.metaitem.01/32463.png deleted file mode 100644 index 90b45af1f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32463.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32464.png b/front/public/images/small/gregtech/gt.metaitem.01/32464.png deleted file mode 100644 index d62cdabdbd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32464.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32465.png b/front/public/images/small/gregtech/gt.metaitem.01/32465.png deleted file mode 100644 index cc57a0f73e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32465.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32467.png b/front/public/images/small/gregtech/gt.metaitem.01/32467.png deleted file mode 100644 index e914d344b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32467.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32471.png b/front/public/images/small/gregtech/gt.metaitem.01/32471.png deleted file mode 100644 index 61eecb7068..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32473.png b/front/public/images/small/gregtech/gt.metaitem.01/32473.png deleted file mode 100644 index ca6c06f2ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32474.png b/front/public/images/small/gregtech/gt.metaitem.01/32474.png deleted file mode 100644 index 8098d78c35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32474.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32476.png b/front/public/images/small/gregtech/gt.metaitem.01/32476.png deleted file mode 100644 index 8098d78c35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32476.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32477.png b/front/public/images/small/gregtech/gt.metaitem.01/32477.png deleted file mode 100644 index 5ece1156af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32477.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32479.png b/front/public/images/small/gregtech/gt.metaitem.01/32479.png deleted file mode 100644 index 5ece1156af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32479.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32480.png b/front/public/images/small/gregtech/gt.metaitem.01/32480.png deleted file mode 100644 index 1b8daaafbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32480.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32481.png b/front/public/images/small/gregtech/gt.metaitem.01/32481.png deleted file mode 100644 index 4ece6aa917..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32481.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32487.png b/front/public/images/small/gregtech/gt.metaitem.01/32487.png deleted file mode 100644 index bbe9425b6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32487.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32488.png b/front/public/images/small/gregtech/gt.metaitem.01/32488.png deleted file mode 100644 index 51d6f8d484..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32489.png b/front/public/images/small/gregtech/gt.metaitem.01/32489.png deleted file mode 100644 index 3fd2173517..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32490.png b/front/public/images/small/gregtech/gt.metaitem.01/32490.png deleted file mode 100644 index c644ee1103..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32490.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32491.png b/front/public/images/small/gregtech/gt.metaitem.01/32491.png deleted file mode 100644 index 31c6cf7ebe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32491.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32495.png b/front/public/images/small/gregtech/gt.metaitem.01/32495.png deleted file mode 100644 index 84d3831f86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32495.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32496.png b/front/public/images/small/gregtech/gt.metaitem.01/32496.png deleted file mode 100644 index 2c9f8cc35d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32496.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32497.png b/front/public/images/small/gregtech/gt.metaitem.01/32497.png deleted file mode 100644 index 01e5015093..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32497.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32498.png b/front/public/images/small/gregtech/gt.metaitem.01/32498.png deleted file mode 100644 index 9669a4360b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32498.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32499.png b/front/public/images/small/gregtech/gt.metaitem.01/32499.png deleted file mode 100644 index a00e9fa895..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32499.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32500.png b/front/public/images/small/gregtech/gt.metaitem.01/32500.png deleted file mode 100644 index 7cb4bdd8a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32501.png b/front/public/images/small/gregtech/gt.metaitem.01/32501.png deleted file mode 100644 index 18a207408b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32502.png b/front/public/images/small/gregtech/gt.metaitem.01/32502.png deleted file mode 100644 index 455e4b0c5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32510.png b/front/public/images/small/gregtech/gt.metaitem.01/32510.png deleted file mode 100644 index 576d72b22d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32511.png b/front/public/images/small/gregtech/gt.metaitem.01/32511.png deleted file mode 100644 index 6d3e4b12ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32517.png b/front/public/images/small/gregtech/gt.metaitem.01/32517.png deleted file mode 100644 index 7e1dfe7f81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32517.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32518.png b/front/public/images/small/gregtech/gt.metaitem.01/32518.png deleted file mode 100644 index 7e1dfe7f81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32519.png b/front/public/images/small/gregtech/gt.metaitem.01/32519.png deleted file mode 100644 index 7e1dfe7f81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32520.png b/front/public/images/small/gregtech/gt.metaitem.01/32520.png deleted file mode 100644 index 56ce9f8ef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32521.png b/front/public/images/small/gregtech/gt.metaitem.01/32521.png deleted file mode 100644 index 81525e6fd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32527.png b/front/public/images/small/gregtech/gt.metaitem.01/32527.png deleted file mode 100644 index cfd964304e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32528.png b/front/public/images/small/gregtech/gt.metaitem.01/32528.png deleted file mode 100644 index cfd964304e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32529.png b/front/public/images/small/gregtech/gt.metaitem.01/32529.png deleted file mode 100644 index cfd964304e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32530.png b/front/public/images/small/gregtech/gt.metaitem.01/32530.png deleted file mode 100644 index cf3adc6f98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32531.png b/front/public/images/small/gregtech/gt.metaitem.01/32531.png deleted file mode 100644 index 4930bab5d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32537.png b/front/public/images/small/gregtech/gt.metaitem.01/32537.png deleted file mode 100644 index 7d9eef242b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32538.png b/front/public/images/small/gregtech/gt.metaitem.01/32538.png deleted file mode 100644 index 7d9eef242b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32539.png b/front/public/images/small/gregtech/gt.metaitem.01/32539.png deleted file mode 100644 index 7d9eef242b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32539.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32577.png b/front/public/images/small/gregtech/gt.metaitem.01/32577.png deleted file mode 100644 index 9c068bdfd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32577.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32594.png b/front/public/images/small/gregtech/gt.metaitem.01/32594.png deleted file mode 100644 index 52107ad59c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32594.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32595.png b/front/public/images/small/gregtech/gt.metaitem.01/32595.png deleted file mode 100644 index 180b5e6db0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32595.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32596.png b/front/public/images/small/gregtech/gt.metaitem.01/32596.png deleted file mode 100644 index db473f7f43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32596.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32597.png b/front/public/images/small/gregtech/gt.metaitem.01/32597.png deleted file mode 100644 index 8107d469d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32597.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32598.png b/front/public/images/small/gregtech/gt.metaitem.01/32598.png deleted file mode 100644 index fba819b184..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32598.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32599.png b/front/public/images/small/gregtech/gt.metaitem.01/32599.png deleted file mode 100644 index e737ddad6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32600.png b/front/public/images/small/gregtech/gt.metaitem.01/32600.png deleted file mode 100644 index 3471548007..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32600.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32601.png b/front/public/images/small/gregtech/gt.metaitem.01/32601.png deleted file mode 100644 index 5ed919756b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32601.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32602.png b/front/public/images/small/gregtech/gt.metaitem.01/32602.png deleted file mode 100644 index 6e0f79e5c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32602.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32603.png b/front/public/images/small/gregtech/gt.metaitem.01/32603.png deleted file mode 100644 index 4f71017ecb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32603.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32604.png b/front/public/images/small/gregtech/gt.metaitem.01/32604.png deleted file mode 100644 index 72683cec87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32604.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32605.png b/front/public/images/small/gregtech/gt.metaitem.01/32605.png deleted file mode 100644 index 4e65ba2573..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32605.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32606.png b/front/public/images/small/gregtech/gt.metaitem.01/32606.png deleted file mode 100644 index 53974aab19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32606.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32607.png b/front/public/images/small/gregtech/gt.metaitem.01/32607.png deleted file mode 100644 index 1aa0a434e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32607.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32608.png b/front/public/images/small/gregtech/gt.metaitem.01/32608.png deleted file mode 100644 index d87ef5ace4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32608.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32609.png b/front/public/images/small/gregtech/gt.metaitem.01/32609.png deleted file mode 100644 index e1543512d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32609.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32610.png b/front/public/images/small/gregtech/gt.metaitem.01/32610.png deleted file mode 100644 index ab67a2a679..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32611.png b/front/public/images/small/gregtech/gt.metaitem.01/32611.png deleted file mode 100644 index 3e996e3ad4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32612.png b/front/public/images/small/gregtech/gt.metaitem.01/32612.png deleted file mode 100644 index 1c2393ac81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32612.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32613.png b/front/public/images/small/gregtech/gt.metaitem.01/32613.png deleted file mode 100644 index 11c6afd1ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32614.png b/front/public/images/small/gregtech/gt.metaitem.01/32614.png deleted file mode 100644 index 0c1f73560d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32614.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32615.png b/front/public/images/small/gregtech/gt.metaitem.01/32615.png deleted file mode 100644 index 931b1389af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32615.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32616.png b/front/public/images/small/gregtech/gt.metaitem.01/32616.png deleted file mode 100644 index 1b6d9ba4d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32616.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32617.png b/front/public/images/small/gregtech/gt.metaitem.01/32617.png deleted file mode 100644 index ca2a269c0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32617.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32618.png b/front/public/images/small/gregtech/gt.metaitem.01/32618.png deleted file mode 100644 index 83a1fabb26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32618.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32619.png b/front/public/images/small/gregtech/gt.metaitem.01/32619.png deleted file mode 100644 index 09aaa62a3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32619.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32620.png b/front/public/images/small/gregtech/gt.metaitem.01/32620.png deleted file mode 100644 index c23ee32081..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32620.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32621.png b/front/public/images/small/gregtech/gt.metaitem.01/32621.png deleted file mode 100644 index 652a7aed9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32621.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32622.png b/front/public/images/small/gregtech/gt.metaitem.01/32622.png deleted file mode 100644 index 8235dbab23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32622.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32623.png b/front/public/images/small/gregtech/gt.metaitem.01/32623.png deleted file mode 100644 index 6f61cd5a39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32623.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32624.png b/front/public/images/small/gregtech/gt.metaitem.01/32624.png deleted file mode 100644 index 9e4f03c7b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32624.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32630.png b/front/public/images/small/gregtech/gt.metaitem.01/32630.png deleted file mode 100644 index bb3c4841d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32630.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32631.png b/front/public/images/small/gregtech/gt.metaitem.01/32631.png deleted file mode 100644 index 9a66c33fff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32632.png b/front/public/images/small/gregtech/gt.metaitem.01/32632.png deleted file mode 100644 index 018caac72b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32632.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32633.png b/front/public/images/small/gregtech/gt.metaitem.01/32633.png deleted file mode 100644 index 52312b48fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32633.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32634.png b/front/public/images/small/gregtech/gt.metaitem.01/32634.png deleted file mode 100644 index c4149976ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32634.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32635.png b/front/public/images/small/gregtech/gt.metaitem.01/32635.png deleted file mode 100644 index b74b0ede4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32636.png b/front/public/images/small/gregtech/gt.metaitem.01/32636.png deleted file mode 100644 index 8899c98e96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32637.png b/front/public/images/small/gregtech/gt.metaitem.01/32637.png deleted file mode 100644 index 9d473d56c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32637.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32638.png b/front/public/images/small/gregtech/gt.metaitem.01/32638.png deleted file mode 100644 index 6d22a5cacc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32638.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32639.png b/front/public/images/small/gregtech/gt.metaitem.01/32639.png deleted file mode 100644 index 33d2026eff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32639.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32640.png b/front/public/images/small/gregtech/gt.metaitem.01/32640.png deleted file mode 100644 index 468a559297..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32640.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32641.png b/front/public/images/small/gregtech/gt.metaitem.01/32641.png deleted file mode 100644 index 62b33b923b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32641.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32642.png b/front/public/images/small/gregtech/gt.metaitem.01/32642.png deleted file mode 100644 index b616b19ccd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32643.png b/front/public/images/small/gregtech/gt.metaitem.01/32643.png deleted file mode 100644 index a9ed467f5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32644.png b/front/public/images/small/gregtech/gt.metaitem.01/32644.png deleted file mode 100644 index 83d6d15825..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32645.png b/front/public/images/small/gregtech/gt.metaitem.01/32645.png deleted file mode 100644 index 179b44d179..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32646.png b/front/public/images/small/gregtech/gt.metaitem.01/32646.png deleted file mode 100644 index a0f3e8cf0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32647.png b/front/public/images/small/gregtech/gt.metaitem.01/32647.png deleted file mode 100644 index 248ba1063a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32647.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32648.png b/front/public/images/small/gregtech/gt.metaitem.01/32648.png deleted file mode 100644 index 45df444aa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32648.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32649.png b/front/public/images/small/gregtech/gt.metaitem.01/32649.png deleted file mode 100644 index 48c5a24c7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32650.png b/front/public/images/small/gregtech/gt.metaitem.01/32650.png deleted file mode 100644 index 51317cc3e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32650.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32651.png b/front/public/images/small/gregtech/gt.metaitem.01/32651.png deleted file mode 100644 index f2a69b61ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32651.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32652.png b/front/public/images/small/gregtech/gt.metaitem.01/32652.png deleted file mode 100644 index 38e353bfb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32652.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32653.png b/front/public/images/small/gregtech/gt.metaitem.01/32653.png deleted file mode 100644 index 719849701e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32653.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32654.png b/front/public/images/small/gregtech/gt.metaitem.01/32654.png deleted file mode 100644 index ff586f5065..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32654.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32655.png b/front/public/images/small/gregtech/gt.metaitem.01/32655.png deleted file mode 100644 index e28321f5ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32655.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32656.png b/front/public/images/small/gregtech/gt.metaitem.01/32656.png deleted file mode 100644 index 7878ebfc64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32656.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32657.png b/front/public/images/small/gregtech/gt.metaitem.01/32657.png deleted file mode 100644 index c66baff93f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32657.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32658.png b/front/public/images/small/gregtech/gt.metaitem.01/32658.png deleted file mode 100644 index 8c27600137..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32658.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32659.png b/front/public/images/small/gregtech/gt.metaitem.01/32659.png deleted file mode 100644 index b36d700472..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32659.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32660.png b/front/public/images/small/gregtech/gt.metaitem.01/32660.png deleted file mode 100644 index a4f7f6d672..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32660.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32661.png b/front/public/images/small/gregtech/gt.metaitem.01/32661.png deleted file mode 100644 index b51850dd03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32661.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32662.png b/front/public/images/small/gregtech/gt.metaitem.01/32662.png deleted file mode 100644 index 091f2ffb49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32662.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32663.png b/front/public/images/small/gregtech/gt.metaitem.01/32663.png deleted file mode 100644 index d7be9ead40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32663.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32664.png b/front/public/images/small/gregtech/gt.metaitem.01/32664.png deleted file mode 100644 index 8ef6bb6e34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32664.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32665.png b/front/public/images/small/gregtech/gt.metaitem.01/32665.png deleted file mode 100644 index 9ef2303d64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32665.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32666.png b/front/public/images/small/gregtech/gt.metaitem.01/32666.png deleted file mode 100644 index 734db5cfcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32666.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32667.png b/front/public/images/small/gregtech/gt.metaitem.01/32667.png deleted file mode 100644 index 3574163a6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32667.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32668.png b/front/public/images/small/gregtech/gt.metaitem.01/32668.png deleted file mode 100644 index 836cbfde92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32668.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32669.png b/front/public/images/small/gregtech/gt.metaitem.01/32669.png deleted file mode 100644 index 0dd1005162..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32669.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32670.png b/front/public/images/small/gregtech/gt.metaitem.01/32670.png deleted file mode 100644 index 0d91185da4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32670.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32671.png b/front/public/images/small/gregtech/gt.metaitem.01/32671.png deleted file mode 100644 index d94deb6e64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32671.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32672.png b/front/public/images/small/gregtech/gt.metaitem.01/32672.png deleted file mode 100644 index bf315c8fb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32672.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32673.png b/front/public/images/small/gregtech/gt.metaitem.01/32673.png deleted file mode 100644 index d84fbfc26d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32673.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32674.png b/front/public/images/small/gregtech/gt.metaitem.01/32674.png deleted file mode 100644 index d44c10a1bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32674.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32675.png b/front/public/images/small/gregtech/gt.metaitem.01/32675.png deleted file mode 100644 index db2f809d7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32675.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32676.png b/front/public/images/small/gregtech/gt.metaitem.01/32676.png deleted file mode 100644 index b78d110953..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32676.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32677.png b/front/public/images/small/gregtech/gt.metaitem.01/32677.png deleted file mode 100644 index 938ee7235a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32678.png b/front/public/images/small/gregtech/gt.metaitem.01/32678.png deleted file mode 100644 index db5e7368eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32679.png b/front/public/images/small/gregtech/gt.metaitem.01/32679.png deleted file mode 100644 index 98192dec7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32679.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32680.png b/front/public/images/small/gregtech/gt.metaitem.01/32680.png deleted file mode 100644 index bb97572313..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32680.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32681.png b/front/public/images/small/gregtech/gt.metaitem.01/32681.png deleted file mode 100644 index f4fb9f6f2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32681.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32682.png b/front/public/images/small/gregtech/gt.metaitem.01/32682.png deleted file mode 100644 index 038a9660a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32682.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32683.png b/front/public/images/small/gregtech/gt.metaitem.01/32683.png deleted file mode 100644 index ac87256d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32683.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32684.png b/front/public/images/small/gregtech/gt.metaitem.01/32684.png deleted file mode 100644 index 811fc669dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32684.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32685.png b/front/public/images/small/gregtech/gt.metaitem.01/32685.png deleted file mode 100644 index 7002b41232..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32685.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32686.png b/front/public/images/small/gregtech/gt.metaitem.01/32686.png deleted file mode 100644 index 8053f62e4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32686.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32687.png b/front/public/images/small/gregtech/gt.metaitem.01/32687.png deleted file mode 100644 index 20afa4b461..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32687.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32688.png b/front/public/images/small/gregtech/gt.metaitem.01/32688.png deleted file mode 100644 index 33927667e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32688.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32689.png b/front/public/images/small/gregtech/gt.metaitem.01/32689.png deleted file mode 100644 index 05c4a90ee5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32689.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32690.png b/front/public/images/small/gregtech/gt.metaitem.01/32690.png deleted file mode 100644 index 4a9ddcd190..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32690.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32691.png b/front/public/images/small/gregtech/gt.metaitem.01/32691.png deleted file mode 100644 index 68706f795d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32691.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32692.png b/front/public/images/small/gregtech/gt.metaitem.01/32692.png deleted file mode 100644 index 132de999da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32692.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32693.png b/front/public/images/small/gregtech/gt.metaitem.01/32693.png deleted file mode 100644 index 7fdb1e3f35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32693.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32694.png b/front/public/images/small/gregtech/gt.metaitem.01/32694.png deleted file mode 100644 index 9732c3c489..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32694.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32695.png b/front/public/images/small/gregtech/gt.metaitem.01/32695.png deleted file mode 100644 index 20c1cbbb6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32695.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32696.png b/front/public/images/small/gregtech/gt.metaitem.01/32696.png deleted file mode 100644 index 23b441027a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32696.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32697.png b/front/public/images/small/gregtech/gt.metaitem.01/32697.png deleted file mode 100644 index fd83d0dd2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32697.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32698.png b/front/public/images/small/gregtech/gt.metaitem.01/32698.png deleted file mode 100644 index 865a775d28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32698.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32699.png b/front/public/images/small/gregtech/gt.metaitem.01/32699.png deleted file mode 100644 index 5a2093c739..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32699.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32700.png b/front/public/images/small/gregtech/gt.metaitem.01/32700.png deleted file mode 100644 index 645356c268..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32700.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32701.png b/front/public/images/small/gregtech/gt.metaitem.01/32701.png deleted file mode 100644 index 243ca63f0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32701.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32702.png b/front/public/images/small/gregtech/gt.metaitem.01/32702.png deleted file mode 100644 index 871890ff92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32702.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32703.png b/front/public/images/small/gregtech/gt.metaitem.01/32703.png deleted file mode 100644 index 6abe12927e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32703.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32704.png b/front/public/images/small/gregtech/gt.metaitem.01/32704.png deleted file mode 100644 index dddc40647b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32704.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32705.png b/front/public/images/small/gregtech/gt.metaitem.01/32705.png deleted file mode 100644 index afeeebf4db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32705.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32706.png b/front/public/images/small/gregtech/gt.metaitem.01/32706.png deleted file mode 100644 index f8eeba23e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32706.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32707.png b/front/public/images/small/gregtech/gt.metaitem.01/32707.png deleted file mode 100644 index 8e9a4d4a80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32707.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32708.png b/front/public/images/small/gregtech/gt.metaitem.01/32708.png deleted file mode 100644 index 7379d06036..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32708.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32709.png b/front/public/images/small/gregtech/gt.metaitem.01/32709.png deleted file mode 100644 index 0e058c0f13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32709.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32710.png b/front/public/images/small/gregtech/gt.metaitem.01/32710.png deleted file mode 100644 index 461ab408cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32710.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32711.png b/front/public/images/small/gregtech/gt.metaitem.01/32711.png deleted file mode 100644 index 9bb1daa904..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32711.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32712.png b/front/public/images/small/gregtech/gt.metaitem.01/32712.png deleted file mode 100644 index 279a2109c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32712.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32713.png b/front/public/images/small/gregtech/gt.metaitem.01/32713.png deleted file mode 100644 index a7d6fa3512..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32713.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32714.png b/front/public/images/small/gregtech/gt.metaitem.01/32714.png deleted file mode 100644 index 1c54dff92f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32714.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32715.png b/front/public/images/small/gregtech/gt.metaitem.01/32715.png deleted file mode 100644 index 3da39d2dab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32715.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32716.png b/front/public/images/small/gregtech/gt.metaitem.01/32716.png deleted file mode 100644 index 3af449623a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32716.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32717.png b/front/public/images/small/gregtech/gt.metaitem.01/32717.png deleted file mode 100644 index a485a7809f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32717.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32718.png b/front/public/images/small/gregtech/gt.metaitem.01/32718.png deleted file mode 100644 index 3498928447..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32718.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32719.png b/front/public/images/small/gregtech/gt.metaitem.01/32719.png deleted file mode 100644 index 083e3f1758..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32719.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32720.png b/front/public/images/small/gregtech/gt.metaitem.01/32720.png deleted file mode 100644 index de368207d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32720.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32721.png b/front/public/images/small/gregtech/gt.metaitem.01/32721.png deleted file mode 100644 index 1078d46ed9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32721.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32722.png b/front/public/images/small/gregtech/gt.metaitem.01/32722.png deleted file mode 100644 index a97486a659..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32722.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32723.png b/front/public/images/small/gregtech/gt.metaitem.01/32723.png deleted file mode 100644 index d0de10e987..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32723.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32724.png b/front/public/images/small/gregtech/gt.metaitem.01/32724.png deleted file mode 100644 index 6255c5c356..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32724.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32725.png b/front/public/images/small/gregtech/gt.metaitem.01/32725.png deleted file mode 100644 index fbe61d9023..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32725.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32726.png b/front/public/images/small/gregtech/gt.metaitem.01/32726.png deleted file mode 100644 index 4f1f727508..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32726.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32727.png b/front/public/images/small/gregtech/gt.metaitem.01/32727.png deleted file mode 100644 index 80aa58d99b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32727.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32728.png b/front/public/images/small/gregtech/gt.metaitem.01/32728.png deleted file mode 100644 index 5db4aada51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32728.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32729.png b/front/public/images/small/gregtech/gt.metaitem.01/32729.png deleted file mode 100644 index 24f0b4cd05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32729.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32730.png b/front/public/images/small/gregtech/gt.metaitem.01/32730.png deleted file mode 100644 index aeaed539db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32730.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32731.png b/front/public/images/small/gregtech/gt.metaitem.01/32731.png deleted file mode 100644 index a0ab11f8e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32731.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32732.png b/front/public/images/small/gregtech/gt.metaitem.01/32732.png deleted file mode 100644 index 53c3c6ecb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32732.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32733.png b/front/public/images/small/gregtech/gt.metaitem.01/32733.png deleted file mode 100644 index da29c42b1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32733.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32734.png b/front/public/images/small/gregtech/gt.metaitem.01/32734.png deleted file mode 100644 index 320814f190..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32734.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32735.png b/front/public/images/small/gregtech/gt.metaitem.01/32735.png deleted file mode 100644 index a0ab11f8e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32736.png b/front/public/images/small/gregtech/gt.metaitem.01/32736.png deleted file mode 100644 index aec8f26cba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32736.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32737.png b/front/public/images/small/gregtech/gt.metaitem.01/32737.png deleted file mode 100644 index 371db2b2b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32737.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32740.png b/front/public/images/small/gregtech/gt.metaitem.01/32740.png deleted file mode 100644 index ab56a723c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32741.png b/front/public/images/small/gregtech/gt.metaitem.01/32741.png deleted file mode 100644 index d4de953e06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32742.png b/front/public/images/small/gregtech/gt.metaitem.01/32742.png deleted file mode 100644 index d4de953e06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32742.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32744.png b/front/public/images/small/gregtech/gt.metaitem.01/32744.png deleted file mode 100644 index 19d10a45ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32744.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32745.png b/front/public/images/small/gregtech/gt.metaitem.01/32745.png deleted file mode 100644 index 596423be39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32746.png b/front/public/images/small/gregtech/gt.metaitem.01/32746.png deleted file mode 100644 index 0161e3baf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32746.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32747.png b/front/public/images/small/gregtech/gt.metaitem.01/32747.png deleted file mode 100644 index 0161e3baf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32747.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32748.png b/front/public/images/small/gregtech/gt.metaitem.01/32748.png deleted file mode 100644 index bf83adfffc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32748.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32749.png b/front/public/images/small/gregtech/gt.metaitem.01/32749.png deleted file mode 100644 index 213ecb75b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32750.png b/front/public/images/small/gregtech/gt.metaitem.01/32750.png deleted file mode 100644 index 17d9a4e86c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32750.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32751.png b/front/public/images/small/gregtech/gt.metaitem.01/32751.png deleted file mode 100644 index 70ca68c504..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32752.png b/front/public/images/small/gregtech/gt.metaitem.01/32752.png deleted file mode 100644 index 57b59a06f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32752.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32753.png b/front/public/images/small/gregtech/gt.metaitem.01/32753.png deleted file mode 100644 index 2928c9b3d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32753.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32754.png b/front/public/images/small/gregtech/gt.metaitem.01/32754.png deleted file mode 100644 index 43b35f55fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32754.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32755.png b/front/public/images/small/gregtech/gt.metaitem.01/32755.png deleted file mode 100644 index f23ee018cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32755.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32756.png b/front/public/images/small/gregtech/gt.metaitem.01/32756.png deleted file mode 100644 index 7c45e183e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32756.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32757.png b/front/public/images/small/gregtech/gt.metaitem.01/32757.png deleted file mode 100644 index d2941592cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32757.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32758.png b/front/public/images/small/gregtech/gt.metaitem.01/32758.png deleted file mode 100644 index 6cc50e4b2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32758.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32759.png b/front/public/images/small/gregtech/gt.metaitem.01/32759.png deleted file mode 100644 index 475307f26a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32759.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32760.png b/front/public/images/small/gregtech/gt.metaitem.01/32760.png deleted file mode 100644 index 6acd6da60e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32760.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32761.png b/front/public/images/small/gregtech/gt.metaitem.01/32761.png deleted file mode 100644 index 3eaee1ed71..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32761.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32762.png b/front/public/images/small/gregtech/gt.metaitem.01/32762.png deleted file mode 100644 index 1c4ee228ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32762.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32763.png b/front/public/images/small/gregtech/gt.metaitem.01/32763.png deleted file mode 100644 index 07f5ab8822..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32763.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32764.png b/front/public/images/small/gregtech/gt.metaitem.01/32764.png deleted file mode 100644 index 6e6590a804..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32764.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/32765.png b/front/public/images/small/gregtech/gt.metaitem.01/32765.png deleted file mode 100644 index 442d1f02a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/32765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8347.png b/front/public/images/small/gregtech/gt.metaitem.01/8347.png deleted file mode 100644 index bdc448e044..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8502.png b/front/public/images/small/gregtech/gt.metaitem.01/8502.png deleted file mode 100644 index 3d693b4854..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8503.png b/front/public/images/small/gregtech/gt.metaitem.01/8503.png deleted file mode 100644 index cf6774dc54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8504.png b/front/public/images/small/gregtech/gt.metaitem.01/8504.png deleted file mode 100644 index 14f724885f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8505.png b/front/public/images/small/gregtech/gt.metaitem.01/8505.png deleted file mode 100644 index fbf8dca549..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8507.png b/front/public/images/small/gregtech/gt.metaitem.01/8507.png deleted file mode 100644 index 5396e3320a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8508.png b/front/public/images/small/gregtech/gt.metaitem.01/8508.png deleted file mode 100644 index 63a76e48fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8509.png b/front/public/images/small/gregtech/gt.metaitem.01/8509.png deleted file mode 100644 index 4a8ce50dae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8510.png b/front/public/images/small/gregtech/gt.metaitem.01/8510.png deleted file mode 100644 index e55aaeaf9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8511.png b/front/public/images/small/gregtech/gt.metaitem.01/8511.png deleted file mode 100644 index 5c81a413fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8512.png b/front/public/images/small/gregtech/gt.metaitem.01/8512.png deleted file mode 100644 index 3d693b4854..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8513.png b/front/public/images/small/gregtech/gt.metaitem.01/8513.png deleted file mode 100644 index aa4bfacdcb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8514.png b/front/public/images/small/gregtech/gt.metaitem.01/8514.png deleted file mode 100644 index 3d763dae33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8515.png b/front/public/images/small/gregtech/gt.metaitem.01/8515.png deleted file mode 100644 index ee73c72aac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8516.png b/front/public/images/small/gregtech/gt.metaitem.01/8516.png deleted file mode 100644 index ce8328f036..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8518.png b/front/public/images/small/gregtech/gt.metaitem.01/8518.png deleted file mode 100644 index 31508f750f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8519.png b/front/public/images/small/gregtech/gt.metaitem.01/8519.png deleted file mode 100644 index 31508f750f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8520.png b/front/public/images/small/gregtech/gt.metaitem.01/8520.png deleted file mode 100644 index 28ee5dd4e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8521.png b/front/public/images/small/gregtech/gt.metaitem.01/8521.png deleted file mode 100644 index 7d96e6ce9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8523.png b/front/public/images/small/gregtech/gt.metaitem.01/8523.png deleted file mode 100644 index d53b9c81ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8524.png b/front/public/images/small/gregtech/gt.metaitem.01/8524.png deleted file mode 100644 index b67843d960..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8525.png b/front/public/images/small/gregtech/gt.metaitem.01/8525.png deleted file mode 100644 index 1fbce9154b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8527.png b/front/public/images/small/gregtech/gt.metaitem.01/8527.png deleted file mode 100644 index 04610119d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8528.png b/front/public/images/small/gregtech/gt.metaitem.01/8528.png deleted file mode 100644 index cb741e08e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8529.png b/front/public/images/small/gregtech/gt.metaitem.01/8529.png deleted file mode 100644 index 36bdb09c40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8530.png b/front/public/images/small/gregtech/gt.metaitem.01/8530.png deleted file mode 100644 index fc0f29fc09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8531.png b/front/public/images/small/gregtech/gt.metaitem.01/8531.png deleted file mode 100644 index a5d3d14046..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8534.png b/front/public/images/small/gregtech/gt.metaitem.01/8534.png deleted file mode 100644 index 3ccb71562f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8537.png b/front/public/images/small/gregtech/gt.metaitem.01/8537.png deleted file mode 100644 index 71f7933245..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8538.png b/front/public/images/small/gregtech/gt.metaitem.01/8538.png deleted file mode 100644 index e1790a6e34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/8890.png b/front/public/images/small/gregtech/gt.metaitem.01/8890.png deleted file mode 100644 index 994e943294..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/8890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9006.png b/front/public/images/small/gregtech/gt.metaitem.01/9006.png deleted file mode 100644 index 6006e2ff9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9008.png b/front/public/images/small/gregtech/gt.metaitem.01/9008.png deleted file mode 100644 index 749913f62a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9010.png b/front/public/images/small/gregtech/gt.metaitem.01/9010.png deleted file mode 100644 index b810397a26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9018.png b/front/public/images/small/gregtech/gt.metaitem.01/9018.png deleted file mode 100644 index 9cd8d36445..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9019.png b/front/public/images/small/gregtech/gt.metaitem.01/9019.png deleted file mode 100644 index 78f814ffee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9020.png b/front/public/images/small/gregtech/gt.metaitem.01/9020.png deleted file mode 100644 index cf4f08a2a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9025.png b/front/public/images/small/gregtech/gt.metaitem.01/9025.png deleted file mode 100644 index e29938a70a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9027.png b/front/public/images/small/gregtech/gt.metaitem.01/9027.png deleted file mode 100644 index e4ebb55bf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9028.png b/front/public/images/small/gregtech/gt.metaitem.01/9028.png deleted file mode 100644 index 88a8368aa4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9029.png b/front/public/images/small/gregtech/gt.metaitem.01/9029.png deleted file mode 100644 index a345216d5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9030.png b/front/public/images/small/gregtech/gt.metaitem.01/9030.png deleted file mode 100644 index 5da5df96c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9031.png b/front/public/images/small/gregtech/gt.metaitem.01/9031.png deleted file mode 100644 index d9013cf002..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9032.png b/front/public/images/small/gregtech/gt.metaitem.01/9032.png deleted file mode 100644 index a4e5848721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9033.png b/front/public/images/small/gregtech/gt.metaitem.01/9033.png deleted file mode 100644 index 428b143b62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9034.png b/front/public/images/small/gregtech/gt.metaitem.01/9034.png deleted file mode 100644 index aeaacde09b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9035.png b/front/public/images/small/gregtech/gt.metaitem.01/9035.png deleted file mode 100644 index 18a43922db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9036.png b/front/public/images/small/gregtech/gt.metaitem.01/9036.png deleted file mode 100644 index 44e6c0421b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9037.png b/front/public/images/small/gregtech/gt.metaitem.01/9037.png deleted file mode 100644 index c7da50f54e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9039.png b/front/public/images/small/gregtech/gt.metaitem.01/9039.png deleted file mode 100644 index 877e78b7aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9043.png b/front/public/images/small/gregtech/gt.metaitem.01/9043.png deleted file mode 100644 index 688704b9f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9045.png b/front/public/images/small/gregtech/gt.metaitem.01/9045.png deleted file mode 100644 index 1ad64aad9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9047.png b/front/public/images/small/gregtech/gt.metaitem.01/9047.png deleted file mode 100644 index 12a10c1477..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9048.png b/front/public/images/small/gregtech/gt.metaitem.01/9048.png deleted file mode 100644 index 8df902f3dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9052.png b/front/public/images/small/gregtech/gt.metaitem.01/9052.png deleted file mode 100644 index e52a0f1124..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9054.png b/front/public/images/small/gregtech/gt.metaitem.01/9054.png deleted file mode 100644 index c7da50f54e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9056.png b/front/public/images/small/gregtech/gt.metaitem.01/9056.png deleted file mode 100644 index 5920865819..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9057.png b/front/public/images/small/gregtech/gt.metaitem.01/9057.png deleted file mode 100644 index 002d7ae4d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9058.png b/front/public/images/small/gregtech/gt.metaitem.01/9058.png deleted file mode 100644 index 1dd018c818..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9059.png b/front/public/images/small/gregtech/gt.metaitem.01/9059.png deleted file mode 100644 index 61d51b8663..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9062.png b/front/public/images/small/gregtech/gt.metaitem.01/9062.png deleted file mode 100644 index 17680ea8d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9063.png b/front/public/images/small/gregtech/gt.metaitem.01/9063.png deleted file mode 100644 index a557888dbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9064.png b/front/public/images/small/gregtech/gt.metaitem.01/9064.png deleted file mode 100644 index c2a1a5046c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9065.png b/front/public/images/small/gregtech/gt.metaitem.01/9065.png deleted file mode 100644 index 0e18280eb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9066.png b/front/public/images/small/gregtech/gt.metaitem.01/9066.png deleted file mode 100644 index 49e06ffb6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9067.png b/front/public/images/small/gregtech/gt.metaitem.01/9067.png deleted file mode 100644 index 10634d4f83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9068.png b/front/public/images/small/gregtech/gt.metaitem.01/9068.png deleted file mode 100644 index 2478bfcadf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9069.png b/front/public/images/small/gregtech/gt.metaitem.01/9069.png deleted file mode 100644 index bb340a415f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9070.png b/front/public/images/small/gregtech/gt.metaitem.01/9070.png deleted file mode 100644 index 3d212e45da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9071.png b/front/public/images/small/gregtech/gt.metaitem.01/9071.png deleted file mode 100644 index f72a2ce820..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9072.png b/front/public/images/small/gregtech/gt.metaitem.01/9072.png deleted file mode 100644 index a557888dbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9073.png b/front/public/images/small/gregtech/gt.metaitem.01/9073.png deleted file mode 100644 index de4f546bb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9074.png b/front/public/images/small/gregtech/gt.metaitem.01/9074.png deleted file mode 100644 index 40ec85f6d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9075.png b/front/public/images/small/gregtech/gt.metaitem.01/9075.png deleted file mode 100644 index cb3afa84ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9076.png b/front/public/images/small/gregtech/gt.metaitem.01/9076.png deleted file mode 100644 index f60accb934..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9077.png b/front/public/images/small/gregtech/gt.metaitem.01/9077.png deleted file mode 100644 index 52745aa62b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9078.png b/front/public/images/small/gregtech/gt.metaitem.01/9078.png deleted file mode 100644 index 71f8af8823..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9080.png b/front/public/images/small/gregtech/gt.metaitem.01/9080.png deleted file mode 100644 index b0fb086a46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9081.png b/front/public/images/small/gregtech/gt.metaitem.01/9081.png deleted file mode 100644 index a345216d5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9083.png b/front/public/images/small/gregtech/gt.metaitem.01/9083.png deleted file mode 100644 index 7532201441..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9084.png b/front/public/images/small/gregtech/gt.metaitem.01/9084.png deleted file mode 100644 index e8cd9ce372..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9085.png b/front/public/images/small/gregtech/gt.metaitem.01/9085.png deleted file mode 100644 index eb09e305ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9089.png b/front/public/images/small/gregtech/gt.metaitem.01/9089.png deleted file mode 100644 index dceedf5ca8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9090.png b/front/public/images/small/gregtech/gt.metaitem.01/9090.png deleted file mode 100644 index cf646dae09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9096.png b/front/public/images/small/gregtech/gt.metaitem.01/9096.png deleted file mode 100644 index a63f43c74c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9097.png b/front/public/images/small/gregtech/gt.metaitem.01/9097.png deleted file mode 100644 index 22306ede6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9098.png b/front/public/images/small/gregtech/gt.metaitem.01/9098.png deleted file mode 100644 index d38c4ba8fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9100.png b/front/public/images/small/gregtech/gt.metaitem.01/9100.png deleted file mode 100644 index 4ca8b65031..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9101.png b/front/public/images/small/gregtech/gt.metaitem.01/9101.png deleted file mode 100644 index caea744a7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9103.png b/front/public/images/small/gregtech/gt.metaitem.01/9103.png deleted file mode 100644 index a4e5848721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9111.png b/front/public/images/small/gregtech/gt.metaitem.01/9111.png deleted file mode 100644 index cc2be4c4fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9112.png b/front/public/images/small/gregtech/gt.metaitem.01/9112.png deleted file mode 100644 index 4117d98336..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9129.png b/front/public/images/small/gregtech/gt.metaitem.01/9129.png deleted file mode 100644 index d9013cf002..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9131.png b/front/public/images/small/gregtech/gt.metaitem.01/9131.png deleted file mode 100644 index 8924005164..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9134.png b/front/public/images/small/gregtech/gt.metaitem.01/9134.png deleted file mode 100644 index 8fae10e2df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9139.png b/front/public/images/small/gregtech/gt.metaitem.01/9139.png deleted file mode 100644 index dd3d7a6846..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9141.png b/front/public/images/small/gregtech/gt.metaitem.01/9141.png deleted file mode 100644 index cab8aa2b1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9143.png b/front/public/images/small/gregtech/gt.metaitem.01/9143.png deleted file mode 100644 index 152f1a1d6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9205.png b/front/public/images/small/gregtech/gt.metaitem.01/9205.png deleted file mode 100644 index 98b887f0e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9300.png b/front/public/images/small/gregtech/gt.metaitem.01/9300.png deleted file mode 100644 index 97b8eba71c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9301.png b/front/public/images/small/gregtech/gt.metaitem.01/9301.png deleted file mode 100644 index 739a740f7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9302.png b/front/public/images/small/gregtech/gt.metaitem.01/9302.png deleted file mode 100644 index 3a8c2d8755..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9303.png b/front/public/images/small/gregtech/gt.metaitem.01/9303.png deleted file mode 100644 index 90cb6cf1a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9304.png b/front/public/images/small/gregtech/gt.metaitem.01/9304.png deleted file mode 100644 index f0f41015f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9305.png b/front/public/images/small/gregtech/gt.metaitem.01/9305.png deleted file mode 100644 index 45fd79c6b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9306.png b/front/public/images/small/gregtech/gt.metaitem.01/9306.png deleted file mode 100644 index 7e9bbbf931..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9307.png b/front/public/images/small/gregtech/gt.metaitem.01/9307.png deleted file mode 100644 index f0f41015f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9308.png b/front/public/images/small/gregtech/gt.metaitem.01/9308.png deleted file mode 100644 index 60f25c49c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9309.png b/front/public/images/small/gregtech/gt.metaitem.01/9309.png deleted file mode 100644 index 644694dc52..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9310.png b/front/public/images/small/gregtech/gt.metaitem.01/9310.png deleted file mode 100644 index 9e737239cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9311.png b/front/public/images/small/gregtech/gt.metaitem.01/9311.png deleted file mode 100644 index 462fdd3f42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9312.png b/front/public/images/small/gregtech/gt.metaitem.01/9312.png deleted file mode 100644 index 1a4412003d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9313.png b/front/public/images/small/gregtech/gt.metaitem.01/9313.png deleted file mode 100644 index f58f82e22b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9314.png b/front/public/images/small/gregtech/gt.metaitem.01/9314.png deleted file mode 100644 index abefdf4a8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9315.png b/front/public/images/small/gregtech/gt.metaitem.01/9315.png deleted file mode 100644 index af165a73f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9316.png b/front/public/images/small/gregtech/gt.metaitem.01/9316.png deleted file mode 100644 index c1d05df7ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9317.png b/front/public/images/small/gregtech/gt.metaitem.01/9317.png deleted file mode 100644 index a472994dfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9318.png b/front/public/images/small/gregtech/gt.metaitem.01/9318.png deleted file mode 100644 index c62f458e0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9319.png b/front/public/images/small/gregtech/gt.metaitem.01/9319.png deleted file mode 100644 index 0d5deefb23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9320.png b/front/public/images/small/gregtech/gt.metaitem.01/9320.png deleted file mode 100644 index c2d17e8188..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9321.png b/front/public/images/small/gregtech/gt.metaitem.01/9321.png deleted file mode 100644 index 1a3dc238a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9323.png b/front/public/images/small/gregtech/gt.metaitem.01/9323.png deleted file mode 100644 index d55fa346f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9324.png b/front/public/images/small/gregtech/gt.metaitem.01/9324.png deleted file mode 100644 index a345216d5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9325.png b/front/public/images/small/gregtech/gt.metaitem.01/9325.png deleted file mode 100644 index 6586217273..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9326.png b/front/public/images/small/gregtech/gt.metaitem.01/9326.png deleted file mode 100644 index 725fede5ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9327.png b/front/public/images/small/gregtech/gt.metaitem.01/9327.png deleted file mode 100644 index b2e320bcdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9328.png b/front/public/images/small/gregtech/gt.metaitem.01/9328.png deleted file mode 100644 index a557888dbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9329.png b/front/public/images/small/gregtech/gt.metaitem.01/9329.png deleted file mode 100644 index cdd33d7ea5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9330.png b/front/public/images/small/gregtech/gt.metaitem.01/9330.png deleted file mode 100644 index 72c998c548..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9331.png b/front/public/images/small/gregtech/gt.metaitem.01/9331.png deleted file mode 100644 index 6ca636baa3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9333.png b/front/public/images/small/gregtech/gt.metaitem.01/9333.png deleted file mode 100644 index 0315e0f6a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9334.png b/front/public/images/small/gregtech/gt.metaitem.01/9334.png deleted file mode 100644 index 10634d4f83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9335.png b/front/public/images/small/gregtech/gt.metaitem.01/9335.png deleted file mode 100644 index 8ed51ce5a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9336.png b/front/public/images/small/gregtech/gt.metaitem.01/9336.png deleted file mode 100644 index 04c299e1e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9337.png b/front/public/images/small/gregtech/gt.metaitem.01/9337.png deleted file mode 100644 index 1735fc0aa8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9338.png b/front/public/images/small/gregtech/gt.metaitem.01/9338.png deleted file mode 100644 index 000a052680..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9339.png b/front/public/images/small/gregtech/gt.metaitem.01/9339.png deleted file mode 100644 index b220a004f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9340.png b/front/public/images/small/gregtech/gt.metaitem.01/9340.png deleted file mode 100644 index 194f83c108..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9341.png b/front/public/images/small/gregtech/gt.metaitem.01/9341.png deleted file mode 100644 index 434df06167..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9342.png b/front/public/images/small/gregtech/gt.metaitem.01/9342.png deleted file mode 100644 index 3219af1ca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9343.png b/front/public/images/small/gregtech/gt.metaitem.01/9343.png deleted file mode 100644 index 495656bd9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9344.png b/front/public/images/small/gregtech/gt.metaitem.01/9344.png deleted file mode 100644 index 8a772ce0ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9345.png b/front/public/images/small/gregtech/gt.metaitem.01/9345.png deleted file mode 100644 index d977a7126e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9346.png b/front/public/images/small/gregtech/gt.metaitem.01/9346.png deleted file mode 100644 index ea74276a64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9348.png b/front/public/images/small/gregtech/gt.metaitem.01/9348.png deleted file mode 100644 index 645ddb4bcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9349.png b/front/public/images/small/gregtech/gt.metaitem.01/9349.png deleted file mode 100644 index 759410a66a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9350.png b/front/public/images/small/gregtech/gt.metaitem.01/9350.png deleted file mode 100644 index fe9a15270a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9351.png b/front/public/images/small/gregtech/gt.metaitem.01/9351.png deleted file mode 100644 index 01dc4a48b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9352.png b/front/public/images/small/gregtech/gt.metaitem.01/9352.png deleted file mode 100644 index ee7477c86a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9353.png b/front/public/images/small/gregtech/gt.metaitem.01/9353.png deleted file mode 100644 index 9221fc752f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9354.png b/front/public/images/small/gregtech/gt.metaitem.01/9354.png deleted file mode 100644 index a03be610bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9355.png b/front/public/images/small/gregtech/gt.metaitem.01/9355.png deleted file mode 100644 index b2cff68a62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9356.png b/front/public/images/small/gregtech/gt.metaitem.01/9356.png deleted file mode 100644 index 4555211f60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9357.png b/front/public/images/small/gregtech/gt.metaitem.01/9357.png deleted file mode 100644 index 2376864056..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9358.png b/front/public/images/small/gregtech/gt.metaitem.01/9358.png deleted file mode 100644 index 7eeaf56624..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9359.png b/front/public/images/small/gregtech/gt.metaitem.01/9359.png deleted file mode 100644 index d14f83435d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9360.png b/front/public/images/small/gregtech/gt.metaitem.01/9360.png deleted file mode 100644 index bbd0091cc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9361.png b/front/public/images/small/gregtech/gt.metaitem.01/9361.png deleted file mode 100644 index 978290e7c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9362.png b/front/public/images/small/gregtech/gt.metaitem.01/9362.png deleted file mode 100644 index fa870113bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9363.png b/front/public/images/small/gregtech/gt.metaitem.01/9363.png deleted file mode 100644 index a4e5848721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9364.png b/front/public/images/small/gregtech/gt.metaitem.01/9364.png deleted file mode 100644 index 8bf39864e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9365.png b/front/public/images/small/gregtech/gt.metaitem.01/9365.png deleted file mode 100644 index 9b344f3f06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9366.png b/front/public/images/small/gregtech/gt.metaitem.01/9366.png deleted file mode 100644 index 053d3c2fd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9367.png b/front/public/images/small/gregtech/gt.metaitem.01/9367.png deleted file mode 100644 index 38b127a2cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9368.png b/front/public/images/small/gregtech/gt.metaitem.01/9368.png deleted file mode 100644 index 0ac6a0b8e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9369.png b/front/public/images/small/gregtech/gt.metaitem.01/9369.png deleted file mode 100644 index 34e64987ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9370.png b/front/public/images/small/gregtech/gt.metaitem.01/9370.png deleted file mode 100644 index 011f5827b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9371.png b/front/public/images/small/gregtech/gt.metaitem.01/9371.png deleted file mode 100644 index af35b66e67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9372.png b/front/public/images/small/gregtech/gt.metaitem.01/9372.png deleted file mode 100644 index 16f077d7b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9373.png b/front/public/images/small/gregtech/gt.metaitem.01/9373.png deleted file mode 100644 index f9db2ea72e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9374.png b/front/public/images/small/gregtech/gt.metaitem.01/9374.png deleted file mode 100644 index 876654110d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9378.png b/front/public/images/small/gregtech/gt.metaitem.01/9378.png deleted file mode 100644 index f286851a5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9379.png b/front/public/images/small/gregtech/gt.metaitem.01/9379.png deleted file mode 100644 index 48c8621f25..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9380.png b/front/public/images/small/gregtech/gt.metaitem.01/9380.png deleted file mode 100644 index 61201c448d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9381.png b/front/public/images/small/gregtech/gt.metaitem.01/9381.png deleted file mode 100644 index 5fd2e74d26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9382.png b/front/public/images/small/gregtech/gt.metaitem.01/9382.png deleted file mode 100644 index 024b1b210f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9383.png b/front/public/images/small/gregtech/gt.metaitem.01/9383.png deleted file mode 100644 index 3323577a49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9384.png b/front/public/images/small/gregtech/gt.metaitem.01/9384.png deleted file mode 100644 index c8ee0984f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9385.png b/front/public/images/small/gregtech/gt.metaitem.01/9385.png deleted file mode 100644 index b04a8c39ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9386.png b/front/public/images/small/gregtech/gt.metaitem.01/9386.png deleted file mode 100644 index 2f1c11fb8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9387.png b/front/public/images/small/gregtech/gt.metaitem.01/9387.png deleted file mode 100644 index aa0022c26f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9388.png b/front/public/images/small/gregtech/gt.metaitem.01/9388.png deleted file mode 100644 index f2368286b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9389.png b/front/public/images/small/gregtech/gt.metaitem.01/9389.png deleted file mode 100644 index 21a8a1011c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9390.png b/front/public/images/small/gregtech/gt.metaitem.01/9390.png deleted file mode 100644 index 23912e7b6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9391.png b/front/public/images/small/gregtech/gt.metaitem.01/9391.png deleted file mode 100644 index 87486650ec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9392.png b/front/public/images/small/gregtech/gt.metaitem.01/9392.png deleted file mode 100644 index 79bef49270..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9393.png b/front/public/images/small/gregtech/gt.metaitem.01/9393.png deleted file mode 100644 index caa3ac47d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9394.png b/front/public/images/small/gregtech/gt.metaitem.01/9394.png deleted file mode 100644 index 0d5deefb23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9395.png b/front/public/images/small/gregtech/gt.metaitem.01/9395.png deleted file mode 100644 index f2368286b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9397.png b/front/public/images/small/gregtech/gt.metaitem.01/9397.png deleted file mode 100644 index 79a5f2902d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9398.png b/front/public/images/small/gregtech/gt.metaitem.01/9398.png deleted file mode 100644 index 36dee26202..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9399.png b/front/public/images/small/gregtech/gt.metaitem.01/9399.png deleted file mode 100644 index eb4abb06f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9400.png b/front/public/images/small/gregtech/gt.metaitem.01/9400.png deleted file mode 100644 index 0d435abf9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9401.png b/front/public/images/small/gregtech/gt.metaitem.01/9401.png deleted file mode 100644 index 3640fb79c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9402.png b/front/public/images/small/gregtech/gt.metaitem.01/9402.png deleted file mode 100644 index d24def2c88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9403.png b/front/public/images/small/gregtech/gt.metaitem.01/9403.png deleted file mode 100644 index d6e8d574f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9404.png b/front/public/images/small/gregtech/gt.metaitem.01/9404.png deleted file mode 100644 index affa70d1d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9405.png b/front/public/images/small/gregtech/gt.metaitem.01/9405.png deleted file mode 100644 index 7da599ed2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9406.png b/front/public/images/small/gregtech/gt.metaitem.01/9406.png deleted file mode 100644 index 46951b90d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9407.png b/front/public/images/small/gregtech/gt.metaitem.01/9407.png deleted file mode 100644 index b18d4e6338..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9408.png b/front/public/images/small/gregtech/gt.metaitem.01/9408.png deleted file mode 100644 index e7c55ea7d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9470.png b/front/public/images/small/gregtech/gt.metaitem.01/9470.png deleted file mode 100644 index ad5f646498..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9471.png b/front/public/images/small/gregtech/gt.metaitem.01/9471.png deleted file mode 100644 index 002d7ae4d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9472.png b/front/public/images/small/gregtech/gt.metaitem.01/9472.png deleted file mode 100644 index f2368286b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9473.png b/front/public/images/small/gregtech/gt.metaitem.01/9473.png deleted file mode 100644 index 85ff38b1fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9485.png b/front/public/images/small/gregtech/gt.metaitem.01/9485.png deleted file mode 100644 index 8c69e51144..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9488.png b/front/public/images/small/gregtech/gt.metaitem.01/9488.png deleted file mode 100644 index 26ea40fa9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9489.png b/front/public/images/small/gregtech/gt.metaitem.01/9489.png deleted file mode 100644 index eeee95ba15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9521.png b/front/public/images/small/gregtech/gt.metaitem.01/9521.png deleted file mode 100644 index c62f458e0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9529.png b/front/public/images/small/gregtech/gt.metaitem.01/9529.png deleted file mode 100644 index 24ecb754b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9576.png b/front/public/images/small/gregtech/gt.metaitem.01/9576.png deleted file mode 100644 index c171982363..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9581.png b/front/public/images/small/gregtech/gt.metaitem.01/9581.png deleted file mode 100644 index 8fb6ef1659..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9582.png b/front/public/images/small/gregtech/gt.metaitem.01/9582.png deleted file mode 100644 index 0b185f6675..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9583.png b/front/public/images/small/gregtech/gt.metaitem.01/9583.png deleted file mode 100644 index 5f876c5af7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9585.png b/front/public/images/small/gregtech/gt.metaitem.01/9585.png deleted file mode 100644 index 85d4358d8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9586.png b/front/public/images/small/gregtech/gt.metaitem.01/9586.png deleted file mode 100644 index 5ba14f6507..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9588.png b/front/public/images/small/gregtech/gt.metaitem.01/9588.png deleted file mode 100644 index aa4332318e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9599.png b/front/public/images/small/gregtech/gt.metaitem.01/9599.png deleted file mode 100644 index 3e56966700..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9610.png b/front/public/images/small/gregtech/gt.metaitem.01/9610.png deleted file mode 100644 index 16d249d61d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9611.png b/front/public/images/small/gregtech/gt.metaitem.01/9611.png deleted file mode 100644 index 606b0b1fd6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9613.png b/front/public/images/small/gregtech/gt.metaitem.01/9613.png deleted file mode 100644 index 1541116562..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9631.png b/front/public/images/small/gregtech/gt.metaitem.01/9631.png deleted file mode 100644 index ff93060586..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9635.png b/front/public/images/small/gregtech/gt.metaitem.01/9635.png deleted file mode 100644 index bcabc1896b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9636.png b/front/public/images/small/gregtech/gt.metaitem.01/9636.png deleted file mode 100644 index 381cc3ebfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9649.png b/front/public/images/small/gregtech/gt.metaitem.01/9649.png deleted file mode 100644 index 12cc991652..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9765.png b/front/public/images/small/gregtech/gt.metaitem.01/9765.png deleted file mode 100644 index c4b7d9e411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9770.png b/front/public/images/small/gregtech/gt.metaitem.01/9770.png deleted file mode 100644 index 053e6fa2d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9772.png b/front/public/images/small/gregtech/gt.metaitem.01/9772.png deleted file mode 100644 index 42ad1fbcca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9804.png b/front/public/images/small/gregtech/gt.metaitem.01/9804.png deleted file mode 100644 index 483170784d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9809.png b/front/public/images/small/gregtech/gt.metaitem.01/9809.png deleted file mode 100644 index 3d433a8133..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9829.png b/front/public/images/small/gregtech/gt.metaitem.01/9829.png deleted file mode 100644 index 86d12c4f63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9856.png b/front/public/images/small/gregtech/gt.metaitem.01/9856.png deleted file mode 100644 index fb1e183bf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9868.png b/front/public/images/small/gregtech/gt.metaitem.01/9868.png deleted file mode 100644 index e0cedb4071..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9874.png b/front/public/images/small/gregtech/gt.metaitem.01/9874.png deleted file mode 100644 index c7a2c208e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9880.png b/front/public/images/small/gregtech/gt.metaitem.01/9880.png deleted file mode 100644 index 5804166c59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9884.png b/front/public/images/small/gregtech/gt.metaitem.01/9884.png deleted file mode 100644 index 55cdcd7035..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9889.png b/front/public/images/small/gregtech/gt.metaitem.01/9889.png deleted file mode 100644 index 8ff7b3a4af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9912.png b/front/public/images/small/gregtech/gt.metaitem.01/9912.png deleted file mode 100644 index 367cdd9b79..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9913.png b/front/public/images/small/gregtech/gt.metaitem.01/9913.png deleted file mode 100644 index bc1dcc0af2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9951.png b/front/public/images/small/gregtech/gt.metaitem.01/9951.png deleted file mode 100644 index 045120b178..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9952.png b/front/public/images/small/gregtech/gt.metaitem.01/9952.png deleted file mode 100644 index 0a49069a5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9956.png b/front/public/images/small/gregtech/gt.metaitem.01/9956.png deleted file mode 100644 index a39faf9dc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9966.png b/front/public/images/small/gregtech/gt.metaitem.01/9966.png deleted file mode 100644 index 498464436d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9970.png b/front/public/images/small/gregtech/gt.metaitem.01/9970.png deleted file mode 100644 index 0b72ecfec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9974.png b/front/public/images/small/gregtech/gt.metaitem.01/9974.png deleted file mode 100644 index c151553fc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9975.png b/front/public/images/small/gregtech/gt.metaitem.01/9975.png deleted file mode 100644 index 58637dbb0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9976.png b/front/public/images/small/gregtech/gt.metaitem.01/9976.png deleted file mode 100644 index 60244af2ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9977.png b/front/public/images/small/gregtech/gt.metaitem.01/9977.png deleted file mode 100644 index 697b0ed9d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9978.png b/front/public/images/small/gregtech/gt.metaitem.01/9978.png deleted file mode 100644 index c61b12bfff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9979.png b/front/public/images/small/gregtech/gt.metaitem.01/9979.png deleted file mode 100644 index 88d6d78c74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9980.png b/front/public/images/small/gregtech/gt.metaitem.01/9980.png deleted file mode 100644 index 0aa45d0d10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9981.png b/front/public/images/small/gregtech/gt.metaitem.01/9981.png deleted file mode 100644 index 33be478b34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9982.png b/front/public/images/small/gregtech/gt.metaitem.01/9982.png deleted file mode 100644 index b822cb7134..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9984.png b/front/public/images/small/gregtech/gt.metaitem.01/9984.png deleted file mode 100644 index 0d5deefb23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9985.png b/front/public/images/small/gregtech/gt.metaitem.01/9985.png deleted file mode 100644 index 5476bcf48f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9986.png b/front/public/images/small/gregtech/gt.metaitem.01/9986.png deleted file mode 100644 index eeedb55658..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9987.png b/front/public/images/small/gregtech/gt.metaitem.01/9987.png deleted file mode 100644 index b9e7f2a4d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9988.png b/front/public/images/small/gregtech/gt.metaitem.01/9988.png deleted file mode 100644 index 6d0bc36042..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9989.png b/front/public/images/small/gregtech/gt.metaitem.01/9989.png deleted file mode 100644 index 64b070b2e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9990.png b/front/public/images/small/gregtech/gt.metaitem.01/9990.png deleted file mode 100644 index fd1fa93c3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9991.png b/front/public/images/small/gregtech/gt.metaitem.01/9991.png deleted file mode 100644 index be8324481c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.01/9992.png b/front/public/images/small/gregtech/gt.metaitem.01/9992.png deleted file mode 100644 index 807634281b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.01/9992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16008.png b/front/public/images/small/gregtech/gt.metaitem.02/16008.png deleted file mode 100644 index 7a4b38da5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16010.png b/front/public/images/small/gregtech/gt.metaitem.02/16010.png deleted file mode 100644 index 317eb0c253..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16019.png b/front/public/images/small/gregtech/gt.metaitem.02/16019.png deleted file mode 100644 index 4026754f45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16028.png b/front/public/images/small/gregtech/gt.metaitem.02/16028.png deleted file mode 100644 index 37901dacb6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16030.png b/front/public/images/small/gregtech/gt.metaitem.02/16030.png deleted file mode 100644 index 148f2fc8be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16031.png b/front/public/images/small/gregtech/gt.metaitem.02/16031.png deleted file mode 100644 index 0d5ecc417f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16032.png b/front/public/images/small/gregtech/gt.metaitem.02/16032.png deleted file mode 100644 index 333c37db34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16033.png b/front/public/images/small/gregtech/gt.metaitem.02/16033.png deleted file mode 100644 index e4a6c11fd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16034.png b/front/public/images/small/gregtech/gt.metaitem.02/16034.png deleted file mode 100644 index ec0f3c9fd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16048.png b/front/public/images/small/gregtech/gt.metaitem.02/16048.png deleted file mode 100644 index 211e6634bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16052.png b/front/public/images/small/gregtech/gt.metaitem.02/16052.png deleted file mode 100644 index bb08a911d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16054.png b/front/public/images/small/gregtech/gt.metaitem.02/16054.png deleted file mode 100644 index 12b8ad9639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16067.png b/front/public/images/small/gregtech/gt.metaitem.02/16067.png deleted file mode 100644 index 86c5629fe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16081.png b/front/public/images/small/gregtech/gt.metaitem.02/16081.png deleted file mode 100644 index 5eceb78bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16083.png b/front/public/images/small/gregtech/gt.metaitem.02/16083.png deleted file mode 100644 index f8c54ae097..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16084.png b/front/public/images/small/gregtech/gt.metaitem.02/16084.png deleted file mode 100644 index 50750564b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16085.png b/front/public/images/small/gregtech/gt.metaitem.02/16085.png deleted file mode 100644 index b91aa461b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16086.png b/front/public/images/small/gregtech/gt.metaitem.02/16086.png deleted file mode 100644 index b57b7dfaf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16089.png b/front/public/images/small/gregtech/gt.metaitem.02/16089.png deleted file mode 100644 index d9e17502cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16090.png b/front/public/images/small/gregtech/gt.metaitem.02/16090.png deleted file mode 100644 index 5c0c46f24b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16096.png b/front/public/images/small/gregtech/gt.metaitem.02/16096.png deleted file mode 100644 index c4c5264df2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16097.png b/front/public/images/small/gregtech/gt.metaitem.02/16097.png deleted file mode 100644 index 9e0f97c7e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16098.png b/front/public/images/small/gregtech/gt.metaitem.02/16098.png deleted file mode 100644 index b0c66d0a60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16100.png b/front/public/images/small/gregtech/gt.metaitem.02/16100.png deleted file mode 100644 index d74ad59b02..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16101.png b/front/public/images/small/gregtech/gt.metaitem.02/16101.png deleted file mode 100644 index 4ca63b5a9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16111.png b/front/public/images/small/gregtech/gt.metaitem.02/16111.png deleted file mode 100644 index 43ec71b8c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16112.png b/front/public/images/small/gregtech/gt.metaitem.02/16112.png deleted file mode 100644 index eedef04fa7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16129.png b/front/public/images/small/gregtech/gt.metaitem.02/16129.png deleted file mode 100644 index 0d5ecc417f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16139.png b/front/public/images/small/gregtech/gt.metaitem.02/16139.png deleted file mode 100644 index 53270f685e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16141.png b/front/public/images/small/gregtech/gt.metaitem.02/16141.png deleted file mode 100644 index 0531cc9f44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16143.png b/front/public/images/small/gregtech/gt.metaitem.02/16143.png deleted file mode 100644 index 2dcb77f2d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16201.png b/front/public/images/small/gregtech/gt.metaitem.02/16201.png deleted file mode 100644 index 778281d581..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16202.png b/front/public/images/small/gregtech/gt.metaitem.02/16202.png deleted file mode 100644 index af98fa689d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16203.png b/front/public/images/small/gregtech/gt.metaitem.02/16203.png deleted file mode 100644 index 339a70c4cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16205.png b/front/public/images/small/gregtech/gt.metaitem.02/16205.png deleted file mode 100644 index 748ae81261..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16300.png b/front/public/images/small/gregtech/gt.metaitem.02/16300.png deleted file mode 100644 index 095d5744f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16301.png b/front/public/images/small/gregtech/gt.metaitem.02/16301.png deleted file mode 100644 index 5421c970b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16302.png b/front/public/images/small/gregtech/gt.metaitem.02/16302.png deleted file mode 100644 index 60bfc4dcfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16303.png b/front/public/images/small/gregtech/gt.metaitem.02/16303.png deleted file mode 100644 index 3685e785ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16304.png b/front/public/images/small/gregtech/gt.metaitem.02/16304.png deleted file mode 100644 index 983a8a7dc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16305.png b/front/public/images/small/gregtech/gt.metaitem.02/16305.png deleted file mode 100644 index bb08a911d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16306.png b/front/public/images/small/gregtech/gt.metaitem.02/16306.png deleted file mode 100644 index e5857a9fdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16307.png b/front/public/images/small/gregtech/gt.metaitem.02/16307.png deleted file mode 100644 index 983a8a7dc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16310.png b/front/public/images/small/gregtech/gt.metaitem.02/16310.png deleted file mode 100644 index f84453c78b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16311.png b/front/public/images/small/gregtech/gt.metaitem.02/16311.png deleted file mode 100644 index 557b26d40d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16312.png b/front/public/images/small/gregtech/gt.metaitem.02/16312.png deleted file mode 100644 index 34339c31c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16313.png b/front/public/images/small/gregtech/gt.metaitem.02/16313.png deleted file mode 100644 index 862045649a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16316.png b/front/public/images/small/gregtech/gt.metaitem.02/16316.png deleted file mode 100644 index 8482f1b18a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16317.png b/front/public/images/small/gregtech/gt.metaitem.02/16317.png deleted file mode 100644 index 58da5e7013..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16318.png b/front/public/images/small/gregtech/gt.metaitem.02/16318.png deleted file mode 100644 index bf9730c385..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16319.png b/front/public/images/small/gregtech/gt.metaitem.02/16319.png deleted file mode 100644 index fa222f77bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16320.png b/front/public/images/small/gregtech/gt.metaitem.02/16320.png deleted file mode 100644 index d48ceac618..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16321.png b/front/public/images/small/gregtech/gt.metaitem.02/16321.png deleted file mode 100644 index e41770a8d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16323.png b/front/public/images/small/gregtech/gt.metaitem.02/16323.png deleted file mode 100644 index 4c528bb5ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16324.png b/front/public/images/small/gregtech/gt.metaitem.02/16324.png deleted file mode 100644 index 5eceb78bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16325.png b/front/public/images/small/gregtech/gt.metaitem.02/16325.png deleted file mode 100644 index 46abc838ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16326.png b/front/public/images/small/gregtech/gt.metaitem.02/16326.png deleted file mode 100644 index 22a8d4b155..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16327.png b/front/public/images/small/gregtech/gt.metaitem.02/16327.png deleted file mode 100644 index e4504778c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16328.png b/front/public/images/small/gregtech/gt.metaitem.02/16328.png deleted file mode 100644 index fa222f77bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16329.png b/front/public/images/small/gregtech/gt.metaitem.02/16329.png deleted file mode 100644 index 307885fd2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16330.png b/front/public/images/small/gregtech/gt.metaitem.02/16330.png deleted file mode 100644 index ee14af8635..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16331.png b/front/public/images/small/gregtech/gt.metaitem.02/16331.png deleted file mode 100644 index 3f802cc41b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16333.png b/front/public/images/small/gregtech/gt.metaitem.02/16333.png deleted file mode 100644 index 242296a7aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16334.png b/front/public/images/small/gregtech/gt.metaitem.02/16334.png deleted file mode 100644 index 86c5629fe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16335.png b/front/public/images/small/gregtech/gt.metaitem.02/16335.png deleted file mode 100644 index c21f6799d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16336.png b/front/public/images/small/gregtech/gt.metaitem.02/16336.png deleted file mode 100644 index ce1c141030..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16337.png b/front/public/images/small/gregtech/gt.metaitem.02/16337.png deleted file mode 100644 index 26bbaa3b4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16338.png b/front/public/images/small/gregtech/gt.metaitem.02/16338.png deleted file mode 100644 index dc27492ffd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16339.png b/front/public/images/small/gregtech/gt.metaitem.02/16339.png deleted file mode 100644 index 058f99e287..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16340.png b/front/public/images/small/gregtech/gt.metaitem.02/16340.png deleted file mode 100644 index ac678297b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16341.png b/front/public/images/small/gregtech/gt.metaitem.02/16341.png deleted file mode 100644 index 96497597e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16342.png b/front/public/images/small/gregtech/gt.metaitem.02/16342.png deleted file mode 100644 index 2fd059bb74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16343.png b/front/public/images/small/gregtech/gt.metaitem.02/16343.png deleted file mode 100644 index a4065a3043..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16344.png b/front/public/images/small/gregtech/gt.metaitem.02/16344.png deleted file mode 100644 index b74f531776..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16346.png b/front/public/images/small/gregtech/gt.metaitem.02/16346.png deleted file mode 100644 index 4cb695c51f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16348.png b/front/public/images/small/gregtech/gt.metaitem.02/16348.png deleted file mode 100644 index 7c0b0a6e88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16349.png b/front/public/images/small/gregtech/gt.metaitem.02/16349.png deleted file mode 100644 index 1b38fbd2c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16350.png b/front/public/images/small/gregtech/gt.metaitem.02/16350.png deleted file mode 100644 index e9d109c6dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16351.png b/front/public/images/small/gregtech/gt.metaitem.02/16351.png deleted file mode 100644 index 484c38cc54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16352.png b/front/public/images/small/gregtech/gt.metaitem.02/16352.png deleted file mode 100644 index d743a46520..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16353.png b/front/public/images/small/gregtech/gt.metaitem.02/16353.png deleted file mode 100644 index 8ba4cfacb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16354.png b/front/public/images/small/gregtech/gt.metaitem.02/16354.png deleted file mode 100644 index 333c37db34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16355.png b/front/public/images/small/gregtech/gt.metaitem.02/16355.png deleted file mode 100644 index bb08a911d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16356.png b/front/public/images/small/gregtech/gt.metaitem.02/16356.png deleted file mode 100644 index 86c5629fe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16362.png b/front/public/images/small/gregtech/gt.metaitem.02/16362.png deleted file mode 100644 index 42ea503425..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16363.png b/front/public/images/small/gregtech/gt.metaitem.02/16363.png deleted file mode 100644 index 333c37db34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16364.png b/front/public/images/small/gregtech/gt.metaitem.02/16364.png deleted file mode 100644 index a9cd61ac28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16365.png b/front/public/images/small/gregtech/gt.metaitem.02/16365.png deleted file mode 100644 index d14cec68b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16366.png b/front/public/images/small/gregtech/gt.metaitem.02/16366.png deleted file mode 100644 index ac576ccd7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16367.png b/front/public/images/small/gregtech/gt.metaitem.02/16367.png deleted file mode 100644 index 1fe914f0bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16368.png b/front/public/images/small/gregtech/gt.metaitem.02/16368.png deleted file mode 100644 index 23d01227f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16369.png b/front/public/images/small/gregtech/gt.metaitem.02/16369.png deleted file mode 100644 index f6967683e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16370.png b/front/public/images/small/gregtech/gt.metaitem.02/16370.png deleted file mode 100644 index c1e6317fc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16371.png b/front/public/images/small/gregtech/gt.metaitem.02/16371.png deleted file mode 100644 index 942e044dfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16372.png b/front/public/images/small/gregtech/gt.metaitem.02/16372.png deleted file mode 100644 index d05a2073aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16373.png b/front/public/images/small/gregtech/gt.metaitem.02/16373.png deleted file mode 100644 index 4e85c534ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16374.png b/front/public/images/small/gregtech/gt.metaitem.02/16374.png deleted file mode 100644 index 74fb3e3902..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16378.png b/front/public/images/small/gregtech/gt.metaitem.02/16378.png deleted file mode 100644 index 20e6686bd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16379.png b/front/public/images/small/gregtech/gt.metaitem.02/16379.png deleted file mode 100644 index 88a71cab7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16380.png b/front/public/images/small/gregtech/gt.metaitem.02/16380.png deleted file mode 100644 index c7527cd2c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16381.png b/front/public/images/small/gregtech/gt.metaitem.02/16381.png deleted file mode 100644 index afd3b8940f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16382.png b/front/public/images/small/gregtech/gt.metaitem.02/16382.png deleted file mode 100644 index 349ab652c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16383.png b/front/public/images/small/gregtech/gt.metaitem.02/16383.png deleted file mode 100644 index e62fac863c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16384.png b/front/public/images/small/gregtech/gt.metaitem.02/16384.png deleted file mode 100644 index 682843dd80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16385.png b/front/public/images/small/gregtech/gt.metaitem.02/16385.png deleted file mode 100644 index a6434e3c00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16386.png b/front/public/images/small/gregtech/gt.metaitem.02/16386.png deleted file mode 100644 index d5fe6054df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16387.png b/front/public/images/small/gregtech/gt.metaitem.02/16387.png deleted file mode 100644 index 62f3158410..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16388.png b/front/public/images/small/gregtech/gt.metaitem.02/16388.png deleted file mode 100644 index 5eceb78bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16389.png b/front/public/images/small/gregtech/gt.metaitem.02/16389.png deleted file mode 100644 index dacca805d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16390.png b/front/public/images/small/gregtech/gt.metaitem.02/16390.png deleted file mode 100644 index 2fa1d73ce6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16391.png b/front/public/images/small/gregtech/gt.metaitem.02/16391.png deleted file mode 100644 index c94da1eeac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16392.png b/front/public/images/small/gregtech/gt.metaitem.02/16392.png deleted file mode 100644 index 8c6e072c77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16393.png b/front/public/images/small/gregtech/gt.metaitem.02/16393.png deleted file mode 100644 index edbe3c6018..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16394.png b/front/public/images/small/gregtech/gt.metaitem.02/16394.png deleted file mode 100644 index fa222f77bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16397.png b/front/public/images/small/gregtech/gt.metaitem.02/16397.png deleted file mode 100644 index 1039e7758c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16398.png b/front/public/images/small/gregtech/gt.metaitem.02/16398.png deleted file mode 100644 index b039dd38f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16399.png b/front/public/images/small/gregtech/gt.metaitem.02/16399.png deleted file mode 100644 index d5830addd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16400.png b/front/public/images/small/gregtech/gt.metaitem.02/16400.png deleted file mode 100644 index 153e69cdf3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16401.png b/front/public/images/small/gregtech/gt.metaitem.02/16401.png deleted file mode 100644 index 7bb89166ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16402.png b/front/public/images/small/gregtech/gt.metaitem.02/16402.png deleted file mode 100644 index 2b1b8c4d35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16403.png b/front/public/images/small/gregtech/gt.metaitem.02/16403.png deleted file mode 100644 index 263519dea0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16404.png b/front/public/images/small/gregtech/gt.metaitem.02/16404.png deleted file mode 100644 index f83a4ba82c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16405.png b/front/public/images/small/gregtech/gt.metaitem.02/16405.png deleted file mode 100644 index f171e7c948..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16406.png b/front/public/images/small/gregtech/gt.metaitem.02/16406.png deleted file mode 100644 index 2e2822437d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16407.png b/front/public/images/small/gregtech/gt.metaitem.02/16407.png deleted file mode 100644 index b4e0c3d0bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16408.png b/front/public/images/small/gregtech/gt.metaitem.02/16408.png deleted file mode 100644 index 396d9fd75e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16470.png b/front/public/images/small/gregtech/gt.metaitem.02/16470.png deleted file mode 100644 index 32ecd3ba6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16472.png b/front/public/images/small/gregtech/gt.metaitem.02/16472.png deleted file mode 100644 index 5eceb78bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16485.png b/front/public/images/small/gregtech/gt.metaitem.02/16485.png deleted file mode 100644 index 18af4e61b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16488.png b/front/public/images/small/gregtech/gt.metaitem.02/16488.png deleted file mode 100644 index bdb174112c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16489.png b/front/public/images/small/gregtech/gt.metaitem.02/16489.png deleted file mode 100644 index f289e2ad08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16521.png b/front/public/images/small/gregtech/gt.metaitem.02/16521.png deleted file mode 100644 index bf9730c385..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16529.png b/front/public/images/small/gregtech/gt.metaitem.02/16529.png deleted file mode 100644 index 346e5d4ca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16537.png b/front/public/images/small/gregtech/gt.metaitem.02/16537.png deleted file mode 100644 index 49b9193361..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16576.png b/front/public/images/small/gregtech/gt.metaitem.02/16576.png deleted file mode 100644 index cfe12b84ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16581.png b/front/public/images/small/gregtech/gt.metaitem.02/16581.png deleted file mode 100644 index ef9ece4667..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16585.png b/front/public/images/small/gregtech/gt.metaitem.02/16585.png deleted file mode 100644 index d745a9e57a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16586.png b/front/public/images/small/gregtech/gt.metaitem.02/16586.png deleted file mode 100644 index 06093c5be0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16588.png b/front/public/images/small/gregtech/gt.metaitem.02/16588.png deleted file mode 100644 index 68d80498b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16610.png b/front/public/images/small/gregtech/gt.metaitem.02/16610.png deleted file mode 100644 index 2c77d3eeda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16613.png b/front/public/images/small/gregtech/gt.metaitem.02/16613.png deleted file mode 100644 index 5ac993d142..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16770.png b/front/public/images/small/gregtech/gt.metaitem.02/16770.png deleted file mode 100644 index 0a2e897629..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16801.png b/front/public/images/small/gregtech/gt.metaitem.02/16801.png deleted file mode 100644 index 35fe12cfe8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16801.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16819.png b/front/public/images/small/gregtech/gt.metaitem.02/16819.png deleted file mode 100644 index bb08a911d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16819.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16829.png b/front/public/images/small/gregtech/gt.metaitem.02/16829.png deleted file mode 100644 index afd2490cc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16868.png b/front/public/images/small/gregtech/gt.metaitem.02/16868.png deleted file mode 100644 index 48500b1c9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16884.png b/front/public/images/small/gregtech/gt.metaitem.02/16884.png deleted file mode 100644 index 46abc838ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16912.png b/front/public/images/small/gregtech/gt.metaitem.02/16912.png deleted file mode 100644 index 2589446d2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16913.png b/front/public/images/small/gregtech/gt.metaitem.02/16913.png deleted file mode 100644 index 7c0b0a6e88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16951.png b/front/public/images/small/gregtech/gt.metaitem.02/16951.png deleted file mode 100644 index bc197047fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16952.png b/front/public/images/small/gregtech/gt.metaitem.02/16952.png deleted file mode 100644 index cf0b744e32..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16966.png b/front/public/images/small/gregtech/gt.metaitem.02/16966.png deleted file mode 100644 index f7112f7176..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16970.png b/front/public/images/small/gregtech/gt.metaitem.02/16970.png deleted file mode 100644 index 77e05f3020..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16975.png b/front/public/images/small/gregtech/gt.metaitem.02/16975.png deleted file mode 100644 index 2be3d2435b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16976.png b/front/public/images/small/gregtech/gt.metaitem.02/16976.png deleted file mode 100644 index 8c00a64769..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16977.png b/front/public/images/small/gregtech/gt.metaitem.02/16977.png deleted file mode 100644 index 781c1960fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16978.png b/front/public/images/small/gregtech/gt.metaitem.02/16978.png deleted file mode 100644 index c11d549ca7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16982.png b/front/public/images/small/gregtech/gt.metaitem.02/16982.png deleted file mode 100644 index 0240f82b27..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/16984.png b/front/public/images/small/gregtech/gt.metaitem.02/16984.png deleted file mode 100644 index fa222f77bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/16984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18006.png b/front/public/images/small/gregtech/gt.metaitem.02/18006.png deleted file mode 100644 index 935e5f39de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18008.png b/front/public/images/small/gregtech/gt.metaitem.02/18008.png deleted file mode 100644 index 5dbde94891..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18010.png b/front/public/images/small/gregtech/gt.metaitem.02/18010.png deleted file mode 100644 index 4c4f52e710..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18018.png b/front/public/images/small/gregtech/gt.metaitem.02/18018.png deleted file mode 100644 index 74ea91efd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18019.png b/front/public/images/small/gregtech/gt.metaitem.02/18019.png deleted file mode 100644 index d627f2d54b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18020.png b/front/public/images/small/gregtech/gt.metaitem.02/18020.png deleted file mode 100644 index 1e30932f7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18025.png b/front/public/images/small/gregtech/gt.metaitem.02/18025.png deleted file mode 100644 index 37dafba34a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18027.png b/front/public/images/small/gregtech/gt.metaitem.02/18027.png deleted file mode 100644 index efb5271279..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18028.png b/front/public/images/small/gregtech/gt.metaitem.02/18028.png deleted file mode 100644 index fc9ac1c506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18029.png b/front/public/images/small/gregtech/gt.metaitem.02/18029.png deleted file mode 100644 index 59ea8fae9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18030.png b/front/public/images/small/gregtech/gt.metaitem.02/18030.png deleted file mode 100644 index a0a113362f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18031.png b/front/public/images/small/gregtech/gt.metaitem.02/18031.png deleted file mode 100644 index 8aabb3e529..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18032.png b/front/public/images/small/gregtech/gt.metaitem.02/18032.png deleted file mode 100644 index 968eb95985..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18033.png b/front/public/images/small/gregtech/gt.metaitem.02/18033.png deleted file mode 100644 index 2b5b1a4202..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18034.png b/front/public/images/small/gregtech/gt.metaitem.02/18034.png deleted file mode 100644 index 8bc583aaea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18035.png b/front/public/images/small/gregtech/gt.metaitem.02/18035.png deleted file mode 100644 index be2bfc6d3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18036.png b/front/public/images/small/gregtech/gt.metaitem.02/18036.png deleted file mode 100644 index fb7be94e86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18037.png b/front/public/images/small/gregtech/gt.metaitem.02/18037.png deleted file mode 100644 index a143569ed3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18039.png b/front/public/images/small/gregtech/gt.metaitem.02/18039.png deleted file mode 100644 index fac8e64092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18043.png b/front/public/images/small/gregtech/gt.metaitem.02/18043.png deleted file mode 100644 index b64c4ab27b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18045.png b/front/public/images/small/gregtech/gt.metaitem.02/18045.png deleted file mode 100644 index ff1f057d8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18047.png b/front/public/images/small/gregtech/gt.metaitem.02/18047.png deleted file mode 100644 index 934ab0b83a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18048.png b/front/public/images/small/gregtech/gt.metaitem.02/18048.png deleted file mode 100644 index 70a5d5d3e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18052.png b/front/public/images/small/gregtech/gt.metaitem.02/18052.png deleted file mode 100644 index f06c976817..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18054.png b/front/public/images/small/gregtech/gt.metaitem.02/18054.png deleted file mode 100644 index a143569ed3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18056.png b/front/public/images/small/gregtech/gt.metaitem.02/18056.png deleted file mode 100644 index 8f89efceb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18057.png b/front/public/images/small/gregtech/gt.metaitem.02/18057.png deleted file mode 100644 index 0a11c38b7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18058.png b/front/public/images/small/gregtech/gt.metaitem.02/18058.png deleted file mode 100644 index 2dcee4c758..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18059.png b/front/public/images/small/gregtech/gt.metaitem.02/18059.png deleted file mode 100644 index 1b553d7ea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18062.png b/front/public/images/small/gregtech/gt.metaitem.02/18062.png deleted file mode 100644 index a6ca9304a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18063.png b/front/public/images/small/gregtech/gt.metaitem.02/18063.png deleted file mode 100644 index fac8e64092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18064.png b/front/public/images/small/gregtech/gt.metaitem.02/18064.png deleted file mode 100644 index fece94630f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18065.png b/front/public/images/small/gregtech/gt.metaitem.02/18065.png deleted file mode 100644 index 5fad9af8cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18066.png b/front/public/images/small/gregtech/gt.metaitem.02/18066.png deleted file mode 100644 index 2141e5a464..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18067.png b/front/public/images/small/gregtech/gt.metaitem.02/18067.png deleted file mode 100644 index f64815d0be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18068.png b/front/public/images/small/gregtech/gt.metaitem.02/18068.png deleted file mode 100644 index dedb5a49c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18069.png b/front/public/images/small/gregtech/gt.metaitem.02/18069.png deleted file mode 100644 index 9c1621dae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18070.png b/front/public/images/small/gregtech/gt.metaitem.02/18070.png deleted file mode 100644 index 766ba4105e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18071.png b/front/public/images/small/gregtech/gt.metaitem.02/18071.png deleted file mode 100644 index 018892162d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18072.png b/front/public/images/small/gregtech/gt.metaitem.02/18072.png deleted file mode 100644 index fac8e64092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18073.png b/front/public/images/small/gregtech/gt.metaitem.02/18073.png deleted file mode 100644 index 288b83474f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18074.png b/front/public/images/small/gregtech/gt.metaitem.02/18074.png deleted file mode 100644 index e3146f7f5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18075.png b/front/public/images/small/gregtech/gt.metaitem.02/18075.png deleted file mode 100644 index f21fca9f6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18076.png b/front/public/images/small/gregtech/gt.metaitem.02/18076.png deleted file mode 100644 index 330d618839..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18077.png b/front/public/images/small/gregtech/gt.metaitem.02/18077.png deleted file mode 100644 index e668d90a04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18078.png b/front/public/images/small/gregtech/gt.metaitem.02/18078.png deleted file mode 100644 index 0a2abee39a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18080.png b/front/public/images/small/gregtech/gt.metaitem.02/18080.png deleted file mode 100644 index 872746369b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18081.png b/front/public/images/small/gregtech/gt.metaitem.02/18081.png deleted file mode 100644 index 59ea8fae9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18083.png b/front/public/images/small/gregtech/gt.metaitem.02/18083.png deleted file mode 100644 index bbd8fd812b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18084.png b/front/public/images/small/gregtech/gt.metaitem.02/18084.png deleted file mode 100644 index 8239c035a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18085.png b/front/public/images/small/gregtech/gt.metaitem.02/18085.png deleted file mode 100644 index 166446b6e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18086.png b/front/public/images/small/gregtech/gt.metaitem.02/18086.png deleted file mode 100644 index b6f2b69b33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18089.png b/front/public/images/small/gregtech/gt.metaitem.02/18089.png deleted file mode 100644 index bc38ec0869..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18090.png b/front/public/images/small/gregtech/gt.metaitem.02/18090.png deleted file mode 100644 index a04dff9061..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18096.png b/front/public/images/small/gregtech/gt.metaitem.02/18096.png deleted file mode 100644 index 317df8abf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18097.png b/front/public/images/small/gregtech/gt.metaitem.02/18097.png deleted file mode 100644 index ac12690eda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18098.png b/front/public/images/small/gregtech/gt.metaitem.02/18098.png deleted file mode 100644 index cf9375b0de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18100.png b/front/public/images/small/gregtech/gt.metaitem.02/18100.png deleted file mode 100644 index a0e89f7f37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18101.png b/front/public/images/small/gregtech/gt.metaitem.02/18101.png deleted file mode 100644 index db911e6c3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18103.png b/front/public/images/small/gregtech/gt.metaitem.02/18103.png deleted file mode 100644 index 968eb95985..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18111.png b/front/public/images/small/gregtech/gt.metaitem.02/18111.png deleted file mode 100644 index 7526b14c15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18112.png b/front/public/images/small/gregtech/gt.metaitem.02/18112.png deleted file mode 100644 index 9d8eb3088c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18129.png b/front/public/images/small/gregtech/gt.metaitem.02/18129.png deleted file mode 100644 index 8aabb3e529..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18131.png b/front/public/images/small/gregtech/gt.metaitem.02/18131.png deleted file mode 100644 index 4fd9224710..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18134.png b/front/public/images/small/gregtech/gt.metaitem.02/18134.png deleted file mode 100644 index b21345960b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18139.png b/front/public/images/small/gregtech/gt.metaitem.02/18139.png deleted file mode 100644 index 827f29ef07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18141.png b/front/public/images/small/gregtech/gt.metaitem.02/18141.png deleted file mode 100644 index f59fd7e917..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18143.png b/front/public/images/small/gregtech/gt.metaitem.02/18143.png deleted file mode 100644 index a2f3456c6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18201.png b/front/public/images/small/gregtech/gt.metaitem.02/18201.png deleted file mode 100644 index 76b397171f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18202.png b/front/public/images/small/gregtech/gt.metaitem.02/18202.png deleted file mode 100644 index b581daa557..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18203.png b/front/public/images/small/gregtech/gt.metaitem.02/18203.png deleted file mode 100644 index ccb2a41a64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18205.png b/front/public/images/small/gregtech/gt.metaitem.02/18205.png deleted file mode 100644 index 8869ae730a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18206.png b/front/public/images/small/gregtech/gt.metaitem.02/18206.png deleted file mode 100644 index c3e37d5897..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18207.png b/front/public/images/small/gregtech/gt.metaitem.02/18207.png deleted file mode 100644 index 5e913b197c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18208.png b/front/public/images/small/gregtech/gt.metaitem.02/18208.png deleted file mode 100644 index cc3be9a3a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18209.png b/front/public/images/small/gregtech/gt.metaitem.02/18209.png deleted file mode 100644 index 530c1fc25f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18300.png b/front/public/images/small/gregtech/gt.metaitem.02/18300.png deleted file mode 100644 index db6cd75d26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18301.png b/front/public/images/small/gregtech/gt.metaitem.02/18301.png deleted file mode 100644 index e790833b17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18302.png b/front/public/images/small/gregtech/gt.metaitem.02/18302.png deleted file mode 100644 index 9af69a2b55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18303.png b/front/public/images/small/gregtech/gt.metaitem.02/18303.png deleted file mode 100644 index 7fb42c644b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18304.png b/front/public/images/small/gregtech/gt.metaitem.02/18304.png deleted file mode 100644 index 266cd7172c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18305.png b/front/public/images/small/gregtech/gt.metaitem.02/18305.png deleted file mode 100644 index f06c976817..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18306.png b/front/public/images/small/gregtech/gt.metaitem.02/18306.png deleted file mode 100644 index 5da830a8b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18307.png b/front/public/images/small/gregtech/gt.metaitem.02/18307.png deleted file mode 100644 index 266cd7172c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18308.png b/front/public/images/small/gregtech/gt.metaitem.02/18308.png deleted file mode 100644 index 48cf351e34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18309.png b/front/public/images/small/gregtech/gt.metaitem.02/18309.png deleted file mode 100644 index 215c5fdeae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18310.png b/front/public/images/small/gregtech/gt.metaitem.02/18310.png deleted file mode 100644 index 64e50b45fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18311.png b/front/public/images/small/gregtech/gt.metaitem.02/18311.png deleted file mode 100644 index 1bf59c344f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18312.png b/front/public/images/small/gregtech/gt.metaitem.02/18312.png deleted file mode 100644 index d9a7415c9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18313.png b/front/public/images/small/gregtech/gt.metaitem.02/18313.png deleted file mode 100644 index ab6d1f9a96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18314.png b/front/public/images/small/gregtech/gt.metaitem.02/18314.png deleted file mode 100644 index c60cbebfbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18315.png b/front/public/images/small/gregtech/gt.metaitem.02/18315.png deleted file mode 100644 index 4c25d15822..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18316.png b/front/public/images/small/gregtech/gt.metaitem.02/18316.png deleted file mode 100644 index 86abf394ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18317.png b/front/public/images/small/gregtech/gt.metaitem.02/18317.png deleted file mode 100644 index 66c75f1255..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18318.png b/front/public/images/small/gregtech/gt.metaitem.02/18318.png deleted file mode 100644 index ad280aaf48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18319.png b/front/public/images/small/gregtech/gt.metaitem.02/18319.png deleted file mode 100644 index fac8e64092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18320.png b/front/public/images/small/gregtech/gt.metaitem.02/18320.png deleted file mode 100644 index 97dc961afa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18321.png b/front/public/images/small/gregtech/gt.metaitem.02/18321.png deleted file mode 100644 index 638cb6fefd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18323.png b/front/public/images/small/gregtech/gt.metaitem.02/18323.png deleted file mode 100644 index 4f0e2a0722..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18324.png b/front/public/images/small/gregtech/gt.metaitem.02/18324.png deleted file mode 100644 index 59ea8fae9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18325.png b/front/public/images/small/gregtech/gt.metaitem.02/18325.png deleted file mode 100644 index f38f3f757f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18326.png b/front/public/images/small/gregtech/gt.metaitem.02/18326.png deleted file mode 100644 index 95915e96cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18327.png b/front/public/images/small/gregtech/gt.metaitem.02/18327.png deleted file mode 100644 index d6f4326da1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18328.png b/front/public/images/small/gregtech/gt.metaitem.02/18328.png deleted file mode 100644 index fac8e64092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18329.png b/front/public/images/small/gregtech/gt.metaitem.02/18329.png deleted file mode 100644 index 76767f6c53..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18330.png b/front/public/images/small/gregtech/gt.metaitem.02/18330.png deleted file mode 100644 index c52c2507e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18331.png b/front/public/images/small/gregtech/gt.metaitem.02/18331.png deleted file mode 100644 index d3a04a2735..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18333.png b/front/public/images/small/gregtech/gt.metaitem.02/18333.png deleted file mode 100644 index fae17e1d48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18334.png b/front/public/images/small/gregtech/gt.metaitem.02/18334.png deleted file mode 100644 index f64815d0be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18335.png b/front/public/images/small/gregtech/gt.metaitem.02/18335.png deleted file mode 100644 index 961ee7d389..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18336.png b/front/public/images/small/gregtech/gt.metaitem.02/18336.png deleted file mode 100644 index d2ac133e30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18337.png b/front/public/images/small/gregtech/gt.metaitem.02/18337.png deleted file mode 100644 index d8800daf26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18338.png b/front/public/images/small/gregtech/gt.metaitem.02/18338.png deleted file mode 100644 index 896289afb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18339.png b/front/public/images/small/gregtech/gt.metaitem.02/18339.png deleted file mode 100644 index 12985d8b4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18340.png b/front/public/images/small/gregtech/gt.metaitem.02/18340.png deleted file mode 100644 index 9483bdf6f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18341.png b/front/public/images/small/gregtech/gt.metaitem.02/18341.png deleted file mode 100644 index c112f95f57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18342.png b/front/public/images/small/gregtech/gt.metaitem.02/18342.png deleted file mode 100644 index 00b3ff34be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18343.png b/front/public/images/small/gregtech/gt.metaitem.02/18343.png deleted file mode 100644 index fd33d7a361..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18344.png b/front/public/images/small/gregtech/gt.metaitem.02/18344.png deleted file mode 100644 index f12c8e8b8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18345.png b/front/public/images/small/gregtech/gt.metaitem.02/18345.png deleted file mode 100644 index be93ec0c87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18346.png b/front/public/images/small/gregtech/gt.metaitem.02/18346.png deleted file mode 100644 index d53f6e405e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18347.png b/front/public/images/small/gregtech/gt.metaitem.02/18347.png deleted file mode 100644 index 4b59c9f9dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18348.png b/front/public/images/small/gregtech/gt.metaitem.02/18348.png deleted file mode 100644 index ca5948378b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18349.png b/front/public/images/small/gregtech/gt.metaitem.02/18349.png deleted file mode 100644 index f1782e8d50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18350.png b/front/public/images/small/gregtech/gt.metaitem.02/18350.png deleted file mode 100644 index c5fedafd9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18351.png b/front/public/images/small/gregtech/gt.metaitem.02/18351.png deleted file mode 100644 index 3de1b78b3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18352.png b/front/public/images/small/gregtech/gt.metaitem.02/18352.png deleted file mode 100644 index 1b8f2582e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18353.png b/front/public/images/small/gregtech/gt.metaitem.02/18353.png deleted file mode 100644 index 4e1aef567d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18354.png b/front/public/images/small/gregtech/gt.metaitem.02/18354.png deleted file mode 100644 index 968eb95985..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18355.png b/front/public/images/small/gregtech/gt.metaitem.02/18355.png deleted file mode 100644 index f06c976817..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18356.png b/front/public/images/small/gregtech/gt.metaitem.02/18356.png deleted file mode 100644 index f64815d0be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18357.png b/front/public/images/small/gregtech/gt.metaitem.02/18357.png deleted file mode 100644 index 833e891117..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18358.png b/front/public/images/small/gregtech/gt.metaitem.02/18358.png deleted file mode 100644 index 452b43522a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18359.png b/front/public/images/small/gregtech/gt.metaitem.02/18359.png deleted file mode 100644 index 0d09b27680..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18360.png b/front/public/images/small/gregtech/gt.metaitem.02/18360.png deleted file mode 100644 index 285d817823..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18361.png b/front/public/images/small/gregtech/gt.metaitem.02/18361.png deleted file mode 100644 index 9578c43579..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18362.png b/front/public/images/small/gregtech/gt.metaitem.02/18362.png deleted file mode 100644 index c64a9ab06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18363.png b/front/public/images/small/gregtech/gt.metaitem.02/18363.png deleted file mode 100644 index 968eb95985..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18364.png b/front/public/images/small/gregtech/gt.metaitem.02/18364.png deleted file mode 100644 index 3be1cde47d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18365.png b/front/public/images/small/gregtech/gt.metaitem.02/18365.png deleted file mode 100644 index ab3a6f36e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18366.png b/front/public/images/small/gregtech/gt.metaitem.02/18366.png deleted file mode 100644 index 3e1022cf69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18367.png b/front/public/images/small/gregtech/gt.metaitem.02/18367.png deleted file mode 100644 index 9354897d5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18368.png b/front/public/images/small/gregtech/gt.metaitem.02/18368.png deleted file mode 100644 index 3c0608894c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18369.png b/front/public/images/small/gregtech/gt.metaitem.02/18369.png deleted file mode 100644 index 83b786acbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18370.png b/front/public/images/small/gregtech/gt.metaitem.02/18370.png deleted file mode 100644 index 6645b5a6f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18371.png b/front/public/images/small/gregtech/gt.metaitem.02/18371.png deleted file mode 100644 index 3d75f5a2ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18372.png b/front/public/images/small/gregtech/gt.metaitem.02/18372.png deleted file mode 100644 index e9b2c59b59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18373.png b/front/public/images/small/gregtech/gt.metaitem.02/18373.png deleted file mode 100644 index a7ff30ffb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18374.png b/front/public/images/small/gregtech/gt.metaitem.02/18374.png deleted file mode 100644 index e53588efcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18378.png b/front/public/images/small/gregtech/gt.metaitem.02/18378.png deleted file mode 100644 index 95cc98bb78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18379.png b/front/public/images/small/gregtech/gt.metaitem.02/18379.png deleted file mode 100644 index 5a7d242b93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18380.png b/front/public/images/small/gregtech/gt.metaitem.02/18380.png deleted file mode 100644 index f79df08967..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18381.png b/front/public/images/small/gregtech/gt.metaitem.02/18381.png deleted file mode 100644 index 9d7a3e7139..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18382.png b/front/public/images/small/gregtech/gt.metaitem.02/18382.png deleted file mode 100644 index a1e0ff184e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18383.png b/front/public/images/small/gregtech/gt.metaitem.02/18383.png deleted file mode 100644 index c738bbe8cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18384.png b/front/public/images/small/gregtech/gt.metaitem.02/18384.png deleted file mode 100644 index a1063ee436..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18385.png b/front/public/images/small/gregtech/gt.metaitem.02/18385.png deleted file mode 100644 index a323ad7258..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18386.png b/front/public/images/small/gregtech/gt.metaitem.02/18386.png deleted file mode 100644 index f3d7cd0303..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18387.png b/front/public/images/small/gregtech/gt.metaitem.02/18387.png deleted file mode 100644 index 51d6ef3f41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18388.png b/front/public/images/small/gregtech/gt.metaitem.02/18388.png deleted file mode 100644 index 59ea8fae9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18389.png b/front/public/images/small/gregtech/gt.metaitem.02/18389.png deleted file mode 100644 index c0ad1b28dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18390.png b/front/public/images/small/gregtech/gt.metaitem.02/18390.png deleted file mode 100644 index 1a7da34f01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18391.png b/front/public/images/small/gregtech/gt.metaitem.02/18391.png deleted file mode 100644 index abf0b6098f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18392.png b/front/public/images/small/gregtech/gt.metaitem.02/18392.png deleted file mode 100644 index 6ab04528c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18393.png b/front/public/images/small/gregtech/gt.metaitem.02/18393.png deleted file mode 100644 index 1361cd6fa1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18394.png b/front/public/images/small/gregtech/gt.metaitem.02/18394.png deleted file mode 100644 index fac8e64092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18395.png b/front/public/images/small/gregtech/gt.metaitem.02/18395.png deleted file mode 100644 index 59ea8fae9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18397.png b/front/public/images/small/gregtech/gt.metaitem.02/18397.png deleted file mode 100644 index eb696ee91f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18398.png b/front/public/images/small/gregtech/gt.metaitem.02/18398.png deleted file mode 100644 index c39c8c1a13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18399.png b/front/public/images/small/gregtech/gt.metaitem.02/18399.png deleted file mode 100644 index 9c1621dae6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18400.png b/front/public/images/small/gregtech/gt.metaitem.02/18400.png deleted file mode 100644 index 01e2d69262..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18401.png b/front/public/images/small/gregtech/gt.metaitem.02/18401.png deleted file mode 100644 index 1d0f79eb1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18402.png b/front/public/images/small/gregtech/gt.metaitem.02/18402.png deleted file mode 100644 index 997f45f4b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18403.png b/front/public/images/small/gregtech/gt.metaitem.02/18403.png deleted file mode 100644 index 0b39b57468..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18404.png b/front/public/images/small/gregtech/gt.metaitem.02/18404.png deleted file mode 100644 index 6ece7f0332..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18405.png b/front/public/images/small/gregtech/gt.metaitem.02/18405.png deleted file mode 100644 index b0117af6f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18406.png b/front/public/images/small/gregtech/gt.metaitem.02/18406.png deleted file mode 100644 index f2b389cc3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18407.png b/front/public/images/small/gregtech/gt.metaitem.02/18407.png deleted file mode 100644 index c6ef7384ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18408.png b/front/public/images/small/gregtech/gt.metaitem.02/18408.png deleted file mode 100644 index f91540fcac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18470.png b/front/public/images/small/gregtech/gt.metaitem.02/18470.png deleted file mode 100644 index 900c6a4191..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18471.png b/front/public/images/small/gregtech/gt.metaitem.02/18471.png deleted file mode 100644 index 0a11c38b7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18472.png b/front/public/images/small/gregtech/gt.metaitem.02/18472.png deleted file mode 100644 index 59ea8fae9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18473.png b/front/public/images/small/gregtech/gt.metaitem.02/18473.png deleted file mode 100644 index f64815d0be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18485.png b/front/public/images/small/gregtech/gt.metaitem.02/18485.png deleted file mode 100644 index aaa369432b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18488.png b/front/public/images/small/gregtech/gt.metaitem.02/18488.png deleted file mode 100644 index af09897ca3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18489.png b/front/public/images/small/gregtech/gt.metaitem.02/18489.png deleted file mode 100644 index 2c6923d440..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18500.png b/front/public/images/small/gregtech/gt.metaitem.02/18500.png deleted file mode 100644 index eaf5176e6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18501.png b/front/public/images/small/gregtech/gt.metaitem.02/18501.png deleted file mode 100644 index bb5e5b513e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18502.png b/front/public/images/small/gregtech/gt.metaitem.02/18502.png deleted file mode 100644 index a8fd5ffb6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18503.png b/front/public/images/small/gregtech/gt.metaitem.02/18503.png deleted file mode 100644 index 28462b9a36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18504.png b/front/public/images/small/gregtech/gt.metaitem.02/18504.png deleted file mode 100644 index 8b473cfc23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18505.png b/front/public/images/small/gregtech/gt.metaitem.02/18505.png deleted file mode 100644 index b12586fb81..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18506.png b/front/public/images/small/gregtech/gt.metaitem.02/18506.png deleted file mode 100644 index 8aabb3e529..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18507.png b/front/public/images/small/gregtech/gt.metaitem.02/18507.png deleted file mode 100644 index db6cd75d26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18508.png b/front/public/images/small/gregtech/gt.metaitem.02/18508.png deleted file mode 100644 index 686dc42a09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18509.png b/front/public/images/small/gregtech/gt.metaitem.02/18509.png deleted file mode 100644 index 208132c362..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18510.png b/front/public/images/small/gregtech/gt.metaitem.02/18510.png deleted file mode 100644 index 65376e6961..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18511.png b/front/public/images/small/gregtech/gt.metaitem.02/18511.png deleted file mode 100644 index 120e19073c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18512.png b/front/public/images/small/gregtech/gt.metaitem.02/18512.png deleted file mode 100644 index a8fd5ffb6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18513.png b/front/public/images/small/gregtech/gt.metaitem.02/18513.png deleted file mode 100644 index 65376e6961..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18514.png b/front/public/images/small/gregtech/gt.metaitem.02/18514.png deleted file mode 100644 index db6cd75d26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18515.png b/front/public/images/small/gregtech/gt.metaitem.02/18515.png deleted file mode 100644 index 13526318ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18516.png b/front/public/images/small/gregtech/gt.metaitem.02/18516.png deleted file mode 100644 index b818ca118c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18518.png b/front/public/images/small/gregtech/gt.metaitem.02/18518.png deleted file mode 100644 index e48f706855..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18519.png b/front/public/images/small/gregtech/gt.metaitem.02/18519.png deleted file mode 100644 index e48f706855..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18520.png b/front/public/images/small/gregtech/gt.metaitem.02/18520.png deleted file mode 100644 index cfbaf879c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18521.png b/front/public/images/small/gregtech/gt.metaitem.02/18521.png deleted file mode 100644 index ad280aaf48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18522.png b/front/public/images/small/gregtech/gt.metaitem.02/18522.png deleted file mode 100644 index 821c41df0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18523.png b/front/public/images/small/gregtech/gt.metaitem.02/18523.png deleted file mode 100644 index eadb3154a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18524.png b/front/public/images/small/gregtech/gt.metaitem.02/18524.png deleted file mode 100644 index 68190dc73e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18525.png b/front/public/images/small/gregtech/gt.metaitem.02/18525.png deleted file mode 100644 index 4012776ae8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18526.png b/front/public/images/small/gregtech/gt.metaitem.02/18526.png deleted file mode 100644 index ed5afc3b25..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18527.png b/front/public/images/small/gregtech/gt.metaitem.02/18527.png deleted file mode 100644 index 120e19073c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18528.png b/front/public/images/small/gregtech/gt.metaitem.02/18528.png deleted file mode 100644 index 392340fb10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18529.png b/front/public/images/small/gregtech/gt.metaitem.02/18529.png deleted file mode 100644 index dae58e44d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18530.png b/front/public/images/small/gregtech/gt.metaitem.02/18530.png deleted file mode 100644 index 8c20b949e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18531.png b/front/public/images/small/gregtech/gt.metaitem.02/18531.png deleted file mode 100644 index 74ea91efd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18532.png b/front/public/images/small/gregtech/gt.metaitem.02/18532.png deleted file mode 100644 index 7a2d8b5d93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18533.png b/front/public/images/small/gregtech/gt.metaitem.02/18533.png deleted file mode 100644 index b4769d018f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18534.png b/front/public/images/small/gregtech/gt.metaitem.02/18534.png deleted file mode 100644 index 69c2baab46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18535.png b/front/public/images/small/gregtech/gt.metaitem.02/18535.png deleted file mode 100644 index d63c0a7d82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18536.png b/front/public/images/small/gregtech/gt.metaitem.02/18536.png deleted file mode 100644 index 68c7e78e59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18537.png b/front/public/images/small/gregtech/gt.metaitem.02/18537.png deleted file mode 100644 index 8c95d38137..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18538.png b/front/public/images/small/gregtech/gt.metaitem.02/18538.png deleted file mode 100644 index 68c7e78e59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18540.png b/front/public/images/small/gregtech/gt.metaitem.02/18540.png deleted file mode 100644 index ad280aaf48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18541.png b/front/public/images/small/gregtech/gt.metaitem.02/18541.png deleted file mode 100644 index 5d653adb82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18542.png b/front/public/images/small/gregtech/gt.metaitem.02/18542.png deleted file mode 100644 index 50d26614fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18543.png b/front/public/images/small/gregtech/gt.metaitem.02/18543.png deleted file mode 100644 index 84c2a304d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18544.png b/front/public/images/small/gregtech/gt.metaitem.02/18544.png deleted file mode 100644 index da8fd587d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18545.png b/front/public/images/small/gregtech/gt.metaitem.02/18545.png deleted file mode 100644 index 17fdf76262..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18576.png b/front/public/images/small/gregtech/gt.metaitem.02/18576.png deleted file mode 100644 index e388e6224c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18581.png b/front/public/images/small/gregtech/gt.metaitem.02/18581.png deleted file mode 100644 index 6a2954db4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18582.png b/front/public/images/small/gregtech/gt.metaitem.02/18582.png deleted file mode 100644 index fe4e75b469..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18583.png b/front/public/images/small/gregtech/gt.metaitem.02/18583.png deleted file mode 100644 index c860f9bed3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18585.png b/front/public/images/small/gregtech/gt.metaitem.02/18585.png deleted file mode 100644 index a02e5db2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18586.png b/front/public/images/small/gregtech/gt.metaitem.02/18586.png deleted file mode 100644 index cc8e6acc46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18588.png b/front/public/images/small/gregtech/gt.metaitem.02/18588.png deleted file mode 100644 index cf2b78cf8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18599.png b/front/public/images/small/gregtech/gt.metaitem.02/18599.png deleted file mode 100644 index b4dc709b41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18610.png b/front/public/images/small/gregtech/gt.metaitem.02/18610.png deleted file mode 100644 index a4b3531740..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18611.png b/front/public/images/small/gregtech/gt.metaitem.02/18611.png deleted file mode 100644 index 96f2b10105..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18613.png b/front/public/images/small/gregtech/gt.metaitem.02/18613.png deleted file mode 100644 index 1d470fb691..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18631.png b/front/public/images/small/gregtech/gt.metaitem.02/18631.png deleted file mode 100644 index 078620a61e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18635.png b/front/public/images/small/gregtech/gt.metaitem.02/18635.png deleted file mode 100644 index 369cdd1385..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18636.png b/front/public/images/small/gregtech/gt.metaitem.02/18636.png deleted file mode 100644 index 0b865b4f48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18649.png b/front/public/images/small/gregtech/gt.metaitem.02/18649.png deleted file mode 100644 index 46b5396390..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18765.png b/front/public/images/small/gregtech/gt.metaitem.02/18765.png deleted file mode 100644 index 822ae1c112..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18770.png b/front/public/images/small/gregtech/gt.metaitem.02/18770.png deleted file mode 100644 index 19c41514d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18772.png b/front/public/images/small/gregtech/gt.metaitem.02/18772.png deleted file mode 100644 index c7033e660b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18804.png b/front/public/images/small/gregtech/gt.metaitem.02/18804.png deleted file mode 100644 index 64256823a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18809.png b/front/public/images/small/gregtech/gt.metaitem.02/18809.png deleted file mode 100644 index a0c6fad2b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18829.png b/front/public/images/small/gregtech/gt.metaitem.02/18829.png deleted file mode 100644 index 678c98c9b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18856.png b/front/public/images/small/gregtech/gt.metaitem.02/18856.png deleted file mode 100644 index 2388c6fde8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18868.png b/front/public/images/small/gregtech/gt.metaitem.02/18868.png deleted file mode 100644 index 6e2656785f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18874.png b/front/public/images/small/gregtech/gt.metaitem.02/18874.png deleted file mode 100644 index 968eb95985..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18880.png b/front/public/images/small/gregtech/gt.metaitem.02/18880.png deleted file mode 100644 index cc8e6acc46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18884.png b/front/public/images/small/gregtech/gt.metaitem.02/18884.png deleted file mode 100644 index f38f3f757f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18889.png b/front/public/images/small/gregtech/gt.metaitem.02/18889.png deleted file mode 100644 index 6bf37fe37d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18890.png b/front/public/images/small/gregtech/gt.metaitem.02/18890.png deleted file mode 100644 index 8aabb3e529..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18912.png b/front/public/images/small/gregtech/gt.metaitem.02/18912.png deleted file mode 100644 index a3aed8d4ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18913.png b/front/public/images/small/gregtech/gt.metaitem.02/18913.png deleted file mode 100644 index ca5948378b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18951.png b/front/public/images/small/gregtech/gt.metaitem.02/18951.png deleted file mode 100644 index 1a8fb87454..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18952.png b/front/public/images/small/gregtech/gt.metaitem.02/18952.png deleted file mode 100644 index 941dca7613..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18956.png b/front/public/images/small/gregtech/gt.metaitem.02/18956.png deleted file mode 100644 index fedbc7a759..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18966.png b/front/public/images/small/gregtech/gt.metaitem.02/18966.png deleted file mode 100644 index 9021a94a23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18970.png b/front/public/images/small/gregtech/gt.metaitem.02/18970.png deleted file mode 100644 index c6ab22ac79..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18974.png b/front/public/images/small/gregtech/gt.metaitem.02/18974.png deleted file mode 100644 index fd197bd446..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18975.png b/front/public/images/small/gregtech/gt.metaitem.02/18975.png deleted file mode 100644 index 25ff5b7f71..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18976.png b/front/public/images/small/gregtech/gt.metaitem.02/18976.png deleted file mode 100644 index f34f1821bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18977.png b/front/public/images/small/gregtech/gt.metaitem.02/18977.png deleted file mode 100644 index dc1e86326a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18978.png b/front/public/images/small/gregtech/gt.metaitem.02/18978.png deleted file mode 100644 index 98bcacbaa1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18979.png b/front/public/images/small/gregtech/gt.metaitem.02/18979.png deleted file mode 100644 index 26686964d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18980.png b/front/public/images/small/gregtech/gt.metaitem.02/18980.png deleted file mode 100644 index aee0ed2c60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18981.png b/front/public/images/small/gregtech/gt.metaitem.02/18981.png deleted file mode 100644 index 77b852f40c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18982.png b/front/public/images/small/gregtech/gt.metaitem.02/18982.png deleted file mode 100644 index 4b196a39b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18984.png b/front/public/images/small/gregtech/gt.metaitem.02/18984.png deleted file mode 100644 index fac8e64092..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18985.png b/front/public/images/small/gregtech/gt.metaitem.02/18985.png deleted file mode 100644 index 28808da9b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18986.png b/front/public/images/small/gregtech/gt.metaitem.02/18986.png deleted file mode 100644 index 0e72dd9960..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18987.png b/front/public/images/small/gregtech/gt.metaitem.02/18987.png deleted file mode 100644 index f248ea5142..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18988.png b/front/public/images/small/gregtech/gt.metaitem.02/18988.png deleted file mode 100644 index e15241743a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18989.png b/front/public/images/small/gregtech/gt.metaitem.02/18989.png deleted file mode 100644 index 6089f4459e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18990.png b/front/public/images/small/gregtech/gt.metaitem.02/18990.png deleted file mode 100644 index 99a3b0ed0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18991.png b/front/public/images/small/gregtech/gt.metaitem.02/18991.png deleted file mode 100644 index 5b0b9c1277..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/18992.png b/front/public/images/small/gregtech/gt.metaitem.02/18992.png deleted file mode 100644 index 59b42a5dbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/18992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19008.png b/front/public/images/small/gregtech/gt.metaitem.02/19008.png deleted file mode 100644 index 6399c17edd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19018.png b/front/public/images/small/gregtech/gt.metaitem.02/19018.png deleted file mode 100644 index f6f56cdf57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19019.png b/front/public/images/small/gregtech/gt.metaitem.02/19019.png deleted file mode 100644 index aafe30181f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19020.png b/front/public/images/small/gregtech/gt.metaitem.02/19020.png deleted file mode 100644 index 6e5feab24a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19027.png b/front/public/images/small/gregtech/gt.metaitem.02/19027.png deleted file mode 100644 index 32ee8c1057..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19028.png b/front/public/images/small/gregtech/gt.metaitem.02/19028.png deleted file mode 100644 index c3dd5e1d59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19029.png b/front/public/images/small/gregtech/gt.metaitem.02/19029.png deleted file mode 100644 index 397aeedc2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19030.png b/front/public/images/small/gregtech/gt.metaitem.02/19030.png deleted file mode 100644 index 0c4859b67f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19031.png b/front/public/images/small/gregtech/gt.metaitem.02/19031.png deleted file mode 100644 index cfddfd9a8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19032.png b/front/public/images/small/gregtech/gt.metaitem.02/19032.png deleted file mode 100644 index 1274f3cf8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19033.png b/front/public/images/small/gregtech/gt.metaitem.02/19033.png deleted file mode 100644 index a6dfd8c3a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19034.png b/front/public/images/small/gregtech/gt.metaitem.02/19034.png deleted file mode 100644 index a9adc3bb40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19035.png b/front/public/images/small/gregtech/gt.metaitem.02/19035.png deleted file mode 100644 index fd2b851cc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19036.png b/front/public/images/small/gregtech/gt.metaitem.02/19036.png deleted file mode 100644 index 9ef6776939..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19037.png b/front/public/images/small/gregtech/gt.metaitem.02/19037.png deleted file mode 100644 index 53ab11c7d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19043.png b/front/public/images/small/gregtech/gt.metaitem.02/19043.png deleted file mode 100644 index b0d53393d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19045.png b/front/public/images/small/gregtech/gt.metaitem.02/19045.png deleted file mode 100644 index 1840ddb91e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19047.png b/front/public/images/small/gregtech/gt.metaitem.02/19047.png deleted file mode 100644 index 7601af3cd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19048.png b/front/public/images/small/gregtech/gt.metaitem.02/19048.png deleted file mode 100644 index 1c50a759ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19052.png b/front/public/images/small/gregtech/gt.metaitem.02/19052.png deleted file mode 100644 index 7fadee8255..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19054.png b/front/public/images/small/gregtech/gt.metaitem.02/19054.png deleted file mode 100644 index 53ab11c7d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19056.png b/front/public/images/small/gregtech/gt.metaitem.02/19056.png deleted file mode 100644 index b0128a1f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19057.png b/front/public/images/small/gregtech/gt.metaitem.02/19057.png deleted file mode 100644 index 6f96963fab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19058.png b/front/public/images/small/gregtech/gt.metaitem.02/19058.png deleted file mode 100644 index adf8464049..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19059.png b/front/public/images/small/gregtech/gt.metaitem.02/19059.png deleted file mode 100644 index 43047c91b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19062.png b/front/public/images/small/gregtech/gt.metaitem.02/19062.png deleted file mode 100644 index ea8fb16ec2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19064.png b/front/public/images/small/gregtech/gt.metaitem.02/19064.png deleted file mode 100644 index c474b8f345..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19065.png b/front/public/images/small/gregtech/gt.metaitem.02/19065.png deleted file mode 100644 index 7fde73d883..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19066.png b/front/public/images/small/gregtech/gt.metaitem.02/19066.png deleted file mode 100644 index 9f8cc689f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19067.png b/front/public/images/small/gregtech/gt.metaitem.02/19067.png deleted file mode 100644 index b0cff2d3ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19068.png b/front/public/images/small/gregtech/gt.metaitem.02/19068.png deleted file mode 100644 index a6f9765aa1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19069.png b/front/public/images/small/gregtech/gt.metaitem.02/19069.png deleted file mode 100644 index a7b58ca185..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19070.png b/front/public/images/small/gregtech/gt.metaitem.02/19070.png deleted file mode 100644 index a6b945a1f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19071.png b/front/public/images/small/gregtech/gt.metaitem.02/19071.png deleted file mode 100644 index 5b54f9fabd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19072.png b/front/public/images/small/gregtech/gt.metaitem.02/19072.png deleted file mode 100644 index 1bb62c7537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19073.png b/front/public/images/small/gregtech/gt.metaitem.02/19073.png deleted file mode 100644 index 72ad59a138..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19074.png b/front/public/images/small/gregtech/gt.metaitem.02/19074.png deleted file mode 100644 index 964d13d86e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19075.png b/front/public/images/small/gregtech/gt.metaitem.02/19075.png deleted file mode 100644 index 7aaa962081..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19076.png b/front/public/images/small/gregtech/gt.metaitem.02/19076.png deleted file mode 100644 index 737d3840be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19077.png b/front/public/images/small/gregtech/gt.metaitem.02/19077.png deleted file mode 100644 index 52f6acdaa6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19078.png b/front/public/images/small/gregtech/gt.metaitem.02/19078.png deleted file mode 100644 index f1284087ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19080.png b/front/public/images/small/gregtech/gt.metaitem.02/19080.png deleted file mode 100644 index f277e133c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19081.png b/front/public/images/small/gregtech/gt.metaitem.02/19081.png deleted file mode 100644 index 397aeedc2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19083.png b/front/public/images/small/gregtech/gt.metaitem.02/19083.png deleted file mode 100644 index 6b8d004050..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19084.png b/front/public/images/small/gregtech/gt.metaitem.02/19084.png deleted file mode 100644 index faf99f3c1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19085.png b/front/public/images/small/gregtech/gt.metaitem.02/19085.png deleted file mode 100644 index e1b1d286e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19086.png b/front/public/images/small/gregtech/gt.metaitem.02/19086.png deleted file mode 100644 index 8f8d0a33e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19089.png b/front/public/images/small/gregtech/gt.metaitem.02/19089.png deleted file mode 100644 index 914868e614..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19090.png b/front/public/images/small/gregtech/gt.metaitem.02/19090.png deleted file mode 100644 index e62e1fc04d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19096.png b/front/public/images/small/gregtech/gt.metaitem.02/19096.png deleted file mode 100644 index 6510bc71e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19097.png b/front/public/images/small/gregtech/gt.metaitem.02/19097.png deleted file mode 100644 index 5271ebb976..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19098.png b/front/public/images/small/gregtech/gt.metaitem.02/19098.png deleted file mode 100644 index 61379d40e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19100.png b/front/public/images/small/gregtech/gt.metaitem.02/19100.png deleted file mode 100644 index 5b91e5ea88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19101.png b/front/public/images/small/gregtech/gt.metaitem.02/19101.png deleted file mode 100644 index ffbf08a1da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19103.png b/front/public/images/small/gregtech/gt.metaitem.02/19103.png deleted file mode 100644 index 1274f3cf8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19111.png b/front/public/images/small/gregtech/gt.metaitem.02/19111.png deleted file mode 100644 index 5bc1a7b3e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19112.png b/front/public/images/small/gregtech/gt.metaitem.02/19112.png deleted file mode 100644 index 65b2ddf831..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19129.png b/front/public/images/small/gregtech/gt.metaitem.02/19129.png deleted file mode 100644 index cfddfd9a8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19131.png b/front/public/images/small/gregtech/gt.metaitem.02/19131.png deleted file mode 100644 index bfbbd7d6a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19134.png b/front/public/images/small/gregtech/gt.metaitem.02/19134.png deleted file mode 100644 index 01a5971e11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19139.png b/front/public/images/small/gregtech/gt.metaitem.02/19139.png deleted file mode 100644 index 0cee0d455c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19141.png b/front/public/images/small/gregtech/gt.metaitem.02/19141.png deleted file mode 100644 index d1f07bdf4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19143.png b/front/public/images/small/gregtech/gt.metaitem.02/19143.png deleted file mode 100644 index 5d07cfc417..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19300.png b/front/public/images/small/gregtech/gt.metaitem.02/19300.png deleted file mode 100644 index 74ceb4ca47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19301.png b/front/public/images/small/gregtech/gt.metaitem.02/19301.png deleted file mode 100644 index 0d048fa2c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19302.png b/front/public/images/small/gregtech/gt.metaitem.02/19302.png deleted file mode 100644 index 7241b34c73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19303.png b/front/public/images/small/gregtech/gt.metaitem.02/19303.png deleted file mode 100644 index 42fee319b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19304.png b/front/public/images/small/gregtech/gt.metaitem.02/19304.png deleted file mode 100644 index cb5a6fb385..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19305.png b/front/public/images/small/gregtech/gt.metaitem.02/19305.png deleted file mode 100644 index 7fadee8255..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19306.png b/front/public/images/small/gregtech/gt.metaitem.02/19306.png deleted file mode 100644 index a74a241c07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19307.png b/front/public/images/small/gregtech/gt.metaitem.02/19307.png deleted file mode 100644 index cb5a6fb385..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19308.png b/front/public/images/small/gregtech/gt.metaitem.02/19308.png deleted file mode 100644 index 1476f68241..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19309.png b/front/public/images/small/gregtech/gt.metaitem.02/19309.png deleted file mode 100644 index 0743de68a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19310.png b/front/public/images/small/gregtech/gt.metaitem.02/19310.png deleted file mode 100644 index e1f3f38643..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19311.png b/front/public/images/small/gregtech/gt.metaitem.02/19311.png deleted file mode 100644 index c18c8291f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19312.png b/front/public/images/small/gregtech/gt.metaitem.02/19312.png deleted file mode 100644 index 3e1be9f30d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19313.png b/front/public/images/small/gregtech/gt.metaitem.02/19313.png deleted file mode 100644 index a1f4348f00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19314.png b/front/public/images/small/gregtech/gt.metaitem.02/19314.png deleted file mode 100644 index 6718b4df73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19315.png b/front/public/images/small/gregtech/gt.metaitem.02/19315.png deleted file mode 100644 index ef2f1afb89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19316.png b/front/public/images/small/gregtech/gt.metaitem.02/19316.png deleted file mode 100644 index 48f0d3566e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19317.png b/front/public/images/small/gregtech/gt.metaitem.02/19317.png deleted file mode 100644 index 3127fc0e65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19318.png b/front/public/images/small/gregtech/gt.metaitem.02/19318.png deleted file mode 100644 index 89f7b66215..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19319.png b/front/public/images/small/gregtech/gt.metaitem.02/19319.png deleted file mode 100644 index 1bb62c7537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19320.png b/front/public/images/small/gregtech/gt.metaitem.02/19320.png deleted file mode 100644 index 437eb04967..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19321.png b/front/public/images/small/gregtech/gt.metaitem.02/19321.png deleted file mode 100644 index d98a506ae4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19323.png b/front/public/images/small/gregtech/gt.metaitem.02/19323.png deleted file mode 100644 index 2facbf7198..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19324.png b/front/public/images/small/gregtech/gt.metaitem.02/19324.png deleted file mode 100644 index 397aeedc2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19325.png b/front/public/images/small/gregtech/gt.metaitem.02/19325.png deleted file mode 100644 index 1be5b59ac5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19326.png b/front/public/images/small/gregtech/gt.metaitem.02/19326.png deleted file mode 100644 index 3cf5399e0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19327.png b/front/public/images/small/gregtech/gt.metaitem.02/19327.png deleted file mode 100644 index de561afe23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19328.png b/front/public/images/small/gregtech/gt.metaitem.02/19328.png deleted file mode 100644 index 1bb62c7537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19329.png b/front/public/images/small/gregtech/gt.metaitem.02/19329.png deleted file mode 100644 index dca55450c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19330.png b/front/public/images/small/gregtech/gt.metaitem.02/19330.png deleted file mode 100644 index ae8e267357..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19331.png b/front/public/images/small/gregtech/gt.metaitem.02/19331.png deleted file mode 100644 index dab8f86f7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19333.png b/front/public/images/small/gregtech/gt.metaitem.02/19333.png deleted file mode 100644 index c7c68b3ae4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19334.png b/front/public/images/small/gregtech/gt.metaitem.02/19334.png deleted file mode 100644 index b0cff2d3ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19335.png b/front/public/images/small/gregtech/gt.metaitem.02/19335.png deleted file mode 100644 index 0912595c98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19336.png b/front/public/images/small/gregtech/gt.metaitem.02/19336.png deleted file mode 100644 index d3ecacaf11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19337.png b/front/public/images/small/gregtech/gt.metaitem.02/19337.png deleted file mode 100644 index 11b1c79ef1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19338.png b/front/public/images/small/gregtech/gt.metaitem.02/19338.png deleted file mode 100644 index 5d5f025a1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19339.png b/front/public/images/small/gregtech/gt.metaitem.02/19339.png deleted file mode 100644 index 6e9a52a9fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19340.png b/front/public/images/small/gregtech/gt.metaitem.02/19340.png deleted file mode 100644 index 171e0f1a54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19341.png b/front/public/images/small/gregtech/gt.metaitem.02/19341.png deleted file mode 100644 index f092de556e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19342.png b/front/public/images/small/gregtech/gt.metaitem.02/19342.png deleted file mode 100644 index 6179a538b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19343.png b/front/public/images/small/gregtech/gt.metaitem.02/19343.png deleted file mode 100644 index 2fe53e9d55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19344.png b/front/public/images/small/gregtech/gt.metaitem.02/19344.png deleted file mode 100644 index 5c0af4e99f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19345.png b/front/public/images/small/gregtech/gt.metaitem.02/19345.png deleted file mode 100644 index b695498c13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19346.png b/front/public/images/small/gregtech/gt.metaitem.02/19346.png deleted file mode 100644 index da49d365eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19348.png b/front/public/images/small/gregtech/gt.metaitem.02/19348.png deleted file mode 100644 index 31b375deaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19349.png b/front/public/images/small/gregtech/gt.metaitem.02/19349.png deleted file mode 100644 index a4cf9fb734..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19350.png b/front/public/images/small/gregtech/gt.metaitem.02/19350.png deleted file mode 100644 index c1a9585591..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19351.png b/front/public/images/small/gregtech/gt.metaitem.02/19351.png deleted file mode 100644 index 42747f5bf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19352.png b/front/public/images/small/gregtech/gt.metaitem.02/19352.png deleted file mode 100644 index 21ecd100df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19353.png b/front/public/images/small/gregtech/gt.metaitem.02/19353.png deleted file mode 100644 index 766dd54fc1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19354.png b/front/public/images/small/gregtech/gt.metaitem.02/19354.png deleted file mode 100644 index aa12d5cc73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19355.png b/front/public/images/small/gregtech/gt.metaitem.02/19355.png deleted file mode 100644 index c95d72c728..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19356.png b/front/public/images/small/gregtech/gt.metaitem.02/19356.png deleted file mode 100644 index 5f6cfa4345..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19357.png b/front/public/images/small/gregtech/gt.metaitem.02/19357.png deleted file mode 100644 index a3ded57947..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19358.png b/front/public/images/small/gregtech/gt.metaitem.02/19358.png deleted file mode 100644 index 70c18bf68d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19359.png b/front/public/images/small/gregtech/gt.metaitem.02/19359.png deleted file mode 100644 index 8712e1ade1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19360.png b/front/public/images/small/gregtech/gt.metaitem.02/19360.png deleted file mode 100644 index a21d1df300..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19361.png b/front/public/images/small/gregtech/gt.metaitem.02/19361.png deleted file mode 100644 index d84bab9f5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19362.png b/front/public/images/small/gregtech/gt.metaitem.02/19362.png deleted file mode 100644 index 2f9113721e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19363.png b/front/public/images/small/gregtech/gt.metaitem.02/19363.png deleted file mode 100644 index 1274f3cf8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19364.png b/front/public/images/small/gregtech/gt.metaitem.02/19364.png deleted file mode 100644 index a85c1b64e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19365.png b/front/public/images/small/gregtech/gt.metaitem.02/19365.png deleted file mode 100644 index f45229ba21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19366.png b/front/public/images/small/gregtech/gt.metaitem.02/19366.png deleted file mode 100644 index a19e56f304..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19367.png b/front/public/images/small/gregtech/gt.metaitem.02/19367.png deleted file mode 100644 index 77a020ca6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19368.png b/front/public/images/small/gregtech/gt.metaitem.02/19368.png deleted file mode 100644 index d203a37c83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19369.png b/front/public/images/small/gregtech/gt.metaitem.02/19369.png deleted file mode 100644 index 701d529658..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19370.png b/front/public/images/small/gregtech/gt.metaitem.02/19370.png deleted file mode 100644 index 3ac47fdade..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19371.png b/front/public/images/small/gregtech/gt.metaitem.02/19371.png deleted file mode 100644 index 1b7754066b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19372.png b/front/public/images/small/gregtech/gt.metaitem.02/19372.png deleted file mode 100644 index 4471261aed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19373.png b/front/public/images/small/gregtech/gt.metaitem.02/19373.png deleted file mode 100644 index 7e9811fa5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19374.png b/front/public/images/small/gregtech/gt.metaitem.02/19374.png deleted file mode 100644 index 11420f50f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19378.png b/front/public/images/small/gregtech/gt.metaitem.02/19378.png deleted file mode 100644 index b787d95764..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19380.png b/front/public/images/small/gregtech/gt.metaitem.02/19380.png deleted file mode 100644 index a90a3a5183..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19381.png b/front/public/images/small/gregtech/gt.metaitem.02/19381.png deleted file mode 100644 index 356e15b39c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19382.png b/front/public/images/small/gregtech/gt.metaitem.02/19382.png deleted file mode 100644 index 8939a91d2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19386.png b/front/public/images/small/gregtech/gt.metaitem.02/19386.png deleted file mode 100644 index 9afbece506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19388.png b/front/public/images/small/gregtech/gt.metaitem.02/19388.png deleted file mode 100644 index 397aeedc2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19391.png b/front/public/images/small/gregtech/gt.metaitem.02/19391.png deleted file mode 100644 index 38a58f6611..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19394.png b/front/public/images/small/gregtech/gt.metaitem.02/19394.png deleted file mode 100644 index 1bb62c7537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19395.png b/front/public/images/small/gregtech/gt.metaitem.02/19395.png deleted file mode 100644 index 397aeedc2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19397.png b/front/public/images/small/gregtech/gt.metaitem.02/19397.png deleted file mode 100644 index 8379b43d09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19399.png b/front/public/images/small/gregtech/gt.metaitem.02/19399.png deleted file mode 100644 index 92e575a41c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19400.png b/front/public/images/small/gregtech/gt.metaitem.02/19400.png deleted file mode 100644 index 9b283f4eb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19401.png b/front/public/images/small/gregtech/gt.metaitem.02/19401.png deleted file mode 100644 index c1b13c5794..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19402.png b/front/public/images/small/gregtech/gt.metaitem.02/19402.png deleted file mode 100644 index 84ebe40c44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19403.png b/front/public/images/small/gregtech/gt.metaitem.02/19403.png deleted file mode 100644 index c5b24773b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19404.png b/front/public/images/small/gregtech/gt.metaitem.02/19404.png deleted file mode 100644 index a743b63ca8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19405.png b/front/public/images/small/gregtech/gt.metaitem.02/19405.png deleted file mode 100644 index 4a6a0572c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19406.png b/front/public/images/small/gregtech/gt.metaitem.02/19406.png deleted file mode 100644 index cc8f0ba97f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19407.png b/front/public/images/small/gregtech/gt.metaitem.02/19407.png deleted file mode 100644 index 4b771abace..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19408.png b/front/public/images/small/gregtech/gt.metaitem.02/19408.png deleted file mode 100644 index 2e011d3536..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19485.png b/front/public/images/small/gregtech/gt.metaitem.02/19485.png deleted file mode 100644 index 21f56b5ce4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19488.png b/front/public/images/small/gregtech/gt.metaitem.02/19488.png deleted file mode 100644 index 8966210329..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19489.png b/front/public/images/small/gregtech/gt.metaitem.02/19489.png deleted file mode 100644 index 88d7bfb859..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19521.png b/front/public/images/small/gregtech/gt.metaitem.02/19521.png deleted file mode 100644 index 89f7b66215..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19529.png b/front/public/images/small/gregtech/gt.metaitem.02/19529.png deleted file mode 100644 index a10819f2e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19576.png b/front/public/images/small/gregtech/gt.metaitem.02/19576.png deleted file mode 100644 index 506da27c73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19582.png b/front/public/images/small/gregtech/gt.metaitem.02/19582.png deleted file mode 100644 index 980da097bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19583.png b/front/public/images/small/gregtech/gt.metaitem.02/19583.png deleted file mode 100644 index bc83d21fb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19770.png b/front/public/images/small/gregtech/gt.metaitem.02/19770.png deleted file mode 100644 index c7c30b6fec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19829.png b/front/public/images/small/gregtech/gt.metaitem.02/19829.png deleted file mode 100644 index aafa61fc18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19868.png b/front/public/images/small/gregtech/gt.metaitem.02/19868.png deleted file mode 100644 index 75db25f171..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19884.png b/front/public/images/small/gregtech/gt.metaitem.02/19884.png deleted file mode 100644 index 1be5b59ac5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19912.png b/front/public/images/small/gregtech/gt.metaitem.02/19912.png deleted file mode 100644 index ba9ff9b45b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19913.png b/front/public/images/small/gregtech/gt.metaitem.02/19913.png deleted file mode 100644 index 31b375deaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19951.png b/front/public/images/small/gregtech/gt.metaitem.02/19951.png deleted file mode 100644 index f6f0240535..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19952.png b/front/public/images/small/gregtech/gt.metaitem.02/19952.png deleted file mode 100644 index 2fb13761af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19956.png b/front/public/images/small/gregtech/gt.metaitem.02/19956.png deleted file mode 100644 index 8f7c942e9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19966.png b/front/public/images/small/gregtech/gt.metaitem.02/19966.png deleted file mode 100644 index 18ee911c4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19970.png b/front/public/images/small/gregtech/gt.metaitem.02/19970.png deleted file mode 100644 index b98bd3819c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19974.png b/front/public/images/small/gregtech/gt.metaitem.02/19974.png deleted file mode 100644 index bd9e09d768..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19975.png b/front/public/images/small/gregtech/gt.metaitem.02/19975.png deleted file mode 100644 index 593a9db21b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19976.png b/front/public/images/small/gregtech/gt.metaitem.02/19976.png deleted file mode 100644 index bed8e1674e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19977.png b/front/public/images/small/gregtech/gt.metaitem.02/19977.png deleted file mode 100644 index e57dafd1ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19978.png b/front/public/images/small/gregtech/gt.metaitem.02/19978.png deleted file mode 100644 index 577920f66f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19982.png b/front/public/images/small/gregtech/gt.metaitem.02/19982.png deleted file mode 100644 index d705cc77cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19984.png b/front/public/images/small/gregtech/gt.metaitem.02/19984.png deleted file mode 100644 index 1bb62c7537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19985.png b/front/public/images/small/gregtech/gt.metaitem.02/19985.png deleted file mode 100644 index 7dc6fcb67a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19986.png b/front/public/images/small/gregtech/gt.metaitem.02/19986.png deleted file mode 100644 index 8354d93f78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19987.png b/front/public/images/small/gregtech/gt.metaitem.02/19987.png deleted file mode 100644 index 1b77bcd8f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19988.png b/front/public/images/small/gregtech/gt.metaitem.02/19988.png deleted file mode 100644 index b40c72ff39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19989.png b/front/public/images/small/gregtech/gt.metaitem.02/19989.png deleted file mode 100644 index 59caf5c211..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19990.png b/front/public/images/small/gregtech/gt.metaitem.02/19990.png deleted file mode 100644 index bfbf9a4fed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19991.png b/front/public/images/small/gregtech/gt.metaitem.02/19991.png deleted file mode 100644 index 0488b235a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/19992.png b/front/public/images/small/gregtech/gt.metaitem.02/19992.png deleted file mode 100644 index 5aaaf627eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/19992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20010.png b/front/public/images/small/gregtech/gt.metaitem.02/20010.png deleted file mode 100644 index 29d4c6bfc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20019.png b/front/public/images/small/gregtech/gt.metaitem.02/20019.png deleted file mode 100644 index a68a5c6508..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20028.png b/front/public/images/small/gregtech/gt.metaitem.02/20028.png deleted file mode 100644 index da1e4d500e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20030.png b/front/public/images/small/gregtech/gt.metaitem.02/20030.png deleted file mode 100644 index e739451103..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20032.png b/front/public/images/small/gregtech/gt.metaitem.02/20032.png deleted file mode 100644 index 55b81c88eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20033.png b/front/public/images/small/gregtech/gt.metaitem.02/20033.png deleted file mode 100644 index 780ced2a4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20034.png b/front/public/images/small/gregtech/gt.metaitem.02/20034.png deleted file mode 100644 index 7cf86db8e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20035.png b/front/public/images/small/gregtech/gt.metaitem.02/20035.png deleted file mode 100644 index 12fd6185a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20052.png b/front/public/images/small/gregtech/gt.metaitem.02/20052.png deleted file mode 100644 index fbcdd2816d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20054.png b/front/public/images/small/gregtech/gt.metaitem.02/20054.png deleted file mode 100644 index 39399dba87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20057.png b/front/public/images/small/gregtech/gt.metaitem.02/20057.png deleted file mode 100644 index c7db1c9c92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20067.png b/front/public/images/small/gregtech/gt.metaitem.02/20067.png deleted file mode 100644 index 9daa51c2e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20081.png b/front/public/images/small/gregtech/gt.metaitem.02/20081.png deleted file mode 100644 index 2d19bf625f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20083.png b/front/public/images/small/gregtech/gt.metaitem.02/20083.png deleted file mode 100644 index 74ba18376a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20084.png b/front/public/images/small/gregtech/gt.metaitem.02/20084.png deleted file mode 100644 index 7947ed93f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20085.png b/front/public/images/small/gregtech/gt.metaitem.02/20085.png deleted file mode 100644 index ab7efd6c15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20086.png b/front/public/images/small/gregtech/gt.metaitem.02/20086.png deleted file mode 100644 index c8843e5482..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20089.png b/front/public/images/small/gregtech/gt.metaitem.02/20089.png deleted file mode 100644 index b548bdfa66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20090.png b/front/public/images/small/gregtech/gt.metaitem.02/20090.png deleted file mode 100644 index 9320535fd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20111.png b/front/public/images/small/gregtech/gt.metaitem.02/20111.png deleted file mode 100644 index bb24ca16cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20112.png b/front/public/images/small/gregtech/gt.metaitem.02/20112.png deleted file mode 100644 index 51f7609265..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20129.png b/front/public/images/small/gregtech/gt.metaitem.02/20129.png deleted file mode 100644 index fae17b2698..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20139.png b/front/public/images/small/gregtech/gt.metaitem.02/20139.png deleted file mode 100644 index f610561d2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20141.png b/front/public/images/small/gregtech/gt.metaitem.02/20141.png deleted file mode 100644 index 76ccf9d3d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20143.png b/front/public/images/small/gregtech/gt.metaitem.02/20143.png deleted file mode 100644 index d68c007038..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20201.png b/front/public/images/small/gregtech/gt.metaitem.02/20201.png deleted file mode 100644 index 1868c9e75e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20202.png b/front/public/images/small/gregtech/gt.metaitem.02/20202.png deleted file mode 100644 index d2849a422a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20203.png b/front/public/images/small/gregtech/gt.metaitem.02/20203.png deleted file mode 100644 index d354059296..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20204.png b/front/public/images/small/gregtech/gt.metaitem.02/20204.png deleted file mode 100644 index b20eb25193..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20205.png b/front/public/images/small/gregtech/gt.metaitem.02/20205.png deleted file mode 100644 index 98541a041c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20206.png b/front/public/images/small/gregtech/gt.metaitem.02/20206.png deleted file mode 100644 index 92a1aa1a89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20207.png b/front/public/images/small/gregtech/gt.metaitem.02/20207.png deleted file mode 100644 index bd4b4d0442..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20299.png b/front/public/images/small/gregtech/gt.metaitem.02/20299.png deleted file mode 100644 index 9fa8787fc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20300.png b/front/public/images/small/gregtech/gt.metaitem.02/20300.png deleted file mode 100644 index e18913a65c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20301.png b/front/public/images/small/gregtech/gt.metaitem.02/20301.png deleted file mode 100644 index 7ebe804e3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20302.png b/front/public/images/small/gregtech/gt.metaitem.02/20302.png deleted file mode 100644 index 4d6289e44a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20303.png b/front/public/images/small/gregtech/gt.metaitem.02/20303.png deleted file mode 100644 index 13537ba16b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20304.png b/front/public/images/small/gregtech/gt.metaitem.02/20304.png deleted file mode 100644 index 145ab89c5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20305.png b/front/public/images/small/gregtech/gt.metaitem.02/20305.png deleted file mode 100644 index ec57670952..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20306.png b/front/public/images/small/gregtech/gt.metaitem.02/20306.png deleted file mode 100644 index b38ea44ff4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20313.png b/front/public/images/small/gregtech/gt.metaitem.02/20313.png deleted file mode 100644 index e394d56039..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20316.png b/front/public/images/small/gregtech/gt.metaitem.02/20316.png deleted file mode 100644 index efa4c4ca2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20317.png b/front/public/images/small/gregtech/gt.metaitem.02/20317.png deleted file mode 100644 index b51a7eb16f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20318.png b/front/public/images/small/gregtech/gt.metaitem.02/20318.png deleted file mode 100644 index c964da6a24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20319.png b/front/public/images/small/gregtech/gt.metaitem.02/20319.png deleted file mode 100644 index b1872bf352..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20320.png b/front/public/images/small/gregtech/gt.metaitem.02/20320.png deleted file mode 100644 index 566a497ec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20321.png b/front/public/images/small/gregtech/gt.metaitem.02/20321.png deleted file mode 100644 index 8684fea33e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20323.png b/front/public/images/small/gregtech/gt.metaitem.02/20323.png deleted file mode 100644 index 6525a3e39f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20324.png b/front/public/images/small/gregtech/gt.metaitem.02/20324.png deleted file mode 100644 index 2d19bf625f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20325.png b/front/public/images/small/gregtech/gt.metaitem.02/20325.png deleted file mode 100644 index 37e4d2e27d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20330.png b/front/public/images/small/gregtech/gt.metaitem.02/20330.png deleted file mode 100644 index d5058af8fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20334.png b/front/public/images/small/gregtech/gt.metaitem.02/20334.png deleted file mode 100644 index 9daa51c2e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20335.png b/front/public/images/small/gregtech/gt.metaitem.02/20335.png deleted file mode 100644 index a627323947..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20338.png b/front/public/images/small/gregtech/gt.metaitem.02/20338.png deleted file mode 100644 index d1f0ccc72a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20339.png b/front/public/images/small/gregtech/gt.metaitem.02/20339.png deleted file mode 100644 index ce78c932f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20343.png b/front/public/images/small/gregtech/gt.metaitem.02/20343.png deleted file mode 100644 index c57a40cc9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20344.png b/front/public/images/small/gregtech/gt.metaitem.02/20344.png deleted file mode 100644 index 4cbd758457..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20345.png b/front/public/images/small/gregtech/gt.metaitem.02/20345.png deleted file mode 100644 index f7177d3d89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20346.png b/front/public/images/small/gregtech/gt.metaitem.02/20346.png deleted file mode 100644 index bb3eaf947a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20348.png b/front/public/images/small/gregtech/gt.metaitem.02/20348.png deleted file mode 100644 index 0a055e3ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20349.png b/front/public/images/small/gregtech/gt.metaitem.02/20349.png deleted file mode 100644 index 96fa6af9e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20350.png b/front/public/images/small/gregtech/gt.metaitem.02/20350.png deleted file mode 100644 index f6be765a89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20351.png b/front/public/images/small/gregtech/gt.metaitem.02/20351.png deleted file mode 100644 index 664cea181f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20352.png b/front/public/images/small/gregtech/gt.metaitem.02/20352.png deleted file mode 100644 index aba6aee65d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20353.png b/front/public/images/small/gregtech/gt.metaitem.02/20353.png deleted file mode 100644 index 9394c4e56b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20354.png b/front/public/images/small/gregtech/gt.metaitem.02/20354.png deleted file mode 100644 index b87aca14b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20355.png b/front/public/images/small/gregtech/gt.metaitem.02/20355.png deleted file mode 100644 index 0994342fcc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20356.png b/front/public/images/small/gregtech/gt.metaitem.02/20356.png deleted file mode 100644 index bf2940f009..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20357.png b/front/public/images/small/gregtech/gt.metaitem.02/20357.png deleted file mode 100644 index a980534a09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20362.png b/front/public/images/small/gregtech/gt.metaitem.02/20362.png deleted file mode 100644 index 73f4be3b4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20363.png b/front/public/images/small/gregtech/gt.metaitem.02/20363.png deleted file mode 100644 index 55b81c88eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20364.png b/front/public/images/small/gregtech/gt.metaitem.02/20364.png deleted file mode 100644 index d2c54497ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20365.png b/front/public/images/small/gregtech/gt.metaitem.02/20365.png deleted file mode 100644 index dfc79419ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20366.png b/front/public/images/small/gregtech/gt.metaitem.02/20366.png deleted file mode 100644 index 49037cec96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20367.png b/front/public/images/small/gregtech/gt.metaitem.02/20367.png deleted file mode 100644 index dcb463ab78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20368.png b/front/public/images/small/gregtech/gt.metaitem.02/20368.png deleted file mode 100644 index ca01a5f8b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20369.png b/front/public/images/small/gregtech/gt.metaitem.02/20369.png deleted file mode 100644 index 0c7ec897db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20370.png b/front/public/images/small/gregtech/gt.metaitem.02/20370.png deleted file mode 100644 index fa5261ddb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20371.png b/front/public/images/small/gregtech/gt.metaitem.02/20371.png deleted file mode 100644 index 80fa686f49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20372.png b/front/public/images/small/gregtech/gt.metaitem.02/20372.png deleted file mode 100644 index 559594eb1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20373.png b/front/public/images/small/gregtech/gt.metaitem.02/20373.png deleted file mode 100644 index 546738d2b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20374.png b/front/public/images/small/gregtech/gt.metaitem.02/20374.png deleted file mode 100644 index b8c2a8996f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20378.png b/front/public/images/small/gregtech/gt.metaitem.02/20378.png deleted file mode 100644 index 47613110bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20379.png b/front/public/images/small/gregtech/gt.metaitem.02/20379.png deleted file mode 100644 index 6799534f18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20380.png b/front/public/images/small/gregtech/gt.metaitem.02/20380.png deleted file mode 100644 index dbce17f71d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20381.png b/front/public/images/small/gregtech/gt.metaitem.02/20381.png deleted file mode 100644 index a1b3f345f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20382.png b/front/public/images/small/gregtech/gt.metaitem.02/20382.png deleted file mode 100644 index d113820a84..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20383.png b/front/public/images/small/gregtech/gt.metaitem.02/20383.png deleted file mode 100644 index d9e44239ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20384.png b/front/public/images/small/gregtech/gt.metaitem.02/20384.png deleted file mode 100644 index 2e8feb9d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20385.png b/front/public/images/small/gregtech/gt.metaitem.02/20385.png deleted file mode 100644 index 99f189652d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20386.png b/front/public/images/small/gregtech/gt.metaitem.02/20386.png deleted file mode 100644 index 15d33a6335..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20387.png b/front/public/images/small/gregtech/gt.metaitem.02/20387.png deleted file mode 100644 index 56bbce08f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20388.png b/front/public/images/small/gregtech/gt.metaitem.02/20388.png deleted file mode 100644 index 2d19bf625f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20389.png b/front/public/images/small/gregtech/gt.metaitem.02/20389.png deleted file mode 100644 index 6f4b6a5598..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20390.png b/front/public/images/small/gregtech/gt.metaitem.02/20390.png deleted file mode 100644 index 6d47e50b3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20391.png b/front/public/images/small/gregtech/gt.metaitem.02/20391.png deleted file mode 100644 index 33929cba8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20392.png b/front/public/images/small/gregtech/gt.metaitem.02/20392.png deleted file mode 100644 index b400b073dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20393.png b/front/public/images/small/gregtech/gt.metaitem.02/20393.png deleted file mode 100644 index 6baa3c7578..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20394.png b/front/public/images/small/gregtech/gt.metaitem.02/20394.png deleted file mode 100644 index b1872bf352..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20397.png b/front/public/images/small/gregtech/gt.metaitem.02/20397.png deleted file mode 100644 index 60747155f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20398.png b/front/public/images/small/gregtech/gt.metaitem.02/20398.png deleted file mode 100644 index b76d1b9bca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20399.png b/front/public/images/small/gregtech/gt.metaitem.02/20399.png deleted file mode 100644 index 8bbbbbfc19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20400.png b/front/public/images/small/gregtech/gt.metaitem.02/20400.png deleted file mode 100644 index 31ad2d9b2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20401.png b/front/public/images/small/gregtech/gt.metaitem.02/20401.png deleted file mode 100644 index 99679e0bd7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20402.png b/front/public/images/small/gregtech/gt.metaitem.02/20402.png deleted file mode 100644 index 9332405116..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20403.png b/front/public/images/small/gregtech/gt.metaitem.02/20403.png deleted file mode 100644 index 4c10e76610..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20404.png b/front/public/images/small/gregtech/gt.metaitem.02/20404.png deleted file mode 100644 index 7b344e65a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20405.png b/front/public/images/small/gregtech/gt.metaitem.02/20405.png deleted file mode 100644 index fbadec3c42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20406.png b/front/public/images/small/gregtech/gt.metaitem.02/20406.png deleted file mode 100644 index dd8cd6b902..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20407.png b/front/public/images/small/gregtech/gt.metaitem.02/20407.png deleted file mode 100644 index b6c72680ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20408.png b/front/public/images/small/gregtech/gt.metaitem.02/20408.png deleted file mode 100644 index bcca61f5ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20470.png b/front/public/images/small/gregtech/gt.metaitem.02/20470.png deleted file mode 100644 index fc560af14f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20471.png b/front/public/images/small/gregtech/gt.metaitem.02/20471.png deleted file mode 100644 index c7db1c9c92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20472.png b/front/public/images/small/gregtech/gt.metaitem.02/20472.png deleted file mode 100644 index 2d19bf625f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20473.png b/front/public/images/small/gregtech/gt.metaitem.02/20473.png deleted file mode 100644 index 9daa51c2e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20485.png b/front/public/images/small/gregtech/gt.metaitem.02/20485.png deleted file mode 100644 index fc589f0c4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20488.png b/front/public/images/small/gregtech/gt.metaitem.02/20488.png deleted file mode 100644 index eed9166cab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20489.png b/front/public/images/small/gregtech/gt.metaitem.02/20489.png deleted file mode 100644 index 6ffae874cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20500.png b/front/public/images/small/gregtech/gt.metaitem.02/20500.png deleted file mode 100644 index 350217c4a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20521.png b/front/public/images/small/gregtech/gt.metaitem.02/20521.png deleted file mode 100644 index c964da6a24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20529.png b/front/public/images/small/gregtech/gt.metaitem.02/20529.png deleted file mode 100644 index 69a6bca1e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20540.png b/front/public/images/small/gregtech/gt.metaitem.02/20540.png deleted file mode 100644 index c964da6a24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20541.png b/front/public/images/small/gregtech/gt.metaitem.02/20541.png deleted file mode 100644 index 521e194f52..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20542.png b/front/public/images/small/gregtech/gt.metaitem.02/20542.png deleted file mode 100644 index 4bfd99ba22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20543.png b/front/public/images/small/gregtech/gt.metaitem.02/20543.png deleted file mode 100644 index 288fd001c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20544.png b/front/public/images/small/gregtech/gt.metaitem.02/20544.png deleted file mode 100644 index 674076640d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20545.png b/front/public/images/small/gregtech/gt.metaitem.02/20545.png deleted file mode 100644 index 409fe8c54b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20576.png b/front/public/images/small/gregtech/gt.metaitem.02/20576.png deleted file mode 100644 index 42d54d65df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20581.png b/front/public/images/small/gregtech/gt.metaitem.02/20581.png deleted file mode 100644 index 3a1be29f37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20583.png b/front/public/images/small/gregtech/gt.metaitem.02/20583.png deleted file mode 100644 index 06291d165d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20585.png b/front/public/images/small/gregtech/gt.metaitem.02/20585.png deleted file mode 100644 index 3aad11fdf2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20586.png b/front/public/images/small/gregtech/gt.metaitem.02/20586.png deleted file mode 100644 index 4a318c8cfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20588.png b/front/public/images/small/gregtech/gt.metaitem.02/20588.png deleted file mode 100644 index b24cca8023..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20599.png b/front/public/images/small/gregtech/gt.metaitem.02/20599.png deleted file mode 100644 index 5f9834a581..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20610.png b/front/public/images/small/gregtech/gt.metaitem.02/20610.png deleted file mode 100644 index 67be94a7a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20613.png b/front/public/images/small/gregtech/gt.metaitem.02/20613.png deleted file mode 100644 index b1323bcda8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20631.png b/front/public/images/small/gregtech/gt.metaitem.02/20631.png deleted file mode 100644 index e4762d9814..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20635.png b/front/public/images/small/gregtech/gt.metaitem.02/20635.png deleted file mode 100644 index 9930587226..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20636.png b/front/public/images/small/gregtech/gt.metaitem.02/20636.png deleted file mode 100644 index c845036bc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20649.png b/front/public/images/small/gregtech/gt.metaitem.02/20649.png deleted file mode 100644 index d871c56a14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20765.png b/front/public/images/small/gregtech/gt.metaitem.02/20765.png deleted file mode 100644 index 3481932802..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20770.png b/front/public/images/small/gregtech/gt.metaitem.02/20770.png deleted file mode 100644 index 8bc1a61e47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20809.png b/front/public/images/small/gregtech/gt.metaitem.02/20809.png deleted file mode 100644 index bf50725176..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20844.png b/front/public/images/small/gregtech/gt.metaitem.02/20844.png deleted file mode 100644 index 38dbe4aeaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20844.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20845.png b/front/public/images/small/gregtech/gt.metaitem.02/20845.png deleted file mode 100644 index 55b81c88eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20845.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20849.png b/front/public/images/small/gregtech/gt.metaitem.02/20849.png deleted file mode 100644 index 56407c9608..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20850.png b/front/public/images/small/gregtech/gt.metaitem.02/20850.png deleted file mode 100644 index 438c8ce8b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20854.png b/front/public/images/small/gregtech/gt.metaitem.02/20854.png deleted file mode 100644 index ec57670952..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20854.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20868.png b/front/public/images/small/gregtech/gt.metaitem.02/20868.png deleted file mode 100644 index bfe5a3ad65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20874.png b/front/public/images/small/gregtech/gt.metaitem.02/20874.png deleted file mode 100644 index 55b81c88eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20880.png b/front/public/images/small/gregtech/gt.metaitem.02/20880.png deleted file mode 100644 index c9d5bd6c43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20884.png b/front/public/images/small/gregtech/gt.metaitem.02/20884.png deleted file mode 100644 index 37e4d2e27d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20889.png b/front/public/images/small/gregtech/gt.metaitem.02/20889.png deleted file mode 100644 index b0dd7dec40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20912.png b/front/public/images/small/gregtech/gt.metaitem.02/20912.png deleted file mode 100644 index 2f5b19f60a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20913.png b/front/public/images/small/gregtech/gt.metaitem.02/20913.png deleted file mode 100644 index 0a055e3ced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20952.png b/front/public/images/small/gregtech/gt.metaitem.02/20952.png deleted file mode 100644 index f56060f587..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20966.png b/front/public/images/small/gregtech/gt.metaitem.02/20966.png deleted file mode 100644 index 4866e0c18a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20970.png b/front/public/images/small/gregtech/gt.metaitem.02/20970.png deleted file mode 100644 index 8c51dd5086..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20975.png b/front/public/images/small/gregtech/gt.metaitem.02/20975.png deleted file mode 100644 index 735441b50d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20976.png b/front/public/images/small/gregtech/gt.metaitem.02/20976.png deleted file mode 100644 index 96bb351d05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20977.png b/front/public/images/small/gregtech/gt.metaitem.02/20977.png deleted file mode 100644 index 2b1b8920b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20978.png b/front/public/images/small/gregtech/gt.metaitem.02/20978.png deleted file mode 100644 index 16b599582f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20982.png b/front/public/images/small/gregtech/gt.metaitem.02/20982.png deleted file mode 100644 index 0818bf55d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/20984.png b/front/public/images/small/gregtech/gt.metaitem.02/20984.png deleted file mode 100644 index b1872bf352..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/20984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21010.png b/front/public/images/small/gregtech/gt.metaitem.02/21010.png deleted file mode 100644 index 565a180e93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21019.png b/front/public/images/small/gregtech/gt.metaitem.02/21019.png deleted file mode 100644 index b02589ec7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21028.png b/front/public/images/small/gregtech/gt.metaitem.02/21028.png deleted file mode 100644 index ccf0429c41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21030.png b/front/public/images/small/gregtech/gt.metaitem.02/21030.png deleted file mode 100644 index 9cf571f9cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21032.png b/front/public/images/small/gregtech/gt.metaitem.02/21032.png deleted file mode 100644 index c2c1d12b54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21033.png b/front/public/images/small/gregtech/gt.metaitem.02/21033.png deleted file mode 100644 index 535f62ceea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21034.png b/front/public/images/small/gregtech/gt.metaitem.02/21034.png deleted file mode 100644 index 816500c647..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21035.png b/front/public/images/small/gregtech/gt.metaitem.02/21035.png deleted file mode 100644 index 92c18e78ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21052.png b/front/public/images/small/gregtech/gt.metaitem.02/21052.png deleted file mode 100644 index a1c87a200d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21054.png b/front/public/images/small/gregtech/gt.metaitem.02/21054.png deleted file mode 100644 index 5527078420..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21057.png b/front/public/images/small/gregtech/gt.metaitem.02/21057.png deleted file mode 100644 index 5839f6a97a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21067.png b/front/public/images/small/gregtech/gt.metaitem.02/21067.png deleted file mode 100644 index 4ffe2917e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21081.png b/front/public/images/small/gregtech/gt.metaitem.02/21081.png deleted file mode 100644 index e36bc17c9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21083.png b/front/public/images/small/gregtech/gt.metaitem.02/21083.png deleted file mode 100644 index 6e397e7e46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21084.png b/front/public/images/small/gregtech/gt.metaitem.02/21084.png deleted file mode 100644 index 2abddc6668..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21085.png b/front/public/images/small/gregtech/gt.metaitem.02/21085.png deleted file mode 100644 index 89aa0162d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21086.png b/front/public/images/small/gregtech/gt.metaitem.02/21086.png deleted file mode 100644 index 8a58578df5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21089.png b/front/public/images/small/gregtech/gt.metaitem.02/21089.png deleted file mode 100644 index 4cc69c8fdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21090.png b/front/public/images/small/gregtech/gt.metaitem.02/21090.png deleted file mode 100644 index 982395bcbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21111.png b/front/public/images/small/gregtech/gt.metaitem.02/21111.png deleted file mode 100644 index 221b1a62e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21112.png b/front/public/images/small/gregtech/gt.metaitem.02/21112.png deleted file mode 100644 index 20aaaeb0a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21129.png b/front/public/images/small/gregtech/gt.metaitem.02/21129.png deleted file mode 100644 index 8d7c6f2d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21139.png b/front/public/images/small/gregtech/gt.metaitem.02/21139.png deleted file mode 100644 index 835e8abeb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21141.png b/front/public/images/small/gregtech/gt.metaitem.02/21141.png deleted file mode 100644 index ad93193f44..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21143.png b/front/public/images/small/gregtech/gt.metaitem.02/21143.png deleted file mode 100644 index 46653b432a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21201.png b/front/public/images/small/gregtech/gt.metaitem.02/21201.png deleted file mode 100644 index 7eedabe3fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21202.png b/front/public/images/small/gregtech/gt.metaitem.02/21202.png deleted file mode 100644 index 96bc81a408..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21203.png b/front/public/images/small/gregtech/gt.metaitem.02/21203.png deleted file mode 100644 index 820c2cd989..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21205.png b/front/public/images/small/gregtech/gt.metaitem.02/21205.png deleted file mode 100644 index 0eda80dd54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21206.png b/front/public/images/small/gregtech/gt.metaitem.02/21206.png deleted file mode 100644 index b84a61bdbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21207.png b/front/public/images/small/gregtech/gt.metaitem.02/21207.png deleted file mode 100644 index 6a5ae266b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21300.png b/front/public/images/small/gregtech/gt.metaitem.02/21300.png deleted file mode 100644 index 340dd0acc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21301.png b/front/public/images/small/gregtech/gt.metaitem.02/21301.png deleted file mode 100644 index 556e732996..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21302.png b/front/public/images/small/gregtech/gt.metaitem.02/21302.png deleted file mode 100644 index 69f5cbe15e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21303.png b/front/public/images/small/gregtech/gt.metaitem.02/21303.png deleted file mode 100644 index 3686bb78cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21304.png b/front/public/images/small/gregtech/gt.metaitem.02/21304.png deleted file mode 100644 index 9df9b0c6ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21305.png b/front/public/images/small/gregtech/gt.metaitem.02/21305.png deleted file mode 100644 index a1c87a200d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21306.png b/front/public/images/small/gregtech/gt.metaitem.02/21306.png deleted file mode 100644 index b4b17f6b74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21313.png b/front/public/images/small/gregtech/gt.metaitem.02/21313.png deleted file mode 100644 index 8df36f0961..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21316.png b/front/public/images/small/gregtech/gt.metaitem.02/21316.png deleted file mode 100644 index a1af0c738d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21317.png b/front/public/images/small/gregtech/gt.metaitem.02/21317.png deleted file mode 100644 index 983dd98b39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21318.png b/front/public/images/small/gregtech/gt.metaitem.02/21318.png deleted file mode 100644 index 21d661662a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21319.png b/front/public/images/small/gregtech/gt.metaitem.02/21319.png deleted file mode 100644 index f1cc6ba767..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21320.png b/front/public/images/small/gregtech/gt.metaitem.02/21320.png deleted file mode 100644 index 9b0b728693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21321.png b/front/public/images/small/gregtech/gt.metaitem.02/21321.png deleted file mode 100644 index 20fbc4b40b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21323.png b/front/public/images/small/gregtech/gt.metaitem.02/21323.png deleted file mode 100644 index e140603c9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21324.png b/front/public/images/small/gregtech/gt.metaitem.02/21324.png deleted file mode 100644 index e36bc17c9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21325.png b/front/public/images/small/gregtech/gt.metaitem.02/21325.png deleted file mode 100644 index e27701eef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21330.png b/front/public/images/small/gregtech/gt.metaitem.02/21330.png deleted file mode 100644 index eeb1390fa9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21334.png b/front/public/images/small/gregtech/gt.metaitem.02/21334.png deleted file mode 100644 index 4ffe2917e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21335.png b/front/public/images/small/gregtech/gt.metaitem.02/21335.png deleted file mode 100644 index 61f8cd72d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21338.png b/front/public/images/small/gregtech/gt.metaitem.02/21338.png deleted file mode 100644 index 39ed34e0cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21339.png b/front/public/images/small/gregtech/gt.metaitem.02/21339.png deleted file mode 100644 index 6b39c63917..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21343.png b/front/public/images/small/gregtech/gt.metaitem.02/21343.png deleted file mode 100644 index acb9df008f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21344.png b/front/public/images/small/gregtech/gt.metaitem.02/21344.png deleted file mode 100644 index a1cdfd8ab3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21345.png b/front/public/images/small/gregtech/gt.metaitem.02/21345.png deleted file mode 100644 index d38f4a3318..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21346.png b/front/public/images/small/gregtech/gt.metaitem.02/21346.png deleted file mode 100644 index a44159708a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21348.png b/front/public/images/small/gregtech/gt.metaitem.02/21348.png deleted file mode 100644 index a069d8d775..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21349.png b/front/public/images/small/gregtech/gt.metaitem.02/21349.png deleted file mode 100644 index 343260815f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21350.png b/front/public/images/small/gregtech/gt.metaitem.02/21350.png deleted file mode 100644 index f5974217d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21351.png b/front/public/images/small/gregtech/gt.metaitem.02/21351.png deleted file mode 100644 index 914681e680..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21352.png b/front/public/images/small/gregtech/gt.metaitem.02/21352.png deleted file mode 100644 index 8c7bd97f73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21353.png b/front/public/images/small/gregtech/gt.metaitem.02/21353.png deleted file mode 100644 index 29d7d6d94a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21354.png b/front/public/images/small/gregtech/gt.metaitem.02/21354.png deleted file mode 100644 index a2a576faaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21355.png b/front/public/images/small/gregtech/gt.metaitem.02/21355.png deleted file mode 100644 index ae70f699e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21356.png b/front/public/images/small/gregtech/gt.metaitem.02/21356.png deleted file mode 100644 index 4cc4fb4941..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21357.png b/front/public/images/small/gregtech/gt.metaitem.02/21357.png deleted file mode 100644 index 8796614b3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21362.png b/front/public/images/small/gregtech/gt.metaitem.02/21362.png deleted file mode 100644 index 54739a18e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21363.png b/front/public/images/small/gregtech/gt.metaitem.02/21363.png deleted file mode 100644 index c2c1d12b54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21364.png b/front/public/images/small/gregtech/gt.metaitem.02/21364.png deleted file mode 100644 index 64378351a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21365.png b/front/public/images/small/gregtech/gt.metaitem.02/21365.png deleted file mode 100644 index 368bccfd83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21366.png b/front/public/images/small/gregtech/gt.metaitem.02/21366.png deleted file mode 100644 index cc8b0d4912..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21367.png b/front/public/images/small/gregtech/gt.metaitem.02/21367.png deleted file mode 100644 index 26aa81df9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21368.png b/front/public/images/small/gregtech/gt.metaitem.02/21368.png deleted file mode 100644 index c4b16283d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21369.png b/front/public/images/small/gregtech/gt.metaitem.02/21369.png deleted file mode 100644 index 6a9683d8cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21370.png b/front/public/images/small/gregtech/gt.metaitem.02/21370.png deleted file mode 100644 index da35c7d068..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21371.png b/front/public/images/small/gregtech/gt.metaitem.02/21371.png deleted file mode 100644 index d20d1f41c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21372.png b/front/public/images/small/gregtech/gt.metaitem.02/21372.png deleted file mode 100644 index d847a50d22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21373.png b/front/public/images/small/gregtech/gt.metaitem.02/21373.png deleted file mode 100644 index aca0f6b4cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21374.png b/front/public/images/small/gregtech/gt.metaitem.02/21374.png deleted file mode 100644 index 77212cfe4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21378.png b/front/public/images/small/gregtech/gt.metaitem.02/21378.png deleted file mode 100644 index f70dbb0e33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21379.png b/front/public/images/small/gregtech/gt.metaitem.02/21379.png deleted file mode 100644 index 0658843334..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21380.png b/front/public/images/small/gregtech/gt.metaitem.02/21380.png deleted file mode 100644 index eb2b19bc4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21381.png b/front/public/images/small/gregtech/gt.metaitem.02/21381.png deleted file mode 100644 index 2693c985fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21382.png b/front/public/images/small/gregtech/gt.metaitem.02/21382.png deleted file mode 100644 index b05a7d70bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21383.png b/front/public/images/small/gregtech/gt.metaitem.02/21383.png deleted file mode 100644 index 408088e751..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21384.png b/front/public/images/small/gregtech/gt.metaitem.02/21384.png deleted file mode 100644 index 20d21d74b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21385.png b/front/public/images/small/gregtech/gt.metaitem.02/21385.png deleted file mode 100644 index 97e9983d8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21386.png b/front/public/images/small/gregtech/gt.metaitem.02/21386.png deleted file mode 100644 index d0d3078c4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21387.png b/front/public/images/small/gregtech/gt.metaitem.02/21387.png deleted file mode 100644 index 25e8b6ab84..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21388.png b/front/public/images/small/gregtech/gt.metaitem.02/21388.png deleted file mode 100644 index e36bc17c9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21389.png b/front/public/images/small/gregtech/gt.metaitem.02/21389.png deleted file mode 100644 index a7c4d1c00c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21390.png b/front/public/images/small/gregtech/gt.metaitem.02/21390.png deleted file mode 100644 index 166e59c9ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21391.png b/front/public/images/small/gregtech/gt.metaitem.02/21391.png deleted file mode 100644 index 12a371b0cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21392.png b/front/public/images/small/gregtech/gt.metaitem.02/21392.png deleted file mode 100644 index 811b41f7d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21393.png b/front/public/images/small/gregtech/gt.metaitem.02/21393.png deleted file mode 100644 index 9d41644d48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21394.png b/front/public/images/small/gregtech/gt.metaitem.02/21394.png deleted file mode 100644 index f1cc6ba767..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21397.png b/front/public/images/small/gregtech/gt.metaitem.02/21397.png deleted file mode 100644 index 1916272411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21398.png b/front/public/images/small/gregtech/gt.metaitem.02/21398.png deleted file mode 100644 index 07262857c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21399.png b/front/public/images/small/gregtech/gt.metaitem.02/21399.png deleted file mode 100644 index 08049c7473..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21400.png b/front/public/images/small/gregtech/gt.metaitem.02/21400.png deleted file mode 100644 index 6ab7d44cba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21401.png b/front/public/images/small/gregtech/gt.metaitem.02/21401.png deleted file mode 100644 index cfb4e73642..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21402.png b/front/public/images/small/gregtech/gt.metaitem.02/21402.png deleted file mode 100644 index e93cd4efd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21403.png b/front/public/images/small/gregtech/gt.metaitem.02/21403.png deleted file mode 100644 index 79343b0bbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21404.png b/front/public/images/small/gregtech/gt.metaitem.02/21404.png deleted file mode 100644 index 3539642ed9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21405.png b/front/public/images/small/gregtech/gt.metaitem.02/21405.png deleted file mode 100644 index 8e5a75a94a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21406.png b/front/public/images/small/gregtech/gt.metaitem.02/21406.png deleted file mode 100644 index 04a2f91fc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21407.png b/front/public/images/small/gregtech/gt.metaitem.02/21407.png deleted file mode 100644 index 4863d06ea3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21408.png b/front/public/images/small/gregtech/gt.metaitem.02/21408.png deleted file mode 100644 index 7cb2f7c8d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21470.png b/front/public/images/small/gregtech/gt.metaitem.02/21470.png deleted file mode 100644 index 5a379d99b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21472.png b/front/public/images/small/gregtech/gt.metaitem.02/21472.png deleted file mode 100644 index e36bc17c9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21473.png b/front/public/images/small/gregtech/gt.metaitem.02/21473.png deleted file mode 100644 index 4ffe2917e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21485.png b/front/public/images/small/gregtech/gt.metaitem.02/21485.png deleted file mode 100644 index b499e27d60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21488.png b/front/public/images/small/gregtech/gt.metaitem.02/21488.png deleted file mode 100644 index a375315f79..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21489.png b/front/public/images/small/gregtech/gt.metaitem.02/21489.png deleted file mode 100644 index 2eae19ee1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21529.png b/front/public/images/small/gregtech/gt.metaitem.02/21529.png deleted file mode 100644 index 0e7094420b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21576.png b/front/public/images/small/gregtech/gt.metaitem.02/21576.png deleted file mode 100644 index e10e9104d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21581.png b/front/public/images/small/gregtech/gt.metaitem.02/21581.png deleted file mode 100644 index cc210b6a43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21583.png b/front/public/images/small/gregtech/gt.metaitem.02/21583.png deleted file mode 100644 index cdb19e38b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21585.png b/front/public/images/small/gregtech/gt.metaitem.02/21585.png deleted file mode 100644 index 3ad3a1999b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21586.png b/front/public/images/small/gregtech/gt.metaitem.02/21586.png deleted file mode 100644 index c8827163c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21588.png b/front/public/images/small/gregtech/gt.metaitem.02/21588.png deleted file mode 100644 index 949a55d492..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21599.png b/front/public/images/small/gregtech/gt.metaitem.02/21599.png deleted file mode 100644 index 6f68dd9bf4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21610.png b/front/public/images/small/gregtech/gt.metaitem.02/21610.png deleted file mode 100644 index 3a1294e7ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21613.png b/front/public/images/small/gregtech/gt.metaitem.02/21613.png deleted file mode 100644 index 176be8d7c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21631.png b/front/public/images/small/gregtech/gt.metaitem.02/21631.png deleted file mode 100644 index 2bc8f01ab8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21765.png b/front/public/images/small/gregtech/gt.metaitem.02/21765.png deleted file mode 100644 index b73f952b73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21770.png b/front/public/images/small/gregtech/gt.metaitem.02/21770.png deleted file mode 100644 index 036088c3a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21809.png b/front/public/images/small/gregtech/gt.metaitem.02/21809.png deleted file mode 100644 index d4b33b52b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21868.png b/front/public/images/small/gregtech/gt.metaitem.02/21868.png deleted file mode 100644 index f1769b9882..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21884.png b/front/public/images/small/gregtech/gt.metaitem.02/21884.png deleted file mode 100644 index e27701eef4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21889.png b/front/public/images/small/gregtech/gt.metaitem.02/21889.png deleted file mode 100644 index 3ccb65ccc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21912.png b/front/public/images/small/gregtech/gt.metaitem.02/21912.png deleted file mode 100644 index b2f90f202a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21913.png b/front/public/images/small/gregtech/gt.metaitem.02/21913.png deleted file mode 100644 index a069d8d775..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21952.png b/front/public/images/small/gregtech/gt.metaitem.02/21952.png deleted file mode 100644 index 66be78d180..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21966.png b/front/public/images/small/gregtech/gt.metaitem.02/21966.png deleted file mode 100644 index 161ccbe455..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21970.png b/front/public/images/small/gregtech/gt.metaitem.02/21970.png deleted file mode 100644 index d1d106d0ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21975.png b/front/public/images/small/gregtech/gt.metaitem.02/21975.png deleted file mode 100644 index 7f04ba488c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21976.png b/front/public/images/small/gregtech/gt.metaitem.02/21976.png deleted file mode 100644 index d152ca61b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21977.png b/front/public/images/small/gregtech/gt.metaitem.02/21977.png deleted file mode 100644 index 926d5324ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21978.png b/front/public/images/small/gregtech/gt.metaitem.02/21978.png deleted file mode 100644 index bd5c6b0695..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21982.png b/front/public/images/small/gregtech/gt.metaitem.02/21982.png deleted file mode 100644 index 7befe64106..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/21984.png b/front/public/images/small/gregtech/gt.metaitem.02/21984.png deleted file mode 100644 index f1cc6ba767..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/21984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22006.png b/front/public/images/small/gregtech/gt.metaitem.02/22006.png deleted file mode 100644 index dfd9884edb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22008.png b/front/public/images/small/gregtech/gt.metaitem.02/22008.png deleted file mode 100644 index 713c012996..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22010.png b/front/public/images/small/gregtech/gt.metaitem.02/22010.png deleted file mode 100644 index fefba7cda9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22018.png b/front/public/images/small/gregtech/gt.metaitem.02/22018.png deleted file mode 100644 index 7e14ed6724..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22019.png b/front/public/images/small/gregtech/gt.metaitem.02/22019.png deleted file mode 100644 index 9744a1280e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22020.png b/front/public/images/small/gregtech/gt.metaitem.02/22020.png deleted file mode 100644 index fd06f7dc69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22025.png b/front/public/images/small/gregtech/gt.metaitem.02/22025.png deleted file mode 100644 index e04e8345c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22027.png b/front/public/images/small/gregtech/gt.metaitem.02/22027.png deleted file mode 100644 index 780f1c40c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22028.png b/front/public/images/small/gregtech/gt.metaitem.02/22028.png deleted file mode 100644 index f7b3cf1201..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22029.png b/front/public/images/small/gregtech/gt.metaitem.02/22029.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22030.png b/front/public/images/small/gregtech/gt.metaitem.02/22030.png deleted file mode 100644 index 34baf719a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22031.png b/front/public/images/small/gregtech/gt.metaitem.02/22031.png deleted file mode 100644 index 161e18416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22032.png b/front/public/images/small/gregtech/gt.metaitem.02/22032.png deleted file mode 100644 index 148bd1a298..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22033.png b/front/public/images/small/gregtech/gt.metaitem.02/22033.png deleted file mode 100644 index 98e88f8c0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22034.png b/front/public/images/small/gregtech/gt.metaitem.02/22034.png deleted file mode 100644 index 62f6b9a3b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22035.png b/front/public/images/small/gregtech/gt.metaitem.02/22035.png deleted file mode 100644 index eeeb5b75a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22036.png b/front/public/images/small/gregtech/gt.metaitem.02/22036.png deleted file mode 100644 index ac3db148b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22037.png b/front/public/images/small/gregtech/gt.metaitem.02/22037.png deleted file mode 100644 index e121d03f51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22039.png b/front/public/images/small/gregtech/gt.metaitem.02/22039.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22043.png b/front/public/images/small/gregtech/gt.metaitem.02/22043.png deleted file mode 100644 index 76d1d2e332..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22045.png b/front/public/images/small/gregtech/gt.metaitem.02/22045.png deleted file mode 100644 index 0b05e58137..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22047.png b/front/public/images/small/gregtech/gt.metaitem.02/22047.png deleted file mode 100644 index 4ef547337d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22048.png b/front/public/images/small/gregtech/gt.metaitem.02/22048.png deleted file mode 100644 index f386ebc549..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22052.png b/front/public/images/small/gregtech/gt.metaitem.02/22052.png deleted file mode 100644 index 6f3b8df49f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22054.png b/front/public/images/small/gregtech/gt.metaitem.02/22054.png deleted file mode 100644 index e121d03f51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22056.png b/front/public/images/small/gregtech/gt.metaitem.02/22056.png deleted file mode 100644 index fb4aa67cc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22057.png b/front/public/images/small/gregtech/gt.metaitem.02/22057.png deleted file mode 100644 index 9e981a5bf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22058.png b/front/public/images/small/gregtech/gt.metaitem.02/22058.png deleted file mode 100644 index 8061d118cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22059.png b/front/public/images/small/gregtech/gt.metaitem.02/22059.png deleted file mode 100644 index ef1bb87925..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22062.png b/front/public/images/small/gregtech/gt.metaitem.02/22062.png deleted file mode 100644 index dcc4963490..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22063.png b/front/public/images/small/gregtech/gt.metaitem.02/22063.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22064.png b/front/public/images/small/gregtech/gt.metaitem.02/22064.png deleted file mode 100644 index 6c995dd819..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22065.png b/front/public/images/small/gregtech/gt.metaitem.02/22065.png deleted file mode 100644 index ab8dbde4ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22066.png b/front/public/images/small/gregtech/gt.metaitem.02/22066.png deleted file mode 100644 index 9aa3e9892f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22067.png b/front/public/images/small/gregtech/gt.metaitem.02/22067.png deleted file mode 100644 index 97169b61a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22068.png b/front/public/images/small/gregtech/gt.metaitem.02/22068.png deleted file mode 100644 index 472fa357c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22069.png b/front/public/images/small/gregtech/gt.metaitem.02/22069.png deleted file mode 100644 index b29f7ec1cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22070.png b/front/public/images/small/gregtech/gt.metaitem.02/22070.png deleted file mode 100644 index 55292e5c87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22071.png b/front/public/images/small/gregtech/gt.metaitem.02/22071.png deleted file mode 100644 index 87a7c4a5b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22072.png b/front/public/images/small/gregtech/gt.metaitem.02/22072.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22073.png b/front/public/images/small/gregtech/gt.metaitem.02/22073.png deleted file mode 100644 index 761144de1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22074.png b/front/public/images/small/gregtech/gt.metaitem.02/22074.png deleted file mode 100644 index 91e25cd2f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22075.png b/front/public/images/small/gregtech/gt.metaitem.02/22075.png deleted file mode 100644 index 0d1dca799c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22076.png b/front/public/images/small/gregtech/gt.metaitem.02/22076.png deleted file mode 100644 index c68d723ca8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22077.png b/front/public/images/small/gregtech/gt.metaitem.02/22077.png deleted file mode 100644 index 71f59cae0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22078.png b/front/public/images/small/gregtech/gt.metaitem.02/22078.png deleted file mode 100644 index c28435eb83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22080.png b/front/public/images/small/gregtech/gt.metaitem.02/22080.png deleted file mode 100644 index 7eafd0783e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22081.png b/front/public/images/small/gregtech/gt.metaitem.02/22081.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22083.png b/front/public/images/small/gregtech/gt.metaitem.02/22083.png deleted file mode 100644 index 38c83274c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22084.png b/front/public/images/small/gregtech/gt.metaitem.02/22084.png deleted file mode 100644 index 97111f8ca7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22085.png b/front/public/images/small/gregtech/gt.metaitem.02/22085.png deleted file mode 100644 index e5b473a780..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22086.png b/front/public/images/small/gregtech/gt.metaitem.02/22086.png deleted file mode 100644 index 37922d74c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22089.png b/front/public/images/small/gregtech/gt.metaitem.02/22089.png deleted file mode 100644 index f8461f3a0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22090.png b/front/public/images/small/gregtech/gt.metaitem.02/22090.png deleted file mode 100644 index 41498dd315..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22096.png b/front/public/images/small/gregtech/gt.metaitem.02/22096.png deleted file mode 100644 index fb4ed47fe2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22097.png b/front/public/images/small/gregtech/gt.metaitem.02/22097.png deleted file mode 100644 index f4968d72c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22098.png b/front/public/images/small/gregtech/gt.metaitem.02/22098.png deleted file mode 100644 index e285ea6912..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22100.png b/front/public/images/small/gregtech/gt.metaitem.02/22100.png deleted file mode 100644 index d370f1bd3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22101.png b/front/public/images/small/gregtech/gt.metaitem.02/22101.png deleted file mode 100644 index 95247d5916..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22103.png b/front/public/images/small/gregtech/gt.metaitem.02/22103.png deleted file mode 100644 index 148bd1a298..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22111.png b/front/public/images/small/gregtech/gt.metaitem.02/22111.png deleted file mode 100644 index eb94192e40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22112.png b/front/public/images/small/gregtech/gt.metaitem.02/22112.png deleted file mode 100644 index d6c2f8aff5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22129.png b/front/public/images/small/gregtech/gt.metaitem.02/22129.png deleted file mode 100644 index 161e18416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22131.png b/front/public/images/small/gregtech/gt.metaitem.02/22131.png deleted file mode 100644 index 8af2991235..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22134.png b/front/public/images/small/gregtech/gt.metaitem.02/22134.png deleted file mode 100644 index 986ea43734..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22139.png b/front/public/images/small/gregtech/gt.metaitem.02/22139.png deleted file mode 100644 index 9f24e47e45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22141.png b/front/public/images/small/gregtech/gt.metaitem.02/22141.png deleted file mode 100644 index b6602fbd87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22143.png b/front/public/images/small/gregtech/gt.metaitem.02/22143.png deleted file mode 100644 index 124d65acb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22201.png b/front/public/images/small/gregtech/gt.metaitem.02/22201.png deleted file mode 100644 index 430ec03130..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22202.png b/front/public/images/small/gregtech/gt.metaitem.02/22202.png deleted file mode 100644 index 745f76cc1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22203.png b/front/public/images/small/gregtech/gt.metaitem.02/22203.png deleted file mode 100644 index 7cc73db9b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22205.png b/front/public/images/small/gregtech/gt.metaitem.02/22205.png deleted file mode 100644 index 4deda64c57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22206.png b/front/public/images/small/gregtech/gt.metaitem.02/22206.png deleted file mode 100644 index 816c934013..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22207.png b/front/public/images/small/gregtech/gt.metaitem.02/22207.png deleted file mode 100644 index 1e98098acd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22208.png b/front/public/images/small/gregtech/gt.metaitem.02/22208.png deleted file mode 100644 index cc3a0faf9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22209.png b/front/public/images/small/gregtech/gt.metaitem.02/22209.png deleted file mode 100644 index a15196c0fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22300.png b/front/public/images/small/gregtech/gt.metaitem.02/22300.png deleted file mode 100644 index c946d0bdf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22301.png b/front/public/images/small/gregtech/gt.metaitem.02/22301.png deleted file mode 100644 index 01002878d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22302.png b/front/public/images/small/gregtech/gt.metaitem.02/22302.png deleted file mode 100644 index 9d51d7f495..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22303.png b/front/public/images/small/gregtech/gt.metaitem.02/22303.png deleted file mode 100644 index d0c1aa936b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22304.png b/front/public/images/small/gregtech/gt.metaitem.02/22304.png deleted file mode 100644 index 827e2d97b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22305.png b/front/public/images/small/gregtech/gt.metaitem.02/22305.png deleted file mode 100644 index 6f3b8df49f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22306.png b/front/public/images/small/gregtech/gt.metaitem.02/22306.png deleted file mode 100644 index 0be180da7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22307.png b/front/public/images/small/gregtech/gt.metaitem.02/22307.png deleted file mode 100644 index 827e2d97b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22308.png b/front/public/images/small/gregtech/gt.metaitem.02/22308.png deleted file mode 100644 index eac89a0119..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22309.png b/front/public/images/small/gregtech/gt.metaitem.02/22309.png deleted file mode 100644 index cedb020fc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22310.png b/front/public/images/small/gregtech/gt.metaitem.02/22310.png deleted file mode 100644 index e1ac5eabc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22311.png b/front/public/images/small/gregtech/gt.metaitem.02/22311.png deleted file mode 100644 index 0f1d021d1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22312.png b/front/public/images/small/gregtech/gt.metaitem.02/22312.png deleted file mode 100644 index 89e3a11add..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22313.png b/front/public/images/small/gregtech/gt.metaitem.02/22313.png deleted file mode 100644 index 4813b75d4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22314.png b/front/public/images/small/gregtech/gt.metaitem.02/22314.png deleted file mode 100644 index 5058c524b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22315.png b/front/public/images/small/gregtech/gt.metaitem.02/22315.png deleted file mode 100644 index d1ac11e928..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22316.png b/front/public/images/small/gregtech/gt.metaitem.02/22316.png deleted file mode 100644 index 050026f136..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22317.png b/front/public/images/small/gregtech/gt.metaitem.02/22317.png deleted file mode 100644 index 57d68fb782..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22318.png b/front/public/images/small/gregtech/gt.metaitem.02/22318.png deleted file mode 100644 index 9de9e46e4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22319.png b/front/public/images/small/gregtech/gt.metaitem.02/22319.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22320.png b/front/public/images/small/gregtech/gt.metaitem.02/22320.png deleted file mode 100644 index d9d6471e09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22321.png b/front/public/images/small/gregtech/gt.metaitem.02/22321.png deleted file mode 100644 index 673d7fda7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22323.png b/front/public/images/small/gregtech/gt.metaitem.02/22323.png deleted file mode 100644 index 7cdabedff0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22324.png b/front/public/images/small/gregtech/gt.metaitem.02/22324.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22325.png b/front/public/images/small/gregtech/gt.metaitem.02/22325.png deleted file mode 100644 index d9ff4c90d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22326.png b/front/public/images/small/gregtech/gt.metaitem.02/22326.png deleted file mode 100644 index a59f7ec8c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22327.png b/front/public/images/small/gregtech/gt.metaitem.02/22327.png deleted file mode 100644 index b3fdd3e08e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22328.png b/front/public/images/small/gregtech/gt.metaitem.02/22328.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22329.png b/front/public/images/small/gregtech/gt.metaitem.02/22329.png deleted file mode 100644 index 0932862c92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22330.png b/front/public/images/small/gregtech/gt.metaitem.02/22330.png deleted file mode 100644 index 1ce1191d6b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22331.png b/front/public/images/small/gregtech/gt.metaitem.02/22331.png deleted file mode 100644 index bbf3adb4d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22333.png b/front/public/images/small/gregtech/gt.metaitem.02/22333.png deleted file mode 100644 index 7f3d6ae740..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22334.png b/front/public/images/small/gregtech/gt.metaitem.02/22334.png deleted file mode 100644 index 97169b61a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22335.png b/front/public/images/small/gregtech/gt.metaitem.02/22335.png deleted file mode 100644 index bca05bf4a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22336.png b/front/public/images/small/gregtech/gt.metaitem.02/22336.png deleted file mode 100644 index d171a3fd6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22337.png b/front/public/images/small/gregtech/gt.metaitem.02/22337.png deleted file mode 100644 index 55501bea75..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22338.png b/front/public/images/small/gregtech/gt.metaitem.02/22338.png deleted file mode 100644 index 9264f6b884..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22339.png b/front/public/images/small/gregtech/gt.metaitem.02/22339.png deleted file mode 100644 index b43b227122..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22340.png b/front/public/images/small/gregtech/gt.metaitem.02/22340.png deleted file mode 100644 index 8de7bb515b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22341.png b/front/public/images/small/gregtech/gt.metaitem.02/22341.png deleted file mode 100644 index eed315b839..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22342.png b/front/public/images/small/gregtech/gt.metaitem.02/22342.png deleted file mode 100644 index 8863996580..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22343.png b/front/public/images/small/gregtech/gt.metaitem.02/22343.png deleted file mode 100644 index 9b56ae7883..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22344.png b/front/public/images/small/gregtech/gt.metaitem.02/22344.png deleted file mode 100644 index 4bb63176ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22345.png b/front/public/images/small/gregtech/gt.metaitem.02/22345.png deleted file mode 100644 index 980f3fb1cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22346.png b/front/public/images/small/gregtech/gt.metaitem.02/22346.png deleted file mode 100644 index 1cb4df7d9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22347.png b/front/public/images/small/gregtech/gt.metaitem.02/22347.png deleted file mode 100644 index b6529a5e4b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22348.png b/front/public/images/small/gregtech/gt.metaitem.02/22348.png deleted file mode 100644 index a6957c9eb2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22349.png b/front/public/images/small/gregtech/gt.metaitem.02/22349.png deleted file mode 100644 index 21c9d8f392..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22350.png b/front/public/images/small/gregtech/gt.metaitem.02/22350.png deleted file mode 100644 index 5d48afc4b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22351.png b/front/public/images/small/gregtech/gt.metaitem.02/22351.png deleted file mode 100644 index 3dc72a93a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22352.png b/front/public/images/small/gregtech/gt.metaitem.02/22352.png deleted file mode 100644 index 0c89f5cd85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22353.png b/front/public/images/small/gregtech/gt.metaitem.02/22353.png deleted file mode 100644 index 8be80abae5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22354.png b/front/public/images/small/gregtech/gt.metaitem.02/22354.png deleted file mode 100644 index 4d6a53a442..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22355.png b/front/public/images/small/gregtech/gt.metaitem.02/22355.png deleted file mode 100644 index a210bf8ee6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22356.png b/front/public/images/small/gregtech/gt.metaitem.02/22356.png deleted file mode 100644 index d2c009b605..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22357.png b/front/public/images/small/gregtech/gt.metaitem.02/22357.png deleted file mode 100644 index b78d515e65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22358.png b/front/public/images/small/gregtech/gt.metaitem.02/22358.png deleted file mode 100644 index b492b252d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22359.png b/front/public/images/small/gregtech/gt.metaitem.02/22359.png deleted file mode 100644 index 6178ed8c90..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22360.png b/front/public/images/small/gregtech/gt.metaitem.02/22360.png deleted file mode 100644 index 7adb2d3c2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22361.png b/front/public/images/small/gregtech/gt.metaitem.02/22361.png deleted file mode 100644 index eec9c38d1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22362.png b/front/public/images/small/gregtech/gt.metaitem.02/22362.png deleted file mode 100644 index ee4b688ce5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22363.png b/front/public/images/small/gregtech/gt.metaitem.02/22363.png deleted file mode 100644 index 148bd1a298..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22364.png b/front/public/images/small/gregtech/gt.metaitem.02/22364.png deleted file mode 100644 index 61fe15795f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22365.png b/front/public/images/small/gregtech/gt.metaitem.02/22365.png deleted file mode 100644 index ae39732de9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22366.png b/front/public/images/small/gregtech/gt.metaitem.02/22366.png deleted file mode 100644 index c498b3a072..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22367.png b/front/public/images/small/gregtech/gt.metaitem.02/22367.png deleted file mode 100644 index c44a44042e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22368.png b/front/public/images/small/gregtech/gt.metaitem.02/22368.png deleted file mode 100644 index 8fbd6ea360..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22369.png b/front/public/images/small/gregtech/gt.metaitem.02/22369.png deleted file mode 100644 index ebe9cd15eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22370.png b/front/public/images/small/gregtech/gt.metaitem.02/22370.png deleted file mode 100644 index 6d9c2dfc63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22371.png b/front/public/images/small/gregtech/gt.metaitem.02/22371.png deleted file mode 100644 index 3e36c6a30d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22372.png b/front/public/images/small/gregtech/gt.metaitem.02/22372.png deleted file mode 100644 index 3a1788541d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22373.png b/front/public/images/small/gregtech/gt.metaitem.02/22373.png deleted file mode 100644 index e2f9bc98f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22374.png b/front/public/images/small/gregtech/gt.metaitem.02/22374.png deleted file mode 100644 index ddfd3dbbac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22378.png b/front/public/images/small/gregtech/gt.metaitem.02/22378.png deleted file mode 100644 index c70f1858d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22379.png b/front/public/images/small/gregtech/gt.metaitem.02/22379.png deleted file mode 100644 index c136e246d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22380.png b/front/public/images/small/gregtech/gt.metaitem.02/22380.png deleted file mode 100644 index b80a4994c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22381.png b/front/public/images/small/gregtech/gt.metaitem.02/22381.png deleted file mode 100644 index 450ede95df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22382.png b/front/public/images/small/gregtech/gt.metaitem.02/22382.png deleted file mode 100644 index 389ba00ce1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22383.png b/front/public/images/small/gregtech/gt.metaitem.02/22383.png deleted file mode 100644 index dcdbf5e7bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22384.png b/front/public/images/small/gregtech/gt.metaitem.02/22384.png deleted file mode 100644 index 93841e9e9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22385.png b/front/public/images/small/gregtech/gt.metaitem.02/22385.png deleted file mode 100644 index 284e2a5624..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22386.png b/front/public/images/small/gregtech/gt.metaitem.02/22386.png deleted file mode 100644 index cbd5ecb449..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22387.png b/front/public/images/small/gregtech/gt.metaitem.02/22387.png deleted file mode 100644 index 5c8d7886d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22388.png b/front/public/images/small/gregtech/gt.metaitem.02/22388.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22389.png b/front/public/images/small/gregtech/gt.metaitem.02/22389.png deleted file mode 100644 index 7a17c58370..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22390.png b/front/public/images/small/gregtech/gt.metaitem.02/22390.png deleted file mode 100644 index afb2a12628..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22391.png b/front/public/images/small/gregtech/gt.metaitem.02/22391.png deleted file mode 100644 index e9a703705b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22392.png b/front/public/images/small/gregtech/gt.metaitem.02/22392.png deleted file mode 100644 index 5da6004070..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22393.png b/front/public/images/small/gregtech/gt.metaitem.02/22393.png deleted file mode 100644 index b9703af213..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22394.png b/front/public/images/small/gregtech/gt.metaitem.02/22394.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22395.png b/front/public/images/small/gregtech/gt.metaitem.02/22395.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22397.png b/front/public/images/small/gregtech/gt.metaitem.02/22397.png deleted file mode 100644 index ef46c5f2bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22398.png b/front/public/images/small/gregtech/gt.metaitem.02/22398.png deleted file mode 100644 index ed6282200b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22399.png b/front/public/images/small/gregtech/gt.metaitem.02/22399.png deleted file mode 100644 index d0ccd52ae1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22400.png b/front/public/images/small/gregtech/gt.metaitem.02/22400.png deleted file mode 100644 index b575be04d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22401.png b/front/public/images/small/gregtech/gt.metaitem.02/22401.png deleted file mode 100644 index cf0a97368c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22402.png b/front/public/images/small/gregtech/gt.metaitem.02/22402.png deleted file mode 100644 index bc92b5a0be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22403.png b/front/public/images/small/gregtech/gt.metaitem.02/22403.png deleted file mode 100644 index 8a75dded66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22404.png b/front/public/images/small/gregtech/gt.metaitem.02/22404.png deleted file mode 100644 index 45eb1a0c62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22405.png b/front/public/images/small/gregtech/gt.metaitem.02/22405.png deleted file mode 100644 index 1761cfaa60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22406.png b/front/public/images/small/gregtech/gt.metaitem.02/22406.png deleted file mode 100644 index 7dac13351b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22407.png b/front/public/images/small/gregtech/gt.metaitem.02/22407.png deleted file mode 100644 index e7dc7e6c43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22408.png b/front/public/images/small/gregtech/gt.metaitem.02/22408.png deleted file mode 100644 index b5927dfa05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22470.png b/front/public/images/small/gregtech/gt.metaitem.02/22470.png deleted file mode 100644 index 92bf675f6c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22471.png b/front/public/images/small/gregtech/gt.metaitem.02/22471.png deleted file mode 100644 index 9e981a5bf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22472.png b/front/public/images/small/gregtech/gt.metaitem.02/22472.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22473.png b/front/public/images/small/gregtech/gt.metaitem.02/22473.png deleted file mode 100644 index 97169b61a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22485.png b/front/public/images/small/gregtech/gt.metaitem.02/22485.png deleted file mode 100644 index 01b9f84753..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22488.png b/front/public/images/small/gregtech/gt.metaitem.02/22488.png deleted file mode 100644 index fc85411aa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22489.png b/front/public/images/small/gregtech/gt.metaitem.02/22489.png deleted file mode 100644 index dac97741ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22500.png b/front/public/images/small/gregtech/gt.metaitem.02/22500.png deleted file mode 100644 index 48c21207fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22501.png b/front/public/images/small/gregtech/gt.metaitem.02/22501.png deleted file mode 100644 index c6fb9a5e3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22502.png b/front/public/images/small/gregtech/gt.metaitem.02/22502.png deleted file mode 100644 index f03623b418..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22503.png b/front/public/images/small/gregtech/gt.metaitem.02/22503.png deleted file mode 100644 index af85477fcd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22504.png b/front/public/images/small/gregtech/gt.metaitem.02/22504.png deleted file mode 100644 index 4d44be1e5c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22505.png b/front/public/images/small/gregtech/gt.metaitem.02/22505.png deleted file mode 100644 index 98b044623e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22506.png b/front/public/images/small/gregtech/gt.metaitem.02/22506.png deleted file mode 100644 index 161e18416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22507.png b/front/public/images/small/gregtech/gt.metaitem.02/22507.png deleted file mode 100644 index c946d0bdf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22508.png b/front/public/images/small/gregtech/gt.metaitem.02/22508.png deleted file mode 100644 index e80a885b8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22509.png b/front/public/images/small/gregtech/gt.metaitem.02/22509.png deleted file mode 100644 index d6adc33eae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22510.png b/front/public/images/small/gregtech/gt.metaitem.02/22510.png deleted file mode 100644 index 23deaee506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22511.png b/front/public/images/small/gregtech/gt.metaitem.02/22511.png deleted file mode 100644 index ddcee817eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22512.png b/front/public/images/small/gregtech/gt.metaitem.02/22512.png deleted file mode 100644 index f03623b418..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22513.png b/front/public/images/small/gregtech/gt.metaitem.02/22513.png deleted file mode 100644 index 23deaee506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22514.png b/front/public/images/small/gregtech/gt.metaitem.02/22514.png deleted file mode 100644 index c946d0bdf8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22515.png b/front/public/images/small/gregtech/gt.metaitem.02/22515.png deleted file mode 100644 index f2405d88c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22515.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22516.png b/front/public/images/small/gregtech/gt.metaitem.02/22516.png deleted file mode 100644 index 55592baf69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22518.png b/front/public/images/small/gregtech/gt.metaitem.02/22518.png deleted file mode 100644 index dd92e86e5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22518.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22519.png b/front/public/images/small/gregtech/gt.metaitem.02/22519.png deleted file mode 100644 index dd92e86e5b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22519.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22520.png b/front/public/images/small/gregtech/gt.metaitem.02/22520.png deleted file mode 100644 index ecf3e450f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22521.png b/front/public/images/small/gregtech/gt.metaitem.02/22521.png deleted file mode 100644 index 9de9e46e4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22522.png b/front/public/images/small/gregtech/gt.metaitem.02/22522.png deleted file mode 100644 index 8baf76ed85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22523.png b/front/public/images/small/gregtech/gt.metaitem.02/22523.png deleted file mode 100644 index e71906c97f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22524.png b/front/public/images/small/gregtech/gt.metaitem.02/22524.png deleted file mode 100644 index 7791606e79..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22525.png b/front/public/images/small/gregtech/gt.metaitem.02/22525.png deleted file mode 100644 index b19c743d62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22525.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22526.png b/front/public/images/small/gregtech/gt.metaitem.02/22526.png deleted file mode 100644 index 62a31cab34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22527.png b/front/public/images/small/gregtech/gt.metaitem.02/22527.png deleted file mode 100644 index ddcee817eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22528.png b/front/public/images/small/gregtech/gt.metaitem.02/22528.png deleted file mode 100644 index e062c58208..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22529.png b/front/public/images/small/gregtech/gt.metaitem.02/22529.png deleted file mode 100644 index 7cfa5b2c14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22530.png b/front/public/images/small/gregtech/gt.metaitem.02/22530.png deleted file mode 100644 index 77820a33af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22531.png b/front/public/images/small/gregtech/gt.metaitem.02/22531.png deleted file mode 100644 index 7e14ed6724..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22532.png b/front/public/images/small/gregtech/gt.metaitem.02/22532.png deleted file mode 100644 index 30d8735112..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22533.png b/front/public/images/small/gregtech/gt.metaitem.02/22533.png deleted file mode 100644 index 690cfc03ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22534.png b/front/public/images/small/gregtech/gt.metaitem.02/22534.png deleted file mode 100644 index 0796d96f29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22535.png b/front/public/images/small/gregtech/gt.metaitem.02/22535.png deleted file mode 100644 index cdfb710360..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22536.png b/front/public/images/small/gregtech/gt.metaitem.02/22536.png deleted file mode 100644 index 062b22f67f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22536.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22537.png b/front/public/images/small/gregtech/gt.metaitem.02/22537.png deleted file mode 100644 index 9d65ef4640..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22538.png b/front/public/images/small/gregtech/gt.metaitem.02/22538.png deleted file mode 100644 index 062b22f67f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22540.png b/front/public/images/small/gregtech/gt.metaitem.02/22540.png deleted file mode 100644 index 9de9e46e4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22541.png b/front/public/images/small/gregtech/gt.metaitem.02/22541.png deleted file mode 100644 index d7e8abc924..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22542.png b/front/public/images/small/gregtech/gt.metaitem.02/22542.png deleted file mode 100644 index bf337962fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22543.png b/front/public/images/small/gregtech/gt.metaitem.02/22543.png deleted file mode 100644 index c9b6879c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22544.png b/front/public/images/small/gregtech/gt.metaitem.02/22544.png deleted file mode 100644 index 298ac415b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22545.png b/front/public/images/small/gregtech/gt.metaitem.02/22545.png deleted file mode 100644 index 02574c19d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22576.png b/front/public/images/small/gregtech/gt.metaitem.02/22576.png deleted file mode 100644 index f84c2fc5c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22581.png b/front/public/images/small/gregtech/gt.metaitem.02/22581.png deleted file mode 100644 index 656723a8e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22582.png b/front/public/images/small/gregtech/gt.metaitem.02/22582.png deleted file mode 100644 index ba05e6b22e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22583.png b/front/public/images/small/gregtech/gt.metaitem.02/22583.png deleted file mode 100644 index ecc89a07c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22585.png b/front/public/images/small/gregtech/gt.metaitem.02/22585.png deleted file mode 100644 index fe17b7c4b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22586.png b/front/public/images/small/gregtech/gt.metaitem.02/22586.png deleted file mode 100644 index a452fe42cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22588.png b/front/public/images/small/gregtech/gt.metaitem.02/22588.png deleted file mode 100644 index af4dcf1346..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22599.png b/front/public/images/small/gregtech/gt.metaitem.02/22599.png deleted file mode 100644 index 0333ef2b0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22610.png b/front/public/images/small/gregtech/gt.metaitem.02/22610.png deleted file mode 100644 index 8ba655698a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22611.png b/front/public/images/small/gregtech/gt.metaitem.02/22611.png deleted file mode 100644 index 71c5f73ceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22613.png b/front/public/images/small/gregtech/gt.metaitem.02/22613.png deleted file mode 100644 index 0e47c8a8c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22631.png b/front/public/images/small/gregtech/gt.metaitem.02/22631.png deleted file mode 100644 index dc136fdaab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22635.png b/front/public/images/small/gregtech/gt.metaitem.02/22635.png deleted file mode 100644 index dcaa4b5c36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22636.png b/front/public/images/small/gregtech/gt.metaitem.02/22636.png deleted file mode 100644 index 16de44d8ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22649.png b/front/public/images/small/gregtech/gt.metaitem.02/22649.png deleted file mode 100644 index 8fafdd48e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22765.png b/front/public/images/small/gregtech/gt.metaitem.02/22765.png deleted file mode 100644 index 15e8e9dbfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22770.png b/front/public/images/small/gregtech/gt.metaitem.02/22770.png deleted file mode 100644 index 1f964ab349..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22772.png b/front/public/images/small/gregtech/gt.metaitem.02/22772.png deleted file mode 100644 index 5fba324532..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22801.png b/front/public/images/small/gregtech/gt.metaitem.02/22801.png deleted file mode 100644 index 7e8c93e751..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22801.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22809.png b/front/public/images/small/gregtech/gt.metaitem.02/22809.png deleted file mode 100644 index d00d432bd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22829.png b/front/public/images/small/gregtech/gt.metaitem.02/22829.png deleted file mode 100644 index 89ebae62e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22856.png b/front/public/images/small/gregtech/gt.metaitem.02/22856.png deleted file mode 100644 index 06b2264c96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22868.png b/front/public/images/small/gregtech/gt.metaitem.02/22868.png deleted file mode 100644 index d41409c9f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22874.png b/front/public/images/small/gregtech/gt.metaitem.02/22874.png deleted file mode 100644 index 148bd1a298..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22880.png b/front/public/images/small/gregtech/gt.metaitem.02/22880.png deleted file mode 100644 index a452fe42cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22884.png b/front/public/images/small/gregtech/gt.metaitem.02/22884.png deleted file mode 100644 index d9ff4c90d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22889.png b/front/public/images/small/gregtech/gt.metaitem.02/22889.png deleted file mode 100644 index fe63b22a40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22890.png b/front/public/images/small/gregtech/gt.metaitem.02/22890.png deleted file mode 100644 index 161e18416b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22912.png b/front/public/images/small/gregtech/gt.metaitem.02/22912.png deleted file mode 100644 index e0816734b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22913.png b/front/public/images/small/gregtech/gt.metaitem.02/22913.png deleted file mode 100644 index a6957c9eb2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22951.png b/front/public/images/small/gregtech/gt.metaitem.02/22951.png deleted file mode 100644 index 85998b28e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22952.png b/front/public/images/small/gregtech/gt.metaitem.02/22952.png deleted file mode 100644 index aa7000b113..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22956.png b/front/public/images/small/gregtech/gt.metaitem.02/22956.png deleted file mode 100644 index 50ff5cbe46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22966.png b/front/public/images/small/gregtech/gt.metaitem.02/22966.png deleted file mode 100644 index e8850ce1e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22970.png b/front/public/images/small/gregtech/gt.metaitem.02/22970.png deleted file mode 100644 index d99b48dddc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22974.png b/front/public/images/small/gregtech/gt.metaitem.02/22974.png deleted file mode 100644 index 777f478545..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22975.png b/front/public/images/small/gregtech/gt.metaitem.02/22975.png deleted file mode 100644 index 05337ec57f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22976.png b/front/public/images/small/gregtech/gt.metaitem.02/22976.png deleted file mode 100644 index 2c885e41b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22977.png b/front/public/images/small/gregtech/gt.metaitem.02/22977.png deleted file mode 100644 index fcaa2deddd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22978.png b/front/public/images/small/gregtech/gt.metaitem.02/22978.png deleted file mode 100644 index 50ba27f367..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22979.png b/front/public/images/small/gregtech/gt.metaitem.02/22979.png deleted file mode 100644 index 1a3478e481..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22980.png b/front/public/images/small/gregtech/gt.metaitem.02/22980.png deleted file mode 100644 index de9992e63a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22981.png b/front/public/images/small/gregtech/gt.metaitem.02/22981.png deleted file mode 100644 index be53191b20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22982.png b/front/public/images/small/gregtech/gt.metaitem.02/22982.png deleted file mode 100644 index 8d64c03986..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22984.png b/front/public/images/small/gregtech/gt.metaitem.02/22984.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22985.png b/front/public/images/small/gregtech/gt.metaitem.02/22985.png deleted file mode 100644 index 6bca39d979..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22986.png b/front/public/images/small/gregtech/gt.metaitem.02/22986.png deleted file mode 100644 index b631c8296b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22987.png b/front/public/images/small/gregtech/gt.metaitem.02/22987.png deleted file mode 100644 index 9b9a9d9e0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22988.png b/front/public/images/small/gregtech/gt.metaitem.02/22988.png deleted file mode 100644 index c43bcf3bc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22989.png b/front/public/images/small/gregtech/gt.metaitem.02/22989.png deleted file mode 100644 index 674dc0d6cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22990.png b/front/public/images/small/gregtech/gt.metaitem.02/22990.png deleted file mode 100644 index 49f791ebfd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22991.png b/front/public/images/small/gregtech/gt.metaitem.02/22991.png deleted file mode 100644 index 0b12284fc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/22992.png b/front/public/images/small/gregtech/gt.metaitem.02/22992.png deleted file mode 100644 index 68097accb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/22992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23006.png b/front/public/images/small/gregtech/gt.metaitem.02/23006.png deleted file mode 100644 index 122125df53..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23008.png b/front/public/images/small/gregtech/gt.metaitem.02/23008.png deleted file mode 100644 index 5f8c03d89d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23010.png b/front/public/images/small/gregtech/gt.metaitem.02/23010.png deleted file mode 100644 index 2ff0365e1a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23018.png b/front/public/images/small/gregtech/gt.metaitem.02/23018.png deleted file mode 100644 index a6f916e754..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23019.png b/front/public/images/small/gregtech/gt.metaitem.02/23019.png deleted file mode 100644 index 414c717735..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23020.png b/front/public/images/small/gregtech/gt.metaitem.02/23020.png deleted file mode 100644 index 30aea73f35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23025.png b/front/public/images/small/gregtech/gt.metaitem.02/23025.png deleted file mode 100644 index ba178ccf8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23027.png b/front/public/images/small/gregtech/gt.metaitem.02/23027.png deleted file mode 100644 index 92bd192ef2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23028.png b/front/public/images/small/gregtech/gt.metaitem.02/23028.png deleted file mode 100644 index 9708ed596b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23029.png b/front/public/images/small/gregtech/gt.metaitem.02/23029.png deleted file mode 100644 index 29966a76ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23030.png b/front/public/images/small/gregtech/gt.metaitem.02/23030.png deleted file mode 100644 index dda5240329..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23031.png b/front/public/images/small/gregtech/gt.metaitem.02/23031.png deleted file mode 100644 index 291d92de35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23032.png b/front/public/images/small/gregtech/gt.metaitem.02/23032.png deleted file mode 100644 index 9909452000..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23033.png b/front/public/images/small/gregtech/gt.metaitem.02/23033.png deleted file mode 100644 index 9a227089f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23034.png b/front/public/images/small/gregtech/gt.metaitem.02/23034.png deleted file mode 100644 index 6697301428..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23035.png b/front/public/images/small/gregtech/gt.metaitem.02/23035.png deleted file mode 100644 index 19d5b0e8e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23036.png b/front/public/images/small/gregtech/gt.metaitem.02/23036.png deleted file mode 100644 index 21c9531e99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23037.png b/front/public/images/small/gregtech/gt.metaitem.02/23037.png deleted file mode 100644 index 3f9d43ec48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23039.png b/front/public/images/small/gregtech/gt.metaitem.02/23039.png deleted file mode 100644 index 95b969eba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23043.png b/front/public/images/small/gregtech/gt.metaitem.02/23043.png deleted file mode 100644 index 6e51fffd12..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23045.png b/front/public/images/small/gregtech/gt.metaitem.02/23045.png deleted file mode 100644 index b9f9753e96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23047.png b/front/public/images/small/gregtech/gt.metaitem.02/23047.png deleted file mode 100644 index 55ecc43dce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23048.png b/front/public/images/small/gregtech/gt.metaitem.02/23048.png deleted file mode 100644 index e0481d00c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23052.png b/front/public/images/small/gregtech/gt.metaitem.02/23052.png deleted file mode 100644 index 9726238ad3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23054.png b/front/public/images/small/gregtech/gt.metaitem.02/23054.png deleted file mode 100644 index 3f9d43ec48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23056.png b/front/public/images/small/gregtech/gt.metaitem.02/23056.png deleted file mode 100644 index ee05ba1969..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23057.png b/front/public/images/small/gregtech/gt.metaitem.02/23057.png deleted file mode 100644 index 410564e7fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23058.png b/front/public/images/small/gregtech/gt.metaitem.02/23058.png deleted file mode 100644 index 1f937868de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23059.png b/front/public/images/small/gregtech/gt.metaitem.02/23059.png deleted file mode 100644 index d5d3a4a380..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23062.png b/front/public/images/small/gregtech/gt.metaitem.02/23062.png deleted file mode 100644 index 91991e8c16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23063.png b/front/public/images/small/gregtech/gt.metaitem.02/23063.png deleted file mode 100644 index 95b969eba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23064.png b/front/public/images/small/gregtech/gt.metaitem.02/23064.png deleted file mode 100644 index 3ff8313889..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23065.png b/front/public/images/small/gregtech/gt.metaitem.02/23065.png deleted file mode 100644 index 5b94e652ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23066.png b/front/public/images/small/gregtech/gt.metaitem.02/23066.png deleted file mode 100644 index e29c4a6cd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23067.png b/front/public/images/small/gregtech/gt.metaitem.02/23067.png deleted file mode 100644 index 3bcbae7eb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23068.png b/front/public/images/small/gregtech/gt.metaitem.02/23068.png deleted file mode 100644 index 1041e121de..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23069.png b/front/public/images/small/gregtech/gt.metaitem.02/23069.png deleted file mode 100644 index 1a5bab770d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23070.png b/front/public/images/small/gregtech/gt.metaitem.02/23070.png deleted file mode 100644 index 8107cf84a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23071.png b/front/public/images/small/gregtech/gt.metaitem.02/23071.png deleted file mode 100644 index 295664c5c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23072.png b/front/public/images/small/gregtech/gt.metaitem.02/23072.png deleted file mode 100644 index 95b969eba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23073.png b/front/public/images/small/gregtech/gt.metaitem.02/23073.png deleted file mode 100644 index 8cb8329805..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23074.png b/front/public/images/small/gregtech/gt.metaitem.02/23074.png deleted file mode 100644 index e6098adfe5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23075.png b/front/public/images/small/gregtech/gt.metaitem.02/23075.png deleted file mode 100644 index c0445a1ec8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23076.png b/front/public/images/small/gregtech/gt.metaitem.02/23076.png deleted file mode 100644 index 33858a80cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23077.png b/front/public/images/small/gregtech/gt.metaitem.02/23077.png deleted file mode 100644 index fdbd1d2430..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23078.png b/front/public/images/small/gregtech/gt.metaitem.02/23078.png deleted file mode 100644 index 396d11a697..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23080.png b/front/public/images/small/gregtech/gt.metaitem.02/23080.png deleted file mode 100644 index 1e57ccb304..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23081.png b/front/public/images/small/gregtech/gt.metaitem.02/23081.png deleted file mode 100644 index 29966a76ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23083.png b/front/public/images/small/gregtech/gt.metaitem.02/23083.png deleted file mode 100644 index 2cdb38ad90..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23084.png b/front/public/images/small/gregtech/gt.metaitem.02/23084.png deleted file mode 100644 index eb622862cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23085.png b/front/public/images/small/gregtech/gt.metaitem.02/23085.png deleted file mode 100644 index b93d4a154d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23086.png b/front/public/images/small/gregtech/gt.metaitem.02/23086.png deleted file mode 100644 index 318a3a6cd2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23089.png b/front/public/images/small/gregtech/gt.metaitem.02/23089.png deleted file mode 100644 index 76a80965f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23090.png b/front/public/images/small/gregtech/gt.metaitem.02/23090.png deleted file mode 100644 index f2f9b00e4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23096.png b/front/public/images/small/gregtech/gt.metaitem.02/23096.png deleted file mode 100644 index 0e8104c5ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23097.png b/front/public/images/small/gregtech/gt.metaitem.02/23097.png deleted file mode 100644 index 2bb766cc0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23098.png b/front/public/images/small/gregtech/gt.metaitem.02/23098.png deleted file mode 100644 index 925c4e7c7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23100.png b/front/public/images/small/gregtech/gt.metaitem.02/23100.png deleted file mode 100644 index c1de9ad3a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23101.png b/front/public/images/small/gregtech/gt.metaitem.02/23101.png deleted file mode 100644 index a6cddb48a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23103.png b/front/public/images/small/gregtech/gt.metaitem.02/23103.png deleted file mode 100644 index 9909452000..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23111.png b/front/public/images/small/gregtech/gt.metaitem.02/23111.png deleted file mode 100644 index 45ee72222f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23112.png b/front/public/images/small/gregtech/gt.metaitem.02/23112.png deleted file mode 100644 index 5988168a60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23129.png b/front/public/images/small/gregtech/gt.metaitem.02/23129.png deleted file mode 100644 index 291d92de35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23131.png b/front/public/images/small/gregtech/gt.metaitem.02/23131.png deleted file mode 100644 index 4672cad193..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23134.png b/front/public/images/small/gregtech/gt.metaitem.02/23134.png deleted file mode 100644 index 26c86f89a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23139.png b/front/public/images/small/gregtech/gt.metaitem.02/23139.png deleted file mode 100644 index 267e944f35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23141.png b/front/public/images/small/gregtech/gt.metaitem.02/23141.png deleted file mode 100644 index a7b37d06ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23143.png b/front/public/images/small/gregtech/gt.metaitem.02/23143.png deleted file mode 100644 index d7161b521c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23201.png b/front/public/images/small/gregtech/gt.metaitem.02/23201.png deleted file mode 100644 index 8861f80d55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23202.png b/front/public/images/small/gregtech/gt.metaitem.02/23202.png deleted file mode 100644 index 791bb4abc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23203.png b/front/public/images/small/gregtech/gt.metaitem.02/23203.png deleted file mode 100644 index 614cb9fd11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23205.png b/front/public/images/small/gregtech/gt.metaitem.02/23205.png deleted file mode 100644 index 4726773bf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23300.png b/front/public/images/small/gregtech/gt.metaitem.02/23300.png deleted file mode 100644 index ea3ecba773..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23301.png b/front/public/images/small/gregtech/gt.metaitem.02/23301.png deleted file mode 100644 index 5562aa5452..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23302.png b/front/public/images/small/gregtech/gt.metaitem.02/23302.png deleted file mode 100644 index f494015752..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23303.png b/front/public/images/small/gregtech/gt.metaitem.02/23303.png deleted file mode 100644 index 86ca16bc07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23304.png b/front/public/images/small/gregtech/gt.metaitem.02/23304.png deleted file mode 100644 index 16671446c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23305.png b/front/public/images/small/gregtech/gt.metaitem.02/23305.png deleted file mode 100644 index 9726238ad3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23306.png b/front/public/images/small/gregtech/gt.metaitem.02/23306.png deleted file mode 100644 index c980a9e2a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23307.png b/front/public/images/small/gregtech/gt.metaitem.02/23307.png deleted file mode 100644 index 16671446c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23308.png b/front/public/images/small/gregtech/gt.metaitem.02/23308.png deleted file mode 100644 index 3787e2b85e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23309.png b/front/public/images/small/gregtech/gt.metaitem.02/23309.png deleted file mode 100644 index 84e47c16ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23310.png b/front/public/images/small/gregtech/gt.metaitem.02/23310.png deleted file mode 100644 index 7fb2c69305..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23311.png b/front/public/images/small/gregtech/gt.metaitem.02/23311.png deleted file mode 100644 index e353323add..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23312.png b/front/public/images/small/gregtech/gt.metaitem.02/23312.png deleted file mode 100644 index 740bb213e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23313.png b/front/public/images/small/gregtech/gt.metaitem.02/23313.png deleted file mode 100644 index 1bd79e9b31..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23314.png b/front/public/images/small/gregtech/gt.metaitem.02/23314.png deleted file mode 100644 index d1c709daf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23315.png b/front/public/images/small/gregtech/gt.metaitem.02/23315.png deleted file mode 100644 index cc17739e01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23316.png b/front/public/images/small/gregtech/gt.metaitem.02/23316.png deleted file mode 100644 index b0f575b123..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23317.png b/front/public/images/small/gregtech/gt.metaitem.02/23317.png deleted file mode 100644 index 824e3eb9f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23318.png b/front/public/images/small/gregtech/gt.metaitem.02/23318.png deleted file mode 100644 index 5d9a43fcfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23319.png b/front/public/images/small/gregtech/gt.metaitem.02/23319.png deleted file mode 100644 index 95b969eba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23320.png b/front/public/images/small/gregtech/gt.metaitem.02/23320.png deleted file mode 100644 index e940068869..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23321.png b/front/public/images/small/gregtech/gt.metaitem.02/23321.png deleted file mode 100644 index e5194ca919..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23323.png b/front/public/images/small/gregtech/gt.metaitem.02/23323.png deleted file mode 100644 index 3aeea182cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23324.png b/front/public/images/small/gregtech/gt.metaitem.02/23324.png deleted file mode 100644 index 29966a76ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23325.png b/front/public/images/small/gregtech/gt.metaitem.02/23325.png deleted file mode 100644 index 0bc73b0cb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23326.png b/front/public/images/small/gregtech/gt.metaitem.02/23326.png deleted file mode 100644 index 0647cd086c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23327.png b/front/public/images/small/gregtech/gt.metaitem.02/23327.png deleted file mode 100644 index f924b29ccf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23328.png b/front/public/images/small/gregtech/gt.metaitem.02/23328.png deleted file mode 100644 index 95b969eba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23329.png b/front/public/images/small/gregtech/gt.metaitem.02/23329.png deleted file mode 100644 index 0e845a9dd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23330.png b/front/public/images/small/gregtech/gt.metaitem.02/23330.png deleted file mode 100644 index 99bc3797b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23331.png b/front/public/images/small/gregtech/gt.metaitem.02/23331.png deleted file mode 100644 index b561f86380..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23333.png b/front/public/images/small/gregtech/gt.metaitem.02/23333.png deleted file mode 100644 index 5b7140198d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23334.png b/front/public/images/small/gregtech/gt.metaitem.02/23334.png deleted file mode 100644 index 3bcbae7eb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23335.png b/front/public/images/small/gregtech/gt.metaitem.02/23335.png deleted file mode 100644 index d60c0960fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23336.png b/front/public/images/small/gregtech/gt.metaitem.02/23336.png deleted file mode 100644 index b75bedbbe6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23337.png b/front/public/images/small/gregtech/gt.metaitem.02/23337.png deleted file mode 100644 index 685c62881d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23338.png b/front/public/images/small/gregtech/gt.metaitem.02/23338.png deleted file mode 100644 index 5d768e317c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23339.png b/front/public/images/small/gregtech/gt.metaitem.02/23339.png deleted file mode 100644 index 32f359b76e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23340.png b/front/public/images/small/gregtech/gt.metaitem.02/23340.png deleted file mode 100644 index e88276477c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23341.png b/front/public/images/small/gregtech/gt.metaitem.02/23341.png deleted file mode 100644 index c5fa22378d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23342.png b/front/public/images/small/gregtech/gt.metaitem.02/23342.png deleted file mode 100644 index 0d42ce76ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23343.png b/front/public/images/small/gregtech/gt.metaitem.02/23343.png deleted file mode 100644 index 7b265b1d42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23344.png b/front/public/images/small/gregtech/gt.metaitem.02/23344.png deleted file mode 100644 index dca2d6d33f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23345.png b/front/public/images/small/gregtech/gt.metaitem.02/23345.png deleted file mode 100644 index 2611c36d3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23346.png b/front/public/images/small/gregtech/gt.metaitem.02/23346.png deleted file mode 100644 index b036aa1b64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23348.png b/front/public/images/small/gregtech/gt.metaitem.02/23348.png deleted file mode 100644 index 448d2de5b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23349.png b/front/public/images/small/gregtech/gt.metaitem.02/23349.png deleted file mode 100644 index 9cfa3ad0a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23350.png b/front/public/images/small/gregtech/gt.metaitem.02/23350.png deleted file mode 100644 index 72b6649395..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23351.png b/front/public/images/small/gregtech/gt.metaitem.02/23351.png deleted file mode 100644 index e04ce00cab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23352.png b/front/public/images/small/gregtech/gt.metaitem.02/23352.png deleted file mode 100644 index 229675a7be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23353.png b/front/public/images/small/gregtech/gt.metaitem.02/23353.png deleted file mode 100644 index 6a6ce05c47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23354.png b/front/public/images/small/gregtech/gt.metaitem.02/23354.png deleted file mode 100644 index 93d154ab03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23355.png b/front/public/images/small/gregtech/gt.metaitem.02/23355.png deleted file mode 100644 index ea71397d64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23356.png b/front/public/images/small/gregtech/gt.metaitem.02/23356.png deleted file mode 100644 index cf6dd843af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23357.png b/front/public/images/small/gregtech/gt.metaitem.02/23357.png deleted file mode 100644 index ccc2d84ac0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23358.png b/front/public/images/small/gregtech/gt.metaitem.02/23358.png deleted file mode 100644 index 3d78de5257..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23359.png b/front/public/images/small/gregtech/gt.metaitem.02/23359.png deleted file mode 100644 index 0f8c8969d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23360.png b/front/public/images/small/gregtech/gt.metaitem.02/23360.png deleted file mode 100644 index f006f958da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23361.png b/front/public/images/small/gregtech/gt.metaitem.02/23361.png deleted file mode 100644 index aed36e72e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23362.png b/front/public/images/small/gregtech/gt.metaitem.02/23362.png deleted file mode 100644 index f9c685139d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23363.png b/front/public/images/small/gregtech/gt.metaitem.02/23363.png deleted file mode 100644 index 9909452000..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23364.png b/front/public/images/small/gregtech/gt.metaitem.02/23364.png deleted file mode 100644 index 5b4c6b954a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23365.png b/front/public/images/small/gregtech/gt.metaitem.02/23365.png deleted file mode 100644 index 650bc5eee7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23366.png b/front/public/images/small/gregtech/gt.metaitem.02/23366.png deleted file mode 100644 index d57555cfb8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23367.png b/front/public/images/small/gregtech/gt.metaitem.02/23367.png deleted file mode 100644 index dc36ea2169..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23368.png b/front/public/images/small/gregtech/gt.metaitem.02/23368.png deleted file mode 100644 index d27e07353e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23369.png b/front/public/images/small/gregtech/gt.metaitem.02/23369.png deleted file mode 100644 index ae1841889c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23370.png b/front/public/images/small/gregtech/gt.metaitem.02/23370.png deleted file mode 100644 index ce7654e5a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23371.png b/front/public/images/small/gregtech/gt.metaitem.02/23371.png deleted file mode 100644 index 10963d43fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23372.png b/front/public/images/small/gregtech/gt.metaitem.02/23372.png deleted file mode 100644 index 2d228ff3e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23373.png b/front/public/images/small/gregtech/gt.metaitem.02/23373.png deleted file mode 100644 index cc2728508a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23374.png b/front/public/images/small/gregtech/gt.metaitem.02/23374.png deleted file mode 100644 index 98411e3661..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23378.png b/front/public/images/small/gregtech/gt.metaitem.02/23378.png deleted file mode 100644 index 85f80cddad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23379.png b/front/public/images/small/gregtech/gt.metaitem.02/23379.png deleted file mode 100644 index 7eef239a39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23380.png b/front/public/images/small/gregtech/gt.metaitem.02/23380.png deleted file mode 100644 index ec956ff191..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23381.png b/front/public/images/small/gregtech/gt.metaitem.02/23381.png deleted file mode 100644 index 1fae9919db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23382.png b/front/public/images/small/gregtech/gt.metaitem.02/23382.png deleted file mode 100644 index 671131bd99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23383.png b/front/public/images/small/gregtech/gt.metaitem.02/23383.png deleted file mode 100644 index 1c333f192a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23384.png b/front/public/images/small/gregtech/gt.metaitem.02/23384.png deleted file mode 100644 index 2af414d5bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23385.png b/front/public/images/small/gregtech/gt.metaitem.02/23385.png deleted file mode 100644 index e036bf1fbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23386.png b/front/public/images/small/gregtech/gt.metaitem.02/23386.png deleted file mode 100644 index ff0d08033e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23387.png b/front/public/images/small/gregtech/gt.metaitem.02/23387.png deleted file mode 100644 index 32abca98b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23388.png b/front/public/images/small/gregtech/gt.metaitem.02/23388.png deleted file mode 100644 index 29966a76ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23389.png b/front/public/images/small/gregtech/gt.metaitem.02/23389.png deleted file mode 100644 index 695ea03021..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23390.png b/front/public/images/small/gregtech/gt.metaitem.02/23390.png deleted file mode 100644 index e286d6dda7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23391.png b/front/public/images/small/gregtech/gt.metaitem.02/23391.png deleted file mode 100644 index da6102a61f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23392.png b/front/public/images/small/gregtech/gt.metaitem.02/23392.png deleted file mode 100644 index 9a0c4455ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23393.png b/front/public/images/small/gregtech/gt.metaitem.02/23393.png deleted file mode 100644 index 5d33d70d57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23394.png b/front/public/images/small/gregtech/gt.metaitem.02/23394.png deleted file mode 100644 index 95b969eba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23395.png b/front/public/images/small/gregtech/gt.metaitem.02/23395.png deleted file mode 100644 index 29966a76ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23397.png b/front/public/images/small/gregtech/gt.metaitem.02/23397.png deleted file mode 100644 index 01218d9019..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23398.png b/front/public/images/small/gregtech/gt.metaitem.02/23398.png deleted file mode 100644 index 1050c9e13d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23399.png b/front/public/images/small/gregtech/gt.metaitem.02/23399.png deleted file mode 100644 index bb5974cdaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23400.png b/front/public/images/small/gregtech/gt.metaitem.02/23400.png deleted file mode 100644 index ca5a4b14f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23401.png b/front/public/images/small/gregtech/gt.metaitem.02/23401.png deleted file mode 100644 index f11342d78d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23402.png b/front/public/images/small/gregtech/gt.metaitem.02/23402.png deleted file mode 100644 index 402de27c3a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23403.png b/front/public/images/small/gregtech/gt.metaitem.02/23403.png deleted file mode 100644 index 9857c16cb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23404.png b/front/public/images/small/gregtech/gt.metaitem.02/23404.png deleted file mode 100644 index 5b07e847c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23405.png b/front/public/images/small/gregtech/gt.metaitem.02/23405.png deleted file mode 100644 index 10faf70161..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23406.png b/front/public/images/small/gregtech/gt.metaitem.02/23406.png deleted file mode 100644 index f84a047760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23407.png b/front/public/images/small/gregtech/gt.metaitem.02/23407.png deleted file mode 100644 index 187b1da276..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23408.png b/front/public/images/small/gregtech/gt.metaitem.02/23408.png deleted file mode 100644 index edaf19bee6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23470.png b/front/public/images/small/gregtech/gt.metaitem.02/23470.png deleted file mode 100644 index 1e819f4718..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23471.png b/front/public/images/small/gregtech/gt.metaitem.02/23471.png deleted file mode 100644 index 410564e7fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23472.png b/front/public/images/small/gregtech/gt.metaitem.02/23472.png deleted file mode 100644 index 29966a76ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23473.png b/front/public/images/small/gregtech/gt.metaitem.02/23473.png deleted file mode 100644 index 3bcbae7eb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23485.png b/front/public/images/small/gregtech/gt.metaitem.02/23485.png deleted file mode 100644 index e74aec5360..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23488.png b/front/public/images/small/gregtech/gt.metaitem.02/23488.png deleted file mode 100644 index 2e887a6390..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23489.png b/front/public/images/small/gregtech/gt.metaitem.02/23489.png deleted file mode 100644 index 6069bbfe2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23521.png b/front/public/images/small/gregtech/gt.metaitem.02/23521.png deleted file mode 100644 index 5d9a43fcfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23529.png b/front/public/images/small/gregtech/gt.metaitem.02/23529.png deleted file mode 100644 index 00cdea9550..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23576.png b/front/public/images/small/gregtech/gt.metaitem.02/23576.png deleted file mode 100644 index adff098501..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23581.png b/front/public/images/small/gregtech/gt.metaitem.02/23581.png deleted file mode 100644 index de8c2089a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23582.png b/front/public/images/small/gregtech/gt.metaitem.02/23582.png deleted file mode 100644 index 5010ebbb8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23583.png b/front/public/images/small/gregtech/gt.metaitem.02/23583.png deleted file mode 100644 index 2d24be759b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23585.png b/front/public/images/small/gregtech/gt.metaitem.02/23585.png deleted file mode 100644 index 3773aa6cf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23586.png b/front/public/images/small/gregtech/gt.metaitem.02/23586.png deleted file mode 100644 index 07a7a8f83e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23588.png b/front/public/images/small/gregtech/gt.metaitem.02/23588.png deleted file mode 100644 index d0bd096198..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23599.png b/front/public/images/small/gregtech/gt.metaitem.02/23599.png deleted file mode 100644 index 2a5ff19a89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23610.png b/front/public/images/small/gregtech/gt.metaitem.02/23610.png deleted file mode 100644 index fc2062ad53..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23613.png b/front/public/images/small/gregtech/gt.metaitem.02/23613.png deleted file mode 100644 index 43bb7046cf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23631.png b/front/public/images/small/gregtech/gt.metaitem.02/23631.png deleted file mode 100644 index 2d43652d21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23635.png b/front/public/images/small/gregtech/gt.metaitem.02/23635.png deleted file mode 100644 index a4f68e4b50..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23636.png b/front/public/images/small/gregtech/gt.metaitem.02/23636.png deleted file mode 100644 index 7aec7c519b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23649.png b/front/public/images/small/gregtech/gt.metaitem.02/23649.png deleted file mode 100644 index 0c4c79bab7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23765.png b/front/public/images/small/gregtech/gt.metaitem.02/23765.png deleted file mode 100644 index 019d45b442..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23770.png b/front/public/images/small/gregtech/gt.metaitem.02/23770.png deleted file mode 100644 index fd8b8cf1c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23772.png b/front/public/images/small/gregtech/gt.metaitem.02/23772.png deleted file mode 100644 index 60fa1572c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23829.png b/front/public/images/small/gregtech/gt.metaitem.02/23829.png deleted file mode 100644 index 54382088a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23856.png b/front/public/images/small/gregtech/gt.metaitem.02/23856.png deleted file mode 100644 index acdb9c2457..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23868.png b/front/public/images/small/gregtech/gt.metaitem.02/23868.png deleted file mode 100644 index 83a5a37826..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23874.png b/front/public/images/small/gregtech/gt.metaitem.02/23874.png deleted file mode 100644 index 9909452000..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23880.png b/front/public/images/small/gregtech/gt.metaitem.02/23880.png deleted file mode 100644 index 07a7a8f83e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23884.png b/front/public/images/small/gregtech/gt.metaitem.02/23884.png deleted file mode 100644 index 0bc73b0cb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23912.png b/front/public/images/small/gregtech/gt.metaitem.02/23912.png deleted file mode 100644 index bc01f1518f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23913.png b/front/public/images/small/gregtech/gt.metaitem.02/23913.png deleted file mode 100644 index 448d2de5b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23951.png b/front/public/images/small/gregtech/gt.metaitem.02/23951.png deleted file mode 100644 index 5323350285..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23952.png b/front/public/images/small/gregtech/gt.metaitem.02/23952.png deleted file mode 100644 index f1f6124d00..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23956.png b/front/public/images/small/gregtech/gt.metaitem.02/23956.png deleted file mode 100644 index c72664a236..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23966.png b/front/public/images/small/gregtech/gt.metaitem.02/23966.png deleted file mode 100644 index e4a29695cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23970.png b/front/public/images/small/gregtech/gt.metaitem.02/23970.png deleted file mode 100644 index 6afc2acfe2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23974.png b/front/public/images/small/gregtech/gt.metaitem.02/23974.png deleted file mode 100644 index 6ae1090a14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23975.png b/front/public/images/small/gregtech/gt.metaitem.02/23975.png deleted file mode 100644 index fadaa6e886..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23976.png b/front/public/images/small/gregtech/gt.metaitem.02/23976.png deleted file mode 100644 index 0cb0387e4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23977.png b/front/public/images/small/gregtech/gt.metaitem.02/23977.png deleted file mode 100644 index 0e654ddd86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23978.png b/front/public/images/small/gregtech/gt.metaitem.02/23978.png deleted file mode 100644 index d2fbb32a0a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23979.png b/front/public/images/small/gregtech/gt.metaitem.02/23979.png deleted file mode 100644 index d300cf9d33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23980.png b/front/public/images/small/gregtech/gt.metaitem.02/23980.png deleted file mode 100644 index e97885e936..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23981.png b/front/public/images/small/gregtech/gt.metaitem.02/23981.png deleted file mode 100644 index fb2ae18354..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23982.png b/front/public/images/small/gregtech/gt.metaitem.02/23982.png deleted file mode 100644 index 5357f136d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23984.png b/front/public/images/small/gregtech/gt.metaitem.02/23984.png deleted file mode 100644 index 95b969eba0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23985.png b/front/public/images/small/gregtech/gt.metaitem.02/23985.png deleted file mode 100644 index ec5d95f04c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23986.png b/front/public/images/small/gregtech/gt.metaitem.02/23986.png deleted file mode 100644 index 7d88a56a14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23987.png b/front/public/images/small/gregtech/gt.metaitem.02/23987.png deleted file mode 100644 index 0774e4383f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23988.png b/front/public/images/small/gregtech/gt.metaitem.02/23988.png deleted file mode 100644 index cdeac5ac62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23989.png b/front/public/images/small/gregtech/gt.metaitem.02/23989.png deleted file mode 100644 index afb8d7baea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23990.png b/front/public/images/small/gregtech/gt.metaitem.02/23990.png deleted file mode 100644 index 5bea3b0ebb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23991.png b/front/public/images/small/gregtech/gt.metaitem.02/23991.png deleted file mode 100644 index 0d19b8f440..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/23992.png b/front/public/images/small/gregtech/gt.metaitem.02/23992.png deleted file mode 100644 index eb1c9c171b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/23992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24006.png b/front/public/images/small/gregtech/gt.metaitem.02/24006.png deleted file mode 100644 index 057152b723..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24008.png b/front/public/images/small/gregtech/gt.metaitem.02/24008.png deleted file mode 100644 index df47c5da9a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24010.png b/front/public/images/small/gregtech/gt.metaitem.02/24010.png deleted file mode 100644 index 8e8ccecd55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24018.png b/front/public/images/small/gregtech/gt.metaitem.02/24018.png deleted file mode 100644 index 1b34ac4127..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24019.png b/front/public/images/small/gregtech/gt.metaitem.02/24019.png deleted file mode 100644 index f69bd35ed3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24020.png b/front/public/images/small/gregtech/gt.metaitem.02/24020.png deleted file mode 100644 index 4084a88443..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24025.png b/front/public/images/small/gregtech/gt.metaitem.02/24025.png deleted file mode 100644 index 4fbc6735c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24027.png b/front/public/images/small/gregtech/gt.metaitem.02/24027.png deleted file mode 100644 index 7a6523622f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24028.png b/front/public/images/small/gregtech/gt.metaitem.02/24028.png deleted file mode 100644 index 14728ed0e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24029.png b/front/public/images/small/gregtech/gt.metaitem.02/24029.png deleted file mode 100644 index 966363be8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24029.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24030.png b/front/public/images/small/gregtech/gt.metaitem.02/24030.png deleted file mode 100644 index de86c7153b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24031.png b/front/public/images/small/gregtech/gt.metaitem.02/24031.png deleted file mode 100644 index a657ca6d8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24032.png b/front/public/images/small/gregtech/gt.metaitem.02/24032.png deleted file mode 100644 index d2655a1b0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24033.png b/front/public/images/small/gregtech/gt.metaitem.02/24033.png deleted file mode 100644 index eb7519ecdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24034.png b/front/public/images/small/gregtech/gt.metaitem.02/24034.png deleted file mode 100644 index 274627f4d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24035.png b/front/public/images/small/gregtech/gt.metaitem.02/24035.png deleted file mode 100644 index 9c816c7134..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24036.png b/front/public/images/small/gregtech/gt.metaitem.02/24036.png deleted file mode 100644 index 4f02e41de6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24037.png b/front/public/images/small/gregtech/gt.metaitem.02/24037.png deleted file mode 100644 index 079ca8ffb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24039.png b/front/public/images/small/gregtech/gt.metaitem.02/24039.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24043.png b/front/public/images/small/gregtech/gt.metaitem.02/24043.png deleted file mode 100644 index 5772e97361..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24045.png b/front/public/images/small/gregtech/gt.metaitem.02/24045.png deleted file mode 100644 index 23e068e731..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24047.png b/front/public/images/small/gregtech/gt.metaitem.02/24047.png deleted file mode 100644 index 8553c199f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24048.png b/front/public/images/small/gregtech/gt.metaitem.02/24048.png deleted file mode 100644 index 87c002d2e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24052.png b/front/public/images/small/gregtech/gt.metaitem.02/24052.png deleted file mode 100644 index 437d7b24d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24054.png b/front/public/images/small/gregtech/gt.metaitem.02/24054.png deleted file mode 100644 index 079ca8ffb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24056.png b/front/public/images/small/gregtech/gt.metaitem.02/24056.png deleted file mode 100644 index 9375e87c87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24057.png b/front/public/images/small/gregtech/gt.metaitem.02/24057.png deleted file mode 100644 index 37b3e2e17e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24058.png b/front/public/images/small/gregtech/gt.metaitem.02/24058.png deleted file mode 100644 index 06f42a2be9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24059.png b/front/public/images/small/gregtech/gt.metaitem.02/24059.png deleted file mode 100644 index 07cf4517eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24062.png b/front/public/images/small/gregtech/gt.metaitem.02/24062.png deleted file mode 100644 index b530e631af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24063.png b/front/public/images/small/gregtech/gt.metaitem.02/24063.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24064.png b/front/public/images/small/gregtech/gt.metaitem.02/24064.png deleted file mode 100644 index dceb6968c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24065.png b/front/public/images/small/gregtech/gt.metaitem.02/24065.png deleted file mode 100644 index 9dc88268ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24066.png b/front/public/images/small/gregtech/gt.metaitem.02/24066.png deleted file mode 100644 index cff740ea61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24066.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24067.png b/front/public/images/small/gregtech/gt.metaitem.02/24067.png deleted file mode 100644 index 4fc0bc7745..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24068.png b/front/public/images/small/gregtech/gt.metaitem.02/24068.png deleted file mode 100644 index cb403a25ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24069.png b/front/public/images/small/gregtech/gt.metaitem.02/24069.png deleted file mode 100644 index bed94d115c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24070.png b/front/public/images/small/gregtech/gt.metaitem.02/24070.png deleted file mode 100644 index f4432e7040..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24071.png b/front/public/images/small/gregtech/gt.metaitem.02/24071.png deleted file mode 100644 index 854d31573c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24072.png b/front/public/images/small/gregtech/gt.metaitem.02/24072.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24073.png b/front/public/images/small/gregtech/gt.metaitem.02/24073.png deleted file mode 100644 index 2a5387dfb0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24074.png b/front/public/images/small/gregtech/gt.metaitem.02/24074.png deleted file mode 100644 index c48a32802b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24075.png b/front/public/images/small/gregtech/gt.metaitem.02/24075.png deleted file mode 100644 index 2359df2ceb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24076.png b/front/public/images/small/gregtech/gt.metaitem.02/24076.png deleted file mode 100644 index a5535300c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24077.png b/front/public/images/small/gregtech/gt.metaitem.02/24077.png deleted file mode 100644 index b04aef5b8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24078.png b/front/public/images/small/gregtech/gt.metaitem.02/24078.png deleted file mode 100644 index e5403b8c87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24080.png b/front/public/images/small/gregtech/gt.metaitem.02/24080.png deleted file mode 100644 index ce1baa1196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24081.png b/front/public/images/small/gregtech/gt.metaitem.02/24081.png deleted file mode 100644 index 966363be8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24083.png b/front/public/images/small/gregtech/gt.metaitem.02/24083.png deleted file mode 100644 index 76cefb3111..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24084.png b/front/public/images/small/gregtech/gt.metaitem.02/24084.png deleted file mode 100644 index 1bdd7785f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24085.png b/front/public/images/small/gregtech/gt.metaitem.02/24085.png deleted file mode 100644 index 116367e92b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24086.png b/front/public/images/small/gregtech/gt.metaitem.02/24086.png deleted file mode 100644 index 6d3099b4d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24089.png b/front/public/images/small/gregtech/gt.metaitem.02/24089.png deleted file mode 100644 index bb460d3b37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24090.png b/front/public/images/small/gregtech/gt.metaitem.02/24090.png deleted file mode 100644 index 1e3fa669aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24096.png b/front/public/images/small/gregtech/gt.metaitem.02/24096.png deleted file mode 100644 index 99df83a9a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24097.png b/front/public/images/small/gregtech/gt.metaitem.02/24097.png deleted file mode 100644 index 356b153343..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24098.png b/front/public/images/small/gregtech/gt.metaitem.02/24098.png deleted file mode 100644 index a8680b886d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24100.png b/front/public/images/small/gregtech/gt.metaitem.02/24100.png deleted file mode 100644 index 1542f52b96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24101.png b/front/public/images/small/gregtech/gt.metaitem.02/24101.png deleted file mode 100644 index da936ef5aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24103.png b/front/public/images/small/gregtech/gt.metaitem.02/24103.png deleted file mode 100644 index d2655a1b0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24111.png b/front/public/images/small/gregtech/gt.metaitem.02/24111.png deleted file mode 100644 index 78be45c071..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24112.png b/front/public/images/small/gregtech/gt.metaitem.02/24112.png deleted file mode 100644 index 80a4ec1ec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24129.png b/front/public/images/small/gregtech/gt.metaitem.02/24129.png deleted file mode 100644 index a657ca6d8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24131.png b/front/public/images/small/gregtech/gt.metaitem.02/24131.png deleted file mode 100644 index eeba7e4082..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24134.png b/front/public/images/small/gregtech/gt.metaitem.02/24134.png deleted file mode 100644 index 3d1886d27f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24139.png b/front/public/images/small/gregtech/gt.metaitem.02/24139.png deleted file mode 100644 index b226000a43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24141.png b/front/public/images/small/gregtech/gt.metaitem.02/24141.png deleted file mode 100644 index 3e25711e82..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24143.png b/front/public/images/small/gregtech/gt.metaitem.02/24143.png deleted file mode 100644 index 2bba18c7c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24201.png b/front/public/images/small/gregtech/gt.metaitem.02/24201.png deleted file mode 100644 index d5be13130d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24202.png b/front/public/images/small/gregtech/gt.metaitem.02/24202.png deleted file mode 100644 index 1f8c44d6b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24203.png b/front/public/images/small/gregtech/gt.metaitem.02/24203.png deleted file mode 100644 index c80f80d74c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24205.png b/front/public/images/small/gregtech/gt.metaitem.02/24205.png deleted file mode 100644 index 3d86754b24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24300.png b/front/public/images/small/gregtech/gt.metaitem.02/24300.png deleted file mode 100644 index 6a8154dc18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24301.png b/front/public/images/small/gregtech/gt.metaitem.02/24301.png deleted file mode 100644 index 688c93b3e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24302.png b/front/public/images/small/gregtech/gt.metaitem.02/24302.png deleted file mode 100644 index e42df8d06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24303.png b/front/public/images/small/gregtech/gt.metaitem.02/24303.png deleted file mode 100644 index c7af73840a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24304.png b/front/public/images/small/gregtech/gt.metaitem.02/24304.png deleted file mode 100644 index 48f05bffa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24305.png b/front/public/images/small/gregtech/gt.metaitem.02/24305.png deleted file mode 100644 index 437d7b24d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24306.png b/front/public/images/small/gregtech/gt.metaitem.02/24306.png deleted file mode 100644 index b87752d0a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24307.png b/front/public/images/small/gregtech/gt.metaitem.02/24307.png deleted file mode 100644 index 48f05bffa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24308.png b/front/public/images/small/gregtech/gt.metaitem.02/24308.png deleted file mode 100644 index 596ee839b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24309.png b/front/public/images/small/gregtech/gt.metaitem.02/24309.png deleted file mode 100644 index 93f6128679..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24310.png b/front/public/images/small/gregtech/gt.metaitem.02/24310.png deleted file mode 100644 index 80298bf1ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24311.png b/front/public/images/small/gregtech/gt.metaitem.02/24311.png deleted file mode 100644 index 0b383e0c13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24312.png b/front/public/images/small/gregtech/gt.metaitem.02/24312.png deleted file mode 100644 index 44064d7154..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24313.png b/front/public/images/small/gregtech/gt.metaitem.02/24313.png deleted file mode 100644 index 1a245af90c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24314.png b/front/public/images/small/gregtech/gt.metaitem.02/24314.png deleted file mode 100644 index 9f201cd049..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24315.png b/front/public/images/small/gregtech/gt.metaitem.02/24315.png deleted file mode 100644 index 088c8c52ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24316.png b/front/public/images/small/gregtech/gt.metaitem.02/24316.png deleted file mode 100644 index 9d06c54e1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24317.png b/front/public/images/small/gregtech/gt.metaitem.02/24317.png deleted file mode 100644 index 80b603bd06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24318.png b/front/public/images/small/gregtech/gt.metaitem.02/24318.png deleted file mode 100644 index 537798b7f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24319.png b/front/public/images/small/gregtech/gt.metaitem.02/24319.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24320.png b/front/public/images/small/gregtech/gt.metaitem.02/24320.png deleted file mode 100644 index 8d0e1b0335..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24321.png b/front/public/images/small/gregtech/gt.metaitem.02/24321.png deleted file mode 100644 index a07106a963..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24323.png b/front/public/images/small/gregtech/gt.metaitem.02/24323.png deleted file mode 100644 index 84900c4f07..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24324.png b/front/public/images/small/gregtech/gt.metaitem.02/24324.png deleted file mode 100644 index 966363be8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24325.png b/front/public/images/small/gregtech/gt.metaitem.02/24325.png deleted file mode 100644 index 19b82d78db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24326.png b/front/public/images/small/gregtech/gt.metaitem.02/24326.png deleted file mode 100644 index 20e0a660e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24327.png b/front/public/images/small/gregtech/gt.metaitem.02/24327.png deleted file mode 100644 index bec94a77c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24328.png b/front/public/images/small/gregtech/gt.metaitem.02/24328.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24329.png b/front/public/images/small/gregtech/gt.metaitem.02/24329.png deleted file mode 100644 index 1373bcc496..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24330.png b/front/public/images/small/gregtech/gt.metaitem.02/24330.png deleted file mode 100644 index 7476ca1cfb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24331.png b/front/public/images/small/gregtech/gt.metaitem.02/24331.png deleted file mode 100644 index d2056b6855..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24333.png b/front/public/images/small/gregtech/gt.metaitem.02/24333.png deleted file mode 100644 index 58297ea969..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24334.png b/front/public/images/small/gregtech/gt.metaitem.02/24334.png deleted file mode 100644 index 4fc0bc7745..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24335.png b/front/public/images/small/gregtech/gt.metaitem.02/24335.png deleted file mode 100644 index 884c3cd3b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24336.png b/front/public/images/small/gregtech/gt.metaitem.02/24336.png deleted file mode 100644 index 753afcc178..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24337.png b/front/public/images/small/gregtech/gt.metaitem.02/24337.png deleted file mode 100644 index 04347ec3cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24338.png b/front/public/images/small/gregtech/gt.metaitem.02/24338.png deleted file mode 100644 index a6e2ca8772..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24339.png b/front/public/images/small/gregtech/gt.metaitem.02/24339.png deleted file mode 100644 index 171eb871f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24340.png b/front/public/images/small/gregtech/gt.metaitem.02/24340.png deleted file mode 100644 index 7312e9ddcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24341.png b/front/public/images/small/gregtech/gt.metaitem.02/24341.png deleted file mode 100644 index 82e9004378..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24342.png b/front/public/images/small/gregtech/gt.metaitem.02/24342.png deleted file mode 100644 index 12e09ae80a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24343.png b/front/public/images/small/gregtech/gt.metaitem.02/24343.png deleted file mode 100644 index cc7d97a9ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24344.png b/front/public/images/small/gregtech/gt.metaitem.02/24344.png deleted file mode 100644 index 3edbd724b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24345.png b/front/public/images/small/gregtech/gt.metaitem.02/24345.png deleted file mode 100644 index 11e993e13d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24346.png b/front/public/images/small/gregtech/gt.metaitem.02/24346.png deleted file mode 100644 index 4ffa3c17e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24348.png b/front/public/images/small/gregtech/gt.metaitem.02/24348.png deleted file mode 100644 index 990dbdb834..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24349.png b/front/public/images/small/gregtech/gt.metaitem.02/24349.png deleted file mode 100644 index 390ae34e4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24350.png b/front/public/images/small/gregtech/gt.metaitem.02/24350.png deleted file mode 100644 index b7ba21b51e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24351.png b/front/public/images/small/gregtech/gt.metaitem.02/24351.png deleted file mode 100644 index 2c250d08e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24352.png b/front/public/images/small/gregtech/gt.metaitem.02/24352.png deleted file mode 100644 index 65205b66ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24353.png b/front/public/images/small/gregtech/gt.metaitem.02/24353.png deleted file mode 100644 index 763a350515..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24354.png b/front/public/images/small/gregtech/gt.metaitem.02/24354.png deleted file mode 100644 index d44eaec089..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24355.png b/front/public/images/small/gregtech/gt.metaitem.02/24355.png deleted file mode 100644 index 7ad59dcf31..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24356.png b/front/public/images/small/gregtech/gt.metaitem.02/24356.png deleted file mode 100644 index 1b90f25d02..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24357.png b/front/public/images/small/gregtech/gt.metaitem.02/24357.png deleted file mode 100644 index a703e492a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24358.png b/front/public/images/small/gregtech/gt.metaitem.02/24358.png deleted file mode 100644 index 8f17408ca3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24359.png b/front/public/images/small/gregtech/gt.metaitem.02/24359.png deleted file mode 100644 index 56c9a7277a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24360.png b/front/public/images/small/gregtech/gt.metaitem.02/24360.png deleted file mode 100644 index b6c54a1b58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24361.png b/front/public/images/small/gregtech/gt.metaitem.02/24361.png deleted file mode 100644 index 074ea58850..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24362.png b/front/public/images/small/gregtech/gt.metaitem.02/24362.png deleted file mode 100644 index aa3903b088..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24363.png b/front/public/images/small/gregtech/gt.metaitem.02/24363.png deleted file mode 100644 index d2655a1b0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24364.png b/front/public/images/small/gregtech/gt.metaitem.02/24364.png deleted file mode 100644 index ec358dd869..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24365.png b/front/public/images/small/gregtech/gt.metaitem.02/24365.png deleted file mode 100644 index 65fb346ad0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24366.png b/front/public/images/small/gregtech/gt.metaitem.02/24366.png deleted file mode 100644 index c5d2fed469..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24367.png b/front/public/images/small/gregtech/gt.metaitem.02/24367.png deleted file mode 100644 index f9bdab4465..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24368.png b/front/public/images/small/gregtech/gt.metaitem.02/24368.png deleted file mode 100644 index a4632bab1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24369.png b/front/public/images/small/gregtech/gt.metaitem.02/24369.png deleted file mode 100644 index a944d360b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24370.png b/front/public/images/small/gregtech/gt.metaitem.02/24370.png deleted file mode 100644 index 76584b6702..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24371.png b/front/public/images/small/gregtech/gt.metaitem.02/24371.png deleted file mode 100644 index 6c2a4f7c19..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24372.png b/front/public/images/small/gregtech/gt.metaitem.02/24372.png deleted file mode 100644 index 2140902ad8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24373.png b/front/public/images/small/gregtech/gt.metaitem.02/24373.png deleted file mode 100644 index ff27c68757..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24374.png b/front/public/images/small/gregtech/gt.metaitem.02/24374.png deleted file mode 100644 index 4c822b9d87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24378.png b/front/public/images/small/gregtech/gt.metaitem.02/24378.png deleted file mode 100644 index 71ec5e23e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24379.png b/front/public/images/small/gregtech/gt.metaitem.02/24379.png deleted file mode 100644 index c0b98076dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24380.png b/front/public/images/small/gregtech/gt.metaitem.02/24380.png deleted file mode 100644 index b2551b2ae2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24381.png b/front/public/images/small/gregtech/gt.metaitem.02/24381.png deleted file mode 100644 index d41ae628bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24382.png b/front/public/images/small/gregtech/gt.metaitem.02/24382.png deleted file mode 100644 index 75609f046c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24383.png b/front/public/images/small/gregtech/gt.metaitem.02/24383.png deleted file mode 100644 index cee0699f30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24384.png b/front/public/images/small/gregtech/gt.metaitem.02/24384.png deleted file mode 100644 index 05d656a8a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24385.png b/front/public/images/small/gregtech/gt.metaitem.02/24385.png deleted file mode 100644 index b003c1f743..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24386.png b/front/public/images/small/gregtech/gt.metaitem.02/24386.png deleted file mode 100644 index 55907002f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24387.png b/front/public/images/small/gregtech/gt.metaitem.02/24387.png deleted file mode 100644 index 1ff9745a46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24388.png b/front/public/images/small/gregtech/gt.metaitem.02/24388.png deleted file mode 100644 index 966363be8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24389.png b/front/public/images/small/gregtech/gt.metaitem.02/24389.png deleted file mode 100644 index 9f99b91d74..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24390.png b/front/public/images/small/gregtech/gt.metaitem.02/24390.png deleted file mode 100644 index b6be757895..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24391.png b/front/public/images/small/gregtech/gt.metaitem.02/24391.png deleted file mode 100644 index c8b5bbf77b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24392.png b/front/public/images/small/gregtech/gt.metaitem.02/24392.png deleted file mode 100644 index 3904a8b228..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24393.png b/front/public/images/small/gregtech/gt.metaitem.02/24393.png deleted file mode 100644 index 0f819eb713..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24394.png b/front/public/images/small/gregtech/gt.metaitem.02/24394.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24395.png b/front/public/images/small/gregtech/gt.metaitem.02/24395.png deleted file mode 100644 index 966363be8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24397.png b/front/public/images/small/gregtech/gt.metaitem.02/24397.png deleted file mode 100644 index d69140d440..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24398.png b/front/public/images/small/gregtech/gt.metaitem.02/24398.png deleted file mode 100644 index 790530f15d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24399.png b/front/public/images/small/gregtech/gt.metaitem.02/24399.png deleted file mode 100644 index 26c4ee0d7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24400.png b/front/public/images/small/gregtech/gt.metaitem.02/24400.png deleted file mode 100644 index 114aa31df8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24401.png b/front/public/images/small/gregtech/gt.metaitem.02/24401.png deleted file mode 100644 index 2c94df77a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24402.png b/front/public/images/small/gregtech/gt.metaitem.02/24402.png deleted file mode 100644 index 2ac2479dc4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24403.png b/front/public/images/small/gregtech/gt.metaitem.02/24403.png deleted file mode 100644 index 6674a3e453..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24404.png b/front/public/images/small/gregtech/gt.metaitem.02/24404.png deleted file mode 100644 index a45e47a586..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24405.png b/front/public/images/small/gregtech/gt.metaitem.02/24405.png deleted file mode 100644 index c1f56a3903..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24406.png b/front/public/images/small/gregtech/gt.metaitem.02/24406.png deleted file mode 100644 index 471ec05656..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24407.png b/front/public/images/small/gregtech/gt.metaitem.02/24407.png deleted file mode 100644 index c793144a92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24408.png b/front/public/images/small/gregtech/gt.metaitem.02/24408.png deleted file mode 100644 index 422989c365..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24470.png b/front/public/images/small/gregtech/gt.metaitem.02/24470.png deleted file mode 100644 index ac2fcfc4a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24471.png b/front/public/images/small/gregtech/gt.metaitem.02/24471.png deleted file mode 100644 index 37b3e2e17e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24472.png b/front/public/images/small/gregtech/gt.metaitem.02/24472.png deleted file mode 100644 index 966363be8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24473.png b/front/public/images/small/gregtech/gt.metaitem.02/24473.png deleted file mode 100644 index 4fc0bc7745..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24485.png b/front/public/images/small/gregtech/gt.metaitem.02/24485.png deleted file mode 100644 index 7ee55901fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24488.png b/front/public/images/small/gregtech/gt.metaitem.02/24488.png deleted file mode 100644 index dfa9dba01d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24489.png b/front/public/images/small/gregtech/gt.metaitem.02/24489.png deleted file mode 100644 index 2e4515f1d0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24521.png b/front/public/images/small/gregtech/gt.metaitem.02/24521.png deleted file mode 100644 index 537798b7f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24529.png b/front/public/images/small/gregtech/gt.metaitem.02/24529.png deleted file mode 100644 index c23b05fe1e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24576.png b/front/public/images/small/gregtech/gt.metaitem.02/24576.png deleted file mode 100644 index fa6285bcac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24581.png b/front/public/images/small/gregtech/gt.metaitem.02/24581.png deleted file mode 100644 index 478b584771..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24582.png b/front/public/images/small/gregtech/gt.metaitem.02/24582.png deleted file mode 100644 index 65cd3001db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24583.png b/front/public/images/small/gregtech/gt.metaitem.02/24583.png deleted file mode 100644 index cce7abe023..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24585.png b/front/public/images/small/gregtech/gt.metaitem.02/24585.png deleted file mode 100644 index d13ac52013..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24586.png b/front/public/images/small/gregtech/gt.metaitem.02/24586.png deleted file mode 100644 index 1b9aaac25c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24588.png b/front/public/images/small/gregtech/gt.metaitem.02/24588.png deleted file mode 100644 index 27531bd51b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24599.png b/front/public/images/small/gregtech/gt.metaitem.02/24599.png deleted file mode 100644 index d371f9fd06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24610.png b/front/public/images/small/gregtech/gt.metaitem.02/24610.png deleted file mode 100644 index dbd852750d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24613.png b/front/public/images/small/gregtech/gt.metaitem.02/24613.png deleted file mode 100644 index 640d230102..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24631.png b/front/public/images/small/gregtech/gt.metaitem.02/24631.png deleted file mode 100644 index e928f6a2a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24635.png b/front/public/images/small/gregtech/gt.metaitem.02/24635.png deleted file mode 100644 index 51c211ece9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24636.png b/front/public/images/small/gregtech/gt.metaitem.02/24636.png deleted file mode 100644 index b9065985c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24649.png b/front/public/images/small/gregtech/gt.metaitem.02/24649.png deleted file mode 100644 index 08d83788b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24765.png b/front/public/images/small/gregtech/gt.metaitem.02/24765.png deleted file mode 100644 index 46850f2ecd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24770.png b/front/public/images/small/gregtech/gt.metaitem.02/24770.png deleted file mode 100644 index 73e9229c68..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24772.png b/front/public/images/small/gregtech/gt.metaitem.02/24772.png deleted file mode 100644 index 7b8366330b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24829.png b/front/public/images/small/gregtech/gt.metaitem.02/24829.png deleted file mode 100644 index fe3a5fe573..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24856.png b/front/public/images/small/gregtech/gt.metaitem.02/24856.png deleted file mode 100644 index b22d42e8d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24868.png b/front/public/images/small/gregtech/gt.metaitem.02/24868.png deleted file mode 100644 index 7077e3e1c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24874.png b/front/public/images/small/gregtech/gt.metaitem.02/24874.png deleted file mode 100644 index d2655a1b0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24880.png b/front/public/images/small/gregtech/gt.metaitem.02/24880.png deleted file mode 100644 index 1b9aaac25c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24884.png b/front/public/images/small/gregtech/gt.metaitem.02/24884.png deleted file mode 100644 index 19b82d78db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24912.png b/front/public/images/small/gregtech/gt.metaitem.02/24912.png deleted file mode 100644 index 5990f702d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24913.png b/front/public/images/small/gregtech/gt.metaitem.02/24913.png deleted file mode 100644 index 990dbdb834..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24951.png b/front/public/images/small/gregtech/gt.metaitem.02/24951.png deleted file mode 100644 index c7709eab30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24952.png b/front/public/images/small/gregtech/gt.metaitem.02/24952.png deleted file mode 100644 index f956f07420..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24956.png b/front/public/images/small/gregtech/gt.metaitem.02/24956.png deleted file mode 100644 index 36044ab965..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24966.png b/front/public/images/small/gregtech/gt.metaitem.02/24966.png deleted file mode 100644 index 224bcbbdee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24970.png b/front/public/images/small/gregtech/gt.metaitem.02/24970.png deleted file mode 100644 index 258ee5f3e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24974.png b/front/public/images/small/gregtech/gt.metaitem.02/24974.png deleted file mode 100644 index 7b6ed2769d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24975.png b/front/public/images/small/gregtech/gt.metaitem.02/24975.png deleted file mode 100644 index 1c6240f6a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24976.png b/front/public/images/small/gregtech/gt.metaitem.02/24976.png deleted file mode 100644 index 89d42b404c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24977.png b/front/public/images/small/gregtech/gt.metaitem.02/24977.png deleted file mode 100644 index 0df60781f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24978.png b/front/public/images/small/gregtech/gt.metaitem.02/24978.png deleted file mode 100644 index cbf95138d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24979.png b/front/public/images/small/gregtech/gt.metaitem.02/24979.png deleted file mode 100644 index 5c4508747b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24980.png b/front/public/images/small/gregtech/gt.metaitem.02/24980.png deleted file mode 100644 index 1c8960c82d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24981.png b/front/public/images/small/gregtech/gt.metaitem.02/24981.png deleted file mode 100644 index bad25c146b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24982.png b/front/public/images/small/gregtech/gt.metaitem.02/24982.png deleted file mode 100644 index b0e2cd788e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24984.png b/front/public/images/small/gregtech/gt.metaitem.02/24984.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24985.png b/front/public/images/small/gregtech/gt.metaitem.02/24985.png deleted file mode 100644 index 12f4780eb7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24986.png b/front/public/images/small/gregtech/gt.metaitem.02/24986.png deleted file mode 100644 index 0f9b940c29..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24987.png b/front/public/images/small/gregtech/gt.metaitem.02/24987.png deleted file mode 100644 index e5073e4163..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24988.png b/front/public/images/small/gregtech/gt.metaitem.02/24988.png deleted file mode 100644 index 2b1bac82f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24989.png b/front/public/images/small/gregtech/gt.metaitem.02/24989.png deleted file mode 100644 index ff89e5cc69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24990.png b/front/public/images/small/gregtech/gt.metaitem.02/24990.png deleted file mode 100644 index 71d0dfb663..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24991.png b/front/public/images/small/gregtech/gt.metaitem.02/24991.png deleted file mode 100644 index e137a1c638..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/24992.png b/front/public/images/small/gregtech/gt.metaitem.02/24992.png deleted file mode 100644 index 7c405af1d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/24992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25008.png b/front/public/images/small/gregtech/gt.metaitem.02/25008.png deleted file mode 100644 index d73f5b4dda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25010.png b/front/public/images/small/gregtech/gt.metaitem.02/25010.png deleted file mode 100644 index 0fd70c447b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25019.png b/front/public/images/small/gregtech/gt.metaitem.02/25019.png deleted file mode 100644 index f38571e06f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25028.png b/front/public/images/small/gregtech/gt.metaitem.02/25028.png deleted file mode 100644 index 708a99d164..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25030.png b/front/public/images/small/gregtech/gt.metaitem.02/25030.png deleted file mode 100644 index 81fbf589c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25031.png b/front/public/images/small/gregtech/gt.metaitem.02/25031.png deleted file mode 100644 index 1631eb7110..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25032.png b/front/public/images/small/gregtech/gt.metaitem.02/25032.png deleted file mode 100644 index edfd01390b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25033.png b/front/public/images/small/gregtech/gt.metaitem.02/25033.png deleted file mode 100644 index 473429a653..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25034.png b/front/public/images/small/gregtech/gt.metaitem.02/25034.png deleted file mode 100644 index e99913c705..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25048.png b/front/public/images/small/gregtech/gt.metaitem.02/25048.png deleted file mode 100644 index 0f9bd3444d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25052.png b/front/public/images/small/gregtech/gt.metaitem.02/25052.png deleted file mode 100644 index c530d0ca93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25054.png b/front/public/images/small/gregtech/gt.metaitem.02/25054.png deleted file mode 100644 index 3b3263439f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25067.png b/front/public/images/small/gregtech/gt.metaitem.02/25067.png deleted file mode 100644 index e32eb9519c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25081.png b/front/public/images/small/gregtech/gt.metaitem.02/25081.png deleted file mode 100644 index 44841924d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25083.png b/front/public/images/small/gregtech/gt.metaitem.02/25083.png deleted file mode 100644 index 9b4b3ace2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25084.png b/front/public/images/small/gregtech/gt.metaitem.02/25084.png deleted file mode 100644 index de1b992bed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25085.png b/front/public/images/small/gregtech/gt.metaitem.02/25085.png deleted file mode 100644 index 18e8e424fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25086.png b/front/public/images/small/gregtech/gt.metaitem.02/25086.png deleted file mode 100644 index 276f9c6540..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25089.png b/front/public/images/small/gregtech/gt.metaitem.02/25089.png deleted file mode 100644 index 64f2541c0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25090.png b/front/public/images/small/gregtech/gt.metaitem.02/25090.png deleted file mode 100644 index be061447bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25096.png b/front/public/images/small/gregtech/gt.metaitem.02/25096.png deleted file mode 100644 index f2cefdde6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25097.png b/front/public/images/small/gregtech/gt.metaitem.02/25097.png deleted file mode 100644 index dab080ac16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25098.png b/front/public/images/small/gregtech/gt.metaitem.02/25098.png deleted file mode 100644 index c07353aa60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25100.png b/front/public/images/small/gregtech/gt.metaitem.02/25100.png deleted file mode 100644 index ecb4b613d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25101.png b/front/public/images/small/gregtech/gt.metaitem.02/25101.png deleted file mode 100644 index d87491124c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25111.png b/front/public/images/small/gregtech/gt.metaitem.02/25111.png deleted file mode 100644 index d5cf83642c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25112.png b/front/public/images/small/gregtech/gt.metaitem.02/25112.png deleted file mode 100644 index 125ab2475e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25129.png b/front/public/images/small/gregtech/gt.metaitem.02/25129.png deleted file mode 100644 index 1631eb7110..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25139.png b/front/public/images/small/gregtech/gt.metaitem.02/25139.png deleted file mode 100644 index f8d50eea28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25141.png b/front/public/images/small/gregtech/gt.metaitem.02/25141.png deleted file mode 100644 index a15874549e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25143.png b/front/public/images/small/gregtech/gt.metaitem.02/25143.png deleted file mode 100644 index 80b1055e27..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25201.png b/front/public/images/small/gregtech/gt.metaitem.02/25201.png deleted file mode 100644 index df8963df59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25202.png b/front/public/images/small/gregtech/gt.metaitem.02/25202.png deleted file mode 100644 index f4d7fa0c8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25203.png b/front/public/images/small/gregtech/gt.metaitem.02/25203.png deleted file mode 100644 index e8c215f1c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25204.png b/front/public/images/small/gregtech/gt.metaitem.02/25204.png deleted file mode 100644 index 2211a86ca1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25205.png b/front/public/images/small/gregtech/gt.metaitem.02/25205.png deleted file mode 100644 index d6d1edee13..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25206.png b/front/public/images/small/gregtech/gt.metaitem.02/25206.png deleted file mode 100644 index 990586cdf1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25207.png b/front/public/images/small/gregtech/gt.metaitem.02/25207.png deleted file mode 100644 index 2ffd552a7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25299.png b/front/public/images/small/gregtech/gt.metaitem.02/25299.png deleted file mode 100644 index 1e53679d23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25300.png b/front/public/images/small/gregtech/gt.metaitem.02/25300.png deleted file mode 100644 index fe2d619452..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25301.png b/front/public/images/small/gregtech/gt.metaitem.02/25301.png deleted file mode 100644 index 8f2edf6e48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25302.png b/front/public/images/small/gregtech/gt.metaitem.02/25302.png deleted file mode 100644 index 0e324ce141..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25303.png b/front/public/images/small/gregtech/gt.metaitem.02/25303.png deleted file mode 100644 index f3ea45c5a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25304.png b/front/public/images/small/gregtech/gt.metaitem.02/25304.png deleted file mode 100644 index a7c65f02df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25305.png b/front/public/images/small/gregtech/gt.metaitem.02/25305.png deleted file mode 100644 index c530d0ca93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25306.png b/front/public/images/small/gregtech/gt.metaitem.02/25306.png deleted file mode 100644 index c7124dcde4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25307.png b/front/public/images/small/gregtech/gt.metaitem.02/25307.png deleted file mode 100644 index a7c65f02df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25310.png b/front/public/images/small/gregtech/gt.metaitem.02/25310.png deleted file mode 100644 index 932587dd9b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25311.png b/front/public/images/small/gregtech/gt.metaitem.02/25311.png deleted file mode 100644 index 7d694ee55a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25312.png b/front/public/images/small/gregtech/gt.metaitem.02/25312.png deleted file mode 100644 index 91495abbca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25313.png b/front/public/images/small/gregtech/gt.metaitem.02/25313.png deleted file mode 100644 index ed882caf36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25316.png b/front/public/images/small/gregtech/gt.metaitem.02/25316.png deleted file mode 100644 index 3c2d6ce6c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25317.png b/front/public/images/small/gregtech/gt.metaitem.02/25317.png deleted file mode 100644 index 41b0bd509e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25318.png b/front/public/images/small/gregtech/gt.metaitem.02/25318.png deleted file mode 100644 index 3d2c694057..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25319.png b/front/public/images/small/gregtech/gt.metaitem.02/25319.png deleted file mode 100644 index 55e3b7493b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25320.png b/front/public/images/small/gregtech/gt.metaitem.02/25320.png deleted file mode 100644 index 66a847bd3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25321.png b/front/public/images/small/gregtech/gt.metaitem.02/25321.png deleted file mode 100644 index 91f1adf821..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25323.png b/front/public/images/small/gregtech/gt.metaitem.02/25323.png deleted file mode 100644 index 29f3f22b0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25324.png b/front/public/images/small/gregtech/gt.metaitem.02/25324.png deleted file mode 100644 index 44841924d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25325.png b/front/public/images/small/gregtech/gt.metaitem.02/25325.png deleted file mode 100644 index ca52de391e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25326.png b/front/public/images/small/gregtech/gt.metaitem.02/25326.png deleted file mode 100644 index 6e7bd19f57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25327.png b/front/public/images/small/gregtech/gt.metaitem.02/25327.png deleted file mode 100644 index 81a9e86e0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25328.png b/front/public/images/small/gregtech/gt.metaitem.02/25328.png deleted file mode 100644 index 55e3b7493b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25329.png b/front/public/images/small/gregtech/gt.metaitem.02/25329.png deleted file mode 100644 index ae83fc0f64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25330.png b/front/public/images/small/gregtech/gt.metaitem.02/25330.png deleted file mode 100644 index 36cff9dac9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25331.png b/front/public/images/small/gregtech/gt.metaitem.02/25331.png deleted file mode 100644 index 2d5e1e5705..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25333.png b/front/public/images/small/gregtech/gt.metaitem.02/25333.png deleted file mode 100644 index 46380fef34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25334.png b/front/public/images/small/gregtech/gt.metaitem.02/25334.png deleted file mode 100644 index e32eb9519c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25335.png b/front/public/images/small/gregtech/gt.metaitem.02/25335.png deleted file mode 100644 index 347a4d73f7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25336.png b/front/public/images/small/gregtech/gt.metaitem.02/25336.png deleted file mode 100644 index b7a34cb92a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25337.png b/front/public/images/small/gregtech/gt.metaitem.02/25337.png deleted file mode 100644 index ff6b0984e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25338.png b/front/public/images/small/gregtech/gt.metaitem.02/25338.png deleted file mode 100644 index fa63f32135..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25339.png b/front/public/images/small/gregtech/gt.metaitem.02/25339.png deleted file mode 100644 index dd47a1b0f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25340.png b/front/public/images/small/gregtech/gt.metaitem.02/25340.png deleted file mode 100644 index b99c7dfb99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25341.png b/front/public/images/small/gregtech/gt.metaitem.02/25341.png deleted file mode 100644 index e5873c3843..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25342.png b/front/public/images/small/gregtech/gt.metaitem.02/25342.png deleted file mode 100644 index cdfd93f28f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25343.png b/front/public/images/small/gregtech/gt.metaitem.02/25343.png deleted file mode 100644 index 39068c821e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25344.png b/front/public/images/small/gregtech/gt.metaitem.02/25344.png deleted file mode 100644 index 4480e73679..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25346.png b/front/public/images/small/gregtech/gt.metaitem.02/25346.png deleted file mode 100644 index 0e346187aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25347.png b/front/public/images/small/gregtech/gt.metaitem.02/25347.png deleted file mode 100644 index dd8658f064..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25348.png b/front/public/images/small/gregtech/gt.metaitem.02/25348.png deleted file mode 100644 index 5efa8059d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25349.png b/front/public/images/small/gregtech/gt.metaitem.02/25349.png deleted file mode 100644 index 623be6aff4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25350.png b/front/public/images/small/gregtech/gt.metaitem.02/25350.png deleted file mode 100644 index 57bc962ed1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25351.png b/front/public/images/small/gregtech/gt.metaitem.02/25351.png deleted file mode 100644 index d30686c02a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25352.png b/front/public/images/small/gregtech/gt.metaitem.02/25352.png deleted file mode 100644 index 3333a31c5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25353.png b/front/public/images/small/gregtech/gt.metaitem.02/25353.png deleted file mode 100644 index 680a338ac8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25354.png b/front/public/images/small/gregtech/gt.metaitem.02/25354.png deleted file mode 100644 index f3ad432f22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25355.png b/front/public/images/small/gregtech/gt.metaitem.02/25355.png deleted file mode 100644 index 2ca4e575ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25356.png b/front/public/images/small/gregtech/gt.metaitem.02/25356.png deleted file mode 100644 index 025bd3abbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25362.png b/front/public/images/small/gregtech/gt.metaitem.02/25362.png deleted file mode 100644 index f82616af7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25363.png b/front/public/images/small/gregtech/gt.metaitem.02/25363.png deleted file mode 100644 index edfd01390b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25364.png b/front/public/images/small/gregtech/gt.metaitem.02/25364.png deleted file mode 100644 index fd83a188c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25365.png b/front/public/images/small/gregtech/gt.metaitem.02/25365.png deleted file mode 100644 index 2f0521f5dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25366.png b/front/public/images/small/gregtech/gt.metaitem.02/25366.png deleted file mode 100644 index 7d4da1ba54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25367.png b/front/public/images/small/gregtech/gt.metaitem.02/25367.png deleted file mode 100644 index e238b3d01f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25368.png b/front/public/images/small/gregtech/gt.metaitem.02/25368.png deleted file mode 100644 index 1c565fe70a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25369.png b/front/public/images/small/gregtech/gt.metaitem.02/25369.png deleted file mode 100644 index 16099fe2cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25370.png b/front/public/images/small/gregtech/gt.metaitem.02/25370.png deleted file mode 100644 index 3008eeca09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25371.png b/front/public/images/small/gregtech/gt.metaitem.02/25371.png deleted file mode 100644 index 74a2bd1792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25372.png b/front/public/images/small/gregtech/gt.metaitem.02/25372.png deleted file mode 100644 index d88d5ab893..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25373.png b/front/public/images/small/gregtech/gt.metaitem.02/25373.png deleted file mode 100644 index dc1d169792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25374.png b/front/public/images/small/gregtech/gt.metaitem.02/25374.png deleted file mode 100644 index d9ecc06a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25378.png b/front/public/images/small/gregtech/gt.metaitem.02/25378.png deleted file mode 100644 index be265d676c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25379.png b/front/public/images/small/gregtech/gt.metaitem.02/25379.png deleted file mode 100644 index 1972b94e63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25380.png b/front/public/images/small/gregtech/gt.metaitem.02/25380.png deleted file mode 100644 index 0b15ace87b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25381.png b/front/public/images/small/gregtech/gt.metaitem.02/25381.png deleted file mode 100644 index eca97aee0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25382.png b/front/public/images/small/gregtech/gt.metaitem.02/25382.png deleted file mode 100644 index fc8f08ebca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25383.png b/front/public/images/small/gregtech/gt.metaitem.02/25383.png deleted file mode 100644 index 8051141c9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25384.png b/front/public/images/small/gregtech/gt.metaitem.02/25384.png deleted file mode 100644 index bbf2db6055..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25385.png b/front/public/images/small/gregtech/gt.metaitem.02/25385.png deleted file mode 100644 index d4f4ca8bec..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25386.png b/front/public/images/small/gregtech/gt.metaitem.02/25386.png deleted file mode 100644 index dba0517343..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25387.png b/front/public/images/small/gregtech/gt.metaitem.02/25387.png deleted file mode 100644 index 07d9e52edc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25388.png b/front/public/images/small/gregtech/gt.metaitem.02/25388.png deleted file mode 100644 index 44841924d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25389.png b/front/public/images/small/gregtech/gt.metaitem.02/25389.png deleted file mode 100644 index 75b60eeec9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25390.png b/front/public/images/small/gregtech/gt.metaitem.02/25390.png deleted file mode 100644 index 646d703403..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25391.png b/front/public/images/small/gregtech/gt.metaitem.02/25391.png deleted file mode 100644 index 79b3272ff1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25392.png b/front/public/images/small/gregtech/gt.metaitem.02/25392.png deleted file mode 100644 index c90ad21c2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25393.png b/front/public/images/small/gregtech/gt.metaitem.02/25393.png deleted file mode 100644 index 761d73c8c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25394.png b/front/public/images/small/gregtech/gt.metaitem.02/25394.png deleted file mode 100644 index 55e3b7493b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25397.png b/front/public/images/small/gregtech/gt.metaitem.02/25397.png deleted file mode 100644 index a5222f5366..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25398.png b/front/public/images/small/gregtech/gt.metaitem.02/25398.png deleted file mode 100644 index 46e2fff00a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25399.png b/front/public/images/small/gregtech/gt.metaitem.02/25399.png deleted file mode 100644 index cd9c515675..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25400.png b/front/public/images/small/gregtech/gt.metaitem.02/25400.png deleted file mode 100644 index 4600cd713b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25401.png b/front/public/images/small/gregtech/gt.metaitem.02/25401.png deleted file mode 100644 index 4d3201ce77..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25402.png b/front/public/images/small/gregtech/gt.metaitem.02/25402.png deleted file mode 100644 index 22f5383bab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25403.png b/front/public/images/small/gregtech/gt.metaitem.02/25403.png deleted file mode 100644 index 8aef6d9a40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25404.png b/front/public/images/small/gregtech/gt.metaitem.02/25404.png deleted file mode 100644 index 75eaeb6611..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25405.png b/front/public/images/small/gregtech/gt.metaitem.02/25405.png deleted file mode 100644 index ecc5a639dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25406.png b/front/public/images/small/gregtech/gt.metaitem.02/25406.png deleted file mode 100644 index 4a2ad20609..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25407.png b/front/public/images/small/gregtech/gt.metaitem.02/25407.png deleted file mode 100644 index a6b79ecc04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25408.png b/front/public/images/small/gregtech/gt.metaitem.02/25408.png deleted file mode 100644 index f6a13be50f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25470.png b/front/public/images/small/gregtech/gt.metaitem.02/25470.png deleted file mode 100644 index 3d3c66c160..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25471.png b/front/public/images/small/gregtech/gt.metaitem.02/25471.png deleted file mode 100644 index ddc602320d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25472.png b/front/public/images/small/gregtech/gt.metaitem.02/25472.png deleted file mode 100644 index 44841924d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25473.png b/front/public/images/small/gregtech/gt.metaitem.02/25473.png deleted file mode 100644 index e32eb9519c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25485.png b/front/public/images/small/gregtech/gt.metaitem.02/25485.png deleted file mode 100644 index c4ae7a04c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25488.png b/front/public/images/small/gregtech/gt.metaitem.02/25488.png deleted file mode 100644 index 632fc85104..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25489.png b/front/public/images/small/gregtech/gt.metaitem.02/25489.png deleted file mode 100644 index 1f2c46e3d8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25500.png b/front/public/images/small/gregtech/gt.metaitem.02/25500.png deleted file mode 100644 index e81575ff94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25501.png b/front/public/images/small/gregtech/gt.metaitem.02/25501.png deleted file mode 100644 index 03613ebff8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25502.png b/front/public/images/small/gregtech/gt.metaitem.02/25502.png deleted file mode 100644 index c0f16d7517..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25503.png b/front/public/images/small/gregtech/gt.metaitem.02/25503.png deleted file mode 100644 index fd83db8794..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25504.png b/front/public/images/small/gregtech/gt.metaitem.02/25504.png deleted file mode 100644 index c0264a669a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25505.png b/front/public/images/small/gregtech/gt.metaitem.02/25505.png deleted file mode 100644 index 7ab8eb4dd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25506.png b/front/public/images/small/gregtech/gt.metaitem.02/25506.png deleted file mode 100644 index 1631eb7110..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25507.png b/front/public/images/small/gregtech/gt.metaitem.02/25507.png deleted file mode 100644 index fe2d619452..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25508.png b/front/public/images/small/gregtech/gt.metaitem.02/25508.png deleted file mode 100644 index 75701266df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25509.png b/front/public/images/small/gregtech/gt.metaitem.02/25509.png deleted file mode 100644 index 9dc3abeabc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25510.png b/front/public/images/small/gregtech/gt.metaitem.02/25510.png deleted file mode 100644 index 0fc490cb7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25511.png b/front/public/images/small/gregtech/gt.metaitem.02/25511.png deleted file mode 100644 index 95a955296f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25513.png b/front/public/images/small/gregtech/gt.metaitem.02/25513.png deleted file mode 100644 index 0fc490cb7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25514.png b/front/public/images/small/gregtech/gt.metaitem.02/25514.png deleted file mode 100644 index fe2d619452..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25516.png b/front/public/images/small/gregtech/gt.metaitem.02/25516.png deleted file mode 100644 index f6bc196c5f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25521.png b/front/public/images/small/gregtech/gt.metaitem.02/25521.png deleted file mode 100644 index 3d2c694057..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25522.png b/front/public/images/small/gregtech/gt.metaitem.02/25522.png deleted file mode 100644 index 5f69120abc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25527.png b/front/public/images/small/gregtech/gt.metaitem.02/25527.png deleted file mode 100644 index 95a955296f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25528.png b/front/public/images/small/gregtech/gt.metaitem.02/25528.png deleted file mode 100644 index fac349fcba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25529.png b/front/public/images/small/gregtech/gt.metaitem.02/25529.png deleted file mode 100644 index 76b09e9cab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25537.png b/front/public/images/small/gregtech/gt.metaitem.02/25537.png deleted file mode 100644 index adf619afc9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25540.png b/front/public/images/small/gregtech/gt.metaitem.02/25540.png deleted file mode 100644 index 3d2c694057..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25541.png b/front/public/images/small/gregtech/gt.metaitem.02/25541.png deleted file mode 100644 index bff9d43f14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25542.png b/front/public/images/small/gregtech/gt.metaitem.02/25542.png deleted file mode 100644 index c4e11ff111..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25543.png b/front/public/images/small/gregtech/gt.metaitem.02/25543.png deleted file mode 100644 index 5348c622fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25544.png b/front/public/images/small/gregtech/gt.metaitem.02/25544.png deleted file mode 100644 index c00906f3b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25545.png b/front/public/images/small/gregtech/gt.metaitem.02/25545.png deleted file mode 100644 index daa579d119..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25576.png b/front/public/images/small/gregtech/gt.metaitem.02/25576.png deleted file mode 100644 index f1e070deb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25583.png b/front/public/images/small/gregtech/gt.metaitem.02/25583.png deleted file mode 100644 index 2d82a3411a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25585.png b/front/public/images/small/gregtech/gt.metaitem.02/25585.png deleted file mode 100644 index ebb19250dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25586.png b/front/public/images/small/gregtech/gt.metaitem.02/25586.png deleted file mode 100644 index 62f951876c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25588.png b/front/public/images/small/gregtech/gt.metaitem.02/25588.png deleted file mode 100644 index e6b6bea3f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25599.png b/front/public/images/small/gregtech/gt.metaitem.02/25599.png deleted file mode 100644 index 5a016ebea2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25610.png b/front/public/images/small/gregtech/gt.metaitem.02/25610.png deleted file mode 100644 index 9821ffbf2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25613.png b/front/public/images/small/gregtech/gt.metaitem.02/25613.png deleted file mode 100644 index 54539d4a22..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25631.png b/front/public/images/small/gregtech/gt.metaitem.02/25631.png deleted file mode 100644 index 4981b3df94..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25635.png b/front/public/images/small/gregtech/gt.metaitem.02/25635.png deleted file mode 100644 index ae0ca1d609..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25636.png b/front/public/images/small/gregtech/gt.metaitem.02/25636.png deleted file mode 100644 index f7611a7474..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25649.png b/front/public/images/small/gregtech/gt.metaitem.02/25649.png deleted file mode 100644 index 45a7b0fcde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25770.png b/front/public/images/small/gregtech/gt.metaitem.02/25770.png deleted file mode 100644 index 738de09624..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25801.png b/front/public/images/small/gregtech/gt.metaitem.02/25801.png deleted file mode 100644 index 72e3643b65..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25801.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25802.png b/front/public/images/small/gregtech/gt.metaitem.02/25802.png deleted file mode 100644 index a1ba1720cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25802.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25809.png b/front/public/images/small/gregtech/gt.metaitem.02/25809.png deleted file mode 100644 index 929ba87eed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25819.png b/front/public/images/small/gregtech/gt.metaitem.02/25819.png deleted file mode 100644 index c530d0ca93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25819.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25829.png b/front/public/images/small/gregtech/gt.metaitem.02/25829.png deleted file mode 100644 index 306d62624c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25844.png b/front/public/images/small/gregtech/gt.metaitem.02/25844.png deleted file mode 100644 index 6f994599f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25844.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25845.png b/front/public/images/small/gregtech/gt.metaitem.02/25845.png deleted file mode 100644 index edfd01390b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25845.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25849.png b/front/public/images/small/gregtech/gt.metaitem.02/25849.png deleted file mode 100644 index 65186a55c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25850.png b/front/public/images/small/gregtech/gt.metaitem.02/25850.png deleted file mode 100644 index 89939b7ba1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25854.png b/front/public/images/small/gregtech/gt.metaitem.02/25854.png deleted file mode 100644 index c530d0ca93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25854.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25865.png b/front/public/images/small/gregtech/gt.metaitem.02/25865.png deleted file mode 100644 index c530d0ca93..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25868.png b/front/public/images/small/gregtech/gt.metaitem.02/25868.png deleted file mode 100644 index 94af65008b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25874.png b/front/public/images/small/gregtech/gt.metaitem.02/25874.png deleted file mode 100644 index edfd01390b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25880.png b/front/public/images/small/gregtech/gt.metaitem.02/25880.png deleted file mode 100644 index 62f951876c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25884.png b/front/public/images/small/gregtech/gt.metaitem.02/25884.png deleted file mode 100644 index ca52de391e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25889.png b/front/public/images/small/gregtech/gt.metaitem.02/25889.png deleted file mode 100644 index 696d2af80e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25912.png b/front/public/images/small/gregtech/gt.metaitem.02/25912.png deleted file mode 100644 index 4d24c0c4ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25913.png b/front/public/images/small/gregtech/gt.metaitem.02/25913.png deleted file mode 100644 index 5efa8059d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25951.png b/front/public/images/small/gregtech/gt.metaitem.02/25951.png deleted file mode 100644 index d0cd783cd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25952.png b/front/public/images/small/gregtech/gt.metaitem.02/25952.png deleted file mode 100644 index c11e49146d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25966.png b/front/public/images/small/gregtech/gt.metaitem.02/25966.png deleted file mode 100644 index 01cdc0be34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25970.png b/front/public/images/small/gregtech/gt.metaitem.02/25970.png deleted file mode 100644 index 089a0c12a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25975.png b/front/public/images/small/gregtech/gt.metaitem.02/25975.png deleted file mode 100644 index 0a42b2a03a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25976.png b/front/public/images/small/gregtech/gt.metaitem.02/25976.png deleted file mode 100644 index f16daf98ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25977.png b/front/public/images/small/gregtech/gt.metaitem.02/25977.png deleted file mode 100644 index b5c8eb4d1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25978.png b/front/public/images/small/gregtech/gt.metaitem.02/25978.png deleted file mode 100644 index 5ad853abbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25982.png b/front/public/images/small/gregtech/gt.metaitem.02/25982.png deleted file mode 100644 index 08094ab121..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/25984.png b/front/public/images/small/gregtech/gt.metaitem.02/25984.png deleted file mode 100644 index 55e3b7493b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/25984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26008.png b/front/public/images/small/gregtech/gt.metaitem.02/26008.png deleted file mode 100644 index a76e6f8339..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26010.png b/front/public/images/small/gregtech/gt.metaitem.02/26010.png deleted file mode 100644 index 7508d98989..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26019.png b/front/public/images/small/gregtech/gt.metaitem.02/26019.png deleted file mode 100644 index d2249f7693..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26028.png b/front/public/images/small/gregtech/gt.metaitem.02/26028.png deleted file mode 100644 index 9953bb6f75..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26030.png b/front/public/images/small/gregtech/gt.metaitem.02/26030.png deleted file mode 100644 index 8e77f3b4cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26031.png b/front/public/images/small/gregtech/gt.metaitem.02/26031.png deleted file mode 100644 index fbff413289..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26032.png b/front/public/images/small/gregtech/gt.metaitem.02/26032.png deleted file mode 100644 index 20e9f4f448..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26033.png b/front/public/images/small/gregtech/gt.metaitem.02/26033.png deleted file mode 100644 index 7bf1fe9da3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26034.png b/front/public/images/small/gregtech/gt.metaitem.02/26034.png deleted file mode 100644 index 51027ac3a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26048.png b/front/public/images/small/gregtech/gt.metaitem.02/26048.png deleted file mode 100644 index a17440781a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26052.png b/front/public/images/small/gregtech/gt.metaitem.02/26052.png deleted file mode 100644 index 82a6a3bced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26054.png b/front/public/images/small/gregtech/gt.metaitem.02/26054.png deleted file mode 100644 index 42b6ee92b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26067.png b/front/public/images/small/gregtech/gt.metaitem.02/26067.png deleted file mode 100644 index 602b18bb63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26081.png b/front/public/images/small/gregtech/gt.metaitem.02/26081.png deleted file mode 100644 index fa7c2885e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26083.png b/front/public/images/small/gregtech/gt.metaitem.02/26083.png deleted file mode 100644 index 0cc6a5f7db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26084.png b/front/public/images/small/gregtech/gt.metaitem.02/26084.png deleted file mode 100644 index 9e752319d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26085.png b/front/public/images/small/gregtech/gt.metaitem.02/26085.png deleted file mode 100644 index 401c90e649..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26086.png b/front/public/images/small/gregtech/gt.metaitem.02/26086.png deleted file mode 100644 index 41961ef1f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26089.png b/front/public/images/small/gregtech/gt.metaitem.02/26089.png deleted file mode 100644 index 52d99613d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26090.png b/front/public/images/small/gregtech/gt.metaitem.02/26090.png deleted file mode 100644 index 0910416223..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26096.png b/front/public/images/small/gregtech/gt.metaitem.02/26096.png deleted file mode 100644 index 461b207b54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26097.png b/front/public/images/small/gregtech/gt.metaitem.02/26097.png deleted file mode 100644 index 93de9394bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26098.png b/front/public/images/small/gregtech/gt.metaitem.02/26098.png deleted file mode 100644 index edb965d68c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26100.png b/front/public/images/small/gregtech/gt.metaitem.02/26100.png deleted file mode 100644 index e2040bc275..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26101.png b/front/public/images/small/gregtech/gt.metaitem.02/26101.png deleted file mode 100644 index 123cf1f6f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26111.png b/front/public/images/small/gregtech/gt.metaitem.02/26111.png deleted file mode 100644 index dccc6d1096..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26112.png b/front/public/images/small/gregtech/gt.metaitem.02/26112.png deleted file mode 100644 index 3192a026b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26129.png b/front/public/images/small/gregtech/gt.metaitem.02/26129.png deleted file mode 100644 index fbff413289..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26139.png b/front/public/images/small/gregtech/gt.metaitem.02/26139.png deleted file mode 100644 index c0c347de9e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26141.png b/front/public/images/small/gregtech/gt.metaitem.02/26141.png deleted file mode 100644 index c9fd6953d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26143.png b/front/public/images/small/gregtech/gt.metaitem.02/26143.png deleted file mode 100644 index b3e2c9b340..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26201.png b/front/public/images/small/gregtech/gt.metaitem.02/26201.png deleted file mode 100644 index 23059e6e4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26202.png b/front/public/images/small/gregtech/gt.metaitem.02/26202.png deleted file mode 100644 index 4514588b0f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26203.png b/front/public/images/small/gregtech/gt.metaitem.02/26203.png deleted file mode 100644 index b140a380c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26204.png b/front/public/images/small/gregtech/gt.metaitem.02/26204.png deleted file mode 100644 index 07989c583f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26205.png b/front/public/images/small/gregtech/gt.metaitem.02/26205.png deleted file mode 100644 index 2a31cf929e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26206.png b/front/public/images/small/gregtech/gt.metaitem.02/26206.png deleted file mode 100644 index a6d9946c20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26207.png b/front/public/images/small/gregtech/gt.metaitem.02/26207.png deleted file mode 100644 index 2c1166210c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26299.png b/front/public/images/small/gregtech/gt.metaitem.02/26299.png deleted file mode 100644 index 33d757c072..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26300.png b/front/public/images/small/gregtech/gt.metaitem.02/26300.png deleted file mode 100644 index 9f0bd3e01f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26301.png b/front/public/images/small/gregtech/gt.metaitem.02/26301.png deleted file mode 100644 index 6e00da1c8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26302.png b/front/public/images/small/gregtech/gt.metaitem.02/26302.png deleted file mode 100644 index 54328a0ffc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26303.png b/front/public/images/small/gregtech/gt.metaitem.02/26303.png deleted file mode 100644 index b13bf2d0bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26304.png b/front/public/images/small/gregtech/gt.metaitem.02/26304.png deleted file mode 100644 index 4c6160af0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26305.png b/front/public/images/small/gregtech/gt.metaitem.02/26305.png deleted file mode 100644 index 82a6a3bced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26306.png b/front/public/images/small/gregtech/gt.metaitem.02/26306.png deleted file mode 100644 index 02e2772e57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26307.png b/front/public/images/small/gregtech/gt.metaitem.02/26307.png deleted file mode 100644 index 4c6160af0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26310.png b/front/public/images/small/gregtech/gt.metaitem.02/26310.png deleted file mode 100644 index a00f603c98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26311.png b/front/public/images/small/gregtech/gt.metaitem.02/26311.png deleted file mode 100644 index 69728c78cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26312.png b/front/public/images/small/gregtech/gt.metaitem.02/26312.png deleted file mode 100644 index f6fd29beee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26313.png b/front/public/images/small/gregtech/gt.metaitem.02/26313.png deleted file mode 100644 index 48c03969ba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26316.png b/front/public/images/small/gregtech/gt.metaitem.02/26316.png deleted file mode 100644 index 44fa34819a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26317.png b/front/public/images/small/gregtech/gt.metaitem.02/26317.png deleted file mode 100644 index b86fea1732..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26318.png b/front/public/images/small/gregtech/gt.metaitem.02/26318.png deleted file mode 100644 index d221d9e8ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26319.png b/front/public/images/small/gregtech/gt.metaitem.02/26319.png deleted file mode 100644 index de68b121c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26320.png b/front/public/images/small/gregtech/gt.metaitem.02/26320.png deleted file mode 100644 index 2ee9ba9b58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26321.png b/front/public/images/small/gregtech/gt.metaitem.02/26321.png deleted file mode 100644 index 6163c7279f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26323.png b/front/public/images/small/gregtech/gt.metaitem.02/26323.png deleted file mode 100644 index 125d3c7a8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26324.png b/front/public/images/small/gregtech/gt.metaitem.02/26324.png deleted file mode 100644 index fa7c2885e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26325.png b/front/public/images/small/gregtech/gt.metaitem.02/26325.png deleted file mode 100644 index 9fcc7ab06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26326.png b/front/public/images/small/gregtech/gt.metaitem.02/26326.png deleted file mode 100644 index 37ef1ac108..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26327.png b/front/public/images/small/gregtech/gt.metaitem.02/26327.png deleted file mode 100644 index 3bf6cd9e95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26328.png b/front/public/images/small/gregtech/gt.metaitem.02/26328.png deleted file mode 100644 index de68b121c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26329.png b/front/public/images/small/gregtech/gt.metaitem.02/26329.png deleted file mode 100644 index 6380419dbe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26330.png b/front/public/images/small/gregtech/gt.metaitem.02/26330.png deleted file mode 100644 index 84e5f5c58d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26331.png b/front/public/images/small/gregtech/gt.metaitem.02/26331.png deleted file mode 100644 index d60ccfaa54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26333.png b/front/public/images/small/gregtech/gt.metaitem.02/26333.png deleted file mode 100644 index ea4535fc24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26334.png b/front/public/images/small/gregtech/gt.metaitem.02/26334.png deleted file mode 100644 index 602b18bb63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26335.png b/front/public/images/small/gregtech/gt.metaitem.02/26335.png deleted file mode 100644 index 2bd018cae8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26336.png b/front/public/images/small/gregtech/gt.metaitem.02/26336.png deleted file mode 100644 index 64c0999faa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26337.png b/front/public/images/small/gregtech/gt.metaitem.02/26337.png deleted file mode 100644 index 648d8e637d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26338.png b/front/public/images/small/gregtech/gt.metaitem.02/26338.png deleted file mode 100644 index 6c27946632..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26339.png b/front/public/images/small/gregtech/gt.metaitem.02/26339.png deleted file mode 100644 index cc05885d6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26340.png b/front/public/images/small/gregtech/gt.metaitem.02/26340.png deleted file mode 100644 index 15adfa38bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26341.png b/front/public/images/small/gregtech/gt.metaitem.02/26341.png deleted file mode 100644 index 16d18da9a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26342.png b/front/public/images/small/gregtech/gt.metaitem.02/26342.png deleted file mode 100644 index 6641e5d3fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26343.png b/front/public/images/small/gregtech/gt.metaitem.02/26343.png deleted file mode 100644 index 882747a37b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26344.png b/front/public/images/small/gregtech/gt.metaitem.02/26344.png deleted file mode 100644 index 86a68cffdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26346.png b/front/public/images/small/gregtech/gt.metaitem.02/26346.png deleted file mode 100644 index a0b12b82e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26347.png b/front/public/images/small/gregtech/gt.metaitem.02/26347.png deleted file mode 100644 index 4a830aaccc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26347.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26348.png b/front/public/images/small/gregtech/gt.metaitem.02/26348.png deleted file mode 100644 index 1b71171276..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26349.png b/front/public/images/small/gregtech/gt.metaitem.02/26349.png deleted file mode 100644 index 8fe5a2d16b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26350.png b/front/public/images/small/gregtech/gt.metaitem.02/26350.png deleted file mode 100644 index c51afdf552..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26351.png b/front/public/images/small/gregtech/gt.metaitem.02/26351.png deleted file mode 100644 index 8c3b27b962..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26352.png b/front/public/images/small/gregtech/gt.metaitem.02/26352.png deleted file mode 100644 index a5993aade1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26353.png b/front/public/images/small/gregtech/gt.metaitem.02/26353.png deleted file mode 100644 index 06189f836d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26354.png b/front/public/images/small/gregtech/gt.metaitem.02/26354.png deleted file mode 100644 index 03a8f33ee3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26355.png b/front/public/images/small/gregtech/gt.metaitem.02/26355.png deleted file mode 100644 index 91b76d6fba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26356.png b/front/public/images/small/gregtech/gt.metaitem.02/26356.png deleted file mode 100644 index 78640929be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26362.png b/front/public/images/small/gregtech/gt.metaitem.02/26362.png deleted file mode 100644 index 56e8d36407..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26363.png b/front/public/images/small/gregtech/gt.metaitem.02/26363.png deleted file mode 100644 index 20e9f4f448..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26364.png b/front/public/images/small/gregtech/gt.metaitem.02/26364.png deleted file mode 100644 index 776bc978d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26365.png b/front/public/images/small/gregtech/gt.metaitem.02/26365.png deleted file mode 100644 index dfa2c9fe0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26366.png b/front/public/images/small/gregtech/gt.metaitem.02/26366.png deleted file mode 100644 index 6d8418f741..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26367.png b/front/public/images/small/gregtech/gt.metaitem.02/26367.png deleted file mode 100644 index 48c66c821b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26368.png b/front/public/images/small/gregtech/gt.metaitem.02/26368.png deleted file mode 100644 index 480218ebe3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26369.png b/front/public/images/small/gregtech/gt.metaitem.02/26369.png deleted file mode 100644 index 32f9184a62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26370.png b/front/public/images/small/gregtech/gt.metaitem.02/26370.png deleted file mode 100644 index eae2996e95..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26371.png b/front/public/images/small/gregtech/gt.metaitem.02/26371.png deleted file mode 100644 index d8262e2fc8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26372.png b/front/public/images/small/gregtech/gt.metaitem.02/26372.png deleted file mode 100644 index 92dd9dbe2e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26373.png b/front/public/images/small/gregtech/gt.metaitem.02/26373.png deleted file mode 100644 index a9ce9e2104..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26374.png b/front/public/images/small/gregtech/gt.metaitem.02/26374.png deleted file mode 100644 index 5018dc6810..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26378.png b/front/public/images/small/gregtech/gt.metaitem.02/26378.png deleted file mode 100644 index 064847dc83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26379.png b/front/public/images/small/gregtech/gt.metaitem.02/26379.png deleted file mode 100644 index e36a119b9c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26380.png b/front/public/images/small/gregtech/gt.metaitem.02/26380.png deleted file mode 100644 index 0414ea8c35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26381.png b/front/public/images/small/gregtech/gt.metaitem.02/26381.png deleted file mode 100644 index 0e2b06f768..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26382.png b/front/public/images/small/gregtech/gt.metaitem.02/26382.png deleted file mode 100644 index 0a0ae38be3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26383.png b/front/public/images/small/gregtech/gt.metaitem.02/26383.png deleted file mode 100644 index 7c8c498bf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26384.png b/front/public/images/small/gregtech/gt.metaitem.02/26384.png deleted file mode 100644 index 21662fb463..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26385.png b/front/public/images/small/gregtech/gt.metaitem.02/26385.png deleted file mode 100644 index 7f29383314..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26386.png b/front/public/images/small/gregtech/gt.metaitem.02/26386.png deleted file mode 100644 index 4170ab5616..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26387.png b/front/public/images/small/gregtech/gt.metaitem.02/26387.png deleted file mode 100644 index b35a5aef4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26388.png b/front/public/images/small/gregtech/gt.metaitem.02/26388.png deleted file mode 100644 index fa7c2885e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26389.png b/front/public/images/small/gregtech/gt.metaitem.02/26389.png deleted file mode 100644 index 43fcda6df5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26390.png b/front/public/images/small/gregtech/gt.metaitem.02/26390.png deleted file mode 100644 index 956df2d8d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26391.png b/front/public/images/small/gregtech/gt.metaitem.02/26391.png deleted file mode 100644 index cb35e6a09a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26392.png b/front/public/images/small/gregtech/gt.metaitem.02/26392.png deleted file mode 100644 index 14aaac5a83..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26393.png b/front/public/images/small/gregtech/gt.metaitem.02/26393.png deleted file mode 100644 index b76586b2bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26394.png b/front/public/images/small/gregtech/gt.metaitem.02/26394.png deleted file mode 100644 index de68b121c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26397.png b/front/public/images/small/gregtech/gt.metaitem.02/26397.png deleted file mode 100644 index 4a7dcf19dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26398.png b/front/public/images/small/gregtech/gt.metaitem.02/26398.png deleted file mode 100644 index 75a0112151..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26399.png b/front/public/images/small/gregtech/gt.metaitem.02/26399.png deleted file mode 100644 index 37d0cf6d73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26400.png b/front/public/images/small/gregtech/gt.metaitem.02/26400.png deleted file mode 100644 index 9f0ab8a147..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26401.png b/front/public/images/small/gregtech/gt.metaitem.02/26401.png deleted file mode 100644 index 7145b6233b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26402.png b/front/public/images/small/gregtech/gt.metaitem.02/26402.png deleted file mode 100644 index 644d4af822..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26403.png b/front/public/images/small/gregtech/gt.metaitem.02/26403.png deleted file mode 100644 index 1740941663..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26404.png b/front/public/images/small/gregtech/gt.metaitem.02/26404.png deleted file mode 100644 index 833e34e878..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26405.png b/front/public/images/small/gregtech/gt.metaitem.02/26405.png deleted file mode 100644 index 58815e3a26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26406.png b/front/public/images/small/gregtech/gt.metaitem.02/26406.png deleted file mode 100644 index 195a55f755..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26407.png b/front/public/images/small/gregtech/gt.metaitem.02/26407.png deleted file mode 100644 index 9913a622b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26408.png b/front/public/images/small/gregtech/gt.metaitem.02/26408.png deleted file mode 100644 index 7575f69635..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26470.png b/front/public/images/small/gregtech/gt.metaitem.02/26470.png deleted file mode 100644 index af155e3ab6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26471.png b/front/public/images/small/gregtech/gt.metaitem.02/26471.png deleted file mode 100644 index da40bfc3a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26472.png b/front/public/images/small/gregtech/gt.metaitem.02/26472.png deleted file mode 100644 index fa7c2885e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26473.png b/front/public/images/small/gregtech/gt.metaitem.02/26473.png deleted file mode 100644 index 602b18bb63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26485.png b/front/public/images/small/gregtech/gt.metaitem.02/26485.png deleted file mode 100644 index fba18cc019..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26488.png b/front/public/images/small/gregtech/gt.metaitem.02/26488.png deleted file mode 100644 index 61bd4a7dc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26489.png b/front/public/images/small/gregtech/gt.metaitem.02/26489.png deleted file mode 100644 index 6f15a367fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26500.png b/front/public/images/small/gregtech/gt.metaitem.02/26500.png deleted file mode 100644 index 12438a8d63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26501.png b/front/public/images/small/gregtech/gt.metaitem.02/26501.png deleted file mode 100644 index bc8552c34e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26502.png b/front/public/images/small/gregtech/gt.metaitem.02/26502.png deleted file mode 100644 index 22fec7c0cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26503.png b/front/public/images/small/gregtech/gt.metaitem.02/26503.png deleted file mode 100644 index f35ece692f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26504.png b/front/public/images/small/gregtech/gt.metaitem.02/26504.png deleted file mode 100644 index 9fb198f65f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26505.png b/front/public/images/small/gregtech/gt.metaitem.02/26505.png deleted file mode 100644 index bae07d930f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26506.png b/front/public/images/small/gregtech/gt.metaitem.02/26506.png deleted file mode 100644 index fbff413289..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26506.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26507.png b/front/public/images/small/gregtech/gt.metaitem.02/26507.png deleted file mode 100644 index 9f0bd3e01f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26508.png b/front/public/images/small/gregtech/gt.metaitem.02/26508.png deleted file mode 100644 index 0ed57639b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26509.png b/front/public/images/small/gregtech/gt.metaitem.02/26509.png deleted file mode 100644 index bacd32187c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26510.png b/front/public/images/small/gregtech/gt.metaitem.02/26510.png deleted file mode 100644 index b44d5ef37c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26511.png b/front/public/images/small/gregtech/gt.metaitem.02/26511.png deleted file mode 100644 index c0b0669132..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26513.png b/front/public/images/small/gregtech/gt.metaitem.02/26513.png deleted file mode 100644 index b44d5ef37c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26514.png b/front/public/images/small/gregtech/gt.metaitem.02/26514.png deleted file mode 100644 index 9f0bd3e01f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26516.png b/front/public/images/small/gregtech/gt.metaitem.02/26516.png deleted file mode 100644 index 38819ac436..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26516.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26521.png b/front/public/images/small/gregtech/gt.metaitem.02/26521.png deleted file mode 100644 index d221d9e8ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26522.png b/front/public/images/small/gregtech/gt.metaitem.02/26522.png deleted file mode 100644 index d14579ed7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26527.png b/front/public/images/small/gregtech/gt.metaitem.02/26527.png deleted file mode 100644 index c0b0669132..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26528.png b/front/public/images/small/gregtech/gt.metaitem.02/26528.png deleted file mode 100644 index 1f63604f88..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26529.png b/front/public/images/small/gregtech/gt.metaitem.02/26529.png deleted file mode 100644 index b9568d3ae4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26537.png b/front/public/images/small/gregtech/gt.metaitem.02/26537.png deleted file mode 100644 index 5d480a9da0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26537.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26540.png b/front/public/images/small/gregtech/gt.metaitem.02/26540.png deleted file mode 100644 index d221d9e8ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26541.png b/front/public/images/small/gregtech/gt.metaitem.02/26541.png deleted file mode 100644 index af13bb987e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26542.png b/front/public/images/small/gregtech/gt.metaitem.02/26542.png deleted file mode 100644 index b6098b4de3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26543.png b/front/public/images/small/gregtech/gt.metaitem.02/26543.png deleted file mode 100644 index 75c785baf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26544.png b/front/public/images/small/gregtech/gt.metaitem.02/26544.png deleted file mode 100644 index 8059e85889..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26545.png b/front/public/images/small/gregtech/gt.metaitem.02/26545.png deleted file mode 100644 index 9796aea088..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26576.png b/front/public/images/small/gregtech/gt.metaitem.02/26576.png deleted file mode 100644 index f2c41906ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26583.png b/front/public/images/small/gregtech/gt.metaitem.02/26583.png deleted file mode 100644 index 942d1f008c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26585.png b/front/public/images/small/gregtech/gt.metaitem.02/26585.png deleted file mode 100644 index 48574ba4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26586.png b/front/public/images/small/gregtech/gt.metaitem.02/26586.png deleted file mode 100644 index 6a3dd22883..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26588.png b/front/public/images/small/gregtech/gt.metaitem.02/26588.png deleted file mode 100644 index 0a8395d29e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26599.png b/front/public/images/small/gregtech/gt.metaitem.02/26599.png deleted file mode 100644 index 836004c579..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26610.png b/front/public/images/small/gregtech/gt.metaitem.02/26610.png deleted file mode 100644 index d1a4d7b093..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26613.png b/front/public/images/small/gregtech/gt.metaitem.02/26613.png deleted file mode 100644 index 19d2ecd863..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26631.png b/front/public/images/small/gregtech/gt.metaitem.02/26631.png deleted file mode 100644 index 559fd9752a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26635.png b/front/public/images/small/gregtech/gt.metaitem.02/26635.png deleted file mode 100644 index 19de6f1f41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26636.png b/front/public/images/small/gregtech/gt.metaitem.02/26636.png deleted file mode 100644 index 34b1759929..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26649.png b/front/public/images/small/gregtech/gt.metaitem.02/26649.png deleted file mode 100644 index 46446cfc8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26770.png b/front/public/images/small/gregtech/gt.metaitem.02/26770.png deleted file mode 100644 index e67bb6022d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26801.png b/front/public/images/small/gregtech/gt.metaitem.02/26801.png deleted file mode 100644 index 34b812ac66..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26801.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26802.png b/front/public/images/small/gregtech/gt.metaitem.02/26802.png deleted file mode 100644 index d3337ccaf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26802.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26809.png b/front/public/images/small/gregtech/gt.metaitem.02/26809.png deleted file mode 100644 index 803f328887..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26819.png b/front/public/images/small/gregtech/gt.metaitem.02/26819.png deleted file mode 100644 index 82a6a3bced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26819.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26829.png b/front/public/images/small/gregtech/gt.metaitem.02/26829.png deleted file mode 100644 index c514577ef9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26844.png b/front/public/images/small/gregtech/gt.metaitem.02/26844.png deleted file mode 100644 index 2cfadfb213..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26844.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26845.png b/front/public/images/small/gregtech/gt.metaitem.02/26845.png deleted file mode 100644 index 20e9f4f448..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26845.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26849.png b/front/public/images/small/gregtech/gt.metaitem.02/26849.png deleted file mode 100644 index 934a790257..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26850.png b/front/public/images/small/gregtech/gt.metaitem.02/26850.png deleted file mode 100644 index ceeb11846c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26854.png b/front/public/images/small/gregtech/gt.metaitem.02/26854.png deleted file mode 100644 index 82a6a3bced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26854.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26865.png b/front/public/images/small/gregtech/gt.metaitem.02/26865.png deleted file mode 100644 index 82a6a3bced..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26865.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26868.png b/front/public/images/small/gregtech/gt.metaitem.02/26868.png deleted file mode 100644 index af669aabf7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26874.png b/front/public/images/small/gregtech/gt.metaitem.02/26874.png deleted file mode 100644 index 20e9f4f448..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26880.png b/front/public/images/small/gregtech/gt.metaitem.02/26880.png deleted file mode 100644 index 6a3dd22883..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26884.png b/front/public/images/small/gregtech/gt.metaitem.02/26884.png deleted file mode 100644 index 9fcc7ab06d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26889.png b/front/public/images/small/gregtech/gt.metaitem.02/26889.png deleted file mode 100644 index 4e5dc73fe5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26912.png b/front/public/images/small/gregtech/gt.metaitem.02/26912.png deleted file mode 100644 index 95920499bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26913.png b/front/public/images/small/gregtech/gt.metaitem.02/26913.png deleted file mode 100644 index 1b71171276..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26951.png b/front/public/images/small/gregtech/gt.metaitem.02/26951.png deleted file mode 100644 index 2ce4c13d61..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26952.png b/front/public/images/small/gregtech/gt.metaitem.02/26952.png deleted file mode 100644 index ecb1f145fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26966.png b/front/public/images/small/gregtech/gt.metaitem.02/26966.png deleted file mode 100644 index e999e9023c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26970.png b/front/public/images/small/gregtech/gt.metaitem.02/26970.png deleted file mode 100644 index 2e5a2ccca9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26975.png b/front/public/images/small/gregtech/gt.metaitem.02/26975.png deleted file mode 100644 index e752d173c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26976.png b/front/public/images/small/gregtech/gt.metaitem.02/26976.png deleted file mode 100644 index 90b38a917d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26977.png b/front/public/images/small/gregtech/gt.metaitem.02/26977.png deleted file mode 100644 index 8bc437dab4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26978.png b/front/public/images/small/gregtech/gt.metaitem.02/26978.png deleted file mode 100644 index c739e3e65d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26982.png b/front/public/images/small/gregtech/gt.metaitem.02/26982.png deleted file mode 100644 index 5baefe8edd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/26984.png b/front/public/images/small/gregtech/gt.metaitem.02/26984.png deleted file mode 100644 index de68b121c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/26984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27208.png b/front/public/images/small/gregtech/gt.metaitem.02/27208.png deleted file mode 100644 index fcec41dcee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27209.png b/front/public/images/small/gregtech/gt.metaitem.02/27209.png deleted file mode 100644 index 9cea831c89..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27500.png b/front/public/images/small/gregtech/gt.metaitem.02/27500.png deleted file mode 100644 index fb4691ca91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27501.png b/front/public/images/small/gregtech/gt.metaitem.02/27501.png deleted file mode 100644 index d72128746d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27502.png b/front/public/images/small/gregtech/gt.metaitem.02/27502.png deleted file mode 100644 index ca52603988..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27503.png b/front/public/images/small/gregtech/gt.metaitem.02/27503.png deleted file mode 100644 index 572ecd25c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27504.png b/front/public/images/small/gregtech/gt.metaitem.02/27504.png deleted file mode 100644 index 877d1c4f4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27505.png b/front/public/images/small/gregtech/gt.metaitem.02/27505.png deleted file mode 100644 index 343fe7004e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27507.png b/front/public/images/small/gregtech/gt.metaitem.02/27507.png deleted file mode 100644 index 11937dfcfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27508.png b/front/public/images/small/gregtech/gt.metaitem.02/27508.png deleted file mode 100644 index 8b9dc6d1af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27509.png b/front/public/images/small/gregtech/gt.metaitem.02/27509.png deleted file mode 100644 index 75509cd3c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27510.png b/front/public/images/small/gregtech/gt.metaitem.02/27510.png deleted file mode 100644 index 7712256a58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27511.png b/front/public/images/small/gregtech/gt.metaitem.02/27511.png deleted file mode 100644 index fa5345a97a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27512.png b/front/public/images/small/gregtech/gt.metaitem.02/27512.png deleted file mode 100644 index ca52603988..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27513.png b/front/public/images/small/gregtech/gt.metaitem.02/27513.png deleted file mode 100644 index 7712256a58..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27514.png b/front/public/images/small/gregtech/gt.metaitem.02/27514.png deleted file mode 100644 index 11937dfcfc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27527.png b/front/public/images/small/gregtech/gt.metaitem.02/27527.png deleted file mode 100644 index fa5345a97a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27528.png b/front/public/images/small/gregtech/gt.metaitem.02/27528.png deleted file mode 100644 index b1d6b76f97..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/27890.png b/front/public/images/small/gregtech/gt.metaitem.02/27890.png deleted file mode 100644 index fe26a14d9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/27890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28208.png b/front/public/images/small/gregtech/gt.metaitem.02/28208.png deleted file mode 100644 index d5ad7d5c3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28209.png b/front/public/images/small/gregtech/gt.metaitem.02/28209.png deleted file mode 100644 index c06de3c848..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28500.png b/front/public/images/small/gregtech/gt.metaitem.02/28500.png deleted file mode 100644 index 677414b227..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28501.png b/front/public/images/small/gregtech/gt.metaitem.02/28501.png deleted file mode 100644 index 2733d2a8ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28502.png b/front/public/images/small/gregtech/gt.metaitem.02/28502.png deleted file mode 100644 index 6a27bb6d57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28503.png b/front/public/images/small/gregtech/gt.metaitem.02/28503.png deleted file mode 100644 index 88cd56e4d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28504.png b/front/public/images/small/gregtech/gt.metaitem.02/28504.png deleted file mode 100644 index 85424d073a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28505.png b/front/public/images/small/gregtech/gt.metaitem.02/28505.png deleted file mode 100644 index 444f97cd70..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28507.png b/front/public/images/small/gregtech/gt.metaitem.02/28507.png deleted file mode 100644 index 57af68c8c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28508.png b/front/public/images/small/gregtech/gt.metaitem.02/28508.png deleted file mode 100644 index 53ce9c5823..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28509.png b/front/public/images/small/gregtech/gt.metaitem.02/28509.png deleted file mode 100644 index 84afdde4dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28510.png b/front/public/images/small/gregtech/gt.metaitem.02/28510.png deleted file mode 100644 index 4ccef6ee5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28511.png b/front/public/images/small/gregtech/gt.metaitem.02/28511.png deleted file mode 100644 index 49dac58a6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28512.png b/front/public/images/small/gregtech/gt.metaitem.02/28512.png deleted file mode 100644 index 6a27bb6d57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28513.png b/front/public/images/small/gregtech/gt.metaitem.02/28513.png deleted file mode 100644 index 4ccef6ee5a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28514.png b/front/public/images/small/gregtech/gt.metaitem.02/28514.png deleted file mode 100644 index 57af68c8c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28527.png b/front/public/images/small/gregtech/gt.metaitem.02/28527.png deleted file mode 100644 index 49dac58a6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28528.png b/front/public/images/small/gregtech/gt.metaitem.02/28528.png deleted file mode 100644 index a45ac84de6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/28890.png b/front/public/images/small/gregtech/gt.metaitem.02/28890.png deleted file mode 100644 index 60c26172c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/28890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29208.png b/front/public/images/small/gregtech/gt.metaitem.02/29208.png deleted file mode 100644 index 0e11471201..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29209.png b/front/public/images/small/gregtech/gt.metaitem.02/29209.png deleted file mode 100644 index e2a9c976ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29500.png b/front/public/images/small/gregtech/gt.metaitem.02/29500.png deleted file mode 100644 index 352fc70b1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29501.png b/front/public/images/small/gregtech/gt.metaitem.02/29501.png deleted file mode 100644 index 543f8d8d10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29502.png b/front/public/images/small/gregtech/gt.metaitem.02/29502.png deleted file mode 100644 index 8649d939b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29503.png b/front/public/images/small/gregtech/gt.metaitem.02/29503.png deleted file mode 100644 index aa46986527..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29504.png b/front/public/images/small/gregtech/gt.metaitem.02/29504.png deleted file mode 100644 index 138ac8d885..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29505.png b/front/public/images/small/gregtech/gt.metaitem.02/29505.png deleted file mode 100644 index ef8372e141..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29507.png b/front/public/images/small/gregtech/gt.metaitem.02/29507.png deleted file mode 100644 index 0ad83de3c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29508.png b/front/public/images/small/gregtech/gt.metaitem.02/29508.png deleted file mode 100644 index 57746ece76..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29509.png b/front/public/images/small/gregtech/gt.metaitem.02/29509.png deleted file mode 100644 index 307a497419..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29510.png b/front/public/images/small/gregtech/gt.metaitem.02/29510.png deleted file mode 100644 index 12fca8716c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29511.png b/front/public/images/small/gregtech/gt.metaitem.02/29511.png deleted file mode 100644 index b68427a23c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29512.png b/front/public/images/small/gregtech/gt.metaitem.02/29512.png deleted file mode 100644 index 8649d939b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29513.png b/front/public/images/small/gregtech/gt.metaitem.02/29513.png deleted file mode 100644 index 12fca8716c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29514.png b/front/public/images/small/gregtech/gt.metaitem.02/29514.png deleted file mode 100644 index 0ad83de3c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29527.png b/front/public/images/small/gregtech/gt.metaitem.02/29527.png deleted file mode 100644 index b68427a23c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29528.png b/front/public/images/small/gregtech/gt.metaitem.02/29528.png deleted file mode 100644 index 55c2890656..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/29890.png b/front/public/images/small/gregtech/gt.metaitem.02/29890.png deleted file mode 100644 index 8f057341c2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/29890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30208.png b/front/public/images/small/gregtech/gt.metaitem.02/30208.png deleted file mode 100644 index 82f8d037a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30209.png b/front/public/images/small/gregtech/gt.metaitem.02/30209.png deleted file mode 100644 index 94cd0abfd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30500.png b/front/public/images/small/gregtech/gt.metaitem.02/30500.png deleted file mode 100644 index e65b30967c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30501.png b/front/public/images/small/gregtech/gt.metaitem.02/30501.png deleted file mode 100644 index 904b61d0dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30502.png b/front/public/images/small/gregtech/gt.metaitem.02/30502.png deleted file mode 100644 index e4f85017a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30503.png b/front/public/images/small/gregtech/gt.metaitem.02/30503.png deleted file mode 100644 index 0705d7987d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30504.png b/front/public/images/small/gregtech/gt.metaitem.02/30504.png deleted file mode 100644 index 431d182848..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30505.png b/front/public/images/small/gregtech/gt.metaitem.02/30505.png deleted file mode 100644 index 8d0e28d0a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30507.png b/front/public/images/small/gregtech/gt.metaitem.02/30507.png deleted file mode 100644 index 23531d235a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30507.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30508.png b/front/public/images/small/gregtech/gt.metaitem.02/30508.png deleted file mode 100644 index d8d4798c0b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30508.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30509.png b/front/public/images/small/gregtech/gt.metaitem.02/30509.png deleted file mode 100644 index 3263acb3ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30509.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30510.png b/front/public/images/small/gregtech/gt.metaitem.02/30510.png deleted file mode 100644 index 31eff7de55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30511.png b/front/public/images/small/gregtech/gt.metaitem.02/30511.png deleted file mode 100644 index d3bb20f5a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30512.png b/front/public/images/small/gregtech/gt.metaitem.02/30512.png deleted file mode 100644 index e4f85017a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30513.png b/front/public/images/small/gregtech/gt.metaitem.02/30513.png deleted file mode 100644 index 31eff7de55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30514.png b/front/public/images/small/gregtech/gt.metaitem.02/30514.png deleted file mode 100644 index 23531d235a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30514.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30527.png b/front/public/images/small/gregtech/gt.metaitem.02/30527.png deleted file mode 100644 index d3bb20f5a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30528.png b/front/public/images/small/gregtech/gt.metaitem.02/30528.png deleted file mode 100644 index 17e5553916..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/30890.png b/front/public/images/small/gregtech/gt.metaitem.02/30890.png deleted file mode 100644 index f56371ed10..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/30890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31010.png b/front/public/images/small/gregtech/gt.metaitem.02/31010.png deleted file mode 100644 index 146b54273e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31019.png b/front/public/images/small/gregtech/gt.metaitem.02/31019.png deleted file mode 100644 index fea8ef5fa3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31019.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31028.png b/front/public/images/small/gregtech/gt.metaitem.02/31028.png deleted file mode 100644 index e3d0bad06e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31028.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31030.png b/front/public/images/small/gregtech/gt.metaitem.02/31030.png deleted file mode 100644 index f6deca4cf5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31032.png b/front/public/images/small/gregtech/gt.metaitem.02/31032.png deleted file mode 100644 index 7fee02f1c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31033.png b/front/public/images/small/gregtech/gt.metaitem.02/31033.png deleted file mode 100644 index 6b78daf809..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31034.png b/front/public/images/small/gregtech/gt.metaitem.02/31034.png deleted file mode 100644 index 136e066634..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31035.png b/front/public/images/small/gregtech/gt.metaitem.02/31035.png deleted file mode 100644 index 8a457d5f69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31052.png b/front/public/images/small/gregtech/gt.metaitem.02/31052.png deleted file mode 100644 index 1c3b50ce4d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31054.png b/front/public/images/small/gregtech/gt.metaitem.02/31054.png deleted file mode 100644 index acfdf33d11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31057.png b/front/public/images/small/gregtech/gt.metaitem.02/31057.png deleted file mode 100644 index 0dc4c6c4b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31067.png b/front/public/images/small/gregtech/gt.metaitem.02/31067.png deleted file mode 100644 index bf7c6edf48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31067.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31081.png b/front/public/images/small/gregtech/gt.metaitem.02/31081.png deleted file mode 100644 index 62877db4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31081.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31083.png b/front/public/images/small/gregtech/gt.metaitem.02/31083.png deleted file mode 100644 index 9e64c8099d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31084.png b/front/public/images/small/gregtech/gt.metaitem.02/31084.png deleted file mode 100644 index 671e9f6c9f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31085.png b/front/public/images/small/gregtech/gt.metaitem.02/31085.png deleted file mode 100644 index 32f911ad1b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31086.png b/front/public/images/small/gregtech/gt.metaitem.02/31086.png deleted file mode 100644 index 82a38c007b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31089.png b/front/public/images/small/gregtech/gt.metaitem.02/31089.png deleted file mode 100644 index 4234836e01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31090.png b/front/public/images/small/gregtech/gt.metaitem.02/31090.png deleted file mode 100644 index 8b0cac0210..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31111.png b/front/public/images/small/gregtech/gt.metaitem.02/31111.png deleted file mode 100644 index 6d3b8e18f6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31112.png b/front/public/images/small/gregtech/gt.metaitem.02/31112.png deleted file mode 100644 index 32f1aaaa98..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31129.png b/front/public/images/small/gregtech/gt.metaitem.02/31129.png deleted file mode 100644 index aa9cd85f2d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31139.png b/front/public/images/small/gregtech/gt.metaitem.02/31139.png deleted file mode 100644 index b34c6ba369..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31141.png b/front/public/images/small/gregtech/gt.metaitem.02/31141.png deleted file mode 100644 index 230695c4a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31143.png b/front/public/images/small/gregtech/gt.metaitem.02/31143.png deleted file mode 100644 index b8c4f9e49e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31201.png b/front/public/images/small/gregtech/gt.metaitem.02/31201.png deleted file mode 100644 index c85879d622..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31202.png b/front/public/images/small/gregtech/gt.metaitem.02/31202.png deleted file mode 100644 index 38352c6005..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31203.png b/front/public/images/small/gregtech/gt.metaitem.02/31203.png deleted file mode 100644 index 9c52f4b326..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31204.png b/front/public/images/small/gregtech/gt.metaitem.02/31204.png deleted file mode 100644 index c7d4fa1e35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31205.png b/front/public/images/small/gregtech/gt.metaitem.02/31205.png deleted file mode 100644 index 5bd93c8cd1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31206.png b/front/public/images/small/gregtech/gt.metaitem.02/31206.png deleted file mode 100644 index 50ffac1ec0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31207.png b/front/public/images/small/gregtech/gt.metaitem.02/31207.png deleted file mode 100644 index 411efe0887..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31299.png b/front/public/images/small/gregtech/gt.metaitem.02/31299.png deleted file mode 100644 index e61b2d0893..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31299.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31300.png b/front/public/images/small/gregtech/gt.metaitem.02/31300.png deleted file mode 100644 index 0c2b184b3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31301.png b/front/public/images/small/gregtech/gt.metaitem.02/31301.png deleted file mode 100644 index 59de619e2a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31302.png b/front/public/images/small/gregtech/gt.metaitem.02/31302.png deleted file mode 100644 index abe5a0275f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31303.png b/front/public/images/small/gregtech/gt.metaitem.02/31303.png deleted file mode 100644 index 3625074776..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31304.png b/front/public/images/small/gregtech/gt.metaitem.02/31304.png deleted file mode 100644 index 566f9e5b67..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31305.png b/front/public/images/small/gregtech/gt.metaitem.02/31305.png deleted file mode 100644 index d4ebdf5131..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31306.png b/front/public/images/small/gregtech/gt.metaitem.02/31306.png deleted file mode 100644 index 4c0d8b78c3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31313.png b/front/public/images/small/gregtech/gt.metaitem.02/31313.png deleted file mode 100644 index 64f475726e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31316.png b/front/public/images/small/gregtech/gt.metaitem.02/31316.png deleted file mode 100644 index abda3596ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31317.png b/front/public/images/small/gregtech/gt.metaitem.02/31317.png deleted file mode 100644 index 932c00a805..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31318.png b/front/public/images/small/gregtech/gt.metaitem.02/31318.png deleted file mode 100644 index 4e70797d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31319.png b/front/public/images/small/gregtech/gt.metaitem.02/31319.png deleted file mode 100644 index 46336f358d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31320.png b/front/public/images/small/gregtech/gt.metaitem.02/31320.png deleted file mode 100644 index b4a106f7e4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31321.png b/front/public/images/small/gregtech/gt.metaitem.02/31321.png deleted file mode 100644 index 0ed3b971b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31323.png b/front/public/images/small/gregtech/gt.metaitem.02/31323.png deleted file mode 100644 index 8a229c3a40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31324.png b/front/public/images/small/gregtech/gt.metaitem.02/31324.png deleted file mode 100644 index 62877db4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31325.png b/front/public/images/small/gregtech/gt.metaitem.02/31325.png deleted file mode 100644 index b182315b80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31330.png b/front/public/images/small/gregtech/gt.metaitem.02/31330.png deleted file mode 100644 index 9ab418f0d9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31334.png b/front/public/images/small/gregtech/gt.metaitem.02/31334.png deleted file mode 100644 index bf7c6edf48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31335.png b/front/public/images/small/gregtech/gt.metaitem.02/31335.png deleted file mode 100644 index 8e62419167..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31338.png b/front/public/images/small/gregtech/gt.metaitem.02/31338.png deleted file mode 100644 index 037563f13c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31339.png b/front/public/images/small/gregtech/gt.metaitem.02/31339.png deleted file mode 100644 index 521cbbe2f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31339.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31343.png b/front/public/images/small/gregtech/gt.metaitem.02/31343.png deleted file mode 100644 index 30a63b7db7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31344.png b/front/public/images/small/gregtech/gt.metaitem.02/31344.png deleted file mode 100644 index e9ab1b3937..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31345.png b/front/public/images/small/gregtech/gt.metaitem.02/31345.png deleted file mode 100644 index 7b55c6d6e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31346.png b/front/public/images/small/gregtech/gt.metaitem.02/31346.png deleted file mode 100644 index 101670470b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31348.png b/front/public/images/small/gregtech/gt.metaitem.02/31348.png deleted file mode 100644 index 631b7fe7b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31349.png b/front/public/images/small/gregtech/gt.metaitem.02/31349.png deleted file mode 100644 index 53485ab2bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31350.png b/front/public/images/small/gregtech/gt.metaitem.02/31350.png deleted file mode 100644 index debf7c67fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31351.png b/front/public/images/small/gregtech/gt.metaitem.02/31351.png deleted file mode 100644 index be5deee0f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31352.png b/front/public/images/small/gregtech/gt.metaitem.02/31352.png deleted file mode 100644 index ef7c92ece8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31353.png b/front/public/images/small/gregtech/gt.metaitem.02/31353.png deleted file mode 100644 index f511f84d91..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31354.png b/front/public/images/small/gregtech/gt.metaitem.02/31354.png deleted file mode 100644 index 1e20f9c304..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31355.png b/front/public/images/small/gregtech/gt.metaitem.02/31355.png deleted file mode 100644 index 0afbbfd513..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31356.png b/front/public/images/small/gregtech/gt.metaitem.02/31356.png deleted file mode 100644 index 1ed3176185..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31357.png b/front/public/images/small/gregtech/gt.metaitem.02/31357.png deleted file mode 100644 index 896efc4aa0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31362.png b/front/public/images/small/gregtech/gt.metaitem.02/31362.png deleted file mode 100644 index 5db5a0d4dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31363.png b/front/public/images/small/gregtech/gt.metaitem.02/31363.png deleted file mode 100644 index 7fee02f1c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31364.png b/front/public/images/small/gregtech/gt.metaitem.02/31364.png deleted file mode 100644 index 324cfefe80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31365.png b/front/public/images/small/gregtech/gt.metaitem.02/31365.png deleted file mode 100644 index 0a2f6d1fc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31366.png b/front/public/images/small/gregtech/gt.metaitem.02/31366.png deleted file mode 100644 index 8eabeccfc5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31367.png b/front/public/images/small/gregtech/gt.metaitem.02/31367.png deleted file mode 100644 index aa567bd62f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31368.png b/front/public/images/small/gregtech/gt.metaitem.02/31368.png deleted file mode 100644 index a15c0e1451..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31369.png b/front/public/images/small/gregtech/gt.metaitem.02/31369.png deleted file mode 100644 index 0a536273e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31370.png b/front/public/images/small/gregtech/gt.metaitem.02/31370.png deleted file mode 100644 index 0be61232cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31371.png b/front/public/images/small/gregtech/gt.metaitem.02/31371.png deleted file mode 100644 index ab8fadd720..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31372.png b/front/public/images/small/gregtech/gt.metaitem.02/31372.png deleted file mode 100644 index 2a61b23459..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31373.png b/front/public/images/small/gregtech/gt.metaitem.02/31373.png deleted file mode 100644 index ef7382c7fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31374.png b/front/public/images/small/gregtech/gt.metaitem.02/31374.png deleted file mode 100644 index 22b50f9120..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31378.png b/front/public/images/small/gregtech/gt.metaitem.02/31378.png deleted file mode 100644 index 82ee6a6027..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31379.png b/front/public/images/small/gregtech/gt.metaitem.02/31379.png deleted file mode 100644 index 5a78773234..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31380.png b/front/public/images/small/gregtech/gt.metaitem.02/31380.png deleted file mode 100644 index 4bdc08bfef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31381.png b/front/public/images/small/gregtech/gt.metaitem.02/31381.png deleted file mode 100644 index a1d198ea8e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31382.png b/front/public/images/small/gregtech/gt.metaitem.02/31382.png deleted file mode 100644 index efd790ff2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31383.png b/front/public/images/small/gregtech/gt.metaitem.02/31383.png deleted file mode 100644 index c9cfbe8baa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31384.png b/front/public/images/small/gregtech/gt.metaitem.02/31384.png deleted file mode 100644 index d48c22362d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31385.png b/front/public/images/small/gregtech/gt.metaitem.02/31385.png deleted file mode 100644 index a19b50ed3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31386.png b/front/public/images/small/gregtech/gt.metaitem.02/31386.png deleted file mode 100644 index 60b85c3323..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31387.png b/front/public/images/small/gregtech/gt.metaitem.02/31387.png deleted file mode 100644 index 13507c6595..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31388.png b/front/public/images/small/gregtech/gt.metaitem.02/31388.png deleted file mode 100644 index 62877db4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31389.png b/front/public/images/small/gregtech/gt.metaitem.02/31389.png deleted file mode 100644 index caa1059a0d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31390.png b/front/public/images/small/gregtech/gt.metaitem.02/31390.png deleted file mode 100644 index bdd438ac6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31391.png b/front/public/images/small/gregtech/gt.metaitem.02/31391.png deleted file mode 100644 index 7693643a11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31392.png b/front/public/images/small/gregtech/gt.metaitem.02/31392.png deleted file mode 100644 index 7aec496f17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31393.png b/front/public/images/small/gregtech/gt.metaitem.02/31393.png deleted file mode 100644 index 3f3834a87a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31394.png b/front/public/images/small/gregtech/gt.metaitem.02/31394.png deleted file mode 100644 index 46336f358d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31397.png b/front/public/images/small/gregtech/gt.metaitem.02/31397.png deleted file mode 100644 index 04cf73f125..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31398.png b/front/public/images/small/gregtech/gt.metaitem.02/31398.png deleted file mode 100644 index 3dc1c068ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31399.png b/front/public/images/small/gregtech/gt.metaitem.02/31399.png deleted file mode 100644 index a8a7da3e24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31400.png b/front/public/images/small/gregtech/gt.metaitem.02/31400.png deleted file mode 100644 index 083947ad43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31401.png b/front/public/images/small/gregtech/gt.metaitem.02/31401.png deleted file mode 100644 index 9c93b9f1da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31402.png b/front/public/images/small/gregtech/gt.metaitem.02/31402.png deleted file mode 100644 index a6179aec3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31403.png b/front/public/images/small/gregtech/gt.metaitem.02/31403.png deleted file mode 100644 index 70af3032bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31404.png b/front/public/images/small/gregtech/gt.metaitem.02/31404.png deleted file mode 100644 index 66d6bca28b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31405.png b/front/public/images/small/gregtech/gt.metaitem.02/31405.png deleted file mode 100644 index 914fcca5e9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31406.png b/front/public/images/small/gregtech/gt.metaitem.02/31406.png deleted file mode 100644 index 9f6018ef75..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31407.png b/front/public/images/small/gregtech/gt.metaitem.02/31407.png deleted file mode 100644 index 99ae876acb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31408.png b/front/public/images/small/gregtech/gt.metaitem.02/31408.png deleted file mode 100644 index 003637ac41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31470.png b/front/public/images/small/gregtech/gt.metaitem.02/31470.png deleted file mode 100644 index c4055fb337..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31471.png b/front/public/images/small/gregtech/gt.metaitem.02/31471.png deleted file mode 100644 index 0dc4c6c4b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31472.png b/front/public/images/small/gregtech/gt.metaitem.02/31472.png deleted file mode 100644 index 62877db4fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31473.png b/front/public/images/small/gregtech/gt.metaitem.02/31473.png deleted file mode 100644 index bf7c6edf48..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31485.png b/front/public/images/small/gregtech/gt.metaitem.02/31485.png deleted file mode 100644 index 99a91b872c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31488.png b/front/public/images/small/gregtech/gt.metaitem.02/31488.png deleted file mode 100644 index 721a5d334c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31489.png b/front/public/images/small/gregtech/gt.metaitem.02/31489.png deleted file mode 100644 index 80d572ba28..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31500.png b/front/public/images/small/gregtech/gt.metaitem.02/31500.png deleted file mode 100644 index 8a4dc63340..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31521.png b/front/public/images/small/gregtech/gt.metaitem.02/31521.png deleted file mode 100644 index 4e70797d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31529.png b/front/public/images/small/gregtech/gt.metaitem.02/31529.png deleted file mode 100644 index 0eb86c6d6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31540.png b/front/public/images/small/gregtech/gt.metaitem.02/31540.png deleted file mode 100644 index 4e70797d49..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31541.png b/front/public/images/small/gregtech/gt.metaitem.02/31541.png deleted file mode 100644 index 9a4db3dc8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31541.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31542.png b/front/public/images/small/gregtech/gt.metaitem.02/31542.png deleted file mode 100644 index e2b565884e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31542.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31543.png b/front/public/images/small/gregtech/gt.metaitem.02/31543.png deleted file mode 100644 index 6760333471..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31543.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31544.png b/front/public/images/small/gregtech/gt.metaitem.02/31544.png deleted file mode 100644 index a35e811578..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31544.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31545.png b/front/public/images/small/gregtech/gt.metaitem.02/31545.png deleted file mode 100644 index 7dba6ae34a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31545.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31576.png b/front/public/images/small/gregtech/gt.metaitem.02/31576.png deleted file mode 100644 index 8de6ca222e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31581.png b/front/public/images/small/gregtech/gt.metaitem.02/31581.png deleted file mode 100644 index 1f210a022f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31583.png b/front/public/images/small/gregtech/gt.metaitem.02/31583.png deleted file mode 100644 index 035933e717..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31585.png b/front/public/images/small/gregtech/gt.metaitem.02/31585.png deleted file mode 100644 index 3a8b157957..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31586.png b/front/public/images/small/gregtech/gt.metaitem.02/31586.png deleted file mode 100644 index 7bcca6e07f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31588.png b/front/public/images/small/gregtech/gt.metaitem.02/31588.png deleted file mode 100644 index 05591107b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31599.png b/front/public/images/small/gregtech/gt.metaitem.02/31599.png deleted file mode 100644 index 09ccfc97c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31610.png b/front/public/images/small/gregtech/gt.metaitem.02/31610.png deleted file mode 100644 index 4d2a857b54..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31613.png b/front/public/images/small/gregtech/gt.metaitem.02/31613.png deleted file mode 100644 index 0e2bce406c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31631.png b/front/public/images/small/gregtech/gt.metaitem.02/31631.png deleted file mode 100644 index 5b44d646f1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31635.png b/front/public/images/small/gregtech/gt.metaitem.02/31635.png deleted file mode 100644 index 27d2be33fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31636.png b/front/public/images/small/gregtech/gt.metaitem.02/31636.png deleted file mode 100644 index f2f016e621..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31649.png b/front/public/images/small/gregtech/gt.metaitem.02/31649.png deleted file mode 100644 index ffda7016e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31765.png b/front/public/images/small/gregtech/gt.metaitem.02/31765.png deleted file mode 100644 index 4e1a4bee64..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31770.png b/front/public/images/small/gregtech/gt.metaitem.02/31770.png deleted file mode 100644 index 03597dcd7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31809.png b/front/public/images/small/gregtech/gt.metaitem.02/31809.png deleted file mode 100644 index 6d6e535593..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31809.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31844.png b/front/public/images/small/gregtech/gt.metaitem.02/31844.png deleted file mode 100644 index 6918305752..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31844.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31845.png b/front/public/images/small/gregtech/gt.metaitem.02/31845.png deleted file mode 100644 index 5f77d93e2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31845.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31849.png b/front/public/images/small/gregtech/gt.metaitem.02/31849.png deleted file mode 100644 index 766319f735..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31849.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31850.png b/front/public/images/small/gregtech/gt.metaitem.02/31850.png deleted file mode 100644 index c562bf2456..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31850.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31854.png b/front/public/images/small/gregtech/gt.metaitem.02/31854.png deleted file mode 100644 index d4ebdf5131..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31854.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31868.png b/front/public/images/small/gregtech/gt.metaitem.02/31868.png deleted file mode 100644 index e6590d2c6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31874.png b/front/public/images/small/gregtech/gt.metaitem.02/31874.png deleted file mode 100644 index 7fee02f1c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31880.png b/front/public/images/small/gregtech/gt.metaitem.02/31880.png deleted file mode 100644 index 56cefe179b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31884.png b/front/public/images/small/gregtech/gt.metaitem.02/31884.png deleted file mode 100644 index b182315b80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31889.png b/front/public/images/small/gregtech/gt.metaitem.02/31889.png deleted file mode 100644 index f7e0a85a2c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31889.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31912.png b/front/public/images/small/gregtech/gt.metaitem.02/31912.png deleted file mode 100644 index c761e6661b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31913.png b/front/public/images/small/gregtech/gt.metaitem.02/31913.png deleted file mode 100644 index 631b7fe7b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31952.png b/front/public/images/small/gregtech/gt.metaitem.02/31952.png deleted file mode 100644 index 56ac8832b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31966.png b/front/public/images/small/gregtech/gt.metaitem.02/31966.png deleted file mode 100644 index af0413e4b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31970.png b/front/public/images/small/gregtech/gt.metaitem.02/31970.png deleted file mode 100644 index 5d87b99e09..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31975.png b/front/public/images/small/gregtech/gt.metaitem.02/31975.png deleted file mode 100644 index 826dcf2bcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31976.png b/front/public/images/small/gregtech/gt.metaitem.02/31976.png deleted file mode 100644 index 763b20e469..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31977.png b/front/public/images/small/gregtech/gt.metaitem.02/31977.png deleted file mode 100644 index 401b2c2f35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31978.png b/front/public/images/small/gregtech/gt.metaitem.02/31978.png deleted file mode 100644 index 132b41a320..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31982.png b/front/public/images/small/gregtech/gt.metaitem.02/31982.png deleted file mode 100644 index c668897861..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/31984.png b/front/public/images/small/gregtech/gt.metaitem.02/31984.png deleted file mode 100644 index 46336f358d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/31984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32000.png b/front/public/images/small/gregtech/gt.metaitem.02/32000.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32000.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32001.png b/front/public/images/small/gregtech/gt.metaitem.02/32001.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32001.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32002.png b/front/public/images/small/gregtech/gt.metaitem.02/32002.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32002.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32003.png b/front/public/images/small/gregtech/gt.metaitem.02/32003.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32003.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32004.png b/front/public/images/small/gregtech/gt.metaitem.02/32004.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32004.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32005.png b/front/public/images/small/gregtech/gt.metaitem.02/32005.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32005.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32006.png b/front/public/images/small/gregtech/gt.metaitem.02/32006.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32007.png b/front/public/images/small/gregtech/gt.metaitem.02/32007.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32008.png b/front/public/images/small/gregtech/gt.metaitem.02/32008.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32009.png b/front/public/images/small/gregtech/gt.metaitem.02/32009.png deleted file mode 100644 index 9a9f295921..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32009.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32010.png b/front/public/images/small/gregtech/gt.metaitem.02/32010.png deleted file mode 100644 index dcf86ab98e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32100.png b/front/public/images/small/gregtech/gt.metaitem.02/32100.png deleted file mode 100644 index ed42c87e41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32101.png b/front/public/images/small/gregtech/gt.metaitem.02/32101.png deleted file mode 100644 index 8d9b6debbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32102.png b/front/public/images/small/gregtech/gt.metaitem.02/32102.png deleted file mode 100644 index 38f5d4900b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32103.png b/front/public/images/small/gregtech/gt.metaitem.02/32103.png deleted file mode 100644 index 5f9763ddef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32104.png b/front/public/images/small/gregtech/gt.metaitem.02/32104.png deleted file mode 100644 index 0e52a0ec85..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32105.png b/front/public/images/small/gregtech/gt.metaitem.02/32105.png deleted file mode 100644 index d2cd7da94a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32105.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32106.png b/front/public/images/small/gregtech/gt.metaitem.02/32106.png deleted file mode 100644 index 615667731d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32107.png b/front/public/images/small/gregtech/gt.metaitem.02/32107.png deleted file mode 100644 index a5633b4744..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32107.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32109.png b/front/public/images/small/gregtech/gt.metaitem.02/32109.png deleted file mode 100644 index 351f46481a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32109.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32110.png b/front/public/images/small/gregtech/gt.metaitem.02/32110.png deleted file mode 100644 index 6ad74883a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32111.png b/front/public/images/small/gregtech/gt.metaitem.02/32111.png deleted file mode 100644 index 6ad74883a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32112.png b/front/public/images/small/gregtech/gt.metaitem.02/32112.png deleted file mode 100644 index 5f0598624d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32113.png b/front/public/images/small/gregtech/gt.metaitem.02/32113.png deleted file mode 100644 index c1b016ec40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32113.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32114.png b/front/public/images/small/gregtech/gt.metaitem.02/32114.png deleted file mode 100644 index 8b567c9133..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32115.png b/front/public/images/small/gregtech/gt.metaitem.02/32115.png deleted file mode 100644 index d9ad2e52ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32115.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32116.png b/front/public/images/small/gregtech/gt.metaitem.02/32116.png deleted file mode 100644 index dcda92263b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32116.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32117.png b/front/public/images/small/gregtech/gt.metaitem.02/32117.png deleted file mode 100644 index fed8a80c40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32117.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32118.png b/front/public/images/small/gregtech/gt.metaitem.02/32118.png deleted file mode 100644 index 141221bc8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32118.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32119.png b/front/public/images/small/gregtech/gt.metaitem.02/32119.png deleted file mode 100644 index ee3ba3a228..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32119.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32120.png b/front/public/images/small/gregtech/gt.metaitem.02/32120.png deleted file mode 100644 index 7e7460dbdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32120.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32121.png b/front/public/images/small/gregtech/gt.metaitem.02/32121.png deleted file mode 100644 index 7e7460dbdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32121.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32122.png b/front/public/images/small/gregtech/gt.metaitem.02/32122.png deleted file mode 100644 index 7e7460dbdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32122.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32123.png b/front/public/images/small/gregtech/gt.metaitem.02/32123.png deleted file mode 100644 index 7e7460dbdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32123.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32125.png b/front/public/images/small/gregtech/gt.metaitem.02/32125.png deleted file mode 100644 index c2868d203e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32125.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32126.png b/front/public/images/small/gregtech/gt.metaitem.02/32126.png deleted file mode 100644 index 4e0e0e7964..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32126.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32127.png b/front/public/images/small/gregtech/gt.metaitem.02/32127.png deleted file mode 100644 index 1a5e926bf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32127.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32128.png b/front/public/images/small/gregtech/gt.metaitem.02/32128.png deleted file mode 100644 index ed4d02042d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32128.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32129.png b/front/public/images/small/gregtech/gt.metaitem.02/32129.png deleted file mode 100644 index 1a5e926bf6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32130.png b/front/public/images/small/gregtech/gt.metaitem.02/32130.png deleted file mode 100644 index ed4d02042d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32131.png b/front/public/images/small/gregtech/gt.metaitem.02/32131.png deleted file mode 100644 index 64ba7afdee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32132.png b/front/public/images/small/gregtech/gt.metaitem.02/32132.png deleted file mode 100644 index 08da6c1dc3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32132.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32133.png b/front/public/images/small/gregtech/gt.metaitem.02/32133.png deleted file mode 100644 index f3bf3ce151..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32133.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32134.png b/front/public/images/small/gregtech/gt.metaitem.02/32134.png deleted file mode 100644 index 3bd2cfa35a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32135.png b/front/public/images/small/gregtech/gt.metaitem.02/32135.png deleted file mode 100644 index 3aee8841ab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32135.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32136.png b/front/public/images/small/gregtech/gt.metaitem.02/32136.png deleted file mode 100644 index 3cc791869d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32136.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32137.png b/front/public/images/small/gregtech/gt.metaitem.02/32137.png deleted file mode 100644 index a4e1b9787e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32137.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32200.png b/front/public/images/small/gregtech/gt.metaitem.02/32200.png deleted file mode 100644 index 9b109b951b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32201.png b/front/public/images/small/gregtech/gt.metaitem.02/32201.png deleted file mode 100644 index 748fa7e01a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32202.png b/front/public/images/small/gregtech/gt.metaitem.02/32202.png deleted file mode 100644 index f7cc654639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32203.png b/front/public/images/small/gregtech/gt.metaitem.02/32203.png deleted file mode 100644 index 311279ba24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32204.png b/front/public/images/small/gregtech/gt.metaitem.02/32204.png deleted file mode 100644 index ddeb5cd10f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32205.png b/front/public/images/small/gregtech/gt.metaitem.02/32205.png deleted file mode 100644 index a58f071721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32206.png b/front/public/images/small/gregtech/gt.metaitem.02/32206.png deleted file mode 100644 index 8ae8df59ee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32207.png b/front/public/images/small/gregtech/gt.metaitem.02/32207.png deleted file mode 100644 index 6ec98061da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32208.png b/front/public/images/small/gregtech/gt.metaitem.02/32208.png deleted file mode 100644 index 3263ebd4c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32209.png b/front/public/images/small/gregtech/gt.metaitem.02/32209.png deleted file mode 100644 index 60d4051c03..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32210.png b/front/public/images/small/gregtech/gt.metaitem.02/32210.png deleted file mode 100644 index fab256ebd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32210.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32211.png b/front/public/images/small/gregtech/gt.metaitem.02/32211.png deleted file mode 100644 index 06ed700756..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32211.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32212.png b/front/public/images/small/gregtech/gt.metaitem.02/32212.png deleted file mode 100644 index 292b2060a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32212.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32213.png b/front/public/images/small/gregtech/gt.metaitem.02/32213.png deleted file mode 100644 index fa66be416f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32213.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32214.png b/front/public/images/small/gregtech/gt.metaitem.02/32214.png deleted file mode 100644 index 145b216472..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32214.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32220.png b/front/public/images/small/gregtech/gt.metaitem.02/32220.png deleted file mode 100644 index 48b5d796bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32220.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32221.png b/front/public/images/small/gregtech/gt.metaitem.02/32221.png deleted file mode 100644 index c235603b78..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32221.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32222.png b/front/public/images/small/gregtech/gt.metaitem.02/32222.png deleted file mode 100644 index 84aceb6b8f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32222.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32223.png b/front/public/images/small/gregtech/gt.metaitem.02/32223.png deleted file mode 100644 index dea491bcce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32223.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32224.png b/front/public/images/small/gregtech/gt.metaitem.02/32224.png deleted file mode 100644 index 16e4805f86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32224.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32230.png b/front/public/images/small/gregtech/gt.metaitem.02/32230.png deleted file mode 100644 index cf5a259719..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32231.png b/front/public/images/small/gregtech/gt.metaitem.02/32231.png deleted file mode 100644 index b4dbd9bfa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32231.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32232.png b/front/public/images/small/gregtech/gt.metaitem.02/32232.png deleted file mode 100644 index 1761e19726..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32232.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32233.png b/front/public/images/small/gregtech/gt.metaitem.02/32233.png deleted file mode 100644 index 9d34a7c199..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32233.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32234.png b/front/public/images/small/gregtech/gt.metaitem.02/32234.png deleted file mode 100644 index 2167998cb5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32234.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32240.png b/front/public/images/small/gregtech/gt.metaitem.02/32240.png deleted file mode 100644 index bcfee269b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32240.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32241.png b/front/public/images/small/gregtech/gt.metaitem.02/32241.png deleted file mode 100644 index 552784d2d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32241.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32242.png b/front/public/images/small/gregtech/gt.metaitem.02/32242.png deleted file mode 100644 index 7731b52c6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32242.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32243.png b/front/public/images/small/gregtech/gt.metaitem.02/32243.png deleted file mode 100644 index 736a8e96c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32243.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32244.png b/front/public/images/small/gregtech/gt.metaitem.02/32244.png deleted file mode 100644 index b68f61eea9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32244.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32250.png b/front/public/images/small/gregtech/gt.metaitem.02/32250.png deleted file mode 100644 index 12afd17412..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32250.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32251.png b/front/public/images/small/gregtech/gt.metaitem.02/32251.png deleted file mode 100644 index f550241e8c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32251.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32252.png b/front/public/images/small/gregtech/gt.metaitem.02/32252.png deleted file mode 100644 index 576a80fa3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32252.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32260.png b/front/public/images/small/gregtech/gt.metaitem.02/32260.png deleted file mode 100644 index e6fcbfb5b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32260.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32261.png b/front/public/images/small/gregtech/gt.metaitem.02/32261.png deleted file mode 100644 index ed387892d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32261.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32262.png b/front/public/images/small/gregtech/gt.metaitem.02/32262.png deleted file mode 100644 index 0ef994beae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32262.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32270.png b/front/public/images/small/gregtech/gt.metaitem.02/32270.png deleted file mode 100644 index 22a4a83f1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32270.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32271.png b/front/public/images/small/gregtech/gt.metaitem.02/32271.png deleted file mode 100644 index 22a4a83f1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32271.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32410.png b/front/public/images/small/gregtech/gt.metaitem.02/32410.png deleted file mode 100644 index a54498b537..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32410.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32414.png b/front/public/images/small/gregtech/gt.metaitem.02/32414.png deleted file mode 100644 index 99421d8026..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32414.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32415.png b/front/public/images/small/gregtech/gt.metaitem.02/32415.png deleted file mode 100644 index 0b765e3621..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32415.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32416.png b/front/public/images/small/gregtech/gt.metaitem.02/32416.png deleted file mode 100644 index 9225adddd9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32416.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32417.png b/front/public/images/small/gregtech/gt.metaitem.02/32417.png deleted file mode 100644 index 992b1918e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32417.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32418.png b/front/public/images/small/gregtech/gt.metaitem.02/32418.png deleted file mode 100644 index 1eec36eebe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32418.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32419.png b/front/public/images/small/gregtech/gt.metaitem.02/32419.png deleted file mode 100644 index b57709aab1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32419.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32420.png b/front/public/images/small/gregtech/gt.metaitem.02/32420.png deleted file mode 100644 index a0b11d9ba3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32420.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32421.png b/front/public/images/small/gregtech/gt.metaitem.02/32421.png deleted file mode 100644 index af84aad674..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32421.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32422.png b/front/public/images/small/gregtech/gt.metaitem.02/32422.png deleted file mode 100644 index 20a1ab525d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32422.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32423.png b/front/public/images/small/gregtech/gt.metaitem.02/32423.png deleted file mode 100644 index 8172ae46b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32423.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32424.png b/front/public/images/small/gregtech/gt.metaitem.02/32424.png deleted file mode 100644 index 3d050c3dde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32424.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32425.png b/front/public/images/small/gregtech/gt.metaitem.02/32425.png deleted file mode 100644 index 716e8e4165..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32425.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32426.png b/front/public/images/small/gregtech/gt.metaitem.02/32426.png deleted file mode 100644 index 8b0e79112e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32426.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32427.png b/front/public/images/small/gregtech/gt.metaitem.02/32427.png deleted file mode 100644 index 155a77a978..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32427.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32428.png b/front/public/images/small/gregtech/gt.metaitem.02/32428.png deleted file mode 100644 index 0122248e3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32428.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32429.png b/front/public/images/small/gregtech/gt.metaitem.02/32429.png deleted file mode 100644 index dcf86ab98e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32429.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32470.png b/front/public/images/small/gregtech/gt.metaitem.02/32470.png deleted file mode 100644 index 2ac96a07da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32471.png b/front/public/images/small/gregtech/gt.metaitem.02/32471.png deleted file mode 100644 index 2a4cd24ab6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32472.png b/front/public/images/small/gregtech/gt.metaitem.02/32472.png deleted file mode 100644 index 5677c78e6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32473.png b/front/public/images/small/gregtech/gt.metaitem.02/32473.png deleted file mode 100644 index 375cbd4432..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32474.png b/front/public/images/small/gregtech/gt.metaitem.02/32474.png deleted file mode 100644 index 7bb0fef757..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32474.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32475.png b/front/public/images/small/gregtech/gt.metaitem.02/32475.png deleted file mode 100644 index 8078923b14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32475.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32476.png b/front/public/images/small/gregtech/gt.metaitem.02/32476.png deleted file mode 100644 index 46cb914fdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32476.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32477.png b/front/public/images/small/gregtech/gt.metaitem.02/32477.png deleted file mode 100644 index c391f5d7e1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32477.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32478.png b/front/public/images/small/gregtech/gt.metaitem.02/32478.png deleted file mode 100644 index 8484763ebd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32478.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32479.png b/front/public/images/small/gregtech/gt.metaitem.02/32479.png deleted file mode 100644 index d13d9dfd06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32479.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32480.png b/front/public/images/small/gregtech/gt.metaitem.02/32480.png deleted file mode 100644 index 90ee236d1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32480.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32481.png b/front/public/images/small/gregtech/gt.metaitem.02/32481.png deleted file mode 100644 index e5f06eb84d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32481.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32482.png b/front/public/images/small/gregtech/gt.metaitem.02/32482.png deleted file mode 100644 index b8f130b671..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32482.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32483.png b/front/public/images/small/gregtech/gt.metaitem.02/32483.png deleted file mode 100644 index 2167cec5d6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32483.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32484.png b/front/public/images/small/gregtech/gt.metaitem.02/32484.png deleted file mode 100644 index 2818c2c469..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32484.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32485.png b/front/public/images/small/gregtech/gt.metaitem.02/32485.png deleted file mode 100644 index 76380ca5d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32486.png b/front/public/images/small/gregtech/gt.metaitem.02/32486.png deleted file mode 100644 index a788ab50a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32486.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32487.png b/front/public/images/small/gregtech/gt.metaitem.02/32487.png deleted file mode 100644 index a1f8ec6d3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32487.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32488.png b/front/public/images/small/gregtech/gt.metaitem.02/32488.png deleted file mode 100644 index e96f61d06f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32489.png b/front/public/images/small/gregtech/gt.metaitem.02/32489.png deleted file mode 100644 index 688b858992..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32490.png b/front/public/images/small/gregtech/gt.metaitem.02/32490.png deleted file mode 100644 index b28c72822e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32490.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32491.png b/front/public/images/small/gregtech/gt.metaitem.02/32491.png deleted file mode 100644 index ccd0640a33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32491.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32492.png b/front/public/images/small/gregtech/gt.metaitem.02/32492.png deleted file mode 100644 index c2edceea7c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32492.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32493.png b/front/public/images/small/gregtech/gt.metaitem.02/32493.png deleted file mode 100644 index f8603ae70c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32493.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32494.png b/front/public/images/small/gregtech/gt.metaitem.02/32494.png deleted file mode 100644 index 7a961da7a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32494.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32495.png b/front/public/images/small/gregtech/gt.metaitem.02/32495.png deleted file mode 100644 index 5739ac9905..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32495.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32496.png b/front/public/images/small/gregtech/gt.metaitem.02/32496.png deleted file mode 100644 index 626a32abac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32496.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32497.png b/front/public/images/small/gregtech/gt.metaitem.02/32497.png deleted file mode 100644 index 3e9409dd87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32497.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32498.png b/front/public/images/small/gregtech/gt.metaitem.02/32498.png deleted file mode 100644 index 569e7ff5fb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32498.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32499.png b/front/public/images/small/gregtech/gt.metaitem.02/32499.png deleted file mode 100644 index 77a558adbc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32499.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32500.png b/front/public/images/small/gregtech/gt.metaitem.02/32500.png deleted file mode 100644 index 6c6654b868..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32500.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32501.png b/front/public/images/small/gregtech/gt.metaitem.02/32501.png deleted file mode 100644 index 1efdbd168b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32501.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32502.png b/front/public/images/small/gregtech/gt.metaitem.02/32502.png deleted file mode 100644 index bf2fe1886a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32502.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32503.png b/front/public/images/small/gregtech/gt.metaitem.02/32503.png deleted file mode 100644 index 2e6479dd71..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32503.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32504.png b/front/public/images/small/gregtech/gt.metaitem.02/32504.png deleted file mode 100644 index 3db1afa16b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32504.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32505.png b/front/public/images/small/gregtech/gt.metaitem.02/32505.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32505.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32510.png b/front/public/images/small/gregtech/gt.metaitem.02/32510.png deleted file mode 100644 index a87c4dd6af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32510.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32511.png b/front/public/images/small/gregtech/gt.metaitem.02/32511.png deleted file mode 100644 index 51386c0a4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32511.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32512.png b/front/public/images/small/gregtech/gt.metaitem.02/32512.png deleted file mode 100644 index 38c0bce4c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32512.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32513.png b/front/public/images/small/gregtech/gt.metaitem.02/32513.png deleted file mode 100644 index 38c0bce4c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32513.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32520.png b/front/public/images/small/gregtech/gt.metaitem.02/32520.png deleted file mode 100644 index eaccb7cc86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32520.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32521.png b/front/public/images/small/gregtech/gt.metaitem.02/32521.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32522.png b/front/public/images/small/gregtech/gt.metaitem.02/32522.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32522.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32523.png b/front/public/images/small/gregtech/gt.metaitem.02/32523.png deleted file mode 100644 index d882962fc6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32523.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32524.png b/front/public/images/small/gregtech/gt.metaitem.02/32524.png deleted file mode 100644 index 09d11e7419..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32524.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32526.png b/front/public/images/small/gregtech/gt.metaitem.02/32526.png deleted file mode 100644 index 77afce6b42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32526.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32527.png b/front/public/images/small/gregtech/gt.metaitem.02/32527.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32527.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32528.png b/front/public/images/small/gregtech/gt.metaitem.02/32528.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32528.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32529.png b/front/public/images/small/gregtech/gt.metaitem.02/32529.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32530.png b/front/public/images/small/gregtech/gt.metaitem.02/32530.png deleted file mode 100644 index 268aedd723..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32530.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32531.png b/front/public/images/small/gregtech/gt.metaitem.02/32531.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32531.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32532.png b/front/public/images/small/gregtech/gt.metaitem.02/32532.png deleted file mode 100644 index f018da9411..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32532.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32533.png b/front/public/images/small/gregtech/gt.metaitem.02/32533.png deleted file mode 100644 index 8caf730795..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32533.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32534.png b/front/public/images/small/gregtech/gt.metaitem.02/32534.png deleted file mode 100644 index acce4d9aa1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32534.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32535.png b/front/public/images/small/gregtech/gt.metaitem.02/32535.png deleted file mode 100644 index 1c977b02a9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32535.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32538.png b/front/public/images/small/gregtech/gt.metaitem.02/32538.png deleted file mode 100644 index a4166fe0ad..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32538.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32540.png b/front/public/images/small/gregtech/gt.metaitem.02/32540.png deleted file mode 100644 index 6a0b6dd71b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32540.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32550.png b/front/public/images/small/gregtech/gt.metaitem.02/32550.png deleted file mode 100644 index 972ab1454b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32550.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32551.png b/front/public/images/small/gregtech/gt.metaitem.02/32551.png deleted file mode 100644 index 412d9817af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32551.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32552.png b/front/public/images/small/gregtech/gt.metaitem.02/32552.png deleted file mode 100644 index 8e79641376..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32552.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32553.png b/front/public/images/small/gregtech/gt.metaitem.02/32553.png deleted file mode 100644 index 6c0ab71417..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32553.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32554.png b/front/public/images/small/gregtech/gt.metaitem.02/32554.png deleted file mode 100644 index 8151ef5da0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32554.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32555.png b/front/public/images/small/gregtech/gt.metaitem.02/32555.png deleted file mode 100644 index d3d0578736..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32555.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32556.png b/front/public/images/small/gregtech/gt.metaitem.02/32556.png deleted file mode 100644 index 8857d6eff5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32556.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32557.png b/front/public/images/small/gregtech/gt.metaitem.02/32557.png deleted file mode 100644 index 30df5e8f72..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32557.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32558.png b/front/public/images/small/gregtech/gt.metaitem.02/32558.png deleted file mode 100644 index 02cdac15c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32558.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32559.png b/front/public/images/small/gregtech/gt.metaitem.02/32559.png deleted file mode 100644 index eb410ea9d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32559.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32560.png b/front/public/images/small/gregtech/gt.metaitem.02/32560.png deleted file mode 100644 index d4e88b6a9d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32560.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32561.png b/front/public/images/small/gregtech/gt.metaitem.02/32561.png deleted file mode 100644 index 0a4cf42903..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32561.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32562.png b/front/public/images/small/gregtech/gt.metaitem.02/32562.png deleted file mode 100644 index 6882d15a87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32562.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32563.png b/front/public/images/small/gregtech/gt.metaitem.02/32563.png deleted file mode 100644 index d416f8c214..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32563.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32564.png b/front/public/images/small/gregtech/gt.metaitem.02/32564.png deleted file mode 100644 index 892bf6efa1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32564.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32565.png b/front/public/images/small/gregtech/gt.metaitem.02/32565.png deleted file mode 100644 index 7d78a961a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32565.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32566.png b/front/public/images/small/gregtech/gt.metaitem.02/32566.png deleted file mode 100644 index 6f6558a862..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32566.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32567.png b/front/public/images/small/gregtech/gt.metaitem.02/32567.png deleted file mode 100644 index 97be4a8e5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32567.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32568.png b/front/public/images/small/gregtech/gt.metaitem.02/32568.png deleted file mode 100644 index 2fc66378cd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32568.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32569.png b/front/public/images/small/gregtech/gt.metaitem.02/32569.png deleted file mode 100644 index 36130b63b4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32569.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32570.png b/front/public/images/small/gregtech/gt.metaitem.02/32570.png deleted file mode 100644 index 23456e6663..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32570.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32571.png b/front/public/images/small/gregtech/gt.metaitem.02/32571.png deleted file mode 100644 index 8efa20d8b0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32571.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32572.png b/front/public/images/small/gregtech/gt.metaitem.02/32572.png deleted file mode 100644 index 645837d816..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32572.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32573.png b/front/public/images/small/gregtech/gt.metaitem.02/32573.png deleted file mode 100644 index 6afda3d492..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32573.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32574.png b/front/public/images/small/gregtech/gt.metaitem.02/32574.png deleted file mode 100644 index a2adae0457..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32574.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32576.png b/front/public/images/small/gregtech/gt.metaitem.02/32576.png deleted file mode 100644 index 16da30d32d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32577.png b/front/public/images/small/gregtech/gt.metaitem.02/32577.png deleted file mode 100644 index a94429c668..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32577.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32578.png b/front/public/images/small/gregtech/gt.metaitem.02/32578.png deleted file mode 100644 index a94429c668..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32578.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32579.png b/front/public/images/small/gregtech/gt.metaitem.02/32579.png deleted file mode 100644 index f048fece16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32579.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32580.png b/front/public/images/small/gregtech/gt.metaitem.02/32580.png deleted file mode 100644 index f048fece16..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32580.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32581.png b/front/public/images/small/gregtech/gt.metaitem.02/32581.png deleted file mode 100644 index 110877f19e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32582.png b/front/public/images/small/gregtech/gt.metaitem.02/32582.png deleted file mode 100644 index dcacb06baa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32583.png b/front/public/images/small/gregtech/gt.metaitem.02/32583.png deleted file mode 100644 index 8082fdd1fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.02/32584.png b/front/public/images/small/gregtech/gt.metaitem.02/32584.png deleted file mode 100644 index 91ad753a20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.02/32584.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32006.png b/front/public/images/small/gregtech/gt.metaitem.03/32006.png deleted file mode 100644 index cf9a72fcb3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32006.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32007.png b/front/public/images/small/gregtech/gt.metaitem.03/32007.png deleted file mode 100644 index c12ed76dda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32007.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32008.png b/front/public/images/small/gregtech/gt.metaitem.03/32008.png deleted file mode 100644 index a9ec59c7fa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32008.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32011.png b/front/public/images/small/gregtech/gt.metaitem.03/32011.png deleted file mode 100644 index c7872d3823..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32011.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32012.png b/front/public/images/small/gregtech/gt.metaitem.03/32012.png deleted file mode 100644 index 3204358ce3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32012.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32014.png b/front/public/images/small/gregtech/gt.metaitem.03/32014.png deleted file mode 100644 index 73981236df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32014.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32016.png b/front/public/images/small/gregtech/gt.metaitem.03/32016.png deleted file mode 100644 index 7c00658333..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32016.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32018.png b/front/public/images/small/gregtech/gt.metaitem.03/32018.png deleted file mode 100644 index 0351001ab0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32018.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32020.png b/front/public/images/small/gregtech/gt.metaitem.03/32020.png deleted file mode 100644 index c30fe1897f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32020.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32021.png b/front/public/images/small/gregtech/gt.metaitem.03/32021.png deleted file mode 100644 index 3ab8298a46..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32021.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32022.png b/front/public/images/small/gregtech/gt.metaitem.03/32022.png deleted file mode 100644 index 44388d3021..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32022.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32023.png b/front/public/images/small/gregtech/gt.metaitem.03/32023.png deleted file mode 100644 index eea6f1d1c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32023.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32024.png b/front/public/images/small/gregtech/gt.metaitem.03/32024.png deleted file mode 100644 index 9cfe4250cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32024.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32025.png b/front/public/images/small/gregtech/gt.metaitem.03/32025.png deleted file mode 100644 index d5ed14fc3d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32025.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32026.png b/front/public/images/small/gregtech/gt.metaitem.03/32026.png deleted file mode 100644 index 3cf306630b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32026.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32027.png b/front/public/images/small/gregtech/gt.metaitem.03/32027.png deleted file mode 100644 index f8ed3ba696..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32027.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32030.png b/front/public/images/small/gregtech/gt.metaitem.03/32030.png deleted file mode 100644 index 324bef0c6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32030.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32031.png b/front/public/images/small/gregtech/gt.metaitem.03/32031.png deleted file mode 100644 index de84d483ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32031.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32032.png b/front/public/images/small/gregtech/gt.metaitem.03/32032.png deleted file mode 100644 index 800f49367e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32033.png b/front/public/images/small/gregtech/gt.metaitem.03/32033.png deleted file mode 100644 index 95092e8ac0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32033.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32034.png b/front/public/images/small/gregtech/gt.metaitem.03/32034.png deleted file mode 100644 index 371f745dee..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32034.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32035.png b/front/public/images/small/gregtech/gt.metaitem.03/32035.png deleted file mode 100644 index 7a42538050..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32036.png b/front/public/images/small/gregtech/gt.metaitem.03/32036.png deleted file mode 100644 index 11e502054e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32036.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32037.png b/front/public/images/small/gregtech/gt.metaitem.03/32037.png deleted file mode 100644 index 028b2a90bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32037.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32038.png b/front/public/images/small/gregtech/gt.metaitem.03/32038.png deleted file mode 100644 index f666f811bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32038.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32039.png b/front/public/images/small/gregtech/gt.metaitem.03/32039.png deleted file mode 100644 index 2e96a20c35..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32039.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32040.png b/front/public/images/small/gregtech/gt.metaitem.03/32040.png deleted file mode 100644 index c07fb649c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32040.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32041.png b/front/public/images/small/gregtech/gt.metaitem.03/32041.png deleted file mode 100644 index b273c85fef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32041.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32042.png b/front/public/images/small/gregtech/gt.metaitem.03/32042.png deleted file mode 100644 index 8bcc30509d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32042.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32043.png b/front/public/images/small/gregtech/gt.metaitem.03/32043.png deleted file mode 100644 index 3e2a9492e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32043.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32044.png b/front/public/images/small/gregtech/gt.metaitem.03/32044.png deleted file mode 100644 index 5d3039bd36..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32044.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32045.png b/front/public/images/small/gregtech/gt.metaitem.03/32045.png deleted file mode 100644 index fd2376f8a8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32045.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32046.png b/front/public/images/small/gregtech/gt.metaitem.03/32046.png deleted file mode 100644 index 304c562839..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32046.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32047.png b/front/public/images/small/gregtech/gt.metaitem.03/32047.png deleted file mode 100644 index 55dcfa137f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32047.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32048.png b/front/public/images/small/gregtech/gt.metaitem.03/32048.png deleted file mode 100644 index 7b3b007bf9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32048.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32049.png b/front/public/images/small/gregtech/gt.metaitem.03/32049.png deleted file mode 100644 index 23f84bd743..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32049.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32050.png b/front/public/images/small/gregtech/gt.metaitem.03/32050.png deleted file mode 100644 index ca96ceeb60..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32050.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32051.png b/front/public/images/small/gregtech/gt.metaitem.03/32051.png deleted file mode 100644 index 1e11d159c1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32051.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32052.png b/front/public/images/small/gregtech/gt.metaitem.03/32052.png deleted file mode 100644 index b55313271c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32052.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32053.png b/front/public/images/small/gregtech/gt.metaitem.03/32053.png deleted file mode 100644 index 6e2d6077aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32053.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32054.png b/front/public/images/small/gregtech/gt.metaitem.03/32054.png deleted file mode 100644 index b3c73ef08f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32055.png b/front/public/images/small/gregtech/gt.metaitem.03/32055.png deleted file mode 100644 index 798412e279..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32055.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32056.png b/front/public/images/small/gregtech/gt.metaitem.03/32056.png deleted file mode 100644 index 41721285db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32056.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32057.png b/front/public/images/small/gregtech/gt.metaitem.03/32057.png deleted file mode 100644 index 1f66c3e8f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32057.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32058.png b/front/public/images/small/gregtech/gt.metaitem.03/32058.png deleted file mode 100644 index a517b0738b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32058.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32059.png b/front/public/images/small/gregtech/gt.metaitem.03/32059.png deleted file mode 100644 index 9cf562eb4a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32059.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32060.png b/front/public/images/small/gregtech/gt.metaitem.03/32060.png deleted file mode 100644 index 9abacc391b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32060.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32061.png b/front/public/images/small/gregtech/gt.metaitem.03/32061.png deleted file mode 100644 index 588facb743..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32061.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32062.png b/front/public/images/small/gregtech/gt.metaitem.03/32062.png deleted file mode 100644 index 0a32592848..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32062.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32063.png b/front/public/images/small/gregtech/gt.metaitem.03/32063.png deleted file mode 100644 index c9e2bddeb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32063.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32064.png b/front/public/images/small/gregtech/gt.metaitem.03/32064.png deleted file mode 100644 index ab2230b6d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32064.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32065.png b/front/public/images/small/gregtech/gt.metaitem.03/32065.png deleted file mode 100644 index a94925f7f4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32065.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32068.png b/front/public/images/small/gregtech/gt.metaitem.03/32068.png deleted file mode 100644 index a2ce45bee3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32068.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32069.png b/front/public/images/small/gregtech/gt.metaitem.03/32069.png deleted file mode 100644 index d955cf3407..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32069.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32070.png b/front/public/images/small/gregtech/gt.metaitem.03/32070.png deleted file mode 100644 index 76e58243a0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32070.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32071.png b/front/public/images/small/gregtech/gt.metaitem.03/32071.png deleted file mode 100644 index 65019c4fb1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32071.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32072.png b/front/public/images/small/gregtech/gt.metaitem.03/32072.png deleted file mode 100644 index c20191a7ea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32072.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32073.png b/front/public/images/small/gregtech/gt.metaitem.03/32073.png deleted file mode 100644 index 6518606037..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32073.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32074.png b/front/public/images/small/gregtech/gt.metaitem.03/32074.png deleted file mode 100644 index 613391eab5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32074.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32075.png b/front/public/images/small/gregtech/gt.metaitem.03/32075.png deleted file mode 100644 index 4c6cd81769..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32075.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32076.png b/front/public/images/small/gregtech/gt.metaitem.03/32076.png deleted file mode 100644 index 735fc8f794..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32076.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32077.png b/front/public/images/small/gregtech/gt.metaitem.03/32077.png deleted file mode 100644 index 1f1f2b69ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32077.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32078.png b/front/public/images/small/gregtech/gt.metaitem.03/32078.png deleted file mode 100644 index e7094498d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32078.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32079.png b/front/public/images/small/gregtech/gt.metaitem.03/32079.png deleted file mode 100644 index acf5e3665b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32079.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32080.png b/front/public/images/small/gregtech/gt.metaitem.03/32080.png deleted file mode 100644 index e0b9817546..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32080.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32082.png b/front/public/images/small/gregtech/gt.metaitem.03/32082.png deleted file mode 100644 index 788588e191..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32082.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32083.png b/front/public/images/small/gregtech/gt.metaitem.03/32083.png deleted file mode 100644 index cf2dfa5f70..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32083.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32084.png b/front/public/images/small/gregtech/gt.metaitem.03/32084.png deleted file mode 100644 index 0f16e05be0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32084.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32085.png b/front/public/images/small/gregtech/gt.metaitem.03/32085.png deleted file mode 100644 index 89ac27b88d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32085.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32086.png b/front/public/images/small/gregtech/gt.metaitem.03/32086.png deleted file mode 100644 index 08847dab56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32087.png b/front/public/images/small/gregtech/gt.metaitem.03/32087.png deleted file mode 100644 index cb47a477ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32087.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32088.png b/front/public/images/small/gregtech/gt.metaitem.03/32088.png deleted file mode 100644 index 8b37b9dfd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32088.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32089.png b/front/public/images/small/gregtech/gt.metaitem.03/32089.png deleted file mode 100644 index fbe5666aeb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32089.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32090.png b/front/public/images/small/gregtech/gt.metaitem.03/32090.png deleted file mode 100644 index 143428b12b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32090.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32091.png b/front/public/images/small/gregtech/gt.metaitem.03/32091.png deleted file mode 100644 index c825ec233d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32091.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32092.png b/front/public/images/small/gregtech/gt.metaitem.03/32092.png deleted file mode 100644 index 9115f06c73..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32092.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32093.png b/front/public/images/small/gregtech/gt.metaitem.03/32093.png deleted file mode 100644 index dc4e31a48e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32093.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32094.png b/front/public/images/small/gregtech/gt.metaitem.03/32094.png deleted file mode 100644 index 23b3bb0652..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32094.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32095.png b/front/public/images/small/gregtech/gt.metaitem.03/32095.png deleted file mode 100644 index 9b2a62ddce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32095.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32096.png b/front/public/images/small/gregtech/gt.metaitem.03/32096.png deleted file mode 100644 index 47efdb81ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32096.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32097.png b/front/public/images/small/gregtech/gt.metaitem.03/32097.png deleted file mode 100644 index 636f158480..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32097.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32098.png b/front/public/images/small/gregtech/gt.metaitem.03/32098.png deleted file mode 100644 index dd592a946e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32098.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32099.png b/front/public/images/small/gregtech/gt.metaitem.03/32099.png deleted file mode 100644 index c3ca5e1c7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32099.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32100.png b/front/public/images/small/gregtech/gt.metaitem.03/32100.png deleted file mode 100644 index 32e675807e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32101.png b/front/public/images/small/gregtech/gt.metaitem.03/32101.png deleted file mode 100644 index 5f6feb9d08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32102.png b/front/public/images/small/gregtech/gt.metaitem.03/32102.png deleted file mode 100644 index 4fe5418047..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32103.png b/front/public/images/small/gregtech/gt.metaitem.03/32103.png deleted file mode 100644 index 5f5cb7d352..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32104.png b/front/public/images/small/gregtech/gt.metaitem.03/32104.png deleted file mode 100644 index 66232b32c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32105.png b/front/public/images/small/gregtech/gt.metaitem.03/32105.png deleted file mode 100644 index 35c702a1a5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32105.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32106.png b/front/public/images/small/gregtech/gt.metaitem.03/32106.png deleted file mode 100644 index 4c21b8df45..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32106.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32107.png b/front/public/images/small/gregtech/gt.metaitem.03/32107.png deleted file mode 100644 index 04c36c88e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32107.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32110.png b/front/public/images/small/gregtech/gt.metaitem.03/32110.png deleted file mode 100644 index 16b77bf13a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32120.png b/front/public/images/small/gregtech/gt.metaitem.03/32120.png deleted file mode 100644 index 42cf3cc52b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32120.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32130.png b/front/public/images/small/gregtech/gt.metaitem.03/32130.png deleted file mode 100644 index 85fa632dab..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32131.png b/front/public/images/small/gregtech/gt.metaitem.03/32131.png deleted file mode 100644 index 4debe85c86..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32132.png b/front/public/images/small/gregtech/gt.metaitem.03/32132.png deleted file mode 100644 index efc5b71cdf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32132.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32140.png b/front/public/images/small/gregtech/gt.metaitem.03/32140.png deleted file mode 100644 index 3a696c084e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32140.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32141.png b/front/public/images/small/gregtech/gt.metaitem.03/32141.png deleted file mode 100644 index d43e190185..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32142.png b/front/public/images/small/gregtech/gt.metaitem.03/32142.png deleted file mode 100644 index 38ca93f2c4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32142.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32143.png b/front/public/images/small/gregtech/gt.metaitem.03/32143.png deleted file mode 100644 index abeaa0a86e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32144.png b/front/public/images/small/gregtech/gt.metaitem.03/32144.png deleted file mode 100644 index c59e0e5b97..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32145.png b/front/public/images/small/gregtech/gt.metaitem.03/32145.png deleted file mode 100644 index a11e07fb3c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32145.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32146.png b/front/public/images/small/gregtech/gt.metaitem.03/32146.png deleted file mode 100644 index 82216d829b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32146.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32147.png b/front/public/images/small/gregtech/gt.metaitem.03/32147.png deleted file mode 100644 index 111a90efd4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32147.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32148.png b/front/public/images/small/gregtech/gt.metaitem.03/32148.png deleted file mode 100644 index 6b6a4c5a7e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32148.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32149.png b/front/public/images/small/gregtech/gt.metaitem.03/32149.png deleted file mode 100644 index 076bcceddb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32149.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32150.png b/front/public/images/small/gregtech/gt.metaitem.03/32150.png deleted file mode 100644 index 6770fdbdcc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32151.png b/front/public/images/small/gregtech/gt.metaitem.03/32151.png deleted file mode 100644 index e5c4666deb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32151.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32152.png b/front/public/images/small/gregtech/gt.metaitem.03/32152.png deleted file mode 100644 index 8d9c644caf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32152.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32153.png b/front/public/images/small/gregtech/gt.metaitem.03/32153.png deleted file mode 100644 index fc96faa827..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32153.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32154.png b/front/public/images/small/gregtech/gt.metaitem.03/32154.png deleted file mode 100644 index 5df1033bd5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32154.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32155.png b/front/public/images/small/gregtech/gt.metaitem.03/32155.png deleted file mode 100644 index f9b3500e1f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32155.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32156.png b/front/public/images/small/gregtech/gt.metaitem.03/32156.png deleted file mode 100644 index f6fda45c05..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32156.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32157.png b/front/public/images/small/gregtech/gt.metaitem.03/32157.png deleted file mode 100644 index db0d3196c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32157.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32160.png b/front/public/images/small/gregtech/gt.metaitem.03/32160.png deleted file mode 100644 index bda5eaa536..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32160.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32161.png b/front/public/images/small/gregtech/gt.metaitem.03/32161.png deleted file mode 100644 index ce3e2772b5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32161.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32162.png b/front/public/images/small/gregtech/gt.metaitem.03/32162.png deleted file mode 100644 index f404bc3dea..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32162.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32163.png b/front/public/images/small/gregtech/gt.metaitem.03/32163.png deleted file mode 100644 index 1c4413f06e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32163.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32164.png b/front/public/images/small/gregtech/gt.metaitem.03/32164.png deleted file mode 100644 index 31cd38a390..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32164.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32165.png b/front/public/images/small/gregtech/gt.metaitem.03/32165.png deleted file mode 100644 index 4e029b7a51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32165.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32166.png b/front/public/images/small/gregtech/gt.metaitem.03/32166.png deleted file mode 100644 index 6922ba480d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32166.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32167.png b/front/public/images/small/gregtech/gt.metaitem.03/32167.png deleted file mode 100644 index 53a16ef798..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32167.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32168.png b/front/public/images/small/gregtech/gt.metaitem.03/32168.png deleted file mode 100644 index 092f185d87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32168.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32169.png b/front/public/images/small/gregtech/gt.metaitem.03/32169.png deleted file mode 100644 index 58e76fabc7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32169.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32170.png b/front/public/images/small/gregtech/gt.metaitem.03/32170.png deleted file mode 100644 index 41a6634726..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32170.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32171.png b/front/public/images/small/gregtech/gt.metaitem.03/32171.png deleted file mode 100644 index 231715e3c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32171.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32172.png b/front/public/images/small/gregtech/gt.metaitem.03/32172.png deleted file mode 100644 index 8e7b0aa390..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32172.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32173.png b/front/public/images/small/gregtech/gt.metaitem.03/32173.png deleted file mode 100644 index b86c69dcda..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32173.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32174.png b/front/public/images/small/gregtech/gt.metaitem.03/32174.png deleted file mode 100644 index 5737b94f24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32174.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32175.png b/front/public/images/small/gregtech/gt.metaitem.03/32175.png deleted file mode 100644 index be7882b9e3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32175.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32176.png b/front/public/images/small/gregtech/gt.metaitem.03/32176.png deleted file mode 100644 index 149651e1da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32176.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32177.png b/front/public/images/small/gregtech/gt.metaitem.03/32177.png deleted file mode 100644 index 002ee32656..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32177.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32178.png b/front/public/images/small/gregtech/gt.metaitem.03/32178.png deleted file mode 100644 index 13ab4180c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32178.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32179.png b/front/public/images/small/gregtech/gt.metaitem.03/32179.png deleted file mode 100644 index 6c11314345..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32179.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32180.png b/front/public/images/small/gregtech/gt.metaitem.03/32180.png deleted file mode 100644 index 8ce14a5792..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32180.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32181.png b/front/public/images/small/gregtech/gt.metaitem.03/32181.png deleted file mode 100644 index 393c9ecad6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32181.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32182.png b/front/public/images/small/gregtech/gt.metaitem.03/32182.png deleted file mode 100644 index 10214c6fb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32182.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32183.png b/front/public/images/small/gregtech/gt.metaitem.03/32183.png deleted file mode 100644 index 667abcce24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32183.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32184.png b/front/public/images/small/gregtech/gt.metaitem.03/32184.png deleted file mode 100644 index f9e2fb37cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32184.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32188.png b/front/public/images/small/gregtech/gt.metaitem.03/32188.png deleted file mode 100644 index 3262dff2e5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32188.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32189.png b/front/public/images/small/gregtech/gt.metaitem.03/32189.png deleted file mode 100644 index db052c7952..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32189.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32190.png b/front/public/images/small/gregtech/gt.metaitem.03/32190.png deleted file mode 100644 index 0b24f0237b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32190.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32191.png b/front/public/images/small/gregtech/gt.metaitem.03/32191.png deleted file mode 100644 index cf80f42de8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32191.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32192.png b/front/public/images/small/gregtech/gt.metaitem.03/32192.png deleted file mode 100644 index 255a277b23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32192.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32193.png b/front/public/images/small/gregtech/gt.metaitem.03/32193.png deleted file mode 100644 index 2d34363371..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32193.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32194.png b/front/public/images/small/gregtech/gt.metaitem.03/32194.png deleted file mode 100644 index 334ee6376e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32194.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32199.png b/front/public/images/small/gregtech/gt.metaitem.03/32199.png deleted file mode 100644 index 1ece89f284..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32199.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32200.png b/front/public/images/small/gregtech/gt.metaitem.03/32200.png deleted file mode 100644 index 5ab25490ce..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32200.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32201.png b/front/public/images/small/gregtech/gt.metaitem.03/32201.png deleted file mode 100644 index 659168edba..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32202.png b/front/public/images/small/gregtech/gt.metaitem.03/32202.png deleted file mode 100644 index 3947fb3a8b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32203.png b/front/public/images/small/gregtech/gt.metaitem.03/32203.png deleted file mode 100644 index a93174ba80..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32204.png b/front/public/images/small/gregtech/gt.metaitem.03/32204.png deleted file mode 100644 index 85656286d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32204.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32205.png b/front/public/images/small/gregtech/gt.metaitem.03/32205.png deleted file mode 100644 index 7931c9339f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32206.png b/front/public/images/small/gregtech/gt.metaitem.03/32206.png deleted file mode 100644 index 30caee7533..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32206.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32207.png b/front/public/images/small/gregtech/gt.metaitem.03/32207.png deleted file mode 100644 index d329657264..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32207.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32208.png b/front/public/images/small/gregtech/gt.metaitem.03/32208.png deleted file mode 100644 index e41d1b4023..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32208.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32209.png b/front/public/images/small/gregtech/gt.metaitem.03/32209.png deleted file mode 100644 index 42e4547ac6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32209.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32210.png b/front/public/images/small/gregtech/gt.metaitem.03/32210.png deleted file mode 100644 index 11dbeda018..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32210.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32211.png b/front/public/images/small/gregtech/gt.metaitem.03/32211.png deleted file mode 100644 index 70d4cf9f14..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32211.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32212.png b/front/public/images/small/gregtech/gt.metaitem.03/32212.png deleted file mode 100644 index 9b96c3a200..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32212.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32213.png b/front/public/images/small/gregtech/gt.metaitem.03/32213.png deleted file mode 100644 index 9a6daa744f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32213.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32214.png b/front/public/images/small/gregtech/gt.metaitem.03/32214.png deleted file mode 100644 index 33e431efde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32214.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32215.png b/front/public/images/small/gregtech/gt.metaitem.03/32215.png deleted file mode 100644 index 1f44219465..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32215.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32216.png b/front/public/images/small/gregtech/gt.metaitem.03/32216.png deleted file mode 100644 index 89e2173452..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32216.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32217.png b/front/public/images/small/gregtech/gt.metaitem.03/32217.png deleted file mode 100644 index 476a11d8f2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32217.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32218.png b/front/public/images/small/gregtech/gt.metaitem.03/32218.png deleted file mode 100644 index f68797a601..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32218.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32219.png b/front/public/images/small/gregtech/gt.metaitem.03/32219.png deleted file mode 100644 index 5f8bc70a3e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32219.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32220.png b/front/public/images/small/gregtech/gt.metaitem.03/32220.png deleted file mode 100644 index 1065554612..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32220.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32221.png b/front/public/images/small/gregtech/gt.metaitem.03/32221.png deleted file mode 100644 index 08133fb3b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32221.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32222.png b/front/public/images/small/gregtech/gt.metaitem.03/32222.png deleted file mode 100644 index 64bb03a956..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32222.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32223.png b/front/public/images/small/gregtech/gt.metaitem.03/32223.png deleted file mode 100644 index 1a19f5ee08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32223.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32224.png b/front/public/images/small/gregtech/gt.metaitem.03/32224.png deleted file mode 100644 index ba97768051..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32224.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32225.png b/front/public/images/small/gregtech/gt.metaitem.03/32225.png deleted file mode 100644 index bb7461fc4f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32225.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32226.png b/front/public/images/small/gregtech/gt.metaitem.03/32226.png deleted file mode 100644 index 547bc2cd37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32226.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32227.png b/front/public/images/small/gregtech/gt.metaitem.03/32227.png deleted file mode 100644 index 38fd7f7571..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32227.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32228.png b/front/public/images/small/gregtech/gt.metaitem.03/32228.png deleted file mode 100644 index d4f965fa18..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32228.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32229.png b/front/public/images/small/gregtech/gt.metaitem.03/32229.png deleted file mode 100644 index 9097c075ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32229.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32230.png b/front/public/images/small/gregtech/gt.metaitem.03/32230.png deleted file mode 100644 index f68d71e1c9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32230.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32231.png b/front/public/images/small/gregtech/gt.metaitem.03/32231.png deleted file mode 100644 index 577f13315e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32231.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32232.png b/front/public/images/small/gregtech/gt.metaitem.03/32232.png deleted file mode 100644 index befcc70bae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32232.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32721.png b/front/public/images/small/gregtech/gt.metaitem.03/32721.png deleted file mode 100644 index ae3d85fbaa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32721.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32722.png b/front/public/images/small/gregtech/gt.metaitem.03/32722.png deleted file mode 100644 index c87be5afdc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32722.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32723.png b/front/public/images/small/gregtech/gt.metaitem.03/32723.png deleted file mode 100644 index c055454989..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32723.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32724.png b/front/public/images/small/gregtech/gt.metaitem.03/32724.png deleted file mode 100644 index 2b89e8a055..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32724.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32725.png b/front/public/images/small/gregtech/gt.metaitem.03/32725.png deleted file mode 100644 index c90476cfcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32725.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32726.png b/front/public/images/small/gregtech/gt.metaitem.03/32726.png deleted file mode 100644 index fe506a5051..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32726.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32727.png b/front/public/images/small/gregtech/gt.metaitem.03/32727.png deleted file mode 100644 index 4db842788b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32727.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32728.png b/front/public/images/small/gregtech/gt.metaitem.03/32728.png deleted file mode 100644 index 00f04056ef..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32728.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32729.png b/front/public/images/small/gregtech/gt.metaitem.03/32729.png deleted file mode 100644 index 64872c2044..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32729.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32730.png b/front/public/images/small/gregtech/gt.metaitem.03/32730.png deleted file mode 100644 index 3a225194f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32730.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32731.png b/front/public/images/small/gregtech/gt.metaitem.03/32731.png deleted file mode 100644 index f45db49f6d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32731.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32732.png b/front/public/images/small/gregtech/gt.metaitem.03/32732.png deleted file mode 100644 index 83cff4ff8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32732.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32733.png b/front/public/images/small/gregtech/gt.metaitem.03/32733.png deleted file mode 100644 index 3ff74198fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32733.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32734.png b/front/public/images/small/gregtech/gt.metaitem.03/32734.png deleted file mode 100644 index 173cdd0fbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32734.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32735.png b/front/public/images/small/gregtech/gt.metaitem.03/32735.png deleted file mode 100644 index 74975b8634..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32736.png b/front/public/images/small/gregtech/gt.metaitem.03/32736.png deleted file mode 100644 index f99c420324..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32736.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32737.png b/front/public/images/small/gregtech/gt.metaitem.03/32737.png deleted file mode 100644 index cdbcc6614f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32737.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32738.png b/front/public/images/small/gregtech/gt.metaitem.03/32738.png deleted file mode 100644 index be7d761169..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32738.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32739.png b/front/public/images/small/gregtech/gt.metaitem.03/32739.png deleted file mode 100644 index 0c72d7d36a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32740.png b/front/public/images/small/gregtech/gt.metaitem.03/32740.png deleted file mode 100644 index 3c657b8ab7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32741.png b/front/public/images/small/gregtech/gt.metaitem.03/32741.png deleted file mode 100644 index 1d8198a4d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32742.png b/front/public/images/small/gregtech/gt.metaitem.03/32742.png deleted file mode 100644 index 083919df8d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32742.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32743.png b/front/public/images/small/gregtech/gt.metaitem.03/32743.png deleted file mode 100644 index 9c77b12e55..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32743.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32744.png b/front/public/images/small/gregtech/gt.metaitem.03/32744.png deleted file mode 100644 index 902d2318c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32744.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32745.png b/front/public/images/small/gregtech/gt.metaitem.03/32745.png deleted file mode 100644 index 811a1c5a43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32745.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32746.png b/front/public/images/small/gregtech/gt.metaitem.03/32746.png deleted file mode 100644 index 1b9028bfd8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32746.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32747.png b/front/public/images/small/gregtech/gt.metaitem.03/32747.png deleted file mode 100644 index c5a16a7716..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32747.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32748.png b/front/public/images/small/gregtech/gt.metaitem.03/32748.png deleted file mode 100644 index 514dfa8093..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32748.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32749.png b/front/public/images/small/gregtech/gt.metaitem.03/32749.png deleted file mode 100644 index b8ade31b27..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32749.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32750.png b/front/public/images/small/gregtech/gt.metaitem.03/32750.png deleted file mode 100644 index ec6c9cb15a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32750.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32751.png b/front/public/images/small/gregtech/gt.metaitem.03/32751.png deleted file mode 100644 index 5cdb694273..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32751.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32752.png b/front/public/images/small/gregtech/gt.metaitem.03/32752.png deleted file mode 100644 index b924535151..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32752.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32753.png b/front/public/images/small/gregtech/gt.metaitem.03/32753.png deleted file mode 100644 index ddff97935a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32753.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32754.png b/front/public/images/small/gregtech/gt.metaitem.03/32754.png deleted file mode 100644 index 32e37f057b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32754.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32755.png b/front/public/images/small/gregtech/gt.metaitem.03/32755.png deleted file mode 100644 index 65585a39b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32755.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32756.png b/front/public/images/small/gregtech/gt.metaitem.03/32756.png deleted file mode 100644 index 2cef079406..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32756.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/32757.png b/front/public/images/small/gregtech/gt.metaitem.03/32757.png deleted file mode 100644 index 80d319ee8a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/32757.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4010.png b/front/public/images/small/gregtech/gt.metaitem.03/4010.png deleted file mode 100644 index 1c8e5889bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4010.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4032.png b/front/public/images/small/gregtech/gt.metaitem.03/4032.png deleted file mode 100644 index 15a6780286..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4032.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4035.png b/front/public/images/small/gregtech/gt.metaitem.03/4035.png deleted file mode 100644 index 8c40b0b022..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4035.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4054.png b/front/public/images/small/gregtech/gt.metaitem.03/4054.png deleted file mode 100644 index 0abcdebd96..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4054.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4086.png b/front/public/images/small/gregtech/gt.metaitem.03/4086.png deleted file mode 100644 index 5a4933eb2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4086.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4129.png b/front/public/images/small/gregtech/gt.metaitem.03/4129.png deleted file mode 100644 index 05a553a344..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4139.png b/front/public/images/small/gregtech/gt.metaitem.03/4139.png deleted file mode 100644 index 38db66ba62..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4141.png b/front/public/images/small/gregtech/gt.metaitem.03/4141.png deleted file mode 100644 index b09a9292ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4581.png b/front/public/images/small/gregtech/gt.metaitem.03/4581.png deleted file mode 100644 index d73b5dba11..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4585.png b/front/public/images/small/gregtech/gt.metaitem.03/4585.png deleted file mode 100644 index b61cdcd5cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4586.png b/front/public/images/small/gregtech/gt.metaitem.03/4586.png deleted file mode 100644 index f13f88f972..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.03/4811.png b/front/public/images/small/gregtech/gt.metaitem.03/4811.png deleted file mode 100644 index bb5ac67d7a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.03/4811.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/0.png b/front/public/images/small/gregtech/gt.metaitem.98/0.png deleted file mode 100644 index 3bcda1d006..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/1.png b/front/public/images/small/gregtech/gt.metaitem.98/1.png deleted file mode 100644 index c92a99611b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/1.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/10.png b/front/public/images/small/gregtech/gt.metaitem.98/10.png deleted file mode 100644 index adfbd7d29c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/11.png b/front/public/images/small/gregtech/gt.metaitem.98/11.png deleted file mode 100644 index e76afeef6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/11.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/12.png b/front/public/images/small/gregtech/gt.metaitem.98/12.png deleted file mode 100644 index 71ff2565e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/13.png b/front/public/images/small/gregtech/gt.metaitem.98/13.png deleted file mode 100644 index 4530fae04b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/13.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/14.png b/front/public/images/small/gregtech/gt.metaitem.98/14.png deleted file mode 100644 index 1f4e9502e2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/15.png b/front/public/images/small/gregtech/gt.metaitem.98/15.png deleted file mode 100644 index 9cb933f65c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/15.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/16.png b/front/public/images/small/gregtech/gt.metaitem.98/16.png deleted file mode 100644 index 2259448606..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/16.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/17.png b/front/public/images/small/gregtech/gt.metaitem.98/17.png deleted file mode 100644 index cabddd4c34..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/17.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/18.png b/front/public/images/small/gregtech/gt.metaitem.98/18.png deleted file mode 100644 index 8c66e628ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/18.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/19.png b/front/public/images/small/gregtech/gt.metaitem.98/19.png deleted file mode 100644 index 707d51b1db..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/19.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/2.png b/front/public/images/small/gregtech/gt.metaitem.98/2.png deleted file mode 100644 index 4103b81472..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/20.png b/front/public/images/small/gregtech/gt.metaitem.98/20.png deleted file mode 100644 index bae771c9bf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/20.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/21.png b/front/public/images/small/gregtech/gt.metaitem.98/21.png deleted file mode 100644 index f8664de9df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/21.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/27.png b/front/public/images/small/gregtech/gt.metaitem.98/27.png deleted file mode 100644 index 46c242120f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/27.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/28.png b/front/public/images/small/gregtech/gt.metaitem.98/28.png deleted file mode 100644 index 90ee9f0db0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/28.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/29.png b/front/public/images/small/gregtech/gt.metaitem.98/29.png deleted file mode 100644 index 7e9dcfbe63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/29.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/3.png b/front/public/images/small/gregtech/gt.metaitem.98/3.png deleted file mode 100644 index eb4545a393..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/3.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/30.png b/front/public/images/small/gregtech/gt.metaitem.98/30.png deleted file mode 100644 index 527cbea861..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/30.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/31.png b/front/public/images/small/gregtech/gt.metaitem.98/31.png deleted file mode 100644 index 0a26a19b99..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/31.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/4.png b/front/public/images/small/gregtech/gt.metaitem.98/4.png deleted file mode 100644 index 0520de2c5d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/5.png b/front/public/images/small/gregtech/gt.metaitem.98/5.png deleted file mode 100644 index 5a02d9b744..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/5.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/6.png b/front/public/images/small/gregtech/gt.metaitem.98/6.png deleted file mode 100644 index 4e06a129f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.98/9.png b/front/public/images/small/gregtech/gt.metaitem.98/9.png deleted file mode 100644 index ee108d4135..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.98/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/100.png b/front/public/images/small/gregtech/gt.metaitem.99/100.png deleted file mode 100644 index 3b7a1da8c6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/101.png b/front/public/images/small/gregtech/gt.metaitem.99/101.png deleted file mode 100644 index 9d99f903fe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/101.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/103.png b/front/public/images/small/gregtech/gt.metaitem.99/103.png deleted file mode 100644 index 51fb1371a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/103.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10642.png b/front/public/images/small/gregtech/gt.metaitem.99/10642.png deleted file mode 100644 index 9cacb09760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10643.png b/front/public/images/small/gregtech/gt.metaitem.99/10643.png deleted file mode 100644 index c57912c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10644.png b/front/public/images/small/gregtech/gt.metaitem.99/10644.png deleted file mode 100644 index ae6278732d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10645.png b/front/public/images/small/gregtech/gt.metaitem.99/10645.png deleted file mode 100644 index 6bc371cbaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10646.png b/front/public/images/small/gregtech/gt.metaitem.99/10646.png deleted file mode 100644 index 5d34f8959d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10677.png b/front/public/images/small/gregtech/gt.metaitem.99/10677.png deleted file mode 100644 index deed8835ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10678.png b/front/public/images/small/gregtech/gt.metaitem.99/10678.png deleted file mode 100644 index 12d1b17554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10735.png b/front/public/images/small/gregtech/gt.metaitem.99/10735.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10739.png b/front/public/images/small/gregtech/gt.metaitem.99/10739.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10740.png b/front/public/images/small/gregtech/gt.metaitem.99/10740.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/10741.png b/front/public/images/small/gregtech/gt.metaitem.99/10741.png deleted file mode 100644 index badd077b42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/10741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/111.png b/front/public/images/small/gregtech/gt.metaitem.99/111.png deleted file mode 100644 index 05b7217845..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/111.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/112.png b/front/public/images/small/gregtech/gt.metaitem.99/112.png deleted file mode 100644 index 73494caa21..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11642.png b/front/public/images/small/gregtech/gt.metaitem.99/11642.png deleted file mode 100644 index 9cacb09760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11643.png b/front/public/images/small/gregtech/gt.metaitem.99/11643.png deleted file mode 100644 index c57912c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11644.png b/front/public/images/small/gregtech/gt.metaitem.99/11644.png deleted file mode 100644 index ae6278732d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11645.png b/front/public/images/small/gregtech/gt.metaitem.99/11645.png deleted file mode 100644 index 6bc371cbaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11646.png b/front/public/images/small/gregtech/gt.metaitem.99/11646.png deleted file mode 100644 index 5d34f8959d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11677.png b/front/public/images/small/gregtech/gt.metaitem.99/11677.png deleted file mode 100644 index deed8835ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11678.png b/front/public/images/small/gregtech/gt.metaitem.99/11678.png deleted file mode 100644 index 12d1b17554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11735.png b/front/public/images/small/gregtech/gt.metaitem.99/11735.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11739.png b/front/public/images/small/gregtech/gt.metaitem.99/11739.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11740.png b/front/public/images/small/gregtech/gt.metaitem.99/11740.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/11741.png b/front/public/images/small/gregtech/gt.metaitem.99/11741.png deleted file mode 100644 index badd077b42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/11741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12642.png b/front/public/images/small/gregtech/gt.metaitem.99/12642.png deleted file mode 100644 index 9cacb09760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12643.png b/front/public/images/small/gregtech/gt.metaitem.99/12643.png deleted file mode 100644 index c57912c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12644.png b/front/public/images/small/gregtech/gt.metaitem.99/12644.png deleted file mode 100644 index ae6278732d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12645.png b/front/public/images/small/gregtech/gt.metaitem.99/12645.png deleted file mode 100644 index 6bc371cbaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12646.png b/front/public/images/small/gregtech/gt.metaitem.99/12646.png deleted file mode 100644 index 5d34f8959d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12677.png b/front/public/images/small/gregtech/gt.metaitem.99/12677.png deleted file mode 100644 index deed8835ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12678.png b/front/public/images/small/gregtech/gt.metaitem.99/12678.png deleted file mode 100644 index 12d1b17554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12735.png b/front/public/images/small/gregtech/gt.metaitem.99/12735.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12739.png b/front/public/images/small/gregtech/gt.metaitem.99/12739.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12740.png b/front/public/images/small/gregtech/gt.metaitem.99/12740.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/12741.png b/front/public/images/small/gregtech/gt.metaitem.99/12741.png deleted file mode 100644 index badd077b42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/12741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/129.png b/front/public/images/small/gregtech/gt.metaitem.99/129.png deleted file mode 100644 index aa02f1828c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/129.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/131.png b/front/public/images/small/gregtech/gt.metaitem.99/131.png deleted file mode 100644 index 81c94875dd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/131.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/134.png b/front/public/images/small/gregtech/gt.metaitem.99/134.png deleted file mode 100644 index 1151b7c81d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/134.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13642.png b/front/public/images/small/gregtech/gt.metaitem.99/13642.png deleted file mode 100644 index 9cacb09760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13643.png b/front/public/images/small/gregtech/gt.metaitem.99/13643.png deleted file mode 100644 index c57912c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13644.png b/front/public/images/small/gregtech/gt.metaitem.99/13644.png deleted file mode 100644 index ae6278732d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13645.png b/front/public/images/small/gregtech/gt.metaitem.99/13645.png deleted file mode 100644 index 6bc371cbaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13646.png b/front/public/images/small/gregtech/gt.metaitem.99/13646.png deleted file mode 100644 index 5d34f8959d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13677.png b/front/public/images/small/gregtech/gt.metaitem.99/13677.png deleted file mode 100644 index deed8835ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13678.png b/front/public/images/small/gregtech/gt.metaitem.99/13678.png deleted file mode 100644 index 12d1b17554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13735.png b/front/public/images/small/gregtech/gt.metaitem.99/13735.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13739.png b/front/public/images/small/gregtech/gt.metaitem.99/13739.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13740.png b/front/public/images/small/gregtech/gt.metaitem.99/13740.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/13741.png b/front/public/images/small/gregtech/gt.metaitem.99/13741.png deleted file mode 100644 index badd077b42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/13741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/139.png b/front/public/images/small/gregtech/gt.metaitem.99/139.png deleted file mode 100644 index 742f14e641..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/139.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/141.png b/front/public/images/small/gregtech/gt.metaitem.99/141.png deleted file mode 100644 index fafd9cb4b1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/141.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/143.png b/front/public/images/small/gregtech/gt.metaitem.99/143.png deleted file mode 100644 index 9d989ee3da..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/143.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14642.png b/front/public/images/small/gregtech/gt.metaitem.99/14642.png deleted file mode 100644 index 9cacb09760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14643.png b/front/public/images/small/gregtech/gt.metaitem.99/14643.png deleted file mode 100644 index c57912c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14644.png b/front/public/images/small/gregtech/gt.metaitem.99/14644.png deleted file mode 100644 index ae6278732d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14645.png b/front/public/images/small/gregtech/gt.metaitem.99/14645.png deleted file mode 100644 index 6bc371cbaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14646.png b/front/public/images/small/gregtech/gt.metaitem.99/14646.png deleted file mode 100644 index 5d34f8959d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14677.png b/front/public/images/small/gregtech/gt.metaitem.99/14677.png deleted file mode 100644 index deed8835ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14678.png b/front/public/images/small/gregtech/gt.metaitem.99/14678.png deleted file mode 100644 index 12d1b17554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14735.png b/front/public/images/small/gregtech/gt.metaitem.99/14735.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14739.png b/front/public/images/small/gregtech/gt.metaitem.99/14739.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14740.png b/front/public/images/small/gregtech/gt.metaitem.99/14740.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/14741.png b/front/public/images/small/gregtech/gt.metaitem.99/14741.png deleted file mode 100644 index badd077b42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/14741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15642.png b/front/public/images/small/gregtech/gt.metaitem.99/15642.png deleted file mode 100644 index 9cacb09760..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15642.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15643.png b/front/public/images/small/gregtech/gt.metaitem.99/15643.png deleted file mode 100644 index c57912c761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15643.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15644.png b/front/public/images/small/gregtech/gt.metaitem.99/15644.png deleted file mode 100644 index ae6278732d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15644.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15645.png b/front/public/images/small/gregtech/gt.metaitem.99/15645.png deleted file mode 100644 index 6bc371cbaf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15645.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15646.png b/front/public/images/small/gregtech/gt.metaitem.99/15646.png deleted file mode 100644 index 5d34f8959d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15646.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15677.png b/front/public/images/small/gregtech/gt.metaitem.99/15677.png deleted file mode 100644 index deed8835ca..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15677.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15678.png b/front/public/images/small/gregtech/gt.metaitem.99/15678.png deleted file mode 100644 index 12d1b17554..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15678.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15735.png b/front/public/images/small/gregtech/gt.metaitem.99/15735.png deleted file mode 100644 index 8414b69639..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15735.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15739.png b/front/public/images/small/gregtech/gt.metaitem.99/15739.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15739.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15740.png b/front/public/images/small/gregtech/gt.metaitem.99/15740.png deleted file mode 100644 index 2938c223ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15740.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/15741.png b/front/public/images/small/gregtech/gt.metaitem.99/15741.png deleted file mode 100644 index badd077b42..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/15741.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/18.png b/front/public/images/small/gregtech/gt.metaitem.99/18.png deleted file mode 100644 index 5ca038cda4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/18.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/19.png b/front/public/images/small/gregtech/gt.metaitem.99/19.png deleted file mode 100644 index c6473bc33c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/19.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/20.png b/front/public/images/small/gregtech/gt.metaitem.99/20.png deleted file mode 100644 index b58acff95e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/20.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/201.png b/front/public/images/small/gregtech/gt.metaitem.99/201.png deleted file mode 100644 index 0482b8d4d1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/201.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/202.png b/front/public/images/small/gregtech/gt.metaitem.99/202.png deleted file mode 100644 index 1ecbb66251..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/202.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/203.png b/front/public/images/small/gregtech/gt.metaitem.99/203.png deleted file mode 100644 index 21292d43e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/203.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/205.png b/front/public/images/small/gregtech/gt.metaitem.99/205.png deleted file mode 100644 index 2724abfde5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/205.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/25.png b/front/public/images/small/gregtech/gt.metaitem.99/25.png deleted file mode 100644 index ceb0ad0663..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/25.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/27.png b/front/public/images/small/gregtech/gt.metaitem.99/27.png deleted file mode 100644 index da264b027d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/27.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/28.png b/front/public/images/small/gregtech/gt.metaitem.99/28.png deleted file mode 100644 index f790968c33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/28.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/29.png b/front/public/images/small/gregtech/gt.metaitem.99/29.png deleted file mode 100644 index 7087387810..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/29.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/30.png b/front/public/images/small/gregtech/gt.metaitem.99/30.png deleted file mode 100644 index d89820e9d3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/30.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/300.png b/front/public/images/small/gregtech/gt.metaitem.99/300.png deleted file mode 100644 index 11184ba2d2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/300.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/301.png b/front/public/images/small/gregtech/gt.metaitem.99/301.png deleted file mode 100644 index c6e1ba2b4e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/301.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/302.png b/front/public/images/small/gregtech/gt.metaitem.99/302.png deleted file mode 100644 index 2f8180bb26..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/302.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/303.png b/front/public/images/small/gregtech/gt.metaitem.99/303.png deleted file mode 100644 index a7f686b3f8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/303.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/304.png b/front/public/images/small/gregtech/gt.metaitem.99/304.png deleted file mode 100644 index 00ce610e33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/304.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/305.png b/front/public/images/small/gregtech/gt.metaitem.99/305.png deleted file mode 100644 index 6deeb7faed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/305.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/306.png b/front/public/images/small/gregtech/gt.metaitem.99/306.png deleted file mode 100644 index 96062dbb5e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/306.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/307.png b/front/public/images/small/gregtech/gt.metaitem.99/307.png deleted file mode 100644 index 00ce610e33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/307.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/308.png b/front/public/images/small/gregtech/gt.metaitem.99/308.png deleted file mode 100644 index 29f7cd7061..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/308.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/309.png b/front/public/images/small/gregtech/gt.metaitem.99/309.png deleted file mode 100644 index e9c36e5941..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/309.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/31.png b/front/public/images/small/gregtech/gt.metaitem.99/31.png deleted file mode 100644 index aa02f1828c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/31.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/310.png b/front/public/images/small/gregtech/gt.metaitem.99/310.png deleted file mode 100644 index 6a4ed06e6a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/310.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/311.png b/front/public/images/small/gregtech/gt.metaitem.99/311.png deleted file mode 100644 index 38911942cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/311.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/312.png b/front/public/images/small/gregtech/gt.metaitem.99/312.png deleted file mode 100644 index 23a486f182..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/312.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/313.png b/front/public/images/small/gregtech/gt.metaitem.99/313.png deleted file mode 100644 index 54941e9d06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/313.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/314.png b/front/public/images/small/gregtech/gt.metaitem.99/314.png deleted file mode 100644 index cc9db4f2a3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/314.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/315.png b/front/public/images/small/gregtech/gt.metaitem.99/315.png deleted file mode 100644 index 9427693382..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/315.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/316.png b/front/public/images/small/gregtech/gt.metaitem.99/316.png deleted file mode 100644 index d312d7ea53..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/316.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/317.png b/front/public/images/small/gregtech/gt.metaitem.99/317.png deleted file mode 100644 index 5aa4fe2541..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/317.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/318.png b/front/public/images/small/gregtech/gt.metaitem.99/318.png deleted file mode 100644 index bfe217446d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/318.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/319.png b/front/public/images/small/gregtech/gt.metaitem.99/319.png deleted file mode 100644 index 676edb5196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/319.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/32.png b/front/public/images/small/gregtech/gt.metaitem.99/32.png deleted file mode 100644 index 51fb1371a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/32.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/320.png b/front/public/images/small/gregtech/gt.metaitem.99/320.png deleted file mode 100644 index b5d44e877a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/320.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/321.png b/front/public/images/small/gregtech/gt.metaitem.99/321.png deleted file mode 100644 index a967c82ca1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/321.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/323.png b/front/public/images/small/gregtech/gt.metaitem.99/323.png deleted file mode 100644 index 5e46fe4f0c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/323.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/324.png b/front/public/images/small/gregtech/gt.metaitem.99/324.png deleted file mode 100644 index 318a0b1b37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/324.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/325.png b/front/public/images/small/gregtech/gt.metaitem.99/325.png deleted file mode 100644 index beac61d28e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/325.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/326.png b/front/public/images/small/gregtech/gt.metaitem.99/326.png deleted file mode 100644 index 4c0c640e59..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/326.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/327.png b/front/public/images/small/gregtech/gt.metaitem.99/327.png deleted file mode 100644 index 1a1af3e8cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/327.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/328.png b/front/public/images/small/gregtech/gt.metaitem.99/328.png deleted file mode 100644 index 676edb5196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/328.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/329.png b/front/public/images/small/gregtech/gt.metaitem.99/329.png deleted file mode 100644 index a4a209c8b2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/329.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/33.png b/front/public/images/small/gregtech/gt.metaitem.99/33.png deleted file mode 100644 index ff0eff63a6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/33.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/330.png b/front/public/images/small/gregtech/gt.metaitem.99/330.png deleted file mode 100644 index 7fafa45747..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/330.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/331.png b/front/public/images/small/gregtech/gt.metaitem.99/331.png deleted file mode 100644 index 64ed947624..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/331.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/333.png b/front/public/images/small/gregtech/gt.metaitem.99/333.png deleted file mode 100644 index 4b3122b399..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/333.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/334.png b/front/public/images/small/gregtech/gt.metaitem.99/334.png deleted file mode 100644 index 58ec904138..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/334.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/335.png b/front/public/images/small/gregtech/gt.metaitem.99/335.png deleted file mode 100644 index dec661d18f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/335.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/336.png b/front/public/images/small/gregtech/gt.metaitem.99/336.png deleted file mode 100644 index e278adce04..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/336.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/337.png b/front/public/images/small/gregtech/gt.metaitem.99/337.png deleted file mode 100644 index e96ddb64eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/337.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/338.png b/front/public/images/small/gregtech/gt.metaitem.99/338.png deleted file mode 100644 index e18de3738f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/338.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/34.png b/front/public/images/small/gregtech/gt.metaitem.99/34.png deleted file mode 100644 index ff41424636..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/34.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/340.png b/front/public/images/small/gregtech/gt.metaitem.99/340.png deleted file mode 100644 index 69dd662dfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/340.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/341.png b/front/public/images/small/gregtech/gt.metaitem.99/341.png deleted file mode 100644 index 10973926ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/341.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/342.png b/front/public/images/small/gregtech/gt.metaitem.99/342.png deleted file mode 100644 index 625349c3bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/342.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/343.png b/front/public/images/small/gregtech/gt.metaitem.99/343.png deleted file mode 100644 index 4959586e06..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/343.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/344.png b/front/public/images/small/gregtech/gt.metaitem.99/344.png deleted file mode 100644 index 9aae9fc46e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/344.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/345.png b/front/public/images/small/gregtech/gt.metaitem.99/345.png deleted file mode 100644 index 52a86c4d3f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/345.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/346.png b/front/public/images/small/gregtech/gt.metaitem.99/346.png deleted file mode 100644 index 94227890aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/346.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/348.png b/front/public/images/small/gregtech/gt.metaitem.99/348.png deleted file mode 100644 index f5ced7cc1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/348.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/349.png b/front/public/images/small/gregtech/gt.metaitem.99/349.png deleted file mode 100644 index 421b0a40be..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/349.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/35.png b/front/public/images/small/gregtech/gt.metaitem.99/35.png deleted file mode 100644 index 8f43c09438..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/35.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/350.png b/front/public/images/small/gregtech/gt.metaitem.99/350.png deleted file mode 100644 index 553aef7758..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/350.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/351.png b/front/public/images/small/gregtech/gt.metaitem.99/351.png deleted file mode 100644 index 8b47328a23..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/351.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/352.png b/front/public/images/small/gregtech/gt.metaitem.99/352.png deleted file mode 100644 index 103a07d76c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/352.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/353.png b/front/public/images/small/gregtech/gt.metaitem.99/353.png deleted file mode 100644 index 4ea63d6c3b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/353.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/354.png b/front/public/images/small/gregtech/gt.metaitem.99/354.png deleted file mode 100644 index 17b1fcdbcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/354.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/355.png b/front/public/images/small/gregtech/gt.metaitem.99/355.png deleted file mode 100644 index 22c017be30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/355.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/356.png b/front/public/images/small/gregtech/gt.metaitem.99/356.png deleted file mode 100644 index c050471179..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/356.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/357.png b/front/public/images/small/gregtech/gt.metaitem.99/357.png deleted file mode 100644 index 7f5d174506..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/357.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/358.png b/front/public/images/small/gregtech/gt.metaitem.99/358.png deleted file mode 100644 index a3f223ef4c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/358.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/359.png b/front/public/images/small/gregtech/gt.metaitem.99/359.png deleted file mode 100644 index 4356c79f20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/359.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/36.png b/front/public/images/small/gregtech/gt.metaitem.99/36.png deleted file mode 100644 index 3b52921e7b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/36.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/360.png b/front/public/images/small/gregtech/gt.metaitem.99/360.png deleted file mode 100644 index 68f1926df9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/360.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/361.png b/front/public/images/small/gregtech/gt.metaitem.99/361.png deleted file mode 100644 index e3d9c27b70..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/361.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/362.png b/front/public/images/small/gregtech/gt.metaitem.99/362.png deleted file mode 100644 index e4503581f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/362.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/363.png b/front/public/images/small/gregtech/gt.metaitem.99/363.png deleted file mode 100644 index 51fb1371a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/363.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/364.png b/front/public/images/small/gregtech/gt.metaitem.99/364.png deleted file mode 100644 index 099abd7854..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/364.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/365.png b/front/public/images/small/gregtech/gt.metaitem.99/365.png deleted file mode 100644 index ea19b4da01..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/365.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/366.png b/front/public/images/small/gregtech/gt.metaitem.99/366.png deleted file mode 100644 index cad2c0f1c5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/366.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/367.png b/front/public/images/small/gregtech/gt.metaitem.99/367.png deleted file mode 100644 index 095b571e56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/367.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/368.png b/front/public/images/small/gregtech/gt.metaitem.99/368.png deleted file mode 100644 index 53f8b909b3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/368.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/369.png b/front/public/images/small/gregtech/gt.metaitem.99/369.png deleted file mode 100644 index 01bd972ea7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/369.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/37.png b/front/public/images/small/gregtech/gt.metaitem.99/37.png deleted file mode 100644 index 428ba77354..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/37.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/370.png b/front/public/images/small/gregtech/gt.metaitem.99/370.png deleted file mode 100644 index 74ff92da6e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/370.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/371.png b/front/public/images/small/gregtech/gt.metaitem.99/371.png deleted file mode 100644 index 0d612f8677..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/371.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/372.png b/front/public/images/small/gregtech/gt.metaitem.99/372.png deleted file mode 100644 index 183d302579..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/372.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/373.png b/front/public/images/small/gregtech/gt.metaitem.99/373.png deleted file mode 100644 index c3b9fc5997..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/373.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/374.png b/front/public/images/small/gregtech/gt.metaitem.99/374.png deleted file mode 100644 index a3c2f55365..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/374.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/378.png b/front/public/images/small/gregtech/gt.metaitem.99/378.png deleted file mode 100644 index 1590e2cbbf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/378.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/379.png b/front/public/images/small/gregtech/gt.metaitem.99/379.png deleted file mode 100644 index df1479fd24..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/379.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/380.png b/front/public/images/small/gregtech/gt.metaitem.99/380.png deleted file mode 100644 index a0c52eba1d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/380.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/381.png b/front/public/images/small/gregtech/gt.metaitem.99/381.png deleted file mode 100644 index 0b288bbdbb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/381.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/382.png b/front/public/images/small/gregtech/gt.metaitem.99/382.png deleted file mode 100644 index 2d5289d0f3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/382.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/383.png b/front/public/images/small/gregtech/gt.metaitem.99/383.png deleted file mode 100644 index 0f7339195e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/383.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/384.png b/front/public/images/small/gregtech/gt.metaitem.99/384.png deleted file mode 100644 index 07c9595b47..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/384.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/385.png b/front/public/images/small/gregtech/gt.metaitem.99/385.png deleted file mode 100644 index e3bfa29cdd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/385.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/386.png b/front/public/images/small/gregtech/gt.metaitem.99/386.png deleted file mode 100644 index 1b40700ba3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/386.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/387.png b/front/public/images/small/gregtech/gt.metaitem.99/387.png deleted file mode 100644 index 3709517fa4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/387.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/388.png b/front/public/images/small/gregtech/gt.metaitem.99/388.png deleted file mode 100644 index 7087387810..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/388.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/389.png b/front/public/images/small/gregtech/gt.metaitem.99/389.png deleted file mode 100644 index 395943b807..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/389.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/39.png b/front/public/images/small/gregtech/gt.metaitem.99/39.png deleted file mode 100644 index 676edb5196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/39.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/390.png b/front/public/images/small/gregtech/gt.metaitem.99/390.png deleted file mode 100644 index a06eb980a4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/390.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/391.png b/front/public/images/small/gregtech/gt.metaitem.99/391.png deleted file mode 100644 index aa822066b6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/391.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/392.png b/front/public/images/small/gregtech/gt.metaitem.99/392.png deleted file mode 100644 index 9456730f37..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/392.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/393.png b/front/public/images/small/gregtech/gt.metaitem.99/393.png deleted file mode 100644 index 31f58dbf56..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/393.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/394.png b/front/public/images/small/gregtech/gt.metaitem.99/394.png deleted file mode 100644 index 676edb5196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/394.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/395.png b/front/public/images/small/gregtech/gt.metaitem.99/395.png deleted file mode 100644 index 7087387810..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/395.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/397.png b/front/public/images/small/gregtech/gt.metaitem.99/397.png deleted file mode 100644 index 5a2271b89e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/397.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/398.png b/front/public/images/small/gregtech/gt.metaitem.99/398.png deleted file mode 100644 index d8d26226b7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/398.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/399.png b/front/public/images/small/gregtech/gt.metaitem.99/399.png deleted file mode 100644 index 7615ca5903..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/399.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/400.png b/front/public/images/small/gregtech/gt.metaitem.99/400.png deleted file mode 100644 index 94fee1d77d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/400.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/401.png b/front/public/images/small/gregtech/gt.metaitem.99/401.png deleted file mode 100644 index e51ffbf3f0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/401.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/402.png b/front/public/images/small/gregtech/gt.metaitem.99/402.png deleted file mode 100644 index cff629aad3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/402.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/403.png b/front/public/images/small/gregtech/gt.metaitem.99/403.png deleted file mode 100644 index 897b87249a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/403.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/404.png b/front/public/images/small/gregtech/gt.metaitem.99/404.png deleted file mode 100644 index 512781a4ed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/404.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/405.png b/front/public/images/small/gregtech/gt.metaitem.99/405.png deleted file mode 100644 index 23906cb5dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/405.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/406.png b/front/public/images/small/gregtech/gt.metaitem.99/406.png deleted file mode 100644 index 3a1458e5cc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/406.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/407.png b/front/public/images/small/gregtech/gt.metaitem.99/407.png deleted file mode 100644 index ff01d211df..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/407.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/408.png b/front/public/images/small/gregtech/gt.metaitem.99/408.png deleted file mode 100644 index 7dcf3cf3d4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/408.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/43.png b/front/public/images/small/gregtech/gt.metaitem.99/43.png deleted file mode 100644 index 055d6b87b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/43.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/45.png b/front/public/images/small/gregtech/gt.metaitem.99/45.png deleted file mode 100644 index 7467314ee2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/45.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/47.png b/front/public/images/small/gregtech/gt.metaitem.99/47.png deleted file mode 100644 index ff81d07331..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/47.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/470.png b/front/public/images/small/gregtech/gt.metaitem.99/470.png deleted file mode 100644 index dfdfb20210..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/470.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/471.png b/front/public/images/small/gregtech/gt.metaitem.99/471.png deleted file mode 100644 index 9473c90f41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/471.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/472.png b/front/public/images/small/gregtech/gt.metaitem.99/472.png deleted file mode 100644 index 7087387810..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/472.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/473.png b/front/public/images/small/gregtech/gt.metaitem.99/473.png deleted file mode 100644 index 58ec904138..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/473.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/48.png b/front/public/images/small/gregtech/gt.metaitem.99/48.png deleted file mode 100644 index 766139ef92..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/48.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/485.png b/front/public/images/small/gregtech/gt.metaitem.99/485.png deleted file mode 100644 index 554e7848e8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/485.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/488.png b/front/public/images/small/gregtech/gt.metaitem.99/488.png deleted file mode 100644 index 58dfb1c2af..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/488.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/489.png b/front/public/images/small/gregtech/gt.metaitem.99/489.png deleted file mode 100644 index 8ea05890fc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/489.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/52.png b/front/public/images/small/gregtech/gt.metaitem.99/52.png deleted file mode 100644 index 6deeb7faed..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/52.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/521.png b/front/public/images/small/gregtech/gt.metaitem.99/521.png deleted file mode 100644 index bfe217446d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/521.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/529.png b/front/public/images/small/gregtech/gt.metaitem.99/529.png deleted file mode 100644 index 65e1a71b40..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/529.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/54.png b/front/public/images/small/gregtech/gt.metaitem.99/54.png deleted file mode 100644 index 428ba77354..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/54.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/56.png b/front/public/images/small/gregtech/gt.metaitem.99/56.png deleted file mode 100644 index 1dec18302b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/56.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/57.png b/front/public/images/small/gregtech/gt.metaitem.99/57.png deleted file mode 100644 index 9473c90f41..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/57.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/576.png b/front/public/images/small/gregtech/gt.metaitem.99/576.png deleted file mode 100644 index 01b3740456..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/576.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/58.png b/front/public/images/small/gregtech/gt.metaitem.99/58.png deleted file mode 100644 index 1678a1a1ac..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/58.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/581.png b/front/public/images/small/gregtech/gt.metaitem.99/581.png deleted file mode 100644 index 4352b812c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/581.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/582.png b/front/public/images/small/gregtech/gt.metaitem.99/582.png deleted file mode 100644 index 01b1f79535..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/582.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/583.png b/front/public/images/small/gregtech/gt.metaitem.99/583.png deleted file mode 100644 index 0230ee2a7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/583.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/585.png b/front/public/images/small/gregtech/gt.metaitem.99/585.png deleted file mode 100644 index 606a6a8d39..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/585.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/586.png b/front/public/images/small/gregtech/gt.metaitem.99/586.png deleted file mode 100644 index 411cd32426..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/586.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/588.png b/front/public/images/small/gregtech/gt.metaitem.99/588.png deleted file mode 100644 index b28a84da30..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/588.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/59.png b/front/public/images/small/gregtech/gt.metaitem.99/59.png deleted file mode 100644 index 2eb2aca76d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/59.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/599.png b/front/public/images/small/gregtech/gt.metaitem.99/599.png deleted file mode 100644 index a8175a00e7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/599.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/6.png b/front/public/images/small/gregtech/gt.metaitem.99/6.png deleted file mode 100644 index 03b558a3a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/602.png b/front/public/images/small/gregtech/gt.metaitem.99/602.png deleted file mode 100644 index a131fe5ef3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/602.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/610.png b/front/public/images/small/gregtech/gt.metaitem.99/610.png deleted file mode 100644 index dbf9eb2bcf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/610.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/611.png b/front/public/images/small/gregtech/gt.metaitem.99/611.png deleted file mode 100644 index 52df13a78d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/611.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/613.png b/front/public/images/small/gregtech/gt.metaitem.99/613.png deleted file mode 100644 index daa4299e6f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/613.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/62.png b/front/public/images/small/gregtech/gt.metaitem.99/62.png deleted file mode 100644 index 81dcab52c0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/62.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/63.png b/front/public/images/small/gregtech/gt.metaitem.99/63.png deleted file mode 100644 index 676edb5196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/63.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/631.png b/front/public/images/small/gregtech/gt.metaitem.99/631.png deleted file mode 100644 index 9203ad5ddf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/631.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/635.png b/front/public/images/small/gregtech/gt.metaitem.99/635.png deleted file mode 100644 index d42633c134..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/635.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/636.png b/front/public/images/small/gregtech/gt.metaitem.99/636.png deleted file mode 100644 index 5ab7abb629..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/636.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/64.png b/front/public/images/small/gregtech/gt.metaitem.99/64.png deleted file mode 100644 index a87cd06517..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/64.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/649.png b/front/public/images/small/gregtech/gt.metaitem.99/649.png deleted file mode 100644 index 2108cfa881..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/649.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/65.png b/front/public/images/small/gregtech/gt.metaitem.99/65.png deleted file mode 100644 index 1a92a7e51a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/65.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/66.png b/front/public/images/small/gregtech/gt.metaitem.99/66.png deleted file mode 100644 index eb5726cabe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/66.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/67.png b/front/public/images/small/gregtech/gt.metaitem.99/67.png deleted file mode 100644 index 58ec904138..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/67.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/68.png b/front/public/images/small/gregtech/gt.metaitem.99/68.png deleted file mode 100644 index 766b187169..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/68.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/69.png b/front/public/images/small/gregtech/gt.metaitem.99/69.png deleted file mode 100644 index a0147cb60c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/69.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/70.png b/front/public/images/small/gregtech/gt.metaitem.99/70.png deleted file mode 100644 index aa0502235d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/70.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/71.png b/front/public/images/small/gregtech/gt.metaitem.99/71.png deleted file mode 100644 index d6d7384890..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/71.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/72.png b/front/public/images/small/gregtech/gt.metaitem.99/72.png deleted file mode 100644 index 676edb5196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/72.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/73.png b/front/public/images/small/gregtech/gt.metaitem.99/73.png deleted file mode 100644 index 5bd5c838e0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/73.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/74.png b/front/public/images/small/gregtech/gt.metaitem.99/74.png deleted file mode 100644 index 655b5c44dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/74.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/75.png b/front/public/images/small/gregtech/gt.metaitem.99/75.png deleted file mode 100644 index 9ee4e5a53d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/75.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/76.png b/front/public/images/small/gregtech/gt.metaitem.99/76.png deleted file mode 100644 index fd1285c93a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/76.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/765.png b/front/public/images/small/gregtech/gt.metaitem.99/765.png deleted file mode 100644 index 5b88b03b63..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/765.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/77.png b/front/public/images/small/gregtech/gt.metaitem.99/77.png deleted file mode 100644 index fdbe2f8fc0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/77.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/770.png b/front/public/images/small/gregtech/gt.metaitem.99/770.png deleted file mode 100644 index 4a8efd8f7f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/770.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/772.png b/front/public/images/small/gregtech/gt.metaitem.99/772.png deleted file mode 100644 index a0bf897bfe..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/772.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/78.png b/front/public/images/small/gregtech/gt.metaitem.99/78.png deleted file mode 100644 index 496b090d7d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/78.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/8.png b/front/public/images/small/gregtech/gt.metaitem.99/8.png deleted file mode 100644 index ee2e231646..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/80.png b/front/public/images/small/gregtech/gt.metaitem.99/80.png deleted file mode 100644 index e54ec3ba2f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/80.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/801.png b/front/public/images/small/gregtech/gt.metaitem.99/801.png deleted file mode 100644 index 4393503e70..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/801.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/803.png b/front/public/images/small/gregtech/gt.metaitem.99/803.png deleted file mode 100644 index aa02f1828c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/803.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/804.png b/front/public/images/small/gregtech/gt.metaitem.99/804.png deleted file mode 100644 index 9a2e3a73b9..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/804.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/81.png b/front/public/images/small/gregtech/gt.metaitem.99/81.png deleted file mode 100644 index 7087387810..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/81.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/810.png b/front/public/images/small/gregtech/gt.metaitem.99/810.png deleted file mode 100644 index d1fdad9aa4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/810.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/811.png b/front/public/images/small/gregtech/gt.metaitem.99/811.png deleted file mode 100644 index bfe217446d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/811.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/812.png b/front/public/images/small/gregtech/gt.metaitem.99/812.png deleted file mode 100644 index 9efd93dd43..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/812.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/829.png b/front/public/images/small/gregtech/gt.metaitem.99/829.png deleted file mode 100644 index 858455f5a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/829.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/83.png b/front/public/images/small/gregtech/gt.metaitem.99/83.png deleted file mode 100644 index 2786b4bbdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/83.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/84.png b/front/public/images/small/gregtech/gt.metaitem.99/84.png deleted file mode 100644 index 3eb501610c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/84.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/85.png b/front/public/images/small/gregtech/gt.metaitem.99/85.png deleted file mode 100644 index 37fe2aa3ff..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/85.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/856.png b/front/public/images/small/gregtech/gt.metaitem.99/856.png deleted file mode 100644 index 4b9201ee57..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/856.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/86.png b/front/public/images/small/gregtech/gt.metaitem.99/86.png deleted file mode 100644 index 84bb225ee5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/86.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/868.png b/front/public/images/small/gregtech/gt.metaitem.99/868.png deleted file mode 100644 index 150937d9a1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/868.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/874.png b/front/public/images/small/gregtech/gt.metaitem.99/874.png deleted file mode 100644 index 51fb1371a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/874.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/880.png b/front/public/images/small/gregtech/gt.metaitem.99/880.png deleted file mode 100644 index 411cd32426..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/880.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/884.png b/front/public/images/small/gregtech/gt.metaitem.99/884.png deleted file mode 100644 index beac61d28e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/884.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/89.png b/front/public/images/small/gregtech/gt.metaitem.99/89.png deleted file mode 100644 index 0a75328b51..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/89.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/890.png b/front/public/images/small/gregtech/gt.metaitem.99/890.png deleted file mode 100644 index a4f3cf2928..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/890.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/894.png b/front/public/images/small/gregtech/gt.metaitem.99/894.png deleted file mode 100644 index 7b51153b87..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/894.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/9.png b/front/public/images/small/gregtech/gt.metaitem.99/9.png deleted file mode 100644 index fe49e25c08..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/9.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/90.png b/front/public/images/small/gregtech/gt.metaitem.99/90.png deleted file mode 100644 index 8589d0631d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/90.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/912.png b/front/public/images/small/gregtech/gt.metaitem.99/912.png deleted file mode 100644 index e5a7cdd783..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/912.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/913.png b/front/public/images/small/gregtech/gt.metaitem.99/913.png deleted file mode 100644 index f5ced7cc1c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/913.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/947.png b/front/public/images/small/gregtech/gt.metaitem.99/947.png deleted file mode 100644 index f35a522b2b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/947.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/951.png b/front/public/images/small/gregtech/gt.metaitem.99/951.png deleted file mode 100644 index 88e9800b15..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/951.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/952.png b/front/public/images/small/gregtech/gt.metaitem.99/952.png deleted file mode 100644 index 595c3afcf3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/952.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/956.png b/front/public/images/small/gregtech/gt.metaitem.99/956.png deleted file mode 100644 index 5b0fa382bb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/956.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/96.png b/front/public/images/small/gregtech/gt.metaitem.99/96.png deleted file mode 100644 index edbc5c7400..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/96.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/966.png b/front/public/images/small/gregtech/gt.metaitem.99/966.png deleted file mode 100644 index 919495c80b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/966.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/97.png b/front/public/images/small/gregtech/gt.metaitem.99/97.png deleted file mode 100644 index cc46832082..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/97.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/970.png b/front/public/images/small/gregtech/gt.metaitem.99/970.png deleted file mode 100644 index d61c2eaea1..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/970.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/974.png b/front/public/images/small/gregtech/gt.metaitem.99/974.png deleted file mode 100644 index 7812a4afe4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/974.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/975.png b/front/public/images/small/gregtech/gt.metaitem.99/975.png deleted file mode 100644 index 17c5dd4338..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/975.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/976.png b/front/public/images/small/gregtech/gt.metaitem.99/976.png deleted file mode 100644 index 889062c2a2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/976.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/977.png b/front/public/images/small/gregtech/gt.metaitem.99/977.png deleted file mode 100644 index 1c7f6001dc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/977.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/978.png b/front/public/images/small/gregtech/gt.metaitem.99/978.png deleted file mode 100644 index 82283b174a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/978.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/979.png b/front/public/images/small/gregtech/gt.metaitem.99/979.png deleted file mode 100644 index 22828d5789..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/979.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/98.png b/front/public/images/small/gregtech/gt.metaitem.99/98.png deleted file mode 100644 index a21aa506aa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/98.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/980.png b/front/public/images/small/gregtech/gt.metaitem.99/980.png deleted file mode 100644 index 28c98995f5..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/980.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/981.png b/front/public/images/small/gregtech/gt.metaitem.99/981.png deleted file mode 100644 index 78ed4df5a7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/981.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/982.png b/front/public/images/small/gregtech/gt.metaitem.99/982.png deleted file mode 100644 index 805b36899e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/982.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/984.png b/front/public/images/small/gregtech/gt.metaitem.99/984.png deleted file mode 100644 index 676edb5196..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/984.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/985.png b/front/public/images/small/gregtech/gt.metaitem.99/985.png deleted file mode 100644 index d5e8cd3430..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/985.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/986.png b/front/public/images/small/gregtech/gt.metaitem.99/986.png deleted file mode 100644 index 76f9442964..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/986.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/987.png b/front/public/images/small/gregtech/gt.metaitem.99/987.png deleted file mode 100644 index 8bd6da33e6..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/987.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/988.png b/front/public/images/small/gregtech/gt.metaitem.99/988.png deleted file mode 100644 index d1edf92611..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/988.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/989.png b/front/public/images/small/gregtech/gt.metaitem.99/989.png deleted file mode 100644 index 698a12eb0e..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/989.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/990.png b/front/public/images/small/gregtech/gt.metaitem.99/990.png deleted file mode 100644 index ab12e0d381..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/990.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/991.png b/front/public/images/small/gregtech/gt.metaitem.99/991.png deleted file mode 100644 index bac48b795f..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/991.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metaitem.99/992.png b/front/public/images/small/gregtech/gt.metaitem.99/992.png deleted file mode 100644 index 1e2925f863..0000000000 Binary files a/front/public/images/small/gregtech/gt.metaitem.99/992.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/0.png b/front/public/images/small/gregtech/gt.metatool.01/0.png deleted file mode 100644 index c1707defd0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/10.png b/front/public/images/small/gregtech/gt.metatool.01/10.png deleted file mode 100644 index b433ab1dfa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/10.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/100.png b/front/public/images/small/gregtech/gt.metatool.01/100.png deleted file mode 100644 index 8c60bc68bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/100.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/102.png b/front/public/images/small/gregtech/gt.metatool.01/102.png deleted file mode 100644 index 8c60bc68bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/102.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/104.png b/front/public/images/small/gregtech/gt.metatool.01/104.png deleted file mode 100644 index 8c60bc68bd..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/104.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/110.png b/front/public/images/small/gregtech/gt.metatool.01/110.png deleted file mode 100644 index 4652ae8721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/110.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/112.png b/front/public/images/small/gregtech/gt.metatool.01/112.png deleted file mode 100644 index 4652ae8721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/112.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/114.png b/front/public/images/small/gregtech/gt.metatool.01/114.png deleted file mode 100644 index 4652ae8721..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/114.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/12.png b/front/public/images/small/gregtech/gt.metatool.01/12.png deleted file mode 100644 index c99aab608d..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/12.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/120.png b/front/public/images/small/gregtech/gt.metatool.01/120.png deleted file mode 100644 index b90968c849..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/120.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/122.png b/front/public/images/small/gregtech/gt.metatool.01/122.png deleted file mode 100644 index b90968c849..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/122.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/124.png b/front/public/images/small/gregtech/gt.metatool.01/124.png deleted file mode 100644 index b90968c849..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/124.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/130.png b/front/public/images/small/gregtech/gt.metatool.01/130.png deleted file mode 100644 index 44659a104a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/130.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/14.png b/front/public/images/small/gregtech/gt.metatool.01/14.png deleted file mode 100644 index 41dec19bf0..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/14.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/140.png b/front/public/images/small/gregtech/gt.metatool.01/140.png deleted file mode 100644 index f51f00b873..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/140.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/142.png b/front/public/images/small/gregtech/gt.metatool.01/142.png deleted file mode 100644 index f51f00b873..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/142.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/144.png b/front/public/images/small/gregtech/gt.metatool.01/144.png deleted file mode 100644 index f51f00b873..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/144.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/150.png b/front/public/images/small/gregtech/gt.metatool.01/150.png deleted file mode 100644 index 00dc0d8227..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/150.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/152.png b/front/public/images/small/gregtech/gt.metatool.01/152.png deleted file mode 100644 index 00dc0d8227..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/152.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/154.png b/front/public/images/small/gregtech/gt.metatool.01/154.png deleted file mode 100644 index 00dc0d8227..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/154.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/16.png b/front/public/images/small/gregtech/gt.metatool.01/16.png deleted file mode 100644 index 95e12960bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/16.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/160.png b/front/public/images/small/gregtech/gt.metatool.01/160.png deleted file mode 100644 index 83f4f02761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/160.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/162.png b/front/public/images/small/gregtech/gt.metatool.01/162.png deleted file mode 100644 index 83f4f02761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/162.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/164.png b/front/public/images/small/gregtech/gt.metatool.01/164.png deleted file mode 100644 index 83f4f02761..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/164.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/170.png b/front/public/images/small/gregtech/gt.metatool.01/170.png deleted file mode 100644 index 4e55c66ccf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/170.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/172.png b/front/public/images/small/gregtech/gt.metatool.01/172.png deleted file mode 100644 index 4e55c66ccf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/172.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/174.png b/front/public/images/small/gregtech/gt.metatool.01/174.png deleted file mode 100644 index 4e55c66ccf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/174.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/176.png b/front/public/images/small/gregtech/gt.metatool.01/176.png deleted file mode 100644 index 4e55c66ccf..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/176.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/18.png b/front/public/images/small/gregtech/gt.metatool.01/18.png deleted file mode 100644 index f55e779fc2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/18.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/180.png b/front/public/images/small/gregtech/gt.metatool.01/180.png deleted file mode 100644 index 1d31519e69..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/180.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/182.png b/front/public/images/small/gregtech/gt.metatool.01/182.png deleted file mode 100644 index 3404ff88cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/182.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/184.png b/front/public/images/small/gregtech/gt.metatool.01/184.png deleted file mode 100644 index 55b98cd010..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/184.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/186.png b/front/public/images/small/gregtech/gt.metatool.01/186.png deleted file mode 100644 index 0682022fb4..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/186.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/188.png b/front/public/images/small/gregtech/gt.metatool.01/188.png deleted file mode 100644 index 03a29e199b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/188.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/190.png b/front/public/images/small/gregtech/gt.metatool.01/190.png deleted file mode 100644 index 69e21b8a17..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/190.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/192.png b/front/public/images/small/gregtech/gt.metatool.01/192.png deleted file mode 100644 index 0c8dbf4e20..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/192.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/2.png b/front/public/images/small/gregtech/gt.metatool.01/2.png deleted file mode 100644 index 04a8f5a936..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/2.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/20.png b/front/public/images/small/gregtech/gt.metatool.01/20.png deleted file mode 100644 index 18dedc47c8..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/20.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/22.png b/front/public/images/small/gregtech/gt.metatool.01/22.png deleted file mode 100644 index 178387e6ae..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/22.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/24.png b/front/public/images/small/gregtech/gt.metatool.01/24.png deleted file mode 100644 index 9119922caa..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/24.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/26.png b/front/public/images/small/gregtech/gt.metatool.01/26.png deleted file mode 100644 index a7c86d4924..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/26.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/28.png b/front/public/images/small/gregtech/gt.metatool.01/28.png deleted file mode 100644 index 916bdb88cb..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/28.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/30.png b/front/public/images/small/gregtech/gt.metatool.01/30.png deleted file mode 100644 index a1dbe4eaa2..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/30.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/32.png b/front/public/images/small/gregtech/gt.metatool.01/32.png deleted file mode 100644 index 2075b54802..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/32.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/34.png b/front/public/images/small/gregtech/gt.metatool.01/34.png deleted file mode 100644 index 8320b7607c..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/34.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/36.png b/front/public/images/small/gregtech/gt.metatool.01/36.png deleted file mode 100644 index c4d3b57e33..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/36.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/4.png b/front/public/images/small/gregtech/gt.metatool.01/4.png deleted file mode 100644 index a29b6833c7..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/4.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/40.png b/front/public/images/small/gregtech/gt.metatool.01/40.png deleted file mode 100644 index c6e6ff8243..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/40.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/42.png b/front/public/images/small/gregtech/gt.metatool.01/42.png deleted file mode 100644 index 9f64cfbba3..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/42.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/44.png b/front/public/images/small/gregtech/gt.metatool.01/44.png deleted file mode 100644 index 2ce356757b..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/44.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/46.png b/front/public/images/small/gregtech/gt.metatool.01/46.png deleted file mode 100644 index 8edb8fd97a..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/46.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/6.png b/front/public/images/small/gregtech/gt.metatool.01/6.png deleted file mode 100644 index cd11b301bc..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/6.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.metatool.01/8.png b/front/public/images/small/gregtech/gt.metatool.01/8.png deleted file mode 100644 index fbf6c19dde..0000000000 Binary files a/front/public/images/small/gregtech/gt.metatool.01/8.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.neutroniumHeatCapacitor/0.png b/front/public/images/small/gregtech/gt.neutroniumHeatCapacitor/0.png deleted file mode 100644 index fd92f637db..0000000000 Binary files a/front/public/images/small/gregtech/gt.neutroniumHeatCapacitor/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.neutronreflector/0.png b/front/public/images/small/gregtech/gt.neutronreflector/0.png deleted file mode 100644 index 3fc8bf43f9..0000000000 Binary files a/front/public/images/small/gregtech/gt.neutronreflector/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.reactorMOXDual/0.png b/front/public/images/small/gregtech/gt.reactorMOXDual/0.png deleted file mode 100644 index a2f3c8e0d7..0000000000 Binary files a/front/public/images/small/gregtech/gt.reactorMOXDual/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.reactorMOXQuad/0.png b/front/public/images/small/gregtech/gt.reactorMOXQuad/0.png deleted file mode 100644 index 7c2604a7d5..0000000000 Binary files a/front/public/images/small/gregtech/gt.reactorMOXQuad/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.reactorMOXSimple/0.png b/front/public/images/small/gregtech/gt.reactorMOXSimple/0.png deleted file mode 100644 index 6725c2f628..0000000000 Binary files a/front/public/images/small/gregtech/gt.reactorMOXSimple/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.reactorUraniumDual/0.png b/front/public/images/small/gregtech/gt.reactorUraniumDual/0.png deleted file mode 100644 index 7a88acbcdb..0000000000 Binary files a/front/public/images/small/gregtech/gt.reactorUraniumDual/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.reactorUraniumQuad/0.png b/front/public/images/small/gregtech/gt.reactorUraniumQuad/0.png deleted file mode 100644 index 3b82d18a20..0000000000 Binary files a/front/public/images/small/gregtech/gt.reactorUraniumQuad/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.reactorUraniumSimple/0.png b/front/public/images/small/gregtech/gt.reactorUraniumSimple/0.png deleted file mode 100644 index 33c61b46b8..0000000000 Binary files a/front/public/images/small/gregtech/gt.reactorUraniumSimple/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.sensorcard/0.png b/front/public/images/small/gregtech/gt.sensorcard/0.png deleted file mode 100644 index 5031e19861..0000000000 Binary files a/front/public/images/small/gregtech/gt.sensorcard/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.sunnariumCell/0.png b/front/public/images/small/gregtech/gt.sunnariumCell/0.png deleted file mode 100644 index 3dc34e5488..0000000000 Binary files a/front/public/images/small/gregtech/gt.sunnariumCell/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.tierdDrone0/0.png b/front/public/images/small/gregtech/gt.tierdDrone0/0.png deleted file mode 100644 index b4801c216b..0000000000 Binary files a/front/public/images/small/gregtech/gt.tierdDrone0/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.tierdDrone1/0.png b/front/public/images/small/gregtech/gt.tierdDrone1/0.png deleted file mode 100644 index 7baa1388fd..0000000000 Binary files a/front/public/images/small/gregtech/gt.tierdDrone1/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/gt.tierdDrone2/0.png b/front/public/images/small/gregtech/gt.tierdDrone2/0.png deleted file mode 100644 index e6e36568eb..0000000000 Binary files a/front/public/images/small/gregtech/gt.tierdDrone2/0.png and /dev/null differ diff --git a/front/public/images/small/gregtech/tile.gt.dronerender/0.png b/front/public/images/small/gregtech/tile.gt.dronerender/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/gregtech/tile.gt.dronerender/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_An/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_An/0.png deleted file mode 100644 index f51bd67c3f..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_An/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_As/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_As/0.png deleted file mode 100644 index 8f63b039b0..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_As/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BC/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BC/0.png deleted file mode 100644 index 91c1cd06d8..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BC/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BE/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BE/0.png deleted file mode 100644 index 2a91a5d64b..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BE/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BF/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BF/0.png deleted file mode 100644 index 5850e302d5..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_BF/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_CB/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_CB/0.png deleted file mode 100644 index 40f20329fe..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_CB/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ca/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ca/0.png deleted file mode 100644 index eefdf99b7a..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ca/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ce/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ce/0.png deleted file mode 100644 index f6755ea520..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ce/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_DD/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_DD/0.png deleted file mode 100644 index 3ffffb20bc..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_DD/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_De/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_De/0.png deleted file mode 100644 index cdf3f6a31d..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_De/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_EA/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_EA/0.png deleted file mode 100644 index e475693ce6..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_EA/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_ED/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_ED/0.png deleted file mode 100644 index 8f63b039b0..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_ED/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_En/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_En/0.png deleted file mode 100644 index 04d1cd2249..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_En/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Eu/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Eu/0.png deleted file mode 100644 index 1bfe68c204..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Eu/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ga/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ga/0.png deleted file mode 100644 index ebadc12214..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ga/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ha/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ha/0.png deleted file mode 100644 index dbac175d4d..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ha/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ho/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ho/0.png deleted file mode 100644 index fb4a11f0e8..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ho/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Io/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Io/0.png deleted file mode 100644 index 4c382dc346..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Io/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_KB/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_KB/0.png deleted file mode 100644 index 204649086e..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_KB/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_MB/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_MB/0.png deleted file mode 100644 index e9a10391cd..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_MB/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_MM/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_MM/0.png deleted file mode 100644 index 60e10ad2cc..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_MM/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ma/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ma/0.png deleted file mode 100644 index 6e4f1d5ec6..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ma/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Me/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Me/0.png deleted file mode 100644 index 3217b8716f..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Me/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mh/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mh/0.png deleted file mode 100644 index 9c2298b8b2..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mh/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mi/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mi/0.png deleted file mode 100644 index 9fe3a026d1..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mi/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mo/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mo/0.png deleted file mode 100644 index 24762419a5..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Mo/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ne/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ne/0.png deleted file mode 100644 index 54541153b1..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ne/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Np/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Np/0.png deleted file mode 100644 index d8769a7dcd..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Np/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ob/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ob/0.png deleted file mode 100644 index d8145fe25d..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ob/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ow/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ow/0.png deleted file mode 100644 index d6886a291b..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ow/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ph/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ph/0.png deleted file mode 100644 index 7006dcf7f1..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ph/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Pl/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Pl/0.png deleted file mode 100644 index bf9a1419c8..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Pl/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Pr/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Pr/0.png deleted file mode 100644 index 35e80707d7..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Pr/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ra/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ra/0.png deleted file mode 100644 index 6f51d55a6d..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ra/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Rb/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Rb/0.png deleted file mode 100644 index 791cf30816..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Rb/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Se/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Se/0.png deleted file mode 100644 index 843296f91c..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Se/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_TE/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_TE/0.png deleted file mode 100644 index 86a25a09a6..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_TE/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_TF/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_TF/0.png deleted file mode 100644 index 14df600742..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_TF/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ti/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ti/0.png deleted file mode 100644 index ff5c6eff4e..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ti/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Tr/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Tr/0.png deleted file mode 100644 index f054405802..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Tr/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_VA/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_VA/0.png deleted file mode 100644 index fce17d0965..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_VA/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_VB/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_VB/0.png deleted file mode 100644 index dd70d3fed9..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_VB/0.png and /dev/null differ diff --git a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ve/0.png b/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ve/0.png deleted file mode 100644 index 832f1e7210..0000000000 Binary files a/front/public/images/small/gtneioreplugin/blockDimensionDisplay_Ve/0.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/0.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/0.png deleted file mode 100644 index 10c6336118..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/0.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/1.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/1.png deleted file mode 100644 index 3786905d31..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/1.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/2.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/2.png deleted file mode 100644 index cf1f08f454..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSE/2.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/0.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/0.png deleted file mode 100644 index f8338c85fc..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/0.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/1.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/1.png deleted file mode 100644 index bec9b39811..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/1.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/2.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/2.png deleted file mode 100644 index d6aa74be0f..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/2.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/3.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/3.png deleted file mode 100644 index 1fe042c3d3..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/3.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/4.png b/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/4.png deleted file mode 100644 index 04f147a5b7..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/gt.blockcasingsSEMotor/4.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/0.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/0.png deleted file mode 100644 index 64b1fc9a4c..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/0.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/1.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/1.png deleted file mode 100644 index cdce73eb7a..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/1.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/10.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/10.png deleted file mode 100644 index 5697dbacda..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/10.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/11.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/11.png deleted file mode 100644 index f37685afe3..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/11.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/12.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/12.png deleted file mode 100644 index fa8f180a3d..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/12.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/13.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/13.png deleted file mode 100644 index 9a1d749538..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/13.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/2.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/2.png deleted file mode 100644 index da59a38065..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/2.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/3.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/3.png deleted file mode 100644 index bad3288a95..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/3.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/4.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/4.png deleted file mode 100644 index cfb3528836..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/4.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/5.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/5.png deleted file mode 100644 index e51d1d8ac5..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/5.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/6.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/6.png deleted file mode 100644 index eb844160ba..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/6.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/7.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/7.png deleted file mode 100644 index ddc0996b27..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/7.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/8.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/8.png deleted file mode 100644 index 181a54ffc2..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/8.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.MiningDrone/9.png b/front/public/images/small/gtnhintergalactic/item.MiningDrone/9.png deleted file mode 100644 index 60c41f3673..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.MiningDrone/9.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/item.SpaceElevatorParts/0.png b/front/public/images/small/gtnhintergalactic/item.SpaceElevatorParts/0.png deleted file mode 100644 index a89e567202..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/item.SpaceElevatorParts/0.png and /dev/null differ diff --git a/front/public/images/small/gtnhintergalactic/spaceelevatorcable/0.png b/front/public/images/small/gtnhintergalactic/spaceelevatorcable/0.png deleted file mode 100644 index 057cb8c9c0..0000000000 Binary files a/front/public/images/small/gtnhintergalactic/spaceelevatorcable/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/almondItem/0.png b/front/public/images/small/harvestcraft/almondItem/0.png deleted file mode 100644 index 4726816be1..0000000000 Binary files a/front/public/images/small/harvestcraft/almondItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/almondbutterItem/0.png b/front/public/images/small/harvestcraft/almondbutterItem/0.png deleted file mode 100644 index b1a6c7319b..0000000000 Binary files a/front/public/images/small/harvestcraft/almondbutterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/anchovyrawItem/0.png b/front/public/images/small/harvestcraft/anchovyrawItem/0.png deleted file mode 100644 index 4bf22c2dd1..0000000000 Binary files a/front/public/images/small/harvestcraft/anchovyrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/animaltrap/0.png b/front/public/images/small/harvestcraft/animaltrap/0.png deleted file mode 100644 index c59c32c22f..0000000000 Binary files a/front/public/images/small/harvestcraft/animaltrap/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apiary/0.png b/front/public/images/small/harvestcraft/apiary/0.png deleted file mode 100644 index b96f615f38..0000000000 Binary files a/front/public/images/small/harvestcraft/apiary/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/appleciderItem/0.png b/front/public/images/small/harvestcraft/appleciderItem/0.png deleted file mode 100644 index fc444a2868..0000000000 Binary files a/front/public/images/small/harvestcraft/appleciderItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/applejellyItem/0.png b/front/public/images/small/harvestcraft/applejellyItem/0.png deleted file mode 100644 index b793764976..0000000000 Binary files a/front/public/images/small/harvestcraft/applejellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/applejellysandwichItem/0.png b/front/public/images/small/harvestcraft/applejellysandwichItem/0.png deleted file mode 100644 index f2b944bbcb..0000000000 Binary files a/front/public/images/small/harvestcraft/applejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/applejuiceItem/0.png b/front/public/images/small/harvestcraft/applejuiceItem/0.png deleted file mode 100644 index fd84cc285c..0000000000 Binary files a/front/public/images/small/harvestcraft/applejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/applepieItem/0.png b/front/public/images/small/harvestcraft/applepieItem/0.png deleted file mode 100644 index baf03891c4..0000000000 Binary files a/front/public/images/small/harvestcraft/applepieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/applesauceItem/0.png b/front/public/images/small/harvestcraft/applesauceItem/0.png deleted file mode 100644 index 96bdea75b3..0000000000 Binary files a/front/public/images/small/harvestcraft/applesauceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/applesmoothieItem/0.png b/front/public/images/small/harvestcraft/applesmoothieItem/0.png deleted file mode 100644 index 0a33ba8f6e..0000000000 Binary files a/front/public/images/small/harvestcraft/applesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/appleyogurtItem/0.png b/front/public/images/small/harvestcraft/appleyogurtItem/0.png deleted file mode 100644 index b602bb71cc..0000000000 Binary files a/front/public/images/small/harvestcraft/appleyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apricotItem/0.png b/front/public/images/small/harvestcraft/apricotItem/0.png deleted file mode 100644 index 6726678165..0000000000 Binary files a/front/public/images/small/harvestcraft/apricotItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apricotglazedporkItem/0.png b/front/public/images/small/harvestcraft/apricotglazedporkItem/0.png deleted file mode 100644 index 38845a205e..0000000000 Binary files a/front/public/images/small/harvestcraft/apricotglazedporkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apricotjellyItem/0.png b/front/public/images/small/harvestcraft/apricotjellyItem/0.png deleted file mode 100644 index 49ed7c7f9f..0000000000 Binary files a/front/public/images/small/harvestcraft/apricotjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apricotjellysandwichItem/0.png b/front/public/images/small/harvestcraft/apricotjellysandwichItem/0.png deleted file mode 100644 index e5004b2f7a..0000000000 Binary files a/front/public/images/small/harvestcraft/apricotjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apricotjuiceItem/0.png b/front/public/images/small/harvestcraft/apricotjuiceItem/0.png deleted file mode 100644 index d62996ddcb..0000000000 Binary files a/front/public/images/small/harvestcraft/apricotjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apricotsmoothieItem/0.png b/front/public/images/small/harvestcraft/apricotsmoothieItem/0.png deleted file mode 100644 index ae0f9adee5..0000000000 Binary files a/front/public/images/small/harvestcraft/apricotsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/apricotyogurtItem/0.png b/front/public/images/small/harvestcraft/apricotyogurtItem/0.png deleted file mode 100644 index 69fc8f1d19..0000000000 Binary files a/front/public/images/small/harvestcraft/apricotyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/artichokeItem/0.png b/front/public/images/small/harvestcraft/artichokeItem/0.png deleted file mode 100644 index c6acdfa4c6..0000000000 Binary files a/front/public/images/small/harvestcraft/artichokeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/artichokeseedItem/0.png b/front/public/images/small/harvestcraft/artichokeseedItem/0.png deleted file mode 100644 index e65476b05a..0000000000 Binary files a/front/public/images/small/harvestcraft/artichokeseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/asparagusItem/0.png b/front/public/images/small/harvestcraft/asparagusItem/0.png deleted file mode 100644 index 9a7c9eeab4..0000000000 Binary files a/front/public/images/small/harvestcraft/asparagusItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/asparagusquicheItem/0.png b/front/public/images/small/harvestcraft/asparagusquicheItem/0.png deleted file mode 100644 index 261d86b051..0000000000 Binary files a/front/public/images/small/harvestcraft/asparagusquicheItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/asparagusseedItem/0.png b/front/public/images/small/harvestcraft/asparagusseedItem/0.png deleted file mode 100644 index 46c2ddc3f2..0000000000 Binary files a/front/public/images/small/harvestcraft/asparagusseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/asparagussoupItem/0.png b/front/public/images/small/harvestcraft/asparagussoupItem/0.png deleted file mode 100644 index 7a6762132f..0000000000 Binary files a/front/public/images/small/harvestcraft/asparagussoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/avocadoItem/0.png b/front/public/images/small/harvestcraft/avocadoItem/0.png deleted file mode 100644 index 972921b074..0000000000 Binary files a/front/public/images/small/harvestcraft/avocadoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/avocadoburritoItem/0.png b/front/public/images/small/harvestcraft/avocadoburritoItem/0.png deleted file mode 100644 index c5fd7ba7bb..0000000000 Binary files a/front/public/images/small/harvestcraft/avocadoburritoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/baconcheeseburgerItem/0.png b/front/public/images/small/harvestcraft/baconcheeseburgerItem/0.png deleted file mode 100644 index 95897ecdda..0000000000 Binary files a/front/public/images/small/harvestcraft/baconcheeseburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/baconmushroomburgerItem/0.png b/front/public/images/small/harvestcraft/baconmushroomburgerItem/0.png deleted file mode 100644 index 0fff83700e..0000000000 Binary files a/front/public/images/small/harvestcraft/baconmushroomburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/baconwrappeddatesItem/0.png b/front/public/images/small/harvestcraft/baconwrappeddatesItem/0.png deleted file mode 100644 index 73a01cac1b..0000000000 Binary files a/front/public/images/small/harvestcraft/baconwrappeddatesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bakedbeansItem/0.png b/front/public/images/small/harvestcraft/bakedbeansItem/0.png deleted file mode 100644 index 0892f40cba..0000000000 Binary files a/front/public/images/small/harvestcraft/bakedbeansItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bakedbeetsItem/0.png b/front/public/images/small/harvestcraft/bakedbeetsItem/0.png deleted file mode 100644 index 335a78b6db..0000000000 Binary files a/front/public/images/small/harvestcraft/bakedbeetsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bakedhamItem/0.png b/front/public/images/small/harvestcraft/bakedhamItem/0.png deleted file mode 100644 index d32bd2bc4e..0000000000 Binary files a/front/public/images/small/harvestcraft/bakedhamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bakedsweetpotatoItem/0.png b/front/public/images/small/harvestcraft/bakedsweetpotatoItem/0.png deleted file mode 100644 index 95f112cd1c..0000000000 Binary files a/front/public/images/small/harvestcraft/bakedsweetpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bakedturnipsItem/0.png b/front/public/images/small/harvestcraft/bakedturnipsItem/0.png deleted file mode 100644 index 0f51413c25..0000000000 Binary files a/front/public/images/small/harvestcraft/bakedturnipsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bakewareItem/0.png b/front/public/images/small/harvestcraft/bakewareItem/0.png deleted file mode 100644 index 5c05fef031..0000000000 Binary files a/front/public/images/small/harvestcraft/bakewareItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/baklavaItem/0.png b/front/public/images/small/harvestcraft/baklavaItem/0.png deleted file mode 100644 index 947543ffaa..0000000000 Binary files a/front/public/images/small/harvestcraft/baklavaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bambooshootItem/0.png b/front/public/images/small/harvestcraft/bambooshootItem/0.png deleted file mode 100644 index 07ab24face..0000000000 Binary files a/front/public/images/small/harvestcraft/bambooshootItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bambooshootseedItem/0.png b/front/public/images/small/harvestcraft/bambooshootseedItem/0.png deleted file mode 100644 index 178c26e88f..0000000000 Binary files a/front/public/images/small/harvestcraft/bambooshootseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bamboosteamedriceItem/0.png b/front/public/images/small/harvestcraft/bamboosteamedriceItem/0.png deleted file mode 100644 index de52ed0ccc..0000000000 Binary files a/front/public/images/small/harvestcraft/bamboosteamedriceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bananaItem/0.png b/front/public/images/small/harvestcraft/bananaItem/0.png deleted file mode 100644 index baab04a39c..0000000000 Binary files a/front/public/images/small/harvestcraft/bananaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bananajuiceItem/0.png b/front/public/images/small/harvestcraft/bananajuiceItem/0.png deleted file mode 100644 index b3b4af05e9..0000000000 Binary files a/front/public/images/small/harvestcraft/bananajuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bananamilkshakeItem/0.png b/front/public/images/small/harvestcraft/bananamilkshakeItem/0.png deleted file mode 100644 index 085f261759..0000000000 Binary files a/front/public/images/small/harvestcraft/bananamilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/banananutbreadItem/0.png b/front/public/images/small/harvestcraft/banananutbreadItem/0.png deleted file mode 100644 index 52e7c8b38f..0000000000 Binary files a/front/public/images/small/harvestcraft/banananutbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bananasmoothieItem/0.png b/front/public/images/small/harvestcraft/bananasmoothieItem/0.png deleted file mode 100644 index eace4862ef..0000000000 Binary files a/front/public/images/small/harvestcraft/bananasmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bananasplitItem/0.png b/front/public/images/small/harvestcraft/bananasplitItem/0.png deleted file mode 100644 index ef08e0042f..0000000000 Binary files a/front/public/images/small/harvestcraft/bananasplitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bananayogurtItem/0.png b/front/public/images/small/harvestcraft/bananayogurtItem/0.png deleted file mode 100644 index 75debd288f..0000000000 Binary files a/front/public/images/small/harvestcraft/bananayogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bangersandmashItem/0.png b/front/public/images/small/harvestcraft/bangersandmashItem/0.png deleted file mode 100644 index 8e6e16a23a..0000000000 Binary files a/front/public/images/small/harvestcraft/bangersandmashItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/barleyItem/0.png b/front/public/images/small/harvestcraft/barleyItem/0.png deleted file mode 100644 index 4946831a32..0000000000 Binary files a/front/public/images/small/harvestcraft/barleyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/barleyseedItem/0.png b/front/public/images/small/harvestcraft/barleyseedItem/0.png deleted file mode 100644 index 9478884772..0000000000 Binary files a/front/public/images/small/harvestcraft/barleyseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bassrawItem/0.png b/front/public/images/small/harvestcraft/bassrawItem/0.png deleted file mode 100644 index 3e25509ead..0000000000 Binary files a/front/public/images/small/harvestcraft/bassrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/batterItem/0.png b/front/public/images/small/harvestcraft/batterItem/0.png deleted file mode 100644 index a08a4f65ee..0000000000 Binary files a/front/public/images/small/harvestcraft/batterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/batteredsausageItem/0.png b/front/public/images/small/harvestcraft/batteredsausageItem/0.png deleted file mode 100644 index 3a465ea2fb..0000000000 Binary files a/front/public/images/small/harvestcraft/batteredsausageItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bbqpulledporkItem/0.png b/front/public/images/small/harvestcraft/bbqpulledporkItem/0.png deleted file mode 100644 index e53774250e..0000000000 Binary files a/front/public/images/small/harvestcraft/bbqpulledporkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beanItem/0.png b/front/public/images/small/harvestcraft/beanItem/0.png deleted file mode 100644 index f67077d650..0000000000 Binary files a/front/public/images/small/harvestcraft/beanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beanburritoItem/0.png b/front/public/images/small/harvestcraft/beanburritoItem/0.png deleted file mode 100644 index 5fae075819..0000000000 Binary files a/front/public/images/small/harvestcraft/beanburritoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beansandriceItem/0.png b/front/public/images/small/harvestcraft/beansandriceItem/0.png deleted file mode 100644 index be783e6b40..0000000000 Binary files a/front/public/images/small/harvestcraft/beansandriceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beanseedItem/0.png b/front/public/images/small/harvestcraft/beanseedItem/0.png deleted file mode 100644 index 011bea7240..0000000000 Binary files a/front/public/images/small/harvestcraft/beanseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beansontoastItem/0.png b/front/public/images/small/harvestcraft/beansontoastItem/0.png deleted file mode 100644 index dece5289ad..0000000000 Binary files a/front/public/images/small/harvestcraft/beansontoastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beefjerkyItem/0.png b/front/public/images/small/harvestcraft/beefjerkyItem/0.png deleted file mode 100644 index 779296ca31..0000000000 Binary files a/front/public/images/small/harvestcraft/beefjerkyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beefwellingtonItem/0.png b/front/public/images/small/harvestcraft/beefwellingtonItem/0.png deleted file mode 100644 index 0f7284afbe..0000000000 Binary files a/front/public/images/small/harvestcraft/beefwellingtonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beehive/0.png b/front/public/images/small/harvestcraft/beehive/0.png deleted file mode 100644 index 1f0bbf4d41..0000000000 Binary files a/front/public/images/small/harvestcraft/beehive/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beeswaxItem/0.png b/front/public/images/small/harvestcraft/beeswaxItem/0.png deleted file mode 100644 index 5afaab4ff8..0000000000 Binary files a/front/public/images/small/harvestcraft/beeswaxItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beetItem/0.png b/front/public/images/small/harvestcraft/beetItem/0.png deleted file mode 100644 index 8f76146389..0000000000 Binary files a/front/public/images/small/harvestcraft/beetItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beetburgerItem/0.png b/front/public/images/small/harvestcraft/beetburgerItem/0.png deleted file mode 100644 index d78cee161e..0000000000 Binary files a/front/public/images/small/harvestcraft/beetburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beetsaladItem/0.png b/front/public/images/small/harvestcraft/beetsaladItem/0.png deleted file mode 100644 index 976f246cd3..0000000000 Binary files a/front/public/images/small/harvestcraft/beetsaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beetseedItem/0.png b/front/public/images/small/harvestcraft/beetseedItem/0.png deleted file mode 100644 index 001c11d9fe..0000000000 Binary files a/front/public/images/small/harvestcraft/beetseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/beetsoupItem/0.png b/front/public/images/small/harvestcraft/beetsoupItem/0.png deleted file mode 100644 index c8cb24531f..0000000000 Binary files a/front/public/images/small/harvestcraft/beetsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bellpepperItem/0.png b/front/public/images/small/harvestcraft/bellpepperItem/0.png deleted file mode 100644 index 787952ff01..0000000000 Binary files a/front/public/images/small/harvestcraft/bellpepperItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bellpepperseedItem/0.png b/front/public/images/small/harvestcraft/bellpepperseedItem/0.png deleted file mode 100644 index 77e4ba7c3b..0000000000 Binary files a/front/public/images/small/harvestcraft/bellpepperseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/berrygarden/0.png b/front/public/images/small/harvestcraft/berrygarden/0.png deleted file mode 100644 index 0d58a43d54..0000000000 Binary files a/front/public/images/small/harvestcraft/berrygarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/biscuitItem/0.png b/front/public/images/small/harvestcraft/biscuitItem/0.png deleted file mode 100644 index 3df09725a2..0000000000 Binary files a/front/public/images/small/harvestcraft/biscuitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberryItem/0.png b/front/public/images/small/harvestcraft/blackberryItem/0.png deleted file mode 100644 index 597d84741d..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberrycobblerItem/0.png b/front/public/images/small/harvestcraft/blackberrycobblerItem/0.png deleted file mode 100644 index d63acf0aaf..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberrycobblerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberryjellyItem/0.png b/front/public/images/small/harvestcraft/blackberryjellyItem/0.png deleted file mode 100644 index 6323e2dd78..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberryjellysandwichItem/0.png b/front/public/images/small/harvestcraft/blackberryjellysandwichItem/0.png deleted file mode 100644 index aa45787ead..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberryjuiceItem/0.png b/front/public/images/small/harvestcraft/blackberryjuiceItem/0.png deleted file mode 100644 index d5f8796e5c..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberryseedItem/0.png b/front/public/images/small/harvestcraft/blackberryseedItem/0.png deleted file mode 100644 index 5751e0fe7b..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberrysmoothieItem/0.png b/front/public/images/small/harvestcraft/blackberrysmoothieItem/0.png deleted file mode 100644 index 7568a2ea11..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackberryyogurtItem/0.png b/front/public/images/small/harvestcraft/blackberryyogurtItem/0.png deleted file mode 100644 index 1f4e7d2b43..0000000000 Binary files a/front/public/images/small/harvestcraft/blackberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blackpepperItem/0.png b/front/public/images/small/harvestcraft/blackpepperItem/0.png deleted file mode 100644 index 1653a270f6..0000000000 Binary files a/front/public/images/small/harvestcraft/blackpepperItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bltItem/0.png b/front/public/images/small/harvestcraft/bltItem/0.png deleted file mode 100644 index 7de0a1fa78..0000000000 Binary files a/front/public/images/small/harvestcraft/bltItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberryItem/0.png b/front/public/images/small/harvestcraft/blueberryItem/0.png deleted file mode 100644 index a7f4676d03..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberryjellyItem/0.png b/front/public/images/small/harvestcraft/blueberryjellyItem/0.png deleted file mode 100644 index 30f210caf7..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberryjellysandwichItem/0.png b/front/public/images/small/harvestcraft/blueberryjellysandwichItem/0.png deleted file mode 100644 index b7077a2574..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberryjuiceItem/0.png b/front/public/images/small/harvestcraft/blueberryjuiceItem/0.png deleted file mode 100644 index 5b9267c22c..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberrymuffinItem/0.png b/front/public/images/small/harvestcraft/blueberrymuffinItem/0.png deleted file mode 100644 index 6de00e74c5..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberrymuffinItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberrypancakesItem/0.png b/front/public/images/small/harvestcraft/blueberrypancakesItem/0.png deleted file mode 100644 index 0b717ee7bb..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberrypancakesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberrypieItem/0.png b/front/public/images/small/harvestcraft/blueberrypieItem/0.png deleted file mode 100644 index a92cba9bd1..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberryseedItem/0.png b/front/public/images/small/harvestcraft/blueberryseedItem/0.png deleted file mode 100644 index 4e79fc8154..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberrysmoothieItem/0.png b/front/public/images/small/harvestcraft/blueberrysmoothieItem/0.png deleted file mode 100644 index 9915024974..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/blueberryyogurtItem/0.png b/front/public/images/small/harvestcraft/blueberryyogurtItem/0.png deleted file mode 100644 index 340e38dbb2..0000000000 Binary files a/front/public/images/small/harvestcraft/blueberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/boiledeggItem/0.png b/front/public/images/small/harvestcraft/boiledeggItem/0.png deleted file mode 100644 index c9d84848d3..0000000000 Binary files a/front/public/images/small/harvestcraft/boiledeggItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/braisedonionsItem/0.png b/front/public/images/small/harvestcraft/braisedonionsItem/0.png deleted file mode 100644 index ea328f4e94..0000000000 Binary files a/front/public/images/small/harvestcraft/braisedonionsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/breadedporkchopItem/0.png b/front/public/images/small/harvestcraft/breadedporkchopItem/0.png deleted file mode 100644 index bed7162434..0000000000 Binary files a/front/public/images/small/harvestcraft/breadedporkchopItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/broccoliItem/0.png b/front/public/images/small/harvestcraft/broccoliItem/0.png deleted file mode 100644 index 6fb76e5c8c..0000000000 Binary files a/front/public/images/small/harvestcraft/broccoliItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/broccolimacItem/0.png b/front/public/images/small/harvestcraft/broccolimacItem/0.png deleted file mode 100644 index 1aae80882b..0000000000 Binary files a/front/public/images/small/harvestcraft/broccolimacItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/broccolindipItem/0.png b/front/public/images/small/harvestcraft/broccolindipItem/0.png deleted file mode 100644 index 6925ab1ebb..0000000000 Binary files a/front/public/images/small/harvestcraft/broccolindipItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/broccoliseedItem/0.png b/front/public/images/small/harvestcraft/broccoliseedItem/0.png deleted file mode 100644 index 85d1382718..0000000000 Binary files a/front/public/images/small/harvestcraft/broccoliseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/brownieItem/0.png b/front/public/images/small/harvestcraft/brownieItem/0.png deleted file mode 100644 index c3ef731659..0000000000 Binary files a/front/public/images/small/harvestcraft/brownieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/brusselsproutItem/0.png b/front/public/images/small/harvestcraft/brusselsproutItem/0.png deleted file mode 100644 index 42339281ec..0000000000 Binary files a/front/public/images/small/harvestcraft/brusselsproutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/brusselsproutseedItem/0.png b/front/public/images/small/harvestcraft/brusselsproutseedItem/0.png deleted file mode 100644 index 10a3de84dc..0000000000 Binary files a/front/public/images/small/harvestcraft/brusselsproutseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/bubblywaterItem/0.png b/front/public/images/small/harvestcraft/bubblywaterItem/0.png deleted file mode 100644 index 6ae2084073..0000000000 Binary files a/front/public/images/small/harvestcraft/bubblywaterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/butterItem/0.png b/front/public/images/small/harvestcraft/butterItem/0.png deleted file mode 100644 index f21621bb75..0000000000 Binary files a/front/public/images/small/harvestcraft/butterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/butteredpotatoItem/0.png b/front/public/images/small/harvestcraft/butteredpotatoItem/0.png deleted file mode 100644 index fc165cb796..0000000000 Binary files a/front/public/images/small/harvestcraft/butteredpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cabbageItem/0.png b/front/public/images/small/harvestcraft/cabbageItem/0.png deleted file mode 100644 index 7cd175cfba..0000000000 Binary files a/front/public/images/small/harvestcraft/cabbageItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cabbageseedItem/0.png b/front/public/images/small/harvestcraft/cabbageseedItem/0.png deleted file mode 100644 index 6522382caf..0000000000 Binary files a/front/public/images/small/harvestcraft/cabbageseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cactusfruitItem/0.png b/front/public/images/small/harvestcraft/cactusfruitItem/0.png deleted file mode 100644 index 024596ff88..0000000000 Binary files a/front/public/images/small/harvestcraft/cactusfruitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cactusfruitjuiceItem/0.png b/front/public/images/small/harvestcraft/cactusfruitjuiceItem/0.png deleted file mode 100644 index 989b544083..0000000000 Binary files a/front/public/images/small/harvestcraft/cactusfruitjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cactusfruitseedItem/0.png b/front/public/images/small/harvestcraft/cactusfruitseedItem/0.png deleted file mode 100644 index 35b5bd0413..0000000000 Binary files a/front/public/images/small/harvestcraft/cactusfruitseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cactussoupItem/0.png b/front/public/images/small/harvestcraft/cactussoupItem/0.png deleted file mode 100644 index d3b305619f..0000000000 Binary files a/front/public/images/small/harvestcraft/cactussoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/calamaricookedItem/0.png b/front/public/images/small/harvestcraft/calamaricookedItem/0.png deleted file mode 100644 index dbb1aea3bf..0000000000 Binary files a/front/public/images/small/harvestcraft/calamaricookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/calamarirawItem/0.png b/front/public/images/small/harvestcraft/calamarirawItem/0.png deleted file mode 100644 index b9cfd00c65..0000000000 Binary files a/front/public/images/small/harvestcraft/calamarirawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/californiarollItem/0.png b/front/public/images/small/harvestcraft/californiarollItem/0.png deleted file mode 100644 index bfe1539158..0000000000 Binary files a/front/public/images/small/harvestcraft/californiarollItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/candiedgingerItem/0.png b/front/public/images/small/harvestcraft/candiedgingerItem/0.png deleted file mode 100644 index a64f8388dc..0000000000 Binary files a/front/public/images/small/harvestcraft/candiedgingerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/candiedlemonItem/0.png b/front/public/images/small/harvestcraft/candiedlemonItem/0.png deleted file mode 100644 index f7ed0b1732..0000000000 Binary files a/front/public/images/small/harvestcraft/candiedlemonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/candiedsweetpotatoesItem/0.png b/front/public/images/small/harvestcraft/candiedsweetpotatoesItem/0.png deleted file mode 100644 index 679b97205e..0000000000 Binary files a/front/public/images/small/harvestcraft/candiedsweetpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/candiedwalnutsItem/0.png b/front/public/images/small/harvestcraft/candiedwalnutsItem/0.png deleted file mode 100644 index fc2de4ff2b..0000000000 Binary files a/front/public/images/small/harvestcraft/candiedwalnutsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/candleberryItem/0.png b/front/public/images/small/harvestcraft/candleberryItem/0.png deleted file mode 100644 index fb12a0f9e8..0000000000 Binary files a/front/public/images/small/harvestcraft/candleberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/candleberryseedItem/0.png b/front/public/images/small/harvestcraft/candleberryseedItem/0.png deleted file mode 100644 index a75f0cb0cb..0000000000 Binary files a/front/public/images/small/harvestcraft/candleberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cantaloupeItem/0.png b/front/public/images/small/harvestcraft/cantaloupeItem/0.png deleted file mode 100644 index e7caeb2fbf..0000000000 Binary files a/front/public/images/small/harvestcraft/cantaloupeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cantaloupeseedItem/0.png b/front/public/images/small/harvestcraft/cantaloupeseedItem/0.png deleted file mode 100644 index 8f5e80f65e..0000000000 Binary files a/front/public/images/small/harvestcraft/cantaloupeseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/caramelItem/0.png b/front/public/images/small/harvestcraft/caramelItem/0.png deleted file mode 100644 index 9401bb6a30..0000000000 Binary files a/front/public/images/small/harvestcraft/caramelItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/caramelappleItem/0.png b/front/public/images/small/harvestcraft/caramelappleItem/0.png deleted file mode 100644 index 5019b4cd66..0000000000 Binary files a/front/public/images/small/harvestcraft/caramelappleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/caramelicecreamItem/0.png b/front/public/images/small/harvestcraft/caramelicecreamItem/0.png deleted file mode 100644 index e5009c1dc4..0000000000 Binary files a/front/public/images/small/harvestcraft/caramelicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/carprawItem/0.png b/front/public/images/small/harvestcraft/carprawItem/0.png deleted file mode 100644 index 33896abcf0..0000000000 Binary files a/front/public/images/small/harvestcraft/carprawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/carrotcakeItem/0.png b/front/public/images/small/harvestcraft/carrotcakeItem/0.png deleted file mode 100644 index 58ca537da3..0000000000 Binary files a/front/public/images/small/harvestcraft/carrotcakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/carrotjuiceItem/0.png b/front/public/images/small/harvestcraft/carrotjuiceItem/0.png deleted file mode 100644 index 690605c9ba..0000000000 Binary files a/front/public/images/small/harvestcraft/carrotjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/carrotsoupItem/0.png b/front/public/images/small/harvestcraft/carrotsoupItem/0.png deleted file mode 100644 index 5970f430f6..0000000000 Binary files a/front/public/images/small/harvestcraft/carrotsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cashewItem/0.png b/front/public/images/small/harvestcraft/cashewItem/0.png deleted file mode 100644 index ec7909c771..0000000000 Binary files a/front/public/images/small/harvestcraft/cashewItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cashewbutterItem/0.png b/front/public/images/small/harvestcraft/cashewbutterItem/0.png deleted file mode 100644 index 0b32a3bfec..0000000000 Binary files a/front/public/images/small/harvestcraft/cashewbutterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cashewchickenItem/0.png b/front/public/images/small/harvestcraft/cashewchickenItem/0.png deleted file mode 100644 index d1262d81b2..0000000000 Binary files a/front/public/images/small/harvestcraft/cashewchickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/catfishrawItem/0.png b/front/public/images/small/harvestcraft/catfishrawItem/0.png deleted file mode 100644 index 226ba8ec9f..0000000000 Binary files a/front/public/images/small/harvestcraft/catfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cauliflowerItem/0.png b/front/public/images/small/harvestcraft/cauliflowerItem/0.png deleted file mode 100644 index 104d04d5b1..0000000000 Binary files a/front/public/images/small/harvestcraft/cauliflowerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cauliflowerseedItem/0.png b/front/public/images/small/harvestcraft/cauliflowerseedItem/0.png deleted file mode 100644 index a475b4d6cd..0000000000 Binary files a/front/public/images/small/harvestcraft/cauliflowerseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ceasarsaladItem/0.png b/front/public/images/small/harvestcraft/ceasarsaladItem/0.png deleted file mode 100644 index fa5f1856ea..0000000000 Binary files a/front/public/images/small/harvestcraft/ceasarsaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/celeryItem/0.png b/front/public/images/small/harvestcraft/celeryItem/0.png deleted file mode 100644 index 122b535a73..0000000000 Binary files a/front/public/images/small/harvestcraft/celeryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/celeryandpeanutbutterItem/0.png b/front/public/images/small/harvestcraft/celeryandpeanutbutterItem/0.png deleted file mode 100644 index 8aa6e760e9..0000000000 Binary files a/front/public/images/small/harvestcraft/celeryandpeanutbutterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/celeryseedItem/0.png b/front/public/images/small/harvestcraft/celeryseedItem/0.png deleted file mode 100644 index 13d1e1099f..0000000000 Binary files a/front/public/images/small/harvestcraft/celeryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/celerysoupItem/0.png b/front/public/images/small/harvestcraft/celerysoupItem/0.png deleted file mode 100644 index 05ed9a5cc5..0000000000 Binary files a/front/public/images/small/harvestcraft/celerysoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chaiteaItem/0.png b/front/public/images/small/harvestcraft/chaiteaItem/0.png deleted file mode 100644 index 70b15829f0..0000000000 Binary files a/front/public/images/small/harvestcraft/chaiteaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chaoscookieItem/0.png b/front/public/images/small/harvestcraft/chaoscookieItem/0.png deleted file mode 100644 index 9e526894eb..0000000000 Binary files a/front/public/images/small/harvestcraft/chaoscookieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/charrrawItem/0.png b/front/public/images/small/harvestcraft/charrrawItem/0.png deleted file mode 100644 index 2c8610ba53..0000000000 Binary files a/front/public/images/small/harvestcraft/charrrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cheeseItem/0.png b/front/public/images/small/harvestcraft/cheeseItem/0.png deleted file mode 100644 index d1ebf02c85..0000000000 Binary files a/front/public/images/small/harvestcraft/cheeseItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cheeseburgerItem/0.png b/front/public/images/small/harvestcraft/cheeseburgerItem/0.png deleted file mode 100644 index 93f73dba88..0000000000 Binary files a/front/public/images/small/harvestcraft/cheeseburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cheesecakeItem/0.png b/front/public/images/small/harvestcraft/cheesecakeItem/0.png deleted file mode 100644 index 72a2402445..0000000000 Binary files a/front/public/images/small/harvestcraft/cheesecakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cheeseontoastItem/0.png b/front/public/images/small/harvestcraft/cheeseontoastItem/0.png deleted file mode 100644 index b7c4185407..0000000000 Binary files a/front/public/images/small/harvestcraft/cheeseontoastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherryItem/0.png b/front/public/images/small/harvestcraft/cherryItem/0.png deleted file mode 100644 index ba12ccdd42..0000000000 Binary files a/front/public/images/small/harvestcraft/cherryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherrycheesecakeItem/0.png b/front/public/images/small/harvestcraft/cherrycheesecakeItem/0.png deleted file mode 100644 index 6fef098328..0000000000 Binary files a/front/public/images/small/harvestcraft/cherrycheesecakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherrycoconutchocolatebarItem/0.png b/front/public/images/small/harvestcraft/cherrycoconutchocolatebarItem/0.png deleted file mode 100644 index b97ea63033..0000000000 Binary files a/front/public/images/small/harvestcraft/cherrycoconutchocolatebarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherryicecreamItem/0.png b/front/public/images/small/harvestcraft/cherryicecreamItem/0.png deleted file mode 100644 index f466c02007..0000000000 Binary files a/front/public/images/small/harvestcraft/cherryicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherryjellyItem/0.png b/front/public/images/small/harvestcraft/cherryjellyItem/0.png deleted file mode 100644 index b4ccde6dc5..0000000000 Binary files a/front/public/images/small/harvestcraft/cherryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherryjellysandwichItem/0.png b/front/public/images/small/harvestcraft/cherryjellysandwichItem/0.png deleted file mode 100644 index c203646c5d..0000000000 Binary files a/front/public/images/small/harvestcraft/cherryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherryjuiceItem/0.png b/front/public/images/small/harvestcraft/cherryjuiceItem/0.png deleted file mode 100644 index 8d8ffca1f5..0000000000 Binary files a/front/public/images/small/harvestcraft/cherryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherrypieItem/0.png b/front/public/images/small/harvestcraft/cherrypieItem/0.png deleted file mode 100644 index c22053e949..0000000000 Binary files a/front/public/images/small/harvestcraft/cherrypieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherrysmoothieItem/0.png b/front/public/images/small/harvestcraft/cherrysmoothieItem/0.png deleted file mode 100644 index dc2ef23aba..0000000000 Binary files a/front/public/images/small/harvestcraft/cherrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherrysodaItem/0.png b/front/public/images/small/harvestcraft/cherrysodaItem/0.png deleted file mode 100644 index 89ad97da0b..0000000000 Binary files a/front/public/images/small/harvestcraft/cherrysodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cherryyogurtItem/0.png b/front/public/images/small/harvestcraft/cherryyogurtItem/0.png deleted file mode 100644 index 9540ae60ca..0000000000 Binary files a/front/public/images/small/harvestcraft/cherryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chestnutItem/0.png b/front/public/images/small/harvestcraft/chestnutItem/0.png deleted file mode 100644 index a808254f50..0000000000 Binary files a/front/public/images/small/harvestcraft/chestnutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chestnutbutterItem/0.png b/front/public/images/small/harvestcraft/chestnutbutterItem/0.png deleted file mode 100644 index 695788c52d..0000000000 Binary files a/front/public/images/small/harvestcraft/chestnutbutterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chickencelerycasseroleItem/0.png b/front/public/images/small/harvestcraft/chickencelerycasseroleItem/0.png deleted file mode 100644 index c7a5165a76..0000000000 Binary files a/front/public/images/small/harvestcraft/chickencelerycasseroleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chickencurryItem/0.png b/front/public/images/small/harvestcraft/chickencurryItem/0.png deleted file mode 100644 index d7a1c9ac65..0000000000 Binary files a/front/public/images/small/harvestcraft/chickencurryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chickengumboItem/0.png b/front/public/images/small/harvestcraft/chickengumboItem/0.png deleted file mode 100644 index 001a8da377..0000000000 Binary files a/front/public/images/small/harvestcraft/chickengumboItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chickennoodlesoupItem/0.png b/front/public/images/small/harvestcraft/chickennoodlesoupItem/0.png deleted file mode 100644 index a7b3ac87c3..0000000000 Binary files a/front/public/images/small/harvestcraft/chickennoodlesoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chickenparmasanItem/0.png b/front/public/images/small/harvestcraft/chickenparmasanItem/0.png deleted file mode 100644 index 6960fa61ee..0000000000 Binary files a/front/public/images/small/harvestcraft/chickenparmasanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chickenpotpieItem/0.png b/front/public/images/small/harvestcraft/chickenpotpieItem/0.png deleted file mode 100644 index f2f01ad4cc..0000000000 Binary files a/front/public/images/small/harvestcraft/chickenpotpieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chickensandwichItem/0.png b/front/public/images/small/harvestcraft/chickensandwichItem/0.png deleted file mode 100644 index fa0685cfeb..0000000000 Binary files a/front/public/images/small/harvestcraft/chickensandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chikorollItem/0.png b/front/public/images/small/harvestcraft/chikorollItem/0.png deleted file mode 100644 index 2dc03c40c5..0000000000 Binary files a/front/public/images/small/harvestcraft/chikorollItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chiliItem/0.png b/front/public/images/small/harvestcraft/chiliItem/0.png deleted file mode 100644 index 635af91228..0000000000 Binary files a/front/public/images/small/harvestcraft/chiliItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chilichocolateItem/0.png b/front/public/images/small/harvestcraft/chilichocolateItem/0.png deleted file mode 100644 index 06d202ac53..0000000000 Binary files a/front/public/images/small/harvestcraft/chilichocolateItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chilipepperItem/0.png b/front/public/images/small/harvestcraft/chilipepperItem/0.png deleted file mode 100644 index 3dd71d4b16..0000000000 Binary files a/front/public/images/small/harvestcraft/chilipepperItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chilipepperseedItem/0.png b/front/public/images/small/harvestcraft/chilipepperseedItem/0.png deleted file mode 100644 index 2c5cab9368..0000000000 Binary files a/front/public/images/small/harvestcraft/chilipepperseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chilipoppersItem/0.png b/front/public/images/small/harvestcraft/chilipoppersItem/0.png deleted file mode 100644 index 5e11052d2c..0000000000 Binary files a/front/public/images/small/harvestcraft/chilipoppersItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatebaconItem/0.png b/front/public/images/small/harvestcraft/chocolatebaconItem/0.png deleted file mode 100644 index 65783d2da7..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatebaconItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatebarItem/0.png b/front/public/images/small/harvestcraft/chocolatebarItem/0.png deleted file mode 100644 index 7b04b86bce..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatebarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatecaramelfudgeItem/0.png b/front/public/images/small/harvestcraft/chocolatecaramelfudgeItem/0.png deleted file mode 100644 index 9d6afa89d8..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatecaramelfudgeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatecherryItem/0.png b/front/public/images/small/harvestcraft/chocolatecherryItem/0.png deleted file mode 100644 index 1d7a2f15d7..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatecherryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatedonutItem/0.png b/front/public/images/small/harvestcraft/chocolatedonutItem/0.png deleted file mode 100644 index 796593518b..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatedonutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolateicecreamItem/0.png b/front/public/images/small/harvestcraft/chocolateicecreamItem/0.png deleted file mode 100644 index 7339d8ead1..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolateicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatemilkItem/0.png b/front/public/images/small/harvestcraft/chocolatemilkItem/0.png deleted file mode 100644 index aa1a31731d..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatemilkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatemilkshakeItem/0.png b/front/public/images/small/harvestcraft/chocolatemilkshakeItem/0.png deleted file mode 100644 index e8e9526c68..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatemilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolaterollItem/0.png b/front/public/images/small/harvestcraft/chocolaterollItem/0.png deleted file mode 100644 index 8ac21f1fc8..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolaterollItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatesprinklecakeItem/0.png b/front/public/images/small/harvestcraft/chocolatesprinklecakeItem/0.png deleted file mode 100644 index e39908b7bd..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatesprinklecakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolatestrawberryItem/0.png b/front/public/images/small/harvestcraft/chocolatestrawberryItem/0.png deleted file mode 100644 index a1d76201a5..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolatestrawberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chocolateyogurtItem/0.png b/front/public/images/small/harvestcraft/chocolateyogurtItem/0.png deleted file mode 100644 index 35fea60299..0000000000 Binary files a/front/public/images/small/harvestcraft/chocolateyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/chorizoItem/0.png b/front/public/images/small/harvestcraft/chorizoItem/0.png deleted file mode 100644 index 2bc3fc3d6e..0000000000 Binary files a/front/public/images/small/harvestcraft/chorizoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/churn/0.png b/front/public/images/small/harvestcraft/churn/0.png deleted file mode 100644 index 6903a07e8b..0000000000 Binary files a/front/public/images/small/harvestcraft/churn/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/churnon/0.png b/front/public/images/small/harvestcraft/churnon/0.png deleted file mode 100644 index 6903a07e8b..0000000000 Binary files a/front/public/images/small/harvestcraft/churnon/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cinnamonItem/0.png b/front/public/images/small/harvestcraft/cinnamonItem/0.png deleted file mode 100644 index b5d6581288..0000000000 Binary files a/front/public/images/small/harvestcraft/cinnamonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cinnamonappleoatmealItem/0.png b/front/public/images/small/harvestcraft/cinnamonappleoatmealItem/0.png deleted file mode 100644 index 2d0e55dd00..0000000000 Binary files a/front/public/images/small/harvestcraft/cinnamonappleoatmealItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cinnamonrollItem/0.png b/front/public/images/small/harvestcraft/cinnamonrollItem/0.png deleted file mode 100644 index 8c79397938..0000000000 Binary files a/front/public/images/small/harvestcraft/cinnamonrollItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cinnamonsugardonutItem/0.png b/front/public/images/small/harvestcraft/cinnamonsugardonutItem/0.png deleted file mode 100644 index 235b4f30f8..0000000000 Binary files a/front/public/images/small/harvestcraft/cinnamonsugardonutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/citrussaladItem/0.png b/front/public/images/small/harvestcraft/citrussaladItem/0.png deleted file mode 100644 index dc82742c12..0000000000 Binary files a/front/public/images/small/harvestcraft/citrussaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/clamcookedItem/0.png b/front/public/images/small/harvestcraft/clamcookedItem/0.png deleted file mode 100644 index 84abbabfca..0000000000 Binary files a/front/public/images/small/harvestcraft/clamcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/clamrawItem/0.png b/front/public/images/small/harvestcraft/clamrawItem/0.png deleted file mode 100644 index 6c318dc162..0000000000 Binary files a/front/public/images/small/harvestcraft/clamrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cocoapowderItem/0.png b/front/public/images/small/harvestcraft/cocoapowderItem/0.png deleted file mode 100644 index 68083118bf..0000000000 Binary files a/front/public/images/small/harvestcraft/cocoapowderItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coconutItem/0.png b/front/public/images/small/harvestcraft/coconutItem/0.png deleted file mode 100644 index b6aa3c9631..0000000000 Binary files a/front/public/images/small/harvestcraft/coconutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coconutcreamItem/0.png b/front/public/images/small/harvestcraft/coconutcreamItem/0.png deleted file mode 100644 index cc39d5ae9f..0000000000 Binary files a/front/public/images/small/harvestcraft/coconutcreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coconutmilkItem/0.png b/front/public/images/small/harvestcraft/coconutmilkItem/0.png deleted file mode 100644 index 8b0afcf504..0000000000 Binary files a/front/public/images/small/harvestcraft/coconutmilkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coconutshrimpItem/0.png b/front/public/images/small/harvestcraft/coconutshrimpItem/0.png deleted file mode 100644 index a543ae5cc8..0000000000 Binary files a/front/public/images/small/harvestcraft/coconutshrimpItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coconutsmoothieItem/0.png b/front/public/images/small/harvestcraft/coconutsmoothieItem/0.png deleted file mode 100644 index f03d995337..0000000000 Binary files a/front/public/images/small/harvestcraft/coconutsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coconutyogurtItem/0.png b/front/public/images/small/harvestcraft/coconutyogurtItem/0.png deleted file mode 100644 index 306ee230c5..0000000000 Binary files a/front/public/images/small/harvestcraft/coconutyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coffeeItem/0.png b/front/public/images/small/harvestcraft/coffeeItem/0.png deleted file mode 100644 index 8bae176db9..0000000000 Binary files a/front/public/images/small/harvestcraft/coffeeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coffeebeanItem/0.png b/front/public/images/small/harvestcraft/coffeebeanItem/0.png deleted file mode 100644 index b239ff7a34..0000000000 Binary files a/front/public/images/small/harvestcraft/coffeebeanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coffeeconlecheItem/0.png b/front/public/images/small/harvestcraft/coffeeconlecheItem/0.png deleted file mode 100644 index 5538255e54..0000000000 Binary files a/front/public/images/small/harvestcraft/coffeeconlecheItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coffeeseedItem/0.png b/front/public/images/small/harvestcraft/coffeeseedItem/0.png deleted file mode 100644 index 3d525e3cb7..0000000000 Binary files a/front/public/images/small/harvestcraft/coffeeseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/colasodaItem/0.png b/front/public/images/small/harvestcraft/colasodaItem/0.png deleted file mode 100644 index e98f81fd00..0000000000 Binary files a/front/public/images/small/harvestcraft/colasodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coleslawItem/0.png b/front/public/images/small/harvestcraft/coleslawItem/0.png deleted file mode 100644 index e72a1ed968..0000000000 Binary files a/front/public/images/small/harvestcraft/coleslawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/coleslawburgerItem/0.png b/front/public/images/small/harvestcraft/coleslawburgerItem/0.png deleted file mode 100644 index cfb5221966..0000000000 Binary files a/front/public/images/small/harvestcraft/coleslawburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cornItem/0.png b/front/public/images/small/harvestcraft/cornItem/0.png deleted file mode 100644 index 2b5a1cf204..0000000000 Binary files a/front/public/images/small/harvestcraft/cornItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cornbreadItem/0.png b/front/public/images/small/harvestcraft/cornbreadItem/0.png deleted file mode 100644 index 7617ad47de..0000000000 Binary files a/front/public/images/small/harvestcraft/cornbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cornflakesItem/0.png b/front/public/images/small/harvestcraft/cornflakesItem/0.png deleted file mode 100644 index 583db19ac6..0000000000 Binary files a/front/public/images/small/harvestcraft/cornflakesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cornishpastyItem/0.png b/front/public/images/small/harvestcraft/cornishpastyItem/0.png deleted file mode 100644 index 1618cebd16..0000000000 Binary files a/front/public/images/small/harvestcraft/cornishpastyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cornmealItem/0.png b/front/public/images/small/harvestcraft/cornmealItem/0.png deleted file mode 100644 index 1e68887fad..0000000000 Binary files a/front/public/images/small/harvestcraft/cornmealItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cornonthecobItem/0.png b/front/public/images/small/harvestcraft/cornonthecobItem/0.png deleted file mode 100644 index b99a5bda44..0000000000 Binary files a/front/public/images/small/harvestcraft/cornonthecobItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cornseedItem/0.png b/front/public/images/small/harvestcraft/cornseedItem/0.png deleted file mode 100644 index 95d1ceefbd..0000000000 Binary files a/front/public/images/small/harvestcraft/cornseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cottagepieItem/0.png b/front/public/images/small/harvestcraft/cottagepieItem/0.png deleted file mode 100644 index 31bbb2a849..0000000000 Binary files a/front/public/images/small/harvestcraft/cottagepieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cottonItem/0.png b/front/public/images/small/harvestcraft/cottonItem/0.png deleted file mode 100644 index 26ac8f18e4..0000000000 Binary files a/front/public/images/small/harvestcraft/cottonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cottonseedItem/0.png b/front/public/images/small/harvestcraft/cottonseedItem/0.png deleted file mode 100644 index 15c88951f0..0000000000 Binary files a/front/public/images/small/harvestcraft/cottonseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/crabcookedItem/0.png b/front/public/images/small/harvestcraft/crabcookedItem/0.png deleted file mode 100644 index d35bdb65e5..0000000000 Binary files a/front/public/images/small/harvestcraft/crabcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/crabrawItem/0.png b/front/public/images/small/harvestcraft/crabrawItem/0.png deleted file mode 100644 index 5df6b013e9..0000000000 Binary files a/front/public/images/small/harvestcraft/crabrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/crackerItem/0.png b/front/public/images/small/harvestcraft/crackerItem/0.png deleted file mode 100644 index e4cdfa2dc0..0000000000 Binary files a/front/public/images/small/harvestcraft/crackerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberryItem/0.png b/front/public/images/small/harvestcraft/cranberryItem/0.png deleted file mode 100644 index 957c072a48..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberrybarItem/0.png b/front/public/images/small/harvestcraft/cranberrybarItem/0.png deleted file mode 100644 index 4d90c280e0..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberrybarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberryjellyItem/0.png b/front/public/images/small/harvestcraft/cranberryjellyItem/0.png deleted file mode 100644 index 37e941f807..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberryjellysandwichItem/0.png b/front/public/images/small/harvestcraft/cranberryjellysandwichItem/0.png deleted file mode 100644 index 14532a6c89..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberryjuiceItem/0.png b/front/public/images/small/harvestcraft/cranberryjuiceItem/0.png deleted file mode 100644 index d0a77d4991..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberrysauceItem/0.png b/front/public/images/small/harvestcraft/cranberrysauceItem/0.png deleted file mode 100644 index b38a7d18fd..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberrysauceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberryseedItem/0.png b/front/public/images/small/harvestcraft/cranberryseedItem/0.png deleted file mode 100644 index c9c0a3e08e..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberrysmoothieItem/0.png b/front/public/images/small/harvestcraft/cranberrysmoothieItem/0.png deleted file mode 100644 index 4869e42337..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cranberryyogurtItem/0.png b/front/public/images/small/harvestcraft/cranberryyogurtItem/0.png deleted file mode 100644 index 54bd885755..0000000000 Binary files a/front/public/images/small/harvestcraft/cranberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/crayfishcookedItem/0.png b/front/public/images/small/harvestcraft/crayfishcookedItem/0.png deleted file mode 100644 index 39355e560b..0000000000 Binary files a/front/public/images/small/harvestcraft/crayfishcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/crayfishrawItem/0.png b/front/public/images/small/harvestcraft/crayfishrawItem/0.png deleted file mode 100644 index faa8773fcc..0000000000 Binary files a/front/public/images/small/harvestcraft/crayfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/creamcookieItem/0.png b/front/public/images/small/harvestcraft/creamcookieItem/0.png deleted file mode 100644 index a6d13d3d16..0000000000 Binary files a/front/public/images/small/harvestcraft/creamcookieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/creamedbroccolisoupItem/0.png b/front/public/images/small/harvestcraft/creamedbroccolisoupItem/0.png deleted file mode 100644 index a7c5ab325d..0000000000 Binary files a/front/public/images/small/harvestcraft/creamedbroccolisoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/creamedcornItem/0.png b/front/public/images/small/harvestcraft/creamedcornItem/0.png deleted file mode 100644 index 8d51fa912b..0000000000 Binary files a/front/public/images/small/harvestcraft/creamedcornItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/creamofavocadosoupItem/0.png b/front/public/images/small/harvestcraft/creamofavocadosoupItem/0.png deleted file mode 100644 index ee8da3846d..0000000000 Binary files a/front/public/images/small/harvestcraft/creamofavocadosoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/croissantItem/0.png b/front/public/images/small/harvestcraft/croissantItem/0.png deleted file mode 100644 index 240820682c..0000000000 Binary files a/front/public/images/small/harvestcraft/croissantItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cucumberItem/0.png b/front/public/images/small/harvestcraft/cucumberItem/0.png deleted file mode 100644 index 69a9d07430..0000000000 Binary files a/front/public/images/small/harvestcraft/cucumberItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cucumbersaladItem/0.png b/front/public/images/small/harvestcraft/cucumbersaladItem/0.png deleted file mode 100644 index 9abc6d7516..0000000000 Binary files a/front/public/images/small/harvestcraft/cucumbersaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cucumberseedItem/0.png b/front/public/images/small/harvestcraft/cucumberseedItem/0.png deleted file mode 100644 index 3372dc92a4..0000000000 Binary files a/front/public/images/small/harvestcraft/cucumberseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cucumbersoupItem/0.png b/front/public/images/small/harvestcraft/cucumbersoupItem/0.png deleted file mode 100644 index 0f3e19d314..0000000000 Binary files a/front/public/images/small/harvestcraft/cucumbersoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/curryItem/0.png b/front/public/images/small/harvestcraft/curryItem/0.png deleted file mode 100644 index 3a7619d014..0000000000 Binary files a/front/public/images/small/harvestcraft/curryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/curryleafItem/0.png b/front/public/images/small/harvestcraft/curryleafItem/0.png deleted file mode 100644 index c38427da66..0000000000 Binary files a/front/public/images/small/harvestcraft/curryleafItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/curryleafseedItem/0.png b/front/public/images/small/harvestcraft/curryleafseedItem/0.png deleted file mode 100644 index 9bd07f293d..0000000000 Binary files a/front/public/images/small/harvestcraft/curryleafseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/currypowderItem/0.png b/front/public/images/small/harvestcraft/currypowderItem/0.png deleted file mode 100644 index 79e2ce8b5f..0000000000 Binary files a/front/public/images/small/harvestcraft/currypowderItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/custardItem/0.png b/front/public/images/small/harvestcraft/custardItem/0.png deleted file mode 100644 index c2ad42c38a..0000000000 Binary files a/front/public/images/small/harvestcraft/custardItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cuttingboard/0.png b/front/public/images/small/harvestcraft/cuttingboard/0.png deleted file mode 100644 index 53ffad104c..0000000000 Binary files a/front/public/images/small/harvestcraft/cuttingboard/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/cuttingboardItem/0.png b/front/public/images/small/harvestcraft/cuttingboardItem/0.png deleted file mode 100644 index bb8347a921..0000000000 Binary files a/front/public/images/small/harvestcraft/cuttingboardItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/damperItem/0.png b/front/public/images/small/harvestcraft/damperItem/0.png deleted file mode 100644 index 6a7fd8091f..0000000000 Binary files a/front/public/images/small/harvestcraft/damperItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/dateItem/0.png b/front/public/images/small/harvestcraft/dateItem/0.png deleted file mode 100644 index 36db0590e7..0000000000 Binary files a/front/public/images/small/harvestcraft/dateItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/datenutbreadItem/0.png b/front/public/images/small/harvestcraft/datenutbreadItem/0.png deleted file mode 100644 index ba63e0cccf..0000000000 Binary files a/front/public/images/small/harvestcraft/datenutbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/delightedmealItem/0.png b/front/public/images/small/harvestcraft/delightedmealItem/0.png deleted file mode 100644 index 9cba10c77c..0000000000 Binary files a/front/public/images/small/harvestcraft/delightedmealItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/deluxecheeseburgerItem/0.png b/front/public/images/small/harvestcraft/deluxecheeseburgerItem/0.png deleted file mode 100644 index cd9662b92a..0000000000 Binary files a/front/public/images/small/harvestcraft/deluxecheeseburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/deluxechickencurryItem/0.png b/front/public/images/small/harvestcraft/deluxechickencurryItem/0.png deleted file mode 100644 index 16e58812b5..0000000000 Binary files a/front/public/images/small/harvestcraft/deluxechickencurryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/desertgarden/0.png b/front/public/images/small/harvestcraft/desertgarden/0.png deleted file mode 100644 index 62fc554aec..0000000000 Binary files a/front/public/images/small/harvestcraft/desertgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/dimsumItem/0.png b/front/public/images/small/harvestcraft/dimsumItem/0.png deleted file mode 100644 index 6fecc9b62c..0000000000 Binary files a/front/public/images/small/harvestcraft/dimsumItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/donutItem/0.png b/front/public/images/small/harvestcraft/donutItem/0.png deleted file mode 100644 index 33391da806..0000000000 Binary files a/front/public/images/small/harvestcraft/donutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/doughItem/0.png b/front/public/images/small/harvestcraft/doughItem/0.png deleted file mode 100644 index 32d9ecf832..0000000000 Binary files a/front/public/images/small/harvestcraft/doughItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/dragonfruitItem/0.png b/front/public/images/small/harvestcraft/dragonfruitItem/0.png deleted file mode 100644 index 8418f22d60..0000000000 Binary files a/front/public/images/small/harvestcraft/dragonfruitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/durianItem/0.png b/front/public/images/small/harvestcraft/durianItem/0.png deleted file mode 100644 index 67a4c482a1..0000000000 Binary files a/front/public/images/small/harvestcraft/durianItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ediblerootItem/0.png b/front/public/images/small/harvestcraft/ediblerootItem/0.png deleted file mode 100644 index ba93b6f999..0000000000 Binary files a/front/public/images/small/harvestcraft/ediblerootItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/eelrawItem/0.png b/front/public/images/small/harvestcraft/eelrawItem/0.png deleted file mode 100644 index 5b8fef3526..0000000000 Binary files a/front/public/images/small/harvestcraft/eelrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/eggnogItem/0.png b/front/public/images/small/harvestcraft/eggnogItem/0.png deleted file mode 100644 index 9f89b4b3ae..0000000000 Binary files a/front/public/images/small/harvestcraft/eggnogItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/eggplantItem/0.png b/front/public/images/small/harvestcraft/eggplantItem/0.png deleted file mode 100644 index 8e7b07e4ba..0000000000 Binary files a/front/public/images/small/harvestcraft/eggplantItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/eggplantparmItem/0.png b/front/public/images/small/harvestcraft/eggplantparmItem/0.png deleted file mode 100644 index fcbb529674..0000000000 Binary files a/front/public/images/small/harvestcraft/eggplantparmItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/eggplantseedItem/0.png b/front/public/images/small/harvestcraft/eggplantseedItem/0.png deleted file mode 100644 index 5a234e072d..0000000000 Binary files a/front/public/images/small/harvestcraft/eggplantseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/eggsaladItem/0.png b/front/public/images/small/harvestcraft/eggsaladItem/0.png deleted file mode 100644 index 9ed30e5ea2..0000000000 Binary files a/front/public/images/small/harvestcraft/eggsaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/energydrinkItem/0.png b/front/public/images/small/harvestcraft/energydrinkItem/0.png deleted file mode 100644 index 57b46bb059..0000000000 Binary files a/front/public/images/small/harvestcraft/energydrinkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/epicbaconItem/0.png b/front/public/images/small/harvestcraft/epicbaconItem/0.png deleted file mode 100644 index f5a844189f..0000000000 Binary files a/front/public/images/small/harvestcraft/epicbaconItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/espressoItem/0.png b/front/public/images/small/harvestcraft/espressoItem/0.png deleted file mode 100644 index d4a9e8907d..0000000000 Binary files a/front/public/images/small/harvestcraft/espressoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/extremechiliItem/0.png b/front/public/images/small/harvestcraft/extremechiliItem/0.png deleted file mode 100644 index 9f48cb9a17..0000000000 Binary files a/front/public/images/small/harvestcraft/extremechiliItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fairybreadItem/0.png b/front/public/images/small/harvestcraft/fairybreadItem/0.png deleted file mode 100644 index 262be0e42a..0000000000 Binary files a/front/public/images/small/harvestcraft/fairybreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/figItem/0.png b/front/public/images/small/harvestcraft/figItem/0.png deleted file mode 100644 index db25de260c..0000000000 Binary files a/front/public/images/small/harvestcraft/figItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/figbarItem/0.png b/front/public/images/small/harvestcraft/figbarItem/0.png deleted file mode 100644 index 3b2a094e1c..0000000000 Binary files a/front/public/images/small/harvestcraft/figbarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/figjellyItem/0.png b/front/public/images/small/harvestcraft/figjellyItem/0.png deleted file mode 100644 index 6883616069..0000000000 Binary files a/front/public/images/small/harvestcraft/figjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/figjellysandwichItem/0.png b/front/public/images/small/harvestcraft/figjellysandwichItem/0.png deleted file mode 100644 index 1844065255..0000000000 Binary files a/front/public/images/small/harvestcraft/figjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/figjuiceItem/0.png b/front/public/images/small/harvestcraft/figjuiceItem/0.png deleted file mode 100644 index 56339956cd..0000000000 Binary files a/front/public/images/small/harvestcraft/figjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/figsmoothieItem/0.png b/front/public/images/small/harvestcraft/figsmoothieItem/0.png deleted file mode 100644 index f4e65023b2..0000000000 Binary files a/front/public/images/small/harvestcraft/figsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/figyogurtItem/0.png b/front/public/images/small/harvestcraft/figyogurtItem/0.png deleted file mode 100644 index 7dc3a3bc9f..0000000000 Binary files a/front/public/images/small/harvestcraft/figyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/firmtofuItem/0.png b/front/public/images/small/harvestcraft/firmtofuItem/0.png deleted file mode 100644 index fb9445f8af..0000000000 Binary files a/front/public/images/small/harvestcraft/firmtofuItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishandchipsItem/0.png b/front/public/images/small/harvestcraft/fishandchipsItem/0.png deleted file mode 100644 index 9193b4fd96..0000000000 Binary files a/front/public/images/small/harvestcraft/fishandchipsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishdinnerItem/0.png b/front/public/images/small/harvestcraft/fishdinnerItem/0.png deleted file mode 100644 index fe5be7afe1..0000000000 Binary files a/front/public/images/small/harvestcraft/fishdinnerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishlettucewrapItem/0.png b/front/public/images/small/harvestcraft/fishlettucewrapItem/0.png deleted file mode 100644 index 7482a0759a..0000000000 Binary files a/front/public/images/small/harvestcraft/fishlettucewrapItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishsandwichItem/0.png b/front/public/images/small/harvestcraft/fishsandwichItem/0.png deleted file mode 100644 index 946dc2ca98..0000000000 Binary files a/front/public/images/small/harvestcraft/fishsandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishsticksItem/0.png b/front/public/images/small/harvestcraft/fishsticksItem/0.png deleted file mode 100644 index c9329f8194..0000000000 Binary files a/front/public/images/small/harvestcraft/fishsticksItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishtacoItem/0.png b/front/public/images/small/harvestcraft/fishtacoItem/0.png deleted file mode 100644 index 08206eeb1b..0000000000 Binary files a/front/public/images/small/harvestcraft/fishtacoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishtrap/0.png b/front/public/images/small/harvestcraft/fishtrap/0.png deleted file mode 100644 index a48b9d3f4d..0000000000 Binary files a/front/public/images/small/harvestcraft/fishtrap/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fishtrapbaitItem/0.png b/front/public/images/small/harvestcraft/fishtrapbaitItem/0.png deleted file mode 100644 index 02e78f1ad1..0000000000 Binary files a/front/public/images/small/harvestcraft/fishtrapbaitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/flourItem/0.png b/front/public/images/small/harvestcraft/flourItem/0.png deleted file mode 100644 index a1b948a229..0000000000 Binary files a/front/public/images/small/harvestcraft/flourItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/footlongItem/0.png b/front/public/images/small/harvestcraft/footlongItem/0.png deleted file mode 100644 index f730ca6395..0000000000 Binary files a/front/public/images/small/harvestcraft/footlongItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/frenchtoastItem/0.png b/front/public/images/small/harvestcraft/frenchtoastItem/0.png deleted file mode 100644 index 0b04bc0ada..0000000000 Binary files a/front/public/images/small/harvestcraft/frenchtoastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/freshmilkItem/0.png b/front/public/images/small/harvestcraft/freshmilkItem/0.png deleted file mode 100644 index 0415d5aeb3..0000000000 Binary files a/front/public/images/small/harvestcraft/freshmilkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/freshwaterItem/0.png b/front/public/images/small/harvestcraft/freshwaterItem/0.png deleted file mode 100644 index b5995a2aff..0000000000 Binary files a/front/public/images/small/harvestcraft/freshwaterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/friedchickenItem/0.png b/front/public/images/small/harvestcraft/friedchickenItem/0.png deleted file mode 100644 index dc8304bfb6..0000000000 Binary files a/front/public/images/small/harvestcraft/friedchickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/friedeggItem/0.png b/front/public/images/small/harvestcraft/friedeggItem/0.png deleted file mode 100644 index 9970378b91..0000000000 Binary files a/front/public/images/small/harvestcraft/friedeggItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/friedonionsItem/0.png b/front/public/images/small/harvestcraft/friedonionsItem/0.png deleted file mode 100644 index 2322dd67b8..0000000000 Binary files a/front/public/images/small/harvestcraft/friedonionsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/friedpecanokraItem/0.png b/front/public/images/small/harvestcraft/friedpecanokraItem/0.png deleted file mode 100644 index 13f0dab144..0000000000 Binary files a/front/public/images/small/harvestcraft/friedpecanokraItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/friedriceItem/0.png b/front/public/images/small/harvestcraft/friedriceItem/0.png deleted file mode 100644 index daef6be301..0000000000 Binary files a/front/public/images/small/harvestcraft/friedriceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/friesItem/0.png b/front/public/images/small/harvestcraft/friesItem/0.png deleted file mode 100644 index ffd7875564..0000000000 Binary files a/front/public/images/small/harvestcraft/friesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/frogcookedItem/0.png b/front/public/images/small/harvestcraft/frogcookedItem/0.png deleted file mode 100644 index 523de30589..0000000000 Binary files a/front/public/images/small/harvestcraft/frogcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/frograwItem/0.png b/front/public/images/small/harvestcraft/frograwItem/0.png deleted file mode 100644 index 0a2c243cb2..0000000000 Binary files a/front/public/images/small/harvestcraft/frograwItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/frosteddonutItem/0.png b/front/public/images/small/harvestcraft/frosteddonutItem/0.png deleted file mode 100644 index 46ad5ca1c9..0000000000 Binary files a/front/public/images/small/harvestcraft/frosteddonutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fruitbaitItem/0.png b/front/public/images/small/harvestcraft/fruitbaitItem/0.png deleted file mode 100644 index a81c6a821f..0000000000 Binary files a/front/public/images/small/harvestcraft/fruitbaitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fruitcrumbleItem/0.png b/front/public/images/small/harvestcraft/fruitcrumbleItem/0.png deleted file mode 100644 index 5cc49295d5..0000000000 Binary files a/front/public/images/small/harvestcraft/fruitcrumbleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fruitpunchItem/0.png b/front/public/images/small/harvestcraft/fruitpunchItem/0.png deleted file mode 100644 index 638cb0514d..0000000000 Binary files a/front/public/images/small/harvestcraft/fruitpunchItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/fruitsaladItem/0.png b/front/public/images/small/harvestcraft/fruitsaladItem/0.png deleted file mode 100644 index e205040eec..0000000000 Binary files a/front/public/images/small/harvestcraft/fruitsaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/futomakiItem/0.png b/front/public/images/small/harvestcraft/futomakiItem/0.png deleted file mode 100644 index 6c947c8c1f..0000000000 Binary files a/front/public/images/small/harvestcraft/futomakiItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/garammasalaItem/0.png b/front/public/images/small/harvestcraft/garammasalaItem/0.png deleted file mode 100644 index 941f506403..0000000000 Binary files a/front/public/images/small/harvestcraft/garammasalaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gardensoupItem/0.png b/front/public/images/small/harvestcraft/gardensoupItem/0.png deleted file mode 100644 index 77a487338a..0000000000 Binary files a/front/public/images/small/harvestcraft/gardensoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/garlicItem/0.png b/front/public/images/small/harvestcraft/garlicItem/0.png deleted file mode 100644 index c38eacae67..0000000000 Binary files a/front/public/images/small/harvestcraft/garlicItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/garlicbreadItem/0.png b/front/public/images/small/harvestcraft/garlicbreadItem/0.png deleted file mode 100644 index a3a3974da7..0000000000 Binary files a/front/public/images/small/harvestcraft/garlicbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/garlicchickenItem/0.png b/front/public/images/small/harvestcraft/garlicchickenItem/0.png deleted file mode 100644 index a7bb5dc448..0000000000 Binary files a/front/public/images/small/harvestcraft/garlicchickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/garlicmashedpotatoesItem/0.png b/front/public/images/small/harvestcraft/garlicmashedpotatoesItem/0.png deleted file mode 100644 index 07580bb902..0000000000 Binary files a/front/public/images/small/harvestcraft/garlicmashedpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/garlicseedItem/0.png b/front/public/images/small/harvestcraft/garlicseedItem/0.png deleted file mode 100644 index 17808da047..0000000000 Binary files a/front/public/images/small/harvestcraft/garlicseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/generaltsochickenItem/0.png b/front/public/images/small/harvestcraft/generaltsochickenItem/0.png deleted file mode 100644 index 9a990747af..0000000000 Binary files a/front/public/images/small/harvestcraft/generaltsochickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gherkinItem/0.png b/front/public/images/small/harvestcraft/gherkinItem/0.png deleted file mode 100644 index 80b0feadb9..0000000000 Binary files a/front/public/images/small/harvestcraft/gherkinItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gingerItem/0.png b/front/public/images/small/harvestcraft/gingerItem/0.png deleted file mode 100644 index 7878c9eaa4..0000000000 Binary files a/front/public/images/small/harvestcraft/gingerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gingerbreadItem/0.png b/front/public/images/small/harvestcraft/gingerbreadItem/0.png deleted file mode 100644 index 71b598c635..0000000000 Binary files a/front/public/images/small/harvestcraft/gingerbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gingerchickenItem/0.png b/front/public/images/small/harvestcraft/gingerchickenItem/0.png deleted file mode 100644 index b16aba6896..0000000000 Binary files a/front/public/images/small/harvestcraft/gingerchickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gingeredrhubarbtartItem/0.png b/front/public/images/small/harvestcraft/gingeredrhubarbtartItem/0.png deleted file mode 100644 index 7a597a97d4..0000000000 Binary files a/front/public/images/small/harvestcraft/gingeredrhubarbtartItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gingerseedItem/0.png b/front/public/images/small/harvestcraft/gingerseedItem/0.png deleted file mode 100644 index fbe53b5ee7..0000000000 Binary files a/front/public/images/small/harvestcraft/gingerseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gingersnapsItem/0.png b/front/public/images/small/harvestcraft/gingersnapsItem/0.png deleted file mode 100644 index 4ff4078a92..0000000000 Binary files a/front/public/images/small/harvestcraft/gingersnapsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gingersodaItem/0.png b/front/public/images/small/harvestcraft/gingersodaItem/0.png deleted file mode 100644 index f86606d61a..0000000000 Binary files a/front/public/images/small/harvestcraft/gingersodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/glazedcarrotsItem/0.png b/front/public/images/small/harvestcraft/glazedcarrotsItem/0.png deleted file mode 100644 index 19254f5746..0000000000 Binary files a/front/public/images/small/harvestcraft/glazedcarrotsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberryItem/0.png b/front/public/images/small/harvestcraft/gooseberryItem/0.png deleted file mode 100644 index 069e1c9752..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberryjellyItem/0.png b/front/public/images/small/harvestcraft/gooseberryjellyItem/0.png deleted file mode 100644 index a6a02c77dc..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberryjellysandwichItem/0.png b/front/public/images/small/harvestcraft/gooseberryjellysandwichItem/0.png deleted file mode 100644 index ebb03ef65a..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberryjuiceItem/0.png b/front/public/images/small/harvestcraft/gooseberryjuiceItem/0.png deleted file mode 100644 index a9e49cbb8e..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberrymilkshakeItem/0.png b/front/public/images/small/harvestcraft/gooseberrymilkshakeItem/0.png deleted file mode 100644 index 84e1bca471..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberrymilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberrypieItem/0.png b/front/public/images/small/harvestcraft/gooseberrypieItem/0.png deleted file mode 100644 index e7e14814e4..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberrysmoothieItem/0.png b/front/public/images/small/harvestcraft/gooseberrysmoothieItem/0.png deleted file mode 100644 index 0d24316683..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gooseberryyogurtItem/0.png b/front/public/images/small/harvestcraft/gooseberryyogurtItem/0.png deleted file mode 100644 index 5e2ccedd5e..0000000000 Binary files a/front/public/images/small/harvestcraft/gooseberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gourdgarden/0.png b/front/public/images/small/harvestcraft/gourdgarden/0.png deleted file mode 100644 index d51e0d5610..0000000000 Binary files a/front/public/images/small/harvestcraft/gourdgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grainbaitItem/0.png b/front/public/images/small/harvestcraft/grainbaitItem/0.png deleted file mode 100644 index 3042fc2131..0000000000 Binary files a/front/public/images/small/harvestcraft/grainbaitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapeItem/0.png b/front/public/images/small/harvestcraft/grapeItem/0.png deleted file mode 100644 index 3e90533af9..0000000000 Binary files a/front/public/images/small/harvestcraft/grapeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapefruitItem/0.png b/front/public/images/small/harvestcraft/grapefruitItem/0.png deleted file mode 100644 index adbf7d9a5c..0000000000 Binary files a/front/public/images/small/harvestcraft/grapefruitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapefruitjellyItem/0.png b/front/public/images/small/harvestcraft/grapefruitjellyItem/0.png deleted file mode 100644 index e096f11b19..0000000000 Binary files a/front/public/images/small/harvestcraft/grapefruitjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapefruitjellysandwichItem/0.png b/front/public/images/small/harvestcraft/grapefruitjellysandwichItem/0.png deleted file mode 100644 index 9b135f3d14..0000000000 Binary files a/front/public/images/small/harvestcraft/grapefruitjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapefruitjuiceItem/0.png b/front/public/images/small/harvestcraft/grapefruitjuiceItem/0.png deleted file mode 100644 index e5bdefa490..0000000000 Binary files a/front/public/images/small/harvestcraft/grapefruitjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapefruitsmoothieItem/0.png b/front/public/images/small/harvestcraft/grapefruitsmoothieItem/0.png deleted file mode 100644 index 3f4d1f582b..0000000000 Binary files a/front/public/images/small/harvestcraft/grapefruitsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapefruitsodaItem/0.png b/front/public/images/small/harvestcraft/grapefruitsodaItem/0.png deleted file mode 100644 index 6934db70b4..0000000000 Binary files a/front/public/images/small/harvestcraft/grapefruitsodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapefruityogurtItem/0.png b/front/public/images/small/harvestcraft/grapefruityogurtItem/0.png deleted file mode 100644 index df4c6fc575..0000000000 Binary files a/front/public/images/small/harvestcraft/grapefruityogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapejellyItem/0.png b/front/public/images/small/harvestcraft/grapejellyItem/0.png deleted file mode 100644 index fe414279fc..0000000000 Binary files a/front/public/images/small/harvestcraft/grapejellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapejuiceItem/0.png b/front/public/images/small/harvestcraft/grapejuiceItem/0.png deleted file mode 100644 index 6051f97a5d..0000000000 Binary files a/front/public/images/small/harvestcraft/grapejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapesaladItem/0.png b/front/public/images/small/harvestcraft/grapesaladItem/0.png deleted file mode 100644 index 76db0e87f2..0000000000 Binary files a/front/public/images/small/harvestcraft/grapesaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapeseedItem/0.png b/front/public/images/small/harvestcraft/grapeseedItem/0.png deleted file mode 100644 index 1bf19402cc..0000000000 Binary files a/front/public/images/small/harvestcraft/grapeseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapesmoothieItem/0.png b/front/public/images/small/harvestcraft/grapesmoothieItem/0.png deleted file mode 100644 index e6a0574bf9..0000000000 Binary files a/front/public/images/small/harvestcraft/grapesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapesodaItem/0.png b/front/public/images/small/harvestcraft/grapesodaItem/0.png deleted file mode 100644 index a23a038fc7..0000000000 Binary files a/front/public/images/small/harvestcraft/grapesodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grapeyogurtItem/0.png b/front/public/images/small/harvestcraft/grapeyogurtItem/0.png deleted file mode 100644 index 5b038b7a48..0000000000 Binary files a/front/public/images/small/harvestcraft/grapeyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grassgarden/0.png b/front/public/images/small/harvestcraft/grassgarden/0.png deleted file mode 100644 index aa2f5af03b..0000000000 Binary files a/front/public/images/small/harvestcraft/grassgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gravyItem/0.png b/front/public/images/small/harvestcraft/gravyItem/0.png deleted file mode 100644 index 25b2822ac4..0000000000 Binary files a/front/public/images/small/harvestcraft/gravyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/greenheartfishItem/0.png b/front/public/images/small/harvestcraft/greenheartfishItem/0.png deleted file mode 100644 index 379d76202a..0000000000 Binary files a/front/public/images/small/harvestcraft/greenheartfishItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grilledasparagusItem/0.png b/front/public/images/small/harvestcraft/grilledasparagusItem/0.png deleted file mode 100644 index dcae7f7222..0000000000 Binary files a/front/public/images/small/harvestcraft/grilledasparagusItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grilledcheeseItem/0.png b/front/public/images/small/harvestcraft/grilledcheeseItem/0.png deleted file mode 100644 index ffecd55519..0000000000 Binary files a/front/public/images/small/harvestcraft/grilledcheeseItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grilledeggplantItem/0.png b/front/public/images/small/harvestcraft/grilledeggplantItem/0.png deleted file mode 100644 index 2dcb56fbd9..0000000000 Binary files a/front/public/images/small/harvestcraft/grilledeggplantItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grilledmushroomItem/0.png b/front/public/images/small/harvestcraft/grilledmushroomItem/0.png deleted file mode 100644 index 40d91860b7..0000000000 Binary files a/front/public/images/small/harvestcraft/grilledmushroomItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grilledskewersItem/0.png b/front/public/images/small/harvestcraft/grilledskewersItem/0.png deleted file mode 100644 index f488d4439e..0000000000 Binary files a/front/public/images/small/harvestcraft/grilledskewersItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/groundcinnamonItem/0.png b/front/public/images/small/harvestcraft/groundcinnamonItem/0.png deleted file mode 100644 index 469dd99ce4..0000000000 Binary files a/front/public/images/small/harvestcraft/groundcinnamonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/groundgarden/0.png b/front/public/images/small/harvestcraft/groundgarden/0.png deleted file mode 100644 index bf899727c6..0000000000 Binary files a/front/public/images/small/harvestcraft/groundgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/groundnutmegItem/0.png b/front/public/images/small/harvestcraft/groundnutmegItem/0.png deleted file mode 100644 index 673bb0b685..0000000000 Binary files a/front/public/images/small/harvestcraft/groundnutmegItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grouperrawItem/0.png b/front/public/images/small/harvestcraft/grouperrawItem/0.png deleted file mode 100644 index c2fa74ff84..0000000000 Binary files a/front/public/images/small/harvestcraft/grouperrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/grubItem/0.png b/front/public/images/small/harvestcraft/grubItem/0.png deleted file mode 100644 index 8804f40659..0000000000 Binary files a/front/public/images/small/harvestcraft/grubItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/guacamoleItem/0.png b/front/public/images/small/harvestcraft/guacamoleItem/0.png deleted file mode 100644 index e7fd79f80b..0000000000 Binary files a/front/public/images/small/harvestcraft/guacamoleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/gummybearsItem/0.png b/front/public/images/small/harvestcraft/gummybearsItem/0.png deleted file mode 100644 index c1a4b84eec..0000000000 Binary files a/front/public/images/small/harvestcraft/gummybearsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hamburgerItem/0.png b/front/public/images/small/harvestcraft/hamburgerItem/0.png deleted file mode 100644 index d91ca18fd5..0000000000 Binary files a/front/public/images/small/harvestcraft/hamburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hamsweetpicklesandwichItem/0.png b/front/public/images/small/harvestcraft/hamsweetpicklesandwichItem/0.png deleted file mode 100644 index 74530c2c10..0000000000 Binary files a/front/public/images/small/harvestcraft/hamsweetpicklesandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hardenedleatherItem/0.png b/front/public/images/small/harvestcraft/hardenedleatherItem/0.png deleted file mode 100644 index 99e5d83f81..0000000000 Binary files a/front/public/images/small/harvestcraft/hardenedleatherItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hardenedleatherbootsItem/0.png b/front/public/images/small/harvestcraft/hardenedleatherbootsItem/0.png deleted file mode 100644 index fb5004900b..0000000000 Binary files a/front/public/images/small/harvestcraft/hardenedleatherbootsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hardenedleatherchestItem/0.png b/front/public/images/small/harvestcraft/hardenedleatherchestItem/0.png deleted file mode 100644 index 0aa6f05327..0000000000 Binary files a/front/public/images/small/harvestcraft/hardenedleatherchestItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hardenedleatherhelmItem/0.png b/front/public/images/small/harvestcraft/hardenedleatherhelmItem/0.png deleted file mode 100644 index 1ea50931e8..0000000000 Binary files a/front/public/images/small/harvestcraft/hardenedleatherhelmItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hardenedleatherleggingsItem/0.png b/front/public/images/small/harvestcraft/hardenedleatherleggingsItem/0.png deleted file mode 100644 index c330a6060f..0000000000 Binary files a/front/public/images/small/harvestcraft/hardenedleatherleggingsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hashItem/0.png b/front/public/images/small/harvestcraft/hashItem/0.png deleted file mode 100644 index d0e3e05b6f..0000000000 Binary files a/front/public/images/small/harvestcraft/hashItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/heartybreakfastItem/0.png b/front/public/images/small/harvestcraft/heartybreakfastItem/0.png deleted file mode 100644 index 2e6e927d0b..0000000000 Binary files a/front/public/images/small/harvestcraft/heartybreakfastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/heavycreamItem/0.png b/front/public/images/small/harvestcraft/heavycreamItem/0.png deleted file mode 100644 index fbbbb6852b..0000000000 Binary files a/front/public/images/small/harvestcraft/heavycreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/herbbutterparsnipsItem/0.png b/front/public/images/small/harvestcraft/herbbutterparsnipsItem/0.png deleted file mode 100644 index 94b6521c59..0000000000 Binary files a/front/public/images/small/harvestcraft/herbbutterparsnipsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/herbgarden/0.png b/front/public/images/small/harvestcraft/herbgarden/0.png deleted file mode 100644 index 9bbb74cc95..0000000000 Binary files a/front/public/images/small/harvestcraft/herbgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/herringrawItem/0.png b/front/public/images/small/harvestcraft/herringrawItem/0.png deleted file mode 100644 index 6b8780a8ce..0000000000 Binary files a/front/public/images/small/harvestcraft/herringrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/holidaycakeItem/0.png b/front/public/images/small/harvestcraft/holidaycakeItem/0.png deleted file mode 100644 index 82b8541fcd..0000000000 Binary files a/front/public/images/small/harvestcraft/holidaycakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/honeyItem/0.png b/front/public/images/small/harvestcraft/honeyItem/0.png deleted file mode 100644 index ed008a0f8e..0000000000 Binary files a/front/public/images/small/harvestcraft/honeyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/honeycombItem/0.png b/front/public/images/small/harvestcraft/honeycombItem/0.png deleted file mode 100644 index 884e9361be..0000000000 Binary files a/front/public/images/small/harvestcraft/honeycombItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/honeycombchocolatebarItem/0.png b/front/public/images/small/harvestcraft/honeycombchocolatebarItem/0.png deleted file mode 100644 index cd749e306f..0000000000 Binary files a/front/public/images/small/harvestcraft/honeycombchocolatebarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/honeylemonlambItem/0.png b/front/public/images/small/harvestcraft/honeylemonlambItem/0.png deleted file mode 100644 index dac4c698f7..0000000000 Binary files a/front/public/images/small/harvestcraft/honeylemonlambItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/honeysandwichItem/0.png b/front/public/images/small/harvestcraft/honeysandwichItem/0.png deleted file mode 100644 index 0dad128377..0000000000 Binary files a/front/public/images/small/harvestcraft/honeysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hotchocolateItem/0.png b/front/public/images/small/harvestcraft/hotchocolateItem/0.png deleted file mode 100644 index 043541b5e8..0000000000 Binary files a/front/public/images/small/harvestcraft/hotchocolateItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hotdogItem/0.png b/front/public/images/small/harvestcraft/hotdogItem/0.png deleted file mode 100644 index 19441b944d..0000000000 Binary files a/front/public/images/small/harvestcraft/hotdogItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hotwingsItem/0.png b/front/public/images/small/harvestcraft/hotwingsItem/0.png deleted file mode 100644 index be2780641d..0000000000 Binary files a/front/public/images/small/harvestcraft/hotwingsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/hushpuppiesItem/0.png b/front/public/images/small/harvestcraft/hushpuppiesItem/0.png deleted file mode 100644 index ae24af5739..0000000000 Binary files a/front/public/images/small/harvestcraft/hushpuppiesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/icecreamItem/0.png b/front/public/images/small/harvestcraft/icecreamItem/0.png deleted file mode 100644 index b5e4f84481..0000000000 Binary files a/front/public/images/small/harvestcraft/icecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/jaffaItem/0.png b/front/public/images/small/harvestcraft/jaffaItem/0.png deleted file mode 100644 index 051a8f6972..0000000000 Binary files a/front/public/images/small/harvestcraft/jaffaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/jamrollItem/0.png b/front/public/images/small/harvestcraft/jamrollItem/0.png deleted file mode 100644 index 6709169666..0000000000 Binary files a/front/public/images/small/harvestcraft/jamrollItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/jellybeansItem/0.png b/front/public/images/small/harvestcraft/jellybeansItem/0.png deleted file mode 100644 index 06c532a9d6..0000000000 Binary files a/front/public/images/small/harvestcraft/jellybeansItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/jellydonutItem/0.png b/front/public/images/small/harvestcraft/jellydonutItem/0.png deleted file mode 100644 index 56732d8565..0000000000 Binary files a/front/public/images/small/harvestcraft/jellydonutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/jellyfishrawItem/0.png b/front/public/images/small/harvestcraft/jellyfishrawItem/0.png deleted file mode 100644 index a89f7ddc8a..0000000000 Binary files a/front/public/images/small/harvestcraft/jellyfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/juicerItem/0.png b/front/public/images/small/harvestcraft/juicerItem/0.png deleted file mode 100644 index 4327315857..0000000000 Binary files a/front/public/images/small/harvestcraft/juicerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ketchupItem/0.png b/front/public/images/small/harvestcraft/ketchupItem/0.png deleted file mode 100644 index 55c7f0daf9..0000000000 Binary files a/front/public/images/small/harvestcraft/ketchupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/keylimepieItem/0.png b/front/public/images/small/harvestcraft/keylimepieItem/0.png deleted file mode 100644 index 1bba8bb286..0000000000 Binary files a/front/public/images/small/harvestcraft/keylimepieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kimchiItem/0.png b/front/public/images/small/harvestcraft/kimchiItem/0.png deleted file mode 100644 index 2bbe7bb65c..0000000000 Binary files a/front/public/images/small/harvestcraft/kimchiItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kiwiItem/0.png b/front/public/images/small/harvestcraft/kiwiItem/0.png deleted file mode 100644 index 87615d4c10..0000000000 Binary files a/front/public/images/small/harvestcraft/kiwiItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kiwijellyItem/0.png b/front/public/images/small/harvestcraft/kiwijellyItem/0.png deleted file mode 100644 index 0c4ad60c68..0000000000 Binary files a/front/public/images/small/harvestcraft/kiwijellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kiwijellysandwichItem/0.png b/front/public/images/small/harvestcraft/kiwijellysandwichItem/0.png deleted file mode 100644 index 9971d2e053..0000000000 Binary files a/front/public/images/small/harvestcraft/kiwijellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kiwijuiceItem/0.png b/front/public/images/small/harvestcraft/kiwijuiceItem/0.png deleted file mode 100644 index ff51418c7f..0000000000 Binary files a/front/public/images/small/harvestcraft/kiwijuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kiwiseedItem/0.png b/front/public/images/small/harvestcraft/kiwiseedItem/0.png deleted file mode 100644 index 3bec59fcd3..0000000000 Binary files a/front/public/images/small/harvestcraft/kiwiseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kiwismoothieItem/0.png b/front/public/images/small/harvestcraft/kiwismoothieItem/0.png deleted file mode 100644 index 2ec1d7bd73..0000000000 Binary files a/front/public/images/small/harvestcraft/kiwismoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/kiwiyogurtItem/0.png b/front/public/images/small/harvestcraft/kiwiyogurtItem/0.png deleted file mode 100644 index 17e9585fbd..0000000000 Binary files a/front/public/images/small/harvestcraft/kiwiyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lambbarleysoupItem/0.png b/front/public/images/small/harvestcraft/lambbarleysoupItem/0.png deleted file mode 100644 index 4fd3bbec5c..0000000000 Binary files a/front/public/images/small/harvestcraft/lambbarleysoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lambkebabItem/0.png b/front/public/images/small/harvestcraft/lambkebabItem/0.png deleted file mode 100644 index 49fec5e98f..0000000000 Binary files a/front/public/images/small/harvestcraft/lambkebabItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lambwithmintsauceItem/0.png b/front/public/images/small/harvestcraft/lambwithmintsauceItem/0.png deleted file mode 100644 index 607b3a0b02..0000000000 Binary files a/front/public/images/small/harvestcraft/lambwithmintsauceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lamingtonItem/0.png b/front/public/images/small/harvestcraft/lamingtonItem/0.png deleted file mode 100644 index 5bfe48a1d7..0000000000 Binary files a/front/public/images/small/harvestcraft/lamingtonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lavendershortbreadItem/0.png b/front/public/images/small/harvestcraft/lavendershortbreadItem/0.png deleted file mode 100644 index 5e9ed2fa61..0000000000 Binary files a/front/public/images/small/harvestcraft/lavendershortbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/leafychickensandwichItem/0.png b/front/public/images/small/harvestcraft/leafychickensandwichItem/0.png deleted file mode 100644 index 59e1fa7218..0000000000 Binary files a/front/public/images/small/harvestcraft/leafychickensandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/leafyfishsandwichItem/0.png b/front/public/images/small/harvestcraft/leafyfishsandwichItem/0.png deleted file mode 100644 index a303a9658f..0000000000 Binary files a/front/public/images/small/harvestcraft/leafyfishsandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/leafygarden/0.png b/front/public/images/small/harvestcraft/leafygarden/0.png deleted file mode 100644 index 5b611c338f..0000000000 Binary files a/front/public/images/small/harvestcraft/leafygarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/leekItem/0.png b/front/public/images/small/harvestcraft/leekItem/0.png deleted file mode 100644 index 50fbe54889..0000000000 Binary files a/front/public/images/small/harvestcraft/leekItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/leekbaconsoupItem/0.png b/front/public/images/small/harvestcraft/leekbaconsoupItem/0.png deleted file mode 100644 index a6904ced5e..0000000000 Binary files a/front/public/images/small/harvestcraft/leekbaconsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/leekseedItem/0.png b/front/public/images/small/harvestcraft/leekseedItem/0.png deleted file mode 100644 index 357cd04011..0000000000 Binary files a/front/public/images/small/harvestcraft/leekseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonItem/0.png b/front/public/images/small/harvestcraft/lemonItem/0.png deleted file mode 100644 index 121b31bcc1..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonaideItem/0.png b/front/public/images/small/harvestcraft/lemonaideItem/0.png deleted file mode 100644 index 3944fa0847..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonaideItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonbarItem/0.png b/front/public/images/small/harvestcraft/lemonbarItem/0.png deleted file mode 100644 index 4ece6531b6..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonbarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonchickenItem/0.png b/front/public/images/small/harvestcraft/lemonchickenItem/0.png deleted file mode 100644 index 1b559914b4..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonchickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonjellyItem/0.png b/front/public/images/small/harvestcraft/lemonjellyItem/0.png deleted file mode 100644 index f3d50f165b..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonjellysandwichItem/0.png b/front/public/images/small/harvestcraft/lemonjellysandwichItem/0.png deleted file mode 100644 index 99bc2b1235..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonlimesodaItem/0.png b/front/public/images/small/harvestcraft/lemonlimesodaItem/0.png deleted file mode 100644 index 8994bb2f4a..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonlimesodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonmeringueItem/0.png b/front/public/images/small/harvestcraft/lemonmeringueItem/0.png deleted file mode 100644 index c8d65931ac..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonmeringueItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonsmoothieItem/0.png b/front/public/images/small/harvestcraft/lemonsmoothieItem/0.png deleted file mode 100644 index b8047ad9fa..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lemonyogurtItem/0.png b/front/public/images/small/harvestcraft/lemonyogurtItem/0.png deleted file mode 100644 index 8187da1231..0000000000 Binary files a/front/public/images/small/harvestcraft/lemonyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lettuceItem/0.png b/front/public/images/small/harvestcraft/lettuceItem/0.png deleted file mode 100644 index a12708ad4c..0000000000 Binary files a/front/public/images/small/harvestcraft/lettuceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/lettuceseedItem/0.png b/front/public/images/small/harvestcraft/lettuceseedItem/0.png deleted file mode 100644 index 4192f6bda4..0000000000 Binary files a/front/public/images/small/harvestcraft/lettuceseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/limeItem/0.png b/front/public/images/small/harvestcraft/limeItem/0.png deleted file mode 100644 index 3264761b4d..0000000000 Binary files a/front/public/images/small/harvestcraft/limeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/limejellyItem/0.png b/front/public/images/small/harvestcraft/limejellyItem/0.png deleted file mode 100644 index 5a3a64a4e0..0000000000 Binary files a/front/public/images/small/harvestcraft/limejellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/limejellysandwichItem/0.png b/front/public/images/small/harvestcraft/limejellysandwichItem/0.png deleted file mode 100644 index 3a1106a891..0000000000 Binary files a/front/public/images/small/harvestcraft/limejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/limejuiceItem/0.png b/front/public/images/small/harvestcraft/limejuiceItem/0.png deleted file mode 100644 index c6c7486772..0000000000 Binary files a/front/public/images/small/harvestcraft/limejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/limesmoothieItem/0.png b/front/public/images/small/harvestcraft/limesmoothieItem/0.png deleted file mode 100644 index 3c723847b5..0000000000 Binary files a/front/public/images/small/harvestcraft/limesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/limeyogurtItem/0.png b/front/public/images/small/harvestcraft/limeyogurtItem/0.png deleted file mode 100644 index 39b54700bd..0000000000 Binary files a/front/public/images/small/harvestcraft/limeyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/loadedbakedpotatoItem/0.png b/front/public/images/small/harvestcraft/loadedbakedpotatoItem/0.png deleted file mode 100644 index aeb68b7df0..0000000000 Binary files a/front/public/images/small/harvestcraft/loadedbakedpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mangoItem/0.png b/front/public/images/small/harvestcraft/mangoItem/0.png deleted file mode 100644 index d3840ce2bc..0000000000 Binary files a/front/public/images/small/harvestcraft/mangoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mangochutneyItem/0.png b/front/public/images/small/harvestcraft/mangochutneyItem/0.png deleted file mode 100644 index c9995ba219..0000000000 Binary files a/front/public/images/small/harvestcraft/mangochutneyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mangojellyItem/0.png b/front/public/images/small/harvestcraft/mangojellyItem/0.png deleted file mode 100644 index f31bf31061..0000000000 Binary files a/front/public/images/small/harvestcraft/mangojellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mangojellysandwichItem/0.png b/front/public/images/small/harvestcraft/mangojellysandwichItem/0.png deleted file mode 100644 index 133012d91b..0000000000 Binary files a/front/public/images/small/harvestcraft/mangojellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mangojuiceItem/0.png b/front/public/images/small/harvestcraft/mangojuiceItem/0.png deleted file mode 100644 index 053f2a0c5b..0000000000 Binary files a/front/public/images/small/harvestcraft/mangojuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mangosmoothieItem/0.png b/front/public/images/small/harvestcraft/mangosmoothieItem/0.png deleted file mode 100644 index 363862478d..0000000000 Binary files a/front/public/images/small/harvestcraft/mangosmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mangoyogurtItem/0.png b/front/public/images/small/harvestcraft/mangoyogurtItem/0.png deleted file mode 100644 index a616268b8c..0000000000 Binary files a/front/public/images/small/harvestcraft/mangoyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/manjuuItem/0.png b/front/public/images/small/harvestcraft/manjuuItem/0.png deleted file mode 100644 index a02c20a571..0000000000 Binary files a/front/public/images/small/harvestcraft/manjuuItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/maplecandiedbaconItem/0.png b/front/public/images/small/harvestcraft/maplecandiedbaconItem/0.png deleted file mode 100644 index 19f960eea1..0000000000 Binary files a/front/public/images/small/harvestcraft/maplecandiedbaconItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mapleoatmealItem/0.png b/front/public/images/small/harvestcraft/mapleoatmealItem/0.png deleted file mode 100644 index 3c7db272dd..0000000000 Binary files a/front/public/images/small/harvestcraft/mapleoatmealItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/maplesausageItem/0.png b/front/public/images/small/harvestcraft/maplesausageItem/0.png deleted file mode 100644 index a8764cab1f..0000000000 Binary files a/front/public/images/small/harvestcraft/maplesausageItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/maplesyrupItem/0.png b/front/public/images/small/harvestcraft/maplesyrupItem/0.png deleted file mode 100644 index ef636cb60b..0000000000 Binary files a/front/public/images/small/harvestcraft/maplesyrupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/maplesyruppancakesItem/0.png b/front/public/images/small/harvestcraft/maplesyruppancakesItem/0.png deleted file mode 100644 index 40cb6b30aa..0000000000 Binary files a/front/public/images/small/harvestcraft/maplesyruppancakesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/maplesyrupwafflesItem/0.png b/front/public/images/small/harvestcraft/maplesyrupwafflesItem/0.png deleted file mode 100644 index 49ebe7700a..0000000000 Binary files a/front/public/images/small/harvestcraft/maplesyrupwafflesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/marinatedcucumbersItem/0.png b/front/public/images/small/harvestcraft/marinatedcucumbersItem/0.png deleted file mode 100644 index 82be31affc..0000000000 Binary files a/front/public/images/small/harvestcraft/marinatedcucumbersItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/market/0.png b/front/public/images/small/harvestcraft/market/0.png deleted file mode 100644 index 648efc2e65..0000000000 Binary files a/front/public/images/small/harvestcraft/market/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/marshmellowsItem/0.png b/front/public/images/small/harvestcraft/marshmellowsItem/0.png deleted file mode 100644 index 83d0a7d644..0000000000 Binary files a/front/public/images/small/harvestcraft/marshmellowsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/marzipanItem/0.png b/front/public/images/small/harvestcraft/marzipanItem/0.png deleted file mode 100644 index a4bd50811d..0000000000 Binary files a/front/public/images/small/harvestcraft/marzipanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mashedpotatoesItem/0.png b/front/public/images/small/harvestcraft/mashedpotatoesItem/0.png deleted file mode 100644 index e859232273..0000000000 Binary files a/front/public/images/small/harvestcraft/mashedpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mashedsweetpotatoesItem/0.png b/front/public/images/small/harvestcraft/mashedsweetpotatoesItem/0.png deleted file mode 100644 index d734721663..0000000000 Binary files a/front/public/images/small/harvestcraft/mashedsweetpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mayoItem/0.png b/front/public/images/small/harvestcraft/mayoItem/0.png deleted file mode 100644 index e55eeb70ca..0000000000 Binary files a/front/public/images/small/harvestcraft/mayoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mcpamItem/0.png b/front/public/images/small/harvestcraft/mcpamItem/0.png deleted file mode 100644 index f5b57b06c7..0000000000 Binary files a/front/public/images/small/harvestcraft/mcpamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/meatfeastpizzaItem/0.png b/front/public/images/small/harvestcraft/meatfeastpizzaItem/0.png deleted file mode 100644 index ca6b63be75..0000000000 Binary files a/front/public/images/small/harvestcraft/meatfeastpizzaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/meatpieItem/0.png b/front/public/images/small/harvestcraft/meatpieItem/0.png deleted file mode 100644 index dd0a479908..0000000000 Binary files a/front/public/images/small/harvestcraft/meatpieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/meatystewItem/0.png b/front/public/images/small/harvestcraft/meatystewItem/0.png deleted file mode 100644 index cd0469d895..0000000000 Binary files a/front/public/images/small/harvestcraft/meatystewItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/melonjuiceItem/0.png b/front/public/images/small/harvestcraft/melonjuiceItem/0.png deleted file mode 100644 index c15f5b2310..0000000000 Binary files a/front/public/images/small/harvestcraft/melonjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/melonsmoothieItem/0.png b/front/public/images/small/harvestcraft/melonsmoothieItem/0.png deleted file mode 100644 index 3b317a8495..0000000000 Binary files a/front/public/images/small/harvestcraft/melonsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/melonyogurtItem/0.png b/front/public/images/small/harvestcraft/melonyogurtItem/0.png deleted file mode 100644 index 73a01ca48a..0000000000 Binary files a/front/public/images/small/harvestcraft/melonyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mincepieItem/0.png b/front/public/images/small/harvestcraft/mincepieItem/0.png deleted file mode 100644 index a671dc0e65..0000000000 Binary files a/front/public/images/small/harvestcraft/mincepieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mintchocolatechipicemcreamItem/0.png b/front/public/images/small/harvestcraft/mintchocolatechipicemcreamItem/0.png deleted file mode 100644 index 7e8f992860..0000000000 Binary files a/front/public/images/small/harvestcraft/mintchocolatechipicemcreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mixedsaladItem/0.png b/front/public/images/small/harvestcraft/mixedsaladItem/0.png deleted file mode 100644 index 323c1c5a96..0000000000 Binary files a/front/public/images/small/harvestcraft/mixedsaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mixingbowlItem/0.png b/front/public/images/small/harvestcraft/mixingbowlItem/0.png deleted file mode 100644 index aee5fd3b0e..0000000000 Binary files a/front/public/images/small/harvestcraft/mixingbowlItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mochaicecreamItem/0.png b/front/public/images/small/harvestcraft/mochaicecreamItem/0.png deleted file mode 100644 index fcc1754d25..0000000000 Binary files a/front/public/images/small/harvestcraft/mochaicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mochiItem/0.png b/front/public/images/small/harvestcraft/mochiItem/0.png deleted file mode 100644 index aee0e35067..0000000000 Binary files a/front/public/images/small/harvestcraft/mochiItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mortarandpestleItem/0.png b/front/public/images/small/harvestcraft/mortarandpestleItem/0.png deleted file mode 100644 index c0cd03b0cd..0000000000 Binary files a/front/public/images/small/harvestcraft/mortarandpestleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mudfishrawItem/0.png b/front/public/images/small/harvestcraft/mudfishrawItem/0.png deleted file mode 100644 index e80d4eb5cd..0000000000 Binary files a/front/public/images/small/harvestcraft/mudfishrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/museliItem/0.png b/front/public/images/small/harvestcraft/museliItem/0.png deleted file mode 100644 index a1531480d1..0000000000 Binary files a/front/public/images/small/harvestcraft/museliItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mushroomgarden/0.png b/front/public/images/small/harvestcraft/mushroomgarden/0.png deleted file mode 100644 index f8f6f421cd..0000000000 Binary files a/front/public/images/small/harvestcraft/mushroomgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mushroomrisottoItem/0.png b/front/public/images/small/harvestcraft/mushroomrisottoItem/0.png deleted file mode 100644 index d1f0ef2ffb..0000000000 Binary files a/front/public/images/small/harvestcraft/mushroomrisottoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mustardItem/0.png b/front/public/images/small/harvestcraft/mustardItem/0.png deleted file mode 100644 index 816dd28aa3..0000000000 Binary files a/front/public/images/small/harvestcraft/mustardItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mustardseedItem/0.png b/front/public/images/small/harvestcraft/mustardseedItem/0.png deleted file mode 100644 index 397cd587bd..0000000000 Binary files a/front/public/images/small/harvestcraft/mustardseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/mustardseedsItem/0.png b/front/public/images/small/harvestcraft/mustardseedsItem/0.png deleted file mode 100644 index 5d0a093e5a..0000000000 Binary files a/front/public/images/small/harvestcraft/mustardseedsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/muttoncookedItem/0.png b/front/public/images/small/harvestcraft/muttoncookedItem/0.png deleted file mode 100644 index 58c70eb67c..0000000000 Binary files a/front/public/images/small/harvestcraft/muttoncookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/muttonrawItem/0.png b/front/public/images/small/harvestcraft/muttonrawItem/0.png deleted file mode 100644 index 0535e1c829..0000000000 Binary files a/front/public/images/small/harvestcraft/muttonrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/naanItem/0.png b/front/public/images/small/harvestcraft/naanItem/0.png deleted file mode 100644 index cd62b5028d..0000000000 Binary files a/front/public/images/small/harvestcraft/naanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/nachoesItem/0.png b/front/public/images/small/harvestcraft/nachoesItem/0.png deleted file mode 100644 index 39dc491490..0000000000 Binary files a/front/public/images/small/harvestcraft/nachoesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/neapolitanicecreamItem/0.png b/front/public/images/small/harvestcraft/neapolitanicecreamItem/0.png deleted file mode 100644 index b9573d158d..0000000000 Binary files a/front/public/images/small/harvestcraft/neapolitanicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/nutellaItem/0.png b/front/public/images/small/harvestcraft/nutellaItem/0.png deleted file mode 100644 index 026d2b9aca..0000000000 Binary files a/front/public/images/small/harvestcraft/nutellaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/nutmegItem/0.png b/front/public/images/small/harvestcraft/nutmegItem/0.png deleted file mode 100644 index 3d2a10765d..0000000000 Binary files a/front/public/images/small/harvestcraft/nutmegItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/oatsItem/0.png b/front/public/images/small/harvestcraft/oatsItem/0.png deleted file mode 100644 index 0d65b9bc79..0000000000 Binary files a/front/public/images/small/harvestcraft/oatsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/oatsseedItem/0.png b/front/public/images/small/harvestcraft/oatsseedItem/0.png deleted file mode 100644 index 8a21c4e803..0000000000 Binary files a/front/public/images/small/harvestcraft/oatsseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/octopuscookedItem/0.png b/front/public/images/small/harvestcraft/octopuscookedItem/0.png deleted file mode 100644 index 7938f945d0..0000000000 Binary files a/front/public/images/small/harvestcraft/octopuscookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/octopusrawItem/0.png b/front/public/images/small/harvestcraft/octopusrawItem/0.png deleted file mode 100644 index 1d25767ef4..0000000000 Binary files a/front/public/images/small/harvestcraft/octopusrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/okraItem/0.png b/front/public/images/small/harvestcraft/okraItem/0.png deleted file mode 100644 index 7b1532d35b..0000000000 Binary files a/front/public/images/small/harvestcraft/okraItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/okrachipsItem/0.png b/front/public/images/small/harvestcraft/okrachipsItem/0.png deleted file mode 100644 index 0b2fe9eb1f..0000000000 Binary files a/front/public/images/small/harvestcraft/okrachipsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/okracreoleItem/0.png b/front/public/images/small/harvestcraft/okracreoleItem/0.png deleted file mode 100644 index 8d2046b283..0000000000 Binary files a/front/public/images/small/harvestcraft/okracreoleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/okraseedItem/0.png b/front/public/images/small/harvestcraft/okraseedItem/0.png deleted file mode 100644 index d7f66b1be8..0000000000 Binary files a/front/public/images/small/harvestcraft/okraseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/oldworldveggiesoupItem/0.png b/front/public/images/small/harvestcraft/oldworldveggiesoupItem/0.png deleted file mode 100644 index 98256dba5a..0000000000 Binary files a/front/public/images/small/harvestcraft/oldworldveggiesoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/oliveItem/0.png b/front/public/images/small/harvestcraft/oliveItem/0.png deleted file mode 100644 index f904d27e97..0000000000 Binary files a/front/public/images/small/harvestcraft/oliveItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/oliveoilItem/0.png b/front/public/images/small/harvestcraft/oliveoilItem/0.png deleted file mode 100644 index 7033167118..0000000000 Binary files a/front/public/images/small/harvestcraft/oliveoilItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/omeletItem/0.png b/front/public/images/small/harvestcraft/omeletItem/0.png deleted file mode 100644 index 3a5fe30e20..0000000000 Binary files a/front/public/images/small/harvestcraft/omeletItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/onionItem/0.png b/front/public/images/small/harvestcraft/onionItem/0.png deleted file mode 100644 index 5620968938..0000000000 Binary files a/front/public/images/small/harvestcraft/onionItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/onionhamburgerItem/0.png b/front/public/images/small/harvestcraft/onionhamburgerItem/0.png deleted file mode 100644 index fab69724dc..0000000000 Binary files a/front/public/images/small/harvestcraft/onionhamburgerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/onionseedItem/0.png b/front/public/images/small/harvestcraft/onionseedItem/0.png deleted file mode 100644 index f07a4eb9e8..0000000000 Binary files a/front/public/images/small/harvestcraft/onionseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/onionsoupItem/0.png b/front/public/images/small/harvestcraft/onionsoupItem/0.png deleted file mode 100644 index 16d1b90913..0000000000 Binary files a/front/public/images/small/harvestcraft/onionsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangeItem/0.png b/front/public/images/small/harvestcraft/orangeItem/0.png deleted file mode 100644 index 3724a184e5..0000000000 Binary files a/front/public/images/small/harvestcraft/orangeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangechickenItem/0.png b/front/public/images/small/harvestcraft/orangechickenItem/0.png deleted file mode 100644 index d9df5b8b7f..0000000000 Binary files a/front/public/images/small/harvestcraft/orangechickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangejellyItem/0.png b/front/public/images/small/harvestcraft/orangejellyItem/0.png deleted file mode 100644 index 3528f5cdff..0000000000 Binary files a/front/public/images/small/harvestcraft/orangejellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangejellysandwichItem/0.png b/front/public/images/small/harvestcraft/orangejellysandwichItem/0.png deleted file mode 100644 index d9adcb71ed..0000000000 Binary files a/front/public/images/small/harvestcraft/orangejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangejuiceItem/0.png b/front/public/images/small/harvestcraft/orangejuiceItem/0.png deleted file mode 100644 index 2a8fabd6c1..0000000000 Binary files a/front/public/images/small/harvestcraft/orangejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangesmoothieItem/0.png b/front/public/images/small/harvestcraft/orangesmoothieItem/0.png deleted file mode 100644 index 812c859beb..0000000000 Binary files a/front/public/images/small/harvestcraft/orangesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangesodaItem/0.png b/front/public/images/small/harvestcraft/orangesodaItem/0.png deleted file mode 100644 index 285638cc42..0000000000 Binary files a/front/public/images/small/harvestcraft/orangesodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/orangeyogurtItem/0.png b/front/public/images/small/harvestcraft/orangeyogurtItem/0.png deleted file mode 100644 index 9aff583ef9..0000000000 Binary files a/front/public/images/small/harvestcraft/orangeyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/oven/0.png b/front/public/images/small/harvestcraft/oven/0.png deleted file mode 100644 index 7ecc480ef6..0000000000 Binary files a/front/public/images/small/harvestcraft/oven/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ovenon/0.png b/front/public/images/small/harvestcraft/ovenon/0.png deleted file mode 100644 index 7ecc480ef6..0000000000 Binary files a/front/public/images/small/harvestcraft/ovenon/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ovenroastedcauliflowerItem/0.png b/front/public/images/small/harvestcraft/ovenroastedcauliflowerItem/0.png deleted file mode 100644 index 136a665855..0000000000 Binary files a/front/public/images/small/harvestcraft/ovenroastedcauliflowerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamAlmond/0.png b/front/public/images/small/harvestcraft/pamAlmond/0.png deleted file mode 100644 index 3bd817a61f..0000000000 Binary files a/front/public/images/small/harvestcraft/pamAlmond/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamApple/0.png b/front/public/images/small/harvestcraft/pamApple/0.png deleted file mode 100644 index 46abb9de4c..0000000000 Binary files a/front/public/images/small/harvestcraft/pamApple/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamApricot/0.png b/front/public/images/small/harvestcraft/pamApricot/0.png deleted file mode 100644 index 6c824a4525..0000000000 Binary files a/front/public/images/small/harvestcraft/pamApricot/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamAvocado/0.png b/front/public/images/small/harvestcraft/pamAvocado/0.png deleted file mode 100644 index 3737fd4bdc..0000000000 Binary files a/front/public/images/small/harvestcraft/pamAvocado/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamBanana/0.png b/front/public/images/small/harvestcraft/pamBanana/0.png deleted file mode 100644 index eaadfe9479..0000000000 Binary files a/front/public/images/small/harvestcraft/pamBanana/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamCashew/0.png b/front/public/images/small/harvestcraft/pamCashew/0.png deleted file mode 100644 index 1be4040821..0000000000 Binary files a/front/public/images/small/harvestcraft/pamCashew/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamCherry/0.png b/front/public/images/small/harvestcraft/pamCherry/0.png deleted file mode 100644 index 8dfc54cd3d..0000000000 Binary files a/front/public/images/small/harvestcraft/pamCherry/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamChestnut/0.png b/front/public/images/small/harvestcraft/pamChestnut/0.png deleted file mode 100644 index f730dcfd35..0000000000 Binary files a/front/public/images/small/harvestcraft/pamChestnut/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamCinnamon/0.png b/front/public/images/small/harvestcraft/pamCinnamon/0.png deleted file mode 100644 index a48e2c4f5e..0000000000 Binary files a/front/public/images/small/harvestcraft/pamCinnamon/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamCoconut/0.png b/front/public/images/small/harvestcraft/pamCoconut/0.png deleted file mode 100644 index e68f8218b4..0000000000 Binary files a/front/public/images/small/harvestcraft/pamCoconut/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamDate/0.png b/front/public/images/small/harvestcraft/pamDate/0.png deleted file mode 100644 index ee3b377896..0000000000 Binary files a/front/public/images/small/harvestcraft/pamDate/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamDragonfruit/0.png b/front/public/images/small/harvestcraft/pamDragonfruit/0.png deleted file mode 100644 index 839b8b99a3..0000000000 Binary files a/front/public/images/small/harvestcraft/pamDragonfruit/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamDurian/0.png b/front/public/images/small/harvestcraft/pamDurian/0.png deleted file mode 100644 index fd79501bf9..0000000000 Binary files a/front/public/images/small/harvestcraft/pamDurian/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamFig/0.png b/front/public/images/small/harvestcraft/pamFig/0.png deleted file mode 100644 index f58341babe..0000000000 Binary files a/front/public/images/small/harvestcraft/pamFig/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamGooseberry/0.png b/front/public/images/small/harvestcraft/pamGooseberry/0.png deleted file mode 100644 index 92afe82489..0000000000 Binary files a/front/public/images/small/harvestcraft/pamGooseberry/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamGrapefruit/0.png b/front/public/images/small/harvestcraft/pamGrapefruit/0.png deleted file mode 100644 index 6806ddadb0..0000000000 Binary files a/front/public/images/small/harvestcraft/pamGrapefruit/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamLemon/0.png b/front/public/images/small/harvestcraft/pamLemon/0.png deleted file mode 100644 index ac9791d03a..0000000000 Binary files a/front/public/images/small/harvestcraft/pamLemon/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamLime/0.png b/front/public/images/small/harvestcraft/pamLime/0.png deleted file mode 100644 index cd2b723c87..0000000000 Binary files a/front/public/images/small/harvestcraft/pamLime/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamMango/0.png b/front/public/images/small/harvestcraft/pamMango/0.png deleted file mode 100644 index 05649e0d79..0000000000 Binary files a/front/public/images/small/harvestcraft/pamMango/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamMaple/0.png b/front/public/images/small/harvestcraft/pamMaple/0.png deleted file mode 100644 index 3a7453feff..0000000000 Binary files a/front/public/images/small/harvestcraft/pamMaple/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamNutmeg/0.png b/front/public/images/small/harvestcraft/pamNutmeg/0.png deleted file mode 100644 index 1f660de044..0000000000 Binary files a/front/public/images/small/harvestcraft/pamNutmeg/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamOlive/0.png b/front/public/images/small/harvestcraft/pamOlive/0.png deleted file mode 100644 index 7ed0808ed0..0000000000 Binary files a/front/public/images/small/harvestcraft/pamOlive/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamOrange/0.png b/front/public/images/small/harvestcraft/pamOrange/0.png deleted file mode 100644 index b5062dfe5f..0000000000 Binary files a/front/public/images/small/harvestcraft/pamOrange/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPapaya/0.png b/front/public/images/small/harvestcraft/pamPapaya/0.png deleted file mode 100644 index 87fe16a193..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPapaya/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPaperbark/0.png b/front/public/images/small/harvestcraft/pamPaperbark/0.png deleted file mode 100644 index 68af2a38aa..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPaperbark/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPeach/0.png b/front/public/images/small/harvestcraft/pamPeach/0.png deleted file mode 100644 index 428fa1b0cf..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPeach/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPear/0.png b/front/public/images/small/harvestcraft/pamPear/0.png deleted file mode 100644 index 58c7d60f32..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPear/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPecan/0.png b/front/public/images/small/harvestcraft/pamPecan/0.png deleted file mode 100644 index d3ad2ce7a8..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPecan/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPeppercorn/0.png b/front/public/images/small/harvestcraft/pamPeppercorn/0.png deleted file mode 100644 index 8a0508fb12..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPeppercorn/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPersimmon/0.png b/front/public/images/small/harvestcraft/pamPersimmon/0.png deleted file mode 100644 index 381d8548b4..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPersimmon/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPistachio/0.png b/front/public/images/small/harvestcraft/pamPistachio/0.png deleted file mode 100644 index c50f60f92e..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPistachio/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPlum/0.png b/front/public/images/small/harvestcraft/pamPlum/0.png deleted file mode 100644 index 1f4abda72e..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPlum/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamPomegranate/0.png b/front/public/images/small/harvestcraft/pamPomegranate/0.png deleted file mode 100644 index 10d2d24e64..0000000000 Binary files a/front/public/images/small/harvestcraft/pamPomegranate/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamStarfruit/0.png b/front/public/images/small/harvestcraft/pamStarfruit/0.png deleted file mode 100644 index e6ab2f0c43..0000000000 Binary files a/front/public/images/small/harvestcraft/pamStarfruit/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamVanillabean/0.png b/front/public/images/small/harvestcraft/pamVanillabean/0.png deleted file mode 100644 index d090117736..0000000000 Binary files a/front/public/images/small/harvestcraft/pamVanillabean/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamWalnut/0.png b/front/public/images/small/harvestcraft/pamWalnut/0.png deleted file mode 100644 index e1d0fae3b7..0000000000 Binary files a/front/public/images/small/harvestcraft/pamWalnut/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamalmondSapling/0.png b/front/public/images/small/harvestcraft/pamalmondSapling/0.png deleted file mode 100644 index a57639a17b..0000000000 Binary files a/front/public/images/small/harvestcraft/pamalmondSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamappleSapling/0.png b/front/public/images/small/harvestcraft/pamappleSapling/0.png deleted file mode 100644 index a2651aa712..0000000000 Binary files a/front/public/images/small/harvestcraft/pamappleSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamapricotSapling/0.png b/front/public/images/small/harvestcraft/pamapricotSapling/0.png deleted file mode 100644 index 3d0ef22e55..0000000000 Binary files a/front/public/images/small/harvestcraft/pamapricotSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamartichokeCrop/0.png b/front/public/images/small/harvestcraft/pamartichokeCrop/0.png deleted file mode 100644 index c8eba207e7..0000000000 Binary files a/front/public/images/small/harvestcraft/pamartichokeCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamasparagusCrop/0.png b/front/public/images/small/harvestcraft/pamasparagusCrop/0.png deleted file mode 100644 index 2b392bd129..0000000000 Binary files a/front/public/images/small/harvestcraft/pamasparagusCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamavocadoSapling/0.png b/front/public/images/small/harvestcraft/pamavocadoSapling/0.png deleted file mode 100644 index 757451e7b4..0000000000 Binary files a/front/public/images/small/harvestcraft/pamavocadoSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambambooshootCrop/0.png b/front/public/images/small/harvestcraft/pambambooshootCrop/0.png deleted file mode 100644 index f3159e14d3..0000000000 Binary files a/front/public/images/small/harvestcraft/pambambooshootCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambananaSapling/0.png b/front/public/images/small/harvestcraft/pambananaSapling/0.png deleted file mode 100644 index bf4df83631..0000000000 Binary files a/front/public/images/small/harvestcraft/pambananaSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambarleyCrop/0.png b/front/public/images/small/harvestcraft/pambarleyCrop/0.png deleted file mode 100644 index bf9561e939..0000000000 Binary files a/front/public/images/small/harvestcraft/pambarleyCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambeanCrop/0.png b/front/public/images/small/harvestcraft/pambeanCrop/0.png deleted file mode 100644 index 30dc83201c..0000000000 Binary files a/front/public/images/small/harvestcraft/pambeanCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambeetCrop/0.png b/front/public/images/small/harvestcraft/pambeetCrop/0.png deleted file mode 100644 index d4c705edcf..0000000000 Binary files a/front/public/images/small/harvestcraft/pambeetCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambellpepperCrop/0.png b/front/public/images/small/harvestcraft/pambellpepperCrop/0.png deleted file mode 100644 index 3852d9df80..0000000000 Binary files a/front/public/images/small/harvestcraft/pambellpepperCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamblackberryCrop/0.png b/front/public/images/small/harvestcraft/pamblackberryCrop/0.png deleted file mode 100644 index 27da6803d0..0000000000 Binary files a/front/public/images/small/harvestcraft/pamblackberryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamblueberryCrop/0.png b/front/public/images/small/harvestcraft/pamblueberryCrop/0.png deleted file mode 100644 index 1a8020bf7a..0000000000 Binary files a/front/public/images/small/harvestcraft/pamblueberryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambroccoliCrop/0.png b/front/public/images/small/harvestcraft/pambroccoliCrop/0.png deleted file mode 100644 index dd7c243046..0000000000 Binary files a/front/public/images/small/harvestcraft/pambroccoliCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pambrusselsproutCrop/0.png b/front/public/images/small/harvestcraft/pambrusselsproutCrop/0.png deleted file mode 100644 index 16f7ada249..0000000000 Binary files a/front/public/images/small/harvestcraft/pambrusselsproutCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcabbageCrop/0.png b/front/public/images/small/harvestcraft/pamcabbageCrop/0.png deleted file mode 100644 index ec4041ea65..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcabbageCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcactusfruitCrop/0.png b/front/public/images/small/harvestcraft/pamcactusfruitCrop/0.png deleted file mode 100644 index 8060631cfe..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcactusfruitCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco1/0.png b/front/public/images/small/harvestcraft/pamcandleDeco1/0.png deleted file mode 100644 index b5e79c3037..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco1/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco10/0.png b/front/public/images/small/harvestcraft/pamcandleDeco10/0.png deleted file mode 100644 index df4d4ee8e8..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco10/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco11/0.png b/front/public/images/small/harvestcraft/pamcandleDeco11/0.png deleted file mode 100644 index f70c427e95..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco11/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco12/0.png b/front/public/images/small/harvestcraft/pamcandleDeco12/0.png deleted file mode 100644 index a985acbc78..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco12/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco13/0.png b/front/public/images/small/harvestcraft/pamcandleDeco13/0.png deleted file mode 100644 index 39bf3883a3..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco13/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco14/0.png b/front/public/images/small/harvestcraft/pamcandleDeco14/0.png deleted file mode 100644 index 09cbbc042e..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco14/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco15/0.png b/front/public/images/small/harvestcraft/pamcandleDeco15/0.png deleted file mode 100644 index 5f2ab2f334..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco15/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco16/0.png b/front/public/images/small/harvestcraft/pamcandleDeco16/0.png deleted file mode 100644 index f52d14d461..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco16/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco2/0.png b/front/public/images/small/harvestcraft/pamcandleDeco2/0.png deleted file mode 100644 index 3e70324387..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco2/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco3/0.png b/front/public/images/small/harvestcraft/pamcandleDeco3/0.png deleted file mode 100644 index 21a243c9dd..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco3/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco4/0.png b/front/public/images/small/harvestcraft/pamcandleDeco4/0.png deleted file mode 100644 index 983c9f6bcf..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco4/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco5/0.png b/front/public/images/small/harvestcraft/pamcandleDeco5/0.png deleted file mode 100644 index 84686d2b50..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco5/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco6/0.png b/front/public/images/small/harvestcraft/pamcandleDeco6/0.png deleted file mode 100644 index 30f3a1edf1..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco6/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco7/0.png b/front/public/images/small/harvestcraft/pamcandleDeco7/0.png deleted file mode 100644 index 96ebddefe6..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco7/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco8/0.png b/front/public/images/small/harvestcraft/pamcandleDeco8/0.png deleted file mode 100644 index d0dc680c8c..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco8/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleDeco9/0.png b/front/public/images/small/harvestcraft/pamcandleDeco9/0.png deleted file mode 100644 index 483f705198..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleDeco9/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcandleberryCrop/0.png b/front/public/images/small/harvestcraft/pamcandleberryCrop/0.png deleted file mode 100644 index 2b282fe96d..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcandleberryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcantaloupeCrop/0.png b/front/public/images/small/harvestcraft/pamcantaloupeCrop/0.png deleted file mode 100644 index e555d115f6..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcantaloupeCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcarrotCake/0.png b/front/public/images/small/harvestcraft/pamcarrotCake/0.png deleted file mode 100644 index 50bdfd87ce..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcarrotCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcashewSapling/0.png b/front/public/images/small/harvestcraft/pamcashewSapling/0.png deleted file mode 100644 index 360ad716d2..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcashewSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcauliflowerCrop/0.png b/front/public/images/small/harvestcraft/pamcauliflowerCrop/0.png deleted file mode 100644 index 48cf985ccc..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcauliflowerCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamceleryCrop/0.png b/front/public/images/small/harvestcraft/pamceleryCrop/0.png deleted file mode 100644 index 71c01f1a59..0000000000 Binary files a/front/public/images/small/harvestcraft/pamceleryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcheeseCake/0.png b/front/public/images/small/harvestcraft/pamcheeseCake/0.png deleted file mode 100644 index dcc2813aff..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcheeseCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcherrySapling/0.png b/front/public/images/small/harvestcraft/pamcherrySapling/0.png deleted file mode 100644 index ecc756c4a6..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcherrySapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcherrycheeseCake/0.png b/front/public/images/small/harvestcraft/pamcherrycheeseCake/0.png deleted file mode 100644 index 82bd7b31fb..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcherrycheeseCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamchestnutSapling/0.png b/front/public/images/small/harvestcraft/pamchestnutSapling/0.png deleted file mode 100644 index 84693154e2..0000000000 Binary files a/front/public/images/small/harvestcraft/pamchestnutSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamchilipepperCrop/0.png b/front/public/images/small/harvestcraft/pamchilipepperCrop/0.png deleted file mode 100644 index b9f0ef4d48..0000000000 Binary files a/front/public/images/small/harvestcraft/pamchilipepperCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamchocolatesprinkleCake/0.png b/front/public/images/small/harvestcraft/pamchocolatesprinkleCake/0.png deleted file mode 100644 index 414c6ba4f6..0000000000 Binary files a/front/public/images/small/harvestcraft/pamchocolatesprinkleCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcinnamonSapling/0.png b/front/public/images/small/harvestcraft/pamcinnamonSapling/0.png deleted file mode 100644 index 8509990317..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcinnamonSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcoconutSapling/0.png b/front/public/images/small/harvestcraft/pamcoconutSapling/0.png deleted file mode 100644 index 24bcd2243f..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcoconutSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcoffeebeanCrop/0.png b/front/public/images/small/harvestcraft/pamcoffeebeanCrop/0.png deleted file mode 100644 index 18a753364c..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcoffeebeanCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcornCrop/0.png b/front/public/images/small/harvestcraft/pamcornCrop/0.png deleted file mode 100644 index f5c2e88663..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcornCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcottonCrop/0.png b/front/public/images/small/harvestcraft/pamcottonCrop/0.png deleted file mode 100644 index 1489e49f7a..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcottonCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcranberryCrop/0.png b/front/public/images/small/harvestcraft/pamcranberryCrop/0.png deleted file mode 100644 index 548f0e3d5f..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcranberryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcucumberCrop/0.png b/front/public/images/small/harvestcraft/pamcucumberCrop/0.png deleted file mode 100644 index 0eb83d7f6c..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcucumberCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamcurryleafCrop/0.png b/front/public/images/small/harvestcraft/pamcurryleafCrop/0.png deleted file mode 100644 index b9c3e36f6b..0000000000 Binary files a/front/public/images/small/harvestcraft/pamcurryleafCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamdateSapling/0.png b/front/public/images/small/harvestcraft/pamdateSapling/0.png deleted file mode 100644 index 7dc60e0ee2..0000000000 Binary files a/front/public/images/small/harvestcraft/pamdateSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamdragonfruitSapling/0.png b/front/public/images/small/harvestcraft/pamdragonfruitSapling/0.png deleted file mode 100644 index b663c9b611..0000000000 Binary files a/front/public/images/small/harvestcraft/pamdragonfruitSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamdurianSapling/0.png b/front/public/images/small/harvestcraft/pamdurianSapling/0.png deleted file mode 100644 index 550c4c34f3..0000000000 Binary files a/front/public/images/small/harvestcraft/pamdurianSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pameggplantCrop/0.png b/front/public/images/small/harvestcraft/pameggplantCrop/0.png deleted file mode 100644 index 8a86a7a05d..0000000000 Binary files a/front/public/images/small/harvestcraft/pameggplantCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamfigSapling/0.png b/front/public/images/small/harvestcraft/pamfigSapling/0.png deleted file mode 100644 index d1272810ff..0000000000 Binary files a/front/public/images/small/harvestcraft/pamfigSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamgarlicCrop/0.png b/front/public/images/small/harvestcraft/pamgarlicCrop/0.png deleted file mode 100644 index f04cb90c36..0000000000 Binary files a/front/public/images/small/harvestcraft/pamgarlicCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamgingerCrop/0.png b/front/public/images/small/harvestcraft/pamgingerCrop/0.png deleted file mode 100644 index 6edd6486c5..0000000000 Binary files a/front/public/images/small/harvestcraft/pamgingerCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamgooseberrySapling/0.png b/front/public/images/small/harvestcraft/pamgooseberrySapling/0.png deleted file mode 100644 index 7fd9095ced..0000000000 Binary files a/front/public/images/small/harvestcraft/pamgooseberrySapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamgrapeCrop/0.png b/front/public/images/small/harvestcraft/pamgrapeCrop/0.png deleted file mode 100644 index aa1c90409f..0000000000 Binary files a/front/public/images/small/harvestcraft/pamgrapeCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamgrapefruitSapling/0.png b/front/public/images/small/harvestcraft/pamgrapefruitSapling/0.png deleted file mode 100644 index 8e44c4dafd..0000000000 Binary files a/front/public/images/small/harvestcraft/pamgrapefruitSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamholidayCake/0.png b/front/public/images/small/harvestcraft/pamholidayCake/0.png deleted file mode 100644 index 14b5217aa3..0000000000 Binary files a/front/public/images/small/harvestcraft/pamholidayCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamkiwiCrop/0.png b/front/public/images/small/harvestcraft/pamkiwiCrop/0.png deleted file mode 100644 index 4b22629808..0000000000 Binary files a/front/public/images/small/harvestcraft/pamkiwiCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamlamingtonCake/0.png b/front/public/images/small/harvestcraft/pamlamingtonCake/0.png deleted file mode 100644 index 27f32e2375..0000000000 Binary files a/front/public/images/small/harvestcraft/pamlamingtonCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamleekCrop/0.png b/front/public/images/small/harvestcraft/pamleekCrop/0.png deleted file mode 100644 index 49511c5766..0000000000 Binary files a/front/public/images/small/harvestcraft/pamleekCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamlemonSapling/0.png b/front/public/images/small/harvestcraft/pamlemonSapling/0.png deleted file mode 100644 index afa31c250f..0000000000 Binary files a/front/public/images/small/harvestcraft/pamlemonSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamlettuceCrop/0.png b/front/public/images/small/harvestcraft/pamlettuceCrop/0.png deleted file mode 100644 index cf416a4b95..0000000000 Binary files a/front/public/images/small/harvestcraft/pamlettuceCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamlimeSapling/0.png b/front/public/images/small/harvestcraft/pamlimeSapling/0.png deleted file mode 100644 index 6b16093b54..0000000000 Binary files a/front/public/images/small/harvestcraft/pamlimeSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pammangoSapling/0.png b/front/public/images/small/harvestcraft/pammangoSapling/0.png deleted file mode 100644 index 9c2db8784d..0000000000 Binary files a/front/public/images/small/harvestcraft/pammangoSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pammapleSapling/0.png b/front/public/images/small/harvestcraft/pammapleSapling/0.png deleted file mode 100644 index 5c79e477a5..0000000000 Binary files a/front/public/images/small/harvestcraft/pammapleSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pammustardseedsCrop/0.png b/front/public/images/small/harvestcraft/pammustardseedsCrop/0.png deleted file mode 100644 index 3a2027384a..0000000000 Binary files a/front/public/images/small/harvestcraft/pammustardseedsCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamnutmegSapling/0.png b/front/public/images/small/harvestcraft/pamnutmegSapling/0.png deleted file mode 100644 index 6cf75bc6fb..0000000000 Binary files a/front/public/images/small/harvestcraft/pamnutmegSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamoatsCrop/0.png b/front/public/images/small/harvestcraft/pamoatsCrop/0.png deleted file mode 100644 index bd084abf88..0000000000 Binary files a/front/public/images/small/harvestcraft/pamoatsCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamokraCrop/0.png b/front/public/images/small/harvestcraft/pamokraCrop/0.png deleted file mode 100644 index 7fbb523cc8..0000000000 Binary files a/front/public/images/small/harvestcraft/pamokraCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamoliveSapling/0.png b/front/public/images/small/harvestcraft/pamoliveSapling/0.png deleted file mode 100644 index bb422443a9..0000000000 Binary files a/front/public/images/small/harvestcraft/pamoliveSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamonionCrop/0.png b/front/public/images/small/harvestcraft/pamonionCrop/0.png deleted file mode 100644 index 40d98f525e..0000000000 Binary files a/front/public/images/small/harvestcraft/pamonionCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamorangeSapling/0.png b/front/public/images/small/harvestcraft/pamorangeSapling/0.png deleted file mode 100644 index 7910114de4..0000000000 Binary files a/front/public/images/small/harvestcraft/pamorangeSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampapayaSapling/0.png b/front/public/images/small/harvestcraft/pampapayaSapling/0.png deleted file mode 100644 index 7d57bf5469..0000000000 Binary files a/front/public/images/small/harvestcraft/pampapayaSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampaperbarkSapling/0.png b/front/public/images/small/harvestcraft/pampaperbarkSapling/0.png deleted file mode 100644 index 0a961d24a1..0000000000 Binary files a/front/public/images/small/harvestcraft/pampaperbarkSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamparsnipCrop/0.png b/front/public/images/small/harvestcraft/pamparsnipCrop/0.png deleted file mode 100644 index 3d9a7b9455..0000000000 Binary files a/front/public/images/small/harvestcraft/pamparsnipCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampavlovaCake/0.png b/front/public/images/small/harvestcraft/pampavlovaCake/0.png deleted file mode 100644 index 0c252f2a89..0000000000 Binary files a/front/public/images/small/harvestcraft/pampavlovaCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampeachSapling/0.png b/front/public/images/small/harvestcraft/pampeachSapling/0.png deleted file mode 100644 index c7db260019..0000000000 Binary files a/front/public/images/small/harvestcraft/pampeachSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampeanutCrop/0.png b/front/public/images/small/harvestcraft/pampeanutCrop/0.png deleted file mode 100644 index afd9a6438f..0000000000 Binary files a/front/public/images/small/harvestcraft/pampeanutCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampearSapling/0.png b/front/public/images/small/harvestcraft/pampearSapling/0.png deleted file mode 100644 index ea13d327d8..0000000000 Binary files a/front/public/images/small/harvestcraft/pampearSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampeasCrop/0.png b/front/public/images/small/harvestcraft/pampeasCrop/0.png deleted file mode 100644 index 9bdb6058a7..0000000000 Binary files a/front/public/images/small/harvestcraft/pampeasCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampecanSapling/0.png b/front/public/images/small/harvestcraft/pampecanSapling/0.png deleted file mode 100644 index 22ec1fe9df..0000000000 Binary files a/front/public/images/small/harvestcraft/pampecanSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampeppercornSapling/0.png b/front/public/images/small/harvestcraft/pampeppercornSapling/0.png deleted file mode 100644 index 95566b095d..0000000000 Binary files a/front/public/images/small/harvestcraft/pampeppercornSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampersimmonSapling/0.png b/front/public/images/small/harvestcraft/pampersimmonSapling/0.png deleted file mode 100644 index 8e6bee7990..0000000000 Binary files a/front/public/images/small/harvestcraft/pampersimmonSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampineappleCrop/0.png b/front/public/images/small/harvestcraft/pampineappleCrop/0.png deleted file mode 100644 index c8eba207e7..0000000000 Binary files a/front/public/images/small/harvestcraft/pampineappleCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampineappleupsidedownCake/0.png b/front/public/images/small/harvestcraft/pampineappleupsidedownCake/0.png deleted file mode 100644 index 65e3ac54b8..0000000000 Binary files a/front/public/images/small/harvestcraft/pampineappleupsidedownCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampistachioSapling/0.png b/front/public/images/small/harvestcraft/pampistachioSapling/0.png deleted file mode 100644 index 3d811830e9..0000000000 Binary files a/front/public/images/small/harvestcraft/pampistachioSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamplumSapling/0.png b/front/public/images/small/harvestcraft/pamplumSapling/0.png deleted file mode 100644 index 91f46b7cf6..0000000000 Binary files a/front/public/images/small/harvestcraft/pamplumSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampomegranateSapling/0.png b/front/public/images/small/harvestcraft/pampomegranateSapling/0.png deleted file mode 100644 index 0284345e2d..0000000000 Binary files a/front/public/images/small/harvestcraft/pampomegranateSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pampumpkincheeseCake/0.png b/front/public/images/small/harvestcraft/pampumpkincheeseCake/0.png deleted file mode 100644 index 221ea4c1e6..0000000000 Binary files a/front/public/images/small/harvestcraft/pampumpkincheeseCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamradishCrop/0.png b/front/public/images/small/harvestcraft/pamradishCrop/0.png deleted file mode 100644 index dc47af3f35..0000000000 Binary files a/front/public/images/small/harvestcraft/pamradishCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamraspberryCrop/0.png b/front/public/images/small/harvestcraft/pamraspberryCrop/0.png deleted file mode 100644 index 2b03de3ad2..0000000000 Binary files a/front/public/images/small/harvestcraft/pamraspberryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamredvelvetCake/0.png b/front/public/images/small/harvestcraft/pamredvelvetCake/0.png deleted file mode 100644 index 976f08bac9..0000000000 Binary files a/front/public/images/small/harvestcraft/pamredvelvetCake/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamrhubarbCrop/0.png b/front/public/images/small/harvestcraft/pamrhubarbCrop/0.png deleted file mode 100644 index e3be957f9d..0000000000 Binary files a/front/public/images/small/harvestcraft/pamrhubarbCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamriceCrop/0.png b/front/public/images/small/harvestcraft/pamriceCrop/0.png deleted file mode 100644 index 2f2ff2dabb..0000000000 Binary files a/front/public/images/small/harvestcraft/pamriceCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamrutabagaCrop/0.png b/front/public/images/small/harvestcraft/pamrutabagaCrop/0.png deleted file mode 100644 index f79a5b3c40..0000000000 Binary files a/front/public/images/small/harvestcraft/pamrutabagaCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamryeCrop/0.png b/front/public/images/small/harvestcraft/pamryeCrop/0.png deleted file mode 100644 index d21958a335..0000000000 Binary files a/front/public/images/small/harvestcraft/pamryeCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamscallionCrop/0.png b/front/public/images/small/harvestcraft/pamscallionCrop/0.png deleted file mode 100644 index 4b684856d5..0000000000 Binary files a/front/public/images/small/harvestcraft/pamscallionCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamseaweedCrop/0.png b/front/public/images/small/harvestcraft/pamseaweedCrop/0.png deleted file mode 100644 index 9489feb30c..0000000000 Binary files a/front/public/images/small/harvestcraft/pamseaweedCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamsesameseedsCrop/0.png b/front/public/images/small/harvestcraft/pamsesameseedsCrop/0.png deleted file mode 100644 index b84c6c4928..0000000000 Binary files a/front/public/images/small/harvestcraft/pamsesameseedsCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamsoybeanCrop/0.png b/front/public/images/small/harvestcraft/pamsoybeanCrop/0.png deleted file mode 100644 index babe5afb8a..0000000000 Binary files a/front/public/images/small/harvestcraft/pamsoybeanCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamspiceleafCrop/0.png b/front/public/images/small/harvestcraft/pamspiceleafCrop/0.png deleted file mode 100644 index 77ed6b8f40..0000000000 Binary files a/front/public/images/small/harvestcraft/pamspiceleafCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamspinachCrop/0.png b/front/public/images/small/harvestcraft/pamspinachCrop/0.png deleted file mode 100644 index 81b7a3b74d..0000000000 Binary files a/front/public/images/small/harvestcraft/pamspinachCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamstarfruitSapling/0.png b/front/public/images/small/harvestcraft/pamstarfruitSapling/0.png deleted file mode 100644 index a12a4bc043..0000000000 Binary files a/front/public/images/small/harvestcraft/pamstarfruitSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamstrawberryCrop/0.png b/front/public/images/small/harvestcraft/pamstrawberryCrop/0.png deleted file mode 100644 index 430c77e499..0000000000 Binary files a/front/public/images/small/harvestcraft/pamstrawberryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamsweetpotatoCrop/0.png b/front/public/images/small/harvestcraft/pamsweetpotatoCrop/0.png deleted file mode 100644 index 699316b717..0000000000 Binary files a/front/public/images/small/harvestcraft/pamsweetpotatoCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamtealeafCrop/0.png b/front/public/images/small/harvestcraft/pamtealeafCrop/0.png deleted file mode 100644 index 37bc2961fc..0000000000 Binary files a/front/public/images/small/harvestcraft/pamtealeafCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamtomatoCrop/0.png b/front/public/images/small/harvestcraft/pamtomatoCrop/0.png deleted file mode 100644 index a1cd544540..0000000000 Binary files a/front/public/images/small/harvestcraft/pamtomatoCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamturnipCrop/0.png b/front/public/images/small/harvestcraft/pamturnipCrop/0.png deleted file mode 100644 index 133d58999e..0000000000 Binary files a/front/public/images/small/harvestcraft/pamturnipCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamvanillabeanSapling/0.png b/front/public/images/small/harvestcraft/pamvanillabeanSapling/0.png deleted file mode 100644 index 8853ea0ed9..0000000000 Binary files a/front/public/images/small/harvestcraft/pamvanillabeanSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamwalnutSapling/0.png b/front/public/images/small/harvestcraft/pamwalnutSapling/0.png deleted file mode 100644 index 1e14f85903..0000000000 Binary files a/front/public/images/small/harvestcraft/pamwalnutSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamwaterchestnutCrop/0.png b/front/public/images/small/harvestcraft/pamwaterchestnutCrop/0.png deleted file mode 100644 index b53e74a00c..0000000000 Binary files a/front/public/images/small/harvestcraft/pamwaterchestnutCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamwhitemushroomCrop/0.png b/front/public/images/small/harvestcraft/pamwhitemushroomCrop/0.png deleted file mode 100644 index edecd5241c..0000000000 Binary files a/front/public/images/small/harvestcraft/pamwhitemushroomCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamwintersquashCrop/0.png b/front/public/images/small/harvestcraft/pamwintersquashCrop/0.png deleted file mode 100644 index caac2e7a56..0000000000 Binary files a/front/public/images/small/harvestcraft/pamwintersquashCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pamzucchiniCrop/0.png b/front/public/images/small/harvestcraft/pamzucchiniCrop/0.png deleted file mode 100644 index 6204671073..0000000000 Binary files a/front/public/images/small/harvestcraft/pamzucchiniCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pancakesItem/0.png b/front/public/images/small/harvestcraft/pancakesItem/0.png deleted file mode 100644 index 9024d3a173..0000000000 Binary files a/front/public/images/small/harvestcraft/pancakesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/paneerItem/0.png b/front/public/images/small/harvestcraft/paneerItem/0.png deleted file mode 100644 index ef516b2460..0000000000 Binary files a/front/public/images/small/harvestcraft/paneerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/paneertikkamasalaItem/0.png b/front/public/images/small/harvestcraft/paneertikkamasalaItem/0.png deleted file mode 100644 index ec1c53e399..0000000000 Binary files a/front/public/images/small/harvestcraft/paneertikkamasalaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/papayaItem/0.png b/front/public/images/small/harvestcraft/papayaItem/0.png deleted file mode 100644 index 45cb829ffa..0000000000 Binary files a/front/public/images/small/harvestcraft/papayaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/papayajellyItem/0.png b/front/public/images/small/harvestcraft/papayajellyItem/0.png deleted file mode 100644 index d00964c68f..0000000000 Binary files a/front/public/images/small/harvestcraft/papayajellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/papayajellysandwichItem/0.png b/front/public/images/small/harvestcraft/papayajellysandwichItem/0.png deleted file mode 100644 index 1b97531f4a..0000000000 Binary files a/front/public/images/small/harvestcraft/papayajellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/papayajuiceItem/0.png b/front/public/images/small/harvestcraft/papayajuiceItem/0.png deleted file mode 100644 index 24b290fa65..0000000000 Binary files a/front/public/images/small/harvestcraft/papayajuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/papayasmoothieItem/0.png b/front/public/images/small/harvestcraft/papayasmoothieItem/0.png deleted file mode 100644 index 315605b314..0000000000 Binary files a/front/public/images/small/harvestcraft/papayasmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/papayayogurtItem/0.png b/front/public/images/small/harvestcraft/papayayogurtItem/0.png deleted file mode 100644 index 06de1c75bc..0000000000 Binary files a/front/public/images/small/harvestcraft/papayayogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/parsnipItem/0.png b/front/public/images/small/harvestcraft/parsnipItem/0.png deleted file mode 100644 index 4138d9b54c..0000000000 Binary files a/front/public/images/small/harvestcraft/parsnipItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/parsnipseedItem/0.png b/front/public/images/small/harvestcraft/parsnipseedItem/0.png deleted file mode 100644 index 9fa07e01ca..0000000000 Binary files a/front/public/images/small/harvestcraft/parsnipseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pastaItem/0.png b/front/public/images/small/harvestcraft/pastaItem/0.png deleted file mode 100644 index 4db57c1b20..0000000000 Binary files a/front/public/images/small/harvestcraft/pastaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pavlovaItem/0.png b/front/public/images/small/harvestcraft/pavlovaItem/0.png deleted file mode 100644 index 0b2fe67e38..0000000000 Binary files a/front/public/images/small/harvestcraft/pavlovaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pbandjItem/0.png b/front/public/images/small/harvestcraft/pbandjItem/0.png deleted file mode 100644 index c73c4194ee..0000000000 Binary files a/front/public/images/small/harvestcraft/pbandjItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peaandhamsoupItem/0.png b/front/public/images/small/harvestcraft/peaandhamsoupItem/0.png deleted file mode 100644 index df191d62e7..0000000000 Binary files a/front/public/images/small/harvestcraft/peaandhamsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachItem/0.png b/front/public/images/small/harvestcraft/peachItem/0.png deleted file mode 100644 index b39a418fb6..0000000000 Binary files a/front/public/images/small/harvestcraft/peachItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachcobblerItem/0.png b/front/public/images/small/harvestcraft/peachcobblerItem/0.png deleted file mode 100644 index 3f5c5932df..0000000000 Binary files a/front/public/images/small/harvestcraft/peachcobblerItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachesandcreamoatmealItem/0.png b/front/public/images/small/harvestcraft/peachesandcreamoatmealItem/0.png deleted file mode 100644 index d376331744..0000000000 Binary files a/front/public/images/small/harvestcraft/peachesandcreamoatmealItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachjellyItem/0.png b/front/public/images/small/harvestcraft/peachjellyItem/0.png deleted file mode 100644 index 7ee8222965..0000000000 Binary files a/front/public/images/small/harvestcraft/peachjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachjellysandwichItem/0.png b/front/public/images/small/harvestcraft/peachjellysandwichItem/0.png deleted file mode 100644 index 5f34a741b4..0000000000 Binary files a/front/public/images/small/harvestcraft/peachjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachjuiceItem/0.png b/front/public/images/small/harvestcraft/peachjuiceItem/0.png deleted file mode 100644 index bf5fd6ab4b..0000000000 Binary files a/front/public/images/small/harvestcraft/peachjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachsmoothieItem/0.png b/front/public/images/small/harvestcraft/peachsmoothieItem/0.png deleted file mode 100644 index fa70b11eb1..0000000000 Binary files a/front/public/images/small/harvestcraft/peachsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peachyogurtItem/0.png b/front/public/images/small/harvestcraft/peachyogurtItem/0.png deleted file mode 100644 index d2cd39eb33..0000000000 Binary files a/front/public/images/small/harvestcraft/peachyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peanutItem/0.png b/front/public/images/small/harvestcraft/peanutItem/0.png deleted file mode 100644 index 5fe91a5050..0000000000 Binary files a/front/public/images/small/harvestcraft/peanutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peanutbutterItem/0.png b/front/public/images/small/harvestcraft/peanutbutterItem/0.png deleted file mode 100644 index 7983e92ca2..0000000000 Binary files a/front/public/images/small/harvestcraft/peanutbutterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peanutbuttercookiesItem/0.png b/front/public/images/small/harvestcraft/peanutbuttercookiesItem/0.png deleted file mode 100644 index 4431daeaa5..0000000000 Binary files a/front/public/images/small/harvestcraft/peanutbuttercookiesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peanutseedItem/0.png b/front/public/images/small/harvestcraft/peanutseedItem/0.png deleted file mode 100644 index 3d946f7b5a..0000000000 Binary files a/front/public/images/small/harvestcraft/peanutseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pearItem/0.png b/front/public/images/small/harvestcraft/pearItem/0.png deleted file mode 100644 index 48dce773d4..0000000000 Binary files a/front/public/images/small/harvestcraft/pearItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pearjellyItem/0.png b/front/public/images/small/harvestcraft/pearjellyItem/0.png deleted file mode 100644 index 6facdd1d8a..0000000000 Binary files a/front/public/images/small/harvestcraft/pearjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pearjellysandwichItem/0.png b/front/public/images/small/harvestcraft/pearjellysandwichItem/0.png deleted file mode 100644 index 2143fc9380..0000000000 Binary files a/front/public/images/small/harvestcraft/pearjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pearjuiceItem/0.png b/front/public/images/small/harvestcraft/pearjuiceItem/0.png deleted file mode 100644 index a8825e8e64..0000000000 Binary files a/front/public/images/small/harvestcraft/pearjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pearsmoothieItem/0.png b/front/public/images/small/harvestcraft/pearsmoothieItem/0.png deleted file mode 100644 index 4ec7172c0b..0000000000 Binary files a/front/public/images/small/harvestcraft/pearsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pearyogurtItem/0.png b/front/public/images/small/harvestcraft/pearyogurtItem/0.png deleted file mode 100644 index f3ddedc0c5..0000000000 Binary files a/front/public/images/small/harvestcraft/pearyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peasItem/0.png b/front/public/images/small/harvestcraft/peasItem/0.png deleted file mode 100644 index b722fd3274..0000000000 Binary files a/front/public/images/small/harvestcraft/peasItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peasandceleryItem/0.png b/front/public/images/small/harvestcraft/peasandceleryItem/0.png deleted file mode 100644 index be07b16aff..0000000000 Binary files a/front/public/images/small/harvestcraft/peasandceleryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peasseedItem/0.png b/front/public/images/small/harvestcraft/peasseedItem/0.png deleted file mode 100644 index 85b9cce109..0000000000 Binary files a/front/public/images/small/harvestcraft/peasseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pecanItem/0.png b/front/public/images/small/harvestcraft/pecanItem/0.png deleted file mode 100644 index a4871491a0..0000000000 Binary files a/front/public/images/small/harvestcraft/pecanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pecanpieItem/0.png b/front/public/images/small/harvestcraft/pecanpieItem/0.png deleted file mode 100644 index 2b1f587e18..0000000000 Binary files a/front/public/images/small/harvestcraft/pecanpieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peppercornItem/0.png b/front/public/images/small/harvestcraft/peppercornItem/0.png deleted file mode 100644 index 677c718d71..0000000000 Binary files a/front/public/images/small/harvestcraft/peppercornItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/peppermintItem/0.png b/front/public/images/small/harvestcraft/peppermintItem/0.png deleted file mode 100644 index df4e1303d0..0000000000 Binary files a/front/public/images/small/harvestcraft/peppermintItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pepperoniItem/0.png b/front/public/images/small/harvestcraft/pepperoniItem/0.png deleted file mode 100644 index b76922bcf4..0000000000 Binary files a/front/public/images/small/harvestcraft/pepperoniItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/perchrawItem/0.png b/front/public/images/small/harvestcraft/perchrawItem/0.png deleted file mode 100644 index ff01a65fe9..0000000000 Binary files a/front/public/images/small/harvestcraft/perchrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/persimmonItem/0.png b/front/public/images/small/harvestcraft/persimmonItem/0.png deleted file mode 100644 index 6f860aa911..0000000000 Binary files a/front/public/images/small/harvestcraft/persimmonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/persimmonjellyItem/0.png b/front/public/images/small/harvestcraft/persimmonjellyItem/0.png deleted file mode 100644 index 40c0eab0f8..0000000000 Binary files a/front/public/images/small/harvestcraft/persimmonjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/persimmonjellysandwichItem/0.png b/front/public/images/small/harvestcraft/persimmonjellysandwichItem/0.png deleted file mode 100644 index 40ae60ce41..0000000000 Binary files a/front/public/images/small/harvestcraft/persimmonjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/persimmonjuiceItem/0.png b/front/public/images/small/harvestcraft/persimmonjuiceItem/0.png deleted file mode 100644 index 2abfc2e352..0000000000 Binary files a/front/public/images/small/harvestcraft/persimmonjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/persimmonsmoothieItem/0.png b/front/public/images/small/harvestcraft/persimmonsmoothieItem/0.png deleted file mode 100644 index c6f191f7a3..0000000000 Binary files a/front/public/images/small/harvestcraft/persimmonsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/persimmonyogurtItem/0.png b/front/public/images/small/harvestcraft/persimmonyogurtItem/0.png deleted file mode 100644 index 33845d6bf5..0000000000 Binary files a/front/public/images/small/harvestcraft/persimmonyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pickledbeetsItem/0.png b/front/public/images/small/harvestcraft/pickledbeetsItem/0.png deleted file mode 100644 index bff64681b1..0000000000 Binary files a/front/public/images/small/harvestcraft/pickledbeetsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pickledonionsItem/0.png b/front/public/images/small/harvestcraft/pickledonionsItem/0.png deleted file mode 100644 index df9070cd97..0000000000 Binary files a/front/public/images/small/harvestcraft/pickledonionsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/picklesItem/0.png b/front/public/images/small/harvestcraft/picklesItem/0.png deleted file mode 100644 index 4a9b25c3d9..0000000000 Binary files a/front/public/images/small/harvestcraft/picklesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pinacoladaItem/0.png b/front/public/images/small/harvestcraft/pinacoladaItem/0.png deleted file mode 100644 index 48a1e21a95..0000000000 Binary files a/front/public/images/small/harvestcraft/pinacoladaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pineappleItem/0.png b/front/public/images/small/harvestcraft/pineappleItem/0.png deleted file mode 100644 index 013cc116ae..0000000000 Binary files a/front/public/images/small/harvestcraft/pineappleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pineapplehamItem/0.png b/front/public/images/small/harvestcraft/pineapplehamItem/0.png deleted file mode 100644 index 6d20992e71..0000000000 Binary files a/front/public/images/small/harvestcraft/pineapplehamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pineappleseedItem/0.png b/front/public/images/small/harvestcraft/pineappleseedItem/0.png deleted file mode 100644 index 6310469888..0000000000 Binary files a/front/public/images/small/harvestcraft/pineappleseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pineappleupsidedowncakeItem/0.png b/front/public/images/small/harvestcraft/pineappleupsidedowncakeItem/0.png deleted file mode 100644 index 64ce465f9f..0000000000 Binary files a/front/public/images/small/harvestcraft/pineappleupsidedowncakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pineappleyogurtItem/0.png b/front/public/images/small/harvestcraft/pineappleyogurtItem/0.png deleted file mode 100644 index c038ae0c2e..0000000000 Binary files a/front/public/images/small/harvestcraft/pineappleyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pistachioItem/0.png b/front/public/images/small/harvestcraft/pistachioItem/0.png deleted file mode 100644 index 2e447e7384..0000000000 Binary files a/front/public/images/small/harvestcraft/pistachioItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pistachiobakedsalmonItem/0.png b/front/public/images/small/harvestcraft/pistachiobakedsalmonItem/0.png deleted file mode 100644 index 655ef1cdd2..0000000000 Binary files a/front/public/images/small/harvestcraft/pistachiobakedsalmonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pistachiobutterItem/0.png b/front/public/images/small/harvestcraft/pistachiobutterItem/0.png deleted file mode 100644 index 70a5791a71..0000000000 Binary files a/front/public/images/small/harvestcraft/pistachiobutterItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pistachioicecreamItem/0.png b/front/public/images/small/harvestcraft/pistachioicecreamItem/0.png deleted file mode 100644 index 1bdc0ba806..0000000000 Binary files a/front/public/images/small/harvestcraft/pistachioicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pizzaItem/0.png b/front/public/images/small/harvestcraft/pizzaItem/0.png deleted file mode 100644 index d24f884c9a..0000000000 Binary files a/front/public/images/small/harvestcraft/pizzaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/plainyogurtItem/0.png b/front/public/images/small/harvestcraft/plainyogurtItem/0.png deleted file mode 100644 index e8a0472bc9..0000000000 Binary files a/front/public/images/small/harvestcraft/plainyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ploughmanslunchItem/0.png b/front/public/images/small/harvestcraft/ploughmanslunchItem/0.png deleted file mode 100644 index ae482ea0e9..0000000000 Binary files a/front/public/images/small/harvestcraft/ploughmanslunchItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/plumItem/0.png b/front/public/images/small/harvestcraft/plumItem/0.png deleted file mode 100644 index 5505a988ea..0000000000 Binary files a/front/public/images/small/harvestcraft/plumItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/plumjellyItem/0.png b/front/public/images/small/harvestcraft/plumjellyItem/0.png deleted file mode 100644 index c314243700..0000000000 Binary files a/front/public/images/small/harvestcraft/plumjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/plumjellysandwichItem/0.png b/front/public/images/small/harvestcraft/plumjellysandwichItem/0.png deleted file mode 100644 index 4a80e8af84..0000000000 Binary files a/front/public/images/small/harvestcraft/plumjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/plumjuiceItem/0.png b/front/public/images/small/harvestcraft/plumjuiceItem/0.png deleted file mode 100644 index 58d5ea7abc..0000000000 Binary files a/front/public/images/small/harvestcraft/plumjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/plumsmoothieItem/0.png b/front/public/images/small/harvestcraft/plumsmoothieItem/0.png deleted file mode 100644 index 33ac52ca12..0000000000 Binary files a/front/public/images/small/harvestcraft/plumsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/plumyogurtItem/0.png b/front/public/images/small/harvestcraft/plumyogurtItem/0.png deleted file mode 100644 index 94720e70d9..0000000000 Binary files a/front/public/images/small/harvestcraft/plumyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/poachedpearItem/0.png b/front/public/images/small/harvestcraft/poachedpearItem/0.png deleted file mode 100644 index e3038ef6d0..0000000000 Binary files a/front/public/images/small/harvestcraft/poachedpearItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pomegranateItem/0.png b/front/public/images/small/harvestcraft/pomegranateItem/0.png deleted file mode 100644 index cfde191505..0000000000 Binary files a/front/public/images/small/harvestcraft/pomegranateItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pomegranatejellyItem/0.png b/front/public/images/small/harvestcraft/pomegranatejellyItem/0.png deleted file mode 100644 index 886df620ed..0000000000 Binary files a/front/public/images/small/harvestcraft/pomegranatejellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pomegranatejellysandwichItem/0.png b/front/public/images/small/harvestcraft/pomegranatejellysandwichItem/0.png deleted file mode 100644 index df1d2d7e9f..0000000000 Binary files a/front/public/images/small/harvestcraft/pomegranatejellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pomegranatejuiceItem/0.png b/front/public/images/small/harvestcraft/pomegranatejuiceItem/0.png deleted file mode 100644 index 15113ecb92..0000000000 Binary files a/front/public/images/small/harvestcraft/pomegranatejuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pomegranatesmoothieItem/0.png b/front/public/images/small/harvestcraft/pomegranatesmoothieItem/0.png deleted file mode 100644 index 9f3864c4f7..0000000000 Binary files a/front/public/images/small/harvestcraft/pomegranatesmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pomegranateyogurtItem/0.png b/front/public/images/small/harvestcraft/pomegranateyogurtItem/0.png deleted file mode 100644 index bc7b2d3c16..0000000000 Binary files a/front/public/images/small/harvestcraft/pomegranateyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/popcornItem/0.png b/front/public/images/small/harvestcraft/popcornItem/0.png deleted file mode 100644 index 496b0c7a3e..0000000000 Binary files a/front/public/images/small/harvestcraft/popcornItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/porklettucewrapItem/0.png b/front/public/images/small/harvestcraft/porklettucewrapItem/0.png deleted file mode 100644 index 1808697f98..0000000000 Binary files a/front/public/images/small/harvestcraft/porklettucewrapItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/porklomeinItem/0.png b/front/public/images/small/harvestcraft/porklomeinItem/0.png deleted file mode 100644 index 4692a8ac54..0000000000 Binary files a/front/public/images/small/harvestcraft/porklomeinItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/porksausageItem/0.png b/front/public/images/small/harvestcraft/porksausageItem/0.png deleted file mode 100644 index 17dda02a47..0000000000 Binary files a/front/public/images/small/harvestcraft/porksausageItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pot/0.png b/front/public/images/small/harvestcraft/pot/0.png deleted file mode 100644 index e435f72f39..0000000000 Binary files a/front/public/images/small/harvestcraft/pot/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/potItem/0.png b/front/public/images/small/harvestcraft/potItem/0.png deleted file mode 100644 index 6de5e1df75..0000000000 Binary files a/front/public/images/small/harvestcraft/potItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/potatoandcheesepirogiItem/0.png b/front/public/images/small/harvestcraft/potatoandcheesepirogiItem/0.png deleted file mode 100644 index e8a755c69e..0000000000 Binary files a/front/public/images/small/harvestcraft/potatoandcheesepirogiItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/potatoandleeksoupItem/0.png b/front/public/images/small/harvestcraft/potatoandleeksoupItem/0.png deleted file mode 100644 index 45bb4c447d..0000000000 Binary files a/front/public/images/small/harvestcraft/potatoandleeksoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/potatocakesItem/0.png b/front/public/images/small/harvestcraft/potatocakesItem/0.png deleted file mode 100644 index ec42e01b77..0000000000 Binary files a/front/public/images/small/harvestcraft/potatocakesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/potatosaladItem/0.png b/front/public/images/small/harvestcraft/potatosaladItem/0.png deleted file mode 100644 index f699b117a8..0000000000 Binary files a/front/public/images/small/harvestcraft/potatosaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/potatosoupItem/0.png b/front/public/images/small/harvestcraft/potatosoupItem/0.png deleted file mode 100644 index 0a5e054ffb..0000000000 Binary files a/front/public/images/small/harvestcraft/potatosoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/potroastItem/0.png b/front/public/images/small/harvestcraft/potroastItem/0.png deleted file mode 100644 index 5c0661b2e1..0000000000 Binary files a/front/public/images/small/harvestcraft/potroastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/powdereddonutItem/0.png b/front/public/images/small/harvestcraft/powdereddonutItem/0.png deleted file mode 100644 index 3c4f449bf6..0000000000 Binary files a/front/public/images/small/harvestcraft/powdereddonutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pralinesItem/0.png b/front/public/images/small/harvestcraft/pralinesItem/0.png deleted file mode 100644 index 6f7c01509d..0000000000 Binary files a/front/public/images/small/harvestcraft/pralinesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/presser/0.png b/front/public/images/small/harvestcraft/presser/0.png deleted file mode 100644 index b3b5051c9b..0000000000 Binary files a/front/public/images/small/harvestcraft/presser/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pumpkinbreadItem/0.png b/front/public/images/small/harvestcraft/pumpkinbreadItem/0.png deleted file mode 100644 index 7393d7bfa8..0000000000 Binary files a/front/public/images/small/harvestcraft/pumpkinbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pumpkincheesecakeItem/0.png b/front/public/images/small/harvestcraft/pumpkincheesecakeItem/0.png deleted file mode 100644 index b32f5aabdb..0000000000 Binary files a/front/public/images/small/harvestcraft/pumpkincheesecakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pumpkinmuffinItem/0.png b/front/public/images/small/harvestcraft/pumpkinmuffinItem/0.png deleted file mode 100644 index f02469c8b7..0000000000 Binary files a/front/public/images/small/harvestcraft/pumpkinmuffinItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pumpkinoatsconesItem/0.png b/front/public/images/small/harvestcraft/pumpkinoatsconesItem/0.png deleted file mode 100644 index ba9ce016c3..0000000000 Binary files a/front/public/images/small/harvestcraft/pumpkinoatsconesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pumpkinsoupItem/0.png b/front/public/images/small/harvestcraft/pumpkinsoupItem/0.png deleted file mode 100644 index 547a3cf283..0000000000 Binary files a/front/public/images/small/harvestcraft/pumpkinsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/pumpkinyogurtItem/0.png b/front/public/images/small/harvestcraft/pumpkinyogurtItem/0.png deleted file mode 100644 index 6b93eb6a6f..0000000000 Binary files a/front/public/images/small/harvestcraft/pumpkinyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/queenbeeItem/0.png b/front/public/images/small/harvestcraft/queenbeeItem/0.png deleted file mode 100644 index 2d7faf2379..0000000000 Binary files a/front/public/images/small/harvestcraft/queenbeeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/queenbeeItem/18.png b/front/public/images/small/harvestcraft/queenbeeItem/18.png deleted file mode 100644 index 2d7faf2379..0000000000 Binary files a/front/public/images/small/harvestcraft/queenbeeItem/18.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/quern/0.png b/front/public/images/small/harvestcraft/quern/0.png deleted file mode 100644 index 23341b5eaf..0000000000 Binary files a/front/public/images/small/harvestcraft/quern/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/quernon/0.png b/front/public/images/small/harvestcraft/quernon/0.png deleted file mode 100644 index 23341b5eaf..0000000000 Binary files a/front/public/images/small/harvestcraft/quernon/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rabbitcookedItem/0.png b/front/public/images/small/harvestcraft/rabbitcookedItem/0.png deleted file mode 100644 index e2a96fdbc7..0000000000 Binary files a/front/public/images/small/harvestcraft/rabbitcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rabbitrawItem/0.png b/front/public/images/small/harvestcraft/rabbitrawItem/0.png deleted file mode 100644 index 9fa651f164..0000000000 Binary files a/front/public/images/small/harvestcraft/rabbitrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/radishItem/0.png b/front/public/images/small/harvestcraft/radishItem/0.png deleted file mode 100644 index 514f43ed3b..0000000000 Binary files a/front/public/images/small/harvestcraft/radishItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/radishseedItem/0.png b/front/public/images/small/harvestcraft/radishseedItem/0.png deleted file mode 100644 index daa96f8536..0000000000 Binary files a/front/public/images/small/harvestcraft/radishseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rainbowcurryItem/0.png b/front/public/images/small/harvestcraft/rainbowcurryItem/0.png deleted file mode 100644 index 52da217741..0000000000 Binary files a/front/public/images/small/harvestcraft/rainbowcurryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raisincookiesItem/0.png b/front/public/images/small/harvestcraft/raisincookiesItem/0.png deleted file mode 100644 index b2cbbf8fd3..0000000000 Binary files a/front/public/images/small/harvestcraft/raisincookiesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raisinsItem/0.png b/front/public/images/small/harvestcraft/raisinsItem/0.png deleted file mode 100644 index cca2096221..0000000000 Binary files a/front/public/images/small/harvestcraft/raisinsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/randomtacoItem/0.png b/front/public/images/small/harvestcraft/randomtacoItem/0.png deleted file mode 100644 index 2f5a949bef..0000000000 Binary files a/front/public/images/small/harvestcraft/randomtacoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberryItem/0.png b/front/public/images/small/harvestcraft/raspberryItem/0.png deleted file mode 100644 index d742868c16..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberryicedteaItem/0.png b/front/public/images/small/harvestcraft/raspberryicedteaItem/0.png deleted file mode 100644 index 5d24cfa119..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberryicedteaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberryjellyItem/0.png b/front/public/images/small/harvestcraft/raspberryjellyItem/0.png deleted file mode 100644 index 8b401620ac..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberryjellysandwichItem/0.png b/front/public/images/small/harvestcraft/raspberryjellysandwichItem/0.png deleted file mode 100644 index e0742fd4cf..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberryjuiceItem/0.png b/front/public/images/small/harvestcraft/raspberryjuiceItem/0.png deleted file mode 100644 index a78bd5ecbb..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberrypieItem/0.png b/front/public/images/small/harvestcraft/raspberrypieItem/0.png deleted file mode 100644 index 6612cf5c1e..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberryseedItem/0.png b/front/public/images/small/harvestcraft/raspberryseedItem/0.png deleted file mode 100644 index 562b513335..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberrysmoothieItem/0.png b/front/public/images/small/harvestcraft/raspberrysmoothieItem/0.png deleted file mode 100644 index 53cfa77156..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberrytrifleItem/0.png b/front/public/images/small/harvestcraft/raspberrytrifleItem/0.png deleted file mode 100644 index ef725fcfeb..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberrytrifleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/raspberryyogurtItem/0.png b/front/public/images/small/harvestcraft/raspberryyogurtItem/0.png deleted file mode 100644 index d3969d3d21..0000000000 Binary files a/front/public/images/small/harvestcraft/raspberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/redvelvetcakeItem/0.png b/front/public/images/small/harvestcraft/redvelvetcakeItem/0.png deleted file mode 100644 index 2709457367..0000000000 Binary files a/front/public/images/small/harvestcraft/redvelvetcakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/refriedbeansItem/0.png b/front/public/images/small/harvestcraft/refriedbeansItem/0.png deleted file mode 100644 index 283eb09ac2..0000000000 Binary files a/front/public/images/small/harvestcraft/refriedbeansItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rhubarbItem/0.png b/front/public/images/small/harvestcraft/rhubarbItem/0.png deleted file mode 100644 index 74d830c73c..0000000000 Binary files a/front/public/images/small/harvestcraft/rhubarbItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rhubarbseedItem/0.png b/front/public/images/small/harvestcraft/rhubarbseedItem/0.png deleted file mode 100644 index 4fd8e836fb..0000000000 Binary files a/front/public/images/small/harvestcraft/rhubarbseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/riceItem/0.png b/front/public/images/small/harvestcraft/riceItem/0.png deleted file mode 100644 index a715b06d9c..0000000000 Binary files a/front/public/images/small/harvestcraft/riceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ricecakeItem/0.png b/front/public/images/small/harvestcraft/ricecakeItem/0.png deleted file mode 100644 index 1ad66143d5..0000000000 Binary files a/front/public/images/small/harvestcraft/ricecakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/riceseedItem/0.png b/front/public/images/small/harvestcraft/riceseedItem/0.png deleted file mode 100644 index 3a772dadd9..0000000000 Binary files a/front/public/images/small/harvestcraft/riceseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ricesoupItem/0.png b/front/public/images/small/harvestcraft/ricesoupItem/0.png deleted file mode 100644 index fa6b9363ac..0000000000 Binary files a/front/public/images/small/harvestcraft/ricesoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/roastchickenItem/0.png b/front/public/images/small/harvestcraft/roastchickenItem/0.png deleted file mode 100644 index d374ef017c..0000000000 Binary files a/front/public/images/small/harvestcraft/roastchickenItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/roastedchestnutItem/0.png b/front/public/images/small/harvestcraft/roastedchestnutItem/0.png deleted file mode 100644 index d63c285cea..0000000000 Binary files a/front/public/images/small/harvestcraft/roastedchestnutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/roastedpumpkinseedsItem/0.png b/front/public/images/small/harvestcraft/roastedpumpkinseedsItem/0.png deleted file mode 100644 index 7ed5d1021d..0000000000 Binary files a/front/public/images/small/harvestcraft/roastedpumpkinseedsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/roastedrootveggiemedleyItem/0.png b/front/public/images/small/harvestcraft/roastedrootveggiemedleyItem/0.png deleted file mode 100644 index a99a15f59d..0000000000 Binary files a/front/public/images/small/harvestcraft/roastedrootveggiemedleyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/roastpotatoesItem/0.png b/front/public/images/small/harvestcraft/roastpotatoesItem/0.png deleted file mode 100644 index fe927ac76a..0000000000 Binary files a/front/public/images/small/harvestcraft/roastpotatoesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rootbeersodaItem/0.png b/front/public/images/small/harvestcraft/rootbeersodaItem/0.png deleted file mode 100644 index 0d8becc0cc..0000000000 Binary files a/front/public/images/small/harvestcraft/rootbeersodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/royaljellyItem/0.png b/front/public/images/small/harvestcraft/royaljellyItem/0.png deleted file mode 100644 index 4ffc7c1b7f..0000000000 Binary files a/front/public/images/small/harvestcraft/royaljellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rutabagaItem/0.png b/front/public/images/small/harvestcraft/rutabagaItem/0.png deleted file mode 100644 index c9ca089fe7..0000000000 Binary files a/front/public/images/small/harvestcraft/rutabagaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/rutabagaseedItem/0.png b/front/public/images/small/harvestcraft/rutabagaseedItem/0.png deleted file mode 100644 index 017754f7cc..0000000000 Binary files a/front/public/images/small/harvestcraft/rutabagaseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ryeItem/0.png b/front/public/images/small/harvestcraft/ryeItem/0.png deleted file mode 100644 index e1b2d5beb0..0000000000 Binary files a/front/public/images/small/harvestcraft/ryeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/ryeseedItem/0.png b/front/public/images/small/harvestcraft/ryeseedItem/0.png deleted file mode 100644 index b589adab6b..0000000000 Binary files a/front/public/images/small/harvestcraft/ryeseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/saladdressingItem/0.png b/front/public/images/small/harvestcraft/saladdressingItem/0.png deleted file mode 100644 index d09d2bd193..0000000000 Binary files a/front/public/images/small/harvestcraft/saladdressingItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/salmonpattiesItem/0.png b/front/public/images/small/harvestcraft/salmonpattiesItem/0.png deleted file mode 100644 index 966d5aec47..0000000000 Binary files a/front/public/images/small/harvestcraft/salmonpattiesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/salt/0.png b/front/public/images/small/harvestcraft/salt/0.png deleted file mode 100644 index 7db1fd318c..0000000000 Binary files a/front/public/images/small/harvestcraft/salt/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/saltItem/0.png b/front/public/images/small/harvestcraft/saltItem/0.png deleted file mode 100644 index 706015ff51..0000000000 Binary files a/front/public/images/small/harvestcraft/saltItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/saltedsunflowerseedsItem/0.png b/front/public/images/small/harvestcraft/saltedsunflowerseedsItem/0.png deleted file mode 100644 index 0e28258d25..0000000000 Binary files a/front/public/images/small/harvestcraft/saltedsunflowerseedsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/saucepanItem/0.png b/front/public/images/small/harvestcraft/saucepanItem/0.png deleted file mode 100644 index df5eabe71f..0000000000 Binary files a/front/public/images/small/harvestcraft/saucepanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sausageItem/0.png b/front/public/images/small/harvestcraft/sausageItem/0.png deleted file mode 100644 index e7d0af5efe..0000000000 Binary files a/front/public/images/small/harvestcraft/sausageItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sausageinbreadItem/0.png b/front/public/images/small/harvestcraft/sausageinbreadItem/0.png deleted file mode 100644 index 3d6b0a48ad..0000000000 Binary files a/front/public/images/small/harvestcraft/sausageinbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sausagerollItem/0.png b/front/public/images/small/harvestcraft/sausagerollItem/0.png deleted file mode 100644 index 9064a886bc..0000000000 Binary files a/front/public/images/small/harvestcraft/sausagerollItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/scallionItem/0.png b/front/public/images/small/harvestcraft/scallionItem/0.png deleted file mode 100644 index c4e82a6f9c..0000000000 Binary files a/front/public/images/small/harvestcraft/scallionItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/scallionbakedpotatoItem/0.png b/front/public/images/small/harvestcraft/scallionbakedpotatoItem/0.png deleted file mode 100644 index 242be0a4e6..0000000000 Binary files a/front/public/images/small/harvestcraft/scallionbakedpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/scallionseedItem/0.png b/front/public/images/small/harvestcraft/scallionseedItem/0.png deleted file mode 100644 index d47b0b8508..0000000000 Binary files a/front/public/images/small/harvestcraft/scallionseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/scallopcookedItem/0.png b/front/public/images/small/harvestcraft/scallopcookedItem/0.png deleted file mode 100644 index aed6cc4018..0000000000 Binary files a/front/public/images/small/harvestcraft/scallopcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/scalloprawItem/0.png b/front/public/images/small/harvestcraft/scalloprawItem/0.png deleted file mode 100644 index e5d20d6039..0000000000 Binary files a/front/public/images/small/harvestcraft/scalloprawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/scrambledeggItem/0.png b/front/public/images/small/harvestcraft/scrambledeggItem/0.png deleted file mode 100644 index 0d1497cb35..0000000000 Binary files a/front/public/images/small/harvestcraft/scrambledeggItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/seaweedItem/0.png b/front/public/images/small/harvestcraft/seaweedItem/0.png deleted file mode 100644 index 7190a4cb1e..0000000000 Binary files a/front/public/images/small/harvestcraft/seaweedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/seaweedseedItem/0.png b/front/public/images/small/harvestcraft/seaweedseedItem/0.png deleted file mode 100644 index f8948c23e5..0000000000 Binary files a/front/public/images/small/harvestcraft/seaweedseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/seedsoupItem/0.png b/front/public/images/small/harvestcraft/seedsoupItem/0.png deleted file mode 100644 index 1d48ca2b4d..0000000000 Binary files a/front/public/images/small/harvestcraft/seedsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sesameballItem/0.png b/front/public/images/small/harvestcraft/sesameballItem/0.png deleted file mode 100644 index 8a6c95da67..0000000000 Binary files a/front/public/images/small/harvestcraft/sesameballItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sesameseedsItem/0.png b/front/public/images/small/harvestcraft/sesameseedsItem/0.png deleted file mode 100644 index b9e3303b03..0000000000 Binary files a/front/public/images/small/harvestcraft/sesameseedsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sesameseedsseedItem/0.png b/front/public/images/small/harvestcraft/sesameseedsseedItem/0.png deleted file mode 100644 index 6f96fc915e..0000000000 Binary files a/front/public/images/small/harvestcraft/sesameseedsseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sesamesnapsItem/0.png b/front/public/images/small/harvestcraft/sesamesnapsItem/0.png deleted file mode 100644 index 39b679cd41..0000000000 Binary files a/front/public/images/small/harvestcraft/sesamesnapsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/shepardspieItem/0.png b/front/public/images/small/harvestcraft/shepardspieItem/0.png deleted file mode 100644 index e51cb4e6db..0000000000 Binary files a/front/public/images/small/harvestcraft/shepardspieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/shrimpcookedItem/0.png b/front/public/images/small/harvestcraft/shrimpcookedItem/0.png deleted file mode 100644 index 5f6a95e89f..0000000000 Binary files a/front/public/images/small/harvestcraft/shrimpcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/shrimpokrahushpuppiesItem/0.png b/front/public/images/small/harvestcraft/shrimpokrahushpuppiesItem/0.png deleted file mode 100644 index 9093ebef56..0000000000 Binary files a/front/public/images/small/harvestcraft/shrimpokrahushpuppiesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/shrimprawItem/0.png b/front/public/images/small/harvestcraft/shrimprawItem/0.png deleted file mode 100644 index 2df36ceb2e..0000000000 Binary files a/front/public/images/small/harvestcraft/shrimprawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/silkentofuItem/0.png b/front/public/images/small/harvestcraft/silkentofuItem/0.png deleted file mode 100644 index 1b4997b0b1..0000000000 Binary files a/front/public/images/small/harvestcraft/silkentofuItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sink/0.png b/front/public/images/small/harvestcraft/sink/0.png deleted file mode 100644 index a7d1c82df1..0000000000 Binary files a/front/public/images/small/harvestcraft/sink/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sink/1.png b/front/public/images/small/harvestcraft/sink/1.png deleted file mode 100644 index 7cc79903ac..0000000000 Binary files a/front/public/images/small/harvestcraft/sink/1.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sink/2.png b/front/public/images/small/harvestcraft/sink/2.png deleted file mode 100644 index 700d8669f2..0000000000 Binary files a/front/public/images/small/harvestcraft/sink/2.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sink/3.png b/front/public/images/small/harvestcraft/sink/3.png deleted file mode 100644 index a5c8a74657..0000000000 Binary files a/front/public/images/small/harvestcraft/sink/3.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/skilletItem/0.png b/front/public/images/small/harvestcraft/skilletItem/0.png deleted file mode 100644 index 837c8a18f6..0000000000 Binary files a/front/public/images/small/harvestcraft/skilletItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/snailcookedItem/0.png b/front/public/images/small/harvestcraft/snailcookedItem/0.png deleted file mode 100644 index dd8758ddaf..0000000000 Binary files a/front/public/images/small/harvestcraft/snailcookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/snailrawItem/0.png b/front/public/images/small/harvestcraft/snailrawItem/0.png deleted file mode 100644 index c8f2e6a7ec..0000000000 Binary files a/front/public/images/small/harvestcraft/snailrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/snapperrawItem/0.png b/front/public/images/small/harvestcraft/snapperrawItem/0.png deleted file mode 100644 index 93e9e4b786..0000000000 Binary files a/front/public/images/small/harvestcraft/snapperrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/snickersbarItem/0.png b/front/public/images/small/harvestcraft/snickersbarItem/0.png deleted file mode 100644 index d7626dbf85..0000000000 Binary files a/front/public/images/small/harvestcraft/snickersbarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/softpretzelItem/0.png b/front/public/images/small/harvestcraft/softpretzelItem/0.png deleted file mode 100644 index 6675ffccec..0000000000 Binary files a/front/public/images/small/harvestcraft/softpretzelItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/softpretzelandmustardItem/0.png b/front/public/images/small/harvestcraft/softpretzelandmustardItem/0.png deleted file mode 100644 index 657f90faec..0000000000 Binary files a/front/public/images/small/harvestcraft/softpretzelandmustardItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/soybeanItem/0.png b/front/public/images/small/harvestcraft/soybeanItem/0.png deleted file mode 100644 index 9453ff484d..0000000000 Binary files a/front/public/images/small/harvestcraft/soybeanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/soybeanseedItem/0.png b/front/public/images/small/harvestcraft/soybeanseedItem/0.png deleted file mode 100644 index 0c3276e3a4..0000000000 Binary files a/front/public/images/small/harvestcraft/soybeanseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/soymilkItem/0.png b/front/public/images/small/harvestcraft/soymilkItem/0.png deleted file mode 100644 index b2f18b7db2..0000000000 Binary files a/front/public/images/small/harvestcraft/soymilkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/soysauceItem/0.png b/front/public/images/small/harvestcraft/soysauceItem/0.png deleted file mode 100644 index 102f78f907..0000000000 Binary files a/front/public/images/small/harvestcraft/soysauceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spagettiItem/0.png b/front/public/images/small/harvestcraft/spagettiItem/0.png deleted file mode 100644 index 5b070514cf..0000000000 Binary files a/front/public/images/small/harvestcraft/spagettiItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spagettiandmeatballsItem/0.png b/front/public/images/small/harvestcraft/spagettiandmeatballsItem/0.png deleted file mode 100644 index 07df2e1516..0000000000 Binary files a/front/public/images/small/harvestcraft/spagettiandmeatballsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spamcompressedsaltBlockalt/0.png b/front/public/images/small/harvestcraft/spamcompressedsaltBlockalt/0.png deleted file mode 100644 index 1801f2dd75..0000000000 Binary files a/front/public/images/small/harvestcraft/spamcompressedsaltBlockalt/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spicebunItem/0.png b/front/public/images/small/harvestcraft/spicebunItem/0.png deleted file mode 100644 index 2c4d347ae3..0000000000 Binary files a/front/public/images/small/harvestcraft/spicebunItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spiceleafItem/0.png b/front/public/images/small/harvestcraft/spiceleafItem/0.png deleted file mode 100644 index 3b71f3903e..0000000000 Binary files a/front/public/images/small/harvestcraft/spiceleafItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spiceleafseedItem/0.png b/front/public/images/small/harvestcraft/spiceleafseedItem/0.png deleted file mode 100644 index 8f4f251eaa..0000000000 Binary files a/front/public/images/small/harvestcraft/spiceleafseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spicygreensItem/0.png b/front/public/images/small/harvestcraft/spicygreensItem/0.png deleted file mode 100644 index 88a0e14c34..0000000000 Binary files a/front/public/images/small/harvestcraft/spicygreensItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spicymustardporkItem/0.png b/front/public/images/small/harvestcraft/spicymustardporkItem/0.png deleted file mode 100644 index 93fd375475..0000000000 Binary files a/front/public/images/small/harvestcraft/spicymustardporkItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spidereyesoupItem/0.png b/front/public/images/small/harvestcraft/spidereyesoupItem/0.png deleted file mode 100644 index 265a47f706..0000000000 Binary files a/front/public/images/small/harvestcraft/spidereyesoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spinachItem/0.png b/front/public/images/small/harvestcraft/spinachItem/0.png deleted file mode 100644 index 621c04b76e..0000000000 Binary files a/front/public/images/small/harvestcraft/spinachItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spinachpieItem/0.png b/front/public/images/small/harvestcraft/spinachpieItem/0.png deleted file mode 100644 index 23f8f611cb..0000000000 Binary files a/front/public/images/small/harvestcraft/spinachpieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spinachseedItem/0.png b/front/public/images/small/harvestcraft/spinachseedItem/0.png deleted file mode 100644 index 6e0cd9bc6a..0000000000 Binary files a/front/public/images/small/harvestcraft/spinachseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/splitpeasoupItem/0.png b/front/public/images/small/harvestcraft/splitpeasoupItem/0.png deleted file mode 100644 index 796ef749ab..0000000000 Binary files a/front/public/images/small/harvestcraft/splitpeasoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/springsaladItem/0.png b/front/public/images/small/harvestcraft/springsaladItem/0.png deleted file mode 100644 index 1e736a8e44..0000000000 Binary files a/front/public/images/small/harvestcraft/springsaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/spumoniicecreamItem/0.png b/front/public/images/small/harvestcraft/spumoniicecreamItem/0.png deleted file mode 100644 index a04bf52da3..0000000000 Binary files a/front/public/images/small/harvestcraft/spumoniicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/stalkgarden/0.png b/front/public/images/small/harvestcraft/stalkgarden/0.png deleted file mode 100644 index 8def1243a0..0000000000 Binary files a/front/public/images/small/harvestcraft/stalkgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/starfruitItem/0.png b/front/public/images/small/harvestcraft/starfruitItem/0.png deleted file mode 100644 index b4f365d8f1..0000000000 Binary files a/front/public/images/small/harvestcraft/starfruitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/starfruitjellyItem/0.png b/front/public/images/small/harvestcraft/starfruitjellyItem/0.png deleted file mode 100644 index 4530ce5c0b..0000000000 Binary files a/front/public/images/small/harvestcraft/starfruitjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/starfruitjellysandwichItem/0.png b/front/public/images/small/harvestcraft/starfruitjellysandwichItem/0.png deleted file mode 100644 index 09c95c1867..0000000000 Binary files a/front/public/images/small/harvestcraft/starfruitjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/starfruitjuiceItem/0.png b/front/public/images/small/harvestcraft/starfruitjuiceItem/0.png deleted file mode 100644 index 909485fd8e..0000000000 Binary files a/front/public/images/small/harvestcraft/starfruitjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/starfruitsmoothieItem/0.png b/front/public/images/small/harvestcraft/starfruitsmoothieItem/0.png deleted file mode 100644 index d1f72923ed..0000000000 Binary files a/front/public/images/small/harvestcraft/starfruitsmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/starfruityogurtItem/0.png b/front/public/images/small/harvestcraft/starfruityogurtItem/0.png deleted file mode 100644 index 31039564e0..0000000000 Binary files a/front/public/images/small/harvestcraft/starfruityogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/steakandchipsItem/0.png b/front/public/images/small/harvestcraft/steakandchipsItem/0.png deleted file mode 100644 index 772985856e..0000000000 Binary files a/front/public/images/small/harvestcraft/steakandchipsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/steamedpeasItem/0.png b/front/public/images/small/harvestcraft/steamedpeasItem/0.png deleted file mode 100644 index 9c7b01e933..0000000000 Binary files a/front/public/images/small/harvestcraft/steamedpeasItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/steamedspinachItem/0.png b/front/public/images/small/harvestcraft/steamedspinachItem/0.png deleted file mode 100644 index 1f6388d73e..0000000000 Binary files a/front/public/images/small/harvestcraft/steamedspinachItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/stockItem/0.png b/front/public/images/small/harvestcraft/stockItem/0.png deleted file mode 100644 index d25a3c00da..0000000000 Binary files a/front/public/images/small/harvestcraft/stockItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberryItem/0.png b/front/public/images/small/harvestcraft/strawberryItem/0.png deleted file mode 100644 index 1fa105ecc5..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberryicecreamItem/0.png b/front/public/images/small/harvestcraft/strawberryicecreamItem/0.png deleted file mode 100644 index bf4f96ab8c..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberryicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberryjellyItem/0.png b/front/public/images/small/harvestcraft/strawberryjellyItem/0.png deleted file mode 100644 index 9efbcfe553..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberryjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberryjellysandwichItem/0.png b/front/public/images/small/harvestcraft/strawberryjellysandwichItem/0.png deleted file mode 100644 index 57af8ffc6e..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberryjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberryjuiceItem/0.png b/front/public/images/small/harvestcraft/strawberryjuiceItem/0.png deleted file mode 100644 index 30e14e1e61..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberryjuiceItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberrymilkshakeItem/0.png b/front/public/images/small/harvestcraft/strawberrymilkshakeItem/0.png deleted file mode 100644 index 0e81e57da2..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberrymilkshakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberrypieItem/0.png b/front/public/images/small/harvestcraft/strawberrypieItem/0.png deleted file mode 100644 index f296bf9d15..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberrypieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberrysaladItem/0.png b/front/public/images/small/harvestcraft/strawberrysaladItem/0.png deleted file mode 100644 index cf4efbf8ed..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberrysaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberryseedItem/0.png b/front/public/images/small/harvestcraft/strawberryseedItem/0.png deleted file mode 100644 index 5235855bf4..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberrysmoothieItem/0.png b/front/public/images/small/harvestcraft/strawberrysmoothieItem/0.png deleted file mode 100644 index b17f91fe90..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberrysmoothieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberrysodaItem/0.png b/front/public/images/small/harvestcraft/strawberrysodaItem/0.png deleted file mode 100644 index 4265012d5f..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberrysodaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/strawberryyogurtItem/0.png b/front/public/images/small/harvestcraft/strawberryyogurtItem/0.png deleted file mode 100644 index 295bc31b2c..0000000000 Binary files a/front/public/images/small/harvestcraft/strawberryyogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/stuffedeggplantItem/0.png b/front/public/images/small/harvestcraft/stuffedeggplantItem/0.png deleted file mode 100644 index 119dd74f43..0000000000 Binary files a/front/public/images/small/harvestcraft/stuffedeggplantItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/stuffedmushroomItem/0.png b/front/public/images/small/harvestcraft/stuffedmushroomItem/0.png deleted file mode 100644 index 710583a326..0000000000 Binary files a/front/public/images/small/harvestcraft/stuffedmushroomItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/stuffedpepperItem/0.png b/front/public/images/small/harvestcraft/stuffedpepperItem/0.png deleted file mode 100644 index fe4b167436..0000000000 Binary files a/front/public/images/small/harvestcraft/stuffedpepperItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/suaderoItem/0.png b/front/public/images/small/harvestcraft/suaderoItem/0.png deleted file mode 100644 index 376e150f6d..0000000000 Binary files a/front/public/images/small/harvestcraft/suaderoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/summerradishsaladItem/0.png b/front/public/images/small/harvestcraft/summerradishsaladItem/0.png deleted file mode 100644 index 7c617f8cdc..0000000000 Binary files a/front/public/images/small/harvestcraft/summerradishsaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/summersquashwithradishItem/0.png b/front/public/images/small/harvestcraft/summersquashwithradishItem/0.png deleted file mode 100644 index 446c8f5950..0000000000 Binary files a/front/public/images/small/harvestcraft/summersquashwithradishItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sundayroastItem/0.png b/front/public/images/small/harvestcraft/sundayroastItem/0.png deleted file mode 100644 index d4637f395c..0000000000 Binary files a/front/public/images/small/harvestcraft/sundayroastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sunflowerbroccolisaladItem/0.png b/front/public/images/small/harvestcraft/sunflowerbroccolisaladItem/0.png deleted file mode 100644 index 447261446c..0000000000 Binary files a/front/public/images/small/harvestcraft/sunflowerbroccolisaladItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sunflowerseedsItem/0.png b/front/public/images/small/harvestcraft/sunflowerseedsItem/0.png deleted file mode 100644 index ab805e43be..0000000000 Binary files a/front/public/images/small/harvestcraft/sunflowerseedsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sunflowerwheatrollsItem/0.png b/front/public/images/small/harvestcraft/sunflowerwheatrollsItem/0.png deleted file mode 100644 index 439893a77f..0000000000 Binary files a/front/public/images/small/harvestcraft/sunflowerwheatrollsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/supremepizzaItem/0.png b/front/public/images/small/harvestcraft/supremepizzaItem/0.png deleted file mode 100644 index b06d7571cc..0000000000 Binary files a/front/public/images/small/harvestcraft/supremepizzaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sushiItem/0.png b/front/public/images/small/harvestcraft/sushiItem/0.png deleted file mode 100644 index ad35fe973e..0000000000 Binary files a/front/public/images/small/harvestcraft/sushiItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sweetpickleItem/0.png b/front/public/images/small/harvestcraft/sweetpickleItem/0.png deleted file mode 100644 index 2cd9fca275..0000000000 Binary files a/front/public/images/small/harvestcraft/sweetpickleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sweetpotatoItem/0.png b/front/public/images/small/harvestcraft/sweetpotatoItem/0.png deleted file mode 100644 index 76da68ad1a..0000000000 Binary files a/front/public/images/small/harvestcraft/sweetpotatoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sweetpotatopieItem/0.png b/front/public/images/small/harvestcraft/sweetpotatopieItem/0.png deleted file mode 100644 index 0b9d11e5fe..0000000000 Binary files a/front/public/images/small/harvestcraft/sweetpotatopieItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sweetpotatoseedItem/0.png b/front/public/images/small/harvestcraft/sweetpotatoseedItem/0.png deleted file mode 100644 index 8126ead91c..0000000000 Binary files a/front/public/images/small/harvestcraft/sweetpotatoseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/sweetpotatosouffleItem/0.png b/front/public/images/small/harvestcraft/sweetpotatosouffleItem/0.png deleted file mode 100644 index 3957f20bd7..0000000000 Binary files a/front/public/images/small/harvestcraft/sweetpotatosouffleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tacoItem/0.png b/front/public/images/small/harvestcraft/tacoItem/0.png deleted file mode 100644 index ea98c20c8b..0000000000 Binary files a/front/public/images/small/harvestcraft/tacoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/taffyItem/0.png b/front/public/images/small/harvestcraft/taffyItem/0.png deleted file mode 100644 index 859a2853cc..0000000000 Binary files a/front/public/images/small/harvestcraft/taffyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/teaItem/0.png b/front/public/images/small/harvestcraft/teaItem/0.png deleted file mode 100644 index b79f19fd5f..0000000000 Binary files a/front/public/images/small/harvestcraft/teaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tealeafItem/0.png b/front/public/images/small/harvestcraft/tealeafItem/0.png deleted file mode 100644 index 8dddef9b46..0000000000 Binary files a/front/public/images/small/harvestcraft/tealeafItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/teaseedItem/0.png b/front/public/images/small/harvestcraft/teaseedItem/0.png deleted file mode 100644 index 050608e7ee..0000000000 Binary files a/front/public/images/small/harvestcraft/teaseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/textilegarden/0.png b/front/public/images/small/harvestcraft/textilegarden/0.png deleted file mode 100644 index ddab4ad5b5..0000000000 Binary files a/front/public/images/small/harvestcraft/textilegarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tilapiarawItem/0.png b/front/public/images/small/harvestcraft/tilapiarawItem/0.png deleted file mode 100644 index f9cdab70f4..0000000000 Binary files a/front/public/images/small/harvestcraft/tilapiarawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/timtamItem/0.png b/front/public/images/small/harvestcraft/timtamItem/0.png deleted file mode 100644 index a28bf96b28..0000000000 Binary files a/front/public/images/small/harvestcraft/timtamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/toadintheholeItem/0.png b/front/public/images/small/harvestcraft/toadintheholeItem/0.png deleted file mode 100644 index 176ffb2ceb..0000000000 Binary files a/front/public/images/small/harvestcraft/toadintheholeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/toastItem/0.png b/front/public/images/small/harvestcraft/toastItem/0.png deleted file mode 100644 index fe2cb3fcf3..0000000000 Binary files a/front/public/images/small/harvestcraft/toastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/toastedcoconutItem/0.png b/front/public/images/small/harvestcraft/toastedcoconutItem/0.png deleted file mode 100644 index 8e0a911316..0000000000 Binary files a/front/public/images/small/harvestcraft/toastedcoconutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/toastedsesameseedsItem/0.png b/front/public/images/small/harvestcraft/toastedsesameseedsItem/0.png deleted file mode 100644 index 59c41c9c75..0000000000 Binary files a/front/public/images/small/harvestcraft/toastedsesameseedsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/toastsandwichItem/0.png b/front/public/images/small/harvestcraft/toastsandwichItem/0.png deleted file mode 100644 index 57375e9daa..0000000000 Binary files a/front/public/images/small/harvestcraft/toastsandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tomatoItem/0.png b/front/public/images/small/harvestcraft/tomatoItem/0.png deleted file mode 100644 index d3556195a1..0000000000 Binary files a/front/public/images/small/harvestcraft/tomatoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tomatoseedItem/0.png b/front/public/images/small/harvestcraft/tomatoseedItem/0.png deleted file mode 100644 index fea35b1b3a..0000000000 Binary files a/front/public/images/small/harvestcraft/tomatoseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tomatosoupItem/0.png b/front/public/images/small/harvestcraft/tomatosoupItem/0.png deleted file mode 100644 index 6bbc8e61dd..0000000000 Binary files a/front/public/images/small/harvestcraft/tomatosoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tortillaItem/0.png b/front/public/images/small/harvestcraft/tortillaItem/0.png deleted file mode 100644 index 434ba38c74..0000000000 Binary files a/front/public/images/small/harvestcraft/tortillaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/trailmixItem/0.png b/front/public/images/small/harvestcraft/trailmixItem/0.png deleted file mode 100644 index 73effd46ad..0000000000 Binary files a/front/public/images/small/harvestcraft/trailmixItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tropicalgarden/0.png b/front/public/images/small/harvestcraft/tropicalgarden/0.png deleted file mode 100644 index f7fb846b93..0000000000 Binary files a/front/public/images/small/harvestcraft/tropicalgarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/troutrawItem/0.png b/front/public/images/small/harvestcraft/troutrawItem/0.png deleted file mode 100644 index da6fcaabc1..0000000000 Binary files a/front/public/images/small/harvestcraft/troutrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tunapotatoItem/0.png b/front/public/images/small/harvestcraft/tunapotatoItem/0.png deleted file mode 100644 index 64dec4266b..0000000000 Binary files a/front/public/images/small/harvestcraft/tunapotatoItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/tunarawItem/0.png b/front/public/images/small/harvestcraft/tunarawItem/0.png deleted file mode 100644 index 57135a85d4..0000000000 Binary files a/front/public/images/small/harvestcraft/tunarawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/turkeycookedItem/0.png b/front/public/images/small/harvestcraft/turkeycookedItem/0.png deleted file mode 100644 index cbb53f92da..0000000000 Binary files a/front/public/images/small/harvestcraft/turkeycookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/turkeyrawItem/0.png b/front/public/images/small/harvestcraft/turkeyrawItem/0.png deleted file mode 100644 index 8459ddf0cc..0000000000 Binary files a/front/public/images/small/harvestcraft/turkeyrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/turnipItem/0.png b/front/public/images/small/harvestcraft/turnipItem/0.png deleted file mode 100644 index fbaaf42969..0000000000 Binary files a/front/public/images/small/harvestcraft/turnipItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/turnipseedItem/0.png b/front/public/images/small/harvestcraft/turnipseedItem/0.png deleted file mode 100644 index 614ea3871f..0000000000 Binary files a/front/public/images/small/harvestcraft/turnipseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/turnipsoupItem/0.png b/front/public/images/small/harvestcraft/turnipsoupItem/0.png deleted file mode 100644 index c981f273e9..0000000000 Binary files a/front/public/images/small/harvestcraft/turnipsoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/turtlecookedItem/0.png b/front/public/images/small/harvestcraft/turtlecookedItem/0.png deleted file mode 100644 index 5492a8ea78..0000000000 Binary files a/front/public/images/small/harvestcraft/turtlecookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/turtlerawItem/0.png b/front/public/images/small/harvestcraft/turtlerawItem/0.png deleted file mode 100644 index 08e94e9385..0000000000 Binary files a/front/public/images/small/harvestcraft/turtlerawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vanillaItem/0.png b/front/public/images/small/harvestcraft/vanillaItem/0.png deleted file mode 100644 index c0ed196f81..0000000000 Binary files a/front/public/images/small/harvestcraft/vanillaItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vanillabeanItem/0.png b/front/public/images/small/harvestcraft/vanillabeanItem/0.png deleted file mode 100644 index af9f8a97c1..0000000000 Binary files a/front/public/images/small/harvestcraft/vanillabeanItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vanillaicecreamItem/0.png b/front/public/images/small/harvestcraft/vanillaicecreamItem/0.png deleted file mode 100644 index 63ce5d06f6..0000000000 Binary files a/front/public/images/small/harvestcraft/vanillaicecreamItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vanillayogurtItem/0.png b/front/public/images/small/harvestcraft/vanillayogurtItem/0.png deleted file mode 100644 index 9513720aaf..0000000000 Binary files a/front/public/images/small/harvestcraft/vanillayogurtItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vegemiteItem/0.png b/front/public/images/small/harvestcraft/vegemiteItem/0.png deleted file mode 100644 index f5a5675e89..0000000000 Binary files a/front/public/images/small/harvestcraft/vegemiteItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vegemiteontoastItem/0.png b/front/public/images/small/harvestcraft/vegemiteontoastItem/0.png deleted file mode 100644 index 54693e6eff..0000000000 Binary files a/front/public/images/small/harvestcraft/vegemiteontoastItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vegetablesoupItem/0.png b/front/public/images/small/harvestcraft/vegetablesoupItem/0.png deleted file mode 100644 index aedae57d81..0000000000 Binary files a/front/public/images/small/harvestcraft/vegetablesoupItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vegetarianlettucewrapItem/0.png b/front/public/images/small/harvestcraft/vegetarianlettucewrapItem/0.png deleted file mode 100644 index 2343d72bc5..0000000000 Binary files a/front/public/images/small/harvestcraft/vegetarianlettucewrapItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/veggiebaitItem/0.png b/front/public/images/small/harvestcraft/veggiebaitItem/0.png deleted file mode 100644 index 02a49e1396..0000000000 Binary files a/front/public/images/small/harvestcraft/veggiebaitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/veggiestirfryItem/0.png b/front/public/images/small/harvestcraft/veggiestirfryItem/0.png deleted file mode 100644 index d3d00c6ae4..0000000000 Binary files a/front/public/images/small/harvestcraft/veggiestirfryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/veggiestripsItem/0.png b/front/public/images/small/harvestcraft/veggiestripsItem/0.png deleted file mode 100644 index e244a145f8..0000000000 Binary files a/front/public/images/small/harvestcraft/veggiestripsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/venisoncookedItem/0.png b/front/public/images/small/harvestcraft/venisoncookedItem/0.png deleted file mode 100644 index 544ba09dbb..0000000000 Binary files a/front/public/images/small/harvestcraft/venisoncookedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/venisonrawItem/0.png b/front/public/images/small/harvestcraft/venisonrawItem/0.png deleted file mode 100644 index 55873ee160..0000000000 Binary files a/front/public/images/small/harvestcraft/venisonrawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vindalooItem/0.png b/front/public/images/small/harvestcraft/vindalooItem/0.png deleted file mode 100644 index c469cdd755..0000000000 Binary files a/front/public/images/small/harvestcraft/vindalooItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/vinegarItem/0.png b/front/public/images/small/harvestcraft/vinegarItem/0.png deleted file mode 100644 index 8641962d4c..0000000000 Binary files a/front/public/images/small/harvestcraft/vinegarItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/wafflesItem/0.png b/front/public/images/small/harvestcraft/wafflesItem/0.png deleted file mode 100644 index f02e5896d9..0000000000 Binary files a/front/public/images/small/harvestcraft/wafflesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/walleyerawItem/0.png b/front/public/images/small/harvestcraft/walleyerawItem/0.png deleted file mode 100644 index 5d9f9eea3e..0000000000 Binary files a/front/public/images/small/harvestcraft/walleyerawItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/walnutItem/0.png b/front/public/images/small/harvestcraft/walnutItem/0.png deleted file mode 100644 index 209ea12845..0000000000 Binary files a/front/public/images/small/harvestcraft/walnutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/walnutraisinbreadItem/0.png b/front/public/images/small/harvestcraft/walnutraisinbreadItem/0.png deleted file mode 100644 index a8c7ac4977..0000000000 Binary files a/front/public/images/small/harvestcraft/walnutraisinbreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/waterchestnutItem/0.png b/front/public/images/small/harvestcraft/waterchestnutItem/0.png deleted file mode 100644 index 42e3880717..0000000000 Binary files a/front/public/images/small/harvestcraft/waterchestnutItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/waterchestnutseedItem/0.png b/front/public/images/small/harvestcraft/waterchestnutseedItem/0.png deleted file mode 100644 index dc43144f73..0000000000 Binary files a/front/public/images/small/harvestcraft/waterchestnutseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/watergarden/0.png b/front/public/images/small/harvestcraft/watergarden/0.png deleted file mode 100644 index 8102f59856..0000000000 Binary files a/front/public/images/small/harvestcraft/watergarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/watermelonjellyItem/0.png b/front/public/images/small/harvestcraft/watermelonjellyItem/0.png deleted file mode 100644 index 82fb8ddc11..0000000000 Binary files a/front/public/images/small/harvestcraft/watermelonjellyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/watermelonjellysandwichItem/0.png b/front/public/images/small/harvestcraft/watermelonjellysandwichItem/0.png deleted file mode 100644 index 4995359ff5..0000000000 Binary files a/front/public/images/small/harvestcraft/watermelonjellysandwichItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/waxItem/0.png b/front/public/images/small/harvestcraft/waxItem/0.png deleted file mode 100644 index 08de7b17f1..0000000000 Binary files a/front/public/images/small/harvestcraft/waxItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/waxcombItem/0.png b/front/public/images/small/harvestcraft/waxcombItem/0.png deleted file mode 100644 index 8ca91af988..0000000000 Binary files a/front/public/images/small/harvestcraft/waxcombItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/whitemushroomItem/0.png b/front/public/images/small/harvestcraft/whitemushroomItem/0.png deleted file mode 100644 index 0af4c18f98..0000000000 Binary files a/front/public/images/small/harvestcraft/whitemushroomItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/whitemushroomseedItem/0.png b/front/public/images/small/harvestcraft/whitemushroomseedItem/0.png deleted file mode 100644 index 368d81ddb9..0000000000 Binary files a/front/public/images/small/harvestcraft/whitemushroomseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/wintersquashItem/0.png b/front/public/images/small/harvestcraft/wintersquashItem/0.png deleted file mode 100644 index 58eb19d097..0000000000 Binary files a/front/public/images/small/harvestcraft/wintersquashItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/wintersquashseedItem/0.png b/front/public/images/small/harvestcraft/wintersquashseedItem/0.png deleted file mode 100644 index b967c04244..0000000000 Binary files a/front/public/images/small/harvestcraft/wintersquashseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/wovencottonItem/0.png b/front/public/images/small/harvestcraft/wovencottonItem/0.png deleted file mode 100644 index 324c56154c..0000000000 Binary files a/front/public/images/small/harvestcraft/wovencottonItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/yorkshirepuddingItem/0.png b/front/public/images/small/harvestcraft/yorkshirepuddingItem/0.png deleted file mode 100644 index 2d4e7f71c0..0000000000 Binary files a/front/public/images/small/harvestcraft/yorkshirepuddingItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zeppoleItem/0.png b/front/public/images/small/harvestcraft/zeppoleItem/0.png deleted file mode 100644 index 8e23e3dea1..0000000000 Binary files a/front/public/images/small/harvestcraft/zeppoleItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zestyzucchiniItem/0.png b/front/public/images/small/harvestcraft/zestyzucchiniItem/0.png deleted file mode 100644 index 83442241f4..0000000000 Binary files a/front/public/images/small/harvestcraft/zestyzucchiniItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zombiejerkyItem/0.png b/front/public/images/small/harvestcraft/zombiejerkyItem/0.png deleted file mode 100644 index 0fac9880aa..0000000000 Binary files a/front/public/images/small/harvestcraft/zombiejerkyItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zucchiniItem/0.png b/front/public/images/small/harvestcraft/zucchiniItem/0.png deleted file mode 100644 index 7d2618f5c0..0000000000 Binary files a/front/public/images/small/harvestcraft/zucchiniItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zucchinibakeItem/0.png b/front/public/images/small/harvestcraft/zucchinibakeItem/0.png deleted file mode 100644 index 9f0b1bf707..0000000000 Binary files a/front/public/images/small/harvestcraft/zucchinibakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zucchinibreadItem/0.png b/front/public/images/small/harvestcraft/zucchinibreadItem/0.png deleted file mode 100644 index 1249d0a965..0000000000 Binary files a/front/public/images/small/harvestcraft/zucchinibreadItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zucchinifriesItem/0.png b/front/public/images/small/harvestcraft/zucchinifriesItem/0.png deleted file mode 100644 index c94add2ce4..0000000000 Binary files a/front/public/images/small/harvestcraft/zucchinifriesItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestcraft/zucchiniseedItem/0.png b/front/public/images/small/harvestcraft/zucchiniseedItem/0.png deleted file mode 100644 index 536aea106e..0000000000 Binary files a/front/public/images/small/harvestcraft/zucchiniseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/Quartz Axe/0.png b/front/public/images/small/harvestthenether/Quartz Axe/0.png deleted file mode 100644 index 9ada094c21..0000000000 Binary files a/front/public/images/small/harvestthenether/Quartz Axe/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/Quartz Hoe/0.png b/front/public/images/small/harvestthenether/Quartz Hoe/0.png deleted file mode 100644 index 18d8c3aa41..0000000000 Binary files a/front/public/images/small/harvestthenether/Quartz Hoe/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/Quartz Pickaxe/0.png b/front/public/images/small/harvestthenether/Quartz Pickaxe/0.png deleted file mode 100644 index bf576ae61e..0000000000 Binary files a/front/public/images/small/harvestthenether/Quartz Pickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/Quartz Shovel/0.png b/front/public/images/small/harvestthenether/Quartz Shovel/0.png deleted file mode 100644 index b827d82b49..0000000000 Binary files a/front/public/images/small/harvestthenether/Quartz Shovel/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/Quartz Sword/0.png b/front/public/images/small/harvestthenether/Quartz Sword/0.png deleted file mode 100644 index 89ddf06b68..0000000000 Binary files a/front/public/images/small/harvestthenether/Quartz Sword/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/bloodleafCrop/0.png b/front/public/images/small/harvestthenether/bloodleafCrop/0.png deleted file mode 100644 index 21db195e1a..0000000000 Binary files a/front/public/images/small/harvestthenether/bloodleafCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/bloodleafItem/0.png b/front/public/images/small/harvestthenether/bloodleafItem/0.png deleted file mode 100644 index df6707e5b0..0000000000 Binary files a/front/public/images/small/harvestthenether/bloodleafItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/bloodleafseedItem/0.png b/front/public/images/small/harvestthenether/bloodleafseedItem/0.png deleted file mode 100644 index 89edb5bbc9..0000000000 Binary files a/front/public/images/small/harvestthenether/bloodleafseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/fleshrootCrop/0.png b/front/public/images/small/harvestthenether/fleshrootCrop/0.png deleted file mode 100644 index 6c20b2aa35..0000000000 Binary files a/front/public/images/small/harvestthenether/fleshrootCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/fleshrootItem/0.png b/front/public/images/small/harvestthenether/fleshrootItem/0.png deleted file mode 100644 index f284708c10..0000000000 Binary files a/front/public/images/small/harvestthenether/fleshrootItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/fleshrootseedItem/0.png b/front/public/images/small/harvestthenether/fleshrootseedItem/0.png deleted file mode 100644 index ec156d16ae..0000000000 Binary files a/front/public/images/small/harvestthenether/fleshrootseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/glowFlower/0.png b/front/public/images/small/harvestthenether/glowFlower/0.png deleted file mode 100644 index 643c365e3f..0000000000 Binary files a/front/public/images/small/harvestthenether/glowFlower/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/glowflowerCrop/0.png b/front/public/images/small/harvestthenether/glowflowerCrop/0.png deleted file mode 100644 index 331dd38cc2..0000000000 Binary files a/front/public/images/small/harvestthenether/glowflowerCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/glowflowerseedItem/0.png b/front/public/images/small/harvestthenether/glowflowerseedItem/0.png deleted file mode 100644 index 61c9b3e364..0000000000 Binary files a/front/public/images/small/harvestthenether/glowflowerseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/ignisFruit/0.png b/front/public/images/small/harvestthenether/ignisFruit/0.png deleted file mode 100644 index 1f940b00c7..0000000000 Binary files a/front/public/images/small/harvestthenether/ignisFruit/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/ignisfruitItem/0.png b/front/public/images/small/harvestthenether/ignisfruitItem/0.png deleted file mode 100644 index b16729bb89..0000000000 Binary files a/front/public/images/small/harvestthenether/ignisfruitItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/marrowberryCrop/0.png b/front/public/images/small/harvestthenether/marrowberryCrop/0.png deleted file mode 100644 index a84dc23dee..0000000000 Binary files a/front/public/images/small/harvestthenether/marrowberryCrop/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/marrowberryItem/0.png b/front/public/images/small/harvestthenether/marrowberryItem/0.png deleted file mode 100644 index 4464bea1a2..0000000000 Binary files a/front/public/images/small/harvestthenether/marrowberryItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/marrowberryseedItem/0.png b/front/public/images/small/harvestthenether/marrowberryseedItem/0.png deleted file mode 100644 index b0371d29a5..0000000000 Binary files a/front/public/images/small/harvestthenether/marrowberryseedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/netherBed/0.png b/front/public/images/small/harvestthenether/netherBed/0.png deleted file mode 100644 index 6d3b3f3e20..0000000000 Binary files a/front/public/images/small/harvestthenether/netherBed/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/netherGarden/0.png b/front/public/images/small/harvestthenether/netherGarden/0.png deleted file mode 100644 index 61cacf27d5..0000000000 Binary files a/front/public/images/small/harvestthenether/netherGarden/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/netherLeaves/0.png b/front/public/images/small/harvestthenether/netherLeaves/0.png deleted file mode 100644 index 76ca25a17b..0000000000 Binary files a/front/public/images/small/harvestthenether/netherLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/netherLog/0.png b/front/public/images/small/harvestthenether/netherLog/0.png deleted file mode 100644 index 088800b00c..0000000000 Binary files a/front/public/images/small/harvestthenether/netherLog/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/netherPlanks/0.png b/front/public/images/small/harvestthenether/netherPlanks/0.png deleted file mode 100644 index 73de173475..0000000000 Binary files a/front/public/images/small/harvestthenether/netherPlanks/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/netherSapling/0.png b/front/public/images/small/harvestthenether/netherSapling/0.png deleted file mode 100644 index 27012adf6c..0000000000 Binary files a/front/public/images/small/harvestthenether/netherSapling/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/netherbedItem/0.png b/front/public/images/small/harvestthenether/netherbedItem/0.png deleted file mode 100644 index 8761fddce7..0000000000 Binary files a/front/public/images/small/harvestthenether/netherbedItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/quartzbootsItem/0.png b/front/public/images/small/harvestthenether/quartzbootsItem/0.png deleted file mode 100644 index c9e8fb5285..0000000000 Binary files a/front/public/images/small/harvestthenether/quartzbootsItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/quartzchestItem/0.png b/front/public/images/small/harvestthenether/quartzchestItem/0.png deleted file mode 100644 index a42e4b1505..0000000000 Binary files a/front/public/images/small/harvestthenether/quartzchestItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/quartzhelmItem/0.png b/front/public/images/small/harvestthenether/quartzhelmItem/0.png deleted file mode 100644 index 5c439e0412..0000000000 Binary files a/front/public/images/small/harvestthenether/quartzhelmItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/quartzingotItem/0.png b/front/public/images/small/harvestthenether/quartzingotItem/0.png deleted file mode 100644 index 34db9f0c7a..0000000000 Binary files a/front/public/images/small/harvestthenether/quartzingotItem/0.png and /dev/null differ diff --git a/front/public/images/small/harvestthenether/quartzleggingsItem/0.png b/front/public/images/small/harvestthenether/quartzleggingsItem/0.png deleted file mode 100644 index 27edfb133a..0000000000 Binary files a/front/public/images/small/harvestthenether/quartzleggingsItem/0.png and /dev/null differ diff --git a/front/public/images/small/holoinventory/Hologlasses/0.png b/front/public/images/small/holoinventory/Hologlasses/0.png deleted file mode 100644 index e18cd0cd57..0000000000 Binary files a/front/public/images/small/holoinventory/Hologlasses/0.png and /dev/null differ diff --git a/front/public/images/small/holoinventory/fluidRenderFakeItem/0.png b/front/public/images/small/holoinventory/fluidRenderFakeItem/0.png deleted file mode 100644 index c4f4e86e7e..0000000000 Binary files a/front/public/images/small/holoinventory/fluidRenderFakeItem/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water0/0.png b/front/public/images/small/hydroenergy/tile.water0/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water0/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water1/0.png b/front/public/images/small/hydroenergy/tile.water1/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water1/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water10/0.png b/front/public/images/small/hydroenergy/tile.water10/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water10/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water11/0.png b/front/public/images/small/hydroenergy/tile.water11/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water11/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water12/0.png b/front/public/images/small/hydroenergy/tile.water12/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water12/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water13/0.png b/front/public/images/small/hydroenergy/tile.water13/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water13/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water14/0.png b/front/public/images/small/hydroenergy/tile.water14/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water14/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water15/0.png b/front/public/images/small/hydroenergy/tile.water15/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water15/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water2/0.png b/front/public/images/small/hydroenergy/tile.water2/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water2/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water3/0.png b/front/public/images/small/hydroenergy/tile.water3/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water3/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water4/0.png b/front/public/images/small/hydroenergy/tile.water4/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water4/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water5/0.png b/front/public/images/small/hydroenergy/tile.water5/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water5/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water6/0.png b/front/public/images/small/hydroenergy/tile.water6/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water6/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water7/0.png b/front/public/images/small/hydroenergy/tile.water7/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water7/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water8/0.png b/front/public/images/small/hydroenergy/tile.water8/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water8/0.png and /dev/null differ diff --git a/front/public/images/small/hydroenergy/tile.water9/0.png b/front/public/images/small/hydroenergy/tile.water9/0.png deleted file mode 100644 index 0dbde5a6ea..0000000000 Binary files a/front/public/images/small/hydroenergy/tile.water9/0.png and /dev/null differ diff --git a/front/public/images/small/ifu/ifu_buildingKit/0.png b/front/public/images/small/ifu/ifu_buildingKit/0.png deleted file mode 100644 index 2f60b1f809..0000000000 Binary files a/front/public/images/small/ifu/ifu_buildingKit/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_copper/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_copper/0.png deleted file mode 100644 index 42ae6ab5b2..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_copper/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_crystal/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_crystal/0.png deleted file mode 100644 index a26a6eea9e..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_crystal/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_diamond/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_diamond/0.png deleted file mode 100644 index 57203ef901..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_dirtchest9000/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_dirtchest9000/0.png deleted file mode 100644 index 2cc82d3f1c..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_dirtchest9000/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_gold/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_gold/0.png deleted file mode 100644 index c56b69bf1a..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_gold/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_iron/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_iron/0.png deleted file mode 100644 index 9acefa1cd5..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_iron/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_obsidian/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_obsidian/0.png deleted file mode 100644 index 4f56d70d1a..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_obsidian/0.png and /dev/null differ diff --git a/front/public/images/small/ironchestminecarts/minecart_chest_steel/0.png b/front/public/images/small/ironchestminecarts/minecart_chest_steel/0.png deleted file mode 100644 index 11f4bd0a68..0000000000 Binary files a/front/public/images/small/ironchestminecarts/minecart_chest_steel/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/copperIronUpgrade/0.png b/front/public/images/small/irontank/copperIronUpgrade/0.png deleted file mode 100644 index 85803007f4..0000000000 Binary files a/front/public/images/small/irontank/copperIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/copperSilverUpgrade/0.png b/front/public/images/small/irontank/copperSilverUpgrade/0.png deleted file mode 100644 index 8ab221c5e1..0000000000 Binary files a/front/public/images/small/irontank/copperSilverUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/copperTank/0.png b/front/public/images/small/irontank/copperTank/0.png deleted file mode 100644 index 80f6df52c3..0000000000 Binary files a/front/public/images/small/irontank/copperTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/diamondEmeraldUpgrade/0.png b/front/public/images/small/irontank/diamondEmeraldUpgrade/0.png deleted file mode 100644 index a6c509e2c6..0000000000 Binary files a/front/public/images/small/irontank/diamondEmeraldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/diamondObsidianUpgrade/0.png b/front/public/images/small/irontank/diamondObsidianUpgrade/0.png deleted file mode 100644 index e964e383c1..0000000000 Binary files a/front/public/images/small/irontank/diamondObsidianUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/diamondTank/0.png b/front/public/images/small/irontank/diamondTank/0.png deleted file mode 100644 index 3daf3ccb2b..0000000000 Binary files a/front/public/images/small/irontank/diamondTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/emeraldStainlesssteelUpgrade/0.png b/front/public/images/small/irontank/emeraldStainlesssteelUpgrade/0.png deleted file mode 100644 index d2a5d03087..0000000000 Binary files a/front/public/images/small/irontank/emeraldStainlesssteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/emeraldTank/0.png b/front/public/images/small/irontank/emeraldTank/0.png deleted file mode 100644 index d0aa6bc9c5..0000000000 Binary files a/front/public/images/small/irontank/emeraldTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/glassCopperUpgrade/0.png b/front/public/images/small/irontank/glassCopperUpgrade/0.png deleted file mode 100644 index ad9f5e4647..0000000000 Binary files a/front/public/images/small/irontank/glassCopperUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/glassIronUpgrade/0.png b/front/public/images/small/irontank/glassIronUpgrade/0.png deleted file mode 100644 index beb0ca4eeb..0000000000 Binary files a/front/public/images/small/irontank/glassIronUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/goldDiamondUpgrade/0.png b/front/public/images/small/irontank/goldDiamondUpgrade/0.png deleted file mode 100644 index a6ba3af416..0000000000 Binary files a/front/public/images/small/irontank/goldDiamondUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/goldTank/0.png b/front/public/images/small/irontank/goldTank/0.png deleted file mode 100644 index 5a10daa0dc..0000000000 Binary files a/front/public/images/small/irontank/goldTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/ironGoldUpgrade/0.png b/front/public/images/small/irontank/ironGoldUpgrade/0.png deleted file mode 100644 index 064cc81aae..0000000000 Binary files a/front/public/images/small/irontank/ironGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/ironTank/0.png b/front/public/images/small/irontank/ironTank/0.png deleted file mode 100644 index 4bb93c0950..0000000000 Binary files a/front/public/images/small/irontank/ironTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/obsidianTank/0.png b/front/public/images/small/irontank/obsidianTank/0.png deleted file mode 100644 index 150b605337..0000000000 Binary files a/front/public/images/small/irontank/obsidianTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/silverDiamondUpgrade/0.png b/front/public/images/small/irontank/silverDiamondUpgrade/0.png deleted file mode 100644 index a56d5e7cfd..0000000000 Binary files a/front/public/images/small/irontank/silverDiamondUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/silverGoldUpgrade/0.png b/front/public/images/small/irontank/silverGoldUpgrade/0.png deleted file mode 100644 index 3a75a4c031..0000000000 Binary files a/front/public/images/small/irontank/silverGoldUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/silverTank/0.png b/front/public/images/small/irontank/silverTank/0.png deleted file mode 100644 index cfa7c1a2fc..0000000000 Binary files a/front/public/images/small/irontank/silverTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/stainlesssteelTank/0.png b/front/public/images/small/irontank/stainlesssteelTank/0.png deleted file mode 100644 index a71a937b23..0000000000 Binary files a/front/public/images/small/irontank/stainlesssteelTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/stainlesssteelTitaniumUpgrade/0.png b/front/public/images/small/irontank/stainlesssteelTitaniumUpgrade/0.png deleted file mode 100644 index 1dca37c90e..0000000000 Binary files a/front/public/images/small/irontank/stainlesssteelTitaniumUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/titaniumTank/0.png b/front/public/images/small/irontank/titaniumTank/0.png deleted file mode 100644 index 78f7bd9b03..0000000000 Binary files a/front/public/images/small/irontank/titaniumTank/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/titaniumTungstensteelUpgrade/0.png b/front/public/images/small/irontank/titaniumTungstensteelUpgrade/0.png deleted file mode 100644 index dfc308fe21..0000000000 Binary files a/front/public/images/small/irontank/titaniumTungstensteelUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/irontank/tungstensteelTank/0.png b/front/public/images/small/irontank/tungstensteelTank/0.png deleted file mode 100644 index 8cbc2ebb0e..0000000000 Binary files a/front/public/images/small/irontank/tungstensteelTank/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_crafting_item/10.png b/front/public/images/small/kekztech/kekztech_crafting_item/10.png deleted file mode 100644 index 1094f0b5a9..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_crafting_item/10.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_crafting_item/11.png b/front/public/images/small/kekztech/kekztech_crafting_item/11.png deleted file mode 100644 index 8745884e8b..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_crafting_item/11.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_crafting_item/12.png b/front/public/images/small/kekztech/kekztech_crafting_item/12.png deleted file mode 100644 index cbe38060fd..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_crafting_item/12.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_crafting_item/13.png b/front/public/images/small/kekztech/kekztech_crafting_item/13.png deleted file mode 100644 index e47f8158d4..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_crafting_item/13.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_crafting_item/14.png b/front/public/images/small/kekztech/kekztech_crafting_item/14.png deleted file mode 100644 index 6b401cb3c8..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_crafting_item/14.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_crafting_item/15.png b/front/public/images/small/kekztech/kekztech_crafting_item/15.png deleted file mode 100644 index ad3d10b901..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_crafting_item/15.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_crafting_item/9.png b/front/public/images/small/kekztech/kekztech_crafting_item/9.png deleted file mode 100644 index c8b765acb3..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_crafting_item/9.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_error_item/0.png b/front/public/images/small/kekztech/kekztech_error_item/0.png deleted file mode 100644 index 83bbd8d2ad..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_error_item/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_gdcceramicelectrolyteunit_block/0.png b/front/public/images/small/kekztech/kekztech_gdcceramicelectrolyteunit_block/0.png deleted file mode 100644 index 584c0e8dac..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_gdcceramicelectrolyteunit_block/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_ichorjar_block/0.png b/front/public/images/small/kekztech/kekztech_ichorjar_block/0.png deleted file mode 100644 index 978d0cd416..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_ichorjar_block/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_ichorjar_block/3.png b/front/public/images/small/kekztech/kekztech_ichorjar_block/3.png deleted file mode 100644 index 9d46e528d2..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_ichorjar_block/3.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/0.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/0.png deleted file mode 100644 index 2c3de6fd42..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/1.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/1.png deleted file mode 100644 index 28007d2d57..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/1.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/10.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/10.png deleted file mode 100644 index 67e3d249d0..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/10.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/2.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/2.png deleted file mode 100644 index 5c48c63f43..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/2.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/3.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/3.png deleted file mode 100644 index e49131231a..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/3.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/4.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/4.png deleted file mode 100644 index 442fe57bd8..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/4.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/5.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/5.png deleted file mode 100644 index b74665668b..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/5.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/6.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/6.png deleted file mode 100644 index a268822426..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/6.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/7.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/7.png deleted file mode 100644 index f99b518ad7..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/7.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/8.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/8.png deleted file mode 100644 index f89a6a33bf..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/8.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/9.png b/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/9.png deleted file mode 100644 index 8485add19e..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_lapotronicenergyunit_block/9.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_largehextile_block/0.png b/front/public/images/small/kekztech/kekztech_largehextile_block/0.png deleted file mode 100644 index fa9c773566..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_largehextile_block/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/0.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/0.png deleted file mode 100644 index b491c704e6..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/1.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/1.png deleted file mode 100644 index 62d7ff80f6..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/1.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/10.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/10.png deleted file mode 100644 index 2f0780ca88..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/10.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/2.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/2.png deleted file mode 100644 index e68eb1b0c6..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/2.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/3.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/3.png deleted file mode 100644 index d9201414e4..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/3.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/4.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/4.png deleted file mode 100644 index bfef8c2516..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/4.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/5.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/5.png deleted file mode 100644 index 6c3ac53311..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/5.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/6.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/6.png deleted file mode 100644 index d9dce98dd2..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/6.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/7.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/7.png deleted file mode 100644 index 29c876130c..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/7.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/8.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/8.png deleted file mode 100644 index be8467be9b..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/8.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/9.png b/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/9.png deleted file mode 100644 index 52c4c4eea6..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_tfftstoragefield_block/9.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_thaumiumreinforcedjar_block/0.png b/front/public/images/small/kekztech/kekztech_thaumiumreinforcedjar_block/0.png deleted file mode 100644 index 11d9f41d29..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_thaumiumreinforcedjar_block/0.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_thaumiumreinforcedjar_block/3.png b/front/public/images/small/kekztech/kekztech_thaumiumreinforcedjar_block/3.png deleted file mode 100644 index 43beb2113a..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_thaumiumreinforcedjar_block/3.png and /dev/null differ diff --git a/front/public/images/small/kekztech/kekztech_yszceramicelectrolyteunit_block/0.png b/front/public/images/small/kekztech/kekztech_yszceramicelectrolyteunit_block/0.png deleted file mode 100644 index 6aedaeda3e..0000000000 Binary files a/front/public/images/small/kekztech/kekztech_yszceramicelectrolyteunit_block/0.png and /dev/null differ diff --git a/front/public/images/small/kubatech/defc.casing/10.png b/front/public/images/small/kubatech/defc.casing/10.png deleted file mode 100644 index c0da90d951..0000000000 Binary files a/front/public/images/small/kubatech/defc.casing/10.png and /dev/null differ diff --git a/front/public/images/small/kubatech/defc.casing/11.png b/front/public/images/small/kubatech/defc.casing/11.png deleted file mode 100644 index c02a038836..0000000000 Binary files a/front/public/images/small/kubatech/defc.casing/11.png and /dev/null differ diff --git a/front/public/images/small/kubatech/defc.casing/12.png b/front/public/images/small/kubatech/defc.casing/12.png deleted file mode 100644 index 504840e136..0000000000 Binary files a/front/public/images/small/kubatech/defc.casing/12.png and /dev/null differ diff --git a/front/public/images/small/kubatech/defc.casing/7.png b/front/public/images/small/kubatech/defc.casing/7.png deleted file mode 100644 index f8fabef19a..0000000000 Binary files a/front/public/images/small/kubatech/defc.casing/7.png and /dev/null differ diff --git a/front/public/images/small/kubatech/defc.casing/8.png b/front/public/images/small/kubatech/defc.casing/8.png deleted file mode 100644 index 99624f53fa..0000000000 Binary files a/front/public/images/small/kubatech/defc.casing/8.png and /dev/null differ diff --git a/front/public/images/small/kubatech/defc.casing/9.png b/front/public/images/small/kubatech/defc.casing/9.png deleted file mode 100644 index 0de8e76098..0000000000 Binary files a/front/public/images/small/kubatech/defc.casing/9.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubablocks/0.png b/front/public/images/small/kubatech/kubablocks/0.png deleted file mode 100644 index 38ca65d78e..0000000000 Binary files a/front/public/images/small/kubatech/kubablocks/0.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubablocks/1.png b/front/public/images/small/kubatech/kubablocks/1.png deleted file mode 100644 index ba5205f932..0000000000 Binary files a/front/public/images/small/kubatech/kubablocks/1.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/0.png b/front/public/images/small/kubatech/kubaitems/0.png deleted file mode 100644 index 1c0ed9f861..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/0.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/1.png b/front/public/images/small/kubatech/kubaitems/1.png deleted file mode 100644 index c7c7d380ef..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/1.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/10.png b/front/public/images/small/kubatech/kubaitems/10.png deleted file mode 100644 index b6c6802a2b..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/10.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/11.png b/front/public/images/small/kubatech/kubaitems/11.png deleted file mode 100644 index c92d19beeb..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/11.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/12.png b/front/public/images/small/kubatech/kubaitems/12.png deleted file mode 100644 index 9022855c6a..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/12.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/13.png b/front/public/images/small/kubatech/kubaitems/13.png deleted file mode 100644 index 1c0ed9f861..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/13.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/14.png b/front/public/images/small/kubatech/kubaitems/14.png deleted file mode 100644 index 6a27da0bd9..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/14.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/15.png b/front/public/images/small/kubatech/kubaitems/15.png deleted file mode 100644 index d8c52a39b9..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/15.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/16.png b/front/public/images/small/kubatech/kubaitems/16.png deleted file mode 100644 index 2d367a7446..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/16.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/17.png b/front/public/images/small/kubatech/kubaitems/17.png deleted file mode 100644 index 8004f703a0..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/17.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/18.png b/front/public/images/small/kubatech/kubaitems/18.png deleted file mode 100644 index 63be265e54..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/18.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/19.png b/front/public/images/small/kubatech/kubaitems/19.png deleted file mode 100644 index 07a2ff7b23..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/19.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/2.png b/front/public/images/small/kubatech/kubaitems/2.png deleted file mode 100644 index 6a27da0bd9..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/2.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/20.png b/front/public/images/small/kubatech/kubaitems/20.png deleted file mode 100644 index ffe487c524..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/20.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/21.png b/front/public/images/small/kubatech/kubaitems/21.png deleted file mode 100644 index b6c6802a2b..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/21.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/22.png b/front/public/images/small/kubatech/kubaitems/22.png deleted file mode 100644 index c92d19beeb..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/22.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/23.png b/front/public/images/small/kubatech/kubaitems/23.png deleted file mode 100644 index ade24598b1..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/23.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/24.png b/front/public/images/small/kubatech/kubaitems/24.png deleted file mode 100644 index b62105ed18..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/24.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/25.png b/front/public/images/small/kubatech/kubaitems/25.png deleted file mode 100644 index 08a9b2ae38..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/25.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/26.png b/front/public/images/small/kubatech/kubaitems/26.png deleted file mode 100644 index 5e1da3542a..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/26.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/27.png b/front/public/images/small/kubatech/kubaitems/27.png deleted file mode 100644 index 8d622466ba..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/27.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/28.png b/front/public/images/small/kubatech/kubaitems/28.png deleted file mode 100644 index f465cecf81..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/28.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/29.png b/front/public/images/small/kubatech/kubaitems/29.png deleted file mode 100644 index d4b3cacfad..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/29.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/3.png b/front/public/images/small/kubatech/kubaitems/3.png deleted file mode 100644 index d8c52a39b9..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/3.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/30.png b/front/public/images/small/kubatech/kubaitems/30.png deleted file mode 100644 index 077feea65d..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/30.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/31.png b/front/public/images/small/kubatech/kubaitems/31.png deleted file mode 100644 index 075a2bb464..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/31.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/32.png b/front/public/images/small/kubatech/kubaitems/32.png deleted file mode 100644 index d56cc4283f..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/32.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/33.png b/front/public/images/small/kubatech/kubaitems/33.png deleted file mode 100644 index 89e7639332..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/33.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/34.png b/front/public/images/small/kubatech/kubaitems/34.png deleted file mode 100644 index d77ff7a24b..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/34.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/35.png b/front/public/images/small/kubatech/kubaitems/35.png deleted file mode 100644 index c0d5e3fa26..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/35.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/36.png b/front/public/images/small/kubatech/kubaitems/36.png deleted file mode 100644 index 0e55e815fb..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/36.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/37.png b/front/public/images/small/kubatech/kubaitems/37.png deleted file mode 100644 index 66e42a17b9..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/37.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/38.png b/front/public/images/small/kubatech/kubaitems/38.png deleted file mode 100644 index d7309b18bd..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/38.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/39.png b/front/public/images/small/kubatech/kubaitems/39.png deleted file mode 100644 index 7e61b9c0c3..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/39.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/4.png b/front/public/images/small/kubatech/kubaitems/4.png deleted file mode 100644 index 2d367a7446..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/4.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/40.png b/front/public/images/small/kubatech/kubaitems/40.png deleted file mode 100644 index 8abf995ca3..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/40.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/41.png b/front/public/images/small/kubatech/kubaitems/41.png deleted file mode 100644 index 593d9c74ef..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/41.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/5.png b/front/public/images/small/kubatech/kubaitems/5.png deleted file mode 100644 index 8004f703a0..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/5.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/6.png b/front/public/images/small/kubatech/kubaitems/6.png deleted file mode 100644 index 63be265e54..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/6.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/7.png b/front/public/images/small/kubatech/kubaitems/7.png deleted file mode 100644 index 07a2ff7b23..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/7.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/8.png b/front/public/images/small/kubatech/kubaitems/8.png deleted file mode 100644 index ffe487c524..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/8.png and /dev/null differ diff --git a/front/public/images/small/kubatech/kubaitems/9.png b/front/public/images/small/kubatech/kubaitems/9.png deleted file mode 100644 index b39dae87ad..0000000000 Binary files a/front/public/images/small/kubatech/kubaitems/9.png and /dev/null differ diff --git a/front/public/images/small/lootgames/GOLMasterBlock/0.png b/front/public/images/small/lootgames/GOLMasterBlock/0.png deleted file mode 100644 index a9c44bb0b8..0000000000 Binary files a/front/public/images/small/lootgames/GOLMasterBlock/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonLight/0.png b/front/public/images/small/lootgames/LootGamesDungeonLight/0.png deleted file mode 100644 index 087356e8f0..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonLight/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonLight/1.png b/front/public/images/small/lootgames/LootGamesDungeonLight/1.png deleted file mode 100644 index ec8086a7bc..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonLight/1.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonWall/0.png b/front/public/images/small/lootgames/LootGamesDungeonWall/0.png deleted file mode 100644 index 962b554b0e..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonWall/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonWall/1.png b/front/public/images/small/lootgames/LootGamesDungeonWall/1.png deleted file mode 100644 index b2920ecf5f..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonWall/1.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonWall/2.png b/front/public/images/small/lootgames/LootGamesDungeonWall/2.png deleted file mode 100644 index 74c1983a0f..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonWall/2.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonWall/3.png b/front/public/images/small/lootgames/LootGamesDungeonWall/3.png deleted file mode 100644 index 371d6bfc16..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonWall/3.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonWall/4.png b/front/public/images/small/lootgames/LootGamesDungeonWall/4.png deleted file mode 100644 index 6c80222ac9..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonWall/4.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonWall/5.png b/front/public/images/small/lootgames/LootGamesDungeonWall/5.png deleted file mode 100644 index 1295ccb7e9..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonWall/5.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesDungeonWall/6.png b/front/public/images/small/lootgames/LootGamesDungeonWall/6.png deleted file mode 100644 index a9c44bb0b8..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesDungeonWall/6.png and /dev/null differ diff --git a/front/public/images/small/lootgames/LootGamesMasterBlock/0.png b/front/public/images/small/lootgames/LootGamesMasterBlock/0.png deleted file mode 100644 index 074575c6a0..0000000000 Binary files a/front/public/images/small/lootgames/LootGamesMasterBlock/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/board_border/0.png b/front/public/images/small/lootgames/board_border/0.png deleted file mode 100644 index fd7768233a..0000000000 Binary files a/front/public/images/small/lootgames/board_border/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/gol_activator/0.png b/front/public/images/small/lootgames/gol_activator/0.png deleted file mode 100644 index a52bb108da..0000000000 Binary files a/front/public/images/small/lootgames/gol_activator/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/gol_master/0.png b/front/public/images/small/lootgames/gol_master/0.png deleted file mode 100644 index a9c44bb0b8..0000000000 Binary files a/front/public/images/small/lootgames/gol_master/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/ms_activator/0.png b/front/public/images/small/lootgames/ms_activator/0.png deleted file mode 100644 index 6e5ead30a9..0000000000 Binary files a/front/public/images/small/lootgames/ms_activator/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/ms_master/0.png b/front/public/images/small/lootgames/ms_master/0.png deleted file mode 100644 index a9c44bb0b8..0000000000 Binary files a/front/public/images/small/lootgames/ms_master/0.png and /dev/null differ diff --git a/front/public/images/small/lootgames/smart_subordinate/0.png b/front/public/images/small/lootgames/smart_subordinate/0.png deleted file mode 100644 index a9c44bb0b8..0000000000 Binary files a/front/public/images/small/lootgames/smart_subordinate/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/acaciaFenceGate/0.png b/front/public/images/small/malisisdoors/acaciaFenceGate/0.png deleted file mode 100644 index 47a9ec1ecf..0000000000 Binary files a/front/public/images/small/malisisdoors/acaciaFenceGate/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/birchFenceGate/0.png b/front/public/images/small/malisisdoors/birchFenceGate/0.png deleted file mode 100644 index 1e6e8ba700..0000000000 Binary files a/front/public/images/small/malisisdoors/birchFenceGate/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/block_mixer/0.png b/front/public/images/small/malisisdoors/block_mixer/0.png deleted file mode 100644 index bf48c4450d..0000000000 Binary files a/front/public/images/small/malisisdoors/block_mixer/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/camoFenceGate/0.png b/front/public/images/small/malisisdoors/camoFenceGate/0.png deleted file mode 100644 index b0cd8477b4..0000000000 Binary files a/front/public/images/small/malisisdoors/camoFenceGate/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/carriage_door/0.png b/front/public/images/small/malisisdoors/carriage_door/0.png deleted file mode 100644 index 95e0961c16..0000000000 Binary files a/front/public/images/small/malisisdoors/carriage_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_black/0.png b/front/public/images/small/malisisdoors/curtain_black/0.png deleted file mode 100644 index 7afe3a533d..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_black/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_blue/0.png b/front/public/images/small/malisisdoors/curtain_blue/0.png deleted file mode 100644 index 7a54e4e9ed..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_blue/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_brown/0.png b/front/public/images/small/malisisdoors/curtain_brown/0.png deleted file mode 100644 index 4ca36b31b8..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_brown/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_cyan/0.png b/front/public/images/small/malisisdoors/curtain_cyan/0.png deleted file mode 100644 index 7b552d0899..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_cyan/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_gray/0.png b/front/public/images/small/malisisdoors/curtain_gray/0.png deleted file mode 100644 index 2ff4c3bb15..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_gray/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_green/0.png b/front/public/images/small/malisisdoors/curtain_green/0.png deleted file mode 100644 index 87c119295e..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_green/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_light_blue/0.png b/front/public/images/small/malisisdoors/curtain_light_blue/0.png deleted file mode 100644 index 9e62255705..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_light_blue/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_lime/0.png b/front/public/images/small/malisisdoors/curtain_lime/0.png deleted file mode 100644 index 24c8950380..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_lime/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_magenta/0.png b/front/public/images/small/malisisdoors/curtain_magenta/0.png deleted file mode 100644 index b9172d5636..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_magenta/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_orange/0.png b/front/public/images/small/malisisdoors/curtain_orange/0.png deleted file mode 100644 index c14e232128..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_orange/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_pink/0.png b/front/public/images/small/malisisdoors/curtain_pink/0.png deleted file mode 100644 index d894a68327..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_pink/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_purple/0.png b/front/public/images/small/malisisdoors/curtain_purple/0.png deleted file mode 100644 index 879c12551e..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_purple/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_red/0.png b/front/public/images/small/malisisdoors/curtain_red/0.png deleted file mode 100644 index 5ebd6e1e8b..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_red/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_silver/0.png b/front/public/images/small/malisisdoors/curtain_silver/0.png deleted file mode 100644 index 63976be7fb..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_silver/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_white/0.png b/front/public/images/small/malisisdoors/curtain_white/0.png deleted file mode 100644 index c3ade4069a..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_white/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/curtain_yellow/0.png b/front/public/images/small/malisisdoors/curtain_yellow/0.png deleted file mode 100644 index 88f9c61160..0000000000 Binary files a/front/public/images/small/malisisdoors/curtain_yellow/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/darkOakFenceGate/0.png b/front/public/images/small/malisisdoors/darkOakFenceGate/0.png deleted file mode 100644 index c1a60c48e6..0000000000 Binary files a/front/public/images/small/malisisdoors/darkOakFenceGate/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/door_acacia/0.png b/front/public/images/small/malisisdoors/door_acacia/0.png deleted file mode 100644 index 86fb0af787..0000000000 Binary files a/front/public/images/small/malisisdoors/door_acacia/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/door_birch/0.png b/front/public/images/small/malisisdoors/door_birch/0.png deleted file mode 100644 index fdf9f7f166..0000000000 Binary files a/front/public/images/small/malisisdoors/door_birch/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/door_dark_oak/0.png b/front/public/images/small/malisisdoors/door_dark_oak/0.png deleted file mode 100644 index e716fdf4da..0000000000 Binary files a/front/public/images/small/malisisdoors/door_dark_oak/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/door_factory/0.png b/front/public/images/small/malisisdoors/door_factory/0.png deleted file mode 100644 index ba739d02c9..0000000000 Binary files a/front/public/images/small/malisisdoors/door_factory/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/door_jungle/0.png b/front/public/images/small/malisisdoors/door_jungle/0.png deleted file mode 100644 index 5172cc8481..0000000000 Binary files a/front/public/images/small/malisisdoors/door_jungle/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/door_spruce/0.png b/front/public/images/small/malisisdoors/door_spruce/0.png deleted file mode 100644 index 6658fe21f9..0000000000 Binary files a/front/public/images/small/malisisdoors/door_spruce/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/factory_door/0.png b/front/public/images/small/malisisdoors/factory_door/0.png deleted file mode 100644 index e408f9484e..0000000000 Binary files a/front/public/images/small/malisisdoors/factory_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/forcefieldDoor/0.png b/front/public/images/small/malisisdoors/forcefieldDoor/0.png deleted file mode 100644 index ac9eb9d397..0000000000 Binary files a/front/public/images/small/malisisdoors/forcefieldDoor/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/garage_door/0.png b/front/public/images/small/malisisdoors/garage_door/0.png deleted file mode 100644 index 1532f9762a..0000000000 Binary files a/front/public/images/small/malisisdoors/garage_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/iron_sliding_door/0.png b/front/public/images/small/malisisdoors/iron_sliding_door/0.png deleted file mode 100644 index 113a92862f..0000000000 Binary files a/front/public/images/small/malisisdoors/iron_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/iron_trapdoor/0.png b/front/public/images/small/malisisdoors/iron_trapdoor/0.png deleted file mode 100644 index 0c66079c5c..0000000000 Binary files a/front/public/images/small/malisisdoors/iron_trapdoor/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_black/0.png b/front/public/images/small/malisisdoors/item.curtain_black/0.png deleted file mode 100644 index abf9d7a2cc..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_black/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_blue/0.png b/front/public/images/small/malisisdoors/item.curtain_blue/0.png deleted file mode 100644 index dc8e1ae096..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_blue/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_brown/0.png b/front/public/images/small/malisisdoors/item.curtain_brown/0.png deleted file mode 100644 index b7ffc8f288..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_brown/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_cyan/0.png b/front/public/images/small/malisisdoors/item.curtain_cyan/0.png deleted file mode 100644 index 38253e21cf..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_cyan/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_gray/0.png b/front/public/images/small/malisisdoors/item.curtain_gray/0.png deleted file mode 100644 index 80a7d27832..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_gray/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_green/0.png b/front/public/images/small/malisisdoors/item.curtain_green/0.png deleted file mode 100644 index 6d84870239..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_green/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_light_blue/0.png b/front/public/images/small/malisisdoors/item.curtain_light_blue/0.png deleted file mode 100644 index 7bc4e0795a..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_light_blue/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_lime/0.png b/front/public/images/small/malisisdoors/item.curtain_lime/0.png deleted file mode 100644 index f0bd639e6d..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_lime/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_magenta/0.png b/front/public/images/small/malisisdoors/item.curtain_magenta/0.png deleted file mode 100644 index bfd0a2d46c..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_magenta/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_orange/0.png b/front/public/images/small/malisisdoors/item.curtain_orange/0.png deleted file mode 100644 index 0788fbd622..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_orange/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_pink/0.png b/front/public/images/small/malisisdoors/item.curtain_pink/0.png deleted file mode 100644 index 7b2988e7ff..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_pink/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_purple/0.png b/front/public/images/small/malisisdoors/item.curtain_purple/0.png deleted file mode 100644 index d978522596..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_purple/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_red/0.png b/front/public/images/small/malisisdoors/item.curtain_red/0.png deleted file mode 100644 index 112b33c8aa..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_red/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_silver/0.png b/front/public/images/small/malisisdoors/item.curtain_silver/0.png deleted file mode 100644 index 7d38b73ff1..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_silver/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_white/0.png b/front/public/images/small/malisisdoors/item.curtain_white/0.png deleted file mode 100644 index cf387cfed2..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_white/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.curtain_yellow/0.png b/front/public/images/small/malisisdoors/item.curtain_yellow/0.png deleted file mode 100644 index 58d5bc1719..0000000000 Binary files a/front/public/images/small/malisisdoors/item.curtain_yellow/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.custom_door/0.png b/front/public/images/small/malisisdoors/item.custom_door/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/malisisdoors/item.custom_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.door_acacia/0.png b/front/public/images/small/malisisdoors/item.door_acacia/0.png deleted file mode 100644 index 1bb8900ae4..0000000000 Binary files a/front/public/images/small/malisisdoors/item.door_acacia/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.door_birch/0.png b/front/public/images/small/malisisdoors/item.door_birch/0.png deleted file mode 100644 index c28f0c1a6b..0000000000 Binary files a/front/public/images/small/malisisdoors/item.door_birch/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.door_dark_oak/0.png b/front/public/images/small/malisisdoors/item.door_dark_oak/0.png deleted file mode 100644 index 5d98d0a553..0000000000 Binary files a/front/public/images/small/malisisdoors/item.door_dark_oak/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.door_jungle/0.png b/front/public/images/small/malisisdoors/item.door_jungle/0.png deleted file mode 100644 index 81653ea993..0000000000 Binary files a/front/public/images/small/malisisdoors/item.door_jungle/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.door_spruce/0.png b/front/public/images/small/malisisdoors/item.door_spruce/0.png deleted file mode 100644 index a287bacf0e..0000000000 Binary files a/front/public/images/small/malisisdoors/item.door_spruce/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.factory_door/0.png b/front/public/images/small/malisisdoors/item.factory_door/0.png deleted file mode 100644 index 00a2fab1b9..0000000000 Binary files a/front/public/images/small/malisisdoors/item.factory_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.forcefieldItem/0.png b/front/public/images/small/malisisdoors/item.forcefieldItem/0.png deleted file mode 100644 index 0b07e1c6bd..0000000000 Binary files a/front/public/images/small/malisisdoors/item.forcefieldItem/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.iron_sliding_door/0.png b/front/public/images/small/malisisdoors/item.iron_sliding_door/0.png deleted file mode 100644 index 43ea31ca97..0000000000 Binary files a/front/public/images/small/malisisdoors/item.iron_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.jail_door/0.png b/front/public/images/small/malisisdoors/item.jail_door/0.png deleted file mode 100644 index 931bba3c57..0000000000 Binary files a/front/public/images/small/malisisdoors/item.jail_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.laboratory_door/0.png b/front/public/images/small/malisisdoors/item.laboratory_door/0.png deleted file mode 100644 index e5b9487881..0000000000 Binary files a/front/public/images/small/malisisdoors/item.laboratory_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.rustyHandle/0.png b/front/public/images/small/malisisdoors/item.rustyHandle/0.png deleted file mode 100644 index decd4b4b5a..0000000000 Binary files a/front/public/images/small/malisisdoors/item.rustyHandle/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.saloon/0.png b/front/public/images/small/malisisdoors/item.saloon/0.png deleted file mode 100644 index 13e7495727..0000000000 Binary files a/front/public/images/small/malisisdoors/item.saloon/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.shoji_door/0.png b/front/public/images/small/malisisdoors/item.shoji_door/0.png deleted file mode 100644 index 066415bdc6..0000000000 Binary files a/front/public/images/small/malisisdoors/item.shoji_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/item.wood_sliding_door/0.png b/front/public/images/small/malisisdoors/item.wood_sliding_door/0.png deleted file mode 100644 index e6494b6a83..0000000000 Binary files a/front/public/images/small/malisisdoors/item.wood_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/jail_door/0.png b/front/public/images/small/malisisdoors/jail_door/0.png deleted file mode 100644 index c0c75987ba..0000000000 Binary files a/front/public/images/small/malisisdoors/jail_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/jungleFenceGate/0.png b/front/public/images/small/malisisdoors/jungleFenceGate/0.png deleted file mode 100644 index b5bde06e92..0000000000 Binary files a/front/public/images/small/malisisdoors/jungleFenceGate/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/laboratory_door/0.png b/front/public/images/small/malisisdoors/laboratory_door/0.png deleted file mode 100644 index 866365ac2c..0000000000 Binary files a/front/public/images/small/malisisdoors/laboratory_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/medieval_door/0.png b/front/public/images/small/malisisdoors/medieval_door/0.png deleted file mode 100644 index 5810391ac0..0000000000 Binary files a/front/public/images/small/malisisdoors/medieval_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/mixed_block/0.png b/front/public/images/small/malisisdoors/mixed_block/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/malisisdoors/mixed_block/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/null/0.png b/front/public/images/small/malisisdoors/null/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/malisisdoors/null/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/player_sensor/0.png b/front/public/images/small/malisisdoors/player_sensor/0.png deleted file mode 100644 index 07f64651d6..0000000000 Binary files a/front/public/images/small/malisisdoors/player_sensor/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/rustyHatch/0.png b/front/public/images/small/malisisdoors/rustyHatch/0.png deleted file mode 100644 index 30f0428c14..0000000000 Binary files a/front/public/images/small/malisisdoors/rustyHatch/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/rustyLadder/0.png b/front/public/images/small/malisisdoors/rustyLadder/0.png deleted file mode 100644 index 4421b6f074..0000000000 Binary files a/front/public/images/small/malisisdoors/rustyLadder/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/saloon/0.png b/front/public/images/small/malisisdoors/saloon/0.png deleted file mode 100644 index 45e95c4eae..0000000000 Binary files a/front/public/images/small/malisisdoors/saloon/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/shoji_door/0.png b/front/public/images/small/malisisdoors/shoji_door/0.png deleted file mode 100644 index 0fb884a41b..0000000000 Binary files a/front/public/images/small/malisisdoors/shoji_door/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/sliding_trapdoor/0.png b/front/public/images/small/malisisdoors/sliding_trapdoor/0.png deleted file mode 100644 index c2cc38026e..0000000000 Binary files a/front/public/images/small/malisisdoors/sliding_trapdoor/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/spruceFenceGate/0.png b/front/public/images/small/malisisdoors/spruceFenceGate/0.png deleted file mode 100644 index c9a214eef1..0000000000 Binary files a/front/public/images/small/malisisdoors/spruceFenceGate/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/trapdoor_acacia/0.png b/front/public/images/small/malisisdoors/trapdoor_acacia/0.png deleted file mode 100644 index 1d7ebfa239..0000000000 Binary files a/front/public/images/small/malisisdoors/trapdoor_acacia/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/trapdoor_birch/0.png b/front/public/images/small/malisisdoors/trapdoor_birch/0.png deleted file mode 100644 index 2c49b7ce99..0000000000 Binary files a/front/public/images/small/malisisdoors/trapdoor_birch/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/trapdoor_dark_oak/0.png b/front/public/images/small/malisisdoors/trapdoor_dark_oak/0.png deleted file mode 100644 index ee47b065cb..0000000000 Binary files a/front/public/images/small/malisisdoors/trapdoor_dark_oak/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/trapdoor_jungle/0.png b/front/public/images/small/malisisdoors/trapdoor_jungle/0.png deleted file mode 100644 index 0235724ce1..0000000000 Binary files a/front/public/images/small/malisisdoors/trapdoor_jungle/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/trapdoor_spruce/0.png b/front/public/images/small/malisisdoors/trapdoor_spruce/0.png deleted file mode 100644 index cb3826474c..0000000000 Binary files a/front/public/images/small/malisisdoors/trapdoor_spruce/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/vanishing_block/0.png b/front/public/images/small/malisisdoors/vanishing_block/0.png deleted file mode 100644 index c7a25118a1..0000000000 Binary files a/front/public/images/small/malisisdoors/vanishing_block/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/vanishing_block/1.png b/front/public/images/small/malisisdoors/vanishing_block/1.png deleted file mode 100644 index b67ca70264..0000000000 Binary files a/front/public/images/small/malisisdoors/vanishing_block/1.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/vanishing_block/2.png b/front/public/images/small/malisisdoors/vanishing_block/2.png deleted file mode 100644 index 84adba9d04..0000000000 Binary files a/front/public/images/small/malisisdoors/vanishing_block/2.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/vanishing_block/3.png b/front/public/images/small/malisisdoors/vanishing_block/3.png deleted file mode 100644 index 069fb229e7..0000000000 Binary files a/front/public/images/small/malisisdoors/vanishing_block/3.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/vanishing_block_diamond/0.png b/front/public/images/small/malisisdoors/vanishing_block_diamond/0.png deleted file mode 100644 index c7a25118a1..0000000000 Binary files a/front/public/images/small/malisisdoors/vanishing_block_diamond/0.png and /dev/null differ diff --git a/front/public/images/small/malisisdoors/wood_sliding_door/0.png b/front/public/images/small/malisisdoors/wood_sliding_door/0.png deleted file mode 100644 index 76483dca77..0000000000 Binary files a/front/public/images/small/malisisdoors/wood_sliding_door/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/2Ethylanthrahydroquinone/0.png b/front/public/images/small/miscutils/2Ethylanthrahydroquinone/0.png deleted file mode 100644 index fb9d1340a5..0000000000 Binary files a/front/public/images/small/miscutils/2Ethylanthrahydroquinone/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/2Ethylanthraquinone/0.png b/front/public/images/small/miscutils/2Ethylanthraquinone/0.png deleted file mode 100644 index f1f7bd604f..0000000000 Binary files a/front/public/images/small/miscutils/2Ethylanthraquinone/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/AAA_Broken/0.png b/front/public/images/small/miscutils/AAA_Broken/0.png deleted file mode 100644 index 3aa7018f37..0000000000 Binary files a/front/public/images/small/miscutils/AAA_Broken/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/AmmoniumNitrateSlurry/0.png b/front/public/images/small/miscutils/AmmoniumNitrateSlurry/0.png deleted file mode 100644 index 79e729b791..0000000000 Binary files a/front/public/images/small/miscutils/AmmoniumNitrateSlurry/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Anthracene/0.png b/front/public/images/small/miscutils/Anthracene/0.png deleted file mode 100644 index f2b2e2438f..0000000000 Binary files a/front/public/images/small/miscutils/Anthracene/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/BurntLiFBeF2ThF4UF4/0.png b/front/public/images/small/miscutils/BurntLiFBeF2ThF4UF4/0.png deleted file mode 100644 index 878a15fd98..0000000000 Binary files a/front/public/images/small/miscutils/BurntLiFBeF2ThF4UF4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/BurntLiFBeF2ZrF4U235/0.png b/front/public/images/small/miscutils/BurntLiFBeF2ZrF4U235/0.png deleted file mode 100644 index 4bd572a816..0000000000 Binary files a/front/public/images/small/miscutils/BurntLiFBeF2ZrF4U235/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/BurntLiFBeF2ZrF4UF4/0.png b/front/public/images/small/miscutils/BurntLiFBeF2ZrF4UF4/0.png deleted file mode 100644 index f9ed1bc092..0000000000 Binary files a/front/public/images/small/miscutils/BurntLiFBeF2ZrF4UF4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/CarbonDisulfide/0.png b/front/public/images/small/miscutils/CarbonDisulfide/0.png deleted file mode 100644 index 8575902bd0..0000000000 Binary files a/front/public/images/small/miscutils/CarbonDisulfide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/CoalGas/0.png b/front/public/images/small/miscutils/CoalGas/0.png deleted file mode 100644 index 4ee75fcad9..0000000000 Binary files a/front/public/images/small/miscutils/CoalGas/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/CoalTar/0.png b/front/public/images/small/miscutils/CoalTar/0.png deleted file mode 100644 index 46b445d448..0000000000 Binary files a/front/public/images/small/miscutils/CoalTar/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/CoalTarOil/0.png b/front/public/images/small/miscutils/CoalTarOil/0.png deleted file mode 100644 index 56791b07e2..0000000000 Binary files a/front/public/images/small/miscutils/CoalTarOil/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Ethylbenzene/0.png b/front/public/images/small/miscutils/Ethylbenzene/0.png deleted file mode 100644 index f2b2e2438f..0000000000 Binary files a/front/public/images/small/miscutils/Ethylbenzene/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FermentationBase/0.png b/front/public/images/small/miscutils/FermentationBase/0.png deleted file mode 100644 index 774aa5cde2..0000000000 Binary files a/front/public/images/small/miscutils/FermentationBase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FertileManureSlurry/0.png b/front/public/images/small/miscutils/FertileManureSlurry/0.png deleted file mode 100644 index 3b40865f12..0000000000 Binary files a/front/public/images/small/miscutils/FertileManureSlurry/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Fertiliser/0.png b/front/public/images/small/miscutils/Fertiliser/0.png deleted file mode 100644 index 5e3220626a..0000000000 Binary files a/front/public/images/small/miscutils/Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FluidCryotheum/0.png b/front/public/images/small/miscutils/FluidCryotheum/0.png deleted file mode 100644 index a5c40dae96..0000000000 Binary files a/front/public/images/small/miscutils/FluidCryotheum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FluidEnder/0.png b/front/public/images/small/miscutils/FluidEnder/0.png deleted file mode 100644 index 48f3b7d320..0000000000 Binary files a/front/public/images/small/miscutils/FluidEnder/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FluidPyrotheum/0.png b/front/public/images/small/miscutils/FluidPyrotheum/0.png deleted file mode 100644 index 497c3c7bdb..0000000000 Binary files a/front/public/images/small/miscutils/FluidPyrotheum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Formaldehyde/0.png b/front/public/images/small/miscutils/Formaldehyde/0.png deleted file mode 100644 index 79e729b791..0000000000 Binary files a/front/public/images/small/miscutils/Formaldehyde/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothAlmandineflotation/0.png b/front/public/images/small/miscutils/FrothAlmandineflotation/0.png deleted file mode 100644 index 3bf917ae0d..0000000000 Binary files a/front/public/images/small/miscutils/FrothAlmandineflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothCopperflotation/0.png b/front/public/images/small/miscutils/FrothCopperflotation/0.png deleted file mode 100644 index c30a8dd50f..0000000000 Binary files a/front/public/images/small/miscutils/FrothCopperflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothGrossularflotation/0.png b/front/public/images/small/miscutils/FrothGrossularflotation/0.png deleted file mode 100644 index 06c75d4b3a..0000000000 Binary files a/front/public/images/small/miscutils/FrothGrossularflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothMonaziteflotation/0.png b/front/public/images/small/miscutils/FrothMonaziteflotation/0.png deleted file mode 100644 index bcfeeae1fe..0000000000 Binary files a/front/public/images/small/miscutils/FrothMonaziteflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothNickelflotation/0.png b/front/public/images/small/miscutils/FrothNickelflotation/0.png deleted file mode 100644 index 76a21c1cb0..0000000000 Binary files a/front/public/images/small/miscutils/FrothNickelflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothPentlanditeflotation/0.png b/front/public/images/small/miscutils/FrothPentlanditeflotation/0.png deleted file mode 100644 index c058be452d..0000000000 Binary files a/front/public/images/small/miscutils/FrothPentlanditeflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothPlatinumflotation/0.png b/front/public/images/small/miscutils/FrothPlatinumflotation/0.png deleted file mode 100644 index 34276e12d1..0000000000 Binary files a/front/public/images/small/miscutils/FrothPlatinumflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothPyropeflotation/0.png b/front/public/images/small/miscutils/FrothPyropeflotation/0.png deleted file mode 100644 index 19afcbd46a..0000000000 Binary files a/front/public/images/small/miscutils/FrothPyropeflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothRedstoneflotation/0.png b/front/public/images/small/miscutils/FrothRedstoneflotation/0.png deleted file mode 100644 index 8d99194370..0000000000 Binary files a/front/public/images/small/miscutils/FrothRedstoneflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothSpessartineflotation/0.png b/front/public/images/small/miscutils/FrothSpessartineflotation/0.png deleted file mode 100644 index 6dec4f5cbe..0000000000 Binary files a/front/public/images/small/miscutils/FrothSpessartineflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/FrothZincflotation/0.png b/front/public/images/small/miscutils/FrothZincflotation/0.png deleted file mode 100644 index f2b2e2438f..0000000000 Binary files a/front/public/images/small/miscutils/FrothZincflotation/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.01.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.01.name/1.png deleted file mode 100644 index 9d754859d8..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.01.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.01.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.01.name/26.png deleted file mode 100644 index 9d754859d8..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.01.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.02.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.02.name/1.png deleted file mode 100644 index 4ead0b6b90..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.02.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.02.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.02.name/26.png deleted file mode 100644 index 4ead0b6b90..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.02.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.03.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.03.name/1.png deleted file mode 100644 index 35752c931d..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.03.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.03.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.03.name/26.png deleted file mode 100644 index 35752c931d..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.03.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.04.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.04.name/1.png deleted file mode 100644 index c4070c3720..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.04.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.04.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.04.name/26.png deleted file mode 100644 index c4070c3720..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.04.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.05.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.05.name/1.png deleted file mode 100644 index eb46bf7f53..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.05.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.05.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.05.name/26.png deleted file mode 100644 index eb46bf7f53..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.05.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.06.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.06.name/1.png deleted file mode 100644 index eb913151a8..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.06.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.06.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.06.name/26.png deleted file mode 100644 index eb913151a8..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.06.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.07.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.07.name/1.png deleted file mode 100644 index 942a595ebb..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.07.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.07.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.07.name/26.png deleted file mode 100644 index 942a595ebb..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.07.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.08.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.08.name/1.png deleted file mode 100644 index 68d5c46ba9..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.08.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.08.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.08.name/26.png deleted file mode 100644 index 68d5c46ba9..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.08.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.09.name/1.png b/front/public/images/small/miscutils/GTPP.BattPack.09.name/1.png deleted file mode 100644 index 7912fb49e5..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.09.name/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.BattPack.09.name/26.png b/front/public/images/small/miscutils/GTPP.BattPack.09.name/26.png deleted file mode 100644 index 7912fb49e5..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.BattPack.09.name/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GTPP.bauble.fireprotection.0.name/0.png b/front/public/images/small/miscutils/GTPP.bauble.fireprotection.0.name/0.png deleted file mode 100644 index fcdc475849..0000000000 Binary files a/front/public/images/small/miscutils/GTPP.bauble.fireprotection.0.name/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/GeneticMutagen/0.png b/front/public/images/small/miscutils/GeneticMutagen/0.png deleted file mode 100644 index b2f84ace5c..0000000000 Binary files a/front/public/images/small/miscutils/GeneticMutagen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Hydrazine/0.png b/front/public/images/small/miscutils/Hydrazine/0.png deleted file mode 100644 index 29ba8f1543..0000000000 Binary files a/front/public/images/small/miscutils/Hydrazine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/HydrogenPeroxide/0.png b/front/public/images/small/miscutils/HydrogenPeroxide/0.png deleted file mode 100644 index b263d4f5b1..0000000000 Binary files a/front/public/images/small/miscutils/HydrogenPeroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/ImpureLiFBeF2/0.png b/front/public/images/small/miscutils/ImpureLiFBeF2/0.png deleted file mode 100644 index f2ce6e13f2..0000000000 Binary files a/front/public/images/small/miscutils/ImpureLiFBeF2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Kerosene/0.png b/front/public/images/small/miscutils/Kerosene/0.png deleted file mode 100644 index 01e1194e17..0000000000 Binary files a/front/public/images/small/miscutils/Kerosene/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/LiquidHydrogen/0.png b/front/public/images/small/miscutils/LiquidHydrogen/0.png deleted file mode 100644 index 7617236a9e..0000000000 Binary files a/front/public/images/small/miscutils/LiquidHydrogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/LithiumPeroxide/0.png b/front/public/images/small/miscutils/LithiumPeroxide/0.png deleted file mode 100644 index cdcbe55fad..0000000000 Binary files a/front/public/images/small/miscutils/LithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32040.png b/front/public/images/small/miscutils/MU-metaitem.01/32040.png deleted file mode 100644 index 480bb4bdcb..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32040.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32041.png b/front/public/images/small/miscutils/MU-metaitem.01/32041.png deleted file mode 100644 index fe37d329d3..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32041.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32042.png b/front/public/images/small/miscutils/MU-metaitem.01/32042.png deleted file mode 100644 index f685aa674b..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32042.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32043.png b/front/public/images/small/miscutils/MU-metaitem.01/32043.png deleted file mode 100644 index ad1975f5b9..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32043.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32044.png b/front/public/images/small/miscutils/MU-metaitem.01/32044.png deleted file mode 100644 index 17224716a7..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32044.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32050.png b/front/public/images/small/miscutils/MU-metaitem.01/32050.png deleted file mode 100644 index 7631f355b2..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32050.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32052.png b/front/public/images/small/miscutils/MU-metaitem.01/32052.png deleted file mode 100644 index 7631f355b2..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32052.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32054.png b/front/public/images/small/miscutils/MU-metaitem.01/32054.png deleted file mode 100644 index 7631f355b2..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32054.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32055.png b/front/public/images/small/miscutils/MU-metaitem.01/32055.png deleted file mode 100644 index ef02089046..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32055.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32066.png b/front/public/images/small/miscutils/MU-metaitem.01/32066.png deleted file mode 100644 index 5237d729ed..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32066.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32068.png b/front/public/images/small/miscutils/MU-metaitem.01/32068.png deleted file mode 100644 index 12fd0fa1a8..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32068.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32070.png b/front/public/images/small/miscutils/MU-metaitem.01/32070.png deleted file mode 100644 index f7e2eb3a5c..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32070.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32072.png b/front/public/images/small/miscutils/MU-metaitem.01/32072.png deleted file mode 100644 index 94b2716502..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32072.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32073.png b/front/public/images/small/miscutils/MU-metaitem.01/32073.png deleted file mode 100644 index f12a8806c0..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32073.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32074.png b/front/public/images/small/miscutils/MU-metaitem.01/32074.png deleted file mode 100644 index 76dde5ffcd..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32074.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32075.png b/front/public/images/small/miscutils/MU-metaitem.01/32075.png deleted file mode 100644 index 6c31ca7e30..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32075.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32076.png b/front/public/images/small/miscutils/MU-metaitem.01/32076.png deleted file mode 100644 index 77ac0e02f6..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32076.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32100.png b/front/public/images/small/miscutils/MU-metaitem.01/32100.png deleted file mode 100644 index 2ac23fc939..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32100.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32105.png b/front/public/images/small/miscutils/MU-metaitem.01/32105.png deleted file mode 100644 index 71349d3ccb..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32105.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32106.png b/front/public/images/small/miscutils/MU-metaitem.01/32106.png deleted file mode 100644 index 0d4d95f528..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32106.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32107.png b/front/public/images/small/miscutils/MU-metaitem.01/32107.png deleted file mode 100644 index 3e16754f39..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32107.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32108.png b/front/public/images/small/miscutils/MU-metaitem.01/32108.png deleted file mode 100644 index 3a6e0381a7..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32108.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32109.png b/front/public/images/small/miscutils/MU-metaitem.01/32109.png deleted file mode 100644 index a01b7ea757..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32109.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32110.png b/front/public/images/small/miscutils/MU-metaitem.01/32110.png deleted file mode 100644 index 4d1468a465..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32110.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32140.png b/front/public/images/small/miscutils/MU-metaitem.01/32140.png deleted file mode 100644 index 631b69c6bb..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32140.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32142.png b/front/public/images/small/miscutils/MU-metaitem.01/32142.png deleted file mode 100644 index b0f7460067..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32142.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32143.png b/front/public/images/small/miscutils/MU-metaitem.01/32143.png deleted file mode 100644 index 3d4053f6f8..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32143.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32144.png b/front/public/images/small/miscutils/MU-metaitem.01/32144.png deleted file mode 100644 index 2347229379..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32144.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32145.png b/front/public/images/small/miscutils/MU-metaitem.01/32145.png deleted file mode 100644 index 918a4f8ec8..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32145.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32146.png b/front/public/images/small/miscutils/MU-metaitem.01/32146.png deleted file mode 100644 index f2bc9ba7a8..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32146.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32147.png b/front/public/images/small/miscutils/MU-metaitem.01/32147.png deleted file mode 100644 index ede7b241b3..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32147.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32148.png b/front/public/images/small/miscutils/MU-metaitem.01/32148.png deleted file mode 100644 index 2fd423e5db..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32148.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32149.png b/front/public/images/small/miscutils/MU-metaitem.01/32149.png deleted file mode 100644 index 1b9e8977ba..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32149.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32150.png b/front/public/images/small/miscutils/MU-metaitem.01/32150.png deleted file mode 100644 index e4dda6316f..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32150.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32151.png b/front/public/images/small/miscutils/MU-metaitem.01/32151.png deleted file mode 100644 index 11e0c4402f..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32151.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metaitem.01/32152.png b/front/public/images/small/miscutils/MU-metaitem.01/32152.png deleted file mode 100644 index fee1fc3b9d..0000000000 Binary files a/front/public/images/small/miscutils/MU-metaitem.01/32152.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metatool.01/1000.png b/front/public/images/small/miscutils/MU-metatool.01/1000.png deleted file mode 100644 index 5049ec2af5..0000000000 Binary files a/front/public/images/small/miscutils/MU-metatool.01/1000.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metatool.01/1001.png b/front/public/images/small/miscutils/MU-metatool.01/1001.png deleted file mode 100644 index 36ea04d226..0000000000 Binary files a/front/public/images/small/miscutils/MU-metatool.01/1001.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metatool.01/1002.png b/front/public/images/small/miscutils/MU-metatool.01/1002.png deleted file mode 100644 index 05d3b0cb64..0000000000 Binary files a/front/public/images/small/miscutils/MU-metatool.01/1002.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MU-metatool.01/1003.png b/front/public/images/small/miscutils/MU-metatool.01/1003.png deleted file mode 100644 index ffcbba881e..0000000000 Binary files a/front/public/images/small/miscutils/MU-metatool.01/1003.png and /dev/null differ diff --git a/front/public/images/small/miscutils/ManureSlurry/0.png b/front/public/images/small/miscutils/ManureSlurry/0.png deleted file mode 100644 index 4a1f47082d..0000000000 Binary files a/front/public/images/small/miscutils/ManureSlurry/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Monomethylhydrazine/0.png b/front/public/images/small/miscutils/Monomethylhydrazine/0.png deleted file mode 100644 index 9fb445ea98..0000000000 Binary files a/front/public/images/small/miscutils/Monomethylhydrazine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/MudRedSlurry/0.png b/front/public/images/small/miscutils/MudRedSlurry/0.png deleted file mode 100644 index d66bddd40c..0000000000 Binary files a/front/public/images/small/miscutils/MudRedSlurry/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/Naphthalene/0.png b/front/public/images/small/miscutils/Naphthalene/0.png deleted file mode 100644 index c6f714f802..0000000000 Binary files a/front/public/images/small/miscutils/Naphthalene/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/NitrogenTetroxide/0.png b/front/public/images/small/miscutils/NitrogenTetroxide/0.png deleted file mode 100644 index 9c6e05b58b..0000000000 Binary files a/front/public/images/small/miscutils/NitrogenTetroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/NuclearWaste/0.png b/front/public/images/small/miscutils/NuclearWaste/0.png deleted file mode 100644 index 3c48d3125d..0000000000 Binary files a/front/public/images/small/miscutils/NuclearWaste/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/RP1Fuel/0.png b/front/public/images/small/miscutils/RP1Fuel/0.png deleted file mode 100644 index adba818ea5..0000000000 Binary files a/front/public/images/small/miscutils/RP1Fuel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/RaisinJuice/0.png b/front/public/images/small/miscutils/RaisinJuice/0.png deleted file mode 100644 index 9514a84ac7..0000000000 Binary files a/front/public/images/small/miscutils/RaisinJuice/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/RawWaste/0.png b/front/public/images/small/miscutils/RawWaste/0.png deleted file mode 100644 index 64e00f5022..0000000000 Binary files a/front/public/images/small/miscutils/RawWaste/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/RocketFuelMixA/0.png b/front/public/images/small/miscutils/RocketFuelMixA/0.png deleted file mode 100644 index 1e21b2f9a7..0000000000 Binary files a/front/public/images/small/miscutils/RocketFuelMixA/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/RocketFuelMixB/0.png b/front/public/images/small/miscutils/RocketFuelMixB/0.png deleted file mode 100644 index a3851553d8..0000000000 Binary files a/front/public/images/small/miscutils/RocketFuelMixB/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/RocketFuelMixC/0.png b/front/public/images/small/miscutils/RocketFuelMixC/0.png deleted file mode 100644 index b80d2e0209..0000000000 Binary files a/front/public/images/small/miscutils/RocketFuelMixC/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/RocketFuelMixD/0.png b/front/public/images/small/miscutils/RocketFuelMixD/0.png deleted file mode 100644 index 48e0347d25..0000000000 Binary files a/front/public/images/small/miscutils/RocketFuelMixD/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/SulfuricCoalTarOil/0.png b/front/public/images/small/miscutils/SulfuricCoalTarOil/0.png deleted file mode 100644 index b0040be807..0000000000 Binary files a/front/public/images/small/miscutils/SulfuricCoalTarOil/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/UN18Fertiliser/0.png b/front/public/images/small/miscutils/UN18Fertiliser/0.png deleted file mode 100644 index 1cef0b0e97..0000000000 Binary files a/front/public/images/small/miscutils/UN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/UN32Fertiliser/0.png b/front/public/images/small/miscutils/UN32Fertiliser/0.png deleted file mode 100644 index 1867ff1d6b..0000000000 Binary files a/front/public/images/small/miscutils/UN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/ZirconiumTetrafluoride/0.png b/front/public/images/small/miscutils/ZirconiumTetrafluoride/0.png deleted file mode 100644 index 13f34c5189..0000000000 Binary files a/front/public/images/small/miscutils/ZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/aniline/0.png b/front/public/images/small/miscutils/aniline/0.png deleted file mode 100644 index 817a5c6acb..0000000000 Binary files a/front/public/images/small/miscutils/aniline/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlackGate/0.png b/front/public/images/small/miscutils/blockBlackGate/0.png deleted file mode 100644 index 41dcefb424..0000000000 Binary files a/front/public/images/small/miscutils/blockBlackGate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockAbyssalAlloy/0.png b/front/public/images/small/miscutils/blockBlockAbyssalAlloy/0.png deleted file mode 100644 index b9cdcaa392..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockAdvancedNitinol/0.png b/front/public/images/small/miscutils/blockBlockAdvancedNitinol/0.png deleted file mode 100644 index 1bbc35b507..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockAncientGranite/0.png b/front/public/images/small/miscutils/blockBlockAncientGranite/0.png deleted file mode 100644 index 5a9ab9553e..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockArcanite/0.png b/front/public/images/small/miscutils/blockBlockArcanite/0.png deleted file mode 100644 index 0a8d9500da..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockArceusAlloy2B/0.png b/front/public/images/small/miscutils/blockBlockArceusAlloy2B/0.png deleted file mode 100644 index cf6fbd4705..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockAstralTitanium/0.png b/front/public/images/small/miscutils/blockBlockAstralTitanium/0.png deleted file mode 100644 index 293fb308d4..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockBabbitAlloy/0.png b/front/public/images/small/miscutils/blockBlockBabbitAlloy/0.png deleted file mode 100644 index 7fe655d734..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockBlackMetal/0.png b/front/public/images/small/miscutils/blockBlockBlackMetal/0.png deleted file mode 100644 index 4b5c49e976..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockBlackTitanium/0.png b/front/public/images/small/miscutils/blockBlockBlackTitanium/0.png deleted file mode 100644 index 7a99a4c423..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockBloodSteel/0.png b/front/public/images/small/miscutils/blockBlockBloodSteel/0.png deleted file mode 100644 index 5204c9a8df..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockBotmium/0.png b/front/public/images/small/miscutils/blockBlockBotmium/0.png deleted file mode 100644 index 095d3bc110..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockCalifornium/0.png b/front/public/images/small/miscutils/blockBlockCalifornium/0.png deleted file mode 100644 index c5556c61a4..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockCelestialTungsten/0.png b/front/public/images/small/miscutils/blockBlockCelestialTungsten/0.png deleted file mode 100644 index 382935daac..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockChromaticGlass/0.png b/front/public/images/small/miscutils/blockBlockChromaticGlass/0.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockCinobiteA243/0.png b/front/public/images/small/miscutils/blockBlockCinobiteA243/0.png deleted file mode 100644 index daa4f569a7..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockCurium/0.png b/front/public/images/small/miscutils/blockBlockCurium/0.png deleted file mode 100644 index 9fc6de8162..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockDragonblood/0.png b/front/public/images/small/miscutils/blockBlockDragonblood/0.png deleted file mode 100644 index 58184c3efb..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockDysprosium/0.png b/front/public/images/small/miscutils/blockBlockDysprosium/0.png deleted file mode 100644 index 94108f7560..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockEglinSteel/0.png b/front/public/images/small/miscutils/blockBlockEglinSteel/0.png deleted file mode 100644 index b3494e345c..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockEnergyCrystal/0.png b/front/public/images/small/miscutils/blockBlockEnergyCrystal/0.png deleted file mode 100644 index 7ddd9f4cc5..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockErbium/0.png b/front/public/images/small/miscutils/blockBlockErbium/0.png deleted file mode 100644 index c8c9913362..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockFermium/0.png b/front/public/images/small/miscutils/blockBlockFermium/0.png deleted file mode 100644 index 6fe52edf80..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockGermanium/0.png b/front/public/images/small/miscutils/blockBlockGermanium/0.png deleted file mode 100644 index 8bc174e0e5..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockGrisium/0.png b/front/public/images/small/miscutils/blockBlockGrisium/0.png deleted file mode 100644 index 4b5aed6979..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHS188A/0.png b/front/public/images/small/miscutils/blockBlockHS188A/0.png deleted file mode 100644 index fb46d510a7..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHafnium/0.png b/front/public/images/small/miscutils/blockBlockHafnium/0.png deleted file mode 100644 index 42234ff5af..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHastelloyC276/0.png b/front/public/images/small/miscutils/blockBlockHastelloyC276/0.png deleted file mode 100644 index d5fa31696b..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHastelloyN/0.png b/front/public/images/small/miscutils/blockBlockHastelloyN/0.png deleted file mode 100644 index c0f1321d32..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHastelloyW/0.png b/front/public/images/small/miscutils/blockBlockHastelloyW/0.png deleted file mode 100644 index 83c7c9ddba..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHastelloyX/0.png b/front/public/images/small/miscutils/blockBlockHastelloyX/0.png deleted file mode 100644 index 2dbb7c9a6f..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHeLiCoPtEr/0.png b/front/public/images/small/miscutils/blockBlockHeLiCoPtEr/0.png deleted file mode 100644 index c10df4512b..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockHypogen/0.png b/front/public/images/small/miscutils/blockBlockHypogen/0.png deleted file mode 100644 index 1e96f23cf1..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockIncoloy020/0.png b/front/public/images/small/miscutils/blockBlockIncoloy020/0.png deleted file mode 100644 index 8a380010bc..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockIncoloyDS/0.png b/front/public/images/small/miscutils/blockBlockIncoloyDS/0.png deleted file mode 100644 index a9bb4d2f8d..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockIncoloyMA956/0.png b/front/public/images/small/miscutils/blockBlockIncoloyMA956/0.png deleted file mode 100644 index 51937230b2..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockInconel625/0.png b/front/public/images/small/miscutils/blockBlockInconel625/0.png deleted file mode 100644 index 43536b0b0f..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockInconel690/0.png b/front/public/images/small/miscutils/blockBlockInconel690/0.png deleted file mode 100644 index 34f8aefc6a..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockInconel792/0.png b/front/public/images/small/miscutils/blockBlockInconel792/0.png deleted file mode 100644 index 0054964419..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockIndalloy140/0.png b/front/public/images/small/miscutils/blockBlockIndalloy140/0.png deleted file mode 100644 index c9814f0294..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockIodine/0.png b/front/public/images/small/miscutils/blockBlockIodine/0.png deleted file mode 100644 index 8c31c0382f..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockLafiumCompound/0.png b/front/public/images/small/miscutils/blockBlockLafiumCompound/0.png deleted file mode 100644 index a113d46f53..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockLaurenium/0.png b/front/public/images/small/miscutils/blockBlockLaurenium/0.png deleted file mode 100644 index 33f9a9948a..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockLithium7/0.png b/front/public/images/small/miscutils/blockBlockLithium7/0.png deleted file mode 100644 index 289d2e3ec8..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockMaragingSteel250/0.png b/front/public/images/small/miscutils/blockBlockMaragingSteel250/0.png deleted file mode 100644 index ad265270d7..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockMaragingSteel300/0.png b/front/public/images/small/miscutils/blockBlockMaragingSteel300/0.png deleted file mode 100644 index 2d3c0cae26..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockMaragingSteel350/0.png b/front/public/images/small/miscutils/blockBlockMaragingSteel350/0.png deleted file mode 100644 index 8932fac098..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockNeptunium/0.png b/front/public/images/small/miscutils/blockBlockNeptunium/0.png deleted file mode 100644 index 1fd661ad31..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockNiobiumCarbide/0.png b/front/public/images/small/miscutils/blockBlockNiobiumCarbide/0.png deleted file mode 100644 index 973f57ba82..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockNitinol60/0.png b/front/public/images/small/miscutils/blockBlockNitinol60/0.png deleted file mode 100644 index 1bbc35b507..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockOctiron/0.png b/front/public/images/small/miscutils/blockBlockOctiron/0.png deleted file mode 100644 index eafbf6173b..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockPikyonium64B/0.png b/front/public/images/small/miscutils/blockBlockPikyonium64B/0.png deleted file mode 100644 index 3ecf7d0182..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockPlutonium238/0.png b/front/public/images/small/miscutils/blockBlockPlutonium238/0.png deleted file mode 100644 index 484c75eb0d..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockPolonium/0.png b/front/public/images/small/miscutils/blockBlockPolonium/0.png deleted file mode 100644 index a52e27d0d1..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockPotin/0.png b/front/public/images/small/miscutils/blockBlockPotin/0.png deleted file mode 100644 index c77bec47ed..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockPraseodymium/0.png b/front/public/images/small/miscutils/blockBlockPraseodymium/0.png deleted file mode 100644 index 7945e63f58..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockPromethium/0.png b/front/public/images/small/miscutils/blockBlockPromethium/0.png deleted file mode 100644 index fc884276d4..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockPromethium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockProtactinium/0.png b/front/public/images/small/miscutils/blockBlockProtactinium/0.png deleted file mode 100644 index a638938581..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockQuantum/0.png b/front/public/images/small/miscutils/blockBlockQuantum/0.png deleted file mode 100644 index e6278eadbe..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockRadium/0.png b/front/public/images/small/miscutils/blockBlockRadium/0.png deleted file mode 100644 index f9604865b8..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockRhenium/0.png b/front/public/images/small/miscutils/blockBlockRhenium/0.png deleted file mode 100644 index 8b6f0fe28a..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockRhodium/0.png b/front/public/images/small/miscutils/blockBlockRhodium/0.png deleted file mode 100644 index f019001b85..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockRhugnor/0.png b/front/public/images/small/miscutils/blockBlockRhugnor/0.png deleted file mode 100644 index a6ee637301..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockRunite/0.png b/front/public/images/small/miscutils/blockBlockRunite/0.png deleted file mode 100644 index a84cd93401..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockRuthenium/0.png b/front/public/images/small/miscutils/blockBlockRuthenium/0.png deleted file mode 100644 index f019001b85..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockSelenium/0.png b/front/public/images/small/miscutils/blockBlockSelenium/0.png deleted file mode 100644 index 91d53ff268..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockSiliconCarbide/0.png b/front/public/images/small/miscutils/blockBlockSiliconCarbide/0.png deleted file mode 100644 index fdda51af49..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockStaballoy/0.png b/front/public/images/small/miscutils/blockBlockStaballoy/0.png deleted file mode 100644 index ae5d98a958..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockStellite/0.png b/front/public/images/small/miscutils/blockBlockStellite/0.png deleted file mode 100644 index 986c571cad..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockStrontium/0.png b/front/public/images/small/miscutils/blockBlockStrontium/0.png deleted file mode 100644 index beeadcc817..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTalonite/0.png b/front/public/images/small/miscutils/blockBlockTalonite/0.png deleted file mode 100644 index 9e8856a3dc..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTantalloy60/0.png b/front/public/images/small/miscutils/blockBlockTantalloy60/0.png deleted file mode 100644 index 8428096840..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTantalloy61/0.png b/front/public/images/small/miscutils/blockBlockTantalloy61/0.png deleted file mode 100644 index c51803fa5c..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTantalumCarbide/0.png b/front/public/images/small/miscutils/blockBlockTantalumCarbide/0.png deleted file mode 100644 index 4b2b81b78a..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTeflon/0.png b/front/public/images/small/miscutils/blockBlockTeflon/0.png deleted file mode 100644 index 97ef80e14f..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTellurium/0.png b/front/public/images/small/miscutils/blockBlockTellurium/0.png deleted file mode 100644 index c562a08cb5..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockThallium/0.png b/front/public/images/small/miscutils/blockBlockThallium/0.png deleted file mode 100644 index 30306b2880..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockThorium232/0.png b/front/public/images/small/miscutils/blockBlockThorium232/0.png deleted file mode 100644 index 91597ed51a..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTitansteel/0.png b/front/public/images/small/miscutils/blockBlockTitansteel/0.png deleted file mode 100644 index c3a9d1cbea..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/blockBlockTriniumNaquadahAlloy/0.png deleted file mode 100644 index a7d3a67b62..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/blockBlockTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 26bc04c4b7..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/blockBlockTriniumTitaniumAlloy/0.png deleted file mode 100644 index 714c5bbf5d..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTumbaga/0.png b/front/public/images/small/miscutils/blockBlockTumbaga/0.png deleted file mode 100644 index 65127d10a3..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/blockBlockTungstenTitaniumCarbide/0.png deleted file mode 100644 index c0d0756201..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockUranium232/0.png b/front/public/images/small/miscutils/blockBlockUranium232/0.png deleted file mode 100644 index ed1dad1217..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockUranium233/0.png b/front/public/images/small/miscutils/blockBlockUranium233/0.png deleted file mode 100644 index 975791d0e9..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockWatertightSteel/0.png b/front/public/images/small/miscutils/blockBlockWatertightSteel/0.png deleted file mode 100644 index 8b49375095..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockWhiteMetal/0.png b/front/public/images/small/miscutils/blockBlockWhiteMetal/0.png deleted file mode 100644 index 72c770f1e4..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockZeron100/0.png b/front/public/images/small/miscutils/blockBlockZeron100/0.png deleted file mode 100644 index b5a8e369f7..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockZirconium/0.png b/front/public/images/small/miscutils/blockBlockZirconium/0.png deleted file mode 100644 index ae6e095a65..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockBlockZirconiumCarbide/0.png b/front/public/images/small/miscutils/blockBlockZirconiumCarbide/0.png deleted file mode 100644 index a2fe6e5e72..0000000000 Binary files a/front/public/images/small/miscutils/blockBlockZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCircuitProgrammer/0.png b/front/public/images/small/miscutils/blockCircuitProgrammer/0.png deleted file mode 100644 index 5b1178a129..0000000000 Binary files a/front/public/images/small/miscutils/blockCircuitProgrammer/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/0.png b/front/public/images/small/miscutils/blockCompressedObsidian/0.png deleted file mode 100644 index 1830c78932..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/1.png b/front/public/images/small/miscutils/blockCompressedObsidian/1.png deleted file mode 100644 index 3ab2b0efa0..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/10.png b/front/public/images/small/miscutils/blockCompressedObsidian/10.png deleted file mode 100644 index 9f2d69e3ea..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/2.png b/front/public/images/small/miscutils/blockCompressedObsidian/2.png deleted file mode 100644 index d1418f5458..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/3.png b/front/public/images/small/miscutils/blockCompressedObsidian/3.png deleted file mode 100644 index a53734959b..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/4.png b/front/public/images/small/miscutils/blockCompressedObsidian/4.png deleted file mode 100644 index 26029a6509..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/5.png b/front/public/images/small/miscutils/blockCompressedObsidian/5.png deleted file mode 100644 index e7cfab42af..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/6.png b/front/public/images/small/miscutils/blockCompressedObsidian/6.png deleted file mode 100644 index 62a9fd0396..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/7.png b/front/public/images/small/miscutils/blockCompressedObsidian/7.png deleted file mode 100644 index 435e4d9958..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/8.png b/front/public/images/small/miscutils/blockCompressedObsidian/8.png deleted file mode 100644 index 8671da9016..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockCompressedObsidian/9.png b/front/public/images/small/miscutils/blockCompressedObsidian/9.png deleted file mode 100644 index 07d718d471..0000000000 Binary files a/front/public/images/small/miscutils/blockCompressedObsidian/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockDecayablesChest/0.png b/front/public/images/small/miscutils/blockDecayablesChest/0.png deleted file mode 100644 index 923c01f742..0000000000 Binary files a/front/public/images/small/miscutils/blockDecayablesChest/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFishTrap/0.png b/front/public/images/small/miscutils/blockFishTrap/0.png deleted file mode 100644 index 65dd2084ad..0000000000 Binary files a/front/public/images/small/miscutils/blockFishTrap/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtAbyssalAlloy/0.png b/front/public/images/small/miscutils/blockFrameGtAbyssalAlloy/0.png deleted file mode 100644 index eeb7a801d2..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtArcanite/0.png b/front/public/images/small/miscutils/blockFrameGtArcanite/0.png deleted file mode 100644 index 32c0eb05da..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtArceusAlloy2B/0.png b/front/public/images/small/miscutils/blockFrameGtArceusAlloy2B/0.png deleted file mode 100644 index da9f89d114..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtAstralTitanium/0.png b/front/public/images/small/miscutils/blockFrameGtAstralTitanium/0.png deleted file mode 100644 index 2e0ce2b2e1..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtBlackMetal/0.png b/front/public/images/small/miscutils/blockFrameGtBlackMetal/0.png deleted file mode 100644 index d9aff2ae70..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtBloodSteel/0.png b/front/public/images/small/miscutils/blockFrameGtBloodSteel/0.png deleted file mode 100644 index 13c8e58ca4..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtBotmium/0.png b/front/public/images/small/miscutils/blockFrameGtBotmium/0.png deleted file mode 100644 index cbdffb2aa4..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtCelestialTungsten/0.png b/front/public/images/small/miscutils/blockFrameGtCelestialTungsten/0.png deleted file mode 100644 index f15a806c88..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtChromaticGlass/0.png b/front/public/images/small/miscutils/blockFrameGtChromaticGlass/0.png deleted file mode 100644 index 45072fec15..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtCinobiteA243/0.png b/front/public/images/small/miscutils/blockFrameGtCinobiteA243/0.png deleted file mode 100644 index 62c131e706..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtDysprosium/0.png b/front/public/images/small/miscutils/blockFrameGtDysprosium/0.png deleted file mode 100644 index 7a2ce27f04..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtEglinSteel/0.png b/front/public/images/small/miscutils/blockFrameGtEglinSteel/0.png deleted file mode 100644 index ba08893e2f..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtEnergyCrystal/0.png b/front/public/images/small/miscutils/blockFrameGtEnergyCrystal/0.png deleted file mode 100644 index 4cc1010e05..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtErbium/0.png b/front/public/images/small/miscutils/blockFrameGtErbium/0.png deleted file mode 100644 index 24ef96846a..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtGermanium/0.png b/front/public/images/small/miscutils/blockFrameGtGermanium/0.png deleted file mode 100644 index 7d15307342..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtGrisium/0.png b/front/public/images/small/miscutils/blockFrameGtGrisium/0.png deleted file mode 100644 index cc56a4c95f..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHS188A/0.png b/front/public/images/small/miscutils/blockFrameGtHS188A/0.png deleted file mode 100644 index 130681bd7e..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHafnium/0.png b/front/public/images/small/miscutils/blockFrameGtHafnium/0.png deleted file mode 100644 index c3512c2a4d..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHastelloyC276/0.png b/front/public/images/small/miscutils/blockFrameGtHastelloyC276/0.png deleted file mode 100644 index f6c87f24e4..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHastelloyN/0.png b/front/public/images/small/miscutils/blockFrameGtHastelloyN/0.png deleted file mode 100644 index b089352ae8..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHastelloyW/0.png b/front/public/images/small/miscutils/blockFrameGtHastelloyW/0.png deleted file mode 100644 index 2df0ff6409..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHastelloyX/0.png b/front/public/images/small/miscutils/blockFrameGtHastelloyX/0.png deleted file mode 100644 index 56341a4c5a..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHeLiCoPtEr/0.png b/front/public/images/small/miscutils/blockFrameGtHeLiCoPtEr/0.png deleted file mode 100644 index d207abc8d5..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtHypogen/0.png b/front/public/images/small/miscutils/blockFrameGtHypogen/0.png deleted file mode 100644 index 0cb09fdb6b..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtIncoloy020/0.png b/front/public/images/small/miscutils/blockFrameGtIncoloy020/0.png deleted file mode 100644 index 8c1e6c4000..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtIncoloyDS/0.png b/front/public/images/small/miscutils/blockFrameGtIncoloyDS/0.png deleted file mode 100644 index bd5a15ea68..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtIncoloyMA956/0.png b/front/public/images/small/miscutils/blockFrameGtIncoloyMA956/0.png deleted file mode 100644 index 8a4a4cf0ba..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtInconel625/0.png b/front/public/images/small/miscutils/blockFrameGtInconel625/0.png deleted file mode 100644 index e6a463bf3a..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtInconel690/0.png b/front/public/images/small/miscutils/blockFrameGtInconel690/0.png deleted file mode 100644 index 336b5eea94..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtInconel792/0.png b/front/public/images/small/miscutils/blockFrameGtInconel792/0.png deleted file mode 100644 index 910c48394e..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtIodine/0.png b/front/public/images/small/miscutils/blockFrameGtIodine/0.png deleted file mode 100644 index 7841c62e92..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtLafiumCompound/0.png b/front/public/images/small/miscutils/blockFrameGtLafiumCompound/0.png deleted file mode 100644 index 04dae5c5d1..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtLaurenium/0.png b/front/public/images/small/miscutils/blockFrameGtLaurenium/0.png deleted file mode 100644 index 117bea70c2..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtMaragingSteel250/0.png b/front/public/images/small/miscutils/blockFrameGtMaragingSteel250/0.png deleted file mode 100644 index 1a69a4a005..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtMaragingSteel300/0.png b/front/public/images/small/miscutils/blockFrameGtMaragingSteel300/0.png deleted file mode 100644 index 284db91afc..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtMaragingSteel350/0.png b/front/public/images/small/miscutils/blockFrameGtMaragingSteel350/0.png deleted file mode 100644 index e72c2d8601..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtNiobiumCarbide/0.png b/front/public/images/small/miscutils/blockFrameGtNiobiumCarbide/0.png deleted file mode 100644 index 93022a72fe..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtNitinol60/0.png b/front/public/images/small/miscutils/blockFrameGtNitinol60/0.png deleted file mode 100644 index f3eb99ab8a..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtOctiron/0.png b/front/public/images/small/miscutils/blockFrameGtOctiron/0.png deleted file mode 100644 index 2a2b049d4f..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtPikyonium64B/0.png b/front/public/images/small/miscutils/blockFrameGtPikyonium64B/0.png deleted file mode 100644 index 976bc85582..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtPotin/0.png b/front/public/images/small/miscutils/blockFrameGtPotin/0.png deleted file mode 100644 index 54cccfc7ba..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtPraseodymium/0.png b/front/public/images/small/miscutils/blockFrameGtPraseodymium/0.png deleted file mode 100644 index 2bf5e4488a..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtQuantum/0.png b/front/public/images/small/miscutils/blockFrameGtQuantum/0.png deleted file mode 100644 index b31b073428..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtRhenium/0.png b/front/public/images/small/miscutils/blockFrameGtRhenium/0.png deleted file mode 100644 index 30af2fa38e..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtRhodium/0.png b/front/public/images/small/miscutils/blockFrameGtRhodium/0.png deleted file mode 100644 index c1c1b2eea6..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtRuthenium/0.png b/front/public/images/small/miscutils/blockFrameGtRuthenium/0.png deleted file mode 100644 index c1c1b2eea6..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtSelenium/0.png b/front/public/images/small/miscutils/blockFrameGtSelenium/0.png deleted file mode 100644 index edfa77b02d..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtSiliconCarbide/0.png b/front/public/images/small/miscutils/blockFrameGtSiliconCarbide/0.png deleted file mode 100644 index 1d08b7dd72..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtStaballoy/0.png b/front/public/images/small/miscutils/blockFrameGtStaballoy/0.png deleted file mode 100644 index 57d9011587..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtStellite/0.png b/front/public/images/small/miscutils/blockFrameGtStellite/0.png deleted file mode 100644 index ceae4a4e3b..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtStrontium/0.png b/front/public/images/small/miscutils/blockFrameGtStrontium/0.png deleted file mode 100644 index bbc3e9b4ff..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTalonite/0.png b/front/public/images/small/miscutils/blockFrameGtTalonite/0.png deleted file mode 100644 index 9042594a36..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTantalloy60/0.png b/front/public/images/small/miscutils/blockFrameGtTantalloy60/0.png deleted file mode 100644 index 75db4502ce..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTantalloy61/0.png b/front/public/images/small/miscutils/blockFrameGtTantalloy61/0.png deleted file mode 100644 index 978e24589a..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTantalumCarbide/0.png b/front/public/images/small/miscutils/blockFrameGtTantalumCarbide/0.png deleted file mode 100644 index 5e2dad5e4d..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTellurium/0.png b/front/public/images/small/miscutils/blockFrameGtTellurium/0.png deleted file mode 100644 index b5b97c6929..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtThallium/0.png b/front/public/images/small/miscutils/blockFrameGtThallium/0.png deleted file mode 100644 index ea66d85eff..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTitansteel/0.png b/front/public/images/small/miscutils/blockFrameGtTitansteel/0.png deleted file mode 100644 index fc58f2d728..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/blockFrameGtTriniumNaquadahCarbonite/0.png deleted file mode 100644 index ae9cc8c8c1..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/blockFrameGtTriniumTitaniumAlloy/0.png deleted file mode 100644 index cb9cc34d84..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTumbaga/0.png b/front/public/images/small/miscutils/blockFrameGtTumbaga/0.png deleted file mode 100644 index fdc20f9180..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/blockFrameGtTungstenTitaniumCarbide/0.png deleted file mode 100644 index 85ea4530e8..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtWatertightSteel/0.png b/front/public/images/small/miscutils/blockFrameGtWatertightSteel/0.png deleted file mode 100644 index f557ecce37..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtWhiteMetal/0.png b/front/public/images/small/miscutils/blockFrameGtWhiteMetal/0.png deleted file mode 100644 index 45072fec15..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtZeron100/0.png b/front/public/images/small/miscutils/blockFrameGtZeron100/0.png deleted file mode 100644 index 3d5ee69ab1..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtZirconium/0.png b/front/public/images/small/miscutils/blockFrameGtZirconium/0.png deleted file mode 100644 index 789684926f..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockFrameGtZirconiumCarbide/0.png b/front/public/images/small/miscutils/blockFrameGtZirconiumCarbide/0.png deleted file mode 100644 index fb7ce046d9..0000000000 Binary files a/front/public/images/small/miscutils/blockFrameGtZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockHellFire/0.png b/front/public/images/small/miscutils/blockHellFire/0.png deleted file mode 100644 index 77ec5c61a4..0000000000 Binary files a/front/public/images/small/miscutils/blockHellFire/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockInfiniteFluidTank/0.png b/front/public/images/small/miscutils/blockInfiniteFluidTank/0.png deleted file mode 100644 index 5a9274c428..0000000000 Binary files a/front/public/images/small/miscutils/blockInfiniteFluidTank/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockMFEffect/0.png b/front/public/images/small/miscutils/blockMFEffect/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/miscutils/blockMFEffect/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockMiningExplosives/0.png b/front/public/images/small/miscutils/blockMiningExplosives/0.png deleted file mode 100644 index deca561891..0000000000 Binary files a/front/public/images/small/miscutils/blockMiningExplosives/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockPestKiller/0.png b/front/public/images/small/miscutils/blockPestKiller/0.png deleted file mode 100644 index 9274109dae..0000000000 Binary files a/front/public/images/small/miscutils/blockPestKiller/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockPineLeaves/0.png b/front/public/images/small/miscutils/blockPineLeaves/0.png deleted file mode 100644 index c46ea82c7b..0000000000 Binary files a/front/public/images/small/miscutils/blockPineLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockPineLogLog/0.png b/front/public/images/small/miscutils/blockPineLogLog/0.png deleted file mode 100644 index e9f9428560..0000000000 Binary files a/front/public/images/small/miscutils/blockPineLogLog/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockPineSapling/0.png b/front/public/images/small/miscutils/blockPineSapling/0.png deleted file mode 100644 index d18c9f3762..0000000000 Binary files a/front/public/images/small/miscutils/blockPineSapling/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockPooCollector/0.png b/front/public/images/small/miscutils/blockPooCollector/0.png deleted file mode 100644 index 27f0736262..0000000000 Binary files a/front/public/images/small/miscutils/blockPooCollector/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockPooCollector/8.png b/front/public/images/small/miscutils/blockPooCollector/8.png deleted file mode 100644 index 5993120427..0000000000 Binary files a/front/public/images/small/miscutils/blockPooCollector/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockProjectBench/0.png b/front/public/images/small/miscutils/blockProjectBench/0.png deleted file mode 100644 index 0fcf051e25..0000000000 Binary files a/front/public/images/small/miscutils/blockProjectBench/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockRainforestOakLeaves/0.png b/front/public/images/small/miscutils/blockRainforestOakLeaves/0.png deleted file mode 100644 index edff4f60a6..0000000000 Binary files a/front/public/images/small/miscutils/blockRainforestOakLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockRainforestOakLog/0.png b/front/public/images/small/miscutils/blockRainforestOakLog/0.png deleted file mode 100644 index 3e6b88074c..0000000000 Binary files a/front/public/images/small/miscutils/blockRainforestOakLog/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockRainforestOakSapling/0.png b/front/public/images/small/miscutils/blockRainforestOakSapling/0.png deleted file mode 100644 index d1ff8701d3..0000000000 Binary files a/front/public/images/small/miscutils/blockRainforestOakSapling/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockSuperJukebox/0.png b/front/public/images/small/miscutils/blockSuperJukebox/0.png deleted file mode 100644 index b0a63ae50e..0000000000 Binary files a/front/public/images/small/miscutils/blockSuperJukebox/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/blockVolumetricFlaskSetter/0.png b/front/public/images/small/miscutils/blockVolumetricFlaskSetter/0.png deleted file mode 100644 index 05d0cb0d3c..0000000000 Binary files a/front/public/images/small/miscutils/blockVolumetricFlaskSetter/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bookGT/0.png b/front/public/images/small/miscutils/bookGT/0.png deleted file mode 100644 index 83c8198aff..0000000000 Binary files a/front/public/images/small/miscutils/bookGT/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bookGT/1.png b/front/public/images/small/miscutils/bookGT/1.png deleted file mode 100644 index 83c8198aff..0000000000 Binary files a/front/public/images/small/miscutils/bookGT/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bookGT/2.png b/front/public/images/small/miscutils/bookGT/2.png deleted file mode 100644 index 83c8198aff..0000000000 Binary files a/front/public/images/small/miscutils/bookGT/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bookGT/3.png b/front/public/images/small/miscutils/bookGT/3.png deleted file mode 100644 index 83c8198aff..0000000000 Binary files a/front/public/images/small/miscutils/bookGT/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bookGT/4.png b/front/public/images/small/miscutils/bookGT/4.png deleted file mode 100644 index 83c8198aff..0000000000 Binary files a/front/public/images/small/miscutils/bookGT/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bookGT/5.png b/front/public/images/small/miscutils/bookGT/5.png deleted file mode 100644 index 83c8198aff..0000000000 Binary files a/front/public/images/small/miscutils/bookGT/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/boricacid/0.png b/front/public/images/small/miscutils/boricacid/0.png deleted file mode 100644 index 48aa59db17..0000000000 Binary files a/front/public/images/small/miscutils/boricacid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bucket/1.png b/front/public/images/small/miscutils/bucket/1.png deleted file mode 100644 index ac841fe5e6..0000000000 Binary files a/front/public/images/small/miscutils/bucket/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bucket/2.png b/front/public/images/small/miscutils/bucket/2.png deleted file mode 100644 index fe74c13827..0000000000 Binary files a/front/public/images/small/miscutils/bucket/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/bucket/3.png b/front/public/images/small/miscutils/bucket/3.png deleted file mode 100644 index 0f4b99d75d..0000000000 Binary files a/front/public/images/small/miscutils/bucket/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/butanol/0.png b/front/public/images/small/miscutils/butanol/0.png deleted file mode 100644 index f15893ce2a..0000000000 Binary files a/front/public/images/small/miscutils/butanol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/cadaverine/0.png b/front/public/images/small/miscutils/cadaverine/0.png deleted file mode 100644 index 64e00f5022..0000000000 Binary files a/front/public/images/small/miscutils/cadaverine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedAgarditeCd/0.png b/front/public/images/small/miscutils/crushedAgarditeCd/0.png deleted file mode 100644 index 00cb17ead3..0000000000 Binary files a/front/public/images/small/miscutils/crushedAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedAgarditeLa/0.png b/front/public/images/small/miscutils/crushedAgarditeLa/0.png deleted file mode 100644 index 31f077f25e..0000000000 Binary files a/front/public/images/small/miscutils/crushedAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedAgarditeNd/0.png b/front/public/images/small/miscutils/crushedAgarditeNd/0.png deleted file mode 100644 index 800e64504a..0000000000 Binary files a/front/public/images/small/miscutils/crushedAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedAgarditeY/0.png b/front/public/images/small/miscutils/crushedAgarditeY/0.png deleted file mode 100644 index 66f40537fd..0000000000 Binary files a/front/public/images/small/miscutils/crushedAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedAlburnite/0.png b/front/public/images/small/miscutils/crushedAlburnite/0.png deleted file mode 100644 index 618e6c8ec8..0000000000 Binary files a/front/public/images/small/miscutils/crushedAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedAncientGranite/0.png b/front/public/images/small/miscutils/crushedAncientGranite/0.png deleted file mode 100644 index a3fe3b9c04..0000000000 Binary files a/front/public/images/small/miscutils/crushedAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedBariteRd/0.png b/front/public/images/small/miscutils/crushedBariteRd/0.png deleted file mode 100644 index a25e13eddb..0000000000 Binary files a/front/public/images/small/miscutils/crushedBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedAgarditeCd/0.png b/front/public/images/small/miscutils/crushedCentrifugedAgarditeCd/0.png deleted file mode 100644 index aef7a6452e..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedAgarditeLa/0.png b/front/public/images/small/miscutils/crushedCentrifugedAgarditeLa/0.png deleted file mode 100644 index 5637d8b1e9..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedAgarditeNd/0.png b/front/public/images/small/miscutils/crushedCentrifugedAgarditeNd/0.png deleted file mode 100644 index b2ec880dbd..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedAgarditeY/0.png b/front/public/images/small/miscutils/crushedCentrifugedAgarditeY/0.png deleted file mode 100644 index d89a58b93e..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedAlburnite/0.png b/front/public/images/small/miscutils/crushedCentrifugedAlburnite/0.png deleted file mode 100644 index 8e15bfc34c..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedAncientGranite/0.png b/front/public/images/small/miscutils/crushedCentrifugedAncientGranite/0.png deleted file mode 100644 index 2ba049e1b7..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedBariteRd/0.png b/front/public/images/small/miscutils/crushedCentrifugedBariteRd/0.png deleted file mode 100644 index 474ba7cca4..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedCerite/0.png b/front/public/images/small/miscutils/crushedCentrifugedCerite/0.png deleted file mode 100644 index b650b7b9b1..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedComancheite/0.png b/front/public/images/small/miscutils/crushedCentrifugedComancheite/0.png deleted file mode 100644 index 01012287a4..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedCrocoite/0.png b/front/public/images/small/miscutils/crushedCentrifugedCrocoite/0.png deleted file mode 100644 index ea65903266..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedCryoliteF/0.png b/front/public/images/small/miscutils/crushedCentrifugedCryoliteF/0.png deleted file mode 100644 index 9d14f501e9..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedDemicheleiteBr/0.png b/front/public/images/small/miscutils/crushedCentrifugedDemicheleiteBr/0.png deleted file mode 100644 index 4196f29a17..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedFlorencite/0.png b/front/public/images/small/miscutils/crushedCentrifugedFlorencite/0.png deleted file mode 100644 index 533a0fca3a..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedFluorcaphite/0.png b/front/public/images/small/miscutils/crushedCentrifugedFluorcaphite/0.png deleted file mode 100644 index 24f5ae8eda..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedFluoriteF/0.png b/front/public/images/small/miscutils/crushedCentrifugedFluoriteF/0.png deleted file mode 100644 index aa61d7fd4f..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedGadoliniteCe/0.png b/front/public/images/small/miscutils/crushedCentrifugedGadoliniteCe/0.png deleted file mode 100644 index 38ca769ebb..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedGadoliniteY/0.png b/front/public/images/small/miscutils/crushedCentrifugedGadoliniteY/0.png deleted file mode 100644 index 38ca769ebb..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedGeikielite/0.png b/front/public/images/small/miscutils/crushedCentrifugedGeikielite/0.png deleted file mode 100644 index 28b871e2ce..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedGreenockite/0.png b/front/public/images/small/miscutils/crushedCentrifugedGreenockite/0.png deleted file mode 100644 index 2052e62f96..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedHibonite/0.png b/front/public/images/small/miscutils/crushedCentrifugedHibonite/0.png deleted file mode 100644 index 76f2d7a6d6..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedHoneaite/0.png b/front/public/images/small/miscutils/crushedCentrifugedHoneaite/0.png deleted file mode 100644 index c07b438ab1..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedIrarsite/0.png b/front/public/images/small/miscutils/crushedCentrifugedIrarsite/0.png deleted file mode 100644 index c449abb3cd..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedKashinite/0.png b/front/public/images/small/miscutils/crushedCentrifugedKashinite/0.png deleted file mode 100644 index c54bf79d64..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedKoboldite/0.png b/front/public/images/small/miscutils/crushedCentrifugedKoboldite/0.png deleted file mode 100644 index 3e104b0c32..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedLafossaite/0.png b/front/public/images/small/miscutils/crushedCentrifugedLafossaite/0.png deleted file mode 100644 index 74f24afca7..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedLanthaniteCe/0.png b/front/public/images/small/miscutils/crushedCentrifugedLanthaniteCe/0.png deleted file mode 100644 index 3d2269abb4..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedLanthaniteLa/0.png b/front/public/images/small/miscutils/crushedCentrifugedLanthaniteLa/0.png deleted file mode 100644 index 23422654a0..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedLanthaniteNd/0.png b/front/public/images/small/miscutils/crushedCentrifugedLanthaniteNd/0.png deleted file mode 100644 index 24f02e64db..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedLautarite/0.png b/front/public/images/small/miscutils/crushedCentrifugedLautarite/0.png deleted file mode 100644 index 63b2417ab6..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedLepersonnite/0.png b/front/public/images/small/miscutils/crushedCentrifugedLepersonnite/0.png deleted file mode 100644 index deac1f2038..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedMiessiite/0.png b/front/public/images/small/miscutils/crushedCentrifugedMiessiite/0.png deleted file mode 100644 index 09dc54e962..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedNichromite/0.png b/front/public/images/small/miscutils/crushedCentrifugedNichromite/0.png deleted file mode 100644 index 1b0f1ed568..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedPerroudite/0.png b/front/public/images/small/miscutils/crushedCentrifugedPerroudite/0.png deleted file mode 100644 index 4793b5e7b5..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedPerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedPolycrase/0.png b/front/public/images/small/miscutils/crushedCentrifugedPolycrase/0.png deleted file mode 100644 index 5362ce6972..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedPolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/crushedCentrifugedRadioactiveMineralMix/0.png deleted file mode 100644 index 57a2fe6e7b..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedRunite/0.png b/front/public/images/small/miscutils/crushedCentrifugedRunite/0.png deleted file mode 100644 index 0de0727968..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedSamarskiteY/0.png b/front/public/images/small/miscutils/crushedCentrifugedSamarskiteY/0.png deleted file mode 100644 index 99a3d45159..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedSamarskiteYb/0.png b/front/public/images/small/miscutils/crushedCentrifugedSamarskiteYb/0.png deleted file mode 100644 index 86095cf985..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedTitanite/0.png b/front/public/images/small/miscutils/crushedCentrifugedTitanite/0.png deleted file mode 100644 index e3893188a9..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedXenotime/0.png b/front/public/images/small/miscutils/crushedCentrifugedXenotime/0.png deleted file mode 100644 index ee8d7e6e04..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedYttriaite/0.png b/front/public/images/small/miscutils/crushedCentrifugedYttriaite/0.png deleted file mode 100644 index 0d336a76f8..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedYttrialite/0.png b/front/public/images/small/miscutils/crushedCentrifugedYttrialite/0.png deleted file mode 100644 index bf3d85f622..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedYttrocerite/0.png b/front/public/images/small/miscutils/crushedCentrifugedYttrocerite/0.png deleted file mode 100644 index e7572c693f..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedZimbabweite/0.png b/front/public/images/small/miscutils/crushedCentrifugedZimbabweite/0.png deleted file mode 100644 index a9ebd7bd6b..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedZircon/0.png b/front/public/images/small/miscutils/crushedCentrifugedZircon/0.png deleted file mode 100644 index 331a0a7c78..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedZirconolite/0.png b/front/public/images/small/miscutils/crushedCentrifugedZirconolite/0.png deleted file mode 100644 index f70ab4da8c..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedZircophyllite/0.png b/front/public/images/small/miscutils/crushedCentrifugedZircophyllite/0.png deleted file mode 100644 index db05ccb57f..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCentrifugedZirkelite/0.png b/front/public/images/small/miscutils/crushedCentrifugedZirkelite/0.png deleted file mode 100644 index 8aedb3a901..0000000000 Binary files a/front/public/images/small/miscutils/crushedCentrifugedZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCerite/0.png b/front/public/images/small/miscutils/crushedCerite/0.png deleted file mode 100644 index 8ff05d2ba3..0000000000 Binary files a/front/public/images/small/miscutils/crushedCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedComancheite/0.png b/front/public/images/small/miscutils/crushedComancheite/0.png deleted file mode 100644 index abcddf6156..0000000000 Binary files a/front/public/images/small/miscutils/crushedComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCrocoite/0.png b/front/public/images/small/miscutils/crushedCrocoite/0.png deleted file mode 100644 index b40b235fd5..0000000000 Binary files a/front/public/images/small/miscutils/crushedCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedCryoliteF/0.png b/front/public/images/small/miscutils/crushedCryoliteF/0.png deleted file mode 100644 index 1c93d9ce6a..0000000000 Binary files a/front/public/images/small/miscutils/crushedCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedDemicheleiteBr/0.png b/front/public/images/small/miscutils/crushedDemicheleiteBr/0.png deleted file mode 100644 index 886c88234f..0000000000 Binary files a/front/public/images/small/miscutils/crushedDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedFlorencite/0.png b/front/public/images/small/miscutils/crushedFlorencite/0.png deleted file mode 100644 index b3dd5aa0cd..0000000000 Binary files a/front/public/images/small/miscutils/crushedFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedFluorcaphite/0.png b/front/public/images/small/miscutils/crushedFluorcaphite/0.png deleted file mode 100644 index ff71fdfe2d..0000000000 Binary files a/front/public/images/small/miscutils/crushedFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedFluoriteF/0.png b/front/public/images/small/miscutils/crushedFluoriteF/0.png deleted file mode 100644 index 50e857da8f..0000000000 Binary files a/front/public/images/small/miscutils/crushedFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedGadoliniteCe/0.png b/front/public/images/small/miscutils/crushedGadoliniteCe/0.png deleted file mode 100644 index 992870256b..0000000000 Binary files a/front/public/images/small/miscutils/crushedGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedGadoliniteY/0.png b/front/public/images/small/miscutils/crushedGadoliniteY/0.png deleted file mode 100644 index 992870256b..0000000000 Binary files a/front/public/images/small/miscutils/crushedGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedGeikielite/0.png b/front/public/images/small/miscutils/crushedGeikielite/0.png deleted file mode 100644 index 0e613d1f45..0000000000 Binary files a/front/public/images/small/miscutils/crushedGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedGreenockite/0.png b/front/public/images/small/miscutils/crushedGreenockite/0.png deleted file mode 100644 index 0ecc118f7b..0000000000 Binary files a/front/public/images/small/miscutils/crushedGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedHibonite/0.png b/front/public/images/small/miscutils/crushedHibonite/0.png deleted file mode 100644 index c6527a589f..0000000000 Binary files a/front/public/images/small/miscutils/crushedHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedHoneaite/0.png b/front/public/images/small/miscutils/crushedHoneaite/0.png deleted file mode 100644 index f5b1ff29f2..0000000000 Binary files a/front/public/images/small/miscutils/crushedHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedIrarsite/0.png b/front/public/images/small/miscutils/crushedIrarsite/0.png deleted file mode 100644 index 2f47a724f9..0000000000 Binary files a/front/public/images/small/miscutils/crushedIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedKashinite/0.png b/front/public/images/small/miscutils/crushedKashinite/0.png deleted file mode 100644 index fb18fd7d34..0000000000 Binary files a/front/public/images/small/miscutils/crushedKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedKoboldite/0.png b/front/public/images/small/miscutils/crushedKoboldite/0.png deleted file mode 100644 index a71e783996..0000000000 Binary files a/front/public/images/small/miscutils/crushedKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedLafossaite/0.png b/front/public/images/small/miscutils/crushedLafossaite/0.png deleted file mode 100644 index b2b179ed04..0000000000 Binary files a/front/public/images/small/miscutils/crushedLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedLanthaniteCe/0.png b/front/public/images/small/miscutils/crushedLanthaniteCe/0.png deleted file mode 100644 index 3143c5cbfa..0000000000 Binary files a/front/public/images/small/miscutils/crushedLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedLanthaniteLa/0.png b/front/public/images/small/miscutils/crushedLanthaniteLa/0.png deleted file mode 100644 index 6f39ea93ad..0000000000 Binary files a/front/public/images/small/miscutils/crushedLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedLanthaniteNd/0.png b/front/public/images/small/miscutils/crushedLanthaniteNd/0.png deleted file mode 100644 index 5e6813cc15..0000000000 Binary files a/front/public/images/small/miscutils/crushedLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedLautarite/0.png b/front/public/images/small/miscutils/crushedLautarite/0.png deleted file mode 100644 index 8e14c3723d..0000000000 Binary files a/front/public/images/small/miscutils/crushedLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedLepersonnite/0.png b/front/public/images/small/miscutils/crushedLepersonnite/0.png deleted file mode 100644 index 4b6aaeb413..0000000000 Binary files a/front/public/images/small/miscutils/crushedLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedMiessiite/0.png b/front/public/images/small/miscutils/crushedMiessiite/0.png deleted file mode 100644 index 313438916f..0000000000 Binary files a/front/public/images/small/miscutils/crushedMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedNichromite/0.png b/front/public/images/small/miscutils/crushedNichromite/0.png deleted file mode 100644 index 9906a6f047..0000000000 Binary files a/front/public/images/small/miscutils/crushedNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPerroudite/0.png b/front/public/images/small/miscutils/crushedPerroudite/0.png deleted file mode 100644 index f079246325..0000000000 Binary files a/front/public/images/small/miscutils/crushedPerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPolycrase/0.png b/front/public/images/small/miscutils/crushedPolycrase/0.png deleted file mode 100644 index 9c0c7ddcf8..0000000000 Binary files a/front/public/images/small/miscutils/crushedPolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedAgarditeCd/0.png b/front/public/images/small/miscutils/crushedPurifiedAgarditeCd/0.png deleted file mode 100644 index f357181436..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedAgarditeLa/0.png b/front/public/images/small/miscutils/crushedPurifiedAgarditeLa/0.png deleted file mode 100644 index e3385ac6d2..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedAgarditeNd/0.png b/front/public/images/small/miscutils/crushedPurifiedAgarditeNd/0.png deleted file mode 100644 index 9156751431..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedAgarditeY/0.png b/front/public/images/small/miscutils/crushedPurifiedAgarditeY/0.png deleted file mode 100644 index 22fe68d551..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedAlburnite/0.png b/front/public/images/small/miscutils/crushedPurifiedAlburnite/0.png deleted file mode 100644 index 6caec0e5af..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedAncientGranite/0.png b/front/public/images/small/miscutils/crushedPurifiedAncientGranite/0.png deleted file mode 100644 index 12ac9c9dbb..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedBariteRd/0.png b/front/public/images/small/miscutils/crushedPurifiedBariteRd/0.png deleted file mode 100644 index 779d504a22..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedCerite/0.png b/front/public/images/small/miscutils/crushedPurifiedCerite/0.png deleted file mode 100644 index 820f4606c4..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedComancheite/0.png b/front/public/images/small/miscutils/crushedPurifiedComancheite/0.png deleted file mode 100644 index 999a5011aa..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedCrocoite/0.png b/front/public/images/small/miscutils/crushedPurifiedCrocoite/0.png deleted file mode 100644 index 10be2cd26a..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedCryoliteF/0.png b/front/public/images/small/miscutils/crushedPurifiedCryoliteF/0.png deleted file mode 100644 index 389fd65e9e..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedDemicheleiteBr/0.png b/front/public/images/small/miscutils/crushedPurifiedDemicheleiteBr/0.png deleted file mode 100644 index 3bdcceead9..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedFlorencite/0.png b/front/public/images/small/miscutils/crushedPurifiedFlorencite/0.png deleted file mode 100644 index 1774426e98..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedFluorcaphite/0.png b/front/public/images/small/miscutils/crushedPurifiedFluorcaphite/0.png deleted file mode 100644 index 7c5c4b995c..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedFluoriteF/0.png b/front/public/images/small/miscutils/crushedPurifiedFluoriteF/0.png deleted file mode 100644 index 7e5d64f1e4..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedGadoliniteCe/0.png b/front/public/images/small/miscutils/crushedPurifiedGadoliniteCe/0.png deleted file mode 100644 index c662b4f4c3..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedGadoliniteY/0.png b/front/public/images/small/miscutils/crushedPurifiedGadoliniteY/0.png deleted file mode 100644 index c662b4f4c3..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedGeikielite/0.png b/front/public/images/small/miscutils/crushedPurifiedGeikielite/0.png deleted file mode 100644 index 72cc7d3656..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedGreenockite/0.png b/front/public/images/small/miscutils/crushedPurifiedGreenockite/0.png deleted file mode 100644 index 47aaf8495a..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedHibonite/0.png b/front/public/images/small/miscutils/crushedPurifiedHibonite/0.png deleted file mode 100644 index 40e1d65ec5..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedHoneaite/0.png b/front/public/images/small/miscutils/crushedPurifiedHoneaite/0.png deleted file mode 100644 index 69b81d9e22..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedIrarsite/0.png b/front/public/images/small/miscutils/crushedPurifiedIrarsite/0.png deleted file mode 100644 index ddb5a19813..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedKashinite/0.png b/front/public/images/small/miscutils/crushedPurifiedKashinite/0.png deleted file mode 100644 index 0031626462..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedKoboldite/0.png b/front/public/images/small/miscutils/crushedPurifiedKoboldite/0.png deleted file mode 100644 index 8c0ded0e5d..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedLafossaite/0.png b/front/public/images/small/miscutils/crushedPurifiedLafossaite/0.png deleted file mode 100644 index ddb850d9c0..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedLanthaniteCe/0.png b/front/public/images/small/miscutils/crushedPurifiedLanthaniteCe/0.png deleted file mode 100644 index a3cae11f27..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedLanthaniteLa/0.png b/front/public/images/small/miscutils/crushedPurifiedLanthaniteLa/0.png deleted file mode 100644 index 0f5fefc8be..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedLanthaniteNd/0.png b/front/public/images/small/miscutils/crushedPurifiedLanthaniteNd/0.png deleted file mode 100644 index ff1a68c4b7..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedLautarite/0.png b/front/public/images/small/miscutils/crushedPurifiedLautarite/0.png deleted file mode 100644 index 6fb4e6917d..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedLepersonnite/0.png b/front/public/images/small/miscutils/crushedPurifiedLepersonnite/0.png deleted file mode 100644 index 8da7b22bf2..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedMiessiite/0.png b/front/public/images/small/miscutils/crushedPurifiedMiessiite/0.png deleted file mode 100644 index 8914a8e2bc..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedNichromite/0.png b/front/public/images/small/miscutils/crushedPurifiedNichromite/0.png deleted file mode 100644 index a2e031f25b..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedPerroudite/0.png b/front/public/images/small/miscutils/crushedPurifiedPerroudite/0.png deleted file mode 100644 index c3ececd496..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedPerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedPolycrase/0.png b/front/public/images/small/miscutils/crushedPurifiedPolycrase/0.png deleted file mode 100644 index 6143ca8882..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedPolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/crushedPurifiedRadioactiveMineralMix/0.png deleted file mode 100644 index 925ae84748..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedRunite/0.png b/front/public/images/small/miscutils/crushedPurifiedRunite/0.png deleted file mode 100644 index 32afc0a299..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedSamarskiteY/0.png b/front/public/images/small/miscutils/crushedPurifiedSamarskiteY/0.png deleted file mode 100644 index 2850e03b7a..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedSamarskiteYb/0.png b/front/public/images/small/miscutils/crushedPurifiedSamarskiteYb/0.png deleted file mode 100644 index e498e7225d..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedTitanite/0.png b/front/public/images/small/miscutils/crushedPurifiedTitanite/0.png deleted file mode 100644 index 0438b96ef3..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedXenotime/0.png b/front/public/images/small/miscutils/crushedPurifiedXenotime/0.png deleted file mode 100644 index cec9747bdd..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedYttriaite/0.png b/front/public/images/small/miscutils/crushedPurifiedYttriaite/0.png deleted file mode 100644 index dd5972d195..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedYttrialite/0.png b/front/public/images/small/miscutils/crushedPurifiedYttrialite/0.png deleted file mode 100644 index 6e17fe1567..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedYttrocerite/0.png b/front/public/images/small/miscutils/crushedPurifiedYttrocerite/0.png deleted file mode 100644 index af47863ca4..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedZimbabweite/0.png b/front/public/images/small/miscutils/crushedPurifiedZimbabweite/0.png deleted file mode 100644 index ae3d85e4d0..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedZircon/0.png b/front/public/images/small/miscutils/crushedPurifiedZircon/0.png deleted file mode 100644 index b095f5231b..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedZirconolite/0.png b/front/public/images/small/miscutils/crushedPurifiedZirconolite/0.png deleted file mode 100644 index 6a80146c59..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedZircophyllite/0.png b/front/public/images/small/miscutils/crushedPurifiedZircophyllite/0.png deleted file mode 100644 index 017e6a10ec..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedPurifiedZirkelite/0.png b/front/public/images/small/miscutils/crushedPurifiedZirkelite/0.png deleted file mode 100644 index c1efaa4062..0000000000 Binary files a/front/public/images/small/miscutils/crushedPurifiedZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/crushedRadioactiveMineralMix/0.png deleted file mode 100644 index 31a67ef033..0000000000 Binary files a/front/public/images/small/miscutils/crushedRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedRunite/0.png b/front/public/images/small/miscutils/crushedRunite/0.png deleted file mode 100644 index d5a2e271ac..0000000000 Binary files a/front/public/images/small/miscutils/crushedRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedSamarskiteY/0.png b/front/public/images/small/miscutils/crushedSamarskiteY/0.png deleted file mode 100644 index a2ba458af6..0000000000 Binary files a/front/public/images/small/miscutils/crushedSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedSamarskiteYb/0.png b/front/public/images/small/miscutils/crushedSamarskiteYb/0.png deleted file mode 100644 index 9cf85ae44b..0000000000 Binary files a/front/public/images/small/miscutils/crushedSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedTitanite/0.png b/front/public/images/small/miscutils/crushedTitanite/0.png deleted file mode 100644 index 24c99b440d..0000000000 Binary files a/front/public/images/small/miscutils/crushedTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedXenotime/0.png b/front/public/images/small/miscutils/crushedXenotime/0.png deleted file mode 100644 index c22e21d6c8..0000000000 Binary files a/front/public/images/small/miscutils/crushedXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedYttriaite/0.png b/front/public/images/small/miscutils/crushedYttriaite/0.png deleted file mode 100644 index 95edbbf36f..0000000000 Binary files a/front/public/images/small/miscutils/crushedYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedYttrialite/0.png b/front/public/images/small/miscutils/crushedYttrialite/0.png deleted file mode 100644 index ad9fd7fe08..0000000000 Binary files a/front/public/images/small/miscutils/crushedYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedYttrocerite/0.png b/front/public/images/small/miscutils/crushedYttrocerite/0.png deleted file mode 100644 index 7c7c7800af..0000000000 Binary files a/front/public/images/small/miscutils/crushedYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedZimbabweite/0.png b/front/public/images/small/miscutils/crushedZimbabweite/0.png deleted file mode 100644 index 46f0b5fcc4..0000000000 Binary files a/front/public/images/small/miscutils/crushedZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedZircon/0.png b/front/public/images/small/miscutils/crushedZircon/0.png deleted file mode 100644 index 20ca608e7f..0000000000 Binary files a/front/public/images/small/miscutils/crushedZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedZirconolite/0.png b/front/public/images/small/miscutils/crushedZirconolite/0.png deleted file mode 100644 index b2bcce9610..0000000000 Binary files a/front/public/images/small/miscutils/crushedZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedZircophyllite/0.png b/front/public/images/small/miscutils/crushedZircophyllite/0.png deleted file mode 100644 index 9e654debcf..0000000000 Binary files a/front/public/images/small/miscutils/crushedZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/crushedZirkelite/0.png b/front/public/images/small/miscutils/crushedZirkelite/0.png deleted file mode 100644 index 287a6cb913..0000000000 Binary files a/front/public/images/small/miscutils/crushedZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/cryotheum/0.png b/front/public/images/small/miscutils/cryotheum/0.png deleted file mode 100644 index 8b912bdc87..0000000000 Binary files a/front/public/images/small/miscutils/cryotheum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/cyclohexane/0.png b/front/public/images/small/miscutils/cyclohexane/0.png deleted file mode 100644 index 64e00f5022..0000000000 Binary files a/front/public/images/small/miscutils/cyclohexane/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/cyclohexanone/0.png b/front/public/images/small/miscutils/cyclohexanone/0.png deleted file mode 100644 index 64e00f5022..0000000000 Binary files a/front/public/images/small/miscutils/cyclohexanone/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureAgarditeCd/0.png b/front/public/images/small/miscutils/dustImpureAgarditeCd/0.png deleted file mode 100644 index 91844128ba..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureAgarditeLa/0.png b/front/public/images/small/miscutils/dustImpureAgarditeLa/0.png deleted file mode 100644 index 8389f63568..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureAgarditeNd/0.png b/front/public/images/small/miscutils/dustImpureAgarditeNd/0.png deleted file mode 100644 index 0c858ddb34..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureAgarditeY/0.png b/front/public/images/small/miscutils/dustImpureAgarditeY/0.png deleted file mode 100644 index 6dae44b15e..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureAlburnite/0.png b/front/public/images/small/miscutils/dustImpureAlburnite/0.png deleted file mode 100644 index 12023cf7f6..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureAncientGranite/0.png b/front/public/images/small/miscutils/dustImpureAncientGranite/0.png deleted file mode 100644 index ece36f0d31..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureBariteRd/0.png b/front/public/images/small/miscutils/dustImpureBariteRd/0.png deleted file mode 100644 index ac070ec4c0..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureCerite/0.png b/front/public/images/small/miscutils/dustImpureCerite/0.png deleted file mode 100644 index 842cdba3d6..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureComancheite/0.png b/front/public/images/small/miscutils/dustImpureComancheite/0.png deleted file mode 100644 index d2318c88ab..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureCrocoite/0.png b/front/public/images/small/miscutils/dustImpureCrocoite/0.png deleted file mode 100644 index b415f7a037..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureCryoliteF/0.png b/front/public/images/small/miscutils/dustImpureCryoliteF/0.png deleted file mode 100644 index adf8c82b9a..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureDemicheleiteBr/0.png b/front/public/images/small/miscutils/dustImpureDemicheleiteBr/0.png deleted file mode 100644 index 8c7369875a..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureFlorencite/0.png b/front/public/images/small/miscutils/dustImpureFlorencite/0.png deleted file mode 100644 index d7010f9707..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureFluorcaphite/0.png b/front/public/images/small/miscutils/dustImpureFluorcaphite/0.png deleted file mode 100644 index e69e27e9bc..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureFluoriteF/0.png b/front/public/images/small/miscutils/dustImpureFluoriteF/0.png deleted file mode 100644 index bbd316a692..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureGadoliniteCe/0.png b/front/public/images/small/miscutils/dustImpureGadoliniteCe/0.png deleted file mode 100644 index 407f1ed36e..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureGadoliniteY/0.png b/front/public/images/small/miscutils/dustImpureGadoliniteY/0.png deleted file mode 100644 index 407f1ed36e..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureGeikielite/0.png b/front/public/images/small/miscutils/dustImpureGeikielite/0.png deleted file mode 100644 index e600f63c50..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureGreenockite/0.png b/front/public/images/small/miscutils/dustImpureGreenockite/0.png deleted file mode 100644 index d75e94432f..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureHibonite/0.png b/front/public/images/small/miscutils/dustImpureHibonite/0.png deleted file mode 100644 index ff1cd6cdb1..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureHoneaite/0.png b/front/public/images/small/miscutils/dustImpureHoneaite/0.png deleted file mode 100644 index 83acd22244..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureIrarsite/0.png b/front/public/images/small/miscutils/dustImpureIrarsite/0.png deleted file mode 100644 index c7b6ac43c7..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureKashinite/0.png b/front/public/images/small/miscutils/dustImpureKashinite/0.png deleted file mode 100644 index 8496acbe6f..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureKoboldite/0.png b/front/public/images/small/miscutils/dustImpureKoboldite/0.png deleted file mode 100644 index 0d98729bd8..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureLafossaite/0.png b/front/public/images/small/miscutils/dustImpureLafossaite/0.png deleted file mode 100644 index 34cbd90e91..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureLanthaniteCe/0.png b/front/public/images/small/miscutils/dustImpureLanthaniteCe/0.png deleted file mode 100644 index c24de425a7..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureLanthaniteLa/0.png b/front/public/images/small/miscutils/dustImpureLanthaniteLa/0.png deleted file mode 100644 index dfe57331a5..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureLanthaniteNd/0.png b/front/public/images/small/miscutils/dustImpureLanthaniteNd/0.png deleted file mode 100644 index e2253b4285..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureLautarite/0.png b/front/public/images/small/miscutils/dustImpureLautarite/0.png deleted file mode 100644 index 0c8ae29934..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureLepersonnite/0.png b/front/public/images/small/miscutils/dustImpureLepersonnite/0.png deleted file mode 100644 index fae177170d..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureMiessiite/0.png b/front/public/images/small/miscutils/dustImpureMiessiite/0.png deleted file mode 100644 index 9e07984daa..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureNichromite/0.png b/front/public/images/small/miscutils/dustImpureNichromite/0.png deleted file mode 100644 index 67710bc61d..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpurePerroudite/0.png b/front/public/images/small/miscutils/dustImpurePerroudite/0.png deleted file mode 100644 index 456985e52c..0000000000 Binary files a/front/public/images/small/miscutils/dustImpurePerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpurePolycrase/0.png b/front/public/images/small/miscutils/dustImpurePolycrase/0.png deleted file mode 100644 index f1167316a4..0000000000 Binary files a/front/public/images/small/miscutils/dustImpurePolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/dustImpureRadioactiveMineralMix/0.png deleted file mode 100644 index 4240f16d46..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureRunite/0.png b/front/public/images/small/miscutils/dustImpureRunite/0.png deleted file mode 100644 index f7fbf52c58..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureSamarskiteY/0.png b/front/public/images/small/miscutils/dustImpureSamarskiteY/0.png deleted file mode 100644 index 1960b5f444..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureSamarskiteYb/0.png b/front/public/images/small/miscutils/dustImpureSamarskiteYb/0.png deleted file mode 100644 index 486e1f0928..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureTitanite/0.png b/front/public/images/small/miscutils/dustImpureTitanite/0.png deleted file mode 100644 index 2c678a8d17..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureXenotime/0.png b/front/public/images/small/miscutils/dustImpureXenotime/0.png deleted file mode 100644 index 29c6a277bb..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureYttriaite/0.png b/front/public/images/small/miscutils/dustImpureYttriaite/0.png deleted file mode 100644 index 754d41f4ab..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureYttrialite/0.png b/front/public/images/small/miscutils/dustImpureYttrialite/0.png deleted file mode 100644 index 480d8c6722..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureYttrocerite/0.png b/front/public/images/small/miscutils/dustImpureYttrocerite/0.png deleted file mode 100644 index 1450752e3b..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureZimbabweite/0.png b/front/public/images/small/miscutils/dustImpureZimbabweite/0.png deleted file mode 100644 index b22b1f230b..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureZircon/0.png b/front/public/images/small/miscutils/dustImpureZircon/0.png deleted file mode 100644 index fd930ff02c..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureZirconolite/0.png b/front/public/images/small/miscutils/dustImpureZirconolite/0.png deleted file mode 100644 index 216e903282..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureZircophyllite/0.png b/front/public/images/small/miscutils/dustImpureZircophyllite/0.png deleted file mode 100644 index b62d6d81bd..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustImpureZirkelite/0.png b/front/public/images/small/miscutils/dustImpureZirkelite/0.png deleted file mode 100644 index 855fe8f0d8..0000000000 Binary files a/front/public/images/small/miscutils/dustImpureZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustMolybdenum99/0.png b/front/public/images/small/miscutils/dustMolybdenum99/0.png deleted file mode 100644 index e1b7e27b88..0000000000 Binary files a/front/public/images/small/miscutils/dustMolybdenum99/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustNeptunium238/0.png b/front/public/images/small/miscutils/dustNeptunium238/0.png deleted file mode 100644 index f5c6f0ced8..0000000000 Binary files a/front/public/images/small/miscutils/dustNeptunium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustProtactinium233/0.png b/front/public/images/small/miscutils/dustProtactinium233/0.png deleted file mode 100644 index 853c7a6688..0000000000 Binary files a/front/public/images/small/miscutils/dustProtactinium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureAgarditeCd/0.png b/front/public/images/small/miscutils/dustPureAgarditeCd/0.png deleted file mode 100644 index b4f7290dbf..0000000000 Binary files a/front/public/images/small/miscutils/dustPureAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureAgarditeLa/0.png b/front/public/images/small/miscutils/dustPureAgarditeLa/0.png deleted file mode 100644 index de65c02218..0000000000 Binary files a/front/public/images/small/miscutils/dustPureAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureAgarditeNd/0.png b/front/public/images/small/miscutils/dustPureAgarditeNd/0.png deleted file mode 100644 index d289d7c4b8..0000000000 Binary files a/front/public/images/small/miscutils/dustPureAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureAgarditeY/0.png b/front/public/images/small/miscutils/dustPureAgarditeY/0.png deleted file mode 100644 index a2f9249f1c..0000000000 Binary files a/front/public/images/small/miscutils/dustPureAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureAlburnite/0.png b/front/public/images/small/miscutils/dustPureAlburnite/0.png deleted file mode 100644 index e208ad0a2d..0000000000 Binary files a/front/public/images/small/miscutils/dustPureAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureAncientGranite/0.png b/front/public/images/small/miscutils/dustPureAncientGranite/0.png deleted file mode 100644 index f86c046af0..0000000000 Binary files a/front/public/images/small/miscutils/dustPureAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureBariteRd/0.png b/front/public/images/small/miscutils/dustPureBariteRd/0.png deleted file mode 100644 index 0dc3ea3d81..0000000000 Binary files a/front/public/images/small/miscutils/dustPureBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureCerite/0.png b/front/public/images/small/miscutils/dustPureCerite/0.png deleted file mode 100644 index f3ccca7dac..0000000000 Binary files a/front/public/images/small/miscutils/dustPureCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureComancheite/0.png b/front/public/images/small/miscutils/dustPureComancheite/0.png deleted file mode 100644 index c106419bb0..0000000000 Binary files a/front/public/images/small/miscutils/dustPureComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureCrocoite/0.png b/front/public/images/small/miscutils/dustPureCrocoite/0.png deleted file mode 100644 index 68d2b7fead..0000000000 Binary files a/front/public/images/small/miscutils/dustPureCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureCryoliteF/0.png b/front/public/images/small/miscutils/dustPureCryoliteF/0.png deleted file mode 100644 index e2f3c9a342..0000000000 Binary files a/front/public/images/small/miscutils/dustPureCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureDemicheleiteBr/0.png b/front/public/images/small/miscutils/dustPureDemicheleiteBr/0.png deleted file mode 100644 index d8dead65a0..0000000000 Binary files a/front/public/images/small/miscutils/dustPureDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureFlorencite/0.png b/front/public/images/small/miscutils/dustPureFlorencite/0.png deleted file mode 100644 index 874fa7fe46..0000000000 Binary files a/front/public/images/small/miscutils/dustPureFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureFluorcaphite/0.png b/front/public/images/small/miscutils/dustPureFluorcaphite/0.png deleted file mode 100644 index b355107f81..0000000000 Binary files a/front/public/images/small/miscutils/dustPureFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureFluoriteF/0.png b/front/public/images/small/miscutils/dustPureFluoriteF/0.png deleted file mode 100644 index 5a4155a587..0000000000 Binary files a/front/public/images/small/miscutils/dustPureFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureGadoliniteCe/0.png b/front/public/images/small/miscutils/dustPureGadoliniteCe/0.png deleted file mode 100644 index acd49a65bb..0000000000 Binary files a/front/public/images/small/miscutils/dustPureGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureGadoliniteY/0.png b/front/public/images/small/miscutils/dustPureGadoliniteY/0.png deleted file mode 100644 index acd49a65bb..0000000000 Binary files a/front/public/images/small/miscutils/dustPureGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureGeikielite/0.png b/front/public/images/small/miscutils/dustPureGeikielite/0.png deleted file mode 100644 index fa9b4f8924..0000000000 Binary files a/front/public/images/small/miscutils/dustPureGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureGreenockite/0.png b/front/public/images/small/miscutils/dustPureGreenockite/0.png deleted file mode 100644 index 9a5f60d5c6..0000000000 Binary files a/front/public/images/small/miscutils/dustPureGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureHibonite/0.png b/front/public/images/small/miscutils/dustPureHibonite/0.png deleted file mode 100644 index b69800fb61..0000000000 Binary files a/front/public/images/small/miscutils/dustPureHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureHoneaite/0.png b/front/public/images/small/miscutils/dustPureHoneaite/0.png deleted file mode 100644 index 2f9a579254..0000000000 Binary files a/front/public/images/small/miscutils/dustPureHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureIrarsite/0.png b/front/public/images/small/miscutils/dustPureIrarsite/0.png deleted file mode 100644 index 6a2c9b5ff4..0000000000 Binary files a/front/public/images/small/miscutils/dustPureIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureKashinite/0.png b/front/public/images/small/miscutils/dustPureKashinite/0.png deleted file mode 100644 index 7f9aeba5dc..0000000000 Binary files a/front/public/images/small/miscutils/dustPureKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureKoboldite/0.png b/front/public/images/small/miscutils/dustPureKoboldite/0.png deleted file mode 100644 index 2388d0fcf6..0000000000 Binary files a/front/public/images/small/miscutils/dustPureKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureLafossaite/0.png b/front/public/images/small/miscutils/dustPureLafossaite/0.png deleted file mode 100644 index 2415a2e2d5..0000000000 Binary files a/front/public/images/small/miscutils/dustPureLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureLanthaniteCe/0.png b/front/public/images/small/miscutils/dustPureLanthaniteCe/0.png deleted file mode 100644 index d2d309f0e9..0000000000 Binary files a/front/public/images/small/miscutils/dustPureLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureLanthaniteLa/0.png b/front/public/images/small/miscutils/dustPureLanthaniteLa/0.png deleted file mode 100644 index f79c2a6dd2..0000000000 Binary files a/front/public/images/small/miscutils/dustPureLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureLanthaniteNd/0.png b/front/public/images/small/miscutils/dustPureLanthaniteNd/0.png deleted file mode 100644 index f9ff48dfc8..0000000000 Binary files a/front/public/images/small/miscutils/dustPureLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureLautarite/0.png b/front/public/images/small/miscutils/dustPureLautarite/0.png deleted file mode 100644 index 16cfed2c24..0000000000 Binary files a/front/public/images/small/miscutils/dustPureLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureLepersonnite/0.png b/front/public/images/small/miscutils/dustPureLepersonnite/0.png deleted file mode 100644 index a49a1e3484..0000000000 Binary files a/front/public/images/small/miscutils/dustPureLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureMiessiite/0.png b/front/public/images/small/miscutils/dustPureMiessiite/0.png deleted file mode 100644 index b0778043c8..0000000000 Binary files a/front/public/images/small/miscutils/dustPureMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureNichromite/0.png b/front/public/images/small/miscutils/dustPureNichromite/0.png deleted file mode 100644 index be174e93aa..0000000000 Binary files a/front/public/images/small/miscutils/dustPureNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPurePerroudite/0.png b/front/public/images/small/miscutils/dustPurePerroudite/0.png deleted file mode 100644 index 4a130bafc6..0000000000 Binary files a/front/public/images/small/miscutils/dustPurePerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPurePolycrase/0.png b/front/public/images/small/miscutils/dustPurePolycrase/0.png deleted file mode 100644 index 08c2a077e3..0000000000 Binary files a/front/public/images/small/miscutils/dustPurePolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/dustPureRadioactiveMineralMix/0.png deleted file mode 100644 index 2b9dc136dd..0000000000 Binary files a/front/public/images/small/miscutils/dustPureRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureRunite/0.png b/front/public/images/small/miscutils/dustPureRunite/0.png deleted file mode 100644 index 2ebc828ace..0000000000 Binary files a/front/public/images/small/miscutils/dustPureRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureSamarskiteY/0.png b/front/public/images/small/miscutils/dustPureSamarskiteY/0.png deleted file mode 100644 index f237573977..0000000000 Binary files a/front/public/images/small/miscutils/dustPureSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureSamarskiteYb/0.png b/front/public/images/small/miscutils/dustPureSamarskiteYb/0.png deleted file mode 100644 index 56af0f2ca0..0000000000 Binary files a/front/public/images/small/miscutils/dustPureSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureTitanite/0.png b/front/public/images/small/miscutils/dustPureTitanite/0.png deleted file mode 100644 index 6287c8e394..0000000000 Binary files a/front/public/images/small/miscutils/dustPureTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureXenotime/0.png b/front/public/images/small/miscutils/dustPureXenotime/0.png deleted file mode 100644 index 469e6fc486..0000000000 Binary files a/front/public/images/small/miscutils/dustPureXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureYttriaite/0.png b/front/public/images/small/miscutils/dustPureYttriaite/0.png deleted file mode 100644 index f8e8cbd7af..0000000000 Binary files a/front/public/images/small/miscutils/dustPureYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureYttrialite/0.png b/front/public/images/small/miscutils/dustPureYttrialite/0.png deleted file mode 100644 index 4245241963..0000000000 Binary files a/front/public/images/small/miscutils/dustPureYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureYttrocerite/0.png b/front/public/images/small/miscutils/dustPureYttrocerite/0.png deleted file mode 100644 index f38028ee2c..0000000000 Binary files a/front/public/images/small/miscutils/dustPureYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureZimbabweite/0.png b/front/public/images/small/miscutils/dustPureZimbabweite/0.png deleted file mode 100644 index edf831ccd3..0000000000 Binary files a/front/public/images/small/miscutils/dustPureZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureZircon/0.png b/front/public/images/small/miscutils/dustPureZircon/0.png deleted file mode 100644 index eeadd04bff..0000000000 Binary files a/front/public/images/small/miscutils/dustPureZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureZirconolite/0.png b/front/public/images/small/miscutils/dustPureZirconolite/0.png deleted file mode 100644 index a75f0ed0c5..0000000000 Binary files a/front/public/images/small/miscutils/dustPureZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureZircophyllite/0.png b/front/public/images/small/miscutils/dustPureZircophyllite/0.png deleted file mode 100644 index 3dd42281ad..0000000000 Binary files a/front/public/images/small/miscutils/dustPureZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustPureZirkelite/0.png b/front/public/images/small/miscutils/dustPureZirkelite/0.png deleted file mode 100644 index b0a28a2132..0000000000 Binary files a/front/public/images/small/miscutils/dustPureZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/dustRadium226/0.png b/front/public/images/small/miscutils/dustRadium226/0.png deleted file mode 100644 index b43487f02d..0000000000 Binary files a/front/public/images/small/miscutils/dustRadium226/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameAccelerated/0.png b/front/public/images/small/miscutils/frameAccelerated/0.png deleted file mode 100644 index 6fb0add5dc..0000000000 Binary files a/front/public/images/small/miscutils/frameAccelerated/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameArborists/0.png b/front/public/images/small/miscutils/frameArborists/0.png deleted file mode 100644 index e2041e09e4..0000000000 Binary files a/front/public/images/small/miscutils/frameArborists/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameBusy/0.png b/front/public/images/small/miscutils/frameBusy/0.png deleted file mode 100644 index 219ed46a8d..0000000000 Binary files a/front/public/images/small/miscutils/frameBusy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameDecaying/0.png b/front/public/images/small/miscutils/frameDecaying/0.png deleted file mode 100644 index 8afc19f904..0000000000 Binary files a/front/public/images/small/miscutils/frameDecaying/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameMutagenic/0.png b/front/public/images/small/miscutils/frameMutagenic/0.png deleted file mode 100644 index 8d5481b8dd..0000000000 Binary files a/front/public/images/small/miscutils/frameMutagenic/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameSlowing/0.png b/front/public/images/small/miscutils/frameSlowing/0.png deleted file mode 100644 index fbe3135282..0000000000 Binary files a/front/public/images/small/miscutils/frameSlowing/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameStabilizing/0.png b/front/public/images/small/miscutils/frameStabilizing/0.png deleted file mode 100644 index 2a6c33a392..0000000000 Binary files a/front/public/images/small/miscutils/frameStabilizing/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/frameUseless/0.png b/front/public/images/small/miscutils/frameUseless/0.png deleted file mode 100644 index 7150ae817d..0000000000 Binary files a/front/public/images/small/miscutils/frameUseless/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gt.Volumetric_Flask_32k/0.png b/front/public/images/small/miscutils/gt.Volumetric_Flask_32k/0.png deleted file mode 100644 index 7ea46debbe..0000000000 Binary files a/front/public/images/small/miscutils/gt.Volumetric_Flask_32k/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gt.Volumetric_Flask_8k/0.png b/front/public/images/small/miscutils/gt.Volumetric_Flask_8k/0.png deleted file mode 100644 index b4789b68be..0000000000 Binary files a/front/public/images/small/miscutils/gt.Volumetric_Flask_8k/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gt.plusplus.metatool.01/7834.png b/front/public/images/small/miscutils/gt.plusplus.metatool.01/7834.png deleted file mode 100644 index e10a26d455..0000000000 Binary files a/front/public/images/small/miscutils/gt.plusplus.metatool.01/7834.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gt.plusplus.metatool.01/7934.png b/front/public/images/small/miscutils/gt.plusplus.metatool.01/7934.png deleted file mode 100644 index fd8829222f..0000000000 Binary files a/front/public/images/small/miscutils/gt.plusplus.metatool.01/7934.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/0.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/0.png deleted file mode 100644 index e544f47947..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/1.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/1.png deleted file mode 100644 index 883f716751..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/10.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/10.png deleted file mode 100644 index d2f7ca64ac..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/11.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/11.png deleted file mode 100644 index 75bf3948a1..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/12.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/12.png deleted file mode 100644 index ad85332b3a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/13.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/13.png deleted file mode 100644 index caf851a3d8..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/15.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/15.png deleted file mode 100644 index 89d9645f92..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/2.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/2.png deleted file mode 100644 index 062de94c5a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/3.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/3.png deleted file mode 100644 index 039a86d324..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/4.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/4.png deleted file mode 100644 index ff2ebe82f4..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/5.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/5.png deleted file mode 100644 index 1b45ebcb42..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/6.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/6.png deleted file mode 100644 index 877bc65edb..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/7.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/7.png deleted file mode 100644 index f1e8499dbb..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/8.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/8.png deleted file mode 100644 index 1f758f4396..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/9.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.2/9.png deleted file mode 100644 index d093d7382b..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.2/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/0.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/0.png deleted file mode 100644 index 4bb39991cd..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/1.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/1.png deleted file mode 100644 index db32cc9950..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/10.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/10.png deleted file mode 100644 index abf4da9642..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/11.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/11.png deleted file mode 100644 index b6786f45f6..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/12.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/12.png deleted file mode 100644 index 796286df9f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/13.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/13.png deleted file mode 100644 index 22be7344ad..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/14.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/14.png deleted file mode 100644 index 8b9eb03b28..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/15.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/15.png deleted file mode 100644 index ac9e05c8c2..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/2.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/2.png deleted file mode 100644 index 12f10c663f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/3.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/3.png deleted file mode 100644 index 3907e46a4e..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/4.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/4.png deleted file mode 100644 index cb35669d0e..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/5.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/5.png deleted file mode 100644 index f562a7ba84..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/6.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/6.png deleted file mode 100644 index 86453a8cd7..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/7.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/7.png deleted file mode 100644 index 07c459b91f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/8.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/8.png deleted file mode 100644 index a66539e09c..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/9.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.3/9.png deleted file mode 100644 index 319a6eecf2..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.3/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/0.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.4/0.png deleted file mode 100644 index 95f77ae9a1..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/1.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.4/1.png deleted file mode 100644 index 10419dcd6a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/10.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.4/10.png deleted file mode 100644 index db1a652d7b..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/11.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.4/11.png deleted file mode 100644 index 24d146175a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/2.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.4/2.png deleted file mode 100644 index 49ee84b1e2..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/3.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.4/3.png deleted file mode 100644 index 8e2b0cab2e..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/4.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.4/4.png deleted file mode 100644 index f284ba93dd..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.4/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/0.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/0.png deleted file mode 100644 index 6610f1312f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/1.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/1.png deleted file mode 100644 index 074b689172..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/10.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/10.png deleted file mode 100644 index 20f94a0dde..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/11.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/11.png deleted file mode 100644 index 8cf2d04a04..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/12.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/12.png deleted file mode 100644 index 1c62a3605a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/13.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/13.png deleted file mode 100644 index 31c3866ec1..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/14.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/14.png deleted file mode 100644 index 82e7ae4620..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/15.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/15.png deleted file mode 100644 index 2c69b6fb6c..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/2.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/2.png deleted file mode 100644 index de2be4f7f5..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/3.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/3.png deleted file mode 100644 index 6ab5b1c970..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/4.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/4.png deleted file mode 100644 index 18b17d5d56..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/5.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/5.png deleted file mode 100644 index 6e2920bf79..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/6.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/6.png deleted file mode 100644 index 81667aaa54..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/7.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/7.png deleted file mode 100644 index b9d592705e..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/8.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/8.png deleted file mode 100644 index b9d592705e..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/9.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.5/9.png deleted file mode 100644 index 1605e3b28d..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.5/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.6/0.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.6/0.png deleted file mode 100644 index c1c6730116..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.6/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.6/1.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.6/1.png deleted file mode 100644 index 5b416aca1a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.6/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.6/2.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.6/2.png deleted file mode 100644 index 375ea19770..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.6/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/0.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/0.png deleted file mode 100644 index ee1d283071..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/1.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/1.png deleted file mode 100644 index 2c7593fdb2..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/10.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/10.png deleted file mode 100644 index 46dca3c9cd..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/11.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/11.png deleted file mode 100644 index 58a72bb73a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/12.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/12.png deleted file mode 100644 index af239b3423..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/13.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/13.png deleted file mode 100644 index 9bb1d7c34b..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/14.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/14.png deleted file mode 100644 index 98b8e7cb95..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/15.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/15.png deleted file mode 100644 index 6ee04793e6..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/2.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/2.png deleted file mode 100644 index 61327b8ada..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/3.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/3.png deleted file mode 100644 index 8e232ed5b5..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/4.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/4.png deleted file mode 100644 index 60f224c18c..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/5.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/5.png deleted file mode 100644 index 8ff786bc60..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/6.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/6.png deleted file mode 100644 index 381b2efe5f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/7.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/7.png deleted file mode 100644 index 9f2e1422ac..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/8.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/8.png deleted file mode 100644 index 5ea083e86a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/9.png b/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/9.png deleted file mode 100644 index 6c3d7f610e..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockcasings.pipesgears/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/0.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/0.png deleted file mode 100644 index f1e8499dbb..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/1.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/1.png deleted file mode 100644 index 297e96e627..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/10.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/10.png deleted file mode 100644 index acee684e5f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/11.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/11.png deleted file mode 100644 index d2f7ca64ac..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/12.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/12.png deleted file mode 100644 index 07c459b91f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/13.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/13.png deleted file mode 100644 index 2a3bf28425..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/14.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/14.png deleted file mode 100644 index acee684e5f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/15.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/15.png deleted file mode 100644 index e4aa431542..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/2.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/2.png deleted file mode 100644 index e2fbbc8f8f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/3.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/3.png deleted file mode 100644 index 24b96e3bfe..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/4.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/4.png deleted file mode 100644 index 344c81be18..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/5.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/5.png deleted file mode 100644 index e544f47947..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/6.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/6.png deleted file mode 100644 index 6736f67b5b..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/7.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/7.png deleted file mode 100644 index 7ff7a03945..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/8.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/8.png deleted file mode 100644 index ad85332b3a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/9.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/9.png deleted file mode 100644 index 7898591e6d..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.1/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/0.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/0.png deleted file mode 100644 index ea7efacce4..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/1.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/1.png deleted file mode 100644 index f530d81bf1..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/2.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/2.png deleted file mode 100644 index 36877be077..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/3.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/3.png deleted file mode 100644 index cb8805e173..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.2/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/0.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/0.png deleted file mode 100644 index 6e4fe6c1fe..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/1.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/1.png deleted file mode 100644 index 9101e7ed62..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/2.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/2.png deleted file mode 100644 index cb75daddd8..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/3.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/3.png deleted file mode 100644 index f5563b9c60..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/4.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/4.png deleted file mode 100644 index 8d66a0f0e4..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/5.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/5.png deleted file mode 100644 index fd6de958c6..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/6.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/6.png deleted file mode 100644 index 8045941e93..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/7.png b/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/7.png deleted file mode 100644 index 21d1df90b1..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blockspecialcasings.3/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/0.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/0.png deleted file mode 100644 index 3b9eaeefb4..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/1.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/1.png deleted file mode 100644 index e8b169b580..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/2.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/2.png deleted file mode 100644 index 0551730f69..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/3.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/3.png deleted file mode 100644 index 24c68c5b18..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/4.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/4.png deleted file mode 100644 index ec1bcd82f9..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/5.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/5.png deleted file mode 100644 index 7b5f763e0d..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/6.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/6.png deleted file mode 100644 index 83af94ff12..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/7.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/7.png deleted file mode 100644 index 5de008a0ea..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/8.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/8.png deleted file mode 100644 index 85ba08ab4f..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/9.png b/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/9.png deleted file mode 100644 index 003fc7bf6a..0000000000 Binary files a/front/public/images/small/miscutils/gtplusplus.blocktieredcasings.1/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/gtpp.debug.scanner/0.png b/front/public/images/small/miscutils/gtpp.debug.scanner/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/miscutils/gtpp.debug.scanner/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/0.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/0.png deleted file mode 100644 index 3ded55161f..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/1.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/1.png deleted file mode 100644 index f0ef086d41..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/10.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/10.png deleted file mode 100644 index 41fb4a6eb9..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/11.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/11.png deleted file mode 100644 index da64f94297..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/12.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/12.png deleted file mode 100644 index b365a2ab8f..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/13.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/13.png deleted file mode 100644 index a3a372ad7c..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/14.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/14.png deleted file mode 100644 index 7c06f3c53d..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/15.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/15.png deleted file mode 100644 index e0dbfe1211..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/16.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/16.png deleted file mode 100644 index e524cc9cd9..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/16.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/17.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/17.png deleted file mode 100644 index 2820a05db5..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/17.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/18.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/18.png deleted file mode 100644 index a301a06a94..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/18.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/2.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/2.png deleted file mode 100644 index 4e7a576200..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/20.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/20.png deleted file mode 100644 index 9db7c977ee..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/20.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/21.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/21.png deleted file mode 100644 index 70375d53d7..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/21.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/22.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/22.png deleted file mode 100644 index be14d864ce..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/22.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/23.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/23.png deleted file mode 100644 index 6c14dc9289..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/23.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/24.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/24.png deleted file mode 100644 index 0c0f02951a..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/24.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/25.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/25.png deleted file mode 100644 index c36aaa83b0..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/25.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/3.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/3.png deleted file mode 100644 index 0d4d982a0a..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/4.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/4.png deleted file mode 100644 index 6231a159e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/5.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/5.png deleted file mode 100644 index 4a00675878..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/6.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/6.png deleted file mode 100644 index a58424a5d6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/7.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/7.png deleted file mode 100644 index 50c159d6e3..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/8.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/8.png deleted file mode 100644 index d942a9c3a9..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAgrichemItem/9.png b/front/public/images/small/miscutils/item.BasicAgrichemItem/9.png deleted file mode 100644 index 1382d4a950..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAgrichemItem/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAlgaeItem/0.png b/front/public/images/small/miscutils/item.BasicAlgaeItem/0.png deleted file mode 100644 index 373cc82292..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAlgaeItem/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAlgaeItem/1.png b/front/public/images/small/miscutils/item.BasicAlgaeItem/1.png deleted file mode 100644 index dcd94e1fc7..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAlgaeItem/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAlgaeItem/2.png b/front/public/images/small/miscutils/item.BasicAlgaeItem/2.png deleted file mode 100644 index 894743950a..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAlgaeItem/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAlgaeItem/3.png b/front/public/images/small/miscutils/item.BasicAlgaeItem/3.png deleted file mode 100644 index 9270d38a8b..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAlgaeItem/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAlgaeItem/4.png b/front/public/images/small/miscutils/item.BasicAlgaeItem/4.png deleted file mode 100644 index dbe74989a6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAlgaeItem/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAlgaeItem/5.png b/front/public/images/small/miscutils/item.BasicAlgaeItem/5.png deleted file mode 100644 index c1e8e7e7fd..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAlgaeItem/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicAlgaeItem/6.png b/front/public/images/small/miscutils/item.BasicAlgaeItem/6.png deleted file mode 100644 index 7bc2a19901..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicAlgaeItem/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/0.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/0.png deleted file mode 100644 index 1be671fb88..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/1.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/1.png deleted file mode 100644 index 71f51a41e5..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/10.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/10.png deleted file mode 100644 index 25a2a3cd1a..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/11.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/11.png deleted file mode 100644 index 934cb56a59..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/12.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/12.png deleted file mode 100644 index 08948382e5..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/13.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/13.png deleted file mode 100644 index 4bc0cefd39..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/14.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/14.png deleted file mode 100644 index d0965388b4..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/15.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/15.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/16.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/16.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/16.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/17.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/17.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/17.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/18.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/18.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/18.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/19.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/19.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/19.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/2.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/2.png deleted file mode 100644 index 1bb7f8753a..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/20.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/20.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/20.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/21.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/21.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/21.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/22.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/22.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/22.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/23.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/23.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/23.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/24.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/24.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/24.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/25.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/25.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/25.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/26.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/26.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/26.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/27.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/27.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/27.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/28.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/28.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/28.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/29.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/29.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/29.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/3.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/3.png deleted file mode 100644 index 09c847fbcf..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/30.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/30.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/30.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/31.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/31.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/31.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/32.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/32.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/32.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/33.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/33.png deleted file mode 100644 index e3bc8e18e6..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/33.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/4.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/4.png deleted file mode 100644 index 78bd968d07..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/5.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/5.png deleted file mode 100644 index aa7c22057a..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/6.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/6.png deleted file mode 100644 index d3bd0c6ef4..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/7.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/7.png deleted file mode 100644 index 1a484edda4..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/8.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/8.png deleted file mode 100644 index 59d51fc771..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicGenericChemItem/9.png b/front/public/images/small/miscutils/item.BasicGenericChemItem/9.png deleted file mode 100644 index 64f530f8fa..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicGenericChemItem/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/0.png b/front/public/images/small/miscutils/item.BasicMetaFood/0.png deleted file mode 100644 index 62b1f0eb9c..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/1.png b/front/public/images/small/miscutils/item.BasicMetaFood/1.png deleted file mode 100644 index 3b522e38f8..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/2.png b/front/public/images/small/miscutils/item.BasicMetaFood/2.png deleted file mode 100644 index d8f7de7ebc..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/3.png b/front/public/images/small/miscutils/item.BasicMetaFood/3.png deleted file mode 100644 index f5a2c64d4f..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/4.png b/front/public/images/small/miscutils/item.BasicMetaFood/4.png deleted file mode 100644 index d4d3c342e0..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/5.png b/front/public/images/small/miscutils/item.BasicMetaFood/5.png deleted file mode 100644 index 12b6ad2c90..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/6.png b/front/public/images/small/miscutils/item.BasicMetaFood/6.png deleted file mode 100644 index 0a6d15ccae..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/7.png b/front/public/images/small/miscutils/item.BasicMetaFood/7.png deleted file mode 100644 index 91da9fef5f..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaFood/8.png b/front/public/images/small/miscutils/item.BasicMetaFood/8.png deleted file mode 100644 index 143683e6ad..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaFood/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaSpawnEgg/0.png b/front/public/images/small/miscutils/item.BasicMetaSpawnEgg/0.png deleted file mode 100644 index 6f36b4a25a..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaSpawnEgg/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BasicMetaSpawnEgg/1.png b/front/public/images/small/miscutils/item.BasicMetaSpawnEgg/1.png deleted file mode 100644 index 3c3c6416e4..0000000000 Binary files a/front/public/images/small/miscutils/item.BasicMetaSpawnEgg/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.BioRecipeSelector/0.png b/front/public/images/small/miscutils/item.BioRecipeSelector/0.png deleted file mode 100644 index a9add48c10..0000000000 Binary files a/front/public/images/small/miscutils/item.BioRecipeSelector/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.T3RecipeSelector/0.png b/front/public/images/small/miscutils/item.T3RecipeSelector/0.png deleted file mode 100644 index f8544add2c..0000000000 Binary files a/front/public/images/small/miscutils/item.T3RecipeSelector/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.empty/0.png b/front/public/images/small/miscutils/item.empty/0.png deleted file mode 100644 index d50ee60aec..0000000000 Binary files a/front/public/images/small/miscutils/item.empty/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore1/0.png b/front/public/images/small/miscutils/item.itemBufferCore1/0.png deleted file mode 100644 index 0d1ac1d7a1..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore1/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore10/0.png b/front/public/images/small/miscutils/item.itemBufferCore10/0.png deleted file mode 100644 index 9e35c973c0..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore10/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore2/0.png b/front/public/images/small/miscutils/item.itemBufferCore2/0.png deleted file mode 100644 index c24f3b3b02..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore3/0.png b/front/public/images/small/miscutils/item.itemBufferCore3/0.png deleted file mode 100644 index 0de0f2ea7d..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore3/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore4/0.png b/front/public/images/small/miscutils/item.itemBufferCore4/0.png deleted file mode 100644 index 2d272e0e9a..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore5/0.png b/front/public/images/small/miscutils/item.itemBufferCore5/0.png deleted file mode 100644 index df8d201083..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore5/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore6/0.png b/front/public/images/small/miscutils/item.itemBufferCore6/0.png deleted file mode 100644 index 5270824876..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore6/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore7/0.png b/front/public/images/small/miscutils/item.itemBufferCore7/0.png deleted file mode 100644 index dc43420b1d..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore8/0.png b/front/public/images/small/miscutils/item.itemBufferCore8/0.png deleted file mode 100644 index f48b63e1af..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore8/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/item.itemBufferCore9/0.png b/front/public/images/small/miscutils/item.itemBufferCore9/0.png deleted file mode 100644 index e863bac7de..0000000000 Binary files a/front/public/images/small/miscutils/item.itemBufferCore9/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemAirFilter/0.png b/front/public/images/small/miscutils/itemAirFilter/0.png deleted file mode 100644 index 4a00cb71c9..0000000000 Binary files a/front/public/images/small/miscutils/itemAirFilter/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemAirFilter/1.png b/front/public/images/small/miscutils/itemAirFilter/1.png deleted file mode 100644 index 03ba0a9162..0000000000 Binary files a/front/public/images/small/miscutils/itemAirFilter/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemAlkalusDisk/0.png b/front/public/images/small/miscutils/itemAlkalusDisk/0.png deleted file mode 100644 index bf34339fa6..0000000000 Binary files a/front/public/images/small/miscutils/itemAlkalusDisk/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemArmorHazmatChestplateEx/0.png b/front/public/images/small/miscutils/itemArmorHazmatChestplateEx/0.png deleted file mode 100644 index 32992507c8..0000000000 Binary files a/front/public/images/small/miscutils/itemArmorHazmatChestplateEx/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemArmorHazmatHelmetEx/0.png b/front/public/images/small/miscutils/itemArmorHazmatHelmetEx/0.png deleted file mode 100644 index f74176d86b..0000000000 Binary files a/front/public/images/small/miscutils/itemArmorHazmatHelmetEx/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemArmorHazmatLeggingsEx/0.png b/front/public/images/small/miscutils/itemArmorHazmatLeggingsEx/0.png deleted file mode 100644 index b3eebbf074..0000000000 Binary files a/front/public/images/small/miscutils/itemArmorHazmatLeggingsEx/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemArmorRubBootsEx/0.png b/front/public/images/small/miscutils/itemArmorRubBootsEx/0.png deleted file mode 100644 index d89bdbb19f..0000000000 Binary files a/front/public/images/small/miscutils/itemArmorRubBootsEx/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBasicTurbine/0.png b/front/public/images/small/miscutils/itemBasicTurbine/0.png deleted file mode 100644 index e62d750143..0000000000 Binary files a/front/public/images/small/miscutils/itemBasicTurbine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBasicTurbine/1.png b/front/public/images/small/miscutils/itemBasicTurbine/1.png deleted file mode 100644 index b1f9a1f353..0000000000 Binary files a/front/public/images/small/miscutils/itemBasicTurbine/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBasicTurbine/2.png b/front/public/images/small/miscutils/itemBasicTurbine/2.png deleted file mode 100644 index 8134ad2dca..0000000000 Binary files a/front/public/images/small/miscutils/itemBasicTurbine/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBlueprint/0.png b/front/public/images/small/miscutils/itemBlueprint/0.png deleted file mode 100644 index 3d8c245d83..0000000000 Binary files a/front/public/images/small/miscutils/itemBlueprint/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoilerChassis/0.png b/front/public/images/small/miscutils/itemBoilerChassis/0.png deleted file mode 100644 index 41a25f8929..0000000000 Binary files a/front/public/images/small/miscutils/itemBoilerChassis/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoilerChassis/1.png b/front/public/images/small/miscutils/itemBoilerChassis/1.png deleted file mode 100644 index 8b07efbe27..0000000000 Binary files a/front/public/images/small/miscutils/itemBoilerChassis/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoilerChassis/2.png b/front/public/images/small/miscutils/itemBoilerChassis/2.png deleted file mode 100644 index 2bfcac0b24..0000000000 Binary files a/front/public/images/small/miscutils/itemBoilerChassis/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemBoltAbyssalAlloy/0.png deleted file mode 100644 index 30beaa500d..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltArcanite/0.png b/front/public/images/small/miscutils/itemBoltArcanite/0.png deleted file mode 100644 index affe692682..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemBoltArceusAlloy2B/0.png deleted file mode 100644 index ae5489a617..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltAstralTitanium/0.png b/front/public/images/small/miscutils/itemBoltAstralTitanium/0.png deleted file mode 100644 index ca49fa37f4..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltBlackMetal/0.png b/front/public/images/small/miscutils/itemBoltBlackMetal/0.png deleted file mode 100644 index 5c917abd81..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltBloodSteel/0.png b/front/public/images/small/miscutils/itemBoltBloodSteel/0.png deleted file mode 100644 index fbe84be7b5..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltBotmium/0.png b/front/public/images/small/miscutils/itemBoltBotmium/0.png deleted file mode 100644 index 49d09e238a..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltCelestialTungsten/0.png b/front/public/images/small/miscutils/itemBoltCelestialTungsten/0.png deleted file mode 100644 index 328796cc67..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltChromaticGlass/0.png b/front/public/images/small/miscutils/itemBoltChromaticGlass/0.png deleted file mode 100644 index 78d69557be..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltCinobiteA243/0.png b/front/public/images/small/miscutils/itemBoltCinobiteA243/0.png deleted file mode 100644 index 81641b7274..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltDysprosium/0.png b/front/public/images/small/miscutils/itemBoltDysprosium/0.png deleted file mode 100644 index b2a5432807..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltEglinSteel/0.png b/front/public/images/small/miscutils/itemBoltEglinSteel/0.png deleted file mode 100644 index fbcadc5e6c..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltEnergyCrystal/0.png b/front/public/images/small/miscutils/itemBoltEnergyCrystal/0.png deleted file mode 100644 index 032b026992..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltErbium/0.png b/front/public/images/small/miscutils/itemBoltErbium/0.png deleted file mode 100644 index f95c0cf1de..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltGermanium/0.png b/front/public/images/small/miscutils/itemBoltGermanium/0.png deleted file mode 100644 index 772de11dd9..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltGrisium/0.png b/front/public/images/small/miscutils/itemBoltGrisium/0.png deleted file mode 100644 index c15a1147b1..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHS188A/0.png b/front/public/images/small/miscutils/itemBoltHS188A/0.png deleted file mode 100644 index db7b700ae9..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHafnium/0.png b/front/public/images/small/miscutils/itemBoltHafnium/0.png deleted file mode 100644 index 3c014074e0..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHastelloyC276/0.png b/front/public/images/small/miscutils/itemBoltHastelloyC276/0.png deleted file mode 100644 index 2655088cb0..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHastelloyN/0.png b/front/public/images/small/miscutils/itemBoltHastelloyN/0.png deleted file mode 100644 index 05fe713bc9..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHastelloyW/0.png b/front/public/images/small/miscutils/itemBoltHastelloyW/0.png deleted file mode 100644 index 31e429fe3e..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHastelloyX/0.png b/front/public/images/small/miscutils/itemBoltHastelloyX/0.png deleted file mode 100644 index 4bae3ee5db..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemBoltHeLiCoPtEr/0.png deleted file mode 100644 index fb9c717806..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltHypogen/0.png b/front/public/images/small/miscutils/itemBoltHypogen/0.png deleted file mode 100644 index e14aa80779..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltIncoloy020/0.png b/front/public/images/small/miscutils/itemBoltIncoloy020/0.png deleted file mode 100644 index c5cff528de..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltIncoloyDS/0.png b/front/public/images/small/miscutils/itemBoltIncoloyDS/0.png deleted file mode 100644 index ecdd54c43d..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltIncoloyMA956/0.png b/front/public/images/small/miscutils/itemBoltIncoloyMA956/0.png deleted file mode 100644 index 2a77d9919f..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltInconel625/0.png b/front/public/images/small/miscutils/itemBoltInconel625/0.png deleted file mode 100644 index c2dcdcf07f..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltInconel690/0.png b/front/public/images/small/miscutils/itemBoltInconel690/0.png deleted file mode 100644 index 84d3e465cc..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltInconel792/0.png b/front/public/images/small/miscutils/itemBoltInconel792/0.png deleted file mode 100644 index 6908652024..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltIodine/0.png b/front/public/images/small/miscutils/itemBoltIodine/0.png deleted file mode 100644 index 3c4a8fd6df..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltLafiumCompound/0.png b/front/public/images/small/miscutils/itemBoltLafiumCompound/0.png deleted file mode 100644 index 715bc63a06..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltLaurenium/0.png b/front/public/images/small/miscutils/itemBoltLaurenium/0.png deleted file mode 100644 index 9c0ba25c57..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltMaragingSteel250/0.png b/front/public/images/small/miscutils/itemBoltMaragingSteel250/0.png deleted file mode 100644 index 885b870c06..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltMaragingSteel300/0.png b/front/public/images/small/miscutils/itemBoltMaragingSteel300/0.png deleted file mode 100644 index cb478439d7..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltMaragingSteel350/0.png b/front/public/images/small/miscutils/itemBoltMaragingSteel350/0.png deleted file mode 100644 index 7944de5261..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemBoltNiobiumCarbide/0.png deleted file mode 100644 index 8534bc9f58..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltNitinol60/0.png b/front/public/images/small/miscutils/itemBoltNitinol60/0.png deleted file mode 100644 index 44a6ca36e3..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltOctiron/0.png b/front/public/images/small/miscutils/itemBoltOctiron/0.png deleted file mode 100644 index 35c5ae2312..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltPikyonium64B/0.png b/front/public/images/small/miscutils/itemBoltPikyonium64B/0.png deleted file mode 100644 index e12eff4efe..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltPotin/0.png b/front/public/images/small/miscutils/itemBoltPotin/0.png deleted file mode 100644 index b3905e0642..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltPraseodymium/0.png b/front/public/images/small/miscutils/itemBoltPraseodymium/0.png deleted file mode 100644 index 4f6277e8c0..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltQuantum/0.png b/front/public/images/small/miscutils/itemBoltQuantum/0.png deleted file mode 100644 index 3312aaa1d5..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltRhenium/0.png b/front/public/images/small/miscutils/itemBoltRhenium/0.png deleted file mode 100644 index 3ea1f6feef..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltRhodium/0.png b/front/public/images/small/miscutils/itemBoltRhodium/0.png deleted file mode 100644 index 2d93d8731d..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltRuthenium/0.png b/front/public/images/small/miscutils/itemBoltRuthenium/0.png deleted file mode 100644 index 2d93d8731d..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltSelenium/0.png b/front/public/images/small/miscutils/itemBoltSelenium/0.png deleted file mode 100644 index cf13f8bc30..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltSiliconCarbide/0.png b/front/public/images/small/miscutils/itemBoltSiliconCarbide/0.png deleted file mode 100644 index 503d96450e..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltStaballoy/0.png b/front/public/images/small/miscutils/itemBoltStaballoy/0.png deleted file mode 100644 index 0894eef9c1..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltStellite/0.png b/front/public/images/small/miscutils/itemBoltStellite/0.png deleted file mode 100644 index 821d513c67..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltStrontium/0.png b/front/public/images/small/miscutils/itemBoltStrontium/0.png deleted file mode 100644 index d1f1bffdfb..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTalonite/0.png b/front/public/images/small/miscutils/itemBoltTalonite/0.png deleted file mode 100644 index 95d0f4b106..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTantalloy60/0.png b/front/public/images/small/miscutils/itemBoltTantalloy60/0.png deleted file mode 100644 index 1215c76573..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTantalloy61/0.png b/front/public/images/small/miscutils/itemBoltTantalloy61/0.png deleted file mode 100644 index 49640010ee..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTantalumCarbide/0.png b/front/public/images/small/miscutils/itemBoltTantalumCarbide/0.png deleted file mode 100644 index 30c869f14a..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTellurium/0.png b/front/public/images/small/miscutils/itemBoltTellurium/0.png deleted file mode 100644 index b979739930..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltThallium/0.png b/front/public/images/small/miscutils/itemBoltThallium/0.png deleted file mode 100644 index 6c505460bd..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTitansteel/0.png b/front/public/images/small/miscutils/itemBoltTitansteel/0.png deleted file mode 100644 index fcc8f5f08d..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemBoltTriniumNaquadahCarbonite/0.png deleted file mode 100644 index f0932d74b9..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemBoltTriniumTitaniumAlloy/0.png deleted file mode 100644 index ef8d2c8c0c..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTumbaga/0.png b/front/public/images/small/miscutils/itemBoltTumbaga/0.png deleted file mode 100644 index b5558da361..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemBoltTungstenTitaniumCarbide/0.png deleted file mode 100644 index 814ea88abf..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltWatertightSteel/0.png b/front/public/images/small/miscutils/itemBoltWatertightSteel/0.png deleted file mode 100644 index d8365848ac..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltWhiteMetal/0.png b/front/public/images/small/miscutils/itemBoltWhiteMetal/0.png deleted file mode 100644 index dfad85afa9..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltZeron100/0.png b/front/public/images/small/miscutils/itemBoltZeron100/0.png deleted file mode 100644 index 6c86e59c7f..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltZirconium/0.png b/front/public/images/small/miscutils/itemBoltZirconium/0.png deleted file mode 100644 index c8a0c7222a..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemBoltZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemBoltZirconiumCarbide/0.png deleted file mode 100644 index dc68914e43..0000000000 Binary files a/front/public/images/small/miscutils/itemBoltZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCactusCharcoal/0.png b/front/public/images/small/miscutils/itemCactusCharcoal/0.png deleted file mode 100644 index 755c706e78..0000000000 Binary files a/front/public/images/small/miscutils/itemCactusCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCactusCoke/0.png b/front/public/images/small/miscutils/itemCactusCoke/0.png deleted file mode 100644 index 620aa5be2e..0000000000 Binary files a/front/public/images/small/miscutils/itemCactusCoke/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemCellAbyssalAlloy/0.png deleted file mode 100644 index 2645201f1d..0000000000 Binary files a/front/public/images/small/miscutils/itemCellAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellAceticAnhydride/0.png b/front/public/images/small/miscutils/itemCellAceticAnhydride/0.png deleted file mode 100644 index e09248bfe2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellAceticAnhydride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemCellAdvancedNitinol/0.png deleted file mode 100644 index 85bb461a13..0000000000 Binary files a/front/public/images/small/miscutils/itemCellAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellAmmonium/0.png b/front/public/images/small/miscutils/itemCellAmmonium/0.png deleted file mode 100644 index c3d1216328..0000000000 Binary files a/front/public/images/small/miscutils/itemCellAmmonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellAmmoniumBifluoride/0.png b/front/public/images/small/miscutils/itemCellAmmoniumBifluoride/0.png deleted file mode 100644 index d801ec28cf..0000000000 Binary files a/front/public/images/small/miscutils/itemCellAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellAmmoniumTetrafluoroberyllate/0.png b/front/public/images/small/miscutils/itemCellAmmoniumTetrafluoroberyllate/0.png deleted file mode 100644 index cec1c024b3..0000000000 Binary files a/front/public/images/small/miscutils/itemCellAmmoniumTetrafluoroberyllate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellArcanite/0.png b/front/public/images/small/miscutils/itemCellArcanite/0.png deleted file mode 100644 index a79c1f1226..0000000000 Binary files a/front/public/images/small/miscutils/itemCellArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemCellArceusAlloy2B/0.png deleted file mode 100644 index b9e18c45d2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellAstralTitanium/0.png b/front/public/images/small/miscutils/itemCellAstralTitanium/0.png deleted file mode 100644 index 0d44f05cb7..0000000000 Binary files a/front/public/images/small/miscutils/itemCellAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBabbitAlloy/0.png b/front/public/images/small/miscutils/itemCellBabbitAlloy/0.png deleted file mode 100644 index fa94407ff7..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBerylliumFluoride/0.png b/front/public/images/small/miscutils/itemCellBerylliumFluoride/0.png deleted file mode 100644 index 84d6e304cd..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBerylliumHydroxide/0.png b/front/public/images/small/miscutils/itemCellBerylliumHydroxide/0.png deleted file mode 100644 index 407073c5bc..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBlackMetal/0.png b/front/public/images/small/miscutils/itemCellBlackMetal/0.png deleted file mode 100644 index e62a0abebb..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBlackTitanium/0.png b/front/public/images/small/miscutils/itemCellBlackTitanium/0.png deleted file mode 100644 index 1ff9e214be..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBloodSteel/0.png b/front/public/images/small/miscutils/itemCellBloodSteel/0.png deleted file mode 100644 index d76e7f7e0c..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBotmium/0.png b/front/public/images/small/miscutils/itemCellBotmium/0.png deleted file mode 100644 index 42996b8be8..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBromine/0.png b/front/public/images/small/miscutils/itemCellBromine/0.png deleted file mode 100644 index 9e7af2df01..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBromine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBurntReactorFuelI/0.png b/front/public/images/small/miscutils/itemCellBurntReactorFuelI/0.png deleted file mode 100644 index 18bc2eb324..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBurntReactorFuelI/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellBurntReactorFuelII/0.png b/front/public/images/small/miscutils/itemCellBurntReactorFuelII/0.png deleted file mode 100644 index 18bc2eb324..0000000000 Binary files a/front/public/images/small/miscutils/itemCellBurntReactorFuelII/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellCalifornium/0.png b/front/public/images/small/miscutils/itemCellCalifornium/0.png deleted file mode 100644 index 42f7a6b675..0000000000 Binary files a/front/public/images/small/miscutils/itemCellCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellCelestialTungsten/0.png b/front/public/images/small/miscutils/itemCellCelestialTungsten/0.png deleted file mode 100644 index 5796e2f875..0000000000 Binary files a/front/public/images/small/miscutils/itemCellCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellChloroaceticAcid/0.png b/front/public/images/small/miscutils/itemCellChloroaceticAcid/0.png deleted file mode 100644 index a57c477d6a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellChloroaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellChloroaceticMixture/0.png b/front/public/images/small/miscutils/itemCellChloroaceticMixture/0.png deleted file mode 100644 index ec5e26d4a6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellChloroaceticMixture/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellChromaticGlass/0.png b/front/public/images/small/miscutils/itemCellChromaticGlass/0.png deleted file mode 100644 index 8d3f2eb008..0000000000 Binary files a/front/public/images/small/miscutils/itemCellChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellCinobiteA243/0.png b/front/public/images/small/miscutils/itemCellCinobiteA243/0.png deleted file mode 100644 index 8e323ef23b..0000000000 Binary files a/front/public/images/small/miscutils/itemCellCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellCurium/0.png b/front/public/images/small/miscutils/itemCellCurium/0.png deleted file mode 100644 index 80b5c79516..0000000000 Binary files a/front/public/images/small/miscutils/itemCellCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellCyanoacrylatePolymer/0.png b/front/public/images/small/miscutils/itemCellCyanoacrylatePolymer/0.png deleted file mode 100644 index b48e85d150..0000000000 Binary files a/front/public/images/small/miscutils/itemCellCyanoacrylatePolymer/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellDichloroaceticAcid/0.png b/front/public/images/small/miscutils/itemCellDichloroaceticAcid/0.png deleted file mode 100644 index 88da58f371..0000000000 Binary files a/front/public/images/small/miscutils/itemCellDichloroaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellDragonblood/0.png b/front/public/images/small/miscutils/itemCellDragonblood/0.png deleted file mode 100644 index 19715c8e3b..0000000000 Binary files a/front/public/images/small/miscutils/itemCellDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellDysprosium/0.png b/front/public/images/small/miscutils/itemCellDysprosium/0.png deleted file mode 100644 index 96eca99ab9..0000000000 Binary files a/front/public/images/small/miscutils/itemCellDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellEglinSteel/0.png b/front/public/images/small/miscutils/itemCellEglinSteel/0.png deleted file mode 100644 index f17eb0ed50..0000000000 Binary files a/front/public/images/small/miscutils/itemCellEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellEglinSteelBaseCompound/0.png b/front/public/images/small/miscutils/itemCellEglinSteelBaseCompound/0.png deleted file mode 100644 index 1df9e1e396..0000000000 Binary files a/front/public/images/small/miscutils/itemCellEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellEnergyCrystal/0.png b/front/public/images/small/miscutils/itemCellEnergyCrystal/0.png deleted file mode 100644 index c8a7ce9db9..0000000000 Binary files a/front/public/images/small/miscutils/itemCellEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellEnrichedNaquadahFuel/0.png b/front/public/images/small/miscutils/itemCellEnrichedNaquadahFuel/0.png deleted file mode 100644 index 9dd30f3cff..0000000000 Binary files a/front/public/images/small/miscutils/itemCellEnrichedNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellEthylCyanoacetate/0.png b/front/public/images/small/miscutils/itemCellEthylCyanoacetate/0.png deleted file mode 100644 index 3e76258990..0000000000 Binary files a/front/public/images/small/miscutils/itemCellEthylCyanoacetate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellEthylCyanoacrylateSuperGlue/0.png b/front/public/images/small/miscutils/itemCellEthylCyanoacrylateSuperGlue/0.png deleted file mode 100644 index 50d3544a33..0000000000 Binary files a/front/public/images/small/miscutils/itemCellEthylCyanoacrylateSuperGlue/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellFermium/0.png b/front/public/images/small/miscutils/itemCellFermium/0.png deleted file mode 100644 index b37221b4cf..0000000000 Binary files a/front/public/images/small/miscutils/itemCellFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellFluorinatedUraniumHexafluorideFUF6/0.png b/front/public/images/small/miscutils/itemCellFluorinatedUraniumHexafluorideFUF6/0.png deleted file mode 100644 index 08f95d961a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellFluorinatedUraniumHexafluorideFUF6/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellFluorineSpargedTBSalt/0.png b/front/public/images/small/miscutils/itemCellFluorineSpargedTBSalt/0.png deleted file mode 100644 index 0511a1ae34..0000000000 Binary files a/front/public/images/small/miscutils/itemCellFluorineSpargedTBSalt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellFluorineSpargedTSalt/0.png b/front/public/images/small/miscutils/itemCellFluorineSpargedTSalt/0.png deleted file mode 100644 index 9946ad91be..0000000000 Binary files a/front/public/images/small/miscutils/itemCellFluorineSpargedTSalt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellForce/0.png b/front/public/images/small/miscutils/itemCellForce/0.png deleted file mode 100644 index 80aa71ed77..0000000000 Binary files a/front/public/images/small/miscutils/itemCellForce/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellGermanium/0.png b/front/public/images/small/miscutils/itemCellGermanium/0.png deleted file mode 100644 index a3727c4319..0000000000 Binary files a/front/public/images/small/miscutils/itemCellGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellGrisium/0.png b/front/public/images/small/miscutils/itemCellGrisium/0.png deleted file mode 100644 index 9b92096715..0000000000 Binary files a/front/public/images/small/miscutils/itemCellGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHG1223/0.png b/front/public/images/small/miscutils/itemCellHG1223/0.png deleted file mode 100644 index 5e29ff8622..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHS188A/0.png b/front/public/images/small/miscutils/itemCellHS188A/0.png deleted file mode 100644 index 14a91dfc49..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHafnium/0.png b/front/public/images/small/miscutils/itemCellHafnium/0.png deleted file mode 100644 index 020124048e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHastelloyC276/0.png b/front/public/images/small/miscutils/itemCellHastelloyC276/0.png deleted file mode 100644 index 7bb512ccc0..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHastelloyN/0.png b/front/public/images/small/miscutils/itemCellHastelloyN/0.png deleted file mode 100644 index 2ed9eab9f7..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHastelloyW/0.png b/front/public/images/small/miscutils/itemCellHastelloyW/0.png deleted file mode 100644 index 5434d35ab6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHastelloyX/0.png b/front/public/images/small/miscutils/itemCellHastelloyX/0.png deleted file mode 100644 index 3abee45184..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemCellHeLiCoPtEr/0.png deleted file mode 100644 index 8e780f9427..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHeliumSpargedUSalt/0.png b/front/public/images/small/miscutils/itemCellHeliumSpargedUSalt/0.png deleted file mode 100644 index 18bc2eb324..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHeliumSpargedUSalt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHydrogenChlorideMix/0.png b/front/public/images/small/miscutils/itemCellHydrogenChlorideMix/0.png deleted file mode 100644 index 15679deddb..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHydrogenChlorideMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHydrogenCyanide/0.png b/front/public/images/small/miscutils/itemCellHydrogenCyanide/0.png deleted file mode 100644 index 3d6ba85020..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHydrogenCyanide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHydroxide/0.png b/front/public/images/small/miscutils/itemCellHydroxide/0.png deleted file mode 100644 index e3bd158512..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellHypogen/0.png b/front/public/images/small/miscutils/itemCellHypogen/0.png deleted file mode 100644 index 2fa3c91dd5..0000000000 Binary files a/front/public/images/small/miscutils/itemCellHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellIncoloy020/0.png b/front/public/images/small/miscutils/itemCellIncoloy020/0.png deleted file mode 100644 index bc4c9e1e6b..0000000000 Binary files a/front/public/images/small/miscutils/itemCellIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellIncoloyDS/0.png b/front/public/images/small/miscutils/itemCellIncoloyDS/0.png deleted file mode 100644 index ec8dd1436f..0000000000 Binary files a/front/public/images/small/miscutils/itemCellIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellIncoloyMA956/0.png b/front/public/images/small/miscutils/itemCellIncoloyMA956/0.png deleted file mode 100644 index a9e483ac1a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellInconel625/0.png b/front/public/images/small/miscutils/itemCellInconel625/0.png deleted file mode 100644 index 28f3d30bb6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellInconel690/0.png b/front/public/images/small/miscutils/itemCellInconel690/0.png deleted file mode 100644 index a3382c4357..0000000000 Binary files a/front/public/images/small/miscutils/itemCellInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellInconel792/0.png b/front/public/images/small/miscutils/itemCellInconel792/0.png deleted file mode 100644 index 96d0a31e53..0000000000 Binary files a/front/public/images/small/miscutils/itemCellInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellIndalloy140/0.png b/front/public/images/small/miscutils/itemCellIndalloy140/0.png deleted file mode 100644 index 052066f1ee..0000000000 Binary files a/front/public/images/small/miscutils/itemCellIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellIodine/0.png b/front/public/images/small/miscutils/itemCellIodine/0.png deleted file mode 100644 index c10ea8dda5..0000000000 Binary files a/front/public/images/small/miscutils/itemCellIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellKoboldite/0.png b/front/public/images/small/miscutils/itemCellKoboldite/0.png deleted file mode 100644 index c7a2a430d5..0000000000 Binary files a/front/public/images/small/miscutils/itemCellKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellKrypton/0.png b/front/public/images/small/miscutils/itemCellKrypton/0.png deleted file mode 100644 index da5c693ecf..0000000000 Binary files a/front/public/images/small/miscutils/itemCellKrypton/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLFTRFuel1/0.png b/front/public/images/small/miscutils/itemCellLFTRFuel1/0.png deleted file mode 100644 index 05716f0945..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLFTRFuel2/0.png b/front/public/images/small/miscutils/itemCellLFTRFuel2/0.png deleted file mode 100644 index 07cda4fe34..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLFTRFuel3/0.png b/front/public/images/small/miscutils/itemCellLFTRFuel3/0.png deleted file mode 100644 index 7a754b7150..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLFTRFuelBase/0.png b/front/public/images/small/miscutils/itemCellLFTRFuelBase/0.png deleted file mode 100644 index 0fca13d079..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLFTRFuelBase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLafiumCompound/0.png b/front/public/images/small/miscutils/itemCellLafiumCompound/0.png deleted file mode 100644 index c1e2c1c476..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLaurenium/0.png b/front/public/images/small/miscutils/itemCellLaurenium/0.png deleted file mode 100644 index ab92400070..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLithiumFluoride/0.png b/front/public/images/small/miscutils/itemCellLithiumFluoride/0.png deleted file mode 100644 index f3df08032e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellLithiumTetrafluoroberyllateLFTB/0.png b/front/public/images/small/miscutils/itemCellLithiumTetrafluoroberyllateLFTB/0.png deleted file mode 100644 index a6610cf1dc..0000000000 Binary files a/front/public/images/small/miscutils/itemCellLithiumTetrafluoroberyllateLFTB/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellMaragingSteel250/0.png b/front/public/images/small/miscutils/itemCellMaragingSteel250/0.png deleted file mode 100644 index 7b1a288fc1..0000000000 Binary files a/front/public/images/small/miscutils/itemCellMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellMaragingSteel300/0.png b/front/public/images/small/miscutils/itemCellMaragingSteel300/0.png deleted file mode 100644 index 46cde92607..0000000000 Binary files a/front/public/images/small/miscutils/itemCellMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellMaragingSteel350/0.png b/front/public/images/small/miscutils/itemCellMaragingSteel350/0.png deleted file mode 100644 index 132154e6bb..0000000000 Binary files a/front/public/images/small/miscutils/itemCellMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellMutatedLivingSolder/0.png b/front/public/images/small/miscutils/itemCellMutatedLivingSolder/0.png deleted file mode 100644 index 096dfc4954..0000000000 Binary files a/front/public/images/small/miscutils/itemCellMutatedLivingSolder/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellNaquadahFuel/0.png b/front/public/images/small/miscutils/itemCellNaquadahFuel/0.png deleted file mode 100644 index b4ece769d2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellNaquadahFuel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellNaquadriaFuel/0.png b/front/public/images/small/miscutils/itemCellNaquadriaFuel/0.png deleted file mode 100644 index 4beecd5fd4..0000000000 Binary files a/front/public/images/small/miscutils/itemCellNaquadriaFuel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellNeon/0.png b/front/public/images/small/miscutils/itemCellNeon/0.png deleted file mode 100644 index 2337a4f71e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellNeon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellNeptunium/0.png b/front/public/images/small/miscutils/itemCellNeptunium/0.png deleted file mode 100644 index d48f06685b..0000000000 Binary files a/front/public/images/small/miscutils/itemCellNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellNeptuniumHexafluoride/0.png b/front/public/images/small/miscutils/itemCellNeptuniumHexafluoride/0.png deleted file mode 100644 index afdf91ef86..0000000000 Binary files a/front/public/images/small/miscutils/itemCellNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemCellNiobiumCarbide/0.png deleted file mode 100644 index 45646fc16c..0000000000 Binary files a/front/public/images/small/miscutils/itemCellNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellNitinol60/0.png b/front/public/images/small/miscutils/itemCellNitinol60/0.png deleted file mode 100644 index 85bb461a13..0000000000 Binary files a/front/public/images/small/miscutils/itemCellNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellOctiron/0.png b/front/public/images/small/miscutils/itemCellOctiron/0.png deleted file mode 100644 index 0629352cb4..0000000000 Binary files a/front/public/images/small/miscutils/itemCellOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPhosphorousUraniumHexafluoridePUF6/0.png b/front/public/images/small/miscutils/itemCellPhosphorousUraniumHexafluoridePUF6/0.png deleted file mode 100644 index 622e17af06..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPhosphorousUraniumHexafluoridePUF6/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPikyonium64B/0.png b/front/public/images/small/miscutils/itemCellPikyonium64B/0.png deleted file mode 100644 index b195b189ac..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemCellPlasmaAdvancedNitinol/0.png deleted file mode 100644 index 272c688d75..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaAstralTitanium/0.png b/front/public/images/small/miscutils/itemCellPlasmaAstralTitanium/0.png deleted file mode 100644 index 3f8d54dd01..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaBromine/0.png b/front/public/images/small/miscutils/itemCellPlasmaBromine/0.png deleted file mode 100644 index f8520a4417..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaBromine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaCalifornium/0.png b/front/public/images/small/miscutils/itemCellPlasmaCalifornium/0.png deleted file mode 100644 index 969085a0a3..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaCelestialTungsten/0.png b/front/public/images/small/miscutils/itemCellPlasmaCelestialTungsten/0.png deleted file mode 100644 index 255a065381..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaChromaticGlass/0.png b/front/public/images/small/miscutils/itemCellPlasmaChromaticGlass/0.png deleted file mode 100644 index 4c43b0b4c5..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaCurium/0.png b/front/public/images/small/miscutils/itemCellPlasmaCurium/0.png deleted file mode 100644 index ca661c39a0..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaDragonblood/0.png b/front/public/images/small/miscutils/itemCellPlasmaDragonblood/0.png deleted file mode 100644 index d77ef065c0..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaFermium/0.png b/front/public/images/small/miscutils/itemCellPlasmaFermium/0.png deleted file mode 100644 index a4e7def4d2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaForce/0.png b/front/public/images/small/miscutils/itemCellPlasmaForce/0.png deleted file mode 100644 index 71fa990ebd..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaForce/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaGermanium/0.png b/front/public/images/small/miscutils/itemCellPlasmaGermanium/0.png deleted file mode 100644 index a8a1f79194..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaHafnium/0.png b/front/public/images/small/miscutils/itemCellPlasmaHafnium/0.png deleted file mode 100644 index f27e74b1f0..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaHypogen/0.png b/front/public/images/small/miscutils/itemCellPlasmaHypogen/0.png deleted file mode 100644 index 1051e6e406..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaIodine/0.png b/front/public/images/small/miscutils/itemCellPlasmaIodine/0.png deleted file mode 100644 index 2555e7a5e5..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaKrypton/0.png b/front/public/images/small/miscutils/itemCellPlasmaKrypton/0.png deleted file mode 100644 index 44069ac346..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaKrypton/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaNeon/0.png b/front/public/images/small/miscutils/itemCellPlasmaNeon/0.png deleted file mode 100644 index b878f62554..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaNeon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaNeptunium/0.png b/front/public/images/small/miscutils/itemCellPlasmaNeptunium/0.png deleted file mode 100644 index c7d8a908b6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaPlutonium238/0.png b/front/public/images/small/miscutils/itemCellPlasmaPlutonium238/0.png deleted file mode 100644 index c9ca95fb45..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaPolonium/0.png b/front/public/images/small/miscutils/itemCellPlasmaPolonium/0.png deleted file mode 100644 index 5443c3dc85..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaProtactinium/0.png b/front/public/images/small/miscutils/itemCellPlasmaProtactinium/0.png deleted file mode 100644 index 47f69c9c1f..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaRadium/0.png b/front/public/images/small/miscutils/itemCellPlasmaRadium/0.png deleted file mode 100644 index e65b902ad2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaRhenium/0.png b/front/public/images/small/miscutils/itemCellPlasmaRhenium/0.png deleted file mode 100644 index 92c98de21e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaRhodium/0.png b/front/public/images/small/miscutils/itemCellPlasmaRhodium/0.png deleted file mode 100644 index f7f651132e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaRhugnor/0.png b/front/public/images/small/miscutils/itemCellPlasmaRhugnor/0.png deleted file mode 100644 index 65f9fd4df1..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaRunite/0.png b/front/public/images/small/miscutils/itemCellPlasmaRunite/0.png deleted file mode 100644 index e9123c8457..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaRuthenium/0.png b/front/public/images/small/miscutils/itemCellPlasmaRuthenium/0.png deleted file mode 100644 index f7f651132e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaSelenium/0.png b/front/public/images/small/miscutils/itemCellPlasmaSelenium/0.png deleted file mode 100644 index aeca46299f..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaTechnetium/0.png b/front/public/images/small/miscutils/itemCellPlasmaTechnetium/0.png deleted file mode 100644 index f7f651132e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaTechnetium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaThallium/0.png b/front/public/images/small/miscutils/itemCellPlasmaThallium/0.png deleted file mode 100644 index 5d7a439a6b..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaThorium232/0.png b/front/public/images/small/miscutils/itemCellPlasmaThorium232/0.png deleted file mode 100644 index 65f0bd57b0..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaUranium232/0.png b/front/public/images/small/miscutils/itemCellPlasmaUranium232/0.png deleted file mode 100644 index a0604385ca..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaUranium233/0.png b/front/public/images/small/miscutils/itemCellPlasmaUranium233/0.png deleted file mode 100644 index fb383096e5..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaXenon/0.png b/front/public/images/small/miscutils/itemCellPlasmaXenon/0.png deleted file mode 100644 index 6490cedbd2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaXenon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlasmaZirconium/0.png b/front/public/images/small/miscutils/itemCellPlasmaZirconium/0.png deleted file mode 100644 index 8caeea1efe..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlasmaZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPlutonium238/0.png b/front/public/images/small/miscutils/itemCellPlutonium238/0.png deleted file mode 100644 index 8b8f818317..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPolonium/0.png b/front/public/images/small/miscutils/itemCellPolonium/0.png deleted file mode 100644 index 01229c458b..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellPotin/0.png b/front/public/images/small/miscutils/itemCellPotin/0.png deleted file mode 100644 index 466211d17a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellProtactinium/0.png b/front/public/images/small/miscutils/itemCellProtactinium/0.png deleted file mode 100644 index 2eb613bcee..0000000000 Binary files a/front/public/images/small/miscutils/itemCellProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellQuantum/0.png b/front/public/images/small/miscutils/itemCellQuantum/0.png deleted file mode 100644 index e9fd8e4bbe..0000000000 Binary files a/front/public/images/small/miscutils/itemCellQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellRadium/0.png b/front/public/images/small/miscutils/itemCellRadium/0.png deleted file mode 100644 index 2c5b851e86..0000000000 Binary files a/front/public/images/small/miscutils/itemCellRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellRhenium/0.png b/front/public/images/small/miscutils/itemCellRhenium/0.png deleted file mode 100644 index f786257bc6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellRhodium/0.png b/front/public/images/small/miscutils/itemCellRhodium/0.png deleted file mode 100644 index ffd422d6ff..0000000000 Binary files a/front/public/images/small/miscutils/itemCellRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellRhugnor/0.png b/front/public/images/small/miscutils/itemCellRhugnor/0.png deleted file mode 100644 index 5b0e41eebc..0000000000 Binary files a/front/public/images/small/miscutils/itemCellRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellRunite/0.png b/front/public/images/small/miscutils/itemCellRunite/0.png deleted file mode 100644 index e766d00b02..0000000000 Binary files a/front/public/images/small/miscutils/itemCellRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellRuthenium/0.png b/front/public/images/small/miscutils/itemCellRuthenium/0.png deleted file mode 100644 index ffd422d6ff..0000000000 Binary files a/front/public/images/small/miscutils/itemCellRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSeleniousAcid/0.png b/front/public/images/small/miscutils/itemCellSeleniousAcid/0.png deleted file mode 100644 index 4260dc2148..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSeleniousAcid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSelenium/0.png b/front/public/images/small/miscutils/itemCellSelenium/0.png deleted file mode 100644 index a26105f39b..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSeleniumDioxide/0.png b/front/public/images/small/miscutils/itemCellSeleniumDioxide/0.png deleted file mode 100644 index 3de48a18c4..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSeleniumDioxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSeleniumHexafluoride/0.png b/front/public/images/small/miscutils/itemCellSeleniumHexafluoride/0.png deleted file mode 100644 index 7d8b0e4462..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSiliconCarbide/0.png b/front/public/images/small/miscutils/itemCellSiliconCarbide/0.png deleted file mode 100644 index f5e2a299de..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSodiumFluoride/0.png b/front/public/images/small/miscutils/itemCellSodiumFluoride/0.png deleted file mode 100644 index de0b24a64f..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSolarSaltCold/0.png b/front/public/images/small/miscutils/itemCellSolarSaltCold/0.png deleted file mode 100644 index f49adc1c86..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSolarSaltCold/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSolarSaltHot/0.png b/front/public/images/small/miscutils/itemCellSolarSaltHot/0.png deleted file mode 100644 index 9e7af2df01..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSolarSaltHot/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellSolidAcidCatalystMixture/0.png b/front/public/images/small/miscutils/itemCellSolidAcidCatalystMixture/0.png deleted file mode 100644 index d34adbf5a6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellSolidAcidCatalystMixture/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellStaballoy/0.png b/front/public/images/small/miscutils/itemCellStaballoy/0.png deleted file mode 100644 index 077b027975..0000000000 Binary files a/front/public/images/small/miscutils/itemCellStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellStableMoltenSaltBase/0.png b/front/public/images/small/miscutils/itemCellStableMoltenSaltBase/0.png deleted file mode 100644 index a6610cf1dc..0000000000 Binary files a/front/public/images/small/miscutils/itemCellStableMoltenSaltBase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellStellite/0.png b/front/public/images/small/miscutils/itemCellStellite/0.png deleted file mode 100644 index 9da7c33d49..0000000000 Binary files a/front/public/images/small/miscutils/itemCellStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTalonite/0.png b/front/public/images/small/miscutils/itemCellTalonite/0.png deleted file mode 100644 index 90239e7ece..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTantalloy60/0.png b/front/public/images/small/miscutils/itemCellTantalloy60/0.png deleted file mode 100644 index f7c8be99d8..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTantalloy61/0.png b/front/public/images/small/miscutils/itemCellTantalloy61/0.png deleted file mode 100644 index 89a29f9a94..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTantalumCarbide/0.png b/front/public/images/small/miscutils/itemCellTantalumCarbide/0.png deleted file mode 100644 index c9e6b009c3..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTechnetium/0.png b/front/public/images/small/miscutils/itemCellTechnetium/0.png deleted file mode 100644 index ffd422d6ff..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTechnetium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTechnetiumHexafluoride/0.png b/front/public/images/small/miscutils/itemCellTechnetiumHexafluoride/0.png deleted file mode 100644 index fe1b61cfcc..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTeflon/0.png b/front/public/images/small/miscutils/itemCellTeflon/0.png deleted file mode 100644 index ad0eabc4f2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTellurium/0.png b/front/public/images/small/miscutils/itemCellTellurium/0.png deleted file mode 100644 index 7f61be3caf..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellThallium/0.png b/front/public/images/small/miscutils/itemCellThallium/0.png deleted file mode 100644 index 67f75387b6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellThorium/0.png b/front/public/images/small/miscutils/itemCellThorium/0.png deleted file mode 100644 index af6c093683..0000000000 Binary files a/front/public/images/small/miscutils/itemCellThorium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellThorium232/0.png b/front/public/images/small/miscutils/itemCellThorium232/0.png deleted file mode 100644 index 22899faf19..0000000000 Binary files a/front/public/images/small/miscutils/itemCellThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellThoriumBerylliumDepletedMoltenSaltTBSalt/0.png b/front/public/images/small/miscutils/itemCellThoriumBerylliumDepletedMoltenSaltTBSalt/0.png deleted file mode 100644 index 0511a1ae34..0000000000 Binary files a/front/public/images/small/miscutils/itemCellThoriumBerylliumDepletedMoltenSaltTBSalt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellThoriumDepletedMoltenSaltTSalt/0.png b/front/public/images/small/miscutils/itemCellThoriumDepletedMoltenSaltTSalt/0.png deleted file mode 100644 index 9946ad91be..0000000000 Binary files a/front/public/images/small/miscutils/itemCellThoriumDepletedMoltenSaltTSalt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellThoriumHexafluoride/0.png b/front/public/images/small/miscutils/itemCellThoriumHexafluoride/0.png deleted file mode 100644 index a7f9e7dd57..0000000000 Binary files a/front/public/images/small/miscutils/itemCellThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellThoriumTetrafluoride/0.png b/front/public/images/small/miscutils/itemCellThoriumTetrafluoride/0.png deleted file mode 100644 index 31261c0554..0000000000 Binary files a/front/public/images/small/miscutils/itemCellThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTitansteel/0.png b/front/public/images/small/miscutils/itemCellTitansteel/0.png deleted file mode 100644 index 6c9c25ae1c..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTrichloroaceticAcid/0.png b/front/public/images/small/miscutils/itemCellTrichloroaceticAcid/0.png deleted file mode 100644 index 1fcfcfa72a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTrichloroaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemCellTriniumNaquadahAlloy/0.png deleted file mode 100644 index 868a478e08..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemCellTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 694f972596..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemCellTriniumTitaniumAlloy/0.png deleted file mode 100644 index 683b283a7a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTumbaga/0.png b/front/public/images/small/miscutils/itemCellTumbaga/0.png deleted file mode 100644 index 6787daf4e5..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemCellTungstenTitaniumCarbide/0.png deleted file mode 100644 index 40f0d5ea02..0000000000 Binary files a/front/public/images/small/miscutils/itemCellTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellUranium232/0.png b/front/public/images/small/miscutils/itemCellUranium232/0.png deleted file mode 100644 index 1f53a0317a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellUranium233/0.png b/front/public/images/small/miscutils/itemCellUranium233/0.png deleted file mode 100644 index 34a75016e6..0000000000 Binary files a/front/public/images/small/miscutils/itemCellUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellUraniumDepletedMoltenSaltUSalt/0.png b/front/public/images/small/miscutils/itemCellUraniumDepletedMoltenSaltUSalt/0.png deleted file mode 100644 index 18bc2eb324..0000000000 Binary files a/front/public/images/small/miscutils/itemCellUraniumDepletedMoltenSaltUSalt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellUraniumHexafluoride/0.png b/front/public/images/small/miscutils/itemCellUraniumHexafluoride/0.png deleted file mode 100644 index 08f95d961a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellUraniumTetrafluoride/0.png b/front/public/images/small/miscutils/itemCellUraniumTetrafluoride/0.png deleted file mode 100644 index 08f95d961a..0000000000 Binary files a/front/public/images/small/miscutils/itemCellUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellWatertightSteel/0.png b/front/public/images/small/miscutils/itemCellWatertightSteel/0.png deleted file mode 100644 index 93833233f2..0000000000 Binary files a/front/public/images/small/miscutils/itemCellWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellWhiteMetal/0.png b/front/public/images/small/miscutils/itemCellWhiteMetal/0.png deleted file mode 100644 index 8d3f2eb008..0000000000 Binary files a/front/public/images/small/miscutils/itemCellWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellXenon/0.png b/front/public/images/small/miscutils/itemCellXenon/0.png deleted file mode 100644 index c1951f5f93..0000000000 Binary files a/front/public/images/small/miscutils/itemCellXenon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellZeron100/0.png b/front/public/images/small/miscutils/itemCellZeron100/0.png deleted file mode 100644 index 1235f0a75e..0000000000 Binary files a/front/public/images/small/miscutils/itemCellZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellZirconium/0.png b/front/public/images/small/miscutils/itemCellZirconium/0.png deleted file mode 100644 index 5a37b8ef36..0000000000 Binary files a/front/public/images/small/miscutils/itemCellZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCellZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemCellZirconiumCarbide/0.png deleted file mode 100644 index 8bca2311eb..0000000000 Binary files a/front/public/images/small/miscutils/itemCellZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCircuitLFTR/0.png b/front/public/images/small/miscutils/itemCircuitLFTR/0.png deleted file mode 100644 index 465c90807c..0000000000 Binary files a/front/public/images/small/miscutils/itemCircuitLFTR/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCoalCoke/0.png b/front/public/images/small/miscutils/itemCoalCoke/0.png deleted file mode 100644 index f3dc214bb5..0000000000 Binary files a/front/public/images/small/miscutils/itemCoalCoke/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/0.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/0.png deleted file mode 100644 index a911a45a26..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/1.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/1.png deleted file mode 100644 index 24c4622214..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/10.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/10.png deleted file mode 100644 index a77553adca..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/11.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/11.png deleted file mode 100644 index 75284ca28c..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/12.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/12.png deleted file mode 100644 index 56e2d66608..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/13.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/13.png deleted file mode 100644 index 51e91a6b3f..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/14.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/14.png deleted file mode 100644 index ff0a75bc8b..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/2.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/2.png deleted file mode 100644 index 8fc03fa9eb..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/3.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/3.png deleted file mode 100644 index 8e9b1dfb62..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/4.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/4.png deleted file mode 100644 index d70b55f2c2..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/5.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/5.png deleted file mode 100644 index f641fac69b..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/6.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/6.png deleted file mode 100644 index aa1f7fca5d..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/7.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/7.png deleted file mode 100644 index d50ea0bc3f..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/8.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/8.png deleted file mode 100644 index c0e12ee910..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/9.png b/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/9.png deleted file mode 100644 index 7d57ef6bba..0000000000 Binary files a/front/public/images/small/miscutils/itemCustomMetaCover.miscutils.GtMachineCasings/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoil/0.png b/front/public/images/small/miscutils/itemDehydratorCoil/0.png deleted file mode 100644 index dc04674107..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoil/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoil/1.png b/front/public/images/small/miscutils/itemDehydratorCoil/1.png deleted file mode 100644 index b5a1e50154..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoil/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoil/2.png b/front/public/images/small/miscutils/itemDehydratorCoil/2.png deleted file mode 100644 index 0b2d3a0c7e..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoil/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoil/3.png b/front/public/images/small/miscutils/itemDehydratorCoil/3.png deleted file mode 100644 index 5c40e51929..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoil/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoilWire/0.png b/front/public/images/small/miscutils/itemDehydratorCoilWire/0.png deleted file mode 100644 index d535384b32..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoilWire/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoilWire/1.png b/front/public/images/small/miscutils/itemDehydratorCoilWire/1.png deleted file mode 100644 index e6d5cb5415..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoilWire/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoilWire/2.png b/front/public/images/small/miscutils/itemDehydratorCoilWire/2.png deleted file mode 100644 index 492c36ea15..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoilWire/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDehydratorCoilWire/3.png b/front/public/images/small/miscutils/itemDehydratorCoilWire/3.png deleted file mode 100644 index d73c11a168..0000000000 Binary files a/front/public/images/small/miscutils/itemDehydratorCoilWire/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemDustAbyssalAlloy/0.png deleted file mode 100644 index b619f03a69..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemDustAdvancedNitinol/0.png deleted file mode 100644 index ca565d2905..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAgarditeCd/0.png b/front/public/images/small/miscutils/itemDustAgarditeCd/0.png deleted file mode 100644 index 2c52e5f362..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAgarditeLa/0.png b/front/public/images/small/miscutils/itemDustAgarditeLa/0.png deleted file mode 100644 index 6aed2358e8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAgarditeNd/0.png b/front/public/images/small/miscutils/itemDustAgarditeNd/0.png deleted file mode 100644 index be896fb71c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAgarditeY/0.png b/front/public/images/small/miscutils/itemDustAgarditeY/0.png deleted file mode 100644 index 1e933a98fb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAlburnite/0.png b/front/public/images/small/miscutils/itemDustAlburnite/0.png deleted file mode 100644 index 8d5b3c4b79..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAmmoniumBifluoride/0.png b/front/public/images/small/miscutils/itemDustAmmoniumBifluoride/0.png deleted file mode 100644 index d852513096..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAmmoniumNitrate/0.png b/front/public/images/small/miscutils/itemDustAmmoniumNitrate/0.png deleted file mode 100644 index afcbe5620b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAmmoniumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAncientGranite/0.png b/front/public/images/small/miscutils/itemDustAncientGranite/0.png deleted file mode 100644 index ebb17c2be9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustArcanite/0.png b/front/public/images/small/miscutils/itemDustArcanite/0.png deleted file mode 100644 index 842637a2c6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemDustArceusAlloy2B/0.png deleted file mode 100644 index b2ee4e74dd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustAstralTitanium/0.png b/front/public/images/small/miscutils/itemDustAstralTitanium/0.png deleted file mode 100644 index fd0c3de498..0000000000 Binary files a/front/public/images/small/miscutils/itemDustAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBabbitAlloy/0.png b/front/public/images/small/miscutils/itemDustBabbitAlloy/0.png deleted file mode 100644 index 1fc53c1bad..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBariteRd/0.png b/front/public/images/small/miscutils/itemDustBariteRd/0.png deleted file mode 100644 index 74f6007b43..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBerylliumFluoride/0.png b/front/public/images/small/miscutils/itemDustBerylliumFluoride/0.png deleted file mode 100644 index 301205f1d8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBerylliumHydroxide/0.png b/front/public/images/small/miscutils/itemDustBerylliumHydroxide/0.png deleted file mode 100644 index 3da1200d18..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBlackMetal/0.png b/front/public/images/small/miscutils/itemDustBlackMetal/0.png deleted file mode 100644 index 88909f93d7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBlackTitanium/0.png b/front/public/images/small/miscutils/itemDustBlackTitanium/0.png deleted file mode 100644 index 9ff2a413dd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBloodSteel/0.png b/front/public/images/small/miscutils/itemDustBloodSteel/0.png deleted file mode 100644 index 2612c457a6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustBotmium/0.png b/front/public/images/small/miscutils/itemDustBotmium/0.png deleted file mode 100644 index e284262fd3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCalciumCarbonate/0.png b/front/public/images/small/miscutils/itemDustCalciumCarbonate/0.png deleted file mode 100644 index acc0897a8c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCalciumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCalciumChloride/0.png b/front/public/images/small/miscutils/itemDustCalciumChloride/0.png deleted file mode 100644 index 10e56533b7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCalciumChloride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCalciumHydroxide/0.png b/front/public/images/small/miscutils/itemDustCalciumHydroxide/0.png deleted file mode 100644 index acc0897a8c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCalciumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCalifornium/0.png b/front/public/images/small/miscutils/itemDustCalifornium/0.png deleted file mode 100644 index 4a3b936cf4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCelestialTungsten/0.png b/front/public/images/small/miscutils/itemDustCelestialTungsten/0.png deleted file mode 100644 index 884aa74768..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCerite/0.png b/front/public/images/small/miscutils/itemDustCerite/0.png deleted file mode 100644 index eeefba5220..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustChromaticGlass/0.png b/front/public/images/small/miscutils/itemDustChromaticGlass/0.png deleted file mode 100644 index 54cbc74132..0000000000 Binary files a/front/public/images/small/miscutils/itemDustChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCinobiteA243/0.png b/front/public/images/small/miscutils/itemDustCinobiteA243/0.png deleted file mode 100644 index c04ea79ba5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustComancheite/0.png b/front/public/images/small/miscutils/itemDustComancheite/0.png deleted file mode 100644 index ce0de1a9f4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCookedZrCl4/0.png b/front/public/images/small/miscutils/itemDustCookedZrCl4/0.png deleted file mode 100644 index 4e79aa8b8b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCookedZrCl4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCopperIISulfate/0.png b/front/public/images/small/miscutils/itemDustCopperIISulfate/0.png deleted file mode 100644 index 30aa48be06..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCopperIISulfate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCopperIISulfatePentahydrate/0.png b/front/public/images/small/miscutils/itemDustCopperIISulfatePentahydrate/0.png deleted file mode 100644 index 507ac4b92f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCopperIISulfatePentahydrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCrocoite/0.png b/front/public/images/small/miscutils/itemDustCrocoite/0.png deleted file mode 100644 index 385a9a409d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCryoliteF/0.png b/front/public/images/small/miscutils/itemDustCryoliteF/0.png deleted file mode 100644 index 5fabe0dfd3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCurium/0.png b/front/public/images/small/miscutils/itemDustCurium/0.png deleted file mode 100644 index 50a81e04e0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustCyanoaceticAcid/0.png b/front/public/images/small/miscutils/itemDustCyanoaceticAcid/0.png deleted file mode 100644 index d1ff4bd313..0000000000 Binary files a/front/public/images/small/miscutils/itemDustCyanoaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustDecayedRadium226/0.png b/front/public/images/small/miscutils/itemDustDecayedRadium226/0.png deleted file mode 100644 index b661888bad..0000000000 Binary files a/front/public/images/small/miscutils/itemDustDecayedRadium226/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustDemicheleiteBr/0.png b/front/public/images/small/miscutils/itemDustDemicheleiteBr/0.png deleted file mode 100644 index 562ec1f547..0000000000 Binary files a/front/public/images/small/miscutils/itemDustDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustDirt/0.png b/front/public/images/small/miscutils/itemDustDirt/0.png deleted file mode 100644 index 1321c86124..0000000000 Binary files a/front/public/images/small/miscutils/itemDustDirt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustDragonblood/0.png b/front/public/images/small/miscutils/itemDustDragonblood/0.png deleted file mode 100644 index f192e28b2c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustDysprosium/0.png b/front/public/images/small/miscutils/itemDustDysprosium/0.png deleted file mode 100644 index 1653e65910..0000000000 Binary files a/front/public/images/small/miscutils/itemDustDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustEglinSteel/0.png b/front/public/images/small/miscutils/itemDustEglinSteel/0.png deleted file mode 100644 index 89514a6040..0000000000 Binary files a/front/public/images/small/miscutils/itemDustEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustEglinSteelBaseCompound/0.png b/front/public/images/small/miscutils/itemDustEglinSteelBaseCompound/0.png deleted file mode 100644 index 776db71a37..0000000000 Binary files a/front/public/images/small/miscutils/itemDustEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustEnergyCrystal/0.png b/front/public/images/small/miscutils/itemDustEnergyCrystal/0.png deleted file mode 100644 index 8b7334d914..0000000000 Binary files a/front/public/images/small/miscutils/itemDustEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustErbium/0.png b/front/public/images/small/miscutils/itemDustErbium/0.png deleted file mode 100644 index 8d5dfff02d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustFermium/0.png b/front/public/images/small/miscutils/itemDustFermium/0.png deleted file mode 100644 index fc2bc27cb8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustFlorencite/0.png b/front/public/images/small/miscutils/itemDustFlorencite/0.png deleted file mode 100644 index 5ac49f8781..0000000000 Binary files a/front/public/images/small/miscutils/itemDustFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustFluorcaphite/0.png b/front/public/images/small/miscutils/itemDustFluorcaphite/0.png deleted file mode 100644 index 72d8ba1cc5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustFluoriteF/0.png b/front/public/images/small/miscutils/itemDustFluoriteF/0.png deleted file mode 100644 index 5624420682..0000000000 Binary files a/front/public/images/small/miscutils/itemDustFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustFormaldehydeCatalyst/0.png b/front/public/images/small/miscutils/itemDustFormaldehydeCatalyst/0.png deleted file mode 100644 index 5d885e5330..0000000000 Binary files a/front/public/images/small/miscutils/itemDustFormaldehydeCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustGadoliniteCe/0.png b/front/public/images/small/miscutils/itemDustGadoliniteCe/0.png deleted file mode 100644 index 892c93ca05..0000000000 Binary files a/front/public/images/small/miscutils/itemDustGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustGadoliniteY/0.png b/front/public/images/small/miscutils/itemDustGadoliniteY/0.png deleted file mode 100644 index 892c93ca05..0000000000 Binary files a/front/public/images/small/miscutils/itemDustGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustGeikielite/0.png b/front/public/images/small/miscutils/itemDustGeikielite/0.png deleted file mode 100644 index 463825b0f8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustGermanium/0.png b/front/public/images/small/miscutils/itemDustGermanium/0.png deleted file mode 100644 index f8177a080b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustGreenockite/0.png b/front/public/images/small/miscutils/itemDustGreenockite/0.png deleted file mode 100644 index 8c660c8067..0000000000 Binary files a/front/public/images/small/miscutils/itemDustGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustGrisium/0.png b/front/public/images/small/miscutils/itemDustGrisium/0.png deleted file mode 100644 index 9dda09acc5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustGypsum/0.png b/front/public/images/small/miscutils/itemDustGypsum/0.png deleted file mode 100644 index acc0897a8c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustGypsum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHG1223/0.png b/front/public/images/small/miscutils/itemDustHG1223/0.png deleted file mode 100644 index f8ba7de375..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHS188A/0.png b/front/public/images/small/miscutils/itemDustHS188A/0.png deleted file mode 100644 index b609d93b90..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHafnium/0.png b/front/public/images/small/miscutils/itemDustHafnium/0.png deleted file mode 100644 index 0049e12920..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHastelloyC276/0.png b/front/public/images/small/miscutils/itemDustHastelloyC276/0.png deleted file mode 100644 index 5837e49c8a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHastelloyN/0.png b/front/public/images/small/miscutils/itemDustHastelloyN/0.png deleted file mode 100644 index 3767a2ddf5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHastelloyW/0.png b/front/public/images/small/miscutils/itemDustHastelloyW/0.png deleted file mode 100644 index b422f4bdbe..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHastelloyX/0.png b/front/public/images/small/miscutils/itemDustHastelloyX/0.png deleted file mode 100644 index cf2e84f5f9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemDustHeLiCoPtEr/0.png deleted file mode 100644 index 1227c639cc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHibonite/0.png b/front/public/images/small/miscutils/itemDustHibonite/0.png deleted file mode 100644 index 54003548c7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHoneaite/0.png b/front/public/images/small/miscutils/itemDustHoneaite/0.png deleted file mode 100644 index 00806bafc8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustHypogen/0.png b/front/public/images/small/miscutils/itemDustHypogen/0.png deleted file mode 100644 index 5abe88a398..0000000000 Binary files a/front/public/images/small/miscutils/itemDustHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustIncoloy020/0.png b/front/public/images/small/miscutils/itemDustIncoloy020/0.png deleted file mode 100644 index c170cafca6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustIncoloyDS/0.png b/front/public/images/small/miscutils/itemDustIncoloyDS/0.png deleted file mode 100644 index 90a6a5e5d3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustIncoloyMA956/0.png b/front/public/images/small/miscutils/itemDustIncoloyMA956/0.png deleted file mode 100644 index 9728a199c2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustInconel625/0.png b/front/public/images/small/miscutils/itemDustInconel625/0.png deleted file mode 100644 index 7ac8a6b23b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustInconel690/0.png b/front/public/images/small/miscutils/itemDustInconel690/0.png deleted file mode 100644 index 00d9674084..0000000000 Binary files a/front/public/images/small/miscutils/itemDustInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustInconel792/0.png b/front/public/images/small/miscutils/itemDustInconel792/0.png deleted file mode 100644 index 2798bf6a80..0000000000 Binary files a/front/public/images/small/miscutils/itemDustInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustIndalloy140/0.png b/front/public/images/small/miscutils/itemDustIndalloy140/0.png deleted file mode 100644 index 969d558a00..0000000000 Binary files a/front/public/images/small/miscutils/itemDustIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustInfusedAir/0.png b/front/public/images/small/miscutils/itemDustInfusedAir/0.png deleted file mode 100644 index b6b686dbac..0000000000 Binary files a/front/public/images/small/miscutils/itemDustInfusedAir/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustInfusedEarth/0.png b/front/public/images/small/miscutils/itemDustInfusedEarth/0.png deleted file mode 100644 index 7369e75d19..0000000000 Binary files a/front/public/images/small/miscutils/itemDustInfusedEarth/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustInfusedFire/0.png b/front/public/images/small/miscutils/itemDustInfusedFire/0.png deleted file mode 100644 index 508cb68978..0000000000 Binary files a/front/public/images/small/miscutils/itemDustInfusedFire/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustInfusedWater/0.png b/front/public/images/small/miscutils/itemDustInfusedWater/0.png deleted file mode 100644 index 70806ab982..0000000000 Binary files a/front/public/images/small/miscutils/itemDustInfusedWater/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustIodine/0.png b/front/public/images/small/miscutils/itemDustIodine/0.png deleted file mode 100644 index 4c3a2ac448..0000000000 Binary files a/front/public/images/small/miscutils/itemDustIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustIrarsite/0.png b/front/public/images/small/miscutils/itemDustIrarsite/0.png deleted file mode 100644 index b93a31a6d7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustKashinite/0.png b/front/public/images/small/miscutils/itemDustKashinite/0.png deleted file mode 100644 index 54d2d0963f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustKoboldite/0.png b/front/public/images/small/miscutils/itemDustKoboldite/0.png deleted file mode 100644 index ed7738fdbf..0000000000 Binary files a/front/public/images/small/miscutils/itemDustKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLFTRFuel1/0.png b/front/public/images/small/miscutils/itemDustLFTRFuel1/0.png deleted file mode 100644 index 55e9eba59f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLFTRFuel2/0.png b/front/public/images/small/miscutils/itemDustLFTRFuel2/0.png deleted file mode 100644 index 1593737d95..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLFTRFuel3/0.png b/front/public/images/small/miscutils/itemDustLFTRFuel3/0.png deleted file mode 100644 index 28db5a518e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLafiumCompound/0.png b/front/public/images/small/miscutils/itemDustLafiumCompound/0.png deleted file mode 100644 index 4de49afe44..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLafossaite/0.png b/front/public/images/small/miscutils/itemDustLafossaite/0.png deleted file mode 100644 index 95a267544d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLanthaniteCe/0.png b/front/public/images/small/miscutils/itemDustLanthaniteCe/0.png deleted file mode 100644 index 7d9dfe00db..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLanthaniteLa/0.png b/front/public/images/small/miscutils/itemDustLanthaniteLa/0.png deleted file mode 100644 index 178fd33937..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLanthaniteNd/0.png b/front/public/images/small/miscutils/itemDustLanthaniteNd/0.png deleted file mode 100644 index 5380201229..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLaurenium/0.png b/front/public/images/small/miscutils/itemDustLaurenium/0.png deleted file mode 100644 index 51632f04af..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLautarite/0.png b/front/public/images/small/miscutils/itemDustLautarite/0.png deleted file mode 100644 index 11fa405e2e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLepersonnite/0.png b/front/public/images/small/miscutils/itemDustLepersonnite/0.png deleted file mode 100644 index 655dfefe81..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLi2BeF4/0.png b/front/public/images/small/miscutils/itemDustLi2BeF4/0.png deleted file mode 100644 index acc0897a8c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLi2BeF4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLi2CO3CaOH2/0.png b/front/public/images/small/miscutils/itemDustLi2CO3CaOH2/0.png deleted file mode 100644 index acc0897a8c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLi2CO3CaOH2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLithium7/0.png b/front/public/images/small/miscutils/itemDustLithium7/0.png deleted file mode 100644 index b84a973dc1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLithiumCarbonate/0.png b/front/public/images/small/miscutils/itemDustLithiumCarbonate/0.png deleted file mode 100644 index 3e855dfbcc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLithiumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLithiumFluoride/0.png b/front/public/images/small/miscutils/itemDustLithiumFluoride/0.png deleted file mode 100644 index 7baf5a82b7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLithiumHydroperoxide/0.png b/front/public/images/small/miscutils/itemDustLithiumHydroperoxide/0.png deleted file mode 100644 index efc8f3c215..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLithiumHydroperoxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLithiumHydroxide/0.png b/front/public/images/small/miscutils/itemDustLithiumHydroxide/0.png deleted file mode 100644 index 4b7e245cf1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLithiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustLithiumPeroxide/0.png b/front/public/images/small/miscutils/itemDustLithiumPeroxide/0.png deleted file mode 100644 index 4b7e245cf1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustLithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustManureByproducts/0.png b/front/public/images/small/miscutils/itemDustManureByproducts/0.png deleted file mode 100644 index 0400b7f2fc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustManureByproducts/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustMaragingSteel250/0.png b/front/public/images/small/miscutils/itemDustMaragingSteel250/0.png deleted file mode 100644 index dc9f41649b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustMaragingSteel300/0.png b/front/public/images/small/miscutils/itemDustMaragingSteel300/0.png deleted file mode 100644 index 82c4a1ff54..0000000000 Binary files a/front/public/images/small/miscutils/itemDustMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustMaragingSteel350/0.png b/front/public/images/small/miscutils/itemDustMaragingSteel350/0.png deleted file mode 100644 index 98e5d33f53..0000000000 Binary files a/front/public/images/small/miscutils/itemDustMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustMiessiite/0.png b/front/public/images/small/miscutils/itemDustMiessiite/0.png deleted file mode 100644 index 3273d3af43..0000000000 Binary files a/front/public/images/small/miscutils/itemDustMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustMixTumbaga/0.png b/front/public/images/small/miscutils/itemDustMixTumbaga/0.png deleted file mode 100644 index 84160b86b2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustMixTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustNeptunium/0.png b/front/public/images/small/miscutils/itemDustNeptunium/0.png deleted file mode 100644 index 1ff6437062..0000000000 Binary files a/front/public/images/small/miscutils/itemDustNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustNeptuniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustNeptuniumHexafluoride/0.png deleted file mode 100644 index 8c8f699df3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustNichromite/0.png b/front/public/images/small/miscutils/itemDustNichromite/0.png deleted file mode 100644 index e215f557d8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemDustNiobiumCarbide/0.png deleted file mode 100644 index 0e9d1d9957..0000000000 Binary files a/front/public/images/small/miscutils/itemDustNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustNitinol60/0.png b/front/public/images/small/miscutils/itemDustNitinol60/0.png deleted file mode 100644 index b9d2e7e56a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustOctiron/0.png b/front/public/images/small/miscutils/itemDustOctiron/0.png deleted file mode 100644 index 373cd5bca0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustOrganicFertilizer/0.png b/front/public/images/small/miscutils/itemDustOrganicFertilizer/0.png deleted file mode 100644 index 3e855dfbcc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustOrganicFertilizer/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPerroudite/0.png b/front/public/images/small/miscutils/itemDustPerroudite/0.png deleted file mode 100644 index 3b4391b69f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPhthalicAnhydride/0.png b/front/public/images/small/miscutils/itemDustPhthalicAnhydride/0.png deleted file mode 100644 index ef85b0a91a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPhthalicAnhydride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPikyonium64B/0.png b/front/public/images/small/miscutils/itemDustPikyonium64B/0.png deleted file mode 100644 index 449285cc53..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPlutonium238/0.png b/front/public/images/small/miscutils/itemDustPlutonium238/0.png deleted file mode 100644 index 7427276d61..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPolonium/0.png b/front/public/images/small/miscutils/itemDustPolonium/0.png deleted file mode 100644 index 40acf6d266..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPolycrase/0.png b/front/public/images/small/miscutils/itemDustPolycrase/0.png deleted file mode 100644 index 6713148d7b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPotassiumNitrate/0.png b/front/public/images/small/miscutils/itemDustPotassiumNitrate/0.png deleted file mode 100644 index 7ca4b5f8dc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPotassiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPotin/0.png b/front/public/images/small/miscutils/itemDustPotin/0.png deleted file mode 100644 index bb700a6139..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPraseodymium/0.png b/front/public/images/small/miscutils/itemDustPraseodymium/0.png deleted file mode 100644 index 3b408537ec..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustPromethium/0.png b/front/public/images/small/miscutils/itemDustPromethium/0.png deleted file mode 100644 index a43c7755dd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustPromethium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustProtactinium/0.png b/front/public/images/small/miscutils/itemDustProtactinium/0.png deleted file mode 100644 index e0b0cbbbad..0000000000 Binary files a/front/public/images/small/miscutils/itemDustProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustQuantum/0.png b/front/public/images/small/miscutils/itemDustQuantum/0.png deleted file mode 100644 index d4adf5d926..0000000000 Binary files a/front/public/images/small/miscutils/itemDustQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/itemDustRadioactiveMineralMix/0.png deleted file mode 100644 index 7c5169f963..0000000000 Binary files a/front/public/images/small/miscutils/itemDustRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustRadium/0.png b/front/public/images/small/miscutils/itemDustRadium/0.png deleted file mode 100644 index 2f4693a6b8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustRhenium/0.png b/front/public/images/small/miscutils/itemDustRhenium/0.png deleted file mode 100644 index 414eaaf8df..0000000000 Binary files a/front/public/images/small/miscutils/itemDustRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustRhodium/0.png b/front/public/images/small/miscutils/itemDustRhodium/0.png deleted file mode 100644 index 6c6f287a31..0000000000 Binary files a/front/public/images/small/miscutils/itemDustRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustRhugnor/0.png b/front/public/images/small/miscutils/itemDustRhugnor/0.png deleted file mode 100644 index e8d8dd7832..0000000000 Binary files a/front/public/images/small/miscutils/itemDustRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustRunite/0.png b/front/public/images/small/miscutils/itemDustRunite/0.png deleted file mode 100644 index 7150618d79..0000000000 Binary files a/front/public/images/small/miscutils/itemDustRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustRuthenium/0.png b/front/public/images/small/miscutils/itemDustRuthenium/0.png deleted file mode 100644 index 6c6f287a31..0000000000 Binary files a/front/public/images/small/miscutils/itemDustRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSamarskiteY/0.png b/front/public/images/small/miscutils/itemDustSamarskiteY/0.png deleted file mode 100644 index f08b6d71d2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSamarskiteYb/0.png b/front/public/images/small/miscutils/itemDustSamarskiteYb/0.png deleted file mode 100644 index 54e33557f5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSelenium/0.png b/front/public/images/small/miscutils/itemDustSelenium/0.png deleted file mode 100644 index 4b0c2a51fc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSeleniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustSeleniumHexafluoride/0.png deleted file mode 100644 index 8dc7d3be7f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSiliconCarbide/0.png b/front/public/images/small/miscutils/itemDustSiliconCarbide/0.png deleted file mode 100644 index 6b9ef971e9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemDustSmallAbyssalAlloy/0.png deleted file mode 100644 index edb3bc1464..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemDustSmallAdvancedNitinol/0.png deleted file mode 100644 index d9e70b9d9e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAgarditeCd/0.png b/front/public/images/small/miscutils/itemDustSmallAgarditeCd/0.png deleted file mode 100644 index 86539e9449..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAgarditeLa/0.png b/front/public/images/small/miscutils/itemDustSmallAgarditeLa/0.png deleted file mode 100644 index ac39a1a72b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAgarditeNd/0.png b/front/public/images/small/miscutils/itemDustSmallAgarditeNd/0.png deleted file mode 100644 index b819a64108..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAgarditeY/0.png b/front/public/images/small/miscutils/itemDustSmallAgarditeY/0.png deleted file mode 100644 index 9a88a9e405..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAlburnite/0.png b/front/public/images/small/miscutils/itemDustSmallAlburnite/0.png deleted file mode 100644 index 564e94be0b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAmmoniumBifluoride/0.png b/front/public/images/small/miscutils/itemDustSmallAmmoniumBifluoride/0.png deleted file mode 100644 index 89a3710bda..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAmmoniumNitrate/0.png b/front/public/images/small/miscutils/itemDustSmallAmmoniumNitrate/0.png deleted file mode 100644 index 89096d4418..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAmmoniumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAncientGranite/0.png b/front/public/images/small/miscutils/itemDustSmallAncientGranite/0.png deleted file mode 100644 index 9ebf90086b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallArcanite/0.png b/front/public/images/small/miscutils/itemDustSmallArcanite/0.png deleted file mode 100644 index 90b552f973..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemDustSmallArceusAlloy2B/0.png deleted file mode 100644 index 189b3b2d19..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallAstralTitanium/0.png b/front/public/images/small/miscutils/itemDustSmallAstralTitanium/0.png deleted file mode 100644 index 71bd9ee9d5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBabbitAlloy/0.png b/front/public/images/small/miscutils/itemDustSmallBabbitAlloy/0.png deleted file mode 100644 index 712f82245f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBariteRd/0.png b/front/public/images/small/miscutils/itemDustSmallBariteRd/0.png deleted file mode 100644 index 01697a9eb8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBerylliumFluoride/0.png b/front/public/images/small/miscutils/itemDustSmallBerylliumFluoride/0.png deleted file mode 100644 index ac736a60e6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBerylliumHydroxide/0.png b/front/public/images/small/miscutils/itemDustSmallBerylliumHydroxide/0.png deleted file mode 100644 index 8a25770245..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBlackMetal/0.png b/front/public/images/small/miscutils/itemDustSmallBlackMetal/0.png deleted file mode 100644 index 1a4919358f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBlackTitanium/0.png b/front/public/images/small/miscutils/itemDustSmallBlackTitanium/0.png deleted file mode 100644 index 668699f146..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBloodSteel/0.png b/front/public/images/small/miscutils/itemDustSmallBloodSteel/0.png deleted file mode 100644 index 8a839abcb7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallBotmium/0.png b/front/public/images/small/miscutils/itemDustSmallBotmium/0.png deleted file mode 100644 index 320aca2378..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCalciumCarbonate/0.png b/front/public/images/small/miscutils/itemDustSmallCalciumCarbonate/0.png deleted file mode 100644 index b3f49bc877..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCalciumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCalciumChloride/0.png b/front/public/images/small/miscutils/itemDustSmallCalciumChloride/0.png deleted file mode 100644 index a359b31862..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCalciumChloride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCalciumHydroxide/0.png b/front/public/images/small/miscutils/itemDustSmallCalciumHydroxide/0.png deleted file mode 100644 index b3f49bc877..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCalciumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCalifornium/0.png b/front/public/images/small/miscutils/itemDustSmallCalifornium/0.png deleted file mode 100644 index 58c94f7c2e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCelestialTungsten/0.png b/front/public/images/small/miscutils/itemDustSmallCelestialTungsten/0.png deleted file mode 100644 index 826966c0ca..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCerite/0.png b/front/public/images/small/miscutils/itemDustSmallCerite/0.png deleted file mode 100644 index afea363909..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallChromaticGlass/0.png b/front/public/images/small/miscutils/itemDustSmallChromaticGlass/0.png deleted file mode 100644 index 607df60204..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCinobiteA243/0.png b/front/public/images/small/miscutils/itemDustSmallCinobiteA243/0.png deleted file mode 100644 index 230e9df631..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallComancheite/0.png b/front/public/images/small/miscutils/itemDustSmallComancheite/0.png deleted file mode 100644 index 30cf1ee89f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCookedZrCl4/0.png b/front/public/images/small/miscutils/itemDustSmallCookedZrCl4/0.png deleted file mode 100644 index b922860602..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCookedZrCl4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCopperIISulfate/0.png b/front/public/images/small/miscutils/itemDustSmallCopperIISulfate/0.png deleted file mode 100644 index 96515a078f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCopperIISulfate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCopperIISulfatePentahydrate/0.png b/front/public/images/small/miscutils/itemDustSmallCopperIISulfatePentahydrate/0.png deleted file mode 100644 index 2f66bb493d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCopperIISulfatePentahydrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCrocoite/0.png b/front/public/images/small/miscutils/itemDustSmallCrocoite/0.png deleted file mode 100644 index 88a48ab2b4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCryoliteF/0.png b/front/public/images/small/miscutils/itemDustSmallCryoliteF/0.png deleted file mode 100644 index d13d81a5e0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCurium/0.png b/front/public/images/small/miscutils/itemDustSmallCurium/0.png deleted file mode 100644 index 6ae3884b02..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallCyanoaceticAcid/0.png b/front/public/images/small/miscutils/itemDustSmallCyanoaceticAcid/0.png deleted file mode 100644 index f1187b932c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallCyanoaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallDecayedRadium226/0.png b/front/public/images/small/miscutils/itemDustSmallDecayedRadium226/0.png deleted file mode 100644 index 4512ff32f3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallDecayedRadium226/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallDemicheleiteBr/0.png b/front/public/images/small/miscutils/itemDustSmallDemicheleiteBr/0.png deleted file mode 100644 index 352157e923..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallDirt/0.png b/front/public/images/small/miscutils/itemDustSmallDirt/0.png deleted file mode 100644 index d633d399f4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallDirt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallDragonblood/0.png b/front/public/images/small/miscutils/itemDustSmallDragonblood/0.png deleted file mode 100644 index f533469a86..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallDysprosium/0.png b/front/public/images/small/miscutils/itemDustSmallDysprosium/0.png deleted file mode 100644 index b922860602..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallEglinSteel/0.png b/front/public/images/small/miscutils/itemDustSmallEglinSteel/0.png deleted file mode 100644 index 7d80ae2191..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallEglinSteelBaseCompound/0.png b/front/public/images/small/miscutils/itemDustSmallEglinSteelBaseCompound/0.png deleted file mode 100644 index 1bf8a1c869..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallEnergyCrystal/0.png b/front/public/images/small/miscutils/itemDustSmallEnergyCrystal/0.png deleted file mode 100644 index 7e0875549e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallErbium/0.png b/front/public/images/small/miscutils/itemDustSmallErbium/0.png deleted file mode 100644 index fbf999b27d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallFermium/0.png b/front/public/images/small/miscutils/itemDustSmallFermium/0.png deleted file mode 100644 index 88ea808a5e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallFlorencite/0.png b/front/public/images/small/miscutils/itemDustSmallFlorencite/0.png deleted file mode 100644 index 3ec4bf3789..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallFluorcaphite/0.png b/front/public/images/small/miscutils/itemDustSmallFluorcaphite/0.png deleted file mode 100644 index 266a5672a5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallFluoriteF/0.png b/front/public/images/small/miscutils/itemDustSmallFluoriteF/0.png deleted file mode 100644 index e170977acb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallFormaldehydeCatalyst/0.png b/front/public/images/small/miscutils/itemDustSmallFormaldehydeCatalyst/0.png deleted file mode 100644 index b8dda82052..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallFormaldehydeCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallGadoliniteCe/0.png b/front/public/images/small/miscutils/itemDustSmallGadoliniteCe/0.png deleted file mode 100644 index c01d853f8c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallGadoliniteY/0.png b/front/public/images/small/miscutils/itemDustSmallGadoliniteY/0.png deleted file mode 100644 index c01d853f8c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallGeikielite/0.png b/front/public/images/small/miscutils/itemDustSmallGeikielite/0.png deleted file mode 100644 index 3c4b5fa233..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallGermanium/0.png b/front/public/images/small/miscutils/itemDustSmallGermanium/0.png deleted file mode 100644 index 96515a078f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallGreenockite/0.png b/front/public/images/small/miscutils/itemDustSmallGreenockite/0.png deleted file mode 100644 index b9e829812d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallGrisium/0.png b/front/public/images/small/miscutils/itemDustSmallGrisium/0.png deleted file mode 100644 index 341c406be9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallGypsum/0.png b/front/public/images/small/miscutils/itemDustSmallGypsum/0.png deleted file mode 100644 index b3f49bc877..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallGypsum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHG1223/0.png b/front/public/images/small/miscutils/itemDustSmallHG1223/0.png deleted file mode 100644 index 9ff6823cbc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHS188A/0.png b/front/public/images/small/miscutils/itemDustSmallHS188A/0.png deleted file mode 100644 index 0e86094140..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHafnium/0.png b/front/public/images/small/miscutils/itemDustSmallHafnium/0.png deleted file mode 100644 index 49ac9ffd84..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHastelloyC276/0.png b/front/public/images/small/miscutils/itemDustSmallHastelloyC276/0.png deleted file mode 100644 index f671eef868..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHastelloyN/0.png b/front/public/images/small/miscutils/itemDustSmallHastelloyN/0.png deleted file mode 100644 index 7712b4f3cf..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHastelloyW/0.png b/front/public/images/small/miscutils/itemDustSmallHastelloyW/0.png deleted file mode 100644 index b3b979e527..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHastelloyX/0.png b/front/public/images/small/miscutils/itemDustSmallHastelloyX/0.png deleted file mode 100644 index e0bf8cafd6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemDustSmallHeLiCoPtEr/0.png deleted file mode 100644 index 17c6774da3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHibonite/0.png b/front/public/images/small/miscutils/itemDustSmallHibonite/0.png deleted file mode 100644 index 28049e2bcc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHoneaite/0.png b/front/public/images/small/miscutils/itemDustSmallHoneaite/0.png deleted file mode 100644 index 30fa2277ee..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallHypogen/0.png b/front/public/images/small/miscutils/itemDustSmallHypogen/0.png deleted file mode 100644 index 98ee91c469..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallIncoloy020/0.png b/front/public/images/small/miscutils/itemDustSmallIncoloy020/0.png deleted file mode 100644 index 5cae021b32..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallIncoloyDS/0.png b/front/public/images/small/miscutils/itemDustSmallIncoloyDS/0.png deleted file mode 100644 index 304708676f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallIncoloyMA956/0.png b/front/public/images/small/miscutils/itemDustSmallIncoloyMA956/0.png deleted file mode 100644 index 28994179fd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallInconel625/0.png b/front/public/images/small/miscutils/itemDustSmallInconel625/0.png deleted file mode 100644 index 092e97f71e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallInconel690/0.png b/front/public/images/small/miscutils/itemDustSmallInconel690/0.png deleted file mode 100644 index 6f2fe01739..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallInconel792/0.png b/front/public/images/small/miscutils/itemDustSmallInconel792/0.png deleted file mode 100644 index be55031cbf..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallIndalloy140/0.png b/front/public/images/small/miscutils/itemDustSmallIndalloy140/0.png deleted file mode 100644 index 72fc21307f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallIodine/0.png b/front/public/images/small/miscutils/itemDustSmallIodine/0.png deleted file mode 100644 index 7cebcb174c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallIrarsite/0.png b/front/public/images/small/miscutils/itemDustSmallIrarsite/0.png deleted file mode 100644 index d07ca74791..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallKashinite/0.png b/front/public/images/small/miscutils/itemDustSmallKashinite/0.png deleted file mode 100644 index 96365dd19a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallKoboldite/0.png b/front/public/images/small/miscutils/itemDustSmallKoboldite/0.png deleted file mode 100644 index 71d3c1ab90..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLFTRFuel1/0.png b/front/public/images/small/miscutils/itemDustSmallLFTRFuel1/0.png deleted file mode 100644 index 07f4958359..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLFTRFuel2/0.png b/front/public/images/small/miscutils/itemDustSmallLFTRFuel2/0.png deleted file mode 100644 index 84081cfd01..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLFTRFuel3/0.png b/front/public/images/small/miscutils/itemDustSmallLFTRFuel3/0.png deleted file mode 100644 index 201b0f7843..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLafiumCompound/0.png b/front/public/images/small/miscutils/itemDustSmallLafiumCompound/0.png deleted file mode 100644 index 657dcc685d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLafossaite/0.png b/front/public/images/small/miscutils/itemDustSmallLafossaite/0.png deleted file mode 100644 index eb362fdac9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLanthaniteCe/0.png b/front/public/images/small/miscutils/itemDustSmallLanthaniteCe/0.png deleted file mode 100644 index f96169dc92..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLanthaniteLa/0.png b/front/public/images/small/miscutils/itemDustSmallLanthaniteLa/0.png deleted file mode 100644 index a1fefe1daa..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLanthaniteNd/0.png b/front/public/images/small/miscutils/itemDustSmallLanthaniteNd/0.png deleted file mode 100644 index 1fbe4e41ef..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLaurenium/0.png b/front/public/images/small/miscutils/itemDustSmallLaurenium/0.png deleted file mode 100644 index 28b34fa864..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLautarite/0.png b/front/public/images/small/miscutils/itemDustSmallLautarite/0.png deleted file mode 100644 index 132b224e0c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLepersonnite/0.png b/front/public/images/small/miscutils/itemDustSmallLepersonnite/0.png deleted file mode 100644 index 4ee89ec109..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLi2BeF4/0.png b/front/public/images/small/miscutils/itemDustSmallLi2BeF4/0.png deleted file mode 100644 index b3f49bc877..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLi2BeF4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLi2CO3CaOH2/0.png b/front/public/images/small/miscutils/itemDustSmallLi2CO3CaOH2/0.png deleted file mode 100644 index b3f49bc877..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLi2CO3CaOH2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLithium7/0.png b/front/public/images/small/miscutils/itemDustSmallLithium7/0.png deleted file mode 100644 index cb91550a4a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLithiumCarbonate/0.png b/front/public/images/small/miscutils/itemDustSmallLithiumCarbonate/0.png deleted file mode 100644 index cd7c3945b5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLithiumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLithiumFluoride/0.png b/front/public/images/small/miscutils/itemDustSmallLithiumFluoride/0.png deleted file mode 100644 index f1f4d1e12b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLithiumHydroperoxide/0.png b/front/public/images/small/miscutils/itemDustSmallLithiumHydroperoxide/0.png deleted file mode 100644 index 944eb9d592..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLithiumHydroperoxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLithiumHydroxide/0.png b/front/public/images/small/miscutils/itemDustSmallLithiumHydroxide/0.png deleted file mode 100644 index 7e4c181e14..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLithiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallLithiumPeroxide/0.png b/front/public/images/small/miscutils/itemDustSmallLithiumPeroxide/0.png deleted file mode 100644 index 7e4c181e14..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallLithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallManureByproducts/0.png b/front/public/images/small/miscutils/itemDustSmallManureByproducts/0.png deleted file mode 100644 index 7d7eee2881..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallManureByproducts/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallMaragingSteel250/0.png b/front/public/images/small/miscutils/itemDustSmallMaragingSteel250/0.png deleted file mode 100644 index 9344a05a71..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallMaragingSteel300/0.png b/front/public/images/small/miscutils/itemDustSmallMaragingSteel300/0.png deleted file mode 100644 index 044d4199d2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallMaragingSteel350/0.png b/front/public/images/small/miscutils/itemDustSmallMaragingSteel350/0.png deleted file mode 100644 index ed1f493839..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallMiessiite/0.png b/front/public/images/small/miscutils/itemDustSmallMiessiite/0.png deleted file mode 100644 index f59d24ddc7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallMixTumbaga/0.png b/front/public/images/small/miscutils/itemDustSmallMixTumbaga/0.png deleted file mode 100644 index dce450fb32..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallMixTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallNeptunium/0.png b/front/public/images/small/miscutils/itemDustSmallNeptunium/0.png deleted file mode 100644 index c340fcbcd8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallNeptuniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallNeptuniumHexafluoride/0.png deleted file mode 100644 index 5b98dcb8c9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallNichromite/0.png b/front/public/images/small/miscutils/itemDustSmallNichromite/0.png deleted file mode 100644 index 1dd35fec8a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemDustSmallNiobiumCarbide/0.png deleted file mode 100644 index 044400245c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallNitinol60/0.png b/front/public/images/small/miscutils/itemDustSmallNitinol60/0.png deleted file mode 100644 index da62defa51..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallOctiron/0.png b/front/public/images/small/miscutils/itemDustSmallOctiron/0.png deleted file mode 100644 index 41eab95980..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallOrganicFertilizer/0.png b/front/public/images/small/miscutils/itemDustSmallOrganicFertilizer/0.png deleted file mode 100644 index cd7c3945b5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallOrganicFertilizer/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPerroudite/0.png b/front/public/images/small/miscutils/itemDustSmallPerroudite/0.png deleted file mode 100644 index 524cfd2a58..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPhthalicAnhydride/0.png b/front/public/images/small/miscutils/itemDustSmallPhthalicAnhydride/0.png deleted file mode 100644 index f07375758c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPhthalicAnhydride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPikyonium64B/0.png b/front/public/images/small/miscutils/itemDustSmallPikyonium64B/0.png deleted file mode 100644 index 1ea54a8087..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPlutonium238/0.png b/front/public/images/small/miscutils/itemDustSmallPlutonium238/0.png deleted file mode 100644 index 92487401a6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPolonium/0.png b/front/public/images/small/miscutils/itemDustSmallPolonium/0.png deleted file mode 100644 index 89260bba4c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPolycrase/0.png b/front/public/images/small/miscutils/itemDustSmallPolycrase/0.png deleted file mode 100644 index 6c5d2f321a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPotassiumNitrate/0.png b/front/public/images/small/miscutils/itemDustSmallPotassiumNitrate/0.png deleted file mode 100644 index d2c9a21085..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPotassiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPotin/0.png b/front/public/images/small/miscutils/itemDustSmallPotin/0.png deleted file mode 100644 index aef5ac8021..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPraseodymium/0.png b/front/public/images/small/miscutils/itemDustSmallPraseodymium/0.png deleted file mode 100644 index 818b56e592..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallPromethium/0.png b/front/public/images/small/miscutils/itemDustSmallPromethium/0.png deleted file mode 100644 index ee212680a2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallPromethium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallProtactinium/0.png b/front/public/images/small/miscutils/itemDustSmallProtactinium/0.png deleted file mode 100644 index f20a19f2d0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallQuantum/0.png b/front/public/images/small/miscutils/itemDustSmallQuantum/0.png deleted file mode 100644 index fe12b90a5b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/itemDustSmallRadioactiveMineralMix/0.png deleted file mode 100644 index d33bf8ad16..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallRadium/0.png b/front/public/images/small/miscutils/itemDustSmallRadium/0.png deleted file mode 100644 index 1e6e847859..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallRhenium/0.png b/front/public/images/small/miscutils/itemDustSmallRhenium/0.png deleted file mode 100644 index e05aa45d94..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallRhodium/0.png b/front/public/images/small/miscutils/itemDustSmallRhodium/0.png deleted file mode 100644 index 3fdadf3ee2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallRhugnor/0.png b/front/public/images/small/miscutils/itemDustSmallRhugnor/0.png deleted file mode 100644 index ddba028c7f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallRunite/0.png b/front/public/images/small/miscutils/itemDustSmallRunite/0.png deleted file mode 100644 index 2b3374b64f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallRuthenium/0.png b/front/public/images/small/miscutils/itemDustSmallRuthenium/0.png deleted file mode 100644 index 3fdadf3ee2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSamarskiteY/0.png b/front/public/images/small/miscutils/itemDustSmallSamarskiteY/0.png deleted file mode 100644 index 33ab4e10a9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSamarskiteYb/0.png b/front/public/images/small/miscutils/itemDustSmallSamarskiteYb/0.png deleted file mode 100644 index 83d1b1b625..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSelenium/0.png b/front/public/images/small/miscutils/itemDustSmallSelenium/0.png deleted file mode 100644 index 32c749a76d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSeleniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallSeleniumHexafluoride/0.png deleted file mode 100644 index 7ae800186f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSiliconCarbide/0.png b/front/public/images/small/miscutils/itemDustSmallSiliconCarbide/0.png deleted file mode 100644 index b742e9ef33..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSodiumCyanide/0.png b/front/public/images/small/miscutils/itemDustSmallSodiumCyanide/0.png deleted file mode 100644 index a359b31862..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSodiumCyanide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSodiumFluoride/0.png b/front/public/images/small/miscutils/itemDustSmallSodiumFluoride/0.png deleted file mode 100644 index c88eaef807..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallSodiumNitrate/0.png b/front/public/images/small/miscutils/itemDustSmallSodiumNitrate/0.png deleted file mode 100644 index ddb54390a5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallSodiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallStaballoy/0.png b/front/public/images/small/miscutils/itemDustSmallStaballoy/0.png deleted file mode 100644 index 640a90ec9b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallStellite/0.png b/front/public/images/small/miscutils/itemDustSmallStellite/0.png deleted file mode 100644 index fa243cadda..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallStrontium/0.png b/front/public/images/small/miscutils/itemDustSmallStrontium/0.png deleted file mode 100644 index 944eb466db..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallStrontiumHydroxide/0.png b/front/public/images/small/miscutils/itemDustSmallStrontiumHydroxide/0.png deleted file mode 100644 index ef1bf6eb03..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallStrontiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallStrontiumOxide/0.png b/front/public/images/small/miscutils/itemDustSmallStrontiumOxide/0.png deleted file mode 100644 index 0807321aa5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallStrontiumOxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTalonite/0.png b/front/public/images/small/miscutils/itemDustSmallTalonite/0.png deleted file mode 100644 index b36945582a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTantalloy60/0.png b/front/public/images/small/miscutils/itemDustSmallTantalloy60/0.png deleted file mode 100644 index 04d082804c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTantalloy61/0.png b/front/public/images/small/miscutils/itemDustSmallTantalloy61/0.png deleted file mode 100644 index 504d4cbd9d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTantalumCarbide/0.png b/front/public/images/small/miscutils/itemDustSmallTantalumCarbide/0.png deleted file mode 100644 index 8804ffa840..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTechnetiumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallTechnetiumHexafluoride/0.png deleted file mode 100644 index 42ec18c555..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTeflon/0.png b/front/public/images/small/miscutils/itemDustSmallTeflon/0.png deleted file mode 100644 index a87aad41d2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTellurium/0.png b/front/public/images/small/miscutils/itemDustSmallTellurium/0.png deleted file mode 100644 index 3ee57c2ba8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallThallium/0.png b/front/public/images/small/miscutils/itemDustSmallThallium/0.png deleted file mode 100644 index f07375758c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallThorium232/0.png b/front/public/images/small/miscutils/itemDustSmallThorium232/0.png deleted file mode 100644 index 0bccafa07d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallThoriumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallThoriumHexafluoride/0.png deleted file mode 100644 index af2954fb3d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallThoriumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallThoriumTetrafluoride/0.png deleted file mode 100644 index 454e0fc92b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTitanite/0.png b/front/public/images/small/miscutils/itemDustSmallTitanite/0.png deleted file mode 100644 index 550eecf018..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTitansteel/0.png b/front/public/images/small/miscutils/itemDustSmallTitansteel/0.png deleted file mode 100644 index 5949aafd86..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemDustSmallTriniumNaquadahAlloy/0.png deleted file mode 100644 index 35dae3a9ef..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemDustSmallTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 0a349139ef..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemDustSmallTriniumTitaniumAlloy/0.png deleted file mode 100644 index a36f9ca6e0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTumbaga/0.png b/front/public/images/small/miscutils/itemDustSmallTumbaga/0.png deleted file mode 100644 index 248ae87966..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemDustSmallTungstenTitaniumCarbide/0.png deleted file mode 100644 index f652a2e57a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallUN18Fertiliser/0.png b/front/public/images/small/miscutils/itemDustSmallUN18Fertiliser/0.png deleted file mode 100644 index 146a7c42cb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallUN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallUN32Fertiliser/0.png b/front/public/images/small/miscutils/itemDustSmallUN32Fertiliser/0.png deleted file mode 100644 index cb18f58991..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallUN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallUranium232/0.png b/front/public/images/small/miscutils/itemDustSmallUranium232/0.png deleted file mode 100644 index b950e37bd2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallUranium233/0.png b/front/public/images/small/miscutils/itemDustSmallUranium233/0.png deleted file mode 100644 index 83610214eb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallUraniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallUraniumHexafluoride/0.png deleted file mode 100644 index 6a03702a4d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallUraniumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallUraniumTetrafluoride/0.png deleted file mode 100644 index 6a03702a4d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallWatertightSteel/0.png b/front/public/images/small/miscutils/itemDustSmallWatertightSteel/0.png deleted file mode 100644 index 646bb88482..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallWhiteMetal/0.png b/front/public/images/small/miscutils/itemDustSmallWhiteMetal/0.png deleted file mode 100644 index 9185d20ad0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallWood'sGlass/0.png b/front/public/images/small/miscutils/itemDustSmallWood'sGlass/0.png deleted file mode 100644 index f2f6f3acdd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallWood'sGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallXenotime/0.png b/front/public/images/small/miscutils/itemDustSmallXenotime/0.png deleted file mode 100644 index 4f464c248f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallYttriaite/0.png b/front/public/images/small/miscutils/itemDustSmallYttriaite/0.png deleted file mode 100644 index dd462b954f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallYttrialite/0.png b/front/public/images/small/miscutils/itemDustSmallYttrialite/0.png deleted file mode 100644 index 1f7d373d49..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallYttrocerite/0.png b/front/public/images/small/miscutils/itemDustSmallYttrocerite/0.png deleted file mode 100644 index cdafea11a0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZeron100/0.png b/front/public/images/small/miscutils/itemDustSmallZeron100/0.png deleted file mode 100644 index 9baa47dde2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZimbabweite/0.png b/front/public/images/small/miscutils/itemDustSmallZimbabweite/0.png deleted file mode 100644 index c02b534b77..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZircon/0.png b/front/public/images/small/miscutils/itemDustSmallZircon/0.png deleted file mode 100644 index c43f060c44..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZirconium/0.png b/front/public/images/small/miscutils/itemDustSmallZirconium/0.png deleted file mode 100644 index d7db2a4a9a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemDustSmallZirconiumCarbide/0.png deleted file mode 100644 index d6d929e355..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZirconiumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustSmallZirconiumTetrafluoride/0.png deleted file mode 100644 index 6d5a3f99d8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZirconolite/0.png b/front/public/images/small/miscutils/itemDustSmallZirconolite/0.png deleted file mode 100644 index 1488964309..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZircophyllite/0.png b/front/public/images/small/miscutils/itemDustSmallZircophyllite/0.png deleted file mode 100644 index 4979e602fb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZirkelite/0.png b/front/public/images/small/miscutils/itemDustSmallZirkelite/0.png deleted file mode 100644 index 017576ccba..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSmallZrCl4/0.png b/front/public/images/small/miscutils/itemDustSmallZrCl4/0.png deleted file mode 100644 index b922860602..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSmallZrCl4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSodiumCyanide/0.png b/front/public/images/small/miscutils/itemDustSodiumCyanide/0.png deleted file mode 100644 index 10e56533b7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSodiumCyanide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSodiumFluoride/0.png b/front/public/images/small/miscutils/itemDustSodiumFluoride/0.png deleted file mode 100644 index 41e275c1a1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustSodiumNitrate/0.png b/front/public/images/small/miscutils/itemDustSodiumNitrate/0.png deleted file mode 100644 index 28f2fc56bd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustSodiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustStaballoy/0.png b/front/public/images/small/miscutils/itemDustStaballoy/0.png deleted file mode 100644 index 8390545ce1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustStellite/0.png b/front/public/images/small/miscutils/itemDustStellite/0.png deleted file mode 100644 index 46b327a9dd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustStrontium/0.png b/front/public/images/small/miscutils/itemDustStrontium/0.png deleted file mode 100644 index 02258c9cfe..0000000000 Binary files a/front/public/images/small/miscutils/itemDustStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustStrontiumHydroxide/0.png b/front/public/images/small/miscutils/itemDustStrontiumHydroxide/0.png deleted file mode 100644 index 0d59f761bb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustStrontiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustStrontiumOxide/0.png b/front/public/images/small/miscutils/itemDustStrontiumOxide/0.png deleted file mode 100644 index 027ba62ea5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustStrontiumOxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTalonite/0.png b/front/public/images/small/miscutils/itemDustTalonite/0.png deleted file mode 100644 index 8722614a0f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTantalloy60/0.png b/front/public/images/small/miscutils/itemDustTantalloy60/0.png deleted file mode 100644 index 4b926acaf8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTantalloy61/0.png b/front/public/images/small/miscutils/itemDustTantalloy61/0.png deleted file mode 100644 index 072d8f142f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTantalumCarbide/0.png b/front/public/images/small/miscutils/itemDustTantalumCarbide/0.png deleted file mode 100644 index fdc8811bf7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTechnetiumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustTechnetiumHexafluoride/0.png deleted file mode 100644 index 76d68a075f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTeflon/0.png b/front/public/images/small/miscutils/itemDustTeflon/0.png deleted file mode 100644 index 030035268d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTellurium/0.png b/front/public/images/small/miscutils/itemDustTellurium/0.png deleted file mode 100644 index f3ab34bc5b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustThallium/0.png b/front/public/images/small/miscutils/itemDustThallium/0.png deleted file mode 100644 index def14f4d3d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustThorium232/0.png b/front/public/images/small/miscutils/itemDustThorium232/0.png deleted file mode 100644 index 66edf3338f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustThoriumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustThoriumHexafluoride/0.png deleted file mode 100644 index fc3c7a4248..0000000000 Binary files a/front/public/images/small/miscutils/itemDustThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustThoriumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustThoriumTetrafluoride/0.png deleted file mode 100644 index 0fb40e44c0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemDustTinyAbyssalAlloy/0.png deleted file mode 100644 index 95ca662550..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemDustTinyAdvancedNitinol/0.png deleted file mode 100644 index 71bf19b611..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAgarditeCd/0.png b/front/public/images/small/miscutils/itemDustTinyAgarditeCd/0.png deleted file mode 100644 index 070305de33..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAgarditeLa/0.png b/front/public/images/small/miscutils/itemDustTinyAgarditeLa/0.png deleted file mode 100644 index a3d6e4a849..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAgarditeNd/0.png b/front/public/images/small/miscutils/itemDustTinyAgarditeNd/0.png deleted file mode 100644 index c217c60eb9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAgarditeY/0.png b/front/public/images/small/miscutils/itemDustTinyAgarditeY/0.png deleted file mode 100644 index 828c4ef616..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAlburnite/0.png b/front/public/images/small/miscutils/itemDustTinyAlburnite/0.png deleted file mode 100644 index 438295bcce..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAmmoniumBifluoride/0.png b/front/public/images/small/miscutils/itemDustTinyAmmoniumBifluoride/0.png deleted file mode 100644 index 26eb2b5d68..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAmmoniumBifluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAmmoniumNitrate/0.png b/front/public/images/small/miscutils/itemDustTinyAmmoniumNitrate/0.png deleted file mode 100644 index 5f0a012163..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAmmoniumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAncientGranite/0.png b/front/public/images/small/miscutils/itemDustTinyAncientGranite/0.png deleted file mode 100644 index c74b072d55..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyArcanite/0.png b/front/public/images/small/miscutils/itemDustTinyArcanite/0.png deleted file mode 100644 index ff0611ea5c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemDustTinyArceusAlloy2B/0.png deleted file mode 100644 index f067f8a10d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyAstralTitanium/0.png b/front/public/images/small/miscutils/itemDustTinyAstralTitanium/0.png deleted file mode 100644 index 0b6772ea50..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBabbitAlloy/0.png b/front/public/images/small/miscutils/itemDustTinyBabbitAlloy/0.png deleted file mode 100644 index fd964880b0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBariteRd/0.png b/front/public/images/small/miscutils/itemDustTinyBariteRd/0.png deleted file mode 100644 index fae31c3694..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBerylliumFluoride/0.png b/front/public/images/small/miscutils/itemDustTinyBerylliumFluoride/0.png deleted file mode 100644 index 6d28af37c3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBerylliumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBerylliumHydroxide/0.png b/front/public/images/small/miscutils/itemDustTinyBerylliumHydroxide/0.png deleted file mode 100644 index 99815c34f9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBerylliumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBlackMetal/0.png b/front/public/images/small/miscutils/itemDustTinyBlackMetal/0.png deleted file mode 100644 index 8e86d6fd8a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBlackTitanium/0.png b/front/public/images/small/miscutils/itemDustTinyBlackTitanium/0.png deleted file mode 100644 index 49e9c65bcd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBloodSteel/0.png b/front/public/images/small/miscutils/itemDustTinyBloodSteel/0.png deleted file mode 100644 index cb81523152..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyBotmium/0.png b/front/public/images/small/miscutils/itemDustTinyBotmium/0.png deleted file mode 100644 index 9b7ae73466..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCalciumCarbonate/0.png b/front/public/images/small/miscutils/itemDustTinyCalciumCarbonate/0.png deleted file mode 100644 index 19c98c18b1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCalciumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCalciumChloride/0.png b/front/public/images/small/miscutils/itemDustTinyCalciumChloride/0.png deleted file mode 100644 index d08218e860..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCalciumChloride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCalciumHydroxide/0.png b/front/public/images/small/miscutils/itemDustTinyCalciumHydroxide/0.png deleted file mode 100644 index 19c98c18b1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCalciumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCalifornium/0.png b/front/public/images/small/miscutils/itemDustTinyCalifornium/0.png deleted file mode 100644 index 8a3e6cd607..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCelestialTungsten/0.png b/front/public/images/small/miscutils/itemDustTinyCelestialTungsten/0.png deleted file mode 100644 index feb505b0c9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCerite/0.png b/front/public/images/small/miscutils/itemDustTinyCerite/0.png deleted file mode 100644 index 7e813e7aa0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyChromaticGlass/0.png b/front/public/images/small/miscutils/itemDustTinyChromaticGlass/0.png deleted file mode 100644 index e59e578922..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCinobiteA243/0.png b/front/public/images/small/miscutils/itemDustTinyCinobiteA243/0.png deleted file mode 100644 index 58275546a4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyComancheite/0.png b/front/public/images/small/miscutils/itemDustTinyComancheite/0.png deleted file mode 100644 index a9edc81552..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCookedZrCl4/0.png b/front/public/images/small/miscutils/itemDustTinyCookedZrCl4/0.png deleted file mode 100644 index 571325207f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCookedZrCl4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCopperIISulfate/0.png b/front/public/images/small/miscutils/itemDustTinyCopperIISulfate/0.png deleted file mode 100644 index 1249fed020..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCopperIISulfate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCopperIISulfatePentahydrate/0.png b/front/public/images/small/miscutils/itemDustTinyCopperIISulfatePentahydrate/0.png deleted file mode 100644 index 6b9aa71f8a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCopperIISulfatePentahydrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCrocoite/0.png b/front/public/images/small/miscutils/itemDustTinyCrocoite/0.png deleted file mode 100644 index 45ec32ce62..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCryoliteF/0.png b/front/public/images/small/miscutils/itemDustTinyCryoliteF/0.png deleted file mode 100644 index 4a74c5c01c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCurium/0.png b/front/public/images/small/miscutils/itemDustTinyCurium/0.png deleted file mode 100644 index 6044565190..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyCyanoaceticAcid/0.png b/front/public/images/small/miscutils/itemDustTinyCyanoaceticAcid/0.png deleted file mode 100644 index ec669eb3c0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyCyanoaceticAcid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyDecayedRadium226/0.png b/front/public/images/small/miscutils/itemDustTinyDecayedRadium226/0.png deleted file mode 100644 index 51963a466c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyDecayedRadium226/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyDemicheleiteBr/0.png b/front/public/images/small/miscutils/itemDustTinyDemicheleiteBr/0.png deleted file mode 100644 index a1371aa9d4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyDirt/0.png b/front/public/images/small/miscutils/itemDustTinyDirt/0.png deleted file mode 100644 index caf6a4af78..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyDirt/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyDragonblood/0.png b/front/public/images/small/miscutils/itemDustTinyDragonblood/0.png deleted file mode 100644 index e9b7a0a91a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyDysprosium/0.png b/front/public/images/small/miscutils/itemDustTinyDysprosium/0.png deleted file mode 100644 index 571325207f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyEglinSteel/0.png b/front/public/images/small/miscutils/itemDustTinyEglinSteel/0.png deleted file mode 100644 index 272d94401d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyEglinSteelBaseCompound/0.png b/front/public/images/small/miscutils/itemDustTinyEglinSteelBaseCompound/0.png deleted file mode 100644 index cd49bde707..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyEglinSteelBaseCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyEnergyCrystal/0.png b/front/public/images/small/miscutils/itemDustTinyEnergyCrystal/0.png deleted file mode 100644 index f9ddf58d66..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyErbium/0.png b/front/public/images/small/miscutils/itemDustTinyErbium/0.png deleted file mode 100644 index de8584538d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyFermium/0.png b/front/public/images/small/miscutils/itemDustTinyFermium/0.png deleted file mode 100644 index 0f4b162132..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyFlorencite/0.png b/front/public/images/small/miscutils/itemDustTinyFlorencite/0.png deleted file mode 100644 index e06c334154..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyFluorcaphite/0.png b/front/public/images/small/miscutils/itemDustTinyFluorcaphite/0.png deleted file mode 100644 index d530ab9333..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyFluoriteF/0.png b/front/public/images/small/miscutils/itemDustTinyFluoriteF/0.png deleted file mode 100644 index 3a604b9123..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyFormaldehydeCatalyst/0.png b/front/public/images/small/miscutils/itemDustTinyFormaldehydeCatalyst/0.png deleted file mode 100644 index a0aaa89298..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyFormaldehydeCatalyst/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyGadoliniteCe/0.png b/front/public/images/small/miscutils/itemDustTinyGadoliniteCe/0.png deleted file mode 100644 index 690aeeb5b0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyGadoliniteY/0.png b/front/public/images/small/miscutils/itemDustTinyGadoliniteY/0.png deleted file mode 100644 index 690aeeb5b0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyGeikielite/0.png b/front/public/images/small/miscutils/itemDustTinyGeikielite/0.png deleted file mode 100644 index 6f3e4caa12..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyGermanium/0.png b/front/public/images/small/miscutils/itemDustTinyGermanium/0.png deleted file mode 100644 index 1249fed020..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyGreenockite/0.png b/front/public/images/small/miscutils/itemDustTinyGreenockite/0.png deleted file mode 100644 index 6e06013cdd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyGrisium/0.png b/front/public/images/small/miscutils/itemDustTinyGrisium/0.png deleted file mode 100644 index 7242d45b14..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyGypsum/0.png b/front/public/images/small/miscutils/itemDustTinyGypsum/0.png deleted file mode 100644 index 19c98c18b1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyGypsum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHG1223/0.png b/front/public/images/small/miscutils/itemDustTinyHG1223/0.png deleted file mode 100644 index dfeda15271..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHS188A/0.png b/front/public/images/small/miscutils/itemDustTinyHS188A/0.png deleted file mode 100644 index 36de6eb36b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHafnium/0.png b/front/public/images/small/miscutils/itemDustTinyHafnium/0.png deleted file mode 100644 index a4368d1e90..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHastelloyC276/0.png b/front/public/images/small/miscutils/itemDustTinyHastelloyC276/0.png deleted file mode 100644 index 49ad82bce5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHastelloyN/0.png b/front/public/images/small/miscutils/itemDustTinyHastelloyN/0.png deleted file mode 100644 index 2c7f2b2f9d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHastelloyW/0.png b/front/public/images/small/miscutils/itemDustTinyHastelloyW/0.png deleted file mode 100644 index e437454db0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHastelloyX/0.png b/front/public/images/small/miscutils/itemDustTinyHastelloyX/0.png deleted file mode 100644 index d357661b21..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemDustTinyHeLiCoPtEr/0.png deleted file mode 100644 index f876803339..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHibonite/0.png b/front/public/images/small/miscutils/itemDustTinyHibonite/0.png deleted file mode 100644 index 02e3704d33..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHoneaite/0.png b/front/public/images/small/miscutils/itemDustTinyHoneaite/0.png deleted file mode 100644 index 43cc3fd1ce..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyHypogen/0.png b/front/public/images/small/miscutils/itemDustTinyHypogen/0.png deleted file mode 100644 index 9ee8f04bab..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyIncoloy020/0.png b/front/public/images/small/miscutils/itemDustTinyIncoloy020/0.png deleted file mode 100644 index 484e5fffd6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyIncoloyDS/0.png b/front/public/images/small/miscutils/itemDustTinyIncoloyDS/0.png deleted file mode 100644 index 6e74ff19d1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyIncoloyMA956/0.png b/front/public/images/small/miscutils/itemDustTinyIncoloyMA956/0.png deleted file mode 100644 index 6fe9499f77..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyInconel625/0.png b/front/public/images/small/miscutils/itemDustTinyInconel625/0.png deleted file mode 100644 index 8bf9f1a998..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyInconel690/0.png b/front/public/images/small/miscutils/itemDustTinyInconel690/0.png deleted file mode 100644 index 528486e747..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyInconel792/0.png b/front/public/images/small/miscutils/itemDustTinyInconel792/0.png deleted file mode 100644 index 97af2d806b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyIndalloy140/0.png b/front/public/images/small/miscutils/itemDustTinyIndalloy140/0.png deleted file mode 100644 index f6b723abf7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyIodine/0.png b/front/public/images/small/miscutils/itemDustTinyIodine/0.png deleted file mode 100644 index f9aa4c6139..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyIrarsite/0.png b/front/public/images/small/miscutils/itemDustTinyIrarsite/0.png deleted file mode 100644 index 16265f6e82..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyKashinite/0.png b/front/public/images/small/miscutils/itemDustTinyKashinite/0.png deleted file mode 100644 index cb7dd60d9f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyKoboldite/0.png b/front/public/images/small/miscutils/itemDustTinyKoboldite/0.png deleted file mode 100644 index e54134b8f0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLFTRFuel1/0.png b/front/public/images/small/miscutils/itemDustTinyLFTRFuel1/0.png deleted file mode 100644 index 9c2efd5ea4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLFTRFuel1/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLFTRFuel2/0.png b/front/public/images/small/miscutils/itemDustTinyLFTRFuel2/0.png deleted file mode 100644 index 88d03b9600..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLFTRFuel2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLFTRFuel3/0.png b/front/public/images/small/miscutils/itemDustTinyLFTRFuel3/0.png deleted file mode 100644 index d1a34c1ae4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLFTRFuel3/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLafiumCompound/0.png b/front/public/images/small/miscutils/itemDustTinyLafiumCompound/0.png deleted file mode 100644 index 7ed03c8aca..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLafossaite/0.png b/front/public/images/small/miscutils/itemDustTinyLafossaite/0.png deleted file mode 100644 index f35b116de5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLanthaniteCe/0.png b/front/public/images/small/miscutils/itemDustTinyLanthaniteCe/0.png deleted file mode 100644 index 79ae6a71e9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLanthaniteLa/0.png b/front/public/images/small/miscutils/itemDustTinyLanthaniteLa/0.png deleted file mode 100644 index a41a74eb47..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLanthaniteNd/0.png b/front/public/images/small/miscutils/itemDustTinyLanthaniteNd/0.png deleted file mode 100644 index f67fd70938..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLaurenium/0.png b/front/public/images/small/miscutils/itemDustTinyLaurenium/0.png deleted file mode 100644 index 0837048cb5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLautarite/0.png b/front/public/images/small/miscutils/itemDustTinyLautarite/0.png deleted file mode 100644 index 1a4ac179f1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLepersonnite/0.png b/front/public/images/small/miscutils/itemDustTinyLepersonnite/0.png deleted file mode 100644 index 55e8cb87ff..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLi2BeF4/0.png b/front/public/images/small/miscutils/itemDustTinyLi2BeF4/0.png deleted file mode 100644 index 19c98c18b1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLi2BeF4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLi2CO3CaOH2/0.png b/front/public/images/small/miscutils/itemDustTinyLi2CO3CaOH2/0.png deleted file mode 100644 index 19c98c18b1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLi2CO3CaOH2/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLithium7/0.png b/front/public/images/small/miscutils/itemDustTinyLithium7/0.png deleted file mode 100644 index 31124acbc5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLithiumCarbonate/0.png b/front/public/images/small/miscutils/itemDustTinyLithiumCarbonate/0.png deleted file mode 100644 index 71883441c8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLithiumCarbonate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLithiumFluoride/0.png b/front/public/images/small/miscutils/itemDustTinyLithiumFluoride/0.png deleted file mode 100644 index a4e4cd8aad..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLithiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLithiumHydroperoxide/0.png b/front/public/images/small/miscutils/itemDustTinyLithiumHydroperoxide/0.png deleted file mode 100644 index 7d58ba837f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLithiumHydroperoxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLithiumHydroxide/0.png b/front/public/images/small/miscutils/itemDustTinyLithiumHydroxide/0.png deleted file mode 100644 index 5c3314fecd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLithiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyLithiumPeroxide/0.png b/front/public/images/small/miscutils/itemDustTinyLithiumPeroxide/0.png deleted file mode 100644 index 5c3314fecd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyLithiumPeroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyManureByproducts/0.png b/front/public/images/small/miscutils/itemDustTinyManureByproducts/0.png deleted file mode 100644 index e5337086f8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyManureByproducts/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyMaragingSteel250/0.png b/front/public/images/small/miscutils/itemDustTinyMaragingSteel250/0.png deleted file mode 100644 index 6092a4d428..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyMaragingSteel300/0.png b/front/public/images/small/miscutils/itemDustTinyMaragingSteel300/0.png deleted file mode 100644 index 312dbb860f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyMaragingSteel350/0.png b/front/public/images/small/miscutils/itemDustTinyMaragingSteel350/0.png deleted file mode 100644 index 9742cc1857..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyMiessiite/0.png b/front/public/images/small/miscutils/itemDustTinyMiessiite/0.png deleted file mode 100644 index 61fd6aa3b5..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyMixTumbaga/0.png b/front/public/images/small/miscutils/itemDustTinyMixTumbaga/0.png deleted file mode 100644 index d0a7e55ec7..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyMixTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyNeptunium/0.png b/front/public/images/small/miscutils/itemDustTinyNeptunium/0.png deleted file mode 100644 index eec2e8e47f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyNeptuniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustTinyNeptuniumHexafluoride/0.png deleted file mode 100644 index 3544a644bf..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyNeptuniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyNichromite/0.png b/front/public/images/small/miscutils/itemDustTinyNichromite/0.png deleted file mode 100644 index 0eab30b95e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemDustTinyNiobiumCarbide/0.png deleted file mode 100644 index 117e8a4cee..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyNitinol60/0.png b/front/public/images/small/miscutils/itemDustTinyNitinol60/0.png deleted file mode 100644 index ad00093c40..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyOctiron/0.png b/front/public/images/small/miscutils/itemDustTinyOctiron/0.png deleted file mode 100644 index 57e14461a9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyOrganicFertilizer/0.png b/front/public/images/small/miscutils/itemDustTinyOrganicFertilizer/0.png deleted file mode 100644 index 71883441c8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyOrganicFertilizer/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPerroudite/0.png b/front/public/images/small/miscutils/itemDustTinyPerroudite/0.png deleted file mode 100644 index dcae58eb8a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPhthalicAnhydride/0.png b/front/public/images/small/miscutils/itemDustTinyPhthalicAnhydride/0.png deleted file mode 100644 index 7a49df86f9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPhthalicAnhydride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPikyonium64B/0.png b/front/public/images/small/miscutils/itemDustTinyPikyonium64B/0.png deleted file mode 100644 index db63adfb99..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPlutonium238/0.png b/front/public/images/small/miscutils/itemDustTinyPlutonium238/0.png deleted file mode 100644 index b1aeee9e6a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPolonium/0.png b/front/public/images/small/miscutils/itemDustTinyPolonium/0.png deleted file mode 100644 index adb701ba82..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPolycrase/0.png b/front/public/images/small/miscutils/itemDustTinyPolycrase/0.png deleted file mode 100644 index 67d17bf46c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPotassiumNitrate/0.png b/front/public/images/small/miscutils/itemDustTinyPotassiumNitrate/0.png deleted file mode 100644 index abf207fc3a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPotassiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPotin/0.png b/front/public/images/small/miscutils/itemDustTinyPotin/0.png deleted file mode 100644 index 32650ffd5b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPraseodymium/0.png b/front/public/images/small/miscutils/itemDustTinyPraseodymium/0.png deleted file mode 100644 index 80012af9be..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyPromethium/0.png b/front/public/images/small/miscutils/itemDustTinyPromethium/0.png deleted file mode 100644 index 5ef41ce47b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyPromethium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyProtactinium/0.png b/front/public/images/small/miscutils/itemDustTinyProtactinium/0.png deleted file mode 100644 index 0115fbd944..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyQuantum/0.png b/front/public/images/small/miscutils/itemDustTinyQuantum/0.png deleted file mode 100644 index cc181031bc..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/itemDustTinyRadioactiveMineralMix/0.png deleted file mode 100644 index 5dfd883fc4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyRadium/0.png b/front/public/images/small/miscutils/itemDustTinyRadium/0.png deleted file mode 100644 index 136bba0e4c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyRhenium/0.png b/front/public/images/small/miscutils/itemDustTinyRhenium/0.png deleted file mode 100644 index 433598d84e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyRhodium/0.png b/front/public/images/small/miscutils/itemDustTinyRhodium/0.png deleted file mode 100644 index 04c592e991..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyRhugnor/0.png b/front/public/images/small/miscutils/itemDustTinyRhugnor/0.png deleted file mode 100644 index c2ab15420d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyRunite/0.png b/front/public/images/small/miscutils/itemDustTinyRunite/0.png deleted file mode 100644 index aec57d6ecd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyRuthenium/0.png b/front/public/images/small/miscutils/itemDustTinyRuthenium/0.png deleted file mode 100644 index 04c592e991..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySamarskiteY/0.png b/front/public/images/small/miscutils/itemDustTinySamarskiteY/0.png deleted file mode 100644 index 68b117611d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySamarskiteYb/0.png b/front/public/images/small/miscutils/itemDustTinySamarskiteYb/0.png deleted file mode 100644 index c71cb351b1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySelenium/0.png b/front/public/images/small/miscutils/itemDustTinySelenium/0.png deleted file mode 100644 index 6087ad36b1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySeleniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustTinySeleniumHexafluoride/0.png deleted file mode 100644 index 067d2324e1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySeleniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySiliconCarbide/0.png b/front/public/images/small/miscutils/itemDustTinySiliconCarbide/0.png deleted file mode 100644 index 7dfcaac005..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySodiumCyanide/0.png b/front/public/images/small/miscutils/itemDustTinySodiumCyanide/0.png deleted file mode 100644 index d08218e860..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySodiumCyanide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySodiumFluoride/0.png b/front/public/images/small/miscutils/itemDustTinySodiumFluoride/0.png deleted file mode 100644 index c2eb442b7d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySodiumFluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinySodiumNitrate/0.png b/front/public/images/small/miscutils/itemDustTinySodiumNitrate/0.png deleted file mode 100644 index 2d451bf8bb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinySodiumNitrate/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyStaballoy/0.png b/front/public/images/small/miscutils/itemDustTinyStaballoy/0.png deleted file mode 100644 index 1c0e493e5f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyStellite/0.png b/front/public/images/small/miscutils/itemDustTinyStellite/0.png deleted file mode 100644 index bcb6601f16..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyStrontium/0.png b/front/public/images/small/miscutils/itemDustTinyStrontium/0.png deleted file mode 100644 index e0f755cc94..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyStrontiumHydroxide/0.png b/front/public/images/small/miscutils/itemDustTinyStrontiumHydroxide/0.png deleted file mode 100644 index 1a8a30c45d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyStrontiumHydroxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyStrontiumOxide/0.png b/front/public/images/small/miscutils/itemDustTinyStrontiumOxide/0.png deleted file mode 100644 index 99f7ee61f9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyStrontiumOxide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTalonite/0.png b/front/public/images/small/miscutils/itemDustTinyTalonite/0.png deleted file mode 100644 index 07d55e9c6a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTantalloy60/0.png b/front/public/images/small/miscutils/itemDustTinyTantalloy60/0.png deleted file mode 100644 index ee65db7b38..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTantalloy61/0.png b/front/public/images/small/miscutils/itemDustTinyTantalloy61/0.png deleted file mode 100644 index 8e68364677..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTantalumCarbide/0.png b/front/public/images/small/miscutils/itemDustTinyTantalumCarbide/0.png deleted file mode 100644 index ace147a1e4..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTechnetiumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustTinyTechnetiumHexafluoride/0.png deleted file mode 100644 index 8cd7c96a57..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTechnetiumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTeflon/0.png b/front/public/images/small/miscutils/itemDustTinyTeflon/0.png deleted file mode 100644 index 733be63fd1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTellurium/0.png b/front/public/images/small/miscutils/itemDustTinyTellurium/0.png deleted file mode 100644 index d97a4ca074..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyThallium/0.png b/front/public/images/small/miscutils/itemDustTinyThallium/0.png deleted file mode 100644 index 7a49df86f9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyThorium232/0.png b/front/public/images/small/miscutils/itemDustTinyThorium232/0.png deleted file mode 100644 index e5c54498ae..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyThoriumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustTinyThoriumHexafluoride/0.png deleted file mode 100644 index 28adaf6f6d..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyThoriumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyThoriumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustTinyThoriumTetrafluoride/0.png deleted file mode 100644 index ad0ec80438..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyThoriumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTitanite/0.png b/front/public/images/small/miscutils/itemDustTinyTitanite/0.png deleted file mode 100644 index 38edbafbf3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTitansteel/0.png b/front/public/images/small/miscutils/itemDustTinyTitansteel/0.png deleted file mode 100644 index e04a263aee..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemDustTinyTriniumNaquadahAlloy/0.png deleted file mode 100644 index 7352accb7f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemDustTinyTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 2ad7e1c4a8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemDustTinyTriniumTitaniumAlloy/0.png deleted file mode 100644 index 8d03fc46a6..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTumbaga/0.png b/front/public/images/small/miscutils/itemDustTinyTumbaga/0.png deleted file mode 100644 index 73f9ea9010..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemDustTinyTungstenTitaniumCarbide/0.png deleted file mode 100644 index 7dcf49239b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyUN18Fertiliser/0.png b/front/public/images/small/miscutils/itemDustTinyUN18Fertiliser/0.png deleted file mode 100644 index 31a2d19783..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyUN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyUN32Fertiliser/0.png b/front/public/images/small/miscutils/itemDustTinyUN32Fertiliser/0.png deleted file mode 100644 index 89ab452489..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyUN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyUranium232/0.png b/front/public/images/small/miscutils/itemDustTinyUranium232/0.png deleted file mode 100644 index f2e9947d75..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyUranium233/0.png b/front/public/images/small/miscutils/itemDustTinyUranium233/0.png deleted file mode 100644 index 1d5a2f458f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyUraniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustTinyUraniumHexafluoride/0.png deleted file mode 100644 index fab5f7543f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyUraniumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustTinyUraniumTetrafluoride/0.png deleted file mode 100644 index fab5f7543f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyWatertightSteel/0.png b/front/public/images/small/miscutils/itemDustTinyWatertightSteel/0.png deleted file mode 100644 index 4988706632..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyWhiteMetal/0.png b/front/public/images/small/miscutils/itemDustTinyWhiteMetal/0.png deleted file mode 100644 index 55ccd573bd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyWood'sGlass/0.png b/front/public/images/small/miscutils/itemDustTinyWood'sGlass/0.png deleted file mode 100644 index 9c52f2b636..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyWood'sGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyXenotime/0.png b/front/public/images/small/miscutils/itemDustTinyXenotime/0.png deleted file mode 100644 index 3a73a17437..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyYttriaite/0.png b/front/public/images/small/miscutils/itemDustTinyYttriaite/0.png deleted file mode 100644 index 403771f60e..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyYttrialite/0.png b/front/public/images/small/miscutils/itemDustTinyYttrialite/0.png deleted file mode 100644 index 71e070392f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyYttrocerite/0.png b/front/public/images/small/miscutils/itemDustTinyYttrocerite/0.png deleted file mode 100644 index 3120671c28..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZeron100/0.png b/front/public/images/small/miscutils/itemDustTinyZeron100/0.png deleted file mode 100644 index 17af1d833c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZimbabweite/0.png b/front/public/images/small/miscutils/itemDustTinyZimbabweite/0.png deleted file mode 100644 index 91f8aa6029..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZircon/0.png b/front/public/images/small/miscutils/itemDustTinyZircon/0.png deleted file mode 100644 index f44d5be41b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZirconium/0.png b/front/public/images/small/miscutils/itemDustTinyZirconium/0.png deleted file mode 100644 index 453ccee1bb..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemDustTinyZirconiumCarbide/0.png deleted file mode 100644 index 4fb5088027..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZirconiumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustTinyZirconiumTetrafluoride/0.png deleted file mode 100644 index 6a28d13862..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZirconolite/0.png b/front/public/images/small/miscutils/itemDustTinyZirconolite/0.png deleted file mode 100644 index 66d13c94ff..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZircophyllite/0.png b/front/public/images/small/miscutils/itemDustTinyZircophyllite/0.png deleted file mode 100644 index 5cffcb41c1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZirkelite/0.png b/front/public/images/small/miscutils/itemDustTinyZirkelite/0.png deleted file mode 100644 index d44d032698..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTinyZrCl4/0.png b/front/public/images/small/miscutils/itemDustTinyZrCl4/0.png deleted file mode 100644 index 571325207f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTinyZrCl4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTitanite/0.png b/front/public/images/small/miscutils/itemDustTitanite/0.png deleted file mode 100644 index cae213ce18..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTitansteel/0.png b/front/public/images/small/miscutils/itemDustTitansteel/0.png deleted file mode 100644 index e7d8652f71..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemDustTriniumNaquadahAlloy/0.png deleted file mode 100644 index 74fa5efef1..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemDustTriniumNaquadahCarbonite/0.png deleted file mode 100644 index dddf711dc8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemDustTriniumTitaniumAlloy/0.png deleted file mode 100644 index 7c6183e0fa..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTumbaga/0.png b/front/public/images/small/miscutils/itemDustTumbaga/0.png deleted file mode 100644 index 8139392f0f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemDustTungstenTitaniumCarbide/0.png deleted file mode 100644 index 67b4d1255c..0000000000 Binary files a/front/public/images/small/miscutils/itemDustTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustUN18Fertiliser/0.png b/front/public/images/small/miscutils/itemDustUN18Fertiliser/0.png deleted file mode 100644 index 6511c033a2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustUN18Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustUN32Fertiliser/0.png b/front/public/images/small/miscutils/itemDustUN32Fertiliser/0.png deleted file mode 100644 index 3b12ae1571..0000000000 Binary files a/front/public/images/small/miscutils/itemDustUN32Fertiliser/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustUranium232/0.png b/front/public/images/small/miscutils/itemDustUranium232/0.png deleted file mode 100644 index 82d84d24a2..0000000000 Binary files a/front/public/images/small/miscutils/itemDustUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustUranium233/0.png b/front/public/images/small/miscutils/itemDustUranium233/0.png deleted file mode 100644 index 9a2823267f..0000000000 Binary files a/front/public/images/small/miscutils/itemDustUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustUraniumHexafluoride/0.png b/front/public/images/small/miscutils/itemDustUraniumHexafluoride/0.png deleted file mode 100644 index 4453da62f0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustUraniumHexafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustUraniumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustUraniumTetrafluoride/0.png deleted file mode 100644 index 4453da62f0..0000000000 Binary files a/front/public/images/small/miscutils/itemDustUraniumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustWatertightSteel/0.png b/front/public/images/small/miscutils/itemDustWatertightSteel/0.png deleted file mode 100644 index c758d743cd..0000000000 Binary files a/front/public/images/small/miscutils/itemDustWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustWhiteMetal/0.png b/front/public/images/small/miscutils/itemDustWhiteMetal/0.png deleted file mode 100644 index cceae7fae9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustWood'sGlass/0.png b/front/public/images/small/miscutils/itemDustWood'sGlass/0.png deleted file mode 100644 index b3fe1a5914..0000000000 Binary files a/front/public/images/small/miscutils/itemDustWood'sGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustXenotime/0.png b/front/public/images/small/miscutils/itemDustXenotime/0.png deleted file mode 100644 index 20e4b7d063..0000000000 Binary files a/front/public/images/small/miscutils/itemDustXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustYttriaite/0.png b/front/public/images/small/miscutils/itemDustYttriaite/0.png deleted file mode 100644 index d36306b3ab..0000000000 Binary files a/front/public/images/small/miscutils/itemDustYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustYttrialite/0.png b/front/public/images/small/miscutils/itemDustYttrialite/0.png deleted file mode 100644 index c548c902b8..0000000000 Binary files a/front/public/images/small/miscutils/itemDustYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustYttrocerite/0.png b/front/public/images/small/miscutils/itemDustYttrocerite/0.png deleted file mode 100644 index 4f12e3092a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZeron100/0.png b/front/public/images/small/miscutils/itemDustZeron100/0.png deleted file mode 100644 index fd413e1f35..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZimbabweite/0.png b/front/public/images/small/miscutils/itemDustZimbabweite/0.png deleted file mode 100644 index 916c682f7b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZircon/0.png b/front/public/images/small/miscutils/itemDustZircon/0.png deleted file mode 100644 index 29672733d9..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZirconium/0.png b/front/public/images/small/miscutils/itemDustZirconium/0.png deleted file mode 100644 index 30dbe66e2b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemDustZirconiumCarbide/0.png deleted file mode 100644 index 55658d9c67..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZirconiumTetrafluoride/0.png b/front/public/images/small/miscutils/itemDustZirconiumTetrafluoride/0.png deleted file mode 100644 index d0d8b42dc3..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZirconiumTetrafluoride/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZirconolite/0.png b/front/public/images/small/miscutils/itemDustZirconolite/0.png deleted file mode 100644 index 82cedc911a..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZircophyllite/0.png b/front/public/images/small/miscutils/itemDustZircophyllite/0.png deleted file mode 100644 index e0f822da79..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZirkelite/0.png b/front/public/images/small/miscutils/itemDustZirkelite/0.png deleted file mode 100644 index 044571e18b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemDustZrCl4/0.png b/front/public/images/small/miscutils/itemDustZrCl4/0.png deleted file mode 100644 index 4e79aa8b8b..0000000000 Binary files a/front/public/images/small/miscutils/itemDustZrCl4/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemEnergeticRotorBlade/0.png b/front/public/images/small/miscutils/itemEnergeticRotorBlade/0.png deleted file mode 100644 index 848ec3674d..0000000000 Binary files a/front/public/images/small/miscutils/itemEnergeticRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemEnergeticShaft/0.png b/front/public/images/small/miscutils/itemEnergeticShaft/0.png deleted file mode 100644 index 7346a938ed..0000000000 Binary files a/front/public/images/small/miscutils/itemEnergeticShaft/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireBabbitAlloy/0.png b/front/public/images/small/miscutils/itemFineWireBabbitAlloy/0.png deleted file mode 100644 index 0cdbfbe247..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireChromaticGlass/0.png b/front/public/images/small/miscutils/itemFineWireChromaticGlass/0.png deleted file mode 100644 index 6146ce16d8..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireGrisium/0.png b/front/public/images/small/miscutils/itemFineWireGrisium/0.png deleted file mode 100644 index 5e4a6f31a9..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireHG1223/0.png b/front/public/images/small/miscutils/itemFineWireHG1223/0.png deleted file mode 100644 index 170a6e260e..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireHypogen/0.png b/front/public/images/small/miscutils/itemFineWireHypogen/0.png deleted file mode 100644 index dc427c0654..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireKoboldite/0.png b/front/public/images/small/miscutils/itemFineWireKoboldite/0.png deleted file mode 100644 index 92f4b6cd12..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWirePalladium/0.png b/front/public/images/small/miscutils/itemFineWirePalladium/0.png deleted file mode 100644 index ee2ae3a298..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWirePalladium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireQuantum/0.png b/front/public/images/small/miscutils/itemFineWireQuantum/0.png deleted file mode 100644 index b84fcd7be5..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireWhiteMetal/0.png b/front/public/images/small/miscutils/itemFineWireWhiteMetal/0.png deleted file mode 100644 index 1bb62c7537..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFineWireZirconium/0.png b/front/public/images/small/miscutils/itemFineWireZirconium/0.png deleted file mode 100644 index 20cf8e3cf9..0000000000 Binary files a/front/public/images/small/miscutils/itemFineWireZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemFoilAdvancedNitinol/0.png deleted file mode 100644 index bf38832e06..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemFoilArceusAlloy2B/0.png deleted file mode 100644 index 9e2ad65861..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilAstralTitanium/0.png b/front/public/images/small/miscutils/itemFoilAstralTitanium/0.png deleted file mode 100644 index 58edeac2e4..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilBlackTitanium/0.png b/front/public/images/small/miscutils/itemFoilBlackTitanium/0.png deleted file mode 100644 index 056d9bc1e8..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilBotmium/0.png b/front/public/images/small/miscutils/itemFoilBotmium/0.png deleted file mode 100644 index b87df59d04..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilCelestialTungsten/0.png b/front/public/images/small/miscutils/itemFoilCelestialTungsten/0.png deleted file mode 100644 index 21048b1e67..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilChromaticGlass/0.png b/front/public/images/small/miscutils/itemFoilChromaticGlass/0.png deleted file mode 100644 index c24a83db76..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilCinobiteA243/0.png b/front/public/images/small/miscutils/itemFoilCinobiteA243/0.png deleted file mode 100644 index 0706aea947..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilHypogen/0.png b/front/public/images/small/miscutils/itemFoilHypogen/0.png deleted file mode 100644 index d1eb9543d6..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilLafiumCompound/0.png b/front/public/images/small/miscutils/itemFoilLafiumCompound/0.png deleted file mode 100644 index 8cdff2365d..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilLaurenium/0.png b/front/public/images/small/miscutils/itemFoilLaurenium/0.png deleted file mode 100644 index de32b7ba4f..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilNitinol60/0.png b/front/public/images/small/miscutils/itemFoilNitinol60/0.png deleted file mode 100644 index 1eabba37e9..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilPikyonium64B/0.png b/front/public/images/small/miscutils/itemFoilPikyonium64B/0.png deleted file mode 100644 index 03675250ca..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilQuantum/0.png b/front/public/images/small/miscutils/itemFoilQuantum/0.png deleted file mode 100644 index 32256073c5..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilRhugnor/0.png b/front/public/images/small/miscutils/itemFoilRhugnor/0.png deleted file mode 100644 index bf62ba9705..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilTitansteel/0.png b/front/public/images/small/miscutils/itemFoilTitansteel/0.png deleted file mode 100644 index 8091f856ed..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemFoilWhiteMetal/0.png b/front/public/images/small/miscutils/itemFoilWhiteMetal/0.png deleted file mode 100644 index b6080fe530..0000000000 Binary files a/front/public/images/small/miscutils/itemFoilWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemGearAbyssalAlloy/0.png deleted file mode 100644 index e79f0702ce..0000000000 Binary files a/front/public/images/small/miscutils/itemGearAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearArcanite/0.png b/front/public/images/small/miscutils/itemGearArcanite/0.png deleted file mode 100644 index 2f8835aa4d..0000000000 Binary files a/front/public/images/small/miscutils/itemGearArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemGearArceusAlloy2B/0.png deleted file mode 100644 index fac836a754..0000000000 Binary files a/front/public/images/small/miscutils/itemGearArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearAstralTitanium/0.png b/front/public/images/small/miscutils/itemGearAstralTitanium/0.png deleted file mode 100644 index 38ba6cb591..0000000000 Binary files a/front/public/images/small/miscutils/itemGearAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearBlackMetal/0.png b/front/public/images/small/miscutils/itemGearBlackMetal/0.png deleted file mode 100644 index 56ea1aa76f..0000000000 Binary files a/front/public/images/small/miscutils/itemGearBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearBloodSteel/0.png b/front/public/images/small/miscutils/itemGearBloodSteel/0.png deleted file mode 100644 index 2ce80ffdeb..0000000000 Binary files a/front/public/images/small/miscutils/itemGearBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearBotmium/0.png b/front/public/images/small/miscutils/itemGearBotmium/0.png deleted file mode 100644 index 681d8970a1..0000000000 Binary files a/front/public/images/small/miscutils/itemGearBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearCelestialTungsten/0.png b/front/public/images/small/miscutils/itemGearCelestialTungsten/0.png deleted file mode 100644 index 7d0b843ed4..0000000000 Binary files a/front/public/images/small/miscutils/itemGearCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearChromaticGlass/0.png b/front/public/images/small/miscutils/itemGearChromaticGlass/0.png deleted file mode 100644 index 47f7aece94..0000000000 Binary files a/front/public/images/small/miscutils/itemGearChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearCinobiteA243/0.png b/front/public/images/small/miscutils/itemGearCinobiteA243/0.png deleted file mode 100644 index 462aadb1f1..0000000000 Binary files a/front/public/images/small/miscutils/itemGearCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearDysprosium/0.png b/front/public/images/small/miscutils/itemGearDysprosium/0.png deleted file mode 100644 index 6aa57f9648..0000000000 Binary files a/front/public/images/small/miscutils/itemGearDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearEglinSteel/0.png b/front/public/images/small/miscutils/itemGearEglinSteel/0.png deleted file mode 100644 index d9848f2afb..0000000000 Binary files a/front/public/images/small/miscutils/itemGearEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearEnergyCrystal/0.png b/front/public/images/small/miscutils/itemGearEnergyCrystal/0.png deleted file mode 100644 index f77f2bb611..0000000000 Binary files a/front/public/images/small/miscutils/itemGearEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearErbium/0.png b/front/public/images/small/miscutils/itemGearErbium/0.png deleted file mode 100644 index 1acfb390f8..0000000000 Binary files a/front/public/images/small/miscutils/itemGearErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearGermanium/0.png b/front/public/images/small/miscutils/itemGearGermanium/0.png deleted file mode 100644 index 3ee12ca8b9..0000000000 Binary files a/front/public/images/small/miscutils/itemGearGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearGrisium/0.png b/front/public/images/small/miscutils/itemGearGrisium/0.png deleted file mode 100644 index c47a268ce5..0000000000 Binary files a/front/public/images/small/miscutils/itemGearGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHS188A/0.png b/front/public/images/small/miscutils/itemGearHS188A/0.png deleted file mode 100644 index 211d7726e6..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHafnium/0.png b/front/public/images/small/miscutils/itemGearHafnium/0.png deleted file mode 100644 index cad2eeaa52..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHastelloyC276/0.png b/front/public/images/small/miscutils/itemGearHastelloyC276/0.png deleted file mode 100644 index 241efda229..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHastelloyN/0.png b/front/public/images/small/miscutils/itemGearHastelloyN/0.png deleted file mode 100644 index 4b0bdbd7d1..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHastelloyW/0.png b/front/public/images/small/miscutils/itemGearHastelloyW/0.png deleted file mode 100644 index 1a84d54b14..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHastelloyX/0.png b/front/public/images/small/miscutils/itemGearHastelloyX/0.png deleted file mode 100644 index eb8024bf98..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemGearHeLiCoPtEr/0.png deleted file mode 100644 index b1feb80eee..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearHypogen/0.png b/front/public/images/small/miscutils/itemGearHypogen/0.png deleted file mode 100644 index b6cf895598..0000000000 Binary files a/front/public/images/small/miscutils/itemGearHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearIncoloy020/0.png b/front/public/images/small/miscutils/itemGearIncoloy020/0.png deleted file mode 100644 index 867e5d26b8..0000000000 Binary files a/front/public/images/small/miscutils/itemGearIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearIncoloyDS/0.png b/front/public/images/small/miscutils/itemGearIncoloyDS/0.png deleted file mode 100644 index dbf3b5b940..0000000000 Binary files a/front/public/images/small/miscutils/itemGearIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearIncoloyMA956/0.png b/front/public/images/small/miscutils/itemGearIncoloyMA956/0.png deleted file mode 100644 index c265f260f8..0000000000 Binary files a/front/public/images/small/miscutils/itemGearIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearInconel625/0.png b/front/public/images/small/miscutils/itemGearInconel625/0.png deleted file mode 100644 index aa407dc822..0000000000 Binary files a/front/public/images/small/miscutils/itemGearInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearInconel690/0.png b/front/public/images/small/miscutils/itemGearInconel690/0.png deleted file mode 100644 index 2676f97794..0000000000 Binary files a/front/public/images/small/miscutils/itemGearInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearInconel792/0.png b/front/public/images/small/miscutils/itemGearInconel792/0.png deleted file mode 100644 index e70dc806d1..0000000000 Binary files a/front/public/images/small/miscutils/itemGearInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearIodine/0.png b/front/public/images/small/miscutils/itemGearIodine/0.png deleted file mode 100644 index 49d685729f..0000000000 Binary files a/front/public/images/small/miscutils/itemGearIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearLafiumCompound/0.png b/front/public/images/small/miscutils/itemGearLafiumCompound/0.png deleted file mode 100644 index d52d56c341..0000000000 Binary files a/front/public/images/small/miscutils/itemGearLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearLaurenium/0.png b/front/public/images/small/miscutils/itemGearLaurenium/0.png deleted file mode 100644 index 93b3d1516c..0000000000 Binary files a/front/public/images/small/miscutils/itemGearLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearMaragingSteel250/0.png b/front/public/images/small/miscutils/itemGearMaragingSteel250/0.png deleted file mode 100644 index 4e959f4305..0000000000 Binary files a/front/public/images/small/miscutils/itemGearMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearMaragingSteel300/0.png b/front/public/images/small/miscutils/itemGearMaragingSteel300/0.png deleted file mode 100644 index 560ce2f822..0000000000 Binary files a/front/public/images/small/miscutils/itemGearMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearMaragingSteel350/0.png b/front/public/images/small/miscutils/itemGearMaragingSteel350/0.png deleted file mode 100644 index be42cb8f39..0000000000 Binary files a/front/public/images/small/miscutils/itemGearMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemGearNiobiumCarbide/0.png deleted file mode 100644 index 2a8ced12bf..0000000000 Binary files a/front/public/images/small/miscutils/itemGearNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearNitinol60/0.png b/front/public/images/small/miscutils/itemGearNitinol60/0.png deleted file mode 100644 index ea5ccf4009..0000000000 Binary files a/front/public/images/small/miscutils/itemGearNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearOctiron/0.png b/front/public/images/small/miscutils/itemGearOctiron/0.png deleted file mode 100644 index 9c092ae6c0..0000000000 Binary files a/front/public/images/small/miscutils/itemGearOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearPikyonium64B/0.png b/front/public/images/small/miscutils/itemGearPikyonium64B/0.png deleted file mode 100644 index 0e4d1edcfb..0000000000 Binary files a/front/public/images/small/miscutils/itemGearPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearPotin/0.png b/front/public/images/small/miscutils/itemGearPotin/0.png deleted file mode 100644 index c76c3e6b93..0000000000 Binary files a/front/public/images/small/miscutils/itemGearPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearPraseodymium/0.png b/front/public/images/small/miscutils/itemGearPraseodymium/0.png deleted file mode 100644 index 93ddf4fc28..0000000000 Binary files a/front/public/images/small/miscutils/itemGearPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearQuantum/0.png b/front/public/images/small/miscutils/itemGearQuantum/0.png deleted file mode 100644 index baca75a7f1..0000000000 Binary files a/front/public/images/small/miscutils/itemGearQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearRhenium/0.png b/front/public/images/small/miscutils/itemGearRhenium/0.png deleted file mode 100644 index 774f59a0bf..0000000000 Binary files a/front/public/images/small/miscutils/itemGearRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearRhodium/0.png b/front/public/images/small/miscutils/itemGearRhodium/0.png deleted file mode 100644 index a5ea8c851b..0000000000 Binary files a/front/public/images/small/miscutils/itemGearRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearRuthenium/0.png b/front/public/images/small/miscutils/itemGearRuthenium/0.png deleted file mode 100644 index a5ea8c851b..0000000000 Binary files a/front/public/images/small/miscutils/itemGearRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearSelenium/0.png b/front/public/images/small/miscutils/itemGearSelenium/0.png deleted file mode 100644 index 70fbb75a27..0000000000 Binary files a/front/public/images/small/miscutils/itemGearSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearSiliconCarbide/0.png b/front/public/images/small/miscutils/itemGearSiliconCarbide/0.png deleted file mode 100644 index de3d12b591..0000000000 Binary files a/front/public/images/small/miscutils/itemGearSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearStaballoy/0.png b/front/public/images/small/miscutils/itemGearStaballoy/0.png deleted file mode 100644 index 149260f828..0000000000 Binary files a/front/public/images/small/miscutils/itemGearStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearStellite/0.png b/front/public/images/small/miscutils/itemGearStellite/0.png deleted file mode 100644 index 39619a0653..0000000000 Binary files a/front/public/images/small/miscutils/itemGearStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearStrontium/0.png b/front/public/images/small/miscutils/itemGearStrontium/0.png deleted file mode 100644 index 931f7b9ad4..0000000000 Binary files a/front/public/images/small/miscutils/itemGearStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTalonite/0.png b/front/public/images/small/miscutils/itemGearTalonite/0.png deleted file mode 100644 index de00e1eeb4..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTantalloy60/0.png b/front/public/images/small/miscutils/itemGearTantalloy60/0.png deleted file mode 100644 index 09b0748427..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTantalloy61/0.png b/front/public/images/small/miscutils/itemGearTantalloy61/0.png deleted file mode 100644 index 375e79e37e..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTantalumCarbide/0.png b/front/public/images/small/miscutils/itemGearTantalumCarbide/0.png deleted file mode 100644 index 7d6bdb7236..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTellurium/0.png b/front/public/images/small/miscutils/itemGearTellurium/0.png deleted file mode 100644 index 75c4187b43..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearThallium/0.png b/front/public/images/small/miscutils/itemGearThallium/0.png deleted file mode 100644 index 97df45fafc..0000000000 Binary files a/front/public/images/small/miscutils/itemGearThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTitansteel/0.png b/front/public/images/small/miscutils/itemGearTitansteel/0.png deleted file mode 100644 index 57656b503d..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemGearTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 4e923700c6..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemGearTriniumTitaniumAlloy/0.png deleted file mode 100644 index 60e0672de4..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTumbaga/0.png b/front/public/images/small/miscutils/itemGearTumbaga/0.png deleted file mode 100644 index 80c58e09fd..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemGearTungstenTitaniumCarbide/0.png deleted file mode 100644 index e04c0248d2..0000000000 Binary files a/front/public/images/small/miscutils/itemGearTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearWatertightSteel/0.png b/front/public/images/small/miscutils/itemGearWatertightSteel/0.png deleted file mode 100644 index 03d1cc690e..0000000000 Binary files a/front/public/images/small/miscutils/itemGearWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearWhiteMetal/0.png b/front/public/images/small/miscutils/itemGearWhiteMetal/0.png deleted file mode 100644 index fa1d1e5b5c..0000000000 Binary files a/front/public/images/small/miscutils/itemGearWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearZeron100/0.png b/front/public/images/small/miscutils/itemGearZeron100/0.png deleted file mode 100644 index 25d4aafacf..0000000000 Binary files a/front/public/images/small/miscutils/itemGearZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearZirconium/0.png b/front/public/images/small/miscutils/itemGearZirconium/0.png deleted file mode 100644 index 502c54ffac..0000000000 Binary files a/front/public/images/small/miscutils/itemGearZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGearZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemGearZirconiumCarbide/0.png deleted file mode 100644 index e496cd09ed..0000000000 Binary files a/front/public/images/small/miscutils/itemGearZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGenericToken/0.png b/front/public/images/small/miscutils/itemGenericToken/0.png deleted file mode 100644 index 584f089f57..0000000000 Binary files a/front/public/images/small/miscutils/itemGenericToken/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGenericToken/1.png b/front/public/images/small/miscutils/itemGenericToken/1.png deleted file mode 100644 index 496d1feb8c..0000000000 Binary files a/front/public/images/small/miscutils/itemGenericToken/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGenericToken/2.png b/front/public/images/small/miscutils/itemGenericToken/2.png deleted file mode 100644 index bf245e2123..0000000000 Binary files a/front/public/images/small/miscutils/itemGenericToken/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGenericToken/3.png b/front/public/images/small/miscutils/itemGenericToken/3.png deleted file mode 100644 index fb890e9b48..0000000000 Binary files a/front/public/images/small/miscutils/itemGenericToken/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemGenericToken/4.png b/front/public/images/small/miscutils/itemGenericToken/4.png deleted file mode 100644 index 42e62c79d1..0000000000 Binary files a/front/public/images/small/miscutils/itemGenericToken/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHalfCompleteCasings/0.png b/front/public/images/small/miscutils/itemHalfCompleteCasings/0.png deleted file mode 100644 index 9ef8a5b2b8..0000000000 Binary files a/front/public/images/small/miscutils/itemHalfCompleteCasings/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHalfCompleteCasings/1.png b/front/public/images/small/miscutils/itemHalfCompleteCasings/1.png deleted file mode 100644 index 736e343e68..0000000000 Binary files a/front/public/images/small/miscutils/itemHalfCompleteCasings/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHalfCompleteCasings/2.png b/front/public/images/small/miscutils/itemHalfCompleteCasings/2.png deleted file mode 100644 index edf55b659a..0000000000 Binary files a/front/public/images/small/miscutils/itemHalfCompleteCasings/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHalfCompleteCasings/3.png b/front/public/images/small/miscutils/itemHalfCompleteCasings/3.png deleted file mode 100644 index 0da5a0506e..0000000000 Binary files a/front/public/images/small/miscutils/itemHalfCompleteCasings/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHatTinFoil/0.png b/front/public/images/small/miscutils/itemHatTinFoil/0.png deleted file mode 100644 index 0e2c75f16d..0000000000 Binary files a/front/public/images/small/miscutils/itemHatTinFoil/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemHotIngotAbyssalAlloy/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotArcanite/0.png b/front/public/images/small/miscutils/itemHotIngotArcanite/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemHotIngotArceusAlloy2B/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotAstralTitanium/0.png b/front/public/images/small/miscutils/itemHotIngotAstralTitanium/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotBotmium/0.png b/front/public/images/small/miscutils/itemHotIngotBotmium/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotCelestialTungsten/0.png b/front/public/images/small/miscutils/itemHotIngotCelestialTungsten/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotCinobiteA243/0.png b/front/public/images/small/miscutils/itemHotIngotCinobiteA243/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotEnergyCrystal/0.png b/front/public/images/small/miscutils/itemHotIngotEnergyCrystal/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotErbium/0.png b/front/public/images/small/miscutils/itemHotIngotErbium/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotGrisium/0.png b/front/public/images/small/miscutils/itemHotIngotGrisium/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotHS188A/0.png b/front/public/images/small/miscutils/itemHotIngotHS188A/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotHastelloyC276/0.png b/front/public/images/small/miscutils/itemHotIngotHastelloyC276/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotHastelloyN/0.png b/front/public/images/small/miscutils/itemHotIngotHastelloyN/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotHastelloyW/0.png b/front/public/images/small/miscutils/itemHotIngotHastelloyW/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotHastelloyX/0.png b/front/public/images/small/miscutils/itemHotIngotHastelloyX/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemHotIngotHeLiCoPtEr/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotHypogen/0.png b/front/public/images/small/miscutils/itemHotIngotHypogen/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotIncoloy020/0.png b/front/public/images/small/miscutils/itemHotIngotIncoloy020/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotIncoloyDS/0.png b/front/public/images/small/miscutils/itemHotIngotIncoloyDS/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotIncoloyMA956/0.png b/front/public/images/small/miscutils/itemHotIngotIncoloyMA956/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotInconel625/0.png b/front/public/images/small/miscutils/itemHotIngotInconel625/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotInconel690/0.png b/front/public/images/small/miscutils/itemHotIngotInconel690/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotInconel792/0.png b/front/public/images/small/miscutils/itemHotIngotInconel792/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotLafiumCompound/0.png b/front/public/images/small/miscutils/itemHotIngotLafiumCompound/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotLaurenium/0.png b/front/public/images/small/miscutils/itemHotIngotLaurenium/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotMaragingSteel250/0.png b/front/public/images/small/miscutils/itemHotIngotMaragingSteel250/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotMaragingSteel300/0.png b/front/public/images/small/miscutils/itemHotIngotMaragingSteel300/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotMaragingSteel350/0.png b/front/public/images/small/miscutils/itemHotIngotMaragingSteel350/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemHotIngotNiobiumCarbide/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotNitinol60/0.png b/front/public/images/small/miscutils/itemHotIngotNitinol60/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotOctiron/0.png b/front/public/images/small/miscutils/itemHotIngotOctiron/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotPikyonium64B/0.png b/front/public/images/small/miscutils/itemHotIngotPikyonium64B/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotPraseodymium/0.png b/front/public/images/small/miscutils/itemHotIngotPraseodymium/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotQuantum/0.png b/front/public/images/small/miscutils/itemHotIngotQuantum/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotStaballoy/0.png b/front/public/images/small/miscutils/itemHotIngotStaballoy/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotStellite/0.png b/front/public/images/small/miscutils/itemHotIngotStellite/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTalonite/0.png b/front/public/images/small/miscutils/itemHotIngotTalonite/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTantalloy60/0.png b/front/public/images/small/miscutils/itemHotIngotTantalloy60/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTantalloy61/0.png b/front/public/images/small/miscutils/itemHotIngotTantalloy61/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTantalumCarbide/0.png b/front/public/images/small/miscutils/itemHotIngotTantalumCarbide/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTitansteel/0.png b/front/public/images/small/miscutils/itemHotIngotTitansteel/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemHotIngotTriniumNaquadahCarbonite/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemHotIngotTriniumTitaniumAlloy/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemHotIngotTungstenTitaniumCarbide/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotWatertightSteel/0.png b/front/public/images/small/miscutils/itemHotIngotWatertightSteel/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHotIngotZeron100/0.png b/front/public/images/small/miscutils/itemHotIngotZeron100/0.png deleted file mode 100644 index c962d53995..0000000000 Binary files a/front/public/images/small/miscutils/itemHotIngotZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemHydrogenBlob/0.png b/front/public/images/small/miscutils/itemHydrogenBlob/0.png deleted file mode 100644 index 5c2b2a1842..0000000000 Binary files a/front/public/images/small/miscutils/itemHydrogenBlob/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemIngotAbyssalAlloy/0.png deleted file mode 100644 index 1af77ca7af..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemIngotAdvancedNitinol/0.png deleted file mode 100644 index 9474d985e0..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotAncientGranite/0.png b/front/public/images/small/miscutils/itemIngotAncientGranite/0.png deleted file mode 100644 index 06be59c7f3..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotArcanite/0.png b/front/public/images/small/miscutils/itemIngotArcanite/0.png deleted file mode 100644 index f89873c234..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemIngotArceusAlloy2B/0.png deleted file mode 100644 index 2cb24917b6..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotAstralTitanium/0.png b/front/public/images/small/miscutils/itemIngotAstralTitanium/0.png deleted file mode 100644 index c91d4b9fde..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotBabbitAlloy/0.png b/front/public/images/small/miscutils/itemIngotBabbitAlloy/0.png deleted file mode 100644 index e76a50bf68..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotBlackMetal/0.png b/front/public/images/small/miscutils/itemIngotBlackMetal/0.png deleted file mode 100644 index 6954165d13..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotBlackTitanium/0.png b/front/public/images/small/miscutils/itemIngotBlackTitanium/0.png deleted file mode 100644 index 3bd405579c..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotBloodSteel/0.png b/front/public/images/small/miscutils/itemIngotBloodSteel/0.png deleted file mode 100644 index ab8bcbb255..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotBotmium/0.png b/front/public/images/small/miscutils/itemIngotBotmium/0.png deleted file mode 100644 index 4e4e807255..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotCalifornium/0.png b/front/public/images/small/miscutils/itemIngotCalifornium/0.png deleted file mode 100644 index f5925a47c2..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotCelestialTungsten/0.png b/front/public/images/small/miscutils/itemIngotCelestialTungsten/0.png deleted file mode 100644 index e37e737f68..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotChromaticGlass/0.png b/front/public/images/small/miscutils/itemIngotChromaticGlass/0.png deleted file mode 100644 index bddf26e782..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotCinobiteA243/0.png b/front/public/images/small/miscutils/itemIngotCinobiteA243/0.png deleted file mode 100644 index c4abc8ffc6..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotCurium/0.png b/front/public/images/small/miscutils/itemIngotCurium/0.png deleted file mode 100644 index c9f8837838..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotDragonblood/0.png b/front/public/images/small/miscutils/itemIngotDragonblood/0.png deleted file mode 100644 index ada02ad5cb..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotDysprosium/0.png b/front/public/images/small/miscutils/itemIngotDysprosium/0.png deleted file mode 100644 index 6cb893ef98..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotEglinSteel/0.png b/front/public/images/small/miscutils/itemIngotEglinSteel/0.png deleted file mode 100644 index 2894b9316b..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotEnergyCrystal/0.png b/front/public/images/small/miscutils/itemIngotEnergyCrystal/0.png deleted file mode 100644 index 1132608ac5..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotErbium/0.png b/front/public/images/small/miscutils/itemIngotErbium/0.png deleted file mode 100644 index 8550ad7929..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotFermium/0.png b/front/public/images/small/miscutils/itemIngotFermium/0.png deleted file mode 100644 index 694cc48a58..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotGermanium/0.png b/front/public/images/small/miscutils/itemIngotGermanium/0.png deleted file mode 100644 index 37cfa29001..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotGrisium/0.png b/front/public/images/small/miscutils/itemIngotGrisium/0.png deleted file mode 100644 index e4971c3176..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHG1223/0.png b/front/public/images/small/miscutils/itemIngotHG1223/0.png deleted file mode 100644 index 383e2a88c4..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHS188A/0.png b/front/public/images/small/miscutils/itemIngotHS188A/0.png deleted file mode 100644 index c63d200f41..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHafnium/0.png b/front/public/images/small/miscutils/itemIngotHafnium/0.png deleted file mode 100644 index 57533a5cab..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHastelloyC276/0.png b/front/public/images/small/miscutils/itemIngotHastelloyC276/0.png deleted file mode 100644 index 91099649ac..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHastelloyN/0.png b/front/public/images/small/miscutils/itemIngotHastelloyN/0.png deleted file mode 100644 index ce653bb1e7..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHastelloyW/0.png b/front/public/images/small/miscutils/itemIngotHastelloyW/0.png deleted file mode 100644 index 4514d579fd..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHastelloyX/0.png b/front/public/images/small/miscutils/itemIngotHastelloyX/0.png deleted file mode 100644 index 5bd43f44f8..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemIngotHeLiCoPtEr/0.png deleted file mode 100644 index 94a471bef1..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotHypogen/0.png b/front/public/images/small/miscutils/itemIngotHypogen/0.png deleted file mode 100644 index 4ed2ce2567..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotIncoloy020/0.png b/front/public/images/small/miscutils/itemIngotIncoloy020/0.png deleted file mode 100644 index d69569e0ae..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotIncoloyDS/0.png b/front/public/images/small/miscutils/itemIngotIncoloyDS/0.png deleted file mode 100644 index b96183f9e8..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotIncoloyMA956/0.png b/front/public/images/small/miscutils/itemIngotIncoloyMA956/0.png deleted file mode 100644 index 67e92b7634..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotInconel625/0.png b/front/public/images/small/miscutils/itemIngotInconel625/0.png deleted file mode 100644 index a0211ab861..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotInconel690/0.png b/front/public/images/small/miscutils/itemIngotInconel690/0.png deleted file mode 100644 index bfcb00dfe5..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotInconel792/0.png b/front/public/images/small/miscutils/itemIngotInconel792/0.png deleted file mode 100644 index 31e8b60e04..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotIndalloy140/0.png b/front/public/images/small/miscutils/itemIngotIndalloy140/0.png deleted file mode 100644 index e8df5320e1..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotIodine/0.png b/front/public/images/small/miscutils/itemIngotIodine/0.png deleted file mode 100644 index b579daafec..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotLafiumCompound/0.png b/front/public/images/small/miscutils/itemIngotLafiumCompound/0.png deleted file mode 100644 index f08509b0b4..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotLaurenium/0.png b/front/public/images/small/miscutils/itemIngotLaurenium/0.png deleted file mode 100644 index 1f7a2ca1fe..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotLithium7/0.png b/front/public/images/small/miscutils/itemIngotLithium7/0.png deleted file mode 100644 index 9632c4ca0a..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotMaragingSteel250/0.png b/front/public/images/small/miscutils/itemIngotMaragingSteel250/0.png deleted file mode 100644 index e8179c694f..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotMaragingSteel300/0.png b/front/public/images/small/miscutils/itemIngotMaragingSteel300/0.png deleted file mode 100644 index 96f04bd22f..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotMaragingSteel350/0.png b/front/public/images/small/miscutils/itemIngotMaragingSteel350/0.png deleted file mode 100644 index 5c3af49fe0..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotNeptunium/0.png b/front/public/images/small/miscutils/itemIngotNeptunium/0.png deleted file mode 100644 index ae19f59733..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemIngotNiobiumCarbide/0.png deleted file mode 100644 index ea4fbd756a..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotNitinol60/0.png b/front/public/images/small/miscutils/itemIngotNitinol60/0.png deleted file mode 100644 index 6d52a10111..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotOctiron/0.png b/front/public/images/small/miscutils/itemIngotOctiron/0.png deleted file mode 100644 index 6fd22c6f30..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotPikyonium64B/0.png b/front/public/images/small/miscutils/itemIngotPikyonium64B/0.png deleted file mode 100644 index 7ae7114088..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotPlutonium238/0.png b/front/public/images/small/miscutils/itemIngotPlutonium238/0.png deleted file mode 100644 index 875f46559b..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotPolonium/0.png b/front/public/images/small/miscutils/itemIngotPolonium/0.png deleted file mode 100644 index b8bfe5eacd..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotPotin/0.png b/front/public/images/small/miscutils/itemIngotPotin/0.png deleted file mode 100644 index 5473d6778d..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotPraseodymium/0.png b/front/public/images/small/miscutils/itemIngotPraseodymium/0.png deleted file mode 100644 index e3fddb2bfd..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotPromethium/0.png b/front/public/images/small/miscutils/itemIngotPromethium/0.png deleted file mode 100644 index cd39e93ca8..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotPromethium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotProtactinium/0.png b/front/public/images/small/miscutils/itemIngotProtactinium/0.png deleted file mode 100644 index 78cc696123..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotQuantum/0.png b/front/public/images/small/miscutils/itemIngotQuantum/0.png deleted file mode 100644 index 107b3f5ac8..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotRadium/0.png b/front/public/images/small/miscutils/itemIngotRadium/0.png deleted file mode 100644 index 006b8db43e..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotRhenium/0.png b/front/public/images/small/miscutils/itemIngotRhenium/0.png deleted file mode 100644 index 1c9b874943..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotRhodium/0.png b/front/public/images/small/miscutils/itemIngotRhodium/0.png deleted file mode 100644 index c926b5d47c..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotRhugnor/0.png b/front/public/images/small/miscutils/itemIngotRhugnor/0.png deleted file mode 100644 index 9b48b10dc8..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotRunite/0.png b/front/public/images/small/miscutils/itemIngotRunite/0.png deleted file mode 100644 index 140e921d19..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotRuthenium/0.png b/front/public/images/small/miscutils/itemIngotRuthenium/0.png deleted file mode 100644 index c926b5d47c..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotSelenium/0.png b/front/public/images/small/miscutils/itemIngotSelenium/0.png deleted file mode 100644 index d3d889b712..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotSiliconCarbide/0.png b/front/public/images/small/miscutils/itemIngotSiliconCarbide/0.png deleted file mode 100644 index 7df108066b..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotStaballoy/0.png b/front/public/images/small/miscutils/itemIngotStaballoy/0.png deleted file mode 100644 index ec789cdefb..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotStellite/0.png b/front/public/images/small/miscutils/itemIngotStellite/0.png deleted file mode 100644 index ae86b32169..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotStrontium/0.png b/front/public/images/small/miscutils/itemIngotStrontium/0.png deleted file mode 100644 index bfb97848ba..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTalonite/0.png b/front/public/images/small/miscutils/itemIngotTalonite/0.png deleted file mode 100644 index d8853e9901..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTantalloy60/0.png b/front/public/images/small/miscutils/itemIngotTantalloy60/0.png deleted file mode 100644 index 7c557f3de6..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTantalloy61/0.png b/front/public/images/small/miscutils/itemIngotTantalloy61/0.png deleted file mode 100644 index 0c4ba3cf16..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTantalumCarbide/0.png b/front/public/images/small/miscutils/itemIngotTantalumCarbide/0.png deleted file mode 100644 index ff98817552..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTeflon/0.png b/front/public/images/small/miscutils/itemIngotTeflon/0.png deleted file mode 100644 index b279c05732..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTellurium/0.png b/front/public/images/small/miscutils/itemIngotTellurium/0.png deleted file mode 100644 index 3b4ac18f7b..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotThallium/0.png b/front/public/images/small/miscutils/itemIngotThallium/0.png deleted file mode 100644 index 97922e718b..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotThorium232/0.png b/front/public/images/small/miscutils/itemIngotThorium232/0.png deleted file mode 100644 index 9b59d54be2..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTitansteel/0.png b/front/public/images/small/miscutils/itemIngotTitansteel/0.png deleted file mode 100644 index 9d61ac8411..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemIngotTriniumNaquadahAlloy/0.png deleted file mode 100644 index f8bfb4cbac..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemIngotTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 0b7a922b1a..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemIngotTriniumTitaniumAlloy/0.png deleted file mode 100644 index ebea2f509a..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTumbaga/0.png b/front/public/images/small/miscutils/itemIngotTumbaga/0.png deleted file mode 100644 index 66746fcb23..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemIngotTungstenTitaniumCarbide/0.png deleted file mode 100644 index e5331c55c1..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotUranium232/0.png b/front/public/images/small/miscutils/itemIngotUranium232/0.png deleted file mode 100644 index 7483c2d6cb..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotUranium233/0.png b/front/public/images/small/miscutils/itemIngotUranium233/0.png deleted file mode 100644 index addb529d11..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotWatertightSteel/0.png b/front/public/images/small/miscutils/itemIngotWatertightSteel/0.png deleted file mode 100644 index d938a5ef31..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotWhiteMetal/0.png b/front/public/images/small/miscutils/itemIngotWhiteMetal/0.png deleted file mode 100644 index c5a0154939..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotZeron100/0.png b/front/public/images/small/miscutils/itemIngotZeron100/0.png deleted file mode 100644 index dd31e89df1..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotZirconium/0.png b/front/public/images/small/miscutils/itemIngotZirconium/0.png deleted file mode 100644 index 7ca34bcef2..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIngotZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemIngotZirconiumCarbide/0.png deleted file mode 100644 index 315ce9c117..0000000000 Binary files a/front/public/images/small/miscutils/itemIngotZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIridiumRotorBlade/0.png b/front/public/images/small/miscutils/itemIridiumRotorBlade/0.png deleted file mode 100644 index 54a57331b1..0000000000 Binary files a/front/public/images/small/miscutils/itemIridiumRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemIridiumShaft/0.png b/front/public/images/small/miscutils/itemIridiumShaft/0.png deleted file mode 100644 index 18e5c4fff8..0000000000 Binary files a/front/public/images/small/miscutils/itemIridiumShaft/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemLavaFilter/0.png b/front/public/images/small/miscutils/itemLavaFilter/0.png deleted file mode 100644 index eff52185ef..0000000000 Binary files a/front/public/images/small/miscutils/itemLavaFilter/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemNuggetAbyssalAlloy/0.png deleted file mode 100644 index dbb3dd2282..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemNuggetAdvancedNitinol/0.png deleted file mode 100644 index a4308ce179..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetAncientGranite/0.png b/front/public/images/small/miscutils/itemNuggetAncientGranite/0.png deleted file mode 100644 index f92807535e..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetArcanite/0.png b/front/public/images/small/miscutils/itemNuggetArcanite/0.png deleted file mode 100644 index b7d46d0162..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemNuggetArceusAlloy2B/0.png deleted file mode 100644 index cf12a48c59..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetAstralTitanium/0.png b/front/public/images/small/miscutils/itemNuggetAstralTitanium/0.png deleted file mode 100644 index 996d0757c6..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetBabbitAlloy/0.png b/front/public/images/small/miscutils/itemNuggetBabbitAlloy/0.png deleted file mode 100644 index 7f37901d50..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetBlackMetal/0.png b/front/public/images/small/miscutils/itemNuggetBlackMetal/0.png deleted file mode 100644 index d0b33eb185..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetBlackTitanium/0.png b/front/public/images/small/miscutils/itemNuggetBlackTitanium/0.png deleted file mode 100644 index cd5e2dbd1a..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetBloodSteel/0.png b/front/public/images/small/miscutils/itemNuggetBloodSteel/0.png deleted file mode 100644 index b51307df86..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetBotmium/0.png b/front/public/images/small/miscutils/itemNuggetBotmium/0.png deleted file mode 100644 index 233a25813c..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetCalifornium/0.png b/front/public/images/small/miscutils/itemNuggetCalifornium/0.png deleted file mode 100644 index 8998338f9c..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetCalifornium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetCelestialTungsten/0.png b/front/public/images/small/miscutils/itemNuggetCelestialTungsten/0.png deleted file mode 100644 index ae3cb3a4a3..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetChromaticGlass/0.png b/front/public/images/small/miscutils/itemNuggetChromaticGlass/0.png deleted file mode 100644 index ba4b56b487..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetCinobiteA243/0.png b/front/public/images/small/miscutils/itemNuggetCinobiteA243/0.png deleted file mode 100644 index abbe26289d..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetCurium/0.png b/front/public/images/small/miscutils/itemNuggetCurium/0.png deleted file mode 100644 index 4bfb54677c..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetCurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetDragonblood/0.png b/front/public/images/small/miscutils/itemNuggetDragonblood/0.png deleted file mode 100644 index 1b6af32154..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetDysprosium/0.png b/front/public/images/small/miscutils/itemNuggetDysprosium/0.png deleted file mode 100644 index c48724ce78..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetEglinSteel/0.png b/front/public/images/small/miscutils/itemNuggetEglinSteel/0.png deleted file mode 100644 index e4d2fd2cdf..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetEnergyCrystal/0.png b/front/public/images/small/miscutils/itemNuggetEnergyCrystal/0.png deleted file mode 100644 index 29b5f0c6bf..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetErbium/0.png b/front/public/images/small/miscutils/itemNuggetErbium/0.png deleted file mode 100644 index b8aec97a11..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetFermium/0.png b/front/public/images/small/miscutils/itemNuggetFermium/0.png deleted file mode 100644 index 3ebbedd44c..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetFermium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetGermanium/0.png b/front/public/images/small/miscutils/itemNuggetGermanium/0.png deleted file mode 100644 index 7473a4167f..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetGrisium/0.png b/front/public/images/small/miscutils/itemNuggetGrisium/0.png deleted file mode 100644 index 807fac41c2..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHG1223/0.png b/front/public/images/small/miscutils/itemNuggetHG1223/0.png deleted file mode 100644 index c15deed665..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHS188A/0.png b/front/public/images/small/miscutils/itemNuggetHS188A/0.png deleted file mode 100644 index c0c58fc874..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHafnium/0.png b/front/public/images/small/miscutils/itemNuggetHafnium/0.png deleted file mode 100644 index 9ca5a67700..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHastelloyC276/0.png b/front/public/images/small/miscutils/itemNuggetHastelloyC276/0.png deleted file mode 100644 index 44392972c0..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHastelloyN/0.png b/front/public/images/small/miscutils/itemNuggetHastelloyN/0.png deleted file mode 100644 index 0e17bc19ee..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHastelloyW/0.png b/front/public/images/small/miscutils/itemNuggetHastelloyW/0.png deleted file mode 100644 index 4e0b7cb6f2..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHastelloyX/0.png b/front/public/images/small/miscutils/itemNuggetHastelloyX/0.png deleted file mode 100644 index 388647e994..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemNuggetHeLiCoPtEr/0.png deleted file mode 100644 index bf0e111a46..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetHypogen/0.png b/front/public/images/small/miscutils/itemNuggetHypogen/0.png deleted file mode 100644 index 97a8d42680..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetIncoloy020/0.png b/front/public/images/small/miscutils/itemNuggetIncoloy020/0.png deleted file mode 100644 index c166feed59..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetIncoloyDS/0.png b/front/public/images/small/miscutils/itemNuggetIncoloyDS/0.png deleted file mode 100644 index 6dcecfdca9..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetIncoloyMA956/0.png b/front/public/images/small/miscutils/itemNuggetIncoloyMA956/0.png deleted file mode 100644 index 7e99a4fdbe..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetInconel625/0.png b/front/public/images/small/miscutils/itemNuggetInconel625/0.png deleted file mode 100644 index 80ffa9fb03..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetInconel690/0.png b/front/public/images/small/miscutils/itemNuggetInconel690/0.png deleted file mode 100644 index ae186fc1c0..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetInconel792/0.png b/front/public/images/small/miscutils/itemNuggetInconel792/0.png deleted file mode 100644 index 7f9707c740..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetIndalloy140/0.png b/front/public/images/small/miscutils/itemNuggetIndalloy140/0.png deleted file mode 100644 index 61bb07e75b..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetIodine/0.png b/front/public/images/small/miscutils/itemNuggetIodine/0.png deleted file mode 100644 index 6761295b3e..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetLafiumCompound/0.png b/front/public/images/small/miscutils/itemNuggetLafiumCompound/0.png deleted file mode 100644 index 36e730639a..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetLaurenium/0.png b/front/public/images/small/miscutils/itemNuggetLaurenium/0.png deleted file mode 100644 index a0c8cbc5fe..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetLithium7/0.png b/front/public/images/small/miscutils/itemNuggetLithium7/0.png deleted file mode 100644 index 257f37748d..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetMaragingSteel250/0.png b/front/public/images/small/miscutils/itemNuggetMaragingSteel250/0.png deleted file mode 100644 index f64c94bee4..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetMaragingSteel300/0.png b/front/public/images/small/miscutils/itemNuggetMaragingSteel300/0.png deleted file mode 100644 index 3f472828f4..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetMaragingSteel350/0.png b/front/public/images/small/miscutils/itemNuggetMaragingSteel350/0.png deleted file mode 100644 index 0a811a85bb..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetNeptunium/0.png b/front/public/images/small/miscutils/itemNuggetNeptunium/0.png deleted file mode 100644 index d097959d88..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetNeptunium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemNuggetNiobiumCarbide/0.png deleted file mode 100644 index cb0399361a..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetNitinol60/0.png b/front/public/images/small/miscutils/itemNuggetNitinol60/0.png deleted file mode 100644 index 9a98decc95..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetOctiron/0.png b/front/public/images/small/miscutils/itemNuggetOctiron/0.png deleted file mode 100644 index 01d396095e..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetPikyonium64B/0.png b/front/public/images/small/miscutils/itemNuggetPikyonium64B/0.png deleted file mode 100644 index 207cf8f6f0..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetPlutonium238/0.png b/front/public/images/small/miscutils/itemNuggetPlutonium238/0.png deleted file mode 100644 index 38d65a4ba9..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetPlutonium238/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetPolonium/0.png b/front/public/images/small/miscutils/itemNuggetPolonium/0.png deleted file mode 100644 index 7d9a188333..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetPolonium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetPotin/0.png b/front/public/images/small/miscutils/itemNuggetPotin/0.png deleted file mode 100644 index ea4e471f28..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetPraseodymium/0.png b/front/public/images/small/miscutils/itemNuggetPraseodymium/0.png deleted file mode 100644 index 49e06ffb6d..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetPromethium/0.png b/front/public/images/small/miscutils/itemNuggetPromethium/0.png deleted file mode 100644 index a874a49621..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetPromethium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetProtactinium/0.png b/front/public/images/small/miscutils/itemNuggetProtactinium/0.png deleted file mode 100644 index 1aa931e6d1..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetProtactinium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetQuantum/0.png b/front/public/images/small/miscutils/itemNuggetQuantum/0.png deleted file mode 100644 index 331f3b0d92..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetRadium/0.png b/front/public/images/small/miscutils/itemNuggetRadium/0.png deleted file mode 100644 index f6782a3595..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetRadium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetRhenium/0.png b/front/public/images/small/miscutils/itemNuggetRhenium/0.png deleted file mode 100644 index 14210826cd..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetRhodium/0.png b/front/public/images/small/miscutils/itemNuggetRhodium/0.png deleted file mode 100644 index 12981d64c0..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetRhugnor/0.png b/front/public/images/small/miscutils/itemNuggetRhugnor/0.png deleted file mode 100644 index b823e9ab8d..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetRunite/0.png b/front/public/images/small/miscutils/itemNuggetRunite/0.png deleted file mode 100644 index a4b990be64..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetRuthenium/0.png b/front/public/images/small/miscutils/itemNuggetRuthenium/0.png deleted file mode 100644 index 12981d64c0..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetSelenium/0.png b/front/public/images/small/miscutils/itemNuggetSelenium/0.png deleted file mode 100644 index d5c9b8f3e8..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetSiliconCarbide/0.png b/front/public/images/small/miscutils/itemNuggetSiliconCarbide/0.png deleted file mode 100644 index 9f2808c31a..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetStaballoy/0.png b/front/public/images/small/miscutils/itemNuggetStaballoy/0.png deleted file mode 100644 index a1d60cc6a8..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetStellite/0.png b/front/public/images/small/miscutils/itemNuggetStellite/0.png deleted file mode 100644 index e659c5dff4..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetStrontium/0.png b/front/public/images/small/miscutils/itemNuggetStrontium/0.png deleted file mode 100644 index e325bc7c0d..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTalonite/0.png b/front/public/images/small/miscutils/itemNuggetTalonite/0.png deleted file mode 100644 index 2defa2411d..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTantalloy60/0.png b/front/public/images/small/miscutils/itemNuggetTantalloy60/0.png deleted file mode 100644 index 6696333968..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTantalloy61/0.png b/front/public/images/small/miscutils/itemNuggetTantalloy61/0.png deleted file mode 100644 index dedf60431e..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTantalumCarbide/0.png b/front/public/images/small/miscutils/itemNuggetTantalumCarbide/0.png deleted file mode 100644 index 1a172e717a..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTeflon/0.png b/front/public/images/small/miscutils/itemNuggetTeflon/0.png deleted file mode 100644 index 612bb249dd..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTellurium/0.png b/front/public/images/small/miscutils/itemNuggetTellurium/0.png deleted file mode 100644 index 4ed3991e2a..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetThallium/0.png b/front/public/images/small/miscutils/itemNuggetThallium/0.png deleted file mode 100644 index eab4f9500a..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetThorium232/0.png b/front/public/images/small/miscutils/itemNuggetThorium232/0.png deleted file mode 100644 index 52882f443e..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTitansteel/0.png b/front/public/images/small/miscutils/itemNuggetTitansteel/0.png deleted file mode 100644 index 7a4a28bd8c..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemNuggetTriniumNaquadahAlloy/0.png deleted file mode 100644 index 814d58149f..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemNuggetTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 5f17441b4c..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemNuggetTriniumTitaniumAlloy/0.png deleted file mode 100644 index 8af216394e..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTumbaga/0.png b/front/public/images/small/miscutils/itemNuggetTumbaga/0.png deleted file mode 100644 index 7036dc2108..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemNuggetTungstenTitaniumCarbide/0.png deleted file mode 100644 index d8d81051bd..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetUranium232/0.png b/front/public/images/small/miscutils/itemNuggetUranium232/0.png deleted file mode 100644 index 96d544d39c..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetUranium233/0.png b/front/public/images/small/miscutils/itemNuggetUranium233/0.png deleted file mode 100644 index b0de7968b7..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetWatertightSteel/0.png b/front/public/images/small/miscutils/itemNuggetWatertightSteel/0.png deleted file mode 100644 index 0ae665835e..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetWhiteMetal/0.png b/front/public/images/small/miscutils/itemNuggetWhiteMetal/0.png deleted file mode 100644 index a557888dbc..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetZeron100/0.png b/front/public/images/small/miscutils/itemNuggetZeron100/0.png deleted file mode 100644 index a90a6d8cf5..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetZirconium/0.png b/front/public/images/small/miscutils/itemNuggetZirconium/0.png deleted file mode 100644 index 908f1fb640..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemNuggetZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemNuggetZirconiumCarbide/0.png deleted file mode 100644 index b4a3f4ae63..0000000000 Binary files a/front/public/images/small/miscutils/itemNuggetZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemPlateAbyssalAlloy/0.png deleted file mode 100644 index 70e0e458d2..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemPlateAdvancedNitinol/0.png deleted file mode 100644 index 17f4e5c2b0..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateAncientGranite/0.png b/front/public/images/small/miscutils/itemPlateAncientGranite/0.png deleted file mode 100644 index 21d0615089..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateArcanite/0.png b/front/public/images/small/miscutils/itemPlateArcanite/0.png deleted file mode 100644 index cb8189be8d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemPlateArceusAlloy2B/0.png deleted file mode 100644 index 46505dc582..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateAstralTitanium/0.png b/front/public/images/small/miscutils/itemPlateAstralTitanium/0.png deleted file mode 100644 index 86bbde2f9a..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateBabbitAlloy/0.png b/front/public/images/small/miscutils/itemPlateBabbitAlloy/0.png deleted file mode 100644 index ec968e1a35..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateBlackMetal/0.png b/front/public/images/small/miscutils/itemPlateBlackMetal/0.png deleted file mode 100644 index dabeeeb1a3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateBlackTitanium/0.png b/front/public/images/small/miscutils/itemPlateBlackTitanium/0.png deleted file mode 100644 index 63e33fa9b5..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateBloodSteel/0.png b/front/public/images/small/miscutils/itemPlateBloodSteel/0.png deleted file mode 100644 index e65c56d2c3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateBotmium/0.png b/front/public/images/small/miscutils/itemPlateBotmium/0.png deleted file mode 100644 index 13492ea17b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateCelestialTungsten/0.png b/front/public/images/small/miscutils/itemPlateCelestialTungsten/0.png deleted file mode 100644 index cbb315d537..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateChromaticGlass/0.png b/front/public/images/small/miscutils/itemPlateChromaticGlass/0.png deleted file mode 100644 index f60a8136a4..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateCinobiteA243/0.png b/front/public/images/small/miscutils/itemPlateCinobiteA243/0.png deleted file mode 100644 index b4d21d2bab..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateClay/0.png b/front/public/images/small/miscutils/itemPlateClay/0.png deleted file mode 100644 index 8ed56f4749..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateClay/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemPlateDenseAbyssalAlloy/0.png deleted file mode 100644 index 7d8b0d7e2d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseArcanite/0.png b/front/public/images/small/miscutils/itemPlateDenseArcanite/0.png deleted file mode 100644 index c5c90fe4ec..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemPlateDenseArceusAlloy2B/0.png deleted file mode 100644 index a7a1b6bc56..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseAstralTitanium/0.png b/front/public/images/small/miscutils/itemPlateDenseAstralTitanium/0.png deleted file mode 100644 index bb83eb3d17..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseBlackMetal/0.png b/front/public/images/small/miscutils/itemPlateDenseBlackMetal/0.png deleted file mode 100644 index d2ce0765f6..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseBloodSteel/0.png b/front/public/images/small/miscutils/itemPlateDenseBloodSteel/0.png deleted file mode 100644 index 82f75306d2..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseBotmium/0.png b/front/public/images/small/miscutils/itemPlateDenseBotmium/0.png deleted file mode 100644 index a5b8a8f9cc..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseCelestialTungsten/0.png b/front/public/images/small/miscutils/itemPlateDenseCelestialTungsten/0.png deleted file mode 100644 index 701046d637..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseChromaticGlass/0.png b/front/public/images/small/miscutils/itemPlateDenseChromaticGlass/0.png deleted file mode 100644 index 91c898ab12..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseCinobiteA243/0.png b/front/public/images/small/miscutils/itemPlateDenseCinobiteA243/0.png deleted file mode 100644 index 39cba930db..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseDysprosium/0.png b/front/public/images/small/miscutils/itemPlateDenseDysprosium/0.png deleted file mode 100644 index b40dca913b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseEglinSteel/0.png b/front/public/images/small/miscutils/itemPlateDenseEglinSteel/0.png deleted file mode 100644 index 10f733e3ad..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseEnergyCrystal/0.png b/front/public/images/small/miscutils/itemPlateDenseEnergyCrystal/0.png deleted file mode 100644 index 032b243ee1..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseErbium/0.png b/front/public/images/small/miscutils/itemPlateDenseErbium/0.png deleted file mode 100644 index 1c92e18af7..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseGermanium/0.png b/front/public/images/small/miscutils/itemPlateDenseGermanium/0.png deleted file mode 100644 index ac12eaf87d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseGrisium/0.png b/front/public/images/small/miscutils/itemPlateDenseGrisium/0.png deleted file mode 100644 index d3d373d45f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHS188A/0.png b/front/public/images/small/miscutils/itemPlateDenseHS188A/0.png deleted file mode 100644 index 50abb9a9b3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHafnium/0.png b/front/public/images/small/miscutils/itemPlateDenseHafnium/0.png deleted file mode 100644 index 4dd60822b6..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHastelloyC276/0.png b/front/public/images/small/miscutils/itemPlateDenseHastelloyC276/0.png deleted file mode 100644 index f08271f70b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHastelloyN/0.png b/front/public/images/small/miscutils/itemPlateDenseHastelloyN/0.png deleted file mode 100644 index 191a35c1d6..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHastelloyW/0.png b/front/public/images/small/miscutils/itemPlateDenseHastelloyW/0.png deleted file mode 100644 index f427b5d7cc..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHastelloyX/0.png b/front/public/images/small/miscutils/itemPlateDenseHastelloyX/0.png deleted file mode 100644 index 3432d4bd71..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemPlateDenseHeLiCoPtEr/0.png deleted file mode 100644 index 088e863ec3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseHypogen/0.png b/front/public/images/small/miscutils/itemPlateDenseHypogen/0.png deleted file mode 100644 index a8a40a7efb..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseIncoloy020/0.png b/front/public/images/small/miscutils/itemPlateDenseIncoloy020/0.png deleted file mode 100644 index 97db193781..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseIncoloyDS/0.png b/front/public/images/small/miscutils/itemPlateDenseIncoloyDS/0.png deleted file mode 100644 index be4dc01e51..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseIncoloyMA956/0.png b/front/public/images/small/miscutils/itemPlateDenseIncoloyMA956/0.png deleted file mode 100644 index cbea92c42d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseInconel625/0.png b/front/public/images/small/miscutils/itemPlateDenseInconel625/0.png deleted file mode 100644 index 97b90829c7..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseInconel690/0.png b/front/public/images/small/miscutils/itemPlateDenseInconel690/0.png deleted file mode 100644 index 229325da6b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseInconel792/0.png b/front/public/images/small/miscutils/itemPlateDenseInconel792/0.png deleted file mode 100644 index e03d3efbef..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseIodine/0.png b/front/public/images/small/miscutils/itemPlateDenseIodine/0.png deleted file mode 100644 index 0458021806..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseLafiumCompound/0.png b/front/public/images/small/miscutils/itemPlateDenseLafiumCompound/0.png deleted file mode 100644 index f1176e591b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseLaurenium/0.png b/front/public/images/small/miscutils/itemPlateDenseLaurenium/0.png deleted file mode 100644 index f415eaf789..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseMaragingSteel250/0.png b/front/public/images/small/miscutils/itemPlateDenseMaragingSteel250/0.png deleted file mode 100644 index 2d4712ce2a..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseMaragingSteel300/0.png b/front/public/images/small/miscutils/itemPlateDenseMaragingSteel300/0.png deleted file mode 100644 index cfb0fe2430..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseMaragingSteel350/0.png b/front/public/images/small/miscutils/itemPlateDenseMaragingSteel350/0.png deleted file mode 100644 index 94d237a96b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDenseNiobiumCarbide/0.png deleted file mode 100644 index 33d28426dd..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseNitinol60/0.png b/front/public/images/small/miscutils/itemPlateDenseNitinol60/0.png deleted file mode 100644 index 3da34ff6dc..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseOctiron/0.png b/front/public/images/small/miscutils/itemPlateDenseOctiron/0.png deleted file mode 100644 index a9cf4667ca..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDensePikyonium64B/0.png b/front/public/images/small/miscutils/itemPlateDensePikyonium64B/0.png deleted file mode 100644 index f5e2323f96..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDensePikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDensePotin/0.png b/front/public/images/small/miscutils/itemPlateDensePotin/0.png deleted file mode 100644 index 9b8510175d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDensePotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDensePraseodymium/0.png b/front/public/images/small/miscutils/itemPlateDensePraseodymium/0.png deleted file mode 100644 index 7e28a6a9fb..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDensePraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseQuantum/0.png b/front/public/images/small/miscutils/itemPlateDenseQuantum/0.png deleted file mode 100644 index 0e15fd8135..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseRhenium/0.png b/front/public/images/small/miscutils/itemPlateDenseRhenium/0.png deleted file mode 100644 index 4d36ac8f68..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseRhodium/0.png b/front/public/images/small/miscutils/itemPlateDenseRhodium/0.png deleted file mode 100644 index 7694766c87..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseRuthenium/0.png b/front/public/images/small/miscutils/itemPlateDenseRuthenium/0.png deleted file mode 100644 index 7694766c87..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseSelenium/0.png b/front/public/images/small/miscutils/itemPlateDenseSelenium/0.png deleted file mode 100644 index a509f1e976..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseSiliconCarbide/0.png b/front/public/images/small/miscutils/itemPlateDenseSiliconCarbide/0.png deleted file mode 100644 index 6fd541984f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseStaballoy/0.png b/front/public/images/small/miscutils/itemPlateDenseStaballoy/0.png deleted file mode 100644 index bf4de70040..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseStellite/0.png b/front/public/images/small/miscutils/itemPlateDenseStellite/0.png deleted file mode 100644 index ccc05466dd..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseStrontium/0.png b/front/public/images/small/miscutils/itemPlateDenseStrontium/0.png deleted file mode 100644 index 3613918d2e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTalonite/0.png b/front/public/images/small/miscutils/itemPlateDenseTalonite/0.png deleted file mode 100644 index 009b56dea0..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTantalloy60/0.png b/front/public/images/small/miscutils/itemPlateDenseTantalloy60/0.png deleted file mode 100644 index 3451362429..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTantalloy61/0.png b/front/public/images/small/miscutils/itemPlateDenseTantalloy61/0.png deleted file mode 100644 index f1cefe3079..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTantalumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDenseTantalumCarbide/0.png deleted file mode 100644 index 9d5ac07111..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTellurium/0.png b/front/public/images/small/miscutils/itemPlateDenseTellurium/0.png deleted file mode 100644 index 812755362d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseThallium/0.png b/front/public/images/small/miscutils/itemPlateDenseThallium/0.png deleted file mode 100644 index e135b8cfd6..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTitansteel/0.png b/front/public/images/small/miscutils/itemPlateDenseTitansteel/0.png deleted file mode 100644 index 575aa6218e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemPlateDenseTriniumNaquadahCarbonite/0.png deleted file mode 100644 index a6d16a8390..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemPlateDenseTriniumTitaniumAlloy/0.png deleted file mode 100644 index 57f2f991a2..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTumbaga/0.png b/front/public/images/small/miscutils/itemPlateDenseTumbaga/0.png deleted file mode 100644 index c6c1b17950..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDenseTungstenTitaniumCarbide/0.png deleted file mode 100644 index a6c0ec18be..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseWatertightSteel/0.png b/front/public/images/small/miscutils/itemPlateDenseWatertightSteel/0.png deleted file mode 100644 index 71c71febaf..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseWhiteMetal/0.png b/front/public/images/small/miscutils/itemPlateDenseWhiteMetal/0.png deleted file mode 100644 index ba471b900e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseZeron100/0.png b/front/public/images/small/miscutils/itemPlateDenseZeron100/0.png deleted file mode 100644 index 77dfaf2c4e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseZirconium/0.png b/front/public/images/small/miscutils/itemPlateDenseZirconium/0.png deleted file mode 100644 index 2c734c759d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDenseZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDenseZirconiumCarbide/0.png deleted file mode 100644 index 790af9de3e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDenseZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemPlateDoubleAbyssalAlloy/0.png deleted file mode 100644 index 73844b8d16..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleAdvancedNitinol/0.png b/front/public/images/small/miscutils/itemPlateDoubleAdvancedNitinol/0.png deleted file mode 100644 index 93d1a488c7..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleAdvancedNitinol/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleAncientGranite/0.png b/front/public/images/small/miscutils/itemPlateDoubleAncientGranite/0.png deleted file mode 100644 index 33776c020f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleArcanite/0.png b/front/public/images/small/miscutils/itemPlateDoubleArcanite/0.png deleted file mode 100644 index 957169ab12..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemPlateDoubleArceusAlloy2B/0.png deleted file mode 100644 index f222b8f50c..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleAstralTitanium/0.png b/front/public/images/small/miscutils/itemPlateDoubleAstralTitanium/0.png deleted file mode 100644 index b62ee33fac..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleBabbitAlloy/0.png b/front/public/images/small/miscutils/itemPlateDoubleBabbitAlloy/0.png deleted file mode 100644 index 01f7d11fcc..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleBabbitAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleBlackMetal/0.png b/front/public/images/small/miscutils/itemPlateDoubleBlackMetal/0.png deleted file mode 100644 index 010dd77733..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleBlackTitanium/0.png b/front/public/images/small/miscutils/itemPlateDoubleBlackTitanium/0.png deleted file mode 100644 index cf15ad5842..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleBloodSteel/0.png b/front/public/images/small/miscutils/itemPlateDoubleBloodSteel/0.png deleted file mode 100644 index 0a370ad621..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleBotmium/0.png b/front/public/images/small/miscutils/itemPlateDoubleBotmium/0.png deleted file mode 100644 index 87d56413a5..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleCelestialTungsten/0.png b/front/public/images/small/miscutils/itemPlateDoubleCelestialTungsten/0.png deleted file mode 100644 index 183db78f98..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleChromaticGlass/0.png b/front/public/images/small/miscutils/itemPlateDoubleChromaticGlass/0.png deleted file mode 100644 index 6b98bc1cbc..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleCinobiteA243/0.png b/front/public/images/small/miscutils/itemPlateDoubleCinobiteA243/0.png deleted file mode 100644 index b3f7a1fb96..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleClay/0.png b/front/public/images/small/miscutils/itemPlateDoubleClay/0.png deleted file mode 100644 index dfd1592625..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleClay/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleDragonblood/0.png b/front/public/images/small/miscutils/itemPlateDoubleDragonblood/0.png deleted file mode 100644 index 098b4ce455..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleDysprosium/0.png b/front/public/images/small/miscutils/itemPlateDoubleDysprosium/0.png deleted file mode 100644 index d7b1b70362..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleEglinSteel/0.png b/front/public/images/small/miscutils/itemPlateDoubleEglinSteel/0.png deleted file mode 100644 index 64154d3630..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleEnergyCrystal/0.png b/front/public/images/small/miscutils/itemPlateDoubleEnergyCrystal/0.png deleted file mode 100644 index f25409e126..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleErbium/0.png b/front/public/images/small/miscutils/itemPlateDoubleErbium/0.png deleted file mode 100644 index 4557a48846..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleGermanium/0.png b/front/public/images/small/miscutils/itemPlateDoubleGermanium/0.png deleted file mode 100644 index 86ca391863..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleGrisium/0.png b/front/public/images/small/miscutils/itemPlateDoubleGrisium/0.png deleted file mode 100644 index fa07ef94ed..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHG1223/0.png b/front/public/images/small/miscutils/itemPlateDoubleHG1223/0.png deleted file mode 100644 index 12d8a52032..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHS188A/0.png b/front/public/images/small/miscutils/itemPlateDoubleHS188A/0.png deleted file mode 100644 index 1b4917ffd2..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHafnium/0.png b/front/public/images/small/miscutils/itemPlateDoubleHafnium/0.png deleted file mode 100644 index 948c324c24..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHastelloyC276/0.png b/front/public/images/small/miscutils/itemPlateDoubleHastelloyC276/0.png deleted file mode 100644 index ee9bcc1f91..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHastelloyN/0.png b/front/public/images/small/miscutils/itemPlateDoubleHastelloyN/0.png deleted file mode 100644 index d90e59b32f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHastelloyW/0.png b/front/public/images/small/miscutils/itemPlateDoubleHastelloyW/0.png deleted file mode 100644 index 088b144a54..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHastelloyX/0.png b/front/public/images/small/miscutils/itemPlateDoubleHastelloyX/0.png deleted file mode 100644 index d4d16fce9d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemPlateDoubleHeLiCoPtEr/0.png deleted file mode 100644 index f4e8c56a4c..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleHypogen/0.png b/front/public/images/small/miscutils/itemPlateDoubleHypogen/0.png deleted file mode 100644 index c669619c9e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleIncoloy020/0.png b/front/public/images/small/miscutils/itemPlateDoubleIncoloy020/0.png deleted file mode 100644 index 38232acc2f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleIncoloyDS/0.png b/front/public/images/small/miscutils/itemPlateDoubleIncoloyDS/0.png deleted file mode 100644 index e4df46a980..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleIncoloyMA956/0.png b/front/public/images/small/miscutils/itemPlateDoubleIncoloyMA956/0.png deleted file mode 100644 index 7992d898ae..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleInconel625/0.png b/front/public/images/small/miscutils/itemPlateDoubleInconel625/0.png deleted file mode 100644 index d4309528a4..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleInconel690/0.png b/front/public/images/small/miscutils/itemPlateDoubleInconel690/0.png deleted file mode 100644 index 323d84eaef..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleInconel792/0.png b/front/public/images/small/miscutils/itemPlateDoubleInconel792/0.png deleted file mode 100644 index 0c59cac6bb..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleIndalloy140/0.png b/front/public/images/small/miscutils/itemPlateDoubleIndalloy140/0.png deleted file mode 100644 index 34c95350b3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleIodine/0.png b/front/public/images/small/miscutils/itemPlateDoubleIodine/0.png deleted file mode 100644 index a9b00be82e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleLafiumCompound/0.png b/front/public/images/small/miscutils/itemPlateDoubleLafiumCompound/0.png deleted file mode 100644 index 6bfbec88a7..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleLaurenium/0.png b/front/public/images/small/miscutils/itemPlateDoubleLaurenium/0.png deleted file mode 100644 index 03733c3873..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleLithium7/0.png b/front/public/images/small/miscutils/itemPlateDoubleLithium7/0.png deleted file mode 100644 index ed1ac60ef4..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel250/0.png b/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel250/0.png deleted file mode 100644 index ff71df155c..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel300/0.png b/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel300/0.png deleted file mode 100644 index 37bbc0f3f4..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel350/0.png b/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel350/0.png deleted file mode 100644 index 830c004d48..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDoubleNiobiumCarbide/0.png deleted file mode 100644 index 1e60441ea3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleNitinol60/0.png b/front/public/images/small/miscutils/itemPlateDoubleNitinol60/0.png deleted file mode 100644 index e28834216d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleOctiron/0.png b/front/public/images/small/miscutils/itemPlateDoubleOctiron/0.png deleted file mode 100644 index 3796385a9d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoublePikyonium64B/0.png b/front/public/images/small/miscutils/itemPlateDoublePikyonium64B/0.png deleted file mode 100644 index 833f1bab54..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoublePikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoublePotin/0.png b/front/public/images/small/miscutils/itemPlateDoublePotin/0.png deleted file mode 100644 index fa53678e71..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoublePotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoublePraseodymium/0.png b/front/public/images/small/miscutils/itemPlateDoublePraseodymium/0.png deleted file mode 100644 index a62e6fb875..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoublePraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleQuantum/0.png b/front/public/images/small/miscutils/itemPlateDoubleQuantum/0.png deleted file mode 100644 index 732e3b822c..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleRhenium/0.png b/front/public/images/small/miscutils/itemPlateDoubleRhenium/0.png deleted file mode 100644 index 98a6d82882..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleRhodium/0.png b/front/public/images/small/miscutils/itemPlateDoubleRhodium/0.png deleted file mode 100644 index 0d48289b92..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleRhugnor/0.png b/front/public/images/small/miscutils/itemPlateDoubleRhugnor/0.png deleted file mode 100644 index b989f23161..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleRunite/0.png b/front/public/images/small/miscutils/itemPlateDoubleRunite/0.png deleted file mode 100644 index 1f048a588d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleRuthenium/0.png b/front/public/images/small/miscutils/itemPlateDoubleRuthenium/0.png deleted file mode 100644 index 0d48289b92..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleSelenium/0.png b/front/public/images/small/miscutils/itemPlateDoubleSelenium/0.png deleted file mode 100644 index 1e48d5eb05..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleSiliconCarbide/0.png b/front/public/images/small/miscutils/itemPlateDoubleSiliconCarbide/0.png deleted file mode 100644 index 27d50a4286..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleStaballoy/0.png b/front/public/images/small/miscutils/itemPlateDoubleStaballoy/0.png deleted file mode 100644 index 7a40b6ccef..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleStellite/0.png b/front/public/images/small/miscutils/itemPlateDoubleStellite/0.png deleted file mode 100644 index 96e96e25e8..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleStrontium/0.png b/front/public/images/small/miscutils/itemPlateDoubleStrontium/0.png deleted file mode 100644 index ff6fbdad05..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTalonite/0.png b/front/public/images/small/miscutils/itemPlateDoubleTalonite/0.png deleted file mode 100644 index 26aada5f96..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTantalloy60/0.png b/front/public/images/small/miscutils/itemPlateDoubleTantalloy60/0.png deleted file mode 100644 index a2a40be3a7..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTantalloy61/0.png b/front/public/images/small/miscutils/itemPlateDoubleTantalloy61/0.png deleted file mode 100644 index e06354750b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTantalumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDoubleTantalumCarbide/0.png deleted file mode 100644 index 1cac761db7..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTeflon/0.png b/front/public/images/small/miscutils/itemPlateDoubleTeflon/0.png deleted file mode 100644 index 8c0e120139..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTellurium/0.png b/front/public/images/small/miscutils/itemPlateDoubleTellurium/0.png deleted file mode 100644 index 14c8f4eada..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleThallium/0.png b/front/public/images/small/miscutils/itemPlateDoubleThallium/0.png deleted file mode 100644 index 184f30a75d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleThorium232/0.png b/front/public/images/small/miscutils/itemPlateDoubleThorium232/0.png deleted file mode 100644 index 781405eca8..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTitansteel/0.png b/front/public/images/small/miscutils/itemPlateDoubleTitansteel/0.png deleted file mode 100644 index aed5a33fa8..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemPlateDoubleTriniumNaquadahAlloy/0.png deleted file mode 100644 index 0daa44b148..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemPlateDoubleTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 4dae7ffe57..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemPlateDoubleTriniumTitaniumAlloy/0.png deleted file mode 100644 index 68f000966f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTumbaga/0.png b/front/public/images/small/miscutils/itemPlateDoubleTumbaga/0.png deleted file mode 100644 index 91bc64b30e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDoubleTungstenTitaniumCarbide/0.png deleted file mode 100644 index e41943ed5c..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleWatertightSteel/0.png b/front/public/images/small/miscutils/itemPlateDoubleWatertightSteel/0.png deleted file mode 100644 index 6aa1d2cb9c..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleWhiteMetal/0.png b/front/public/images/small/miscutils/itemPlateDoubleWhiteMetal/0.png deleted file mode 100644 index 9b949299a5..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleZeron100/0.png b/front/public/images/small/miscutils/itemPlateDoubleZeron100/0.png deleted file mode 100644 index 8e7f9cecd6..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleZirconium/0.png b/front/public/images/small/miscutils/itemPlateDoubleZirconium/0.png deleted file mode 100644 index c467480709..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDoubleZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemPlateDoubleZirconiumCarbide/0.png deleted file mode 100644 index 9ea6856d10..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDoubleZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDragonblood/0.png b/front/public/images/small/miscutils/itemPlateDragonblood/0.png deleted file mode 100644 index fb71eda9ca..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDragonblood/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateDysprosium/0.png b/front/public/images/small/miscutils/itemPlateDysprosium/0.png deleted file mode 100644 index f0eab067cb..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateEglinSteel/0.png b/front/public/images/small/miscutils/itemPlateEglinSteel/0.png deleted file mode 100644 index dbb4b4fc65..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateEnergyCrystal/0.png b/front/public/images/small/miscutils/itemPlateEnergyCrystal/0.png deleted file mode 100644 index f2c73f4b95..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateErbium/0.png b/front/public/images/small/miscutils/itemPlateErbium/0.png deleted file mode 100644 index ca3f16ccc5..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateGermanium/0.png b/front/public/images/small/miscutils/itemPlateGermanium/0.png deleted file mode 100644 index 92347646c3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateGrisium/0.png b/front/public/images/small/miscutils/itemPlateGrisium/0.png deleted file mode 100644 index 3d521bed31..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHG1223/0.png b/front/public/images/small/miscutils/itemPlateHG1223/0.png deleted file mode 100644 index 700eb7b4c7..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHG1223/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHS188A/0.png b/front/public/images/small/miscutils/itemPlateHS188A/0.png deleted file mode 100644 index 517767b2b5..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHafnium/0.png b/front/public/images/small/miscutils/itemPlateHafnium/0.png deleted file mode 100644 index af52020128..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHastelloyC276/0.png b/front/public/images/small/miscutils/itemPlateHastelloyC276/0.png deleted file mode 100644 index 96b9b85500..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHastelloyN/0.png b/front/public/images/small/miscutils/itemPlateHastelloyN/0.png deleted file mode 100644 index 29be8da99e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHastelloyW/0.png b/front/public/images/small/miscutils/itemPlateHastelloyW/0.png deleted file mode 100644 index 6fd5d0909a..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHastelloyX/0.png b/front/public/images/small/miscutils/itemPlateHastelloyX/0.png deleted file mode 100644 index 5647cf9292..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemPlateHeLiCoPtEr/0.png deleted file mode 100644 index 6cad0f26dc..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateHypogen/0.png b/front/public/images/small/miscutils/itemPlateHypogen/0.png deleted file mode 100644 index c440560a17..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateIncoloy020/0.png b/front/public/images/small/miscutils/itemPlateIncoloy020/0.png deleted file mode 100644 index b0b40171b4..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateIncoloyDS/0.png b/front/public/images/small/miscutils/itemPlateIncoloyDS/0.png deleted file mode 100644 index 76b16c1ed3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateIncoloyMA956/0.png b/front/public/images/small/miscutils/itemPlateIncoloyMA956/0.png deleted file mode 100644 index 73ea4e9979..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateInconel625/0.png b/front/public/images/small/miscutils/itemPlateInconel625/0.png deleted file mode 100644 index 663f078976..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateInconel690/0.png b/front/public/images/small/miscutils/itemPlateInconel690/0.png deleted file mode 100644 index d728d1d2db..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateInconel792/0.png b/front/public/images/small/miscutils/itemPlateInconel792/0.png deleted file mode 100644 index 73ac6429c9..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateIndalloy140/0.png b/front/public/images/small/miscutils/itemPlateIndalloy140/0.png deleted file mode 100644 index 08ffa66f3e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateIndalloy140/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateIodine/0.png b/front/public/images/small/miscutils/itemPlateIodine/0.png deleted file mode 100644 index f2309d944f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateLafiumCompound/0.png b/front/public/images/small/miscutils/itemPlateLafiumCompound/0.png deleted file mode 100644 index 406c4d1880..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateLaurenium/0.png b/front/public/images/small/miscutils/itemPlateLaurenium/0.png deleted file mode 100644 index 968fada6ee..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateLithium7/0.png b/front/public/images/small/miscutils/itemPlateLithium7/0.png deleted file mode 100644 index 7310640c55..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateLithium7/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateMaragingSteel250/0.png b/front/public/images/small/miscutils/itemPlateMaragingSteel250/0.png deleted file mode 100644 index 8a2e52acc3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateMaragingSteel300/0.png b/front/public/images/small/miscutils/itemPlateMaragingSteel300/0.png deleted file mode 100644 index 0b137fc218..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateMaragingSteel350/0.png b/front/public/images/small/miscutils/itemPlateMaragingSteel350/0.png deleted file mode 100644 index 1f3d11fdfe..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateMeatRaw/0.png b/front/public/images/small/miscutils/itemPlateMeatRaw/0.png deleted file mode 100644 index 1a8f2fbec4..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateMeatRaw/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemPlateNiobiumCarbide/0.png deleted file mode 100644 index 41f3a686a6..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateNitinol60/0.png b/front/public/images/small/miscutils/itemPlateNitinol60/0.png deleted file mode 100644 index ed356e1810..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateOctiron/0.png b/front/public/images/small/miscutils/itemPlateOctiron/0.png deleted file mode 100644 index 7f227eb5c2..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlatePikyonium64B/0.png b/front/public/images/small/miscutils/itemPlatePikyonium64B/0.png deleted file mode 100644 index f6cbd7072c..0000000000 Binary files a/front/public/images/small/miscutils/itemPlatePikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlatePotin/0.png b/front/public/images/small/miscutils/itemPlatePotin/0.png deleted file mode 100644 index a59d4f348d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlatePotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlatePraseodymium/0.png b/front/public/images/small/miscutils/itemPlatePraseodymium/0.png deleted file mode 100644 index 819569ee1b..0000000000 Binary files a/front/public/images/small/miscutils/itemPlatePraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateQuantum/0.png b/front/public/images/small/miscutils/itemPlateQuantum/0.png deleted file mode 100644 index 56b3806512..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateRhenium/0.png b/front/public/images/small/miscutils/itemPlateRhenium/0.png deleted file mode 100644 index 71b174d382..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateRhodium/0.png b/front/public/images/small/miscutils/itemPlateRhodium/0.png deleted file mode 100644 index ca77e0325a..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateRhugnor/0.png b/front/public/images/small/miscutils/itemPlateRhugnor/0.png deleted file mode 100644 index 88455abae0..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateRhugnor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateRunite/0.png b/front/public/images/small/miscutils/itemPlateRunite/0.png deleted file mode 100644 index c4d4b508a0..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateRuthenium/0.png b/front/public/images/small/miscutils/itemPlateRuthenium/0.png deleted file mode 100644 index ca77e0325a..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateSelenium/0.png b/front/public/images/small/miscutils/itemPlateSelenium/0.png deleted file mode 100644 index e036a1dbfd..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateSiliconCarbide/0.png b/front/public/images/small/miscutils/itemPlateSiliconCarbide/0.png deleted file mode 100644 index d1ed61c170..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateSodium/0.png b/front/public/images/small/miscutils/itemPlateSodium/0.png deleted file mode 100644 index 640fedafe3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateSodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateStaballoy/0.png b/front/public/images/small/miscutils/itemPlateStaballoy/0.png deleted file mode 100644 index fbca2d9204..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateStellite/0.png b/front/public/images/small/miscutils/itemPlateStellite/0.png deleted file mode 100644 index 0feadaedc2..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateStrontium/0.png b/front/public/images/small/miscutils/itemPlateStrontium/0.png deleted file mode 100644 index a21825cf4d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTalonite/0.png b/front/public/images/small/miscutils/itemPlateTalonite/0.png deleted file mode 100644 index 20b9cad500..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTantalloy60/0.png b/front/public/images/small/miscutils/itemPlateTantalloy60/0.png deleted file mode 100644 index 3cab607918..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTantalloy61/0.png b/front/public/images/small/miscutils/itemPlateTantalloy61/0.png deleted file mode 100644 index c5dae90831..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTantalumCarbide/0.png b/front/public/images/small/miscutils/itemPlateTantalumCarbide/0.png deleted file mode 100644 index 3b862e6b10..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTeflon/0.png b/front/public/images/small/miscutils/itemPlateTeflon/0.png deleted file mode 100644 index f5536dbcab..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTeflon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTellurium/0.png b/front/public/images/small/miscutils/itemPlateTellurium/0.png deleted file mode 100644 index 1b6be9a143..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateThallium/0.png b/front/public/images/small/miscutils/itemPlateThallium/0.png deleted file mode 100644 index baf1a331b2..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateThorium232/0.png b/front/public/images/small/miscutils/itemPlateThorium232/0.png deleted file mode 100644 index f5484b17b0..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateThorium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTitansteel/0.png b/front/public/images/small/miscutils/itemPlateTitansteel/0.png deleted file mode 100644 index b04b814544..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTriniumNaquadahAlloy/0.png b/front/public/images/small/miscutils/itemPlateTriniumNaquadahAlloy/0.png deleted file mode 100644 index c18795e4f9..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTriniumNaquadahAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemPlateTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 07c0aa6a0d..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemPlateTriniumTitaniumAlloy/0.png deleted file mode 100644 index f1275a2411..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTumbaga/0.png b/front/public/images/small/miscutils/itemPlateTumbaga/0.png deleted file mode 100644 index 1459ed103f..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemPlateTungstenTitaniumCarbide/0.png deleted file mode 100644 index c296d26abd..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateUranium232/0.png b/front/public/images/small/miscutils/itemPlateUranium232/0.png deleted file mode 100644 index 85350ef5b8..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateUranium233/0.png b/front/public/images/small/miscutils/itemPlateUranium233/0.png deleted file mode 100644 index 16c279a8a9..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateWatertightSteel/0.png b/front/public/images/small/miscutils/itemPlateWatertightSteel/0.png deleted file mode 100644 index 5fdc24eeb3..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateWhiteMetal/0.png b/front/public/images/small/miscutils/itemPlateWhiteMetal/0.png deleted file mode 100644 index 8beaf7633e..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateZeron100/0.png b/front/public/images/small/miscutils/itemPlateZeron100/0.png deleted file mode 100644 index 03834311fd..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateZirconium/0.png b/front/public/images/small/miscutils/itemPlateZirconium/0.png deleted file mode 100644 index e5263babc4..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemPlateZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemPlateZirconiumCarbide/0.png deleted file mode 100644 index cb391635b5..0000000000 Binary files a/front/public/images/small/miscutils/itemPlateZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemRingAbyssalAlloy/0.png deleted file mode 100644 index 2b68323847..0000000000 Binary files a/front/public/images/small/miscutils/itemRingAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingArcanite/0.png b/front/public/images/small/miscutils/itemRingArcanite/0.png deleted file mode 100644 index 82f72e9e43..0000000000 Binary files a/front/public/images/small/miscutils/itemRingArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemRingArceusAlloy2B/0.png deleted file mode 100644 index 7ab819b3ee..0000000000 Binary files a/front/public/images/small/miscutils/itemRingArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingAstralTitanium/0.png b/front/public/images/small/miscutils/itemRingAstralTitanium/0.png deleted file mode 100644 index 317a6dcf6e..0000000000 Binary files a/front/public/images/small/miscutils/itemRingAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingBlackMetal/0.png b/front/public/images/small/miscutils/itemRingBlackMetal/0.png deleted file mode 100644 index bfe026a889..0000000000 Binary files a/front/public/images/small/miscutils/itemRingBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingBloodSteel/0.png b/front/public/images/small/miscutils/itemRingBloodSteel/0.png deleted file mode 100644 index 467a8dcdff..0000000000 Binary files a/front/public/images/small/miscutils/itemRingBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingBotmium/0.png b/front/public/images/small/miscutils/itemRingBotmium/0.png deleted file mode 100644 index 50c0147a76..0000000000 Binary files a/front/public/images/small/miscutils/itemRingBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingCelestialTungsten/0.png b/front/public/images/small/miscutils/itemRingCelestialTungsten/0.png deleted file mode 100644 index feff5760fb..0000000000 Binary files a/front/public/images/small/miscutils/itemRingCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingChromaticGlass/0.png b/front/public/images/small/miscutils/itemRingChromaticGlass/0.png deleted file mode 100644 index 638b5fbc88..0000000000 Binary files a/front/public/images/small/miscutils/itemRingChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingCinobiteA243/0.png b/front/public/images/small/miscutils/itemRingCinobiteA243/0.png deleted file mode 100644 index c7e09d9f59..0000000000 Binary files a/front/public/images/small/miscutils/itemRingCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingDysprosium/0.png b/front/public/images/small/miscutils/itemRingDysprosium/0.png deleted file mode 100644 index 2c75094666..0000000000 Binary files a/front/public/images/small/miscutils/itemRingDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingEglinSteel/0.png b/front/public/images/small/miscutils/itemRingEglinSteel/0.png deleted file mode 100644 index 28583ba33a..0000000000 Binary files a/front/public/images/small/miscutils/itemRingEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingEnergyCrystal/0.png b/front/public/images/small/miscutils/itemRingEnergyCrystal/0.png deleted file mode 100644 index ddebfccf7e..0000000000 Binary files a/front/public/images/small/miscutils/itemRingEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingErbium/0.png b/front/public/images/small/miscutils/itemRingErbium/0.png deleted file mode 100644 index 4f2eeb96d2..0000000000 Binary files a/front/public/images/small/miscutils/itemRingErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingGermanium/0.png b/front/public/images/small/miscutils/itemRingGermanium/0.png deleted file mode 100644 index d4bac2ac0f..0000000000 Binary files a/front/public/images/small/miscutils/itemRingGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingGrisium/0.png b/front/public/images/small/miscutils/itemRingGrisium/0.png deleted file mode 100644 index 4ed0e4d222..0000000000 Binary files a/front/public/images/small/miscutils/itemRingGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHS188A/0.png b/front/public/images/small/miscutils/itemRingHS188A/0.png deleted file mode 100644 index b1d11aec39..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHafnium/0.png b/front/public/images/small/miscutils/itemRingHafnium/0.png deleted file mode 100644 index 75c37abd98..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHastelloyC276/0.png b/front/public/images/small/miscutils/itemRingHastelloyC276/0.png deleted file mode 100644 index 51abbf0d8a..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHastelloyN/0.png b/front/public/images/small/miscutils/itemRingHastelloyN/0.png deleted file mode 100644 index 441d3de671..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHastelloyW/0.png b/front/public/images/small/miscutils/itemRingHastelloyW/0.png deleted file mode 100644 index 99faf5fb6f..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHastelloyX/0.png b/front/public/images/small/miscutils/itemRingHastelloyX/0.png deleted file mode 100644 index 92f0d44cbb..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemRingHeLiCoPtEr/0.png deleted file mode 100644 index 24655f64ca..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingHypogen/0.png b/front/public/images/small/miscutils/itemRingHypogen/0.png deleted file mode 100644 index cb63990874..0000000000 Binary files a/front/public/images/small/miscutils/itemRingHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingIncoloy020/0.png b/front/public/images/small/miscutils/itemRingIncoloy020/0.png deleted file mode 100644 index 8327aebcba..0000000000 Binary files a/front/public/images/small/miscutils/itemRingIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingIncoloyDS/0.png b/front/public/images/small/miscutils/itemRingIncoloyDS/0.png deleted file mode 100644 index 49f12bb5f3..0000000000 Binary files a/front/public/images/small/miscutils/itemRingIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingIncoloyMA956/0.png b/front/public/images/small/miscutils/itemRingIncoloyMA956/0.png deleted file mode 100644 index c13eadbc14..0000000000 Binary files a/front/public/images/small/miscutils/itemRingIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingInconel625/0.png b/front/public/images/small/miscutils/itemRingInconel625/0.png deleted file mode 100644 index b162bea82a..0000000000 Binary files a/front/public/images/small/miscutils/itemRingInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingInconel690/0.png b/front/public/images/small/miscutils/itemRingInconel690/0.png deleted file mode 100644 index 7e37bd354d..0000000000 Binary files a/front/public/images/small/miscutils/itemRingInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingInconel792/0.png b/front/public/images/small/miscutils/itemRingInconel792/0.png deleted file mode 100644 index ffb0bae7ba..0000000000 Binary files a/front/public/images/small/miscutils/itemRingInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingIodine/0.png b/front/public/images/small/miscutils/itemRingIodine/0.png deleted file mode 100644 index bbaae64a5f..0000000000 Binary files a/front/public/images/small/miscutils/itemRingIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingLafiumCompound/0.png b/front/public/images/small/miscutils/itemRingLafiumCompound/0.png deleted file mode 100644 index 3f71392d07..0000000000 Binary files a/front/public/images/small/miscutils/itemRingLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingLaurenium/0.png b/front/public/images/small/miscutils/itemRingLaurenium/0.png deleted file mode 100644 index 04a6cec65b..0000000000 Binary files a/front/public/images/small/miscutils/itemRingLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingMaragingSteel250/0.png b/front/public/images/small/miscutils/itemRingMaragingSteel250/0.png deleted file mode 100644 index 9a2a051b31..0000000000 Binary files a/front/public/images/small/miscutils/itemRingMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingMaragingSteel300/0.png b/front/public/images/small/miscutils/itemRingMaragingSteel300/0.png deleted file mode 100644 index b131281fed..0000000000 Binary files a/front/public/images/small/miscutils/itemRingMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingMaragingSteel350/0.png b/front/public/images/small/miscutils/itemRingMaragingSteel350/0.png deleted file mode 100644 index 5e5ef7810b..0000000000 Binary files a/front/public/images/small/miscutils/itemRingMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemRingNiobiumCarbide/0.png deleted file mode 100644 index e813801e08..0000000000 Binary files a/front/public/images/small/miscutils/itemRingNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingNitinol60/0.png b/front/public/images/small/miscutils/itemRingNitinol60/0.png deleted file mode 100644 index 33eeba3365..0000000000 Binary files a/front/public/images/small/miscutils/itemRingNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingOctiron/0.png b/front/public/images/small/miscutils/itemRingOctiron/0.png deleted file mode 100644 index 9c518a9eec..0000000000 Binary files a/front/public/images/small/miscutils/itemRingOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingPikyonium64B/0.png b/front/public/images/small/miscutils/itemRingPikyonium64B/0.png deleted file mode 100644 index 6322262601..0000000000 Binary files a/front/public/images/small/miscutils/itemRingPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingPotin/0.png b/front/public/images/small/miscutils/itemRingPotin/0.png deleted file mode 100644 index ffadb69f96..0000000000 Binary files a/front/public/images/small/miscutils/itemRingPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingPraseodymium/0.png b/front/public/images/small/miscutils/itemRingPraseodymium/0.png deleted file mode 100644 index 6b6aae2b06..0000000000 Binary files a/front/public/images/small/miscutils/itemRingPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingQuantum/0.png b/front/public/images/small/miscutils/itemRingQuantum/0.png deleted file mode 100644 index 9debdd2652..0000000000 Binary files a/front/public/images/small/miscutils/itemRingQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingRhenium/0.png b/front/public/images/small/miscutils/itemRingRhenium/0.png deleted file mode 100644 index 4cb1270206..0000000000 Binary files a/front/public/images/small/miscutils/itemRingRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingRhodium/0.png b/front/public/images/small/miscutils/itemRingRhodium/0.png deleted file mode 100644 index ef6b6e7672..0000000000 Binary files a/front/public/images/small/miscutils/itemRingRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingRuthenium/0.png b/front/public/images/small/miscutils/itemRingRuthenium/0.png deleted file mode 100644 index ef6b6e7672..0000000000 Binary files a/front/public/images/small/miscutils/itemRingRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingSelenium/0.png b/front/public/images/small/miscutils/itemRingSelenium/0.png deleted file mode 100644 index 8848bbc250..0000000000 Binary files a/front/public/images/small/miscutils/itemRingSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingSiliconCarbide/0.png b/front/public/images/small/miscutils/itemRingSiliconCarbide/0.png deleted file mode 100644 index 562cc5e40e..0000000000 Binary files a/front/public/images/small/miscutils/itemRingSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingStaballoy/0.png b/front/public/images/small/miscutils/itemRingStaballoy/0.png deleted file mode 100644 index fac4f65945..0000000000 Binary files a/front/public/images/small/miscutils/itemRingStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingStellite/0.png b/front/public/images/small/miscutils/itemRingStellite/0.png deleted file mode 100644 index dc38fbfc13..0000000000 Binary files a/front/public/images/small/miscutils/itemRingStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingStrontium/0.png b/front/public/images/small/miscutils/itemRingStrontium/0.png deleted file mode 100644 index d0d07f0e81..0000000000 Binary files a/front/public/images/small/miscutils/itemRingStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTalonite/0.png b/front/public/images/small/miscutils/itemRingTalonite/0.png deleted file mode 100644 index 7f6e61a530..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTantalloy60/0.png b/front/public/images/small/miscutils/itemRingTantalloy60/0.png deleted file mode 100644 index 1f5af8f3d2..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTantalloy61/0.png b/front/public/images/small/miscutils/itemRingTantalloy61/0.png deleted file mode 100644 index 0510579eb4..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTantalumCarbide/0.png b/front/public/images/small/miscutils/itemRingTantalumCarbide/0.png deleted file mode 100644 index 46a856368a..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTellurium/0.png b/front/public/images/small/miscutils/itemRingTellurium/0.png deleted file mode 100644 index bdba78b70a..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingThallium/0.png b/front/public/images/small/miscutils/itemRingThallium/0.png deleted file mode 100644 index c3f2b1dcf9..0000000000 Binary files a/front/public/images/small/miscutils/itemRingThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTitansteel/0.png b/front/public/images/small/miscutils/itemRingTitansteel/0.png deleted file mode 100644 index 738d8bd75e..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemRingTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 8435f685d3..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemRingTriniumTitaniumAlloy/0.png deleted file mode 100644 index 71382e6d63..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTumbaga/0.png b/front/public/images/small/miscutils/itemRingTumbaga/0.png deleted file mode 100644 index ae2149f048..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemRingTungstenTitaniumCarbide/0.png deleted file mode 100644 index c058c543a3..0000000000 Binary files a/front/public/images/small/miscutils/itemRingTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingWatertightSteel/0.png b/front/public/images/small/miscutils/itemRingWatertightSteel/0.png deleted file mode 100644 index 02321cc638..0000000000 Binary files a/front/public/images/small/miscutils/itemRingWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingWhiteMetal/0.png b/front/public/images/small/miscutils/itemRingWhiteMetal/0.png deleted file mode 100644 index 7c800a0299..0000000000 Binary files a/front/public/images/small/miscutils/itemRingWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingZeron100/0.png b/front/public/images/small/miscutils/itemRingZeron100/0.png deleted file mode 100644 index 51f2658b81..0000000000 Binary files a/front/public/images/small/miscutils/itemRingZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingZirconium/0.png b/front/public/images/small/miscutils/itemRingZirconium/0.png deleted file mode 100644 index 820f1f1e88..0000000000 Binary files a/front/public/images/small/miscutils/itemRingZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRingZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemRingZirconiumCarbide/0.png deleted file mode 100644 index c3f542c372..0000000000 Binary files a/front/public/images/small/miscutils/itemRingZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemRodAbyssalAlloy/0.png deleted file mode 100644 index 432aefab1f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodArcanite/0.png b/front/public/images/small/miscutils/itemRodArcanite/0.png deleted file mode 100644 index 3681274161..0000000000 Binary files a/front/public/images/small/miscutils/itemRodArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemRodArceusAlloy2B/0.png deleted file mode 100644 index 7df80d4b91..0000000000 Binary files a/front/public/images/small/miscutils/itemRodArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodAstralTitanium/0.png b/front/public/images/small/miscutils/itemRodAstralTitanium/0.png deleted file mode 100644 index d0eb4de147..0000000000 Binary files a/front/public/images/small/miscutils/itemRodAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodBlackMetal/0.png b/front/public/images/small/miscutils/itemRodBlackMetal/0.png deleted file mode 100644 index 0034a461c7..0000000000 Binary files a/front/public/images/small/miscutils/itemRodBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodBloodSteel/0.png b/front/public/images/small/miscutils/itemRodBloodSteel/0.png deleted file mode 100644 index e406ce2fed..0000000000 Binary files a/front/public/images/small/miscutils/itemRodBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodBotmium/0.png b/front/public/images/small/miscutils/itemRodBotmium/0.png deleted file mode 100644 index 4515ee1a46..0000000000 Binary files a/front/public/images/small/miscutils/itemRodBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodCelestialTungsten/0.png b/front/public/images/small/miscutils/itemRodCelestialTungsten/0.png deleted file mode 100644 index 97798f2a84..0000000000 Binary files a/front/public/images/small/miscutils/itemRodCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodChromaticGlass/0.png b/front/public/images/small/miscutils/itemRodChromaticGlass/0.png deleted file mode 100644 index 579d02778a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodCinobiteA243/0.png b/front/public/images/small/miscutils/itemRodCinobiteA243/0.png deleted file mode 100644 index 136193b0db..0000000000 Binary files a/front/public/images/small/miscutils/itemRodCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodDysprosium/0.png b/front/public/images/small/miscutils/itemRodDysprosium/0.png deleted file mode 100644 index 751d59a9e9..0000000000 Binary files a/front/public/images/small/miscutils/itemRodDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodEglinSteel/0.png b/front/public/images/small/miscutils/itemRodEglinSteel/0.png deleted file mode 100644 index d192841563..0000000000 Binary files a/front/public/images/small/miscutils/itemRodEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodEnergyCrystal/0.png b/front/public/images/small/miscutils/itemRodEnergyCrystal/0.png deleted file mode 100644 index 46641e7525..0000000000 Binary files a/front/public/images/small/miscutils/itemRodEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodErbium/0.png b/front/public/images/small/miscutils/itemRodErbium/0.png deleted file mode 100644 index 3b2a9b35db..0000000000 Binary files a/front/public/images/small/miscutils/itemRodErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodGermanium/0.png b/front/public/images/small/miscutils/itemRodGermanium/0.png deleted file mode 100644 index 289e0684dd..0000000000 Binary files a/front/public/images/small/miscutils/itemRodGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodGrisium/0.png b/front/public/images/small/miscutils/itemRodGrisium/0.png deleted file mode 100644 index e9b64e31b3..0000000000 Binary files a/front/public/images/small/miscutils/itemRodGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHS188A/0.png b/front/public/images/small/miscutils/itemRodHS188A/0.png deleted file mode 100644 index 428fd11803..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHafnium/0.png b/front/public/images/small/miscutils/itemRodHafnium/0.png deleted file mode 100644 index 701f776b66..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHastelloyC276/0.png b/front/public/images/small/miscutils/itemRodHastelloyC276/0.png deleted file mode 100644 index a69eabc36e..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHastelloyN/0.png b/front/public/images/small/miscutils/itemRodHastelloyN/0.png deleted file mode 100644 index c421cf646f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHastelloyW/0.png b/front/public/images/small/miscutils/itemRodHastelloyW/0.png deleted file mode 100644 index 425e61731b..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHastelloyX/0.png b/front/public/images/small/miscutils/itemRodHastelloyX/0.png deleted file mode 100644 index 6f286ba0f4..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemRodHeLiCoPtEr/0.png deleted file mode 100644 index 7104facd06..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodHypogen/0.png b/front/public/images/small/miscutils/itemRodHypogen/0.png deleted file mode 100644 index 8aa633fea0..0000000000 Binary files a/front/public/images/small/miscutils/itemRodHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodIncoloy020/0.png b/front/public/images/small/miscutils/itemRodIncoloy020/0.png deleted file mode 100644 index b51b5d63e0..0000000000 Binary files a/front/public/images/small/miscutils/itemRodIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodIncoloyDS/0.png b/front/public/images/small/miscutils/itemRodIncoloyDS/0.png deleted file mode 100644 index 87c97fbe46..0000000000 Binary files a/front/public/images/small/miscutils/itemRodIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodIncoloyMA956/0.png b/front/public/images/small/miscutils/itemRodIncoloyMA956/0.png deleted file mode 100644 index a14456e47a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodInconel625/0.png b/front/public/images/small/miscutils/itemRodInconel625/0.png deleted file mode 100644 index 2470b12067..0000000000 Binary files a/front/public/images/small/miscutils/itemRodInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodInconel690/0.png b/front/public/images/small/miscutils/itemRodInconel690/0.png deleted file mode 100644 index 3c5bf493e8..0000000000 Binary files a/front/public/images/small/miscutils/itemRodInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodInconel792/0.png b/front/public/images/small/miscutils/itemRodInconel792/0.png deleted file mode 100644 index 51a780777f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodIodine/0.png b/front/public/images/small/miscutils/itemRodIodine/0.png deleted file mode 100644 index c1f570a5ff..0000000000 Binary files a/front/public/images/small/miscutils/itemRodIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLafiumCompound/0.png b/front/public/images/small/miscutils/itemRodLafiumCompound/0.png deleted file mode 100644 index a92d1c4794..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLaurenium/0.png b/front/public/images/small/miscutils/itemRodLaurenium/0.png deleted file mode 100644 index 485f41cf48..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemRodLongAbyssalAlloy/0.png deleted file mode 100644 index 08c8202497..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongArcanite/0.png b/front/public/images/small/miscutils/itemRodLongArcanite/0.png deleted file mode 100644 index 95fd97e676..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemRodLongArceusAlloy2B/0.png deleted file mode 100644 index 531ea7ffbf..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongAstralTitanium/0.png b/front/public/images/small/miscutils/itemRodLongAstralTitanium/0.png deleted file mode 100644 index f7b3cf1201..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongBlackMetal/0.png b/front/public/images/small/miscutils/itemRodLongBlackMetal/0.png deleted file mode 100644 index b3fdd3e08e..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongBloodSteel/0.png b/front/public/images/small/miscutils/itemRodLongBloodSteel/0.png deleted file mode 100644 index 8b4d8ea0a4..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongBotmium/0.png b/front/public/images/small/miscutils/itemRodLongBotmium/0.png deleted file mode 100644 index 8913b7459b..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongCelestialTungsten/0.png b/front/public/images/small/miscutils/itemRodLongCelestialTungsten/0.png deleted file mode 100644 index 8ea23c29a8..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongChromaticGlass/0.png b/front/public/images/small/miscutils/itemRodLongChromaticGlass/0.png deleted file mode 100644 index 72188ebcef..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongCinobiteA243/0.png b/front/public/images/small/miscutils/itemRodLongCinobiteA243/0.png deleted file mode 100644 index 1751c2eaea..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongDysprosium/0.png b/front/public/images/small/miscutils/itemRodLongDysprosium/0.png deleted file mode 100644 index deeb0c6e64..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongEglinSteel/0.png b/front/public/images/small/miscutils/itemRodLongEglinSteel/0.png deleted file mode 100644 index 2756363f94..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongEnergyCrystal/0.png b/front/public/images/small/miscutils/itemRodLongEnergyCrystal/0.png deleted file mode 100644 index bb63c0fb04..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongErbium/0.png b/front/public/images/small/miscutils/itemRodLongErbium/0.png deleted file mode 100644 index 0d1dca799c..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongGermanium/0.png b/front/public/images/small/miscutils/itemRodLongGermanium/0.png deleted file mode 100644 index 148bd1a298..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongGrisium/0.png b/front/public/images/small/miscutils/itemRodLongGrisium/0.png deleted file mode 100644 index 48621b1e5a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHS188A/0.png b/front/public/images/small/miscutils/itemRodLongHS188A/0.png deleted file mode 100644 index b54462fedc..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHafnium/0.png b/front/public/images/small/miscutils/itemRodLongHafnium/0.png deleted file mode 100644 index 6f3b8df49f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHastelloyC276/0.png b/front/public/images/small/miscutils/itemRodLongHastelloyC276/0.png deleted file mode 100644 index 0e060e8e89..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHastelloyN/0.png b/front/public/images/small/miscutils/itemRodLongHastelloyN/0.png deleted file mode 100644 index 4d4e361187..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHastelloyW/0.png b/front/public/images/small/miscutils/itemRodLongHastelloyW/0.png deleted file mode 100644 index a7b479acfa..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHastelloyX/0.png b/front/public/images/small/miscutils/itemRodLongHastelloyX/0.png deleted file mode 100644 index fce8b9696e..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemRodLongHeLiCoPtEr/0.png deleted file mode 100644 index e5e6e720d6..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongHypogen/0.png b/front/public/images/small/miscutils/itemRodLongHypogen/0.png deleted file mode 100644 index bc29023a7a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongIncoloy020/0.png b/front/public/images/small/miscutils/itemRodLongIncoloy020/0.png deleted file mode 100644 index a0a0929e16..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongIncoloyDS/0.png b/front/public/images/small/miscutils/itemRodLongIncoloyDS/0.png deleted file mode 100644 index b044684988..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongIncoloyMA956/0.png b/front/public/images/small/miscutils/itemRodLongIncoloyMA956/0.png deleted file mode 100644 index bc031a9ef1..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongInconel625/0.png b/front/public/images/small/miscutils/itemRodLongInconel625/0.png deleted file mode 100644 index f592efd0f7..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongInconel690/0.png b/front/public/images/small/miscutils/itemRodLongInconel690/0.png deleted file mode 100644 index 7fed0edb12..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongInconel792/0.png b/front/public/images/small/miscutils/itemRodLongInconel792/0.png deleted file mode 100644 index b3bec01965..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongIodine/0.png b/front/public/images/small/miscutils/itemRodLongIodine/0.png deleted file mode 100644 index bf5de838cc..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongLafiumCompound/0.png b/front/public/images/small/miscutils/itemRodLongLafiumCompound/0.png deleted file mode 100644 index 6afaf1ba62..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongLaurenium/0.png b/front/public/images/small/miscutils/itemRodLongLaurenium/0.png deleted file mode 100644 index 6add53d334..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongMaragingSteel250/0.png b/front/public/images/small/miscutils/itemRodLongMaragingSteel250/0.png deleted file mode 100644 index c1f2ff741f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongMaragingSteel300/0.png b/front/public/images/small/miscutils/itemRodLongMaragingSteel300/0.png deleted file mode 100644 index 7e871730fb..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongMaragingSteel350/0.png b/front/public/images/small/miscutils/itemRodLongMaragingSteel350/0.png deleted file mode 100644 index 84daf39d54..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemRodLongNiobiumCarbide/0.png deleted file mode 100644 index 22567230c0..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongNitinol60/0.png b/front/public/images/small/miscutils/itemRodLongNitinol60/0.png deleted file mode 100644 index 903e40ddb9..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongOctiron/0.png b/front/public/images/small/miscutils/itemRodLongOctiron/0.png deleted file mode 100644 index 99a605d49a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongPikyonium64B/0.png b/front/public/images/small/miscutils/itemRodLongPikyonium64B/0.png deleted file mode 100644 index bab745674d..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongPotin/0.png b/front/public/images/small/miscutils/itemRodLongPotin/0.png deleted file mode 100644 index 6fedfd2f35..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongPraseodymium/0.png b/front/public/images/small/miscutils/itemRodLongPraseodymium/0.png deleted file mode 100644 index 9aa3e9892f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongQuantum/0.png b/front/public/images/small/miscutils/itemRodLongQuantum/0.png deleted file mode 100644 index 4fdfd033d7..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongRhenium/0.png b/front/public/images/small/miscutils/itemRodLongRhenium/0.png deleted file mode 100644 index 4a075e9e6a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongRhodium/0.png b/front/public/images/small/miscutils/itemRodLongRhodium/0.png deleted file mode 100644 index 9e981a5bf9..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongRuthenium/0.png b/front/public/images/small/miscutils/itemRodLongRuthenium/0.png deleted file mode 100644 index 9e981a5bf9..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongSelenium/0.png b/front/public/images/small/miscutils/itemRodLongSelenium/0.png deleted file mode 100644 index ecb7821c17..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongSiliconCarbide/0.png b/front/public/images/small/miscutils/itemRodLongSiliconCarbide/0.png deleted file mode 100644 index 1c45242884..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongStaballoy/0.png b/front/public/images/small/miscutils/itemRodLongStaballoy/0.png deleted file mode 100644 index 2d7a06ad57..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongStellite/0.png b/front/public/images/small/miscutils/itemRodLongStellite/0.png deleted file mode 100644 index b4e68d9859..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongStrontium/0.png b/front/public/images/small/miscutils/itemRodLongStrontium/0.png deleted file mode 100644 index aa10caed57..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTalonite/0.png b/front/public/images/small/miscutils/itemRodLongTalonite/0.png deleted file mode 100644 index 5a86825c67..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTantalloy60/0.png b/front/public/images/small/miscutils/itemRodLongTantalloy60/0.png deleted file mode 100644 index abf74e3439..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTantalloy61/0.png b/front/public/images/small/miscutils/itemRodLongTantalloy61/0.png deleted file mode 100644 index 1861c8c715..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTantalumCarbide/0.png b/front/public/images/small/miscutils/itemRodLongTantalumCarbide/0.png deleted file mode 100644 index 541486b972..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTellurium/0.png b/front/public/images/small/miscutils/itemRodLongTellurium/0.png deleted file mode 100644 index a0865218cd..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongThallium/0.png b/front/public/images/small/miscutils/itemRodLongThallium/0.png deleted file mode 100644 index 010f6e1219..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTitansteel/0.png b/front/public/images/small/miscutils/itemRodLongTitansteel/0.png deleted file mode 100644 index 8278f4bb4a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemRodLongTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 84fec3f5ff..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemRodLongTriniumTitaniumAlloy/0.png deleted file mode 100644 index f67e5117d3..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTumbaga/0.png b/front/public/images/small/miscutils/itemRodLongTumbaga/0.png deleted file mode 100644 index ef79493e64..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemRodLongTungstenTitaniumCarbide/0.png deleted file mode 100644 index fc0c2d9df5..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongUranium232/0.png b/front/public/images/small/miscutils/itemRodLongUranium232/0.png deleted file mode 100644 index 3a06e450aa..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongUranium233/0.png b/front/public/images/small/miscutils/itemRodLongUranium233/0.png deleted file mode 100644 index 7fe46fb9eb..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongWatertightSteel/0.png b/front/public/images/small/miscutils/itemRodLongWatertightSteel/0.png deleted file mode 100644 index 6c31d833eb..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongWhiteMetal/0.png b/front/public/images/small/miscutils/itemRodLongWhiteMetal/0.png deleted file mode 100644 index da4c64671d..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongZeron100/0.png b/front/public/images/small/miscutils/itemRodLongZeron100/0.png deleted file mode 100644 index 156c83cff2..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongZirconium/0.png b/front/public/images/small/miscutils/itemRodLongZirconium/0.png deleted file mode 100644 index 47549970b6..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodLongZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemRodLongZirconiumCarbide/0.png deleted file mode 100644 index e59deb7b0b..0000000000 Binary files a/front/public/images/small/miscutils/itemRodLongZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodMaragingSteel250/0.png b/front/public/images/small/miscutils/itemRodMaragingSteel250/0.png deleted file mode 100644 index 5b73085500..0000000000 Binary files a/front/public/images/small/miscutils/itemRodMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodMaragingSteel300/0.png b/front/public/images/small/miscutils/itemRodMaragingSteel300/0.png deleted file mode 100644 index 6f8bedde07..0000000000 Binary files a/front/public/images/small/miscutils/itemRodMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodMaragingSteel350/0.png b/front/public/images/small/miscutils/itemRodMaragingSteel350/0.png deleted file mode 100644 index bad0b87177..0000000000 Binary files a/front/public/images/small/miscutils/itemRodMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemRodNiobiumCarbide/0.png deleted file mode 100644 index 7e78a25467..0000000000 Binary files a/front/public/images/small/miscutils/itemRodNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodNitinol60/0.png b/front/public/images/small/miscutils/itemRodNitinol60/0.png deleted file mode 100644 index 9b494a78a6..0000000000 Binary files a/front/public/images/small/miscutils/itemRodNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodOctiron/0.png b/front/public/images/small/miscutils/itemRodOctiron/0.png deleted file mode 100644 index b84da0c57d..0000000000 Binary files a/front/public/images/small/miscutils/itemRodOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodPikyonium64B/0.png b/front/public/images/small/miscutils/itemRodPikyonium64B/0.png deleted file mode 100644 index 21c0400d51..0000000000 Binary files a/front/public/images/small/miscutils/itemRodPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodPotin/0.png b/front/public/images/small/miscutils/itemRodPotin/0.png deleted file mode 100644 index 05a4fe76f4..0000000000 Binary files a/front/public/images/small/miscutils/itemRodPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodPraseodymium/0.png b/front/public/images/small/miscutils/itemRodPraseodymium/0.png deleted file mode 100644 index d5b3bba485..0000000000 Binary files a/front/public/images/small/miscutils/itemRodPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodQuantum/0.png b/front/public/images/small/miscutils/itemRodQuantum/0.png deleted file mode 100644 index 1c2539903a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodRhenium/0.png b/front/public/images/small/miscutils/itemRodRhenium/0.png deleted file mode 100644 index 80be0ed384..0000000000 Binary files a/front/public/images/small/miscutils/itemRodRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodRhodium/0.png b/front/public/images/small/miscutils/itemRodRhodium/0.png deleted file mode 100644 index c0ae4d7acb..0000000000 Binary files a/front/public/images/small/miscutils/itemRodRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodRuthenium/0.png b/front/public/images/small/miscutils/itemRodRuthenium/0.png deleted file mode 100644 index c0ae4d7acb..0000000000 Binary files a/front/public/images/small/miscutils/itemRodRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodSelenium/0.png b/front/public/images/small/miscutils/itemRodSelenium/0.png deleted file mode 100644 index 927a3b73dc..0000000000 Binary files a/front/public/images/small/miscutils/itemRodSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodSiliconCarbide/0.png b/front/public/images/small/miscutils/itemRodSiliconCarbide/0.png deleted file mode 100644 index 921db136af..0000000000 Binary files a/front/public/images/small/miscutils/itemRodSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodStaballoy/0.png b/front/public/images/small/miscutils/itemRodStaballoy/0.png deleted file mode 100644 index 026f96e666..0000000000 Binary files a/front/public/images/small/miscutils/itemRodStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodStellite/0.png b/front/public/images/small/miscutils/itemRodStellite/0.png deleted file mode 100644 index 1bbfb4af0f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodStrontium/0.png b/front/public/images/small/miscutils/itemRodStrontium/0.png deleted file mode 100644 index 4de31504e2..0000000000 Binary files a/front/public/images/small/miscutils/itemRodStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTalonite/0.png b/front/public/images/small/miscutils/itemRodTalonite/0.png deleted file mode 100644 index cd37976420..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTantalloy60/0.png b/front/public/images/small/miscutils/itemRodTantalloy60/0.png deleted file mode 100644 index 539d664f2a..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTantalloy61/0.png b/front/public/images/small/miscutils/itemRodTantalloy61/0.png deleted file mode 100644 index ed8621073f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTantalumCarbide/0.png b/front/public/images/small/miscutils/itemRodTantalumCarbide/0.png deleted file mode 100644 index 1b00f5f9e4..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTellurium/0.png b/front/public/images/small/miscutils/itemRodTellurium/0.png deleted file mode 100644 index be0bccb50d..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodThallium/0.png b/front/public/images/small/miscutils/itemRodThallium/0.png deleted file mode 100644 index 864988569f..0000000000 Binary files a/front/public/images/small/miscutils/itemRodThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTitansteel/0.png b/front/public/images/small/miscutils/itemRodTitansteel/0.png deleted file mode 100644 index 5efbae23ce..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemRodTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 652d2bb51d..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemRodTriniumTitaniumAlloy/0.png deleted file mode 100644 index 43b77da398..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTumbaga/0.png b/front/public/images/small/miscutils/itemRodTumbaga/0.png deleted file mode 100644 index 9902e8a056..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemRodTungstenTitaniumCarbide/0.png deleted file mode 100644 index b0bdb8dadd..0000000000 Binary files a/front/public/images/small/miscutils/itemRodTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodUranium232/0.png b/front/public/images/small/miscutils/itemRodUranium232/0.png deleted file mode 100644 index 28feeb2566..0000000000 Binary files a/front/public/images/small/miscutils/itemRodUranium232/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodUranium233/0.png b/front/public/images/small/miscutils/itemRodUranium233/0.png deleted file mode 100644 index 81ca0a1912..0000000000 Binary files a/front/public/images/small/miscutils/itemRodUranium233/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodWatertightSteel/0.png b/front/public/images/small/miscutils/itemRodWatertightSteel/0.png deleted file mode 100644 index d5e286dc20..0000000000 Binary files a/front/public/images/small/miscutils/itemRodWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodWhiteMetal/0.png b/front/public/images/small/miscutils/itemRodWhiteMetal/0.png deleted file mode 100644 index c49cffaecd..0000000000 Binary files a/front/public/images/small/miscutils/itemRodWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodZeron100/0.png b/front/public/images/small/miscutils/itemRodZeron100/0.png deleted file mode 100644 index f22178a491..0000000000 Binary files a/front/public/images/small/miscutils/itemRodZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodZirconium/0.png b/front/public/images/small/miscutils/itemRodZirconium/0.png deleted file mode 100644 index 9ec8300e85..0000000000 Binary files a/front/public/images/small/miscutils/itemRodZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRodZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemRodZirconiumCarbide/0.png deleted file mode 100644 index 40ad1183ae..0000000000 Binary files a/front/public/images/small/miscutils/itemRodZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemRotorAbyssalAlloy/0.png deleted file mode 100644 index 563a6c527a..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorArcanite/0.png b/front/public/images/small/miscutils/itemRotorArcanite/0.png deleted file mode 100644 index ca5cba0e27..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemRotorArceusAlloy2B/0.png deleted file mode 100644 index 6954c76189..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorAstralTitanium/0.png b/front/public/images/small/miscutils/itemRotorAstralTitanium/0.png deleted file mode 100644 index ccf0429c41..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorBlackMetal/0.png b/front/public/images/small/miscutils/itemRotorBlackMetal/0.png deleted file mode 100644 index 27acc0e920..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorBloodSteel/0.png b/front/public/images/small/miscutils/itemRotorBloodSteel/0.png deleted file mode 100644 index 74dc0061d7..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorBotmium/0.png b/front/public/images/small/miscutils/itemRotorBotmium/0.png deleted file mode 100644 index 0e453a2dc7..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorCelestialTungsten/0.png b/front/public/images/small/miscutils/itemRotorCelestialTungsten/0.png deleted file mode 100644 index e36bc17c9c..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorChromaticGlass/0.png b/front/public/images/small/miscutils/itemRotorChromaticGlass/0.png deleted file mode 100644 index 33e444a698..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorCinobiteA243/0.png b/front/public/images/small/miscutils/itemRotorCinobiteA243/0.png deleted file mode 100644 index 4b1872bb09..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorDysprosium/0.png b/front/public/images/small/miscutils/itemRotorDysprosium/0.png deleted file mode 100644 index 2e30346cf8..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorEglinSteel/0.png b/front/public/images/small/miscutils/itemRotorEglinSteel/0.png deleted file mode 100644 index a8031192fd..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorEnergyCrystal/0.png b/front/public/images/small/miscutils/itemRotorEnergyCrystal/0.png deleted file mode 100644 index ac55f51a22..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorErbium/0.png b/front/public/images/small/miscutils/itemRotorErbium/0.png deleted file mode 100644 index d182481735..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorGermanium/0.png b/front/public/images/small/miscutils/itemRotorGermanium/0.png deleted file mode 100644 index c2c1d12b54..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorGrisium/0.png b/front/public/images/small/miscutils/itemRotorGrisium/0.png deleted file mode 100644 index e0c2f09896..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHS188A/0.png b/front/public/images/small/miscutils/itemRotorHS188A/0.png deleted file mode 100644 index b065989d99..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHafnium/0.png b/front/public/images/small/miscutils/itemRotorHafnium/0.png deleted file mode 100644 index a1c87a200d..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHastelloyC276/0.png b/front/public/images/small/miscutils/itemRotorHastelloyC276/0.png deleted file mode 100644 index d150a1c75c..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHastelloyN/0.png b/front/public/images/small/miscutils/itemRotorHastelloyN/0.png deleted file mode 100644 index f90dbcfd51..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHastelloyW/0.png b/front/public/images/small/miscutils/itemRotorHastelloyW/0.png deleted file mode 100644 index e0aed0862a..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHastelloyX/0.png b/front/public/images/small/miscutils/itemRotorHastelloyX/0.png deleted file mode 100644 index 221e8cd026..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemRotorHeLiCoPtEr/0.png deleted file mode 100644 index a081fae930..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorHypogen/0.png b/front/public/images/small/miscutils/itemRotorHypogen/0.png deleted file mode 100644 index b904823545..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorIncoloy020/0.png b/front/public/images/small/miscutils/itemRotorIncoloy020/0.png deleted file mode 100644 index 812efcd13a..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorIncoloyDS/0.png b/front/public/images/small/miscutils/itemRotorIncoloyDS/0.png deleted file mode 100644 index 7e2ac028fb..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorIncoloyMA956/0.png b/front/public/images/small/miscutils/itemRotorIncoloyMA956/0.png deleted file mode 100644 index d07e0f7c1b..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorInconel625/0.png b/front/public/images/small/miscutils/itemRotorInconel625/0.png deleted file mode 100644 index d665cbded5..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorInconel690/0.png b/front/public/images/small/miscutils/itemRotorInconel690/0.png deleted file mode 100644 index 849fb648f5..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorInconel792/0.png b/front/public/images/small/miscutils/itemRotorInconel792/0.png deleted file mode 100644 index 0d8ab88797..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorIodine/0.png b/front/public/images/small/miscutils/itemRotorIodine/0.png deleted file mode 100644 index eb0c71f625..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorLafiumCompound/0.png b/front/public/images/small/miscutils/itemRotorLafiumCompound/0.png deleted file mode 100644 index 17120d516a..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorLaurenium/0.png b/front/public/images/small/miscutils/itemRotorLaurenium/0.png deleted file mode 100644 index b85c47df09..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorMaragingSteel250/0.png b/front/public/images/small/miscutils/itemRotorMaragingSteel250/0.png deleted file mode 100644 index 566ff30b10..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorMaragingSteel300/0.png b/front/public/images/small/miscutils/itemRotorMaragingSteel300/0.png deleted file mode 100644 index 00b7388b07..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorMaragingSteel350/0.png b/front/public/images/small/miscutils/itemRotorMaragingSteel350/0.png deleted file mode 100644 index 0badeb982d..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemRotorNiobiumCarbide/0.png deleted file mode 100644 index 408c904116..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorNitinol60/0.png b/front/public/images/small/miscutils/itemRotorNitinol60/0.png deleted file mode 100644 index afce7fa110..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorOctiron/0.png b/front/public/images/small/miscutils/itemRotorOctiron/0.png deleted file mode 100644 index 025cd9e575..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorPikyonium64B/0.png b/front/public/images/small/miscutils/itemRotorPikyonium64B/0.png deleted file mode 100644 index c4641dd5f5..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorPotin/0.png b/front/public/images/small/miscutils/itemRotorPotin/0.png deleted file mode 100644 index 4bcece2e36..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorPraseodymium/0.png b/front/public/images/small/miscutils/itemRotorPraseodymium/0.png deleted file mode 100644 index aef7d9fef3..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorQuantum/0.png b/front/public/images/small/miscutils/itemRotorQuantum/0.png deleted file mode 100644 index e9e50a2434..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorRhenium/0.png b/front/public/images/small/miscutils/itemRotorRhenium/0.png deleted file mode 100644 index fde228971e..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorRhodium/0.png b/front/public/images/small/miscutils/itemRotorRhodium/0.png deleted file mode 100644 index 5839f6a97a..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorRuthenium/0.png b/front/public/images/small/miscutils/itemRotorRuthenium/0.png deleted file mode 100644 index 5839f6a97a..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorSelenium/0.png b/front/public/images/small/miscutils/itemRotorSelenium/0.png deleted file mode 100644 index 9282c175b1..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorSiliconCarbide/0.png b/front/public/images/small/miscutils/itemRotorSiliconCarbide/0.png deleted file mode 100644 index bee61f0d44..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorStaballoy/0.png b/front/public/images/small/miscutils/itemRotorStaballoy/0.png deleted file mode 100644 index 78ec829932..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorStellite/0.png b/front/public/images/small/miscutils/itemRotorStellite/0.png deleted file mode 100644 index c430e0f908..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorStrontium/0.png b/front/public/images/small/miscutils/itemRotorStrontium/0.png deleted file mode 100644 index 4a39ba4d12..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTalonite/0.png b/front/public/images/small/miscutils/itemRotorTalonite/0.png deleted file mode 100644 index 8677878aa1..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTantalloy60/0.png b/front/public/images/small/miscutils/itemRotorTantalloy60/0.png deleted file mode 100644 index 407d4f06f6..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTantalloy61/0.png b/front/public/images/small/miscutils/itemRotorTantalloy61/0.png deleted file mode 100644 index c72eb774a4..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTantalumCarbide/0.png b/front/public/images/small/miscutils/itemRotorTantalumCarbide/0.png deleted file mode 100644 index 421e353264..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTellurium/0.png b/front/public/images/small/miscutils/itemRotorTellurium/0.png deleted file mode 100644 index 04800d4737..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorThallium/0.png b/front/public/images/small/miscutils/itemRotorThallium/0.png deleted file mode 100644 index d527528a26..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTitansteel/0.png b/front/public/images/small/miscutils/itemRotorTitansteel/0.png deleted file mode 100644 index f3ece36dfb..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemRotorTriniumNaquadahCarbonite/0.png deleted file mode 100644 index 73fabead8e..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemRotorTriniumTitaniumAlloy/0.png deleted file mode 100644 index b5289e0c8b..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTumbaga/0.png b/front/public/images/small/miscutils/itemRotorTumbaga/0.png deleted file mode 100644 index 55a73de019..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemRotorTungstenTitaniumCarbide/0.png deleted file mode 100644 index 1851005899..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorWatertightSteel/0.png b/front/public/images/small/miscutils/itemRotorWatertightSteel/0.png deleted file mode 100644 index 5cc6cc8ed2..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorWhiteMetal/0.png b/front/public/images/small/miscutils/itemRotorWhiteMetal/0.png deleted file mode 100644 index f1cc6ba767..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorZeron100/0.png b/front/public/images/small/miscutils/itemRotorZeron100/0.png deleted file mode 100644 index b530052a08..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorZirconium/0.png b/front/public/images/small/miscutils/itemRotorZirconium/0.png deleted file mode 100644 index 58e8648019..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemRotorZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemRotorZirconiumCarbide/0.png deleted file mode 100644 index c24811ae0c..0000000000 Binary files a/front/public/images/small/miscutils/itemRotorZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewAbyssalAlloy/0.png b/front/public/images/small/miscutils/itemScrewAbyssalAlloy/0.png deleted file mode 100644 index 39eb4ca857..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewAbyssalAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewArcanite/0.png b/front/public/images/small/miscutils/itemScrewArcanite/0.png deleted file mode 100644 index 3e30bc6dbe..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewArcanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewArceusAlloy2B/0.png b/front/public/images/small/miscutils/itemScrewArceusAlloy2B/0.png deleted file mode 100644 index 0f54f62bb6..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewArceusAlloy2B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewAstralTitanium/0.png b/front/public/images/small/miscutils/itemScrewAstralTitanium/0.png deleted file mode 100644 index 55c484935b..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewAstralTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewBlackMetal/0.png b/front/public/images/small/miscutils/itemScrewBlackMetal/0.png deleted file mode 100644 index 05b90b7bb1..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewBlackMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewBloodSteel/0.png b/front/public/images/small/miscutils/itemScrewBloodSteel/0.png deleted file mode 100644 index 51cf4596e5..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewBloodSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewBotmium/0.png b/front/public/images/small/miscutils/itemScrewBotmium/0.png deleted file mode 100644 index 014382dd91..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewBotmium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewCelestialTungsten/0.png b/front/public/images/small/miscutils/itemScrewCelestialTungsten/0.png deleted file mode 100644 index dfe7f98f4b..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewChromaticGlass/0.png b/front/public/images/small/miscutils/itemScrewChromaticGlass/0.png deleted file mode 100644 index 904f4cd184..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewChromaticGlass/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewCinobiteA243/0.png b/front/public/images/small/miscutils/itemScrewCinobiteA243/0.png deleted file mode 100644 index 7bff74198a..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewCinobiteA243/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewDysprosium/0.png b/front/public/images/small/miscutils/itemScrewDysprosium/0.png deleted file mode 100644 index bfd626af44..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewDysprosium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewEglinSteel/0.png b/front/public/images/small/miscutils/itemScrewEglinSteel/0.png deleted file mode 100644 index 8a093845c8..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewEnergyCrystal/0.png b/front/public/images/small/miscutils/itemScrewEnergyCrystal/0.png deleted file mode 100644 index d30a6429fd..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewEnergyCrystal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewErbium/0.png b/front/public/images/small/miscutils/itemScrewErbium/0.png deleted file mode 100644 index 5c229653a6..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewErbium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewGermanium/0.png b/front/public/images/small/miscutils/itemScrewGermanium/0.png deleted file mode 100644 index 786755e4aa..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewGermanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewGrisium/0.png b/front/public/images/small/miscutils/itemScrewGrisium/0.png deleted file mode 100644 index 942f3e4725..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewGrisium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHS188A/0.png b/front/public/images/small/miscutils/itemScrewHS188A/0.png deleted file mode 100644 index 44fd69c533..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHS188A/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHafnium/0.png b/front/public/images/small/miscutils/itemScrewHafnium/0.png deleted file mode 100644 index 7bb708599e..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHafnium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHastelloyC276/0.png b/front/public/images/small/miscutils/itemScrewHastelloyC276/0.png deleted file mode 100644 index 904fbc02be..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHastelloyC276/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHastelloyN/0.png b/front/public/images/small/miscutils/itemScrewHastelloyN/0.png deleted file mode 100644 index 48e4d81be3..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHastelloyN/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHastelloyW/0.png b/front/public/images/small/miscutils/itemScrewHastelloyW/0.png deleted file mode 100644 index 9c5c2f1ac1..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHastelloyW/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHastelloyX/0.png b/front/public/images/small/miscutils/itemScrewHastelloyX/0.png deleted file mode 100644 index 5073ee24a4..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHastelloyX/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHeLiCoPtEr/0.png b/front/public/images/small/miscutils/itemScrewHeLiCoPtEr/0.png deleted file mode 100644 index 2e62b66aa7..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHeLiCoPtEr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewHypogen/0.png b/front/public/images/small/miscutils/itemScrewHypogen/0.png deleted file mode 100644 index 9106c1d9f4..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewHypogen/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewIncoloy020/0.png b/front/public/images/small/miscutils/itemScrewIncoloy020/0.png deleted file mode 100644 index c2a219a8b3..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewIncoloy020/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewIncoloyDS/0.png b/front/public/images/small/miscutils/itemScrewIncoloyDS/0.png deleted file mode 100644 index e197dd0bca..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewIncoloyDS/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewIncoloyMA956/0.png b/front/public/images/small/miscutils/itemScrewIncoloyMA956/0.png deleted file mode 100644 index 4b485aa92d..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewIncoloyMA956/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewInconel625/0.png b/front/public/images/small/miscutils/itemScrewInconel625/0.png deleted file mode 100644 index 02396dee4e..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewInconel625/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewInconel690/0.png b/front/public/images/small/miscutils/itemScrewInconel690/0.png deleted file mode 100644 index d6529d1644..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewInconel690/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewInconel792/0.png b/front/public/images/small/miscutils/itemScrewInconel792/0.png deleted file mode 100644 index d9785adda8..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewInconel792/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewIodine/0.png b/front/public/images/small/miscutils/itemScrewIodine/0.png deleted file mode 100644 index d8a6eded4f..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewIodine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewLafiumCompound/0.png b/front/public/images/small/miscutils/itemScrewLafiumCompound/0.png deleted file mode 100644 index 85c959279b..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewLafiumCompound/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewLaurenium/0.png b/front/public/images/small/miscutils/itemScrewLaurenium/0.png deleted file mode 100644 index dd4d9aa4f2..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewLaurenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewMaragingSteel250/0.png b/front/public/images/small/miscutils/itemScrewMaragingSteel250/0.png deleted file mode 100644 index be32eb13bd..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewMaragingSteel300/0.png b/front/public/images/small/miscutils/itemScrewMaragingSteel300/0.png deleted file mode 100644 index f8091c7ea2..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewMaragingSteel300/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewMaragingSteel350/0.png b/front/public/images/small/miscutils/itemScrewMaragingSteel350/0.png deleted file mode 100644 index ca14504878..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewMaragingSteel350/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewNiobiumCarbide/0.png b/front/public/images/small/miscutils/itemScrewNiobiumCarbide/0.png deleted file mode 100644 index d0823b2270..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewNiobiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewNitinol60/0.png b/front/public/images/small/miscutils/itemScrewNitinol60/0.png deleted file mode 100644 index 5290a99fe2..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewOctiron/0.png b/front/public/images/small/miscutils/itemScrewOctiron/0.png deleted file mode 100644 index a2e14eff69..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewOctiron/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewPikyonium64B/0.png b/front/public/images/small/miscutils/itemScrewPikyonium64B/0.png deleted file mode 100644 index 7929442c25..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewPikyonium64B/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewPotin/0.png b/front/public/images/small/miscutils/itemScrewPotin/0.png deleted file mode 100644 index 81ded51493..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewPotin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewPraseodymium/0.png b/front/public/images/small/miscutils/itemScrewPraseodymium/0.png deleted file mode 100644 index ff1ed73045..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewPraseodymium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewQuantum/0.png b/front/public/images/small/miscutils/itemScrewQuantum/0.png deleted file mode 100644 index 8715a4f769..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewQuantum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewRhenium/0.png b/front/public/images/small/miscutils/itemScrewRhenium/0.png deleted file mode 100644 index 2069a202f3..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewRhenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewRhodium/0.png b/front/public/images/small/miscutils/itemScrewRhodium/0.png deleted file mode 100644 index 41aaba12c9..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewRhodium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewRuthenium/0.png b/front/public/images/small/miscutils/itemScrewRuthenium/0.png deleted file mode 100644 index 41aaba12c9..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewRuthenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewSelenium/0.png b/front/public/images/small/miscutils/itemScrewSelenium/0.png deleted file mode 100644 index 0f3303a43d..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewSelenium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewSiliconCarbide/0.png b/front/public/images/small/miscutils/itemScrewSiliconCarbide/0.png deleted file mode 100644 index afa73d6c1b..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewSiliconCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewStaballoy/0.png b/front/public/images/small/miscutils/itemScrewStaballoy/0.png deleted file mode 100644 index d9e04aa576..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewStellite/0.png b/front/public/images/small/miscutils/itemScrewStellite/0.png deleted file mode 100644 index a7f33e9b2f..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewStellite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewStrontium/0.png b/front/public/images/small/miscutils/itemScrewStrontium/0.png deleted file mode 100644 index b6f2084142..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewStrontium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTalonite/0.png b/front/public/images/small/miscutils/itemScrewTalonite/0.png deleted file mode 100644 index 5718d3633e..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTalonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTantalloy60/0.png b/front/public/images/small/miscutils/itemScrewTantalloy60/0.png deleted file mode 100644 index a9a95dd810..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTantalloy60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTantalloy61/0.png b/front/public/images/small/miscutils/itemScrewTantalloy61/0.png deleted file mode 100644 index b7f1e8a3bf..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTantalloy61/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTantalumCarbide/0.png b/front/public/images/small/miscutils/itemScrewTantalumCarbide/0.png deleted file mode 100644 index 2081160eb8..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTantalumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTellurium/0.png b/front/public/images/small/miscutils/itemScrewTellurium/0.png deleted file mode 100644 index 91bd52e64b..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTellurium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewThallium/0.png b/front/public/images/small/miscutils/itemScrewThallium/0.png deleted file mode 100644 index ffa9e89a4b..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewThallium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTitansteel/0.png b/front/public/images/small/miscutils/itemScrewTitansteel/0.png deleted file mode 100644 index 579254c3a3..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTitansteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTriniumNaquadahCarbonite/0.png b/front/public/images/small/miscutils/itemScrewTriniumNaquadahCarbonite/0.png deleted file mode 100644 index e786c48047..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTriniumNaquadahCarbonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTriniumTitaniumAlloy/0.png b/front/public/images/small/miscutils/itemScrewTriniumTitaniumAlloy/0.png deleted file mode 100644 index 100eae0f63..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTriniumTitaniumAlloy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTumbaga/0.png b/front/public/images/small/miscutils/itemScrewTumbaga/0.png deleted file mode 100644 index 430527fc88..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTumbaga/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewTungstenTitaniumCarbide/0.png b/front/public/images/small/miscutils/itemScrewTungstenTitaniumCarbide/0.png deleted file mode 100644 index 71128c6b19..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewTungstenTitaniumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewWatertightSteel/0.png b/front/public/images/small/miscutils/itemScrewWatertightSteel/0.png deleted file mode 100644 index 839be02e49..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewWhiteMetal/0.png b/front/public/images/small/miscutils/itemScrewWhiteMetal/0.png deleted file mode 100644 index a3ba544f4a..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewZeron100/0.png b/front/public/images/small/miscutils/itemScrewZeron100/0.png deleted file mode 100644 index b457f332d8..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewZeron100/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewZirconium/0.png b/front/public/images/small/miscutils/itemScrewZirconium/0.png deleted file mode 100644 index 3a615da828..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewZirconium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemScrewZirconiumCarbide/0.png b/front/public/images/small/miscutils/itemScrewZirconiumCarbide/0.png deleted file mode 100644 index 68a9d10a9b..0000000000 Binary files a/front/public/images/small/miscutils/itemScrewZirconiumCarbide/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSmallSpringBlackSteel/0.png b/front/public/images/small/miscutils/itemSmallSpringBlackSteel/0.png deleted file mode 100644 index 3bcbae7eb4..0000000000 Binary files a/front/public/images/small/miscutils/itemSmallSpringBlackSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSmallSpringBlackTitanium/0.png b/front/public/images/small/miscutils/itemSmallSpringBlackTitanium/0.png deleted file mode 100644 index b6ff2b2bab..0000000000 Binary files a/front/public/images/small/miscutils/itemSmallSpringBlackTitanium/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSmallSpringMaragingSteel250/0.png b/front/public/images/small/miscutils/itemSmallSpringMaragingSteel250/0.png deleted file mode 100644 index 4417039964..0000000000 Binary files a/front/public/images/small/miscutils/itemSmallSpringMaragingSteel250/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSmallSpringNichrome/0.png b/front/public/images/small/miscutils/itemSmallSpringNichrome/0.png deleted file mode 100644 index e353323add..0000000000 Binary files a/front/public/images/small/miscutils/itemSmallSpringNichrome/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSmallSpringStaballoy/0.png b/front/public/images/small/miscutils/itemSmallSpringStaballoy/0.png deleted file mode 100644 index 15d9799f80..0000000000 Binary files a/front/public/images/small/miscutils/itemSmallSpringStaballoy/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSpringCelestialTungsten/0.png b/front/public/images/small/miscutils/itemSpringCelestialTungsten/0.png deleted file mode 100644 index 966363be8a..0000000000 Binary files a/front/public/images/small/miscutils/itemSpringCelestialTungsten/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSpringEglinSteel/0.png b/front/public/images/small/miscutils/itemSpringEglinSteel/0.png deleted file mode 100644 index a955729269..0000000000 Binary files a/front/public/images/small/miscutils/itemSpringEglinSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSpringNitinol60/0.png b/front/public/images/small/miscutils/itemSpringNitinol60/0.png deleted file mode 100644 index daa06b5b94..0000000000 Binary files a/front/public/images/small/miscutils/itemSpringNitinol60/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSpringWatertightSteel/0.png b/front/public/images/small/miscutils/itemSpringWatertightSteel/0.png deleted file mode 100644 index 708f1e15f6..0000000000 Binary files a/front/public/images/small/miscutils/itemSpringWatertightSteel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSpringWhiteMetal/0.png b/front/public/images/small/miscutils/itemSpringWhiteMetal/0.png deleted file mode 100644 index 2bd93816c7..0000000000 Binary files a/front/public/images/small/miscutils/itemSpringWhiteMetal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSugarCharcoal/0.png b/front/public/images/small/miscutils/itemSugarCharcoal/0.png deleted file mode 100644 index 3139a81cc3..0000000000 Binary files a/front/public/images/small/miscutils/itemSugarCharcoal/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemSugarCoke/0.png b/front/public/images/small/miscutils/itemSugarCoke/0.png deleted file mode 100644 index af077217e4..0000000000 Binary files a/front/public/images/small/miscutils/itemSugarCoke/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemTungstenSteelRotorBlade/0.png b/front/public/images/small/miscutils/itemTungstenSteelRotorBlade/0.png deleted file mode 100644 index 3c3957de9d..0000000000 Binary files a/front/public/images/small/miscutils/itemTungstenSteelRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemTungstenSteelShaft/0.png b/front/public/images/small/miscutils/itemTungstenSteelShaft/0.png deleted file mode 100644 index ce695e0060..0000000000 Binary files a/front/public/images/small/miscutils/itemTungstenSteelShaft/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemVibrantRotorBlade/0.png b/front/public/images/small/miscutils/itemVibrantRotorBlade/0.png deleted file mode 100644 index df46de5f2e..0000000000 Binary files a/front/public/images/small/miscutils/itemVibrantRotorBlade/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemVibrantShaft/0.png b/front/public/images/small/miscutils/itemVibrantShaft/0.png deleted file mode 100644 index 07b72534ae..0000000000 Binary files a/front/public/images/small/miscutils/itemVibrantShaft/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemZirconiumPellet/0.png b/front/public/images/small/miscutils/itemZirconiumPellet/0.png deleted file mode 100644 index db2f2fe3ec..0000000000 Binary files a/front/public/images/small/miscutils/itemZirconiumPellet/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemironrotor/0.png b/front/public/images/small/miscutils/itemironrotor/0.png deleted file mode 100644 index cdcc07aef4..0000000000 Binary files a/front/public/images/small/miscutils/itemironrotor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemsteelrotor/0.png b/front/public/images/small/miscutils/itemsteelrotor/0.png deleted file mode 100644 index e904db01a5..0000000000 Binary files a/front/public/images/small/miscutils/itemsteelrotor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemwcarbonrotor/0.png b/front/public/images/small/miscutils/itemwcarbonrotor/0.png deleted file mode 100644 index 055f7e6599..0000000000 Binary files a/front/public/images/small/miscutils/itemwcarbonrotor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/itemwoodrotor/0.png b/front/public/images/small/miscutils/itemwoodrotor/0.png deleted file mode 100644 index 40c51f8089..0000000000 Binary files a/front/public/images/small/miscutils/itemwoodrotor/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/liquidresin/0.png b/front/public/images/small/miscutils/liquidresin/0.png deleted file mode 100644 index 27d946c493..0000000000 Binary files a/front/public/images/small/miscutils/liquidresin/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/magicfeather/0.png b/front/public/images/small/miscutils/magicfeather/0.png deleted file mode 100644 index 9794c4e74c..0000000000 Binary files a/front/public/images/small/miscutils/magicfeather/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/material/1.png b/front/public/images/small/miscutils/material/1.png deleted file mode 100644 index ea325d91c2..0000000000 Binary files a/front/public/images/small/miscutils/material/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/material/2.png b/front/public/images/small/miscutils/material/2.png deleted file mode 100644 index d33c13e466..0000000000 Binary files a/front/public/images/small/miscutils/material/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/material/3.png b/front/public/images/small/miscutils/material/3.png deleted file mode 100644 index 6598195ad6..0000000000 Binary files a/front/public/images/small/miscutils/material/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/material/4.png b/front/public/images/small/miscutils/material/4.png deleted file mode 100644 index 9b565514e3..0000000000 Binary files a/front/public/images/small/miscutils/material/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledAlmandine/0.png b/front/public/images/small/miscutils/milledAlmandine/0.png deleted file mode 100644 index 03c153c399..0000000000 Binary files a/front/public/images/small/miscutils/milledAlmandine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledChalcopyrite/0.png b/front/public/images/small/miscutils/milledChalcopyrite/0.png deleted file mode 100644 index 64633364a7..0000000000 Binary files a/front/public/images/small/miscutils/milledChalcopyrite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledGrossular/0.png b/front/public/images/small/miscutils/milledGrossular/0.png deleted file mode 100644 index 83694c8c2f..0000000000 Binary files a/front/public/images/small/miscutils/milledGrossular/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledMonazite/0.png b/front/public/images/small/miscutils/milledMonazite/0.png deleted file mode 100644 index 0147f6d966..0000000000 Binary files a/front/public/images/small/miscutils/milledMonazite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledNickel/0.png b/front/public/images/small/miscutils/milledNickel/0.png deleted file mode 100644 index e6b08c5632..0000000000 Binary files a/front/public/images/small/miscutils/milledNickel/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledPentlandite/0.png b/front/public/images/small/miscutils/milledPentlandite/0.png deleted file mode 100644 index df839a54ed..0000000000 Binary files a/front/public/images/small/miscutils/milledPentlandite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledPlatinum/0.png b/front/public/images/small/miscutils/milledPlatinum/0.png deleted file mode 100644 index f4e4d7a727..0000000000 Binary files a/front/public/images/small/miscutils/milledPlatinum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledPyrope/0.png b/front/public/images/small/miscutils/milledPyrope/0.png deleted file mode 100644 index 66f127e59d..0000000000 Binary files a/front/public/images/small/miscutils/milledPyrope/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledRedstone/0.png b/front/public/images/small/miscutils/milledRedstone/0.png deleted file mode 100644 index c23be15905..0000000000 Binary files a/front/public/images/small/miscutils/milledRedstone/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledSpessartine/0.png b/front/public/images/small/miscutils/milledSpessartine/0.png deleted file mode 100644 index 83687c2ccf..0000000000 Binary files a/front/public/images/small/miscutils/milledSpessartine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/milledSphalerite/0.png b/front/public/images/small/miscutils/milledSphalerite/0.png deleted file mode 100644 index b56d0b230e..0000000000 Binary files a/front/public/images/small/miscutils/milledSphalerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/0.png b/front/public/images/small/miscutils/miscutils.blockcasings/0.png deleted file mode 100644 index 5b55a56132..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/1.png b/front/public/images/small/miscutils/miscutils.blockcasings/1.png deleted file mode 100644 index 75bf3948a1..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/10.png b/front/public/images/small/miscutils/miscutils.blockcasings/10.png deleted file mode 100644 index ad85332b3a..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/11.png b/front/public/images/small/miscutils/miscutils.blockcasings/11.png deleted file mode 100644 index ff2ebe82f4..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/12.png b/front/public/images/small/miscutils/miscutils.blockcasings/12.png deleted file mode 100644 index 7ff7a03945..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/13.png b/front/public/images/small/miscutils/miscutils.blockcasings/13.png deleted file mode 100644 index a582403b8f..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/14.png b/front/public/images/small/miscutils/miscutils.blockcasings/14.png deleted file mode 100644 index 35364f97c6..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/15.png b/front/public/images/small/miscutils/miscutils.blockcasings/15.png deleted file mode 100644 index 890528f8b6..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/2.png b/front/public/images/small/miscutils/miscutils.blockcasings/2.png deleted file mode 100644 index f28a32c37d..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/3.png b/front/public/images/small/miscutils/miscutils.blockcasings/3.png deleted file mode 100644 index 9737a9113e..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/4.png b/front/public/images/small/miscutils/miscutils.blockcasings/4.png deleted file mode 100644 index e2fbbc8f8f..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/5.png b/front/public/images/small/miscutils/miscutils.blockcasings/5.png deleted file mode 100644 index 493d1e90ee..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/6.png b/front/public/images/small/miscutils/miscutils.blockcasings/6.png deleted file mode 100644 index 6736f67b5b..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/7.png b/front/public/images/small/miscutils/miscutils.blockcasings/7.png deleted file mode 100644 index 26439d057a..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/8.png b/front/public/images/small/miscutils/miscutils.blockcasings/8.png deleted file mode 100644 index 49ee84b1e2..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils.blockcasings/9.png b/front/public/images/small/miscutils/miscutils.blockcasings/9.png deleted file mode 100644 index db8deb0750..0000000000 Binary files a/front/public/images/small/miscutils/miscutils.blockcasings/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/miscutils_fluidBlockSludge/0.png b/front/public/images/small/miscutils/miscutils_fluidBlockSludge/0.png deleted file mode 100644 index 0f3f53e725..0000000000 Binary files a/front/public/images/small/miscutils/miscutils_fluidBlockSludge/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/mobessence/0.png b/front/public/images/small/miscutils/mobessence/0.png deleted file mode 100644 index fc220ed70e..0000000000 Binary files a/front/public/images/small/miscutils/mobessence/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/nitrobenzene/0.png b/front/public/images/small/miscutils/nitrobenzene/0.png deleted file mode 100644 index 7aba0bd3a3..0000000000 Binary files a/front/public/images/small/miscutils/nitrobenzene/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreAgarditeCd/0.png b/front/public/images/small/miscutils/oreAgarditeCd/0.png deleted file mode 100644 index 32d9265516..0000000000 Binary files a/front/public/images/small/miscutils/oreAgarditeCd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreAgarditeLa/0.png b/front/public/images/small/miscutils/oreAgarditeLa/0.png deleted file mode 100644 index 165d2adbbf..0000000000 Binary files a/front/public/images/small/miscutils/oreAgarditeLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreAgarditeNd/0.png b/front/public/images/small/miscutils/oreAgarditeNd/0.png deleted file mode 100644 index 0e209f8c2a..0000000000 Binary files a/front/public/images/small/miscutils/oreAgarditeNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreAgarditeY/0.png b/front/public/images/small/miscutils/oreAgarditeY/0.png deleted file mode 100644 index 126ea37956..0000000000 Binary files a/front/public/images/small/miscutils/oreAgarditeY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreAlburnite/0.png b/front/public/images/small/miscutils/oreAlburnite/0.png deleted file mode 100644 index cb88a86876..0000000000 Binary files a/front/public/images/small/miscutils/oreAlburnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreAncientGranite/0.png b/front/public/images/small/miscutils/oreAncientGranite/0.png deleted file mode 100644 index c27de99e31..0000000000 Binary files a/front/public/images/small/miscutils/oreAncientGranite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreBariteRd/0.png b/front/public/images/small/miscutils/oreBariteRd/0.png deleted file mode 100644 index 66e734d36c..0000000000 Binary files a/front/public/images/small/miscutils/oreBariteRd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreCerite/0.png b/front/public/images/small/miscutils/oreCerite/0.png deleted file mode 100644 index 130659ab59..0000000000 Binary files a/front/public/images/small/miscutils/oreCerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreComancheite/0.png b/front/public/images/small/miscutils/oreComancheite/0.png deleted file mode 100644 index 24a35290be..0000000000 Binary files a/front/public/images/small/miscutils/oreComancheite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreCrocoite/0.png b/front/public/images/small/miscutils/oreCrocoite/0.png deleted file mode 100644 index 8e8f2a71b7..0000000000 Binary files a/front/public/images/small/miscutils/oreCrocoite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreCryoliteF/0.png b/front/public/images/small/miscutils/oreCryoliteF/0.png deleted file mode 100644 index 12753dd8c0..0000000000 Binary files a/front/public/images/small/miscutils/oreCryoliteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreDemicheleiteBr/0.png b/front/public/images/small/miscutils/oreDemicheleiteBr/0.png deleted file mode 100644 index 7188237ff4..0000000000 Binary files a/front/public/images/small/miscutils/oreDemicheleiteBr/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreFlorencite/0.png b/front/public/images/small/miscutils/oreFlorencite/0.png deleted file mode 100644 index 49e0d9dcd5..0000000000 Binary files a/front/public/images/small/miscutils/oreFlorencite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreFluorcaphite/0.png b/front/public/images/small/miscutils/oreFluorcaphite/0.png deleted file mode 100644 index 23d99099eb..0000000000 Binary files a/front/public/images/small/miscutils/oreFluorcaphite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreFluoriteF/0.png b/front/public/images/small/miscutils/oreFluoriteF/0.png deleted file mode 100644 index 7aecc80c8e..0000000000 Binary files a/front/public/images/small/miscutils/oreFluoriteF/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreGadoliniteCe/0.png b/front/public/images/small/miscutils/oreGadoliniteCe/0.png deleted file mode 100644 index fa99ca37ad..0000000000 Binary files a/front/public/images/small/miscutils/oreGadoliniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreGadoliniteY/0.png b/front/public/images/small/miscutils/oreGadoliniteY/0.png deleted file mode 100644 index fa99ca37ad..0000000000 Binary files a/front/public/images/small/miscutils/oreGadoliniteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreGeikielite/0.png b/front/public/images/small/miscutils/oreGeikielite/0.png deleted file mode 100644 index f26e417790..0000000000 Binary files a/front/public/images/small/miscutils/oreGeikielite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreGreenockite/0.png b/front/public/images/small/miscutils/oreGreenockite/0.png deleted file mode 100644 index 086904a76c..0000000000 Binary files a/front/public/images/small/miscutils/oreGreenockite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreHibonite/0.png b/front/public/images/small/miscutils/oreHibonite/0.png deleted file mode 100644 index df16230425..0000000000 Binary files a/front/public/images/small/miscutils/oreHibonite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreHoneaite/0.png b/front/public/images/small/miscutils/oreHoneaite/0.png deleted file mode 100644 index d761a9a816..0000000000 Binary files a/front/public/images/small/miscutils/oreHoneaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreIrarsite/0.png b/front/public/images/small/miscutils/oreIrarsite/0.png deleted file mode 100644 index 4794262740..0000000000 Binary files a/front/public/images/small/miscutils/oreIrarsite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreKashinite/0.png b/front/public/images/small/miscutils/oreKashinite/0.png deleted file mode 100644 index 32d9a61d8e..0000000000 Binary files a/front/public/images/small/miscutils/oreKashinite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreKoboldite/0.png b/front/public/images/small/miscutils/oreKoboldite/0.png deleted file mode 100644 index 9ea2f8d316..0000000000 Binary files a/front/public/images/small/miscutils/oreKoboldite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreLafossaite/0.png b/front/public/images/small/miscutils/oreLafossaite/0.png deleted file mode 100644 index de05d054df..0000000000 Binary files a/front/public/images/small/miscutils/oreLafossaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreLanthaniteCe/0.png b/front/public/images/small/miscutils/oreLanthaniteCe/0.png deleted file mode 100644 index 0d588e5cb6..0000000000 Binary files a/front/public/images/small/miscutils/oreLanthaniteCe/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreLanthaniteLa/0.png b/front/public/images/small/miscutils/oreLanthaniteLa/0.png deleted file mode 100644 index fcfe9d8707..0000000000 Binary files a/front/public/images/small/miscutils/oreLanthaniteLa/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreLanthaniteNd/0.png b/front/public/images/small/miscutils/oreLanthaniteNd/0.png deleted file mode 100644 index 8e3dbaa603..0000000000 Binary files a/front/public/images/small/miscutils/oreLanthaniteNd/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreLautarite/0.png b/front/public/images/small/miscutils/oreLautarite/0.png deleted file mode 100644 index 1485930c8b..0000000000 Binary files a/front/public/images/small/miscutils/oreLautarite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreLepersonnite/0.png b/front/public/images/small/miscutils/oreLepersonnite/0.png deleted file mode 100644 index 849bf337c2..0000000000 Binary files a/front/public/images/small/miscutils/oreLepersonnite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreMiessiite/0.png b/front/public/images/small/miscutils/oreMiessiite/0.png deleted file mode 100644 index 842ed471bc..0000000000 Binary files a/front/public/images/small/miscutils/oreMiessiite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreNichromite/0.png b/front/public/images/small/miscutils/oreNichromite/0.png deleted file mode 100644 index d8d70f2700..0000000000 Binary files a/front/public/images/small/miscutils/oreNichromite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/orePerroudite/0.png b/front/public/images/small/miscutils/orePerroudite/0.png deleted file mode 100644 index 4b79d1b9ee..0000000000 Binary files a/front/public/images/small/miscutils/orePerroudite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/orePolycrase/0.png b/front/public/images/small/miscutils/orePolycrase/0.png deleted file mode 100644 index be71fc2c9b..0000000000 Binary files a/front/public/images/small/miscutils/orePolycrase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreRadioactiveMineralMix/0.png b/front/public/images/small/miscutils/oreRadioactiveMineralMix/0.png deleted file mode 100644 index af65b3f85d..0000000000 Binary files a/front/public/images/small/miscutils/oreRadioactiveMineralMix/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreRunite/0.png b/front/public/images/small/miscutils/oreRunite/0.png deleted file mode 100644 index 0cbb1a4c7a..0000000000 Binary files a/front/public/images/small/miscutils/oreRunite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreSamarskiteY/0.png b/front/public/images/small/miscutils/oreSamarskiteY/0.png deleted file mode 100644 index 348303f49c..0000000000 Binary files a/front/public/images/small/miscutils/oreSamarskiteY/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreSamarskiteYb/0.png b/front/public/images/small/miscutils/oreSamarskiteYb/0.png deleted file mode 100644 index 1de0bde0d2..0000000000 Binary files a/front/public/images/small/miscutils/oreSamarskiteYb/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreTitanite/0.png b/front/public/images/small/miscutils/oreTitanite/0.png deleted file mode 100644 index c3790f5c67..0000000000 Binary files a/front/public/images/small/miscutils/oreTitanite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreXenotime/0.png b/front/public/images/small/miscutils/oreXenotime/0.png deleted file mode 100644 index 7bb2b99064..0000000000 Binary files a/front/public/images/small/miscutils/oreXenotime/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreYttriaite/0.png b/front/public/images/small/miscutils/oreYttriaite/0.png deleted file mode 100644 index 5011412131..0000000000 Binary files a/front/public/images/small/miscutils/oreYttriaite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreYttrialite/0.png b/front/public/images/small/miscutils/oreYttrialite/0.png deleted file mode 100644 index cba2d17909..0000000000 Binary files a/front/public/images/small/miscutils/oreYttrialite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreYttrocerite/0.png b/front/public/images/small/miscutils/oreYttrocerite/0.png deleted file mode 100644 index b1e8c9b9be..0000000000 Binary files a/front/public/images/small/miscutils/oreYttrocerite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreZimbabweite/0.png b/front/public/images/small/miscutils/oreZimbabweite/0.png deleted file mode 100644 index f43317f4b0..0000000000 Binary files a/front/public/images/small/miscutils/oreZimbabweite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreZircon/0.png b/front/public/images/small/miscutils/oreZircon/0.png deleted file mode 100644 index de727949d6..0000000000 Binary files a/front/public/images/small/miscutils/oreZircon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreZirconolite/0.png b/front/public/images/small/miscutils/oreZirconolite/0.png deleted file mode 100644 index 76c184e12d..0000000000 Binary files a/front/public/images/small/miscutils/oreZirconolite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreZircophyllite/0.png b/front/public/images/small/miscutils/oreZircophyllite/0.png deleted file mode 100644 index 908d75896a..0000000000 Binary files a/front/public/images/small/miscutils/oreZircophyllite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/oreZirkelite/0.png b/front/public/images/small/miscutils/oreZirkelite/0.png deleted file mode 100644 index da7a286464..0000000000 Binary files a/front/public/images/small/miscutils/oreZirkelite/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/0.png b/front/public/images/small/miscutils/particleBase/0.png deleted file mode 100644 index 023d814335..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/1.png b/front/public/images/small/miscutils/particleBase/1.png deleted file mode 100644 index d5b24b6dcd..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/10.png b/front/public/images/small/miscutils/particleBase/10.png deleted file mode 100644 index 9f038d81df..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/10.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/11.png b/front/public/images/small/miscutils/particleBase/11.png deleted file mode 100644 index a73048b3b1..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/11.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/12.png b/front/public/images/small/miscutils/particleBase/12.png deleted file mode 100644 index c23bb6306a..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/12.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/13.png b/front/public/images/small/miscutils/particleBase/13.png deleted file mode 100644 index d6ca7b9acc..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/13.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/14.png b/front/public/images/small/miscutils/particleBase/14.png deleted file mode 100644 index cd38da4861..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/14.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/15.png b/front/public/images/small/miscutils/particleBase/15.png deleted file mode 100644 index 525cd5a75f..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/15.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/16.png b/front/public/images/small/miscutils/particleBase/16.png deleted file mode 100644 index 838aeff267..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/16.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/17.png b/front/public/images/small/miscutils/particleBase/17.png deleted file mode 100644 index ce06b3cf21..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/17.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/18.png b/front/public/images/small/miscutils/particleBase/18.png deleted file mode 100644 index 22795c2956..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/18.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/19.png b/front/public/images/small/miscutils/particleBase/19.png deleted file mode 100644 index 70ad7dcd6b..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/19.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/2.png b/front/public/images/small/miscutils/particleBase/2.png deleted file mode 100644 index b04673770a..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/2.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/20.png b/front/public/images/small/miscutils/particleBase/20.png deleted file mode 100644 index b7f67ad17d..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/20.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/21.png b/front/public/images/small/miscutils/particleBase/21.png deleted file mode 100644 index 31eca92a78..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/21.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/22.png b/front/public/images/small/miscutils/particleBase/22.png deleted file mode 100644 index 92527608f2..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/22.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/23.png b/front/public/images/small/miscutils/particleBase/23.png deleted file mode 100644 index 09d28e1e5f..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/23.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/24.png b/front/public/images/small/miscutils/particleBase/24.png deleted file mode 100644 index 06a23d0a66..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/24.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/3.png b/front/public/images/small/miscutils/particleBase/3.png deleted file mode 100644 index 93fdf78ec0..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/3.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/4.png b/front/public/images/small/miscutils/particleBase/4.png deleted file mode 100644 index f0071f4975..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/4.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/5.png b/front/public/images/small/miscutils/particleBase/5.png deleted file mode 100644 index 545a53b0eb..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/5.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/6.png b/front/public/images/small/miscutils/particleBase/6.png deleted file mode 100644 index 65ba8bd269..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/6.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/7.png b/front/public/images/small/miscutils/particleBase/7.png deleted file mode 100644 index 0ee42ce4b4..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/7.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/8.png b/front/public/images/small/miscutils/particleBase/8.png deleted file mode 100644 index eb01a104b3..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/8.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleBase/9.png b/front/public/images/small/miscutils/particleBase/9.png deleted file mode 100644 index 554d196fa0..0000000000 Binary files a/front/public/images/small/miscutils/particleBase/9.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleIon/0.png b/front/public/images/small/miscutils/particleIon/0.png deleted file mode 100644 index e5e58d2271..0000000000 Binary files a/front/public/images/small/miscutils/particleIon/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/particleIon/1.png b/front/public/images/small/miscutils/particleIon/1.png deleted file mode 100644 index ddf2f83762..0000000000 Binary files a/front/public/images/small/miscutils/particleIon/1.png and /dev/null differ diff --git a/front/public/images/small/miscutils/personalCloakingDevice-0.0/0.png b/front/public/images/small/miscutils/personalCloakingDevice-0.0/0.png deleted file mode 100644 index ef89872d73..0000000000 Binary files a/front/public/images/small/miscutils/personalCloakingDevice-0.0/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/personalHealingDevice/0.png b/front/public/images/small/miscutils/personalHealingDevice/0.png deleted file mode 100644 index ef89872d73..0000000000 Binary files a/front/public/images/small/miscutils/personalHealingDevice/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/pineoil/0.png b/front/public/images/small/miscutils/pineoil/0.png deleted file mode 100644 index 8aa0440ab5..0000000000 Binary files a/front/public/images/small/miscutils/pineoil/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/polyurethane/0.png b/front/public/images/small/miscutils/polyurethane/0.png deleted file mode 100644 index ede1c0f2e0..0000000000 Binary files a/front/public/images/small/miscutils/polyurethane/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/propionicacid/0.png b/front/public/images/small/miscutils/propionicacid/0.png deleted file mode 100644 index 12803ad389..0000000000 Binary files a/front/public/images/small/miscutils/propionicacid/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/putrescine/0.png b/front/public/images/small/miscutils/putrescine/0.png deleted file mode 100644 index 64e00f5022..0000000000 Binary files a/front/public/images/small/miscutils/putrescine/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/pyrotheum/0.png b/front/public/images/small/miscutils/pyrotheum/0.png deleted file mode 100644 index 56a3a265bf..0000000000 Binary files a/front/public/images/small/miscutils/pyrotheum/0.png and /dev/null differ diff --git a/front/public/images/small/miscutils/ureamix/0.png b/front/public/images/small/miscutils/ureamix/0.png deleted file mode 100644 index e2dedc4485..0000000000 Binary files a/front/public/images/small/miscutils/ureamix/0.png and /dev/null differ diff --git a/front/public/images/small/naturescompass/NaturesCompass/0.png b/front/public/images/small/naturescompass/NaturesCompass/0.png deleted file mode 100644 index 12673b0300..0000000000 Binary files a/front/public/images/small/naturescompass/NaturesCompass/0.png and /dev/null differ diff --git a/front/public/images/small/neenergistics/tile.pattern_interface/0.png b/front/public/images/small/neenergistics/tile.pattern_interface/0.png deleted file mode 100644 index 229ca13d66..0000000000 Binary files a/front/public/images/small/neenergistics/tile.pattern_interface/0.png and /dev/null differ diff --git a/front/public/images/small/none.png b/front/public/images/small/none.png deleted file mode 100644 index 49f832a784..0000000000 Binary files a/front/public/images/small/none.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/accuraccyUpgradeItem/0.png b/front/public/images/small/openmodularturrets/accuraccyUpgradeItem/0.png deleted file mode 100644 index 8e9a1eb6d8..0000000000 Binary files a/front/public/images/small/openmodularturrets/accuraccyUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/barrelTierFive/0.png b/front/public/images/small/openmodularturrets/barrelTierFive/0.png deleted file mode 100644 index 83c252a7a3..0000000000 Binary files a/front/public/images/small/openmodularturrets/barrelTierFive/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/barrelTierFour/0.png b/front/public/images/small/openmodularturrets/barrelTierFour/0.png deleted file mode 100644 index 4fc319dc99..0000000000 Binary files a/front/public/images/small/openmodularturrets/barrelTierFour/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/barrelTierOne/0.png b/front/public/images/small/openmodularturrets/barrelTierOne/0.png deleted file mode 100644 index d9ad7774da..0000000000 Binary files a/front/public/images/small/openmodularturrets/barrelTierOne/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/barrelTierThree/0.png b/front/public/images/small/openmodularturrets/barrelTierThree/0.png deleted file mode 100644 index b493924477..0000000000 Binary files a/front/public/images/small/openmodularturrets/barrelTierThree/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/barrelTierTwo/0.png b/front/public/images/small/openmodularturrets/barrelTierTwo/0.png deleted file mode 100644 index b28662e1dc..0000000000 Binary files a/front/public/images/small/openmodularturrets/barrelTierTwo/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/baseTierFourBlock/0.png b/front/public/images/small/openmodularturrets/baseTierFourBlock/0.png deleted file mode 100644 index d647673137..0000000000 Binary files a/front/public/images/small/openmodularturrets/baseTierFourBlock/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/baseTierOneBlock/0.png b/front/public/images/small/openmodularturrets/baseTierOneBlock/0.png deleted file mode 100644 index 1b9420ba6d..0000000000 Binary files a/front/public/images/small/openmodularturrets/baseTierOneBlock/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/baseTierThreeBlock/0.png b/front/public/images/small/openmodularturrets/baseTierThreeBlock/0.png deleted file mode 100644 index 336756263f..0000000000 Binary files a/front/public/images/small/openmodularturrets/baseTierThreeBlock/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/baseTierTwoBlock/0.png b/front/public/images/small/openmodularturrets/baseTierTwoBlock/0.png deleted file mode 100644 index b12c4ac306..0000000000 Binary files a/front/public/images/small/openmodularturrets/baseTierTwoBlock/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/baseTierWood/0.png b/front/public/images/small/openmodularturrets/baseTierWood/0.png deleted file mode 100644 index daa6806555..0000000000 Binary files a/front/public/images/small/openmodularturrets/baseTierWood/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/blazingClayCraftable/0.png b/front/public/images/small/openmodularturrets/blazingClayCraftable/0.png deleted file mode 100644 index c01c7d2a68..0000000000 Binary files a/front/public/images/small/openmodularturrets/blazingClayCraftable/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/bulletCraftable/0.png b/front/public/images/small/openmodularturrets/bulletCraftable/0.png deleted file mode 100644 index 71f0821679..0000000000 Binary files a/front/public/images/small/openmodularturrets/bulletCraftable/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/bulletThrowable/0.png b/front/public/images/small/openmodularturrets/bulletThrowable/0.png deleted file mode 100644 index fa4470ceab..0000000000 Binary files a/front/public/images/small/openmodularturrets/bulletThrowable/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/chamberTierFive/0.png b/front/public/images/small/openmodularturrets/chamberTierFive/0.png deleted file mode 100644 index eff58247ed..0000000000 Binary files a/front/public/images/small/openmodularturrets/chamberTierFive/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/chamberTierFour/0.png b/front/public/images/small/openmodularturrets/chamberTierFour/0.png deleted file mode 100644 index 6fa4a0e6ed..0000000000 Binary files a/front/public/images/small/openmodularturrets/chamberTierFour/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/chamberTierOne/0.png b/front/public/images/small/openmodularturrets/chamberTierOne/0.png deleted file mode 100644 index 01a5628d4e..0000000000 Binary files a/front/public/images/small/openmodularturrets/chamberTierOne/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/chamberTierThree/0.png b/front/public/images/small/openmodularturrets/chamberTierThree/0.png deleted file mode 100644 index d9e63f200c..0000000000 Binary files a/front/public/images/small/openmodularturrets/chamberTierThree/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/chamberTierTwo/0.png b/front/public/images/small/openmodularturrets/chamberTierTwo/0.png deleted file mode 100644 index 0d05502e93..0000000000 Binary files a/front/public/images/small/openmodularturrets/chamberTierTwo/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/concealerAddon/0.png b/front/public/images/small/openmodularturrets/concealerAddon/0.png deleted file mode 100644 index 98e54f6df8..0000000000 Binary files a/front/public/images/small/openmodularturrets/concealerAddon/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/damageAmpAddon/0.png b/front/public/images/small/openmodularturrets/damageAmpAddon/0.png deleted file mode 100644 index 0de7adb55b..0000000000 Binary files a/front/public/images/small/openmodularturrets/damageAmpAddon/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/disposeItemTurret/0.png b/front/public/images/small/openmodularturrets/disposeItemTurret/0.png deleted file mode 100644 index 19aae34cd2..0000000000 Binary files a/front/public/images/small/openmodularturrets/disposeItemTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/efficiencyUpgradeItem/0.png b/front/public/images/small/openmodularturrets/efficiencyUpgradeItem/0.png deleted file mode 100644 index 5624726db9..0000000000 Binary files a/front/public/images/small/openmodularturrets/efficiencyUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderInvTierFive/0.png b/front/public/images/small/openmodularturrets/expanderInvTierFive/0.png deleted file mode 100644 index 9644de9ffc..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderInvTierFive/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderInvTierFour/0.png b/front/public/images/small/openmodularturrets/expanderInvTierFour/0.png deleted file mode 100644 index 45b77844d4..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderInvTierFour/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderInvTierOne/0.png b/front/public/images/small/openmodularturrets/expanderInvTierOne/0.png deleted file mode 100644 index 7d286a0e42..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderInvTierOne/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderInvTierThree/0.png b/front/public/images/small/openmodularturrets/expanderInvTierThree/0.png deleted file mode 100644 index 8fb820c83c..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderInvTierThree/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderInvTierTwo/0.png b/front/public/images/small/openmodularturrets/expanderInvTierTwo/0.png deleted file mode 100644 index 7d6e9547dc..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderInvTierTwo/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderPowerTierFive/0.png b/front/public/images/small/openmodularturrets/expanderPowerTierFive/0.png deleted file mode 100644 index 470a4b51e4..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderPowerTierFive/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderPowerTierFour/0.png b/front/public/images/small/openmodularturrets/expanderPowerTierFour/0.png deleted file mode 100644 index 91b22455f1..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderPowerTierFour/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderPowerTierOne/0.png b/front/public/images/small/openmodularturrets/expanderPowerTierOne/0.png deleted file mode 100644 index d786f3aa1c..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderPowerTierOne/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderPowerTierThree/0.png b/front/public/images/small/openmodularturrets/expanderPowerTierThree/0.png deleted file mode 100644 index 9b078a7e87..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderPowerTierThree/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/expanderPowerTierTwo/0.png b/front/public/images/small/openmodularturrets/expanderPowerTierTwo/0.png deleted file mode 100644 index a50d1e1f29..0000000000 Binary files a/front/public/images/small/openmodularturrets/expanderPowerTierTwo/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/fenceTierFive/0.png b/front/public/images/small/openmodularturrets/fenceTierFive/0.png deleted file mode 100644 index 9a01e66fac..0000000000 Binary files a/front/public/images/small/openmodularturrets/fenceTierFive/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/fenceTierFour/0.png b/front/public/images/small/openmodularturrets/fenceTierFour/0.png deleted file mode 100644 index 3625253b72..0000000000 Binary files a/front/public/images/small/openmodularturrets/fenceTierFour/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/fenceTierOne/0.png b/front/public/images/small/openmodularturrets/fenceTierOne/0.png deleted file mode 100644 index fd8817e55d..0000000000 Binary files a/front/public/images/small/openmodularturrets/fenceTierOne/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/fenceTierThree/0.png b/front/public/images/small/openmodularturrets/fenceTierThree/0.png deleted file mode 100644 index 48d4d8ebf6..0000000000 Binary files a/front/public/images/small/openmodularturrets/fenceTierThree/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/fenceTierTwo/0.png b/front/public/images/small/openmodularturrets/fenceTierTwo/0.png deleted file mode 100644 index ab54f99b81..0000000000 Binary files a/front/public/images/small/openmodularturrets/fenceTierTwo/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/ferroSlug/0.png b/front/public/images/small/openmodularturrets/ferroSlug/0.png deleted file mode 100644 index 2539e6d319..0000000000 Binary files a/front/public/images/small/openmodularturrets/ferroSlug/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/fireRateUpgradeItem/0.png b/front/public/images/small/openmodularturrets/fireRateUpgradeItem/0.png deleted file mode 100644 index dc9b424b07..0000000000 Binary files a/front/public/images/small/openmodularturrets/fireRateUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/grenadeCraftable/0.png b/front/public/images/small/openmodularturrets/grenadeCraftable/0.png deleted file mode 100644 index 8bf50389d4..0000000000 Binary files a/front/public/images/small/openmodularturrets/grenadeCraftable/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/grenadeThrowable/0.png b/front/public/images/small/openmodularturrets/grenadeThrowable/0.png deleted file mode 100644 index 8bf50389d4..0000000000 Binary files a/front/public/images/small/openmodularturrets/grenadeThrowable/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/grenadeTurret/0.png b/front/public/images/small/openmodularturrets/grenadeTurret/0.png deleted file mode 100644 index b30db18af6..0000000000 Binary files a/front/public/images/small/openmodularturrets/grenadeTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/hardWallTierFive/0.png b/front/public/images/small/openmodularturrets/hardWallTierFive/0.png deleted file mode 100644 index 1a6c65f7d0..0000000000 Binary files a/front/public/images/small/openmodularturrets/hardWallTierFive/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/hardWallTierFour/0.png b/front/public/images/small/openmodularturrets/hardWallTierFour/0.png deleted file mode 100644 index 995e354a19..0000000000 Binary files a/front/public/images/small/openmodularturrets/hardWallTierFour/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/hardWallTierOne/0.png b/front/public/images/small/openmodularturrets/hardWallTierOne/0.png deleted file mode 100644 index 0ac64736a5..0000000000 Binary files a/front/public/images/small/openmodularturrets/hardWallTierOne/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/hardWallTierThree/0.png b/front/public/images/small/openmodularturrets/hardWallTierThree/0.png deleted file mode 100644 index 65c5d8735e..0000000000 Binary files a/front/public/images/small/openmodularturrets/hardWallTierThree/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/hardWallTierTwo/0.png b/front/public/images/small/openmodularturrets/hardWallTierTwo/0.png deleted file mode 100644 index da03ce46c1..0000000000 Binary files a/front/public/images/small/openmodularturrets/hardWallTierTwo/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/incendiaryTurret/0.png b/front/public/images/small/openmodularturrets/incendiaryTurret/0.png deleted file mode 100644 index e5a46d26cc..0000000000 Binary files a/front/public/images/small/openmodularturrets/incendiaryTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/ioBus/0.png b/front/public/images/small/openmodularturrets/ioBus/0.png deleted file mode 100644 index 1ae2cbc607..0000000000 Binary files a/front/public/images/small/openmodularturrets/ioBus/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/laserTurret/0.png b/front/public/images/small/openmodularturrets/laserTurret/0.png deleted file mode 100644 index 7c7ea0e38a..0000000000 Binary files a/front/public/images/small/openmodularturrets/laserTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/leverBlock/0.png b/front/public/images/small/openmodularturrets/leverBlock/0.png deleted file mode 100644 index c2bc48839e..0000000000 Binary files a/front/public/images/small/openmodularturrets/leverBlock/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/machineGunTurret/0.png b/front/public/images/small/openmodularturrets/machineGunTurret/0.png deleted file mode 100644 index 639dbaf374..0000000000 Binary files a/front/public/images/small/openmodularturrets/machineGunTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/potatoCannonTurret/0.png b/front/public/images/small/openmodularturrets/potatoCannonTurret/0.png deleted file mode 100644 index 59cd609a38..0000000000 Binary files a/front/public/images/small/openmodularturrets/potatoCannonTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/potentiaAddon/0.png b/front/public/images/small/openmodularturrets/potentiaAddon/0.png deleted file mode 100644 index bb9b64479d..0000000000 Binary files a/front/public/images/small/openmodularturrets/potentiaAddon/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/railGunTurret/0.png b/front/public/images/small/openmodularturrets/railGunTurret/0.png deleted file mode 100644 index 699e920e29..0000000000 Binary files a/front/public/images/small/openmodularturrets/railGunTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/rangeUpgradeItem/0.png b/front/public/images/small/openmodularturrets/rangeUpgradeItem/0.png deleted file mode 100644 index ac9c407e9f..0000000000 Binary files a/front/public/images/small/openmodularturrets/rangeUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/recyclerAddon/0.png b/front/public/images/small/openmodularturrets/recyclerAddon/0.png deleted file mode 100644 index 4fc432d777..0000000000 Binary files a/front/public/images/small/openmodularturrets/recyclerAddon/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/redstoneReactorAddon/0.png b/front/public/images/small/openmodularturrets/redstoneReactorAddon/0.png deleted file mode 100644 index 997e3f2173..0000000000 Binary files a/front/public/images/small/openmodularturrets/redstoneReactorAddon/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/relativisticTurret/0.png b/front/public/images/small/openmodularturrets/relativisticTurret/0.png deleted file mode 100644 index 216c013d58..0000000000 Binary files a/front/public/images/small/openmodularturrets/relativisticTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/rocketCraftable/0.png b/front/public/images/small/openmodularturrets/rocketCraftable/0.png deleted file mode 100644 index a352efae68..0000000000 Binary files a/front/public/images/small/openmodularturrets/rocketCraftable/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/rocketTurret/0.png b/front/public/images/small/openmodularturrets/rocketTurret/0.png deleted file mode 100644 index 22050c2d2f..0000000000 Binary files a/front/public/images/small/openmodularturrets/rocketTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/scattershotUpgradeItem/0.png b/front/public/images/small/openmodularturrets/scattershotUpgradeItem/0.png deleted file mode 100644 index e9517c6e39..0000000000 Binary files a/front/public/images/small/openmodularturrets/scattershotUpgradeItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/sensorTierFiveItem/0.png b/front/public/images/small/openmodularturrets/sensorTierFiveItem/0.png deleted file mode 100644 index 8d200ac89f..0000000000 Binary files a/front/public/images/small/openmodularturrets/sensorTierFiveItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/sensorTierFourItem/0.png b/front/public/images/small/openmodularturrets/sensorTierFourItem/0.png deleted file mode 100644 index 8463458e16..0000000000 Binary files a/front/public/images/small/openmodularturrets/sensorTierFourItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/sensorTierOneItem/0.png b/front/public/images/small/openmodularturrets/sensorTierOneItem/0.png deleted file mode 100644 index c73a8444b8..0000000000 Binary files a/front/public/images/small/openmodularturrets/sensorTierOneItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/sensorTierThreeItem/0.png b/front/public/images/small/openmodularturrets/sensorTierThreeItem/0.png deleted file mode 100644 index a9b25c7b69..0000000000 Binary files a/front/public/images/small/openmodularturrets/sensorTierThreeItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/sensorTierTwoItem/0.png b/front/public/images/small/openmodularturrets/sensorTierTwoItem/0.png deleted file mode 100644 index 6a806f4126..0000000000 Binary files a/front/public/images/small/openmodularturrets/sensorTierTwoItem/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/serialPortAddon/0.png b/front/public/images/small/openmodularturrets/serialPortAddon/0.png deleted file mode 100644 index b3ce822bc9..0000000000 Binary files a/front/public/images/small/openmodularturrets/serialPortAddon/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/solarPanelAddon/0.png b/front/public/images/small/openmodularturrets/solarPanelAddon/0.png deleted file mode 100644 index e17baa1f1f..0000000000 Binary files a/front/public/images/small/openmodularturrets/solarPanelAddon/0.png and /dev/null differ diff --git a/front/public/images/small/openmodularturrets/teleporterTurret/0.png b/front/public/images/small/openmodularturrets/teleporterTurret/0.png deleted file mode 100644 index 05850530b4..0000000000 Binary files a/front/public/images/small/openmodularturrets/teleporterTurret/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.filecabinet/0.png b/front/public/images/small/openprinter/openprinter.filecabinet/0.png deleted file mode 100644 index 045b61eb62..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.filecabinet/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.folder/0.png b/front/public/images/small/openprinter/openprinter.folder/0.png deleted file mode 100644 index 391d102499..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.folder/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.paperShreds/0.png b/front/public/images/small/openprinter/openprinter.paperShreds/0.png deleted file mode 100644 index 25124f3bbd..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.paperShreds/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.printedPage/0.png b/front/public/images/small/openprinter/openprinter.printedPage/0.png deleted file mode 100644 index ee88450d0f..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.printedPage/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.printer/0.png b/front/public/images/small/openprinter/openprinter.printer/0.png deleted file mode 100644 index f484efac7c..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.printer/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.printerInkBlack/0.png b/front/public/images/small/openprinter/openprinter.printerInkBlack/0.png deleted file mode 100644 index 070920a1a8..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.printerInkBlack/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.printerInkColor/0.png b/front/public/images/small/openprinter/openprinter.printerInkColor/0.png deleted file mode 100644 index 6c6441cc74..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.printerInkColor/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.printerPaperRoll/0.png b/front/public/images/small/openprinter/openprinter.printerPaperRoll/0.png deleted file mode 100644 index dceebe6baf..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.printerPaperRoll/0.png and /dev/null differ diff --git a/front/public/images/small/openprinter/openprinter.shredder/0.png b/front/public/images/small/openprinter/openprinter.shredder/0.png deleted file mode 100644 index b70a6e7917..0000000000 Binary files a/front/public/images/small/openprinter/openprinter.shredder/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/SecurityDoor/0.png b/front/public/images/small/opensecurity/SecurityDoor/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/opensecurity/SecurityDoor/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/SecurityDoorPrivate/0.png b/front/public/images/small/opensecurity/SecurityDoorPrivate/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/opensecurity/SecurityDoorPrivate/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/alarm/0.png b/front/public/images/small/opensecurity/alarm/0.png deleted file mode 100644 index 15e5ad5fc4..0000000000 Binary files a/front/public/images/small/opensecurity/alarm/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/biometricScanner/0.png b/front/public/images/small/opensecurity/biometricScanner/0.png deleted file mode 100644 index 52a2642dc9..0000000000 Binary files a/front/public/images/small/opensecurity/biometricScanner/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/doorcontroller/0.png b/front/public/images/small/opensecurity/doorcontroller/0.png deleted file mode 100644 index 2b50d24158..0000000000 Binary files a/front/public/images/small/opensecurity/doorcontroller/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/energyTurretBlock/0.png b/front/public/images/small/opensecurity/energyTurretBlock/0.png deleted file mode 100644 index ad63012ddd..0000000000 Binary files a/front/public/images/small/opensecurity/energyTurretBlock/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/entitydetector/0.png b/front/public/images/small/opensecurity/entitydetector/0.png deleted file mode 100644 index 3e2d78bada..0000000000 Binary files a/front/public/images/small/opensecurity/entitydetector/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/keypadLock/0.png b/front/public/images/small/opensecurity/keypadLock/0.png deleted file mode 100644 index 0522de5cc3..0000000000 Binary files a/front/public/images/small/opensecurity/keypadLock/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/magreader/0.png b/front/public/images/small/opensecurity/magreader/0.png deleted file mode 100644 index 2be2d0364a..0000000000 Binary files a/front/public/images/small/opensecurity/magreader/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.BlockKVM/0.png b/front/public/images/small/opensecurity/opensecurity.BlockKVM/0.png deleted file mode 100644 index d6fde2dba9..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.BlockKVM/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.DataBlock/0.png b/front/public/images/small/opensecurity/opensecurity.DataBlock/0.png deleted file mode 100644 index 94822b11a2..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.DataBlock/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.SwitchableHub/0.png b/front/public/images/small/opensecurity/opensecurity.SwitchableHub/0.png deleted file mode 100644 index 8c10116888..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.SwitchableHub/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.cooldownUpgrade/0.png b/front/public/images/small/opensecurity/opensecurity.cooldownUpgrade/0.png deleted file mode 100644 index 4acd11f6f5..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.cooldownUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.damageUpgrade/0.png b/front/public/images/small/opensecurity/opensecurity.damageUpgrade/0.png deleted file mode 100644 index 796db7ae6a..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.damageUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.energyUpgrade/0.png b/front/public/images/small/opensecurity/opensecurity.energyUpgrade/0.png deleted file mode 100644 index 76f12534fb..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.energyUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.magCard/0.png b/front/public/images/small/opensecurity/opensecurity.magCard/0.png deleted file mode 100644 index 4a642a5497..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.magCard/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.movementUpgrade/0.png b/front/public/images/small/opensecurity/opensecurity.movementUpgrade/0.png deleted file mode 100644 index e14413acae..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.movementUpgrade/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.rfidCard/0.png b/front/public/images/small/opensecurity/opensecurity.rfidCard/0.png deleted file mode 100644 index 60f57e6a10..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.rfidCard/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.rfidReaderCard/0.png b/front/public/images/small/opensecurity/opensecurity.rfidReaderCard/0.png deleted file mode 100644 index fdaa772797..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.rfidReaderCard/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.secureNetworkCard/0.png b/front/public/images/small/opensecurity/opensecurity.secureNetworkCard/0.png deleted file mode 100644 index e7b0bbce55..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.secureNetworkCard/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.securityDoor/0.png b/front/public/images/small/opensecurity/opensecurity.securityDoor/0.png deleted file mode 100644 index c4a75da7d3..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.securityDoor/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/opensecurity.securityDoorPrivate/0.png b/front/public/images/small/opensecurity/opensecurity.securityDoorPrivate/0.png deleted file mode 100644 index 8a035fe182..0000000000 Binary files a/front/public/images/small/opensecurity/opensecurity.securityDoorPrivate/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/rfidreader/0.png b/front/public/images/small/opensecurity/rfidreader/0.png deleted file mode 100644 index 288135785b..0000000000 Binary files a/front/public/images/small/opensecurity/rfidreader/0.png and /dev/null differ diff --git a/front/public/images/small/opensecurity/rfidwriter/0.png b/front/public/images/small/opensecurity/rfidwriter/0.png deleted file mode 100644 index c9ec287b76..0000000000 Binary files a/front/public/images/small/opensecurity/rfidwriter/0.png and /dev/null differ diff --git a/front/public/images/small/personalspace/personalPortal/0.png b/front/public/images/small/personalspace/personalPortal/0.png deleted file mode 100644 index b7bca5ab3c..0000000000 Binary files a/front/public/images/small/personalspace/personalPortal/0.png and /dev/null differ diff --git a/front/public/images/small/personalspace/personalPortal_migration2/0.png b/front/public/images/small/personalspace/personalPortal_migration2/0.png deleted file mode 100644 index b7bca5ab3c..0000000000 Binary files a/front/public/images/small/personalspace/personalPortal_migration2/0.png and /dev/null differ diff --git a/front/public/images/small/personalspace/personalPortal_migration3/0.png b/front/public/images/small/personalspace/personalPortal_migration3/0.png deleted file mode 100644 index b7bca5ab3c..0000000000 Binary files a/front/public/images/small/personalspace/personalPortal_migration3/0.png and /dev/null differ diff --git a/front/public/images/small/personalspace/personalPortal_migration4/0.png b/front/public/images/small/personalspace/personalPortal_migration4/0.png deleted file mode 100644 index b7bca5ab3c..0000000000 Binary files a/front/public/images/small/personalspace/personalPortal_migration4/0.png and /dev/null differ diff --git a/front/public/images/small/questbook/ItemQuestBook/0.png b/front/public/images/small/questbook/ItemQuestBook/0.png deleted file mode 100644 index e1506e4347..0000000000 Binary files a/front/public/images/small/questbook/ItemQuestBook/0.png and /dev/null differ diff --git a/front/public/images/small/sleepingbag/sleepingBag/0.png b/front/public/images/small/sleepingbag/sleepingBag/0.png deleted file mode 100644 index 8e1156274d..0000000000 Binary files a/front/public/images/small/sleepingbag/sleepingBag/0.png and /dev/null differ diff --git a/front/public/images/small/sleepingbag/sleepingBagBlock/0.png b/front/public/images/small/sleepingbag/sleepingBagBlock/0.png deleted file mode 100644 index 7702460b8b..0000000000 Binary files a/front/public/images/small/sleepingbag/sleepingBagBlock/0.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/0.png b/front/public/images/small/structurelib/blockhint/0.png deleted file mode 100644 index 83b03111cc..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/0.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/1.png b/front/public/images/small/structurelib/blockhint/1.png deleted file mode 100644 index aa65ddff00..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/1.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/10.png b/front/public/images/small/structurelib/blockhint/10.png deleted file mode 100644 index 0b0d9481e0..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/10.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/11.png b/front/public/images/small/structurelib/blockhint/11.png deleted file mode 100644 index 654b66bb06..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/11.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/12.png b/front/public/images/small/structurelib/blockhint/12.png deleted file mode 100644 index 8e96a4e8ed..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/12.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/13.png b/front/public/images/small/structurelib/blockhint/13.png deleted file mode 100644 index 6b1742e6c1..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/13.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/14.png b/front/public/images/small/structurelib/blockhint/14.png deleted file mode 100644 index c538ba3fb3..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/14.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/15.png b/front/public/images/small/structurelib/blockhint/15.png deleted file mode 100644 index c1cbd15da8..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/15.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/2.png b/front/public/images/small/structurelib/blockhint/2.png deleted file mode 100644 index a4a2c50aae..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/2.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/3.png b/front/public/images/small/structurelib/blockhint/3.png deleted file mode 100644 index 181c607dc6..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/3.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/4.png b/front/public/images/small/structurelib/blockhint/4.png deleted file mode 100644 index ff5c6373df..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/4.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/5.png b/front/public/images/small/structurelib/blockhint/5.png deleted file mode 100644 index 9c6ae231bb..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/5.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/6.png b/front/public/images/small/structurelib/blockhint/6.png deleted file mode 100644 index 522efb6f9b..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/6.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/7.png b/front/public/images/small/structurelib/blockhint/7.png deleted file mode 100644 index c4fed4c604..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/7.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/8.png b/front/public/images/small/structurelib/blockhint/8.png deleted file mode 100644 index 0b982eaeaf..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/8.png and /dev/null differ diff --git a/front/public/images/small/structurelib/blockhint/9.png b/front/public/images/small/structurelib/blockhint/9.png deleted file mode 100644 index bcc44d255d..0000000000 Binary files a/front/public/images/small/structurelib/blockhint/9.png and /dev/null differ diff --git a/front/public/images/small/structurelib/item.structurelib.constructableTrigger/0.png b/front/public/images/small/structurelib/item.structurelib.constructableTrigger/0.png deleted file mode 100644 index 2bc2fc9759..0000000000 Binary files a/front/public/images/small/structurelib/item.structurelib.constructableTrigger/0.png and /dev/null differ diff --git a/front/public/images/small/structurelib/item.structurelib.frontRotationTool/0.png b/front/public/images/small/structurelib/item.structurelib.frontRotationTool/0.png deleted file mode 100644 index 74019aa9b3..0000000000 Binary files a/front/public/images/small/structurelib/item.structurelib.frontRotationTool/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/AdminSolarPanel/0.png b/front/public/images/small/supersolarpanel/AdminSolarPanel/0.png deleted file mode 100644 index 12ccd5b9b5..0000000000 Binary files a/front/public/images/small/supersolarpanel/AdminSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/PhotonicSolarPanel/0.png b/front/public/images/small/supersolarpanel/PhotonicSolarPanel/0.png deleted file mode 100644 index 68365ea2bd..0000000000 Binary files a/front/public/images/small/supersolarpanel/PhotonicSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/SingularSolarPanel/0.png b/front/public/images/small/supersolarpanel/SingularSolarPanel/0.png deleted file mode 100644 index e65af8be10..0000000000 Binary files a/front/public/images/small/supersolarpanel/SingularSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/SpectralSolarPanel/0.png b/front/public/images/small/supersolarpanel/SpectralSolarPanel/0.png deleted file mode 100644 index fc7a5b25ac..0000000000 Binary files a/front/public/images/small/supersolarpanel/SpectralSolarPanel/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/bluecomponent/0.png b/front/public/images/small/supersolarpanel/bluecomponent/0.png deleted file mode 100644 index 67ccc8fcf4..0000000000 Binary files a/front/public/images/small/supersolarpanel/bluecomponent/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/enderquantumcomponent/0.png b/front/public/images/small/supersolarpanel/enderquantumcomponent/0.png deleted file mode 100644 index 91c552855f..0000000000 Binary files a/front/public/images/small/supersolarpanel/enderquantumcomponent/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/greencomponent/0.png b/front/public/images/small/supersolarpanel/greencomponent/0.png deleted file mode 100644 index 242229895f..0000000000 Binary files a/front/public/images/small/supersolarpanel/greencomponent/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/redcomponent/0.png b/front/public/images/small/supersolarpanel/redcomponent/0.png deleted file mode 100644 index 6b3a92f78b..0000000000 Binary files a/front/public/images/small/supersolarpanel/redcomponent/0.png and /dev/null differ diff --git a/front/public/images/small/supersolarpanel/solarsplitter/0.png b/front/public/images/small/supersolarpanel/solarsplitter/0.png deleted file mode 100644 index df90c1123e..0000000000 Binary files a/front/public/images/small/supersolarpanel/solarsplitter/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/Eye of Harmony Renderer/0.png b/front/public/images/small/tectech/Eye of Harmony Renderer/0.png deleted file mode 100644 index 91625d4850..0000000000 Binary files a/front/public/images/small/tectech/Eye of Harmony Renderer/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/ForgeOfGodsRenderBlock/0.png b/front/public/images/small/tectech/ForgeOfGodsRenderBlock/0.png deleted file mode 100644 index a50951797a..0000000000 Binary files a/front/public/images/small/tectech/ForgeOfGodsRenderBlock/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/0.png b/front/public/images/small/tectech/gt.blockcasingsBA0/0.png deleted file mode 100644 index 40a970acda..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/1.png b/front/public/images/small/tectech/gt.blockcasingsBA0/1.png deleted file mode 100644 index 62ed6c5077..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/10.png b/front/public/images/small/tectech/gt.blockcasingsBA0/10.png deleted file mode 100644 index 90da299423..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/10.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/11.png b/front/public/images/small/tectech/gt.blockcasingsBA0/11.png deleted file mode 100644 index 431f9af2eb..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/11.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/12.png b/front/public/images/small/tectech/gt.blockcasingsBA0/12.png deleted file mode 100644 index 25b3b015c6..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/12.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/2.png b/front/public/images/small/tectech/gt.blockcasingsBA0/2.png deleted file mode 100644 index f9bcaef33a..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/2.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/3.png b/front/public/images/small/tectech/gt.blockcasingsBA0/3.png deleted file mode 100644 index a758f39d7a..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/3.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/4.png b/front/public/images/small/tectech/gt.blockcasingsBA0/4.png deleted file mode 100644 index ba9295d94e..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/4.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/5.png b/front/public/images/small/tectech/gt.blockcasingsBA0/5.png deleted file mode 100644 index ef7fc2f773..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/5.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/6.png b/front/public/images/small/tectech/gt.blockcasingsBA0/6.png deleted file mode 100644 index 7451458dab..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/6.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/7.png b/front/public/images/small/tectech/gt.blockcasingsBA0/7.png deleted file mode 100644 index cb7d99049b..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/7.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/8.png b/front/public/images/small/tectech/gt.blockcasingsBA0/8.png deleted file mode 100644 index 48a1845a9b..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/8.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsBA0/9.png b/front/public/images/small/tectech/gt.blockcasingsBA0/9.png deleted file mode 100644 index 64fa2a1f46..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsBA0/9.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/0.png b/front/public/images/small/tectech/gt.blockcasingsTT/0.png deleted file mode 100644 index 25b3b015c6..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/1.png b/front/public/images/small/tectech/gt.blockcasingsTT/1.png deleted file mode 100644 index 9587e31ab5..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/10.png b/front/public/images/small/tectech/gt.blockcasingsTT/10.png deleted file mode 100644 index 62b9397e09..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/10.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/11.png b/front/public/images/small/tectech/gt.blockcasingsTT/11.png deleted file mode 100644 index 51a335ecb1..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/11.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/12.png b/front/public/images/small/tectech/gt.blockcasingsTT/12.png deleted file mode 100644 index 431f9af2eb..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/12.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/13.png b/front/public/images/small/tectech/gt.blockcasingsTT/13.png deleted file mode 100644 index 90da299423..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/13.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/14.png b/front/public/images/small/tectech/gt.blockcasingsTT/14.png deleted file mode 100644 index 7869c7e318..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/14.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/15.png b/front/public/images/small/tectech/gt.blockcasingsTT/15.png deleted file mode 100644 index 6f8a7538d2..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/15.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/2.png b/front/public/images/small/tectech/gt.blockcasingsTT/2.png deleted file mode 100644 index 8d0f2ff3f2..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/2.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/3.png b/front/public/images/small/tectech/gt.blockcasingsTT/3.png deleted file mode 100644 index 3ff4fea2a8..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/3.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/4.png b/front/public/images/small/tectech/gt.blockcasingsTT/4.png deleted file mode 100644 index 0f74a66208..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/4.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/5.png b/front/public/images/small/tectech/gt.blockcasingsTT/5.png deleted file mode 100644 index cbb8bd5c76..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/5.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/6.png b/front/public/images/small/tectech/gt.blockcasingsTT/6.png deleted file mode 100644 index 1d99e45d8d..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/6.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/7.png b/front/public/images/small/tectech/gt.blockcasingsTT/7.png deleted file mode 100644 index b2d3070df8..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/7.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/8.png b/front/public/images/small/tectech/gt.blockcasingsTT/8.png deleted file mode 100644 index de10ecf803..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/8.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.blockcasingsTT/9.png b/front/public/images/small/tectech/gt.blockcasingsTT/9.png deleted file mode 100644 index 71fea39bad..0000000000 Binary files a/front/public/images/small/tectech/gt.blockcasingsTT/9.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/0.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/0.png deleted file mode 100644 index faeb34dd9c..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/1.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/1.png deleted file mode 100644 index 0eb03df01d..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/2.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/2.png deleted file mode 100644 index 8bad839cb1..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/2.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/3.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/3.png deleted file mode 100644 index 1473dbc21b..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/3.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/4.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/4.png deleted file mode 100644 index 25b9fbcecf..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/4.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/5.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/5.png deleted file mode 100644 index 741e4e2f51..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/5.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/6.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/6.png deleted file mode 100644 index 149a3a61c1..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/6.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/7.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/7.png deleted file mode 100644 index 8ec9c1575f..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/7.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/8.png b/front/public/images/small/tectech/gt.spacetime_compression_field_generator/8.png deleted file mode 100644 index 9f8dc4be79..0000000000 Binary files a/front/public/images/small/tectech/gt.spacetime_compression_field_generator/8.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/0.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/0.png deleted file mode 100644 index af1c6c33ce..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/1.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/1.png deleted file mode 100644 index d538ac6422..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/2.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/2.png deleted file mode 100644 index e3acd235fe..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/2.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/3.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/3.png deleted file mode 100644 index 8daeb5860b..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/3.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/4.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/4.png deleted file mode 100644 index 59e4a80330..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/4.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/5.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/5.png deleted file mode 100644 index ec3a52fd9a..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/5.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/6.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/6.png deleted file mode 100644 index 45f38e96c4..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/6.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/7.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/7.png deleted file mode 100644 index 6d298406ed..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/7.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.stabilisation_field_generator/8.png b/front/public/images/small/tectech/gt.stabilisation_field_generator/8.png deleted file mode 100644 index c198046bd4..0000000000 Binary files a/front/public/images/small/tectech/gt.stabilisation_field_generator/8.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/0.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/0.png deleted file mode 100644 index a7c55c9292..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/1.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/1.png deleted file mode 100644 index 384269fa84..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/2.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/2.png deleted file mode 100644 index dcf2b8bc47..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/2.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/3.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/3.png deleted file mode 100644 index ea07b4f77d..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/3.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/4.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/4.png deleted file mode 100644 index f8741fe007..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/4.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/5.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/5.png deleted file mode 100644 index 066a9f4eed..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/5.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/6.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/6.png deleted file mode 100644 index d85cb20133..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/6.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/7.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/7.png deleted file mode 100644 index f8e7e4999e..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/7.png and /dev/null differ diff --git a/front/public/images/small/tectech/gt.time_acceleration_field_generator/8.png b/front/public/images/small/tectech/gt.time_acceleration_field_generator/8.png deleted file mode 100644 index 1e9fddbaf2..0000000000 Binary files a/front/public/images/small/tectech/gt.time_acceleration_field_generator/8.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.em.EuMeterGT/0.png b/front/public/images/small/tectech/item.em.EuMeterGT/0.png deleted file mode 100644 index 725bdf88c4..0000000000 Binary files a/front/public/images/small/tectech/item.em.EuMeterGT/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.em.parametrizerMemoryCard/0.png b/front/public/images/small/tectech/item.em.parametrizerMemoryCard/0.png deleted file mode 100644 index b3a541f247..0000000000 Binary files a/front/public/images/small/tectech/item.em.parametrizerMemoryCard/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.enderfluidlinkcover/0.png b/front/public/images/small/tectech/item.tm.enderfluidlinkcover/0.png deleted file mode 100644 index 1d88dad530..0000000000 Binary files a/front/public/images/small/tectech/item.tm.enderfluidlinkcover/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.itemAstralArrayFabricator/0.png b/front/public/images/small/tectech/item.tm.itemAstralArrayFabricator/0.png deleted file mode 100644 index e5721e57c3..0000000000 Binary files a/front/public/images/small/tectech/item.tm.itemAstralArrayFabricator/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.itemTeslaComponent/0.png b/front/public/images/small/tectech/item.tm.itemTeslaComponent/0.png deleted file mode 100644 index 2e7f2010a0..0000000000 Binary files a/front/public/images/small/tectech/item.tm.itemTeslaComponent/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.itemTeslaComponent/1.png b/front/public/images/small/tectech/item.tm.itemTeslaComponent/1.png deleted file mode 100644 index 556648ea69..0000000000 Binary files a/front/public/images/small/tectech/item.tm.itemTeslaComponent/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.powerpassupgradecover/0.png b/front/public/images/small/tectech/item.tm.powerpassupgradecover/0.png deleted file mode 100644 index 65d12559fc..0000000000 Binary files a/front/public/images/small/tectech/item.tm.powerpassupgradecover/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/0.png b/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/0.png deleted file mode 100644 index 0da73449ee..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/1.png b/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/1.png deleted file mode 100644 index 9ee1573c7a..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/2.png b/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/2.png deleted file mode 100644 index 37a7226ee4..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/2.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/3.png b/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/3.png deleted file mode 100644 index dc827b2baf..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/3.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/4.png b/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/4.png deleted file mode 100644 index e92fb475e6..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/4.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/5.png b/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/5.png deleted file mode 100644 index 272ac209b9..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/5.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/6.png b/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/6.png deleted file mode 100644 index 249bb54ab3..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCoilCapacitor/6.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCover/0.png b/front/public/images/small/tectech/item.tm.teslaCover/0.png deleted file mode 100644 index 93a41c5e0c..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCover/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaCover/1.png b/front/public/images/small/tectech/item.tm.teslaCover/1.png deleted file mode 100644 index cb0fba1352..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaCover/1.png and /dev/null differ diff --git a/front/public/images/small/tectech/item.tm.teslaStaff/0.png b/front/public/images/small/tectech/item.tm.teslaStaff/0.png deleted file mode 100644 index 8c614d805a..0000000000 Binary files a/front/public/images/small/tectech/item.tm.teslaStaff/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/tile.quantumGlass/0.png b/front/public/images/small/tectech/tile.quantumGlass/0.png deleted file mode 100644 index 6507cb12b3..0000000000 Binary files a/front/public/images/small/tectech/tile.quantumGlass/0.png and /dev/null differ diff --git a/front/public/images/small/tectech/tile.reactorSim/0.png b/front/public/images/small/tectech/tile.reactorSim/0.png deleted file mode 100644 index 3f551fe8b7..0000000000 Binary files a/front/public/images/small/tectech/tile.reactorSim/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/advAlchFurnace/0.png b/front/public/images/small/thaumicbases/advAlchFurnace/0.png deleted file mode 100644 index a21d1ada14..0000000000 Binary files a/front/public/images/small/thaumicbases/advAlchFurnace/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/ashroom/0.png b/front/public/images/small/thaumicbases/ashroom/0.png deleted file mode 100644 index db470c6731..0000000000 Binary files a/front/public/images/small/thaumicbases/ashroom/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/aurelia/0.png b/front/public/images/small/thaumicbases/aurelia/0.png deleted file mode 100644 index 7f0bde4e48..0000000000 Binary files a/front/public/images/small/thaumicbases/aurelia/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/aureliaPetal/0.png b/front/public/images/small/thaumicbases/aureliaPetal/0.png deleted file mode 100644 index 6cd6102036..0000000000 Binary files a/front/public/images/small/thaumicbases/aureliaPetal/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/blockSalisMundus/0.png b/front/public/images/small/thaumicbases/blockSalisMundus/0.png deleted file mode 100644 index 48e5105abf..0000000000 Binary files a/front/public/images/small/thaumicbases/blockSalisMundus/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/bloodyBoots/0.png b/front/public/images/small/thaumicbases/bloodyBoots/0.png deleted file mode 100644 index d58ab26c98..0000000000 Binary files a/front/public/images/small/thaumicbases/bloodyBoots/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/bloodyChest/0.png b/front/public/images/small/thaumicbases/bloodyChest/0.png deleted file mode 100644 index c28f04985d..0000000000 Binary files a/front/public/images/small/thaumicbases/bloodyChest/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/bloodyLeggings/0.png b/front/public/images/small/thaumicbases/bloodyLeggings/0.png deleted file mode 100644 index b54840347e..0000000000 Binary files a/front/public/images/small/thaumicbases/bloodyLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/brazier/0.png b/front/public/images/small/thaumicbases/brazier/0.png deleted file mode 100644 index 00467e45fb..0000000000 Binary files a/front/public/images/small/thaumicbases/brazier/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/briar/0.png b/front/public/images/small/thaumicbases/briar/0.png deleted file mode 100644 index d384138693..0000000000 Binary files a/front/public/images/small/thaumicbases/briar/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/campfire/0.png b/front/public/images/small/thaumicbases/campfire/0.png deleted file mode 100644 index cb04a2e708..0000000000 Binary files a/front/public/images/small/thaumicbases/campfire/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/0.png b/front/public/images/small/thaumicbases/castingBracelet/0.png deleted file mode 100644 index d3b7395b69..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/1.png b/front/public/images/small/thaumicbases/castingBracelet/1.png deleted file mode 100644 index fec8630713..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/10.png b/front/public/images/small/thaumicbases/castingBracelet/10.png deleted file mode 100644 index 8f172c94e1..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/10.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/11.png b/front/public/images/small/thaumicbases/castingBracelet/11.png deleted file mode 100644 index f95a4751b4..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/11.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/12.png b/front/public/images/small/thaumicbases/castingBracelet/12.png deleted file mode 100644 index afd39bbe4a..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/12.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/2.png b/front/public/images/small/thaumicbases/castingBracelet/2.png deleted file mode 100644 index 913aeee6e4..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/3.png b/front/public/images/small/thaumicbases/castingBracelet/3.png deleted file mode 100644 index fbc92ce58c..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/4.png b/front/public/images/small/thaumicbases/castingBracelet/4.png deleted file mode 100644 index 3684a730b0..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/5.png b/front/public/images/small/thaumicbases/castingBracelet/5.png deleted file mode 100644 index abdd7b3050..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/6.png b/front/public/images/small/thaumicbases/castingBracelet/6.png deleted file mode 100644 index 385b644f77..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/7.png b/front/public/images/small/thaumicbases/castingBracelet/7.png deleted file mode 100644 index 43309b26fc..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/8.png b/front/public/images/small/thaumicbases/castingBracelet/8.png deleted file mode 100644 index d103614005..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/8.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/castingBracelet/9.png b/front/public/images/small/thaumicbases/castingBracelet/9.png deleted file mode 100644 index 554fbf1e60..0000000000 Binary files a/front/public/images/small/thaumicbases/castingBracelet/9.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/concentratedTaint/0.png b/front/public/images/small/thaumicbases/concentratedTaint/0.png deleted file mode 100644 index 8a74ca6b2f..0000000000 Binary files a/front/public/images/small/thaumicbases/concentratedTaint/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/cryingObsidian/0.png b/front/public/images/small/thaumicbases/cryingObsidian/0.png deleted file mode 100644 index 5dc90e2cd9..0000000000 Binary files a/front/public/images/small/thaumicbases/cryingObsidian/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/0.png b/front/public/images/small/thaumicbases/crystalBlock/0.png deleted file mode 100644 index ed689a42be..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/1.png b/front/public/images/small/thaumicbases/crystalBlock/1.png deleted file mode 100644 index 89a2ddc9c1..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/2.png b/front/public/images/small/thaumicbases/crystalBlock/2.png deleted file mode 100644 index a9962d94ab..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/3.png b/front/public/images/small/thaumicbases/crystalBlock/3.png deleted file mode 100644 index 06357d75e9..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/4.png b/front/public/images/small/thaumicbases/crystalBlock/4.png deleted file mode 100644 index 19977957ce..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/5.png b/front/public/images/small/thaumicbases/crystalBlock/5.png deleted file mode 100644 index 844a4867f6..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/6.png b/front/public/images/small/thaumicbases/crystalBlock/6.png deleted file mode 100644 index d2c29ac0d2..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalBlock/7.png b/front/public/images/small/thaumicbases/crystalBlock/7.png deleted file mode 100644 index dc1bd3ed65..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalBlock/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/0.png b/front/public/images/small/thaumicbases/crystalSlab/0.png deleted file mode 100644 index 4bc0ab63bd..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/1.png b/front/public/images/small/thaumicbases/crystalSlab/1.png deleted file mode 100644 index 04bfb291e4..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/2.png b/front/public/images/small/thaumicbases/crystalSlab/2.png deleted file mode 100644 index 378916657d..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/3.png b/front/public/images/small/thaumicbases/crystalSlab/3.png deleted file mode 100644 index cf3508dfc5..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/4.png b/front/public/images/small/thaumicbases/crystalSlab/4.png deleted file mode 100644 index 8396001492..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/5.png b/front/public/images/small/thaumicbases/crystalSlab/5.png deleted file mode 100644 index 6010615514..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/6.png b/front/public/images/small/thaumicbases/crystalSlab/6.png deleted file mode 100644 index 62e0f76942..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab/7.png b/front/public/images/small/thaumicbases/crystalSlab/7.png deleted file mode 100644 index 32f878ee94..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/0.png b/front/public/images/small/thaumicbases/crystalSlab_full/0.png deleted file mode 100644 index ed689a42be..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/1.png b/front/public/images/small/thaumicbases/crystalSlab_full/1.png deleted file mode 100644 index 89a2ddc9c1..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/2.png b/front/public/images/small/thaumicbases/crystalSlab_full/2.png deleted file mode 100644 index a9962d94ab..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/3.png b/front/public/images/small/thaumicbases/crystalSlab_full/3.png deleted file mode 100644 index 06357d75e9..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/4.png b/front/public/images/small/thaumicbases/crystalSlab_full/4.png deleted file mode 100644 index 19977957ce..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/5.png b/front/public/images/small/thaumicbases/crystalSlab_full/5.png deleted file mode 100644 index 844a4867f6..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/6.png b/front/public/images/small/thaumicbases/crystalSlab_full/6.png deleted file mode 100644 index d2c29ac0d2..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/crystalSlab_full/7.png b/front/public/images/small/thaumicbases/crystalSlab_full/7.png deleted file mode 100644 index dc1bd3ed65..0000000000 Binary files a/front/public/images/small/thaumicbases/crystalSlab_full/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/eldritchArk/0.png b/front/public/images/small/thaumicbases/eldritchArk/0.png deleted file mode 100644 index abf0f3e808..0000000000 Binary files a/front/public/images/small/thaumicbases/eldritchArk/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/enderPlanks/0.png b/front/public/images/small/thaumicbases/enderPlanks/0.png deleted file mode 100644 index 8a5275f5c0..0000000000 Binary files a/front/public/images/small/thaumicbases/enderPlanks/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/entityDeconstructor/0.png b/front/public/images/small/thaumicbases/entityDeconstructor/0.png deleted file mode 100644 index d61d642e74..0000000000 Binary files a/front/public/images/small/thaumicbases/entityDeconstructor/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/flaxium/0.png b/front/public/images/small/thaumicbases/flaxium/0.png deleted file mode 100644 index 085fa896d7..0000000000 Binary files a/front/public/images/small/thaumicbases/flaxium/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/fociActivation/0.png b/front/public/images/small/thaumicbases/fociActivation/0.png deleted file mode 100644 index 6584436c29..0000000000 Binary files a/front/public/images/small/thaumicbases/fociActivation/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/fociDrain/0.png b/front/public/images/small/thaumicbases/fociDrain/0.png deleted file mode 100644 index 22d4fb0ba8..0000000000 Binary files a/front/public/images/small/thaumicbases/fociDrain/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/fociExperience/0.png b/front/public/images/small/thaumicbases/fociExperience/0.png deleted file mode 100644 index eb75eff746..0000000000 Binary files a/front/public/images/small/thaumicbases/fociExperience/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/fociFlux/0.png b/front/public/images/small/thaumicbases/fociFlux/0.png deleted file mode 100644 index fc2f65e4cc..0000000000 Binary files a/front/public/images/small/thaumicbases/fociFlux/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genLeaves/0.png b/front/public/images/small/thaumicbases/genLeaves/0.png deleted file mode 100644 index 00a35c5f34..0000000000 Binary files a/front/public/images/small/thaumicbases/genLeaves/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genLeaves/1.png b/front/public/images/small/thaumicbases/genLeaves/1.png deleted file mode 100644 index e9547789a2..0000000000 Binary files a/front/public/images/small/thaumicbases/genLeaves/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genLeaves/2.png b/front/public/images/small/thaumicbases/genLeaves/2.png deleted file mode 100644 index a190d9ae34..0000000000 Binary files a/front/public/images/small/thaumicbases/genLeaves/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genLeaves/3.png b/front/public/images/small/thaumicbases/genLeaves/3.png deleted file mode 100644 index ecfbd8a8d6..0000000000 Binary files a/front/public/images/small/thaumicbases/genLeaves/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genLogs/0.png b/front/public/images/small/thaumicbases/genLogs/0.png deleted file mode 100644 index 875f665933..0000000000 Binary files a/front/public/images/small/thaumicbases/genLogs/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genLogs/1.png b/front/public/images/small/thaumicbases/genLogs/1.png deleted file mode 100644 index 0a669872ce..0000000000 Binary files a/front/public/images/small/thaumicbases/genLogs/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genLogs/2.png b/front/public/images/small/thaumicbases/genLogs/2.png deleted file mode 100644 index eb2c9c1c5b..0000000000 Binary files a/front/public/images/small/thaumicbases/genLogs/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/0.png b/front/public/images/small/thaumicbases/genericSlab/0.png deleted file mode 100644 index d5f9c519f0..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/1.png b/front/public/images/small/thaumicbases/genericSlab/1.png deleted file mode 100644 index f881bb9026..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/2.png b/front/public/images/small/thaumicbases/genericSlab/2.png deleted file mode 100644 index 3873a902e7..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/3.png b/front/public/images/small/thaumicbases/genericSlab/3.png deleted file mode 100644 index 067a296c76..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/4.png b/front/public/images/small/thaumicbases/genericSlab/4.png deleted file mode 100644 index 7281a449cc..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/5.png b/front/public/images/small/thaumicbases/genericSlab/5.png deleted file mode 100644 index 0c7fb0b4fa..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/6.png b/front/public/images/small/thaumicbases/genericSlab/6.png deleted file mode 100644 index 3ff4638c3d..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab/7.png b/front/public/images/small/thaumicbases/genericSlab/7.png deleted file mode 100644 index 279e28194f..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/0.png b/front/public/images/small/thaumicbases/genericSlab_full/0.png deleted file mode 100644 index abf0f3e808..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/1.png b/front/public/images/small/thaumicbases/genericSlab_full/1.png deleted file mode 100644 index 320d1a5dd2..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/2.png b/front/public/images/small/thaumicbases/genericSlab_full/2.png deleted file mode 100644 index 2fae963eaa..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/3.png b/front/public/images/small/thaumicbases/genericSlab_full/3.png deleted file mode 100644 index f82dd84534..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/4.png b/front/public/images/small/thaumicbases/genericSlab_full/4.png deleted file mode 100644 index 8a621c1d8d..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/5.png b/front/public/images/small/thaumicbases/genericSlab_full/5.png deleted file mode 100644 index ebd36f007e..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/6.png b/front/public/images/small/thaumicbases/genericSlab_full/6.png deleted file mode 100644 index cdb56f8699..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/genericSlab_full/7.png b/front/public/images/small/thaumicbases/genericSlab_full/7.png deleted file mode 100644 index fc722750ae..0000000000 Binary files a/front/public/images/small/thaumicbases/genericSlab_full/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/glieonia/0.png b/front/public/images/small/thaumicbases/glieonia/0.png deleted file mode 100644 index 9cc696f240..0000000000 Binary files a/front/public/images/small/thaumicbases/glieonia/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/glieoniaSeed/0.png b/front/public/images/small/thaumicbases/glieoniaSeed/0.png deleted file mode 100644 index 155e117f49..0000000000 Binary files a/front/public/images/small/thaumicbases/glieoniaSeed/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/goldenOakSapling/0.png b/front/public/images/small/thaumicbases/goldenOakSapling/0.png deleted file mode 100644 index adc9ffb45d..0000000000 Binary files a/front/public/images/small/thaumicbases/goldenOakSapling/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/goldenOakSapling/1.png b/front/public/images/small/thaumicbases/goldenOakSapling/1.png deleted file mode 100644 index 5cb3113169..0000000000 Binary files a/front/public/images/small/thaumicbases/goldenOakSapling/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/goldenOakSapling/2.png b/front/public/images/small/thaumicbases/goldenOakSapling/2.png deleted file mode 100644 index ba812c258f..0000000000 Binary files a/front/public/images/small/thaumicbases/goldenOakSapling/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/goldenOakSapling/3.png b/front/public/images/small/thaumicbases/goldenOakSapling/3.png deleted file mode 100644 index 16cb418840..0000000000 Binary files a/front/public/images/small/thaumicbases/goldenOakSapling/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/greatwoodPipe/0.png b/front/public/images/small/thaumicbases/greatwoodPipe/0.png deleted file mode 100644 index 04b48b498e..0000000000 Binary files a/front/public/images/small/thaumicbases/greatwoodPipe/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/ironGreatwood/0.png b/front/public/images/small/thaumicbases/ironGreatwood/0.png deleted file mode 100644 index fbaeb5478d..0000000000 Binary files a/front/public/images/small/thaumicbases/ironGreatwood/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knose/0.png b/front/public/images/small/thaumicbases/knose/0.png deleted file mode 100644 index e952c69a34..0000000000 Binary files a/front/public/images/small/thaumicbases/knose/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/0.png b/front/public/images/small/thaumicbases/knoseFragment/0.png deleted file mode 100644 index fe078b6cd3..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/1.png b/front/public/images/small/thaumicbases/knoseFragment/1.png deleted file mode 100644 index 7836374cd5..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/2.png b/front/public/images/small/thaumicbases/knoseFragment/2.png deleted file mode 100644 index 9e9fa57be8..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/3.png b/front/public/images/small/thaumicbases/knoseFragment/3.png deleted file mode 100644 index 5d26140f8f..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/4.png b/front/public/images/small/thaumicbases/knoseFragment/4.png deleted file mode 100644 index a9974e35a4..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/5.png b/front/public/images/small/thaumicbases/knoseFragment/5.png deleted file mode 100644 index ed83471c0c..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/6.png b/front/public/images/small/thaumicbases/knoseFragment/6.png deleted file mode 100644 index 645f167d30..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseFragment/7.png b/front/public/images/small/thaumicbases/knoseFragment/7.png deleted file mode 100644 index 71813b75a9..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseFragment/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/knoseSeed/0.png b/front/public/images/small/thaumicbases/knoseSeed/0.png deleted file mode 100644 index c808452699..0000000000 Binary files a/front/public/images/small/thaumicbases/knoseSeed/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/lazullia/0.png b/front/public/images/small/thaumicbases/lazullia/0.png deleted file mode 100644 index 6d0424c3f5..0000000000 Binary files a/front/public/images/small/thaumicbases/lazullia/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/lazulliaSeeds/0.png b/front/public/images/small/thaumicbases/lazulliaSeeds/0.png deleted file mode 100644 index c798c0e40f..0000000000 Binary files a/front/public/images/small/thaumicbases/lazulliaSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/lucrite/0.png b/front/public/images/small/thaumicbases/lucrite/0.png deleted file mode 100644 index 0c6f00a79b..0000000000 Binary files a/front/public/images/small/thaumicbases/lucrite/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/lucriteSeeds/0.png b/front/public/images/small/thaumicbases/lucriteSeeds/0.png deleted file mode 100644 index 1e2914493f..0000000000 Binary files a/front/public/images/small/thaumicbases/lucriteSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/metalleat/0.png b/front/public/images/small/thaumicbases/metalleat/0.png deleted file mode 100644 index 28d368dd13..0000000000 Binary files a/front/public/images/small/thaumicbases/metalleat/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/metalleatSeeds/0.png b/front/public/images/small/thaumicbases/metalleatSeeds/0.png deleted file mode 100644 index 6ff6b1d9a1..0000000000 Binary files a/front/public/images/small/thaumicbases/metalleatSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/mortar/0.png b/front/public/images/small/thaumicbases/mortar/0.png deleted file mode 100644 index 593fbf5834..0000000000 Binary files a/front/public/images/small/thaumicbases/mortar/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/0.png b/front/public/images/small/thaumicbases/nodeFoci/0.png deleted file mode 100644 index 03e4540df0..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/1.png b/front/public/images/small/thaumicbases/nodeFoci/1.png deleted file mode 100644 index 00597ab6e2..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/2.png b/front/public/images/small/thaumicbases/nodeFoci/2.png deleted file mode 100644 index 7d7a402e01..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/3.png b/front/public/images/small/thaumicbases/nodeFoci/3.png deleted file mode 100644 index 20b961a4b0..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/4.png b/front/public/images/small/thaumicbases/nodeFoci/4.png deleted file mode 100644 index 8c4015c9b3..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/5.png b/front/public/images/small/thaumicbases/nodeFoci/5.png deleted file mode 100644 index 07be2ccc2c..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/6.png b/front/public/images/small/thaumicbases/nodeFoci/6.png deleted file mode 100644 index 6cc769d227..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/7.png b/front/public/images/small/thaumicbases/nodeFoci/7.png deleted file mode 100644 index fd503ab822..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/8.png b/front/public/images/small/thaumicbases/nodeFoci/8.png deleted file mode 100644 index ded2655b7f..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/8.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeFoci/9.png b/front/public/images/small/thaumicbases/nodeFoci/9.png deleted file mode 100644 index ca7a574137..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeFoci/9.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeLinker/0.png b/front/public/images/small/thaumicbases/nodeLinker/0.png deleted file mode 100644 index b2ca0dfdf7..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeLinker/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/nodeManipulator/0.png b/front/public/images/small/thaumicbases/nodeManipulator/0.png deleted file mode 100644 index 2cb8bbec80..0000000000 Binary files a/front/public/images/small/thaumicbases/nodeManipulator/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldBrick/0.png b/front/public/images/small/thaumicbases/oldBrick/0.png deleted file mode 100644 index 320d1a5dd2..0000000000 Binary files a/front/public/images/small/thaumicbases/oldBrick/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldCobble/0.png b/front/public/images/small/thaumicbases/oldCobble/0.png deleted file mode 100644 index 2fae963eaa..0000000000 Binary files a/front/public/images/small/thaumicbases/oldCobble/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldCobbleMossy/0.png b/front/public/images/small/thaumicbases/oldCobbleMossy/0.png deleted file mode 100644 index f82dd84534..0000000000 Binary files a/front/public/images/small/thaumicbases/oldCobbleMossy/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldDiamond/0.png b/front/public/images/small/thaumicbases/oldDiamond/0.png deleted file mode 100644 index 8a621c1d8d..0000000000 Binary files a/front/public/images/small/thaumicbases/oldDiamond/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldGold/0.png b/front/public/images/small/thaumicbases/oldGold/0.png deleted file mode 100644 index ebd36f007e..0000000000 Binary files a/front/public/images/small/thaumicbases/oldGold/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldGravel/0.png b/front/public/images/small/thaumicbases/oldGravel/0.png deleted file mode 100644 index f196ada4c9..0000000000 Binary files a/front/public/images/small/thaumicbases/oldGravel/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldIron/0.png b/front/public/images/small/thaumicbases/oldIron/0.png deleted file mode 100644 index cdb56f8699..0000000000 Binary files a/front/public/images/small/thaumicbases/oldIron/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/oldLapis/0.png b/front/public/images/small/thaumicbases/oldLapis/0.png deleted file mode 100644 index fc722750ae..0000000000 Binary files a/front/public/images/small/thaumicbases/oldLapis/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/overchanter/0.png b/front/public/images/small/thaumicbases/overchanter/0.png deleted file mode 100644 index e93781a9e0..0000000000 Binary files a/front/public/images/small/thaumicbases/overchanter/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/plax/0.png b/front/public/images/small/thaumicbases/plax/0.png deleted file mode 100644 index 5f71a58312..0000000000 Binary files a/front/public/images/small/thaumicbases/plax/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/plaxSeed/0.png b/front/public/images/small/thaumicbases/plaxSeed/0.png deleted file mode 100644 index 2221139769..0000000000 Binary files a/front/public/images/small/thaumicbases/plaxSeed/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/pyroBucket/0.png b/front/public/images/small/thaumicbases/pyroBucket/0.png deleted file mode 100644 index 3cf86547d3..0000000000 Binary files a/front/public/images/small/thaumicbases/pyroBucket/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/pyrofluid/0.png b/front/public/images/small/thaumicbases/pyrofluid/0.png deleted file mode 100644 index f9b2d95fbd..0000000000 Binary files a/front/public/images/small/thaumicbases/pyrofluid/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/quicksilverBlock/0.png b/front/public/images/small/thaumicbases/quicksilverBlock/0.png deleted file mode 100644 index fa480f263e..0000000000 Binary files a/front/public/images/small/thaumicbases/quicksilverBlock/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/quicksilverBrick/0.png b/front/public/images/small/thaumicbases/quicksilverBrick/0.png deleted file mode 100644 index 93fedc184d..0000000000 Binary files a/front/public/images/small/thaumicbases/quicksilverBrick/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/rainbowCactus/0.png b/front/public/images/small/thaumicbases/rainbowCactus/0.png deleted file mode 100644 index a0ec8a69ba..0000000000 Binary files a/front/public/images/small/thaumicbases/rainbowCactus/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/redlonSeeds/0.png b/front/public/images/small/thaumicbases/redlonSeeds/0.png deleted file mode 100644 index b73f34c461..0000000000 Binary files a/front/public/images/small/thaumicbases/redlonSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/redlonStem/0.png b/front/public/images/small/thaumicbases/redlonStem/0.png deleted file mode 100644 index aca17d529f..0000000000 Binary files a/front/public/images/small/thaumicbases/redlonStem/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/relocator/0.png b/front/public/images/small/thaumicbases/relocator/0.png deleted file mode 100644 index 3597d51d4a..0000000000 Binary files a/front/public/images/small/thaumicbases/relocator/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/relocator/6.png b/front/public/images/small/thaumicbases/relocator/6.png deleted file mode 100644 index b23869d6f8..0000000000 Binary files a/front/public/images/small/thaumicbases/relocator/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/0.png b/front/public/images/small/thaumicbases/resource/0.png deleted file mode 100644 index f70eb38d3c..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/1.png b/front/public/images/small/thaumicbases/resource/1.png deleted file mode 100644 index d511b01c51..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/2.png b/front/public/images/small/thaumicbases/resource/2.png deleted file mode 100644 index 3c9269615b..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/3.png b/front/public/images/small/thaumicbases/resource/3.png deleted file mode 100644 index 047509f043..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/4.png b/front/public/images/small/thaumicbases/resource/4.png deleted file mode 100644 index af48ac18e3..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/5.png b/front/public/images/small/thaumicbases/resource/5.png deleted file mode 100644 index 92d46f2b44..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/6.png b/front/public/images/small/thaumicbases/resource/6.png deleted file mode 100644 index c79e1fec6c..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/7.png b/front/public/images/small/thaumicbases/resource/7.png deleted file mode 100644 index 4705a2da41..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/resource/8.png b/front/public/images/small/thaumicbases/resource/8.png deleted file mode 100644 index e8dc1f2deb..0000000000 Binary files a/front/public/images/small/thaumicbases/resource/8.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/revolver/0.png b/front/public/images/small/thaumicbases/revolver/0.png deleted file mode 100644 index 13e1d83c32..0000000000 Binary files a/front/public/images/small/thaumicbases/revolver/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/rosehipSyrup/0.png b/front/public/images/small/thaumicbases/rosehipSyrup/0.png deleted file mode 100644 index 9c1e026550..0000000000 Binary files a/front/public/images/small/thaumicbases/rosehipSyrup/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/silverwoodPipe/0.png b/front/public/images/small/thaumicbases/silverwoodPipe/0.png deleted file mode 100644 index d91f9af71e..0000000000 Binary files a/front/public/images/small/thaumicbases/silverwoodPipe/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/spike/0.png b/front/public/images/small/thaumicbases/spike/0.png deleted file mode 100644 index e950df23ac..0000000000 Binary files a/front/public/images/small/thaumicbases/spike/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/spike/2.png b/front/public/images/small/thaumicbases/spike/2.png deleted file mode 100644 index 7c23172383..0000000000 Binary files a/front/public/images/small/thaumicbases/spike/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/spike/4.png b/front/public/images/small/thaumicbases/spike/4.png deleted file mode 100644 index a21323a02c..0000000000 Binary files a/front/public/images/small/thaumicbases/spike/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/sweed/0.png b/front/public/images/small/thaumicbases/sweed/0.png deleted file mode 100644 index 9b30ad1b5e..0000000000 Binary files a/front/public/images/small/thaumicbases/sweed/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/sweedSeeds/0.png b/front/public/images/small/thaumicbases/sweedSeeds/0.png deleted file mode 100644 index 0ae8594351..0000000000 Binary files a/front/public/images/small/thaumicbases/sweedSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thaumicAnvil/0.png b/front/public/images/small/thaumicbases/thaumicAnvil/0.png deleted file mode 100644 index cd645e4aef..0000000000 Binary files a/front/public/images/small/thaumicbases/thaumicAnvil/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thaumicAnvil/1.png b/front/public/images/small/thaumicbases/thaumicAnvil/1.png deleted file mode 100644 index b425e87e75..0000000000 Binary files a/front/public/images/small/thaumicbases/thaumicAnvil/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thaumicAnvil/2.png b/front/public/images/small/thaumicbases/thaumicAnvil/2.png deleted file mode 100644 index ea15559e6b..0000000000 Binary files a/front/public/images/small/thaumicbases/thaumicAnvil/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteAxe/0.png b/front/public/images/small/thaumicbases/thauminiteAxe/0.png deleted file mode 100644 index 6344c29f00..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteAxe/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteBlock/0.png b/front/public/images/small/thaumicbases/thauminiteBlock/0.png deleted file mode 100644 index 95a1d60a59..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteBlock/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteBoots/0.png b/front/public/images/small/thaumicbases/thauminiteBoots/0.png deleted file mode 100644 index 972b130444..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteBoots/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteChest/0.png b/front/public/images/small/thaumicbases/thauminiteChest/0.png deleted file mode 100644 index d622ae25ee..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteChest/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteHelmet/0.png b/front/public/images/small/thaumicbases/thauminiteHelmet/0.png deleted file mode 100644 index 6a1055f59f..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteHelmet/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteHoe/0.png b/front/public/images/small/thaumicbases/thauminiteHoe/0.png deleted file mode 100644 index 79db1b2542..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteHoe/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteLeggings/0.png b/front/public/images/small/thaumicbases/thauminiteLeggings/0.png deleted file mode 100644 index e343e9108d..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteLeggings/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminitePickaxe/0.png b/front/public/images/small/thaumicbases/thauminitePickaxe/0.png deleted file mode 100644 index 7a3f0496a6..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminitePickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteShears/0.png b/front/public/images/small/thaumicbases/thauminiteShears/0.png deleted file mode 100644 index 7348d90886..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteShears/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteShovel/0.png b/front/public/images/small/thaumicbases/thauminiteShovel/0.png deleted file mode 100644 index 29a93e8ea8..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteShovel/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/thauminiteSword/0.png b/front/public/images/small/thaumicbases/thauminiteSword/0.png deleted file mode 100644 index 75a08fbf8b..0000000000 Binary files a/front/public/images/small/thaumicbases/thauminiteSword/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobacco/0.png b/front/public/images/small/thaumicbases/tobacco/0.png deleted file mode 100644 index 51e1e67b17..0000000000 Binary files a/front/public/images/small/thaumicbases/tobacco/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/0.png b/front/public/images/small/thaumicbases/tobaccoPowder/0.png deleted file mode 100644 index d829bc726e..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/1.png b/front/public/images/small/thaumicbases/tobaccoPowder/1.png deleted file mode 100644 index 8b0d0ca181..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/2.png b/front/public/images/small/thaumicbases/tobaccoPowder/2.png deleted file mode 100644 index a4a78911aa..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/3.png b/front/public/images/small/thaumicbases/tobaccoPowder/3.png deleted file mode 100644 index e275dd42d9..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/4.png b/front/public/images/small/thaumicbases/tobaccoPowder/4.png deleted file mode 100644 index 7f5174c702..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/5.png b/front/public/images/small/thaumicbases/tobaccoPowder/5.png deleted file mode 100644 index decbc08536..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/6.png b/front/public/images/small/thaumicbases/tobaccoPowder/6.png deleted file mode 100644 index 61ea8c4e0b..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/7.png b/front/public/images/small/thaumicbases/tobaccoPowder/7.png deleted file mode 100644 index 91e9ed7a10..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoPowder/8.png b/front/public/images/small/thaumicbases/tobaccoPowder/8.png deleted file mode 100644 index 540e376bf5..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoPowder/8.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/tobaccoSeeds/0.png b/front/public/images/small/thaumicbases/tobaccoSeeds/0.png deleted file mode 100644 index 59047db981..0000000000 Binary files a/front/public/images/small/thaumicbases/tobaccoSeeds/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidAnvil/0.png b/front/public/images/small/thaumicbases/voidAnvil/0.png deleted file mode 100644 index 035332a6e8..0000000000 Binary files a/front/public/images/small/thaumicbases/voidAnvil/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidAnvil/1.png b/front/public/images/small/thaumicbases/voidAnvil/1.png deleted file mode 100644 index 841b605274..0000000000 Binary files a/front/public/images/small/thaumicbases/voidAnvil/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidAnvil/2.png b/front/public/images/small/thaumicbases/voidAnvil/2.png deleted file mode 100644 index 58d0120898..0000000000 Binary files a/front/public/images/small/thaumicbases/voidAnvil/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidBlock/0.png b/front/public/images/small/thaumicbases/voidBlock/0.png deleted file mode 100644 index 0573aa0e00..0000000000 Binary files a/front/public/images/small/thaumicbases/voidBlock/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidFAS/0.png b/front/public/images/small/thaumicbases/voidFAS/0.png deleted file mode 100644 index e6b5566a2d..0000000000 Binary files a/front/public/images/small/thaumicbases/voidFAS/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidPlant/0.png b/front/public/images/small/thaumicbases/voidPlant/0.png deleted file mode 100644 index 97e4eb28ff..0000000000 Binary files a/front/public/images/small/thaumicbases/voidPlant/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidSeed/0.png b/front/public/images/small/thaumicbases/voidSeed/0.png deleted file mode 100644 index 4fcbb3cf5f..0000000000 Binary files a/front/public/images/small/thaumicbases/voidSeed/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicbases/voidShears/0.png b/front/public/images/small/thaumicbases/voidShears/0.png deleted file mode 100644 index 7b2bd7c510..0000000000 Binary files a/front/public/images/small/thaumicbases/voidShears/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemArcaniumInterfacer/0.png b/front/public/images/small/thaumicboots/item.ItemArcaniumInterfacer/0.png deleted file mode 100644 index d727a0a72f..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemArcaniumInterfacer/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemChristmasBoots/0.png b/front/public/images/small/thaumicboots/item.ItemChristmasBoots/0.png deleted file mode 100644 index 294bff5adc..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemChristmasBoots/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemCometMeteor/0.png b/front/public/images/small/thaumicboots/item.ItemCometMeteor/0.png deleted file mode 100644 index de9950c1a2..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemCometMeteor/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemElectricComet/1.png b/front/public/images/small/thaumicboots/item.ItemElectricComet/1.png deleted file mode 100644 index 41bdb39f8e..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemElectricComet/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemElectricComet/325.png b/front/public/images/small/thaumicboots/item.ItemElectricComet/325.png deleted file mode 100644 index 41bdb39f8e..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemElectricComet/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemElectricMeteor/1.png b/front/public/images/small/thaumicboots/item.ItemElectricMeteor/1.png deleted file mode 100644 index f7f3552b5e..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemElectricMeteor/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemElectricMeteor/325.png b/front/public/images/small/thaumicboots/item.ItemElectricMeteor/325.png deleted file mode 100644 index f7f3552b5e..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemElectricMeteor/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemElectricVoid/1.png b/front/public/images/small/thaumicboots/item.ItemElectricVoid/1.png deleted file mode 100644 index 11e77ad7d9..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemElectricVoid/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemElectricVoid/325.png b/front/public/images/small/thaumicboots/item.ItemElectricVoid/325.png deleted file mode 100644 index 11e77ad7d9..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemElectricVoid/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemMeteoricComet/0.png b/front/public/images/small/thaumicboots/item.ItemMeteoricComet/0.png deleted file mode 100644 index 23e72b3826..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemMeteoricComet/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemNanoComet/1.png b/front/public/images/small/thaumicboots/item.ItemNanoComet/1.png deleted file mode 100644 index 1f664ed7a7..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemNanoComet/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemNanoComet/325.png b/front/public/images/small/thaumicboots/item.ItemNanoComet/325.png deleted file mode 100644 index 1f664ed7a7..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemNanoComet/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemNanoMeteor/1.png b/front/public/images/small/thaumicboots/item.ItemNanoMeteor/1.png deleted file mode 100644 index a90347d9c6..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemNanoMeteor/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemNanoMeteor/325.png b/front/public/images/small/thaumicboots/item.ItemNanoMeteor/325.png deleted file mode 100644 index a90347d9c6..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemNanoMeteor/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemNanoVoid/1.png b/front/public/images/small/thaumicboots/item.ItemNanoVoid/1.png deleted file mode 100644 index 652a6f0630..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemNanoVoid/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemNanoVoid/325.png b/front/public/images/small/thaumicboots/item.ItemNanoVoid/325.png deleted file mode 100644 index 652a6f0630..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemNanoVoid/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemQuantumComet/1.png b/front/public/images/small/thaumicboots/item.ItemQuantumComet/1.png deleted file mode 100644 index fa70ce2e09..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemQuantumComet/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemQuantumComet/325.png b/front/public/images/small/thaumicboots/item.ItemQuantumComet/325.png deleted file mode 100644 index fa70ce2e09..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemQuantumComet/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemQuantumMeteor/1.png b/front/public/images/small/thaumicboots/item.ItemQuantumMeteor/1.png deleted file mode 100644 index 2d367d39b9..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemQuantumMeteor/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemQuantumMeteor/325.png b/front/public/images/small/thaumicboots/item.ItemQuantumMeteor/325.png deleted file mode 100644 index 2d367d39b9..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemQuantumMeteor/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemQuantumVoid/1.png b/front/public/images/small/thaumicboots/item.ItemQuantumVoid/1.png deleted file mode 100644 index 996856ec76..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemQuantumVoid/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemQuantumVoid/325.png b/front/public/images/small/thaumicboots/item.ItemQuantumVoid/325.png deleted file mode 100644 index 996856ec76..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemQuantumVoid/325.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemSeasonBoots/0.png b/front/public/images/small/thaumicboots/item.ItemSeasonBoots/0.png deleted file mode 100644 index dbe605ee78..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemSeasonBoots/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemSlowBoots/0.png b/front/public/images/small/thaumicboots/item.ItemSlowBoots/0.png deleted file mode 100644 index 6cdfe5eefe..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemSlowBoots/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemVoidComet/0.png b/front/public/images/small/thaumicboots/item.ItemVoidComet/0.png deleted file mode 100644 index 7c3f0c4161..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemVoidComet/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicboots/item.ItemVoidMeteor/0.png b/front/public/images/small/thaumicboots/item.ItemVoidMeteor/0.png deleted file mode 100644 index 3580a60d82..0000000000 Binary files a/front/public/images/small/thaumicboots/item.ItemVoidMeteor/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/cell.microscope/0.png b/front/public/images/small/thaumicenergistics/cell.microscope/0.png deleted file mode 100644 index aa353a15b8..0000000000 Binary files a/front/public/images/small/thaumicenergistics/cell.microscope/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/crafting.aspect/0.png b/front/public/images/small/thaumicenergistics/crafting.aspect/0.png deleted file mode 100644 index ed3a3ad00d..0000000000 Binary files a/front/public/images/small/thaumicenergistics/crafting.aspect/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/focus.aewrench/0.png b/front/public/images/small/thaumicenergistics/focus.aewrench/0.png deleted file mode 100644 index 1649075178..0000000000 Binary files a/front/public/images/small/thaumicenergistics/focus.aewrench/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/golem.wifi.backpack/0.png b/front/public/images/small/thaumicenergistics/golem.wifi.backpack/0.png deleted file mode 100644 index 903e1de79c..0000000000 Binary files a/front/public/images/small/thaumicenergistics/golem.wifi.backpack/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/knowledge.core/0.png b/front/public/images/small/thaumicenergistics/knowledge.core/0.png deleted file mode 100644 index 4e6edbf170..0000000000 Binary files a/front/public/images/small/thaumicenergistics/knowledge.core/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/material/0.png b/front/public/images/small/thaumicenergistics/material/0.png deleted file mode 100644 index b0c9a35bf7..0000000000 Binary files a/front/public/images/small/thaumicenergistics/material/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/material/1.png b/front/public/images/small/thaumicenergistics/material/1.png deleted file mode 100644 index 8e670b4f5c..0000000000 Binary files a/front/public/images/small/thaumicenergistics/material/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/material/2.png b/front/public/images/small/thaumicenergistics/material/2.png deleted file mode 100644 index 43799fe0a0..0000000000 Binary files a/front/public/images/small/thaumicenergistics/material/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/0.png b/front/public/images/small/thaumicenergistics/part.base/0.png deleted file mode 100644 index 6e12250c56..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/1.png b/front/public/images/small/thaumicenergistics/part.base/1.png deleted file mode 100644 index cc59d1b92e..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/2.png b/front/public/images/small/thaumicenergistics/part.base/2.png deleted file mode 100644 index 354f312cc0..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/3.png b/front/public/images/small/thaumicenergistics/part.base/3.png deleted file mode 100644 index 9ffe3e833f..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/4.png b/front/public/images/small/thaumicenergistics/part.base/4.png deleted file mode 100644 index c4742951d8..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/5.png b/front/public/images/small/thaumicenergistics/part.base/5.png deleted file mode 100644 index 28aa6c506f..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/6.png b/front/public/images/small/thaumicenergistics/part.base/6.png deleted file mode 100644 index 414e037f0f..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/7.png b/front/public/images/small/thaumicenergistics/part.base/7.png deleted file mode 100644 index 91327535a0..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/8.png b/front/public/images/small/thaumicenergistics/part.base/8.png deleted file mode 100644 index 02c76dc147..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/8.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/part.base/9.png b/front/public/images/small/thaumicenergistics/part.base/9.png deleted file mode 100644 index 414e037f0f..0000000000 Binary files a/front/public/images/small/thaumicenergistics/part.base/9.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.casing/0.png b/front/public/images/small/thaumicenergistics/storage.casing/0.png deleted file mode 100644 index 7732c2b4ee..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.casing/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/0.png b/front/public/images/small/thaumicenergistics/storage.component/0.png deleted file mode 100644 index b2349c3f6f..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/1.png b/front/public/images/small/thaumicenergistics/storage.component/1.png deleted file mode 100644 index 9bdba53dd4..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/2.png b/front/public/images/small/thaumicenergistics/storage.component/2.png deleted file mode 100644 index 7567339ee9..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/3.png b/front/public/images/small/thaumicenergistics/storage.component/3.png deleted file mode 100644 index 40ac8f6796..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/5.png b/front/public/images/small/thaumicenergistics/storage.component/5.png deleted file mode 100644 index 7d2fddd051..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/6.png b/front/public/images/small/thaumicenergistics/storage.component/6.png deleted file mode 100644 index 82a796204b..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/7.png b/front/public/images/small/thaumicenergistics/storage.component/7.png deleted file mode 100644 index ab812c3e08..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.component/8.png b/front/public/images/small/thaumicenergistics/storage.component/8.png deleted file mode 100644 index ecb23b97d1..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.component/8.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/0.png b/front/public/images/small/thaumicenergistics/storage.essentia/0.png deleted file mode 100644 index d729d7c68b..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/1.png b/front/public/images/small/thaumicenergistics/storage.essentia/1.png deleted file mode 100644 index a31d6c067f..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/1.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/10.png b/front/public/images/small/thaumicenergistics/storage.essentia/10.png deleted file mode 100644 index 371bad472e..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/10.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/2.png b/front/public/images/small/thaumicenergistics/storage.essentia/2.png deleted file mode 100644 index 3b7f69b728..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/2.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/3.png b/front/public/images/small/thaumicenergistics/storage.essentia/3.png deleted file mode 100644 index 56665c2769..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/3.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/4.png b/front/public/images/small/thaumicenergistics/storage.essentia/4.png deleted file mode 100644 index 935f27e635..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/4.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/5.png b/front/public/images/small/thaumicenergistics/storage.essentia/5.png deleted file mode 100644 index fe98510ec6..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/5.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/6.png b/front/public/images/small/thaumicenergistics/storage.essentia/6.png deleted file mode 100644 index 82c1cb29a5..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/6.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/7.png b/front/public/images/small/thaumicenergistics/storage.essentia/7.png deleted file mode 100644 index 68246a34bb..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/7.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/8.png b/front/public/images/small/thaumicenergistics/storage.essentia/8.png deleted file mode 100644 index f712e45eeb..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/8.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/storage.essentia/9.png b/front/public/images/small/thaumicenergistics/storage.essentia/9.png deleted file mode 100644 index 8f4d3e1f96..0000000000 Binary files a/front/public/images/small/thaumicenergistics/storage.essentia/9.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.arcane.assembler/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.arcane.assembler/0.png deleted file mode 100644 index ace00d5133..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.arcane.assembler/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.distillation.encoder/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.distillation.encoder/0.png deleted file mode 100644 index 673120504b..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.distillation.encoder/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.cell.workbench/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.cell.workbench/0.png deleted file mode 100644 index ddfc549769..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.cell.workbench/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.provider/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.provider/0.png deleted file mode 100644 index afa805a8de..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.provider/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.vibration.chamber/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.vibration.chamber/0.png deleted file mode 100644 index a4044c15f8..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.essentia.vibration.chamber/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.gear.box/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.gear.box/0.png deleted file mode 100644 index 4da8402b2f..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.gear.box/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.golem.gear.box/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.golem.gear.box/0.png deleted file mode 100644 index b067c6e643..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.golem.gear.box/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.infusion.provider/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.infusion.provider/0.png deleted file mode 100644 index 2093dede00..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.infusion.provider/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.knowledge.inscriber/0.png b/front/public/images/small/thaumicenergistics/thaumicenergistics.block.knowledge.inscriber/0.png deleted file mode 100644 index 52ad0bd52a..0000000000 Binary files a/front/public/images/small/thaumicenergistics/thaumicenergistics.block.knowledge.inscriber/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicenergistics/wireless.essentia.terminal/0.png b/front/public/images/small/thaumicenergistics/wireless.essentia.terminal/0.png deleted file mode 100644 index 20b7949f1e..0000000000 Binary files a/front/public/images/small/thaumicenergistics/wireless.essentia.terminal/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/infusionIntercepter/0.png b/front/public/images/small/thaumicinsurgence/infusionIntercepter/0.png deleted file mode 100644 index c994454611..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/infusionIntercepter/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/item.ItemAlastorsWand/0.png b/front/public/images/small/thaumicinsurgence/item.ItemAlastorsWand/0.png deleted file mode 100644 index 607d824573..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/item.ItemAlastorsWand/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/item.ItemBIGSHOT/0.png b/front/public/images/small/thaumicinsurgence/item.ItemBIGSHOT/0.png deleted file mode 100644 index ef3e1586c5..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/item.ItemBIGSHOT/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/item.ItemEightBitRedCrown/0.png b/front/public/images/small/thaumicinsurgence/item.ItemEightBitRedCrown/0.png deleted file mode 100644 index 9988c1bcb9..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/item.ItemEightBitRedCrown/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/item.ItemSanitySoapAlpha/0.png b/front/public/images/small/thaumicinsurgence/item.ItemSanitySoapAlpha/0.png deleted file mode 100644 index 1995a609f7..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/item.ItemSanitySoapAlpha/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/item.ItemSanitySoapBeta/0.png b/front/public/images/small/thaumicinsurgence/item.ItemSanitySoapBeta/0.png deleted file mode 100644 index 76c01fc462..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/item.ItemSanitySoapBeta/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/item.ItemThaumicInterfacer/0.png b/front/public/images/small/thaumicinsurgence/item.ItemThaumicInterfacer/0.png deleted file mode 100644 index 5b9bcb73e5..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/item.ItemThaumicInterfacer/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/marblePedestal/0.png b/front/public/images/small/thaumicinsurgence/marblePedestal/0.png deleted file mode 100644 index ded2afd381..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/marblePedestal/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/matrixAlpha/0.png b/front/public/images/small/thaumicinsurgence/matrixAlpha/0.png deleted file mode 100644 index c73e4155af..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/matrixAlpha/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/pillarAlpha/0.png b/front/public/images/small/thaumicinsurgence/pillarAlpha/0.png deleted file mode 100644 index 8cdf8ff89f..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/pillarAlpha/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/tile.arcaneMarble/0.png b/front/public/images/small/thaumicinsurgence/tile.arcaneMarble/0.png deleted file mode 100644 index 51d641a71e..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/tile.arcaneMarble/0.png and /dev/null differ diff --git a/front/public/images/small/thaumicinsurgence/tile.arcaneMarbleBrick/0.png b/front/public/images/small/thaumicinsurgence/tile.arcaneMarbleBrick/0.png deleted file mode 100644 index 188f33c41b..0000000000 Binary files a/front/public/images/small/thaumicinsurgence/tile.arcaneMarbleBrick/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/AeonSteel Ingot/0.png b/front/public/images/small/tinkersdefense/AeonSteel Ingot/0.png deleted file mode 100644 index 3b9bdc7834..0000000000 Binary files a/front/public/images/small/tinkersdefense/AeonSteel Ingot/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/Block_ArmorAnvil/0.png b/front/public/images/small/tinkersdefense/Block_ArmorAnvil/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/tinkersdefense/Block_ArmorAnvil/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/Block_CrestMount/0.png b/front/public/images/small/tinkersdefense/Block_CrestMount/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/tinkersdefense/Block_CrestMount/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/Block_JewelersBench/0.png b/front/public/images/small/tinkersdefense/Block_JewelersBench/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/tinkersdefense/Block_JewelersBench/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/DogbeariumIngot/0.png b/front/public/images/small/tinkersdefense/DogbeariumIngot/0.png deleted file mode 100644 index 3d4a622c08..0000000000 Binary files a/front/public/images/small/tinkersdefense/DogbeariumIngot/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/Dogbeariumblock/0.png b/front/public/images/small/tinkersdefense/Dogbeariumblock/0.png deleted file mode 100644 index ad812a70ae..0000000000 Binary files a/front/public/images/small/tinkersdefense/Dogbeariumblock/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/Queen's Gold Ingot/0.png b/front/public/images/small/tinkersdefense/Queen's Gold Ingot/0.png deleted file mode 100644 index 0de3640478..0000000000 Binary files a/front/public/images/small/tinkersdefense/Queen's Gold Ingot/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/QueensGoldblock/0.png b/front/public/images/small/tinkersdefense/QueensGoldblock/0.png deleted file mode 100644 index 9e7136977e..0000000000 Binary files a/front/public/images/small/tinkersdefense/QueensGoldblock/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/aeonsteelblock/0.png b/front/public/images/small/tinkersdefense/aeonsteelblock/0.png deleted file mode 100644 index 95853e06c4..0000000000 Binary files a/front/public/images/small/tinkersdefense/aeonsteelblock/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/moltenDogbearium/0.png b/front/public/images/small/tinkersdefense/moltenDogbearium/0.png deleted file mode 100644 index f17524fd3d..0000000000 Binary files a/front/public/images/small/tinkersdefense/moltenDogbearium/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/moltenQueensGold/0.png b/front/public/images/small/tinkersdefense/moltenQueensGold/0.png deleted file mode 100644 index d968bc8763..0000000000 Binary files a/front/public/images/small/tinkersdefense/moltenQueensGold/0.png and /dev/null differ diff --git a/front/public/images/small/tinkersdefense/moltenaeonsteel/0.png b/front/public/images/small/tinkersdefense/moltenaeonsteel/0.png deleted file mode 100644 index dd5b6ed34f..0000000000 Binary files a/front/public/images/small/tinkersdefense/moltenaeonsteel/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/0.png b/front/public/images/small/universalsingularities/universal.bigReactors.singularity/0.png deleted file mode 100644 index 8cd6927b9b..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/1.png b/front/public/images/small/universalsingularities/universal.bigReactors.singularity/1.png deleted file mode 100644 index f440359d65..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/2.png b/front/public/images/small/universalsingularities/universal.bigReactors.singularity/2.png deleted file mode 100644 index c839c136a9..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/2.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/3.png b/front/public/images/small/universalsingularities/universal.bigReactors.singularity/3.png deleted file mode 100644 index 6ed3a20e01..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/3.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/4.png b/front/public/images/small/universalsingularities/universal.bigReactors.singularity/4.png deleted file mode 100644 index a05e4a33d1..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.bigReactors.singularity/4.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.draconicEvolution.singularity/0.png b/front/public/images/small/universalsingularities/universal.draconicEvolution.singularity/0.png deleted file mode 100644 index 60aeffc0bf..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.draconicEvolution.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.draconicEvolution.singularity/1.png b/front/public/images/small/universalsingularities/universal.draconicEvolution.singularity/1.png deleted file mode 100644 index 899dffc91c..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.draconicEvolution.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/0.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/0.png deleted file mode 100644 index e5f763952d..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/1.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/1.png deleted file mode 100644 index b436084958..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/2.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/2.png deleted file mode 100644 index 33b34da6db..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/2.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/3.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/3.png deleted file mode 100644 index 7839ed04d9..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/3.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/4.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/4.png deleted file mode 100644 index 007349f54a..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/4.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/5.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/5.png deleted file mode 100644 index 3c9e7cc500..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/5.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/6.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/6.png deleted file mode 100644 index a045721e71..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/6.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.enderIO.singularity/7.png b/front/public/images/small/universalsingularities/universal.enderIO.singularity/7.png deleted file mode 100644 index f947357ce8..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.enderIO.singularity/7.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/0.png b/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/0.png deleted file mode 100644 index 98c0f8afe0..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/1.png b/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/1.png deleted file mode 100644 index e2df6f7dfe..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/2.png b/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/2.png deleted file mode 100644 index 61d0cc5ac6..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/2.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/3.png b/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/3.png deleted file mode 100644 index 9b12e285f2..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/3.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/4.png b/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/4.png deleted file mode 100644 index 34d0b762a1..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraPlanets.singularity/4.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraTiC.singularity/0.png b/front/public/images/small/universalsingularities/universal.extraTiC.singularity/0.png deleted file mode 100644 index 416221f969..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraTiC.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraTiC.singularity/1.png b/front/public/images/small/universalsingularities/universal.extraTiC.singularity/1.png deleted file mode 100644 index 0649a2ebd7..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraTiC.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.extraUtilities.singularity/0.png b/front/public/images/small/universalsingularities/universal.extraUtilities.singularity/0.png deleted file mode 100644 index 2f012f5fc2..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.extraUtilities.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/0.png b/front/public/images/small/universalsingularities/universal.general.singularity/0.png deleted file mode 100644 index 1dea3c0f2a..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/1.png b/front/public/images/small/universalsingularities/universal.general.singularity/1.png deleted file mode 100644 index c1020491e6..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/10.png b/front/public/images/small/universalsingularities/universal.general.singularity/10.png deleted file mode 100644 index 646d178644..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/10.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/11.png b/front/public/images/small/universalsingularities/universal.general.singularity/11.png deleted file mode 100644 index a0ad5dc218..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/11.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/12.png b/front/public/images/small/universalsingularities/universal.general.singularity/12.png deleted file mode 100644 index 6186ced31b..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/12.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/13.png b/front/public/images/small/universalsingularities/universal.general.singularity/13.png deleted file mode 100644 index f39bd2c73d..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/13.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/14.png b/front/public/images/small/universalsingularities/universal.general.singularity/14.png deleted file mode 100644 index a419f6611b..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/14.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/15.png b/front/public/images/small/universalsingularities/universal.general.singularity/15.png deleted file mode 100644 index 492b266562..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/15.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/16.png b/front/public/images/small/universalsingularities/universal.general.singularity/16.png deleted file mode 100644 index beccc35250..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/16.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/17.png b/front/public/images/small/universalsingularities/universal.general.singularity/17.png deleted file mode 100644 index a67076416b..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/17.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/18.png b/front/public/images/small/universalsingularities/universal.general.singularity/18.png deleted file mode 100644 index a0ad5dc218..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/18.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/19.png b/front/public/images/small/universalsingularities/universal.general.singularity/19.png deleted file mode 100644 index 11fb8c28bd..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/19.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/2.png b/front/public/images/small/universalsingularities/universal.general.singularity/2.png deleted file mode 100644 index 659c7200bb..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/2.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/20.png b/front/public/images/small/universalsingularities/universal.general.singularity/20.png deleted file mode 100644 index e0b0ec45b3..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/20.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/21.png b/front/public/images/small/universalsingularities/universal.general.singularity/21.png deleted file mode 100644 index f1eb4fd3d5..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/21.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/22.png b/front/public/images/small/universalsingularities/universal.general.singularity/22.png deleted file mode 100644 index 5a7dacf626..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/22.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/23.png b/front/public/images/small/universalsingularities/universal.general.singularity/23.png deleted file mode 100644 index 5e50530477..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/23.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/24.png b/front/public/images/small/universalsingularities/universal.general.singularity/24.png deleted file mode 100644 index 1553501975..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/24.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/25.png b/front/public/images/small/universalsingularities/universal.general.singularity/25.png deleted file mode 100644 index baf180815d..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/25.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/26.png b/front/public/images/small/universalsingularities/universal.general.singularity/26.png deleted file mode 100644 index b1f55b7aba..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/26.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/27.png b/front/public/images/small/universalsingularities/universal.general.singularity/27.png deleted file mode 100644 index 9e952e5b93..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/27.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/28.png b/front/public/images/small/universalsingularities/universal.general.singularity/28.png deleted file mode 100644 index 9af7260d54..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/28.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/29.png b/front/public/images/small/universalsingularities/universal.general.singularity/29.png deleted file mode 100644 index 884b7950a7..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/29.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/3.png b/front/public/images/small/universalsingularities/universal.general.singularity/3.png deleted file mode 100644 index 0899638dfe..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/3.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/30.png b/front/public/images/small/universalsingularities/universal.general.singularity/30.png deleted file mode 100644 index 23a0e5c87a..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/30.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/4.png b/front/public/images/small/universalsingularities/universal.general.singularity/4.png deleted file mode 100644 index 7f9f1c09c3..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/4.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/5.png b/front/public/images/small/universalsingularities/universal.general.singularity/5.png deleted file mode 100644 index 6d437166ca..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/5.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/6.png b/front/public/images/small/universalsingularities/universal.general.singularity/6.png deleted file mode 100644 index 4994dc7aef..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/6.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/7.png b/front/public/images/small/universalsingularities/universal.general.singularity/7.png deleted file mode 100644 index 904038c38e..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/7.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/8.png b/front/public/images/small/universalsingularities/universal.general.singularity/8.png deleted file mode 100644 index 1114db1e4b..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/8.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.general.singularity/9.png b/front/public/images/small/universalsingularities/universal.general.singularity/9.png deleted file mode 100644 index 4e8a538ba6..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.general.singularity/9.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.mekanism.singularity/0.png b/front/public/images/small/universalsingularities/universal.mekanism.singularity/0.png deleted file mode 100644 index d46824e2f0..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.mekanism.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.mekanism.singularity/1.png b/front/public/images/small/universalsingularities/universal.mekanism.singularity/1.png deleted file mode 100644 index c1e72f3273..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.mekanism.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/0.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/0.png deleted file mode 100644 index ec9ff00fd8..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/1.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/1.png deleted file mode 100644 index 3c6a7782f5..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/2.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/2.png deleted file mode 100644 index 226ee73463..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/2.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/3.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/3.png deleted file mode 100644 index 4d850f2a45..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/3.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/4.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/4.png deleted file mode 100644 index 037651a0f3..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/4.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/5.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/5.png deleted file mode 100644 index d638c760dc..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/5.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/6.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/6.png deleted file mode 100644 index 918cdc5644..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/6.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/7.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/7.png deleted file mode 100644 index 06b1a39a05..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/7.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/8.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/8.png deleted file mode 100644 index e008602a4e..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/8.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/9.png b/front/public/images/small/universalsingularities/universal.metallurgy.singularity/9.png deleted file mode 100644 index 440f9f056e..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.metallurgy.singularity/9.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.pneumaticCraft.singularity/0.png b/front/public/images/small/universalsingularities/universal.pneumaticCraft.singularity/0.png deleted file mode 100644 index a11aa9945b..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.pneumaticCraft.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.projectRed.singularity/0.png b/front/public/images/small/universalsingularities/universal.projectRed.singularity/0.png deleted file mode 100644 index 1102fab8b6..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.projectRed.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.redstoneArsenal.singularity/0.png b/front/public/images/small/universalsingularities/universal.redstoneArsenal.singularity/0.png deleted file mode 100644 index a3f9b38962..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.redstoneArsenal.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/0.png b/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/0.png deleted file mode 100644 index 5d699ccfb3..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/1.png b/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/1.png deleted file mode 100644 index b2d32a2ac1..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/2.png b/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/2.png deleted file mode 100644 index 95fb6effe8..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/2.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/3.png b/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/3.png deleted file mode 100644 index bd8784f101..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/3.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/4.png b/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/4.png deleted file mode 100644 index f24dc05ac3..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/4.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/5.png b/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/5.png deleted file mode 100644 index cbf84853e0..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/5.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/6.png b/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/6.png deleted file mode 100644 index a4646e5df6..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.tinkersConstruct.singularity/6.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.vanilla.singularity/0.png b/front/public/images/small/universalsingularities/universal.vanilla.singularity/0.png deleted file mode 100644 index a2371b6220..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.vanilla.singularity/0.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.vanilla.singularity/1.png b/front/public/images/small/universalsingularities/universal.vanilla.singularity/1.png deleted file mode 100644 index a9bbaae4bf..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.vanilla.singularity/1.png and /dev/null differ diff --git a/front/public/images/small/universalsingularities/universal.vanilla.singularity/2.png b/front/public/images/small/universalsingularities/universal.vanilla.singularity/2.png deleted file mode 100644 index 52b2bfa705..0000000000 Binary files a/front/public/images/small/universalsingularities/universal.vanilla.singularity/2.png and /dev/null differ diff --git a/front/public/images/small/visualprospecting/item.visualprospecting.prospectorslog/0.png b/front/public/images/small/visualprospecting/item.visualprospecting.prospectorslog/0.png deleted file mode 100644 index 778178d4f4..0000000000 Binary files a/front/public/images/small/visualprospecting/item.visualprospecting.prospectorslog/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/alderwooddoor/0.png b/front/public/images/small/witchery/alderwooddoor/0.png deleted file mode 100644 index 604937f80b..0000000000 Binary files a/front/public/images/small/witchery/alderwooddoor/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/alluringskull/0.png b/front/public/images/small/witchery/alluringskull/0.png deleted file mode 100644 index 9aa120e154..0000000000 Binary files a/front/public/images/small/witchery/alluringskull/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/altar/0.png b/front/public/images/small/witchery/altar/0.png deleted file mode 100644 index c0ddc46dc9..0000000000 Binary files a/front/public/images/small/witchery/altar/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/arthana/0.png b/front/public/images/small/witchery/arthana/0.png deleted file mode 100644 index 61e336a50d..0000000000 Binary files a/front/public/images/small/witchery/arthana/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/artichoke/0.png b/front/public/images/small/witchery/artichoke/0.png deleted file mode 100644 index e4b4b9ac58..0000000000 Binary files a/front/public/images/small/witchery/artichoke/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/babashat/0.png b/front/public/images/small/witchery/babashat/0.png deleted file mode 100644 index 2837cc10f8..0000000000 Binary files a/front/public/images/small/witchery/babashat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/barkbelt/0.png b/front/public/images/small/witchery/barkbelt/0.png deleted file mode 100644 index d95110abdb..0000000000 Binary files a/front/public/images/small/witchery/barkbelt/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/barrier/0.png b/front/public/images/small/witchery/barrier/0.png deleted file mode 100644 index 4082759135..0000000000 Binary files a/front/public/images/small/witchery/barrier/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/beartrap/0.png b/front/public/images/small/witchery/beartrap/0.png deleted file mode 100644 index fbc8864fff..0000000000 Binary files a/front/public/images/small/witchery/beartrap/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/belladonna/0.png b/front/public/images/small/witchery/belladonna/0.png deleted file mode 100644 index a4d5c19bc8..0000000000 Binary files a/front/public/images/small/witchery/belladonna/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/biomenote/0.png b/front/public/images/small/witchery/biomenote/0.png deleted file mode 100644 index 85f9e1c4c7..0000000000 Binary files a/front/public/images/small/witchery/biomenote/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bitingbelt/0.png b/front/public/images/small/witchery/bitingbelt/0.png deleted file mode 100644 index 96ad0a9744..0000000000 Binary files a/front/public/images/small/witchery/bitingbelt/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bloodcrucible/0.png b/front/public/images/small/witchery/bloodcrucible/0.png deleted file mode 100644 index c024efb677..0000000000 Binary files a/front/public/images/small/witchery/bloodcrucible/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bloodedwool/0.png b/front/public/images/small/witchery/bloodedwool/0.png deleted file mode 100644 index 6a30a28ba9..0000000000 Binary files a/front/public/images/small/witchery/bloodedwool/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bloodrose/0.png b/front/public/images/small/witchery/bloodrose/0.png deleted file mode 100644 index 5a3e1a3155..0000000000 Binary files a/front/public/images/small/witchery/bloodrose/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/boline/0.png b/front/public/images/small/witchery/boline/0.png deleted file mode 100644 index 5e5740129b..0000000000 Binary files a/front/public/images/small/witchery/boline/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bookbiomes2/0.png b/front/public/images/small/witchery/bookbiomes2/0.png deleted file mode 100644 index f9ca72f89a..0000000000 Binary files a/front/public/images/small/witchery/bookbiomes2/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bramble/0.png b/front/public/images/small/witchery/bramble/0.png deleted file mode 100644 index 28d05bc782..0000000000 Binary files a/front/public/images/small/witchery/bramble/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bramble/1.png b/front/public/images/small/witchery/bramble/1.png deleted file mode 100644 index 75ab6f7106..0000000000 Binary files a/front/public/images/small/witchery/bramble/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/brazier/0.png b/front/public/images/small/witchery/brazier/0.png deleted file mode 100644 index 070c37bcda..0000000000 Binary files a/front/public/images/small/witchery/brazier/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/brew.fuel/0.png b/front/public/images/small/witchery/brew.fuel/0.png deleted file mode 100644 index 7fbc67b015..0000000000 Binary files a/front/public/images/small/witchery/brew.fuel/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/brew.water/0.png b/front/public/images/small/witchery/brew.water/0.png deleted file mode 100644 index 5cb019534c..0000000000 Binary files a/front/public/images/small/witchery/brew.water/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/brew/0.png b/front/public/images/small/witchery/brew/0.png deleted file mode 100644 index 40a4b75e72..0000000000 Binary files a/front/public/images/small/witchery/brew/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/brewbag/0.png b/front/public/images/small/witchery/brewbag/0.png deleted file mode 100644 index c0c2ae13bc..0000000000 Binary files a/front/public/images/small/witchery/brewbag/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/brewbottle/0.png b/front/public/images/small/witchery/brewbottle/0.png deleted file mode 100644 index 6daf330af9..0000000000 Binary files a/front/public/images/small/witchery/brewbottle/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/brewgas/0.png b/front/public/images/small/witchery/brewgas/0.png deleted file mode 100644 index 7b0c59dee1..0000000000 Binary files a/front/public/images/small/witchery/brewgas/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/brewliquid/0.png b/front/public/images/small/witchery/brewliquid/0.png deleted file mode 100644 index 40a4b75e72..0000000000 Binary files a/front/public/images/small/witchery/brewliquid/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bucketbrew/0.png b/front/public/images/small/witchery/bucketbrew/0.png deleted file mode 100644 index 4a127cbe95..0000000000 Binary files a/front/public/images/small/witchery/bucketbrew/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/buckethollowtears/0.png b/front/public/images/small/witchery/buckethollowtears/0.png deleted file mode 100644 index 0a3f7aae78..0000000000 Binary files a/front/public/images/small/witchery/buckethollowtears/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/bucketspirit/0.png b/front/public/images/small/witchery/bucketspirit/0.png deleted file mode 100644 index 9e7621745b..0000000000 Binary files a/front/public/images/small/witchery/bucketspirit/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cactus/0.png b/front/public/images/small/witchery/cactus/0.png deleted file mode 100644 index 8a88139d87..0000000000 Binary files a/front/public/images/small/witchery/cactus/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/candelabra/0.png b/front/public/images/small/witchery/candelabra/0.png deleted file mode 100644 index ac43a7660b..0000000000 Binary files a/front/public/images/small/witchery/candelabra/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/canesword/0.png b/front/public/images/small/witchery/canesword/0.png deleted file mode 100644 index 44015a01d0..0000000000 Binary files a/front/public/images/small/witchery/canesword/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cauldron/0.png b/front/public/images/small/witchery/cauldron/0.png deleted file mode 100644 index e522489d57..0000000000 Binary files a/front/public/images/small/witchery/cauldron/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cauldronbook/0.png b/front/public/images/small/witchery/cauldronbook/0.png deleted file mode 100644 index 6b898c7dfa..0000000000 Binary files a/front/public/images/small/witchery/cauldronbook/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cbuttonstone/0.png b/front/public/images/small/witchery/cbuttonstone/0.png deleted file mode 100644 index bfeeab664b..0000000000 Binary files a/front/public/images/small/witchery/cbuttonstone/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cbuttonwood/0.png b/front/public/images/small/witchery/cbuttonwood/0.png deleted file mode 100644 index 6cac570bb2..0000000000 Binary files a/front/public/images/small/witchery/cbuttonwood/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/chalice/0.png b/front/public/images/small/witchery/chalice/0.png deleted file mode 100644 index 3f15c1a00c..0000000000 Binary files a/front/public/images/small/witchery/chalice/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/chalkheart/0.png b/front/public/images/small/witchery/chalkheart/0.png deleted file mode 100644 index 5c86d56a36..0000000000 Binary files a/front/public/images/small/witchery/chalkheart/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/chalkinfernal/0.png b/front/public/images/small/witchery/chalkinfernal/0.png deleted file mode 100644 index b5432b7894..0000000000 Binary files a/front/public/images/small/witchery/chalkinfernal/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/chalkotherwhere/0.png b/front/public/images/small/witchery/chalkotherwhere/0.png deleted file mode 100644 index e2cb646bf1..0000000000 Binary files a/front/public/images/small/witchery/chalkotherwhere/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/chalkritual/0.png b/front/public/images/small/witchery/chalkritual/0.png deleted file mode 100644 index c9b08ccdfa..0000000000 Binary files a/front/public/images/small/witchery/chalkritual/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/circle/0.png b/front/public/images/small/witchery/circle/0.png deleted file mode 100644 index bf3fc3235d..0000000000 Binary files a/front/public/images/small/witchery/circle/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/circleglyphinfernal/0.png b/front/public/images/small/witchery/circleglyphinfernal/0.png deleted file mode 100644 index 7af87dcb8e..0000000000 Binary files a/front/public/images/small/witchery/circleglyphinfernal/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/circleglyphotherwhere/0.png b/front/public/images/small/witchery/circleglyphotherwhere/0.png deleted file mode 100644 index d67885d195..0000000000 Binary files a/front/public/images/small/witchery/circleglyphotherwhere/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/circleglyphritual/0.png b/front/public/images/small/witchery/circleglyphritual/0.png deleted file mode 100644 index 6b7ae68438..0000000000 Binary files a/front/public/images/small/witchery/circleglyphritual/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/0.png b/front/public/images/small/witchery/circletalisman/0.png deleted file mode 100644 index bf42db2a16..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/1.png b/front/public/images/small/witchery/circletalisman/1.png deleted file mode 100644 index c1552e2455..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/128.png b/front/public/images/small/witchery/circletalisman/128.png deleted file mode 100644 index 9ef98cd19d..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/128.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/16.png b/front/public/images/small/witchery/circletalisman/16.png deleted file mode 100644 index 81ad3c6a03..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/16.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/192.png b/front/public/images/small/witchery/circletalisman/192.png deleted file mode 100644 index b3b096e0aa..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/192.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/2.png b/front/public/images/small/witchery/circletalisman/2.png deleted file mode 100644 index 24d0d859c2..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/24.png b/front/public/images/small/witchery/circletalisman/24.png deleted file mode 100644 index ff66de04ef..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/24.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/3.png b/front/public/images/small/witchery/circletalisman/3.png deleted file mode 100644 index 24d47680d2..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/64.png b/front/public/images/small/witchery/circletalisman/64.png deleted file mode 100644 index ec71754fc6..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/64.png and /dev/null differ diff --git a/front/public/images/small/witchery/circletalisman/8.png b/front/public/images/small/witchery/circletalisman/8.png deleted file mode 100644 index 7582c63f4e..0000000000 Binary files a/front/public/images/small/witchery/circletalisman/8.png and /dev/null differ diff --git a/front/public/images/small/witchery/clever/0.png b/front/public/images/small/witchery/clever/0.png deleted file mode 100644 index 35ea48b484..0000000000 Binary files a/front/public/images/small/witchery/clever/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/coffin/0.png b/front/public/images/small/witchery/coffin/0.png deleted file mode 100644 index e1107253d4..0000000000 Binary files a/front/public/images/small/witchery/coffin/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/coffinblock/0.png b/front/public/images/small/witchery/coffinblock/0.png deleted file mode 100644 index 77504fa809..0000000000 Binary files a/front/public/images/small/witchery/coffinblock/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/crittersnare/0.png b/front/public/images/small/witchery/crittersnare/0.png deleted file mode 100644 index 12aee8c000..0000000000 Binary files a/front/public/images/small/witchery/crittersnare/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/crystalball/0.png b/front/public/images/small/witchery/crystalball/0.png deleted file mode 100644 index 8024f36516..0000000000 Binary files a/front/public/images/small/witchery/crystalball/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/csnowpressureplate/0.png b/front/public/images/small/witchery/csnowpressureplate/0.png deleted file mode 100644 index 98cf880d1e..0000000000 Binary files a/front/public/images/small/witchery/csnowpressureplate/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cstonepressureplate/0.png b/front/public/images/small/witchery/cstonepressureplate/0.png deleted file mode 100644 index 2ea10c7320..0000000000 Binary files a/front/public/images/small/witchery/cstonepressureplate/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cwoodendoor/0.png b/front/public/images/small/witchery/cwoodendoor/0.png deleted file mode 100644 index 604937f80b..0000000000 Binary files a/front/public/images/small/witchery/cwoodendoor/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/cwoodpressureplate/0.png b/front/public/images/small/witchery/cwoodpressureplate/0.png deleted file mode 100644 index 0910584931..0000000000 Binary files a/front/public/images/small/witchery/cwoodpressureplate/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/daylightcollector/0.png b/front/public/images/small/witchery/daylightcollector/0.png deleted file mode 100644 index 8d4c06aa26..0000000000 Binary files a/front/public/images/small/witchery/daylightcollector/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/deathscowl/0.png b/front/public/images/small/witchery/deathscowl/0.png deleted file mode 100644 index 48d4de6d01..0000000000 Binary files a/front/public/images/small/witchery/deathscowl/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/deathsfeet/0.png b/front/public/images/small/witchery/deathsfeet/0.png deleted file mode 100644 index 1d6552670b..0000000000 Binary files a/front/public/images/small/witchery/deathsfeet/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/deathshand/0.png b/front/public/images/small/witchery/deathshand/0.png deleted file mode 100644 index 7ce5f59362..0000000000 Binary files a/front/public/images/small/witchery/deathshand/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/deathsrobe/0.png b/front/public/images/small/witchery/deathsrobe/0.png deleted file mode 100644 index 88ab08db34..0000000000 Binary files a/front/public/images/small/witchery/deathsrobe/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/decursedirected/0.png b/front/public/images/small/witchery/decursedirected/0.png deleted file mode 100644 index b00d460806..0000000000 Binary files a/front/public/images/small/witchery/decursedirected/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/decurseteleport/0.png b/front/public/images/small/witchery/decurseteleport/0.png deleted file mode 100644 index 31a3d687a4..0000000000 Binary files a/front/public/images/small/witchery/decurseteleport/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/demonheart/0.png b/front/public/images/small/witchery/demonheart/0.png deleted file mode 100644 index 98eed30f16..0000000000 Binary files a/front/public/images/small/witchery/demonheart/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/devilstonguecharm/0.png b/front/public/images/small/witchery/devilstonguecharm/0.png deleted file mode 100644 index 4f95de7907..0000000000 Binary files a/front/public/images/small/witchery/devilstonguecharm/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/disease/0.png b/front/public/images/small/witchery/disease/0.png deleted file mode 100644 index 4e7fd3a1a6..0000000000 Binary files a/front/public/images/small/witchery/disease/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/distilleryburning/0.png b/front/public/images/small/witchery/distilleryburning/0.png deleted file mode 100644 index d19f42c5d2..0000000000 Binary files a/front/public/images/small/witchery/distilleryburning/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/distilleryidle/0.png b/front/public/images/small/witchery/distilleryidle/0.png deleted file mode 100644 index 51b003f06e..0000000000 Binary files a/front/public/images/small/witchery/distilleryidle/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/divinerlava/0.png b/front/public/images/small/witchery/divinerlava/0.png deleted file mode 100644 index 1cfa0e57d3..0000000000 Binary files a/front/public/images/small/witchery/divinerlava/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/divinerwater/0.png b/front/public/images/small/witchery/divinerwater/0.png deleted file mode 100644 index e00c0f9f60..0000000000 Binary files a/front/public/images/small/witchery/divinerwater/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/dreamcatcher/0.png b/front/public/images/small/witchery/dreamcatcher/0.png deleted file mode 100644 index f32bb17772..0000000000 Binary files a/front/public/images/small/witchery/dreamcatcher/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/dupgrenade/0.png b/front/public/images/small/witchery/dupgrenade/0.png deleted file mode 100644 index f6c3d91a4b..0000000000 Binary files a/front/public/images/small/witchery/dupgrenade/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/dupstaff/0.png b/front/public/images/small/witchery/dupstaff/0.png deleted file mode 100644 index 58d144f99f..0000000000 Binary files a/front/public/images/small/witchery/dupstaff/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/earmuffs/0.png b/front/public/images/small/witchery/earmuffs/0.png deleted file mode 100644 index b2ed692d6f..0000000000 Binary files a/front/public/images/small/witchery/earmuffs/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/embermoss/0.png b/front/public/images/small/witchery/embermoss/0.png deleted file mode 100644 index eda9e9ad7c..0000000000 Binary files a/front/public/images/small/witchery/embermoss/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/filteredfumefunnel/0.png b/front/public/images/small/witchery/filteredfumefunnel/0.png deleted file mode 100644 index 342b56bd09..0000000000 Binary files a/front/public/images/small/witchery/filteredfumefunnel/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/force/0.png b/front/public/images/small/witchery/force/0.png deleted file mode 100644 index 753daf03f0..0000000000 Binary files a/front/public/images/small/witchery/force/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/fumefunnel/0.png b/front/public/images/small/witchery/fumefunnel/0.png deleted file mode 100644 index 342b56bd09..0000000000 Binary files a/front/public/images/small/witchery/fumefunnel/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/garlic/0.png b/front/public/images/small/witchery/garlic/0.png deleted file mode 100644 index 78fd812516..0000000000 Binary files a/front/public/images/small/witchery/garlic/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/garlicgarland/0.png b/front/public/images/small/witchery/garlicgarland/0.png deleted file mode 100644 index 2ca07b7c43..0000000000 Binary files a/front/public/images/small/witchery/garlicgarland/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/garlicplant/0.png b/front/public/images/small/witchery/garlicplant/0.png deleted file mode 100644 index ae2eeb3725..0000000000 Binary files a/front/public/images/small/witchery/garlicplant/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/glassgoblet/0.png b/front/public/images/small/witchery/glassgoblet/0.png deleted file mode 100644 index 0849a944ce..0000000000 Binary files a/front/public/images/small/witchery/glassgoblet/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/glintweed/0.png b/front/public/images/small/witchery/glintweed/0.png deleted file mode 100644 index 04fe694768..0000000000 Binary files a/front/public/images/small/witchery/glintweed/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/glowglobe/0.png b/front/public/images/small/witchery/glowglobe/0.png deleted file mode 100644 index 3ad18edbdf..0000000000 Binary files a/front/public/images/small/witchery/glowglobe/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/grassper/0.png b/front/public/images/small/witchery/grassper/0.png deleted file mode 100644 index fb7c2083ec..0000000000 Binary files a/front/public/images/small/witchery/grassper/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/gurdleofgulg/0.png b/front/public/images/small/witchery/gurdleofgulg/0.png deleted file mode 100644 index 13d590b356..0000000000 Binary files a/front/public/images/small/witchery/gurdleofgulg/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/handbow/0.png b/front/public/images/small/witchery/handbow/0.png deleted file mode 100644 index 021f352822..0000000000 Binary files a/front/public/images/small/witchery/handbow/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hollowtears/0.png b/front/public/images/small/witchery/hollowtears/0.png deleted file mode 100644 index 734f1a7ab9..0000000000 Binary files a/front/public/images/small/witchery/hollowtears/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hornofthehunt/0.png b/front/public/images/small/witchery/hornofthehunt/0.png deleted file mode 100644 index 87c2cec363..0000000000 Binary files a/front/public/images/small/witchery/hornofthehunt/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterboots/0.png b/front/public/images/small/witchery/hunterboots/0.png deleted file mode 100644 index ce2458d7b9..0000000000 Binary files a/front/public/images/small/witchery/hunterboots/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterbootsgarlicked/0.png b/front/public/images/small/witchery/hunterbootsgarlicked/0.png deleted file mode 100644 index 1ebe5e5a84..0000000000 Binary files a/front/public/images/small/witchery/hunterbootsgarlicked/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterbootssilvered/0.png b/front/public/images/small/witchery/hunterbootssilvered/0.png deleted file mode 100644 index 1ebe5e5a84..0000000000 Binary files a/front/public/images/small/witchery/hunterbootssilvered/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/huntercoat/0.png b/front/public/images/small/witchery/huntercoat/0.png deleted file mode 100644 index 2849ff7324..0000000000 Binary files a/front/public/images/small/witchery/huntercoat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/huntercoatgarlicked/0.png b/front/public/images/small/witchery/huntercoatgarlicked/0.png deleted file mode 100644 index 1119e78869..0000000000 Binary files a/front/public/images/small/witchery/huntercoatgarlicked/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/huntercoatsilvered/0.png b/front/public/images/small/witchery/huntercoatsilvered/0.png deleted file mode 100644 index 1119e78869..0000000000 Binary files a/front/public/images/small/witchery/huntercoatsilvered/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterhat/0.png b/front/public/images/small/witchery/hunterhat/0.png deleted file mode 100644 index 379dde4ff0..0000000000 Binary files a/front/public/images/small/witchery/hunterhat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterhatgarlicked/0.png b/front/public/images/small/witchery/hunterhatgarlicked/0.png deleted file mode 100644 index 2ec0c198d6..0000000000 Binary files a/front/public/images/small/witchery/hunterhatgarlicked/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterhatsilvered/0.png b/front/public/images/small/witchery/hunterhatsilvered/0.png deleted file mode 100644 index 2ec0c198d6..0000000000 Binary files a/front/public/images/small/witchery/hunterhatsilvered/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterlegs/0.png b/front/public/images/small/witchery/hunterlegs/0.png deleted file mode 100644 index f637a9a8ba..0000000000 Binary files a/front/public/images/small/witchery/hunterlegs/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterlegsgarlicked/0.png b/front/public/images/small/witchery/hunterlegsgarlicked/0.png deleted file mode 100644 index f9033211c9..0000000000 Binary files a/front/public/images/small/witchery/hunterlegsgarlicked/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/hunterlegssilvered/0.png b/front/public/images/small/witchery/hunterlegssilvered/0.png deleted file mode 100644 index f9033211c9..0000000000 Binary files a/front/public/images/small/witchery/hunterlegssilvered/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/huntsmanspear/0.png b/front/public/images/small/witchery/huntsmanspear/0.png deleted file mode 100644 index 969a52e278..0000000000 Binary files a/front/public/images/small/witchery/huntsmanspear/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/icedoor/0.png b/front/public/images/small/witchery/icedoor/0.png deleted file mode 100644 index cca648eb79..0000000000 Binary files a/front/public/images/small/witchery/icedoor/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/icedoubleslab/0.png b/front/public/images/small/witchery/icedoubleslab/0.png deleted file mode 100644 index 0d5179a891..0000000000 Binary files a/front/public/images/small/witchery/icedoubleslab/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/icefence/0.png b/front/public/images/small/witchery/icefence/0.png deleted file mode 100644 index f9321fe869..0000000000 Binary files a/front/public/images/small/witchery/icefence/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/icefencegate/0.png b/front/public/images/small/witchery/icefencegate/0.png deleted file mode 100644 index 2249af646e..0000000000 Binary files a/front/public/images/small/witchery/icefencegate/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/icepressureplate/0.png b/front/public/images/small/witchery/icepressureplate/0.png deleted file mode 100644 index 07a3c460e6..0000000000 Binary files a/front/public/images/small/witchery/icepressureplate/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/iceslab/0.png b/front/public/images/small/witchery/iceslab/0.png deleted file mode 100644 index c9d90c8391..0000000000 Binary files a/front/public/images/small/witchery/iceslab/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/iceslippers/0.png b/front/public/images/small/witchery/iceslippers/0.png deleted file mode 100644 index f7105dd39f..0000000000 Binary files a/front/public/images/small/witchery/iceslippers/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/icestairs/0.png b/front/public/images/small/witchery/icestairs/0.png deleted file mode 100644 index 262ca72eac..0000000000 Binary files a/front/public/images/small/witchery/icestairs/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/icestockade/0.png b/front/public/images/small/witchery/icestockade/0.png deleted file mode 100644 index e750abeae0..0000000000 Binary files a/front/public/images/small/witchery/icestockade/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/infinityegg/0.png b/front/public/images/small/witchery/infinityegg/0.png deleted file mode 100644 index 4e9f644dcb..0000000000 Binary files a/front/public/images/small/witchery/infinityegg/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/0.png b/front/public/images/small/witchery/ingredient/0.png deleted file mode 100644 index d4f4a1da68..0000000000 Binary files a/front/public/images/small/witchery/ingredient/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/1.png b/front/public/images/small/witchery/ingredient/1.png deleted file mode 100644 index cff4a8b41f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/10.png b/front/public/images/small/witchery/ingredient/10.png deleted file mode 100644 index 5537c2230f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/10.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/100.png b/front/public/images/small/witchery/ingredient/100.png deleted file mode 100644 index a1cf24ad49..0000000000 Binary files a/front/public/images/small/witchery/ingredient/100.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/101.png b/front/public/images/small/witchery/ingredient/101.png deleted file mode 100644 index 66a789ba18..0000000000 Binary files a/front/public/images/small/witchery/ingredient/101.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/102.png b/front/public/images/small/witchery/ingredient/102.png deleted file mode 100644 index 539a5f3011..0000000000 Binary files a/front/public/images/small/witchery/ingredient/102.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/103.png b/front/public/images/small/witchery/ingredient/103.png deleted file mode 100644 index 74171f5e1c..0000000000 Binary files a/front/public/images/small/witchery/ingredient/103.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/104.png b/front/public/images/small/witchery/ingredient/104.png deleted file mode 100644 index 0cb896c95d..0000000000 Binary files a/front/public/images/small/witchery/ingredient/104.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/105.png b/front/public/images/small/witchery/ingredient/105.png deleted file mode 100644 index 0e0977028f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/105.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/106.png b/front/public/images/small/witchery/ingredient/106.png deleted file mode 100644 index 7c2644d2c5..0000000000 Binary files a/front/public/images/small/witchery/ingredient/106.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/107.png b/front/public/images/small/witchery/ingredient/107.png deleted file mode 100644 index d3356bbe4c..0000000000 Binary files a/front/public/images/small/witchery/ingredient/107.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/108.png b/front/public/images/small/witchery/ingredient/108.png deleted file mode 100644 index 928d2a540e..0000000000 Binary files a/front/public/images/small/witchery/ingredient/108.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/109.png b/front/public/images/small/witchery/ingredient/109.png deleted file mode 100644 index fb1ea21d6f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/109.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/11.png b/front/public/images/small/witchery/ingredient/11.png deleted file mode 100644 index 85e5b920b9..0000000000 Binary files a/front/public/images/small/witchery/ingredient/11.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/110.png b/front/public/images/small/witchery/ingredient/110.png deleted file mode 100644 index ddc95266ea..0000000000 Binary files a/front/public/images/small/witchery/ingredient/110.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/111.png b/front/public/images/small/witchery/ingredient/111.png deleted file mode 100644 index e5c4e88b84..0000000000 Binary files a/front/public/images/small/witchery/ingredient/111.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/112.png b/front/public/images/small/witchery/ingredient/112.png deleted file mode 100644 index ac704e807b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/112.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/113.png b/front/public/images/small/witchery/ingredient/113.png deleted file mode 100644 index c604186065..0000000000 Binary files a/front/public/images/small/witchery/ingredient/113.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/114.png b/front/public/images/small/witchery/ingredient/114.png deleted file mode 100644 index 1ccf076a78..0000000000 Binary files a/front/public/images/small/witchery/ingredient/114.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/115.png b/front/public/images/small/witchery/ingredient/115.png deleted file mode 100644 index d745e34691..0000000000 Binary files a/front/public/images/small/witchery/ingredient/115.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/116.png b/front/public/images/small/witchery/ingredient/116.png deleted file mode 100644 index e50a4e45cf..0000000000 Binary files a/front/public/images/small/witchery/ingredient/116.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/117.png b/front/public/images/small/witchery/ingredient/117.png deleted file mode 100644 index a08a6ceaab..0000000000 Binary files a/front/public/images/small/witchery/ingredient/117.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/118.png b/front/public/images/small/witchery/ingredient/118.png deleted file mode 100644 index c522f75312..0000000000 Binary files a/front/public/images/small/witchery/ingredient/118.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/119.png b/front/public/images/small/witchery/ingredient/119.png deleted file mode 100644 index b8f7031116..0000000000 Binary files a/front/public/images/small/witchery/ingredient/119.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/12.png b/front/public/images/small/witchery/ingredient/12.png deleted file mode 100644 index 6b495cc983..0000000000 Binary files a/front/public/images/small/witchery/ingredient/12.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/120.png b/front/public/images/small/witchery/ingredient/120.png deleted file mode 100644 index b0178ebd0e..0000000000 Binary files a/front/public/images/small/witchery/ingredient/120.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/121.png b/front/public/images/small/witchery/ingredient/121.png deleted file mode 100644 index 6d253aa9f5..0000000000 Binary files a/front/public/images/small/witchery/ingredient/121.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/122.png b/front/public/images/small/witchery/ingredient/122.png deleted file mode 100644 index 4d943f8ebf..0000000000 Binary files a/front/public/images/small/witchery/ingredient/122.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/123.png b/front/public/images/small/witchery/ingredient/123.png deleted file mode 100644 index 92cfa1bfa1..0000000000 Binary files a/front/public/images/small/witchery/ingredient/123.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/124.png b/front/public/images/small/witchery/ingredient/124.png deleted file mode 100644 index db26a91c6a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/124.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/125.png b/front/public/images/small/witchery/ingredient/125.png deleted file mode 100644 index 924da3f9e8..0000000000 Binary files a/front/public/images/small/witchery/ingredient/125.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/126.png b/front/public/images/small/witchery/ingredient/126.png deleted file mode 100644 index c978ba63e3..0000000000 Binary files a/front/public/images/small/witchery/ingredient/126.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/127.png b/front/public/images/small/witchery/ingredient/127.png deleted file mode 100644 index 870736f6bb..0000000000 Binary files a/front/public/images/small/witchery/ingredient/127.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/128.png b/front/public/images/small/witchery/ingredient/128.png deleted file mode 100644 index b7ee5ee6b9..0000000000 Binary files a/front/public/images/small/witchery/ingredient/128.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/129.png b/front/public/images/small/witchery/ingredient/129.png deleted file mode 100644 index 6a2a39a23e..0000000000 Binary files a/front/public/images/small/witchery/ingredient/129.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/130.png b/front/public/images/small/witchery/ingredient/130.png deleted file mode 100644 index 1ba02ea771..0000000000 Binary files a/front/public/images/small/witchery/ingredient/130.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/131.png b/front/public/images/small/witchery/ingredient/131.png deleted file mode 100644 index c8bb7563b3..0000000000 Binary files a/front/public/images/small/witchery/ingredient/131.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/132.png b/front/public/images/small/witchery/ingredient/132.png deleted file mode 100644 index 86011b7b8a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/132.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/133.png b/front/public/images/small/witchery/ingredient/133.png deleted file mode 100644 index 0df11f3f95..0000000000 Binary files a/front/public/images/small/witchery/ingredient/133.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/134.png b/front/public/images/small/witchery/ingredient/134.png deleted file mode 100644 index a32f3b48e6..0000000000 Binary files a/front/public/images/small/witchery/ingredient/134.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/135.png b/front/public/images/small/witchery/ingredient/135.png deleted file mode 100644 index ad08448280..0000000000 Binary files a/front/public/images/small/witchery/ingredient/135.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/136.png b/front/public/images/small/witchery/ingredient/136.png deleted file mode 100644 index 7462ca9eb2..0000000000 Binary files a/front/public/images/small/witchery/ingredient/136.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/137.png b/front/public/images/small/witchery/ingredient/137.png deleted file mode 100644 index c93e392413..0000000000 Binary files a/front/public/images/small/witchery/ingredient/137.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/138.png b/front/public/images/small/witchery/ingredient/138.png deleted file mode 100644 index 7a3f89b859..0000000000 Binary files a/front/public/images/small/witchery/ingredient/138.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/139.png b/front/public/images/small/witchery/ingredient/139.png deleted file mode 100644 index c5f04ea6d4..0000000000 Binary files a/front/public/images/small/witchery/ingredient/139.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/14.png b/front/public/images/small/witchery/ingredient/14.png deleted file mode 100644 index 60c69bdeca..0000000000 Binary files a/front/public/images/small/witchery/ingredient/14.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/140.png b/front/public/images/small/witchery/ingredient/140.png deleted file mode 100644 index 70ead48fe2..0000000000 Binary files a/front/public/images/small/witchery/ingredient/140.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/141.png b/front/public/images/small/witchery/ingredient/141.png deleted file mode 100644 index 72cd5997f0..0000000000 Binary files a/front/public/images/small/witchery/ingredient/141.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/142.png b/front/public/images/small/witchery/ingredient/142.png deleted file mode 100644 index 3ed35bf907..0000000000 Binary files a/front/public/images/small/witchery/ingredient/142.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/143.png b/front/public/images/small/witchery/ingredient/143.png deleted file mode 100644 index a6d4da7781..0000000000 Binary files a/front/public/images/small/witchery/ingredient/143.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/144.png b/front/public/images/small/witchery/ingredient/144.png deleted file mode 100644 index 866f895b35..0000000000 Binary files a/front/public/images/small/witchery/ingredient/144.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/145.png b/front/public/images/small/witchery/ingredient/145.png deleted file mode 100644 index 07c54df790..0000000000 Binary files a/front/public/images/small/witchery/ingredient/145.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/146.png b/front/public/images/small/witchery/ingredient/146.png deleted file mode 100644 index c293051e8b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/146.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/148.png b/front/public/images/small/witchery/ingredient/148.png deleted file mode 100644 index 4ee7aff176..0000000000 Binary files a/front/public/images/small/witchery/ingredient/148.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/149.png b/front/public/images/small/witchery/ingredient/149.png deleted file mode 100644 index efc0727ff1..0000000000 Binary files a/front/public/images/small/witchery/ingredient/149.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/15.png b/front/public/images/small/witchery/ingredient/15.png deleted file mode 100644 index 3907dea36f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/15.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/150.png b/front/public/images/small/witchery/ingredient/150.png deleted file mode 100644 index fb9c902afb..0000000000 Binary files a/front/public/images/small/witchery/ingredient/150.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/151.png b/front/public/images/small/witchery/ingredient/151.png deleted file mode 100644 index 9310aa9e51..0000000000 Binary files a/front/public/images/small/witchery/ingredient/151.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/152.png b/front/public/images/small/witchery/ingredient/152.png deleted file mode 100644 index 5cd398fdd8..0000000000 Binary files a/front/public/images/small/witchery/ingredient/152.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/153.png b/front/public/images/small/witchery/ingredient/153.png deleted file mode 100644 index dc5e1c24b6..0000000000 Binary files a/front/public/images/small/witchery/ingredient/153.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/154.png b/front/public/images/small/witchery/ingredient/154.png deleted file mode 100644 index cecb911fc6..0000000000 Binary files a/front/public/images/small/witchery/ingredient/154.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/155.png b/front/public/images/small/witchery/ingredient/155.png deleted file mode 100644 index 346209143b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/155.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/156.png b/front/public/images/small/witchery/ingredient/156.png deleted file mode 100644 index 642fcadfdd..0000000000 Binary files a/front/public/images/small/witchery/ingredient/156.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/157.png b/front/public/images/small/witchery/ingredient/157.png deleted file mode 100644 index 1ffb3c0e45..0000000000 Binary files a/front/public/images/small/witchery/ingredient/157.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/158.png b/front/public/images/small/witchery/ingredient/158.png deleted file mode 100644 index 3331c8e61b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/158.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/159.png b/front/public/images/small/witchery/ingredient/159.png deleted file mode 100644 index 5f9571cef9..0000000000 Binary files a/front/public/images/small/witchery/ingredient/159.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/16.png b/front/public/images/small/witchery/ingredient/16.png deleted file mode 100644 index 7a4feef652..0000000000 Binary files a/front/public/images/small/witchery/ingredient/16.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/160.png b/front/public/images/small/witchery/ingredient/160.png deleted file mode 100644 index 36bd27a586..0000000000 Binary files a/front/public/images/small/witchery/ingredient/160.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/161.png b/front/public/images/small/witchery/ingredient/161.png deleted file mode 100644 index ad42dc1f99..0000000000 Binary files a/front/public/images/small/witchery/ingredient/161.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/162.png b/front/public/images/small/witchery/ingredient/162.png deleted file mode 100644 index b7d862221b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/162.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/163.png b/front/public/images/small/witchery/ingredient/163.png deleted file mode 100644 index 7d7a9dff73..0000000000 Binary files a/front/public/images/small/witchery/ingredient/163.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/164.png b/front/public/images/small/witchery/ingredient/164.png deleted file mode 100644 index fe27719e68..0000000000 Binary files a/front/public/images/small/witchery/ingredient/164.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/165.png b/front/public/images/small/witchery/ingredient/165.png deleted file mode 100644 index 0968e96d11..0000000000 Binary files a/front/public/images/small/witchery/ingredient/165.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/17.png b/front/public/images/small/witchery/ingredient/17.png deleted file mode 100644 index 4e759ec147..0000000000 Binary files a/front/public/images/small/witchery/ingredient/17.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/18.png b/front/public/images/small/witchery/ingredient/18.png deleted file mode 100644 index 2427b9a929..0000000000 Binary files a/front/public/images/small/witchery/ingredient/18.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/2.png b/front/public/images/small/witchery/ingredient/2.png deleted file mode 100644 index b938ef3059..0000000000 Binary files a/front/public/images/small/witchery/ingredient/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/21.png b/front/public/images/small/witchery/ingredient/21.png deleted file mode 100644 index 21e8af0227..0000000000 Binary files a/front/public/images/small/witchery/ingredient/21.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/22.png b/front/public/images/small/witchery/ingredient/22.png deleted file mode 100644 index 56284912e8..0000000000 Binary files a/front/public/images/small/witchery/ingredient/22.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/23.png b/front/public/images/small/witchery/ingredient/23.png deleted file mode 100644 index e17a277080..0000000000 Binary files a/front/public/images/small/witchery/ingredient/23.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/24.png b/front/public/images/small/witchery/ingredient/24.png deleted file mode 100644 index 8b224e7f35..0000000000 Binary files a/front/public/images/small/witchery/ingredient/24.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/25.png b/front/public/images/small/witchery/ingredient/25.png deleted file mode 100644 index 6f4770bc43..0000000000 Binary files a/front/public/images/small/witchery/ingredient/25.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/26.png b/front/public/images/small/witchery/ingredient/26.png deleted file mode 100644 index 14aa21e3d2..0000000000 Binary files a/front/public/images/small/witchery/ingredient/26.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/27.png b/front/public/images/small/witchery/ingredient/27.png deleted file mode 100644 index eafba90fa1..0000000000 Binary files a/front/public/images/small/witchery/ingredient/27.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/28.png b/front/public/images/small/witchery/ingredient/28.png deleted file mode 100644 index a700b1729e..0000000000 Binary files a/front/public/images/small/witchery/ingredient/28.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/29.png b/front/public/images/small/witchery/ingredient/29.png deleted file mode 100644 index 0d9795b347..0000000000 Binary files a/front/public/images/small/witchery/ingredient/29.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/3.png b/front/public/images/small/witchery/ingredient/3.png deleted file mode 100644 index 7f24e58cc4..0000000000 Binary files a/front/public/images/small/witchery/ingredient/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/30.png b/front/public/images/small/witchery/ingredient/30.png deleted file mode 100644 index 13b5cea98f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/30.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/31.png b/front/public/images/small/witchery/ingredient/31.png deleted file mode 100644 index 23b8c7ee30..0000000000 Binary files a/front/public/images/small/witchery/ingredient/31.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/32.png b/front/public/images/small/witchery/ingredient/32.png deleted file mode 100644 index aa00509a18..0000000000 Binary files a/front/public/images/small/witchery/ingredient/32.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/33.png b/front/public/images/small/witchery/ingredient/33.png deleted file mode 100644 index 55e6bb7161..0000000000 Binary files a/front/public/images/small/witchery/ingredient/33.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/34.png b/front/public/images/small/witchery/ingredient/34.png deleted file mode 100644 index e5aa236f6b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/34.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/35.png b/front/public/images/small/witchery/ingredient/35.png deleted file mode 100644 index ad7e55bda3..0000000000 Binary files a/front/public/images/small/witchery/ingredient/35.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/36.png b/front/public/images/small/witchery/ingredient/36.png deleted file mode 100644 index e91ee1ecc4..0000000000 Binary files a/front/public/images/small/witchery/ingredient/36.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/37.png b/front/public/images/small/witchery/ingredient/37.png deleted file mode 100644 index 5bd14853fd..0000000000 Binary files a/front/public/images/small/witchery/ingredient/37.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/38.png b/front/public/images/small/witchery/ingredient/38.png deleted file mode 100644 index 5ac5fd610c..0000000000 Binary files a/front/public/images/small/witchery/ingredient/38.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/39.png b/front/public/images/small/witchery/ingredient/39.png deleted file mode 100644 index 34db3ad51a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/39.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/4.png b/front/public/images/small/witchery/ingredient/4.png deleted file mode 100644 index 937893da60..0000000000 Binary files a/front/public/images/small/witchery/ingredient/4.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/40.png b/front/public/images/small/witchery/ingredient/40.png deleted file mode 100644 index ac58e3a4c8..0000000000 Binary files a/front/public/images/small/witchery/ingredient/40.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/41.png b/front/public/images/small/witchery/ingredient/41.png deleted file mode 100644 index 4ff56862f0..0000000000 Binary files a/front/public/images/small/witchery/ingredient/41.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/42.png b/front/public/images/small/witchery/ingredient/42.png deleted file mode 100644 index 7bc30e1fc1..0000000000 Binary files a/front/public/images/small/witchery/ingredient/42.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/43.png b/front/public/images/small/witchery/ingredient/43.png deleted file mode 100644 index 0c455f7c4a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/43.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/44.png b/front/public/images/small/witchery/ingredient/44.png deleted file mode 100644 index 1b2cbd9623..0000000000 Binary files a/front/public/images/small/witchery/ingredient/44.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/45.png b/front/public/images/small/witchery/ingredient/45.png deleted file mode 100644 index 8dba8cb34a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/45.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/46.png b/front/public/images/small/witchery/ingredient/46.png deleted file mode 100644 index 1199a4d5b7..0000000000 Binary files a/front/public/images/small/witchery/ingredient/46.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/47.png b/front/public/images/small/witchery/ingredient/47.png deleted file mode 100644 index 97bd37ca55..0000000000 Binary files a/front/public/images/small/witchery/ingredient/47.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/48.png b/front/public/images/small/witchery/ingredient/48.png deleted file mode 100644 index 750555b335..0000000000 Binary files a/front/public/images/small/witchery/ingredient/48.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/49.png b/front/public/images/small/witchery/ingredient/49.png deleted file mode 100644 index b6120ee0ed..0000000000 Binary files a/front/public/images/small/witchery/ingredient/49.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/5.png b/front/public/images/small/witchery/ingredient/5.png deleted file mode 100644 index 6a94f24c3a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/5.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/50.png b/front/public/images/small/witchery/ingredient/50.png deleted file mode 100644 index 36c8795270..0000000000 Binary files a/front/public/images/small/witchery/ingredient/50.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/51.png b/front/public/images/small/witchery/ingredient/51.png deleted file mode 100644 index ef52dfecea..0000000000 Binary files a/front/public/images/small/witchery/ingredient/51.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/52.png b/front/public/images/small/witchery/ingredient/52.png deleted file mode 100644 index 03ce997ec0..0000000000 Binary files a/front/public/images/small/witchery/ingredient/52.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/53.png b/front/public/images/small/witchery/ingredient/53.png deleted file mode 100644 index 77404e92cd..0000000000 Binary files a/front/public/images/small/witchery/ingredient/53.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/54.png b/front/public/images/small/witchery/ingredient/54.png deleted file mode 100644 index c7bfe309c0..0000000000 Binary files a/front/public/images/small/witchery/ingredient/54.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/55.png b/front/public/images/small/witchery/ingredient/55.png deleted file mode 100644 index 9fcd7f799f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/55.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/56.png b/front/public/images/small/witchery/ingredient/56.png deleted file mode 100644 index 6f330f555c..0000000000 Binary files a/front/public/images/small/witchery/ingredient/56.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/57.png b/front/public/images/small/witchery/ingredient/57.png deleted file mode 100644 index 3bd06204d3..0000000000 Binary files a/front/public/images/small/witchery/ingredient/57.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/58.png b/front/public/images/small/witchery/ingredient/58.png deleted file mode 100644 index e1f5603e80..0000000000 Binary files a/front/public/images/small/witchery/ingredient/58.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/59.png b/front/public/images/small/witchery/ingredient/59.png deleted file mode 100644 index 31410b7c15..0000000000 Binary files a/front/public/images/small/witchery/ingredient/59.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/6.png b/front/public/images/small/witchery/ingredient/6.png deleted file mode 100644 index 22c543d90b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/6.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/60.png b/front/public/images/small/witchery/ingredient/60.png deleted file mode 100644 index 4b4ab31488..0000000000 Binary files a/front/public/images/small/witchery/ingredient/60.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/61.png b/front/public/images/small/witchery/ingredient/61.png deleted file mode 100644 index b6b3e8a932..0000000000 Binary files a/front/public/images/small/witchery/ingredient/61.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/62.png b/front/public/images/small/witchery/ingredient/62.png deleted file mode 100644 index 4a499aaa5b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/62.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/63.png b/front/public/images/small/witchery/ingredient/63.png deleted file mode 100644 index 5c14a00416..0000000000 Binary files a/front/public/images/small/witchery/ingredient/63.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/64.png b/front/public/images/small/witchery/ingredient/64.png deleted file mode 100644 index 2bd7120163..0000000000 Binary files a/front/public/images/small/witchery/ingredient/64.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/65.png b/front/public/images/small/witchery/ingredient/65.png deleted file mode 100644 index fd533b8601..0000000000 Binary files a/front/public/images/small/witchery/ingredient/65.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/66.png b/front/public/images/small/witchery/ingredient/66.png deleted file mode 100644 index 6a3eb4f7aa..0000000000 Binary files a/front/public/images/small/witchery/ingredient/66.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/67.png b/front/public/images/small/witchery/ingredient/67.png deleted file mode 100644 index fef881f676..0000000000 Binary files a/front/public/images/small/witchery/ingredient/67.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/69.png b/front/public/images/small/witchery/ingredient/69.png deleted file mode 100644 index a68c955dc2..0000000000 Binary files a/front/public/images/small/witchery/ingredient/69.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/7.png b/front/public/images/small/witchery/ingredient/7.png deleted file mode 100644 index a745999d78..0000000000 Binary files a/front/public/images/small/witchery/ingredient/7.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/70.png b/front/public/images/small/witchery/ingredient/70.png deleted file mode 100644 index 607929d45f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/70.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/71.png b/front/public/images/small/witchery/ingredient/71.png deleted file mode 100644 index a115d4dc20..0000000000 Binary files a/front/public/images/small/witchery/ingredient/71.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/72.png b/front/public/images/small/witchery/ingredient/72.png deleted file mode 100644 index d118cdae4b..0000000000 Binary files a/front/public/images/small/witchery/ingredient/72.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/73.png b/front/public/images/small/witchery/ingredient/73.png deleted file mode 100644 index 83be002762..0000000000 Binary files a/front/public/images/small/witchery/ingredient/73.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/74.png b/front/public/images/small/witchery/ingredient/74.png deleted file mode 100644 index 68bae79cac..0000000000 Binary files a/front/public/images/small/witchery/ingredient/74.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/75.png b/front/public/images/small/witchery/ingredient/75.png deleted file mode 100644 index 78bd394d6f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/75.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/76.png b/front/public/images/small/witchery/ingredient/76.png deleted file mode 100644 index 85784197f9..0000000000 Binary files a/front/public/images/small/witchery/ingredient/76.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/77.png b/front/public/images/small/witchery/ingredient/77.png deleted file mode 100644 index c8ec88fe45..0000000000 Binary files a/front/public/images/small/witchery/ingredient/77.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/78.png b/front/public/images/small/witchery/ingredient/78.png deleted file mode 100644 index c627680062..0000000000 Binary files a/front/public/images/small/witchery/ingredient/78.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/79.png b/front/public/images/small/witchery/ingredient/79.png deleted file mode 100644 index 06eeccf336..0000000000 Binary files a/front/public/images/small/witchery/ingredient/79.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/8.png b/front/public/images/small/witchery/ingredient/8.png deleted file mode 100644 index a4ec2ce26c..0000000000 Binary files a/front/public/images/small/witchery/ingredient/8.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/80.png b/front/public/images/small/witchery/ingredient/80.png deleted file mode 100644 index 904eede820..0000000000 Binary files a/front/public/images/small/witchery/ingredient/80.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/81.png b/front/public/images/small/witchery/ingredient/81.png deleted file mode 100644 index b2a29163d1..0000000000 Binary files a/front/public/images/small/witchery/ingredient/81.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/82.png b/front/public/images/small/witchery/ingredient/82.png deleted file mode 100644 index a97639e2a6..0000000000 Binary files a/front/public/images/small/witchery/ingredient/82.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/83.png b/front/public/images/small/witchery/ingredient/83.png deleted file mode 100644 index 45ebb0a187..0000000000 Binary files a/front/public/images/small/witchery/ingredient/83.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/84.png b/front/public/images/small/witchery/ingredient/84.png deleted file mode 100644 index f66898642a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/84.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/85.png b/front/public/images/small/witchery/ingredient/85.png deleted file mode 100644 index 509163dd25..0000000000 Binary files a/front/public/images/small/witchery/ingredient/85.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/86.png b/front/public/images/small/witchery/ingredient/86.png deleted file mode 100644 index 23b2126d96..0000000000 Binary files a/front/public/images/small/witchery/ingredient/86.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/87.png b/front/public/images/small/witchery/ingredient/87.png deleted file mode 100644 index ac83a53a31..0000000000 Binary files a/front/public/images/small/witchery/ingredient/87.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/88.png b/front/public/images/small/witchery/ingredient/88.png deleted file mode 100644 index 9286ff944d..0000000000 Binary files a/front/public/images/small/witchery/ingredient/88.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/89.png b/front/public/images/small/witchery/ingredient/89.png deleted file mode 100644 index 16b4a305d7..0000000000 Binary files a/front/public/images/small/witchery/ingredient/89.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/9.png b/front/public/images/small/witchery/ingredient/9.png deleted file mode 100644 index e8fa4cb810..0000000000 Binary files a/front/public/images/small/witchery/ingredient/9.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/90.png b/front/public/images/small/witchery/ingredient/90.png deleted file mode 100644 index 5cb1555b06..0000000000 Binary files a/front/public/images/small/witchery/ingredient/90.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/91.png b/front/public/images/small/witchery/ingredient/91.png deleted file mode 100644 index 49aaa5f93a..0000000000 Binary files a/front/public/images/small/witchery/ingredient/91.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/92.png b/front/public/images/small/witchery/ingredient/92.png deleted file mode 100644 index dba3a0e8df..0000000000 Binary files a/front/public/images/small/witchery/ingredient/92.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/93.png b/front/public/images/small/witchery/ingredient/93.png deleted file mode 100644 index 77114b9c40..0000000000 Binary files a/front/public/images/small/witchery/ingredient/93.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/94.png b/front/public/images/small/witchery/ingredient/94.png deleted file mode 100644 index ffb23fa19f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/94.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/95.png b/front/public/images/small/witchery/ingredient/95.png deleted file mode 100644 index 1ac56e500f..0000000000 Binary files a/front/public/images/small/witchery/ingredient/95.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/96.png b/front/public/images/small/witchery/ingredient/96.png deleted file mode 100644 index 4d13874993..0000000000 Binary files a/front/public/images/small/witchery/ingredient/96.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/97.png b/front/public/images/small/witchery/ingredient/97.png deleted file mode 100644 index a281f79178..0000000000 Binary files a/front/public/images/small/witchery/ingredient/97.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/98.png b/front/public/images/small/witchery/ingredient/98.png deleted file mode 100644 index f31bc14722..0000000000 Binary files a/front/public/images/small/witchery/ingredient/98.png and /dev/null differ diff --git a/front/public/images/small/witchery/ingredient/99.png b/front/public/images/small/witchery/ingredient/99.png deleted file mode 100644 index 63d2588fdc..0000000000 Binary files a/front/public/images/small/witchery/ingredient/99.png and /dev/null differ diff --git a/front/public/images/small/witchery/kettle/0.png b/front/public/images/small/witchery/kettle/0.png deleted file mode 100644 index d055ed2e06..0000000000 Binary files a/front/public/images/small/witchery/kettle/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/kobolditehelm/0.png b/front/public/images/small/witchery/kobolditehelm/0.png deleted file mode 100644 index 2696bc56f1..0000000000 Binary files a/front/public/images/small/witchery/kobolditehelm/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/kobolditepickaxe/0.png b/front/public/images/small/witchery/kobolditepickaxe/0.png deleted file mode 100644 index 04206fc7f7..0000000000 Binary files a/front/public/images/small/witchery/kobolditepickaxe/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/leapinglily/0.png b/front/public/images/small/witchery/leapinglily/0.png deleted file mode 100644 index 098e02c1a0..0000000000 Binary files a/front/public/images/small/witchery/leapinglily/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/leechchest/0.png b/front/public/images/small/witchery/leechchest/0.png deleted file mode 100644 index e38209d196..0000000000 Binary files a/front/public/images/small/witchery/leechchest/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/leonardsurn/0.png b/front/public/images/small/witchery/leonardsurn/0.png deleted file mode 100644 index f26f298aa6..0000000000 Binary files a/front/public/images/small/witchery/leonardsurn/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/leonardsurn/1.png b/front/public/images/small/witchery/leonardsurn/1.png deleted file mode 100644 index f0947598a2..0000000000 Binary files a/front/public/images/small/witchery/leonardsurn/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/leonardsurn/2.png b/front/public/images/small/witchery/leonardsurn/2.png deleted file mode 100644 index 182e8a2d2c..0000000000 Binary files a/front/public/images/small/witchery/leonardsurn/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/leonardsurn/3.png b/front/public/images/small/witchery/leonardsurn/3.png deleted file mode 100644 index ba42b6719c..0000000000 Binary files a/front/public/images/small/witchery/leonardsurn/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/light/0.png b/front/public/images/small/witchery/light/0.png deleted file mode 100644 index e2fe8e0e6e..0000000000 Binary files a/front/public/images/small/witchery/light/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/lilypad/0.png b/front/public/images/small/witchery/lilypad/0.png deleted file mode 100644 index 2c945cc8cb..0000000000 Binary files a/front/public/images/small/witchery/lilypad/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/louse/0.png b/front/public/images/small/witchery/louse/0.png deleted file mode 100644 index 361bc0e045..0000000000 Binary files a/front/public/images/small/witchery/louse/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mandrake/0.png b/front/public/images/small/witchery/mandrake/0.png deleted file mode 100644 index c9020bfd52..0000000000 Binary files a/front/public/images/small/witchery/mandrake/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mindrake/0.png b/front/public/images/small/witchery/mindrake/0.png deleted file mode 100644 index c408a2fc6a..0000000000 Binary files a/front/public/images/small/witchery/mindrake/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mirror/0.png b/front/public/images/small/witchery/mirror/0.png deleted file mode 100644 index 3fe9470735..0000000000 Binary files a/front/public/images/small/witchery/mirror/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mirrorblock/0.png b/front/public/images/small/witchery/mirrorblock/0.png deleted file mode 100644 index 77c4c374d5..0000000000 Binary files a/front/public/images/small/witchery/mirrorblock/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mirrorblock2/0.png b/front/public/images/small/witchery/mirrorblock2/0.png deleted file mode 100644 index 77c4c374d5..0000000000 Binary files a/front/public/images/small/witchery/mirrorblock2/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mirrorwall/0.png b/front/public/images/small/witchery/mirrorwall/0.png deleted file mode 100644 index 72d5e0462c..0000000000 Binary files a/front/public/images/small/witchery/mirrorwall/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mooncharm/0.png b/front/public/images/small/witchery/mooncharm/0.png deleted file mode 100644 index 4807b1a9fb..0000000000 Binary files a/front/public/images/small/witchery/mooncharm/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mutator/0.png b/front/public/images/small/witchery/mutator/0.png deleted file mode 100644 index 4a6836eee4..0000000000 Binary files a/front/public/images/small/witchery/mutator/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/mysticbranch/0.png b/front/public/images/small/witchery/mysticbranch/0.png deleted file mode 100644 index a97639e2a6..0000000000 Binary files a/front/public/images/small/witchery/mysticbranch/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/necromancerrobe/0.png b/front/public/images/small/witchery/necromancerrobe/0.png deleted file mode 100644 index 22e14fdd8f..0000000000 Binary files a/front/public/images/small/witchery/necromancerrobe/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/perpetualice/0.png b/front/public/images/small/witchery/perpetualice/0.png deleted file mode 100644 index 0d5179a891..0000000000 Binary files a/front/public/images/small/witchery/perpetualice/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/pitdirt/0.png b/front/public/images/small/witchery/pitdirt/0.png deleted file mode 100644 index 1090df9d16..0000000000 Binary files a/front/public/images/small/witchery/pitdirt/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/pitgrass/0.png b/front/public/images/small/witchery/pitgrass/0.png deleted file mode 100644 index 14682dd488..0000000000 Binary files a/front/public/images/small/witchery/pitgrass/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/placeditem/0.png b/front/public/images/small/witchery/placeditem/0.png deleted file mode 100644 index a71db748ef..0000000000 Binary files a/front/public/images/small/witchery/placeditem/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/0.png b/front/public/images/small/witchery/plantmine/0.png deleted file mode 100644 index d20716354a..0000000000 Binary files a/front/public/images/small/witchery/plantmine/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/1.png b/front/public/images/small/witchery/plantmine/1.png deleted file mode 100644 index d20716354a..0000000000 Binary files a/front/public/images/small/witchery/plantmine/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/10.png b/front/public/images/small/witchery/plantmine/10.png deleted file mode 100644 index 0f014bbd50..0000000000 Binary files a/front/public/images/small/witchery/plantmine/10.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/11.png b/front/public/images/small/witchery/plantmine/11.png deleted file mode 100644 index 0f014bbd50..0000000000 Binary files a/front/public/images/small/witchery/plantmine/11.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/2.png b/front/public/images/small/witchery/plantmine/2.png deleted file mode 100644 index d20716354a..0000000000 Binary files a/front/public/images/small/witchery/plantmine/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/3.png b/front/public/images/small/witchery/plantmine/3.png deleted file mode 100644 index d20716354a..0000000000 Binary files a/front/public/images/small/witchery/plantmine/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/4.png b/front/public/images/small/witchery/plantmine/4.png deleted file mode 100644 index 9cdf7c5f77..0000000000 Binary files a/front/public/images/small/witchery/plantmine/4.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/5.png b/front/public/images/small/witchery/plantmine/5.png deleted file mode 100644 index 9cdf7c5f77..0000000000 Binary files a/front/public/images/small/witchery/plantmine/5.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/6.png b/front/public/images/small/witchery/plantmine/6.png deleted file mode 100644 index 9cdf7c5f77..0000000000 Binary files a/front/public/images/small/witchery/plantmine/6.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/7.png b/front/public/images/small/witchery/plantmine/7.png deleted file mode 100644 index 9cdf7c5f77..0000000000 Binary files a/front/public/images/small/witchery/plantmine/7.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/8.png b/front/public/images/small/witchery/plantmine/8.png deleted file mode 100644 index 0f014bbd50..0000000000 Binary files a/front/public/images/small/witchery/plantmine/8.png and /dev/null differ diff --git a/front/public/images/small/witchery/plantmine/9.png b/front/public/images/small/witchery/plantmine/9.png deleted file mode 100644 index 0f014bbd50..0000000000 Binary files a/front/public/images/small/witchery/plantmine/9.png and /dev/null differ diff --git a/front/public/images/small/witchery/playercompass/0.png b/front/public/images/small/witchery/playercompass/0.png deleted file mode 100644 index 63b8797705..0000000000 Binary files a/front/public/images/small/witchery/playercompass/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/polynesiacharm/0.png b/front/public/images/small/witchery/polynesiacharm/0.png deleted file mode 100644 index 3d2dba89fb..0000000000 Binary files a/front/public/images/small/witchery/polynesiacharm/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/0.png b/front/public/images/small/witchery/poppet/0.png deleted file mode 100644 index 352a128a2d..0000000000 Binary files a/front/public/images/small/witchery/poppet/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/1.png b/front/public/images/small/witchery/poppet/1.png deleted file mode 100644 index 7994b93ff1..0000000000 Binary files a/front/public/images/small/witchery/poppet/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/10.png b/front/public/images/small/witchery/poppet/10.png deleted file mode 100644 index 2613774be9..0000000000 Binary files a/front/public/images/small/witchery/poppet/10.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/11.png b/front/public/images/small/witchery/poppet/11.png deleted file mode 100644 index 39efbb4d89..0000000000 Binary files a/front/public/images/small/witchery/poppet/11.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/2.png b/front/public/images/small/witchery/poppet/2.png deleted file mode 100644 index 9ea59f1f7f..0000000000 Binary files a/front/public/images/small/witchery/poppet/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/3.png b/front/public/images/small/witchery/poppet/3.png deleted file mode 100644 index 1da1d040a5..0000000000 Binary files a/front/public/images/small/witchery/poppet/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/4.png b/front/public/images/small/witchery/poppet/4.png deleted file mode 100644 index 15def86b99..0000000000 Binary files a/front/public/images/small/witchery/poppet/4.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/5.png b/front/public/images/small/witchery/poppet/5.png deleted file mode 100644 index cec6b3f64c..0000000000 Binary files a/front/public/images/small/witchery/poppet/5.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/6.png b/front/public/images/small/witchery/poppet/6.png deleted file mode 100644 index cff0d063d3..0000000000 Binary files a/front/public/images/small/witchery/poppet/6.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/7.png b/front/public/images/small/witchery/poppet/7.png deleted file mode 100644 index b8574b9fd8..0000000000 Binary files a/front/public/images/small/witchery/poppet/7.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/8.png b/front/public/images/small/witchery/poppet/8.png deleted file mode 100644 index b760db1b53..0000000000 Binary files a/front/public/images/small/witchery/poppet/8.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppet/9.png b/front/public/images/small/witchery/poppet/9.png deleted file mode 100644 index 46fac8b264..0000000000 Binary files a/front/public/images/small/witchery/poppet/9.png and /dev/null differ diff --git a/front/public/images/small/witchery/poppetshelf/0.png b/front/public/images/small/witchery/poppetshelf/0.png deleted file mode 100644 index 44def3bccb..0000000000 Binary files a/front/public/images/small/witchery/poppetshelf/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/potion/0.png b/front/public/images/small/witchery/potion/0.png deleted file mode 100644 index 131cfe4b91..0000000000 Binary files a/front/public/images/small/witchery/potion/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/quiverofmog/0.png b/front/public/images/small/witchery/quiverofmog/0.png deleted file mode 100644 index 584a7d46bf..0000000000 Binary files a/front/public/images/small/witchery/quiverofmog/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/refillingchest/0.png b/front/public/images/small/witchery/refillingchest/0.png deleted file mode 100644 index f018215d97..0000000000 Binary files a/front/public/images/small/witchery/refillingchest/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/rowanwooddoor/0.png b/front/public/images/small/witchery/rowanwooddoor/0.png deleted file mode 100644 index 0fa41a503b..0000000000 Binary files a/front/public/images/small/witchery/rowanwooddoor/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/rubyslippers/0.png b/front/public/images/small/witchery/rubyslippers/0.png deleted file mode 100644 index 351eda9f01..0000000000 Binary files a/front/public/images/small/witchery/rubyslippers/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/scarecrow/0.png b/front/public/images/small/witchery/scarecrow/0.png deleted file mode 100644 index d86dc20741..0000000000 Binary files a/front/public/images/small/witchery/scarecrow/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seedsartichoke/0.png b/front/public/images/small/witchery/seedsartichoke/0.png deleted file mode 100644 index 78d69863a7..0000000000 Binary files a/front/public/images/small/witchery/seedsartichoke/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seedsbelladonna/0.png b/front/public/images/small/witchery/seedsbelladonna/0.png deleted file mode 100644 index c0614b8e93..0000000000 Binary files a/front/public/images/small/witchery/seedsbelladonna/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seedsmandrake/0.png b/front/public/images/small/witchery/seedsmandrake/0.png deleted file mode 100644 index 3ceb1975a9..0000000000 Binary files a/front/public/images/small/witchery/seedsmandrake/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seedsmindrake/0.png b/front/public/images/small/witchery/seedsmindrake/0.png deleted file mode 100644 index 203eec347e..0000000000 Binary files a/front/public/images/small/witchery/seedsmindrake/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seedssnowbell/0.png b/front/public/images/small/witchery/seedssnowbell/0.png deleted file mode 100644 index a0523ed057..0000000000 Binary files a/front/public/images/small/witchery/seedssnowbell/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seedswolfsbane/0.png b/front/public/images/small/witchery/seedswolfsbane/0.png deleted file mode 100644 index cba6833af5..0000000000 Binary files a/front/public/images/small/witchery/seedswolfsbane/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seedswormwood/0.png b/front/public/images/small/witchery/seedswormwood/0.png deleted file mode 100644 index f1053716e5..0000000000 Binary files a/front/public/images/small/witchery/seedswormwood/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/seepingshoes/0.png b/front/public/images/small/witchery/seepingshoes/0.png deleted file mode 100644 index eca7846c27..0000000000 Binary files a/front/public/images/small/witchery/seepingshoes/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/0.png b/front/public/images/small/witchery/shadedglass/0.png deleted file mode 100644 index 1f33f1dfbb..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/1.png b/front/public/images/small/witchery/shadedglass/1.png deleted file mode 100644 index 64e9d6b95a..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/10.png b/front/public/images/small/witchery/shadedglass/10.png deleted file mode 100644 index 4ebdd49d95..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/10.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/11.png b/front/public/images/small/witchery/shadedglass/11.png deleted file mode 100644 index 04e099b131..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/11.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/12.png b/front/public/images/small/witchery/shadedglass/12.png deleted file mode 100644 index fbfa8d8d24..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/12.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/13.png b/front/public/images/small/witchery/shadedglass/13.png deleted file mode 100644 index 68a40b4cca..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/13.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/14.png b/front/public/images/small/witchery/shadedglass/14.png deleted file mode 100644 index d6e97bd615..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/14.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/15.png b/front/public/images/small/witchery/shadedglass/15.png deleted file mode 100644 index cbfeae735e..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/15.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/2.png b/front/public/images/small/witchery/shadedglass/2.png deleted file mode 100644 index f017ff78fe..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/3.png b/front/public/images/small/witchery/shadedglass/3.png deleted file mode 100644 index 2ae40575ad..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/4.png b/front/public/images/small/witchery/shadedglass/4.png deleted file mode 100644 index 5896669547..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/4.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/5.png b/front/public/images/small/witchery/shadedglass/5.png deleted file mode 100644 index 4fbb698f26..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/5.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/6.png b/front/public/images/small/witchery/shadedglass/6.png deleted file mode 100644 index f9f55ee778..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/6.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/7.png b/front/public/images/small/witchery/shadedglass/7.png deleted file mode 100644 index 31df048bd6..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/7.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/8.png b/front/public/images/small/witchery/shadedglass/8.png deleted file mode 100644 index 2b7e4ab245..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/8.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass/9.png b/front/public/images/small/witchery/shadedglass/9.png deleted file mode 100644 index 8f60251b4f..0000000000 Binary files a/front/public/images/small/witchery/shadedglass/9.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/0.png b/front/public/images/small/witchery/shadedglass_active/0.png deleted file mode 100644 index e501a55cff..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/1.png b/front/public/images/small/witchery/shadedglass_active/1.png deleted file mode 100644 index 843bd91f0b..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/10.png b/front/public/images/small/witchery/shadedglass_active/10.png deleted file mode 100644 index c414255825..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/10.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/11.png b/front/public/images/small/witchery/shadedglass_active/11.png deleted file mode 100644 index b88be3ed82..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/11.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/12.png b/front/public/images/small/witchery/shadedglass_active/12.png deleted file mode 100644 index 01903b6228..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/12.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/13.png b/front/public/images/small/witchery/shadedglass_active/13.png deleted file mode 100644 index 8166323c80..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/13.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/14.png b/front/public/images/small/witchery/shadedglass_active/14.png deleted file mode 100644 index 74efe91710..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/14.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/15.png b/front/public/images/small/witchery/shadedglass_active/15.png deleted file mode 100644 index 6f54111364..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/15.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/2.png b/front/public/images/small/witchery/shadedglass_active/2.png deleted file mode 100644 index 220c207327..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/3.png b/front/public/images/small/witchery/shadedglass_active/3.png deleted file mode 100644 index 00f657b0a0..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/4.png b/front/public/images/small/witchery/shadedglass_active/4.png deleted file mode 100644 index 1802b45775..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/4.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/5.png b/front/public/images/small/witchery/shadedglass_active/5.png deleted file mode 100644 index 12effaf654..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/5.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/6.png b/front/public/images/small/witchery/shadedglass_active/6.png deleted file mode 100644 index 6914f4367b..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/6.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/7.png b/front/public/images/small/witchery/shadedglass_active/7.png deleted file mode 100644 index 1b53adeee6..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/7.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/8.png b/front/public/images/small/witchery/shadedglass_active/8.png deleted file mode 100644 index 89f7b59ea3..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/8.png and /dev/null differ diff --git a/front/public/images/small/witchery/shadedglass_active/9.png b/front/public/images/small/witchery/shadedglass_active/9.png deleted file mode 100644 index 121331ed10..0000000000 Binary files a/front/public/images/small/witchery/shadedglass_active/9.png and /dev/null differ diff --git a/front/public/images/small/witchery/shelfcompass/0.png b/front/public/images/small/witchery/shelfcompass/0.png deleted file mode 100644 index f9f866b8d0..0000000000 Binary files a/front/public/images/small/witchery/shelfcompass/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/silversword/0.png b/front/public/images/small/witchery/silversword/0.png deleted file mode 100644 index 165dab2f42..0000000000 Binary files a/front/public/images/small/witchery/silversword/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/silvervat/0.png b/front/public/images/small/witchery/silvervat/0.png deleted file mode 100644 index eff87851d7..0000000000 Binary files a/front/public/images/small/witchery/silvervat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/slurp/0.png b/front/public/images/small/witchery/slurp/0.png deleted file mode 100644 index f06b65987d..0000000000 Binary files a/front/public/images/small/witchery/slurp/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/snowbell/0.png b/front/public/images/small/witchery/snowbell/0.png deleted file mode 100644 index 450f9e19b4..0000000000 Binary files a/front/public/images/small/witchery/snowbell/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/snowdoubleslab/0.png b/front/public/images/small/witchery/snowdoubleslab/0.png deleted file mode 100644 index 5b76517fe2..0000000000 Binary files a/front/public/images/small/witchery/snowdoubleslab/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/snowpressureplate/0.png b/front/public/images/small/witchery/snowpressureplate/0.png deleted file mode 100644 index 98cf880d1e..0000000000 Binary files a/front/public/images/small/witchery/snowpressureplate/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/snowslab/0.png b/front/public/images/small/witchery/snowslab/0.png deleted file mode 100644 index 6cfa6ccf21..0000000000 Binary files a/front/public/images/small/witchery/snowslab/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/snowstairs/0.png b/front/public/images/small/witchery/snowstairs/0.png deleted file mode 100644 index 2d1607b7da..0000000000 Binary files a/front/public/images/small/witchery/snowstairs/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/somniancotton/0.png b/front/public/images/small/witchery/somniancotton/0.png deleted file mode 100644 index 5b2fd2d3ac..0000000000 Binary files a/front/public/images/small/witchery/somniancotton/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/spanishmoss/0.png b/front/public/images/small/witchery/spanishmoss/0.png deleted file mode 100644 index ad4023cc7f..0000000000 Binary files a/front/public/images/small/witchery/spanishmoss/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/spectralstone/0.png b/front/public/images/small/witchery/spectralstone/0.png deleted file mode 100644 index 84fa00f04b..0000000000 Binary files a/front/public/images/small/witchery/spectralstone/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/spectralstone/17.png b/front/public/images/small/witchery/spectralstone/17.png deleted file mode 100644 index 6898ea44b9..0000000000 Binary files a/front/public/images/small/witchery/spectralstone/17.png and /dev/null differ diff --git a/front/public/images/small/witchery/spectralstone/18.png b/front/public/images/small/witchery/spectralstone/18.png deleted file mode 100644 index 8833627ad2..0000000000 Binary files a/front/public/images/small/witchery/spectralstone/18.png and /dev/null differ diff --git a/front/public/images/small/witchery/spectralstone/19.png b/front/public/images/small/witchery/spectralstone/19.png deleted file mode 100644 index 645f40e6d7..0000000000 Binary files a/front/public/images/small/witchery/spectralstone/19.png and /dev/null differ diff --git a/front/public/images/small/witchery/spinningwheel/0.png b/front/public/images/small/witchery/spinningwheel/0.png deleted file mode 100644 index 3c38c67b32..0000000000 Binary files a/front/public/images/small/witchery/spinningwheel/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/spiritflowing/0.png b/front/public/images/small/witchery/spiritflowing/0.png deleted file mode 100644 index 38aa21f4a6..0000000000 Binary files a/front/public/images/small/witchery/spiritflowing/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/spiritportal/0.png b/front/public/images/small/witchery/spiritportal/0.png deleted file mode 100644 index 83595c1f7c..0000000000 Binary files a/front/public/images/small/witchery/spiritportal/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/stairswoodalder/0.png b/front/public/images/small/witchery/stairswoodalder/0.png deleted file mode 100644 index 785d68f7c6..0000000000 Binary files a/front/public/images/small/witchery/stairswoodalder/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/stairswoodhawthorn/0.png b/front/public/images/small/witchery/stairswoodhawthorn/0.png deleted file mode 100644 index 07af7c01f6..0000000000 Binary files a/front/public/images/small/witchery/stairswoodhawthorn/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/stairswoodrowan/0.png b/front/public/images/small/witchery/stairswoodrowan/0.png deleted file mode 100644 index 20383574f4..0000000000 Binary files a/front/public/images/small/witchery/stairswoodrowan/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/statuegoddess/0.png b/front/public/images/small/witchery/statuegoddess/0.png deleted file mode 100644 index 1c3c45eede..0000000000 Binary files a/front/public/images/small/witchery/statuegoddess/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/statueofworship/0.png b/front/public/images/small/witchery/statueofworship/0.png deleted file mode 100644 index dd0d2ce92d..0000000000 Binary files a/front/public/images/small/witchery/statueofworship/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/stew/0.png b/front/public/images/small/witchery/stew/0.png deleted file mode 100644 index cb574e3e39..0000000000 Binary files a/front/public/images/small/witchery/stew/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/stewraw/0.png b/front/public/images/small/witchery/stewraw/0.png deleted file mode 100644 index ba14b03d31..0000000000 Binary files a/front/public/images/small/witchery/stewraw/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/0.png b/front/public/images/small/witchery/stockade/0.png deleted file mode 100644 index 7fe17784c9..0000000000 Binary files a/front/public/images/small/witchery/stockade/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/1.png b/front/public/images/small/witchery/stockade/1.png deleted file mode 100644 index b0fc917267..0000000000 Binary files a/front/public/images/small/witchery/stockade/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/2.png b/front/public/images/small/witchery/stockade/2.png deleted file mode 100644 index f024ea07f1..0000000000 Binary files a/front/public/images/small/witchery/stockade/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/3.png b/front/public/images/small/witchery/stockade/3.png deleted file mode 100644 index 638b8dc42d..0000000000 Binary files a/front/public/images/small/witchery/stockade/3.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/4.png b/front/public/images/small/witchery/stockade/4.png deleted file mode 100644 index 0d88f3402f..0000000000 Binary files a/front/public/images/small/witchery/stockade/4.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/5.png b/front/public/images/small/witchery/stockade/5.png deleted file mode 100644 index 25464c1a0b..0000000000 Binary files a/front/public/images/small/witchery/stockade/5.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/6.png b/front/public/images/small/witchery/stockade/6.png deleted file mode 100644 index 14a3dbd1f1..0000000000 Binary files a/front/public/images/small/witchery/stockade/6.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/7.png b/front/public/images/small/witchery/stockade/7.png deleted file mode 100644 index 90b2ab9bea..0000000000 Binary files a/front/public/images/small/witchery/stockade/7.png and /dev/null differ diff --git a/front/public/images/small/witchery/stockade/8.png b/front/public/images/small/witchery/stockade/8.png deleted file mode 100644 index 095336231a..0000000000 Binary files a/front/public/images/small/witchery/stockade/8.png and /dev/null differ diff --git a/front/public/images/small/witchery/sungrenade/0.png b/front/public/images/small/witchery/sungrenade/0.png deleted file mode 100644 index 4cc2b1e37a..0000000000 Binary files a/front/public/images/small/witchery/sungrenade/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/taglockkit/0.png b/front/public/images/small/witchery/taglockkit/0.png deleted file mode 100644 index 910a58dd2e..0000000000 Binary files a/front/public/images/small/witchery/taglockkit/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/tormentportal/0.png b/front/public/images/small/witchery/tormentportal/0.png deleted file mode 100644 index 83595c1f7c..0000000000 Binary files a/front/public/images/small/witchery/tormentportal/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/tormentstone/0.png b/front/public/images/small/witchery/tormentstone/0.png deleted file mode 100644 index 14045663da..0000000000 Binary files a/front/public/images/small/witchery/tormentstone/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/trent/0.png b/front/public/images/small/witchery/trent/0.png deleted file mode 100644 index f39a3db8b0..0000000000 Binary files a/front/public/images/small/witchery/trent/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirebook/0.png b/front/public/images/small/witchery/vampirebook/0.png deleted file mode 100644 index 8f04f19a8b..0000000000 Binary files a/front/public/images/small/witchery/vampirebook/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirebook/9.png b/front/public/images/small/witchery/vampirebook/9.png deleted file mode 100644 index 8f04f19a8b..0000000000 Binary files a/front/public/images/small/witchery/vampirebook/9.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampireboots/0.png b/front/public/images/small/witchery/vampireboots/0.png deleted file mode 100644 index b42ce2b377..0000000000 Binary files a/front/public/images/small/witchery/vampireboots/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirechaincoat/0.png b/front/public/images/small/witchery/vampirechaincoat/0.png deleted file mode 100644 index 0c1e9872b5..0000000000 Binary files a/front/public/images/small/witchery/vampirechaincoat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirechaincoat_female/0.png b/front/public/images/small/witchery/vampirechaincoat_female/0.png deleted file mode 100644 index 0c1e9872b5..0000000000 Binary files a/front/public/images/small/witchery/vampirechaincoat_female/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirecoat/0.png b/front/public/images/small/witchery/vampirecoat/0.png deleted file mode 100644 index de0950db37..0000000000 Binary files a/front/public/images/small/witchery/vampirecoat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirecoat_female/0.png b/front/public/images/small/witchery/vampirecoat_female/0.png deleted file mode 100644 index de0950db37..0000000000 Binary files a/front/public/images/small/witchery/vampirecoat_female/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirehat/0.png b/front/public/images/small/witchery/vampirehat/0.png deleted file mode 100644 index ed73e37bbc..0000000000 Binary files a/front/public/images/small/witchery/vampirehat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirehelmet/0.png b/front/public/images/small/witchery/vampirehelmet/0.png deleted file mode 100644 index a45e29eec6..0000000000 Binary files a/front/public/images/small/witchery/vampirehelmet/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirelegs/0.png b/front/public/images/small/witchery/vampirelegs/0.png deleted file mode 100644 index 4f2f94910a..0000000000 Binary files a/front/public/images/small/witchery/vampirelegs/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vampirelegs_kilt/0.png b/front/public/images/small/witchery/vampirelegs_kilt/0.png deleted file mode 100644 index 9ccb9f9e4e..0000000000 Binary files a/front/public/images/small/witchery/vampirelegs_kilt/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/vine/0.png b/front/public/images/small/witchery/vine/0.png deleted file mode 100644 index 3f21845e07..0000000000 Binary files a/front/public/images/small/witchery/vine/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/voidbramble/0.png b/front/public/images/small/witchery/voidbramble/0.png deleted file mode 100644 index 2c780dc03e..0000000000 Binary files a/front/public/images/small/witchery/voidbramble/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wallgen/0.png b/front/public/images/small/witchery/wallgen/0.png deleted file mode 100644 index 6d02ed5cdf..0000000000 Binary files a/front/public/images/small/witchery/wallgen/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/web/0.png b/front/public/images/small/witchery/web/0.png deleted file mode 100644 index a9fb094140..0000000000 Binary files a/front/public/images/small/witchery/web/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wickerbundle/0.png b/front/public/images/small/witchery/wickerbundle/0.png deleted file mode 100644 index 3fa8119e28..0000000000 Binary files a/front/public/images/small/witchery/wickerbundle/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wickerbundle/1.png b/front/public/images/small/witchery/wickerbundle/1.png deleted file mode 100644 index c9878ec647..0000000000 Binary files a/front/public/images/small/witchery/wickerbundle/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchesovenburning/0.png b/front/public/images/small/witchery/witchesovenburning/0.png deleted file mode 100644 index a7347fada5..0000000000 Binary files a/front/public/images/small/witchery/witchesovenburning/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchesovenidle/0.png b/front/public/images/small/witchery/witchesovenidle/0.png deleted file mode 100644 index 8c1dd09013..0000000000 Binary files a/front/public/images/small/witchery/witchesovenidle/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchhand/0.png b/front/public/images/small/witchery/witchhand/0.png deleted file mode 100644 index 0301f53454..0000000000 Binary files a/front/public/images/small/witchery/witchhand/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchhat/0.png b/front/public/images/small/witchery/witchhat/0.png deleted file mode 100644 index 8b5428a08c..0000000000 Binary files a/front/public/images/small/witchery/witchhat/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchleaves/0.png b/front/public/images/small/witchery/witchleaves/0.png deleted file mode 100644 index a381d623b7..0000000000 Binary files a/front/public/images/small/witchery/witchleaves/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchleaves/1.png b/front/public/images/small/witchery/witchleaves/1.png deleted file mode 100644 index db6426bd60..0000000000 Binary files a/front/public/images/small/witchery/witchleaves/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchleaves/2.png b/front/public/images/small/witchery/witchleaves/2.png deleted file mode 100644 index 0e2d3d801e..0000000000 Binary files a/front/public/images/small/witchery/witchleaves/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchlog/0.png b/front/public/images/small/witchery/witchlog/0.png deleted file mode 100644 index dc9e270a03..0000000000 Binary files a/front/public/images/small/witchery/witchlog/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchlog/1.png b/front/public/images/small/witchery/witchlog/1.png deleted file mode 100644 index 85115f90b7..0000000000 Binary files a/front/public/images/small/witchery/witchlog/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchlog/2.png b/front/public/images/small/witchery/witchlog/2.png deleted file mode 100644 index a09d945b0e..0000000000 Binary files a/front/public/images/small/witchery/witchlog/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchrobe/0.png b/front/public/images/small/witchery/witchrobe/0.png deleted file mode 100644 index 0ea5ec9004..0000000000 Binary files a/front/public/images/small/witchery/witchrobe/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchsapling/0.png b/front/public/images/small/witchery/witchsapling/0.png deleted file mode 100644 index df1fd38efe..0000000000 Binary files a/front/public/images/small/witchery/witchsapling/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchsapling/1.png b/front/public/images/small/witchery/witchsapling/1.png deleted file mode 100644 index 2e36738e4e..0000000000 Binary files a/front/public/images/small/witchery/witchsapling/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchsapling/2.png b/front/public/images/small/witchery/witchsapling/2.png deleted file mode 100644 index c6b7829ac5..0000000000 Binary files a/front/public/images/small/witchery/witchsapling/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchsladder/0.png b/front/public/images/small/witchery/witchsladder/0.png deleted file mode 100644 index 63246b161f..0000000000 Binary files a/front/public/images/small/witchery/witchsladder/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwood/0.png b/front/public/images/small/witchery/witchwood/0.png deleted file mode 100644 index ee7b99a8cb..0000000000 Binary files a/front/public/images/small/witchery/witchwood/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwood/1.png b/front/public/images/small/witchery/witchwood/1.png deleted file mode 100644 index ad7c0eb738..0000000000 Binary files a/front/public/images/small/witchery/witchwood/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwood/2.png b/front/public/images/small/witchery/witchwood/2.png deleted file mode 100644 index f47a9cc019..0000000000 Binary files a/front/public/images/small/witchery/witchwood/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwooddoubleslab/0.png b/front/public/images/small/witchery/witchwooddoubleslab/0.png deleted file mode 100644 index ee7b99a8cb..0000000000 Binary files a/front/public/images/small/witchery/witchwooddoubleslab/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwooddoubleslab/1.png b/front/public/images/small/witchery/witchwooddoubleslab/1.png deleted file mode 100644 index ad7c0eb738..0000000000 Binary files a/front/public/images/small/witchery/witchwooddoubleslab/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwooddoubleslab/2.png b/front/public/images/small/witchery/witchwooddoubleslab/2.png deleted file mode 100644 index f47a9cc019..0000000000 Binary files a/front/public/images/small/witchery/witchwooddoubleslab/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwoodslab/0.png b/front/public/images/small/witchery/witchwoodslab/0.png deleted file mode 100644 index 901f77b154..0000000000 Binary files a/front/public/images/small/witchery/witchwoodslab/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwoodslab/1.png b/front/public/images/small/witchery/witchwoodslab/1.png deleted file mode 100644 index 2a4b70837f..0000000000 Binary files a/front/public/images/small/witchery/witchwoodslab/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/witchwoodslab/2.png b/front/public/images/small/witchery/witchwoodslab/2.png deleted file mode 100644 index 3e61671ce4..0000000000 Binary files a/front/public/images/small/witchery/witchwoodslab/2.png and /dev/null differ diff --git a/front/public/images/small/witchery/wolfaltar/0.png b/front/public/images/small/witchery/wolfaltar/0.png deleted file mode 100644 index 5a6b5f1901..0000000000 Binary files a/front/public/images/small/witchery/wolfaltar/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wolfhead/0.png b/front/public/images/small/witchery/wolfhead/0.png deleted file mode 100644 index ff20639f38..0000000000 Binary files a/front/public/images/small/witchery/wolfhead/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wolfhead/1.png b/front/public/images/small/witchery/wolfhead/1.png deleted file mode 100644 index 48b43033a1..0000000000 Binary files a/front/public/images/small/witchery/wolfhead/1.png and /dev/null differ diff --git a/front/public/images/small/witchery/wolfsbane/0.png b/front/public/images/small/witchery/wolfsbane/0.png deleted file mode 100644 index 3506c42017..0000000000 Binary files a/front/public/images/small/witchery/wolfsbane/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wolftoken/0.png b/front/public/images/small/witchery/wolftoken/0.png deleted file mode 100644 index a6d3a7c925..0000000000 Binary files a/front/public/images/small/witchery/wolftoken/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wolftrap/0.png b/front/public/images/small/witchery/wolftrap/0.png deleted file mode 100644 index fbc8864fff..0000000000 Binary files a/front/public/images/small/witchery/wolftrap/0.png and /dev/null differ diff --git a/front/public/images/small/witchery/wormwood/0.png b/front/public/images/small/witchery/wormwood/0.png deleted file mode 100644 index 3ce69cd2be..0000000000 Binary files a/front/public/images/small/witchery/wormwood/0.png and /dev/null differ diff --git a/front/public/vite.svg b/front/public/vite.svg deleted file mode 100644 index e7b8dfb1b2..0000000000 --- a/front/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/front/src/Config.jsx b/front/src/Config.jsx deleted file mode 100644 index 2c3dcacd11..0000000000 --- a/front/src/Config.jsx +++ /dev/null @@ -1,45 +0,0 @@ -export default { - tasks: { - "none": { - method: "", - data: "" - }, - "搜索物品": { - method: "refreshStorage", - data: "{\n \n}" - }, - "制造物品": { - method: "requestItem", - data: JSON.stringify({ - filter: { - name: "", - damage: "" - }, - amount: "", - cpuName: "" - }, null, 2) - }, - "查看监控器": { - method: "monitors", - data: "{\n}" - }, - "取消监控器": { - method: "cancelMonitor", - data: JSON.stringify({ - id: "" - }, null, 2) - }, - "搜索流体库存": { - method: "refreshFluidStorage", - data: "{}" - } - }, - theme: [ - "theme-blue", - "theme-white" - ], - shareServer: { - "": "手动输入", - "本地测试服务器": "http://localhost:60081/apply" - } -} \ No newline at end of file diff --git a/front/src/HttpUtil.jsx b/front/src/HttpUtil.jsx deleted file mode 100644 index cc178637ac..0000000000 --- a/front/src/HttpUtil.jsx +++ /dev/null @@ -1,68 +0,0 @@ -const headers = { - "Content-Type": "application/json" -} - -function doAction(url, method, body, header) { - const h = new Headers() - if (!header) header = {} - headers.ocaetoken = localStorage.getItem("ocaetoken") - - for (const key in header) h.append(key, header[key]) - for (const key in headers) h.append(key, headers[key]) - if (body != null && typeof body !== "string") { - body = JSON.stringify(body) - } - - return fetch(url, { - method: method, - headers: h, - body: body, - mode: "cors" - }) -} - -function getBaseUrl() { - return localStorage.getItem("base-url") -} - -function isValidBaseUrl() { - const url = getBaseUrl() - return url !== null && url.startsWith("http") -} - -function getDefault() { - return new Promise((resolve, reject) => { - reject("没有设定后端地址") - }) -} - -export default { - path: { - task: "/task", - items: "/items", - cpus: "/cpus", - fluids: "/fluids" - }, - addGlobalHeader: (key, val) => { - headers[key] = val - }, - put: (path, body, header) => { - if (!isValidBaseUrl()) return getDefault() - return doAction(getBaseUrl() + path, "PUT", body, header) - }, - post: (path, body, header) => { - if (!isValidBaseUrl()) return getDefault() - return doAction(getBaseUrl() + path, "POST", body, header) - }, - delete: (path, header) => { - if (!isValidBaseUrl()) return getDefault() - return doAction(getBaseUrl() + path, "DELETE", null, header) - }, - get: (path, header) => { - if (!isValidBaseUrl()) return getDefault() - return doAction(getBaseUrl() + path, "GET", null, header) - }, - doAction: (url, method, body, header) => { - return doAction(url, method, body, header) - } -} \ No newline at end of file diff --git a/front/src/ItemDatabase.json b/front/src/ItemDatabase.json deleted file mode 100644 index b930b77f68..0000000000 --- a/front/src/ItemDatabase.json +++ /dev/null @@ -1 +0,0 @@ -{"BuildCraft|Builders:libraryBlock":{"0":{"name":"Electronic Library","tr":"电子档案馆","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:booster":{"0":{"name":"Booster","tr":"加速板","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:NetherLever":{"0":{"name":"Lever","tr":"拉杆","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedCryoliteF":{"0":{"oreDict":["crushedCentrifugedCryoliteF"],"name":"Centrifuged Crushed Cryolite (F) Ore","tr":"离心冰晶石(F)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.tankBlock":{"0":{"oreDict":["craftingTank"],"name":"Tank ⓪","tr":"Tank ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tank ①","tr":"Tank ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Tank ②","tr":"Tank ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Tank ③","tr":"Tank ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Tank ④","tr":"Tank ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Tank ⑤","tr":"Tank ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Tank ⑥","tr":"Tank ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Tank ⑦","tr":"Tank ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Tank ⑧","tr":"Tank ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Tank ⑨","tr":"Tank ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Tank ⑩","tr":"Tank ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tank ⑪","tr":"Tank ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Tank ⑫","tr":"Tank ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Tank ⑬","tr":"Tank ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Tank ⑭","tr":"Tank ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Tank ⑮","tr":"Tank ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:appleLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Apple Leaves","tr":"苹果树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockRainforestOakLog":{"0":{"oreDict":["logWood"," logRainforestOak"],"name":"Rainforest Oak","tr":"雨林橡木","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TitaniumBars":{"0":{"oreDict":["barsTitanium"],"name":"Titanium Bars","tr":"钛栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:HiveSpawnDebugger":{"0":{"name":"Hive Spawning Debugger","tr":"蜂巢生成调整器(Debug)","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterCyan":{"0":{"name":"Cyan Painter","tr":"青色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:crushedZirconolite":{"0":{"oreDict":["crushedZirconolite"],"name":"Crushed Zirconolite Ore","tr":"粉碎的钛锆酸钙矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaRing":{"1000":{"name":"Band of Mana","tr":"魔力之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:itemDustAmmoniumBifluoride":{"0":{"oreDict":["dustAmmoniumBifluoride"],"name":"氟化氢铵粉","tr":"氟化氢铵粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"lootgames:GOLMasterBlock":{"0":{"name":"Game of Light","tr":"游戏灯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:Blazerail":{"0":{"name":"Blaze Rail","tr":"烈焰轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:part.circuit":{"0":{"name":"Controller Circuit","tr":"控制器电路","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Receiver Circuit","tr":"接收器电路","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Signal Circuit","tr":"信号电路","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:plaxSeed":{"0":{"name":"Plax Seeds","tr":"纤化种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.stellar_pickaxe":{"0":{"name":"Stellar Pick","tr":"恒星合金镐","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":5001}},"GalacticraftCore:item.sensorLens":{"0":{"name":"Sensor Lens","tr":"探测镜片","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedAgarditeLa":{"0":{"oreDict":["crushedAgarditeLa"],"name":"Crushed Agardite (La) Ore","tr":"粉碎的菱铁矿(La)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.02.name":{"1":{"name":"§9Charge Pack [MV]§7","tr":"§9充电工具包[MV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [MV]§7","tr":"§9充电工具包[MV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemRodLongStaballoy":{"0":{"oreDict":["stickLongStaballoy"],"name":"长贫铀合金杆","tr":"长贫铀合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorInconel792":{"0":{"oreDict":["rotorInconel792"],"name":"镍铬基合金-792转子","tr":"镍铬基合金-792转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltOctiron":{"0":{"oreDict":["boltOctiron"],"name":"八角铁螺栓","tr":"八角铁螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.amaranth":{"0":{"oreDict":["buttonWood"],"name":"Amaranth Button","tr":"紫檀树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:maplesyrupwafflesItem":{"0":{"oreDict":["foodMaplesyrupwaffles"],"name":"Maple Syrup Waffles","tr":"枫糖华夫饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:pipePlug":{"0":{"name":"Pipe Plug","tr":"管塞","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EmeraldHighAdvancedCoreChip":{"0":{"name":"Item Circuit Tier IV","tr":"物品电路 IV","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockChest":{"0":{"name":"ME Chest","tr":"ME箱子","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:tunarawItem":{"0":{"oreDict":["listAllfishraw"," foodTunaraw"],"name":"Raw Tuna","tr":"生金枪鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ShieldBlock":{"0":{"name":"Shield Block","tr":"护盾方块","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:backpack.trackman.t2":{"0":{"name":"Woven Trackman\u0027s Backpack","tr":"编织的铁路工背包","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:tile.BlockQuantumRing":{"0":{"name":"ME Quantum Ring","tr":"ME量子环","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:backpack.trackman.t1":{"0":{"name":"Trackman\u0027s Backpack","tr":"铁路工背包","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:leadore":{"0":{"oreDict":["oreLead"],"name":"Lead Ore","tr":"铅矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.bloodwood":{"0":{"oreDict":["fenceGateWood"],"name":"Blood Fence Gate","tr":"血树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:floatingSpecialFlower":{"0":{"name":"Floating Hibeescus","tr":"浮空蜂木槿","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:item.linker":{"0":{"name":"Linker","tr":"端口连接器","tab":"远程接口","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:LithiumPeroxide":{"0":{"oreDict":["cellLithiumPeroxide"],"name":"过氧化锂单元","tr":"过氧化锂单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:grafter":{"0":{"name":"Grafter","tr":"剪枝器","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":5}},"ThaumicHorizons:eggIncubated":{"0":{"name":"Incubated Egg","tr":"孵化的蛋","tab":"神秘视界","type":"Item","maxStackSize":16,"maxDurability":1}},"IguanaTweaksTConstruct:clayBucketWater":{"0":{"oreDict":["listAllwater"," bucketClayWater"],"name":"Water Clay Bucket","tr":"粘土桶(水)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:cart.work":{"0":{"name":"Work Cart","tr":"工作台车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"miscutils:blockFrameGtWatertightSteel":{"0":{"oreDict":["frameGtWatertightSteel"],"name":"防水钢框架","tr":"防水钢框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:sonar_goggles":{"0":{"name":"Sonar Goggles","tr":"声呐护目镜","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1801}},"OpenBlocks:imaginary":{"0":{"name":"Magic Pencil","tr":"魔法铅笔","tab":"开放式方块","type":"Block","maxStackSize":1,"maxDurability":1},"1":{"name":"Magic Crayon","tr":"魔法蜡笔","tab":"开放式方块","type":"Block","maxStackSize":1,"maxDurability":1}},"IC2:itemTFBPChilling":{"0":{"name":"TFBP - Chilling","tr":"地形转换模板-冰原","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyCopperIISulfate":{"0":{"oreDict":["dustTinyCopperIISulfate"],"name":"小撮硫酸铜(II)粉","tr":"小撮硫酸铜(II)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.parts":{"0":{"name":"Tape Track","tr":"磁带轨道","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_lit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBurntReactorFuelI":{"0":{"oreDict":["cellBurntReactorFuelI"],"name":"枯竭反应堆燃料 I单元","tr":"枯竭反应堆燃料 I单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzTypeElf":{"0":{"name":"Block of Elven Quartz","tr":"精灵石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Elven Quartz Block","tr":"錾制精灵石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Elven Quartz Block","tr":"竖纹精灵石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodpotshelf":{"0":{"name":"Sacred Oak Potion Shelf","tr":"天域树橡树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Potion Shelf","tr":"樱桃树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Potion Shelf","tr":"黑暗树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Potion Shelf","tr":"杉树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Potion Shelf","tr":"地狱皮树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Potion Shelf","tr":"阁楼树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Potion Shelf","tr":"蓝花楹药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Potion Shelf","tr":"魔法树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Potion Shelf","tr":"红杉药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Potion Shelf","tr":"棕榈树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Potion Shelf","tr":"松树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Potion Shelf","tr":"红木药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Potion Shelf","tr":"柳树药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Potion Shelf","tr":"桃花心木药水架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"irontank:titaniumTank":{"0":{"name":"Titanium Tank","tr":"钛储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinForestryIV":{"0":{"name":"Coin \"The Forest Ranger 10K\"","tr":"护林员币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemsteelrotor":{"1":{"name":"Kinetic Gearbox Rotor (Steel)","tr":"钢转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":172801}},"ThaumicTinkerer:catAmulet":{"0":{"name":"Feline Amulet","tr":"猫神护身符","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinDarkWizard":{"0":{"name":"Coin \"The Dark Wizard 1\"","tr":"魔法师币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTalonite":{"0":{"oreDict":["ringTalonite"],"name":"铬钴磷酸盐合金环","tr":"铬钴磷酸盐合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:diskDrive":{"0":{"oreDict":["oc:diskDrive"],"name":"Disk Drive","tr":"软盘驱动器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_blue":{"0":{"name":"Blue Curtain","tr":"蓝色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemBoltIncoloyDS":{"0":{"oreDict":["boltIncoloyDS"],"name":"耐热铬铁合金-DS螺栓","tr":"耐热铬铁合金-DS螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodPikyonium64B":{"0":{"oreDict":["stickPikyonium64B"],"name":"皮卡优合金64B杆","tr":"皮卡优合金64B杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:part.turbine.rotor":{"0":{"name":"Turbine Rotor","tr":"涡轮机转子","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":30001}},"GalacticraftCore:tile.machine2":{"0":{"name":"Electric Compressor","tr":"电动压缩机","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Circuit Fabricator","tr":"元件制造台","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Oxygen Storage Module","tr":"储氧模块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedAgarditeNd":{"0":{"oreDict":["crushedAgarditeNd"],"name":"Crushed Agardite (Nd) Ore","tr":"粉碎的菱铁矿(Nd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BlankPlatedChip":{"0":{"name":"Blank Plated Chip","tr":"空白镀层芯片","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockCinobiteA243":{"0":{"oreDict":["blockCinobiteA243"],"name":"西诺柏A243块","tr":"西诺柏A243块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPerroudite":{"0":{"oreDict":["dustTinyPerroudite"],"name":"小撮溴硫银汞粉","tr":"小撮溴硫银汞粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:altar_nexus":{"0":{"name":"Altar Nexus","tr":"祭坛枢纽","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.reactorMOXDual":{"0":{"name":"二联燃料棒(MOX)","tr":"二联燃料棒(MOX)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Automagy:baubleEnderDisjunction":{"0":{"name":"Ring of Ender Disjunction","tr":"影裂指环","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Lesser Ring of Ender Disjunction","tr":"影痕指环","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateTantalloy60":{"0":{"oreDict":["plateTantalloy60"],"name":"钽钨合金-60板","tr":"钽钨合金-60板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTantalloy61":{"0":{"oreDict":["plateTantalloy61"],"name":"钽钨合金-61板","tr":"钽钨合金-61板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AFSU:AFSU":{"0":{"name":"AFSU","tr":"AFSU","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"AFSU","tr":"AFSU","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:wovencottonItem":{"0":{"oreDict":["materialCloth"],"name":"Woven Cotton","tr":"织棉","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTantalumCarbide":{"0":{"oreDict":["dustTinyTantalumCarbide"],"name":"小撮碳化钽粉","tr":"小撮碳化钽粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MakeMakeStoneDust":{"0":{"oreDict":["dustMakeMake"," dustSpace"," dustMakeMakeStone"],"name":"MakeMake Stone Dust","tr":"鸟神星尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:longGrass":{"0":{"name":"Long Grass Block","tr":"深草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:door.redwoodbark":{"0":{"name":"Redwood Bark Door","tr":"红木树皮门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA6SlabFull":{"0":{"name":"Metamorphic Taiga Stone Slab","tr":"变质高原石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.canisterPartialLN2":{"1":{"name":"Filled Canister of Liquid Nitrogen","tr":"灌装液态氮(满)","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1002}},"tectech:gt.stabilisation_field_generator":{"0":{"name":"§f粗制§r稳定力场发生器","tr":"§f粗制§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"§f原始§r稳定力场发生器","tr":"§f原始§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"§f稳定§r稳定力场发生器","tr":"§f稳定§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"§f先进§r稳定力场发生器","tr":"§f先进§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"§f卓越§r稳定力场发生器","tr":"§f卓越§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"§f异星§r稳定力场发生器","tr":"§f异星§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"§f完美§r稳定力场发生器","tr":"§f完美§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"§f太初§r稳定力场发生器","tr":"§f太初§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"§f§l鸿蒙§r稳定力场发生器","tr":"§f§l鸿蒙§r稳定力场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinForestryII":{"0":{"name":"Coin \"The Forest Ranger 100\"","tr":"护林员币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundHelmetFire":{"0":{"name":"Fire Omega Helmet","tr":"火`欧米伽头盔","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"dreamcraft:item.WoodenBrickForm":{"0":{"name":"Wooden Form (Brick)","tr":"砖模板","tab":"GTNH: 物品","type":"Item","maxStackSize":1,"maxDurability":301}},"appliedenergistics2:tile.BlockQuartzGlass":{"0":{"name":"Quartz Glass","tr":"石英玻璃","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:espressoItem":{"0":{"oreDict":["foodEspresso"],"name":"Espresso","tr":"特浓咖啡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:adventurerBagT2":{"0":{"name":"Adventurer\u0027s Woven Backpack","tr":"冒险家编织背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"gadomancy:ItemCreativeNode":{"0":{"name":"Aura Node","tr":"灵气节点","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Aura Node","tr":"灵气节点","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Aura Node","tr":"灵气节点","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Aura Node","tr":"灵气节点","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Aura Node","tr":"灵气节点","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Aura Node","tr":"灵气节点","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellThoriumTetrafluoride":{"0":{"oreDict":["cellThoriumTetrafluoride"],"name":"四氟化钍单元","tr":"四氟化钍单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLithiumFluoride":{"0":{"oreDict":["dustLithiumFluoride"],"name":"氟化锂粉","tr":"氟化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingCinobiteA243":{"0":{"oreDict":["ringCinobiteA243"],"name":"西诺柏A243环","tr":"西诺柏A243环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:SulfuricCoalTarOil":{"0":{"oreDict":["cellSulfuricCoalTarOil"],"name":"含硫煤焦油单元","tr":"含硫煤焦油单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:soymilkItem":{"0":{"oreDict":["listAllmilk"," foodSoymilk"],"name":"Soy Milk","tr":"豆浆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyGreenockite":{"0":{"oreDict":["dustTinyGreenockite"],"name":"小撮硫镉粉","tr":"小撮硫镉粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:crate":{"0":{"name":"Crate","tr":"板条箱","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pizzaItem":{"0":{"oreDict":["foodPizza"],"name":"Pizza","tr":"披萨","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:colorizedLeaves1":{"0":{"oreDict":["treeLeaves"],"name":"Sacred Oak Leaves","tr":"神圣橡木树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Mangrove Leaves","tr":"红树树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Palm Leaves","tr":"棕榈树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Redwood Leaves","tr":"红杉叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:colorizedLeaves2":{"0":{"oreDict":["treeLeaves"],"name":"Willow Leaves","tr":"柳树树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Pine Leaves","tr":"松树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Mahogany Leaves","tr":"桃花心木树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Flowering Oak Leaves","tr":"开花橡木树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sesameseedsseedItem":{"0":{"oreDict":["listAllseed"," seedSesameseed"],"name":"Sesame Seeds Seed","tr":"芝麻种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:yellow_kitchen_floor":{"0":{"name":"Yellow Kitchen Floor","tr":"黄色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.metaitem.98":{"0":{"oreDict":["cellMoltenWater"],"name":"蒸汽单元","tr":"蒸汽单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"菌泥单元","tr":"菌泥单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"诱变剂单元","tr":"诱变剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"液态末影单元","tr":"液态末影单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"末影粘浆单元","tr":"末影粘浆单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"钻井液单元","tr":"钻井液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"墨水单元","tr":"墨水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"超轻拉多X单元","tr":"超轻拉多X单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"酶溶液单元","tr":"酶溶液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"大肠杆菌流体单元","tr":"大肠杆菌流体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"青霉素单元","tr":"青霉素单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"荧光DNA单元","tr":"荧光DNA单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"助燃剂单元","tr":"助燃剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"细菌单元","tr":"细菌单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"液态DNA单元","tr":"液态DNA单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"聚合酶单元","tr":"聚合酶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"钠钾共晶合金单元","tr":"钠钾共晶合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"富集菌泥单元","tr":"富集菌泥单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"发酵菌泥单元","tr":"发酵菌泥单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"污染单元","tr":"污染单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"异氙单元","tr":"异氙单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"超重拉多X单元","tr":"超重拉多X单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"重拉多X单元","tr":"重拉多X单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"裂化拉多X单元","tr":"裂化拉多X单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"轻拉多X单元","tr":"轻拉多X单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.PlumbLine":{"0":{"name":"Plumb line","tr":"铅垂线","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemToolPainterPurple":{"0":{"name":"Purple Painter","tr":"紫色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"LogisticsPipes:item.PipeFluidInsertion":{"0":{"name":"Logistics Fluid Insertion Pipe","tr":"物流流体插入管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:seedssnowbell":{"0":{"oreDict":["seedSnowbell"," listAllseed"],"name":"Snowbell Seeds","tr":"雪铃花种子","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.metaitem.99":{"6":{"oreDict":["cellMoltenLithium"],"name":"熔融锂单元","tr":"熔融锂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["cellMoltenBeryllium"],"name":"熔融铍单元","tr":"熔融铍单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["cellMoltenBoron"],"name":"熔融硼单元","tr":"熔融硼单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"521":{"oreDict":["cellMoltenForce"],"name":"熔融力量单元","tr":"熔融力量单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"529":{"oreDict":["cellMoltenVinteum"],"name":"熔融温特姆单元","tr":"熔融温特姆单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["cellMoltenMagnesium"],"name":"熔融镁单元","tr":"熔融镁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["cellMoltenAluminium"],"name":"熔融铝单元","tr":"熔融铝单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["cellMoltenSilicon"],"name":"熔融硅单元","tr":"熔融硅单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["cellMoltenPotassium"],"name":"熔融钾单元","tr":"熔融钾单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["cellMoltenScandium"],"name":"熔融钪单元","tr":"熔融钪单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["cellMoltenTitanium"],"name":"熔融钛单元","tr":"熔融钛单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["cellMoltenVanadium"],"name":"熔融钒单元","tr":"熔融钒单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["cellMoltenChrome"],"name":"熔融铬单元","tr":"熔融铬单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["cellMoltenManganese"],"name":"熔融锰单元","tr":"熔融锰单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["cellMoltenIron"," cellMoltenAnyIron"],"name":"熔融铁单元","tr":"熔融铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["cellMoltenCobalt"],"name":"熔融钴单元","tr":"熔融钴单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["cellMoltenNickel"],"name":"熔融镍单元","tr":"熔融镍单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["cellMoltenCopper"," cellMoltenAnyCopper"],"name":"熔融铜单元","tr":"熔融铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["cellMoltenZinc"],"name":"熔融锌单元","tr":"熔融锌单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["cellMoltenGallium"],"name":"熔融镓单元","tr":"熔融镓单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["cellMoltenArsenic"],"name":"熔融砷单元","tr":"熔融砷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["cellMoltenRubidium"],"name":"熔融铷单元","tr":"熔融铷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["cellMoltenYttrium"],"name":"熔融钇单元","tr":"熔融钇单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["cellMoltenNiobium"],"name":"熔融铌单元","tr":"熔融铌单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["cellMoltenMolybdenum"],"name":"熔融钼单元","tr":"熔融钼单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["cellMoltenPalladium"],"name":"熔融钯单元","tr":"熔融钯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["cellMoltenSilver"],"name":"熔融银单元","tr":"熔融银单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["cellMoltenIndium"],"name":"熔融铟单元","tr":"熔融铟单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["cellMoltenTin"],"name":"熔融锡单元","tr":"熔融锡单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["cellMoltenAntimony"],"name":"熔融锑单元","tr":"熔融锑单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["cellMoltenTellurium"],"name":"熔融碲单元","tr":"熔融碲单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["cellMoltenCaesium"],"name":"熔融铯单元","tr":"熔融铯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["cellMoltenBarium"],"name":"熔融钡单元","tr":"熔融钡单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["cellMoltenLanthanum"],"name":"熔融镧单元","tr":"熔融镧单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"576":{"oreDict":["cellMoltenTPVAlloy"],"name":"熔融钛铂钒合金单元","tr":"熔融钛铂钒合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["cellMoltenCerium"],"name":"熔融铈单元","tr":"熔融铈单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["cellMoltenPraseodymium"],"name":"熔融镨单元","tr":"熔融镨单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"oreDict":["cellMoltenNeodymium"],"name":"熔融钕单元","tr":"熔融钕单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"oreDict":["cellMoltenPromethium"],"name":"熔融钷单元","tr":"熔融钷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["cellMoltenSamarium"],"name":"熔融钐单元","tr":"熔融钐单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"581":{"oreDict":["cellMoltenTranscendentMetal"],"name":"熔融超时空金属单元","tr":"熔融超时空金属单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["cellMoltenEuropium"],"name":"熔融铕单元","tr":"熔融铕单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"582":{"oreDict":["cellMoltenEnrichedHolmium"],"name":"熔融富集钬单元","tr":"熔融富集钬单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["cellMoltenGadolinium"],"name":"熔融钆单元","tr":"熔融钆单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"583":{"oreDict":["cellMoltenMagnetohydrodynamicallyConstrainedStarMatter"],"name":"熔融磁流体约束恒星物质单元","tr":"熔融磁流体约束恒星物质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"oreDict":["cellMoltenTerbium"],"name":"熔融铽单元","tr":"熔融铽单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"oreDict":["cellMoltenDysprosium"],"name":"熔融镝单元","tr":"熔融镝单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"585":{"oreDict":["cellMoltenWhiteDwarfMatter"],"name":"熔融白矮星物质单元","tr":"熔融白矮星物质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"oreDict":["cellMoltenHolmium"],"name":"熔融钬单元","tr":"熔融钬单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"586":{"oreDict":["cellMoltenBlackDwarfMatter"],"name":"熔融黑矮星物质单元","tr":"熔融黑矮星物质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"oreDict":["cellMoltenErbium"],"name":"熔融铒单元","tr":"熔融铒单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"oreDict":["cellMoltenThulium"],"name":"熔融铥单元","tr":"熔融铥单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"588":{"oreDict":["cellMoltenSpaceTime"],"name":"熔融时空单元","tr":"熔融时空单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["cellMoltenYtterbium"],"name":"熔融镱单元","tr":"熔融镱单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["cellMoltenLutetium"],"name":"熔融镥单元","tr":"熔融镥单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"oreDict":["cellMoltenTantalum"],"name":"熔融钽单元","tr":"熔融钽单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"oreDict":["cellMoltenTungsten"],"name":"熔融钨单元","tr":"熔融钨单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"oreDict":["cellMoltenOsmium"],"name":"熔融锇单元","tr":"熔融锇单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"oreDict":["cellMoltenIridium"],"name":"熔融铱单元","tr":"熔融铱单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["cellMoltenPlatinum"],"name":"熔融铂单元","tr":"熔融铂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"oreDict":["cellMoltenGold"],"name":"熔融金单元","tr":"熔融金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"599":{"oreDict":["cellMoltenPolybenzimidazole"],"name":"熔融聚苯并咪唑单元","tr":"熔融聚苯并咪唑单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["cellMoltenLead"],"name":"熔融铅单元","tr":"熔融铅单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["cellMoltenBismuth"],"name":"熔融铋单元","tr":"熔融铋单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"602":{"oreDict":["cellMoltenReinforcedGlass"],"name":"熔融防爆玻璃单元","tr":"熔融防爆玻璃单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["cellMoltenThorium"],"name":"熔融钍单元","tr":"熔融钍单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"oreDict":["cellMoltenUranium235"],"name":"熔融铀-235单元","tr":"熔融铀-235单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"98":{"oreDict":["cellMoltenUranium"],"name":"熔融铀-238单元","tr":"熔融铀-238单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"610":{"oreDict":["cellMoltenEpoxidFiberReinforced"],"name":"熔融纤维强化的环氧树脂单元","tr":"熔融纤维强化的环氧树脂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"611":{"oreDict":["cellMoltenBorosilicateGlass"],"name":"熔融硼玻璃单元","tr":"熔融硼玻璃单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"oreDict":["cellMoltenPlutonium"],"name":"熔融钚-239单元","tr":"熔融钚-239单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"oreDict":["cellMoltenPlutonium241"],"name":"熔融钚-241单元","tr":"熔融钚-241单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"613":{"oreDict":["cellMoltenNickelZincFerrite"],"name":"熔融镍锌铁氧体单元","tr":"熔融镍锌铁氧体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"103":{"oreDict":["cellMoltenAmericium"],"name":"熔融镅单元","tr":"熔融镅单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"111":{"oreDict":["cellMoltenTengamPurified"],"name":"熔融纯镃单元","tr":"熔融纯镃单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"112":{"oreDict":["cellMoltenTengamAttuned"],"name":"熔融谐镃单元","tr":"熔融谐镃单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"631":{"oreDict":["cellMoltenPolyphenyleneSulfide"],"name":"熔融聚苯硫醚单元","tr":"熔融聚苯硫醚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"635":{"oreDict":["cellMoltenAnyRubber"," cellMoltenAnySyntheticRubber"," cellMoltenStyreneButadieneRubber"],"name":"熔融丁苯橡胶单元","tr":"熔融丁苯橡胶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"636":{"oreDict":["cellMoltenPolystyrene"],"name":"熔融聚苯乙烯单元","tr":"熔融聚苯乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"129":{"oreDict":["cellMoltenNeutronium"],"name":"熔融中子单元","tr":"熔融中子单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"131":{"oreDict":["cellMoltenSuperconductorUIVBase"],"name":"熔融UIV超导粗胚单元","tr":"熔融UIV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"134":{"oreDict":["cellMoltenSuperconductorUMVBase"],"name":"熔融UMV超导粗胚单元","tr":"熔融UMV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"649":{"oreDict":["cellMoltenPolyvinylChloride"],"name":"熔融聚氯乙烯单元","tr":"熔融聚氯乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"139":{"oreDict":["cellMoltenUniversium"],"name":"熔融宇宙素单元","tr":"熔融宇宙素单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"141":{"oreDict":["cellMoltenEternity"],"name":"熔融永恒单元","tr":"熔融永恒单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"143":{"oreDict":["cellMoltenMagmatter"],"name":"熔融磁物质单元","tr":"熔融磁物质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"201":{"oreDict":["cellMoltenManasteel"],"name":"熔融魔钢单元","tr":"熔融魔钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"202":{"oreDict":["cellMoltenTerrasteel"],"name":"熔融泰拉钢单元","tr":"熔融泰拉钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"203":{"oreDict":["cellMoltenElvenElementium"],"name":"熔融源质钢单元","tr":"熔融源质钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"205":{"oreDict":["cellMoltenGaiaSpirit"],"name":"熔融盖亚之魂单元","tr":"熔融盖亚之魂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"765":{"oreDict":["cellMoltenKevlar"],"name":"熔融凯芙拉单元","tr":"熔融凯芙拉单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"770":{"oreDict":["cellMoltenHeeEndium"],"name":"熔融终末单元","tr":"熔融终末单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"772":{"oreDict":["cellMoltenNickelAluminide"],"name":"熔融铝化镍单元","tr":"熔融铝化镍单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15642":{"oreDict":["cellSteamCracked3Ethane"],"name":"重度蒸汽裂化乙烷单元","tr":"重度蒸汽裂化乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15643":{"oreDict":["cellSteamCracked3Propane"],"name":"重度蒸汽裂化丙烷单元","tr":"重度蒸汽裂化丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15644":{"oreDict":["cellSteamCracked3Butane"],"name":"重度蒸汽裂化丁烷单元","tr":"重度蒸汽裂化丁烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15645":{"oreDict":["cellSteamCracked3Butene"],"name":"重度蒸汽裂化丁烯单元","tr":"重度蒸汽裂化丁烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15646":{"oreDict":["cellSteamCracked3Butadiene"],"name":"重度蒸汽裂化丁二烯单元","tr":"重度蒸汽裂化丁二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"801":{"oreDict":["cellMoltenBlaze"],"name":"熔融烈焰单元","tr":"熔融烈焰单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"803":{"oreDict":["cellMoltenSugar"],"name":"熔融糖单元","tr":"熔融糖单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"804":{"oreDict":["cellMoltenObsidian"],"name":"熔融黑曜石单元","tr":"熔融黑曜石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"810":{"oreDict":["cellMoltenRedstone"],"name":"熔融红石单元","tr":"熔融红石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"811":{"oreDict":["cellMoltenGlowstone"],"name":"熔融萤石单元","tr":"熔融萤石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"300":{"oreDict":["cellMoltenBronze"," cellMoltenAnyBronze"],"name":"熔融青铜单元","tr":"熔融青铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"812":{"oreDict":["cellMoltenElectrotine"],"name":"熔融蓝石单元","tr":"熔融蓝石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"301":{"oreDict":["cellMoltenBrass"],"name":"熔融黄铜单元","tr":"熔融黄铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"302":{"oreDict":["cellMoltenInvar"],"name":"熔融殷钢单元","tr":"熔融殷钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"303":{"oreDict":["cellMoltenElectrum"],"name":"熔融琥珀金单元","tr":"熔融琥珀金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"304":{"oreDict":["cellMoltenWroughtIron"," cellMoltenAnyIron"],"name":"熔融锻铁单元","tr":"熔融锻铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"305":{"oreDict":["cellMoltenSteel"],"name":"熔融钢单元","tr":"熔融钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"306":{"oreDict":["cellMoltenStainlessSteel"],"name":"熔融不锈钢单元","tr":"熔融不锈钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14642":{"oreDict":["cellSteamCracked2Ethane"],"name":"中度蒸汽裂化乙烷单元","tr":"中度蒸汽裂化乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"307":{"oreDict":["cellMoltenPigIron"," cellMoltenAnyIron"],"name":"熔融生铁单元","tr":"熔融生铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14643":{"oreDict":["cellSteamCracked2Propane"],"name":"中度蒸汽裂化丙烷单元","tr":"中度蒸汽裂化丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"308":{"oreDict":["cellMoltenRedAlloy"],"name":"熔融红色合金单元","tr":"熔融红色合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14644":{"oreDict":["cellSteamCracked2Butane"],"name":"中度蒸汽裂化丁烷单元","tr":"中度蒸汽裂化丁烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"309":{"oreDict":["cellMoltenBlueAlloy"],"name":"熔融蓝色合金单元","tr":"熔融蓝色合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14645":{"oreDict":["cellSteamCracked2Butene"],"name":"中度蒸汽裂化丁烯单元","tr":"中度蒸汽裂化丁烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"310":{"oreDict":["cellMoltenCupronickel"],"name":"熔融白铜单元","tr":"熔融白铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14646":{"oreDict":["cellSteamCracked2Butadiene"],"name":"中度蒸汽裂化丁二烯单元","tr":"中度蒸汽裂化丁二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"311":{"oreDict":["cellMoltenNichrome"],"name":"熔融镍铬合金单元","tr":"熔融镍铬合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"312":{"oreDict":["cellMoltenKanthal"],"name":"熔融坎塔尔合金单元","tr":"熔融坎塔尔合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"313":{"oreDict":["cellMoltenMagnalium"],"name":"熔融镁铝合金单元","tr":"熔融镁铝合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"oreDict":["cellMoltenSolderingAlloy"],"name":"熔融焊锡单元","tr":"熔融焊锡单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"315":{"oreDict":["cellMoltenBatteryAlloy"],"name":"熔融电池合金单元","tr":"熔融电池合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"316":{"oreDict":["cellMoltenTungstenSteel"],"name":"熔融钨钢单元","tr":"熔融钨钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"317":{"oreDict":["cellMoltenOsmiridium"],"name":"熔融铱锇合金单元","tr":"熔融铱锇合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"829":{"oreDict":["cellMoltenDeepIron"],"name":"熔融深渊铁单元","tr":"熔融深渊铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15677":{"oreDict":["cellSteamCracked3Ethylene"],"name":"重度蒸汽裂化乙烯单元","tr":"重度蒸汽裂化乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"318":{"oreDict":["cellMoltenSunnarium"],"name":"熔融阳光化合物单元","tr":"熔融阳光化合物单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15678":{"oreDict":["cellSteamCracked3Propene"],"name":"重度蒸汽裂化丙烯单元","tr":"重度蒸汽裂化丙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"319":{"oreDict":["cellMoltenAdamantium"],"name":"熔融精金单元","tr":"熔融精金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"320":{"oreDict":["cellMoltenElectrumFlux"],"name":"熔融通流琥珀金单元","tr":"熔融通流琥珀金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"321":{"oreDict":["cellMoltenEnderium"],"name":"熔融末影(te)单元","tr":"熔融末影(te)单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"323":{"oreDict":["cellMoltenInfusedGold"],"name":"熔融注魔金单元","tr":"熔融注魔金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"324":{"oreDict":["cellMoltenNaquadah"],"name":"熔融硅岩单元","tr":"熔融硅岩单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"325":{"oreDict":["cellMoltenNaquadahAlloy"],"name":"熔融硅岩合金单元","tr":"熔融硅岩合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"326":{"oreDict":["cellMoltenNaquadahEnriched"],"name":"熔融富集硅岩单元","tr":"熔融富集硅岩单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"327":{"oreDict":["cellMoltenNaquadria"],"name":"熔融超能硅岩单元","tr":"熔融超能硅岩单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"328":{"oreDict":["cellMoltenDuranium"],"name":"熔融铿铀单元","tr":"熔融铿铀单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"329":{"oreDict":["cellMoltenTritanium"],"name":"熔融三钛单元","tr":"熔融三钛单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"330":{"oreDict":["cellMoltenThaumium"],"name":"熔融神秘单元","tr":"熔融神秘单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13642":{"oreDict":["cellSteamCracked1Ethane"],"name":"轻度蒸汽裂化乙烷单元","tr":"轻度蒸汽裂化乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"331":{"oreDict":["cellMoltenMithril"],"name":"熔融秘银单元","tr":"熔融秘银单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13643":{"oreDict":["cellSteamCracked1Propane"],"name":"轻度蒸汽裂化丙烷单元","tr":"轻度蒸汽裂化丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13644":{"oreDict":["cellSteamCracked1Butane"],"name":"轻度蒸汽裂化丁烷单元","tr":"轻度蒸汽裂化丁烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"333":{"oreDict":["cellMoltenAstralSilver"],"name":"熔融星辰银单元","tr":"熔融星辰银单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13645":{"oreDict":["cellSteamCracked1Butene"],"name":"轻度蒸汽裂化丁烯单元","tr":"轻度蒸汽裂化丁烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"334":{"oreDict":["cellMoltenBlackSteel"],"name":"熔融黑钢单元","tr":"熔融黑钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13646":{"oreDict":["cellSteamCracked1Butadiene"],"name":"轻度蒸汽裂化丁二烯单元","tr":"轻度蒸汽裂化丁二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"335":{"oreDict":["cellMoltenDamascusSteel"],"name":"熔融大马士革钢单元","tr":"熔融大马士革钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"336":{"oreDict":["cellMoltenShadowIron"],"name":"熔融暗影铁单元","tr":"熔融暗影铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"337":{"oreDict":["cellMoltenShadowSteel"],"name":"熔融暗影钢单元","tr":"熔融暗影钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"338":{"oreDict":["cellMoltenIronWood"],"name":"熔融铁木单元","tr":"熔融铁木单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"340":{"oreDict":["cellMoltenMeteoricIron"],"name":"熔融陨铁单元","tr":"熔融陨铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"341":{"oreDict":["cellMoltenMeteoricSteel"],"name":"熔融陨钢单元","tr":"熔融陨钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14677":{"oreDict":["cellSteamCracked2Ethylene"],"name":"中度蒸汽裂化乙烯单元","tr":"中度蒸汽裂化乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"342":{"oreDict":["cellMoltenDarkIron"],"name":"熔融玄铁单元","tr":"熔融玄铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14678":{"oreDict":["cellSteamCracked2Propene"],"name":"中度蒸汽裂化丙烯单元","tr":"中度蒸汽裂化丙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"343":{"oreDict":["cellMoltenCobaltBrass"],"name":"熔融钴黄铜单元","tr":"熔融钴黄铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"344":{"oreDict":["cellMoltenUltimet"],"name":"熔融哈氏合金单元","tr":"熔融哈氏合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"856":{"oreDict":["cellMoltenSiliconSolarGrade"],"name":"熔融太阳能级硅(多晶硅)单元","tr":"熔融太阳能级硅(多晶硅)单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"345":{"oreDict":["cellMoltenAnyCopper"," cellMoltenAnnealedCopper"],"name":"熔融退火铜单元","tr":"熔融退火铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"346":{"oreDict":["cellMoltenFierySteel"],"name":"熔融炽热的血液单元","tr":"熔融炽热的血液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"348":{"oreDict":["cellMoltenRedSteel"],"name":"熔融红钢单元","tr":"熔融红钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"349":{"oreDict":["cellMoltenBlueSteel"],"name":"熔融蓝钢单元","tr":"熔融蓝钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"350":{"oreDict":["cellMoltenSterlingSilver"],"name":"熔融标准纯银单元","tr":"熔融标准纯银单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"351":{"oreDict":["cellMoltenRoseGold"],"name":"熔融玫瑰金单元","tr":"熔融玫瑰金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"352":{"oreDict":["cellMoltenBlackBronze"],"name":"熔融黑青铜单元","tr":"熔融黑青铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"353":{"oreDict":["cellMoltenBismuthBronze"],"name":"熔融铋青铜单元","tr":"熔融铋青铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"354":{"oreDict":["cellMoltenIronMagnetic"],"name":"熔融磁化铁单元","tr":"熔融磁化铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12642":{"oreDict":["cellHydroCracked3Ethane"],"name":"重度加氢裂化乙烷单元","tr":"重度加氢裂化乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"355":{"oreDict":["cellMoltenSteelMagnetic"],"name":"熔融磁化钢单元","tr":"熔融磁化钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12643":{"oreDict":["cellHydroCracked3Propane"],"name":"重度加氢裂化丙烷单元","tr":"重度加氢裂化丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"356":{"oreDict":["cellMoltenNeodymiumMagnetic"],"name":"熔融磁化钕单元","tr":"熔融磁化钕单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"868":{"oreDict":["cellMoltenTrinium"],"name":"熔融三元金属单元","tr":"熔融三元金属单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12644":{"oreDict":["cellHydroCracked3Butane"],"name":"重度加氢裂化丁烷单元","tr":"重度加氢裂化丁烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"357":{"oreDict":["cellMoltenVanadiumGallium"],"name":"熔融钒镓合金单元","tr":"熔融钒镓合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12645":{"oreDict":["cellHydroCracked3Butene"],"name":"重度加氢裂化丁烯单元","tr":"重度加氢裂化丁烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"358":{"oreDict":["cellMoltenYttriumBariumCuprate"],"name":"熔融钇钡铜氧单元","tr":"熔融钇钡铜氧单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12646":{"oreDict":["cellHydroCracked3Butadiene"],"name":"重度加氢裂化丁二烯单元","tr":"重度加氢裂化丁二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"359":{"oreDict":["cellMoltenNiobiumNitride"],"name":"熔融氮化铌单元","tr":"熔融氮化铌单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"360":{"oreDict":["cellMoltenNiobiumTitanium"],"name":"熔融铌钛合金单元","tr":"熔融铌钛合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"361":{"oreDict":["cellMoltenChromiumDioxide"],"name":"熔融二氧化铬单元","tr":"熔融二氧化铬单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"362":{"oreDict":["cellMoltenKnightmetal"],"name":"熔融骑士金属单元","tr":"熔融骑士金属单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"874":{"oreDict":["cellMoltenPlastic"],"name":"熔融聚乙烯单元","tr":"熔融聚乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"363":{"oreDict":["cellMoltenTinAlloy"],"name":"熔融锡铁合金单元","tr":"熔融锡铁合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"364":{"oreDict":["cellMoltenDarkSteel"],"name":"熔融玄钢单元","tr":"熔融玄钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"365":{"oreDict":["cellMoltenElectricalSteel"],"name":"熔融磁钢单元","tr":"熔融磁钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13677":{"oreDict":["cellSteamCracked1Ethylene"],"name":"轻度蒸汽裂化乙烯单元","tr":"轻度蒸汽裂化乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"366":{"oreDict":["cellMoltenEnergeticAlloy"],"name":"熔融充能合金单元","tr":"熔融充能合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13678":{"oreDict":["cellSteamCracked1Propene"],"name":"轻度蒸汽裂化丙烯单元","tr":"轻度蒸汽裂化丙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"367":{"oreDict":["cellMoltenVibrantAlloy"],"name":"熔融脉冲合金单元","tr":"熔融脉冲合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"368":{"oreDict":["cellMoltenShadow"],"name":"熔融暗影金属单元","tr":"熔融暗影金属单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"880":{"oreDict":["cellMoltenAnyRubber"," cellMoltenRubber"],"name":"熔融橡胶单元","tr":"熔融橡胶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"369":{"oreDict":["cellMoltenConductiveIron"],"name":"熔融导电铁单元","tr":"熔融导电铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"370":{"oreDict":["cellMoltenTungstenCarbide"],"name":"熔融碳化钨单元","tr":"熔融碳化钨单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"371":{"oreDict":["cellMoltenVanadiumSteel"],"name":"熔融钒钢单元","tr":"熔融钒钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"372":{"oreDict":["cellMoltenHSSG"],"name":"熔融高速钢-G单元","tr":"熔融高速钢-G单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"884":{"oreDict":["cellMoltenDesh"],"name":"熔融戴斯单元","tr":"熔融戴斯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"373":{"oreDict":["cellMoltenHSSE"],"name":"熔融高速钢-E单元","tr":"熔融高速钢-E单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"374":{"oreDict":["cellMoltenHSSS"],"name":"熔融高速钢-S单元","tr":"熔融高速钢-S单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15735":{"oreDict":["cellSteamCracked3Gas"],"name":"重度蒸汽裂化炼油气单元","tr":"重度蒸汽裂化炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"378":{"oreDict":["cellMoltenPulsatingIron"],"name":"熔融脉冲铁单元","tr":"熔融脉冲铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"890":{"oreDict":["cellMoltenGlass"],"name":"熔融玻璃单元","tr":"熔融玻璃单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11642":{"oreDict":["cellHydroCracked2Ethane"],"name":"中度加氢裂化乙烷单元","tr":"中度加氢裂化乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"379":{"oreDict":["cellMoltenSoularium"],"name":"熔融魂金单元","tr":"熔融魂金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11643":{"oreDict":["cellHydroCracked2Propane"],"name":"中度加氢裂化丙烷单元","tr":"中度加氢裂化丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15739":{"oreDict":["cellSteamCracked3Naphtha"],"name":"重度蒸汽裂化石脑油单元","tr":"重度蒸汽裂化石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"380":{"oreDict":["cellMoltenEnderiumBase"],"name":"熔融末影粗胚单元","tr":"熔融末影粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11644":{"oreDict":["cellHydroCracked2Butane"],"name":"中度加氢裂化丁烷单元","tr":"中度加氢裂化丁烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15740":{"oreDict":["cellSteamCracked3LightFuel"],"name":"重度蒸汽裂化轻燃油单元","tr":"重度蒸汽裂化轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"381":{"oreDict":["cellMoltenRedstoneAlloy"],"name":"熔融红石合金单元","tr":"熔融红石合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11645":{"oreDict":["cellHydroCracked2Butene"],"name":"中度加氢裂化丁烯单元","tr":"中度加氢裂化丁烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15741":{"oreDict":["cellSteamCracked3HeavyFuel"],"name":"重度蒸汽裂化重燃油单元","tr":"重度蒸汽裂化重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"382":{"oreDict":["cellMoltenArdite"],"name":"熔融阿迪特单元","tr":"熔融阿迪特单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"894":{"oreDict":["cellMoltenCheese"],"name":"熔融奶酪单元","tr":"熔融奶酪单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11646":{"oreDict":["cellHydroCracked2Butadiene"],"name":"中度加氢裂化丁二烯单元","tr":"中度加氢裂化丁二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"383":{"oreDict":["cellMoltenReinforced"],"name":"熔融强化单元","tr":"熔融强化单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"384":{"oreDict":["cellMoltenGalgadorian"],"name":"熔融混合晶单元","tr":"熔融混合晶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"385":{"oreDict":["cellMoltenEnhancedGalgadorian"],"name":"熔融强化混合晶单元","tr":"熔融强化混合晶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"386":{"oreDict":["cellMoltenManyullyn"],"name":"熔融玛玉灵单元","tr":"熔融玛玉灵单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"387":{"oreDict":["cellMoltenMytryl"],"name":"熔融深空秘银单元","tr":"熔融深空秘银单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"388":{"oreDict":["cellMoltenBlackPlutonium"],"name":"熔融黑钚单元","tr":"熔融黑钚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"389":{"oreDict":["cellMoltenCallistoIce"],"name":"熔融木卫四冰单元","tr":"熔融木卫四冰单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12677":{"oreDict":["cellHydroCracked3Ethylene"],"name":"重度加氢裂化乙烯单元","tr":"重度加氢裂化乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"390":{"oreDict":["cellMoltenLedox"],"name":"熔融深铅单元","tr":"熔融深铅单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12678":{"oreDict":["cellHydroCracked3Propene"],"name":"重度加氢裂化丙烯单元","tr":"重度加氢裂化丙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"391":{"oreDict":["cellMoltenQuantium"],"name":"熔融量子单元","tr":"熔融量子单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"392":{"oreDict":["cellMoltenDuralumin"],"name":"熔融硬铝单元","tr":"熔融硬铝单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"393":{"oreDict":["cellMoltenOriharukon"],"name":"熔融奥利哈钢单元","tr":"熔融奥利哈钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"394":{"oreDict":["cellMoltenInfinityCatalyst"],"name":"熔融无尽催化剂单元","tr":"熔融无尽催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"395":{"oreDict":["cellMoltenBedrockium"],"name":"熔融基岩单元","tr":"熔融基岩单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"397":{"oreDict":["cellMoltenInfinity"],"name":"熔融无尽单元","tr":"熔融无尽单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"398":{"oreDict":["cellMoltenMysteriousCrystal"],"name":"熔融神秘水晶单元","tr":"熔融神秘水晶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"399":{"oreDict":["cellMoltenSamariumMagnetic"],"name":"熔融磁化钐单元","tr":"熔融磁化钐单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14735":{"oreDict":["cellSteamCracked2Gas"],"name":"中度蒸汽裂化炼油气单元","tr":"中度蒸汽裂化炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"400":{"oreDict":["cellMoltenAlumite"],"name":"熔融耐酸铝单元","tr":"熔融耐酸铝单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"912":{"oreDict":["cellMoltenChrysotile"],"name":"熔融白石棉单元","tr":"熔融白石棉单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"401":{"oreDict":["cellMoltenEndSteel"],"name":"熔融末影钢单元","tr":"熔融末影钢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"913":{"oreDict":["cellMoltenRealgar"],"name":"熔融雄黄单元","tr":"熔融雄黄单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"402":{"oreDict":["cellMoltenCrudeSteel"],"name":"熔融复合粘土单元","tr":"熔融复合粘土单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10642":{"oreDict":["cellHydroCracked1Ethane"],"name":"轻度加氢裂化乙烷单元","tr":"轻度加氢裂化乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"403":{"oreDict":["cellMoltenCrystallineAlloy"],"name":"熔融晶化合金单元","tr":"熔融晶化合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10643":{"oreDict":["cellHydroCracked1Propane"],"name":"轻度加氢裂化丙烷单元","tr":"轻度加氢裂化丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14739":{"oreDict":["cellSteamCracked2Naphtha"],"name":"中度蒸汽裂化石脑油单元","tr":"中度蒸汽裂化石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"404":{"oreDict":["cellMoltenMelodicAlloy"],"name":"熔融旋律合金单元","tr":"熔融旋律合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10644":{"oreDict":["cellHydroCracked1Butane"],"name":"轻度加氢裂化丁烷单元","tr":"轻度加氢裂化丁烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14740":{"oreDict":["cellSteamCracked2LightFuel"],"name":"中度蒸汽裂化轻燃油单元","tr":"中度蒸汽裂化轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"405":{"oreDict":["cellMoltenStellarAlloy"],"name":"熔融恒星合金单元","tr":"熔融恒星合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10645":{"oreDict":["cellHydroCracked1Butene"],"name":"轻度加氢裂化丁烯单元","tr":"轻度加氢裂化丁烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14741":{"oreDict":["cellSteamCracked2HeavyFuel"],"name":"中度蒸汽裂化重燃油单元","tr":"中度蒸汽裂化重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"406":{"oreDict":["cellMoltenCrystallinePinkSlime"],"name":"熔融晶化粉红史莱姆单元","tr":"熔融晶化粉红史莱姆单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10646":{"oreDict":["cellHydroCracked1Butadiene"],"name":"轻度加氢裂化丁二烯单元","tr":"轻度加氢裂化丁二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"407":{"oreDict":["cellMoltenEnergeticSilver"],"name":"熔融充能银单元","tr":"熔融充能银单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"408":{"oreDict":["cellMoltenVividAlloy"],"name":"熔融生动合金单元","tr":"熔融生动合金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11677":{"oreDict":["cellHydroCracked2Ethylene"],"name":"中度加氢裂化乙烯单元","tr":"中度加氢裂化乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11678":{"oreDict":["cellHydroCracked2Propene"],"name":"中度加氢裂化丙烯单元","tr":"中度加氢裂化丙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13735":{"oreDict":["cellSteamCracked1Gas"],"name":"轻度蒸汽裂化炼油气单元","tr":"轻度蒸汽裂化炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13739":{"oreDict":["cellSteamCracked1Naphtha"],"name":"轻度蒸汽裂化石脑油单元","tr":"轻度蒸汽裂化石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13740":{"oreDict":["cellSteamCracked1LightFuel"],"name":"轻度蒸汽裂化轻燃油单元","tr":"轻度蒸汽裂化轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13741":{"oreDict":["cellSteamCracked1HeavyFuel"],"name":"轻度蒸汽裂化重燃油单元","tr":"轻度蒸汽裂化重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"947":{"oreDict":["cellMoltenConcrete"],"name":"熔融混凝土单元","tr":"熔融混凝土单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10677":{"oreDict":["cellHydroCracked1Ethylene"],"name":"轻度加氢裂化乙烯单元","tr":"轻度加氢裂化乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10678":{"oreDict":["cellHydroCracked1Propene"],"name":"轻度加氢裂化丙烯单元","tr":"轻度加氢裂化丙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"951":{"oreDict":["cellMoltenVyroxeres"],"name":"熔融幽冥剧毒结晶单元","tr":"熔融幽冥剧毒结晶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"952":{"oreDict":["cellMoltenCeruclase"],"name":"熔融暗影秘银单元","tr":"熔融暗影秘银单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"956":{"oreDict":["cellMoltenTartarite"],"name":"熔融溶火之石单元","tr":"熔融溶火之石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12735":{"oreDict":["cellHydroCracked3Gas"],"name":"重度加氢裂化炼油气单元","tr":"重度加氢裂化炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12739":{"oreDict":["cellHydroCracked3Naphtha"],"name":"重度加氢裂化石脑油单元","tr":"重度加氢裂化石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12740":{"oreDict":["cellHydroCracked3LightFuel"],"name":"重度加氢裂化轻燃油单元","tr":"重度加氢裂化轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"12741":{"oreDict":["cellHydroCracked3HeavyFuel"],"name":"重度加氢裂化重燃油单元","tr":"重度加氢裂化重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"966":{"oreDict":["cellMoltenOrichalcum"],"name":"熔融山铜单元","tr":"熔融山铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"970":{"oreDict":["cellMoltenVoid"],"name":"熔融虚空单元","tr":"熔融虚空单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"974":{"oreDict":["cellMoltenSuperconductorUEVBase"],"name":"熔融UEV超导粗胚单元","tr":"熔融UEV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"975":{"oreDict":["cellMoltenDraconium"],"name":"熔融龙单元","tr":"熔融龙单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"976":{"oreDict":["cellMoltenDraconiumAwakened"],"name":"熔融觉醒龙单元","tr":"熔融觉醒龙单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"977":{"oreDict":["cellMoltenBloodInfusedIron"],"name":"熔融注血铁单元","tr":"熔融注血铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"978":{"oreDict":["cellMoltenIchorium"],"name":"熔融灵宝单元","tr":"熔融灵宝单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"979":{"oreDict":["cellMoltenRadoxPoly"],"name":"熔融拉多X聚合物单元","tr":"熔融拉多X聚合物单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"980":{"oreDict":["cellMoltenGalliumArsenide"],"name":"熔融砷化镓单元","tr":"熔融砷化镓单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"981":{"oreDict":["cellMoltenIndiumGalliumPhosphide"],"name":"熔融磷化铟镓单元","tr":"熔融磷化铟镓单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"470":{"oreDict":["cellMoltenEpoxid"],"name":"熔融环氧树脂单元","tr":"熔融环氧树脂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"982":{"oreDict":["cellMoltenCosmicNeutronium"],"name":"熔融宇宙中子态素单元","tr":"熔融宇宙中子态素单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"471":{"oreDict":["cellMoltenSilicone"," cellMoltenAnyRubber"," cellMoltenAnySyntheticRubber"],"name":"熔融硅橡胶单元","tr":"熔融硅橡胶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11735":{"oreDict":["cellHydroCracked2Gas"],"name":"中度加氢裂化炼油气单元","tr":"中度加氢裂化炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"472":{"oreDict":["cellMoltenPolycaprolactam"],"name":"熔融聚己内酰胺单元","tr":"熔融聚己内酰胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"984":{"oreDict":["cellMoltenFlerovium_GT5U"],"name":"熔融单元","tr":"熔融单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"473":{"oreDict":["cellMoltenPolytetrafluoroethylene"],"name":"熔融聚四氟乙烯单元","tr":"熔融聚四氟乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"985":{"oreDict":["cellMoltenLongasssuperconductornameforuhvwire"],"name":"熔融UHV超导粗胚单元","tr":"熔融UHV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"986":{"oreDict":["cellMoltenLongasssuperconductornameforuvwire"],"name":"熔融UV超导粗胚单元","tr":"熔融UV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"987":{"oreDict":["cellMoltenPentacadmiummagnesiumhexaoxid"],"name":"熔融MV超导粗胚单元","tr":"熔融MV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11739":{"oreDict":["cellHydroCracked2Naphtha"],"name":"中度加氢裂化石脑油单元","tr":"中度加氢裂化石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"988":{"oreDict":["cellMoltenTitaniumonabariumdecacoppereikosaoxid"],"name":"熔融HV超导粗胚单元","tr":"熔融HV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11740":{"oreDict":["cellHydroCracked2LightFuel"],"name":"中度加氢裂化轻燃油单元","tr":"中度加氢裂化轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"989":{"oreDict":["cellMoltenUraniumtriplatinid"],"name":"熔融EV超导粗胚单元","tr":"熔融EV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11741":{"oreDict":["cellHydroCracked2HeavyFuel"],"name":"中度加氢裂化重燃油单元","tr":"中度加氢裂化重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"990":{"oreDict":["cellMoltenVanadiumtriindinid"],"name":"熔融IV超导粗胚单元","tr":"熔融IV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"991":{"oreDict":["cellMoltenTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"熔融LuV超导粗胚单元","tr":"熔融LuV超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"992":{"oreDict":["cellMoltenTetranaquadahdiindiumhexaplatiumosminid"],"name":"熔融ZPM超导粗胚单元","tr":"熔融ZPM超导粗胚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"485":{"oreDict":["cellMoltenAlduorite"],"name":"熔融神秘蓝金单元","tr":"熔融神秘蓝金单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"488":{"oreDict":["cellMoltenRubracium"],"name":"熔融褐铜单元","tr":"熔融褐铜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"489":{"oreDict":["cellMoltenVulcanite"],"name":"熔融胶木单元","tr":"熔融胶木单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10735":{"oreDict":["cellHydroCracked1Gas"],"name":"轻度加氢裂化炼油气单元","tr":"轻度加氢裂化炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10739":{"oreDict":["cellHydroCracked1Naphtha"],"name":"轻度加氢裂化石脑油单元","tr":"轻度加氢裂化石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10740":{"oreDict":["cellHydroCracked1LightFuel"],"name":"轻度加氢裂化轻燃油单元","tr":"轻度加氢裂化轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"10741":{"oreDict":["cellHydroCracked1HeavyFuel"],"name":"轻度加氢裂化重燃油单元","tr":"轻度加氢裂化重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicBoots":{"0":{"name":"Draconic Boots","tr":"龙之靴","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-12}},"IC2:obscurator":{"1":{"name":"Obscurator","tr":"拟态板","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Obscurator","tr":"拟态板","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemDustWatertightSteel":{"0":{"oreDict":["dustWatertightSteel"],"name":"防水钢粉","tr":"防水钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:leekseedItem":{"0":{"oreDict":["listAllseed"," seedLeek"],"name":"Leek Seed","tr":"韭葱种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:armourInhibitor":{"0":{"name":"Armour Inhibitor","tr":"装甲抑制器","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockNetherRune":{"0":{"name":"Runed Obsidian (Rock)","tr":"符文黑曜石(岩石)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Runed Obsidian (Sea)","tr":"符文黑曜石(炽海)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Runed Obsidian (Crystal)","tr":"符文黑曜石(晶体)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Runed Obsidian (Light)","tr":"符文黑曜石(光明)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Runed Obsidian (Soul)","tr":"符文黑曜石(灵魂)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Runed Obsidian (Celerity)","tr":"符文黑曜石(迅捷)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTantalloy60":{"0":{"oreDict":["dustTantalloy60"],"name":"钽钨合金-60粉","tr":"钽钨合金-60粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTantalloy61":{"0":{"oreDict":["dustTantalloy61"],"name":"钽钨合金-61粉","tr":"钽钨合金-61粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersSafe":{"0":{"name":"Carpenter\u0027s Safe","tr":"木匠保险箱","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_CompressedOxygen":{"0":{"name":"Compressed Oxygen Gas","tr":"压缩氧气","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:manaAuraProvider":{"0":{"name":"Mana Apiary Booster","tr":"魔力蜂箱加速器","tab":"魔法蜜蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:BrailPowered":{"0":{"name":"Powered Blaze Rail","tr":"充能烈焰轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:mirrorblock":{"0":{"name":"Mirror","tr":"魔镜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtZirconiumCarbide":{"0":{"oreDict":["frameGtZirconiumCarbide"],"name":"碳化锆框架","tr":"碳化锆框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodClock":{"0":{"name":"Acacia Clock","tr":"金合欢时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Clock","tr":"巴尔杉时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Clock","tr":"猴面包树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Clock","tr":"樱桃树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Clock","tr":"栗树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Clock","tr":"柑橘树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Clock","tr":"乌檀树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Clock","tr":"樟树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Clock","tr":"木棉时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Clock","tr":"落叶松时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Clock","tr":"菩提树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Clock","tr":"白皮树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Clock","tr":"桃花心木时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Clock","tr":"枫树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Clock","tr":"棕榈树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Clock","tr":"木瓜树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:rabbitcookedItem":{"0":{"oreDict":["foodRabbitcooked"," listAllmeatcooked"," listAllrabbitcooked"],"name":"Cooked Rabbit","tr":"熟兔肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:witchleaves":{"0":{"oreDict":["treeLeaves"],"name":"Rowan Leaves","tr":"山梨树树叶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Alder Leaves","tr":"赤杨树树叶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Hawthorn Leaves","tr":"山楂树树叶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:nucrete":{"0":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Structural Concrete","tr":"结构混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:cinder":{"0":{"name":"Cinder","tr":"炉渣","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockFire_water":{"0":{"name":"Fire Water","tr":"火焰水","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockEssentiaLocusAggregator":{"0":{"name":"Essentia Aggregator","tr":"源质聚合器","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:devnull":{"0":{"name":"/dev/null","tr":"/dev/null","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyGermanium":{"0":{"oreDict":["dustTinyGermanium"],"name":"小撮锗粉","tr":"小撮锗粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockFermium":{"0":{"oreDict":["blockFermium"],"name":"镄块","tr":"镄块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedGadoliniteCe":{"0":{"oreDict":["crushedPurifiedGadoliniteCe"],"name":"Purified Crushed Gadolinite (Ce) Ore","tr":"洗净的硅铍钇矿(Ce)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedDemicheleiteBr":{"0":{"oreDict":["crushedCentrifugedDemicheleiteBr"],"name":"Centrifuged Crushed Demicheleite (Br) Ore","tr":"离心溴硫铋(Br)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureLafossaite":{"0":{"oreDict":["dustPureLafossaite"],"name":"Purified Lafossaite Dust","tr":"纯净铊盐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:demonBloodShard":{"0":{"name":"Demon Blood Shard","tr":"恶魔气血碎片","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TungstenSteelIronPlate":{"0":{"name":"Tungsten-Steel-Iron Plate","tr":"钨钢铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin3":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemTFBPDesertification":{"0":{"name":"TFBP - Desertification","tr":"地形转换模板-沙漠","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:pumpkin2":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin1":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockFluxGoo":{"0":{"name":"Flux Goo","tr":"咒波粘浆","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_blockLapis":{"0":{"oreDict":["blockLapis"," blockLapisBlack"],"name":"Colored Lapis Lazuli Block (White Frequency)","tr":"染色 青金石块 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockLapis"," blockLapisRed"],"name":"Colored Lapis Lazuli Block (Orange Frequency)","tr":"染色 青金石块 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockLapis"," blockLapisGreen"],"name":"Colored Lapis Lazuli Block (Magenta Frequency)","tr":"染色 青金石块 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockLapis"," blockLapisBrown"],"name":"Colored Lapis Lazuli Block (Light Blue Frequency)","tr":"染色 青金石块 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockLapis"," blockLapisBlue"],"name":"Colored Lapis Lazuli Block (Yellow Frequency)","tr":"染色 青金石块 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockLapis"," blockLapisPurple"],"name":"Colored Lapis Lazuli Block (Lime Frequency)","tr":"染色 青金石块 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockLapis"," blockLapisCyan"],"name":"Colored Lapis Lazuli Block (Pink Frequency)","tr":"染色 青金石块 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockLapis"," blockLapisLightGray"],"name":"Colored Lapis Lazuli Block (Gray Frequency)","tr":"染色 青金石块 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockLapis"," blockLapisGray"],"name":"Colored Lapis Lazuli Block (Light Gray Frequency)","tr":"染色 青金石块 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockLapis"," blockLapisPink"],"name":"Colored Lapis Lazuli Block (Cyan Frequency)","tr":"染色 青金石块 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockLapisLime"," blockLapis"],"name":"Colored Lapis Lazuli Block (Purple Frequency)","tr":"染色 青金石块 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockLapis"," blockLapisYellow"],"name":"Colored Lapis Lazuli Block (Blue Frequency)","tr":"染色 青金石块 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockLapis"," blockLapisLightBlue"],"name":"Colored Lapis Lazuli Block (Brown Frequency)","tr":"染色 青金石块 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockLapis"," blockLapisMagenta"],"name":"Colored Lapis Lazuli Block (Green Frequency)","tr":"染色 青金石块 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockLapis"," blockLapisOrange"],"name":"Colored Lapis Lazuli Block (Red Frequency)","tr":"染色 青金石块 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockLapis"," blockLapisWhite"],"name":"Colored Lapis Lazuli Block (Black Frequency)","tr":"染色 青金石块 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:stalkgarden":{"0":{"name":"Stalk Garden","tr":"植茎菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:advancedRadiationProtectionPlate":{"0":{"name":"Advanced Radiation Proof Plate","tr":"进阶防辐射板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LapotronDust":{"0":{"name":"Lapotron Dust","tr":"兰波顿粉","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:sweetpotatoItem":{"0":{"oreDict":["cropSweetpotato"," listAllrootveggie"," listAllveggie"],"name":"Sweet Potato","tr":"红薯","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemBarrel":{"0":{"name":"Empty Booze Barrel","tr":"空酒桶","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:infusedInkwell":{"0":{"name":"Infused Scribing Tools (NYI)","tr":"注魔笔与墨(NYI)","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":801}},"IC2:reactorLithiumCell":{"1":{"name":"Fuel Rod (Lithium)","tr":"燃料棒(锂)","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"dreamcraft:item.MasterOrb":{"0":{"name":"Master Orb","tr":"导师宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:backpack.apothecary.t1":{"0":{"name":"Apothecary\u0027s Backpack","tr":"药剂师背包","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemToolbox":{"0":{"name":"Tool Box","tr":"工具盒","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:elementiumHelm":{"0":{"name":"Elementium Helmet","tr":"源质钢头盔","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":199}},"TwilightForest:item.arcticFur":{"0":{"name":"Arctic Fur","tr":"极地毛皮","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustBlackTitanium":{"0":{"oreDict":["dustBlackTitanium"],"name":"黑钛粉","tr":"黑钛粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:backpack.apothecary.t2":{"0":{"name":"Woven Apothecary\u0027s Backpack","tr":"编织的药剂师背包","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pambellpepperCrop":{"0":{"name":"Bell Pepper Crop","tr":"甜椒","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLafiumCompound":{"0":{"oreDict":["dustTinyLafiumCompound"],"name":"小撮路菲恩化合物粉","tr":"小撮路菲恩化合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin9":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"berriespp:BppPotions":{"0":{"name":"Bottled Fermented Wheat","tr":"瓶装发酵小麦酒","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Bottled Korn","tr":"瓶装科恩酒","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Bottled Doppelkorn","tr":"瓶装的二次蒸馏科恩酒","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Bottled Fermented Reedwater","tr":"瓶装发酵甘蔗水","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Bottled Sugar Whine","tr":"瓶装糖浆","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Bottled Mash","tr":"瓶装麦芽浆","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Bottled Wash","tr":"瓶装淡酒","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Bottled Generic High Proof","tr":"瓶装无商标高酒精度饮料(假酒)","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Real Bottled Jägermeister!","tr":"瓶装正牌野格牌利口酒!","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Bottled Fake Jägermeister","tr":"瓶装假冒野格牌利口酒","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:boundLeggings":{"0":{"name":"Bound Leggings","tr":"约束护腿","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"chisel:pumpkin8":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockLootUrn":{"0":{"name":"Old Urn","tr":"古旧之瓮","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Old Urn","tr":"古旧之瓮","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Old Urn","tr":"古旧之瓮","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin7":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:darkQuartzItem":{"0":{"name":"Smokey Quartz","tr":"烟黑石英","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin6":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:thermionicTubes":{"0":{"name":"Copper Electron Tube","tr":"铜电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Tin Electron Tube","tr":"锡电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Bronze Electron Tube","tr":"青铜电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Iron Electron Tube","tr":"铁电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Golden Electron Tube","tr":"金电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Diamantine Electron Tube","tr":"钻石电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Electron Tube","tr":"黑曜石电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Blazing Electron Tube","tr":"烈焰电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Rubberised Electron Tube","tr":"橡胶电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Emerald Electron Tube","tr":"绿宝石电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Apatine Electron Tube","tr":"磷灰石电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Lapis Electron Tube","tr":"青金石电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Ender Electron Tube","tr":"末影电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Uranium238 Electron Tube","tr":"铀-238电子管","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedGlowstone":{"0":{"name":"Crated Glowstone Dust","tr":"装箱的萤石粉","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin5":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin4":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:telepositionFocus":{"0":{"name":"Teleposition Focus","tr":"传送方位核心","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:tile.machineTiered":{"0":{"name":"Energy Storage Module","tr":"能量存储模块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Electric Furnace","tr":"电炉","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Energy Storage Cluster","tr":"储能簇","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Electric Arc Furnace","tr":"电弧炉","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gooseberrysmoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodGooseberrysmoothie"],"name":"Gooseberry Smoothie","tr":"醋栗冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:skyDirtRod":{"0":{"name":"Rod of the Highlands","tr":"高原法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:spectralstone":{"0":{"name":"Spectral Stone","tr":"幽魂石","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"17":{"name":"Spectral Stone","tr":"幽魂石","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"18":{"name":"Spectral Stone","tr":"幽魂石","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"19":{"name":"Spectral Stone","tr":"幽魂石","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1}},"StorageDrawersMisc:halfDrawers2_1":{"0":{"oreDict":["drawerBasic"],"name":"Compact Yellow Drawers 1x2","tr":"小型黄色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact White Drawers 1x2","tr":"小型白色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Red Drawers 1x2","tr":"小型红色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Grey Drawers 1x2","tr":"小型灰色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Greatwood Drawers 1x2","tr":"小型宏伟之木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Silverwood Drawers 1x2","tr":"小型银木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Rowan Drawers 1x2","tr":"小型山梨木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Alder Drawers 1x2","tr":"小型赤杨木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Hawthorn Drawers 1x2","tr":"小型山楂木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Treated Wood Drawers 1x2","tr":"小型防腐木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Livingwood Drawers 1x2","tr":"小型活木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Dreamwood Drawers 1x2","tr":"小型梦之木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hardSand":{"0":{"name":"Hardened Sand","tr":"硬化沙子","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltBlackMetal":{"0":{"oreDict":["boltBlackMetal"],"name":"黑物质螺栓","tr":"黑物质螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:halfDrawers2_0":{"0":{"oreDict":["drawerBasic"],"name":"Compact Redwood Drawers 1x2","tr":"小型红木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Fir Drawers 1x2","tr":"小型冷杉抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Acacia Drawers 1x2","tr":"小型刺槐抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Cypress Drawers 1x2","tr":"小型柏树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Japanese Maple Drawers 1x2","tr":"小型日本枫树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Rainbow Eucalyptus Drawers 1x2","tr":"小型彩虹桉树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Autumn Drawers 1x2","tr":"小型秋树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Bald Cypress Drawers 1x2","tr":"小型落羽松抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Sakura Drawers 1x2","tr":"小型樱花树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemFamiliar":{"0":{"name":"Ethereal Familiar (Deprecated)","tr":"天域使魔","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1}},"enhancedlootbags:lootbag":{"0":{"name":"LootBag (Default)","tr":"战利品袋(默认)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"LootBag (Basic Stone Age)","tr":"战利品袋(Basic Stone Age)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"LootBag (Steam Age)","tr":"战利品袋(Steam Age)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"LootBag (ULV)","tr":"战利品袋(ULV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"LootBag (Tier 1 LV)","tr":"战利品袋(Tier 1 LV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"LootBag (Tier 2 MV)","tr":"战利品袋(Tier 2 MV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"LootBag (Tier 3 HV)","tr":"战利品袋(Tier 3 HV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"LootBag (Tier 4 EV)","tr":"战利品袋(Tier 4 EV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"LootBag (Tier 5 IV)","tr":"战利品袋(Tier 5 IV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"LootBag (Magic Novice)","tr":"战利品袋(Magic Novice)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"LootBag (Magic Adept)","tr":"战利品袋(Magic Adept)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"LootBag (Magic Master)","tr":"战利品袋(Magic Master)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"LootBag (Magic Grandmaster)","tr":"战利品袋(Magic Grandmaster)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"LootBag (Magic Grandmaster - Unique)","tr":"战利品袋(Magic Grandmaster - Unique)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"LootBag (Legendary)","tr":"战利品袋(Legendary)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"LootBag (Legendary - Unique)","tr":"战利品袋(Legendary - Unique)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"LootBag (BM Novice)","tr":"战利品袋(BM Novice)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"LootBag (BM Adept)","tr":"战利品袋(BM Adept)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"LootBag (BM Master)","tr":"战利品袋(BM Master)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"LootBag (Forest Ranger Basic)","tr":"战利品袋(Forest Ranger Basic)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"LootBag (Forest Ranger Advanced)","tr":"战利品袋(Forest Ranger Advanced)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"LootBag (Forest Ranger Expert)","tr":"战利品袋(Forest Ranger Expert)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"LootBag (Space Invaders Moon)","tr":"战利品袋(Space Invaders Moon)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"LootBag (Space Invaders Mars)","tr":"战利品袋(Space Invaders Mars)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"LootBag (Space Invaders Asteroids)","tr":"战利品袋(Space Invaders Asteroids)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"LootBag (Bees Basic)","tr":"战利品袋(Bees Basic)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"LootBag (Bees Advanced)","tr":"战利品袋(Bees Advanced)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"LootBag (Bees Expert)","tr":"战利品袋(Bees Expert)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"LootBag (Fast Food)","tr":"战利品袋(Fast Food)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"LootBag (Slow Food)","tr":"战利品袋(Slow Food)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"LootBag (Haute Cuisine)","tr":"战利品袋(Haute Cuisine)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"LootBag (Dessert)","tr":"战利品袋(Dessert)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"LootBag (Transportation 3 Class)","tr":"战利品袋(Transportation 3 Class)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"LootBag (Transportation 2 Class)","tr":"战利品袋(Transportation 2 Class)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"LootBag (Transportation 1 Class)","tr":"战利品袋(Transportation 1 Class)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"LootBag (Seeds)","tr":"战利品袋(Seeds)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"LootBag (Gardens)","tr":"战利品袋(Gardens)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"LootBag (AE Basic)","tr":"战利品袋(AE Basic)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"LootBag (AE Good)","tr":"战利品袋(AE Good)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"LootBag (AE Advanced)","tr":"战利品袋(AE Advanced)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"LootBag (AE Master)","tr":"战利品袋(AE Master)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"LootBag (Tier 6 LuV)","tr":"战利品袋(Tier 6 LuV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"LootBag (Tier 7 ZPM)","tr":"战利品袋(Tier 7 ZPM)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"LootBag (Tier 8 UV)","tr":"战利品袋(Tier 8 UV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"LootBag (Tier 9 UHV)","tr":"战利品袋(Tier 9 UHV)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"LootBag (Computer Floppies)","tr":"战利品袋(Computer Floppies)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"name":"LootBag (Tier 1 Computers)","tr":"战利品袋(Tier 1 Computers)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"LootBag (Tier 2 Computers)","tr":"战利品袋(Tier 2 Computers)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"LootBag (Tier 3 Computers)","tr":"战利品袋(Tier 3 Computers)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"LootBag (Tier 3.5 Computers)","tr":"战利品袋(Tier 3.5 Computers)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"name":"LootBag (Tier 4 Computers)","tr":"战利品袋(Tier 4 Computers)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"LootBag (IC2 Crops)","tr":"战利品袋(IC2 Crops)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"name":"LootBag (Witchery Novice)","tr":"战利品袋(Witchery Novice)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"LootBag (Witchery Adept)","tr":"战利品袋(Witchery Adept)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"LootBag (Witchery Master)","tr":"战利品袋(Witchery Master)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"name":"LootBag (Witchery Witch)","tr":"战利品袋(Witchery Witch)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"LootBag (Witchery Deamon)","tr":"战利品袋(Witchery Deamon)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"LootBag (HEE-Basic)","tr":"战利品袋(HEE-Basic)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"LootBag (HEE-Advanced)","tr":"战利品袋(HEE-Advanced)","tab":"增强战利品袋","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemGrinPowder":{"0":{"name":"Grin Powder","tr":"蛤蛤粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCrocoite":{"0":{"oreDict":["crushedCrocoite"],"name":"Crushed Crocoite Ore","tr":"粉碎的赤铅矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:sigil_of_lightning":{"0":{"name":"Lightning Sigil","tr":"闪电印记","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellCalifornium":{"0":{"oreDict":["cellCalifornium"],"name":"锎单元","tr":"锎单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.eucalyptus":{"0":{"oreDict":["fenceGateWood"],"name":"Eucalyptus Fence Gate","tr":"桉树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernHelm":{"0":{"name":"Wyvern Helm","tr":"双足飞龙头盔","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-10}},"Botania:biomeStoneA11SlabFull":{"0":{"name":"Metamorphic Fungal Cobblestone Slab","tr":"变质菌丝圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:ravaged_brick_slab":{"0":{"name":"Ravaged Brick Slab","tr":"毁灭半砖","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustYttrocerite":{"0":{"oreDict":["dustYttrocerite"],"name":"铈钇矿粉","tr":"铈钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:shrimprawItem":{"0":{"oreDict":["listAllfishraw"," foodShrimpraw"],"name":"Raw Shrimp","tr":"生虾","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:Waste":{"0":{"name":"Genetic Waste","tr":"垃圾基因","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.beamReceiver":{"0":{"name":"Energy Beam Receiver","tr":"能量射束接收器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemMaterial":{"0":{"oreDict":["ingotShadow"],"name":"Shadowmetal Ingot","tr":"暗影锭","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Shadow-Imbued Cloth","tr":"暗影布匹","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Crimson-Stained Cloth","tr":"血腥布匹","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Warped Shard","tr":"扭曲碎片","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Fluxed Shard","tr":"咒波碎片","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Shard of Creation","tr":"创世碎片","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Thaumic Alloy","tr":"神秘合金","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Phial of Crystal Blood","tr":"瓶装结晶血液","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Crimson Plating","tr":"血腥装甲片","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.canvas":{"0":{"name":"Canvas","tr":"帆布","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:fertilizedDirt":{"0":{"name":"Fertilized Dirt","tr":"沃土","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjRed|Core:projectred.core.part":{"0":{"name":"Circuit Plate","tr":"电路板","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Conductive Plate","tr":"导电板","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Wired Plate","tr":"线路板","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Bundled Plate","tr":"集束板","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Anode","tr":"阳极","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Cathode","tr":"阴极","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pointer","tr":"指针","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Silicon Chip","tr":"硅芯片","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Energized Silicon Chip","tr":"充能硅芯片","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Platformed Plate","tr":"底板","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["ingotRedAlloy"],"name":"Red Alloy Ingot","tr":"红石合金锭","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Silicon Boule","tr":"硅晶锭","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Silicon","tr":"硅","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Infused Silicon","tr":"浸渍硅","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Energized Silicon","tr":"充能硅","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Motor","tr":"马达","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Copper Coil","tr":"铜制线圈","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Iron Coil","tr":"铁制线圈","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Gold Coil","tr":"金制线圈","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["projredIllumar"],"name":"White Illumar","tr":"白色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["projredIllumar"],"name":"Orange Illumar","tr":"橙色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["projredIllumar"],"name":"Magenta Illumar","tr":"品红色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["projredIllumar"],"name":"Light Blue Illumar","tr":"淡蓝色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["projredIllumar"],"name":"Yellow Illumar","tr":"黄色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["projredIllumar"],"name":"Lime Illumar","tr":"黄绿色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["projredIllumar"],"name":"Pink Illumar","tr":"粉色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["projredIllumar"],"name":"Grey Illumar","tr":"灰色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["projredIllumar"],"name":"Light Grey Illumar","tr":"淡灰色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["projredIllumar"],"name":"Cyan Illumar","tr":"青色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["projredIllumar"],"name":"Purple Illumar","tr":"紫色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["projredIllumar"],"name":"Blue Illumar","tr":"蓝色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["projredIllumar"],"name":"Brown Illumar","tr":"棕色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["projredIllumar"],"name":"Green Illumar","tr":"绿色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["projredIllumar"],"name":"Red Illumar","tr":"红色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["projredIllumar"],"name":"Black Illumar","tr":"黑色荧光粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Woven Cloth","tr":"布匹","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"Sail","tr":"帆布","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["gemRuby"],"name":"Ruby","tr":"红宝石","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["gemSapphire"],"name":"Sapphire","tr":"蓝宝石","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["gemPeridot"],"name":"Peridot","tr":"橄榄石","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"Red Iron Compound","tr":"红铁混合物","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Sandy Coal Compound","tr":"沙煤混合物","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Red Silicon Compound","tr":"红硅混合物","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Glowing Silicon Compound","tr":"荧硅混合物","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Null-Logic Routing Chip","tr":"空逻辑路由芯片","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"Null-Logic Upgrade Chip","tr":"空逻辑升级芯片","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"name":"LX Upgrade","tr":"左型X升级","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"LY Upgrade","tr":"左型Y升级","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"LZ Upgrade","tr":"左型Z升级","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"RX Upgrade","tr":"右型X升级","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"name":"RY Upgrade","tr":"右型Y升级","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"RZ Upgrade","tr":"右型Z升级","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["ingotCopper"," ingotAnyCopper"],"name":"Copper Ingot","tr":"铜锭","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["ingotTin"],"name":"Tin Ingot","tr":"锡锭","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["ingotSilver"],"name":"Silver Ingot","tr":"银锭","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["ingotElectrotineAlloy"],"name":"Electrotine Alloy Ingot","tr":"蓝石合金锭","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["dustElectrotine"],"name":"Electrotine","tr":"蓝石粉","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"Electrotine Iron Compound","tr":"蓝石铁化合物","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"Electrotine Silicon Compound","tr":"蓝石硅化合物","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"name":"Electro Silicon","tr":"蓝石硅","tab":"红石计划:核心","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewPraseodymium":{"0":{"oreDict":["screwPraseodymium"],"name":"镨螺丝","tr":"镨螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockAmnesiac":{"0":{"name":"Amnesiac\u0027s Stone","tr":"遗忘之石","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"tinkersdefense:Dogbeariumblock":{"0":{"name":"Dogbearium Block","tr":"多格比合金块","tab":"工匠之盾","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:altar":{"0":{"name":"Petal Apothecary","tr":"花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Forest Petal Apothecary","tr":"森林花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Plains Petal Apothecary","tr":"平原花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Mountain Petal Apothecary","tr":"高山花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fungal Petal Apothecary","tr":"菌丝花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Swamp Petal Apothecary","tr":"沼泽花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Desert Petal Apothecary","tr":"沙漠花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Taiga Petal Apothecary","tr":"雪原花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mesa Petal Apothecary","tr":"高原花药台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:slabGCDouble":{"0":{"name":"tile.slabGCDouble.tinSlab.name","tr":"tile.slabGCDouble.tinSlab.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"tile.slabGCDouble.tinSlab.name","tr":"tile.slabGCDouble.tinSlab.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"tile.slabGCDouble.moonSlab.name","tr":"tile.slabGCDouble.moonSlab.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"tile.slabGCDouble.moonBricksSlab.name","tr":"tile.slabGCDouble.moonBricksSlab.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"tile.slabGCDouble.marsSlab.name","tr":"tile.slabGCDouble.marsSlab.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"tile.slabGCDouble.marsBricksSlab.name","tr":"tile.slabGCDouble.marsBricksSlab.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:itemCarpentersBed":{"0":{"name":"Carpenter\u0027s Bed","tr":"木匠床","tab":"木匠方块","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cantaloupeItem":{"0":{"oreDict":["listAllfruit"," cropCantaloupe"],"name":"Cantaloupe","tr":"哈密瓜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemWeed":{"0":{"name":"Weed","tr":"杂草","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockSiliconCarbide":{"0":{"oreDict":["blockSiliconCarbide"],"name":"碳化硅块","tr":"碳化硅块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHastelloyN":{"0":{"oreDict":["plateDoubleHastelloyN"],"name":"双重哈斯特洛依合金-N板","tr":"双重哈斯特洛依合金-N板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"ThaumicHorizons:infusionSelfCheat":{"1":{"name":"Self: Quicksilver Limbs","tr":"自我注魔:水银之肢","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Self: Morphic Fingers","tr":"自我注魔:变形之指","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Self: Awakened Blood","tr":"自我注魔:苏醒之血","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Self: Diamondflesh","tr":"自我注魔:金刚之躯","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Self: Silverwood Heart","tr":"自我注魔:银树之心","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Self: Synthskin","tr":"自我注魔:光合皮肤","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Self: Amphibious Breath","tr":"自我注魔:两栖水肺","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Self: Warped Tumor","tr":"自我注魔:扭曲毒瘤","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Self: Spider Climb","tr":"自我注魔:飞檐走壁","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Self: Chameleon Skin","tr":"自我注魔:变色皮肤","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:scallionItem":{"0":{"oreDict":["cropScallion"," listAllveggie"],"name":"Scallion","tr":"青葱","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:oldLapis":{"0":{"oreDict":["blockLapis"],"name":"Ancient Lapis Lazuli Block","tr":"远古青金石块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:cladding":{"0":{"name":"Cladding","tr":"覆盖板","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockSoulBinder":{"0":{"name":"Soul Binder","tr":"灵魂绑定器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTalonite":{"0":{"oreDict":["dustTinyTalonite"],"name":"小撮铬钴磷酸盐合金粉","tr":"小撮铬钴磷酸盐合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.reactorUraniumDual":{"0":{"name":"二联燃料棒(铀)","tr":"二联燃料棒(铀)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Botania:quartz":{"0":{"oreDict":["quartzDark"],"name":"Smokey Quartz","tr":"烟熏石英","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["quartzMana"],"name":"Mana Quartz","tr":"魔力石英","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["quartzBlaze"],"name":"Blaze Quartz","tr":"烈焰石英","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["quartzLavender"],"name":"Lavender Quartz","tr":"熏香石英","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["quartzRed"],"name":"Redquartz","tr":"红色石英","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["quartzElven"],"name":"Elven Quartz","tr":"精灵石英","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["quartzSunny"],"name":"Sunny Quartz","tr":"金黄石英","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorUraniumDual":{"1":{"name":"Dual Fuel Rod (Uranium)","tr":"双联燃料棒(铀)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":10001}},"witchery:witchesovenburning":{"0":{"name":"Witches Oven","tr":"工作中的巫师烤炉","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockDoorAlloy":{"0":{"name":"Reinforced Door","tr":"防爆门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:candiedsweetpotatoesItem":{"0":{"oreDict":["foodCandiedsweetpotatoes"],"name":"Candied Sweet Potatoes","tr":"蜜汁红薯","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHastelloyW":{"0":{"oreDict":["cellHastelloyW"],"name":"哈斯特洛依合金-W单元","tr":"哈斯特洛依合金-W单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHastelloyX":{"0":{"oreDict":["cellHastelloyX"],"name":"哈斯特洛依合金-X单元","tr":"哈斯特洛依合金-X单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:ironTank":{"0":{"name":"Iron Tank","tr":"铁储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:fireAir":{"0":{"name":"Aer Imbued Fire","tr":"巽风之焰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellCelestialTungsten":{"0":{"oreDict":["cellCelestialTungsten"],"name":"天体钨单元","tr":"天体钨单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHastelloyW":{"0":{"oreDict":["plateDoubleHastelloyW"],"name":"双重哈斯特洛依合金-W板","tr":"双重哈斯特洛依合金-W板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"EnderIO:blockPaintedWall":{"0":{"name":"Painted Wall","tr":"喷涂墙","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHastelloyX":{"0":{"oreDict":["plateDoubleHastelloyX"],"name":"双重哈斯特洛依合金-X板","tr":"双重哈斯特洛依合金-X板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:material":{"1":{"oreDict":["rodBlizz"," stickBlizz"],"name":"Blizz Rod","tr":"暴雪棒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustBlizz"],"name":"Blizz Powder","tr":"暴雪粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustPyrotheum"],"name":"Pyrotheum Dust","tr":"炽焱之尘","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustCryotheum"],"name":"Cryotheum Dust","tr":"凛冰之尘","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:leggingsAmethyst":{"0":{"name":"Amethyst Leggings","tr":"紫水晶护腿","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":601}},"harvestcraft:mashedpotatoesItem":{"0":{"oreDict":["foodMashedpotatoes"],"name":"Mashed Potatoes","tr":"土豆泥","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:rfPowerUnit":{"0":{"name":"RF Stargate Power Unit","tr":"RF星门能量单元","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHastelloyN":{"0":{"oreDict":["cellHastelloyN"],"name":"哈斯特洛依合金-N单元","tr":"哈斯特洛依合金-N单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:Primewell":{"0":{"name":"Primal Scribing Tools","tr":"元始笔与墨","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":101}},"HardcoreEnderExpansion:corrupted_energy_high":{"0":{"name":"Unnamed Block, report to mod author.","tr":"未命名方块,请报告给作者.","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:milledPyrope":{"0":{"oreDict":["milledPyrope"],"name":"Milled Pyrope","tr":"研磨镁铝榴石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellEglinSteel":{"0":{"oreDict":["cellEglinSteel"],"name":"埃格林钢单元","tr":"埃格林钢单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustAbyssalAlloy":{"0":{"oreDict":["dustAbyssalAlloy"],"name":"深渊合金粉","tr":"深渊合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamdateSapling":{"0":{"name":"Date Sapling","tr":"枣椰树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.QuintupleCompressedCoal":{"0":{"name":"Block of Quintuple Compressed Coal","tr":"五重压缩煤炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ArditePlate":{"0":{"oreDict":["plateArdite"],"name":"Ardite Plate","tr":"阿迪特板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidUraniumDepleted":{"0":{"name":"Fuel Rod (Depleted Excited Uranium)","tr":"枯竭燃料棒(激发铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateQuantum":{"0":{"oreDict":["plateQuantum"],"name":"量子合金板","tr":"量子合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:BowLimbPart":{"0":{"name":"Wooden Bow Limb","tr":"木弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Bow Limb","tr":"石弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Bow Limb","tr":"铁弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Bow Limb","tr":"燧石弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Bow Limb","tr":"仙人掌弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Bow Limb","tr":"骨头弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Bow Limb","tr":"黑曜石弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Bow Limb","tr":"地狱岩弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Bow Limb","tr":"史莱姆弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Bow Limb","tr":"纸弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Bow Limb","tr":"钴弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Bow Limb","tr":"阿迪特弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Bow Limb","tr":"玛玉灵弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Bow Limb","tr":"铜弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Bow Limb","tr":"青铜弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Bow Limb","tr":"耐酸铝弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Bow Limb","tr":"钢弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Bow Limb","tr":"史莱姆弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Bow Limb","tr":"生铁弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Bow Limb","tr":"不稳定感应弓臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:fire_shard":{"0":{"name":"Infernium","tr":"幽魂粒子","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:ZirconiumTetrafluoride":{"0":{"oreDict":["cellZirconiumTetrafluoride"],"name":"四氟化锆单元","tr":"四氟化锆单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:emerald_block":{"1":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Emerald Block","tr":"绿宝石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:sonicglasses":{"0":{"name":"Sonic Glasses","tr":"音波眼镜","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":166}},"miscutils:itemironrotor":{"0":{"name":"Kinetic Gearbox Rotor (TungstenSteel)","tr":"钨钢转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":809601}},"openmodularturrets:relativisticTurret":{"0":{"name":"Relativistic Turret","tr":"相位力场炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPaintedFenceGate":{"0":{"name":"Painted Gate","tr":"喷涂门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2stuff:WirelessKit":{"0":{"name":"Wireless Setup Kit","tr":"无线设置工具","tab":"应用能源附加机器","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicExploration:trashJar":{"0":{"name":"Oblivion Jar","tr":"泯灭之罐","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellSiliconCarbide":{"0":{"oreDict":["cellSiliconCarbide"],"name":"碳化硅单元","tr":"碳化硅单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:manjuuItem":{"0":{"oreDict":["foodManjuu"],"name":"Manjuu","tr":"日式馒头","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.CompressedCharcoal":{"0":{"name":"Block of Compressed Charcoal","tr":"压缩木炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicLeggs":{"0":{"name":"Draconic Leggings","tr":"龙之护腿","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-14}},"Botania:stone1Stairs":{"0":{"name":"Basalt Stairs","tr":"玄武岩楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderZoo:blockConfusingCharge":{"0":{"name":"Confusing Charge","tr":"混乱炸药","tab":"EnderZoo","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.endSteel_helmet":{"0":{"name":"End Steel Helm","tr":"末影钢头盔","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":551}},"miscutils:itemNuggetFermium":{"0":{"oreDict":["nuggetFermium"],"name":"镄粒","tr":"镄粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustGadoliniteY":{"0":{"oreDict":["dustGadoliniteY"],"name":"硅铍钇矿(Y)粉","tr":"硅铍钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellKrypton":{"0":{"oreDict":["cellKrypton"],"name":"氪单元","tr":"氪单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateBlackMetal":{"0":{"oreDict":["plateBlackMetal"],"name":"黑物质板","tr":"黑物质板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemShadowFortressHelmet":{"0":{"name":"Shadow Fortress Helm","tr":"暗影要塞兜鍪","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":27501}},"battlegear2:mace.wood":{"0":{"name":"Wooden Mace","tr":"木槌","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":119}},"Forestry:cratedRefractoryWax":{"0":{"name":"Crated Refractory Wax","tr":"装箱的耐火蜂蜡","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:focusAnimation":{"0":{"name":"Wand Focus: Animation","tr":"法杖核心:活化","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemNuggetCelestialTungsten":{"0":{"oreDict":["nuggetCelestialTungsten"],"name":"天体钨粒","tr":"天体钨粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA11Stairs":{"0":{"name":"Metamorphic Fungal Cobblestone Stairs","tr":"变质菌丝圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryFuel":{"0":{"name":"Fuel Capsule","tr":"耐火燃料胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnceladusIceDust":{"0":{"oreDict":["dustEnceladus"," dustSpace"," dustEnceladusIce"],"name":"Enceladus Slush Dust","tr":"土卫二雪泥","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsdiamond":{"0":{"name":"Diamond Fluid Pipe","tr":"钻石流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjectBlue:emptySprayCan":{"0":{"name":"Empty Spray Can","tr":"空的喷漆罐","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.telepadShort":{"0":{"name":"Short Range Telepad","tr":"短距离传送台","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_orange":{"0":{"name":"Orange Curtain","tr":"橙色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidPlutoniumDepleted2":{"0":{"name":"Dual Fuel Rod (Depleted Excited Plutonium)","tr":"枯竭二联燃料棒(激发钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:prismarine2Stairs":{"0":{"name":"Dark Prismarine Stairs","tr":"深色海晶石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:fullDrawers1_0":{"0":{"oreDict":["drawerBasic"],"name":"Redwood Drawer","tr":"红木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Fir Drawer","tr":"冷杉抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Acacia Drawer","tr":"刺槐抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Cypress Drawer","tr":"柏树抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Japanese Maple Drawer","tr":"日本枫树抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Rainbow Eucalyptus Drawer","tr":"彩虹桉树抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Autumn Drawer","tr":"秋树抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Bald Cypress Drawer","tr":"落羽松抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Sakura Drawer","tr":"樱花树抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:fullDrawers1_1":{"0":{"oreDict":["drawerBasic"],"name":"Yellow Drawer","tr":"黄色木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"White Drawer","tr":"白色木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Red Drawer","tr":"红色木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Grey Drawer","tr":"灰色木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Greatwood Drawer","tr":"宏伟之木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Silverwood Drawer","tr":"银木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Rowan Drawer","tr":"山梨木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Alder Drawer","tr":"赤杨木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Hawthorn Drawer","tr":"山楂木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Treated Wood Drawer","tr":"防腐木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Livingwood Drawer","tr":"活木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Dreamwood Drawer","tr":"梦之木抽屉","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingWhiteMetal":{"0":{"oreDict":["ringWhiteMetal"],"name":"白物质环","tr":"白物质环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockWall":{"0":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"ic2.blockWall","tr":"ic2.blockWall","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:palmStairs":{"0":{"oreDict":["stairWood"],"name":"Palm Wood Stairs","tr":"棕榈木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusFlight":{"0":{"name":"Wand Focus: Uprising","tr":"法杖核心:升腾","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:artichoke":{"0":{"name":"Water Artichoke","tr":"水洋藓","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustMixTumbaga":{"0":{"oreDict":["dustMixTumbaga"],"name":"铜金混合物粉","tr":"铜金混合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorHazmatChestplate":{"0":{"name":"Hazmat Suit","tr":"防化服","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":65}},"miscutils:itemRodLongTellurium":{"0":{"oreDict":["stickLongTellurium"],"name":"长碲杆","tr":"长碲杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsemzuli":{"0":{"name":"Emzuli Transport Pipe","tr":"靛翡翠管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:naanItem":{"0":{"oreDict":["foodNaan"],"name":"Naan","tr":"印度烤饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.hardClayMultiOre":{"0":{"oreDict":["oreCoal"],"name":"Coal Ore","tr":"煤矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreSilicon"],"name":"Silicon Ore","tr":"硅矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreAluminum"," oreAluminium"," oreNaturalAluminum"],"name":"Aluminum Ore","tr":"铝矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreAnyIron"," oreIron"],"name":"Iron Ore","tr":"铁矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidPlutoniumDepleted4":{"0":{"name":"Quad Fuel Rod (Depleted Excited Plutonium)","tr":"枯竭四联燃料棒(激发钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:bronzeShovel":{"0":{"name":"Survivalist\u0027s Shovel","tr":"幸存者之铲","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":201}},"miscutils:itemDustTinyDysprosium":{"0":{"oreDict":["dustTinyDysprosium"],"name":"小撮镝粉","tr":"小撮镝粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:vegabsubgrunt":{"0":{"oreDict":["rockVegaB"," rockSpace"],"name":"Vega B Subsurface Block","tr":"织女一B地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCalciumCarbonate":{"0":{"oreDict":["dustTinyCalciumCarbonate"],"name":"小撮碳酸钙粉","tr":"小撮碳酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilCinobiteA243":{"0":{"oreDict":["foilCinobiteA243"],"name":"西诺柏A243箔","tr":"西诺柏A243箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BinnieCore:containerCan":{"128":{"name":"Sap Can","tr":"树液胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"64":{"name":"Acid Can","tr":"酸液胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"129":{"name":"Resin Can","tr":"树脂胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"65":{"name":"Poison Can","tr":"毒液胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"130":{"name":"Latex Can","tr":"乳胶胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"66":{"name":"Nitrogen Can","tr":"液氮胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"131":{"name":"Turpentine Can","tr":"松节油胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1}},"BiomesOPlenty:dartBlower":{"0":{"name":"Dart Blower","tr":"飞镖吹筒","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":64}},"miscutils:item.BasicMetaFood":{"0":{"oreDict":["listAllmeatraw"],"name":"Raw Human Meat","tr":"生人肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["listAllmeatcooked"],"name":"Cooked Human Meat","tr":"熟人肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["listAllmeatraw"],"name":"Raw Horse Meat","tr":"生马肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["listAllmeatcooked"],"name":"Cooked Horse Meat","tr":"熟马肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["listAllmeatraw"],"name":"Raw Wolf Meat","tr":"生狼肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["listAllmeatcooked"],"name":"Cooked Wolf Meat","tr":"熟狼肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["listAllmeatraw"],"name":"Raw Ocelot Meat","tr":"生猫肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["listAllmeatcooked"],"name":"Cooked Ocelot Meat","tr":"熟猫肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["listAllmeatcooked"],"name":"Blaze Flesh","tr":"烈焰人肉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.hopseed":{"0":{"oreDict":["fenceGateWood"],"name":"Hopseed Fence Gate","tr":"车桑子树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:waxcombItem":{"0":{"oreDict":["materialWaxcomb"],"name":"Waxcomb","tr":"蜂窝蜡","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.cooldownUpgrade":{"0":{"name":"Cooldown Upgrade","tr":"冷却升级","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFancySign2":{"0":{"name":"Pine Fancy Sign","tr":"松树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Fancy Sign","tr":"李子树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Fancy Sign","tr":"杨树木精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Fancy Sign","tr":"红杉精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Fancy Sign","tr":"柚木精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Fancy Sign","tr":"核桃树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Fancy Sign","tr":"崖豆树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Fancy Sign","tr":"柳树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatedonutItem":{"0":{"oreDict":["foodChocolatedonut"],"name":"Chocolate Donut","tr":"巧克力甜甜圈","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:hardWallTierOne":{"0":{"name":"Hard Wall (Tier 1)","tr":"坚固墙壁(一级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:toughBinding":{"0":{"name":"Wooden Tough Binding","tr":"木坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Tough Binding","tr":"石坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Tough Binding","tr":"铁坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Tough Binding","tr":"燧石坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Tough Binding","tr":"仙人掌坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Tough Binding","tr":"骨头坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Tough Binding","tr":"黑曜石坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Tough Binding","tr":"地狱岩坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Tough Binding","tr":"史莱姆坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Tough Binding","tr":"纸坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Tough Binding","tr":"钴坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Tough Binding","tr":"阿迪特坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Tough Binding","tr":"玛玉灵坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Tough Binding","tr":"铜坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Tough Binding","tr":"青铜坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Tough Binding","tr":"耐酸铝坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Tough Binding","tr":"钢坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Tough Binding","tr":"史莱姆坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Tough Binding","tr":"生铁坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Tough Binding","tr":"不稳定感应坚韧绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:machine.epsilon":{"0":{"name":"Electric Feeder Unit","tr":"电力供给单元","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Admin Feeder Unit","tr":"管理员电力供给单元","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Admin Steam Producer","tr":"管理员蒸汽供给单元","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Force Track Emitter","tr":"轨道发射机","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Flux Transformer","tr":"能量流转换机","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedHoneaite":{"0":{"oreDict":["crushedHoneaite"],"name":"Crushed Honeaite Ore","tr":"粉碎碲化金铊矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellNeptuniumHexafluoride":{"0":{"oreDict":["cellNeptuniumHexafluoride"],"name":"六氟化镎单元","tr":"六氟化镎单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaPlutonium238":{"0":{"oreDict":["cellPlasmaPlutonium238"],"name":"钚-238等离子体单元","tr":"钚-238等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemWeedingTrowel":{"0":{"name":"Weeding Trowel","tr":"除草剪","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedPurifiedAgarditeY":{"0":{"oreDict":["crushedPurifiedAgarditeY"],"name":"Purified Crushed Agardite (Y) Ore","tr":"洗净的菱铁矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBlankIII":{"0":{"name":"Coin \"Blank 1000\"","tr":"空白硬币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemCofeeBeans":{"0":{"oreDict":["cropCoffee"],"name":"Coffee Beans","tr":"咖啡豆","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZirconiumCarbide":{"0":{"oreDict":["dustSmallZirconiumCarbide"],"name":"小堆碳化锆粉","tr":"小堆碳化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotGermanium":{"0":{"oreDict":["ingotGermanium"],"name":"锗锭","tr":"锗锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafPick":{"0":{"name":"Steeleaf Pick","tr":"钢叶镐","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":132}},"ExtraTrees:carpentry":{"0":{"name":"Blank Wooden Tile","tr":"空白木砖","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Blank Wooden Tile","tr":"空白木砖","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Blank Wooden Tile","tr":"空白木砖","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Blank Wooden Tile","tr":"空白木砖","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blank Wooden Tile","tr":"空白木砖","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Blank Wooden Tile","tr":"空白木砖","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Blank Wooden Tile","tr":"空白木砖","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:seepingshoes":{"0":{"name":"Seeping Shoes","tr":"渗透鞋","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":66}},"Botania:biomeStoneA11Slab":{"0":{"name":"Metamorphic Fungal Cobblestone Slab","tr":"变质菌丝圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.canisterPartialLOX":{"1":{"name":"Filled Canister of Liquid Oxygen","tr":"罐装液态氧(满)","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1002}},"AWWayofTime:energyBlasterThirdTier":{"0":{"name":"Energy Blaster III","tr":"能量爆破枪 III","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemScrewArceusAlloy2B":{"0":{"oreDict":["screwArceusAlloy2B"],"name":"阿尔宙斯合金2B螺丝","tr":"阿尔宙斯合金2B螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockReactorRedstonePort":{"0":{"name":"Reactor Redstone Port","tr":"反应堆红石接口","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLithiumHydroperoxide":{"0":{"oreDict":["dustSmallLithiumHydroperoxide"],"name":"小堆过氧化氢锂粉","tr":"小堆过氧化氢锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustNeptuniumHexafluoride":{"0":{"oreDict":["dustNeptuniumHexafluoride"],"name":"六氟化镎粉","tr":"六氟化镎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellLaurenium":{"0":{"oreDict":["cellLaurenium"],"name":"劳伦姆合金单元","tr":"劳伦姆合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:bucketVapor_of_levity":{"0":{"name":"Vapor of Levity Bucket","tr":"桶装轻盈之气","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:blueberrysmoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodBlueberrysmoothie"],"name":"Blueberry Smoothie","tr":"蓝莓冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CallistoIceIngot":{"0":{"oreDict":["ingotCallistoIce"],"name":"Callisto Ice Ingot","tr":"木卫四冰锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamapricotSapling":{"0":{"name":"Apricot Sapling","tr":"杏树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:dagger.gold":{"0":{"name":"Golden Dagger","tr":"金匕首","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:itemRingThallium":{"0":{"oreDict":["ringThallium"],"name":"铊环","tr":"铊环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustPotassiumNitrate":{"0":{"oreDict":["dustPotassiumNitrate"],"name":"硝酸钾粉","tr":"硝酸钾粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.peacockFan":{"0":{"name":"Peacock Feather Fan","tr":"孔雀羽毛扇","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1025}},"miscutils:blockFrameGtStellite":{"0":{"oreDict":["frameGtStellite"],"name":"铬钴锰钛合金框架","tr":"铬钴锰钛合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSand":{"0":{"name":"Crated Sand","tr":"装箱的沙子","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:vindalooItem":{"0":{"oreDict":["foodVindaloo"],"name":"Vindaloo","tr":"温达卢咖喱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:cleaver":{"0":{"name":"§f山铜 劈刀","tr":"§f山铜 劈刀","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"Avaritia:Infinity_Pants":{"0":{"name":"Infinity Pants","tr":"无尽护腿","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":149986}},"Natura:barley.seed":{"0":{"oreDict":["seedBarley"," listAllseed"],"name":"Barley Seeds","tr":"大麦种子","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["seedCotton"," listAllseed"],"name":"Cotton Seeds","tr":"棉花种子","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LichBoneChip":{"0":{"name":"Lich Bone Chip","tr":"巫妖之骨碎屑","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraTrees:fence":{"64":{"oreDict":["fenceWood"],"name":"Rosewood Fence","tr":"蔷薇木栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["fenceWood"],"name":"Gingko Fence","tr":"银杏栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["fenceWood"],"name":"Spruce Fence","tr":"云杉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["fenceWood"],"name":"Pink Ivory Fence","tr":"象牙粉红木栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["fenceWood"],"name":"Birch Fence","tr":"白桦栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["fenceWood"],"name":"Jungle Fence","tr":"丛林栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["fenceWood"],"name":"Acacia Fence","tr":"金合欢栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["fenceWood"],"name":"Dark Oak Fence","tr":"深色橡树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["fenceWood"],"name":"Fir Fence","tr":"冷杉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["fenceWood"],"name":"Cedar Fence","tr":"雪松栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["fenceWood"],"name":"Hemlock Fence","tr":"铁杉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["fenceWood"],"name":"Cypress Fence","tr":"柏树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["fenceWood"],"name":"Fig Fence","tr":"无花果栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["fenceWood"],"name":"Beech Fence","tr":"山毛榉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["fenceWood"],"name":"Alder Fence","tr":"桤木栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["fenceWood"],"name":"Hazel Fence","tr":"榛树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["fenceWood"],"name":"Hornbeam Fence","tr":"鹅耳枥栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["fenceWood"],"name":"Box Fence","tr":"黄杨栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["fenceWood"],"name":"Butternut Fence","tr":"灰核桃树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["fenceWood"],"name":"Hickory Fence","tr":"山核桃栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["fenceWood"],"name":"Whitebeam Fence","tr":"白面子树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["fenceWood"],"name":"Elm Fence","tr":"榆树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"46":{"oreDict":["fenceWood"],"name":"Apple Fence","tr":"苹果树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["fenceWood"],"name":"Yew Fence","tr":"红豆杉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["fenceWood"],"name":"Pear Fence","tr":"梨树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["fenceWood"],"name":"Hawthorn Fence","tr":"山楂树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"50":{"oreDict":["fenceWood"],"name":"Rowan Fence","tr":"花楸栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["fenceWood"],"name":"Elder Fence","tr":"接骨木栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["fenceWood"],"name":"Maclura Fence","tr":"桑橙栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["fenceWood"],"name":"Syzgium Fence","tr":"蒲桃栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["fenceWood"],"name":"Brazilwood Fence","tr":"巴西红木栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["fenceWood"],"name":"Logwood Fence","tr":"墨水树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["fenceWood"],"name":"Iroko Fence","tr":"大绿柄桑木栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["fenceWood"],"name":"Locust Fence","tr":"刺槐栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["fenceWood"],"name":"Eucalyptus Fence","tr":"桉树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["fenceWood"],"name":"Purpleheart Fence","tr":"紫心檀木栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["fenceWood"],"name":"Ash Fence","tr":"梣树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"61":{"oreDict":["fenceWood"],"name":"Holly Fence","tr":"冬青栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["fenceWood"],"name":"Olive Fence","tr":"橄榄树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["fenceWood"],"name":"Sweetgum Fence","tr":"枫香树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:pipeGate":{"0":{"name":"Quartz OR Gate","tr":"石英或门","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraBees:dictionary":{"0":{"name":"Apiarist Database","tr":"养蜂员数据库","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Master Apiarist Database","tr":"养蜂大师数据库","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"gadomancy:BlockStoneMachine":{"0":{"name":"Randomization Focus","tr":"随机化核心","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ancient Pedestal","tr":"荒古基座","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Arcane Enervation Emitter","tr":"奥法弱化力场发射器","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Redirection Focus","tr":"重定向核心","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Arcane Packager","tr":"奥法封包器","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongBotmium":{"0":{"oreDict":["stickLongBotmium"],"name":"长博特姆合金杆","tr":"长博特姆合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockDimensionLure":{"0":{"name":"Dimensional Lure","tr":"异界之饵","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodpotshelf":{"0":{"name":"Bloodwood Potion Shelf","tr":"血树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Potion Shelf","tr":"黑暗树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Potion Shelf","tr":"桉树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Potion Shelf","tr":"熔融树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Potion Shelf","tr":"幽魂树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Potion Shelf","tr":"车桑子树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Potion Shelf","tr":"枫树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Potion Shelf","tr":"紫檀树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Potion Shelf","tr":"红木药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Potion Shelf","tr":"银铃树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Potion Shelf","tr":"樱花树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Potion Shelf","tr":"核桃树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Potion Shelf","tr":"柳树药水架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:cannon":{"0":{"name":"Item Cannon","tr":"投掷加农炮","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateBabbitAlloy":{"0":{"oreDict":["plateBabbitAlloy"],"name":"巴氏合金板","tr":"巴氏合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrapDoorCanopy":{"0":{"name":"Canopy Tree Trapdoor","tr":"苍穹树活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:cosmetic":{"0":{"name":"Black Bowtie","tr":"黑领结","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Black Tie","tr":"黑领带","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Red Glasses","tr":"红眼镜","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Puffy Scarf","tr":"蓬松围巾","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Engineer Goggles","tr":"工程师护目镜","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Eyepatch","tr":"眼罩","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Wicked Eyepatch","tr":"中二眼罩","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Red Ribbons","tr":"红丝带","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Pink Flower Bud","tr":"粉花蕾","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Polka-Dotted Bows","tr":"斑点蝴蝶结","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Blue Butterfly","tr":"蓝蝴蝶","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Cat Ears","tr":"猫耳","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Witch Pin","tr":"女巫别针","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Devil Tail","tr":"恶魔尾巴","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Kamui Eye","tr":"神威之眼","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Googly Eyes","tr":"青蛙眼","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"name":"Four-Leafed Clover","tr":"四叶草","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Clock Eye","tr":"时钟之眼","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Unicorn Horn","tr":"独角兽之角","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Devil Horns","tr":"恶魔尖角","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Hyper Plus","tr":"十字头饰","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Botanist Emblem","tr":"植物学家徽章","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Ancient Mask","tr":"远古面具","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"23":{"name":"Eerie Mask","tr":"怪异面具","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"24":{"name":"Alien Antenna","tr":"外星人天线","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Anaglyph Glasses","tr":"红蓝眼镜","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"name":"Orange Shades","tr":"橙色墨镜","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"27":{"name":"Groucho Glasses","tr":"大鼻子面具","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"28":{"name":"Thick Eyebrows","tr":"浓眉毛","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"29":{"name":"Lusitanic Shield","tr":"盾牌","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"30":{"name":"Tiny Potato Mask","tr":"小土豆面具","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"31":{"name":"Questgiver Mark","tr":"任务人标志","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:logs":{"0":{"oreDict":["logWood"],"name":"Larch Wood","tr":"落叶树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Teak Wood","tr":"柚树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Desert Acacia Wood","tr":"沙漠刺槐原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Lime Wood","tr":"酸橙树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["logWood"],"name":"Chestnut Wood","tr":"栗树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["logWood"],"name":"Wenge Wood","tr":"崖豆原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["logWood"],"name":"Baobab Wood","tr":"猴面包树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["logWood"],"name":"Sequoia Wood","tr":"红杉树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["logWood"],"name":"Kapok Wood","tr":"木棉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["logWood"],"name":"Ebony Wood","tr":"乌檀树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["logWood"],"name":"Mahogany Wood","tr":"桃心树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["logWood"],"name":"Balsa Wood","tr":"巴尔杉树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["logWood"],"name":"Willow Wood","tr":"柳树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["logWood"],"name":"Walnut Wood","tr":"核桃原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["logWood"],"name":"Greenheart Wood","tr":"绿樟树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["logWood"],"name":"Cherry Wood","tr":"樱桃原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["logWood"],"name":"Mahoe Wood","tr":"高槿树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["logWood"],"name":"Poplar Wood","tr":"白杨树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["logWood"],"name":"Palm Wood","tr":"棕榈树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["logWood"],"name":"Papaya Wood","tr":"木瓜原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["logWood"],"name":"Pine Wood","tr":"松树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["logWood"],"name":"Plum Wood","tr":"李子原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["logWood"],"name":"Maple Wood","tr":"枫树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["logWood"],"name":"Citrus Wood","tr":"柑橘树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["logWood"],"name":"Giant Sequoia Wood","tr":"巨杉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["logWood"],"name":"Ipe Wood","tr":"重蚁树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["logWood"],"name":"Padauk Wood","tr":"紫檀树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["logWood"],"name":"Cocobolo Wood","tr":"黄檀树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["logWood"],"name":"Zebrawood Wood","tr":"斑木树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pearItem":{"0":{"oreDict":["listAllfruit"," cropPear"],"name":"Pear","tr":"梨","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pistonRelay":{"0":{"name":"Force Relay","tr":"力量传递器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BinnieCore:storage":{"0":{"name":"Compartment","tr":"组合箱","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Copper Compartment","tr":"铜质组合箱","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Bronze Compartment","tr":"青铜组合箱","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Iron Compartment","tr":"铁质组合箱","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Gold Compartment","tr":"金质组合箱","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Diamond Compartment","tr":"钻石组合箱","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.redstone.flux":{"0":{"name":"Redstone Flux Cart","tr":"RF储能车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"Forestry:mail":{"0":{"name":"Mailbox","tr":"信箱","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Trade Station","tr":"贸易站","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stamp Collector","tr":"集邮箱","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemVoidsentBlood":{"0":{"name":"Phial of Voidsent Blood","tr":"瓶装虚空血液","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:quartzleggingsItem":{"0":{"name":"Quartz Leggings","tr":"石英护腿","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":226}},"harvestcraft:pamApricot":{"0":{"name":"Apricot","tr":"杏子","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBootsRobe":{"0":{"name":"Thaumaturge\u0027s Boots","tr":"神秘使之靴","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":326}},"Botania:forestDrum":{"0":{"name":"Drum of the Wild","tr":"狂野之鼓","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Drum of the Gathering","tr":"收集之鼓","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Drum of the Canopy","tr":"林冠之鼓","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:canvasglass":{"0":{"name":"Glass Canvas","tr":"透明画布","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:limesmoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodLimesmoothie"],"name":"Lime Smoothie","tr":"酸橙冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.FramingSaw":{"0":{"name":"Framing Saw","tr":"镶框锯","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:barnardaCleaves":{"0":{"name":"Barnarda C Leaves","tr":"巴纳德C树叶","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterBlack":{"0":{"name":"Black Painter","tr":"黑色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:itemIngotArcanite":{"0":{"oreDict":["ingotArcanite"],"name":"奥金锭","tr":"奥金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"FloodLights:carbonFloodlight":{"0":{"name":"Non-electric Floodlight","tr":"节能泛光灯","tab":"泛光灯","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_unlit_nobottom":{"0":{"name":"Catwalk","tr":"栈桥","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone0Slab":{"0":{"name":"Andesite Slab","tr":"安山岩台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamsesameseedsCrop":{"0":{"name":"Sesame Seeds Crop","tr":"芝麻","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaCcrystal":{"0":{"name":"Rainbow Crystal","tr":"彩虹水晶","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:jail_door":{"0":{"name":"Jail Door","tr":"监狱门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedDemicheleiteBr":{"0":{"oreDict":["crushedPurifiedDemicheleiteBr"],"name":"Purified Crushed Demicheleite (Br) Ore","tr":"洗净的溴硫铋(Br)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:sigil_of_augmented_holding":{"0":{"name":"Sigil of Augmented Holding","tr":"增强集持印记","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDenseMaragingSteel300":{"0":{"oreDict":["plateDenseMaragingSteel300"],"name":"致密马氏体时效钢300板","tr":"致密马氏体时效钢300板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodHastelloyW":{"0":{"oreDict":["stickHastelloyW"],"name":"哈斯特洛依合金-W杆","tr":"哈斯特洛依合金-W杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodHastelloyX":{"0":{"oreDict":["stickHastelloyX"],"name":"哈斯特洛依合金-X杆","tr":"哈斯特洛依合金-X杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemBasicStorageCell.16k":{"0":{"name":"16k ME Storage Cell","tr":"16k-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:aluminumblock":{"0":{"name":"Block of Aluminum","tr":"铝块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Aluminum","tr":"铝块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Aluminum","tr":"铝块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Aluminum","tr":"铝块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Aluminum","tr":"铝块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Aluminum","tr":"铝块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"TravellersGear:simpleGear":{"0":{"oreDict":["travelgearCloakBase"],"name":"Cloak","tr":"披风","tab":"旅行者的装备栏","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"oreDict":["baubleBeltBase"],"name":"Belt","tr":"腰带","tab":"旅行者的装备栏","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"oreDict":["baubleRingGold"],"name":"Gold Ring","tr":"金指环","tab":"旅行者的装备栏","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"oreDict":["baubleRingSilver"],"name":"Silver Ring","tr":"银指环","tab":"旅行者的装备栏","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"oreDict":["travelgearShoulderBase"],"name":"Pauldrons","tr":"肩铠","tab":"旅行者的装备栏","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"oreDict":["travelgearVambraceBase"],"name":"Vambraces","tr":"臂铠","tab":"旅行者的装备栏","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Title Scroll","tr":"头衔卷轴","tab":"旅行者的装备栏","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemSteamTurbine":{"1":{"name":"Steam Turbine","tr":"蒸汽涡轮","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"Railcraft:upgrade.lapotron":{"0":{"name":"Lapatron Loader Upgrade","tr":"Lapotron Loader Upgrade","tab":"Railcraft","type":"Item","maxStackSize":9,"maxDurability":1}},"miscutils:itemRodHastelloyN":{"0":{"oreDict":["stickHastelloyN"],"name":"哈斯特洛依合金-N杆","tr":"哈斯特洛依合金-N杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:brewFlask":{"0":{"name":"Flask of Absolution (§l6§r)","tr":"赦免 (§l6§r)药水","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":7}},"dreamcraft:item.ShapeTinyPipe":{"0":{"name":"Casting Form (Tiny Pipe Shape)","tr":"铸形(微型管道)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"GraviSuite:vajra":{"1":{"name":"Vajra","tr":"金刚杵","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Vajra","tr":"金刚杵","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"Automagy:avaricePearl":{"0":{"name":"Avarice Pearl","tr":"贪婪珍珠","tab":"自动化魔法","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Miser\u0027s Pearl","tr":"吝物珍珠","tab":"自动化魔法","type":"Item","maxStackSize":16,"maxDurability":1}},"ThaumicTinkerer:ichorAxe":{"0":{"name":"Ichorium Axe","tr":"灵宝斧","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"GalaxySpace:item.ModuleLander":{"0":{"name":"Lander Tier 1","tr":"1阶登陆舱","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamFig":{"0":{"name":"Fig","tr":"无花果","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:fenceTierFour":{"0":{"name":"Fence (Tier 4)","tr":"护栏(四级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:vegetarianlettucewrapItem":{"0":{"oreDict":["foodVegetarianlettucewrap"],"name":"Vegetarian Lettuce Wrap","tr":"素味生菜卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.sealer":{"0":{"name":"Oxygen Sealer","tr":"氧气供给器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamDurian":{"0":{"name":"Durian","tr":"榴莲","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:highDensityUraniumNugget":{"0":{"name":"High Density Uranium Nugget","tr":"浓缩铀粒","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTrichloroaceticAcid":{"0":{"oreDict":["cellTrichloroaceticAcid"],"name":"三氯乙酸单元","tr":"三氯乙酸单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ArchmageOrb":{"0":{"name":"Archmage Orb","tr":"贤者宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotInconel792":{"0":{"oreDict":["ingotHotInconel792"],"name":"热镍铬基合金-792锭","tr":"热镍铬基合金-792锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:lawSword":{"0":{"name":"Kikoku","tr":"鬼哭","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":4097}},"miscutils:dustPureTitanite":{"0":{"oreDict":["dustPureTitanite"],"name":"Purified Titanite Dust","tr":"洁净榍石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraTrees:hammer":{"0":{"name":"Master Carpentry Hammer","tr":"木工大师锤","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":252}},"HardcoreEnderExpansion:end_stone_terrain":{"0":{"name":"Infested End Stone","tr":"腐化末地石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Burned End Stone","tr":"灼烧末地石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Enchanted End Stone","tr":"附魔末地石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockReinforcedObsidian":{"0":{"name":"Reinforced Obsidian","tr":"强化黑曜石","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodSelenium":{"0":{"oreDict":["stickSelenium"],"name":"硒杆","tr":"硒杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:growthSigil":{"0":{"name":"Sigil of the Green Grove","tr":"绿丛印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:dustImpureYttrocerite":{"0":{"oreDict":["dustImpureYttrocerite"],"name":"Impure Yttrocerite Dust","tr":"含杂铈钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hell_blood":{"0":{"name":"Blood","tr":"血","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:apricotjellysandwichItem":{"0":{"oreDict":["foodApricotjellysandwich"],"name":"Apricot Jelly Sandwich","tr":"杏桃果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:hammerHead":{"0":{"name":"Wooden Hammer Head","tr":"木锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Hammer Head","tr":"石锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Hammer Head","tr":"铁锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Hammer Head","tr":"燧石锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Hammer Head","tr":"仙人掌锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Hammer Head","tr":"骨头锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Hammer Head","tr":"黑曜石锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Hammer Head","tr":"地狱岩锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Hammer Head","tr":"史莱姆锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Hammer Head","tr":"纸锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Hammer Head","tr":"钴锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Hammer Head","tr":"阿迪特锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Hammer Head","tr":"玛玉灵锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Hammer Head","tr":"铜锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Hammer Head","tr":"青铜锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Hammer Head","tr":"耐酸铝锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Hammer Head","tr":"钢锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Hammer Head","tr":"史莱姆锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Hammer Head","tr":"生铁锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Hammer Head","tr":"不稳定感应锤头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingBlood":{"0":{"name":"Crated Blood Sapling","tr":"装箱的血树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:shimmerrock0Stairs":{"0":{"name":"Shimmerrock Stairs","tr":"微光石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:ArrowAmmo":{"0":{"name":"§f玻璃箭头","tr":"§f玻璃箭头","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:gtplusplus.blocktieredcasings.1":{"0":{"name":"基本外壳 I","tr":"基本外壳 I","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"基本外壳 II","tr":"基本外壳 II","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"基本外壳 III","tr":"基本外壳 III","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"基本外壳 IV","tr":"基本外壳 IV","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"基本外壳 V","tr":"基本外壳 V","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"基本框架 I","tr":"基本框架 I","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"基本框架 II","tr":"基本框架 II","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"基本框架 III","tr":"基本框架 III","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"基本框架 IV","tr":"基本框架 IV","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"基本框架 V","tr":"基本框架 V","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAdvancedNitinol":{"0":{"oreDict":["dustTinyAdvancedNitinol"],"name":"小撮高级镍钛诺粉","tr":"小撮高级镍钛诺粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodlabel":{"0":{"name":"Bloodwood Label","tr":"血树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Label","tr":"黑暗树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Label","tr":"桉树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Label","tr":"熔融树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Label","tr":"幽魂树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Label","tr":"车桑子树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Label","tr":"枫树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Label","tr":"紫檀树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Label","tr":"红木标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Label","tr":"银铃树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Label","tr":"樱花树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Label","tr":"核桃树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Label","tr":"柳树标签","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodZirconium":{"0":{"oreDict":["stickZirconium"],"name":"锆杆","tr":"锆杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedDates":{"0":{"name":"Crated Date","tr":"装箱的枣椰","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormSmallGear":{"0":{"name":"Casting Form (Small Gear Mold)","tr":"铸件(小型齿轮)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyEglinSteel":{"0":{"oreDict":["dustTinyEglinSteel"],"name":"小撮埃格林钢粉","tr":"小撮埃格林钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstBookcase2":{"0":{"name":"Pine Bookcase","tr":"松树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Bookcase","tr":"李子树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Bookcase","tr":"杨树木书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Bookcase","tr":"红杉书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Bookcase","tr":"柚木书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Bookcase","tr":"核桃树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Bookcase","tr":"崖豆树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Bookcase","tr":"柳树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleLafiumCompound":{"0":{"oreDict":["plateDoubleLafiumCompound"],"name":"双重路菲恩化合物板","tr":"双重路菲恩化合物板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:cryotheum":{"0":{"oreDict":["cellGelidCryotheum"],"name":"极寒之凛冰单元","tr":"极寒之凛冰单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraTrees:machine":{"0":{"name":"Lumbermill","tr":"锯木机","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Woodworker","tr":"木材作坊","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Panelworker","tr":"镶板作坊","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Glassworker","tr":"玻璃作坊","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Tileworker","tr":"瓷砖作坊","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotTungstenTitaniumCarbide":{"0":{"oreDict":["ingotTungstenTitaniumCarbide"],"name":"碳化钨钛合金锭","tr":"碳化钨钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:greenGlowshroom":{"0":{"name":"Green Glowshroom","tr":"绿色荧光菇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:manasteelSword":{"0":{"name":"Manasteel Sword","tr":"魔钢剑","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":301}},"harvestcraft:shepardspieItem":{"0":{"oreDict":["foodShepherdspie"],"name":"Shepherd\u0027s Pie","tr":"土豆肉饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafIngot":{"0":{"oreDict":["ingotSteeleaf"," steeleaf"],"name":"Steeleaf","tr":"钢叶","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.null":{"0":{"name":"Cloth Of The Adherent","tr":"信徒法袍残片","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Fragment Of The Harbinger","tr":"先驱立方体碎片","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaCgrass":{"0":{"name":"Barnarda C Grass","tr":"巴纳德C草方块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockMiningTip":{"0":{"name":"Mining Pipe","tr":"采矿管道","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:knockbackBelt":{"0":{"name":"Tectonic Girdle","tr":"抗击腰带","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodLongInconel625":{"0":{"oreDict":["stickLongInconel625"],"name":"长镍铬基合金-625杆","tr":"长镍铬基合金-625杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.doorMangrove":{"0":{"name":"Mangrove Door","tr":"Mangrove Door","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDoubleTriniumTitaniumAlloy":{"0":{"oreDict":["plateDoubleTriniumTitaniumAlloy"],"name":"双重三元钛合金板","tr":"双重三元钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Thaumcraft:ItemChestplateCultistPlate":{"0":{"name":"Crimson Cult Chestplate","tr":"血腥邪徒胸甲","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":241}},"Botania:solidVine":{"0":{"name":"tile.botania:solidVine.name","tr":"tile.botania:solidVine.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:xpbottler":{"0":{"name":"XP Bottler","tr":"经验装瓶器","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:apprenticeBloodOrb":{"0":{"name":"Apprentice Blood Orb","tr":"学徒气血宝珠","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraTrees:multifence":{"16387":{"name":"extratrees.block.woodslab.name2","tr":"extratrees.block.woodslab.name2","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockRocket_fuel":{"0":{"name":"Rocket Fuel","tr":"火箭燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.lantern":{"0":{"name":"White Lantern","tr":"白色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Lantern","tr":"橙色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Lantern","tr":"品红色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Lantern","tr":"淡蓝色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Lantern","tr":"黄色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Lantern","tr":"黄绿色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Lantern","tr":"粉色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Grey Lantern","tr":"灰色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Grey Lantern","tr":"淡灰色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Lantern","tr":"青色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Lantern","tr":"紫色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Lantern","tr":"蓝色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Lantern","tr":"棕色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Lantern","tr":"绿色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Lantern","tr":"红色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Lantern","tr":"黑色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedLafossaite":{"0":{"oreDict":["crushedPurifiedLafossaite"],"name":"Purified Crushed Lafossaite Ore","tr":"洗净的铊盐矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:miscutils.blockcasings":{"0":{"name":"离心机机械方块","tr":"离心机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"焦炉机械方块","tr":"焦炉机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"隔热焦炉机械方块","tr":"隔热焦炉机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"绝热焦炉机械方块","tr":"绝热焦炉机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"辊压机机械方块","tr":"辊压机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"电解机机械方块","tr":"电解机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"线缆轧机机械方块","tr":"线缆轧机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"粉碎机机械方块","tr":"粉碎机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"质量发生线圈","tr":"质量发生线圈","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"质量发生机械方块","tr":"质量发生机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"镀铁砖块","tr":"镀铁砖块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"储罐拓展方块","tr":"储罐拓展方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"哈斯特洛依合金-N反应堆机械方块","tr":"哈斯特洛依合金-N反应堆机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"塞龙-100反应堆屏蔽机械方块","tr":"塞龙-100反应堆屏蔽机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"冶炼炉隔热线圈","tr":"冶炼炉隔热线圈","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"冶炼炉机械方块","tr":"冶炼炉机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sushiItem":{"0":{"oreDict":["foodSushi"],"name":"Sushi","tr":"寿司","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:watermelonjellysandwichItem":{"0":{"oreDict":["foodWatermelonjellysandwich"],"name":"Watermelon Jelly Sandwich","tr":"西瓜果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotNiobiumCarbide":{"0":{"oreDict":["ingotHotNiobiumCarbide"],"name":"热碳化铌锭","tr":"热碳化铌锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodMapFrame":{"0":{"name":"Acacia Map Frame","tr":"金合欢地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Map Frame","tr":"巴尔杉地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Map Frame","tr":"猴面包树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Map Frame","tr":"樱桃树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Map Frame","tr":"栗树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Map Frame","tr":"柑橘树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Map Frame","tr":"乌檀树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Map Frame","tr":"樟树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Map Frame","tr":"木棉地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Map Frame","tr":"落叶松地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Map Frame","tr":"菩提树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Map Frame","tr":"白皮树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Map Frame","tr":"桃花心木地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Map Frame","tr":"枫树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Map Frame","tr":"棕榈树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Map Frame","tr":"木瓜树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:syringeInjection":{"0":{"name":"Injection","tr":"注射剂","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Blast Phial","tr":"爆裂安瓿","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"item.injection.2.name","tr":"item.injection.2.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"item.injection.3.name","tr":"item.injection.3.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"item.injection.4.name","tr":"item.injection.4.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"item.injection.5.name","tr":"item.injection.5.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"item.injection.6.name","tr":"item.injection.6.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"item.injection.7.name","tr":"item.injection.7.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"item.injection.8.name","tr":"item.injection.8.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"item.injection.9.name","tr":"item.injection.9.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"item.injection.10.name","tr":"item.injection.10.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"item.injection.11.name","tr":"item.injection.11.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"item.injection.12.name","tr":"item.injection.12.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"item.injection.13.name","tr":"item.injection.13.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"item.injection.14.name","tr":"item.injection.14.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"item.injection.15.name","tr":"item.injection.15.name","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:peachjuiceItem":{"0":{"oreDict":["listAlljuice"," foodPeachjuice"],"name":"Peach Juice","tr":"桃子汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:part_fluid_interface":{"0":{"name":"ME Dual Interface","tr":"ME二合一接口","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingNitinol60":{"0":{"oreDict":["ringNitinol60"],"name":"镍钛诺60环","tr":"镍钛诺60环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:planarConduit":{"0":{"name":"Planar Conduit","tr":"异界传导物质","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:essentiaHatch":{"0":{"name":"Essentia Input Hatch","tr":"源质输入仓","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.DoubleCompressedCoalCoke":{"0":{"name":"Block of Double Compressed Coal Coke","tr":"双重压缩焦煤块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:helmetMud":{"0":{"name":"Muddy Helmet","tr":"泥巴头盔","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":23}},"computronics:computronics.cipher":{"0":{"name":"Cipher Block","tr":"加密机","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemBrokenSpawner":{"0":{"name":"Broken Spawner","tr":"破损的刷怪笼","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone3SlabFull":{"0":{"name":"Granite Slab","tr":"花岗岩台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_money":{"0":{"name":"Blood Money x1","tr":"血之硬币 x1","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Blood Money x4","tr":"血之硬币 x4","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Blood Money x16","tr":"血之硬币 x16","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Blood Money x64","tr":"血之硬币 x64","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:paintbrush":{"0":{"name":"Paintbrush (White)","tr":"颜料刷 (白色)","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":64}},"miscutils:itemPlateDenseBloodSteel":{"0":{"oreDict":["plateDenseBloodSteel"],"name":"致密血钢板","tr":"致密血钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:randomtacoItem":{"0":{"name":"Random Taco","tr":"墨西哥卷饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.rockDoubleslab":{"0":{"name":"Basalt Slab","tr":"玄武岩台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Basalt Brick Slab","tr":"玄武岩砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Smooth Basalt Slab","tr":"平滑玄武岩台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Obsidian Brick Slab","tr":"黑曜石砖块台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Aluminum Slab","tr":"铝制台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FrothSpessartineflotation":{"0":{"oreDict":["cellSpessartineFroth"],"name":"锰铝榴石泡沫单元","tr":"锰铝榴石泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstdesk2":{"0":{"name":"Pine Desk","tr":"松树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Desk","tr":"李子树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Desk","tr":"杨树木台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Desk","tr":"红杉台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Desk","tr":"柚木台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Desk","tr":"核桃树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Desk","tr":"崖豆树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Desk","tr":"柳树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetStaballoy":{"0":{"oreDict":["nuggetStaballoy"],"name":"贫铀合金粒","tr":"贫铀合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:filteredfumefunnel":{"0":{"name":"Filtered Fume Funnel","tr":"过滤强化型熏气漏斗","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.shovel.netherquartz":{"0":{"name":"Quartz Shovel","tr":"石英铲","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"miscutils:itemCellChloroaceticAcid":{"0":{"oreDict":["cellChloroaceticAcid"],"name":"一氯乙酸单元","tr":"一氯乙酸单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamraspberryCrop":{"0":{"name":"Raspberry Crop","tr":"树莓","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.spacesuit_boots":{"0":{"name":"SpaceSuit Boots","tr":"宇航鞋","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":391}},"dreamcraft:item.StargateChevron":{"0":{"name":"Stargate Chevron","tr":"星门三角部件","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_axe_wood":{"0":{"name":"Blood Infused Wooden Axe","tr":"注血木斧","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraUtilities:pureLove":{"0":{"name":"Pure Love","tr":"Pure Love","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:Saguaro":{"0":{"oreDict":["cropCacti"," cropSaguaro"],"name":"Saguaro Cactus","tr":"巨型仙人掌","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedKoboldite":{"0":{"oreDict":["crushedPurifiedKoboldite"],"name":"Purified Crushed Koboldite Ore","tr":"洗净的妖金矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseMaragingSteel350":{"0":{"oreDict":["plateDenseMaragingSteel350"],"name":"致密马氏体时效钢350板","tr":"致密马氏体时效钢350板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MeteoricIronDualCompressedPlates":{"0":{"name":"Compressed Dual Meteoric Iron Plates","tr":"航天双层陨铁板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.spacesuit_helmet":{"0":{"name":"SpaceSuit Helmet","tr":"宇航盔","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":331}},"ThaumicExploration:everburnUrn":{"0":{"name":"Everburn Urn","tr":"炼狱之壶","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemGliderWing":{"0":{"name":"Glider Wing","tr":"滑翔翼","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Glider Wings","tr":"滑翔翼","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SnowQueenBlood":{"0":{"name":"Snow Queen Blood","tr":"冰雪女王之血","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:lensFire":{"0":{"name":"Illumine Lens","tr":"火之辉光之镜","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"lootgames:LootGamesDungeonWall":{"0":{"name":"Dungeon Wall","tr":"地牢墙壁","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dungeon Ceiling","tr":"地牢天花板","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dungeon Floor","tr":"地牢地板","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cracked Dungeon Wall","tr":"开裂的地牢墙壁","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cracked Dungeon Ceiling","tr":"开裂的地牢天花板","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Cracked Dungeon Floor","tr":"开裂的地牢地板","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Shielded Dungeon Floor","tr":"护盾地牢地板","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartChiselHead":{"1536":{"name":"精金 Chisel Head","tr":"精金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Chisel Head","tr":"神秘蓝金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Chisel Head","tr":"琥珀 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Chisel Head","tr":"纯镃 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Chisel Head","tr":"谐镃 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Chisel Head","tr":"聚氯乙烯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Chisel Head","tr":"永恒 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Chisel Head","tr":"磁物质 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Chisel Head","tr":"赛特斯石英 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Chisel Head","tr":"暗影秘银 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Chisel Head","tr":"玄铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Chisel Head","tr":"戴斯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Chisel Head","tr":"铿铀 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Chisel Head","tr":"通流琥珀金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Chisel Head","tr":"末影粗胚 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Chisel Head","tr":"末影(te) 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Chisel Head","tr":"炽热的钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Chisel Head","tr":"火石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Chisel Head","tr":"力量 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Chisel Head","tr":"石墨 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Chisel Head","tr":"石墨烯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Chisel Head","tr":"注魔金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Chisel Head","tr":"风之魔晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Chisel Head","tr":"火之魔晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Chisel Head","tr":"地之魔晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Chisel Head","tr":"水之魔晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Chisel Head","tr":"混沌魔晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Chisel Head","tr":"秩序魔晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Chisel Head","tr":"玉 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Chisel Head","tr":"碧玉 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Chisel Head","tr":"陨铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Chisel Head","tr":"陨钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Chisel Head","tr":"硅岩 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Chisel Head","tr":"硅岩合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Chisel Head","tr":"富集硅岩 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Chisel Head","tr":"超能硅岩 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Chisel Head","tr":"下界石英 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Chisel Head","tr":"下界之星 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Chisel Head","tr":"三钛 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Chisel Head","tr":"虚空 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Chisel Head","tr":"胶木 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Chisel Head","tr":"幽冥剧毒结晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Chisel Head","tr":"强化 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Chisel Head","tr":"铱锇合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Chisel Head","tr":"阳光化合物 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Chisel Head","tr":"魂金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Chisel Head","tr":"蓝黄玉 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Chisel Head","tr":"黄铜 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Chisel Head","tr":"白铜 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Chisel Head","tr":"深渊铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Chisel Head","tr":"钻石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Chisel Head","tr":"琥珀金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Chisel Head","tr":"绿宝石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Chisel Head","tr":"强化混合晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Chisel Head","tr":"混合晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Chisel Head","tr":"绿色蓝宝石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Chisel Head","tr":"殷钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Chisel Head","tr":"坎塔尔合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Chisel Head","tr":"镁铝合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Chisel Head","tr":"镍铬合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Chisel Head","tr":"玄钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Chisel Head","tr":"生铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Chisel Head","tr":"聚乙烯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Chisel Head","tr":"环氧树脂 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Chisel Head","tr":"硅橡胶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Chisel Head","tr":"聚己内酰胺 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Chisel Head","tr":"聚四氟乙烯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Chisel Head","tr":"蓝宝石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Chisel Head","tr":"不锈钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Chisel Head","tr":"坦桑石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Chisel Head","tr":"锡铁合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Chisel Head","tr":"黄玉 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Chisel Head","tr":"哈氏合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Chisel Head","tr":"锻铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Chisel Head","tr":"铁木 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Chisel Head","tr":"橄榄石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Chisel Head","tr":"蛋白石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Chisel Head","tr":"紫水晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Chisel Head","tr":"暗影金属 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Chisel Head","tr":"暗影铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Chisel Head","tr":"暗影钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Chisel Head","tr":"钢叶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Chisel Head","tr":"骑士金属 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Chisel Head","tr":"标准纯银 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Chisel Head","tr":"玫瑰金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Chisel Head","tr":"黑青铜 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Chisel Head","tr":"铋青铜 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Chisel Head","tr":"黑钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Chisel Head","tr":"红钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Chisel Head","tr":"蓝钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Chisel Head","tr":"大马士革钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Chisel Head","tr":"充能合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Chisel Head","tr":"脉冲合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Chisel Head","tr":"星辰银 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Chisel Head","tr":"钴黄铜 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Chisel Head","tr":"红石榴石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Chisel Head","tr":"黄石榴石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Chisel Head","tr":"温特姆 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Chisel Head","tr":"黑花岗岩 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Chisel Head","tr":"红花岗岩 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Chisel Head","tr":"白石棉 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Chisel Head","tr":"雄黄 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Chisel Head","tr":"磁化铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Chisel Head","tr":"磁化钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Chisel Head","tr":"磁化钕 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Chisel Head","tr":"碳化钨 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Chisel Head","tr":"钒钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Chisel Head","tr":"高速钢-G 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Chisel Head","tr":"高速钢-E 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Chisel Head","tr":"高速钢-S 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Chisel Head","tr":"深铅 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Chisel Head","tr":"量子 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Chisel Head","tr":"深空秘银 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Chisel Head","tr":"黑钚 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Chisel Head","tr":"木卫四冰 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Chisel Head","tr":"硬铝 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Chisel Head","tr":"奥利哈钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Chisel Head","tr":"三元金属 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Chisel Head","tr":"聚苯硫醚 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Chisel Head","tr":"聚苯乙烯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Chisel Head","tr":"丁苯橡胶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Chisel Head","tr":"镍锌铁氧体 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Chisel Head","tr":"纤维强化的环氧树脂 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Chisel Head","tr":"磁化钐 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Chisel Head","tr":"无尽催化剂 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Chisel Head","tr":"聚苯并咪唑 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Chisel Head","tr":" 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Chisel Head","tr":"钛铂钒合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Chisel Head","tr":"时空 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Chisel Head","tr":"大理石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Chisel Head","tr":"神秘水晶 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Chisel Head","tr":"末影钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Chisel Head","tr":"复合粘土 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Chisel Head","tr":"晶化合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Chisel Head","tr":"旋律合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Chisel Head","tr":"恒星合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Chisel Head","tr":"晶化粉红史莱姆 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Chisel Head","tr":"充能银 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Chisel Head","tr":"生动合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Chisel Head","tr":"灵宝 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Chisel Head","tr":"超时空金属 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Chisel Head","tr":"活石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Chisel Head","tr":"盖亚之魂 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Chisel Head","tr":"活木 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Chisel Head","tr":"梦之木 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Chisel Head","tr":"泡铋 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Chisel Head","tr":"立方氧化锆 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Chisel Head","tr":"氟铁电气石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Chisel Head","tr":"铬铝电气石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Chisel Head","tr":"钒镁电气石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Chisel Head","tr":"铝电气石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Chisel Head","tr":"红锆石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Chisel Head","tr":"铁橄榄石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Chisel Head","tr":"镁橄榄石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Chisel Head","tr":"钙铁辉石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Chisel Head","tr":"钍-232 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Chisel Head","tr":"堇云石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Chisel Head","tr":"磁共振石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Chisel Head","tr":"锎 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Chisel Head","tr":"BArTiMaEuSNeK 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Chisel Head","tr":"钌 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Chisel Head","tr":"铑 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Chisel Head","tr":"镀铑钯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Chisel Head","tr":"泰伯利亚 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Chisel Head","tr":"钌铱合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Chisel Head","tr":"氟石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Chisel Head","tr":"高耐久性复合钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Chisel Head","tr":"硬钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Chisel Head","tr":"合成玉 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Chisel Head","tr":"原子分离催化剂 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Chisel Head","tr":"极不稳定硅岩 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Chisel Head","tr":"锌钍合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Chisel Head","tr":"锆锡合金-4 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Chisel Head","tr":"锆锡合金-2 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Chisel Head","tr":"耐热铬铁合金-903 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Chisel Head","tr":"精金合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Chisel Head","tr":"MAR-M200特种钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Chisel Head","tr":"MAR-Ce-M200特种钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Chisel Head","tr":"氯化锂 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Chisel Head","tr":"信素 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Chisel Head","tr":"流明 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Chisel Head","tr":"阿瑟锡 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Chisel Head","tr":"钛钼合金β-C 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Chisel Head","tr":"大力合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Chisel Head","tr":"光素 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Chisel Head","tr":"对立合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Chisel Head","tr":"稀有金属合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Chisel Head","tr":"富集硅岩合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Chisel Head","tr":"亚稳态鿫 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Chisel Head","tr":"调律源金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Chisel Head","tr":"魔钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Chisel Head","tr":"泰拉钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Chisel Head","tr":"源质钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Chisel Head","tr":"磁流体约束恒星物质 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Chisel Head","tr":"白矮星物质 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Chisel Head","tr":"黑矮星物质 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Chisel Head","tr":"宇宙素 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Chisel Head","tr":"铝 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Chisel Head","tr":"铍 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Chisel Head","tr":"铋 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Chisel Head","tr":"碳 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Chisel Head","tr":"铬 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Chisel Head","tr":"金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Chisel Head","tr":"铱 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Chisel Head","tr":"铅 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Chisel Head","tr":"锰 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Chisel Head","tr":"钼 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Chisel Head","tr":"钕 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Chisel Head","tr":"中子 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Chisel Head","tr":"镍 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Chisel Head","tr":"锇 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Chisel Head","tr":"钯 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Chisel Head","tr":"铂 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Chisel Head","tr":"钚-239 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Chisel Head","tr":"钚-241 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Chisel Head","tr":"银 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Chisel Head","tr":"钍 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Chisel Head","tr":"钛 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Chisel Head","tr":"钨 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Chisel Head","tr":"铀-238 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Chisel Head","tr":"铀-235 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Chisel Head","tr":"红宝石 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Chisel Head","tr":"红石合金 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Chisel Head","tr":"终末 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Chisel Head","tr":"导电铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Chisel Head","tr":"磁钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Chisel Head","tr":"钨钢 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Chisel Head","tr":"烈焰 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Chisel Head","tr":"脉冲铁 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Chisel Head","tr":"龙 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Chisel Head","tr":"觉醒龙 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Chisel Head","tr":"褐铜 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Chisel Head","tr":"山铜 凿刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallGrisium":{"0":{"oreDict":["dustSmallGrisium"],"name":"小堆灰钛合金粉","tr":"小堆灰钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:caterpillarGE":{"0":{"name":"Speckled Wood","tr":"斑木蝶","tab":"林业|蝴蝶","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundShovel":{"0":{"name":"Bound Shovel","tr":"约束之锹","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:itemRodLongHeLiCoPtEr":{"0":{"oreDict":["stickLongHeLiCoPtEr"],"name":"长HeLiCoPtEr杆","tr":"长HeLiCoPtEr杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_auto_filler":{"0":{"name":"ME Fluid Auto Filler","tr":"ME流体自动装填器","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:bamboo":{"0":{"oreDict":["stickWood"],"name":"Bamboo","tr":"竹子","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:AmmoniumNitrateSlurry":{"0":{"oreDict":["cellHydratedAmmoniumNitrateSlurry"],"name":"水合硝酸铵浆单元","tr":"水合硝酸铵浆单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coconutshrimpItem":{"0":{"oreDict":["foodCoconutshrimp"],"name":"Coconut Shrimp","tr":"椰子虾","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSimmeringCombs":{"0":{"name":"Crated Simmering Comb","tr":"装箱的激化蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:asparagusseedItem":{"0":{"oreDict":["seedAsparagus"," listAllseed"],"name":"Asparagus Seed","tr":"芦笋种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.nickel":{"0":{"name":"Molten Nickel","tr":"熔融镍","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:ceramic":{"0":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"41":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"42":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"44":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"45":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"46":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"48":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"49":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"50":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"51":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"52":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"53":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"54":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"55":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"56":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"57":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"58":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"59":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"60":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"61":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"62":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"63":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"64":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"65":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"66":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"67":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"68":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"69":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"70":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"71":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"72":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"73":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"74":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"75":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"76":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"77":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"78":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"79":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:item.MultiStructuresLinkTool":{"0":{"name":"Multi-Structures Link Tool","tr":"Multi-Structures Link Tool","tab":"MultiStructures","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearHypogen":{"0":{"oreDict":["gearGtHypogen"," gearHypogen"],"name":"海珀珍齿轮","tr":"海珀珍齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:deathscowl":{"0":{"name":"Death\u0027s Hood","tr":"死神头巾","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":364}},"HardcoreEnderExpansion:laboratory_floor":{"0":{"name":"Laboratory Floor","tr":"实验台阶","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:beeQueenGE":{"0":{"name":"Dreaming Queen","tr":"梦境蜂后","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:corporeaCrystalCube":{"0":{"name":"Corporea Crystal Cube","tr":"多媒体水晶魔方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:epicbaconItem":{"0":{"oreDict":["foodEpicbacon"],"name":"Epic Bacon","tr":"史诗培根","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateStaballoy":{"0":{"oreDict":["plateStaballoy"],"name":"贫铀合金板","tr":"贫铀合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.essentia.vibration.chamber":{"0":{"name":"Essentia Vibration Chamber","tr":"源质谐振仓","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:scytheMud":{"0":{"name":"Mud Scythe","tr":"泥土镰刀","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"dreamcraft:item.LedoxIngot":{"0":{"oreDict":["ingotLedox"],"name":"Ledox Ingot","tr":"深铅锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteLeggings":{"0":{"name":"Thauminite Leggings","tr":"秘晶护腿","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":406}},"TaintedMagic:ItemMagicFunguar":{"0":{"name":"Magic Funguar","tr":"魔法纤毛菇","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellXenon":{"0":{"oreDict":["cellXenon"],"name":"氙单元","tr":"氙单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_storage16384":{"0":{"name":"§516384k§r ME Fluid Storage Cell","tr":"§516384k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamcauliflowerCrop":{"0":{"name":"Cauliflower Crop","tr":"花菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:livingwood0Slab":{"0":{"name":"Livingwood Slab","tr":"活木台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFPortal":{"0":{"name":"Twilight Forest Portal","tr":"暮色森林入口","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"tinkersdefense:DogbeariumIngot":{"0":{"name":"Dogbearium Ingot","tr":"多格比合金锭","tab":"工匠之盾","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedGadoliniteCe":{"0":{"oreDict":["crushedCentrifugedGadoliniteCe"],"name":"Centrifuged Crushed Gadolinite (Ce) Ore","tr":"离心硅铍钇矿(Ce)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:NetherHopper":{"0":{"name":"Hopper","tr":"漏斗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:SmelteryNether":{"0":{"name":"Smeltery Controller","tr":"冶炼炉控制器","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Smeltery Drain","tr":"冶炼炉排液口","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Seared Bricks","tr":"冶炼炉砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Seared Stone","tr":"焦黑石头","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Seared Cobblestone","tr":"焦黑圆石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Seared Paver","tr":"焦黑盖板石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cracked Seared Bricks","tr":"裂纹焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Seared Road","tr":"焦黑铺路石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fancy Seared Bricks","tr":"平滑焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Chiseled Seared Bricks","tr":"方纹焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Chiseled Seared Bricks","tr":"方纹焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongInconel690":{"0":{"oreDict":["stickLongInconel690"],"name":"长镍铬基合金-690杆","tr":"长镍铬基合金-690杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:mossy_templeblock":{"0":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Mossy Temple Block","tr":"神庙苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:bucketLiquid_sunshine":{"0":{"name":"Liquid Sunshine Bucket","tr":"桶装液态阳光","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedAgarditeCd":{"0":{"oreDict":["crushedAgarditeCd"],"name":"Crushed Agardite (Cd) Ore","tr":"粉碎的菱铁矿(Cd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemFocusTaint":{"0":{"name":"Wand Focus: Tainted Storm","tr":"法杖核心:腐化风暴","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:gherkinItem":{"0":{"oreDict":["foodGherkin"],"name":"Gherkin","tr":"腌黄瓜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamCashew":{"0":{"name":"Cashew","tr":"腰果","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA5Stairs":{"0":{"name":"Metamorphic Desert Stone Stairs","tr":"变质沙漠石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:moonDial":{"0":{"name":"Jade Moon Dial","tr":"翡翠色月相盘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDensePikyonium64B":{"0":{"oreDict":["plateDensePikyonium64B"],"name":"致密皮卡优合金64B板","tr":"致密皮卡优合金64B板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.UnfiredClayBrick":{"0":{"name":"Unfired Clay Brick","tr":"未烧制的粘土砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:enderporter":{"0":{"name":"Enderporter","tr":"末地逃逸护符","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":10}},"miscutils:itemDustSmallTechnetiumHexafluoride":{"0":{"oreDict":["dustSmallTechnetiumHexafluoride"],"name":"小堆六氟化锝粉","tr":"小堆六氟化锝粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.QuartzPillarStairBlock":{"0":{"name":"Certus Quartz Pillar Stairs","tr":"竖纹赛特斯石英楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicChest":{"0":{"name":"Draconic Chestplate","tr":"龙之胸甲","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-15}},"gendustry:MutagenCan":{"0":{"name":"Mutagen Can","tr":"诱变剂罐","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.doorTwilight":{"0":{"name":"Twilight Oak Door","tr":"Twilight Oak Door","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"RandomThings:spectreGlass":{"0":{"oreDict":["blockGlassHV"],"name":"Spectre Glass","tr":"灵魂玻璃","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:halfDrawers2B":{"0":{"oreDict":["drawerBasic"],"name":"Compact Mahoe Drawers 1x2","tr":"小型高槿树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Poplar Drawers 1x2","tr":"小型白杨树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Palm Drawers 1x2","tr":"小型棕榈树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Papaya Drawers 1x2","tr":"小型木瓜树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Pine Drawers 1x2","tr":"小型松树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Plum Drawers 1x2","tr":"小型李子树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Maple Drawers 1x2","tr":"小型枫树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Citrus Drawers 1x2","tr":"小型柑橘树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Giant Sequoia Drawers 1x2","tr":"小型巨杉树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Ipe Drawers 1x2","tr":"小型重蚁树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Padauk Drawers 1x2","tr":"小型紫檀树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Cocobolo Drawers 1x2","tr":"小型黄檀树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Zebrawood Drawers 1x2","tr":"小型斑木树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.battery-quantum":{"0":{"name":"Quantum Battery","tr":"量子合金电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Quantum Battery","tr":"量子合金电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101}},"witchery:hunterhat":{"0":{"name":"Witch Hunter Hat","tr":"狩巫帽","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":166}},"miscutils:itemGearInconel625":{"0":{"oreDict":["gearGtInconel625"," gearInconel625"],"name":"镍铬基合金-625齿轮","tr":"镍铬基合金-625齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.buggy":{"0":{"name":"Buggy","tr":"星球车","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Buggy","tr":"星球车","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Buggy","tr":"星球车","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Buggy","tr":"星球车","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedBirchSapling":{"0":{"name":"Crated Birch Sapling","tr":"装箱的白桦树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTungstenTitaniumCarbide":{"0":{"oreDict":["ingotHotTungstenTitaniumCarbide"],"name":"热碳化钨钛合金锭","tr":"热碳化钨钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_storage.singularity":{"0":{"name":"ME Fluid Digital Singularity Storage Cell","tr":"ME流体数字奇点元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"StorageDrawersForestry:halfDrawers2A":{"0":{"oreDict":["drawerBasic"],"name":"Compact Larch Drawers 1x2","tr":"小型落叶树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Teak Drawers 1x2","tr":"小型柚树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Acacia Drawers 1x2","tr":"小型金合欢抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Lime Drawers 1x2","tr":"小型酸橙树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Chestnut Drawers 1x2","tr":"小型栗树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Wenge Drawers 1x2","tr":"小型崖豆树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Baobab Drawers 1x2","tr":"小型猴面包树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Sequoia Drawers 1x2","tr":"小型红杉树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Kapok Drawers 1x2","tr":"小型木棉树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Ebony Drawers 1x2","tr":"小型乌檀树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Mahogany Drawers 1x2","tr":"小型桃心树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Balsa Drawers 1x2","tr":"小型巴尔杉抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Willow Drawers 1x2","tr":"小型柳树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Compact Walnut Drawers 1x2","tr":"小型胡桃树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Compact Greenheart Drawers 1x2","tr":"小型绿樟树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["drawerBasic"],"name":"Compact Cherry Drawers 1x2","tr":"小型樱树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:huntercoat":{"0":{"name":"Witch Hunter Coat","tr":"狩巫衣","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"GalaxySpace:item.Ingots":{"0":{"oreDict":["ingotAdamantium"," ingotAdamantite"],"name":"Adamantite Ingot","tr":"精金锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["ingotCobalt"],"name":"Cobalt Ingot","tr":"钴锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotDuralumin"],"name":"Duralumin Ingot","tr":"杜拉铝锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotLead"],"name":"Lead Ingot","tr":"铅锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["ingotMagnesium"],"name":"Magnesium Ingot","tr":"镁锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["ingotMithril"],"name":"Mithril Ingot","tr":"秘银锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["ingotNickel"],"name":"Nickel Ingot","tr":"镍锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["ingotOriharukon"],"name":"Oriharukon Ingot","tr":"奥利哈钢锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["ingotPlatinum"],"name":"Platinum Ingot","tr":"铂锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["ingotTungsten"],"name":"Tungsten Ingot","tr":"钨锭","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:tallow":{"0":{"name":"Block of Tallow","tr":"油脂方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Tallow","tr":"油脂方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemChestplateRobe":{"0":{"name":"Thaumaturge\u0027s Robe","tr":"神秘使法袍","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"Natura:natura.bow.bloodwood":{"0":{"name":"Bloodwood Bow","tr":"血树弓","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":1502}},"TwilightForest:tile.TFHedge":{"0":{"name":"Hedge","tr":"树篱","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.cagelamp2.inv":{"0":{"name":"Inverted White Cage Lamp","tr":"反相白色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Inverted Orange Cage Lamp","tr":"反相橙色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Inverted Magenta Cage Lamp","tr":"反相品红色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Inverted Light Blue Cage Lamp","tr":"反相淡蓝色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Inverted Yellow Cage Lamp","tr":"反相黄色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Inverted Lime Cage Lamp","tr":"反相黄绿色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Inverted Pink Cage Lamp","tr":"反相粉色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Inverted Grey Cage Lamp","tr":"反相灰色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Inverted Light Grey Cage Lamp","tr":"反相淡灰色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Inverted Cyan Cage Lamp","tr":"反相青色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Inverted Purple Cage Lamp","tr":"反相紫色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Inverted Blue Cage Lamp","tr":"反相蓝色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Inverted Brown Cage Lamp","tr":"反相棕色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Inverted Green Cage Lamp","tr":"反相绿色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Inverted Red Cage Lamp","tr":"反相红色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Inverted Black Cage Lamp","tr":"反相黑色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:door_acacia":{"0":{"name":"Acacia Door","tr":"金合欢木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.electrum":{"0":{"name":"Molten Electrum","tr":"熔融琥珀金","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.shredder":{"0":{"name":"Open Shredder","tr":"开放式碎纸机","tab":"开放式打印机","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:tomatoItem":{"0":{"oreDict":["cropTomato"," listAllveggie"],"name":"Tomato","tr":"番茄","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_south_lit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:shimmerwoodPlanks0SlabFull":{"0":{"name":"Shimmerwood Plank Slab","tr":"微光木板台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:bigbutton":{"0":{"name":"Big Button","tr":"大型按钮","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustBabbitAlloy":{"0":{"oreDict":["dustBabbitAlloy"],"name":"巴氏合金粉","tr":"巴氏合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemExtremeStorageCell.Container":{"0":{"name":"ME Block Container Cell","tr":"ME方块容器元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:papayajuiceItem":{"0":{"oreDict":["listAlljuice"," foodPapayajuice"],"name":"Papaya Juice","tr":"木瓜汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:hunterbootssilvered":{"0":{"name":"Witch Hunter Boots (Silvered)","tr":"狩巫靴(镀银)","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":196}},"dreamcraft:dreamcraft_Pollution":{"0":{"name":"Pollution","tr":"污染物","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusTrade":{"0":{"name":"Wand Focus: Equal Trade","tr":"法杖核心:更替","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"OpenBlocks:wrench":{"0":{"name":"Big Metal Bar","tr":"大金属棒","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:ItemShard":{"0":{"oreDict":["gemInfusedAir"," shardAir"," materialAspectShard"],"name":"Air Shard","tr":"风之碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["gemInfusedFire"," shardFire"," materialAspectShard"],"name":"Fire Shard","tr":"火之碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["gemInfusedWater"," materialAspectShard"," shardWater"],"name":"Water Shard","tr":"水之碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["gemInfusedEarth"," materialAspectShard"," shardEarth"],"name":"Earth Shard","tr":"地之碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["shardOrder"," gemInfusedOrder"," materialAspectShard"],"name":"Order Shard","tr":"秩序碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["shardEntropy"," gemInfusedEntropy"," materialAspectShard"],"name":"Entropy Shard","tr":"混沌碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["materialAspectShard"],"name":"Balanced Shard","tr":"平衡碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.fallenMeteor":{"0":{"name":"Fallen Meteor","tr":"陨石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:part.base":{"0":{"name":"Essentia Import Bus","tr":"源质输入总线","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Essentia Level Emitter","tr":"源质发信器","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Essentia Storage Bus","tr":"源质储存总线","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Essentia Export Bus","tr":"源质输出总线","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Essentia Terminal","tr":"源质终端","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Arcane Crafting Terminal","tr":"奥术合成终端","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Vis Relay Interface","tr":"要素中继接口","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Essentia Storage Monitor","tr":"源质储存监控器","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Essentia Conversion Monitor","tr":"源质交换监控器","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Creative Vis Relay Interface","tr":"创造模式要素中继接口","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorAxeGem":{"0":{"name":"Awakened Ichorium Axe","tr":"觉醒灵宝斧","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"harvestcraft:avocadoburritoItem":{"0":{"oreDict":["foodAvocadoburrito"],"name":"Avocado Burrito","tr":"鳄梨玉米煎饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseCinobiteA243":{"0":{"oreDict":["plateDenseCinobiteA243"],"name":"致密西诺柏A243板","tr":"致密西诺柏A243板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.blockFake":{"0":{"name":"tile.fakeBlockSealable.name","tr":"tile.fakeBlockSealable.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HighEnergyCircuitParts":{"0":{"name":"High Energy Circuit Parts","tr":"高能量电路部件","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"IguanaTweaksTConstruct:rubberChicken":{"0":{"name":"item.iguana.tcon.rubberChicken.name","tr":"item.iguana.tcon.rubberChicken.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewNitinol60":{"0":{"oreDict":["screwNitinol60"],"name":"镍钛诺60螺丝","tr":"镍钛诺60螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgradeVoid":{"0":{"name":"Void Upgrade","tr":"虚空升级","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chilipepperseedItem":{"0":{"oreDict":["listAllseed"," seedChilipepper"],"name":"Chili Pepper Seed","tr":"辣椒种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:bucketMushroom":{"0":{"name":"Bucket of Mushroom Soup","tr":"桶装蘑菇汤","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"StorageDrawersForestry:halfDrawers4B":{"0":{"oreDict":["drawerBasic"],"name":"Compact Mahoe Drawers 2x2","tr":"小型高槿树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Poplar Drawers 2x2","tr":"小型白杨树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Palm Drawers 2x2","tr":"小型棕榈树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Papaya Drawers 2x2","tr":"小型木瓜树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Pine Drawers 2x2","tr":"小型松树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Plum Drawers 2x2","tr":"小型李子树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Maple Drawers 2x2","tr":"小型枫树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Citrus Drawers 2x2","tr":"小型柑橘树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Giant Sequoia Drawers 2x2","tr":"小型巨杉树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Ipe Drawers 2x2","tr":"小型重蚁树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Padauk Drawers 2x2","tr":"小型紫檀树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Cocobolo Drawers 2x2","tr":"小型黄檀树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Zebrawood Drawers 2x2","tr":"小型斑木树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:halfDrawers4A":{"0":{"oreDict":["drawerBasic"],"name":"Compact Larch Drawers 2x2","tr":"小型落叶树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Teak Drawers 2x2","tr":"小型柚树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Acacia Drawers 2x2","tr":"小型金合欢抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Lime Drawers 2x2","tr":"小型酸橙树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Chestnut Drawers 2x2","tr":"小型栗树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Wenge Drawers 2x2","tr":"小型崖豆树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Baobab Drawers 2x2","tr":"小型猴面包树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Sequoia Drawers 2x2","tr":"小型红杉树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Kapok Drawers 2x2","tr":"小型木棉树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Ebony Drawers 2x2","tr":"小型乌檀树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Mahogany Drawers 2x2","tr":"小型桃心树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Balsa Drawers 2x2","tr":"小型巴尔杉抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Willow Drawers 2x2","tr":"小型柳树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Compact Walnut Drawers 2x2","tr":"小型胡桃树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Compact Greenheart Drawers 2x2","tr":"小型绿樟树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["drawerBasic"],"name":"Compact Cherry Drawers 2x2","tr":"小型樱树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBoots":{"0":{"name":"Casting Form (Boots Mold)","tr":"铸件(靴)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:elevator_rotating":{"0":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Rotating Elevator","tr":"旋转电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjRed|Transmission:projectred.transmission.framewire":{"0":{"name":"Framed Red Alloy Wire","tr":"框架红色合金丝","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["projredInsFramedWire"],"name":"Framed White Insulated Wire","tr":"框架白色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["projredInsFramedWire"],"name":"Framed Orange Insulated Wire","tr":"框架橙色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Framed Low Load Power Line","tr":"框架低负载功率线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["projredInsFramedWire"],"name":"Framed Magenta Insulated Wire","tr":"框架品红色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["projredInsFramedWire"],"name":"Framed Light Blue Insulated Wire","tr":"框架淡蓝色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["projredInsFramedWire"],"name":"Framed Yellow Insulated Wire","tr":"框架黄色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["projredInsFramedWire"],"name":"Framed Lime Insulated Wire","tr":"框架黄绿色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["projredInsFramedWire"],"name":"Framed Pink Insulated Wire","tr":"框架粉色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["projredInsFramedWire"],"name":"Framed Grey Insulated Wire","tr":"框架灰色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["projredInsFramedWire"],"name":"Framed Light Grey Insulated Wire","tr":"框架淡灰色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["projredInsFramedWire"],"name":"Framed Cyan Insulated Wire","tr":"框架青色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["projredInsFramedWire"],"name":"Framed Purple Insulated Wire","tr":"框架紫色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["projredInsFramedWire"],"name":"Framed Blue Insulated Wire","tr":"框架蓝色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["projredInsFramedWire"],"name":"Framed Brown Insulated Wire","tr":"框架棕色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["projredInsFramedWire"],"name":"Framed Green Insulated Wire","tr":"框架绿色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["projredInsFramedWire"],"name":"Framed Red Insulated Wire","tr":"框架红色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["projredInsFramedWire"],"name":"Framed Black Insulated Wire","tr":"框架黑色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Framed Bundled Cable","tr":"框架集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:routing.table":{"0":{"name":"Routing Table","tr":"列车时刻表","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wrench":{"0":{"name":"Crystal Binder","tr":"连接扳手","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":1}},"irontank:glassCopperUpgrade":{"0":{"name":"Glass to Copper Tank Upgrade","tr":"储罐升级:玻璃\u003e铜","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearInconel690":{"0":{"oreDict":["gearGtInconel690"," gearInconel690"],"name":"镍铬基合金-690齿轮","tr":"镍铬基合金-690齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:machineGunTurret":{"0":{"name":"Gun Turret","tr":"机关枪炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:decayingWheat":{"0":{"name":"Decaying Wheat","tr":"腐烂小麦","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaHafnium":{"0":{"oreDict":["cellPlasmaHafnium"],"name":"铪等离子体单元","tr":"铪等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodCinobiteA243":{"0":{"oreDict":["stickCinobiteA243"],"name":"西诺柏A243杆","tr":"西诺柏A243杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:leekbaconsoupItem":{"0":{"oreDict":["foodLeekbaconsoup"],"name":"Leek Bacon Soup","tr":"韭葱培根汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VoidSeed":{"0":{"name":"Void Seed","tr":"虚空种子","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPromethium":{"0":{"oreDict":["dustTinyPromethium"],"name":"小撮钷粉","tr":"小撮钷粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:crystalSlab":{"0":{"name":"Air Crystal Slab","tr":"风之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fire Crystal Slab","tr":"火之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Water Crystal Slab","tr":"水之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Earth Crystal Slab","tr":"地之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Order Crystal Slab","tr":"秩序魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Entropy Crystal Slab","tr":"混沌魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mixed Crystal Slab","tr":"复相魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Tainted Crystal Slab","tr":"污染魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.endSteel_sword":{"0":{"name":"The Ender MKII","tr":"终结之剑 MK2","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":2001}},"miscutils:itemDustSodiumCyanide":{"0":{"oreDict":["dustSodiumCyanide"],"name":"氰化钠粉","tr":"氰化钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHeLiCoPtEr":{"0":{"oreDict":["ingotHeLiCoPtEr"],"name":"HeLiCoPtEr锭","tr":"HeLiCoPtEr锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:titaniumTungstensteelUpgrade":{"0":{"name":"Titanium to Tungstensteel Tank Upgrade","tr":"储罐升级:钛\u003e钨钢","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:pressureplate.sakura":{"0":{"oreDict":["pressurePlateWood"],"name":"Sakura Pressure Plate","tr":"樱花树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_north_unlit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:TaintedMjolnir":{"0":{"name":"Broken Relic of Mjolnir","tr":"破损的雷神之锤","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:blockFrameGtIncoloyDS":{"0":{"oreDict":["frameGtIncoloyDS"],"name":"耐热铬铁合金-DS框架","tr":"耐热铬铁合金-DS框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedAncientGranite":{"0":{"oreDict":["crushedAncientGranite"],"name":"Crushed Ancient Granite Ore","tr":"粉碎的古花岗岩矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:candleberryItem":{"0":{"oreDict":["cropCandle"," cropCandleberry"],"name":"Candleberry","tr":"蜡杨梅","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioBell":{"0":{"name":"Desk Bell","tr":"按铃","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodZeron100":{"0":{"oreDict":["stickZeron100"],"name":"塞龙-100杆","tr":"塞龙-100杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:TaintShovel":{"0":{"name":"Shovel of the Purifier","tr":"净化铲","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1501}},"battlegear2:shield.gold":{"0":{"name":"Golden Shield","tr":"金盾","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":57}},"TConstruct:travelBoots":{"0":{"name":"Traveller\u0027s Boots","tr":"旅行者靴子","tab":"匠魂|装备","type":"Item","maxStackSize":1,"maxDurability":1036}},"dreamcraft:tile.QuadrupleCompressedCoalCoke":{"0":{"name":"Block of Quadruple Compressed Coal Coke","tr":"四重压缩焦煤块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:plumItem":{"0":{"oreDict":["cropPlum"," listAllfruit"],"name":"Plum","tr":"李子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_pane_magenta":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconiumFluxCapacitor":{"0":{"name":"Wyvern Flux Capacitor","tr":"双足飞龙通量电容器","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Draconic Flux Capacitor","tr":"龙之通量电容器","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:carpet":{"0":{"oreDict":["carpet"],"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Floor Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapefruityogurtItem":{"0":{"oreDict":["foodGrapefruityogurt"],"name":"Grapefruit Yogurt","tr":"葡萄柚酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtZeron100":{"0":{"oreDict":["frameGtZeron100"],"name":"塞龙-100框架","tr":"塞龙-100框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureGadoliniteY":{"0":{"oreDict":["dustImpureGadoliniteY"],"name":"Impure Gadolinite (Y) Dust","tr":"含杂硅铍钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.bow.ghostwood":{"0":{"name":"Ghostwood Bow","tr":"幽魂树弓","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":385}},"miscutils:itemDustMaragingSteel250":{"0":{"oreDict":["dustMaragingSteel250"],"name":"马氏体时效钢250粉","tr":"马氏体时效钢250粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SawBladeRuby":{"0":{"name":"Ruby Saw Blade","tr":"红宝石锯刃","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:spike_base_gold":{"0":{"name":"Golden Spike","tr":"黄金锥刺","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:expanderPowerTierTwo":{"0":{"name":"Base Power Expander (Tier 2)","tr":"基座能量扩容(二级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemGolemCore":{"0":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:veggiestirfryItem":{"0":{"oreDict":["foodVeggiestirfry"],"name":"Veggie Stirfry","tr":"炒蔬菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleBiomass":{"0":{"oreDict":["capsuleBiomass"],"name":"Biomass Capsule","tr":"耐火生物质胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IronChest:woodIronUpgrade":{"0":{"name":"Wood to Iron Chest Upgrade","tr":"升级:木\u003e铁","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:door.redwood":{"0":{"name":"Redwood Door","tr":"红木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:jellyBabies":{"0":{"name":"Handful of Jelly Babies","tr":"胶糖娃娃","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:SpeedBlock":{"0":{"name":"Rough Brownstone","tr":"粗质褐岩块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Brownstone Road","tr":"粗质褐岩铺路石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Brownstone","tr":"褐岩块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Brownstone Brick","tr":"褐岩砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Brownstone Road","tr":"褐岩铺路石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Brownstone","tr":"平滑褐岩砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Chiseled Brownstone","tr":"雕琢褐岩砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:friedpecanokraItem":{"0":{"oreDict":["foodFriedpecanokra"],"name":"Fried Pecan Okra","tr":"炸秋葵塞核桃","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:rebel":{"0":{"name":"Rebellious Block","tr":"叛军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Rebellious Block","tr":"叛军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Rebellious Block","tr":"叛军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Rebellious Block","tr":"叛军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Rebellious Block","tr":"叛军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBloodSteel":{"0":{"oreDict":["dustSmallBloodSteel"],"name":"小堆血钢粉","tr":"小堆血钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearSiliconCarbide":{"0":{"oreDict":["gearGtSiliconCarbide"," gearSiliconCarbide"],"name":"碳化硅齿轮","tr":"碳化硅齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolCertusQuartzWrench":{"0":{"name":"Certus Quartz Wrench","tr":"赛特斯石英扳手","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftAmunRa:tile.baseFalling":{"0":{"name":"Obsidian Sand","tr":"黑曜石沙子","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Obsidian Gravel","tr":"黑曜石砂砾","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Basalt Regolith","tr":"玄武岩风化层","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:cloud":{"0":{"oreDict":["cloud"],"name":"Cloud","tr":"云朵","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cloud","tr":"云朵","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Cloud","tr":"云朵","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cloud","tr":"云朵","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cloud","tr":"云朵","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleEnergyCrystal":{"0":{"oreDict":["plateDoubleEnergyCrystal"],"name":"双重能量水晶板","tr":"双重能量水晶板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"GalacticraftAmunRa:tile.basaltMultiOre":{"0":{"oreDict":["oreGold"],"name":"Gold Ore","tr":"金矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreAluminum"," oreAluminium"," oreNaturalAluminum"],"name":"Aluminum Ore","tr":"铝矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chionite Ore","tr":"玄武岩矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreSpodumene"],"name":"Spodumene Ore","tr":"锂辉石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oreAnyIron"," oreIron"],"name":"Iron Ore","tr":"铁矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["oreLapis"],"name":"Lapis Lazuli Ore","tr":"青金石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oreSilicon"],"name":"Silicon Ore","tr":"硅矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["oreTitanium"],"name":"Ilmenite Ore","tr":"钛铁矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["oreUranium"],"name":"Uranium Ore","tr":"铀矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.tinkersConstruct.singularity":{"0":{"name":"Aluminum Brass Singularity","tr":"铝黄铜奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Alumite Singularity","tr":"耐酸铝奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Ardite Singularity","tr":"阿迪特奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cobalt Singularity","tr":"钴奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ender Singularity","tr":"末影奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Glue Singularity","tr":"凝胶奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Manyullyn Singularity","tr":"玛玉灵奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.ModuleSmallCanister":{"0":{"name":"Blank Fuel Tank","tr":"空油箱","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:bloodleafseedItem":{"0":{"oreDict":["listAllseed"],"name":"Blood Leaf Seed","tr":"血腥叶片种子","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotInconel625":{"0":{"oreDict":["ingotInconel625"],"name":"镍铬基合金-625锭","tr":"镍铬基合金-625锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTowerDevice":{"0":{"name":"Reappearing Block","tr":"重现方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Vanishing Block","tr":"消失方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Locked Vanishing Block","tr":"上锁的消失方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Unlocked Vanishing Block","tr":"解锁的消失方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Carminite Builder","tr":"高塔建设者","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Anti-builder","tr":"反建器","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Ghast Trap","tr":"恶魂陷阱","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Carminite Reactor","tr":"砷铅铁反应堆","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:track.elevator":{"0":{"name":"Elevator Track","tr":"升降轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:force":{"0":{"name":"Solid","tr":"固体","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ExtraLargeFuelCanister":{"0":{"name":"Extra Large Fuel Canister","tr":"特大型燃料罐","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:buildToolBlock":{"0":{"name":"Tool Block","tr":"工具方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellIncoloy020":{"0":{"oreDict":["cellIncoloy020"],"name":"耐热铬铁合金-020单元","tr":"耐热铬铁合金-020单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsemerald":{"0":{"name":"Emerald Transport Pipe","tr":"绿宝石管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:bloodStoneBrick":{"0":{"name":"Bloodstone Brick","tr":"血石砖","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseAstralTitanium":{"0":{"oreDict":["plateDenseAstralTitanium"],"name":"致密星体钛板","tr":"致密星体钛板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.BWCircuitProgrammer":{"0":{"name":"电路编程器","tr":"电路编程器","tab":"BartWorks跨时代","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:2Ethylanthrahydroquinone":{"0":{"oreDict":["cell2Ethylanthrahydroquinone"],"name":"2-乙基蒽氢醌单元","tr":"2-乙基蒽氢醌单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:leapinglily":{"0":{"name":"Leaping Lily","tr":"跃动莲叶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:crayfishrawItem":{"0":{"oreDict":["listAllfishraw"," foodCrayfishraw"],"name":"Raw Crayfish","tr":"生龙虾","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemLeggingsCultistRobe":{"0":{"name":"Crimson Cult Leggings","tr":"血腥邪徒护腿","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":226}},"StevesCarts:BlockLiquidManager":{"0":{"name":"Liquid Manager","tr":"流体管理器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"WarpTheory:item.warptheory.cleanser":{"0":{"name":"Pure Tear","tr":"纯净泪水","tab":"神秘扭曲学","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:itemCellSodiumFluoride":{"0":{"oreDict":["cellSodiumFluoride"],"name":"氟化钠单元","tr":"氟化钠单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cactusfruitjuiceItem":{"0":{"oreDict":["listAlljuice"," foodCactusfruitjuice"],"name":"Cactus Fruit Juice","tr":"仙人掌果汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorVent":{"1":{"name":"Heat Vent","tr":"散热片","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"irontank:goldDiamondUpgrade":{"0":{"name":"Gold to Diamond Tank Upgrade","tr":"储罐升级:金\u003e钻石","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:venusblocks":{"0":{"oreDict":["rockVenus"," rockSpace"],"name":"Venus Surface Block","tr":"金星地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockVenus"," rockSpace"],"name":"Venus Subsurface Block","tr":"金星地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreSulfur"],"name":"Sulfur Ore","tr":"金星硫矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreDiamond"],"name":"Diamond Ore","tr":"金星钻石矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:iron_sliding_door":{"0":{"name":"Iron Glass Door","tr":"铁框玻璃门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinChemistIV":{"0":{"name":"Coin \"The Chemist 10K\"","tr":"化学家币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:belladonna":{"0":{"name":"Belladonna","tr":"颠茄","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorDysprosium":{"0":{"oreDict":["rotorDysprosium"],"name":"镝转子","tr":"镝转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"supersolarpanel:SpectralSolarPanel":{"0":{"name":"Spectral Solar Panel","tr":"光谱太阳能发电机(IV)","tab":"超级太阳能发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:disposeItemTurret":{"0":{"name":"Disposable Item Turret","tr":"低级投射炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemQuantumMeteor":{"1":{"name":"Quantum Boots of the Meteor","tr":"量子流星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Quantum Boots of the Meteor","tr":"量子流星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"Botania:itemFinder":{"0":{"name":"The Spectator","tr":"寻物者","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:heavilyCrackedLightNaquadahFuel":{"0":{"name":"Severely Cracked Light Naquadah Fuel","tr":"重度裂化轻质硅岩燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Neutronium_Compressor":{"0":{"name":"Neutronium Compressor","tr":"中子态素压缩机","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:dart":{"0":{"name":"Dart","tr":"飞镖","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Poison Dart","tr":"毒飞镖","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemRingRunic":{"0":{"name":"Ring of Protection","tr":"防护指环","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Ring of Runic Shielding","tr":"符文护盾指环","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Charged Ring of Shielding","tr":"充能符文护盾指环","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Revitalizing Ring of Shielding","tr":"再充能符文护盾指环","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Ztones:lampt":{"0":{"name":"Flat Lamp","tr":"平面灯","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:ravaged_brick_fence":{"0":{"name":"Ravaged Brick Fence","tr":"毁灭砖围栏","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:button.redwood":{"0":{"oreDict":["buttonWood"],"name":"Redwood Button","tr":"红木树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemCompressionSigil":{"0":{"name":"Sigil of Compression","tr":"压缩印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinChemistII":{"0":{"name":"Coin \"The Chemist 100\"","tr":"化学家币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureZircon":{"0":{"oreDict":["dustPureZircon"],"name":"Purified Zircon Dust","tr":"洁净锆石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamorangeSapling":{"0":{"name":"Orange Sapling","tr":"柑橘树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:orangejuiceItem":{"0":{"oreDict":["listAlljuice"," foodOrangejuice"],"name":"Orange Juice","tr":"橙子汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainter":{"0":{"name":"Painter","tr":"刷子","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateSiliconCarbide":{"0":{"oreDict":["plateSiliconCarbide"],"name":"碳化硅板","tr":"碳化硅板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.track.relayer":{"0":{"name":"Track Relayer Cart","tr":"轨道替换车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"harvestcraft:pamCoconut":{"0":{"name":"Coconut","tr":"椰子","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EtchedInsaneVoltageWiring":{"0":{"name":"Etched Insane Voltage Wiring","tr":"刻蚀IV电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chickengumboItem":{"0":{"oreDict":["foodChickengumbo"],"name":"Chicken Gumbo","tr":"秋葵烩鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:angelRing":{"0":{"name":"Angel Ring","tr":"天使指环","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Angel Ring","tr":"天使指环","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Angel Ring","tr":"天使指环","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Angel Ring","tr":"天使指环","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Angel Ring","tr":"天使指环","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"CarpentersBlocks:blockCarpentersGarageDoor":{"0":{"name":"Carpenter\u0027s Garage Door","tr":"木匠卷闸门","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberryseedItem":{"0":{"oreDict":["seedBlueberry"," listAllseed"],"name":"Blueberry Seed","tr":"蓝莓种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:bucketspirit":{"0":{"name":"Spirit Bucket","tr":"精神桶","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:apricotglazedporkItem":{"0":{"oreDict":["foodApricotglazedpork"],"name":"Apricot Glazed Pork","tr":"杏釉猪肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IronChest:ironGoldUpgrade":{"0":{"name":"Iron to Gold Chest Upgrade","tr":"升级:铁\u003e金","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockBabbitAlloy":{"0":{"oreDict":["blockBabbitAlloy"],"name":"巴氏合金块","tr":"巴氏合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorInconel690":{"0":{"oreDict":["rotorInconel690"],"name":"镍铬基合金-690转子","tr":"镍铬基合金-690转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightMetal":{"0":{"oreDict":["ingotKnightmetal"," knightmetal"],"name":"Knightmetal Ingot","tr":"骑士金属锭","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterMagenta":{"0":{"name":"Magenta Painter","tr":"品红色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:itemDustSelenium":{"0":{"oreDict":["dustSelenium"],"name":"硒粉","tr":"硒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.QuadrupleCompressedCoal":{"0":{"name":"Block of Quadruple Compressed Coal","tr":"四重压缩煤炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:seatBack5":{"0":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Seat Back","tr":"巴尔杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Seat Back","tr":"猴面包树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Seat Back","tr":"栗树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Seat Back","tr":"柑橘树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Seat Back","tr":"乌檀树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Seat Back","tr":"樟树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Seat Back","tr":"木棉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Seat Back","tr":"落叶松座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Seat Back","tr":"菩提树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Seat Back","tr":"白皮树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Seat Back","tr":"木瓜树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Plum Seat Back","tr":"李子树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Poplar Seat Back","tr":"杨树木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Sequoia Seat Back","tr":"红杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Teak Seat Back","tr":"柚木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Walnut Seat Back","tr":"核桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Wenge Seat Back","tr":"崖豆树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:CraftingStation":{"0":{"name":"Crafting Station","tr":"合成站","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:seatBack4":{"0":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Seat Back","tr":"巴尔杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Seat Back","tr":"猴面包树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Seat Back","tr":"栗树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Seat Back","tr":"柑橘树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Seat Back","tr":"乌檀树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Seat Back","tr":"樟树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Seat Back","tr":"木棉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Seat Back","tr":"落叶松座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Seat Back","tr":"菩提树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Seat Back","tr":"白皮树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Seat Back","tr":"木瓜树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Plum Seat Back","tr":"李子树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Poplar Seat Back","tr":"杨树木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Sequoia Seat Back","tr":"红杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Teak Seat Back","tr":"柚木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Walnut Seat Back","tr":"核桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Wenge Seat Back","tr":"崖豆树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:seatBack3":{"0":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Seat Back","tr":"巴尔杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Seat Back","tr":"猴面包树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Seat Back","tr":"栗树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Seat Back","tr":"柑橘树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Seat Back","tr":"乌檀树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Seat Back","tr":"樟树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Seat Back","tr":"木棉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Seat Back","tr":"落叶松座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Seat Back","tr":"菩提树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Seat Back","tr":"白皮树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Seat Back","tr":"木瓜树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Plum Seat Back","tr":"李子树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Poplar Seat Back","tr":"杨树木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Sequoia Seat Back","tr":"红杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Teak Seat Back","tr":"柚木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Walnut Seat Back","tr":"核桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Wenge Seat Back","tr":"崖豆树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyUraniumTetrafluoride":{"0":{"oreDict":["dustTinyUraniumTetrafluoride"],"name":"小撮四氟化铀粉","tr":"小撮四氟化铀粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedAgarditeCd":{"0":{"oreDict":["crushedCentrifugedAgarditeCd"],"name":"Centrifuged Crushed Agardite (Cd) Ore","tr":"离心菱铁矿(Cd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"tinkersdefense:AeonSteel Ingot":{"0":{"name":"Aeon Steel Ingot","tr":"伊恩钢锭","tab":"工匠之盾","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreNichromite":{"0":{"oreDict":["oreNichromite"],"name":"Nichromite Ore","tr":"镍铬矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IrradiantReinforcedChromePlate":{"0":{"name":"Irradiant Reinforced Chrome Plate","tr":"光辉强化铬板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedPowderyCombs":{"0":{"name":"Crated Powdery Comb","tr":"装箱的粉末蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:MeatBlock":{"0":{"oreDict":["hambone"],"name":"Hambone","tr":"火腿块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:chestFull":{"0":{"name":"Slightly Larger Chest","tr":"微型箱","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:sensorTierTwoItem":{"0":{"name":"Sensor (Tier 2)","tr":"传感器(二级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:wrench":{"0":{"oreDict":["oc:wrench"],"name":"Scrench","tr":"螺丝刀扳手","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:item.ironwoodSword":{"0":{"name":"Ironwood Sword","tr":"铁木剑","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"Botania:quartzSlabElfHalf":{"0":{"name":"Elven Quartz Slab","tr":"精灵石英台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorInconel625":{"0":{"oreDict":["rotorInconel625"],"name":"镍铬基合金-625转子","tr":"镍铬基合金-625转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TranscendentOrb":{"0":{"name":"Transcendent Orb","tr":"卓越宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.eucalyptus":{"0":{"oreDict":["buttonWood"],"name":"Eucalyptus Button","tr":"桉树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MytrylIngot":{"0":{"oreDict":["ingotMytryl"],"name":"Mytryl Ingot","tr":"深空秘银锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:fenceTierOne":{"0":{"name":"Fence (Tier 1)","tr":"护栏(一级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Robotics:zonePlan":{"0":{"name":"Zone Planner","tr":"区域规划机","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:enhancedFillingAgent":{"0":{"name":"Enhanced Filling Agent","tr":"[加强的]填充剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.ghostwood":{"0":{"oreDict":["fenceGateWood"],"name":"Ghostwood Fence Gate","tr":"幽魂树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:coffinblock":{"0":{"name":"Coffin","tr":"棺材","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:seatBack2":{"0":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Seat Back","tr":"巴尔杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Seat Back","tr":"猴面包树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Seat Back","tr":"栗树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Seat Back","tr":"柑橘树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Seat Back","tr":"乌檀树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Seat Back","tr":"樟树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Seat Back","tr":"木棉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Seat Back","tr":"落叶松座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Seat Back","tr":"菩提树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Seat Back","tr":"白皮树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Seat Back","tr":"木瓜树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Plum Seat Back","tr":"李子树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Poplar Seat Back","tr":"杨树木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Sequoia Seat Back","tr":"红杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Teak Seat Back","tr":"柚木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Walnut Seat Back","tr":"核桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Wenge Seat Back","tr":"崖豆树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:seatBack1":{"0":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Seat Back","tr":"巴尔杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Seat Back","tr":"猴面包树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Seat Back","tr":"栗树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Seat Back","tr":"柑橘树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Seat Back","tr":"乌檀树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Seat Back","tr":"樟树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Seat Back","tr":"木棉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Seat Back","tr":"落叶松座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Seat Back","tr":"菩提树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Seat Back","tr":"白皮树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Seat Back","tr":"木瓜树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Plum Seat Back","tr":"李子树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Poplar Seat Back","tr":"杨树木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Sequoia Seat Back","tr":"红杉座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Teak Seat Back","tr":"柚木座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Walnut Seat Back","tr":"核桃树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Wenge Seat Back","tr":"崖豆树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaCurium":{"0":{"oreDict":["cellPlasmaCurium"],"name":"锔等离子体单元","tr":"锔等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:EssentiaGenerators":{"0":{"name":"Potentia Generator","tr":"能量源质发电机","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ignis Generator","tr":"火之源质发电机","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Auram Generator","tr":"灵气源质发电机","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Arbor Generator","tr":"木之源质发电机","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Aer Generator","tr":"风之源质发电机","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lucrum Generator","tr":"贪婪源质发电机","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA6Stairs":{"0":{"name":"Metamorphic Taiga Stone Stairs","tr":"变质雪原石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearHeLiCoPtEr":{"0":{"oreDict":["gearGtHeLiCoPtEr"," gearHeLiCoPtEr"],"name":"HeLiCoPtEr齿轮","tr":"HeLiCoPtEr齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellStellite":{"0":{"oreDict":["cellStellite"],"name":"铬钴锰钛合金单元","tr":"铬钴锰钛合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseTriniumNaquadahCarbonite":{"0":{"oreDict":["plateDenseTriniumNaquadahCarbonite"],"name":"致密掺碳三元硅岩合金板","tr":"致密掺碳三元硅岩合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCookies":{"0":{"name":"Crated Cookie","tr":"装箱的曲奇","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:alchemyCatalyst":{"0":{"name":"Alchemy Catalyst","tr":"炼金催化器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:lensWater":{"0":{"name":"Echo Lens","tr":"水之共鸣之镜","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockInterface":{"0":{"name":"ME Interface","tr":"ME接口","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:NetherShard":{"0":{"name":"Wrath Shard","tr":"暴怒碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Envy Shard","tr":"妒忌碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["resourceTaint"],"name":"Taint Shard","tr":"腐化碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Pride Shard","tr":"傲慢碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Lust Shard","tr":"欲望碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Sloth Shard","tr":"怠惰碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Greed Shard","tr":"贪婪碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreFluorcaphite":{"0":{"oreDict":["oreFluorcaphite"],"name":"Fluorcaphite Ore","tr":"氟碳铈矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:autoChisel":{"0":{"name":"Auto Chisel","tr":"自动雕刻机","tab":"凿工艺|物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellIncoloyMA956":{"0":{"oreDict":["cellIncoloyMA956"],"name":"耐热铬铁合金-MA956单元","tr":"耐热铬铁合金-MA956单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:enceladusTChestT6":{"0":{"name":"Treasure Chest Tier 5","tr":"5阶宝箱","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LogicProcessorItemGoldCore":{"0":{"name":"Item Processor Tier I","tr":"物品处理器 I","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.loco.electric":{"0":{"name":"Electric Locomotive","tr":"电力机车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:temple_end_portal":{"0":{"name":"End Portal","tr":"末地传送门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chilipepperItem":{"0":{"oreDict":["cropChilipepper"," listAllpepper"],"name":"Chili Pepper","tr":"辣椒","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsRequestLogistics":{"0":{"name":"Request Logistics Pipe","tr":"请求物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_unlit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:planks":{"0":{"oreDict":["plankWood"],"name":"Sacred Oak Wood Planks","tr":"神圣橡木木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"],"name":"Cherry Wood Planks","tr":"樱桃树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"],"name":"Dark Wood Planks","tr":"黑暗树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"],"name":"Fir Wood Planks","tr":"杉树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"],"name":"Ethereal Wood Planks","tr":"空灵树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plankWood"],"name":"Magic Wood Planks","tr":"魔法树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"],"name":"Mangrove Wood Planks","tr":"红树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"],"name":"Palm Wood Planks","tr":"棕榈树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plankWood"],"name":"Redwood Wood Planks","tr":"红杉木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["plankWood"],"name":"Willow Wood Planks","tr":"柳树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["plankWood"],"name":"Bamboo Thatching","tr":"竹板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["plankWood"],"name":"Pine Wood Planks","tr":"松树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["plankWood"],"name":"Hellbark Wood Planks","tr":"地狱皮树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["plankWood"],"name":"Jacaranda Wood Planks","tr":"蓝花楹树木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["plankWood"],"name":"Mahogany Wood Planks","tr":"桃花心木木板","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseWhiteMetal":{"0":{"oreDict":["plateDenseWhiteMetal"],"name":"致密白物质板","tr":"致密白物质板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:lampb":{"0":{"name":"Flat Lamp","tr":"平面灯","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:canMead":{"0":{"name":"Mead Can","tr":"蜂蜜陈酿罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.pneumaticCraft.singularity":{"0":{"name":"Compressed Iron Singularity","tr":"致密铁奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.crumbleHorn":{"0":{"name":"Crumble Horn","tr":"粉碎号角","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1025}},"miscutils:blockBlockQuantum":{"0":{"oreDict":["blockQuantum"],"name":"量子合金块","tr":"量子合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:lampf":{"0":{"name":"Flat Lamp","tr":"平面灯","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:teaseedItem":{"0":{"oreDict":["listAllseed"," seedTea"],"name":"Tea Seed","tr":"茶种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFancySign":{"0":{"name":"Acacia Fancy Sign","tr":"金合欢精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Fancy Sign","tr":"巴尔杉精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Fancy Sign","tr":"猴面包树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Fancy Sign","tr":"樱桃树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Fancy Sign","tr":"栗树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Fancy Sign","tr":"柑橘树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Fancy Sign","tr":"乌檀树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Fancy Sign","tr":"樟树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Fancy Sign","tr":"木棉精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Fancy Sign","tr":"落叶松精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Fancy Sign","tr":"菩提树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Fancy Sign","tr":"白皮树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Fancy Sign","tr":"桃花心木精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Fancy Sign","tr":"枫树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Fancy Sign","tr":"棕榈树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Fancy Sign","tr":"木瓜树精致木牌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTellurium":{"0":{"oreDict":["plateTellurium"],"name":"碲板","tr":"碲板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingRuthenium":{"0":{"oreDict":["ringRuthenium"],"name":"钌环","tr":"钌环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:FurnaceSlab":{"0":{"name":"Slab Furnace","tr":"半砖熔炉","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:vampirelegs_kilt":{"0":{"name":"Vampire Skirted Trousers","tr":"吸血鬼裤裙","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":226}},"ThaumicHorizons:soulSieve":{"0":{"name":"Soul Sieve","tr":"灵魂滤网","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:vial":{"0":{"oreDict":["bVial"],"name":"Managlass Vial","tr":"魔法玻璃小瓶","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["bFlask"],"name":"Alfglass Flask","tr":"精灵玻璃烧瓶","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:fluidUuMatter":{"0":{"name":"UU-Matter","tr":"UU物质","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.darkwood":{"0":{"oreDict":["pressurePlateWood"],"name":"Darkwood Pressure Plate","tr":"黑暗树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"SGCraft:ic2Capacitor":{"0":{"name":"Ridiculously Large Capacitor","tr":"吊炸天电容","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"sleepingbag:sleepingBagBlock":{"0":{"name":"Sleeping Bag","tr":"Sleeping Bag","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:knoseFragment":{"0":{"name":"Aer Fragment","tr":"风之知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Ignis Fragment","tr":"火之知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Aqua Fragment","tr":"水之知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Terra Fragment","tr":"地之知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ordo Fragment","tr":"秩序知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Perditio Fragment","tr":"混沌知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Mixed Fragment","tr":"复合知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Tainted Fragment","tr":"污染知识","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemChestplateVoidFortress":{"0":{"name":"Void Thaumaturge Robe","tr":"虚空神秘使法袍","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":161}},"ExtraBees:propolis":{"0":{"name":"Watery Propolis","tr":"含水蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Oily Propolis","tr":"石油蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Petroleum Propolis","tr":"燃油蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Creosote Propolis","tr":"木榴油蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:corporeaRetainer":{"0":{"name":"Corporea Retainer","tr":"多媒体固定器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemSlowBoots":{"0":{"name":"Boots of the Sloth","tr":"Boots of the Sloth","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:itemNuggetGermanium":{"0":{"oreDict":["nuggetGermanium"],"name":"锗粒","tr":"锗粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilHypogen":{"0":{"oreDict":["foilHypogen"],"name":"海珀珍箔","tr":"海珀珍箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:icefence":{"0":{"name":"Ice Fence","tr":"冰栅栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.OvenGlove":{"0":{"name":"BBQ Glove (Left hand)","tr":"烧烤手套(左)","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"BBQ Glove (Right hand)","tr":"烧烤手套(右)","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BioChunk":{"0":{"name":"Bio Chunk","tr":"植物块","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:hunterboots":{"0":{"name":"Witch Hunter Boots","tr":"狩巫靴","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":196}},"miscutils:blockBlockBlackTitanium":{"0":{"oreDict":["blockBlackTitanium"],"name":"黑钛块","tr":"黑钛块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:catalogue":{"0":{"name":"Catalogue","tr":"贸易目录","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftAmunRa:tile.baseGrass":{"0":{"name":"Redgrass","tr":"红草方块","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Deep Algae","tr":"深海蓝藻","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"tile.vaccumRedGrass.name","tr":"tile.vaccumRedGrass.name","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:expanderPowerTierFour":{"0":{"name":"Base Power Expander (Tier 4)","tr":"基座能量扩容(四级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialHammer":{"0":{"name":"Primordial Warhammer","tr":"元始战锤","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1501}},"witchery:vampirechaincoat_female":{"0":{"name":"Vampire Chain Coat (Ladies)","tr":"吸血鬼链甲 (女装)","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:itemHotIngotHastelloyN":{"0":{"oreDict":["ingotHotHastelloyN"],"name":"热哈斯特洛依合金-N锭","tr":"热哈斯特洛依合金-N锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersNatura:halfDrawers4":{"0":{"oreDict":["drawerBasic"],"name":"Compact Eucalyptus Drawers 2x2","tr":"小型桉树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Sakura Drawers 2x2","tr":"小型樱花树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Ghostwood Drawers 2x2","tr":"小型幽魂树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Redwood Drawers 2x2","tr":"小型红木树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Blood Drawers 2x2","tr":"小型血树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Hopseed Drawers 2x2","tr":"小型车桑子树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Maple Drawers 2x2","tr":"小型枫树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Silverbell Drawers 2x2","tr":"小型银铃树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Amaranth Drawers 2x2","tr":"小型紫檀树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Tigerwood Drawers 2x2","tr":"小型核桃树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Willow Drawers 2x2","tr":"小型柳树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Darkwood Drawers 2x2","tr":"小型黑暗树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Fusewood Drawers 2x2","tr":"小型熔融树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersNatura:halfDrawers2":{"0":{"oreDict":["drawerBasic"],"name":"Compact Eucalyptus Drawers 1x2","tr":"小型桉树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Sakura Drawers 1x2","tr":"小型樱花树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Ghostwood Drawers 1x2","tr":"小型幽魂树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Redwood Drawers 1x2","tr":"小型红木树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Blood Drawers 1x2","tr":"小型血树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Hopseed Drawers 1x2","tr":"小型车桑子树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Maple Drawers 1x2","tr":"小型枫树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Silverbell Drawers 1x2","tr":"小型银铃树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Amaranth Drawers 1x2","tr":"小型紫檀树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Tigerwood Drawers 1x2","tr":"小型核桃树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Willow Drawers 1x2","tr":"小型柳树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Darkwood Drawers 1x2","tr":"小型黑暗树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Fusewood Drawers 1x2","tr":"小型熔融树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.arcticHelm":{"0":{"name":"Arctic Hood","tr":"极地兜帽","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":111}},"ExtraUtilities:glove":{"0":{"name":"Glove","tr":"手套","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockInfiniteFluidTank":{"0":{"name":"Infinite Fluid Tank","tr":"无限流体储罐","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TheBigEgg":{"0":{"name":"The Big Egg","tr":"大鸡蛋","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:pollen":{"0":{"name":"Unusual Pollen","tr":"罕见花粉","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Phased Pollen","tr":"相位花粉","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:laboratory_obsidian":{"0":{"name":"Laboratory Obsidian","tr":"实验黑曜石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:saloon":{"0":{"name":"Saloon Door","tr":"酒馆门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA10Stairs":{"0":{"name":"Metamorphic Mountain Cobblestone Stairs","tr":"变质高山圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.scepterZombie":{"0":{"name":"Zombie Scepter","tr":"僵尸权杖","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":10}},"TMechworks:RedstoneMachine":{"0":{"name":"Drawbridge","tr":"造桥器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Igniter","tr":"点火器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Advanced Drawbridge","tr":"高级造桥器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Extended Drawbridge","tr":"增强造桥器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Factory:pumpBlock":{"0":{"oreDict":["craftingPump"],"name":"Pump","tr":"液泵","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.emptyOreMap":{"0":{"name":"Blank Maze/Ore Map","tr":"空白的迷宫/矿石地图","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:canLava":{"0":{"name":"Lava Can","tr":"岩浆罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemwoodrotor":{"0":{"name":"Kinetic Gearbox Rotor (Energetic Alloy)","tr":"充能合金转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":512001}},"RandomThings:dyeingMachine":{"0":{"name":"Dyeing Machine","tr":"混色机器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:flippers":{"0":{"name":"Flippers","tr":"脚蹼","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"Ztones:tile.reedBlock":{"0":{"name":"Reed ⓪","tr":"Reed ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Reed ①","tr":"Reed ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Reed ②","tr":"Reed ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Reed ③","tr":"Reed ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Reed ④","tr":"Reed ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Reed ⑤","tr":"Reed ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Reed ⑥","tr":"Reed ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Reed ⑦","tr":"Reed ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Reed ⑧","tr":"Reed ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Reed ⑨","tr":"Reed ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Reed ⑩","tr":"Reed ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Reed ⑪","tr":"Reed ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Reed ⑫","tr":"Reed ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Reed ⑬","tr":"Reed ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Reed ⑭","tr":"Reed ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Reed ⑮","tr":"Reed ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalColdIngot":{"0":{"oreDict":["ingotColdMysteriousCrystal"],"name":"Cold Mysterious Crystal Ingot","tr":"霜冻的神秘水晶锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneSmallBrickStairBlock":{"0":{"name":"Sky Stone Small Brick Stairs","tr":"陨石砖块楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TungstenItemCasing":{"0":{"oreDict":["itemCasingTungsten"],"name":"Tungsten Item Casing","tr":"钨外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneStairBlock":{"0":{"name":"Sky Stone Stairs","tr":"陨石楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:waterchestnutItem":{"0":{"oreDict":["cropWaterchestnut"," listAllveggie"],"name":"Water Chestnut","tr":"孛荠","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"GraviSuite:advNanoChestPlate":{"1":{"name":"Advanced NanoChestPlate","tr":"进阶纳米重力胸甲","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Advanced NanoChestPlate","tr":"进阶纳米重力胸甲","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"IC2:fluidConstructionFoam":{"0":{"name":"Construction Foam","tr":"建筑泡沫","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotHastelloyX":{"0":{"oreDict":["ingotHotHastelloyX"],"name":"热哈斯特洛依合金-X锭","tr":"热哈斯特洛依合金-X锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.doorMine":{"0":{"name":"Minewood Door","tr":"矿工树门","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:item.parachute":{"0":{"name":"Parachute","tr":"降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Black Parachute","tr":"黑色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Light Blue Parachute","tr":"淡蓝色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Lime Parachute","tr":"黄绿色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Brown Parachute","tr":"棕色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Blue Parachute","tr":"蓝色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Gray Parachute","tr":"灰色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Green Parachute","tr":"绿色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Light Gray Parachute","tr":"淡灰色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Magenta Parachute","tr":"品红色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Orange Parachute","tr":"橙色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Pink Parachute","tr":"粉色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Purple Parachute","tr":"紫色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Red Parachute","tr":"红色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Cyan Parachute","tr":"青色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Yellow Parachute","tr":"黄色降落伞","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemHotIngotHastelloyW":{"0":{"oreDict":["ingotHotHastelloyW"],"name":"热哈斯特洛依合金-W锭","tr":"热哈斯特洛依合金-W锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:horizontal":{"0":{"name":"Shattered Avarice Pearl","tr":"贪婪珍珠碎片","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:endium_block":{"0":{"oreDict":["blockHeeEndium"],"name":"Endium Block","tr":"终末块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallRhenium":{"0":{"oreDict":["dustSmallRhenium"],"name":"小堆铼粉","tr":"小堆铼粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapesaladItem":{"0":{"oreDict":["foodGrapesalad"],"name":"Grape Salad","tr":"葡萄沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotInconel690":{"0":{"oreDict":["ingotInconel690"],"name":"镍铬基合金-690锭","tr":"镍铬基合金-690锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSeeds":{"0":{"name":"Crated Seeds","tr":"装箱的小麦种子","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBlackTitanium":{"0":{"oreDict":["cellBlackTitanium"],"name":"黑钛单元","tr":"黑钛单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:lepidopteristBag":{"0":{"name":"Lepidopterist\u0027s Backpack","tr":"鳞翅目昆虫学家背包","tab":"林业|蝴蝶","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:stair.redwood":{"0":{"oreDict":["stairWood"],"name":"Redwood Stairs","tr":"红木树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartScytheHead":{"1536":{"name":"精金 Scythe Head","tr":"精金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Scythe Head","tr":"神秘蓝金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Scythe Head","tr":"琥珀 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Scythe Head","tr":"纯镃 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Scythe Head","tr":"谐镃 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Scythe Head","tr":"聚氯乙烯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Scythe Head","tr":"永恒 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Scythe Head","tr":"磁物质 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Scythe Head","tr":"赛特斯石英 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Scythe Head","tr":"暗影秘银 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Scythe Head","tr":"玄铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Scythe Head","tr":"戴斯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Scythe Head","tr":"铿铀 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Scythe Head","tr":"通流琥珀金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Scythe Head","tr":"末影粗胚 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Scythe Head","tr":"末影(te) 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Scythe Head","tr":"炽热的钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Scythe Head","tr":"火石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Scythe Head","tr":"力量 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Scythe Head","tr":"石墨 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Scythe Head","tr":"石墨烯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Scythe Head","tr":"注魔金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Scythe Head","tr":"风之魔晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Scythe Head","tr":"火之魔晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Scythe Head","tr":"地之魔晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Scythe Head","tr":"水之魔晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Scythe Head","tr":"混沌魔晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Scythe Head","tr":"秩序魔晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Scythe Head","tr":"玉 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Scythe Head","tr":"碧玉 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Scythe Head","tr":"陨铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Scythe Head","tr":"陨钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Scythe Head","tr":"硅岩 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Scythe Head","tr":"硅岩合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Scythe Head","tr":"富集硅岩 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Scythe Head","tr":"超能硅岩 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Scythe Head","tr":"下界石英 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Scythe Head","tr":"下界之星 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Scythe Head","tr":"三钛 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Scythe Head","tr":"虚空 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Scythe Head","tr":"胶木 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Scythe Head","tr":"幽冥剧毒结晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Scythe Head","tr":"强化 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Scythe Head","tr":"铱锇合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Scythe Head","tr":"阳光化合物 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Scythe Head","tr":"魂金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Scythe Head","tr":"蓝黄玉 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Scythe Head","tr":"黄铜 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Scythe Head","tr":"白铜 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Scythe Head","tr":"深渊铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Scythe Head","tr":"钻石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Scythe Head","tr":"琥珀金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Scythe Head","tr":"绿宝石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Scythe Head","tr":"强化混合晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Scythe Head","tr":"混合晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Scythe Head","tr":"绿色蓝宝石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Scythe Head","tr":"殷钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Scythe Head","tr":"坎塔尔合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Scythe Head","tr":"镁铝合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Scythe Head","tr":"镍铬合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Scythe Head","tr":"玄钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Scythe Head","tr":"生铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Scythe Head","tr":"聚乙烯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Scythe Head","tr":"环氧树脂 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Scythe Head","tr":"硅橡胶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Scythe Head","tr":"聚己内酰胺 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Scythe Head","tr":"聚四氟乙烯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Scythe Head","tr":"蓝宝石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Scythe Head","tr":"不锈钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Scythe Head","tr":"坦桑石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Scythe Head","tr":"锡铁合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Scythe Head","tr":"黄玉 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Scythe Head","tr":"哈氏合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Scythe Head","tr":"锻铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Scythe Head","tr":"铁木 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Scythe Head","tr":"橄榄石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Scythe Head","tr":"蛋白石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Scythe Head","tr":"紫水晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Scythe Head","tr":"暗影金属 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Scythe Head","tr":"暗影铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Scythe Head","tr":"暗影钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Scythe Head","tr":"钢叶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Scythe Head","tr":"骑士金属 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Scythe Head","tr":"标准纯银 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Scythe Head","tr":"玫瑰金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Scythe Head","tr":"黑青铜 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Scythe Head","tr":"铋青铜 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Scythe Head","tr":"黑钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Scythe Head","tr":"红钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Scythe Head","tr":"蓝钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Scythe Head","tr":"大马士革钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Scythe Head","tr":"充能合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Scythe Head","tr":"脉冲合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Scythe Head","tr":"星辰银 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Scythe Head","tr":"钴黄铜 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Scythe Head","tr":"红石榴石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Scythe Head","tr":"黄石榴石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Scythe Head","tr":"温特姆 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Scythe Head","tr":"黑花岗岩 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Scythe Head","tr":"红花岗岩 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Scythe Head","tr":"白石棉 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Scythe Head","tr":"雄黄 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Scythe Head","tr":"磁化铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Scythe Head","tr":"磁化钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Scythe Head","tr":"磁化钕 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Scythe Head","tr":"碳化钨 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Scythe Head","tr":"钒钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Scythe Head","tr":"高速钢-G 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Scythe Head","tr":"高速钢-E 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Scythe Head","tr":"高速钢-S 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Scythe Head","tr":"深铅 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Scythe Head","tr":"量子 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Scythe Head","tr":"深空秘银 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Scythe Head","tr":"黑钚 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Scythe Head","tr":"木卫四冰 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Scythe Head","tr":"硬铝 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Scythe Head","tr":"奥利哈钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Scythe Head","tr":"三元金属 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Scythe Head","tr":"聚苯硫醚 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Scythe Head","tr":"聚苯乙烯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Scythe Head","tr":"丁苯橡胶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Scythe Head","tr":"镍锌铁氧体 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Scythe Head","tr":"纤维强化的环氧树脂 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Scythe Head","tr":"磁化钐 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Scythe Head","tr":"无尽催化剂 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Scythe Head","tr":"聚苯并咪唑 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Scythe Head","tr":" 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Scythe Head","tr":"钛铂钒合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Scythe Head","tr":"时空 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Scythe Head","tr":"大理石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Scythe Head","tr":"神秘水晶 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Scythe Head","tr":"末影钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Scythe Head","tr":"复合粘土 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Scythe Head","tr":"晶化合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Scythe Head","tr":"旋律合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Scythe Head","tr":"恒星合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Scythe Head","tr":"晶化粉红史莱姆 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Scythe Head","tr":"充能银 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Scythe Head","tr":"生动合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Scythe Head","tr":"灵宝 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Scythe Head","tr":"超时空金属 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Scythe Head","tr":"活石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Scythe Head","tr":"盖亚之魂 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Scythe Head","tr":"活木 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Scythe Head","tr":"梦之木 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Scythe Head","tr":"泡铋 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Scythe Head","tr":"立方氧化锆 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Scythe Head","tr":"氟铁电气石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Scythe Head","tr":"铬铝电气石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Scythe Head","tr":"钒镁电气石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Scythe Head","tr":"铝电气石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Scythe Head","tr":"红锆石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Scythe Head","tr":"铁橄榄石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Scythe Head","tr":"镁橄榄石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Scythe Head","tr":"钙铁辉石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Scythe Head","tr":"钍-232 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Scythe Head","tr":"堇云石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Scythe Head","tr":"磁共振石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Scythe Head","tr":"锎 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Scythe Head","tr":"BArTiMaEuSNeK 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Scythe Head","tr":"钌 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Scythe Head","tr":"铑 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Scythe Head","tr":"镀铑钯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Scythe Head","tr":"泰伯利亚 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Scythe Head","tr":"钌铱合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Scythe Head","tr":"氟石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Scythe Head","tr":"高耐久性复合钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Scythe Head","tr":"硬钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Scythe Head","tr":"合成玉 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Scythe Head","tr":"原子分离催化剂 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Scythe Head","tr":"极不稳定硅岩 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Scythe Head","tr":"锌钍合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Scythe Head","tr":"锆锡合金-4 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Scythe Head","tr":"锆锡合金-2 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Scythe Head","tr":"耐热铬铁合金-903 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Scythe Head","tr":"精金合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Scythe Head","tr":"MAR-M200特种钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Scythe Head","tr":"MAR-Ce-M200特种钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Scythe Head","tr":"氯化锂 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Scythe Head","tr":"信素 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Scythe Head","tr":"流明 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Scythe Head","tr":"阿瑟锡 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Scythe Head","tr":"钛钼合金β-C 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Scythe Head","tr":"大力合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Scythe Head","tr":"光素 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Scythe Head","tr":"对立合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Scythe Head","tr":"稀有金属合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Scythe Head","tr":"富集硅岩合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Scythe Head","tr":"亚稳态鿫 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Scythe Head","tr":"调律源金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Scythe Head","tr":"魔钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Scythe Head","tr":"泰拉钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Scythe Head","tr":"源质钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Scythe Head","tr":"磁流体约束恒星物质 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Scythe Head","tr":"白矮星物质 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Scythe Head","tr":"黑矮星物质 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Scythe Head","tr":"宇宙素 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Scythe Head","tr":"铝 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Scythe Head","tr":"铍 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Scythe Head","tr":"铋 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Scythe Head","tr":"碳 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Scythe Head","tr":"铬 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Scythe Head","tr":"金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Scythe Head","tr":"铱 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Scythe Head","tr":"铅 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Scythe Head","tr":"锰 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Scythe Head","tr":"钼 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Scythe Head","tr":"钕 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Scythe Head","tr":"中子 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Scythe Head","tr":"镍 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Scythe Head","tr":"锇 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Scythe Head","tr":"钯 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Scythe Head","tr":"铂 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Scythe Head","tr":"钚-239 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Scythe Head","tr":"钚-241 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Scythe Head","tr":"银 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Scythe Head","tr":"钍 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Scythe Head","tr":"钛 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Scythe Head","tr":"钨 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Scythe Head","tr":"铀-238 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Scythe Head","tr":"铀-235 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Scythe Head","tr":"红宝石 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Scythe Head","tr":"红石合金 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Scythe Head","tr":"终末 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Scythe Head","tr":"导电铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Scythe Head","tr":"磁钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Scythe Head","tr":"钨钢 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Scythe Head","tr":"烈焰 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Scythe Head","tr":"脉冲铁 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Scythe Head","tr":"龙 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Scythe Head","tr":"觉醒龙 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Scythe Head","tr":"褐铜 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Scythe Head","tr":"山铜 镰刀刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:habitatLocator":{"0":{"name":"Habitat Locator","tr":"栖息地定位仪","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:canHoney":{"0":{"name":"Honey Can","tr":"蜜罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:blockNuclearControlLight":{"0":{"name":"White Lamp","tr":"白色灯","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"White Lamp","tr":"白色灯","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Orange Lamp","tr":"橙色灯","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Orange Lamp","tr":"橙色灯","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemChestplateCultistLeaderPlate":{"0":{"name":"Crimson Praetor Chestplate","tr":"血腥主教胸甲","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":641}},"cookingforblockheads:orange_kitchen_floor":{"0":{"name":"Orange Kitchen Floor","tr":"橙色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearLaurenium":{"0":{"oreDict":["gearGtLaurenium"," gearLaurenium"],"name":"劳伦姆合金齿轮","tr":"劳伦姆合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SnowQueenBloodDrop":{"0":{"name":"Snow Queen Blood Drop","tr":"冰雪女王之血滴","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:liquidresin":{"0":{"oreDict":["cellLiquidResin"],"name":"液态树脂单元","tr":"液态树脂单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyIncoloy020":{"0":{"oreDict":["dustTinyIncoloy020"],"name":"小撮耐热铬铁合金-020粉","tr":"小撮耐热铬铁合金-020粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyGrisium":{"0":{"oreDict":["dustTinyGrisium"],"name":"小撮灰钛合金粉","tr":"小撮灰钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHydrogenCyanide":{"0":{"oreDict":["cellHydrogenCyanide"],"name":"氢氰酸单元","tr":"氢氰酸单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:ash":{"0":{"name":"Ash Block","tr":"灰烬块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.scepterLifeDrain":{"0":{"name":"Scepter of Life Draining","tr":"吸血权杖","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":100}},"GraviSuite:advJetpack":{"1":{"name":"Advanced Electric Jetpack","tr":"进阶电力喷气背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Advanced Electric Jetpack","tr":"进阶电力喷气背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"GalaxySpace:item.HeavyDutyPlate5":{"0":{"name":"Heavy Duty Plate","tr":"重型板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.HeavyDutyPlate4":{"0":{"name":"Heavy Duty Plate","tr":"重型板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.HeavyDutyPlate7":{"0":{"name":"Heavy Duty Plate","tr":"重型板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureMiessiite":{"0":{"oreDict":["dustImpureMiessiite"],"name":"Impure Miessiite Dust","tr":"含杂硅灰石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormCylinder":{"0":{"name":"Casting Form (Cylinder Mold)","tr":"铸件(圆柱)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.HeavyDutyPlate6":{"0":{"name":"Heavy Duty Plate","tr":"重型板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:machine.beta":{"0":{"name":"Iron Tank Wall","tr":"铁质蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Iron Tank Gauge","tr":"铁质蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Tank Valve","tr":"铁质蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Low Pressure Boiler Tank","tr":"低压锅炉","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"High Pressure Boiler Tank","tr":"高压锅炉","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Solid Fueled Boiler Firebox","tr":"固态燃料燃烧室","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Liquid Fueled Boiler Firebox","tr":"液态燃料燃烧室","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hobbyist\u0027s Steam Engine","tr":"民科蒸汽引擎","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Commercial Steam Engine","tr":"商用蒸汽引擎","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Industrial Steam Engine","tr":"工业蒸汽引擎","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Anchor Sentinel","tr":"拱卫之锚","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Void Chest","tr":"虚空箱子","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Metals Chest","tr":"金属箱子","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Steel Tank Wall","tr":"钢质蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Steel Tank Gauge","tr":"钢质蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Steel Tank Valve","tr":"钢质蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatemilkshakeItem":{"0":{"oreDict":["foodChocolatemilkshake"],"name":"Chocolate Milkshake","tr":"巧克力奶昔","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:aurelia":{"0":{"name":"Aurelia","tr":"灵气花","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.HeavyDutyPlate8":{"0":{"name":"Heavy Duty Plate","tr":"重型板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTechnetiumHexafluoride":{"0":{"oreDict":["dustTechnetiumHexafluoride"],"name":"六氟化锝粉","tr":"六氟化锝粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:soulJar":{"0":{"name":"Jarred Soul","tr":"缸中 灵魂","tab":"神秘视界","type":"Block","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodHastelloyC276":{"0":{"oreDict":["stickHastelloyC276"],"name":"哈斯特洛依合金-C276杆","tr":"哈斯特洛依合金-C276杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:gummybearsItem":{"0":{"oreDict":["foodGummybears"],"name":"Gummy Bears","tr":"小熊软糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustDecayedRadium226":{"0":{"oreDict":["dustDecayedRadium226"],"name":"衰变镭-226粉","tr":"衰变镭-226粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MalformedSlush":{"0":{"name":"Malformed Slush","tr":"难看的糖浆","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstrack2":{"0":{"name":"Pine Tool Rack","tr":"松树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Tool Rack","tr":"李子树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Tool Rack","tr":"杨树木工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Tool Rack","tr":"红杉工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Tool Rack","tr":"柚木工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Tool Rack","tr":"核桃树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Tool Rack","tr":"崖豆树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Tool Rack","tr":"柳树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:spear.iron":{"0":{"name":"Iron Spear","tr":"铁标枪","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":251}},"harvestcraft:cherrysodaItem":{"0":{"oreDict":["foodCherrysoda"],"name":"Cherry Soda","tr":"樱桃汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:InkFlower":{"0":{"name":"Umbral Rose","tr":"暗影玫瑰","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:polyurethane":{"0":{"oreDict":["cellPolyurethane"],"name":"聚氨酯单元","tr":"聚氨酯单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.heavyNoseCone":{"0":{"name":"Heavy Nose Cone","tr":"重型前锥体","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cabbageseedItem":{"0":{"oreDict":["seedCabbage"," listAllseed"],"name":"Cabbage Seed","tr":"卷心菜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonmeringueItem":{"0":{"oreDict":["foodLemonmeringue"],"name":"Lemon Meringue","tr":"柠檬酥","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltThallium":{"0":{"oreDict":["boltThallium"],"name":"铊螺栓","tr":"铊螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcashewSapling":{"0":{"name":"Cashew Sapling","tr":"腰果树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHastelloyC276":{"0":{"oreDict":["nuggetHastelloyC276"],"name":"哈斯特洛依合金-C276粒","tr":"哈斯特洛依合金-C276粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:diggerBagT2":{"0":{"name":"Digger\u0027s Woven Backpack","tr":"挖掘者编织背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"malisisdoors:item.saloon":{"0":{"name":"Saloon Door","tr":"酒馆门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:apiculture":{"0":{"name":"Apiary","tr":"蜂箱","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Bee House","tr":"简易蜂房","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:spawnerEgg":{"0":{"name":"Spawn Chromatic Sheep","tr":"生成 七彩羊","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn Self-Shearing Sheep","tr":"生成 自动脱毛羊","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Spawn Guardian Panther","tr":"生成 守卫者美洲豹","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Spawn Gravekeeper","tr":"生成 守墓者","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Spawn Familiar","tr":"生成 神秘之子","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Spawn Chocolate Cow","tr":"生成 巧克力奶牛","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Spawn Scholar\u0027s Chicken","tr":"生成 学者鸡","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Spawn Golden Chicken","tr":"生成 黄金鸡","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Spawn Ore Boar","tr":"生成 冶金猪","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Spawn Taintfeeder","tr":"生成 腐化吞噬之猪","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Spawn Endersteed","tr":"生成 末影骥","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Spawn Seawolf","tr":"生成 海之狼","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Spawn Nether Hound","tr":"生成 地狱猎犬","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Spawn Lunar Wolf","tr":"生成 月之狼","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Spawn Zombie Horse","tr":"生成 僵尸马","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Spawn Skeletal Horse","tr":"生成 骷髅马","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Spawn Nightmare","tr":"生成 梦魇马","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Spawn Meat Slime","tr":"生成 肉质史莱姆","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Spawn Mercurial Slime","tr":"生成 水银史莱姆","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Spawn Volt Slime","tr":"生成 伏特史莱姆","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Spawn Medslime","tr":"生成 梅德史莱姆","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Spawn Sheeder","tr":"生成 蛛羊","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Spawn Lost Soul","tr":"生成 迷失灵魂","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseMaragingSteel250":{"0":{"oreDict":["plateDenseMaragingSteel250"],"name":"致密马氏体时效钢250板","tr":"致密马氏体时效钢250板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongGermanium":{"0":{"oreDict":["stickLongGermanium"],"name":"长锗杆","tr":"长锗杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustInfusedFire":{"0":{"oreDict":["dustInfusedFire"],"name":"火之魔晶粉","tr":"火之魔晶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone2Stairs":{"0":{"name":"Diorite Stairs","tr":"闪长岩楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemMultipleSensorLocationCard":{"0":{"name":"Counter Sensor Location Card","tr":"计数传感定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Liquid Sensor Location Card","tr":"流体传感定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Generator Sensor Location Card","tr":"发电机传感定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.IronWandCap":{"0":{"name":"Iron Wand Cap","tr":"铁杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.crayBlock":{"0":{"name":"Cray ⓪","tr":"Cray ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cray ①","tr":"Cray ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Cray ②","tr":"Cray ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cray ③","tr":"Cray ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cray ④","tr":"Cray ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Cray ⑤","tr":"Cray ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Cray ⑥","tr":"Cray ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cray ⑦","tr":"Cray ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Cray ⑧","tr":"Cray ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cray ⑨","tr":"Cray ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Cray ⑩","tr":"Cray ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Cray ⑪","tr":"Cray ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Cray ⑫","tr":"Cray ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Cray ⑬","tr":"Cray ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Cray ⑭","tr":"Cray ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Cray ⑮","tr":"Cray ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_lit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellThoriumBerylliumDepletedMoltenSaltTBSalt":{"0":{"oreDict":["cellThoriumBerylliumDepletedMoltenSaltTBSalt"],"name":"枯竭钍铍熔盐单元","tr":"枯竭钍铍熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:charm":{"0":{"name":"Charm of Power","tr":"力量护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Charm of Power","tr":"力量护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Charm of Power","tr":"力量护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Charm of Agility","tr":"敏捷护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Charm of Agility","tr":"敏捷护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Charm of Agility","tr":"敏捷护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Charm of Vigor","tr":"活力护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Charm of Vigor","tr":"活力护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Charm of Vigor","tr":"活力护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Charm of Defense","tr":"防御护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Charm of Defense","tr":"防御护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Charm of Defense","tr":"防御护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Charm of Magic","tr":"魔法护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Charm of Magic","tr":"魔法护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Charm of Magic","tr":"魔法护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Charm of Slaughter Impact","tr":"杀戮冲击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Charm of Equality","tr":"平衡护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Charm of Blocking","tr":"格挡护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Charm of Blocking","tr":"格挡护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Charm of Blocking","tr":"格挡护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Charm of Blocking Reflection","tr":"格挡反击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"23":{"name":"Charm of Blocking Reflection","tr":"格挡反击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"24":{"name":"Charm of Blocking Reflection","tr":"格挡反击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Charm of Digestive Recover","tr":"恢复护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"name":"Charm of Digestive Recover","tr":"恢复护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"27":{"name":"Charm of Digestive Recover","tr":"恢复护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"28":{"name":"Charm of Life Steal","tr":"生命汲取护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"30":{"name":"Charm of Life Steal","tr":"生命汲取护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"31":{"name":"Charm of Damage Redirection","tr":"伤害转移护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"32":{"name":"Charm of Damage Redirection","tr":"伤害转移护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"33":{"name":"Charm of Damage Redirection","tr":"伤害转移护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"34":{"name":"Charm of Damage Redirection","tr":"伤害转移护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"35":{"name":"Charm of Damage Redirection","tr":"伤害转移护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"36":{"name":"Charm of Damage Redirection","tr":"伤害转移护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"37":{"name":"Charm of Magic Penetration","tr":"魔法穿透护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"38":{"name":"Charm of Magic Penetration","tr":"魔法穿透护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"39":{"name":"Charm of Magic Penetration","tr":"魔法穿透护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"40":{"name":"Charm of Magic Penetration","tr":"魔法穿透护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"41":{"name":"Charm of Magic Penetration","tr":"魔法穿透护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"42":{"name":"Charm of Magic Penetration","tr":"魔法穿透护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"43":{"name":"Charm of Magic Penetration","tr":"魔法穿透护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"45":{"name":"Charm of Witchery Harm","tr":"巫术打击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"46":{"name":"Charm of Witchery Harm","tr":"巫术打击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"49":{"name":"Charm of Falling Protection","tr":"摔落保护护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"50":{"name":"Charm of Falling Protection","tr":"摔落保护护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"51":{"name":"Charm of Haste","tr":"急迫护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"52":{"name":"Charm of Haste","tr":"急迫护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"53":{"name":"Charm of Haste","tr":"急迫护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"54":{"name":"Charm of Critical Strike","tr":"暴击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"55":{"name":"Charm of Critical Strike","tr":"暴击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"56":{"name":"Charm of Critical Strike","tr":"暴击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"57":{"name":"Charm of Critical Strike","tr":"暴击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"58":{"name":"Charm of Critical Strike","tr":"暴击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"59":{"name":"Charm of Critical Strike","tr":"暴击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"60":{"name":"Charm of Second Durability","tr":"双重耐久护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"61":{"name":"Charm of Second Durability","tr":"双重耐久护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"62":{"name":"Charm of Second Durability","tr":"双重耐久护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"63":{"name":"Charm of Second Durability","tr":"双重耐久护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"64":{"name":"Charm of Second Durability","tr":"双重耐久护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"65":{"name":"Charm of Witchery Harm","tr":"巫术打击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"66":{"name":"Charm of Slaughter Impact","tr":"杀戮冲击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"67":{"name":"Charm of Slaughter Impact","tr":"杀戮冲击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"68":{"name":"Charm of Slaughter Impact","tr":"杀戮冲击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"69":{"name":"Charm of Slaughter Impact","tr":"杀戮冲击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"70":{"name":"Charm of Slaughter Impact","tr":"杀戮冲击护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"71":{"name":"Charm of Blocking Repulsion","tr":"格挡抗拒护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"72":{"name":"Charm of Blocking Repulsion","tr":"格挡抗拒护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"73":{"name":"Charm of Blocking Repulsion","tr":"格挡抗拒护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"74":{"name":"Charm of Magic Defense","tr":"魔法防御护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"75":{"name":"Charm of Magic Defense","tr":"魔法防御护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"76":{"name":"Charm of Magic Defense","tr":"魔法防御护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"77":{"name":"Charm of Last Resort","tr":"终极审判护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"78":{"name":"Charm of Last Resort","tr":"终极审判护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"79":{"name":"Charm of Last Resort","tr":"终极审判护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"BiblioCraft:item.BigBook":{"0":{"name":"Big Writing Book","tr":"精致成书","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedMycelium":{"0":{"name":"Crated Mycelium","tr":"装箱的菌丝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:oven":{"0":{"name":"Oven","tr":"烤箱","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cinnamonrollItem":{"0":{"oreDict":["foodCinnamonroll"],"name":"Cinnamon Roll","tr":"肉桂卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodRhenium":{"0":{"oreDict":["stickRhenium"],"name":"铼杆","tr":"铼杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberryjellyItem":{"0":{"oreDict":["foodBlueberryjelly"],"name":"Blueberry Jelly","tr":"蓝莓果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockStellite":{"0":{"oreDict":["blockStellite"],"name":"铬钴锰钛合金块","tr":"铬钴锰钛合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureRunite":{"0":{"oreDict":["dustImpureRunite"],"name":"Impure Runite Dust","tr":"含杂虚恩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipepowerquartz":{"0":{"name":"Quartz-Covered Kinesis Pipe","tr":"石英能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockStickyJar":{"0":{"name":"Sticky Jar","tr":"粘性罐子","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sticky Jar","tr":"粘性罐子","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sticky Jar","tr":"粘性罐子","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:skylight":{"0":{"name":"Skylight","tr":"天窗","tab":"远程接口","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:woodenGearItem":{"0":{"oreDict":["gearWood"],"name":"Wood Gear","tr":"木齿轮","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:outputRoutingFocus":{"0":{"name":"Default Output Routing Focus","tr":"输出路由核心(默认)","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Output Routing Focus (ModItem)","tr":"输出路由核心(模组物品)","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Output Routing Focus (Ignore Meta)","tr":"输出路由核心(数据值忽视)","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Output Routing Focus (MatchNBT)","tr":"输出路由核心(NBT匹配)","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Output Routing Focus (Global)","tr":"输出路由核心(Global)","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustComancheite":{"0":{"oreDict":["dustComancheite"],"name":"溴汞石粉","tr":"溴汞石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleRuthenium":{"0":{"oreDict":["plateDoubleRuthenium"],"name":"双重钌板","tr":"双重钌板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemNuggetPraseodymium":{"0":{"oreDict":["nuggetPraseodymium"],"name":"镨粒","tr":"镨粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:customBrick2SlabFull":{"0":{"name":"Frosty Brick Slab","tr":"霜冻砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedSamarskiteY":{"0":{"oreDict":["crushedCentrifugedSamarskiteY"],"name":"Centrifuged Crushed Samarskite (Y) Ore","tr":"离心铌钇矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:trapdoor_spruce":{"0":{"name":"Spruce Trapdoor","tr":"云杉木活板门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingStrontium":{"0":{"oreDict":["ringStrontium"],"name":"锶环","tr":"锶环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:teleporterMKII":{"0":{"name":"Enhanced Charm of Dislocation","tr":"高级错位宝石","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemTurningBlanksWood":{"209715":{"name":"Wooden Turning Blank","tr":"木空转换模板","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"Aroma1997Core:wrenched":{"0":{"tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraUtilities:spike_base_wood":{"0":{"name":"Wooden Spike","tr":"木质锥刺","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeBlockRequestTable":{"0":{"name":"Logistics Request Table","tr":"物流请求桌","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:fullDrawers2_1":{"0":{"oreDict":["drawerBasic"],"name":"Yellow Drawers 1x2","tr":"黄色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"White Drawers 1x2","tr":"白色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Red Drawers 1x2","tr":"红色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Grey Drawers 1x2","tr":"灰色木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Greatwood Drawers 1x2","tr":"宏伟之木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Silverwood Drawers 1x2","tr":"银木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Rowan Drawers 1x2","tr":"山梨木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Alder Drawers 1x2","tr":"赤杨木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Hawthorn Drawers 1x2","tr":"山楂木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Treated Wood Drawers 1x2","tr":"防腐木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Livingwood Drawers 1x2","tr":"活木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Dreamwood Drawers 1x2","tr":"梦之木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotTellurium":{"0":{"oreDict":["ingotTellurium"],"name":"碲锭","tr":"碲锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledPentlandite":{"0":{"oreDict":["milledPentlandite"],"name":"Milled Pentlandite","tr":"研磨镍黄铁矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsSystemEntranceLogistics":{"0":{"name":"Logistics System Entrance Pipe","tr":"物流系统入口管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBerryDusk":{"0":{"name":"Crated Duskberry","tr":"装箱的黄昏莓","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingPikyonium64B":{"0":{"oreDict":["ringPikyonium64B"],"name":"皮卡优合金64B环","tr":"皮卡优合金64B环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemElectricMeteor":{"1":{"name":"Electric Boots of the Meteor","tr":"电子流星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Electric Boots of the Meteor","tr":"电子流星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"Thaumcraft:BlockJarFilledItem":{"0":{"name":"Jar of Essentia","tr":"要素罐子","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"StorageDrawersMisc:fullDrawers2_0":{"0":{"oreDict":["drawerBasic"],"name":"Redwood Drawers 1x2","tr":"红木抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Fir Drawers 1x2","tr":"冷杉抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Acacia Drawers 1x2","tr":"刺槐抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Cypress Drawers 1x2","tr":"柏树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Japanese Maple Drawers 1x2","tr":"日本枫树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Rainbow Eucalyptus Drawers 1x2","tr":"彩虹桉树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Autumn Drawers 1x2","tr":"秋树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Bald Cypress Drawers 1x2","tr":"落羽松抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Sakura Drawers 1x2","tr":"樱花树抽屉(1x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:snowdoubleslab":{"0":{"name":"Snow Slab","tr":"雪台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:highDensityPlutonium":{"0":{"name":"High Density Plutonium","tr":"浓缩钚","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:teleporterTurret":{"0":{"name":"Teleporter Turret","tr":"传送炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"BinnieCore:fieldKit":{"0":{"name":"Field Kit","tr":"实地考察工具包","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":65}},"harvestcraft:blackpepperItem":{"0":{"oreDict":["foodBlackpepper"],"name":"Black Pepper","tr":"黑胡椒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantinumDensePlate":{"0":{"oreDict":["plateDenseQuantium"],"name":"Dense Quantium Plate","tr":"致密量子板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.borerEssence":{"0":{"name":"Borer Essence","tr":"螟虫精华","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:glass_helmet":{"0":{"name":"Glass Helmet","tr":"玻璃头盔","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":43}},"Botania:manaMirror":{"1000":{"name":"Mana Mirror","tr":"魔力手镜","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"AWWayofTime:largeBloodStoneBrick":{"0":{"name":"Large Bloodstone Brick","tr":"大血石砖","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:prismarine0Slab":{"0":{"name":"Prismarine Slab","tr":"海晶石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:Levitational Locomotive":{"0":{"name":"Levitational Locomotive","tr":"悬浮平台","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:screen2":{"0":{"oreDict":["oc:screen2"],"name":"Screen (Tier 2)","tr":"T2显示屏","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamseaweedCrop":{"0":{"name":"Seaweed Crop","tr":"海带","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitMAX":{"0":{"oreDict":["circuitTranscendent"],"name":"Any MAX Circuit","tr":"任意MAX电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:screen3":{"0":{"oreDict":["oc:screen3"],"name":"Screen (Tier 3)","tr":"T3显示屏","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bellpepperItem":{"0":{"oreDict":["listAllpepper"," cropBellpepper"," listAllveggie"],"name":"Bellpepper","tr":"甜椒","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:screen1":{"0":{"oreDict":["oc:screen1"],"name":"Screen (Tier 1)","tr":"T1显示屏","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB1Slab":{"0":{"name":"Metamorphic Plains Stone Brick Slab","tr":"变质平原石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureYttriaite":{"0":{"oreDict":["dustPureYttriaite"],"name":"Purified Yttriaite Dust","tr":"洁净钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:highDensityUranium":{"0":{"name":"High Density Uranium","tr":"浓缩铀","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:nodeCheat":{"0":{"name":"Node Opener","tr":"节点开启器","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltHafnium":{"0":{"oreDict":["boltHafnium"],"name":"铪螺栓","tr":"铪螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedAgarditeY":{"0":{"oreDict":["crushedCentrifugedAgarditeY"],"name":"Centrifuged Crushed Agardite (Y) Ore","tr":"离心菱铁矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:ice_pillar":{"0":{"name":"Ice Pillar","tr":"冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ice Pillar","tr":"冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ice Pillar","tr":"冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ice Pillar","tr":"冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ice Pillar","tr":"冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ice Pillar","tr":"冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ice Pillar","tr":"冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:end_powder_ore":{"0":{"oreDict":["oreHeeEndPowder"],"name":"End Powder Ore","tr":"末影粉末矿石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.lampOfCinders":{"0":{"name":"Lamp of Cinders","tr":"灰烬烧灯","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1025}},"miscutils:itemDustSmallLafossaite":{"0":{"oreDict":["dustSmallLafossaite"],"name":"小堆铊盐粉","tr":"小堆铊盐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPoweredSpawner":{"0":{"name":"Powered Spawner","tr":"电动刷怪笼","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:unstableingot":{"0":{"oreDict":["ingotUnstable"],"name":"Unstable Ingot","tr":"不稳定金属锭","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"oreDict":["nuggetUnstable"],"name":"Semi-stable Nugget","tr":"不稳定金属粒","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotUnstable"],"name":"Mobius \"Unstable/Stable\" Ingot","tr":"莫比乌斯\"稳定/不稳定\"锭","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.infiniteBattery":{"0":{"name":"Infinite Battery","tr":"无限电池","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":101}},"AWWayofTime:boundHelmet":{"0":{"name":"Bound Helmet","tr":"约束头盔","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"dreamcraft:item.CoinSpaceI":{"0":{"name":"Coin \"The Space Invaders 10\"","tr":"太空币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.60k_Helium_Coolantcell":{"0":{"name":"60k氦冷却单元","tr":"60k氦冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemPlateDoubleDysprosium":{"0":{"oreDict":["plateDoubleDysprosium"],"name":"双重镝板","tr":"双重镝板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Botania:ancientWill":{"0":{"name":"Will of Ahrim","tr":"艾琳的意志","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Will of Dharok","tr":"达洛克的意志","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Will of Guthan","tr":"古赞的意志","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Will of Torag","tr":"托拉格的意志","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Will of Verac","tr":"威拉克的意志","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Will of Karil","tr":"卡瑞的意志","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:cucumberseedItem":{"0":{"oreDict":["listAllseed"," seedCucumber"],"name":"Cucumber Seed","tr":"黄瓜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorSword":{"0":{"name":"Ichorium Sword","tr":"灵宝剑","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"dreamcraft:item.WandCapAlchemical":{"0":{"name":"Alchemical Wand Cap","tr":"炼金纹饰杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:newBopFarmland":{"0":{"name":"Loamy Farmland","tr":"肥沃耕地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Loamy Farmland","tr":"肥沃耕地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sandy Farmland","tr":"沙质耕地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Loamy Farmland","tr":"肥沃耕地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Loamy Farmland","tr":"肥沃耕地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Loamy Farmland","tr":"肥沃耕地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:knights_armour.boots":{"0":{"name":"Knight\u0027s Boots","tr":"骑士靴子","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:itemRingTungstenTitaniumCarbide":{"0":{"oreDict":["ringTungstenTitaniumCarbide"],"name":"碳化钨钛合金环","tr":"碳化钨钛合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockInventarium":{"0":{"name":"Inventarium Core","tr":"库存核心","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetWhiteMetal":{"0":{"oreDict":["nuggetWhiteMetal"],"name":"白物质粒","tr":"白物质粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolAdvancedNetworkTool":{"0":{"name":"Advanced Network Tool","tr":"高级网络工具","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockCompressedObsidian":{"0":{"name":"Compressed Obsidian (9)","tr":"压缩黑曜石(9)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Double Compressed Obsidian (81)","tr":"二重压缩黑曜石(81)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Triple Compressed Obsidian (729)","tr":"三重压缩黑曜石(729)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Quadruple Compressed Obsidian (6561)","tr":"四重压缩黑曜石(6561)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Quintuple Compressed Obsidian (59049)","tr":"五重压缩黑曜石(59049)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Inverted Obsidian","tr":"反转黑曜石","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Compressed Glowstone (9)","tr":"压缩萤石","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Double Compressed Glowstone (81)","tr":"二重压缩萤石","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Triple Compressed Glowstone (729)","tr":"三重压缩萤石","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Quadruple Compressed Glowstone (6561)","tr":"四重压缩萤石","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Quintuple Compressed Glowstone (59049)","tr":"五重压缩萤石","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"kubatech:defc.casing":{"7":{"name":"硅岩合金聚合机械方块","tr":"硅岩合金聚合机械方块","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"血腥灵宝聚合机械方块","tr":"血腥灵宝聚合机械方块","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"龙锭聚合机械方块","tr":"龙锭聚合机械方块","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"双足飞龙聚合机械方块","tr":"双足飞龙聚合机械方块","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"觉醒龙聚合机械方块","tr":"觉醒龙聚合机械方块","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"混沌聚合机械方块","tr":"混沌聚合机械方块","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetChromaticGlass":{"0":{"oreDict":["nuggetChromaticGlass"],"name":"彩色玻璃粒","tr":"彩色玻璃粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GraviSuite:graviTool":{"1":{"name":"GraviTool","tr":"万能重力工具","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"GraviTool","tr":"万能重力工具","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:figsmoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodFigsmoothie"],"name":"Fig Smoothie","tr":"无花果冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCalciumHydroxide":{"0":{"oreDict":["dustCalciumHydroxide"],"name":"氢氧化钙粉","tr":"氢氧化钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NeutronReflectorParts":{"0":{"name":"Neutron Reflector Parts","tr":"中子反射板零件","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.magicMapFocus":{"0":{"name":"Magic Map Focus","tr":"魔法地图核心","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodEglinSteel":{"0":{"oreDict":["stickEglinSteel"],"name":"埃格林钢杆","tr":"埃格林钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustMaragingSteel350":{"0":{"oreDict":["dustMaragingSteel350"],"name":"马氏体时效钢350粉","tr":"马氏体时效钢350粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedCryoliteF":{"0":{"oreDict":["crushedPurifiedCryoliteF"],"name":"Purified Crushed Cryolite (F) Ore","tr":"洗净的冰晶石(F)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockWritingTable":{"0":{"name":"Alchemic Chemistry Set","tr":"炼金术台","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pineappleseedItem":{"0":{"oreDict":["seedPineapple"," listAllseed"],"name":"Pineapple Seed","tr":"菠萝种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pickledonionsItem":{"0":{"oreDict":["foodPickledonions"],"name":"Pickled Onions","tr":"腌洋葱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySiliconCarbide":{"0":{"oreDict":["dustTinySiliconCarbide"],"name":"小撮碳化硅粉","tr":"小撮碳化硅粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:treealyzer":{"0":{"name":"Treealyzer","tr":"林木分析仪","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:multi_fluid_storage256":{"0":{"name":"§9256k§r ME Multi-Fluid Storage Cell","tr":"§9256k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemRemote":{"0":{"name":"Dynamite-O-Mote","tr":"遥控引爆器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodZirconiumCarbide":{"0":{"oreDict":["stickZirconiumCarbide"],"name":"碳化锆杆","tr":"碳化锆杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZrCl4":{"0":{"oreDict":["dustSmallZrCl4"],"name":"小堆氯化锆粉","tr":"小堆氯化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorAstralTitanium":{"0":{"oreDict":["rotorAstralTitanium"],"name":"星体钛转子","tr":"星体钛转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:ShurikenPart":{"0":{"name":"Wooden Shuriken","tr":"木手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Shuriken","tr":"石手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Shuriken","tr":"铁手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Shuriken","tr":"燧石手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Shuriken","tr":"仙人掌手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Shuriken","tr":"骨头手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Shuriken","tr":"黑曜石手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Shuriken","tr":"地狱岩手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Shuriken","tr":"史莱姆手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Shuriken","tr":"纸手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Shuriken","tr":"钴手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Shuriken","tr":"阿迪特手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Shuriken","tr":"玛玉灵手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Shuriken","tr":"铜手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Shuriken","tr":"青铜手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Shuriken","tr":"耐酸铝手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Shuriken","tr":"钢手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Shuriken","tr":"史莱姆手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Shuriken","tr":"生铁手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Shuriken","tr":"不稳定感应手里剑","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:friesItem":{"0":{"oreDict":["foodFries"],"name":"Fries","tr":"炸薯条","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:frameArborists":{"0":{"name":"Arborist Frame","tr":"树艺框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":241}},"Natura:Natura.bookshelf":{"0":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["bookshelfWood"],"name":"Bookshelf","tr":"书架","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:waterdrop":{"0":{"name":"Cactus Juice","tr":"仙人掌汁","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableRelayName":{"0":{"name":"Inventory Relay","tr":"物品栏中转站","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Advanced Inventory Relay","tr":"高级物品栏中转站","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gardensoupItem":{"0":{"oreDict":["foodGardensoup"],"name":"Garden Soup","tr":"菜园汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedHoneaite":{"0":{"oreDict":["crushedPurifiedHoneaite"],"name":"Purified Crushed Honeaite Ore","tr":"洗净的碲化金铊矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:item.ItemSanitySoapBeta":{"0":{"name":"Alastor\u0027s Soap","tr":"愤怒之皂","tab":"神秘革命","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureCerite":{"0":{"oreDict":["dustImpureCerite"],"name":"Impure Cerite Dust","tr":"含杂铈硅石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:soysauceItem":{"0":{"oreDict":["foodSoysauce"],"name":"Soy Sauce","tr":"酱油","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorHazmatLeggings":{"0":{"name":"Hazmat Suit Leggings","tr":"防化裤","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":65}},"miscutils:itemFoilPikyonium64B":{"0":{"oreDict":["foilPikyonium64B"],"name":"皮卡优合金64B箔","tr":"皮卡优合金64B箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Silicon:packagerBlock":{"0":{"name":"Recipe Packager","tr":"配方封包器","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockMetalDevice":{"0":{"name":"Crucible","tr":"坩埚","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Arcane Alembic","tr":"奥术蒸馏器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Vis Charge Relay","tr":"魔力充能中继器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Advanced Alchemical Construct","tr":"高级炼金构材","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Item Grate","tr":"物品格栅","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Arcane Lamp","tr":"奥术灯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Lamp of Growth","tr":"催生灯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Alchemical Construct","tr":"炼金构材","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mnemonic Matrix","tr":"记忆矩阵","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Lamp of Fertility","tr":"育种灯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Vis Relay","tr":"魔力中继器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTumbaga":{"0":{"oreDict":["cellTumbaga"],"name":"铜金合金单元","tr":"铜金合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedRunite":{"0":{"oreDict":["crushedRunite"],"name":"Crushed Runite Ore","tr":"粉碎的虚恩矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:enchantedPaper":{"0":{"name":"Enchanted Paper","tr":"附魔纸","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Runic Whitelist","tr":"符文白名单","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Runic Blacklist","tr":"符文黑名单","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Bound Enchanting Paper","tr":"附魔本","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"RIO:item.wireless_transmitter":{"0":{"name":"Wireless Transmitter","tr":"无线收发器","tab":"远程接口","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:fluid.molten.cobalt":{"0":{"name":"Molten Cobalt","tr":"熔融钴","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:EMTItems":{"1":{"name":"Crushed Amber Ore","tr":"粉碎琥珀矿","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Purified Amber Ore","tr":"纯净的粉碎琥珀矿","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Crushed Cinnabar Ore","tr":"粉碎朱砂矿","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Purified Cinnabar Ore","tr":"纯净的粉碎朱砂矿","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plateThaumium"],"name":"Thaumium Plate","tr":"神秘板","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Lightning Summoner","tr":"雷电碎片","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Feather Mesh","tr":"织羽","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["slimeball"],"name":"Glue","tr":"粘合剂","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Duct Tape","tr":"布基胶带","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Rubber Ball","tr":"橡胶球","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Cardboard Sheet","tr":"硬纸板","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Feather Glued Cardboard Wing","tr":"纸板羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Tainted Feather","tr":"腐化羽毛","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Thaumium Reinforced Wing","tr":"神秘强化羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Crystallized UU-Matter Drop","tr":"结晶UU物质液滴","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"[DEPRECATED] Draconic Core Schematic","tr":"[弃用]龙芯图纸","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"[DEPRECATED] Wyvern Core Schematic","tr":"[弃用]双足飞龙核心图纸","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"[DEPRECATED] Awakened Core Schematic","tr":"[弃用]觉醒核心图纸","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"[DEPRECATED] Chaotic Core Schematic","tr":"[弃用]混沌核心图纸","tab":"电子魔法工具","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_lit_nobottom":{"0":{"name":"Catwalk","tr":"栈桥","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorQuantumLegs":{"1":{"name":"QuantumSuit Leggings","tr":"量子护腿","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"QuantumSuit Leggings","tr":"量子护腿","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"adventurebackpack:blockCampFire":{"0":{"name":"CampFire","tr":"篝火","tab":"探险背包","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:knowledge_note":{"0":{"name":"Knowledge Note","tr":"知识笔记","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:blockMimic":{"0":{"name":"Mimic Block","tr":"模拟方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingArceusAlloy2B":{"0":{"oreDict":["ringArceusAlloy2B"],"name":"阿尔宙斯合金2B环","tr":"阿尔宙斯合金2B环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:apricotsmoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodApricotsmoothie"],"name":"Apricot Smoothie","tr":"杏仁冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:bw.HTGRMaterials":{"0":{"name":"HTGR混合燃料(钍)","tr":"HTGR混合燃料(钍)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"BISO复合材料(钍)","tr":"BISO复合材料(钍)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"TRISO复合材料(钍)","tr":"TRISO复合材料(钍)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"TRISO燃料球(钍)","tr":"TRISO燃料球(钍)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"TRISO燃料丸(钍)","tr":"TRISO燃料丸(钍)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"枯竭TRISO燃料球(钍)","tr":"枯竭TRISO燃料球(钍)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"枯竭TRISO燃料丸(钍)","tr":"枯竭TRISO燃料丸(钍)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"HTGR混合燃料(铀)","tr":"HTGR混合燃料(铀)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"BISO复合材料(铀)","tr":"BISO复合材料(铀)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"TRISO复合材料(铀)","tr":"TRISO复合材料(铀)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"TRISO燃料球(铀)","tr":"TRISO燃料球(铀)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"TRISO燃料丸(铀)","tr":"TRISO燃料丸(铀)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"枯竭TRISO燃料球(铀)","tr":"枯竭TRISO燃料球(铀)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"枯竭TRISO燃料丸(铀)","tr":"枯竭TRISO燃料丸(铀)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"HTGR混合燃料(钚)","tr":"HTGR混合燃料(钚)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"BISO复合材料(钚)","tr":"BISO复合材料(钚)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"TRISO复合材料(钚)","tr":"TRISO复合材料(钚)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"TRISO燃料球(钚)","tr":"TRISO燃料球(钚)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"TRISO燃料丸(钚)","tr":"TRISO燃料丸(钚)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"枯竭TRISO燃料球(钚)","tr":"枯竭TRISO燃料球(钚)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"枯竭TRISO燃料丸(钚)","tr":"枯竭TRISO燃料丸(钚)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:enderQuarryUpgrade":{"0":{"name":"Ender Quarry Upgrade Base","tr":"末影采石场升级基座","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ender Quarry World Hole Upgrade","tr":"末影采石场世界坑升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ender Quarry Silk Touch Upgrade","tr":"末影采石场精准升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Quarry Fortune I Upgrade","tr":"末影采石场时运I升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ender Quarry Fortune II Upgrade","tr":"末影采石场时运II升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ender Quarry Fortune III Upgrade","tr":"末影采石场时运III升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ender Quarry Speed I Upgrade","tr":"末影采石场效率I升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Ender Quarry Speed II Upgrade","tr":"末影采石场效率II升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ender Quarry Speed III Upgrade","tr":"末影采石场效率III升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ender Quarry Pump Upgrade","tr":"末影采石场泵升级","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:frameOblivion":{"0":{"name":"Oblivion Frame","tr":"湮灭框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":51}},"miscutils:itemPlateDoublePraseodymium":{"0":{"oreDict":["plateDoublePraseodymium"],"name":"双重镨板","tr":"双重镨板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:strawberrysaladItem":{"0":{"oreDict":["foodStrawberrysalad"],"name":"Strawberry Salad","tr":"草莓沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:colorStoneBrick":{"0":{"oreDict":["bricksStone"," bricksStoneBlack"],"name":"Colored Stone Bricks (White Frequency)","tr":"染色 石砖 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["bricksStone"," bricksStoneRed"],"name":"Colored Stone Bricks (Orange Frequency)","tr":"染色 石砖 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["bricksStone"," bricksStoneGreen"],"name":"Colored Stone Bricks (Magenta Frequency)","tr":"染色 石砖 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["bricksStone"," bricksStoneBrown"],"name":"Colored Stone Bricks (Light Blue Frequency)","tr":"染色 石砖 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["bricksStone"," bricksStoneBlue"],"name":"Colored Stone Bricks (Yellow Frequency)","tr":"染色 石砖 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["bricksStone"," bricksStonePurple"],"name":"Colored Stone Bricks (Lime Frequency)","tr":"染色 石砖 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["bricksStone"," bricksStoneCyan"],"name":"Colored Stone Bricks (Pink Frequency)","tr":"染色 石砖 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["bricksStone"," bricksStoneLightGray"],"name":"Colored Stone Bricks (Gray Frequency)","tr":"染色 石砖 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["bricksStone"," bricksStoneGray"],"name":"Colored Stone Bricks (Light Gray Frequency)","tr":"染色 石砖 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["bricksStone"," bricksStonePink"],"name":"Colored Stone Bricks (Cyan Frequency)","tr":"染色 石砖 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["bricksStone"," bricksStoneLime"],"name":"Colored Stone Bricks (Purple Frequency)","tr":"染色 石砖 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["bricksStone"," bricksStoneYellow"],"name":"Colored Stone Bricks (Blue Frequency)","tr":"染色 石砖 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["bricksStoneLightBlue"," bricksStone"],"name":"Colored Stone Bricks (Brown Frequency)","tr":"染色 石砖 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["bricksStoneMagenta"," bricksStone"],"name":"Colored Stone Bricks (Green Frequency)","tr":"染色 石砖 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["bricksStoneOrange"," bricksStone"],"name":"Colored Stone Bricks (Red Frequency)","tr":"染色 石砖 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["bricksStone"," bricksStoneWhite"],"name":"Colored Stone Bricks (Black Frequency)","tr":"染色 石砖 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:toughRod":{"0":{"name":"Wooden Tough Rod","tr":"木坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Tough Rod","tr":"石坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Tough Rod","tr":"铁坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Tough Rod","tr":"燧石坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Tough Rod","tr":"仙人掌坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Tough Rod","tr":"骨头坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Tough Rod","tr":"黑曜石坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Tough Rod","tr":"地狱岩坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Tough Rod","tr":"史莱姆坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Tough Rod","tr":"纸坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Tough Rod","tr":"钴坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Tough Rod","tr":"阿迪特坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Tough Rod","tr":"玛玉灵坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Tough Rod","tr":"铜坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Tough Rod","tr":"青铜坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Tough Rod","tr":"耐酸铝坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Tough Rod","tr":"钢坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Tough Rod","tr":"史莱姆坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Tough Rod","tr":"生铁坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Tough Rod","tr":"不稳定感应坚韧手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:glieoniaSeed":{"0":{"name":"Glieonia Seed","tr":"荧光种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:miscutils_fluidBlockSludge":{"0":{"name":"Sludge","tr":"污泥","tab":"GT++杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotArceusAlloy2B":{"0":{"oreDict":["ingotArceusAlloy2B"],"name":"阿尔宙斯合金2B锭","tr":"阿尔宙斯合金2B锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:asparagusquicheItem":{"0":{"oreDict":["foodAsparagusquiche"],"name":"Asparagus Quiche","tr":"芦笋乳蛋饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:dummyVat":{"0":{"name":"item.vat.name","tr":"item.vat.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:cursor":{"0":{"name":"Cursor","tr":"游标","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:item.oreMap":{"0":{"name":"Maze/Ore Map #0","tr":"迷宫/矿石地图 #0","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:vinegarItem":{"0":{"oreDict":["foodVinegar"],"name":"Vinegar","tr":"醋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaLogDarkwood":{"0":{"name":"Crated Darkwood","tr":"装箱的黑暗树原木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemThaumonomicon":{"0":{"oreDict":["bookThaumonomicon"],"name":"Thaumonomicon","tr":"魔导手册","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"42":{"oreDict":["bookThaumonomicon"],"name":"Thaumonomicon","tr":"魔导手册","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:mundaneLengtheningCatalyst":{"0":{"name":"Mundane Lengthening Catalyst","tr":"[平凡的]延时催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedMiessiite":{"0":{"oreDict":["crushedMiessiite"],"name":"Crushed Miessiite Ore","tr":"粉碎硅灰石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:upgrade":{"0":{"name":"Speed Upgrade","tr":"速度升级组件","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Automation Upgrade","tr":"自动化升级组件","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Stack Upgrade","tr":"堆叠升级组件","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Reversion Upgrade","tr":"复原升级组件","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:reactorUraniumQuaddepleted":{"0":{"name":"Quad Fuel Rod (Depleted Uranium)","tr":"四联燃料棒(枯竭铀)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.crowbar.magic":{"0":{"oreDict":["craftingToolCrowbar"],"name":"Thaumium Crowbar","tr":"奥法撬棍","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":401}},"TGregworks:tGregToolPartToolRod":{"1536":{"name":"精金 Tool Rod","tr":"精金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Tool Rod","tr":"神秘蓝金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Tool Rod","tr":"琥珀 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Tool Rod","tr":"纯镃 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Tool Rod","tr":"谐镃 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Tool Rod","tr":"聚氯乙烯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Tool Rod","tr":"永恒 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Tool Rod","tr":"磁物质 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Tool Rod","tr":"赛特斯石英 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Tool Rod","tr":"暗影秘银 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Tool Rod","tr":"玄铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Tool Rod","tr":"戴斯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Tool Rod","tr":"铿铀 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Tool Rod","tr":"通流琥珀金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Tool Rod","tr":"末影粗胚 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Tool Rod","tr":"末影(te) 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Tool Rod","tr":"炽热的钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Tool Rod","tr":"火石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Tool Rod","tr":"力量 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Tool Rod","tr":"石墨 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Tool Rod","tr":"石墨烯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Tool Rod","tr":"注魔金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Tool Rod","tr":"风之魔晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Tool Rod","tr":"火之魔晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Tool Rod","tr":"地之魔晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Tool Rod","tr":"水之魔晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Tool Rod","tr":"混沌魔晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Tool Rod","tr":"秩序魔晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Tool Rod","tr":"玉 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Tool Rod","tr":"碧玉 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Tool Rod","tr":"陨铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Tool Rod","tr":"陨钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Tool Rod","tr":"硅岩 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Tool Rod","tr":"硅岩合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Tool Rod","tr":"富集硅岩 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Tool Rod","tr":"超能硅岩 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Tool Rod","tr":"下界石英 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Tool Rod","tr":"下界之星 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Tool Rod","tr":"三钛 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Tool Rod","tr":"虚空 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Tool Rod","tr":"胶木 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Tool Rod","tr":"幽冥剧毒结晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Tool Rod","tr":"强化 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Tool Rod","tr":"铱锇合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Tool Rod","tr":"阳光化合物 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Tool Rod","tr":"魂金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Tool Rod","tr":"蓝黄玉 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Tool Rod","tr":"黄铜 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Tool Rod","tr":"白铜 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Tool Rod","tr":"深渊铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Tool Rod","tr":"钻石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Tool Rod","tr":"琥珀金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Tool Rod","tr":"绿宝石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Tool Rod","tr":"强化混合晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Tool Rod","tr":"混合晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Tool Rod","tr":"绿色蓝宝石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Tool Rod","tr":"殷钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Tool Rod","tr":"坎塔尔合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Tool Rod","tr":"镁铝合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Tool Rod","tr":"镍铬合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Tool Rod","tr":"玄钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Tool Rod","tr":"生铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Tool Rod","tr":"聚乙烯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Tool Rod","tr":"环氧树脂 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Tool Rod","tr":"硅橡胶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Tool Rod","tr":"聚己内酰胺 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Tool Rod","tr":"聚四氟乙烯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Tool Rod","tr":"蓝宝石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Tool Rod","tr":"不锈钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Tool Rod","tr":"坦桑石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Tool Rod","tr":"锡铁合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Tool Rod","tr":"黄玉 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Tool Rod","tr":"哈氏合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Tool Rod","tr":"锻铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Tool Rod","tr":"铁木 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Tool Rod","tr":"橄榄石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Tool Rod","tr":"蛋白石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Tool Rod","tr":"紫水晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Tool Rod","tr":"暗影金属 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Tool Rod","tr":"暗影铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Tool Rod","tr":"暗影钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Tool Rod","tr":"钢叶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Tool Rod","tr":"骑士金属 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Tool Rod","tr":"标准纯银 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Tool Rod","tr":"玫瑰金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Tool Rod","tr":"黑青铜 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Tool Rod","tr":"铋青铜 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Tool Rod","tr":"黑钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Tool Rod","tr":"红钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Tool Rod","tr":"蓝钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Tool Rod","tr":"大马士革钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Tool Rod","tr":"充能合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Tool Rod","tr":"脉冲合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Tool Rod","tr":"星辰银 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Tool Rod","tr":"钴黄铜 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Tool Rod","tr":"红石榴石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Tool Rod","tr":"黄石榴石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Tool Rod","tr":"温特姆 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Tool Rod","tr":"黑花岗岩 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Tool Rod","tr":"红花岗岩 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Tool Rod","tr":"白石棉 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Tool Rod","tr":"雄黄 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Tool Rod","tr":"磁化铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Tool Rod","tr":"磁化钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Tool Rod","tr":"磁化钕 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Tool Rod","tr":"碳化钨 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Tool Rod","tr":"钒钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Tool Rod","tr":"高速钢-G 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Tool Rod","tr":"高速钢-E 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Tool Rod","tr":"高速钢-S 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Tool Rod","tr":"深铅 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Tool Rod","tr":"量子 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Tool Rod","tr":"深空秘银 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Tool Rod","tr":"黑钚 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Tool Rod","tr":"木卫四冰 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Tool Rod","tr":"硬铝 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Tool Rod","tr":"奥利哈钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Tool Rod","tr":"三元金属 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Tool Rod","tr":"聚苯硫醚 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Tool Rod","tr":"聚苯乙烯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Tool Rod","tr":"丁苯橡胶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Tool Rod","tr":"镍锌铁氧体 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Tool Rod","tr":"纤维强化的环氧树脂 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Tool Rod","tr":"磁化钐 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Tool Rod","tr":"无尽催化剂 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Tool Rod","tr":"聚苯并咪唑 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Tool Rod","tr":" 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Tool Rod","tr":"钛铂钒合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Tool Rod","tr":"时空 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Tool Rod","tr":"大理石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Tool Rod","tr":"神秘水晶 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Tool Rod","tr":"末影钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Tool Rod","tr":"复合粘土 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Tool Rod","tr":"晶化合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Tool Rod","tr":"旋律合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Tool Rod","tr":"恒星合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Tool Rod","tr":"晶化粉红史莱姆 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Tool Rod","tr":"充能银 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Tool Rod","tr":"生动合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Tool Rod","tr":"灵宝 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Tool Rod","tr":"超时空金属 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Tool Rod","tr":"活石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Tool Rod","tr":"盖亚之魂 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Tool Rod","tr":"活木 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Tool Rod","tr":"梦之木 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Tool Rod","tr":"泡铋 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Tool Rod","tr":"立方氧化锆 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Tool Rod","tr":"氟铁电气石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Tool Rod","tr":"铬铝电气石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Tool Rod","tr":"钒镁电气石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Tool Rod","tr":"铝电气石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Tool Rod","tr":"红锆石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Tool Rod","tr":"铁橄榄石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Tool Rod","tr":"镁橄榄石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Tool Rod","tr":"钙铁辉石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Tool Rod","tr":"钍-232 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Tool Rod","tr":"堇云石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Tool Rod","tr":"磁共振石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Tool Rod","tr":"锎 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Tool Rod","tr":"BArTiMaEuSNeK 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Tool Rod","tr":"钌 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Tool Rod","tr":"铑 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Tool Rod","tr":"镀铑钯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Tool Rod","tr":"泰伯利亚 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Tool Rod","tr":"钌铱合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Tool Rod","tr":"氟石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Tool Rod","tr":"高耐久性复合钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Tool Rod","tr":"硬钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Tool Rod","tr":"合成玉 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Tool Rod","tr":"原子分离催化剂 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Tool Rod","tr":"极不稳定硅岩 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Tool Rod","tr":"锌钍合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Tool Rod","tr":"锆锡合金-4 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Tool Rod","tr":"锆锡合金-2 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Tool Rod","tr":"耐热铬铁合金-903 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Tool Rod","tr":"精金合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Tool Rod","tr":"MAR-M200特种钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Tool Rod","tr":"MAR-Ce-M200特种钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Tool Rod","tr":"氯化锂 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Tool Rod","tr":"信素 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Tool Rod","tr":"流明 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Tool Rod","tr":"阿瑟锡 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Tool Rod","tr":"钛钼合金β-C 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Tool Rod","tr":"大力合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Tool Rod","tr":"光素 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Tool Rod","tr":"对立合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Tool Rod","tr":"稀有金属合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Tool Rod","tr":"富集硅岩合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Tool Rod","tr":"亚稳态鿫 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Tool Rod","tr":"调律源金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Tool Rod","tr":"魔钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Tool Rod","tr":"泰拉钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Tool Rod","tr":"源质钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Tool Rod","tr":"磁流体约束恒星物质 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Tool Rod","tr":"白矮星物质 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Tool Rod","tr":"黑矮星物质 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Tool Rod","tr":"宇宙素 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Tool Rod","tr":"铝 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Tool Rod","tr":"铍 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Tool Rod","tr":"铋 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Tool Rod","tr":"碳 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Tool Rod","tr":"铬 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Tool Rod","tr":"金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Tool Rod","tr":"铱 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Tool Rod","tr":"铅 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Tool Rod","tr":"锰 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Tool Rod","tr":"钼 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Tool Rod","tr":"钕 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Tool Rod","tr":"中子 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Tool Rod","tr":"镍 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Tool Rod","tr":"锇 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Tool Rod","tr":"钯 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Tool Rod","tr":"铂 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Tool Rod","tr":"钚-239 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Tool Rod","tr":"钚-241 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Tool Rod","tr":"银 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Tool Rod","tr":"钍 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Tool Rod","tr":"钛 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Tool Rod","tr":"钨 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Tool Rod","tr":"铀-238 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Tool Rod","tr":"铀-235 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Tool Rod","tr":"红宝石 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Tool Rod","tr":"红石合金 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Tool Rod","tr":"终末 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Tool Rod","tr":"导电铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Tool Rod","tr":"磁钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Tool Rod","tr":"钨钢 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Tool Rod","tr":"烈焰 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Tool Rod","tr":"脉冲铁 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Tool Rod","tr":"龙 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Tool Rod","tr":"觉醒龙 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Tool Rod","tr":"褐铜 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Tool Rod","tr":"山铜 手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtPraseodymium":{"0":{"oreDict":["frameGtPraseodymium"],"name":"镨框架","tr":"镨框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockSecurity":{"0":{"name":"ME Security Terminal","tr":"ME安全终端","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustUN32Fertiliser":{"0":{"oreDict":["dustUN32Fertiliser"],"name":"流体肥料UN-32粉","tr":"流体肥料UN-32粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Rare Sapling":{"0":{"oreDict":["treeSapling"],"name":"Maple Sapling","tr":"枫树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Silverbell Sapling","tr":"银铃树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeSapling"],"name":"Amaranth Sapling","tr":"紫檀树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeSapling"],"name":"Tigerwood Sapling","tr":"核桃树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["treeSapling"],"name":"Willow Sapling","tr":"柳树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:gasRemover":{"0":{"name":"Fume Dissipator","tr":"烟雾驱散器","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.cagelamp":{"0":{"name":"White Fallout Light","tr":"白色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Fallout Light","tr":"橙色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Fallout Light","tr":"品红色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Fallout Light","tr":"淡蓝色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Fallout Light","tr":"黄色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Fallout Light","tr":"黄绿色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Fallout Light","tr":"粉色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Grey Fallout Light","tr":"灰色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Grey Fallout Light","tr":"淡灰色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Fallout Light","tr":"青色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Fallout Light","tr":"紫色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Fallout Light","tr":"蓝色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Fallout Light","tr":"棕色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Fallout Light","tr":"绿色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Fallout Light","tr":"红色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Fallout Light","tr":"黑色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AdvancedProcessorBoard":{"0":{"name":"Advanced Processor Board","tr":"先进处理器基板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustMaragingSteel300":{"0":{"oreDict":["dustMaragingSteel300"],"name":"马氏体时效钢300粉","tr":"马氏体时效钢300粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:loam":{"0":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyMaragingSteel350":{"0":{"oreDict":["dustTinyMaragingSteel350"],"name":"小撮马氏体时效钢350粉","tr":"小撮马氏体时效钢350粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodMapFrame":{"0":{"name":"Sacred Oak Map Frame","tr":"天域树橡树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Map Frame","tr":"樱桃树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Map Frame","tr":"樱桃树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Map Frame","tr":"杉树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Map Frame","tr":"地狱皮树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Map Frame","tr":"天域树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Map Frame","tr":"蓝花楹地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Map Frame","tr":"魔法树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Map Frame","tr":"红杉地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Map Frame","tr":"棕榈树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Map Frame","tr":"松树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Map Frame","tr":"红木地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Map Frame","tr":"柳树地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Map Frame","tr":"桃花心木地图框架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:felPumpkin":{"0":{"name":"Fel Pumpkin","tr":"恶魔头南瓜","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:wirelessLever":{"0":{"name":"Wireless Lever","tr":"无线拉杆","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VoidFoil":{"0":{"oreDict":["foilVoid"],"name":"Void Foil","tr":"虚空箔","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedBeeswax":{"0":{"name":"Crated Beeswax","tr":"装箱的蜂蜡","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemTritiumCell":{"0":{"name":"Fuel Rod (Tritium)","tr":"燃料棒(氚)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodTantalloy61":{"0":{"oreDict":["stickTantalloy61"],"name":"钽钨合金-61杆","tr":"钽钨合金-61杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone11Slab":{"0":{"name":"Granite Brick Slab","tr":"花岗岩砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodTantalloy60":{"0":{"oreDict":["stickTantalloy60"],"name":"钽钨合金-60杆","tr":"钽钨合金-60杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedZirkelite":{"0":{"oreDict":["crushedZirkelite"],"name":"Crushed Zirkelite Ore","tr":"粉碎的钛锆钍矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_diamond_unactive":{"0":{"name":"Blood Infused Diamond (Unactive)","tr":"注血钻石(未激活)","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamcantaloupeCrop":{"0":{"name":"Cantaloupe Crop","tr":"哈密瓜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustProtactinium":{"0":{"oreDict":["dustProtactinium"],"name":"镤粉","tr":"镤粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:leadblock":{"0":{"name":"Block of Lead","tr":"铅块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Lead","tr":"铅块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Lead","tr":"铅块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Lead","tr":"铅块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Lead","tr":"铅块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Lead","tr":"铅块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:endStoneBrick2SlabFull":{"0":{"name":"Ender Brick Slab","tr":"末影石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamplumSapling":{"0":{"name":"Plum Sapling","tr":"李子树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:builderBagT2":{"0":{"name":"Builder\u0027s Woven Backpack","tr":"建筑师编织背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:soybeanItem":{"0":{"oreDict":["cropSoybean"," listAllveggie"],"name":"Soybean","tr":"黄豆","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.ThoriumcellDep":{"0":{"name":"枯竭燃料棒(钍)","tr":"枯竭燃料棒(钍)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:dustImpureZimbabweite":{"0":{"oreDict":["dustImpureZimbabweite"],"name":"Impure Zimbabweite Dust","tr":"含杂钛铌铅钠石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"holoinventory:Hologlasses":{"0":{"name":"Holo Glasses","tr":"全息眼镜","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1}},"cookingforblockheads:gray_kitchen_floor":{"0":{"name":"Gray Kitchen Floor","tr":"灰色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtWhiteMetal":{"0":{"oreDict":["frameGtWhiteMetal"],"name":"白物质框架","tr":"白物质框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:wickerbundle":{"0":{"name":"Wicker Bundle","tr":"柳条捆","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Bloodied Wicker Bundle","tr":"浸血的柳条捆","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:visAuraProvider":{"0":{"name":"Vis Apiary Booster","tr":"灵气蜂箱加速器","tab":"魔法蜜蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:popcornItem":{"0":{"name":"Popcorn","tr":"爆米花","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernSword":{"0":{"name":"Sword of the Wyvern","tr":"双足飞龙剑","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"Automagy:blockEagerChest":{"0":{"name":"Eager Chest","tr":"易物箱子","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:pipes.1":{"0":{"name":"Hyper-Rationing Pipe","tr":"超越分配管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:bw.THTRMaterials":{"0":{"name":"BISO pebble compound","tr":"BISO复合材料","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"BISO pebble ball","tr":"BISO燃料球","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"TRISO pebble compound","tr":"TRISO复合材料","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"TRISO pebble ball","tr":"TRISO燃料球","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"TRISO pebble","tr":"TRISO燃料丸","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Burned Out TRISO pebble ball","tr":"枯竭TRISO燃料球","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Burned Out TRISO pebble","tr":"枯竭TRISO燃料丸","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseArcanite":{"0":{"oreDict":["plateDenseArcanite"],"name":"致密奥金板","tr":"致密奥金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:WandCaps":{"0":{"name":"Alchemical Cap","tr":"炼金杖端","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Vinteum Cap","tr":"温特姆杖端","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Terrasteel Cap","tr":"泰拉钢杖端","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Manasteel Cap","tr":"魔钢杖端","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Inert Manasteel Cap","tr":"惰性魔钢杖端","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Elementium Cap","tr":"元素钢杖端","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Inert Elementium Cap","tr":"惰性元素钢杖端","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:stairswoodalder":{"0":{"oreDict":["stairWood"],"name":"Alder Stairs","tr":"赤杨树楼梯","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedHoneydew":{"0":{"name":"Crated Honeydew","tr":"装箱的蜂蜜汁","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryHoney":{"0":{"name":"Honey Capsule","tr":"蜂蜜胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:storage.casing":{"0":{"name":"ME Essentia Storage Housing","tr":"ME源质存储外壳","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:amuletMirror":{"0":{"name":"Mirrored Amulet","tr":"镜像护身符","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:blankPattern":{"0":{"name":"Blank Pattern","tr":"空白模具","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Blank Cast","tr":"空白铸模","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Blank Cast","tr":"空白铸模","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Blank Clay Cast","tr":"空白粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:list":{"0":{"name":"List","tr":"列表","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"List","tr":"列表","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedDemicheleiteBr":{"0":{"oreDict":["crushedDemicheleiteBr"],"name":"Crushed Demicheleite (Br) Ore","tr":"粉碎溴硫铋(Br)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:EMTBaubles":{"0":{"name":"§2Armor Charging Ring","tr":"§2装备充电指环","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"§2Inventory Charging Ring","tr":"§2物品充能指环","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyIrarsite":{"0":{"oreDict":["dustTinyIrarsite"],"name":"小撮硫砷铱粉","tr":"小撮硫砷铱粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:bopBucket":{"0":{"name":"Honey Bucket","tr":"蜂蜜桶","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:bucketChocolate":{"0":{"name":"Chocolate Milk Bucket","tr":"巧克力牛奶桶","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:blockCandle":{"0":{"name":"White Tallow Candle","tr":"白色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Tallow Candle","tr":"橙色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Tallow Candle","tr":"品红色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Tallow Candle","tr":"淡蓝色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Tallow Candle","tr":"黄色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Tallow Candle","tr":"黄绿色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Tallow Candle","tr":"粉色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Tallow Candle","tr":"灰色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Gray Tallow Candle","tr":"淡灰色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Tallow Candle","tr":"青色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Tallow Candle","tr":"紫色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Tallow Candle","tr":"蓝色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Tallow Candle","tr":"棕色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Tallow Candle","tr":"绿色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Tallow Candle","tr":"红色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Tallow Candle","tr":"黑色油脂蜡烛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NeutronReflectorSmallParts":{"0":{"name":"Small Neutron Reflector Parts","tr":"小型中子反射板零件","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyPlateTier4":{"0":{"name":"Heavy Duty Plate Tier 4","tr":"4阶重型装甲板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:waterBowl":{"0":{"name":"Bowl of Water","tr":"一碗水","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinBloodII":{"0":{"name":"Coin \"The Vampire 100\"","tr":"吸血鬼币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyPlateTier7":{"0":{"name":"Heavy Duty Plate Tier 7","tr":"7阶重型装甲板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamgrapefruitSapling":{"0":{"name":"Grapefruit Sapling","tr":"葡萄柚树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyPlateTier8":{"0":{"name":"Heavy Duty Plate Tier 8","tr":"8阶重型装甲板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyPlateTier5":{"0":{"name":"Heavy Duty Plate Tier 5","tr":"5阶重型装甲板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pineappleyogurtItem":{"0":{"oreDict":["foodPineappleyogurt"],"name":"Pineapple Yogurt","tr":"菠萝酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyPlateTier6":{"0":{"name":"Heavy Duty Plate Tier 6","tr":"6阶重型装甲板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallGypsum":{"0":{"oreDict":["dustSmallGypsum"],"name":"小堆硫酸钙(石膏)粉","tr":"小堆硫酸钙(石膏)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreKashinite":{"0":{"oreDict":["oreKashinite"],"name":"Kashinite Ore","tr":"硫铑铱矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockSkyStone":{"0":{"name":"Sky Stone","tr":"陨石","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sky Stone Block","tr":"陨石块","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sky Stone Brick","tr":"陨石石砖","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sky Stone Small Brick","tr":"陨石砖块","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:button.sakura":{"0":{"oreDict":["buttonWood"],"name":"Sakura Button","tr":"樱花树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:creamedbroccolisoupItem":{"0":{"oreDict":["foodCreamedbroccolisoup"],"name":"Creamed Broccoli Soup","tr":"西兰花奶油汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBloodIV":{"0":{"name":"Coin \"The Vampire 10K\"","tr":"吸血鬼币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorIncoloyMA956":{"0":{"oreDict":["rotorIncoloyMA956"],"name":"耐热铬铁合金-MA956转子","tr":"耐热铬铁合金-MA956转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NaquadriaIronPlate":{"0":{"name":"Naquadria-Iron Plate","tr":"超能硅岩铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotInconel690":{"0":{"oreDict":["ingotHotInconel690"],"name":"热镍铬基合金-690锭","tr":"热镍铬基合金-690锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LightSwordBlade":{"0":{"name":"Light Sword Blade","tr":"荧光剑刃","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"gtnhintergalactic:item.MiningDrone":{"0":{"name":"Mining Drone MK-I","tr":"采矿无人机MK-I","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Mining Drone MK-II","tr":"采矿无人机MK-II","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Mining Drone MK-III","tr":"采矿无人机MK-III","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Mining Drone MK-IV","tr":"采矿无人机MK-IV","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Mining Drone MK-V","tr":"采矿无人机MK-V","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Mining Drone MK-VI","tr":"采矿无人机MK-VI","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Mining Drone MK-VII","tr":"采矿无人机MK-VII","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Mining Drone MK-VIII","tr":"采矿无人机MK-VIII","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Mining Drone MK-IX","tr":"采矿无人机MK-IX","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Mining Drone MK-X","tr":"采矿无人机MK-X","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Mining Drone MK-XI","tr":"采矿无人机MK-XI","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Mining Drone MK-XII","tr":"采矿无人机MK-XII","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Mining Drone MK-XIII","tr":"采矿无人机MK-XIII","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Mining Drone MK-XIV","tr":"采矿无人机MK-XIV","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:garage_door":{"0":{"name":"Garage Door","tr":"车库门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.giantPick":{"0":{"name":"Giant\u0027s Pickaxe","tr":"巨人的镐","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1025}},"harvestcraft:turnipsoupItem":{"0":{"oreDict":["foodTurnipsoup"],"name":"Turnip Soup","tr":"大头菜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:magicCasing":{"0":{"name":"Magic Casing","tr":"魔法机械方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sweetpotatopieItem":{"0":{"oreDict":["foodSweetpotatopie"],"name":"Sweet Potato Pie","tr":"红薯派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellRhodium":{"0":{"oreDict":["cellRhodium"],"name":"铑单元","tr":"铑单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotChromaticGlass":{"0":{"oreDict":["ingotChromaticGlass"],"name":"彩色玻璃锭","tr":"彩色玻璃锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hellBarkStairs":{"0":{"oreDict":["stairWood"],"name":"Hellbark Wood Stairs","tr":"地狱皮木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodHafnium":{"0":{"oreDict":["stickHafnium"],"name":"铪杆","tr":"铪杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:energyBazooka":{"0":{"name":"Energy Bazooka","tr":"能量火箭筒","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":251}},"IguanaTweaksTConstruct:clayBucketMilk":{"0":{"oreDict":["bucketClayMilk"," listAllmilk"],"name":"Milk Clay Bucket","tr":"粘土桶(牛奶)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:expanderInvTierFour":{"0":{"name":"Base Inventory Expander (Tier 4)","tr":"基座存储扩容(四级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:boline":{"0":{"name":"Boline","tr":"伯莱恩匕首","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":251}},"DraconicEvolution:sunFocus":{"0":{"name":"Solar Focus","tr":"日光焦点","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.360k_NaK_Coolantcell":{"0":{"name":"360k钠钾冷却单元","tr":"360k钠钾冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"bartworks:bw.werkstoffblockscasingadvanced.01":{"10112":{"name":"强化调律源金机械方块","tr":"强化调律源金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32148":{"name":"强化阿迪特机械方块","tr":"强化阿迪特机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31895":{"name":"强化中子机械方块","tr":"强化中子机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31776":{"name":"强化碳机械方块","tr":"强化碳机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10022":{"name":"强化原子分离催化剂机械方块","tr":"强化原子分离催化剂机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10024":{"name":"强化极不稳定硅岩机械方块","tr":"强化极不稳定硅岩机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31785":{"name":"强化铝机械方块","tr":"强化铝机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31794":{"name":"强化钛机械方块","tr":"强化钛机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31796":{"name":"强化铬机械方块","tr":"强化铬机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31798":{"name":"强化铁机械方块","tr":"强化铁机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31799":{"name":"强化钴机械方块","tr":"强化钴机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31800":{"name":"强化镍机械方块","tr":"强化镍机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31801":{"name":"强化铜机械方块","tr":"强化铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32575":{"name":"强化木机械方块","tr":"强化木机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32066":{"name":"强化青铜机械方块","tr":"强化青铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32067":{"name":"强化黄铜机械方块","tr":"强化黄铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32070":{"name":"强化锻铁机械方块","tr":"强化锻铁机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32071":{"name":"强化钢机械方块","tr":"强化钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32072":{"name":"强化不锈钢机械方块","tr":"强化不锈钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31818":{"name":"强化钯机械方块","tr":"强化钯机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31820":{"name":"强化银机械方块","tr":"强化银机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31823":{"name":"强化锡机械方块","tr":"强化锡机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32083":{"name":"强化铱锇合金机械方块","tr":"强化铱锇合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"88":{"name":"强化镀铑钯机械方块","tr":"强化镀铑钯机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31833":{"name":"强化钕机械方块","tr":"强化钕机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"90":{"name":"强化钌铱合金机械方块","tr":"强化钌铱合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32090":{"name":"强化硅岩机械方块","tr":"强化硅岩机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32091":{"name":"强化硅岩合金机械方块","tr":"强化硅岩合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"92":{"name":"强化高耐久性复合钢机械方块","tr":"强化高耐久性复合钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"96":{"name":"强化硬钢机械方块","tr":"强化硬钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32100":{"name":"强化黑钢机械方块","tr":"强化黑钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32101":{"name":"强化大马士革钢机械方块","tr":"强化大马士革钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10085":{"name":"强化精金合金机械方块","tr":"强化精金合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31847":{"name":"强化钨机械方块","tr":"强化钨机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31849":{"name":"强化锇机械方块","tr":"强化锇机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31850":{"name":"强化铱机械方块","tr":"强化铱机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31851":{"name":"强化铂机械方块","tr":"强化铂机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31852":{"name":"强化金机械方块","tr":"强化金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32236":{"name":"强化环氧树脂机械方块","tr":"强化环氧树脂机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32110":{"name":"强化哈氏合金机械方块","tr":"强化哈氏合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31855":{"name":"强化铅机械方块","tr":"强化铅机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32111":{"name":"强化退火铜机械方块","tr":"强化退火铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32239":{"name":"强化聚四氟乙烯机械方块","tr":"强化聚四氟乙烯机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31856":{"name":"强化铋机械方块","tr":"强化铋机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10096":{"name":"强化MAR-M200特种钢机械方块","tr":"强化MAR-M200特种钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10097":{"name":"强化MAR-Ce-M200特种钢机械方块","tr":"强化MAR-Ce-M200特种钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32114":{"name":"强化红钢机械方块","tr":"强化红钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32115":{"name":"强化蓝钢机械方块","tr":"强化蓝钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32116":{"name":"强化标准纯银机械方块","tr":"强化标准纯银机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32117":{"name":"强化玫瑰金机械方块","tr":"强化玫瑰金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32118":{"name":"强化黑青铜机械方块","tr":"强化黑青铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32119":{"name":"强化铋青铜机械方块","tr":"强化铋青铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10109":{"name":"强化稀有金属合金机械方块","tr":"强化稀有金属合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10110":{"name":"强化富集硅岩合金机械方块","tr":"强化富集硅岩合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10111":{"name":"强化亚稳态鿫机械方块","tr":"强化亚稳态鿫机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyMaragingSteel300":{"0":{"oreDict":["dustTinyMaragingSteel300"],"name":"小撮马氏体时效钢300粉","tr":"小撮马氏体时效钢300粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CompressedBioBall":{"0":{"name":"Compressed Bio Ball","tr":"压缩植物球","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:banananutbreadItem":{"0":{"oreDict":["foodBanananutbread"],"name":"Banana Nut Bread","tr":"香蕉坚果面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mushroomgarden":{"0":{"name":"Mushroom Garden","tr":"蘑菇菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraTrees:durableHammer":{"0":{"name":"Carpentry Hammer","tr":"木工锤","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1563}},"dreamcraft:item.ShapeCasing":{"0":{"name":"Casting Form (Casing Shape)","tr":"铸形(外壳)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockZombieGenerator":{"0":{"name":"Zombie Generator","tr":"僵尸发电机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustFormaldehydeCatalyst":{"0":{"oreDict":["dustFormaldehydeCatalyst"],"name":"甲醛催化剂粉","tr":"甲醛催化剂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:colorWoodPlanks":{"0":{"oreDict":["plankWood"," plankWoodBlack"],"name":"Colored Oak Wood Planks (White Frequency)","tr":"染色 橡木木板 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"," plankWoodRed"],"name":"Colored Oak Wood Planks (Orange Frequency)","tr":"染色 橡木木板 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"," plankWoodGreen"],"name":"Colored Oak Wood Planks (Magenta Frequency)","tr":"染色 橡木木板 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"," plankWoodBrown"],"name":"Colored Oak Wood Planks (Light Blue Frequency)","tr":"染色 橡木木板 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"," plankWoodBlue"],"name":"Colored Oak Wood Planks (Yellow Frequency)","tr":"染色 橡木木板 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plankWood"," plankWoodPurple"],"name":"Colored Oak Wood Planks (Lime Frequency)","tr":"染色 橡木木板 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"," plankWoodCyan"],"name":"Colored Oak Wood Planks (Pink Frequency)","tr":"染色 橡木木板 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"," plankWoodLightGray"],"name":"Colored Oak Wood Planks (Gray Frequency)","tr":"染色 橡木木板 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plankWood"," plankWoodGray"],"name":"Colored Oak Wood Planks (Light Gray Frequency)","tr":"染色 橡木木板 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["plankWood"," plankWoodPink"],"name":"Colored Oak Wood Planks (Cyan Frequency)","tr":"染色 橡木木板 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["plankWood"," plankWoodLime"],"name":"Colored Oak Wood Planks (Purple Frequency)","tr":"染色 橡木木板 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["plankWood"," plankWoodYellow"],"name":"Colored Oak Wood Planks (Blue Frequency)","tr":"染色 橡木木板 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["plankWoodLightBlue"," plankWood"],"name":"Colored Oak Wood Planks (Brown Frequency)","tr":"染色 橡木木板 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["plankWood"," plankWoodMagenta"],"name":"Colored Oak Wood Planks (Green Frequency)","tr":"染色 橡木木板 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["plankWood"," plankWoodOrange"],"name":"Colored Oak Wood Planks (Red Frequency)","tr":"染色 橡木木板 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["plankWood"," plankWoodWhite"],"name":"Colored Oak Wood Planks (Black Frequency)","tr":"染色 橡木木板 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:bloodPendant":{"0":{"name":"Tainted Blood Pendant","tr":"污血吊坠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearOctiron":{"0":{"oreDict":["gearOctiron"," gearGtOctiron"],"name":"八角铁齿轮","tr":"八角铁齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedAgarditeNd":{"0":{"oreDict":["crushedCentrifugedAgarditeNd"],"name":"Centrifuged Crushed Agardite (Nd) Ore","tr":"离心菱铁矿(Nd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsCargoRocket":{"0":{"name":"Schematics Cargo Rocket Chip","tr":"货运火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:decomposition_table":{"0":{"name":"Decomposition Table","tr":"解构台","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemTFBPFlatification":{"0":{"name":"TFBP - Flatification","tr":"地形转换模板-平地","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:sigil_of_swimming":{"0":{"name":"Sigil of Swimming","tr":"水泳印记","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2stuff:Inscriber":{"0":{"name":"Advanced Inscriber","tr":"高级压印器","tab":"应用能源附加机器","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:firmtofuItem":{"0":{"oreDict":["listAllporkcooked"," listAllchickenraw"," listAllmuttoncooked"," listAllfishraw"," listAllporkraw"," listAllbeefraw"," listAllmeatcooked"," listAllegg"," listAllturkeyraw"," listAllturkeycooked"," listAllrabbitraw"," listAllrabbitcooked"," listAllmeatraw"," listAllvenisonraw"," foodFirmtofu"," listAllvenisoncooked"," listAllbeefcooked"," listAllchickencooked"," listAllfishcooked"," listAllmuttonraw"],"name":"Firm Tofu","tr":"老豆腐","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:focusIllumination":{"0":{"name":"Wand Focus: Illumination (Black)","tr":"法杖核心:光明(黑)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Wand Focus: Illumination (Red)","tr":"法杖核心:光明(红)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Wand Focus: Illumination (Green)","tr":"法杖核心:光明(绿)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Wand Focus: Illumination (Brown)","tr":"法杖核心:光明(棕)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Wand Focus: Illumination (Blue)","tr":"法杖核心:光明(蓝)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Wand Focus: Illumination (Purple)","tr":"法杖核心:光明(紫)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Wand Focus: Illumination (Cyan)","tr":"法杖核心:光明(青)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Wand Focus: Illumination (Silver)","tr":"法杖核心:光明(银白)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Wand Focus: Illumination (Gray)","tr":"法杖核心:光明(灰)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Wand Focus: Illumination (Pink)","tr":"法杖核心:光明(粉)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Wand Focus: Illumination (Lime)","tr":"法杖核心:光明(黄绿)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Wand Focus: Illumination (Yellow)","tr":"法杖核心:光明(黄)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Wand Focus: Illumination (Light Blue)","tr":"法杖核心:光明(淡蓝)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Wand Focus: Illumination (Magenta)","tr":"法杖核心:光明(品红)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Wand Focus: Illumination (Orange)","tr":"法杖核心:光明(橙)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Wand Focus: Illumination (White)","tr":"法杖核心:光明(白)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:enchanter":{"0":{"name":"Mana Enchanter","tr":"魔力附魔台","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyBerylliumFluoride":{"0":{"oreDict":["dustTinyBerylliumFluoride"],"name":"小撮氟化铍粉","tr":"小撮氟化铍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedTitanite":{"0":{"oreDict":["crushedCentrifugedTitanite"],"name":"Centrifuged Crushed Titanite Ore","tr":"离心榍石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.180k_Space_Coolantcell":{"0":{"name":"180k空间冷却单元","tr":"180k空间冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"Forestry:cratedBronze":{"0":{"name":"Crated Bronze Ingot","tr":"装箱的青铜锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleEglinSteel":{"0":{"oreDict":["plateDoubleEglinSteel"],"name":"双重埃格林钢板","tr":"双重埃格林钢板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"appliedenergistics2:item.ToolCertusQuartzCuttingKnife":{"0":{"name":"Certus Quartz Cutting Knife","tr":"赛特斯石英切割刀","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":51}},"Forestry:fertilizerBio":{"0":{"name":"Compost","tr":"堆肥","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingSakura":{"0":{"name":"Crated Sakura Sapling","tr":"装箱的樱花树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_lit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:sensorTierFiveItem":{"0":{"name":"Sensor (Tier 5)","tr":"传感器(五级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeHammerHead":{"0":{"name":"Casting Form (Hammer Head Shape)","tr":"铸形(锤头)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:slime.leaves":{"0":{"name":"Slimy Leaves","tr":"史莱姆树叶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseSelenium":{"0":{"oreDict":["plateDenseSelenium"],"name":"致密硒板","tr":"致密硒板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:fumefunnel":{"0":{"name":"Fume Funnel","tr":"熏气漏斗","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalDualCompressedPlates":{"0":{"name":"Compressed Dual Mysterious Crystal Plates","tr":"航天双层神秘水晶板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:ironGearItem":{"0":{"oreDict":["gearIron"],"name":"Iron Gear","tr":"铁齿轮","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidPlutonium":{"0":{"name":"Fuel Rod (Excited Plutonium)","tr":"燃料棒(激发钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"Botania:biomeStoneA2Slab":{"0":{"name":"Metamorphic Mountain Stone Slab","tr":"变质高山石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:curse_amulet":{"0":{"name":"Curse Amulet","tr":"诅咒护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"BiblioCraft:BiblioLamp":{"0":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:copperblock":{"0":{"name":"Block of Copper","tr":"铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Copper","tr":"铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Copper","tr":"铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Copper","tr":"铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Copper","tr":"铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Copper","tr":"铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockManaPod":{"0":{"name":"Mana Pod Stem","tr":"法力荚茎","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureGeikielite":{"0":{"oreDict":["dustPureGeikielite"],"name":"Purified Geikielite Dust","tr":"洁净镁钛矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBlood":{"0":{"name":"Coin \"The Vampire 1\"","tr":"吸血鬼币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:luggage":{"0":{"name":"Luggage","tr":"行李箱","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedCentrifugedAgarditeLa":{"0":{"oreDict":["crushedCentrifugedAgarditeLa"],"name":"Centrifuged Crushed Agardite (La) Ore","tr":"离心菱铁矿(La)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:Ethylbenzene":{"0":{"oreDict":["cellEthylbenzene"],"name":"乙苯单元","tr":"乙苯单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_forestry":{"0":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreGadoliniteCe":{"0":{"oreDict":["oreGadoliniteCe"],"name":"Gadolinite (Ce) Ore","tr":"硅铍钇矿(Ce)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.printerPaperRoll":{"0":{"name":"Printer Paper Roll","tr":"打印纸卷","tab":"开放式打印机","type":"Item","maxStackSize":1,"maxDurability":257}},"witchery:silvervat":{"0":{"name":"Silver Vat","tr":"制银桶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.emptyMagicMap":{"0":{"name":"Blank Magic Map","tr":"空白的魔法地图","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BookcaseFilled":{"0":{"name":"Oak Bookcase","tr":"橡木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Bookcase","tr":"云杉木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Bookcase","tr":"白桦木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Bookcase","tr":"丛林木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Bookcase","tr":"金合欢书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Bookcase","tr":"深色橡木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Bookcase","tr":"镶框书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:refriedbeansItem":{"0":{"oreDict":["foodRefriedbeans"],"name":"Refried Beans","tr":"炸豆泥","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:bucketFire_water":{"0":{"name":"Fire Water Bucket","tr":"桶装火焰水","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:fluid_buffer":{"0":{"name":"ME Fluid Buffer","tr":"ME流体缓存器","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:clamrawItem":{"0":{"oreDict":["foodClamraw"],"name":"Raw Clam","tr":"生蛤蜊","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitLuV":{"0":{"oreDict":["circuitMaster"],"name":"Any LuV Circuit","tr":"任意LuV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"FloodLights:lightDebugTool":{"0":{"name":"Lightblock Debug Tool","tr":"灯泡调试工具","tab":"泛光灯","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cottonItem":{"0":{"oreDict":["cropCotton"],"name":"Cotton","tr":"棉花","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:lavaCrystal":{"0":{"name":"Lava Crystal","tr":"熔岩晶体","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyCalciumHydroxide":{"0":{"oreDict":["dustTinyCalciumHydroxide"],"name":"小撮氢氧化钙粉","tr":"小撮氢氧化钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_blockCoal":{"0":{"oreDict":["blockCoal"," blockCoalBlack"],"name":"Colored Block of Coal (White Frequency)","tr":"染色 煤炭块 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockCoal"," blockCoalRed"],"name":"Colored Block of Coal (Orange Frequency)","tr":"染色 煤炭块 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockCoal"," blockCoalGreen"],"name":"Colored Block of Coal (Magenta Frequency)","tr":"染色 煤炭块 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockCoal"," blockCoalBrown"],"name":"Colored Block of Coal (Light Blue Frequency)","tr":"染色 煤炭块 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockCoal"," blockCoalBlue"],"name":"Colored Block of Coal (Yellow Frequency)","tr":"染色 煤炭块 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockCoal"," blockCoalPurple"],"name":"Colored Block of Coal (Lime Frequency)","tr":"染色 煤炭块 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockCoal"," blockCoalCyan"],"name":"Colored Block of Coal (Pink Frequency)","tr":"染色 煤炭块 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockCoal"," blockCoalLightGray"],"name":"Colored Block of Coal (Gray Frequency)","tr":"染色 煤炭块 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockCoal"," blockCoalGray"],"name":"Colored Block of Coal (Light Gray Frequency)","tr":"染色 煤炭块 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockCoalPink"," blockCoal"],"name":"Colored Block of Coal (Cyan Frequency)","tr":"染色 煤炭块 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockCoalLime"," blockCoal"],"name":"Colored Block of Coal (Purple Frequency)","tr":"染色 煤炭块 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockCoalYellow"," blockCoal"],"name":"Colored Block of Coal (Blue Frequency)","tr":"染色 煤炭块 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockCoalLightBlue"," blockCoal"],"name":"Colored Block of Coal (Brown Frequency)","tr":"染色 煤炭块 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockCoalMagenta"," blockCoal"],"name":"Colored Block of Coal (Green Frequency)","tr":"染色 煤炭块 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockCoalOrange"," blockCoal"],"name":"Colored Block of Coal (Red Frequency)","tr":"染色 煤炭块 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockCoal"," blockCoalWhite"],"name":"Colored Block of Coal (Black Frequency)","tr":"染色 煤炭块 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:fluid.Mutagen":{"0":{"name":"Mutagen","tr":"诱变剂","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NeutroniumBars":{"0":{"oreDict":["barsNeutronium"],"name":"Neutronium Bars","tr":"中子栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.yetiLegs":{"0":{"name":"Yeti Leggings","tr":"雪人护腿","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":301}},"ae2fc:fluid_storage_housing":{"0":{"name":"ME Fluid Storage Housing","tr":"ME流体存储外壳","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"ME Advanced Fluid Storage Housing","tr":"ME高级流体存储外壳","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"ME Multi-Fluid Storage Housing","tr":"ME多流体存储外壳","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"ME Advanced Multi-Fluid Storage Housing","tr":"ME高级多流体存储外壳","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:honeyPot":{"0":{"name":"Honey Pot","tr":"蜜罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:dye":{"0":{"oreDict":["dyeWhite"," dye"],"name":"Floral White Powder","tr":"白色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dyeOrange"," dye"],"name":"Floral Orange Powder","tr":"橙色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dyeMagenta"," dye"],"name":"Floral Magenta Powder","tr":"品红色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dyeLightBlue"," dye"],"name":"Floral Light Blue Powder","tr":"淡蓝色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dyeYellow"," dye"],"name":"Floral Yellow Powder","tr":"黄色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dye"," dyeLime"],"name":"Floral Lime Powder","tr":"黄绿色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["dyePink"," dye"],"name":"Floral Pink Powder","tr":"粉色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dyeGray"," dye"],"name":"Floral Gray Powder","tr":"灰色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dyeLightGray"," dye"],"name":"Floral Light Gray Powder","tr":"淡灰色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dyeCyan"," dye"],"name":"Floral Cyan Powder","tr":"青色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dyePurple"," dye"],"name":"Floral Purple Powder","tr":"紫色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dyeBlue"," dye"],"name":"Floral Blue Powder","tr":"蓝色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dyeBrown"," dye"],"name":"Floral Brown Powder","tr":"棕色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dyeGreen"," dye"],"name":"Floral Green Powder","tr":"绿色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["dyeRed"," dye"],"name":"Floral Red Powder","tr":"红色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["dyeBlack"," dye"],"name":"Floral Black Powder","tr":"黑色花粉","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier4Rocket":{"0":{"name":"Tier 4 Rocket","tr":"4阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 4 Rocket","tr":"4阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 4 Rocket","tr":"4阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 4 Rocket","tr":"4阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 4 Rocket","tr":"4阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellEthylCyanoacetate":{"0":{"oreDict":["cellEthylCyanoacetate"],"name":"氰乙酸乙酯单元","tr":"氰乙酸乙酯单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:pressureResistantWalls":{"0":{"name":"Pressure Resistant Wall","tr":"耐压墙","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTantalumCarbide":{"0":{"oreDict":["ingotHotTantalumCarbide"],"name":"热碳化钽锭","tr":"热碳化钽锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:UN32Fertiliser":{"0":{"oreDict":["cellUN32Fertiliser"],"name":"流体肥料UN-32单元","tr":"流体肥料UN-32单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fluid.ice":{"0":{"name":"Crushed Ice","tr":"碎冰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_pane_pink":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapeyogurtItem":{"0":{"oreDict":["foodGrapeyogurt"],"name":"Grape Yogurt","tr":"葡萄酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemGolemPlacer":{"0":{"name":"Straw Golem","tr":"稻草傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Wood Golem","tr":"木头傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tallow Golem","tr":"油脂傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Clay Golem","tr":"粘土傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Flesh Golem","tr":"血肉傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Stone Golem","tr":"石头傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Iron Golem","tr":"铁卫傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Thaumium Golem","tr":"神秘傀儡","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneB6SlabFull":{"0":{"name":"Metamorphic Taiga Stone Brick Slab","tr":"变质雪原石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:TaintBlock":{"0":{"name":"Tainted Stone","tr":"腐化石头","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tainted Stone Bricks","tr":"腐化石砖","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.HandDrill":{"0":{"name":"Hand Drill","tr":"手摇钻","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialHelm":{"0":{"name":"Primordial Helm","tr":"元始头盔","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":33001}},"battlegear2:mace.gold":{"0":{"name":"Golden Mace","tr":"金槌","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":65}},"TwilightForest:tile.TFDoorTime":{"0":{"name":"tile.TFDoorTime.0.name","tr":"tile.TFDoorTime.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:bloodMagicBaseAlchemyItems":{"0":{"name":"Offensa","tr":"攻势粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Praesidium","tr":"防守粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Orbis Terrae","tr":"环境粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Strengthened Catalyst","tr":"[加强]催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Concentrated Catalyst","tr":"[浓缩]催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Fractured Bone","tr":"断裂的骨头","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Virtus","tr":"力量粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Reductus","tr":"代价粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Potentia","tr":"效能粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IrradiantReinforcedNeutroniumPlate":{"0":{"name":"Irradiant Reinforced Neutronium Plate","tr":"光辉强化中子板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:generaltsochickenItem":{"0":{"oreDict":["foodGeneraltsochicken"],"name":"General Tso\u0027s Chicken","tr":"左宗棠鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:spooky_leaves":{"0":{"name":"Spooky Leaves","tr":"幽灵树树叶","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallWood\u0027sGlass":{"0":{"oreDict":["dustSmallWood\u0027sGlass"],"name":"小堆伍德玻璃粉","tr":"小堆伍德玻璃粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolDrill":{"1":{"name":"Mining Drill","tr":"采矿钻头","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Mining Drill","tr":"采矿钻头","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemDustTinyGypsum":{"0":{"oreDict":["dustTinyGypsum"],"name":"小撮硫酸钙(石膏)粉","tr":"小撮硫酸钙(石膏)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.battery-nuclear":{"0":{"name":"Nuclear Battery","tr":"核电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Nuclear Battery","tr":"核电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemBoltHypogen":{"0":{"oreDict":["boltHypogen"],"name":"海珀珍螺栓","tr":"海珀珍螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsstone":{"0":{"name":"Stone-Covered Pipe","tr":"石头管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:reactorCore":{"0":{"name":"Draconic Reactor Core","tr":"反应堆核心","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallGermanium":{"0":{"oreDict":["dustSmallGermanium"],"name":"小堆锗粉","tr":"小堆锗粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:steelgrate":{"0":{"name":"Steel Grate","tr":"钢栅板","tab":"栈桥","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodDysprosium":{"0":{"oreDict":["stickDysprosium"],"name":"镝杆","tr":"镝杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjectBlue:miniatureLever":{"0":{"name":"Miniature White Lever","tr":"微型 白色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Miniature Orange Lever","tr":"微型 橙色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Miniature Magenta Lever","tr":"微型 品红色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Miniature Light Blue Lever","tr":"微型 淡蓝色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Miniature Yellow Lever","tr":"微型 黄色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Miniature Lime Lever","tr":"微型 黄绿色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Miniature Pink Lever","tr":"微型 粉红色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Miniature Grey Lever","tr":"微型 灰色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Miniature Light Grey Lever","tr":"微型 淡灰色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Miniature Cyan Lever","tr":"微型 青色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Miniature Purple Lever","tr":"微型 紫色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Miniature Blue Lever","tr":"微型 蓝色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Miniature Brown Lever","tr":"微型 棕色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Miniature Green Lever","tr":"微型 绿色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Miniature Red Lever","tr":"微型 红色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Miniature Black Lever","tr":"微型 黑色 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Miniature Stone Lever","tr":"微型 石头 拉杆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:quern":{"0":{"name":"Quern","tr":"石磨","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:customBrick2Slab":{"0":{"name":"Frosty Brick Slab","tr":"霜冻砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FrothCopperflotation":{"0":{"oreDict":["cellChalcopyriteFroth"],"name":"黄铜泡沫单元","tr":"黄铜泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPaintedGlowstone":{"0":{"name":"Painted Glowstone","tr":"喷涂萤石","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:softpretzelandmustardItem":{"0":{"oreDict":["foodSoftpretzelandmustard"],"name":"Soft Pretzel and Mustard","tr":"芥末椒盐脆饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioPaintPress":{"0":{"name":"Painting Press","tr":"压印机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamgingerCrop":{"0":{"name":"Ginger Crop","tr":"生姜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:MorphAxe":{"0":{"name":"Chameleon Axe","tr":"避役斧","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1501}},"miscutils:itemPlateLafiumCompound":{"0":{"oreDict":["plateLafiumCompound"],"name":"路菲恩化合物板","tr":"路菲恩化合物板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureBariteRd":{"0":{"oreDict":["dustImpureBariteRd"],"name":"Impure Barite (Rd) Dust","tr":"含杂 重晶石(Rd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockLafiumCompound":{"0":{"oreDict":["blockLafiumCompound"],"name":"路菲恩化合物块","tr":"路菲恩化合物块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockSuperJukebox":{"0":{"name":"Sir Mixalot [Jukebox]","tr":"Sir Mixalot[循环唱片机]","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodIodine":{"0":{"oreDict":["stickIodine"],"name":"碘杆","tr":"碘杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.neutroniumHeatCapacitor":{"0":{"name":"1G中子热容","tr":"1G中子热容","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemTungstenSteelRotorBlade":{"0":{"name":"TungstenSteel Rotor Blade","tr":"钨钢扇叶","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodtable":{"0":{"name":"Bloodwood Table","tr":"血树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Table","tr":"黑暗树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Table","tr":"桉树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Table","tr":"熔融树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Table","tr":"幽魂树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Table","tr":"车桑子树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Table","tr":"枫树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Table","tr":"紫檀树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Table","tr":"红木桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Table","tr":"银铃树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Table","tr":"樱花树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Table","tr":"核桃树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Table","tr":"柳树桌子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundPickaxe":{"0":{"name":"Bound Pickaxe","tr":"约束之镐","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"GalacticraftCore:item.bucketFuel":{"0":{"name":"Fuel Bucket","tr":"燃油桶","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:focusContainment":{"0":{"name":"Wand Focus: Containment","tr":"法杖核心:收容","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:plants":{"0":{"oreDict":["cropGrass"],"name":"Dead Grass","tr":"枯萎草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["cropGrass"],"name":"Desert Grass","tr":"沙漠草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cropGrass"],"name":"Desert Sprouts","tr":"沙漠野菜","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropGrass"],"name":"Dune Grass","tr":"沙丘草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Spectral Fern","tr":"幽灵蕨","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Thorns","tr":"荆棘","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wild Rice","tr":"野生稻","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cattail","tr":"香蒲","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stickWood"],"name":"River Cane","tr":"河水甘蔗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["cropCacti"," cropSmallCactus"],"name":"Tiny Cactus","tr":"仙人球","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Wither Wart","tr":"凋零疣","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Reed","tr":"芦苇","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Root","tr":"根须","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal7":{"0":{"oreDict":["blockSunnarium"],"name":"阳光化合物块","tr":"阳光化合物块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockTantalum"],"name":"钽块","tr":"钽块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockTellurium"],"name":"碲块","tr":"碲块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockTerbium"],"name":"铽块","tr":"铽块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockThaumium"],"name":"神秘块","tr":"神秘块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockThorium"],"name":"钍块","tr":"钍块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockThulium"],"name":"铥块","tr":"铥块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockTin"],"name":"锡块","tr":"锡块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockTinAlloy"],"name":"锡铁合金块","tr":"锡铁合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockTitanium"],"name":"钛块","tr":"钛块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockTritanium"],"name":"三钛块","tr":"三钛块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockTungsten"],"name":"钨块","tr":"钨块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockTungstenSteel"],"name":"钨钢块","tr":"钨钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockUltimet"],"name":"哈氏合金块","tr":"哈氏合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockUranium"],"name":"铀-238块","tr":"铀-238块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockUranium235"],"name":"铀-235块","tr":"铀-235块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemManaBean":{"0":{"name":"Mana Bean","tr":"魔豆","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal6":{"0":{"oreDict":["blockPromethium"],"name":"钷块","tr":"钷块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockRedAlloy"],"name":"红色合金块","tr":"红色合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockRedSteel"],"name":"红钢块","tr":"红钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockRoseGold"],"name":"玫瑰金块","tr":"玫瑰金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockRubidium"],"name":"铷块","tr":"铷块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockSamarium"],"name":"钐块","tr":"钐块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockScandium"],"name":"钪块","tr":"钪块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockShadowIron"],"name":"暗影铁块","tr":"暗影铁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockShadowSteel"],"name":"暗影钢块","tr":"暗影钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockSilicon"],"name":"硅块","tr":"硅块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockSilver"],"name":"银块","tr":"银块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockSolderingAlloy"],"name":"焊锡块","tr":"焊锡块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockStainlessSteel"],"name":"不锈钢块","tr":"不锈钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockSteel"],"name":"钢块","tr":"钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockSteelMagnetic"],"name":"磁化钢块","tr":"磁化钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockSterlingSilver"],"name":"标准纯银块","tr":"标准纯银块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal5":{"0":{"oreDict":["blockNeodymium"],"name":"钕块","tr":"钕块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockNeodymiumMagnetic"],"name":"磁化钕块","tr":"磁化钕块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockNeutronium"],"name":"中子块","tr":"中子块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockNichrome"],"name":"镍铬合金块","tr":"镍铬合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockNickel"],"name":"镍块","tr":"镍块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockNiobium"],"name":"铌块","tr":"铌块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockNiobiumNitride"],"name":"氮化铌块","tr":"氮化铌块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockNiobiumTitanium"],"name":"铌钛合金块","tr":"铌钛合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockOsmiridium"],"name":"铱锇合金块","tr":"铱锇合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockOsmium"],"name":"锇块","tr":"锇块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockPalladium"],"name":"钯块","tr":"钯块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockAnyIron"," blockPigIron"],"name":"生铁块","tr":"生铁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockPlatinum"],"name":"铂块","tr":"铂块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockPlutonium"],"name":"钚-239块","tr":"钚-239块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockPlutonium241"],"name":"钚-241块","tr":"钚-241块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockPraseodymium"],"name":"镨块","tr":"镨块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberryicedteaItem":{"0":{"oreDict":["foodRaspberryicedtea"],"name":"Raspberry Iced Tea","tr":"树莓冰茶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal4":{"0":{"oreDict":["blockKnightmetal"],"name":"骑士金属块","tr":"骑士金属块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockLanthanum"],"name":"镧块","tr":"镧块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockLead"],"name":"铅块","tr":"铅块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockLutetium"],"name":"镥块","tr":"镥块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockMagnalium"],"name":"镁铝合金块","tr":"镁铝合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockMagnesium"],"name":"镁块","tr":"镁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockManganese"],"name":"锰块","tr":"锰块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockMeteoricIron"],"name":"陨铁块","tr":"陨铁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockMeteoricSteel"],"name":"陨钢块","tr":"陨钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockTrinium"],"name":"三元金属块","tr":"三元金属块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockMithril"],"name":"秘银块","tr":"秘银块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockMolybdenum"],"name":"钼块","tr":"钼块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockNaquadah"],"name":"硅岩块","tr":"硅岩块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockNaquadahAlloy"],"name":"硅岩合金块","tr":"硅岩合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockNaquadahEnriched"],"name":"富集硅岩块","tr":"富集硅岩块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockNaquadria"],"name":"超能硅岩块","tr":"超能硅岩块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleNiobiumCarbide":{"0":{"oreDict":["plateDoubleNiobiumCarbide"],"name":"双重碳化铌板","tr":"双重碳化铌板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:crushedPurifiedAncientGranite":{"0":{"oreDict":["crushedPurifiedAncientGranite"],"name":"Purified Crushed Ancient Granite Ore","tr":"洗净的古花岗岩矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal9":{"0":{"oreDict":["blockCryolite"],"name":"冰晶石块","tr":"冰晶石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)块","tr":"太阳能级硅(多晶硅)块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockNickelAluminide"],"name":"铝化镍块","tr":"铝化镍块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockSpaceTime"],"name":"时空块","tr":"时空块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockTranscendentMetal"],"name":"超时空金属块","tr":"超时空金属块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockOriharukon"],"name":"奥利哈钢块","tr":"奥利哈钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockWhiteDwarfMatter"],"name":"白矮星物质块","tr":"白矮星物质块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockBlackDwarfMatter"],"name":"黑矮星物质块","tr":"黑矮星物质块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockUniversium"],"name":"宇宙素块","tr":"宇宙素块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockEternity"],"name":"永恒块","tr":"永恒块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockMagmatter"],"name":"磁物质块","tr":"磁物质块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:TaintLeaves":{"0":{"name":"Tainted Leaves","tr":"腐化树叶","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal8":{"0":{"oreDict":["blockVanadium"],"name":"钒块","tr":"钒块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockVanadiumGallium"],"name":"钒镓合金块","tr":"钒镓合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockAnyIron"," blockWroughtIron"],"name":"锻铁块","tr":"锻铁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockYtterbium"],"name":"镱块","tr":"镱块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockYttrium"],"name":"钇块","tr":"钇块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockYttriumBariumCuprate"],"name":"钇钡铜氧块","tr":"钇钡铜氧块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockZinc"],"name":"锌块","tr":"锌块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockTungstenCarbide"],"name":"碳化钨块","tr":"碳化钨块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockVanadiumSteel"],"name":"钒钢块","tr":"钒钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockHSSG"],"name":"高速钢-G块","tr":"高速钢-G块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockHSSE"],"name":"高速钢-E块","tr":"高速钢-E块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockHSSS"],"name":"高速钢-S块","tr":"高速钢-S块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockSteeleaf"],"name":"钢叶块","tr":"钢叶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockIchorium"],"name":"灵宝块","tr":"灵宝块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockFirestone"],"name":"火石块","tr":"火石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockShadow"],"name":"暗影金属块","tr":"暗影金属块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sanctus":{"0":{"name":"Sanctus","tr":"神圣粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:ofanix":{"0":{"name":"Ofanix","tr":"欧凡尼克变换器","tab":"Ztones","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedNetherwart":{"0":{"name":"Crated Nether Wart","tr":"装箱的地狱疣","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemEnergeticRotorBlade":{"0":{"name":"Energetic Alloy Rotor Blade","tr":"充能合金扇叶","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"Avaritia:Neutron_Collector":{"0":{"name":"Neutron Collector","tr":"中子态素收集器","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:sponge":{"0":{"name":"Sponge","tr":"海绵","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemOCConduit":{"0":{"name":"Network Conduit (OC)","tr":"网络导管(OC)","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemVoidmetalGoggles":{"0":{"name":"Voidmetal Goggles of Revealing","tr":"虚空暗影揭示之护目镜","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemDustNitinol60":{"0":{"oreDict":["dustNitinol60"],"name":"镍钛诺60粉","tr":"镍钛诺60粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:thunderSword":{"0":{"name":"Thundercaller","tr":"召雷者","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":2301}},"Forestry:fluid.honey":{"0":{"name":"Honey","tr":"蜂蜜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:terrae":{"0":{"name":"Terrae","tr":"泥土粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:naquadahIngot":{"0":{"oreDict":["ingotNaquadahAlloy"],"name":"Naquadah Alloy Ingot","tr":"硅岩合金锭","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedingotHot":{"64":{"oreDict":["ingotHotRuthenium"],"name":"热钌锭","tr":"热钌锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["ingotHotShirabon"],"name":"热调律源金锭","tr":"热调律源金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotHotZirconium"],"name":"热锆锭","tr":"热锆锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["ingotHotZn-ThAlloy"],"name":"热锌钍合金锭","tr":"热锌钍合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["ingotHotRhodium"],"name":"热铑锭","tr":"热铑锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["ingotHotRhodium-PlatedPalladium"],"name":"热镀铑钯锭","tr":"热镀铑钯锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["ingotHotRuridit"],"name":"热钌铱合金锭","tr":"热钌铱合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["ingotHotHighDurabilityCompoundSteel"],"name":"热高耐久性复合钢锭","tr":"热高耐久性复合钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["ingotHotThorium232"],"name":"热钍-232锭","tr":"热钍-232锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["ingotHotAdemicSteel"],"name":"热硬钢锭","tr":"热硬钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["ingotHotZircaloy-4"],"name":"热锆锡合金-4锭","tr":"热锆锡合金-4锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["ingotHotZircaloy-2"],"name":"热锆锡合金-2锭","tr":"热锆锡合金-2锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["ingotHotIncoloy-903"],"name":"热耐热铬铁合金-903锭","tr":"热耐热铬铁合金-903锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["ingotHotAdamantiumAlloy"],"name":"热精金合金锭","tr":"热精金合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["ingotHotAtomicSeparationCatalyst"],"name":"热原子分离催化剂锭","tr":"热原子分离催化剂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["ingotHotCalifornium"],"name":"热锎锭","tr":"热锎锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["ingotHotCalcium"],"name":"热钙锭","tr":"热钙锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["ingotHotFluorophlogopite"],"name":"热氟金云母锭","tr":"热氟金云母锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["ingotHotExtremelyUnstableNaquadah"],"name":"热极不稳定硅岩锭","tr":"热极不稳定硅岩锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["ingotHotBArTiMaEuSNeK"],"name":"热BArTiMaEuSNeK锭","tr":"热BArTiMaEuSNeK锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["ingotHotMagnesia"],"name":"热氧化镁锭","tr":"热氧化镁锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["ingotHotTantalumHafniumCarbide"],"name":"热碳化钽铪锭","tr":"热碳化钽铪锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["ingotHotMAR-M200Steel"],"name":"热MAR-M200特种钢锭","tr":"热MAR-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["ingotHotPTMEGElastomer"],"name":"热PTMEG橡胶锭","tr":"热PTMEG橡胶锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["ingotHotMAR-Ce-M200Steel"],"name":"热MAR-Ce-M200特种钢锭","tr":"热MAR-Ce-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["ingotHotLithiumChloride"],"name":"热氯化锂锭","tr":"热氯化锂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["ingotHotSignalium"],"name":"热信素锭","tr":"热信素锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["ingotHotLumiium"],"name":"热流明锭","tr":"热流明锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["ingotHotArtherium-Sn"],"name":"热阿瑟锡锭","tr":"热阿瑟锡锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["ingotHotTanmolyiumBeta-C"],"name":"热钛钼合金β-C锭","tr":"热钛钼合金β-C锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["ingotHotDalisenite"],"name":"热大力合金锭","tr":"热大力合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["ingotHotHafnium"],"name":"热铪锭","tr":"热铪锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["ingotHotHikarium"],"name":"热光素锭","tr":"热光素锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["ingotHotTairitsu"],"name":"热对立合金锭","tr":"热对立合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["ingotHotPreciousMetalsAlloy"],"name":"热稀有金属合金锭","tr":"热稀有金属合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["ingotHotEnrichedNaquadahAlloy"],"name":"热富集硅岩合金锭","tr":"热富集硅岩合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["ingotHotMetastableOganesson"],"name":"热亚稳态鿫锭","tr":"热亚稳态鿫锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["ingotHotZirconium"],"name":"热锆锭","tr":"热锆锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.CastleBrick":{"0":{"name":"Castle Brick","tr":"城堡砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Worn Castle Brick","tr":"旧城堡砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Cracked Castle Brick","tr":"裂城堡砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Castle Roof Tile","tr":"城堡顶砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal3":{"0":{"oreDict":["blockElectrumFlux"],"name":"通流琥珀金块","tr":"通流琥珀金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockEnderium"],"name":"末影(te)块","tr":"末影(te)块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockErbium"],"name":"铒块","tr":"铒块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockEuropium"],"name":"铕块","tr":"铕块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockFierySteel"],"name":"炽热的钢块","tr":"炽热的钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGadolinium"],"name":"钆块","tr":"钆块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGallium"],"name":"镓块","tr":"镓块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockHolmium"],"name":"钬块","tr":"钬块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockIndium"],"name":"铟块","tr":"铟块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockInfusedGold"],"name":"注魔金块","tr":"注魔金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockInvar"],"name":"殷钢块","tr":"殷钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockIridium"],"name":"铱块","tr":"铱块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockIronMagnetic"],"name":"磁化铁块","tr":"磁化铁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockIronWood"],"name":"铁木块","tr":"铁木块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockKanthal"],"name":"坎塔尔合金块","tr":"坎塔尔合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustRuthenium":{"0":{"oreDict":["dustRuthenium"],"name":"钌粉","tr":"钌粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal2":{"0":{"oreDict":["blockBronze"," blockAnyBronze"],"name":"青铜块","tr":"青铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockCaesium"],"name":"铯块","tr":"铯块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockCerium"],"name":"铈块","tr":"铈块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockChrome"],"name":"铬块","tr":"铬块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockChromiumDioxide"],"name":"二氧化铬块","tr":"二氧化铬块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockCobalt"],"name":"钴块","tr":"钴块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockCobaltBrass"],"name":"钴黄铜块","tr":"钴黄铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockCopper"," blockAnyCopper"],"name":"铜块","tr":"铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockCupronickel"],"name":"白铜块","tr":"白铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockDamascusSteel"],"name":"大马士革钢块","tr":"大马士革钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockDarkIron"],"name":"玄铁块","tr":"玄铁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockDeepIron"],"name":"深渊铁块","tr":"深渊铁块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockDesh"],"name":"戴斯块","tr":"戴斯块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockDuranium"],"name":"铿铀块","tr":"铿铀块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockDysprosium"],"name":"镝块","tr":"镝块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockElectrum"],"name":"琥珀金块","tr":"琥珀金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ArtificialLeather":{"0":{"oreDict":["leather"," itemLeather"],"name":"Artificial Leather","tr":"人造皮革","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmetal1":{"0":{"oreDict":["blockAdamantium"],"name":"精金块","tr":"精金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockAluminium"],"name":"铝块","tr":"铝块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockAmericium"],"name":"镅块","tr":"镅块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockAnyCopper"," blockAnnealedCopper"],"name":"退火铜块","tr":"退火铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockAntimony"],"name":"锑块","tr":"锑块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockArsenic"],"name":"砷块","tr":"砷块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockAstralSilver"],"name":"星辰银块","tr":"星辰银块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockBatteryAlloy"],"name":"电池合金块","tr":"电池合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockBeryllium"],"name":"铍块","tr":"铍块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockBismuth"],"name":"铋块","tr":"铋块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockBismuthBronze"],"name":"铋青铜块","tr":"铋青铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockBlackBronze"],"name":"黑青铜块","tr":"黑青铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockBlackSteel"],"name":"黑钢块","tr":"黑钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockBlueAlloy"],"name":"蓝色合金块","tr":"蓝色合金块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockBlueSteel"],"name":"蓝钢块","tr":"蓝钢块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockBrass"],"name":"黄铜块","tr":"黄铜块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemPlutonium":{"0":{"name":"Plutonium","tr":"钚","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCrocoite":{"0":{"oreDict":["dustTinyCrocoite"],"name":"小撮赤铅矿粉","tr":"小撮赤铅矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:unholyCloak":{"0":{"name":"Cloak of Sin","tr":"罪恶斗篷","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:cornmealItem":{"0":{"oreDict":["foodCornmeal"],"name":"Cornmeal","tr":"玉米面","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:powdereddonutItem":{"0":{"oreDict":["foodPowdereddonut"],"name":"Powdered Donut","tr":"粉甜甜圈","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:bifrostPermPane":{"0":{"name":"Bifrost Pane","tr":"彩虹玻璃板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshAxe":{"0":{"name":"Desh Axe","tr":"戴斯斧","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1025}},"Natura:button.ghostwood":{"0":{"oreDict":["buttonWood"],"name":"Ghostwood Button","tr":"幽魂树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:corpseEffigy":{"0":{"name":"Corpse Effigy","tr":"死尸雕像","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:part_fluid_terminal":{"0":{"name":"ME Fluid Terminal","tr":"ME流体终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:EMTMachines":{"0":{"name":"Industrial Wand Charging Station","tr":"工业法杖充能站","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ethereal Processor","tr":"天域加工机","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Essentia Filler - Marked for deprecation","tr":"源质填充机 - 即将弃用","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltHastelloyX":{"0":{"oreDict":["boltHastelloyX"],"name":"哈斯特洛依合金-X螺栓","tr":"哈斯特洛依合金-X螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:fishtacoItem":{"0":{"oreDict":["foodFishtaco"],"name":"Fish Taco","tr":"海鲜塔可饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleIce":{"0":{"oreDict":["capsuleIce"],"name":"Ice Capsule","tr":"耐火冰胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedBrass":{"0":{"name":"Crated Bronze Ingot","tr":"装箱的青铜锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedTungstenIronPlate":{"0":{"name":"Reinforced Tungsten-Iron Plate","tr":"强化钨铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBlackMetal":{"0":{"oreDict":["cellBlackMetal"],"name":"黑物质单元","tr":"黑物质单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zoeaBlock":{"0":{"name":"Zoea ⓪","tr":"Zoea ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zoea ①","tr":"Zoea ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zoea ②","tr":"Zoea ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zoea ③","tr":"Zoea ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zoea ④","tr":"Zoea ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zoea ⑤","tr":"Zoea ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zoea ⑥","tr":"Zoea ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zoea ⑦","tr":"Zoea ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zoea ⑧","tr":"Zoea ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zoea ⑨","tr":"Zoea ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zoea ⑩","tr":"Zoea ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zoea ⑪","tr":"Zoea ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zoea ⑫","tr":"Zoea ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zoea ⑬","tr":"Zoea ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zoea ⑭","tr":"Zoea ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zoea ⑮","tr":"Zoea ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltEglinSteel":{"0":{"oreDict":["boltEglinSteel"],"name":"埃格林钢螺栓","tr":"埃格林钢螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sigilOfMagnetism":{"0":{"name":"Sigil of Magnetism","tr":"磁引印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:FRF_Casings":{"0":{"name":"Naquadah Fuel Refinery Casing","tr":"硅岩燃料精炼机械方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pomegranatesmoothieItem":{"0":{"oreDict":["foodPomegranatesmoothie"," listAllsmoothie"],"name":"Pomegranate Smoothie","tr":"石榴冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cherryicecreamItem":{"0":{"oreDict":["foodCherryicecream"],"name":"Cherry Ice Cream","tr":"樱桃冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemAdvIronBlockCuttingBlade":{"0":{"name":"Block Cutting Blade (Steel)","tr":"精炼铁切割锯片","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TitaniumDualCompressedPlates":{"0":{"name":"Compressed Dual Titanium Plates","tr":"航天双层钛板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:Boneana":{"0":{"name":"Broadsword","tr":"大剑","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemCellBurntReactorFuelII":{"0":{"oreDict":["cellBurntReactorFuelII"],"name":"枯竭反应堆燃料 II单元","tr":"枯竭反应堆燃料 II单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleAbyssalAlloy":{"0":{"oreDict":["plateDoubleAbyssalAlloy"],"name":"双重深渊合金板","tr":"双重深渊合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemPlateEglinSteel":{"0":{"oreDict":["plateEglinSteel"],"name":"埃格林钢板","tr":"埃格林钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormPlate":{"0":{"name":"Casting Form (Plate Mold)","tr":"铸件(板)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier5Rocket":{"0":{"name":"Tier 5 Rocket","tr":"5阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 5 Rocket","tr":"5阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 5 Rocket","tr":"5阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 5 Rocket","tr":"5阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 5 Rocket","tr":"5阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedCentrifugedMiessiite":{"0":{"oreDict":["crushedCentrifugedMiessiite"],"name":"Centrifuged Crushed Miessiite Ore","tr":"离心硅灰石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledNickel":{"0":{"oreDict":["milledNickel"],"name":"Milled Nickel","tr":"研磨镍矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantumProcessorBoard":{"0":{"name":"Quantum Processor Board","tr":"量子处理器基板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:heavilyCrackedNaquadahAsphalt":{"0":{"name":"Severely Cracked Naquadah Asphalt","tr":"重度裂化硅岩沥青","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:moss":{"0":{"name":"Moss","tr":"苔藓","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateRunite":{"0":{"oreDict":["plateRunite"],"name":"虚恩板","tr":"虚恩板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_light_blue":{"0":{"name":"Light Blue Curtain","tr":"淡蓝色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:barrelTierFour":{"0":{"name":"Barrel (Tier 4)","tr":"炮管(四级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:garlicbreadItem":{"0":{"oreDict":["foodGarlicbread"],"name":"Garlic Bread","tr":"蒜蓉面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:mushroom":{"0":{"oreDict":["flowerIngredientWhite"," listMagicMushroom"],"name":"White Shimmering Mushroom","tr":"白色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["flowerIngredientOrange"," listMagicMushroom"],"name":"Orange Shimmering Mushroom","tr":"橙色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["flowerIngredientMagenta"," listMagicMushroom"],"name":"Magenta Shimmering Mushroom","tr":"品红色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["flowerIngredientLightBlue"," listMagicMushroom"],"name":"Light Blue Shimmering Mushroom","tr":"淡蓝色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["flowerIngredientYellow"," listMagicMushroom"],"name":"Yellow Shimmering Mushroom","tr":"黄色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["flowerIngredientLime"," listMagicMushroom"],"name":"Lime Shimmering Mushroom","tr":"黄绿色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["flowerIngredientPink"," listMagicMushroom"],"name":"Pink Shimmering Mushroom","tr":"粉色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["flowerIngredientGray"," listMagicMushroom"],"name":"Gray Shimmering Mushroom","tr":"灰色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["flowerIngredientLightGray"," listMagicMushroom"],"name":"Light Gray Shimmering Mushroom","tr":"淡灰色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["flowerIngredientCyan"," listMagicMushroom"],"name":"Cyan Shimmering Mushroom","tr":"青色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["flowerIngredientPurple"," listMagicMushroom"],"name":"Purple Shimmering Mushroom","tr":"紫色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["flowerIngredientBlue"," listMagicMushroom"],"name":"Blue Shimmering Mushroom","tr":"蓝色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["flowerIngredientBrown"," listMagicMushroom"],"name":"Brown Shimmering Mushroom","tr":"棕色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["flowerIngredientGreen"," listMagicMushroom"],"name":"Green Shimmering Mushroom","tr":"绿色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["flowerIngredientRed"," listMagicMushroom"],"name":"Red Shimmering Mushroom","tr":"红色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["flowerIngredientBlack"," listMagicMushroom"],"name":"Black Shimmering Mushroom","tr":"黑色微光蘑菇","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.MethaneBucket":{"0":{"name":"Methane Bucket","tr":"液态甲烷桶","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustCinobiteA243":{"0":{"oreDict":["dustCinobiteA243"],"name":"西诺柏A243粉","tr":"西诺柏A243粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBarley":{"0":{"name":"Crated Barley","tr":"装箱的大麦","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:sesameseedsItem":{"0":{"oreDict":["cropSesame"],"name":"Sesame Seeds","tr":"芝麻","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZeron100":{"0":{"oreDict":["dustSmallZeron100"],"name":"小堆塞龙-100粉","tr":"小堆塞龙-100粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:MobCrystal":{"0":{"name":"Chicken Imprinted Crystal","tr":"鸡 留影水晶","tab":"留影水晶","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:item.charmOfKeeping2":{"0":{"name":"Charm of Keeping II","tr":"保管符咒Ⅱ","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseStaballoy":{"0":{"oreDict":["plateDenseStaballoy"],"name":"致密贫铀合金板","tr":"致密贫铀合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrophy":{"0":{"name":"tile.TFTrophy.0.name","tr":"九头蛇战利品","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.charmOfKeeping1":{"0":{"name":"Charm of Keeping I","tr":"保管符咒Ⅰ","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.charmOfKeeping3":{"0":{"name":"Charm of Keeping III","tr":"保管符咒Ⅲ","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.titanium_pickaxe":{"0":{"name":"Titanium Pickaxe","tr":"钛镐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":521}},"miscutils:itemNuggetZeron100":{"0":{"oreDict":["nuggetZeron100"],"name":"塞龙-100粒","tr":"塞龙-100粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:lightRelay":{"0":{"name":"Luminizer","tr":"微光","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Detector Luminizer","tr":"探测微光","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGenericToken":{"0":{"name":"§r比特币","tr":"§r比特币","tab":"GT++杂项","type":"Item","maxStackSize":16,"maxDurability":1001},"1":{"name":"§r手泵交易代币I","tr":"§r手泵交易代币I","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1001},"2":{"name":"§r手泵交易代币II","tr":"§r手泵交易代币II","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1001},"3":{"name":"§r手泵交易代币III","tr":"§r手泵交易代币III","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1001},"4":{"name":"§r手泵交易代币IV","tr":"§r手泵交易代币IV","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:itemRingAstralTitanium":{"0":{"oreDict":["ringAstralTitanium"],"name":"星体钛环","tr":"星体钛环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedNeutroniumIronPlate":{"0":{"name":"Reinforced Neutronium-Iron Plate","tr":"强化中子铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorIodine":{"0":{"oreDict":["rotorIodine"],"name":"碘转子","tr":"碘转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemLeggingsCultistPlate":{"0":{"name":"Crimson Cult Greaves","tr":"血腥邪徒护胫","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":226}},"harvestcraft:pamAlmond":{"0":{"name":"Almond","tr":"扁桃","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone3Slab":{"0":{"name":"Granite Slab","tr":"花岗岩台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateStellite":{"0":{"oreDict":["plateStellite"],"name":"铬钴锰钛合金板","tr":"铬钴锰钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPikyonium64B":{"0":{"oreDict":["dustTinyPikyonium64B"],"name":"小撮皮卡优合金64B粉","tr":"小撮皮卡优合金64B粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltHastelloyN":{"0":{"oreDict":["boltHastelloyN"],"name":"哈斯特洛依合金-N螺栓","tr":"哈斯特洛依合金-N螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:IndustrialScoop":{"0":{"name":"Scooporator MX200 Turbo","tr":"MX200涡轮捕虫网","tab":"基因工业","type":"Item","maxStackSize":1,"maxDurability":102},"1":{"name":"Scooporator MX200 Turbo","tr":"MX200涡轮捕虫网","tab":"基因工业","type":"Item","maxStackSize":1,"maxDurability":102}},"ae2fc:part_fluid_import":{"0":{"name":"ME Fluid Import Bus","tr":"ME流体输入总线","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:golemPowder":{"0":{"name":"Golem Animation Powder","tr":"傀儡活化粉","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleSeedOil":{"0":{"oreDict":["capsuleSeedOil"],"name":"Seed Oil Capsule","tr":"种子油胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MirandaStoneDust":{"0":{"oreDict":["dustSpace"," dustMirandaStone"," dustMiranda"],"name":"Miranda Stone Dust","tr":"天卫五尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:wall.beta":{"0":{"name":"Quartz Wall","tr":"石英墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Quartz Wall","tr":"錾制石英墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Wall","tr":"铁墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Gold Wall","tr":"金墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Diamond Wall","tr":"钻石墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Abyssal Brick Wall","tr":"深渊砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Quarried Brick Wall","tr":"采掘砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Blood Stained Brick Wall","tr":"污血砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Bleached Bone Brick Wall","tr":"白骨砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:WG_WallMirror":{"0":{"name":"Mirror on the Wall","tr":"墙上的魔镜","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltHastelloyW":{"0":{"oreDict":["boltHastelloyW"],"name":"哈斯特洛依合金-W螺栓","tr":"哈斯特洛依合金-W螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotIncoloy020":{"0":{"oreDict":["ingotHotIncoloy020"],"name":"热耐热铬铁合金-020锭","tr":"热耐热铬铁合金-020锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingAbyssalAlloy":{"0":{"oreDict":["ringAbyssalAlloy"],"name":"深渊合金环","tr":"深渊合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:potatoCannonTurret":{"0":{"name":"Potato Cannon Turret","tr":"土豆加农炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:goldenOakSapling":{"0":{"oreDict":["treeSapling"],"name":"Golden Oak Sapling","tr":"黄金橡树树苗","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Peaceful Sapling","tr":"和平树苗","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Nether Sapling","tr":"地狱树苗","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Sapling","tr":"末影树苗","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:magnet":{"0":{"oreDict":["mb.magnet.level0"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["mb.magnet.level8"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["mb.magnet.level1"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["mb.magnet.level2"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["mb.magnet.level3"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["mb.magnet.level4"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["mb.magnet.level5"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["mb.magnet.level6"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["mb.magnet.level7"],"name":"Mysterious Magnet","tr":"神秘磁铁","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.spaceshipTier2":{"0":{"name":"Tier 2 Rocket","tr":"2阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 2 Rocket","tr":"2阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 2 Rocket","tr":"2阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 2 Rocket","tr":"2阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 2 Rocket","tr":"2阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Cargo Rocket","tr":"货运火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Cargo Rocket","tr":"货运火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Cargo Rocket","tr":"货运火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Cargo Rocket","tr":"货运火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinChemistIII":{"0":{"name":"Coin \"The Chemist 1000\"","tr":"化学家币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:rosehipSyrup":{"0":{"name":"Rosehip Syrup","tr":"玫瑰果浆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":16,"maxDurability":1}},"dreamcraft:item.NanoRubberBoots":{"0":{"name":"Nano Rubber Boots","tr":"纳米橡胶靴","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.saplings":{"0":{"oreDict":["treeSapling"],"name":"Virilig Sapling","tr":"维里格树苗","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Lumipod Sapling","tr":"卢米坡德树苗","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:GravelOre":{"0":{"oreDict":["oreIron"],"name":"Iron Gravel Ore","tr":"铁矿砂砾","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreGold"],"name":"Gold Gravel Ore","tr":"金矿砂砾","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreCopper"],"name":"Copper Gravel Ore","tr":"铜矿砂砾","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreTin"],"name":"Tin Gravel Ore","tr":"锡矿砂砾","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreAluminum"," oreAluminium"],"name":"Aluminum Gravel Ore","tr":"铝矿砂砾","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreCobalt"],"name":"Cobalt Gravel Ore","tr":"钴矿砂砾","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemVanillaMachineCard":{"0":{"name":"Vanilla Machine Card","tr":"IC原版机器卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:grubItem":{"0":{"oreDict":["grubBee"],"name":"Bee Grub","tr":"蜜蜂幼虫","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZeron100":{"0":{"oreDict":["dustZeron100"],"name":"塞龙-100粉","tr":"塞龙-100粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:deathsfeet":{"0":{"name":"Death\u0027s Footwear","tr":"死神裹脚布","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":430}},"Railcraft:firestone.cracked":{"0":{"name":"Cracked Firestone","tr":"碎裂火石","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":5001},"5000":{"name":"Cracked Firestone","tr":"碎裂火石","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":5001}},"dreamcraft:dreamcraft_NitricAcid_bucket":{"0":{"name":"Bucket of Nitric Acid","tr":"桶装硝酸","tab":"GTNH: 流体","type":"Item","maxStackSize":1,"maxDurability":1}},"LogisticsPipes:item.PipeItemsApiaristAnalyser":{"0":{"name":"Bee Analyzer Logistics Pipe","tr":"蜜蜂分析物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:rfGenerator":{"0":{"name":"Mana Fluxfield","tr":"魔力转换器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemSpringWatertightSteel":{"0":{"oreDict":["springWatertightSteel"],"name":"防水钢弹簧","tr":"防水钢弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongTitansteel":{"0":{"oreDict":["stickLongTitansteel"],"name":"长泰坦精钢杆","tr":"长泰坦精钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZimbabweite":{"0":{"oreDict":["dustTinyZimbabweite"],"name":"小撮钛铌铅钠石粉","tr":"小撮钛铌铅钠石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steel_hoe":{"0":{"name":"Heavy Duty Hoe","tr":"重锄","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":769}},"BloodArsenal:orange_juice":{"0":{"name":"Orange Juice","tr":"橙汁","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamokraCrop":{"0":{"name":"Okra Crop","tr":"黄秋葵","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:BrailActivator":{"0":{"name":"Activator Blaze Rail","tr":"触发烈焰轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blankSlate":{"0":{"name":"Blank Slate","tr":"空白的石板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeLargePipe":{"0":{"name":"Casting Form (Large Pipe Shape)","tr":"铸形(大型管道)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellFluorineSpargedTSalt":{"0":{"oreDict":["cellFluorineSpargedTSalt"],"name":"氟涤枯竭钍熔盐单元","tr":"氟涤枯竭钍熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:Naphthalene":{"0":{"oreDict":["cellNaphthalene"],"name":"萘单元","tr":"萘单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.locomotiveRelay":{"0":{"name":"Digital Locomotive Relay","tr":"数字化机车中继器","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bltItem":{"0":{"oreDict":["foodBlt"],"name":"BLT","tr":"培根生菜番茄三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtBloodSteel":{"0":{"oreDict":["frameGtBloodSteel"],"name":"血钢框架","tr":"血钢框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:persimmonjellyItem":{"0":{"oreDict":["foodPersimmonjelly"],"name":"Persimmon Jelly","tr":"柿子果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:bootsComet":{"0":{"name":"Boots of the Comet","tr":"彗星之靴","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":326}},"GoodGenerator:specialCeramics":{"0":{"name":"Special Ceramics Dust","tr":"特种陶瓷粉","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:white_kitchen_floor":{"0":{"name":"Kitchen Floor","tr":"白色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltPotin":{"0":{"oreDict":["boltPotin"],"name":"粗青铜合金螺栓","tr":"粗青铜合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryIce":{"0":{"name":"Ice Capsule","tr":"耐火冰胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:prismarine1Stairs":{"0":{"name":"Prismarine Brick Stairs","tr":"海晶石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorEnergyCrystal":{"0":{"oreDict":["rotorEnergyCrystal"],"name":"能量水晶转子","tr":"能量水晶转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:motionSensor":{"0":{"oreDict":["oc:motionSensor"],"name":"Motion Sensor","tr":"运动传感器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TinDualCompressedPlates":{"0":{"name":"Compressed Dual Tin Plates","tr":"航天双层锡板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBlockTainted":{"0":{"name":"Crated Tainted Soil","tr":"装箱的腐沙","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyRhenium":{"0":{"oreDict":["dustTinyRhenium"],"name":"小撮铼粉","tr":"小撮铼粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pump":{"0":{"name":"Mana Pump","tr":"魔力泵","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureYttrialite":{"0":{"oreDict":["dustImpureYttrialite"],"name":"Impure Yttrialite Dust","tr":"含杂硅钍钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodGrisium":{"0":{"oreDict":["stickGrisium"],"name":"灰钛合金杆","tr":"灰钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingwood0Stairs":{"0":{"name":"Livingwood Stairs","tr":"活木楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:leafychickensandwichItem":{"0":{"oreDict":["foodLeafychickensandwich"],"name":"Leafy Chicken Sandwich","tr":"鸡肉菜叶三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusXPDrain":{"0":{"name":"Wand Focus: Experience Drain","tr":"法杖核心:经验抽取","tab":"","type":"Item","maxStackSize":1,"maxDurability":2}},"harvestcraft:cherryjellyItem":{"0":{"oreDict":["foodCherryjelly"],"name":"Cherry Jelly","tr":"樱桃果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureMiessiite":{"0":{"oreDict":["dustPureMiessiite"],"name":"Purified Miessiite Dust","tr":"纯净硅灰石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockReinforcedFoam":{"0":{"name":"Reinforced Construction Foam","tr":"强化建筑泡沫","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gingerseedItem":{"0":{"oreDict":["listAllseed"," seedGinger"],"name":"Ginger Seed","tr":"姜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemMugCoffee":{"0":{"name":"Cold Coffee","tr":"零度咖啡","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Dark Coffee","tr":"黑咖啡","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Coffee","tr":"咖啡","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.SandDust":{"0":{"oreDict":["dustQuartzSand"],"name":"Quartz Sand","tr":"石英沙","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.PistonBlock":{"0":{"name":"Piston Block","tr":"活塞块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormCoinage":{"0":{"name":"Casting Form (Coinage Mold)","tr":"铸件(硬币)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorZirconium":{"0":{"oreDict":["rotorZirconium"],"name":"锆转子","tr":"锆转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockFluidDeath":{"0":{"name":"Liquid Death","tr":"死亡之水","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHS188A":{"0":{"oreDict":["dustHS188A"],"name":"HS188-A粉","tr":"HS188-A粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:creativeTool":{"0":{"name":"Thinking Cap","tr":"冥想之帽","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:door_spruce":{"0":{"name":"Spruce Door","tr":"云杉木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockNeptunium":{"0":{"oreDict":["blockNeptunium"],"name":"镎块","tr":"镎块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltStrontium":{"0":{"oreDict":["boltStrontium"],"name":"锶螺栓","tr":"锶螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.ender":{"0":{"name":"Liquified Ender","tr":"熔融末影珍珠","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:borehead.iron":{"0":{"name":"Iron Bore Head","tr":"铁钻头","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1501}},"BiblioCraft:Typesetting Machine":{"0":{"name":"Typesetting Table","tr":"排版台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateGermanium":{"0":{"oreDict":["plateGermanium"],"name":"锗板","tr":"锗板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberrytrifleItem":{"0":{"oreDict":["foodRaspberrytrifle"],"name":"Raspberry Trifle","tr":"树莓蛋奶层叠蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:stargateRing":{"0":{"name":"Stargate Ring Block","tr":"星门外环方块","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stargate Chevron Block","tr":"星门导标方块","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SawBladeManyullyn":{"0":{"oreDict":["toolHeadSawManyullyn"],"name":"Manyullyn Saw Blade","tr":"玛玉灵锯刃","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:magnet":{"0":{"name":"Item Dislocator","tr":"物品错位器","tab":"龙之研究方块和物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Awakened Item Dislocator","tr":"觉醒物品错位器","tab":"龙之研究方块和物品","type":"Item","maxStackSize":1,"maxDurability":1}},"WitchingGadgets:item.WG_ThaumiumShears":{"0":{"name":"Thaumium Shears","tr":"神秘剪刀","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":401}},"dreamcraft:item.DiamondFluidCoreChip":{"0":{"name":"Fluid Circuit Tier I","tr":"流体电路 I","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundBootsWind":{"0":{"name":"Wind Omega Boots","tr":"风`欧米伽之靴","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:itemDustSmallComancheite":{"0":{"oreDict":["dustSmallComancheite"],"name":"小堆溴汞石粉","tr":"小堆溴汞石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:spumoniicecreamItem":{"0":{"oreDict":["foodSpumoniicecream"],"name":"Spumoni Ice Cream","tr":"意式冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTumbaga":{"0":{"oreDict":["plateDoubleTumbaga"],"name":"双重铜金合金板","tr":"双重铜金合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"bartworks:GT_LESU_CASING":{"0":{"name":"LESU Casing","tr":"LESU机械方块","tab":"GT2兼容","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:chalkritual":{"0":{"name":"Ritual Chalk","tr":"仪式粉笔","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":65}},"IC2:reactorCondensatorLap":{"1":{"name":"LZH-Condensator","tr":"青金石冷却单元","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"Natura:Natura.workbench":{"0":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["craftingTableWood"," crafterWood"],"name":"Crafting Table","tr":"工作台","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:ploughmanslunchItem":{"0":{"oreDict":["foodPloughmanslunch"],"name":"Ploughman\u0027s Lunch","tr":"农夫午餐","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustDemicheleiteBr":{"0":{"oreDict":["dustDemicheleiteBr"],"name":"溴硫铋矿(Br)粉","tr":"溴硫铋矿(Br)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:plankSlab2":{"0":{"oreDict":["slabWood"],"name":"Amaranth Slab","tr":"紫檀树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"],"name":"Tigerwood Slab","tr":"核桃树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabWood"],"name":"Willow Slab","tr":"柳树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabWood"],"name":"Darkwood Slab","tr":"黑暗树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabWood"],"name":"Fusewood Slab","tr":"熔融树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:enderThermicPump":{"0":{"name":"Ender-Thermic Pump","tr":"末影岩浆泵","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHG1223":{"0":{"oreDict":["cellHG1223"],"name":"HG-1223单元","tr":"HG-1223单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:plankSlab1":{"0":{"oreDict":["slabWood"],"name":"Eucalyptus Slab","tr":"桉树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"],"name":"Sakura Slab","tr":"樱花树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabWood"],"name":"Ghostwood Slab","tr":"幽魂树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabWood"],"name":"Redwood Slab","tr":"红木树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabWood"],"name":"Blood Slab","tr":"血树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["slabWood"],"name":"Hopseed Slab","tr":"车桑子树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["slabWood"],"name":"Maple Slab","tr":"枫树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["slabWood"],"name":"Silverbell Slab","tr":"银铃树台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHoneaite":{"0":{"oreDict":["dustTinyHoneaite"],"name":"小撮碲化金铊粉","tr":"小撮碲化金铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:oatsseedItem":{"0":{"oreDict":["listAllseed"," seedOats"],"name":"Oats Seed","tr":"燕麦种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockMirrorMultiDest":{"0":{"name":"Dispersing Mirror","tr":"分发魔镜","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pumpkincheesecakeItem":{"0":{"name":"Pumpkin Cheesecake","tr":"南瓜芝士蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:lensOrderEntropy":{"0":{"name":"Scholar\u0027s Lens","tr":"阴阳学究之镜","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:crittersnare":{"0":{"name":"Critter Snare","tr":"生物陷阱","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockHootch":{"0":{"name":"Hootch","tr":"烈酒","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedFluorcaphite":{"0":{"oreDict":["crushedPurifiedFluorcaphite"],"name":"Purified Crushed Fluorcaphite Ore","tr":"洗净的氟碳铈矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellNaquadriaFuel":{"0":{"oreDict":["cellNaquadriaFuel"],"name":"超能硅岩燃料单元","tr":"超能硅岩燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB4SlabFull":{"0":{"name":"Metamorphic Swamp Stone Brick Slab","tr":"变质沼泽石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:stoneFormations":{"0":{"name":"Stalagmite","tr":"石笋","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stalactite","tr":"钟乳石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:molten.emerald":{"0":{"name":"Liquified Emerald","tr":"熔融绿宝石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafAxe":{"0":{"name":"Steeleaf Axe","tr":"钢叶斧","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":132}},"Botania:pavement5Stairs":{"0":{"name":"Green Portuguese Pavement Stairs","tr":"绿色葡萄牙楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockOreTin":{"0":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:lapis_block":{"1":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Lapis Block","tr":"青金石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureYttrocerite":{"0":{"oreDict":["dustPureYttrocerite"],"name":"Purified Yttrocerite Dust","tr":"洁净铈钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:minicoal":{"0":{"name":"Mini Coal","tr":"迷你煤炭","tab":"Ztones","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:bloodMagicBaseItems":{"0":{"name":"Quartz Rod","tr":"石英棍","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Empty Core","tr":"空白核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Magicales Cable","tr":"魔法线缆","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Wooden Brace","tr":"木支架","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Stone Brace","tr":"石支架","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Projectile Core","tr":"抛射核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Self Core","tr":"自体核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Melee Core","tr":"格斗核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Paradigm Plate","tr":"范式板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Output Spell Cable","tr":"法术线缆:输出","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Fire Core","tr":"火焰核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Icy Core","tr":"冰霜核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Gusty Core","tr":"风暴核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Earthen Core","tr":"尘土核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Input Spell Cable","tr":"法术线缆:输入","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Cracked Runic Plate","tr":"[裂损]古碑文板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Runic Plate","tr":"古碑文板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Imbued Runic Plate","tr":"[灌输]古碑文板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Unattuned Core","tr":"未鉴核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Offensive Core","tr":"攻势核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Defensive Core","tr":"防守核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Environmental Core","tr":"环境核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Power Core","tr":"力量核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Reduction Core","tr":"代价核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Potency Core","tr":"效能核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Obsidian Brace","tr":"黑曜石支架","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Tool Core","tr":"工具核心","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Ethereal Slate","tr":"悬幽石板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Life Shard","tr":"生命碎片","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Soul Shard","tr":"灵魂碎片","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Soul Runic Plate","tr":"灵魂文板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Living Brace","tr":"生命支架","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Ender Shard","tr":"末影碎片","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureZircophyllite":{"0":{"oreDict":["dustImpureZircophyllite"],"name":"Impure Zircophyllite Dust","tr":"含杂锆星叶石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Energy:blockOil":{"0":{"name":"Oil","tr":"石油","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingZirconium":{"0":{"oreDict":["ringZirconium"],"name":"锆环","tr":"锆环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.bleachedbone":{"0":{"name":"Bleached Bone Brick","tr":"白骨砖","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fitted Bleached Bone Stone","tr":"匀称白骨方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Bleached Bone Block","tr":"白骨方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ornate Bleached Bone Stone","tr":"雕琢白骨方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Etched Bleached Bone Stone","tr":"蚀刻白骨方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Bleached Bone Cobblestone","tr":"白骨圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:manaDetector":{"0":{"name":"Mana Detector","tr":"魔力检测器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LightShaft":{"0":{"name":"Light Shaft","tr":"莹光轴","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.armor.imphelmet":{"0":{"name":"Impskin Helmet","tr":"恶魔皮头盔","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":364}},"dreamcraft:item.IrradiantReinforcedTungstenPlate":{"0":{"name":"Irradiant Reinforced Tungsten Plate","tr":"光辉强化钨板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_silver":{"0":{"name":"SilverCurtain","tr":"银色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDenseTantalloy61":{"0":{"oreDict":["plateDenseTantalloy61"],"name":"致密钽钨合金-61板","tr":"致密钽钨合金-61板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotLafiumCompound":{"0":{"oreDict":["ingotHotLafiumCompound"],"name":"热路菲恩化合物锭","tr":"热路菲恩化合物锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLi2CO3CaOH2":{"0":{"oreDict":["dustLi2CO3CaOH2"],"name":"碳酸锂+氢氧化钙复合物粉","tr":"碳酸锂+氢氧化钙复合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:gatewayTH":{"0":{"name":"Planar Gateway","tr":"异界之门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.UnfiredSearedBrick":{"0":{"name":"Unfired Seared Brick","tr":"未烧制的焦黑砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseTantalloy60":{"0":{"oreDict":["plateDenseTantalloy60"],"name":"致密钽钨合金-60板","tr":"致密钽钨合金-60板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodArceusAlloy2B":{"0":{"oreDict":["stickArceusAlloy2B"],"name":"阿尔宙斯合金2B杆","tr":"阿尔宙斯合金2B杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyBlackMetal":{"0":{"oreDict":["dustTinyBlackMetal"],"name":"小撮黑物质粉","tr":"小撮黑物质粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"JABBA:moverFolded":{"0":{"name":"Dolly (Folded)","tr":"手推车(折叠)","tab":"更好的桶","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.stellar_chestplate":{"0":{"name":"Stellar Plate","tr":"恒星合金胸甲","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1201}},"miscutils:blockPestKiller":{"0":{"name":"Pest Killer","tr":"害虫杀手","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:ravaged_brick_smooth":{"0":{"name":"Smooth Ravaged Brick","tr":"平滑毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtStrontium":{"0":{"oreDict":["frameGtStrontium"],"name":"锶框架","tr":"锶框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:pavement0Slab":{"0":{"name":"White Portuguese Pavement Slab","tr":"白色葡萄牙台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:ketchupItem":{"0":{"oreDict":["foodKetchup"],"name":"Ketchup","tr":"番茄酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreAgarditeCd":{"0":{"oreDict":["oreAgarditeCd"],"name":"Agardite (Cd) Ore","tr":"菱铁矿(Cd)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:tobacco":{"0":{"name":"Tobacco Crop","tr":"烟草","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2wct:boosterBG":{"0":{"name":"item.boosterBG.name","tr":"item.boosterBG.name","tab":"","type":"Item","maxStackSize":0,"maxDurability":1}},"battlegear2:bow.iron":{"0":{"name":"Iron Bow","tr":"铁弓","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":577}},"ExtraTrees:planks":{"0":{"oreDict":["plankWood"],"name":"Fir Wood Planks","tr":"冷杉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"],"name":"Cedar Wood Planks","tr":"雪松木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"],"name":"Hemlock Wood Planks","tr":"铁杉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"],"name":"Cypress Wood Planks","tr":"柏树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"],"name":"Fig Wood Planks","tr":"无花果木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plankWood"],"name":"Beech Wood Planks","tr":"山毛榉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"],"name":"Alder Wood Planks","tr":"桤木木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"],"name":"Hazel Wood Planks","tr":"榛树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plankWood"],"name":"Hornbeam Wood Planks","tr":"鹅耳枥木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["plankWood"],"name":"Box Wood Planks","tr":"黄杨木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["plankWood"],"name":"Butternut Wood Planks","tr":"灰核桃树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["plankWood"],"name":"Hickory Wood Planks","tr":"山核桃木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["plankWood"],"name":"Whitebeam Wood Planks","tr":"白面子树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["plankWood"],"name":"Elm Wood Planks","tr":"榆树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["plankWood"],"name":"Apple Wood Planks","tr":"苹果树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["plankWood"],"name":"Yew Wood Planks","tr":"红豆杉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["plankWood"],"name":"Pear Wood Planks","tr":"梨树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["plankWood"],"name":"Hawthorn Wood Planks","tr":"山楂树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["plankWood"],"name":"Rowan Wood Planks","tr":"花楸木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["plankWood"],"name":"Elder Wood Planks","tr":"接骨木木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["plankWood"],"name":"Maclura Wood Planks","tr":"桑橙木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["plankWood"],"name":"Syzgium Wood Planks","tr":"蒲桃木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["plankWood"],"name":"Brazilwood Wood Planks","tr":"巴西红木木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["plankWood"],"name":"Logwood Wood Planks","tr":"墨水树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["plankWood"],"name":"Iroko Wood Planks","tr":"大绿柄桑木木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["plankWood"],"name":"Locust Wood Planks","tr":"刺槐木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["plankWood"],"name":"Eucalyptus Wood Planks","tr":"桉树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["plankWood"],"name":"Purpleheart Wood Planks","tr":"紫心檀木木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["plankWood"],"name":"Ash Wood Planks","tr":"梣树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["plankWood"],"name":"Holly Wood Planks","tr":"冬青木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["plankWood"],"name":"Olive Wood Planks","tr":"橄榄树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["plankWood"],"name":"Sweetgum Wood Planks","tr":"枫香树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["plankWood"],"name":"Rosewood Wood Planks","tr":"蔷薇木木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["plankWood"],"name":"Gingko Wood Planks","tr":"银杏木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["plankWood"],"name":"Pink Ivory Wood Planks","tr":"象牙粉红木木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgradeTemplate":{"0":{"name":"Upgrade Template","tr":"升级模板","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:ManureSlurry":{"0":{"oreDict":["cellManureSlurry"],"name":"粪浆单元","tr":"粪浆单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:part_fluid_p2p_interface":{"0":{"name":"P2P Tunnel - ME Dual Interface","tr":"P2P通道 - ME二合一接口","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:ballomoss":{"0":{"name":"Ball O\u0027 Moss","tr":"苔藓球","tab":"凿工艺|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedgem":{"1":{"oreDict":["gemBismutite"],"name":"泡铋","tr":"泡铋","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["gemPrasiolite"],"name":"堇云石","tr":"堇云石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["gemCubicZirconia"],"name":"立方氧化锆","tr":"立方氧化锆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["gemMagnetoResonatic"],"name":"磁共振石","tr":"磁共振石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["gemFluor-Buergerite"],"name":"氟铁电气石","tr":"氟铁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["gemChromo-Alumino-Povondraite"],"name":"铬铝电气石","tr":"铬铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["gemOrundum"],"name":"合成玉","tr":"合成玉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["gemVanadio-Oxy-Dravite"],"name":"钒镁电气石","tr":"钒镁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["gemOlenite"],"name":"铝电气石","tr":"铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["gemBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK","tr":"BArTiMaEuSNeK","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["gemCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)","tr":"掺铈镥铝石榴石 (Ce:LuAG)","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["gemRedZircon"],"name":"红锆石","tr":"红锆石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["gemSalt"],"name":"盐","tr":"盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["gemSpodumene"],"name":"锂辉石","tr":"锂辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["gemRockSalt"],"name":"岩盐","tr":"岩盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["gemFayalite"],"name":"铁橄榄石","tr":"铁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["gemForsterite"],"name":"镁橄榄石","tr":"镁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["gemHedenbergite"],"name":"钙铁辉石","tr":"钙铁辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["gemTiberium"],"name":"泰伯利亚","tr":"泰伯利亚","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["gemFluorspar"],"name":"氟石","tr":"氟石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coleslawItem":{"0":{"oreDict":["foodColeslaw"],"name":"Coleslaw","tr":"凉拌卷心菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureFluorcaphite":{"0":{"oreDict":["dustPureFluorcaphite"],"name":"Purified Fluorcaphite Dust","tr":"洁净氟碳铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapesmoothieItem":{"0":{"oreDict":["foodGrapesmoothie"," listAllsmoothie"],"name":"Grape Smoothie","tr":"葡萄冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:openCrate":{"0":{"name":"Open Crate","tr":"花格箱","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Crafty Crate","tr":"机巧箱","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureDemicheleiteBr":{"0":{"oreDict":["dustPureDemicheleiteBr"],"name":"Purified Demicheleite (Br) Dust","tr":"纯净溴硫铋(Br)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorRubBoots":{"0":{"name":"Rubber Boots","tr":"橡胶靴","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":65}},"TConstruct:GlassPane":{"0":{"name":"Clear Glass Pane","tr":"通透玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:vegabgrunt":{"0":{"oreDict":["rockVegaB"," rockSpace"],"name":"Vega B Surface Block","tr":"织女一B地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTantalumCarbide":{"0":{"oreDict":["nuggetTantalumCarbide"],"name":"碳化钽粒","tr":"碳化钽粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:minicharcoal":{"0":{"name":"Mini Charcoal","tr":"迷你木炭","tab":"Ztones","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaRhenium":{"0":{"oreDict":["cellPlasmaRhenium"],"name":"铼等离子体单元","tr":"铼等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:entityDeconstructor":{"0":{"name":"Entity Deconstructor","tr":"实体解构器","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFlowerIV":{"0":{"name":"Coin \"The Gardener 10K\"","tr":"园艺家币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellEnrichedNaquadahFuel":{"0":{"oreDict":["cellEnrichedNaquadahFuel"],"name":"富集硅岩燃料单元","tr":"富集硅岩燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFlowerII":{"0":{"name":"Coin \"The Gardener 100\"","tr":"园艺家币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseTitansteel":{"0":{"oreDict":["plateDenseTitansteel"],"name":"致密泰坦精钢板","tr":"致密泰坦精钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:avocadoItem":{"0":{"oreDict":["cropAvocado"],"name":"Avocado","tr":"鳄梨","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltWatertightSteel":{"0":{"oreDict":["boltWatertightSteel"],"name":"防水钢螺栓","tr":"防水钢螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorclothBootsGem":{"0":{"name":"Boots of the Horizontal Shield","tr":"地平线盾牌之靴","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:ItemLeggingsFortress":{"0":{"name":"Thaumium Fortress Thigh Guards","tr":"神秘要塞护胫","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":601}},"miscutils:itemGearZeron100":{"0":{"oreDict":["gearGtZeron100"," gearZeron100"],"name":"塞龙-100齿轮","tr":"塞龙-100齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mixedsaladItem":{"0":{"oreDict":["foodMixedsalad"],"name":"Mixed Salad","tr":"什锦沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_unlit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:ioBus":{"0":{"name":"IO Bus","tr":"IO总线","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:applejuiceItem":{"0":{"oreDict":["listAlljuice"," foodApplejuice"],"name":"Apple Juice","tr":"苹果汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:stamps":{"0":{"name":"Stamp (1n)","tr":"邮票(1n)","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stamp (2n)","tr":"邮票(2n)","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Stamp (5n)","tr":"邮票(5n)","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Stamp (10n)","tr":"邮票(10n)","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Stamp (20n)","tr":"邮票(20n)","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Stamp (50n)","tr":"邮票(50n)","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Stamp (100n)","tr":"邮票(100n)","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IridiumAlloyItemCasing":{"0":{"name":"Iridium Alloy Item Casing","tr":"铱合金外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockStrontium":{"0":{"oreDict":["blockStrontium"],"name":"锶块","tr":"锶块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustPikyonium64B":{"0":{"oreDict":["dustPikyonium64B"],"name":"皮卡优合金64B粉","tr":"皮卡优合金64B粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:energy_cluster":{"0":{"name":"Energy Cluster","tr":"能量星团","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water0":{"0":{"name":"tile.water0.name","tr":"tile.water0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleNitinol60":{"0":{"oreDict":["plateDoubleNitinol60"],"name":"双重镍钛诺60板","tr":"双重镍钛诺60板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Thaumcraft:blockCosmeticDoubleSlabStone":{"0":{"name":"Stone Slab","tr":"石头台阶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bakedturnipsItem":{"0":{"oreDict":["foodBakedturnips"],"name":"Baked Turnips","tr":"烤大头菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCrystallinePollen":{"0":{"name":"Crated Crystalline Pollen Cluster","tr":"装箱的水晶花粉","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WandCapElementium":{"0":{"name":"Elementium Cap","tr":"元素钢杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water7":{"0":{"name":"tile.water7.name","tr":"tile.water7.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water8":{"0":{"name":"tile.water8.name","tr":"tile.water8.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:ToolForgeBlock":{"0":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockErbium":{"0":{"oreDict":["blockErbium"],"name":"铒块","tr":"铒块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water5":{"0":{"name":"tile.water5.name","tr":"tile.water5.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water6":{"0":{"name":"tile.water6.name","tr":"tile.water6.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water3":{"0":{"name":"tile.water3.name","tr":"tile.water3.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water4":{"0":{"name":"tile.water4.name","tr":"tile.water4.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water1":{"0":{"name":"tile.water1.name","tr":"tile.water1.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water2":{"0":{"name":"tile.water2.name","tr":"tile.water2.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:stair.willow":{"0":{"oreDict":["stairWood"],"name":"Willow Stairs","tr":"柳树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MeteoricIronString":{"0":{"name":"Meteoric Iron String","tr":"陨铁线","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:diamondGearItem":{"0":{"oreDict":["gearDiamond"],"name":"Diamond Gear","tr":"钻石齿轮","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:endMarker":{"0":{"name":"Ender-Marker","tr":"末影路标","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:bucketHoney":{"0":{"name":"Honey Bucket","tr":"蜂蜜桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftMars:tile.slimelingEgg":{"0":{"name":"Red Slimeling Egg","tr":"红色黏滑怪蛋","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Blue Slimeling Egg","tr":"蓝色黏滑怪蛋","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Yellow Slimeling Egg","tr":"黄色黏滑怪蛋","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshBoots":{"0":{"name":"Desh Boots","tr":"戴斯靴子","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":547}},"IC2:reactorUraniumSimpledepleted":{"0":{"name":"Fuel Rod (Depleted Uranium)","tr":"燃料棒(枯竭铀)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:redstone":{"0":{"oreDict":["oc:redstone"],"name":"Redstone I/O","tr":"红石I/O端口","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTriniumTitaniumAlloy":{"0":{"oreDict":["ringTriniumTitaniumAlloy"],"name":"三元钛合金环","tr":"三元钛合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:inputRoutingFocus":{"0":{"name":"Input Routing Focus","tr":"输入路由核心","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.MicaInsulatorSheet":{"0":{"name":"Mica Insulator Sheet","tr":"绝缘云母板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:wideGuard":{"0":{"name":"Wooden Wide Guard","tr":"木宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Wide Guard","tr":"石宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Wide Guard","tr":"铁宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Wide Guard","tr":"燧石宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Wide Guard","tr":"仙人掌宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Wide Guard","tr":"骨头宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Wide Guard","tr":"黑曜石宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Wide Guard","tr":"地狱岩宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Wide Guard","tr":"史莱姆宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Wide Guard","tr":"纸宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Wide Guard","tr":"钴宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Wide Guard","tr":"阿迪特宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Wide Guard","tr":"玛玉灵宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Wide Guard","tr":"铜宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Wide Guard","tr":"青铜宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Wide Guard","tr":"耐酸铝宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Wide Guard","tr":"钢宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Wide Guard","tr":"史莱姆宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Wide Guard","tr":"生铁宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Wide Guard","tr":"不稳定感应宽护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"ToxicEverglades:everglades.trigger":{"0":{"name":"§6Alkalus Disk [§cActivated§6]","tr":"§6Alkalus Disk [§cActivated§6]","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":65}},"miscutils:itemPlateHastelloyN":{"0":{"oreDict":["plateHastelloyN"],"name":"哈斯特洛依合金-N板","tr":"哈斯特洛依合金-N板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotLafiumCompound":{"0":{"oreDict":["ingotLafiumCompound"],"name":"路菲恩化合物锭","tr":"路菲恩化合物锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.asteroidsBlock":{"0":{"oreDict":["rockSpace"," rockAsteroids"],"name":"Asteroid Rock","tr":"行星岩","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockAsteroids"],"name":"Asteroid Rock","tr":"行星岩","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockSpace"," rockAsteroids"],"name":"Asteroid Rock","tr":"行星岩","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreAluminum"," oreAluminium"," oreNaturalAluminum"],"name":"Aluminum Ore","tr":"铝矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreIlmenite"],"name":"Ilmenite Ore","tr":"钛铁矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreAnyIron"," oreIron"],"name":"Iron Ore","tr":"铁矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorHastelloyX":{"0":{"oreDict":["rotorHastelloyX"],"name":"哈斯特洛依合金-X转子","tr":"哈斯特洛依合金-X转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:lapisLamp":{"0":{"name":"Lapis Lamp","tr":"青金石灯","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorHastelloyW":{"0":{"oreDict":["rotorHastelloyW"],"name":"哈斯特洛依合金-W转子","tr":"哈斯特洛依合金-W转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorHastelloyN":{"0":{"oreDict":["rotorHastelloyN"],"name":"哈斯特洛依合金-N转子","tr":"哈斯特洛依合金-N转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtCelestialTungsten":{"0":{"oreDict":["frameGtCelestialTungsten"],"name":"天体钨框架","tr":"天体钨框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedwireFine":{"96":{"oreDict":["wireFineAdemicSteel"],"name":"细硬钢导线","tr":"细硬钢导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["wireFineShirabon"],"name":"细调律源金导线","tr":"细调律源金导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["wireFineZircaloy-4"],"name":"细锆锡合金-4导线","tr":"细锆锡合金-4导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["wireFineZircaloy-2"],"name":"细锆锡合金-2导线","tr":"细锆锡合金-2导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["wireFineIncoloy-903"],"name":"细耐热铬铁合金-903导线","tr":"细耐热铬铁合金-903导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["wireFineAdamantiumAlloy"],"name":"细精金合金导线","tr":"细精金合金导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["wireFineAtomicSeparationCatalyst"],"name":"细原子分离催化剂导线","tr":"细原子分离催化剂导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["wireFineExtremelyUnstableNaquadah"],"name":"细极不稳定硅岩导线","tr":"细极不稳定硅岩导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["wireFineMAR-M200Steel"],"name":"细MAR-M200特种钢导线","tr":"细MAR-M200特种钢导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["wireFineMAR-Ce-M200Steel"],"name":"细MAR-Ce-M200特种钢导线","tr":"细MAR-Ce-M200特种钢导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["wireFineSignalium"],"name":"细信素导线","tr":"细信素导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["wireFineLumiium"],"name":"细流明导线","tr":"细流明导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["wireFineArtherium-Sn"],"name":"细阿瑟锡导线","tr":"细阿瑟锡导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["wireFineTanmolyiumBeta-C"],"name":"细钛钼合金β-C导线","tr":"细钛钼合金β-C导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["wireFineRhodium-PlatedPalladium"],"name":"细镀铑钯导线","tr":"细镀铑钯导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["wireFineDalisenite"],"name":"细大力合金导线","tr":"细大力合金导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["wireFineTiberium"],"name":"细泰伯利亚导线","tr":"细泰伯利亚导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["wireFineHikarium"],"name":"细光素导线","tr":"细光素导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["wireFineRuridit"],"name":"细钌铱合金导线","tr":"细钌铱合金导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["wireFineTairitsu"],"name":"细对立合金导线","tr":"细对立合金导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["wireFineHighDurabilityCompoundSteel"],"name":"细高耐久性复合钢导线","tr":"细高耐久性复合钢导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["wireFinePreciousMetalsAlloy"],"name":"细稀有金属合金导线","tr":"细稀有金属合金导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["wireFineEnrichedNaquadahAlloy"],"name":"细富集硅岩合金导线","tr":"细富集硅岩合金导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["wireFineMetastableOganesson"],"name":"细亚稳态鿫导线","tr":"细亚稳态鿫导线","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemMugEmpty":{"0":{"name":"Stone Mug","tr":"石杯","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDenseEnergyCrystal":{"0":{"oreDict":["plateDenseEnergyCrystal"],"name":"致密能量水晶板","tr":"致密能量水晶板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedIrarsite":{"0":{"oreDict":["crushedPurifiedIrarsite"],"name":"Purified Crushed Irarsite Ore","tr":"洗净的硫砷铱矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chaoscookieItem":{"0":{"oreDict":["foodChaoscookie"],"name":"Chaos Cookie","tr":"混沌饼干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBottleTaint":{"0":{"name":"Bottled Taint","tr":"腐化瓶","tab":"神秘时代4","type":"Item","maxStackSize":8,"maxDurability":1}},"harvestcraft:toastItem":{"0":{"oreDict":["foodToast"],"name":"Toast","tr":"烤面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateHastelloyX":{"0":{"oreDict":["plateHastelloyX"],"name":"哈斯特洛依合金-X板","tr":"哈斯特洛依合金-X板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateHastelloyW":{"0":{"oreDict":["plateHastelloyW"],"name":"哈斯特洛依合金-W板","tr":"哈斯特洛依合金-W板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyDecayedRadium226":{"0":{"oreDict":["dustTinyDecayedRadium226"],"name":"小撮衰变镭-226粉","tr":"小撮衰变镭-226粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustGreenockite":{"0":{"oreDict":["dustGreenockite"],"name":"硫镉粉","tr":"硫镉粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:dragonHeart":{"0":{"name":"Dragon Heart","tr":"龙之心","tab":"龙之研究方块和物品","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.CastleMagic":{"0":{"name":"Blue Castle Rune Brick","tr":"蓝色符文砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Yellow Castle Rune Brick","tr":"黄色符文砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pink Castle Rune Brick","tr":"粉色符文砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Violet Castle Rune Brick","tr":"紫色符文砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsvoid":{"0":{"name":"Void Fluid Pipe","tr":"虚空流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:smashingrock":{"0":{"name":"Smashing Rock","tr":"碎石块","tab":"凿工艺|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabSunnyHalf":{"0":{"name":"Sunny Quartz Slab","tr":"金黄石英台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustThoriumTetrafluoride":{"0":{"oreDict":["dustThoriumTetrafluoride"],"name":"四氟化钍粉","tr":"四氟化钍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateHafnium":{"0":{"oreDict":["plateHafnium"],"name":"铪板","tr":"铪板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:elfGlass":{"0":{"oreDict":["blockGlassIV"],"name":"Alfglass","tr":"精灵玻璃","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pancakesItem":{"0":{"oreDict":["foodPancakes"],"name":"Pancakes","tr":"煎饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA5Slab":{"0":{"name":"Metamorphic Desert Stone Slab","tr":"变质沙漠石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:enhanced_brewing_stand":{"0":{"name":"Enhanced Brewing Stand","tr":"强化酿造台","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolCertusQuartzAxe":{"0":{"name":"Certus Quartz Axe","tr":"赛特斯石英斧","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"harvestcraft:pistachiobakedsalmonItem":{"0":{"oreDict":["foodPistachiobakedsalmon"],"name":"Pistachio Baked Salmon","tr":"开心果烤三文鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledPlatinum":{"0":{"oreDict":["milledPlatinum"],"name":"Milled Platinum","tr":"研磨铂矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:imprinter":{"0":{"name":"Imprinter","tr":"染色体变换仪","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftAmunRa:tile.baseBlockRock":{"0":{"name":"Basalt Cobblestone","tr":"玄武岩圆石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockBasalt"],"name":"Basalt","tr":"玄武岩","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Red Cobblestone","tr":"红圆石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Red Sandstone","tr":"红砂石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Olivine Basalt Cobblestone","tr":"橄榄玄武岩圆石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Olivine Basalt","tr":"橄榄玄武岩","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Aluminum Box","tr":"铝盒","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Basalt Brick","tr":"玄武岩砖","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Smooth Basalt","tr":"平滑玄武岩","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Obsidian Brick","tr":"黑曜石砖块","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Urbolite","tr":"褐铁矿","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockUranium"],"name":"Block of Uranium","tr":"铀块","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mothership Base Block","tr":"母舰方块","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Crafting Table","tr":"工作台","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Dark Matter","tr":"暗物质","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongTumbaga":{"0":{"oreDict":["stickLongTumbaga"],"name":"长铜金合金杆","tr":"长铜金合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorHeLiCoPtEr":{"0":{"oreDict":["rotorHeLiCoPtEr"],"name":"HeLiCoPtEr转子","tr":"HeLiCoPtEr转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.beamReflector":{"0":{"name":"Energy Beam Reflector","tr":"能量射束反射器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:beeswax":{"0":{"oreDict":["itemBeeswax"],"name":"Beeswax","tr":"蜂蜡","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyInconel690":{"0":{"oreDict":["dustTinyInconel690"],"name":"小撮镍铬基合金-690粉","tr":"小撮镍铬基合金-690粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilTitansteel":{"0":{"oreDict":["foilTitansteel"],"name":"泰坦精钢箔","tr":"泰坦精钢箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateZirconiumCarbide":{"0":{"oreDict":["plateZirconiumCarbide"],"name":"碳化锆板","tr":"碳化锆板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:large_ingredient_buffer":{"0":{"name":"Large Ingredient Buffer","tr":"大型原材料缓存仓","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pistachioicecreamItem":{"0":{"oreDict":["foodPistachioicecream"],"name":"Pistachio Ice Cream","tr":"开心果冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.kama.ghostwood":{"0":{"name":"Ghostwood Kama","tr":"幽魂树镰刀","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":60}},"TConstruct:shovel":{"0":{"name":"§f山铜 铲","tr":"§f山铜 铲","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:manaInkwell":{"150":{"name":"Botanurgist\u0027s Inkwell","tr":"植物学家的笔墨","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":151}},"gendustry:EnvProcessor":{"0":{"name":"Enviromental Processor","tr":"环境加工仪","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_light_blue":{"0":{"name":"Light Blue Curtain","tr":"淡蓝色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockProjectBench":{"0":{"name":"Project Table","tr":"工程台","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseLaurenium":{"0":{"oreDict":["plateDenseLaurenium"],"name":"致密劳伦姆合金板","tr":"致密劳伦姆合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water9":{"0":{"name":"tile.water9.name","tr":"tile.water9.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.steel.hoe":{"0":{"name":"Steel Hoe","tr":"钢锄","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":501}},"opensecurity:opensecurity.secureNetworkCard":{"0":{"name":"Secure Network Card","tr":"网络安全卡","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:futureglass":{"0":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Future Glass","tr":"未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:Natura.fence":{"0":{"oreDict":["fenceWood"],"name":"Eucalyptus Fence","tr":"桉树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["fenceWood"],"name":"Sakura Fence","tr":"樱花树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["fenceWood"],"name":"Ghostwood Fence","tr":"幽魂树栅栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["fenceWood"],"name":"Redwood Fence","tr":"红木树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["fenceWood"],"name":"Blood Fence","tr":"血树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["fenceWood"],"name":"Hopseed Fence","tr":"车桑子树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["fenceWood"],"name":"Maple Fence","tr":"枫树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["fenceWood"],"name":"Silverbell Fence","tr":"银铃树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["fenceWood"],"name":"Amaranth Fence","tr":"紫檀树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["fenceWood"],"name":"Tigerwood Fence","tr":"核桃树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["fenceWood"],"name":"Willow Fence","tr":"柳树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["fenceWood"],"name":"Darkwood Fence","tr":"黑暗树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["fenceWood"],"name":"Fusewood Fence","tr":"熔融树栅栏","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zythBlock":{"0":{"name":"Zyth ⓪","tr":"Zyth ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zyth ①","tr":"Zyth ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zyth ②","tr":"Zyth ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zyth ③","tr":"Zyth ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zyth ④","tr":"Zyth ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zyth ⑤","tr":"Zyth ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zyth ⑥","tr":"Zyth ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zyth ⑦","tr":"Zyth ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zyth ⑧","tr":"Zyth ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zyth ⑨","tr":"Zyth ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zyth ⑩","tr":"Zyth ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zyth ⑪","tr":"Zyth ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zyth ⑫","tr":"Zyth ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zyth ⑬","tr":"Zyth ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zyth ⑭","tr":"Zyth ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zyth ⑮","tr":"Zyth ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"supersolarpanel:greencomponent":{"0":{"name":"Green Spectral Component","tr":"绿色光谱组件","tab":"超级太阳能发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeTurbineBlade":{"0":{"name":"Casting Form (Turbine Blade Shape)","tr":"铸形(涡轮扇叶)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateNiobiumCarbide":{"0":{"oreDict":["plateNiobiumCarbide"],"name":"碳化铌板","tr":"碳化铌板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustUranium232":{"0":{"oreDict":["dustUranium232"],"name":"铀-232粉","tr":"铀-232粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustUranium233":{"0":{"oreDict":["dustUranium233"],"name":"铀-233粉","tr":"铀-233粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:paintBrush":{"0":{"name":"Paint Brush","tr":"颜料刷","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":25}},"witchery:barrier":{"0":{"name":"Barrier","tr":"篱笆","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RuneOfMagicFragment":{"0":{"name":"Rune of Magic Fragment","tr":"魔法符文碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemIronBlockCuttingBlade":{"0":{"name":"Block Cutting Blade (Iron)","tr":"铁切割锯片","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:HoneyDrop":{"10":{"oreDict":["dyeBlack"," dye"],"name":"Black Colored Honey Drop","tr":"黑色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"11":{"oreDict":["dyeRed"," dye"],"name":"Red Colored Honey Drop","tr":"红色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"12":{"oreDict":["dyeGreen"," dye"],"name":"Green Colored Honey Drop","tr":"绿色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"13":{"oreDict":["dyeBrown"," dye"],"name":"Brown Colored Honey Drop","tr":"棕色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"14":{"oreDict":["dyeBlue"," dye"],"name":"Blue Colored Honey Drop","tr":"蓝色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"15":{"oreDict":["dyePurple"," dye"],"name":"Purple Colored Honey Drop","tr":"紫色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"16":{"oreDict":["dyeCyan"," dye"],"name":"Cyan Colored Honey Drop","tr":"青色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"17":{"oreDict":["dyeLightGray"," dye"],"name":"Light Gray Colored Honey Drop","tr":"淡灰色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"18":{"oreDict":["dyeGray"," dye"],"name":"Gray Colored Honey Drop","tr":"灰色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"19":{"oreDict":["dyePink"," dye"],"name":"Pink Colored Honey Drop","tr":"粉色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"20":{"oreDict":["dye"," dyeLime"],"name":"Lime Colored Honey Drop","tr":"黄绿色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"21":{"oreDict":["dyeYellow"," dye"],"name":"Yellow Colored Honey Drop","tr":"黄色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"22":{"oreDict":["dyeLightBlue"," dye"],"name":"Light Blue Colored Honey Drop","tr":"淡蓝色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"23":{"oreDict":["dyeMagenta"," dye"],"name":"Magenta Colored Honey Drop","tr":"品红色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"24":{"oreDict":["dyeOrange"," dye"],"name":"Orange Colored Honey Drop","tr":"橙色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"25":{"oreDict":["dyeWhite"," dye"],"name":"White Colored Honey Drop","tr":"白色蜂蜜滴","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0}},"GalacticraftCore:tile.brightBreathableAir":{"0":{"name":"tile.brightBreathableAir.name","tr":"tile.brightBreathableAir.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingCelestialTungsten":{"0":{"oreDict":["ringCelestialTungsten"],"name":"天体钨环","tr":"天体钨环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockArcaneDoor":{"0":{"name":"Arcane Door","tr":"奥能之扉","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"betterbuilderswands:wandStone":{"0":{"name":"Stone Wand","tr":"石质建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":132}},"dreamcraft:item.ShapePickaxeHead":{"0":{"name":"Casting Form (Pickaxe Head Shape)","tr":"铸形(镐头)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.PrintPlate":{"0":{"name":"Print Press Plate","tr":"拓印片","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:stew":{"0":{"name":"Meaty Stew","tr":"炖肉","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyInconel625":{"0":{"oreDict":["dustTinyInconel625"],"name":"小撮镍铬基合金-625粉","tr":"小撮镍铬基合金-625粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:runeOfSacrifice":{"0":{"name":"Rune of Sacrifice","tr":"献祭符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_lit_nobottom_tape":{"0":{"name":"Catwalk","tr":"栈桥","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.null":{"0":{"name":"Unrefined Desh","tr":"未精炼戴斯矿","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stickDesh"],"name":"Desh Stick","tr":"戴斯棍","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotDesh"],"name":"Desh Ingot","tr":"戴斯锭","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Heavy Duty Plate","tr":"重型装甲板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Slimeling Inventory Bag","tr":"黏滑物品背包","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["compressedDesh"],"name":"Compressed Desh Plate","tr":"致密戴斯板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Fluid Manipulator","tr":"流体操纵器","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewZirconium":{"0":{"oreDict":["screwZirconium"],"name":"锆螺丝","tr":"锆螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemSpringWhiteMetal":{"0":{"oreDict":["springWhiteMetal"],"name":"白物质弹簧","tr":"白物质弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"supersolarpanel:SingularSolarPanel":{"0":{"name":"Singular Solar Panel","tr":"非凡太阳能发电机(LuV)","tab":"超级太阳能发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.SteelPlatedReinforcedStone":{"0":{"name":"Steel Plated Reinforced Stone","tr":"钢镀层防爆石","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:tornadoRod":{"0":{"name":"Rod of the Skies","tr":"天空法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":61}},"harvestcraft:peaandhamsoupItem":{"0":{"oreDict":["foodPeaandhamsoup"],"name":"Pea and Ham Soup","tr":"豌豆火腿汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.extraTiC.singularity":{"0":{"name":"Fairy Singularity","tr":"精灵奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Pokefennium Singularity","tr":"铁血奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:averageLengtheningCatalyst":{"0":{"name":"Average Lengthening Catalyst","tr":"[普通的]延时催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundHelmetWind":{"0":{"name":"Wind Omega Helmet","tr":"风`欧米伽头盔","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"harvestcraft:figyogurtItem":{"0":{"oreDict":["foodFigyogurt"],"name":"Fig Yogurt","tr":"无花果酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:RocketFuelMixC":{"0":{"oreDict":["cellCN3H7O3RocketFuel"],"name":"CN3H7O3火箭燃料单元","tr":"CN3H7O3火箭燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:RocketFuelMixD":{"0":{"oreDict":["cellDenseHydrazineFuelMixture"],"name":"密集肼混合燃料单元","tr":"密集肼混合燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:RocketFuelMixA":{"0":{"oreDict":["cellH8N4C2O4RocketFuel"],"name":"H8N4C2O4火箭燃料单元","tr":"H8N4C2O4火箭燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:RocketFuelMixB":{"0":{"oreDict":["cellRp1RocketFuel"],"name":"Rp-1火箭燃料单元","tr":"Rp-1火箭燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorSelenium":{"0":{"oreDict":["rotorSelenium"],"name":"硒转子","tr":"硒转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:garlicchickenItem":{"0":{"oreDict":["foodGarlicchicken"],"name":"Garlic Chicken","tr":"蒜香鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockFoam":{"0":{"name":"Construction Foam","tr":"建筑泡沫","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorZeron100":{"0":{"oreDict":["rotorZeron100"],"name":"塞龙-100转子","tr":"塞龙-100转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:lightlyCrackedHeavyNaquadahFuel":{"0":{"name":"Lightly Cracked Heavy Naquadah Fuel","tr":"轻度裂化重质硅岩燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:trap.barricade.jungle":{"0":{"name":"Jungle Barricade","tr":"丛林木篱笆","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockNodeManipulator":{"5":{"name":"Node Manipulator","tr":"节点操纵仪","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampeanutCrop":{"0":{"name":"Peanut Crop","tr":"花生","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamsweetpotatoCrop":{"0":{"name":"Sweet Potato Crop","tr":"红薯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellStableMoltenSaltBase":{"0":{"oreDict":["cellStableMoltenSaltBase"],"name":"稳定熔盐基单元","tr":"稳定熔盐基单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewWatertightSteel":{"0":{"oreDict":["screwWatertightSteel"],"name":"防水钢螺丝","tr":"防水钢螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockCharger":{"0":{"name":"Charger","tr":"充能器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:HoneyComb":{"10":{"name":"Black Colored Comb","tr":"黑色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"11":{"name":"Red Colored Comb","tr":"红色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"12":{"name":"Green Colored Comb","tr":"绿色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"13":{"name":"Brown Colored Comb","tr":"棕色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"14":{"name":"Blue Colored Comb","tr":"蓝色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"15":{"name":"Purple Colored Comb","tr":"紫色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"16":{"name":"Cyan Colored Comb","tr":"青色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"17":{"name":"Light Gray Colored Comb","tr":"淡灰色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"18":{"name":"Gray Colored Comb","tr":"灰色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"19":{"name":"Pink Colored Comb","tr":"粉色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"20":{"name":"Lime Colored Comb","tr":"黄绿色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"21":{"name":"Yellow Colored Comb","tr":"黄色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"22":{"name":"Light Blue Colored Comb","tr":"淡蓝色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"23":{"name":"Magenta Colored Comb","tr":"品红色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"24":{"name":"Orange Colored Comb","tr":"橙色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"25":{"name":"White Colored Comb","tr":"白色蜂窝","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0}},"miscutils:itemFoilAstralTitanium":{"0":{"oreDict":["foilAstralTitanium"],"name":"星体钛箔","tr":"星体钛箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedWalnut":{"0":{"name":"Crated Walnut","tr":"装箱的核桃","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodMaragingSteel250":{"0":{"oreDict":["stickMaragingSteel250"],"name":"马氏体时效钢250杆","tr":"马氏体时效钢250杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:starfruitsmoothieItem":{"0":{"oreDict":["foodStarfruitsmoothie"," listAllsmoothie"],"name":"Starfruit Smoothie","tr":"杨桃冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatestrawberryItem":{"0":{"oreDict":["foodChocolatestrawberry"],"name":"Chocolate Strawberry","tr":"巧克力草莓","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockBotmium":{"0":{"oreDict":["blockBotmium"],"name":"博特姆合金块","tr":"博特姆合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFSpiralBricks":{"0":{"name":"Spiral Stone Bricks","tr":"Spiral Stone Bricks","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.stellar_axe":{"0":{"name":"Stellar Axe","tr":"恒星合金斧","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":5001}},"harvestcraft:asparagussoupItem":{"0":{"oreDict":["foodAsparagussoup"],"name":"Asparagus Soup","tr":"芦笋汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:trent":{"0":{"name":"Trent Effigy","tr":"特伦特雕像","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHeLiCoPtEr":{"0":{"oreDict":["nuggetHeLiCoPtEr"],"name":"HeLiCoPtEr粒","tr":"HeLiCoPtEr粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grassgarden":{"0":{"name":"Grass Garden","tr":"草地菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampineappleCrop":{"0":{"name":"Pineapple Crop","tr":"菠萝","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedNichromite":{"0":{"oreDict":["crushedNichromite"],"name":"Crushed Nichromite Ore","tr":"粉碎的镍铬矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:terrasteelLegs":{"0":{"name":"Terrasteel Leggings","tr":"泰拉钢护腿","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":511}},"TConstruct:largeSwordBlade":{"0":{"name":"Wooden Large Sword Blade","tr":"木大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Large Sword Blade","tr":"石大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Large Sword Blade","tr":"铁大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Large Sword Blade","tr":"燧石大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Large Sword Blade","tr":"仙人掌大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Large Sword Blade","tr":"骨头大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Large Sword Blade","tr":"黑曜石大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Large Sword Blade","tr":"地狱岩大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Large Sword Blade","tr":"史莱姆大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Large Sword Blade","tr":"纸大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Large Sword Blade","tr":"钴大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Large Sword Blade","tr":"阿迪特大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Large Sword Blade","tr":"玛玉灵大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Large Sword Blade","tr":"铜大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Large Sword Blade","tr":"青铜大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Large Sword Blade","tr":"耐酸铝大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Large Sword Blade","tr":"钢大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Large Sword Blade","tr":"史莱姆大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Large Sword Blade","tr":"生铁大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Large Sword Blade","tr":"不稳定感应大剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemGolemUpgrade":{"0":{"name":"Golem Upgrade: Air","tr":"傀儡升级:风","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Golem Upgrade: Earth","tr":"傀儡升级:地","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Golem Upgrade: Fire","tr":"傀儡升级:火","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Golem Upgrade: Water","tr":"傀儡升级:水","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Golem Upgrade: Order","tr":"傀儡升级:秩序","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Golem Upgrade: Entropy","tr":"傀儡升级:混沌","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:muttonrawItem":{"0":{"oreDict":["listAllmeatraw"," foodMuttonraw"," listAllmuttonraw"," rawMutton"],"name":"Raw Mutton","tr":"生羊肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Empty180SpCell":{"0":{"name":"180K Space Cell","tr":"180K空间冷却单元外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightlyBoots":{"0":{"name":"Knightly Boots","tr":"骑士靴","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":261}},"Avaritia:Resource":{"0":{"name":"Diamond Lattice","tr":"钻石晶格","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["ingotCrystalMatrix"],"name":"Crystal Matrix Ingot","tr":"水晶矩阵锭","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Pile of Cosmic Neutrons","tr":"宇宙中子态素尘埃","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cosmic Neutronium Nugget","tr":"宇宙中子态素粒","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["ingotCosmicNeutronium"],"name":"Cosmic Neutronium Ingot","tr":"宇宙中子态素锭","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Infinity Catalyst","tr":"无尽催化剂","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["ingotInfinity"],"name":"Infinity Ingot","tr":"无尽之锭","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Record Fragment","tr":"唱片碎片","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Star Fuel","tr":"恒星燃料","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Neutronium Gear","tr":"中子齿轮","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:beeswaxItem":{"0":{"oreDict":["itemBeeswax"," materialPressedwax"],"name":"Beeswax","tr":"蜂蜡","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormGear":{"0":{"name":"Casting Form (Gear Mold)","tr":"铸件(齿轮)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.1080k_Space_Coolantcell":{"0":{"name":"1080k空间冷却单元","tr":"1080k空间冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"GalacticraftCore:item.fuelCanisterPartial":{"1":{"name":"Filled Fuel Canister","tr":"燃料罐(满)","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1002}},"miscutils:blockFrameGtHS188A":{"0":{"oreDict":["frameGtHS188A"],"name":"HS188-A框架","tr":"HS188-A框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleberryCrop":{"0":{"name":"Candleberry Crop","tr":"蜡杨梅","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:antiBlock":{"0":{"oreDict":["antiBlock"],"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Anti Block","tr":"纯色方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateSodium":{"0":{"oreDict":["plateSodium"],"name":"钠板","tr":"钠板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseGrisium":{"0":{"oreDict":["plateDenseGrisium"],"name":"致密灰钛合金板","tr":"致密灰钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotGrisium":{"0":{"oreDict":["ingotHotGrisium"],"name":"热灰钛合金锭","tr":"热灰钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zetaBlock":{"0":{"name":"Zeta ⓪","tr":"Zeta ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zeta ①","tr":"Zeta ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zeta ②","tr":"Zeta ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zeta ③","tr":"Zeta ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zeta ④","tr":"Zeta ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zeta ⑤","tr":"Zeta ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zeta ⑥","tr":"Zeta ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zeta ⑦","tr":"Zeta ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zeta ⑧","tr":"Zeta ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zeta ⑨","tr":"Zeta ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zeta ⑩","tr":"Zeta ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zeta ⑪","tr":"Zeta ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zeta ⑫","tr":"Zeta ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zeta ⑬","tr":"Zeta ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zeta ⑭","tr":"Zeta ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zeta ⑮","tr":"Zeta ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtIncoloyMA956":{"0":{"oreDict":["frameGtIncoloyMA956"],"name":"耐热铬铁合金-MA956框架","tr":"耐热铬铁合金-MA956框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustDirt":{"0":{"oreDict":["dustDirt"],"name":"干土粉","tr":"干土粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EtchedLudicrousVoltageWiring":{"0":{"name":"Etched Ludicrous Voltage Wiring","tr":"刻蚀LuV电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorTellurium":{"0":{"oreDict":["rotorTellurium"],"name":"碲转子","tr":"碲转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:chestMini":{"0":{"name":"Mini-Chest","tr":"迷你箱","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:canSeedOil":{"0":{"name":"Seed Oil Can","tr":"种子油罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:trimB":{"0":{"name":"Mahoe Trim","tr":"高槿树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Poplar Trim","tr":"白杨树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Palm Trim","tr":"棕榈树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Papaya Trim","tr":"木瓜树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Pine Trim","tr":"松树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Plum Trim","tr":"李子树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Trim","tr":"枫树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Citrus Trim","tr":"柑橘树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Giant Sequoia Trim","tr":"巨杉树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ipe Trim","tr":"重蚁树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Padauk Trim","tr":"紫檀树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Cocobolo Trim","tr":"黄檀树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zebrawood Trim","tr":"斑木树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:trimA":{"0":{"name":"Larch Trim","tr":"落叶树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Teak Trim","tr":"柚树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Acacia Trim","tr":"金合欢桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lime Trim","tr":"酸橙树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Trim","tr":"栗树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Wenge Trim","tr":"崖豆树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Baobab Trim","tr":"猴面包树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sequoia Trim","tr":"红杉树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Trim","tr":"木棉树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ebony Trim","tr":"乌檀树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Mahogany Trim","tr":"桃心树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Balsa Trim","tr":"巴尔杉桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Trim","tr":"柳树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Walnut Trim","tr":"胡桃树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Greenheart Trim","tr":"绿樟树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Cherry Trim","tr":"樱树桥接方块","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:solderingIron":{"0":{"name":"Soldering Iron","tr":"电烙铁","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":6}},"chisel:voidstoneRunic":{"1":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Runic Voidstone","tr":"符文虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:chandelier":{"0":{"name":"Chandelier","tr":"奢华吊顶灯","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemCoordSelector":{"0":{"name":"Coordinate Selector","tr":"坐标记录仪","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockDecayablesChest":{"0":{"name":"Lead Lined Box","tr":"铅封盒","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:stair.silverbell":{"0":{"oreDict":["stairWood"],"name":"Silverbell Stairs","tr":"银铃树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemFuelRod":{"0":{"name":"Fuel Rod (Empty)","tr":"燃料棒(空)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFlowerI":{"0":{"name":"Coin \"The Gardener 10\"","tr":"园艺家币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.FluixStairBlock":{"0":{"name":"Fluix Stairs","tr":"福鲁伊克斯楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:virus":{"0":{"name":"Necrodermal Virus","tr":"僵尸病毒","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Nullodermal Virus","tr":"骷髅病毒","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyStaballoy":{"0":{"oreDict":["dustTinyStaballoy"],"name":"小撮贫铀合金粉","tr":"小撮贫铀合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsTwilight":{"0":{"name":"Twilight Oak Stairs","tr":"暮色橡树楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.pickaxe.netherquartz":{"0":{"name":"Quartz Pickaxe","tr":"石英镐","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"Forestry:canFuel":{"0":{"name":"Fuel Can","tr":"燃料罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:windmeter":{"1":{"name":"Windmeter","tr":"风力计","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Windmeter","tr":"风力计","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:crushedPurifiedCrocoite":{"0":{"oreDict":["crushedPurifiedCrocoite"],"name":"Purified Crushed Crocoite Ore","tr":"洗净的赤铅矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:FrothNickelflotation":{"0":{"oreDict":["cellNickelFroth"],"name":"镍泡沫单元","tr":"镍泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:wartBag":{"0":{"name":"Nether Wart Bag","tr":"地狱疣袋","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:signal":{"0":{"name":"Signal Interlock Box","tr":"信号互锁盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dual-Head Block Signal","tr":"双头信号盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Switch Motor","tr":"转辙马达","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block Signal","tr":"信号盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Switch Lever","tr":"转辙拉杆","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Routing Switch Motor","tr":"路由转辙马达","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Signal Sequencer Box","tr":"信号同步盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Signal Capacitor Box","tr":"信号计数盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Signal Receiver Box","tr":"信号接收盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Signal Controller Box","tr":"信号控制盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Analog Signal Controller Box","tr":"模拟信号控制盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Distant Signal","tr":"远程信号","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Dual-Head Distant Signal","tr":"双头远程信号","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Signal Block Relay Box","tr":"信号中继盒","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemAmuletRunic":{"0":{"name":"Amulet of Runic Shielding","tr":"符文护盾护身符","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Amulet of Emergency Shielding","tr":"应急护盾护身符","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:buriedPetals":{"0":{"name":"Buried White Petal","tr":"埋藏白色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Buried Orange Petal","tr":"埋藏橙色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Buried Magenta Petal","tr":"埋藏品红色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Buried Light Blue Petal","tr":"埋藏淡蓝色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Buried Yellow Petal","tr":"埋藏黄色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Buried Lime Petal","tr":"埋藏黄绿色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Buried Pink Petal","tr":"埋藏粉色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Buried Gray Petal","tr":"埋藏灰色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Buried Light Gray Petal","tr":"埋藏淡灰色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Buried Cyan Petal","tr":"埋藏青色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Buried Purple Petal","tr":"埋藏紫色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Buried Blue Petal","tr":"埋藏蓝色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Buried Brown Petal","tr":"埋藏棕色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Buried Green Petal","tr":"埋藏绿色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Buried Red Petal","tr":"埋藏红色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Buried Black Petal","tr":"埋藏黑色花瓣","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_pillar_slab_top":{"0":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IceDualCompressedPlates":{"0":{"name":"Compressed Dual Ice Plates","tr":"航天双层冰板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:seedsbelladonna":{"0":{"oreDict":["seedBelladonna"," listAllseed"],"name":"Belladonna Seeds","tr":"颠茄种子","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemPaintBall":{"0":{"name":"Paint Ball - White","tr":"染色球 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Paint Ball - Orange","tr":"染色球 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Paint Ball - Magenta","tr":"染色球 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Paint Ball - Light Blue","tr":"染色球 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Paint Ball - Yellow","tr":"染色球 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Paint Ball - Lime","tr":"染色球 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Paint Ball - Pink","tr":"染色球 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Paint Ball - Gray","tr":"染色球 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Paint Ball - Light Gray","tr":"染色球 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paint Ball - Cyan","tr":"染色球 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Paint Ball - Purple","tr":"染色球 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Paint Ball - Blue","tr":"染色球 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Paint Ball - Brown","tr":"染色球 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Paint Ball - Green","tr":"染色球 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Paint Ball - Red","tr":"染色球 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Paint Ball - Black","tr":"染色球 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Paint Ball - Lumen White","tr":"染色球 - 光通 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Paint Ball - Lumen Orange","tr":"染色球 - 光通 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Paint Ball - Lumen Magenta","tr":"染色球 - 光通 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Paint Ball - Lumen Light Blue","tr":"染色球 - 光通 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Paint Ball - Lumen Yellow","tr":"染色球 - 光通 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Paint Ball - Lumen Lime","tr":"染色球 - 光通 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Paint Ball - Lumen Pink","tr":"染色球 - 光通 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Paint Ball - Lumen Gray","tr":"染色球 - 光通 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Paint Ball - Lumen Light Gray","tr":"染色球 - 光通 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Paint Ball - Lumen Cyan","tr":"染色球 - 光通 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Paint Ball - Lumen Purple","tr":"染色球 - 光通 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Paint Ball - Lumen Blue","tr":"染色球 - 光通 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Paint Ball - Lumen Brown","tr":"染色球 - 光通 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Paint Ball - Lumen Green","tr":"染色球 - 光通 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Paint Ball - Lumen Red","tr":"染色球 - 光通 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Paint Ball - Lumen Black","tr":"染色球 - 光通 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallMiessiite":{"0":{"oreDict":["dustSmallMiessiite"],"name":"小堆硅灰石粉","tr":"小堆硅灰石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:ioweb":{"0":{"name":"Io Web","tr":"木卫一网","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemAxeVoid":{"0":{"name":"Void Axe","tr":"虚空斧","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":151}},"harvestcraft:cranberryItem":{"0":{"oreDict":["cropCranberry"," listAllfruit"," listAllberry"],"name":"Cranberry","tr":"蔓越莓","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHelmetVoidFortress":{"0":{"name":"Void Thaumaturge Hood","tr":"虚空神秘使兜帽","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":111}},"GalacticraftMars:item.atmosphericValve":{"0":{"name":"Atmospheric Valve","tr":"气闸","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:moderatelyCrackedNaquadahAsphalt":{"0":{"name":"Moderately Cracked Naquadah Asphalt","tr":"中度裂化硅岩沥青","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaPurpleGlowshroom":{"0":{"name":"Crated Purple Glowshroom","tr":"装箱的紫色荧光菇","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:tabIconGT2":{"0":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:apricotItem":{"0":{"oreDict":["cropApricot"," listAllfruit"],"name":"Apricot","tr":"杏子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.titanium_sword":{"0":{"name":"Titanium Sword","tr":"钛剑","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":521}},"RandomThings:dropFilter":{"0":{"name":"Drop Filter","tr":"掉落物过滤器","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Voiding Drop Filter","tr":"虚空掉落物过滤器","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:elementiumAxe":{"0":{"name":"Elementium Axe","tr":"源质钢斧","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":721}},"Botania:biomeStoneA4Stairs":{"0":{"name":"Metamorphic Swamp Stone Stairs","tr":"变质沼泽石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemslapis":{"0":{"name":"Lazuli Transport Pipe","tr":"青金石管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"adventurebackpack:copterPack":{"0":{"name":"Copter Pack","tr":"直升机背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockThaumostaticSpire":{"0":{"name":"Thaumostatic Spire","tr":"奥法尖塔","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewNiobiumCarbide":{"0":{"oreDict":["screwNiobiumCarbide"],"name":"碳化铌螺丝","tr":"碳化铌螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastonePillarMossy":{"0":{"name":"Mossy Nagastone Pillar","tr":"Mossy Nagastone Pillar","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sigilOfTheBridge":{"0":{"name":"Sigil of the Phantom Bridge","tr":"影桥印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:blueberryjellysandwichItem":{"0":{"oreDict":["foodBlueberryjellysandwich"],"name":"Blueberry Jelly Sandwich","tr":"蓝莓果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_cyan":{"0":{"name":"Cyan Curtain","tr":"青色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.abyssal":{"0":{"oreDict":["stoneBasalt"],"name":"Abyssal Brick","tr":"深渊砖","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneBasalt"],"name":"Fitted Abyssal Stone","tr":"匀称深渊方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneBasalt"],"name":"Abyssal Block","tr":"深渊方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneBasalt"],"name":"Ornate Abyssal Stone","tr":"雕琢深渊方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneBasalt"],"name":"Etched Abyssal Stone","tr":"蚀刻深渊方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneBasalt"],"name":"Abyssal Cobblestone","tr":"深渊圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.anchor.admin":{"0":{"name":"Admin Anchor Cart","tr":"管理员锚车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"miscutils:itemRingErbium":{"0":{"oreDict":["ringErbium"],"name":"铒环","tr":"铒环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BioLabParts":{"0":{"name":"Sterilized Petri Dish","tr":"无菌培养皿","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"DNA Sample Flask","tr":"DNA样品瓶","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Plasmid Sample Flask","tr":"质粒样品瓶","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Detergent Powder","tr":"洗涤粉","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Agarose","tr":"琼脂糖","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Incubation Module","tr":"孵化模块","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Plasma Membrane","tr":"质膜","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedAluminiumIronPlate":{"0":{"name":"Reinforced Aluminium-Iron Plate","tr":"强化铝铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodPaintingT0":{"0":{"name":"Sacred Oak Painting Frame","tr":"天域树橡树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Painting Frame","tr":"暗黑树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Painting Frame","tr":"杉树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"HellBark Painting Frame","tr":"地狱皮树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Painting Frame","tr":"天域树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Painting Frame","tr":"蓝花楹画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Painting Frame","tr":"魔法树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Painting Frame","tr":"红杉画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellChromaticGlass":{"0":{"oreDict":["cellChromaticGlass"],"name":"彩色玻璃单元","tr":"彩色玻璃单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilQuantum":{"0":{"oreDict":["foilQuantum"],"name":"量子合金箔","tr":"量子合金箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodPaintingT1":{"0":{"name":"Sacred Oak Painting Frame","tr":"天域树橡树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Painting Frame","tr":"暗黑树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Painting Frame","tr":"杉树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"HellBark Painting Frame","tr":"地狱皮树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Painting Frame","tr":"天域树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Painting Frame","tr":"蓝花楹画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Painting Frame","tr":"魔法树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Painting Frame","tr":"红杉画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_iron":{"0":{"oreDict":["ingotBloodInfusedIron"],"name":"Blood Infused Iron Ingot","tr":"注血铁锭","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:witchhat":{"0":{"name":"Witches\u0027 Hat","tr":"巫师帽","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":56}},"TConstruct:lumberaxe":{"0":{"name":"§f山铜 伐木斧","tr":"§f山铜 伐木斧","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"TConstruct:CastingChannel":{"0":{"name":"Casting Channel","tr":"浇注道","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Casting Channel","tr":"浇注道","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodPaintingT4":{"0":{"name":"Sacred Oak Painting Frame","tr":"天域树橡树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Painting Frame","tr":"暗黑树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Painting Frame","tr":"杉树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"HellBark Painting Frame","tr":"地狱皮树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Painting Frame","tr":"天域树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Painting Frame","tr":"蓝花楹画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Painting Frame","tr":"魔法树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Painting Frame","tr":"红杉画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:ioblocks":{"0":{"oreDict":["rockSpace"," rockIo"],"name":"Io Surface Block","tr":"木卫一地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockIo"],"name":"Io Ash","tr":"木卫一灰烬","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockSpace"," rockIo"],"name":"Io Stone","tr":"木卫一石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Io Dungeon Bricks","tr":"木卫一地牢砖","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"木卫一铜矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreTungsten"],"name":"Tungsten Ore","tr":"木卫一钨矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oreSulfur"],"name":"Sulfur Ore","tr":"木卫一硫矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Io Dungeon Top","tr":"木卫一地牢天花板","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Io Dungeon Floor","tr":"木卫一地牢地板","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodPaintingT2":{"0":{"name":"Sacred Oak Painting Frame","tr":"天域树橡树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Painting Frame","tr":"暗黑树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Painting Frame","tr":"杉树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"HellBark Painting Frame","tr":"地狱皮树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Painting Frame","tr":"天域树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Painting Frame","tr":"蓝花楹画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Painting Frame","tr":"魔法树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Painting Frame","tr":"红杉画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodPaintingT3":{"0":{"name":"Sacred Oak Painting Frame","tr":"天域树橡树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Painting Frame","tr":"暗黑树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Painting Frame","tr":"杉树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"HellBark Painting Frame","tr":"地狱皮树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Painting Frame","tr":"天域树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Painting Frame","tr":"蓝花楹画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Painting Frame","tr":"魔法树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Painting Frame","tr":"红杉画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemPartCoalChunk":{"0":{"name":"Coal Chunk","tr":"煤块","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockRemoteJar":{"0":{"name":"Mirrored Jar","tr":"镜像罐子","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedtoolHeadHammer":{"10112":{"oreDict":["toolHeadHammerShirabon"],"name":"调律源金锤头","tr":"调律源金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["toolHeadHammerBismutite"],"name":"泡铋锤头","tr":"泡铋锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["toolHeadHammerZirconium"],"name":"锆锤头","tr":"锆锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["toolHeadHammerCubicZirconia"],"name":"立方氧化锆锤头","tr":"立方氧化锆锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["toolHeadHammerFluor-Buergerite"],"name":"氟铁电气石锤头","tr":"氟铁电气石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["toolHeadHammerChromo-Alumino-Povondraite"],"name":"铬铝电气石锤头","tr":"铬铝电气石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["toolHeadHammerVanadio-Oxy-Dravite"],"name":"钒镁电气石锤头","tr":"钒镁电气石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["toolHeadHammerOlenite"],"name":"铝电气石锤头","tr":"铝电气石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["toolHeadHammerRedZircon"],"name":"红锆石锤头","tr":"红锆石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["toolHeadHammerSalt"],"name":"盐锤头","tr":"盐锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["toolHeadHammerSpodumene"],"name":"锂辉石锤头","tr":"锂辉石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["toolHeadHammerRockSalt"],"name":"岩盐锤头","tr":"岩盐锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["toolHeadHammerFayalite"],"name":"铁橄榄石锤头","tr":"铁橄榄石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["toolHeadHammerForsterite"],"name":"镁橄榄石锤头","tr":"镁橄榄石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["toolHeadHammerHedenbergite"],"name":"钙铁辉石锤头","tr":"钙铁辉石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["toolHeadHammerThorium232"],"name":"钍-232锤头","tr":"钍-232锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["toolHeadHammerPrasiolite"],"name":"堇云石锤头","tr":"堇云石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["toolHeadHammerMagnetoResonatic"],"name":"磁共振石锤头","tr":"磁共振石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["toolHeadHammerAtomicSeparationCatalyst"],"name":"原子分离催化剂锤头","tr":"原子分离催化剂锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["toolHeadHammerCalifornium"],"name":"锎锤头","tr":"锎锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["toolHeadHammerOrundum"],"name":"合成玉锤头","tr":"合成玉锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["toolHeadHammerCalcium"],"name":"钙锤头","tr":"钙锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["toolHeadHammerExtremelyUnstableNaquadah"],"name":"极不稳定硅岩锤头","tr":"极不稳定硅岩锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["toolHeadHammerBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK锤头","tr":"BArTiMaEuSNeK锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["toolHeadHammerPTMEGElastomer"],"name":"PTMEG橡胶锤头","tr":"PTMEG橡胶锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["toolHeadHammerRuthenium"],"name":"钌锤头","tr":"钌锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["toolHeadHammerZn-ThAlloy"],"name":"锌钍合金锤头","tr":"锌钍合金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["toolHeadHammerRhodium"],"name":"铑锤头","tr":"铑锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["toolHeadHammerRhodium-PlatedPalladium"],"name":"镀铑钯锤头","tr":"镀铑钯锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["toolHeadHammerTiberium"],"name":"泰伯利亚锤头","tr":"泰伯利亚锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["toolHeadHammerRuridit"],"name":"钌铱合金锤头","tr":"钌铱合金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["toolHeadHammerFluorspar"],"name":"氟石锤头","tr":"氟石锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["toolHeadHammerHighDurabilityCompoundSteel"],"name":"高耐久性复合钢锤头","tr":"高耐久性复合钢锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["toolHeadHammerAdemicSteel"],"name":"硬钢锤头","tr":"硬钢锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["toolHeadHammerZircaloy-4"],"name":"锆锡合金-4锤头","tr":"锆锡合金-4锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["toolHeadHammerZircaloy-2"],"name":"锆锡合金-2锤头","tr":"锆锡合金-2锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["toolHeadHammerIncoloy-903"],"name":"耐热铬铁合金-903锤头","tr":"耐热铬铁合金-903锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["toolHeadHammerAdamantiumAlloy"],"name":"精金合金锤头","tr":"精金合金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["toolHeadHammerFluorophlogopite"],"name":"氟金云母锤头","tr":"氟金云母锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["toolHeadHammerCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)锤头","tr":"掺铈镥铝石榴石 (Ce:LuAG)锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["toolHeadHammerMagnesia"],"name":"氧化镁锤头","tr":"氧化镁锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["toolHeadHammerMAR-M200Steel"],"name":"MAR-M200特种钢锤头","tr":"MAR-M200特种钢锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["toolHeadHammerMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢锤头","tr":"MAR-Ce-M200特种钢锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["toolHeadHammerLithiumChloride"],"name":"氯化锂锤头","tr":"氯化锂锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["toolHeadHammerSignalium"],"name":"信素锤头","tr":"信素锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["toolHeadHammerLumiium"],"name":"流明锤头","tr":"流明锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["toolHeadHammerArtherium-Sn"],"name":"阿瑟锡锤头","tr":"阿瑟锡锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["toolHeadHammerTanmolyiumBeta-C"],"name":"钛钼合金β-C锤头","tr":"钛钼合金β-C锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["toolHeadHammerDalisenite"],"name":"大力合金锤头","tr":"大力合金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["toolHeadHammerHafnium"],"name":"铪锤头","tr":"铪锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["toolHeadHammerHikarium"],"name":"光素锤头","tr":"光素锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["toolHeadHammerTairitsu"],"name":"对立合金锤头","tr":"对立合金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["toolHeadHammerPreciousMetalsAlloy"],"name":"稀有金属合金锤头","tr":"稀有金属合金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["toolHeadHammerEnrichedNaquadahAlloy"],"name":"富集硅岩合金锤头","tr":"富集硅岩合金锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["toolHeadHammerMetastableOganesson"],"name":"亚稳态鿫锤头","tr":"亚稳态鿫锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["toolHeadHammerZirconium"],"name":"锆锤头","tr":"锆锤头","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampistachioSapling":{"0":{"name":"Pistachio Sapling","tr":"开心果树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:radiationProtectionSteelFrame":{"0":{"name":"Radiation Proof Steel Frame Box","tr":"防辐射钢框架","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:logsFireproof":{"0":{"oreDict":["logWood"],"name":"Larch Wood (Fireproof)","tr":"抗燃落叶树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Teak Wood (Fireproof)","tr":"抗燃柚树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Desert Acacia Wood (Fireproof)","tr":"抗燃沙漠刺槐原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Lime Wood (Fireproof)","tr":"抗燃酸橙树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["logWood"],"name":"Chestnut Wood (Fireproof)","tr":"抗燃栗树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["logWood"],"name":"Wenge Wood (Fireproof)","tr":"抗燃崖豆原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["logWood"],"name":"Baobab Wood (Fireproof)","tr":"抗燃猴面包树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["logWood"],"name":"Sequoia Wood (Fireproof)","tr":"抗燃红杉树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["logWood"],"name":"Kapok Wood (Fireproof)","tr":"抗燃木棉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["logWood"],"name":"Ebony Wood (Fireproof)","tr":"抗燃乌檀树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["logWood"],"name":"Mahogany Wood (Fireproof)","tr":"抗燃桃心树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["logWood"],"name":"Balsa Wood (Fireproof)","tr":"抗燃巴尔杉树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["logWood"],"name":"Willow Wood (Fireproof)","tr":"抗燃柳树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["logWood"],"name":"Walnut Wood (Fireproof)","tr":"抗燃核桃原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["logWood"],"name":"Greenheart Wood (Fireproof)","tr":"抗燃绿樟树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["logWood"],"name":"Cherry Wood (Fireproof)","tr":"抗燃樱桃原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["logWood"],"name":"Mahoe Wood (Fireproof)","tr":"抗燃高槿树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["logWood"],"name":"Poplar Wood (Fireproof)","tr":"抗燃白杨树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["logWood"],"name":"Palm Wood (Fireproof)","tr":"抗燃棕榈树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["logWood"],"name":"Papaya Wood (Fireproof)","tr":"抗燃木瓜原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["logWood"],"name":"Pine Wood (Fireproof)","tr":"抗燃松树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["logWood"],"name":"Plum Wood (Fireproof)","tr":"抗燃李子原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["logWood"],"name":"Maple Wood (Fireproof)","tr":"抗燃枫树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["logWood"],"name":"Citrus Wood (Fireproof)","tr":"抗燃柑橘树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["logWood"],"name":"Giant Sequoia Wood (Fireproof)","tr":"抗燃巨杉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["logWood"],"name":"Ipe Wood (Fireproof)","tr":"抗燃重蚁树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["logWood"],"name":"Padauk Wood (Fireproof)","tr":"抗燃紫檀树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["logWood"],"name":"Cocobolo Wood (Fireproof)","tr":"抗燃黄檀树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["logWood"],"name":"Zebrawood Wood (Fireproof)","tr":"抗燃斑木树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFarmerI":{"0":{"name":"Coin \"The Farmer 10\"","tr":"农民币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:glassgoblet":{"0":{"name":"Glass Goblet","tr":"玻璃高脚杯","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:obsidian_special":{"0":{"name":"Smooth Obsidian","tr":"平滑黑曜石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Obsidian","tr":"錾制黑曜石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Obsidian Pillar","tr":"黑曜石柱","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorReflector":{"1":{"name":"Neutron Reflector","tr":"中子反射板","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"Ztones:tile.bittBlock":{"0":{"name":"Bitt ⓪","tr":"Bitt ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Bitt ①","tr":"Bitt ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Bitt ②","tr":"Bitt ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Bitt ③","tr":"Bitt ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Bitt ④","tr":"Bitt ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Bitt ⑤","tr":"Bitt ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Bitt ⑥","tr":"Bitt ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Bitt ⑦","tr":"Bitt ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Bitt ⑧","tr":"Bitt ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Bitt ⑨","tr":"Bitt ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Bitt ⑩","tr":"Bitt ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Bitt ⑪","tr":"Bitt ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Bitt ⑫","tr":"Bitt ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Bitt ⑬","tr":"Bitt ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Bitt ⑭","tr":"Bitt ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Bitt ⑮","tr":"Bitt ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:shardSliver":{"0":{"name":"Sliver of Air","tr":"风之裂片","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Sliver of Fire","tr":"火之裂片","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Sliver of Water","tr":"水之裂片","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Sliver of Earth","tr":"地之裂片","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Sliver of Order","tr":"秩序裂片","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Sliver of Entropy","tr":"混沌裂片","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:mobAspect":{"0":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"4":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"5":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"6":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"7":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"8":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"9":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"10":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"11":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"12":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"13":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"14":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"15":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"16":{"name":"Soul Aspect","tr":"灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"42":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"43":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"44":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"45":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"46":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"47":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"48":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"49":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"50":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"51":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"52":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"53":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"54":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"55":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"56":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"57":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1},"58":{"name":"Infused Soul Aspect","tr":"注魔灵魂要素","tab":"神秘工匠","type":"Item","maxStackSize":16,"maxDurability":1}},"GalacticraftCore:item.oxygenTankHeavyFull":{"0":{"name":"Heavy Oxygen Tank","tr":"重型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":4001},"4000":{"name":"Heavy Oxygen Tank","tr":"重型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":4001}},"IC2:blockOreUran":{"0":{"oreDict":["oreUranium"],"name":"Uranium Ore","tr":"铀矿石","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcranberryCrop":{"0":{"name":"Cranberry Crop","tr":"蔓越莓","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:seriousGlasses":{"0":{"name":"Badass Glasses","tr":"恶棍眼镜","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":78}},"miscutils:crushedCentrifugedAncientGranite":{"0":{"oreDict":["crushedCentrifugedAncientGranite"],"name":"Centrifuged Crushed Ancient Granite Ore","tr":"离心的古花岗岩矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesCarts:BlockJunction":{"0":{"name":"Junction Rail","tr":"交接轨道","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:ThaumiumOmnitool":{"1":{"name":"Thaumium Omnitool","tr":"神秘钻锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Thaumium Omnitool","tr":"神秘钻锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"RandomThings:spectreLeggings":{"0":{"name":"Spectre Leggings","tr":"灵魂护腿","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":526}},"Forestry:beeDroneGE":{"0":{"name":"Dreaming Drone","tr":"梦境雄蜂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZrCl4":{"0":{"oreDict":["dustZrCl4"],"name":"氯化锆粉","tr":"氯化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsRequestLogisticsMk2":{"0":{"name":"Request Logistics Pipe Mk2","tr":"请求物流管道Mk2","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaTablet":{"0":{"name":"Mana Tablet","tr":"魔力石板","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"cookingforblockheads:sink":{"0":{"name":"Sink","tr":"水槽","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:logs1":{"0":{"oreDict":["logWood"],"name":"Sacred Oak Wood","tr":"神圣橡木原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Cherry Wood","tr":"樱桃树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Dark Wood","tr":"黑暗树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Fir Wood","tr":"杉树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:logs2":{"0":{"oreDict":["logWood"],"name":"Ethereal Wood","tr":"空灵树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Magic Wood","tr":"魔法树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Mangrove Wood","tr":"红树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Palm Wood","tr":"棕榈树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VoidEssence":{"0":{"name":"Void Essence","tr":"虚空精华","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodBlackMetal":{"0":{"oreDict":["stickBlackMetal"],"name":"黑物质杆","tr":"黑物质杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:logs3":{"0":{"oreDict":["logWood"],"name":"Redwood Wood","tr":"红杉原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Willow Wood","tr":"柳树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Dead Wood","tr":"垂死树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Giant Flower Stem","tr":"巨大花茎","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:logs4":{"0":{"oreDict":["logWood"],"name":"Pine Wood","tr":"松树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Hellbark Wood","tr":"地狱皮树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Jacaranda Wood","tr":"蓝花楹树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Mahogany Wood","tr":"桃花心木树原木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blackberrycobblerItem":{"0":{"oreDict":["foodBlackberrycobbler"],"name":"Blackberry Cobbler","tr":"黑莓馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chickensandwichItem":{"0":{"oreDict":["foodChickensandwich"],"name":"Chicken Sandwich","tr":"鸡肉三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberrymuffinItem":{"0":{"oreDict":["foodBlueberrymuffin"],"name":"Blueberry Muffin","tr":"蓝莓松糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:bloodyChest":{"0":{"name":"Bloodstained Thaumaturge\u0027s Robe","tr":"血腥神秘使法袍","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":337}},"dreamcraft:item.ChargedCertusQuartzRod":{"0":{"oreDict":["stickChargedCertusQuartz"],"name":"Charged Certus Quartz Rod","tr":"充能赛特斯石英杆","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockHypogen":{"0":{"oreDict":["blockHypogen"],"name":"海珀珍块","tr":"海珀珍块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:persimmonsmoothieItem":{"0":{"oreDict":["foodPersimmonsmoothie"," listAllsmoothie"],"name":"Persimmon Smoothie","tr":"柿子沙冰","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:silverDiamondUpgrade":{"0":{"name":"Steel to Diamond Tank Upgrade","tr":"储罐升级:钢\u003e钻石","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:csnowpressureplate":{"0":{"name":"Snow Pressure Plate","tr":"雪压力板","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.CinderFurnaceLit":{"0":{"name":"tile.CinderFurnaceLit.name","tr":"余烬熔炉 [NYI]","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"kekztech:kekztech_tfftstoragefield_block":{"0":{"name":"T.F.F.T Casing","tr":"T.F.F.T机械方块","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"T.F.F.T Storage Field Block (Tier I)","tr":"T.F.F.T 存储库方块 (T1)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"T.F.F.T Storage Field Block (Tier II)","tr":"T.F.F.T 存储库方块 (T2)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"T.F.F.T Storage Field Block (Tier III)","tr":"T.F.F.T 存储库方块 (T3)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"T.F.F.T Storage Field Block (Tier IV)","tr":"T.F.F.T 存储库方块 (T4)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"T.F.F.T Storage Field Block (Tier V)","tr":"T.F.F.T 存储库方块 (T5)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"T.F.F.T Storage Field Block (Tier VI)","tr":"T.F.F.T 存储库方块 (T6)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"T.F.F.T Storage Field Block (Tier VII)","tr":"T.F.F.T 存储库方块 (T7)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"T.F.F.T Storage Field Block (Tier VIII)","tr":"T.F.F.T 存储库方块 (T8)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"T.F.F.T Storage Field Block (Tier IX)","tr":"T.F.F.T 存储库方块 (T9)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"T.F.F.T Storage Field Block (Tier X)","tr":"T.F.F.T 存储库方块 (T10)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberrysodaItem":{"0":{"oreDict":["foodStrawberrysoda"],"name":"Strawberry Soda","tr":"草莓汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.fortBlock":{"0":{"name":"Fort ⓪","tr":"Fort ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fort ①","tr":"Fort ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fort ②","tr":"Fort ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fort ③","tr":"Fort ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fort ④","tr":"Fort ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fort ⑤","tr":"Fort ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fort ⑥","tr":"Fort ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fort ⑦","tr":"Fort ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fort ⑧","tr":"Fort ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fort ⑨","tr":"Fort ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Fort ⑩","tr":"Fort ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Fort ⑪","tr":"Fort ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fort ⑫","tr":"Fort ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fort ⑬","tr":"Fort ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fort ⑭","tr":"Fort ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fort ⑮","tr":"Fort ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.aluminum":{"0":{"name":"Molten Aluminum","tr":"熔融铝","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawBioFiber":{"0":{"name":"Raw Bio Fiber","tr":"植物纤维","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:poison":{"0":{"name":"Poison","tr":"毒液","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:life_imbued_chestplate":{"0":{"name":"Life Imbued Chestplate","tr":"生命灌输胸甲","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":100001}},"harvestcraft:cherrycheesecakeItem":{"0":{"oreDict":["foodCherrycheesecake"],"name":"Cherry Cheesecake","tr":"樱桃奶酪蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockSolarPanel":{"0":{"name":"Photovoltaic Cell","tr":"光伏板","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Advanced Photovoltaic Cell","tr":"高级光伏板","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Vibrant Photovoltaic Cell","tr":"脉冲光伏板","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:friedonionsItem":{"0":{"oreDict":["foodFriedonions"],"name":"Fried Onions","tr":"油煎洋葱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingrock0SlabFull":{"0":{"name":"Livingrock Slab","tr":"活石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:fluid.creosote":{"0":{"name":"Creosote","tr":"杂酚油","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemBatChargeAdv":{"1":{"name":"Advanced Charging Battery","tr":"高级充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Advanced Charging Battery","tr":"高级充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"TwilightForest:tile.TrollSteinn":{"0":{"name":"Trollsteinn","tr":"巨魔石","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:storage.essentia":{"0":{"name":"1k ME Essentia Storage Cell","tr":"1k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"4k ME Essentia Storage Cell","tr":"4k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"16k ME Essentia Storage Cell","tr":"16k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"64k ME Essentia Storage Cell","tr":"64k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Thaumometric Essentia Cell","tr":"魔导源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"256k ME Essentia Storage Cell","tr":"256k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"1024k ME Essentia Storage Cell","tr":"1024k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"4096k ME Essentia Storage Cell","tr":"4096k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"16384k ME Essentia Storage Cell","tr":"16384k-ME源质存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"ME Essentia Quantum Storage Cell","tr":"ME源质量子存储元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"ME Essentia Digital Singularity Storage Cell","tr":"ME源质数字奇点元件","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:taglockkit":{"0":{"name":"Taglock Kit","tr":"巫媒","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1}},"ThaumicTinkerer:gaseousShadowItem":{"0":{"name":"Gaseous Tenebrae","tr":"暗影气瓶","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartChunk":{"1536":{"name":"精金 Shard","tr":"精金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Shard","tr":"神秘蓝金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Shard","tr":"琥珀 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Shard","tr":"纯镃 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Shard","tr":"谐镃 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Shard","tr":"聚氯乙烯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Shard","tr":"永恒 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Shard","tr":"磁物质 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Shard","tr":"赛特斯石英 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Shard","tr":"暗影秘银 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Shard","tr":"玄铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Shard","tr":"戴斯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Shard","tr":"铿铀 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Shard","tr":"通流琥珀金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Shard","tr":"末影粗胚 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Shard","tr":"末影(te) 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Shard","tr":"炽热的钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Shard","tr":"火石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Shard","tr":"力量 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Shard","tr":"石墨 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Shard","tr":"石墨烯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Shard","tr":"注魔金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Shard","tr":"风之魔晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Shard","tr":"火之魔晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Shard","tr":"地之魔晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Shard","tr":"水之魔晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Shard","tr":"混沌魔晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Shard","tr":"秩序魔晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Shard","tr":"玉 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Shard","tr":"碧玉 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Shard","tr":"陨铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Shard","tr":"陨钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Shard","tr":"硅岩 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Shard","tr":"硅岩合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Shard","tr":"富集硅岩 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Shard","tr":"超能硅岩 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Shard","tr":"下界石英 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Shard","tr":"下界之星 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Shard","tr":"三钛 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Shard","tr":"虚空 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Shard","tr":"胶木 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Shard","tr":"幽冥剧毒结晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Shard","tr":"强化 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Shard","tr":"铱锇合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Shard","tr":"阳光化合物 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Shard","tr":"魂金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Shard","tr":"蓝黄玉 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Shard","tr":"黄铜 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Shard","tr":"白铜 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Shard","tr":"深渊铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Shard","tr":"钻石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Shard","tr":"琥珀金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Shard","tr":"绿宝石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Shard","tr":"强化混合晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Shard","tr":"混合晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Shard","tr":"绿色蓝宝石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Shard","tr":"殷钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Shard","tr":"坎塔尔合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Shard","tr":"镁铝合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Shard","tr":"镍铬合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Shard","tr":"玄钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Shard","tr":"生铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Shard","tr":"聚乙烯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Shard","tr":"环氧树脂 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Shard","tr":"硅橡胶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Shard","tr":"聚己内酰胺 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Shard","tr":"聚四氟乙烯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Shard","tr":"蓝宝石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Shard","tr":"不锈钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Shard","tr":"坦桑石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Shard","tr":"锡铁合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Shard","tr":"黄玉 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Shard","tr":"哈氏合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Shard","tr":"锻铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Shard","tr":"铁木 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Shard","tr":"橄榄石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Shard","tr":"蛋白石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Shard","tr":"紫水晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Shard","tr":"暗影金属 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Shard","tr":"暗影铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Shard","tr":"暗影钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Shard","tr":"钢叶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Shard","tr":"骑士金属 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Shard","tr":"标准纯银 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Shard","tr":"玫瑰金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Shard","tr":"黑青铜 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Shard","tr":"铋青铜 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Shard","tr":"黑钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Shard","tr":"红钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Shard","tr":"蓝钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Shard","tr":"大马士革钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Shard","tr":"充能合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Shard","tr":"脉冲合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Shard","tr":"星辰银 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Shard","tr":"钴黄铜 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Shard","tr":"红石榴石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Shard","tr":"黄石榴石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Shard","tr":"温特姆 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Shard","tr":"黑花岗岩 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Shard","tr":"红花岗岩 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Shard","tr":"白石棉 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Shard","tr":"雄黄 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Shard","tr":"磁化铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Shard","tr":"磁化钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Shard","tr":"磁化钕 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Shard","tr":"碳化钨 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Shard","tr":"钒钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Shard","tr":"高速钢-G 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Shard","tr":"高速钢-E 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Shard","tr":"高速钢-S 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Shard","tr":"深铅 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Shard","tr":"量子 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Shard","tr":"深空秘银 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Shard","tr":"黑钚 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Shard","tr":"木卫四冰 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Shard","tr":"硬铝 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Shard","tr":"奥利哈钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Shard","tr":"三元金属 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Shard","tr":"聚苯硫醚 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Shard","tr":"聚苯乙烯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Shard","tr":"丁苯橡胶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Shard","tr":"镍锌铁氧体 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Shard","tr":"纤维强化的环氧树脂 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Shard","tr":"磁化钐 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Shard","tr":"无尽催化剂 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Shard","tr":"聚苯并咪唑 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Shard","tr":" 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Shard","tr":"钛铂钒合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Shard","tr":"时空 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Shard","tr":"大理石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Shard","tr":"神秘水晶 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Shard","tr":"末影钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Shard","tr":"复合粘土 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Shard","tr":"晶化合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Shard","tr":"旋律合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Shard","tr":"恒星合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Shard","tr":"晶化粉红史莱姆 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Shard","tr":"充能银 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Shard","tr":"生动合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Shard","tr":"灵宝 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Shard","tr":"超时空金属 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Shard","tr":"活石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Shard","tr":"盖亚之魂 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Shard","tr":"活木 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Shard","tr":"梦之木 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Shard","tr":"泡铋 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Shard","tr":"立方氧化锆 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Shard","tr":"氟铁电气石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Shard","tr":"铬铝电气石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Shard","tr":"钒镁电气石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Shard","tr":"铝电气石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Shard","tr":"红锆石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Shard","tr":"铁橄榄石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Shard","tr":"镁橄榄石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Shard","tr":"钙铁辉石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Shard","tr":"钍-232 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Shard","tr":"堇云石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Shard","tr":"磁共振石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Shard","tr":"锎 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Shard","tr":"BArTiMaEuSNeK 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Shard","tr":"钌 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Shard","tr":"铑 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Shard","tr":"镀铑钯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Shard","tr":"泰伯利亚 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Shard","tr":"钌铱合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Shard","tr":"氟石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Shard","tr":"高耐久性复合钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Shard","tr":"硬钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Shard","tr":"合成玉 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Shard","tr":"原子分离催化剂 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Shard","tr":"极不稳定硅岩 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Shard","tr":"锌钍合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Shard","tr":"锆锡合金-4 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Shard","tr":"锆锡合金-2 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Shard","tr":"耐热铬铁合金-903 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Shard","tr":"精金合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Shard","tr":"MAR-M200特种钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Shard","tr":"MAR-Ce-M200特种钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Shard","tr":"氯化锂 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Shard","tr":"信素 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Shard","tr":"流明 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Shard","tr":"阿瑟锡 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Shard","tr":"钛钼合金β-C 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Shard","tr":"大力合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Shard","tr":"光素 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Shard","tr":"对立合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Shard","tr":"稀有金属合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Shard","tr":"富集硅岩合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Shard","tr":"亚稳态鿫 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Shard","tr":"调律源金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Shard","tr":"魔钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Shard","tr":"泰拉钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Shard","tr":"源质钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Shard","tr":"磁流体约束恒星物质 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Shard","tr":"白矮星物质 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Shard","tr":"黑矮星物质 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Shard","tr":"宇宙素 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Shard","tr":"铝 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Shard","tr":"铍 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Shard","tr":"铋 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Shard","tr":"碳 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Shard","tr":"铬 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Shard","tr":"金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Shard","tr":"铱 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Shard","tr":"铅 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Shard","tr":"锰 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Shard","tr":"钼 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Shard","tr":"钕 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Shard","tr":"中子 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Shard","tr":"镍 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Shard","tr":"锇 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Shard","tr":"钯 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Shard","tr":"铂 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Shard","tr":"钚-239 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Shard","tr":"钚-241 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Shard","tr":"银 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Shard","tr":"钍 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Shard","tr":"钛 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Shard","tr":"钨 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Shard","tr":"铀-238 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Shard","tr":"铀-235 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Shard","tr":"红宝石 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Shard","tr":"红石合金 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Shard","tr":"终末 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Shard","tr":"导电铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Shard","tr":"磁钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Shard","tr":"钨钢 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Shard","tr":"烈焰 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Shard","tr":"脉冲铁 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Shard","tr":"龙 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Shard","tr":"觉醒龙 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Shard","tr":"褐铜 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Shard","tr":"山铜 碎片","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:upgradeModule":{"0":{"name":"Overclocker Upgrade","tr":"超频升级","tab":"工业2","type":"Item","maxStackSize":4,"maxDurability":1},"1":{"name":"Transformer Upgrade","tr":"高压升级","tab":"工业2","type":"Item","maxStackSize":4,"maxDurability":1},"2":{"name":"Energy Storage Upgrade","tr":"储能升级","tab":"工业2","type":"Item","maxStackSize":4,"maxDurability":1},"3":{"name":"Ejector Upgrade","tr":"弹出升级","tab":"工业2","type":"Item","maxStackSize":4,"maxDurability":1},"4":{"name":"Fluid Ejector Upgrade","tr":"流体弹出升级","tab":"工业2","type":"Item","maxStackSize":4,"maxDurability":1},"5":{"name":"Redstone Signal Inverter Upgrade","tr":"红石信号反转升级","tab":"工业2","type":"Item","maxStackSize":4,"maxDurability":1},"6":{"name":"Pulling Upgrade","tr":"抽入升级","tab":"工业2","type":"Item","maxStackSize":4,"maxDurability":1}},"harvestcraft:applesmoothieItem":{"0":{"oreDict":["foodApplesmoothie"," listAllsmoothie"],"name":"Apple Smoothie","tr":"苹果冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearHafnium":{"0":{"oreDict":["gearGtHafnium"," gearHafnium"],"name":"铪齿轮","tr":"铪齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockAbyssalAlloy":{"0":{"oreDict":["blockAbyssalAlloy"],"name":"深渊合金块","tr":"深渊合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorTriniumNaquadahCarbonite":{"0":{"oreDict":["rotorTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金转子","tr":"掺碳三元硅岩合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockRainforestOakSapling":{"0":{"oreDict":["treeSapling"],"name":"Rainforest Oak Sapling","tr":"雨林橡树树苗","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:naquadriaMass":{"0":{"name":"Naquadria Mass","tr":"超能硅岩团","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureNichromite":{"0":{"oreDict":["dustImpureNichromite"],"name":"Impure Nichromite Dust","tr":"含杂镍铬矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:glass_dagger_of_sacrifice":{"0":{"name":"Glass Dagger of Sacrifice","tr":"玻璃献祭刀","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":101}},"harvestcraft:fishsticksItem":{"0":{"oreDict":["foodFishsticks"],"name":"Fish Sticks","tr":"炸鱼条","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IronChest:woodCopperUpgrade":{"0":{"name":"Wood to Copper Chest Upgrade","tr":"升级:木\u003e铜","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedWood":{"0":{"name":"Crated Oak Wood","tr":"装箱的橡木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTriniumTitaniumAlloy":{"0":{"oreDict":["ingotHotTriniumTitaniumAlloy"],"name":"热三元钛合金锭","tr":"热三元钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:onionItem":{"0":{"oreDict":["cropOnion"," listAllveggie"],"name":"Onion","tr":"洋葱","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"tinkersdefense:Block_ArmorAnvil":{"0":{"name":"Armor Anvil","tr":"护甲铁砧","tab":"工匠之盾","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewTantalumCarbide":{"0":{"oreDict":["screwTantalumCarbide"],"name":"碳化钽螺丝","tr":"碳化钽螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.ItemPipeSignCreator":{"0":{"name":"Crafting Sign Creator","tr":"合成管道标牌","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":251}},"dreamcraft:item.CoinBlank":{"0":{"name":"Coin \"Blank 1\"","tr":"空白硬币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightlyPick":{"0":{"name":"Knightly Pick","tr":"骑士镐","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"ThaumicHorizons:light":{"0":{"name":"Light Orb","tr":"光球","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:geolyzer":{"0":{"oreDict":["oc:geolyzer"],"name":"Geolyzer","tr":"地质分析仪","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.NeutroniumPlatedReinforcedStone":{"0":{"name":"Neutronium Plated Reinforced Stone","tr":"中子镀层防爆石","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearEnergyCrystal":{"0":{"oreDict":["gearGtEnergyCrystal"," gearEnergyCrystal"],"name":"能量水晶齿轮","tr":"能量水晶齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetBlackTitanium":{"0":{"oreDict":["nuggetBlackTitanium"],"name":"黑钛粒","tr":"黑钛粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:almondItem":{"0":{"oreDict":["cropAlmond"," listAllnut"],"name":"Almond","tr":"杏仁","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewRuthenium":{"0":{"oreDict":["screwRuthenium"],"name":"钌螺丝","tr":"钌螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Aroma1997Core:wrench":{"0":{"name":"Aromic Hammer","tr":"Aromic锤","tab":"Aroma1997核心","type":"Item","maxStackSize":1,"maxDurability":1}},"GraviSuite:relocator":{"1":{"name":"Relocator","tr":"定位器","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Relocator","tr":"定位器","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"ExtraTrees:door":{"128":{"name":"Larch Wood Door","tr":"落叶树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"0":{"name":"Oak Wood Door","tr":"橡树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"129":{"name":"Teak Wood Door","tr":"柚树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"1":{"name":"Spruce Wood Door","tr":"云杉木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"130":{"name":"Desert Acacia Wood Door","tr":"金合欢树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"2":{"name":"Birch Wood Door","tr":"白桦木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"131":{"name":"Lime Wood Door","tr":"酸橙树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"3":{"name":"Jungle Wood Door","tr":"丛林木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"132":{"name":"Chestnut Wood Door","tr":"栗树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"4":{"name":"Acacia Wood Door","tr":"金合欢木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"133":{"name":"Wenge Wood Door","tr":"崖豆树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"5":{"name":"Dark Oak Wood Door","tr":"深色橡树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"134":{"name":"Baobab Wood Door","tr":"猴面包树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"135":{"name":"Sequoia Wood Door","tr":"红杉树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"136":{"name":"Kapok Wood Door","tr":"木棉树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"137":{"name":"Ebony Wood Door","tr":"乌檀树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"138":{"name":"Mahogany Wood Door","tr":"桃心树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"139":{"name":"Balsa Wood Door","tr":"巴尔杉树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"140":{"name":"Willow Wood Door","tr":"柳树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"141":{"name":"Walnut Wood Door","tr":"核桃树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"142":{"name":"Greenheart Wood Door","tr":"绿樟树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"143":{"name":"Cherry Wood Door","tr":"樱树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"144":{"name":"Mahoe Wood Door","tr":"高槿树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"145":{"name":"Poplar Wood Door","tr":"白杨树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"146":{"name":"Palm Wood Door","tr":"棕榈树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"147":{"name":"Papaya Wood Door","tr":"木瓜树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"148":{"name":"Pine Wood Door","tr":"松树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"149":{"name":"Plum Wood Door","tr":"李子树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"150":{"name":"Maple Wood Door","tr":"枫树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"151":{"name":"Citrus Wood Door","tr":"柑橘树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"152":{"name":"Giant Sequoia Wood Door","tr":"巨杉树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"153":{"name":"Ipe Wood Door","tr":"重蚁树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"154":{"name":"Padauk Wood Door","tr":"紫檀树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"155":{"name":"Cocobolo Wood Door","tr":"黄檀树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"156":{"name":"Zebrawood Wood Door","tr":"斑木树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"32":{"name":"Fir Wood Door","tr":"冷杉木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"33":{"name":"Cedar Wood Door","tr":"雪松木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"34":{"name":"Hemlock Wood Door","tr":"铁杉木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"35":{"name":"Cypress Wood Door","tr":"柏树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"36":{"name":"Fig Wood Door","tr":"无花果木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"37":{"name":"Beech Wood Door","tr":"山毛榉木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"38":{"name":"Alder Wood Door","tr":"桤木木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"39":{"name":"Hazel Wood Door","tr":"榛树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"40":{"name":"Hornbeam Wood Door","tr":"鹅耳枥木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"41":{"name":"Box Wood Door","tr":"黄杨木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"42":{"name":"Butternut Wood Door","tr":"灰核桃树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"43":{"name":"Hickory Wood Door","tr":"山核桃木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"44":{"name":"Whitebeam Wood Door","tr":"白面子树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"45":{"name":"Elm Wood Door","tr":"榆树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"46":{"name":"Apple Wood Door","tr":"苹果树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"47":{"name":"Yew Wood Door","tr":"红豆杉木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"48":{"name":"Pear Wood Door","tr":"梨树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"49":{"name":"Hawthorn Wood Door","tr":"山楂树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"50":{"name":"Rowan Wood Door","tr":"花楸木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"51":{"name":"Elder Wood Door","tr":"接骨木木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"52":{"name":"Maclura Wood Door","tr":"桑橙木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"53":{"name":"Syzgium Wood Door","tr":"蒲桃木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"54":{"name":"Brazilwood Wood Door","tr":"巴西红木木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"55":{"name":"Logwood Wood Door","tr":"墨水树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"56":{"name":"Iroko Wood Door","tr":"大绿柄桑木木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"57":{"name":"Locust Wood Door","tr":"刺槐木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"58":{"name":"Eucalyptus Wood Door","tr":"桉树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"59":{"name":"Purpleheart Wood Door","tr":"紫心檀木木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"60":{"name":"Ash Wood Door","tr":"梣树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"61":{"name":"Holly Wood Door","tr":"冬青木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"62":{"name":"Olive Wood Door","tr":"橄榄树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"63":{"name":"Sweetgum Wood Door","tr":"枫香树木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"64":{"name":"Rosewood Wood Door","tr":"蔷薇木木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"65":{"name":"Gingko Wood Door","tr":"银杏木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1},"66":{"name":"Pink Ivory Wood Door","tr":"象牙粉红木木门","tab":"林业|植树","type":"Block","maxStackSize":8,"maxDurability":1}},"dreamcraft:item.EnrichedNaquadriaSunnariumAlloy":{"0":{"name":"Enriched Naquadria Sunnarium Alloy","tr":"富集超能硅岩阳光合金","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:path":{"0":{"name":"Path","tr":"铺路石","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemMultiPart":{"0":{"name":"ME Glass Cable - White","tr":"ME玻璃线缆 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"ME Glass Cable - Orange","tr":"ME玻璃线缆 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"ME Glass Cable - Magenta","tr":"ME玻璃线缆 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"ME Glass Cable - Light Blue","tr":"ME玻璃线缆 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"ME Glass Cable - Yellow","tr":"ME玻璃线缆 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"260":{"name":"ME Export Bus","tr":"ME输出总线","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"ME Glass Cable - Lime","tr":"ME玻璃线缆 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"ME Glass Cable - Pink","tr":"ME玻璃线缆 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"ME Glass Cable - Gray","tr":"ME玻璃线缆 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"520":{"name":"ME Dense Covered Cable - White","tr":"ME致密包层线缆 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"ME Glass Cable - Light Gray","tr":"ME玻璃线缆 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"521":{"name":"ME Dense Covered Cable - Orange","tr":"ME致密包层线缆 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"ME Glass Cable - Cyan","tr":"ME玻璃线缆 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"522":{"name":"ME Dense Covered Cable - Magenta","tr":"ME致密包层线缆 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"ME Glass Cable - Purple","tr":"ME玻璃线缆 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"523":{"name":"ME Dense Covered Cable - Light Blue","tr":"ME致密包层线缆 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"ME Glass Cable - Blue","tr":"ME玻璃线缆 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"524":{"name":"ME Dense Covered Cable - Yellow","tr":"ME致密包层线缆 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"ME Glass Cable - Brown","tr":"ME玻璃线缆 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"525":{"name":"ME Dense Covered Cable - Lime","tr":"ME致密包层线缆 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"ME Glass Cable - Green","tr":"ME玻璃线缆 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"526":{"name":"ME Dense Covered Cable - Pink","tr":"ME致密包层线缆 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"ME Glass Cable - Red","tr":"ME玻璃线缆 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"527":{"name":"ME Dense Covered Cable - Gray","tr":"ME致密包层线缆 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"ME Glass Cable - Black","tr":"ME玻璃线缆 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"528":{"name":"ME Dense Covered Cable - Light Gray","tr":"ME致密包层线缆 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"ME Glass Cable - Fluix","tr":"ME玻璃线缆 - Fluix默认色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"529":{"name":"ME Dense Covered Cable - Cyan","tr":"ME致密包层线缆 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"530":{"name":"ME Dense Covered Cable - Purple","tr":"ME致密包层线缆 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"531":{"name":"ME Dense Covered Cable - Blue","tr":"ME致密包层线缆 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"ME Covered Cable - White","tr":"ME包层线缆 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"532":{"name":"ME Dense Covered Cable - Brown","tr":"ME致密包层线缆 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"ME Covered Cable - Orange","tr":"ME包层线缆 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"533":{"name":"ME Dense Covered Cable - Green","tr":"ME致密包层线缆 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"ME Covered Cable - Magenta","tr":"ME包层线缆 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"534":{"name":"ME Dense Covered Cable - Red","tr":"ME致密包层线缆 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"ME Covered Cable - Light Blue","tr":"ME包层线缆 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"535":{"name":"ME Dense Covered Cable - Black","tr":"ME致密包层线缆 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"ME Covered Cable - Yellow","tr":"ME包层线缆 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"536":{"name":"ME Dense Covered Cable - Fluix","tr":"ME致密包层线缆 - Fluix默认色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"280":{"name":"ME Level Emitter","tr":"ME标准发信器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"ME Covered Cable - Lime","tr":"ME包层线缆 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"ME Covered Cable - Pink","tr":"ME包层线缆 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"ME Covered Cable - Gray","tr":"ME包层线缆 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"ME Covered Cable - Light Gray","tr":"ME包层线缆 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"540":{"name":"ME Backbone Covered Cable - White","tr":"ME超密包层线缆 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"ME Covered Cable - Cyan","tr":"ME包层线缆 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"541":{"name":"ME Backbone Covered Cable - Orange","tr":"ME超密包层线缆 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"ME Covered Cable - Purple","tr":"ME包层线缆 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"542":{"name":"ME Backbone Covered Cable - Magenta","tr":"ME超密包层线缆 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"ME Covered Cable - Blue","tr":"ME包层线缆 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"543":{"name":"ME Backbone Covered Cable - Light Blue","tr":"ME超密包层线缆 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"ME Covered Cable - Brown","tr":"ME包层线缆 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"544":{"name":"ME Backbone Covered Cable - Yellow","tr":"ME超密包层线缆 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"ME Covered Cable - Green","tr":"ME包层线缆 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"545":{"name":"ME Backbone Covered Cable - Lime","tr":"ME超密包层线缆 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"ME Covered Cable - Red","tr":"ME包层线缆 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"546":{"name":"ME Backbone Covered Cable - Pink","tr":"ME超密包层线缆 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"ME Covered Cable - Black","tr":"ME包层线缆 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"547":{"name":"ME Backbone Covered Cable - Gray","tr":"ME超密包层线缆 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"ME Covered Cable - Fluix","tr":"ME包层线缆 - Fluix默认色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"548":{"name":"ME Backbone Covered Cable - Light Gray","tr":"ME超密包层线缆 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"549":{"name":"ME Backbone Covered Cable - Cyan","tr":"ME超密包层线缆 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"550":{"name":"ME Backbone Covered Cable - Purple","tr":"ME超密包层线缆 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"551":{"name":"ME Backbone Covered Cable - Blue","tr":"ME超密包层线缆 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"ME Smart Cable - White","tr":"ME智能线缆 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"552":{"name":"ME Backbone Covered Cable - Brown","tr":"ME超密包层线缆 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"ME Smart Cable - Orange","tr":"ME智能线缆 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"553":{"name":"ME Backbone Covered Cable - Green","tr":"ME超密包层线缆 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"ME Smart Cable - Magenta","tr":"ME智能线缆 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"554":{"name":"ME Backbone Covered Cable - Red","tr":"ME超密包层线缆 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"ME Smart Cable - Light Blue","tr":"ME智能线缆 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"555":{"name":"ME Backbone Covered Cable - Black","tr":"ME超密包层线缆 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"300":{"name":"ME Annihilation Plane","tr":"ME破坏面板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"ME Smart Cable - Yellow","tr":"ME智能线缆 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"556":{"name":"ME Backbone Covered Cable - Fluix","tr":"ME超密包层线缆 - Fluix默认色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"ME Smart Cable - Lime","tr":"ME智能线缆 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"301":{"name":"ME Identity Annihilation Plane","tr":"ME精准破坏面板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"name":"ME Smart Cable - Pink","tr":"ME智能线缆 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"ME Smart Cable - Gray","tr":"ME智能线缆 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"ME Smart Cable - Light Gray","tr":"ME智能线缆 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"560":{"name":"ME Backbone Smart Cable - White","tr":"ME超密智能线缆 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"ME Smart Cable - Cyan","tr":"ME智能线缆 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"561":{"name":"ME Backbone Smart Cable - Orange","tr":"ME超密智能线缆 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"name":"ME Smart Cable - Purple","tr":"ME智能线缆 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"562":{"name":"ME Backbone Smart Cable - Magenta","tr":"ME超密智能线缆 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"ME Smart Cable - Blue","tr":"ME智能线缆 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"563":{"name":"ME Backbone Smart Cable - Light Blue","tr":"ME超密智能线缆 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"name":"ME Smart Cable - Brown","tr":"ME智能线缆 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"564":{"name":"ME Backbone Smart Cable - Yellow","tr":"ME超密智能线缆 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"ME Smart Cable - Green","tr":"ME智能线缆 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"565":{"name":"ME Backbone Smart Cable - Lime","tr":"ME超密智能线缆 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"ME Smart Cable - Red","tr":"ME智能线缆 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"566":{"name":"ME Backbone Smart Cable - Pink","tr":"ME超密智能线缆 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"name":"ME Smart Cable - Black","tr":"ME智能线缆 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"567":{"name":"ME Backbone Smart Cable - Gray","tr":"ME超密智能线缆 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"ME Smart Cable - Fluix","tr":"ME智能线缆 - Fluix默认色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"568":{"name":"ME Backbone Smart Cable - Light Gray","tr":"ME超密智能线缆 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"569":{"name":"ME Backbone Smart Cable - Cyan","tr":"ME超密智能线缆 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"570":{"name":"ME Backbone Smart Cable - Purple","tr":"ME超密智能线缆 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"571":{"name":"ME Backbone Smart Cable - Blue","tr":"ME超密智能线缆 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"name":"ME Dense Smart Cable - White","tr":"ME致密智能线缆 - 白色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"572":{"name":"ME Backbone Smart Cable - Brown","tr":"ME超密智能线缆 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"name":"ME Dense Smart Cable - Orange","tr":"ME致密智能线缆 - 橙色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"573":{"name":"ME Backbone Smart Cable - Green","tr":"ME超密智能线缆 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"name":"ME Dense Smart Cable - Magenta","tr":"ME致密智能线缆 - 品红","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"574":{"name":"ME Backbone Smart Cable - Red","tr":"ME超密智能线缆 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"name":"ME Dense Smart Cable - Light Blue","tr":"ME致密智能线缆 - 淡蓝","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"575":{"name":"ME Backbone Smart Cable - Black","tr":"ME超密智能线缆 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"name":"ME Dense Smart Cable - Yellow","tr":"ME致密智能线缆 - 黄色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"576":{"name":"ME Backbone Smart Cable - Fluix","tr":"ME超密智能线缆 - Fluix默认色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"320":{"name":"ME Formation Plane","tr":"ME成型面板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"name":"ME Dense Smart Cable - Lime","tr":"ME致密智能线缆 - 黄绿","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"name":"ME Dense Smart Cable - Pink","tr":"ME致密智能线缆 - 粉色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"name":"ME Dense Smart Cable - Gray","tr":"ME致密智能线缆 - 灰色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"name":"ME Dense Smart Cable - Light Gray","tr":"ME致密智能线缆 - 淡灰","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"name":"ME Dense Smart Cable - Cyan","tr":"ME致密智能线缆 - 青色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"name":"ME Dense Smart Cable - Purple","tr":"ME致密智能线缆 - 紫色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"name":"ME Dense Smart Cable - Blue","tr":"ME致密智能线缆 - 蓝色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"name":"ME Dense Smart Cable - Brown","tr":"ME致密智能线缆 - 棕色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"name":"ME Dense Smart Cable - Green","tr":"ME致密智能线缆 - 绿色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"name":"ME Dense Smart Cable - Red","tr":"ME致密智能线缆 - 红色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"name":"ME Dense Smart Cable - Black","tr":"ME致密智能线缆 - 黑色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"name":"ME Dense Smart Cable - Fluix","tr":"ME致密智能线缆 - Fluix默认色","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"name":"ME Toggle Bus","tr":"ME触发总线","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"340":{"name":"ME Pattern Terminal","tr":"ME样板终端","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"name":"ME Inverted Toggle Bus","tr":"ME反相触发总线","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"360":{"name":"ME Crafting Terminal","tr":"ME合成终端","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"120":{"name":"Cable Anchor","tr":"线缆锚","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"380":{"name":"ME Terminal","tr":"ME终端","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"140":{"name":"Quartz Fiber","tr":"石英纤维","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"400":{"name":"ME Storage Monitor","tr":"ME存储监控器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"160":{"oreDict":["itemIlluminatedPanel"],"name":"Bright Illuminated Panel","tr":"亮色照明面板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"420":{"name":"ME Conversion Monitor","tr":"ME交换监控器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"180":{"oreDict":["itemIlluminatedPanel"],"name":"Illuminated Panel","tr":"照明面板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"440":{"name":"ME Interface","tr":"ME接口","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"200":{"oreDict":["itemIlluminatedPanel"],"name":"Dark Illuminated Panel","tr":"暗色照明面板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"460":{"name":"P2P Tunnel - ME","tr":"P2P通道 - ME","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"461":{"name":"P2P Tunnel - Redstone","tr":"P2P通道 - 红石","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"462":{"name":"P2P Tunnel - Item","tr":"P2P通道 - 物品","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"463":{"name":"P2P Tunnel - Fluid","tr":"P2P通道 - 流体","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"466":{"name":"P2P Tunnel - RF","tr":"P2P通道 - RF","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"467":{"name":"P2P Tunnel - Light","tr":"P2P通道 - 光","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"468":{"name":"P2P Tunnel - OpenComputers","tr":"P2P通道 - OC","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"470":{"name":"P2P Tunnel - GT EU","tr":"P2P通道 - GT EU","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"471":{"name":"P2P Tunnel - ME Interface","tr":"P2P通道 - ME接口","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"220":{"name":"ME Storage Bus","tr":"ME存储总线","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"480":{"name":"ME Interface Terminal","tr":"ME接口终端","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"240":{"name":"ME Import Bus","tr":"ME输入总线","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"500":{"name":"ME Processing Pattern Terminal","tr":"ME增广样板终端","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cherryItem":{"0":{"oreDict":["cropCherry"," listAllfruit"],"name":"Cherry","tr":"樱桃","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:crossed_decoration":{"2":{"name":"Thorny Bush","tr":"荆棘丛","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Infested Bush","tr":"腐化灌木","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Infested Fern","tr":"腐化蕨","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Infested Grass","tr":"腐化草地","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Lilyfire","tr":"火莲","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Tall Violet Moss","tr":"高大的紫苔","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Moderate Violet Moss","tr":"中型紫苔","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Short Violet Moss","tr":"矮紫苔","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Flameweed","tr":"灼火之草","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Flameweed","tr":"灼火之草","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Flameweed","tr":"灼火之草","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Shadow Orchid","tr":"影兰","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ThirtyKCell":{"0":{"name":"30K Cell","tr":"30K冷却单元外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:snailcookedItem":{"0":{"oreDict":["foodSnailcooked"],"name":"Cooked Snail","tr":"熟蜗牛","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:nugget":{"0":{"oreDict":["nuggetDraconium"],"name":"Draconium Nugget","tr":"龙粒","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["nuggetDraconiumAwakened"],"name":"Awakened Draconium Nugget","tr":"觉醒龙粒","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.7":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.6":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellInconel792":{"0":{"oreDict":["cellInconel792"],"name":"镍铬基合金-792单元","tr":"镍铬基合金-792单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureFluorcaphite":{"0":{"oreDict":["dustImpureFluorcaphite"],"name":"Impure Fluorcaphite Dust","tr":"含杂氟碳铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:blockSalisMundus":{"0":{"oreDict":["blockSalisMundus"],"name":"Salis Mundus Block","tr":"世界盐块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:researchNote":{"0":{"name":"Sengir\u0027s Notes","tr":"Sengir之笔记","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemEnergySensorKit":{"0":{"name":"Energy Sensor Kit","tr":"电力传感工具","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsiron":{"0":{"name":"Iron-Covered Pipe","tr":"铁质管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RuneOfVigorFragment":{"0":{"name":"Rune of Vigor Fragment","tr":"活力符文碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFancyWorkbench2":{"0":{"name":"Pine Fancy Workbench","tr":"松树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Fancy Workbench","tr":"李子树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Fancy Workbench","tr":"杨树木精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Fancy Workbench","tr":"红杉精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Fancy Workbench","tr":"柚木精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Fancy Workbench","tr":"核桃树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Fancy Workbench","tr":"崖豆树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Fancy Workbench","tr":"柳树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:snailrawItem":{"0":{"oreDict":["foodSnailraw"," listAllfishraw"],"name":"Raw Snail","tr":"生蜗牛","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCinobiteA243":{"0":{"oreDict":["dustTinyCinobiteA243"],"name":"小撮西诺柏A243粉","tr":"小撮西诺柏A243粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyFluoriteF":{"0":{"oreDict":["dustTinyFluoriteF"],"name":"小撮氟石(F)粉","tr":"小撮氟石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLithiumPeroxide":{"0":{"oreDict":["dustLithiumPeroxide"],"name":"过氧化锂粉","tr":"过氧化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:evanescent":{"0":{"name":"tile.ThaumicHorizons_evanescent.name","tr":"tile.ThaumicHorizons_evanescent.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:dagger.wood":{"0":{"name":"Wooden Dagger","tr":"木匕首","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":60}},"miscutils:crushedPurifiedGeikielite":{"0":{"oreDict":["crushedPurifiedGeikielite"],"name":"Purified Crushed Geikielite Ore","tr":"洗净的镁钛矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:wolfaltar":{"0":{"name":"Wolf Altar","tr":"犬神雕像","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorclothChestGem":{"0":{"name":"Robes of the Stratosphere","tr":"云霄塔之法袍","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockWhiteMetal":{"0":{"oreDict":["blockWhiteMetal"],"name":"白物质块","tr":"白物质块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:pitgrass":{"0":{"name":"Grass","tr":"草方块","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearDysprosium":{"0":{"oreDict":["gearGtDysprosium"," gearDysprosium"],"name":"镝齿轮","tr":"镝齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamWalnut":{"0":{"name":"Walnut","tr":"核桃","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCrocoite":{"0":{"oreDict":["dustSmallCrocoite"],"name":"小堆赤铅矿粉","tr":"小堆赤铅矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.1":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.0":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.3":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.2":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.5":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:assemblymachine":{"0":{"name":"Assembly Machine","tr":"熔合机","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_stairs.4":{"0":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Stairs","tr":"大理石楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamgooseberrySapling":{"0":{"name":"Gooseberry Sapling","tr":"醋栗树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_MagicFood":{"0":{"name":"Sweetwart","tr":"糖渍地狱疣","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Nethercake","tr":"地狱蛋糕","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.oilCanisterPartial":{"1":{"name":"Filled Oil Canister","tr":"油罐(满)","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1002},"1001":{"name":"Empty Canister","tr":"空罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1002}},"miscutils:itemHotIngotEnergyCrystal":{"0":{"oreDict":["ingotHotEnergyCrystal"],"name":"热能量水晶锭","tr":"热能量水晶锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:demonicTelepositionFocus":{"0":{"name":"Demonic Teleposition Focus","tr":"[恶魔]传送方位核心","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.MytrylDualCompressedPlates":{"0":{"name":"Compressed Dual Mytryl Plates","tr":"航天双层深空秘银板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateIncoloy020":{"0":{"oreDict":["plateIncoloy020"],"name":"耐热铬铁合金-020板","tr":"耐热铬铁合金-020板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:dissEnchanter":{"0":{"name":"Disenchanter","tr":"祛魔台","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:beetseedItem":{"0":{"oreDict":["seedBeet"," listAllseed"],"name":"Beet Seed","tr":"甜菜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.refinery":{"0":{"name":"Refinery","tr":"精炼机","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongDysprosium":{"0":{"oreDict":["stickLongDysprosium"],"name":"长镝杆","tr":"长镝杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemCompassStone":{"0":{"name":"Sinister Lodestone","tr":"凶险磁石","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA4SlabFull":{"0":{"name":"Metamorphic Swamp Stone Slab","tr":"变质沼泽石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:applejellysandwichItem":{"0":{"oreDict":["foodApplejellysandwich"],"name":"Apple Jelly Sandwich","tr":"苹果果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSoulsand":{"0":{"name":"Crated Soul Sand","tr":"装箱的灵魂沙","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewTungstenTitaniumCarbide":{"0":{"oreDict":["screwTungstenTitaniumCarbide"],"name":"碳化钨钛合金螺丝","tr":"碳化钨钛合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedRedstone":{"0":{"name":"Crated Redstone","tr":"装箱的红石","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:material":{"0":{"name":"Diffusion Core","tr":"扩散核心","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Coalescence Core","tr":"聚集核心","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["gearIron"],"name":"Iron Gear","tr":"铁齿轮","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:squeegee":{"0":{"name":"Squeegee","tr":"刮刀","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:cranberrysmoothieItem":{"0":{"oreDict":["foodCranberrysmoothie"," listAllsmoothie"],"name":"Cranberry Smoothie","tr":"蔓越莓冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"holoinventory:fluidRenderFakeItem":{"0":{"name":"item.fluidRenderFakeItem.name","tr":"item.fluidRenderFakeItem.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltRhenium":{"0":{"oreDict":["boltRhenium"],"name":"铼螺栓","tr":"铼螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.05.name":{"1":{"name":"§9Charge Pack [IV]§7","tr":"§9充电工具包[IV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [IV]§7","tr":"§9充电工具包[IV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:2Ethylanthraquinone":{"0":{"oreDict":["cell2Ethylanthraquinone"],"name":"2-乙基蒽醌单元","tr":"2-乙基蒽醌单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.trophy":{"0":{"name":"Hydra Trophy","tr":"九头蛇战利品","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Naga Trophy","tr":"娜迦战利品","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Lich Trophy","tr":"巫妖战利品","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Ur-ghast Trophy","tr":"暮色恶魂战利品","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Snow Queen Trophy","tr":"冰雪女王战利品","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:apricotjellyItem":{"0":{"oreDict":["foodApricotjelly"],"name":"Apricot Jelly","tr":"杏桃果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraTrees:stairs":{"0":{"name":"Fir Stairs","tr":"冷杉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cedar Stairs","tr":"雪松楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hemlock Stairs","tr":"铁杉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cypress Stairs","tr":"柏树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fig Stairs","tr":"无花果楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Beech Stairs","tr":"山毛榉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Alder Stairs","tr":"桤木楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hazel Stairs","tr":"榛树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hornbeam Stairs","tr":"鹅耳枥楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Box Stairs","tr":"黄杨楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Butternut Stairs","tr":"灰核桃树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Hickory Stairs","tr":"山核桃楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Whitebeam Stairs","tr":"白面子树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Elm Stairs","tr":"榆树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Apple Stairs","tr":"苹果树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Yew Stairs","tr":"红豆杉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Pear Stairs","tr":"梨树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Hawthorn Stairs","tr":"山楂树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Rowan Stairs","tr":"花楸楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Elder Stairs","tr":"接骨木楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"Maclura Stairs","tr":"桑橙楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"Syzgium Stairs","tr":"蒲桃楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"Brazilwood Stairs","tr":"巴西红木楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"Logwood Stairs","tr":"墨水树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"Iroko Stairs","tr":"大绿柄桑木楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"Locust Stairs","tr":"刺槐楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"Eucalyptus Stairs","tr":"桉树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"Purpleheart Stairs","tr":"紫心檀木楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"Ash Stairs","tr":"梣树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"name":"Holly Stairs","tr":"冬青楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"Olive Stairs","tr":"橄榄树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"Sweetgum Stairs","tr":"枫香树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"Rosewood Stairs","tr":"蔷薇木楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"Gingko Stairs","tr":"银杏楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"Pink Ivory Stairs","tr":"象牙粉红木楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:cwoodpressureplate":{"0":{"name":"Pressure Plate","tr":"压力板","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellRhugnor":{"0":{"oreDict":["cellRhugnor"],"name":"鲁格诺单元","tr":"鲁格诺单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodInconel792":{"0":{"oreDict":["stickInconel792"],"name":"镍铬基合金-792杆","tr":"镍铬基合金-792杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:CoalGas":{"0":{"oreDict":["cellCoalGas"],"name":"煤气单元","tr":"煤气单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pomegranatejuiceItem":{"0":{"oreDict":["listAlljuice"," foodPomegranatejuice"],"name":"Pomegranate Juice","tr":"石榴汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:gooseberryjellyItem":{"0":{"oreDict":["foodGooseberryjelly"],"name":"Gooseberry Jelly","tr":"醋栗果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleRhodium":{"0":{"oreDict":["plateDoubleRhodium"],"name":"双重铑板","tr":"双重铑板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"WitchingGadgets:item.WG_Cluster":{"0":{"oreDict":["clusterUraninite"],"name":"Native 晶质铀矿 Cluster","tr":"晶质铀矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["clusterGallium"],"name":"Native 镓 Cluster","tr":"镓矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["clusterAsbestos"],"name":"Native 石棉 Cluster","tr":"石棉矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["clusterGreenSapphire"],"name":"Native 绿色蓝宝石 Cluster","tr":"绿色蓝宝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["clusterAmber"],"name":"Native 琥珀 Cluster","tr":"琥珀矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["clusterRutile"],"name":"Native 金红石 Cluster","tr":"金红石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["clusterYellowLimonite"],"name":"Native 黄褐铁矿 Cluster","tr":"黄褐铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["clusterKyanite"],"name":"Native 蓝晶石 Cluster","tr":"蓝晶石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["clusterForcicium"],"name":"Native 力之宝石 Cluster","tr":"力之宝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["clusterCobalt"],"name":"Native 钴 Cluster","tr":"钴矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["clusterQuartzite"],"name":"Native 石英岩 Cluster","tr":"石英岩矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["clusterStrontium"],"name":"Native 锶 Cluster","tr":"锶矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["clusterSphalerite"],"name":"Native 闪锌矿 Cluster","tr":"闪锌矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["clusterPentlandite"],"name":"Native 镍黄铁矿 Cluster","tr":"镍黄铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["clusterMeteoricIron"],"name":"Native 陨铁 Cluster","tr":"陨铁矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["clusterVyroxeres"],"name":"Native 幽冥剧毒结晶 Cluster","tr":"幽冥剧毒结晶矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["clusterVanadiumMagnetite"],"name":"Native 钒磁铁矿 Cluster","tr":"钒磁铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["clusterGlauconite"],"name":"Native 海绿石 Cluster","tr":"海绿石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["clusterBandedIron"],"name":"Native 带状铁矿 Cluster","tr":"带状铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["clusterVermiculite"],"name":"Native 蛭石 Cluster","tr":"蛭石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["clusterBismuth"],"name":"Native 铋 Cluster","tr":"铋矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["clusterCaesium"],"name":"Native 铯 Cluster","tr":"铯矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["clusterNiter"],"name":"Native 硝石 Cluster","tr":"硝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["clusterKaolinite"],"name":"Native 高岭石 Cluster","tr":"高岭石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["clusterIlmenite"],"name":"Native 钛铁矿 Cluster","tr":"钛铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["clusterSoapstone"],"name":"Native 皂石 Cluster","tr":"皂石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["clusterSodalite"],"name":"Native 方钠石 Cluster","tr":"方钠石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["clusterCallistoIce"],"name":"Native 木卫四冰 Cluster","tr":"木卫四冰矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["clusterGraniticMineralSand"],"name":"Native 花岗岩矿砂 Cluster","tr":"花岗岩矿砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["clusterCryolite"],"name":"Native 冰晶石 Cluster","tr":"冰晶石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["clusterBrownLimonite"],"name":"Native 棕褐铁矿 Cluster","tr":"棕褐铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["clusterTungstate"],"name":"Native 钨酸锂 Cluster","tr":"钨酸锂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["clusterRoastedIron"],"name":"Native 焙烧铁 Cluster","tr":"焙烧铁矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["clusterBeryllium"],"name":"Native 铍 Cluster","tr":"铍矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["clusterScandium"],"name":"Native 钪 Cluster","tr":"钪矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["clusterBentonite"],"name":"Native 膨润土 Cluster","tr":"膨润土矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["clusterLepidolite"],"name":"Native 锂云母 Cluster","tr":"锂云母矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["clusterElectrotine"],"name":"Native 蓝石 Cluster","tr":"蓝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["clusterJade"],"name":"Native 玉 Cluster","tr":"玉矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["clusterChrysotile"],"name":"Native 白石棉 Cluster","tr":"白石棉矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["clusterMica"],"name":"Native 云母 Cluster","tr":"云母矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["clusterDilithium"],"name":"Native 双锂 Cluster","tr":"双锂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["clusterArsenic"],"name":"Native 砷 Cluster","tr":"砷矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["clusterWulfenite"],"name":"Native 钼铅矿 Cluster","tr":"钼铅矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["clusterOilsands"],"name":"Native 油砂 Cluster","tr":"油砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["clusterDolomite"],"name":"Native 白云石 Cluster","tr":"白云石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"oreDict":["clusterLithium"],"name":"Native 锂 Cluster","tr":"锂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["clusterRubracium"],"name":"Native 褐铜 Cluster","tr":"褐铜矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["clusterBorax"],"name":"Native 硼砂 Cluster","tr":"硼砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["clusterLedox"],"name":"Native 深铅 Cluster","tr":"深铅矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"oreDict":["clusterGarnierite"],"name":"Native 硅镁镍矿 Cluster","tr":"硅镁镍矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["clusterRubidium"],"name":"Native 铷 Cluster","tr":"铷矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["clusterTartarite"],"name":"Native 溶火之石 Cluster","tr":"溶火之石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["clusterSalt"],"name":"Native 盐 Cluster","tr":"盐矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["clusterNetherStar"],"name":"Native 下界之星 Cluster","tr":"下界之星矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["clusterCalciumHydride"],"name":"Native 氢化钙 Cluster","tr":"氢化钙矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["clusterSapphire"],"name":"Native 蓝宝石 Cluster","tr":"蓝宝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["clusterPhosphate"],"name":"Native 磷酸盐 Cluster","tr":"磷酸盐矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["clusterGalena"],"name":"Native 方铅矿 Cluster","tr":"方铅矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["clusterLead"],"name":"Native 铅 Cluster","tr":"铅矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["clusterSpessartine"],"name":"Native 锰铝榴石 Cluster","tr":"锰铝榴石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"oreDict":["clusterEmery"],"name":"Native 金刚砂 Cluster","tr":"金刚砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["clusterSulfur"],"name":"Native 硫 Cluster","tr":"硫矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["clusterDiatomite"],"name":"Native 硅藻土 Cluster","tr":"硅藻土矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["clusterAntimony"],"name":"Native 锑 Cluster","tr":"锑矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["clusterBasalticMineralSand"],"name":"Native 玄武岩矿砂 Cluster","tr":"玄武岩矿砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["clusterGarnetSand"],"name":"Native 石榴石矿砂 Cluster","tr":"石榴石矿砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"oreDict":["clusterQuartz"],"name":"Native 石英 Cluster","tr":"石英矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"oreDict":["clusterSteel"],"name":"Native 钢 Cluster","tr":"钢矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["clusterAdamantium"],"name":"Native 精金 Cluster","tr":"精金矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["clusterZinc"],"name":"Native 锌 Cluster","tr":"锌矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["clusterJasper"],"name":"Native 碧玉 Cluster","tr":"碧玉矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"oreDict":["clusterMagnesite"],"name":"Native 菱镁矿 Cluster","tr":"菱镁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"oreDict":["clusterTantalite"],"name":"Native 钽铁矿 Cluster","tr":"钽铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"oreDict":["clusterGraphite"],"name":"Native 石墨 Cluster","tr":"石墨矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"oreDict":["clusterTin"],"name":"Native 锡 Cluster","tr":"锡矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"oreDict":["clusterNickel"],"name":"Native 镍 Cluster","tr":"镍矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["clusterUvarovite"],"name":"Native 钙铬榴石 Cluster","tr":"钙铬榴石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["clusterCobaltite"],"name":"Native 辉钴矿 Cluster","tr":"辉钴矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["clusterAlduorite"],"name":"Native 神秘蓝金 Cluster","tr":"神秘蓝金矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"oreDict":["clusterCertusQuartz"],"name":"Native 赛特斯石英 Cluster","tr":"赛特斯石英矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"oreDict":["clusterAlmandine"],"name":"Native 铁铝榴石 Cluster","tr":"铁铝榴石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"oreDict":["clusterPumice"],"name":"Native 浮岩 Cluster","tr":"浮岩矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"oreDict":["clusterPowellite"],"name":"Native 钼钙矿 Cluster","tr":"钼钙矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"oreDict":["clusterMonazite"],"name":"Native 独居石 Cluster","tr":"独居石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["clusterVanadium"],"name":"Native 钒 Cluster","tr":"钒矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"oreDict":["clusterAmethyst"],"name":"Native 紫水晶 Cluster","tr":"紫水晶矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"oreDict":["clusterVinteum"],"name":"Native 温特姆 Cluster","tr":"温特姆矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["clusterNetherQuartz"],"name":"Native 下界石英 Cluster","tr":"下界石英矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["clusterBauxite"],"name":"Native 铝土矿 Cluster","tr":"铝土矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["clusterTetrahedrite"],"name":"Native 黝铜矿 Cluster","tr":"黝铜矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["clusterAlunite"],"name":"Native 明矾石 Cluster","tr":"明矾石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["clusterLazurite"],"name":"Native 蓝金石 Cluster","tr":"蓝金石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["clusterCinnabar"],"name":"Native 朱砂 Cluster","tr":"朱砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["clusterRockSalt"],"name":"Native 岩盐 Cluster","tr":"岩盐矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["clusterCoal"],"name":"Native 煤 Cluster","tr":"煤矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["clusterCassiteriteSand"],"name":"Native 锡石矿砂 Cluster","tr":"锡石矿砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"oreDict":["clusterManyullyn"],"name":"Native 玛玉灵 Cluster","tr":"玛玉灵矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"98":{"oreDict":["clusterTricalciumPhosphate"],"name":"Native 磷酸三钙 Cluster","tr":"磷酸三钙矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"99":{"oreDict":["clusterMytryl"],"name":"Native 深空秘银 Cluster","tr":"深空秘银矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"oreDict":["clusterMagnesium"],"name":"Native 镁 Cluster","tr":"镁矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"oreDict":["clusterCopper"],"name":"Native 铜 Cluster","tr":"铜矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"102":{"oreDict":["clusterCadmium"],"name":"Native 镉 Cluster","tr":"镉矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"103":{"oreDict":["clusterGold"],"name":"Native 金 Cluster","tr":"金矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["clusterPyrolusite"],"name":"Native 软锰矿 Cluster","tr":"软锰矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"105":{"oreDict":["clusterScheelite"],"name":"Native 白钨矿 Cluster","tr":"白钨矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"106":{"oreDict":["clusterAluminium"],"name":"Native 铝 Cluster","tr":"铝矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"107":{"oreDict":["clusterZeolite"],"name":"Native 沸石 Cluster","tr":"沸石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"108":{"oreDict":["clusterMolybdenum"],"name":"Native 钼 Cluster","tr":"钼矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"109":{"oreDict":["clusterSilver"],"name":"Native 银 Cluster","tr":"银矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"110":{"oreDict":["clusterRedstone"],"name":"Native 红石 Cluster","tr":"红石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"111":{"oreDict":["clusterRoastedNickel"],"name":"Native 焙烧镍 Cluster","tr":"焙烧镍矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"112":{"oreDict":["clusterFirestone"],"name":"Native 火石 Cluster","tr":"火石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"113":{"oreDict":["clusterForcillium"],"name":"Native 力场宝石 Cluster","tr":"力场宝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"114":{"oreDict":["clusterChalcopyrite"],"name":"Native 黄铜矿 Cluster","tr":"黄铜矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"115":{"oreDict":["clusterSaltpeter"],"name":"Native 硝石 Cluster","tr":"硝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"116":{"oreDict":["clusterTanzanite"],"name":"Native 坦桑石 Cluster","tr":"坦桑石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"117":{"oreDict":["clusterLapis"],"name":"Native 青金石 Cluster","tr":"青金石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"118":{"oreDict":["clusterApatite"],"name":"Native 磷灰石 Cluster","tr":"磷灰石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"119":{"oreDict":["clusterPigIron"],"name":"Native 生铁 Cluster","tr":"生铁矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"120":{"oreDict":["clusterFullersEarth"],"name":"Native 漂白土 Cluster","tr":"漂白土矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"121":{"oreDict":["clusterSpodumene"],"name":"Native 锂辉石 Cluster","tr":"锂辉石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"122":{"oreDict":["clusterMalachite"],"name":"Native 孔雀石 Cluster","tr":"孔雀石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"123":{"oreDict":["clusterGlauconiteSand"],"name":"Native 海绿石矿砂 Cluster","tr":"海绿石矿砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"124":{"oreDict":["clusterPyrochlore"],"name":"Native 烧绿石 Cluster","tr":"烧绿石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"125":{"oreDict":["clusterMirabilite"],"name":"Native 芒硝 Cluster","tr":"芒硝矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"126":{"oreDict":["clusterChromite"],"name":"Native 铬铁矿 Cluster","tr":"铬铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"127":{"oreDict":["clusterBedrockium"],"name":"Native 基岩 Cluster","tr":"基岩矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"128":{"oreDict":["clusterAndradite"],"name":"Native 钙铁榴石 Cluster","tr":"钙铁榴石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"129":{"oreDict":["clusterCalciumDisilicide"],"name":"Native 二硅化钙 Cluster","tr":"二硅化钙矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"130":{"oreDict":["clusterNeodymium"],"name":"Native 钕 Cluster","tr":"钕矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"131":{"oreDict":["clusterForce"],"name":"Native 力量 Cluster","tr":"力量矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"132":{"oreDict":["clusterDuralumin"],"name":"Native 硬铝 Cluster","tr":"硬铝矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"133":{"oreDict":["clusterPitchblende"],"name":"Native 沥青铀矿 Cluster","tr":"沥青铀矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"134":{"oreDict":["clusterOpal"],"name":"Native 蛋白石 Cluster","tr":"蛋白石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"135":{"oreDict":["clusterIron"],"name":"Native 铁 Cluster","tr":"铁矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"136":{"oreDict":["clusterCheese"],"name":"Native 奶酪 Cluster","tr":"奶酪矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"137":{"oreDict":["clusterTrona"],"name":"Native 天然碱 Cluster","tr":"天然碱矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"138":{"oreDict":["clusterMagnetite"],"name":"Native 磁铁矿 Cluster","tr":"磁铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"139":{"oreDict":["clusterEmerald"],"name":"Native 绿宝石 Cluster","tr":"绿宝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"140":{"oreDict":["clusterCeruclase"],"name":"Native 暗影秘银 Cluster","tr":"暗影秘银矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"141":{"oreDict":["clusterChrome"],"name":"Native 铬 Cluster","tr":"铬矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"142":{"oreDict":["clusterMolybdenite"],"name":"Native 辉钼矿 Cluster","tr":"辉钼矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"143":{"oreDict":["clusterCassiterite"],"name":"Native 锡石 Cluster","tr":"锡石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"144":{"oreDict":["clusterRuby"],"name":"Native 红宝石 Cluster","tr":"红宝石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"145":{"oreDict":["clusterPollucite"],"name":"Native 铯榴石 Cluster","tr":"铯榴石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"146":{"oreDict":["clusterStibnite"],"name":"Native 辉锑矿 Cluster","tr":"辉锑矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"147":{"oreDict":["clusterShadowIron"],"name":"Native 暗影铁 Cluster","tr":"暗影铁矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"148":{"oreDict":["clusterOlivine"],"name":"Native 橄榄石 Cluster","tr":"橄榄石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"149":{"oreDict":["clusterBastnasite"],"name":"Native 氟碳镧铈矿 Cluster","tr":"氟碳镧铈矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"150":{"oreDict":["clusterTalc"],"name":"Native 滑石 Cluster","tr":"滑石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"151":{"oreDict":["clusterDarkIron"],"name":"Native 玄铁 Cluster","tr":"玄铁矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"152":{"oreDict":["clusterMithril"],"name":"Native 秘银 Cluster","tr":"秘银矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"153":{"oreDict":["clusterArdite"],"name":"Native 阿迪特 Cluster","tr":"阿迪特矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"154":{"oreDict":["clusterGypsum"],"name":"Native 石膏 Cluster","tr":"石膏矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"155":{"oreDict":["clusterDiamond"],"name":"Native 钻石 Cluster","tr":"钻石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"156":{"oreDict":["clusterBarite"],"name":"Native 重晶石 Cluster","tr":"重晶石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"157":{"oreDict":["clusterOrichalcum"],"name":"Native 山铜 Cluster","tr":"山铜矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"158":{"oreDict":["clusterChargedCertusQuartz"],"name":"Native 充能赛特斯石英 Cluster","tr":"充能赛特斯石英矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"159":{"oreDict":["clusterCalcite"],"name":"Native 方解石 Cluster","tr":"方解石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"160":{"oreDict":["clusterPerlite"],"name":"Native 珍珠岩 Cluster","tr":"珍珠岩矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"161":{"oreDict":["clusterGrossular"],"name":"Native 钙铝榴石 Cluster","tr":"钙铝榴石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"162":{"oreDict":["clusterTantalum"],"name":"Native 钽 Cluster","tr":"钽矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"163":{"oreDict":["clusterWollastonite"],"name":"Native 硅灰石 Cluster","tr":"硅灰石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"164":{"oreDict":["clusterPyrite"],"name":"Native 黄铁矿 Cluster","tr":"黄铁矿矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"165":{"oreDict":["clusterQuartzSand"],"name":"Native 石英矿砂 Cluster","tr":"石英矿砂矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"166":{"oreDict":["clusterVulcanite"],"name":"Native 胶木 Cluster","tr":"胶木矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"167":{"oreDict":["clusterRealgar"],"name":"Native 雄黄 Cluster","tr":"雄黄矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"168":{"oreDict":["clusterPyrope"],"name":"Native 镁铝榴石 Cluster","tr":"镁铝榴石矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"169":{"oreDict":["clusterBlueTopaz"],"name":"Native 蓝黄玉 Cluster","tr":"蓝黄玉矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"170":{"oreDict":["clusterTopaz"],"name":"Native 黄玉 Cluster","tr":"黄玉矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"171":{"oreDict":["clusterManganese"],"name":"Native 锰 Cluster","tr":"锰矿簇","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:honeylemonlambItem":{"0":{"oreDict":["foodHoneylemonlamb"],"name":"Honey Lemon Lamb","tr":"蜜汁柠檬羔羊肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:ceresglowstone":{"0":{"oreDict":["glowstone"," rockCeres"," rockSpace"],"name":"Ceres Glowstone","tr":"谷神星萤石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:fantasyblock2":{"0":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fantasy Block","tr":"幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetRunite":{"0":{"oreDict":["nuggetRunite"],"name":"虚恩粒","tr":"虚恩粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"personalspace:personalPortal_migration2":{"0":{"name":"Legacy Personal Dimension Portal (UW Migration)","tr":"继承私人维度传送门(UtilityWorlds迁移)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:holidaycakeItem":{"0":{"oreDict":["foodHolidaycake"],"name":"Holiday Cake","tr":"节日蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"personalspace:personalPortal_migration3":{"0":{"name":"Legacy Personal Dimension Portal (UW Migration)","tr":"继承私人维度传送门(UtilityWorlds迁移)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantumCircuit":{"0":{"oreDict":["circuitQuantum"],"name":"Quantum Circuit","tr":"量子电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"personalspace:personalPortal_migration4":{"0":{"name":"Legacy Personal Dimension Portal (UW Migration)","tr":"继承私人维度传送门(UtilityWorlds迁移)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:livingwood1SlabFull":{"0":{"name":"Livingwood Plank Slab","tr":"活木板台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:netherrack":{"1":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Netherrack","tr":"地狱岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemTerraWart":{"0":{"name":"Terra Wart","tr":"大地疣","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:butterflyGE":{"0":{"name":"Speckled Wood","tr":"斑木蝶","tab":"林业|蝴蝶","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustRunite":{"0":{"oreDict":["dustRunite"],"name":"虚恩粉","tr":"虚恩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:WG_StoneDevice":{"0":{"name":"Ethereal Wall","tr":"虚无砖块","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ageing Stone","tr":"生长之石","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:spectreHelmet":{"0":{"name":"Spectre Helmet","tr":"灵魂头盔","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":386}},"TaintedMagic:ItemWarpedGoggles":{"0":{"name":"Warped Goggles of Revealing","tr":"暗影揭示之护目镜","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":501}},"miscutils:itemBoltAstralTitanium":{"0":{"oreDict":["boltAstralTitanium"],"name":"星体钛螺栓","tr":"星体钛螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsCraftingLogisticsMk2":{"0":{"name":"Crafting Logistics Pipe Mk2","tr":"合成物流管道Mk2","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsCraftingLogisticsMk3":{"0":{"name":"Crafting Logistics Pipe Mk3","tr":"合成物流管道Mk3","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewIncoloyDS":{"0":{"oreDict":["screwIncoloyDS"],"name":"耐热铬铁合金-DS螺丝","tr":"耐热铬铁合金-DS螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:energyBazookaSecondTier":{"0":{"name":"Energy Bazooka II","tr":"能量火箭筒 II","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":251}},"openmodularturrets:grenadeCraftable":{"0":{"name":"Ammo - Grenade","tr":"弹药-榴弹","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockStairsEldritch":{"0":{"name":"Ancient Stone Stairs","tr":"荒古楼梯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:sprinkler":{"0":{"name":"Sprinkler","tr":"洒水器","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaThorium232":{"0":{"oreDict":["cellPlasmaThorium232"],"name":"钍-232等离子体单元","tr":"钍-232等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrophyPedestal":{"0":{"name":"Trophy Pedestal","tr":"战利品宝座","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Latent Trophy Pedestal","tr":"未激活的战利品宝座","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedChromeIronPlate":{"0":{"name":"Reinforced Chrome-Iron Plate","tr":"强化铬铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"Genetics:registry":{"0":{"name":"Registry","tr":"图鉴","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:cart.cargo":{"0":{"name":"Cargo Cart","tr":"货运车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"appliedenergistics2:tile.BlockCableBus":{"0":{"name":"AE2 Cable and/or Bus","tr":"AE线缆/总线","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:xpTalisman":{"0":{"name":"Talisman of Withhold","tr":"汇魔护身符","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:blockCloud_seed_concentrated":{"0":{"name":"Concentrated Cloud Seed","tr":"浓缩云之精华","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBerylliumHydroxide":{"0":{"oreDict":["cellBerylliumHydroxide"],"name":"氢氧化铍单元","tr":"氢氧化铍单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:generic":{"0":{"name":"Glider Wing","tr":"滑翔翼","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Beam","tr":"连杆","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Crane Engine","tr":"起重机引擎","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Crane Magnet","tr":"起重机磁铁","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Line","tr":"缆绳","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Map Controller Module","tr":"地图调节器模块","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Map Memory Module","tr":"地图存储模块","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Assistant\u0027s base","tr":"助力底座","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Unprepared Stencil","tr":"空白模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Sketching Pencil","tr":"绘图笔","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockChargepad":{"0":{"name":"Charge Pad (BatBox)","tr":"充电座","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"1":{"name":"Charge Pad (CESU)","tr":"CESU充电座","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"2":{"name":"Charge Pad (MFE)","tr":"MFE充电座","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"3":{"name":"Charge Pad (MFSU)","tr":"MFSU充电座","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedtoolHeadWrench":{"10112":{"oreDict":["toolHeadWrenchShirabon"],"name":"调律源金扳手顶","tr":"调律源金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["toolHeadWrenchBismutite"],"name":"泡铋扳手顶","tr":"泡铋扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["toolHeadWrenchZirconium"],"name":"锆扳手顶","tr":"锆扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["toolHeadWrenchCubicZirconia"],"name":"立方氧化锆扳手顶","tr":"立方氧化锆扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["toolHeadWrenchFluor-Buergerite"],"name":"氟铁电气石扳手顶","tr":"氟铁电气石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["toolHeadWrenchChromo-Alumino-Povondraite"],"name":"铬铝电气石扳手顶","tr":"铬铝电气石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["toolHeadWrenchVanadio-Oxy-Dravite"],"name":"钒镁电气石扳手顶","tr":"钒镁电气石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["toolHeadWrenchOlenite"],"name":"铝电气石扳手顶","tr":"铝电气石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["toolHeadWrenchRedZircon"],"name":"红锆石扳手顶","tr":"红锆石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["toolHeadWrenchSalt"],"name":"盐扳手顶","tr":"盐扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["toolHeadWrenchSpodumene"],"name":"锂辉石扳手顶","tr":"锂辉石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["toolHeadWrenchRockSalt"],"name":"岩盐扳手顶","tr":"岩盐扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["toolHeadWrenchFayalite"],"name":"铁橄榄石扳手顶","tr":"铁橄榄石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["toolHeadWrenchForsterite"],"name":"镁橄榄石扳手顶","tr":"镁橄榄石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["toolHeadWrenchHedenbergite"],"name":"钙铁辉石扳手顶","tr":"钙铁辉石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["toolHeadWrenchThorium232"],"name":"钍-232扳手顶","tr":"钍-232扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["toolHeadWrenchPrasiolite"],"name":"堇云石扳手顶","tr":"堇云石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["toolHeadWrenchMagnetoResonatic"],"name":"磁共振石扳手顶","tr":"磁共振石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["toolHeadWrenchAtomicSeparationCatalyst"],"name":"原子分离催化剂扳手顶","tr":"原子分离催化剂扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["toolHeadWrenchCalifornium"],"name":"锎扳手顶","tr":"锎扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["toolHeadWrenchOrundum"],"name":"合成玉扳手顶","tr":"合成玉扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["toolHeadWrenchCalcium"],"name":"钙扳手顶","tr":"钙扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["toolHeadWrenchExtremelyUnstableNaquadah"],"name":"极不稳定硅岩扳手顶","tr":"极不稳定硅岩扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["toolHeadWrenchBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK扳手顶","tr":"BArTiMaEuSNeK扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["toolHeadWrenchPTMEGElastomer"],"name":"PTMEG橡胶扳手顶","tr":"PTMEG橡胶扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["toolHeadWrenchRuthenium"],"name":"钌扳手顶","tr":"钌扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["toolHeadWrenchZn-ThAlloy"],"name":"锌钍合金扳手顶","tr":"锌钍合金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["toolHeadWrenchRhodium"],"name":"铑扳手顶","tr":"铑扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["toolHeadWrenchRhodium-PlatedPalladium"],"name":"镀铑钯扳手顶","tr":"镀铑钯扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["toolHeadWrenchTiberium"],"name":"泰伯利亚扳手顶","tr":"泰伯利亚扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["toolHeadWrenchRuridit"],"name":"钌铱合金扳手顶","tr":"钌铱合金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["toolHeadWrenchFluorspar"],"name":"氟石扳手顶","tr":"氟石扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["toolHeadWrenchHighDurabilityCompoundSteel"],"name":"高耐久性复合钢扳手顶","tr":"高耐久性复合钢扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["toolHeadWrenchAdemicSteel"],"name":"硬钢扳手顶","tr":"硬钢扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["toolHeadWrenchZircaloy-4"],"name":"锆锡合金-4扳手顶","tr":"锆锡合金-4扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["toolHeadWrenchZircaloy-2"],"name":"锆锡合金-2扳手顶","tr":"锆锡合金-2扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["toolHeadWrenchIncoloy-903"],"name":"耐热铬铁合金-903扳手顶","tr":"耐热铬铁合金-903扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["toolHeadWrenchAdamantiumAlloy"],"name":"精金合金扳手顶","tr":"精金合金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["toolHeadWrenchFluorophlogopite"],"name":"氟金云母扳手顶","tr":"氟金云母扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["toolHeadWrenchCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)扳手顶","tr":"掺铈镥铝石榴石 (Ce:LuAG)扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["toolHeadWrenchMagnesia"],"name":"氧化镁扳手顶","tr":"氧化镁扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["toolHeadWrenchMAR-M200Steel"],"name":"MAR-M200特种钢扳手顶","tr":"MAR-M200特种钢扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["toolHeadWrenchMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢扳手顶","tr":"MAR-Ce-M200特种钢扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["toolHeadWrenchLithiumChloride"],"name":"氯化锂扳手顶","tr":"氯化锂扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["toolHeadWrenchSignalium"],"name":"信素扳手顶","tr":"信素扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["toolHeadWrenchLumiium"],"name":"流明扳手顶","tr":"流明扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["toolHeadWrenchArtherium-Sn"],"name":"阿瑟锡扳手顶","tr":"阿瑟锡扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["toolHeadWrenchTanmolyiumBeta-C"],"name":"钛钼合金β-C扳手顶","tr":"钛钼合金β-C扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["toolHeadWrenchDalisenite"],"name":"大力合金扳手顶","tr":"大力合金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["toolHeadWrenchHafnium"],"name":"铪扳手顶","tr":"铪扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["toolHeadWrenchHikarium"],"name":"光素扳手顶","tr":"光素扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["toolHeadWrenchTairitsu"],"name":"对立合金扳手顶","tr":"对立合金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["toolHeadWrenchPreciousMetalsAlloy"],"name":"稀有金属合金扳手顶","tr":"稀有金属合金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["toolHeadWrenchEnrichedNaquadahAlloy"],"name":"富集硅岩合金扳手顶","tr":"富集硅岩合金扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["toolHeadWrenchMetastableOganesson"],"name":"亚稳态鿫扳手顶","tr":"亚稳态鿫扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["toolHeadWrenchZirconium"],"name":"锆扳手顶","tr":"锆扳手顶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cherryjellysandwichItem":{"0":{"oreDict":["foodCherryjellysandwich"],"name":"Cherry Jelly Sandwich","tr":"樱桃果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:titleIcon":{"0":{"name":"Spawn Blue Slime","tr":"生成 蓝色史莱姆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn King Slime","tr":"生成 史莱姆王","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:batterItem":{"0":{"oreDict":["foodBatter"],"name":"Batter","tr":"面糊","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaBottle":{"0":{"name":"Mana in a Bottle","tr":"瓶装魔力","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":7}},"harvestcraft:keylimepieItem":{"0":{"oreDict":["foodKeylimepie"],"name":"Keylime Pie","tr":"酸橙派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:mirandablocks":{"0":{"oreDict":["rockMiranda"," rockSpace"],"name":"Miranda Surface Block","tr":"天卫五地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockMiranda"," rockSpace"],"name":"Miranda Subsurface Block","tr":"天卫五地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockMiranda"," rockSpace"],"name":"Miranda Stone","tr":"天卫五石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreAnyIron"," oreIron"],"name":"Iron Ore","tr":"天卫五铁矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightlyPlate":{"0":{"name":"Knightly Plate","tr":"骑士胸甲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":321}},"cookingforblockheads:light_gray_kitchen_floor":{"0":{"name":"Light Gray Kitchen Floor","tr":"淡灰厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetThorium232":{"0":{"oreDict":["nuggetThorium232"],"name":"钍-232粒","tr":"钍-232粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:campfire":{"0":{"name":"Mage\u0027s Campfire","tr":"奥术营火","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:ghost_amulet":{"0":{"name":"Ghost Amulet (Impure)","tr":"幽魂护符(不纯)","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Ghost Amulet","tr":"幽魂护符","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:dreamwood0Wall":{"0":{"name":"Dreamwood Wall","tr":"梦之木墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:tape":{"0":{"name":"Packing Tape","tr":"打包带","tab":"储物抽屉","type":"Item","maxStackSize":1,"maxDurability":9}},"Forestry:cratedBirchWood":{"0":{"name":"Crated Birch Wood","tr":"装箱的白桦木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:hexPlating":{"0":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Hex Plating","tr":"六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:disease":{"0":{"name":"Disease","tr":"瘟疫","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_quartzBlock":{"0":{"name":"Colored Block of Quartz (White Frequency)","tr":"染色 石英块 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Colored Block of Quartz (Orange Frequency)","tr":"染色 石英块 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Colored Block of Quartz (Magenta Frequency)","tr":"染色 石英块 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Colored Block of Quartz (Light Blue Frequency)","tr":"染色 石英块 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Colored Block of Quartz (Yellow Frequency)","tr":"染色 石英块 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Colored Block of Quartz (Lime Frequency)","tr":"染色 石英块 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Colored Block of Quartz (Pink Frequency)","tr":"染色 石英块 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Colored Block of Quartz (Gray Frequency)","tr":"染色 石英块 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Colored Block of Quartz (Light Gray Frequency)","tr":"染色 石英块 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Colored Block of Quartz (Cyan Frequency)","tr":"染色 石英块 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Colored Block of Quartz (Purple Frequency)","tr":"染色 石英块 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Colored Block of Quartz (Blue Frequency)","tr":"染色 石英块 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Colored Block of Quartz (Brown Frequency)","tr":"染色 石英块 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Colored Block of Quartz (Green Frequency)","tr":"染色 石英块 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Colored Block of Quartz (Red Frequency)","tr":"染色 石英块 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Colored Block of Quartz (Black Frequency)","tr":"染色 石英块 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorHazmatHelmet":{"0":{"name":"Scuba Helmet","tr":"防化头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":65}},"witchery:snowslab":{"0":{"name":"Snow Slab","tr":"雪台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:persimmonyogurtItem":{"0":{"oreDict":["foodPersimmonyogurt"],"name":"Persimmon Yogurt","tr":"柿子酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedBariteRd":{"0":{"oreDict":["crushedPurifiedBariteRd"],"name":"Purified Crushed Barite (Rd) Ore","tr":"洗净的重晶石(Rd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.bucketOil":{"0":{"name":"Oil Bucket","tr":"石油桶","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:dustImpurePerroudite":{"0":{"oreDict":["dustImpurePerroudite"],"name":"Impure Perroudite Dust","tr":"含杂溴硫银汞粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:itemCarpentersChisel":{"0":{"name":"Carpenter\u0027s Chisel","tr":"木匠凿","tab":"木匠方块","type":"Item","maxStackSize":1,"maxDurability":401}},"Automagy:blockRedcrystal":{"0":{"name":"Redcrystal","tr":"红晶","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioRack":{"0":{"name":"Oak Tool Rack","tr":"橡木工具架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Tool Rack","tr":"云杉木工具架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Tool Rack","tr":"白桦木工具架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Tool Rack","tr":"丛林木工具架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Tool Rack","tr":"金合欢工具架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Tool Rack","tr":"深色橡木工具架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Tool Rack","tr":"镶框工具架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Triple_Craft":{"0":{"name":"Double Compressed Crafting Table","tr":"二重压缩工作台","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:vampirehelmet":{"0":{"name":"Vampire Helmet","tr":"吸血鬼之盔","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":166}},"ThaumicHorizons:lightSolar":{"0":{"name":"Light Orb","tr":"光球","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IndustryFrame":{"0":{"name":"Industry Bee Frame","tr":"工业蜜蜂框架","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZirconiumTetrafluoride":{"0":{"oreDict":["dustTinyZirconiumTetrafluoride"],"name":"小撮四氟化锆粉","tr":"小撮四氟化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetCalifornium":{"0":{"oreDict":["nuggetCalifornium"],"name":"锎粒","tr":"锎粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:dreamwood1SlabFull":{"0":{"name":"Dreamwood Plank Slab","tr":"梦之木台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorTumbaga":{"0":{"oreDict":["rotorTumbaga"],"name":"铜金合金转子","tr":"铜金合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleRhugnor":{"0":{"oreDict":["plateDoubleRhugnor"],"name":"双重鲁格诺板","tr":"双重鲁格诺板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Avaritia:Ultimate_Stew":{"0":{"name":"Ultimate Stew","tr":"超级煲","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorBotmium":{"0":{"oreDict":["rotorBotmium"],"name":"博特姆合金转子","tr":"博特姆合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:berry.nether":{"0":{"oreDict":["listAllfruit"," listAllberry"," cropBlightberry"],"name":"Blightberry","tr":"枯萎莓","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["listAllfruit"," listAllberry"," cropDuskberry"],"name":"Duskberry","tr":"黄昏莓","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["listAllfruit"," listAllberry"," cropSkyberry"],"name":"Skyberry","tr":"天莓","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["listAllfruit"," listAllberry"," cropStingberry"],"name":"Stingberry","tr":"刺莓","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:ash":{"0":{"oreDict":["dustAsh"],"name":"Ash","tr":"灰烬","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearNiobiumCarbide":{"0":{"oreDict":["gearGtNiobiumCarbide"," gearNiobiumCarbide"],"name":"碳化铌齿轮","tr":"碳化铌齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallChromaticGlass":{"0":{"oreDict":["dustSmallChromaticGlass"],"name":"小堆彩色玻璃粉","tr":"小堆彩色玻璃粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:NetherPressurePlate":{"0":{"name":"Pressure Plate","tr":"压力板","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamDragonfruit":{"0":{"name":"Dragonfruit","tr":"火龙果","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedBogearth":{"0":{"name":"Crated Bog Earth","tr":"装箱的沼泽泥","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement5Slab":{"0":{"name":"Green Portuguese Pavement Slab","tr":"绿色葡萄牙台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolaterollItem":{"0":{"oreDict":["foodChocolateroll"],"name":"Chocolate Roll","tr":"巧克力蛋卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundHelmetWater":{"0":{"name":"Water Omega Helmet","tr":"水`欧米伽头盔","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"Botania:pavement1SlabFull":{"0":{"name":"Black Portuguese Pavement Slab","tr":"黑色葡萄牙台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:tomatoseedItem":{"0":{"oreDict":["listAllseed"," seedTomato"],"name":"Tomato Seed","tr":"番茄种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedZirkelite":{"0":{"oreDict":["crushedCentrifugedZirkelite"],"name":"Centrifuged Crushed Zirkelite Ore","tr":"离心钛锆钍矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:item.thaumiumGrafter":{"0":{"name":"Thaumium Grafter","tr":"奥法剪枝器","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":16}},"ironchestminecarts:minecart_chest_gold":{"0":{"name":"Minecart with Gold Chest","tr":"金箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2NuclearControl:ItemEnergyArrayLocationCard":{"0":{"name":"Energy Array Location Card","tr":"电力阵列定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:blackberryseedItem":{"0":{"oreDict":["seedBlackberry"," listAllseed"],"name":"Blackberry Seed","tr":"黑莓种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyComancheite":{"0":{"oreDict":["dustTinyComancheite"],"name":"小撮溴汞石粉","tr":"小撮溴汞石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:scanner":{"0":{"name":"Portable Scanner","tr":"便携扫描仪","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:soul_fragment":{"0":{"name":"Soul Fragment","tr":"灵魂碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LightBinding":{"0":{"name":"Light Binding","tr":"莹光粘合剂","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicMachina:nodeTransmodifier":{"0":{"name":"Node Transmodifier","tr":"节点传输调节器","tab":"神秘力学","type":"Block","maxStackSize":64,"maxDurability":1}},"computronics:computronics.digitalReceiverBox":{"0":{"name":"Digital Signal Receiver Box","tr":"数字化信号接收器","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"tectech:Eye of Harmony Renderer":{"0":{"name":"Eye of Harmony Renderer","tr":"鸿蒙之眼渲染器","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:darkQuartzSlabFull":{"0":{"name":"Smokey Quartz Slab","tr":"烟黑石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grilledasparagusItem":{"0":{"oreDict":["foodGrilledasparagus"],"name":"Grilled Asparagus","tr":"烤芦笋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:chamberTierThree":{"0":{"name":"Chamber (Tier 3)","tr":"弹膛(三级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:mouldyWheat":{"0":{"name":"Mouldy Wheat","tr":"发霉小麦","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone10SlabFull":{"0":{"name":"Diorite Brick Slab","tr":"闪长岩砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bananasmoothieItem":{"0":{"oreDict":["foodBananasmoothie"," listAllsmoothie"],"name":"Banana Smoothie","tr":"香蕉冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:moderatelyCrackedNaquadahGas":{"0":{"name":"Moderately Cracked Naquadah Gas","tr":"中度裂化硅岩气","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedGlassLense":{"0":{"oreDict":["lensReinforcedGlass"],"name":"Reinforced Glass Lens","tr":"防爆玻璃镜片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:cloudinabottle":{"0":{"name":"Cloud In A Bottle","tr":"瓶装云朵","tab":"凿工艺|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockReactorAccessHatch":{"0":{"name":"Reactor Access Hatch","tr":"反应堆访问接口","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellThoriumDepletedMoltenSaltTSalt":{"0":{"oreDict":["cellThoriumDepletedMoltenSaltTSalt"],"name":"枯竭钍熔盐单元","tr":"枯竭钍熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:wafflesItem":{"0":{"oreDict":["foodWaffles"],"name":"Waffles","tr":"华夫饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:customBrick1Stairs":{"0":{"name":"Soul Brick Stairs","tr":"灵魂砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeRing":{"0":{"name":"Casting Form (Ring Shape)","tr":"铸形(环)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustIodine":{"0":{"oreDict":["dustIodine"],"name":"碘粉","tr":"碘粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:mortar":{"0":{"oreDict":["pestleAndMortar"],"name":"Mortar and Pestle","tr":"杵与臼","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":257}},"dreamcraft:item.Empty540SpCell":{"0":{"name":"540K Space Cell","tr":"540k空间冷却单元外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:medieval_door":{"0":{"name":"Medieval Door","tr":"中世纪门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:pollenFertile":{"0":{"name":"White Poplar Pollen","tr":"白杨花粉","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.CinderFurnaceIdle":{"0":{"name":"Cinder Furnace","tr":"余烬熔炉","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"kekztech:kekztech_gdcceramicelectrolyteunit_block":{"0":{"name":"GDC Ceramic Electrolyte Unit","tr":"钆铈陶瓷电解质单元","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:bronzeblock":{"0":{"name":"Block of Bronze","tr":"青铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Bronze","tr":"青铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Bronze","tr":"青铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Bronze","tr":"青铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Bronze","tr":"青铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Bronze","tr":"青铜块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:manaGlassPane":{"0":{"name":"Managlass Pane","tr":"魔力玻璃板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:armourForge":{"0":{"name":"Soul Armour Forge","tr":"灵魂装甲锻造石","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:AlchemicalWizardrytile.blockSpellModifier":{"0":{"name":"Default Spell Modifier","tr":"法术修饰符:默认","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Offensive Spell Modifier","tr":"法术修饰符:攻势","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Defensive Spell Modifier","tr":"法术修饰符:防守","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Environmental Spell Modifier","tr":"法术修饰符:环境","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedplateTriple":{"96":{"oreDict":["plateTripleAdemicSteel"],"name":"三重硬钢板","tr":"三重硬钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["plateTripleShirabon"],"name":"三重调律源金板","tr":"三重调律源金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["plateTripleAdamantiumAlloy"],"name":"三重精金合金板","tr":"三重精金合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["plateTripleAtomicSeparationCatalyst"],"name":"三重原子分离催化剂板","tr":"三重原子分离催化剂板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["plateTripleExtremelyUnstableNaquadah"],"name":"三重极不稳定硅岩板","tr":"三重极不稳定硅岩板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["plateTripleMAR-M200Steel"],"name":"三重MAR-M200特种钢板","tr":"三重MAR-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["plateTripleMAR-Ce-M200Steel"],"name":"三重MAR-Ce-M200特种钢板","tr":"三重MAR-Ce-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["plateTripleRhodium-PlatedPalladium"],"name":"三重镀铑钯板","tr":"三重镀铑钯板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["plateTripleRuridit"],"name":"三重钌铱合金板","tr":"三重钌铱合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["plateTripleHighDurabilityCompoundSteel"],"name":"三重高耐久性复合钢板","tr":"三重高耐久性复合钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["plateTriplePreciousMetalsAlloy"],"name":"三重稀有金属合金板","tr":"三重稀有金属合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["plateTripleEnrichedNaquadahAlloy"],"name":"三重富集硅岩合金板","tr":"三重富集硅岩合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["plateTripleMetastableOganesson"],"name":"三重亚稳态鿫板","tr":"三重亚稳态鿫板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.lumium":{"0":{"name":"Molten Lumium","tr":"熔融流明","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySodiumFluoride":{"0":{"oreDict":["dustTinySodiumFluoride"],"name":"小撮氟化钠粉","tr":"小撮氟化钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTitansteel":{"0":{"oreDict":["ringTitansteel"],"name":"泰坦精钢环","tr":"泰坦精钢环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:spamcompressedsaltBlockalt":{"0":{"oreDict":["blockSalt"],"name":"Compressed Salt Block","tr":"压缩盐块","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ArcaneShardFragment":{"0":{"name":"Arcane Shard Fragment","tr":"奥术碎片碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.rocketFins":{"0":{"name":"Rocket Fins","tr":"火箭尾鳍","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamCinnamon":{"0":{"oreDict":["logWood"],"name":"Cinnamon Wood","tr":"肉桂","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pambeanCrop":{"0":{"name":"Bean Crop","tr":"豆子","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockGreedyChest":{"0":{"name":"Greedy Chest","tr":"贪婪箱子","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:apricotyogurtItem":{"0":{"oreDict":["foodApricotyogurt"],"name":"Apricot Yogurt","tr":"杏仁酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:resources":{"0":{"oreDict":["oreApatite"],"name":"Apatite Ore","tr":"磷灰石矿石","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemAlkalusDisk":{"0":{"name":"Alkalus Disk","tr":"Alkalus圆盘","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":252}},"miscutils:itemHotIngotArceusAlloy2B":{"0":{"oreDict":["ingotHotArceusAlloy2B"],"name":"热阿尔宙斯合金2B锭","tr":"热阿尔宙斯合金2B锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:voidAnvil":{"0":{"name":"Void metal Anvil","tr":"虚空金属砧","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Slightly Damaged Void metal Anvil","tr":"轻微损坏的虚空金属砧","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Very Damaged Void metal Anvil","tr":"严重损坏的虚空金属砧","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fierySword":{"0":{"name":"Fiery Sword","tr":"炽热的铁剑","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1025}},"dreamcraft:item.MysteriousCrystalGemFlawless":{"0":{"name":"Flawless Unknown Crystal","tr":"无瑕的神秘水晶","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sacrificialKnife":{"0":{"name":"Sacrificial Knife","tr":"牺牲匕首","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"DraconicEvolution:draconicCore":{"0":{"name":"Draconic Core","tr":"龙芯","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:shimmerwoodPlanks":{"0":{"name":"Shimmerwood Planks","tr":"微光木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Skull_Sword":{"0":{"name":"Skullfire Sword","tr":"炽焰之啄颅剑","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":1562}},"miscutils:itemDustSmallGreenockite":{"0":{"oreDict":["dustSmallGreenockite"],"name":"小堆硫镉粉","tr":"小堆硫镉粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.QuantBow":{"0":{"name":"Quant Bow","tr":"量子弓","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":577}},"miscutils:itemScrewTantalloy61":{"0":{"oreDict":["screwTantalloy61"],"name":"钽钨合金-61螺丝","tr":"钽钨合金-61螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewTantalloy60":{"0":{"oreDict":["screwTantalloy60"],"name":"钽钨合金-60螺丝","tr":"钽钨合金-60螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaLogSakura":{"0":{"name":"Crated Sakura Wood","tr":"装箱的樱花树原木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Glowshroom":{"0":{"name":"Green Glowshroom","tr":"绿色荧光菇","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Purple Glowshroom","tr":"紫色荧光菇","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Blue Glowshroom","tr":"蓝色荧光菇","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:chaosCrystal":{"0":{"name":"Chaos Crystal","tr":"混沌晶体","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.meteoricIronRaw":{"0":{"name":"Raw Meteoric Iron","tr":"生陨铁锭","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteBlock":{"0":{"oreDict":["blockThauminite"],"name":"Thauminite Block","tr":"秘晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorHS188A":{"0":{"oreDict":["rotorHS188A"],"name":"HS188-A转子","tr":"HS188-A转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemPowerConduitEndergy":{"0":{"name":"Clay Compound Energy Conduit","tr":"复合粘土能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Iron Energy Conduit","tr":"铁制能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Aluminum Energy Conduit","tr":"铝制能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Gold Energy Conduit","tr":"金制能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Copper Energy Conduit","tr":"铜制能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Silver Energy Conduit","tr":"银制能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Electrum Energy Conduit","tr":"琥珀金能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Energetic Silver Energy Conduit","tr":"充能银能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Crystalline Energy Conduit","tr":"晶化合金能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Crystalline Pink Slime Energy Conduit","tr":"晶化粉红史莱姆能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Melodic Energy Conduit","tr":"旋律合金能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Stellar Energy Conduit","tr":"恒星合金能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemPlutoniumSmall":{"0":{"name":"Tiny Pile of Plutonium","tr":"小撮钚","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.ChiseledQuartzSlabBlock.double":{"0":{"name":"Chiseled Certus Quartz Slabs","tr":"錾制赛特斯石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteHoe":{"0":{"name":"Thauminite Hoe","tr":"秘晶锄","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":975}},"EnderIO:itemFunctionUpgrade":{"0":{"name":"Remote Awareness Upgrade","tr":"远程接入升级","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorRhodium":{"0":{"oreDict":["rotorRhodium"],"name":"铑转子","tr":"铑转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingMaple":{"0":{"name":"Crated Maple Sapling","tr":"装箱的枫树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSaplings":{"0":{"name":"Crated Oak Sapling","tr":"装箱的橡树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.mintBlock":{"0":{"name":"Mint ⓪","tr":"Mint ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Mint ①","tr":"Mint ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mint ②","tr":"Mint ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Mint ③","tr":"Mint ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Mint ④","tr":"Mint ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Mint ⑤","tr":"Mint ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mint ⑥","tr":"Mint ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Mint ⑦","tr":"Mint ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mint ⑧","tr":"Mint ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Mint ⑨","tr":"Mint ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Mint ⑩","tr":"Mint ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mint ⑪","tr":"Mint ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mint ⑫","tr":"Mint ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mint ⑬","tr":"Mint ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Mint ⑭","tr":"Mint ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Mint ⑮","tr":"Mint ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDoorTwilight":{"0":{"name":"tile.TFDoorTwilight.0.name","tr":"tile.TFDoorTwilight.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:multi_fluid_storage1024":{"0":{"name":"§d1024k§r ME Multi-Fluid Storage Cell","tr":"§d1024k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockFrameGtHastelloyC276":{"0":{"oreDict":["frameGtHastelloyC276"],"name":"哈斯特洛依合金-C276框架","tr":"哈斯特洛依合金-C276框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:boatThaumium":{"0":{"name":"Thaumium Boat","tr":"神秘船","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:revealingHelm":{"0":{"name":"Helmet of Revealing","tr":"揭示之头盔","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":501}},"miscutils:itemPlateDoubleTalonite":{"0":{"oreDict":["plateDoubleTalonite"],"name":"双重铬钴磷酸盐合金板","tr":"双重铬钴磷酸盐合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:pamChestnut":{"0":{"name":"Chestnut","tr":"栗子","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesCarts:BlockDistributor":{"0":{"name":"External Distributor","tr":"外部分配器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreCrocoite":{"0":{"oreDict":["oreCrocoite"],"name":"Crocoite Ore","tr":"赤铅矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:loamNoWeed":{"0":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Loam","tr":"肥沃花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodMaragingSteel300":{"0":{"oreDict":["stickMaragingSteel300"],"name":"马氏体时效钢300杆","tr":"马氏体时效钢300杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:phialExtra":{"0":{"name":"Phial of Enchanter\u0027s Concentrate","tr":"玻璃安瓿(附魔精华液)","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:papayayogurtItem":{"0":{"oreDict":["foodPapayayogurt"],"name":"Papaya Yogurt","tr":"木瓜酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:wax":{"0":{"oreDict":["waxMagical"],"name":"Magic Wax","tr":"魔力蜜蜡","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Soulful Wax","tr":"灵魂蜜蜡","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["waxMagical"],"name":"Amnesic Wax","tr":"遗忘蜜蜡","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hardenedleatherleggingsItem":{"0":{"name":"Hardened Leather Leggings","tr":"硬化皮革护腿","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":226}},"GalacticraftAmunRa:item.battery-ender":{"0":{"name":"Advanced Battery","tr":"高级电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Advanced Battery","tr":"高级电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101}},"GalaxySpace:europaunderwatergeyser":{"0":{"oreDict":["rockSpace"," rockEuropa"],"name":"Underwater Europa Geyser","tr":"木卫二水下喷泉","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableOutputName":{"0":{"name":"Redstone Emitter","tr":"红石信号发射器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"structurelib:item.structurelib.constructableTrigger":{"0":{"name":"Multiblock Structure Hologram Projector","tr":"多方块机器全息投影仪","tab":"结构库","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFMagicLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Timewood Leaves","tr":"时光树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Leaves of Transformation","tr":"变化树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Miner\u0027s Leaves","tr":"矿工树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Sorting Leaves","tr":"分类树引擎","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHeLiCoPtEr":{"0":{"oreDict":["ringHeLiCoPtEr"],"name":"HeLiCoPtEr环","tr":"HeLiCoPtEr环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedring":{"96":{"oreDict":["ringAdemicSteel"],"name":"硬钢环","tr":"硬钢环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["ringShirabon"],"name":"调律源金环","tr":"调律源金环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["ringZircaloy-4"],"name":"锆锡合金-4环","tr":"锆锡合金-4环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["ringZircaloy-2"],"name":"锆锡合金-2环","tr":"锆锡合金-2环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["ringIncoloy-903"],"name":"耐热铬铁合金-903环","tr":"耐热铬铁合金-903环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["ringAdamantiumAlloy"],"name":"精金合金环","tr":"精金合金环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["ringAtomicSeparationCatalyst"],"name":"原子分离催化剂环","tr":"原子分离催化剂环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["ringExtremelyUnstableNaquadah"],"name":"极不稳定硅岩环","tr":"极不稳定硅岩环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["ringMAR-M200Steel"],"name":"MAR-M200特种钢环","tr":"MAR-M200特种钢环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["ringMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢环","tr":"MAR-Ce-M200特种钢环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["ringSignalium"],"name":"信素环","tr":"信素环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["ringLumiium"],"name":"流明环","tr":"流明环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["ringArtherium-Sn"],"name":"阿瑟锡环","tr":"阿瑟锡环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["ringTanmolyiumBeta-C"],"name":"钛钼合金β-C环","tr":"钛钼合金β-C环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["ringRhodium-PlatedPalladium"],"name":"镀铑钯环","tr":"镀铑钯环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["ringDalisenite"],"name":"大力合金环","tr":"大力合金环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["ringTiberium"],"name":"泰伯利亚环","tr":"泰伯利亚环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["ringHikarium"],"name":"光素环","tr":"光素环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["ringRuridit"],"name":"钌铱合金环","tr":"钌铱合金环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["ringTairitsu"],"name":"对立合金环","tr":"对立合金环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["ringHighDurabilityCompoundSteel"],"name":"高耐久性复合钢环","tr":"高耐久性复合钢环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["ringPreciousMetalsAlloy"],"name":"稀有金属合金环","tr":"稀有金属合金环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["ringEnrichedNaquadahAlloy"],"name":"富集硅岩合金环","tr":"富集硅岩合金环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["ringMetastableOganesson"],"name":"亚稳态鿫环","tr":"亚稳态鿫环","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPomegranate":{"0":{"name":"Pomegranate","tr":"石榴","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorCoolantSimple":{"1":{"name":"10k Coolant Cell","tr":"10k冷却单元","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"harvestcraft:custardItem":{"0":{"oreDict":["foodCustard"],"name":"Custard","tr":"奶油蛋羹","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:support_column":{"0":{"name":"Support Column","tr":"支柱","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockHastelloyC276":{"0":{"oreDict":["blockHastelloyC276"],"name":"哈斯特洛依合金-C276块","tr":"哈斯特洛依合金-C276块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:creativeModifier":{"0":{"name":"Creative Tool Modifier","tr":"创造工具强化槽","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.liveRoot":{"0":{"name":"Liveroot","tr":"活根","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:kiwismoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodKiwismoothie"],"name":"Kiwi Smoothie","tr":"猕猴桃冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:trim":{"0":{"name":"Oak Trim","tr":"橡木桥接方块","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Trim","tr":"云杉木桥接方块","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Trim","tr":"白桦木桥接方块","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Trim","tr":"丛林木桥接方块","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Trim","tr":"金合欢木桥接方块","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Trim","tr":"深色橡木桥接方块","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetQuantum":{"0":{"oreDict":["nuggetQuantum"],"name":"量子合金粒","tr":"量子合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:lightLauncher":{"0":{"name":"Luminizer Launcher","tr":"微光发射器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotGrisium":{"0":{"oreDict":["ingotGrisium"],"name":"灰钛合金锭","tr":"灰钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.door_acacia":{"0":{"name":"Acacia Door","tr":"金合欢木门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedScrap":{"0":{"name":"Crated Scrap","tr":"装箱的废料","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:materials":{"0":{"name":"Paper Stack","tr":"纸叠","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Slime Crystal","tr":"史莱姆水晶","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Seared Brick","tr":"焦黑砖","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotCobalt"],"name":"Cobalt Ingot","tr":"钴锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["ingotArdite"],"name":"Ardite Ingot","tr":"阿迪特锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["ingotManyullyn"],"name":"Manyullyn Ingot","tr":"玛玉灵锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Ball of Moss","tr":"苔藓球","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Lava Crystal","tr":"熔岩水晶","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Necrotic Bone","tr":"凋灵之骨","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["ingotCopper"],"name":"Copper Ingot","tr":"铜锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["ingotTin"],"name":"Tin Ingot","tr":"锡锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["ingotAluminum"," ingotAluminium"],"name":"Aluminum Ingot","tr":"铝锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Raw Aluminum","tr":"生铝","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["ingotBronze"],"name":"Bronze Ingot","tr":"青铜锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["ingotAluminumBrass"," ingotAluminiumBrass"],"name":"Aluminum Brass Ingot","tr":"铝黄铜锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["ingotAlumite"],"name":"Alumite Ingot","tr":"耐酸铝锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["ingotSteel"],"name":"Steel Ingot","tr":"钢锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Crystal","tr":"蓝色史莱姆水晶","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["ingotObsidian"],"name":"Obsidian Ingot","tr":"黑曜石锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["nuggetIron"],"name":"Iron Nugget","tr":"铁粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["nuggetCopper"],"name":"Copper Nugget","tr":"铜粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["nuggetTin"],"name":"Tin Nugget","tr":"锡粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["nuggetAluminum"," nuggetAluminium"],"name":"Aluminum Nugget","tr":"铝粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["nuggetAluminumBrass"," nuggetAluminiumBrass"],"name":"Aluminum Brass Nugget","tr":"铝黄铜粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Silky Cloth","tr":"绢布","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Silky Jewel","tr":"精致珠宝","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["nuggetObsidian"],"name":"Obsidian Nugget","tr":"黑曜石粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["nuggetCobalt"],"name":"Cobalt Nugget","tr":"钴粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["nuggetArdite"],"name":"Ardite Nugget","tr":"阿迪特粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["nuggetManyullyn"],"name":"Manyullyn Nugget","tr":"玛玉灵粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["nuggetBronze"],"name":"Bronze Nugget","tr":"青铜粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["nuggetAlumite"],"name":"Alumite Nugget","tr":"耐酸铝粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["nuggetSteel"],"name":"Steel Nugget","tr":"钢粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["ingotPigIron"],"name":"Pig Iron Ingot","tr":"生铁锭","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["nuggetPigIron"],"name":"Pig Iron Platter","tr":"生铁粒","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["itemRawRubber"," slimeball"],"name":"Ball of Glue","tr":"凝胶球","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"Seared Brick","tr":"焦黑砖","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["dustArdite"],"name":"Ardite Dust","tr":"阿迪特粉","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["dustCobalt"],"name":"Cobalt Dust","tr":"钴粉","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["dustAluminium"," dustAluminum"],"name":"Aluminum Dust","tr":"铝粉","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["dustManyullyn"],"name":"Manyullyn Dust","tr":"玛玉灵粉","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["dustAluminiumBrass"," dustAluminumBrass"],"name":"Aluminum Brass Dust","tr":"铝黄铜粉","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Reinforcement","tr":"加固板","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaCsapling":{"0":{"name":"Barnarda C Sapling","tr":"巴纳德C树苗","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyYttrialite":{"0":{"oreDict":["dustTinyYttrialite"],"name":"小撮硅钍钇矿粉","tr":"小撮硅钍钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.ironwoodPick":{"0":{"name":"Ironwood Pick","tr":"铁木镐","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"dreamcraft:item.VibrantAlloyBars":{"0":{"name":"Vibrant Alloy Bars","tr":"脉冲合金栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.moonStoneStairs":{"0":{"name":"Moon Rock Stairs","tr":"月岩楼梯","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustAstralTitanium":{"0":{"oreDict":["dustAstralTitanium"],"name":"星体钛粉","tr":"星体钛粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:record_corruption":{"0":{"name":"Music Disc","tr":"音乐唱片","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemToolPainterGreen":{"0":{"name":"Green Painter","tr":"绿色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"chisel:glass2":{"0":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustRhodium":{"0":{"oreDict":["dustRhodium"],"name":"铑粉","tr":"铑粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:potentiometer":{"0":{"name":"Potentiometer","tr":"电位器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearTellurium":{"0":{"oreDict":["gearGtTellurium"," gearTellurium"],"name":"碲齿轮","tr":"碲齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:glassIronUpgrade":{"0":{"name":"Glass to Iron Tank Upgrade","tr":"储罐升级:玻璃\u003e铁","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:reactorVentGold":{"1":{"name":"Overclocked Heat Vent","tr":"超频散热片","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"miscutils:itemNuggetTitansteel":{"0":{"oreDict":["nuggetTitansteel"],"name":"泰坦精钢粒","tr":"泰坦精钢粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureDemicheleiteBr":{"0":{"oreDict":["dustImpureDemicheleiteBr"],"name":"Impure Demicheleite (Br) Dust","tr":"含杂溴硫铋(Br)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockCraftingUnit":{"0":{"name":"Crafting Unit","tr":"合成单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Crafting Co-Processing Unit","tr":"并行处理单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Quad Core Co-Processing Unit","tr":"4核并行处理单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"16 Core Co-Processing Unit","tr":"16核并行处理单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:newBopDirt":{"0":{"name":"Loamy Dirt","tr":"肥沃土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Coarse Loamy Dirt","tr":"粗糙肥沃土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sandy Dirt","tr":"沙质土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Coarse Sandy Dirt","tr":"粗糙沙质土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Silty Dirt","tr":"粉质土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Coarse Silty Dirt","tr":"粗糙粉质土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:door.sakura":{"0":{"name":"Sakura Door","tr":"樱花树门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemFakeLootbag":{"0":{"name":"Common Treasure","tr":"寻常藏宝袋","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Uncommon Treasure","tr":"非凡藏宝袋","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Rare Treasure","tr":"稀有藏宝袋","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"item.ItemLootBag.3.name","tr":"item.ItemLootBag.3.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"4":{"name":"item.ItemLootBag.4.name","tr":"item.ItemLootBag.4.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"5":{"name":"item.ItemLootBag.5.name","tr":"item.ItemLootBag.5.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"6":{"name":"item.ItemLootBag.6.name","tr":"item.ItemLootBag.6.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"7":{"name":"item.ItemLootBag.7.name","tr":"item.ItemLootBag.7.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"8":{"name":"item.ItemLootBag.8.name","tr":"item.ItemLootBag.8.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"9":{"name":"item.ItemLootBag.9.name","tr":"item.ItemLootBag.9.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"10":{"name":"item.ItemLootBag.10.name","tr":"item.ItemLootBag.10.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"11":{"name":"item.ItemLootBag.11.name","tr":"item.ItemLootBag.11.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"12":{"name":"item.ItemLootBag.12.name","tr":"item.ItemLootBag.12.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"13":{"name":"item.ItemLootBag.13.name","tr":"item.ItemLootBag.13.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"14":{"name":"item.ItemLootBag.14.name","tr":"item.ItemLootBag.14.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"15":{"name":"item.ItemLootBag.15.name","tr":"item.ItemLootBag.15.name","tab":"","type":"Item","maxStackSize":16,"maxDurability":1}},"AWWayofTime:boundBootsEarth":{"0":{"name":"Earth Omega Boots","tr":"土`欧米伽之靴","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"IC2:itemArmorQuantumBoots":{"1":{"name":"QuantumSuit Boots","tr":"量子靴子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"QuantumSuit Boots","tr":"量子靴子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestthenether:fleshrootseedItem":{"0":{"oreDict":["listAllseed"],"name":"Flesh Root Seed","tr":"血肉之根种子","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.RocketControlComputer":{"1":{"name":"Rocket Control Computer Tier 1","tr":"1阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Rocket Control Computer Tier 2","tr":"2阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Rocket Control Computer Tier 3","tr":"3阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Rocket Control Computer Tier 4","tr":"4阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"name":"Moon Buggy Control Computer","tr":"月球车控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Rocket Control Computer Tier 5","tr":"5阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"name":"Cargo Rocket Control Computer","tr":"货运火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Rocket Control Computer Tier 6","tr":"6阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"102":{"name":"Astro Miner Control Computer","tr":"太空采矿机控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Rocket Control Computer Tier 7","tr":"7阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Rocket Control Computer Tier 8","tr":"8阶火箭控制电脑","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearSelenium":{"0":{"oreDict":["gearGtSelenium"," gearSelenium"],"name":"硒齿轮","tr":"硒齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHeliumSpargedUSalt":{"0":{"oreDict":["cellHeliumSpargedUSalt"],"name":"氦涤枯竭铀熔盐单元","tr":"氦涤枯竭铀熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewIodine":{"0":{"oreDict":["screwIodine"],"name":"碘螺丝","tr":"碘螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellSeleniumDioxide":{"0":{"oreDict":["cellSeleniumDioxide"],"name":"二氧化硒单元","tr":"二氧化硒单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTumbaga":{"0":{"oreDict":["dustTumbaga"],"name":"铜金合金粉","tr":"铜金合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPaintedCarpet":{"0":{"name":"Painted Carpet","tr":"喷涂地毯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHastelloyC276":{"0":{"oreDict":["ingotHastelloyC276"],"name":"哈斯特洛依合金-C276锭","tr":"哈斯特洛依合金-C276锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:shroudKey":{"0":{"name":"Concealment Key","tr":"屏蔽钥匙","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyInconel792":{"0":{"oreDict":["dustTinyInconel792"],"name":"小撮镍铬基合金-792粉","tr":"小撮镍铬基合金-792粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.tiger":{"0":{"oreDict":["fenceGateWood"],"name":"Tigerwood Fence Gate","tr":"核桃树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pineapplehamItem":{"0":{"oreDict":["foodPineappleham"],"name":"Pineapple Ham","tr":"菠萝火腿","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:glassPick":{"0":{"name":"Vitreous Pickaxe","tr":"玻璃镐","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":126}},"TwilightForest:tile.TFNagastoneEtchedWeathered":{"0":{"name":"Ruined Etched Nagastone","tr":"Ruined Etched Nagastone","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberryjellyItem":{"0":{"oreDict":["foodRaspberryjelly"],"name":"Raspberry Jelly","tr":"树莓果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustFlorencite":{"0":{"oreDict":["dustFlorencite"],"name":"磷铝铈矿粉","tr":"磷铝铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodStellite":{"0":{"oreDict":["stickStellite"],"name":"铬钴锰钛合金杆","tr":"铬钴锰钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearBotmium":{"0":{"oreDict":["gearGtBotmium"," gearBotmium"],"name":"博特姆合金齿轮","tr":"博特姆合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberrysmoothieItem":{"0":{"oreDict":["foodStrawberrysmoothie"," listAllsmoothie"],"name":"Strawberry Smoothie","tr":"草莓冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cranberrybarItem":{"0":{"oreDict":["foodCranberrybar"],"name":"Cranberry Bar","tr":"蔓越莓棒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.kama.bloodwood":{"0":{"name":"Bloodwood Kama","tr":"血树镰刀","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":351}},"miscutils:itemDustSmallSelenium":{"0":{"oreDict":["dustSmallSelenium"],"name":"小堆硒粉","tr":"小堆硒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotErbium":{"0":{"oreDict":["ingotErbium"],"name":"铒锭","tr":"铒锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:goldTank":{"0":{"name":"Gold Tank","tr":"金储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"betterquesting:observation_station":{"0":{"name":"Object Observation Station (OOS)","tr":"观测站(OOS)","tab":"更好的任务","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemDynamite":{"0":{"name":"Dynamite","tr":"炸药","tab":"工业2","type":"Item","maxStackSize":16,"maxDurability":1}},"harvestcraft:chickenparmasanItem":{"0":{"oreDict":["foodChickenparmasan"],"name":"Chicken Parmesan","tr":"意式帕尔马烤鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustIncoloyDS":{"0":{"oreDict":["dustIncoloyDS"],"name":"耐热铬铁合金-DS粉","tr":"耐热铬铁合金-DS粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.ironwoodShovel":{"0":{"name":"Ironwood Shovel","tr":"铁木铲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"thaumicenergistics:storage.component":{"0":{"name":"1k ME Essentia Storage Component","tr":"1k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"4k ME Essentia Storage Component","tr":"4k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"16k ME Essentia Storage Component","tr":"16k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"64k ME Essentia Storage Component","tr":"64k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"256k ME Essentia Storage Component","tr":"256k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"1024k ME Essentia Storage Component","tr":"1024k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"4096k ME Essentia Storage Component","tr":"4096k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"16384k ME Essentia Storage Component","tr":"16384k-ME源质存储组件","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyThallium":{"0":{"oreDict":["dustTinyThallium"],"name":"小撮铊粉","tr":"小撮铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.HugeLilyPad":{"0":{"name":"Huge Lily Pad","tr":"巨型荷叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersBop:halfDrawers2":{"0":{"oreDict":["drawerBasic"],"name":"Compact Sacred Oak Drawers 1x2","tr":"小型神圣橡树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Cherry Drawers 1x2","tr":"小型樱花树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Dark Drawers 1x2","tr":"小型黑暗树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Fir Drawers 1x2","tr":"小型杉木抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Ethereal Drawers 1x2","tr":"小型天域树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Magic Drawers 1x2","tr":"小型魔法树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Mangrove Drawers 1x2","tr":"小型红树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Palm Drawers 1x2","tr":"小型棕榈树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Redwood Drawers 1x2","tr":"小型红木抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Willow Drawers 1x2","tr":"小型柳树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Pine Drawers 1x2","tr":"小型松树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Hell Bark Drawers 1x2","tr":"小型地狱皮树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Compact Jacaranda Drawers 1x2","tr":"小型蓝花楹树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Compact Mahogany Drawers 1x2","tr":"小型桃花心树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorMOXDualdepleted":{"0":{"name":"Dual Fuel Rod (Depleted MOX)","tr":"双联燃料棒(枯竭MOX)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersBop:halfDrawers4":{"0":{"oreDict":["drawerBasic"],"name":"Compact Sacred Oak Drawers 2x2","tr":"小型神圣橡树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Cherry Drawers 2x2","tr":"小型樱花树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Dark Drawers 2x2","tr":"小型黑暗树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Fir Drawers 2x2","tr":"小型杉木抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Ethereal Drawers 2x2","tr":"小型天域树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Magic Drawers 2x2","tr":"小型魔法树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Mangrove Drawers 2x2","tr":"小型红树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Palm Drawers 2x2","tr":"小型棕榈树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Redwood Drawers 2x2","tr":"小型红木抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Willow Drawers 2x2","tr":"小型柳树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Pine Drawers 2x2","tr":"小型松树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Compact Hell Bark Drawers 2x2","tr":"小型地狱皮树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Compact Jacaranda Drawers 2x2","tr":"小型蓝花楹树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Compact Mahogany Drawers 2x2","tr":"小型桃花心树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:bound_sickle":{"0":{"name":"Bound Sickle","tr":"约束镰刀","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:ediblerootItem":{"0":{"oreDict":["cropEdibleroot"],"name":"Edible Root","tr":"食用块茎","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChromeItemCasing":{"0":{"oreDict":["itemCasingChrome"],"name":"Chrome Item Casing","tr":"铬外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormStick":{"0":{"name":"Casting Form (Stick Mold)","tr":"铸件(杆)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:brew":{"0":{"name":"tile.witchery:brew.name","tr":"tile.witchery:brew.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedtoolHeadSaw":{"10112":{"oreDict":["toolHeadSawShirabon"],"name":"调律源金锯刃","tr":"调律源金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["toolHeadSawBismutite"],"name":"泡铋锯刃","tr":"泡铋锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["toolHeadSawZirconium"],"name":"锆锯刃","tr":"锆锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["toolHeadSawCubicZirconia"],"name":"立方氧化锆锯刃","tr":"立方氧化锆锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["toolHeadSawFluor-Buergerite"],"name":"氟铁电气石锯刃","tr":"氟铁电气石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["toolHeadSawChromo-Alumino-Povondraite"],"name":"铬铝电气石锯刃","tr":"铬铝电气石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["toolHeadSawVanadio-Oxy-Dravite"],"name":"钒镁电气石锯刃","tr":"钒镁电气石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["toolHeadSawOlenite"],"name":"铝电气石锯刃","tr":"铝电气石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["toolHeadSawRedZircon"],"name":"红锆石锯刃","tr":"红锆石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["toolHeadSawSalt"],"name":"盐锯刃","tr":"盐锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["toolHeadSawSpodumene"],"name":"锂辉石锯刃","tr":"锂辉石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["toolHeadSawRockSalt"],"name":"岩盐锯刃","tr":"岩盐锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["toolHeadSawFayalite"],"name":"铁橄榄石锯刃","tr":"铁橄榄石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["toolHeadSawForsterite"],"name":"镁橄榄石锯刃","tr":"镁橄榄石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["toolHeadSawHedenbergite"],"name":"钙铁辉石锯刃","tr":"钙铁辉石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["toolHeadSawThorium232"],"name":"钍-232锯刃","tr":"钍-232锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["toolHeadSawPrasiolite"],"name":"堇云石锯刃","tr":"堇云石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["toolHeadSawMagnetoResonatic"],"name":"磁共振石锯刃","tr":"磁共振石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["toolHeadSawAtomicSeparationCatalyst"],"name":"原子分离催化剂锯刃","tr":"原子分离催化剂锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["toolHeadSawCalifornium"],"name":"锎锯刃","tr":"锎锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["toolHeadSawOrundum"],"name":"合成玉锯刃","tr":"合成玉锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["toolHeadSawCalcium"],"name":"钙锯刃","tr":"钙锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["toolHeadSawExtremelyUnstableNaquadah"],"name":"极不稳定硅岩锯刃","tr":"极不稳定硅岩锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["toolHeadSawBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK锯刃","tr":"BArTiMaEuSNeK锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["toolHeadSawPTMEGElastomer"],"name":"PTMEG橡胶锯刃","tr":"PTMEG橡胶锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["toolHeadSawRuthenium"],"name":"钌锯刃","tr":"钌锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["toolHeadSawZn-ThAlloy"],"name":"锌钍合金锯刃","tr":"锌钍合金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["toolHeadSawRhodium"],"name":"铑锯刃","tr":"铑锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["toolHeadSawRhodium-PlatedPalladium"],"name":"镀铑钯锯刃","tr":"镀铑钯锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["toolHeadSawTiberium"],"name":"泰伯利亚锯刃","tr":"泰伯利亚锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["toolHeadSawRuridit"],"name":"钌铱合金锯刃","tr":"钌铱合金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["toolHeadSawFluorspar"],"name":"氟石锯刃","tr":"氟石锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["toolHeadSawHighDurabilityCompoundSteel"],"name":"高耐久性复合钢锯刃","tr":"高耐久性复合钢锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["toolHeadSawAdemicSteel"],"name":"硬钢锯刃","tr":"硬钢锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["toolHeadSawZircaloy-4"],"name":"锆锡合金-4锯刃","tr":"锆锡合金-4锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["toolHeadSawZircaloy-2"],"name":"锆锡合金-2锯刃","tr":"锆锡合金-2锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["toolHeadSawIncoloy-903"],"name":"耐热铬铁合金-903锯刃","tr":"耐热铬铁合金-903锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["toolHeadSawAdamantiumAlloy"],"name":"精金合金锯刃","tr":"精金合金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["toolHeadSawFluorophlogopite"],"name":"氟金云母锯刃","tr":"氟金云母锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["toolHeadSawCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)锯刃","tr":"掺铈镥铝石榴石 (Ce:LuAG)锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["toolHeadSawMagnesia"],"name":"氧化镁锯刃","tr":"氧化镁锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["toolHeadSawMAR-M200Steel"],"name":"MAR-M200特种钢锯刃","tr":"MAR-M200特种钢锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["toolHeadSawMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢锯刃","tr":"MAR-Ce-M200特种钢锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["toolHeadSawLithiumChloride"],"name":"氯化锂锯刃","tr":"氯化锂锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["toolHeadSawSignalium"],"name":"信素锯刃","tr":"信素锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["toolHeadSawLumiium"],"name":"流明锯刃","tr":"流明锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["toolHeadSawArtherium-Sn"],"name":"阿瑟锡锯刃","tr":"阿瑟锡锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["toolHeadSawTanmolyiumBeta-C"],"name":"钛钼合金β-C锯刃","tr":"钛钼合金β-C锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["toolHeadSawDalisenite"],"name":"大力合金锯刃","tr":"大力合金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["toolHeadSawHafnium"],"name":"铪锯刃","tr":"铪锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["toolHeadSawHikarium"],"name":"光素锯刃","tr":"光素锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["toolHeadSawTairitsu"],"name":"对立合金锯刃","tr":"对立合金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["toolHeadSawPreciousMetalsAlloy"],"name":"稀有金属合金锯刃","tr":"稀有金属合金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["toolHeadSawEnrichedNaquadahAlloy"],"name":"富集硅岩合金锯刃","tr":"富集硅岩合金锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["toolHeadSawMetastableOganesson"],"name":"亚稳态鿫锯刃","tr":"亚稳态鿫锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["toolHeadSawZirconium"],"name":"锆锯刃","tr":"锆锯刃","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:disassembler":{"0":{"oreDict":["oc:disassembler"],"name":"Disassembler","tr":"分解器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:lensCase":{"0":{"name":"Lens Case","tr":"透镜之匣","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:tile.OreQuartzCharged":{"0":{"oreDict":["oreChargedCertusQuartz"],"name":"Charged Certus Quartz Ore","tr":"充能赛特斯石英矿石","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:spectralBlock":{"0":{"name":"Spectral Block","tr":"影桥方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTitanite":{"0":{"oreDict":["dustTitanite"],"name":"榍石粉","tr":"榍石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:maplecandiedbaconItem":{"0":{"oreDict":["foodMaplecandiedbacon"],"name":"Maple Candied Bacon","tr":"枫糖培根","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioTable":{"0":{"name":"Oak Table","tr":"橡木桌子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Table","tr":"云杉木桌子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Table","tr":"白桦木桌子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Table","tr":"丛林木桌子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Table","tr":"金合欢桌子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Table","tr":"深色橡木桌子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Table","tr":"镶框台桌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.endSteel_axe":{"0":{"name":"End Steel Axe","tr":"末影钢斧","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":2001}},"miscutils:blockFrameGtQuantum":{"0":{"oreDict":["frameGtQuantum"],"name":"量子合金框架","tr":"量子合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"berriespp:foodBerries":{"0":{"oreDict":["listAllfruit"," listAllberry"," cropHuckleberry"],"name":"Huckleberry","tr":"黑木果","tab":"更多作物","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["listAllrootveggie"," cropSugarbeet"," listAllveggie"],"name":"Sugar Beet","tr":"甜菜","tab":"更多作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodshelf":{"0":{"name":"Sacred Oak Shelf","tr":"天域树橡树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Shelf","tr":"樱桃树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Shelf","tr":"黑暗树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Shelf","tr":"杉树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Shelf","tr":"地狱皮树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Shelf","tr":"阁楼树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Shelf","tr":"蓝花楹架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Shelf","tr":"魔法树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Shelf","tr":"红杉架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Shelf","tr":"棕榈树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Shelf","tr":"松树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Shelf","tr":"红木架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Shelf","tr":"柳树架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Shelf","tr":"桃花心木架子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHastelloyC276":{"0":{"oreDict":["dustTinyHastelloyC276"],"name":"小撮哈斯特洛依合金-C276粉","tr":"小撮哈斯特洛依合金-C276粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:CarbonDisulfide":{"0":{"oreDict":["cellCarbonDisulfide"],"name":"二硫化碳单元","tr":"二硫化碳单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ChainsawStream":{"1":{"name":"Chainsaw of the Stream","tr":"奔雷电锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Chainsaw of the Stream","tr":"奔雷电锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemIngotStaballoy":{"0":{"oreDict":["ingotStaballoy"],"name":"贫铀合金锭","tr":"贫铀合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellLithiumTetrafluoroberyllateLFTB":{"0":{"oreDict":["cellLithiumTetrafluoroberyllateLFTB"],"name":"四氟铍酸锂(LTFB)单元","tr":"四氟铍酸锂(LTFB)单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockAuraPylon":{"0":{"name":"Aura Pylon","tr":"魔灵法柱","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Aura Pylon Peak","tr":"魔灵法柱拱顶石","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleThallium":{"0":{"oreDict":["plateDoubleThallium"],"name":"双重铊板","tr":"双重铊板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"HardcoreEnderExpansion:potion_of_instability":{"0":{"name":"Potion of Instability","tr":"不稳定药水","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Splash Potion of Instability","tr":"喷溅型 不稳定药水","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamAvocado":{"0":{"name":"Avocado","tr":"鳄梨","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedGadoliniteCe":{"0":{"oreDict":["crushedGadoliniteCe"],"name":"Crushed Gadolinite (Ce) Ore","tr":"粉碎的硅铍钇矿(Ce)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:essentiaDynamo":{"0":{"name":"Essentia Dynamo","tr":"源质反应炉","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:synthNode":{"0":{"name":"Ethereal Shard","tr":"天域碎片","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hardDirt":{"0":{"name":"Hardened Dirt","tr":"硬化泥土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockTeleposer":{"0":{"name":"Teleposer","tr":"传送器","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockCrystal":{"0":{"name":"Air Crystal Cluster","tr":"风之魔晶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fire Crystal Cluster","tr":"火之魔晶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Water Crystal Cluster","tr":"水之魔晶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Earth Crystal Cluster","tr":"地之魔晶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Order Crystal Cluster","tr":"秩序魔晶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Entropy Crystal Cluster","tr":"混沌魔晶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mixed Crystal Cluster","tr":"复相魔晶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSmithIII":{"0":{"name":"Coin \"Blacksmith 1000\"","tr":"匠师币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteHelmet":{"0":{"name":"Thauminite Helmet","tr":"秘晶头盔","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":298}},"harvestcraft:rabbitrawItem":{"0":{"oreDict":["listAllmeatraw"," foodRabbitraw"," listAllrabbitraw"],"name":"Raw Rabbit","tr":"生兔肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemScrap":{"0":{"name":"Scrap","tr":"废料","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartCrossbar":{"1536":{"name":"精金 Crossbar","tr":"精金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Crossbar","tr":"神秘蓝金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Crossbar","tr":"琥珀 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Crossbar","tr":"纯镃 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Crossbar","tr":"谐镃 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Crossbar","tr":"聚氯乙烯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Crossbar","tr":"永恒 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Crossbar","tr":"磁物质 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Crossbar","tr":"赛特斯石英 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Crossbar","tr":"暗影秘银 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Crossbar","tr":"玄铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Crossbar","tr":"戴斯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Crossbar","tr":"铿铀 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Crossbar","tr":"通流琥珀金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Crossbar","tr":"末影粗胚 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Crossbar","tr":"末影(te) 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Crossbar","tr":"炽热的钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Crossbar","tr":"火石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Crossbar","tr":"力量 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Crossbar","tr":"石墨 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Crossbar","tr":"石墨烯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Crossbar","tr":"注魔金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Crossbar","tr":"风之魔晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Crossbar","tr":"火之魔晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Crossbar","tr":"地之魔晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Crossbar","tr":"水之魔晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Crossbar","tr":"混沌魔晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Crossbar","tr":"秩序魔晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Crossbar","tr":"玉 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Crossbar","tr":"碧玉 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Crossbar","tr":"陨铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Crossbar","tr":"陨钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Crossbar","tr":"硅岩 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Crossbar","tr":"硅岩合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Crossbar","tr":"富集硅岩 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Crossbar","tr":"超能硅岩 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Crossbar","tr":"下界石英 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Crossbar","tr":"下界之星 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Crossbar","tr":"三钛 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Crossbar","tr":"虚空 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Crossbar","tr":"胶木 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Crossbar","tr":"幽冥剧毒结晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Crossbar","tr":"强化 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Crossbar","tr":"铱锇合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Crossbar","tr":"阳光化合物 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Crossbar","tr":"魂金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Crossbar","tr":"蓝黄玉 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Crossbar","tr":"黄铜 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Crossbar","tr":"白铜 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Crossbar","tr":"深渊铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Crossbar","tr":"钻石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Crossbar","tr":"琥珀金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Crossbar","tr":"绿宝石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Crossbar","tr":"强化混合晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Crossbar","tr":"混合晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Crossbar","tr":"绿色蓝宝石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Crossbar","tr":"殷钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Crossbar","tr":"坎塔尔合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Crossbar","tr":"镁铝合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Crossbar","tr":"镍铬合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Crossbar","tr":"玄钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Crossbar","tr":"生铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Crossbar","tr":"聚乙烯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Crossbar","tr":"环氧树脂 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Crossbar","tr":"硅橡胶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Crossbar","tr":"聚己内酰胺 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Crossbar","tr":"聚四氟乙烯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Crossbar","tr":"蓝宝石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Crossbar","tr":"不锈钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Crossbar","tr":"坦桑石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Crossbar","tr":"锡铁合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Crossbar","tr":"黄玉 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Crossbar","tr":"哈氏合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Crossbar","tr":"锻铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Crossbar","tr":"铁木 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Crossbar","tr":"橄榄石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Crossbar","tr":"蛋白石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Crossbar","tr":"紫水晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Crossbar","tr":"暗影金属 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Crossbar","tr":"暗影铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Crossbar","tr":"暗影钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Crossbar","tr":"钢叶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Crossbar","tr":"骑士金属 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Crossbar","tr":"标准纯银 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Crossbar","tr":"玫瑰金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Crossbar","tr":"黑青铜 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Crossbar","tr":"铋青铜 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Crossbar","tr":"黑钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Crossbar","tr":"红钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Crossbar","tr":"蓝钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Crossbar","tr":"大马士革钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Crossbar","tr":"充能合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Crossbar","tr":"脉冲合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Crossbar","tr":"星辰银 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Crossbar","tr":"钴黄铜 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Crossbar","tr":"红石榴石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Crossbar","tr":"黄石榴石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Crossbar","tr":"温特姆 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Crossbar","tr":"黑花岗岩 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Crossbar","tr":"红花岗岩 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Crossbar","tr":"白石棉 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Crossbar","tr":"雄黄 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Crossbar","tr":"磁化铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Crossbar","tr":"磁化钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Crossbar","tr":"磁化钕 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Crossbar","tr":"碳化钨 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Crossbar","tr":"钒钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Crossbar","tr":"高速钢-G 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Crossbar","tr":"高速钢-E 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Crossbar","tr":"高速钢-S 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Crossbar","tr":"深铅 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Crossbar","tr":"量子 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Crossbar","tr":"深空秘银 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Crossbar","tr":"黑钚 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Crossbar","tr":"木卫四冰 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Crossbar","tr":"硬铝 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Crossbar","tr":"奥利哈钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Crossbar","tr":"三元金属 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Crossbar","tr":"聚苯硫醚 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Crossbar","tr":"聚苯乙烯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Crossbar","tr":"丁苯橡胶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Crossbar","tr":"镍锌铁氧体 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Crossbar","tr":"纤维强化的环氧树脂 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Crossbar","tr":"磁化钐 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Crossbar","tr":"无尽催化剂 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Crossbar","tr":"聚苯并咪唑 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Crossbar","tr":" 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Crossbar","tr":"钛铂钒合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Crossbar","tr":"时空 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Crossbar","tr":"大理石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Crossbar","tr":"神秘水晶 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Crossbar","tr":"末影钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Crossbar","tr":"复合粘土 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Crossbar","tr":"晶化合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Crossbar","tr":"旋律合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Crossbar","tr":"恒星合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Crossbar","tr":"晶化粉红史莱姆 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Crossbar","tr":"充能银 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Crossbar","tr":"生动合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Crossbar","tr":"灵宝 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Crossbar","tr":"超时空金属 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Crossbar","tr":"活石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Crossbar","tr":"盖亚之魂 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Crossbar","tr":"活木 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Crossbar","tr":"梦之木 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Crossbar","tr":"泡铋 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Crossbar","tr":"立方氧化锆 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Crossbar","tr":"氟铁电气石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Crossbar","tr":"铬铝电气石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Crossbar","tr":"钒镁电气石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Crossbar","tr":"铝电气石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Crossbar","tr":"红锆石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Crossbar","tr":"铁橄榄石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Crossbar","tr":"镁橄榄石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Crossbar","tr":"钙铁辉石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Crossbar","tr":"钍-232 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Crossbar","tr":"堇云石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Crossbar","tr":"磁共振石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Crossbar","tr":"锎 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Crossbar","tr":"BArTiMaEuSNeK 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Crossbar","tr":"钌 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Crossbar","tr":"铑 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Crossbar","tr":"镀铑钯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Crossbar","tr":"泰伯利亚 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Crossbar","tr":"钌铱合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Crossbar","tr":"氟石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Crossbar","tr":"高耐久性复合钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Crossbar","tr":"硬钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Crossbar","tr":"合成玉 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Crossbar","tr":"原子分离催化剂 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Crossbar","tr":"极不稳定硅岩 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Crossbar","tr":"锌钍合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Crossbar","tr":"锆锡合金-4 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Crossbar","tr":"锆锡合金-2 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Crossbar","tr":"耐热铬铁合金-903 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Crossbar","tr":"精金合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Crossbar","tr":"MAR-M200特种钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Crossbar","tr":"MAR-Ce-M200特种钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Crossbar","tr":"氯化锂 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Crossbar","tr":"信素 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Crossbar","tr":"流明 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Crossbar","tr":"阿瑟锡 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Crossbar","tr":"钛钼合金β-C 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Crossbar","tr":"大力合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Crossbar","tr":"光素 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Crossbar","tr":"对立合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Crossbar","tr":"稀有金属合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Crossbar","tr":"富集硅岩合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Crossbar","tr":"亚稳态鿫 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Crossbar","tr":"调律源金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Crossbar","tr":"魔钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Crossbar","tr":"泰拉钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Crossbar","tr":"源质钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Crossbar","tr":"磁流体约束恒星物质 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Crossbar","tr":"白矮星物质 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Crossbar","tr":"黑矮星物质 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Crossbar","tr":"宇宙素 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Crossbar","tr":"铝 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Crossbar","tr":"铍 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Crossbar","tr":"铋 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Crossbar","tr":"碳 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Crossbar","tr":"铬 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Crossbar","tr":"金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Crossbar","tr":"铱 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Crossbar","tr":"铅 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Crossbar","tr":"锰 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Crossbar","tr":"钼 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Crossbar","tr":"钕 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Crossbar","tr":"中子 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Crossbar","tr":"镍 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Crossbar","tr":"锇 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Crossbar","tr":"钯 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Crossbar","tr":"铂 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Crossbar","tr":"钚-239 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Crossbar","tr":"钚-241 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Crossbar","tr":"银 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Crossbar","tr":"钍 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Crossbar","tr":"钛 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Crossbar","tr":"钨 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Crossbar","tr":"铀-238 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Crossbar","tr":"铀-235 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Crossbar","tr":"红宝石 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Crossbar","tr":"红石合金 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Crossbar","tr":"终末 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Crossbar","tr":"导电铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Crossbar","tr":"磁钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Crossbar","tr":"钨钢 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Crossbar","tr":"烈焰 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Crossbar","tr":"脉冲铁 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Crossbar","tr":"龙 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Crossbar","tr":"觉醒龙 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Crossbar","tr":"褐铜 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Crossbar","tr":"山铜 十字柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreCerite":{"0":{"oreDict":["oreCerite"],"name":"Cerite Ore","tr":"铈硅石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.anchor.personal":{"0":{"name":"Personal Anchor Cart","tr":"私用锚车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsquartz":{"0":{"name":"Quartz Fluid Pipe","tr":"石英流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:grenadeTurret":{"0":{"name":"Grenade Launcher Turret","tr":"榴弹发射炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:fantasyblock":{"0":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Purpled Fantasy Block","tr":"紫色幻想石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:spikeToothTH":{"0":{"name":"Tooth","tr":"牙齿","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:apiaristBag":{"0":{"name":"Apiarist\u0027s Backpack","tr":"养蜂员背包","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemHydrogenBlob":{"0":{"name":"Mysterious Hydrogen Blob","tr":"神秘氢气团","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersTorch":{"0":{"name":"Carpenter\u0027s Torch","tr":"木匠火把","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:wrappedPlutoniumIngot":{"0":{"name":"Wrapped Plutonium Ingot","tr":"封装钚锭","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:dysonswarmparts":{"0":{"name":"Dyson Swarm Energy Receiver Base Casing","tr":"戴森球能量接收基座机械方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dyson Swarm Energy Receiver Dish Block","tr":"戴森球能量接收天线方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dyson Swarm Module Deployment Unit Base Casing","tr":"戴森球模块部署单元基座机械方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Dyson Swarm Module Deployment Unit Core","tr":"戴森球模块部署单元核心","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Dyson Swarm Module Deployment Unit Superconducting Magnet","tr":"戴森球模块部署单元超导磁体","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dyson Swarm Control Center Base Casing","tr":"戴森球控制中心基座机械方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Dyson Swarm Control Center Primary Windings","tr":"戴森球控制中心初级绕组","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Dyson Swarm Control Center Secondary Windings","tr":"戴森球控制中心次级绕组","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Dyson Swarm Control Center Toroid Casing","tr":"戴森球控制中心环形机械方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ultra High Strength Concrete Floor","tr":"超强混凝土地板","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:tile.arcaneMarble":{"0":{"name":"Arcane Marble Block","tr":"奥术大理石块","tab":"神秘革命","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.jeltBlock":{"0":{"name":"Jelt ⓪","tr":"Jelt ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Jelt ①","tr":"Jelt ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Jelt ②","tr":"Jelt ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jelt ③","tr":"Jelt ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Jelt ④","tr":"Jelt ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Jelt ⑤","tr":"Jelt ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jelt ⑥","tr":"Jelt ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Jelt ⑦","tr":"Jelt ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Jelt ⑧","tr":"Jelt ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Jelt ⑨","tr":"Jelt ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Jelt ⑩","tr":"Jelt ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Jelt ⑪","tr":"Jelt ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Jelt ⑫","tr":"Jelt ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Jelt ⑬","tr":"Jelt ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Jelt ⑭","tr":"Jelt ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Jelt ⑮","tr":"Jelt ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLautarite":{"0":{"oreDict":["dustSmallLautarite"],"name":"小堆碘钙石粉","tr":"小堆碘钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:footlongItem":{"0":{"oreDict":["foodFootlong"],"name":"Footlong","tr":"法式长棍面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_CrystalFlask":{"0":{"name":"Crystal Capsule","tr":"水晶容器","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.nagaScale":{"0":{"name":"Naga Scale","tr":"娜迦鳞片","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCelestialTungsten":{"0":{"oreDict":["dustTinyCelestialTungsten"],"name":"小撮天体钨粉","tr":"小撮天体钨粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHastelloyC276":{"0":{"oreDict":["ringHastelloyC276"],"name":"哈斯特洛依合金-C276环","tr":"哈斯特洛依合金-C276环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:item.T3RecipeSelector":{"0":{"name":"Programmed Breakthrough Circuit","tr":"突破编程电路","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallArceusAlloy2B":{"0":{"oreDict":["dustSmallArceusAlloy2B"],"name":"小堆阿尔宙斯合金2B粉","tr":"小堆阿尔宙斯合金2B粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings.cyclotron_coils":{"0":{"name":"MV螺线管超导线圈","tr":"MV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"HV螺线管超导线圈","tr":"HV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"EV螺线管超导线圈","tr":"EV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"IV螺线管超导线圈","tr":"IV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"LuV螺线管超导线圈","tr":"LuV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"ZPM螺线管超导线圈","tr":"ZPM螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"UV螺线管超导线圈","tr":"UV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"UHV螺线管超导线圈","tr":"UHV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"UEV螺线管超导线圈","tr":"UEV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"UIV螺线管超导线圈","tr":"UIV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"UMV螺线管超导线圈","tr":"UMV螺线管超导线圈","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockSoulariumBars":{"0":{"oreDict":["barsSoularium"," barsIron"],"name":"Soularium Bars","tr":"魂金栅栏","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockPikyonium64B":{"0":{"oreDict":["blockPikyonium64B"],"name":"皮卡优合金64B块","tr":"皮卡优合金64B块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fieryPlate":{"0":{"name":"Fiery Plate","tr":"炽热的胸甲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":401}},"harvestcraft:groundgarden":{"0":{"name":"Ground Garden","tr":"陆地菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamholidayCake":{"0":{"name":"Holiday Cake","tr":"节日蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cucumbersaladItem":{"0":{"oreDict":["foodCucumbersalad"],"name":"Cucumber Salad","tr":"黄瓜沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshPickSlime":{"0":{"name":"Sticky Desh Pickaxe","tr":"粘性戴斯镐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1025}},"miscutils:crushedCentrifugedComancheite":{"0":{"oreDict":["crushedCentrifugedComancheite"],"name":"Centrifuged Crushed Comancheite Ore","tr":"离心溴汞石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabLavenderHalf":{"0":{"name":"Lavender Quartz Slab","tr":"熏香石英台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFCicada":{"0":{"name":"Cicada","tr":"蝉","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusEnderChest":{"0":{"name":"Wand Focus: Ender Rift","tr":"法杖核心: 末影裂痕","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalIngot":{"0":{"oreDict":["ingotMysteriousCrystal"],"name":"Mysterious Crystal Ingot","tr":"神秘水晶锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyDirt":{"0":{"oreDict":["dustTinyDirt"],"name":"小撮干土粉","tr":"小撮干土粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:WG_RoseVine":{"0":{"name":"Rose Vines","tr":"玫瑰藤","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.StainlessSteelBars":{"0":{"oreDict":["barsStainlessSteel"],"name":"Stainless Steel Bars","tr":"不锈钢栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaBromine":{"0":{"oreDict":["cellPlasmaBromine"],"name":"溴等离子体单元","tr":"溴等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:shimmerwoodPlanks0Slab":{"0":{"name":"Shimmerwood Plank Slab","tr":"微光木板台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:IndustrialGrafter":{"0":{"name":"Industrial Grafter","tr":"工业剪枝器","tab":"基因工业","type":"Item","maxStackSize":1,"maxDurability":102},"1":{"name":"Industrial Grafter","tr":"工业剪枝器","tab":"基因工业","type":"Item","maxStackSize":1,"maxDurability":102}},"IC2:fluidHotWater":{"0":{"name":"Heated Water","tr":"热水","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:energyPylon":{"0":{"name":"Energy Pylon","tr":"能量塔","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:armor.overalls":{"0":{"name":"Engineer\u0027s Overalls","tr":"工程师背带裤","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":76}},"chisel:dirt":{"0":{"oreDict":["dirt"],"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Dirt","tr":"泥土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySeleniumHexafluoride":{"0":{"oreDict":["dustTinySeleniumHexafluoride"],"name":"小撮六氟化硒粉","tr":"小撮六氟化硒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:artichokeseedItem":{"0":{"oreDict":["seedArtichoke"," listAllseed"],"name":"Artichoke Seed","tr":"朝鲜蓟种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodMaragingSteel350":{"0":{"oreDict":["stickMaragingSteel350"],"name":"马氏体时效钢350杆","tr":"马氏体时效钢350杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamOlive":{"0":{"name":"Olive","tr":"橄榄","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cheesecakeItem":{"0":{"oreDict":["foodCheesecake"],"name":"Cheesecake","tr":"奶酪蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WandCapManaSteel":{"0":{"name":"Manasteel Cap","tr":"魔钢杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_SodiumPotassium_bucket":{"0":{"name":"Bucket of Sodium Potassium (NaK)","tr":"桶装钠钾共晶合金(NaK)","tab":"GTNH: 流体","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:accumulation_table":{"0":{"name":"Accumulation Table","tr":"聚能台","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodAbyssalAlloy":{"0":{"oreDict":["stickAbyssalAlloy"],"name":"深渊合金杆","tr":"深渊合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:parsnipItem":{"0":{"oreDict":["listAllrootveggie"," listAllveggie"," cropParsnip"],"name":"Parsnip","tr":"防风草","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireWhiteMetal":{"0":{"oreDict":["wireFineWhiteMetal"],"name":"细白物质导线","tr":"细白物质导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamavocadoSapling":{"0":{"name":"Avocado Sapling","tr":"鳄梨树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:forcefield":{"0":{"name":"Forcefield","tr":"力场","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:Transposer":{"0":{"name":"Genetic Transposer","tr":"基因转换机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"Genetics:masterRegistry":{"0":{"name":"Master Registry","tr":"全图鉴","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockHourglassMagic":{"0":{"name":"Magic Hourglass","tr":"魔法沙漏","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:MorphSword":{"0":{"name":"Chameleon Sword","tr":"避役剑","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1501}},"ExtraUtilities:destructionpickaxe":{"0":{"name":"Destruction Pickaxe","tr":"毁灭之镐","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":6245}},"OpenComputers:switch":{"0":{"name":"§cSwitch§7","tr":"§c交换机§7","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.titanium_axe":{"0":{"name":"Titanium Axe","tr":"钛斧","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":769}},"miscutils:crushedCentrifugedNichromite":{"0":{"oreDict":["crushedCentrifugedNichromite"],"name":"Centrifuged Crushed Nichromite Ore","tr":"离心镍铬矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:copperTank":{"0":{"name":"Copper Tank","tr":"铜储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaAstralTitanium":{"0":{"oreDict":["cellPlasmaAstralTitanium"],"name":"星体钛等离子体单元","tr":"星体钛等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedZirkelite":{"0":{"oreDict":["crushedPurifiedZirkelite"],"name":"Purified Crushed Zirkelite Ore","tr":"洗净的钛锆钍矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:soilNoWeed":{"0":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHoneaite":{"0":{"oreDict":["dustHoneaite"],"name":"碲化金铊粉","tr":"碲化金铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltLafiumCompound":{"0":{"oreDict":["boltLafiumCompound"],"name":"路菲恩化合物螺栓","tr":"路菲恩化合物螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:oliveItem":{"0":{"oreDict":["cropOlive"],"name":"Olive","tr":"橄榄","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreAgarditeLa":{"0":{"oreDict":["oreAgarditeLa"],"name":"Agardite (La) Ore","tr":"菱铁矿(La)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneSmallBrickSlabBlock.double":{"0":{"name":"Sky Stone Small Brick Slabs","tr":"陨石砖块台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedFluorcaphite":{"0":{"oreDict":["crushedCentrifugedFluorcaphite"],"name":"Centrifuged Crushed Fluorcaphite Ore","tr":"离心氟碳铈矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:stockade":{"0":{"name":"Oak Stockade","tr":"橡树围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Stockade","tr":"云杉树围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Stockade","tr":"白桦树围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Stockade","tr":"丛林木围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Rowan Stockade","tr":"山梨树围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Alder Stockade","tr":"赤杨树围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Hawthorn Stockade","tr":"山楂树围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Acacia Stockade","tr":"金合欢树围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Dark Oak Stockade","tr":"深色橡木围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemFreq":{"0":{"name":"Frequency Transmitter","tr":"传送频率遥控器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodLongRhodium":{"0":{"oreDict":["stickLongRhodium"],"name":"长铑杆","tr":"长铑杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCyanoaceticAcid":{"0":{"oreDict":["dustCyanoaceticAcid"],"name":"氰乙酸粉","tr":"氰乙酸粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:solarwindpanel":{"0":{"name":"Solar Wind Panel","tr":"太阳风发电机","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:ricecakeItem":{"0":{"oreDict":["foodRicecake"],"name":"Rice Cake","tr":"米糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalCompressedPlate":{"0":{"oreDict":["compressedMysteriousCrystal"],"name":"Compressed Mysterious Crystal Plate","tr":"航天神秘水晶板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawSDHCAlloy":{"0":{"name":"Raw \"SDHC-120\" Alloy","tr":"未加工的SDHC-120合金","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:itemCarpentersDoor":{"0":{"name":"Carpenter\u0027s Door","tr":"木匠门","tab":"木匠方块","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:black_kitchen_floor":{"0":{"name":"Black Kitchen Floor","tr":"黑色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinAdventureIII":{"0":{"name":"Coin \"The Explorer 1000\"","tr":"探险家币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.RobotArm":{"0":{"name":"Multipurpose Robot Arm","tr":"多用途机械臂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.fusewood":{"0":{"oreDict":["pressurePlateWood"],"name":"Fusewood Pressure Plate","tr":"熔融树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreAgarditeNd":{"0":{"oreDict":["oreAgarditeNd"],"name":"Agardite (Nd) Ore","tr":"菱铁矿(Nd)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingArcanite":{"0":{"oreDict":["ringArcanite"],"name":"奥金环","tr":"奥金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTriniumNaquadahAlloy":{"0":{"oreDict":["plateDoubleTriniumNaquadahAlloy"],"name":"双重三元硅岩合金板","tr":"双重三元硅岩合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:frameDecaying":{"0":{"name":"Decaying Frame","tr":"腐烂框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:itemDustTinyHastelloyN":{"0":{"oreDict":["dustTinyHastelloyN"],"name":"小撮哈斯特洛依合金-N粉","tr":"小撮哈斯特洛依合金-N粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockChromaticGlass":{"0":{"oreDict":["blockChromaticGlass"],"name":"彩色玻璃块","tr":"彩色玻璃块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodGermanium":{"0":{"oreDict":["stickGermanium"],"name":"锗杆","tr":"锗杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHastelloyX":{"0":{"oreDict":["dustTinyHastelloyX"],"name":"小撮哈斯特洛依合金-X粉","tr":"小撮哈斯特洛依合金-X粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTeflon":{"0":{"oreDict":["plateDoubleTeflon"],"name":"双重特氟龙板","tr":"双重特氟龙板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemDustTinyHastelloyW":{"0":{"oreDict":["dustTinyHastelloyW"],"name":"小撮哈斯特洛依合金-W粉","tr":"小撮哈斯特洛依合金-W粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:item.voidScoop":{"0":{"name":"Void Scoop","tr":"虚空捕虫网","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":21}},"EMT:ChristmasFocus":{"0":{"name":"Wand Focus: Kris-tmas","tr":"法杖核心:圣诞","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2}},"harvestcraft:lemonjellyItem":{"0":{"oreDict":["foodLemonjelly"],"name":"Lemon Jelly","tr":"柠檬果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:firestone.raw":{"0":{"oreDict":["gemFirestone"],"name":"Raw Firestone","tr":"天然火石","tab":"Railcraft","type":"Item","maxStackSize":9,"maxDurability":1}},"openmodularturrets:barrelTierThree":{"0":{"name":"Barrel (Tier 3)","tr":"炮管(三级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_glowstone_dust":{"0":{"name":"Blood Infused Glowstone Dust","tr":"注血萤石粉","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltHastelloyC276":{"0":{"oreDict":["boltHastelloyC276"],"name":"哈斯特洛依合金-C276螺栓","tr":"哈斯特洛依合金-C276螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAmmoniumNitrate":{"0":{"oreDict":["dustSmallAmmoniumNitrate"],"name":"小堆硝酸铵粉","tr":"小堆硝酸铵粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZirconium":{"0":{"oreDict":["dustZirconium"],"name":"锆粉","tr":"锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:watermelonjellyItem":{"0":{"oreDict":["foodWatermelonjelly"],"name":"Watermelon Jelly","tr":"西瓜果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:cacophonium":{"0":{"name":"Cacophonium","tr":"不和谐之音","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:weakBloodShard":{"0":{"name":"Weak Blood Shard","tr":"虚弱气血碎片","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.msBoosters1":{"0":{"name":"Rocket Engine Base","tr":"火箭引擎方块","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ion Thruster Base","tr":"离子推进器方块","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.DeathCompass":{"0":{"name":"Eternal Compass","tr":"永恒罗盘","tab":"","type":"Item","maxStackSize":64,"maxDurability":2}},"miscutils:itemDustTinyPolycrase":{"0":{"oreDict":["dustTinyPolycrase"],"name":"小撮锗铀钇矿粉","tr":"小撮锗铀钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicMachina:nodeAugmentation":{"0":{"name":"Node Augmentation","tr":"节点强化装置","tab":"神秘力学","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:seedswolfsbane":{"0":{"oreDict":["listAllseed"," seedWolfsBane"],"name":"Wolfsbane Seeds","tr":"狼毒草种子","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:IndustrialApiary":{"0":{"name":"Industrial Apiary","tr":"工业蜂箱","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:delightedmealItem":{"0":{"oreDict":["foodDelightedmeal"],"name":"Delighted Meal","tr":"开心乐园餐","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:anchovyrawItem":{"0":{"oreDict":["foodAnchovyraw"," listAllfishraw"],"name":"Raw Anchovy","tr":"生鳀鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilBlackTitanium":{"0":{"oreDict":["foilBlackTitanium"],"name":"黑钛箔","tr":"黑钛箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustRhugnor":{"0":{"oreDict":["dustRhugnor"],"name":"鲁格诺粉","tr":"鲁格诺粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manasteelPick":{"0":{"name":"Manasteel Pickaxe","tr":"魔钢镐","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":301}},"Botania:blackHoleTalisman":{"0":{"name":"Black Hole Talisman","tr":"黑洞护符","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsTime":{"0":{"name":"Timewood Stairs","tr":"时光树楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFLeaves3":{"0":{"name":"Thorn Leaves","tr":"荆棘叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Beanstalk Leaves","tr":"豆茎叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotMaragingSteel350":{"0":{"oreDict":["ingotHotMaragingSteel350"],"name":"热马氏体时效钢350锭","tr":"热马氏体时效钢350锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockTallyLensDrops":{"0":{"name":"Tally Box (Lens: Yield)","tr":"计数盒(透镜:产物)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:filter":{"0":{"name":"Block Filter","tr":"方块过滤器","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Item Filter","tr":"物品过滤器","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Entity Filter","tr":"实体过滤器","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Position Filter","tr":"方位过滤器","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:nodeManipulator":{"0":{"name":"Node Manipulator","tr":"节点调节器","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetProtactinium":{"0":{"oreDict":["nuggetProtactinium"],"name":"镤粒","tr":"镤粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:remoteMonitor":{"0":{"name":"Portable Information Panel","tr":"便携式信息屏","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:ItemBaubleBlanks":{"0":{"oreDict":["baubleAmuletGold"],"name":"Mundane Amulet","tr":"凡人护身符","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"oreDict":["baubleRingGold"],"name":"Mundane Ring","tr":"凡人指环","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"oreDict":["baubleBeltBase"],"name":"Mundane Belt","tr":"凡人腰带","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:dreamwood":{"0":{"oreDict":["dreamwood"," blockDreamwood"],"name":"Dreamwood","tr":"梦之木","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dreamwood Planks","tr":"梦之木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mossy Dreamwood Planks","tr":"苔梦之木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Framed Dreamwood","tr":"框边梦之木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Pattern Framed Dreamwood","tr":"框纹梦之木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Glimmering Dreamwood","tr":"微光梦之木","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:greatwoodPipe":{"0":{"name":"Greatwood Smoking Pipe","tr":"宏伟之木烟斗","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:customBrick3Stairs":{"0":{"name":"Roof Tile Stairs","tr":"瓦块楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinDarkWizardI":{"0":{"name":"Coin \"The Dark Wizard 10\"","tr":"魔法师币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTellurium":{"0":{"oreDict":["nuggetTellurium"],"name":"碲粒","tr":"碲粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChargedMechanistWandCap":{"0":{"name":"Charged Mechanist Cap","tr":"充能机械杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreRadioactiveMineralMix":{"0":{"oreDict":["oreRadioactiveMineralMix"],"name":"Strange Ore","tr":"奇异矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:voidstonePillar2":{"0":{"name":"Energised Voidstone Pillar","tr":"充能虚空石柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.energy.cesu":{"0":{"name":"CESU Cart","tr":"CESU储电车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"harvestcraft:fruitbaitItem":{"0":{"oreDict":["fruitBait"],"name":"Fruit Bait","tr":"水果诱饵","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolBronzeHoe":{"0":{"name":"Bronze Hoe","tr":"青铜锄","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemRodIncoloy020":{"0":{"oreDict":["stickIncoloy020"],"name":"耐热铬铁合金-020杆","tr":"耐热铬铁合金-020杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberryjellysandwichItem":{"0":{"oreDict":["foodRaspberryjellysandwich"],"name":"Raspberry Jelly Sandwich","tr":"树莓果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterWhite":{"0":{"name":"White Painter","tr":"白色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"Forestry:cratedNaturaBerryBlue":{"0":{"name":"Crated Blueberry","tr":"装箱的蓝莓","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaweaveHelm":{"0":{"name":"Manaweave Cowl","tr":"魔源头蓬","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":56}},"miscutils:blockBlockTriniumNaquadahCarbonite":{"0":{"oreDict":["blockTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金块","tr":"掺碳三元硅岩合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellInconel625":{"0":{"oreDict":["cellInconel625"],"name":"镍铬基合金-625单元","tr":"镍铬基合金-625单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotMaragingSteel300":{"0":{"oreDict":["ingotHotMaragingSteel300"],"name":"热马氏体时效钢300锭","tr":"热马氏体时效钢300锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:BoltPart":{"0":{"name":"Wooden Bolt","tr":"木弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1536":{"name":"精金 Bolt","tr":"精金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Bolt","tr":"石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Bolt","tr":"神秘蓝金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Bolt","tr":"铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Bolt","tr":"琥珀弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Bolt","tr":"燧石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Bolt","tr":"纯镃弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Bolt","tr":"仙人掌弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Bolt","tr":"谐镃弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Bolt","tr":"骨头弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Bolt","tr":"聚氯乙烯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Bolt","tr":"黑曜石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Bolt","tr":"永恒弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Bolt","tr":"地狱岩弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Bolt","tr":"磁物质弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Bolt","tr":"史莱姆弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Bolt","tr":"赛特斯石英弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Bolt","tr":"纸弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Bolt","tr":"暗影秘银弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Bolt","tr":"钴弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Bolt","tr":"玄铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Bolt","tr":"阿迪特弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Bolt","tr":"戴斯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Bolt","tr":"玛玉灵弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Bolt","tr":"铿铀弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Bolt","tr":"铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Bolt","tr":"通流琥珀金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Bolt","tr":"青铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Bolt","tr":"末影粗胚弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Bolt","tr":"耐酸铝弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Bolt","tr":"末影(te)弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Bolt","tr":"钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Bolt","tr":"史莱姆弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Bolt","tr":"炽热的钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Bolt","tr":"生铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Bolt","tr":"火石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Bolt","tr":"力量弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Bolt","tr":"石墨弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Bolt","tr":"石墨烯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Bolt","tr":"注魔金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Bolt","tr":"风之魔晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Bolt","tr":"火之魔晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Bolt","tr":"地之魔晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Bolt","tr":"水之魔晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Bolt","tr":"混沌魔晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Bolt","tr":"秩序魔晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Bolt","tr":"玉弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Bolt","tr":"碧玉弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Bolt","tr":"陨铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Bolt","tr":"陨钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Bolt","tr":"硅岩弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Bolt","tr":"硅岩合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Bolt","tr":"富集硅岩弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Bolt","tr":"超能硅岩弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Bolt","tr":"下界石英弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Bolt","tr":"下界之星弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Bolt","tr":"三钛弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Bolt","tr":"虚空弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Bolt","tr":"胶木弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Bolt","tr":"幽冥剧毒结晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Bolt","tr":"强化弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Bolt","tr":"铱锇合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Bolt","tr":"阳光化合物弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Bolt","tr":"魂金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Bolt","tr":"蓝黄玉弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Bolt","tr":"黄铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Bolt","tr":"白铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Bolt","tr":"深渊铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Bolt","tr":"钻石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Bolt","tr":"琥珀金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Bolt","tr":"绿宝石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Bolt","tr":"强化混合晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Bolt","tr":"混合晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Bolt","tr":"绿色蓝宝石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Bolt","tr":"殷钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Bolt","tr":"坎塔尔合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Bolt","tr":"镁铝合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Bolt","tr":"镍铬合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Bolt","tr":"玄钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Bolt","tr":"生铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Bolt","tr":"聚乙烯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Bolt","tr":"环氧树脂弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Bolt","tr":"硅橡胶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Bolt","tr":"聚己内酰胺弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Bolt","tr":"聚四氟乙烯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Bolt","tr":"蓝宝石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Bolt","tr":"不锈钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Bolt","tr":"坦桑石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Bolt","tr":"锡铁合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Bolt","tr":"黄玉弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Bolt","tr":"哈氏合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Bolt","tr":"锻铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Bolt","tr":"铁木弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Bolt","tr":"橄榄石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Bolt","tr":"蛋白石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Bolt","tr":"紫水晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Bolt","tr":"暗影金属弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Bolt","tr":"暗影铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Bolt","tr":"暗影钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Bolt","tr":"钢叶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Bolt","tr":"骑士金属弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Bolt","tr":"标准纯银弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Bolt","tr":"玫瑰金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Bolt","tr":"黑青铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Bolt","tr":"铋青铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Bolt","tr":"黑钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Bolt","tr":"红钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Bolt","tr":"蓝钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Bolt","tr":"大马士革钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Bolt","tr":"充能合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Bolt","tr":"脉冲合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Bolt","tr":"星辰银弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Bolt","tr":"钴黄铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Bolt","tr":"红石榴石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Bolt","tr":"黄石榴石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Bolt","tr":"温特姆弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Bolt","tr":"黑花岗岩弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Bolt","tr":"红花岗岩弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Bolt","tr":"白石棉弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Bolt","tr":"雄黄弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Bolt","tr":"磁化铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Bolt","tr":"磁化钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Bolt","tr":"磁化钕弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Bolt","tr":"碳化钨弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Bolt","tr":"钒钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Bolt","tr":"高速钢-G弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Bolt","tr":"高速钢-E弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Bolt","tr":"高速钢-S弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Bolt","tr":"深铅弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Bolt","tr":"量子弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Bolt","tr":"深空秘银弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Bolt","tr":"黑钚弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Bolt","tr":"木卫四冰弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Bolt","tr":"硬铝弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Bolt","tr":"奥利哈钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Bolt","tr":"三元金属弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Bolt","tr":"聚苯硫醚弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Bolt","tr":"聚苯乙烯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Bolt","tr":"丁苯橡胶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Bolt","tr":"镍锌铁氧体弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Bolt","tr":"纤维强化的环氧树脂弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Bolt","tr":"磁化钐弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Bolt","tr":"无尽催化剂弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Bolt","tr":"聚苯并咪唑弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Bolt","tr":"弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Bolt","tr":"钛铂钒合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Bolt","tr":"时空弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Bolt","tr":"大理石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Bolt","tr":"神秘水晶弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Bolt","tr":"末影钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Bolt","tr":"复合粘土弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Bolt","tr":"晶化合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Bolt","tr":"旋律合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Bolt","tr":"恒星合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Bolt","tr":"晶化粉红史莱姆弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Bolt","tr":"充能银弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Bolt","tr":"生动合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Bolt","tr":"灵宝弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Bolt","tr":"超时空金属弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Bolt","tr":"活石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Bolt","tr":"盖亚之魂弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Bolt","tr":"活木弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Bolt","tr":"梦之木弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Bolt","tr":"泡铋弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Bolt","tr":"立方氧化锆弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Bolt","tr":"氟铁电气石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Bolt","tr":"铬铝电气石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Bolt","tr":"钒镁电气石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Bolt","tr":"铝电气石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Bolt","tr":"红锆石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Bolt","tr":"铁橄榄石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Bolt","tr":"镁橄榄石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Bolt","tr":"钙铁辉石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Bolt","tr":"钍-232弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Bolt","tr":"堇云石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Bolt","tr":"磁共振石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Bolt","tr":"锎弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Bolt","tr":"BArTiMaEuSNeK弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Bolt","tr":"钌弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Bolt","tr":"铑弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Bolt","tr":"镀铑钯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Bolt","tr":"泰伯利亚弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Bolt","tr":"钌铱合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Bolt","tr":"氟石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Bolt","tr":"高耐久性复合钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Bolt","tr":"硬钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Bolt","tr":"合成玉弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Bolt","tr":"原子分离催化剂弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Bolt","tr":"极不稳定硅岩弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Bolt","tr":"锌钍合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Bolt","tr":"锆锡合金-4弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Bolt","tr":"锆锡合金-2弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Bolt","tr":"耐热铬铁合金-903弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Bolt","tr":"精金合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Bolt","tr":"MAR-M200特种钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Bolt","tr":"MAR-Ce-M200特种钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Bolt","tr":"氯化锂弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Bolt","tr":"信素弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Bolt","tr":"流明弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Bolt","tr":"阿瑟锡弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Bolt","tr":"钛钼合金β-C弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Bolt","tr":"大力合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Bolt","tr":"光素弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Bolt","tr":"对立合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Bolt","tr":"稀有金属合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Bolt","tr":"富集硅岩合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Bolt","tr":"亚稳态鿫弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Bolt","tr":"调律源金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Bolt","tr":"魔钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Bolt","tr":"泰拉钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Bolt","tr":"源质钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Bolt","tr":"磁流体约束恒星物质弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Bolt","tr":"白矮星物质弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Bolt","tr":"黑矮星物质弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Bolt","tr":"宇宙素弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Bolt","tr":"不稳定感应弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Bolt","tr":"铝弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Bolt","tr":"铍弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Bolt","tr":"铋弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Bolt","tr":"碳弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Bolt","tr":"铬弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Bolt","tr":"金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Bolt","tr":"铱弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Bolt","tr":"铅弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Bolt","tr":"锰弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Bolt","tr":"钼弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Bolt","tr":"钕弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Bolt","tr":"中子弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Bolt","tr":"镍弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Bolt","tr":"锇弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Bolt","tr":"钯弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Bolt","tr":"铂弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Bolt","tr":"钚-239弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Bolt","tr":"钚-241弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Bolt","tr":"银弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Bolt","tr":"钍弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Bolt","tr":"钛弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Bolt","tr":"钨弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Bolt","tr":"铀-238弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Bolt","tr":"铀-235弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Bolt","tr":"红宝石弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Bolt","tr":"红石合金弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Bolt","tr":"终末弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Bolt","tr":"导电铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Bolt","tr":"磁钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Bolt","tr":"钨钢弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Bolt","tr":"烈焰弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Bolt","tr":"脉冲铁弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Bolt","tr":"龙弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Bolt","tr":"觉醒龙弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Bolt","tr":"褐铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Bolt","tr":"山铜弩箭","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleSiliconCarbide":{"0":{"oreDict":["plateDoubleSiliconCarbide"],"name":"双重碳化硅板","tr":"双重碳化硅板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:cucumberItem":{"0":{"oreDict":["cropCucumber"," listAllveggie"," listAllgreenveggie"],"name":"Cucumber","tr":"黄瓜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:altar":{"0":{"name":"Altar","tr":"祭坛","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cranberryyogurtItem":{"0":{"oreDict":["foodCranberryyogurt"],"name":"Cranberry Yogurt","tr":"蔓越莓酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:ritualDismantler":{"0":{"name":"Ritual Dismantler","tr":"仪式拆解杖","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:HeldItemBlock":{"0":{"name":"Frying Pan","tr":"煎锅","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:orePolycrase":{"0":{"oreDict":["orePolycrase"],"name":"Polycrase Ore","tr":"锗铀钇矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellFluorineSpargedTBSalt":{"0":{"oreDict":["cellFluorineSpargedTBSalt"],"name":"氟涤枯竭钍铍熔盐单元","tr":"氟涤枯竭钍铍熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:filing":{"0":{"name":"Filing Cabinet","tr":"文档柜","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Filing Cabinet (Advanced)","tr":"文档柜(高级)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:seed":{"0":{"name":"Hollyhock Germling","tr":"蜀葵 幼苗","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockEssentiaLocus":{"0":{"name":"Essentia Locus","tr":"源质聚核","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemPickVoid":{"0":{"name":"Void Pickaxe","tr":"虚空镐","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":151}},"irontank:copperIronUpgrade":{"0":{"name":"Copper to Iron Tank Upgrade","tr":"储罐升级:铜\u003e铁","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:BurntLiFBeF2ThF4UF4":{"0":{"oreDict":["cellBurntLiFBeF2ThF4UF4Salt"],"name":"枯竭铀钍复合氟化物熔盐单元","tr":"枯竭铀钍复合氟化物熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB7Stairs":{"0":{"name":"Metamorphic Mesa Stone Bricks Stairs","tr":"变质高原石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:customBrick0SlabFull":{"0":{"name":"Hellish Brick Slab","tr":"炼狱砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IceCompressedPlate":{"0":{"name":"Compressed Ice Plate","tr":"航天冰板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyBariteRd":{"0":{"oreDict":["dustTinyBariteRd"],"name":"小撮重晶石(Rd)粉","tr":"小撮重晶石(Rd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaGermanium":{"0":{"oreDict":["cellPlasmaGermanium"],"name":"锗等离子体单元","tr":"锗等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChromeIronPlate":{"0":{"name":"Chrome-Iron Plate","tr":"铬铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB4Slab":{"0":{"name":"Metamorphic Swamp Stone Brick Slab","tr":"变质沼泽石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamradishCrop":{"0":{"name":"Radish Crop","tr":"小红萝卜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_lime":{"0":{"name":"Lime Curtain","tr":"黄绿色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pampumpkincheeseCake":{"0":{"name":"Pumpkin Cheese Cake","tr":"南瓜芝士蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cabbageItem":{"0":{"oreDict":["listAllveggie"," cropCabbage"," listAllgreenveggie"],"name":"Cabbage","tr":"卷心菜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireHG1223":{"0":{"oreDict":["wireFineHG1223"],"name":"细HG-1223导线","tr":"细HG-1223导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:waraxe.iron":{"0":{"name":"Iron Waraxe","tr":"铁战斧","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":501}},"harvestcraft:vanillaItem":{"0":{"oreDict":["foodVanilla"],"name":"Vanilla","tr":"香草","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.smoothbasalt.stairs":{"0":{"name":"Smooth Basalt Stairs","tr":"平滑玄武岩楼梯","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:SpaceStationStructureBlock":{"0":{"name":"Space station structure block LV Tier","tr":"空间站结构方块 LV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:honeycombItem":{"0":{"oreDict":["materialHoneycomb"],"name":"Honeycomb","tr":"蜂窝","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamOrange":{"0":{"name":"Orange","tr":"橙子","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyGadoliniteY":{"0":{"oreDict":["dustTinyGadoliniteY"],"name":"小撮硅铍钇矿(Y)粉","tr":"小撮硅铍钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.cheeseCurd":{"0":{"name":"Cheese Curd","tr":"奶酪凝乳","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.redstoneArsenal.singularity":{"0":{"name":"Flux Crystal Singularity","tr":"红石水晶奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:voidPutty":{"0":{"name":"Void Putty","tr":"虚空油灰","tab":"神秘视界","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:oreSamarskiteY":{"0":{"oreDict":["oreSamarskiteY"],"name":"Samarskite (Y) Ore","tr":"铌钇矿(Y)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgradeLock":{"0":{"name":"Drawer Key","tr":"抽屉钥匙","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:silversword":{"0":{"name":"Silver Sword","tr":"银制剑","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":33}},"witchery:cbuttonwood":{"0":{"name":"Button","tr":"按钮","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemMaterial":{"0":{"oreDict":["itemSilicon"],"name":"Silicon","tr":"硅","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["itemConduitBinder"],"name":"Conduit Binder","tr":"导管粘合剂","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["itemBinderComposite"],"name":"Binder Composite","tr":"粘合胚料","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["itemPhasedIronNugget"," nuggetPulsatingIron"],"name":"Pulsating Iron Nugget","tr":"脉冲铁粒","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["itemVibrantNugget"," nuggetVibrantAlloy"],"name":"Vibrant Alloy Nugget","tr":"脉冲合金粒","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["itemPulsatingCrystal"],"name":"Pulsating Crystal","tr":"脉冲晶体","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["itemVibrantCrystal"],"name":"Vibrant Crystal","tr":"充能晶体","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["itemDarkGrindingBall"],"name":"Dark Steel Ball","tr":"玄钢磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["itemEnderCrystal"],"name":"Ender Crystal","tr":"末影晶体","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["itemAttractorCrystal"],"name":"Enticing Crystal","tr":"诱引晶体","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["itemWeatherCrystal"],"name":"Weather Crystal","tr":"天气晶体","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["itemEndSteelNugget"," nuggetEndSteel"],"name":"End Steel Nugget","tr":"末影钢粒","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["itemDarkSteelRod"],"name":"Dark Steel Rod","tr":"玄钢杆","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["itemPrecientCrystal"],"name":"Precient Crystal","tr":"预知晶体","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["itemPulsatingPowder"],"name":"Grains of Piezallity","tr":"脉冲晶体粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["itemVibrantPowder"],"name":"Grains of Vibrancy","tr":"充能晶体粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["itemEnderCrystalPowder"],"name":"Grains of the End","tr":"末影晶体粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["itemPrecientPowder"],"name":"Grains of Prescience","tr":"预知晶体粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:crossbar":{"0":{"name":"Wooden Crossbar","tr":"木十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Crossbar","tr":"石十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Crossbar","tr":"铁十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Crossbar","tr":"燧石十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Crossbar","tr":"仙人掌十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Crossbar","tr":"骨头十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Crossbar","tr":"黑曜石十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Crossbar","tr":"地狱岩十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Crossbar","tr":"史莱姆十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Crossbar","tr":"纸十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Crossbar","tr":"钴十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Crossbar","tr":"阿迪特十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Crossbar","tr":"玛玉灵十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Crossbar","tr":"铜十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Crossbar","tr":"青铜十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Crossbar","tr":"耐酸铝十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Crossbar","tr":"钢十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Crossbar","tr":"史莱姆十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Crossbar","tr":"生铁十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Crossbar","tr":"不稳定感应十字柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedingot":{"64":{"oreDict":["ingotRuthenium"],"name":"钌锭","tr":"钌锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["ingotShirabon"],"name":"调律源金锭","tr":"调律源金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotZirconium"],"name":"锆锭","tr":"锆锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["ingotZn-ThAlloy"],"name":"锌钍合金锭","tr":"锌钍合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["ingotRhodium"],"name":"铑锭","tr":"铑锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["ingotRhodium-PlatedPalladium"],"name":"镀铑钯锭","tr":"镀铑钯锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["ingotRuridit"],"name":"钌铱合金锭","tr":"钌铱合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["ingotHighDurabilityCompoundSteel"],"name":"高耐久性复合钢锭","tr":"高耐久性复合钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["ingotThorium232"],"name":"钍-232锭","tr":"钍-232锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["ingotAdemicSteel"],"name":"硬钢锭","tr":"硬钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["ingotZircaloy-4"],"name":"锆锡合金-4锭","tr":"锆锡合金-4锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["ingotZircaloy-2"],"name":"锆锡合金-2锭","tr":"锆锡合金-2锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["ingotIncoloy-903"],"name":"耐热铬铁合金-903锭","tr":"耐热铬铁合金-903锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["ingotAdamantiumAlloy"],"name":"精金合金锭","tr":"精金合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["ingotAtomicSeparationCatalyst"],"name":"原子分离催化剂锭","tr":"原子分离催化剂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["ingotCalifornium"],"name":"锎锭","tr":"锎锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["ingotCalcium"],"name":"钙锭","tr":"钙锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["ingotFluorophlogopite"],"name":"氟金云母锭","tr":"氟金云母锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["ingotExtremelyUnstableNaquadah"],"name":"极不稳定硅岩锭","tr":"极不稳定硅岩锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["ingotBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK锭","tr":"BArTiMaEuSNeK锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["ingotMagnesia"],"name":"氧化镁锭","tr":"氧化镁锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["ingotTantalumHafniumCarbide"],"name":"碳化钽铪锭","tr":"碳化钽铪锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["ingotMAR-M200Steel"],"name":"MAR-M200特种钢锭","tr":"MAR-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["ingotPTMEGElastomer"],"name":"PTMEG橡胶锭","tr":"PTMEG橡胶锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["ingotMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢锭","tr":"MAR-Ce-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["ingotLithiumChloride"],"name":"氯化锂锭","tr":"氯化锂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["ingotSignalium"],"name":"信素锭","tr":"信素锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["ingotLumiium"],"name":"流明锭","tr":"流明锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["ingotArtherium-Sn"],"name":"阿瑟锡锭","tr":"阿瑟锡锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["ingotTanmolyiumBeta-C"],"name":"钛钼合金β-C锭","tr":"钛钼合金β-C锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["ingotDalisenite"],"name":"大力合金锭","tr":"大力合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["ingotHafnium"],"name":"铪锭","tr":"铪锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["ingotHikarium"],"name":"光素锭","tr":"光素锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["ingotTairitsu"],"name":"对立合金锭","tr":"对立合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["ingotPreciousMetalsAlloy"],"name":"稀有金属合金锭","tr":"稀有金属合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["ingotEnrichedNaquadahAlloy"],"name":"富集硅岩合金锭","tr":"富集硅岩合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["ingotMetastableOganesson"],"name":"亚稳态鿫锭","tr":"亚稳态鿫锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["ingotZirconium"],"name":"锆锭","tr":"锆锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:charrrawItem":{"0":{"oreDict":["listAllfishraw"," foodCharrraw"],"name":"Raw Charr","tr":"生嘉鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioLabel":{"0":{"name":"Oak Wood Label","tr":"橡木标签","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Wood Label","tr":"云杉木标签","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Wood Label","tr":"桦木标签","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Wood Label","tr":"丛林木标签","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Label","tr":"金合欢标签","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Label","tr":"深色橡木标签","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Label","tr":"镶框标签","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:waterchestnutseedItem":{"0":{"oreDict":["listAllseed"," seedWaterchestnut"],"name":"Water Chestnut Seed","tr":"孛荠种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:pipes":{"0":{"name":"Transfer Pipe","tr":"运输管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sorting Pipe","tr":"分类管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Filter Pipe","tr":"过滤管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Rationing Pipe","tr":"分配管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Energy Pipe","tr":"能量管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Crossover Pipe","tr":"交错管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mod Sorting Pipe","tr":"模组分类管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Energy Extraction Pipe","tr":"能量提取管道","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotSiliconCarbide":{"0":{"oreDict":["ingotSiliconCarbide"],"name":"碳化硅锭","tr":"碳化硅锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco16":{"0":{"oreDict":["blockTorch"],"name":"Black Candle","tr":"黑色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"SGCraft:sgIrisBlade":{"0":{"name":"Stargate Iris Blade","tr":"星门虹膜叶片","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeIngot":{"0":{"name":"Casting Form (Ingot Shape)","tr":"铸形(锭)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockSelenium":{"0":{"oreDict":["blockSelenium"],"name":"硒块","tr":"硒块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:curryleafseedItem":{"0":{"oreDict":["listAllseed"," seedCurryleaf"],"name":"Curry Leaf Seed","tr":"咖喱叶种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:mushroom":{"0":{"name":"Mushroom","tr":"蘑菇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Mushroom","tr":"蘑菇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedIridiumDrillTip":{"0":{"name":"Reinforced Iridium Drill Tip","tr":"强化铱钻头","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco11":{"0":{"oreDict":["blockTorch"],"name":"Purple Candle","tr":"紫色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco10":{"0":{"oreDict":["blockTorch"],"name":"Cyan Candle","tr":"青色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco13":{"0":{"oreDict":["blockTorch"],"name":"Brown Candle","tr":"棕色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco12":{"0":{"oreDict":["blockTorch"],"name":"Blue Candle","tr":"蓝色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBootsCultist":{"0":{"name":"Crimson Cult Boots","tr":"血腥邪徒靴子","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":196}},"harvestcraft:pamcandleDeco15":{"0":{"oreDict":["blockTorch"],"name":"Red Candle","tr":"红色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:dreamcatcher":{"0":{"name":"Dream Weaver","tr":"织梦者","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco14":{"0":{"oreDict":["blockTorch"],"name":"Green Candle","tr":"绿色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartShovelHead":{"1536":{"name":"精金 Shovel Head","tr":"精金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Shovel Head","tr":"神秘蓝金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Shovel Head","tr":"琥珀 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Shovel Head","tr":"纯镃 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Shovel Head","tr":"谐镃 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Shovel Head","tr":"聚氯乙烯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Shovel Head","tr":"永恒 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Shovel Head","tr":"磁物质 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Shovel Head","tr":"赛特斯石英 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Shovel Head","tr":"暗影秘银 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Shovel Head","tr":"玄铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Shovel Head","tr":"戴斯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Shovel Head","tr":"铿铀 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Shovel Head","tr":"通流琥珀金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Shovel Head","tr":"末影粗胚 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Shovel Head","tr":"末影(te) 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Shovel Head","tr":"炽热的钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Shovel Head","tr":"火石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Shovel Head","tr":"力量 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Shovel Head","tr":"石墨 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Shovel Head","tr":"石墨烯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Shovel Head","tr":"注魔金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Shovel Head","tr":"风之魔晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Shovel Head","tr":"火之魔晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Shovel Head","tr":"地之魔晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Shovel Head","tr":"水之魔晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Shovel Head","tr":"混沌魔晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Shovel Head","tr":"秩序魔晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Shovel Head","tr":"玉 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Shovel Head","tr":"碧玉 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Shovel Head","tr":"陨铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Shovel Head","tr":"陨钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Shovel Head","tr":"硅岩 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Shovel Head","tr":"硅岩合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Shovel Head","tr":"富集硅岩 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Shovel Head","tr":"超能硅岩 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Shovel Head","tr":"下界石英 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Shovel Head","tr":"下界之星 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Shovel Head","tr":"三钛 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Shovel Head","tr":"虚空 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Shovel Head","tr":"胶木 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Shovel Head","tr":"幽冥剧毒结晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Shovel Head","tr":"强化 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Shovel Head","tr":"铱锇合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Shovel Head","tr":"阳光化合物 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Shovel Head","tr":"魂金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Shovel Head","tr":"蓝黄玉 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Shovel Head","tr":"黄铜 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Shovel Head","tr":"白铜 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Shovel Head","tr":"深渊铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Shovel Head","tr":"钻石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Shovel Head","tr":"琥珀金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Shovel Head","tr":"绿宝石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Shovel Head","tr":"强化混合晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Shovel Head","tr":"混合晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Shovel Head","tr":"绿色蓝宝石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Shovel Head","tr":"殷钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Shovel Head","tr":"坎塔尔合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Shovel Head","tr":"镁铝合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Shovel Head","tr":"镍铬合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Shovel Head","tr":"玄钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Shovel Head","tr":"生铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Shovel Head","tr":"聚乙烯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Shovel Head","tr":"环氧树脂 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Shovel Head","tr":"硅橡胶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Shovel Head","tr":"聚己内酰胺 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Shovel Head","tr":"聚四氟乙烯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Shovel Head","tr":"蓝宝石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Shovel Head","tr":"不锈钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Shovel Head","tr":"坦桑石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Shovel Head","tr":"锡铁合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Shovel Head","tr":"黄玉 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Shovel Head","tr":"哈氏合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Shovel Head","tr":"锻铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Shovel Head","tr":"铁木 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Shovel Head","tr":"橄榄石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Shovel Head","tr":"蛋白石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Shovel Head","tr":"紫水晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Shovel Head","tr":"暗影金属 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Shovel Head","tr":"暗影铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Shovel Head","tr":"暗影钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Shovel Head","tr":"钢叶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Shovel Head","tr":"骑士金属 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Shovel Head","tr":"标准纯银 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Shovel Head","tr":"玫瑰金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Shovel Head","tr":"黑青铜 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Shovel Head","tr":"铋青铜 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Shovel Head","tr":"黑钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Shovel Head","tr":"红钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Shovel Head","tr":"蓝钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Shovel Head","tr":"大马士革钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Shovel Head","tr":"充能合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Shovel Head","tr":"脉冲合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Shovel Head","tr":"星辰银 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Shovel Head","tr":"钴黄铜 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Shovel Head","tr":"红石榴石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Shovel Head","tr":"黄石榴石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Shovel Head","tr":"温特姆 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Shovel Head","tr":"黑花岗岩 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Shovel Head","tr":"红花岗岩 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Shovel Head","tr":"白石棉 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Shovel Head","tr":"雄黄 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Shovel Head","tr":"磁化铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Shovel Head","tr":"磁化钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Shovel Head","tr":"磁化钕 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Shovel Head","tr":"碳化钨 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Shovel Head","tr":"钒钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Shovel Head","tr":"高速钢-G 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Shovel Head","tr":"高速钢-E 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Shovel Head","tr":"高速钢-S 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Shovel Head","tr":"深铅 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Shovel Head","tr":"量子 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Shovel Head","tr":"深空秘银 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Shovel Head","tr":"黑钚 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Shovel Head","tr":"木卫四冰 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Shovel Head","tr":"硬铝 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Shovel Head","tr":"奥利哈钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Shovel Head","tr":"三元金属 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Shovel Head","tr":"聚苯硫醚 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Shovel Head","tr":"聚苯乙烯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Shovel Head","tr":"丁苯橡胶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Shovel Head","tr":"镍锌铁氧体 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Shovel Head","tr":"纤维强化的环氧树脂 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Shovel Head","tr":"磁化钐 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Shovel Head","tr":"无尽催化剂 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Shovel Head","tr":"聚苯并咪唑 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Shovel Head","tr":" 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Shovel Head","tr":"钛铂钒合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Shovel Head","tr":"时空 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Shovel Head","tr":"大理石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Shovel Head","tr":"神秘水晶 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Shovel Head","tr":"末影钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Shovel Head","tr":"复合粘土 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Shovel Head","tr":"晶化合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Shovel Head","tr":"旋律合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Shovel Head","tr":"恒星合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Shovel Head","tr":"晶化粉红史莱姆 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Shovel Head","tr":"充能银 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Shovel Head","tr":"生动合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Shovel Head","tr":"灵宝 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Shovel Head","tr":"超时空金属 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Shovel Head","tr":"活石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Shovel Head","tr":"盖亚之魂 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Shovel Head","tr":"活木 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Shovel Head","tr":"梦之木 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Shovel Head","tr":"泡铋 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Shovel Head","tr":"立方氧化锆 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Shovel Head","tr":"氟铁电气石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Shovel Head","tr":"铬铝电气石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Shovel Head","tr":"钒镁电气石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Shovel Head","tr":"铝电气石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Shovel Head","tr":"红锆石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Shovel Head","tr":"铁橄榄石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Shovel Head","tr":"镁橄榄石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Shovel Head","tr":"钙铁辉石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Shovel Head","tr":"钍-232 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Shovel Head","tr":"堇云石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Shovel Head","tr":"磁共振石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Shovel Head","tr":"锎 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Shovel Head","tr":"BArTiMaEuSNeK 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Shovel Head","tr":"钌 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Shovel Head","tr":"铑 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Shovel Head","tr":"镀铑钯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Shovel Head","tr":"泰伯利亚 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Shovel Head","tr":"钌铱合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Shovel Head","tr":"氟石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Shovel Head","tr":"高耐久性复合钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Shovel Head","tr":"硬钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Shovel Head","tr":"合成玉 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Shovel Head","tr":"原子分离催化剂 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Shovel Head","tr":"极不稳定硅岩 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Shovel Head","tr":"锌钍合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Shovel Head","tr":"锆锡合金-4 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Shovel Head","tr":"锆锡合金-2 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Shovel Head","tr":"耐热铬铁合金-903 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Shovel Head","tr":"精金合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Shovel Head","tr":"MAR-M200特种钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Shovel Head","tr":"MAR-Ce-M200特种钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Shovel Head","tr":"氯化锂 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Shovel Head","tr":"信素 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Shovel Head","tr":"流明 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Shovel Head","tr":"阿瑟锡 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Shovel Head","tr":"钛钼合金β-C 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Shovel Head","tr":"大力合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Shovel Head","tr":"光素 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Shovel Head","tr":"对立合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Shovel Head","tr":"稀有金属合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Shovel Head","tr":"富集硅岩合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Shovel Head","tr":"亚稳态鿫 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Shovel Head","tr":"调律源金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Shovel Head","tr":"魔钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Shovel Head","tr":"泰拉钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Shovel Head","tr":"源质钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Shovel Head","tr":"磁流体约束恒星物质 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Shovel Head","tr":"白矮星物质 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Shovel Head","tr":"黑矮星物质 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Shovel Head","tr":"宇宙素 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Shovel Head","tr":"铝 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Shovel Head","tr":"铍 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Shovel Head","tr":"铋 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Shovel Head","tr":"碳 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Shovel Head","tr":"铬 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Shovel Head","tr":"金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Shovel Head","tr":"铱 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Shovel Head","tr":"铅 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Shovel Head","tr":"锰 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Shovel Head","tr":"钼 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Shovel Head","tr":"钕 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Shovel Head","tr":"中子 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Shovel Head","tr":"镍 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Shovel Head","tr":"锇 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Shovel Head","tr":"钯 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Shovel Head","tr":"铂 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Shovel Head","tr":"钚-239 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Shovel Head","tr":"钚-241 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Shovel Head","tr":"银 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Shovel Head","tr":"钍 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Shovel Head","tr":"钛 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Shovel Head","tr":"钨 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Shovel Head","tr":"铀-238 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Shovel Head","tr":"铀-235 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Shovel Head","tr":"红宝石 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Shovel Head","tr":"红石合金 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Shovel Head","tr":"终末 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Shovel Head","tr":"导电铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Shovel Head","tr":"磁钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Shovel Head","tr":"钨钢 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Shovel Head","tr":"烈焰 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Shovel Head","tr":"脉冲铁 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Shovel Head","tr":"龙 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Shovel Head","tr":"觉醒龙 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Shovel Head","tr":"褐铜 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Shovel Head","tr":"山铜 铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:nodeFoci":{"0":{"name":"§eNode Manipulator Focus: Brightness","tr":"§e节点调节核心:明亮","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"§eNode Manipulator Focus: Destruction","tr":"§e节点调节核心:湮灭","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"§eNode Manipulator Focus: Efficiency","tr":"§e节点调节核心:效率","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"§eNode Manipulator Focus: Hunger","tr":"§e节点调节核心:饕餮","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"§eNode Manipulator Focus: Instability","tr":"§e节点调节核心:不稳定","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"§eNode Manipulator Focus: Purity","tr":"§e节点调节核心:纯净","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"§eNode Manipulator Focus: Sinister","tr":"§e节点调节核心:凶险","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"§eNode Manipulator Focus: Speed","tr":"§e节点调节核心:速度","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"§eNode Manipulator Focus: Stability","tr":"§e节点调节核心:稳定","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"§eNode Manipulator Focus: Taint","tr":"§e节点调节核心:污染","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestthenether:Quartz Hoe":{"0":{"name":"Quartz Hoe","tr":"石英锄","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":251}},"Botania:twigWand":{"0":{"name":"Wand of the Forest","tr":"森林法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestthenether:netherbedItem":{"0":{"name":"Nether Bed","tr":"下界床","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockPotin":{"0":{"oreDict":["blockPotin"],"name":"粗青铜合金块","tr":"粗青铜合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:ureamix":{"0":{"oreDict":["cellUreaMix"],"name":"尿素混合物单元","tr":"尿素混合物单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:printer":{"0":{"oreDict":["oc:printer"],"name":"3D Printer","tr":"3D打印机","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:craneControl":{"0":{"name":"Crane Control","tr":"起重机控制器","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"ProjectBlue:miniatureCover":{"0":{"name":"Miniature Wooden Planks Cover","tr":"微型 木板 盖板","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetAdvancedNitinol":{"0":{"oreDict":["nuggetAdvancedNitinol"],"name":"高级镍钛诺粒","tr":"高级镍钛诺粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolMEter":{"0":{"name":"EU-Reader","tr":"EU电表","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:trapdoor.bloodwood":{"0":{"oreDict":["trapdoorWood"],"name":"Blood Trapdoor","tr":"血树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_stained_ice":{"0":{"name":"Blood Stained Ice","tr":"染血冰块","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormNuggets":{"0":{"name":"Casting Form (Nuggets Mold)","tr":"铸件(粒)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"FloodLights:rawFilament":{"0":{"name":"Raw Filament","tr":"未加工的灯丝","tab":"泛光灯","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockOctiron":{"0":{"oreDict":["blockOctiron"],"name":"八角铁块","tr":"八角铁块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:knifeBlade":{"0":{"name":"Wooden Knife Blade","tr":"木刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Knife Blade","tr":"石刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Knife Blade","tr":"铁刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Knife Blade","tr":"燧石刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Knife Blade","tr":"仙人掌刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Knife Blade","tr":"骨头刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Knife Blade","tr":"黑曜石刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Knife Blade","tr":"地狱岩刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Knife Blade","tr":"史莱姆刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Knife Blade","tr":"纸刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Knife Blade","tr":"钴刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Knife Blade","tr":"阿迪特刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Knife Blade","tr":"玛玉灵刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Knife Blade","tr":"铜刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Knife Blade","tr":"青铜刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Knife Blade","tr":"耐酸铝刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Knife Blade","tr":"钢刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Knife Blade","tr":"史莱姆刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Knife Blade","tr":"生铁刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Knife Blade","tr":"不稳定感应刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.charmOfLife2":{"0":{"name":"Charm of Life II","tr":"魔力生命Ⅱ","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.charmOfLife1":{"0":{"name":"Charm of Life I","tr":"魔力生命Ⅰ","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EuropaIceDust":{"0":{"oreDict":["dustSpace"," dustEuropaIce"," dustEuropa"],"name":"Europa Ice Dust","tr":"木卫二冰屑","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTantalloy60":{"0":{"oreDict":["dustTinyTantalloy60"],"name":"小撮钽钨合金-60粉","tr":"小撮钽钨合金-60粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTantalloy61":{"0":{"oreDict":["dustTinyTantalloy61"],"name":"小撮钽钨合金-61粉","tr":"小撮钽钨合金-61粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtMaragingSteel250":{"0":{"oreDict":["frameGtMaragingSteel250"],"name":"马氏体时效钢250框架","tr":"马氏体时效钢250框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gtnhintergalactic:gt.blockcasingsSEMotor":{"0":{"name":"太空电梯加速轨道MK-I","tr":"太空电梯加速轨道MK-I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"太空电梯加速轨道MK-II","tr":"太空电梯加速轨道MK-II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"太空电梯加速轨道MK-III","tr":"太空电梯加速轨道MK-III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"太空电梯加速轨道MK-IV","tr":"太空电梯加速轨道MK-IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"太空电梯加速轨道MK-V","tr":"太空电梯加速轨道MK-V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Infinity_Sword":{"0":{"name":"Sword of the Cosmos","tr":"寰宇支配之剑","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":10000}},"IC2:itemRubber":{"0":{"oreDict":["itemRubber"," ingotRubber"," ingotAnyRubber"],"name":"Rubber","tr":"橡胶","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureZirconolite":{"0":{"oreDict":["dustPureZirconolite"],"name":"Purified Zirconolite Dust","tr":"洁净钛锆酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockZeron100":{"0":{"oreDict":["blockZeron100"],"name":"塞龙-100块","tr":"塞龙-100块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB3Stairs":{"0":{"name":"Metamorphic Fungal Stone Brick Stairs","tr":"变质菌丝石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SawBladeSapphire":{"0":{"name":"Sapphire Saw Blade","tr":"蓝宝石锯刃","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:infoTablet":{"0":{"name":"Draconic Evolution Information Tablet","tr":"龙之研究信息板","tab":"龙之研究方块和物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemNuggetSelenium":{"0":{"oreDict":["nuggetSelenium"],"name":"硒粒","tr":"硒粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.mazeWafer":{"0":{"name":"Maze Wafer","tr":"迷宫薄饼","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.crowbar.reinforced":{"0":{"oreDict":["craftingToolCrowbar"],"name":"Reinforced Crowbar","tr":"强化撬棍","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":501}},"harvestcraft:cheeseburgerItem":{"0":{"oreDict":["foodCheeseburger"],"name":"Cheeseburger","tr":"芝士汉堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:BloodRapier":{"0":{"name":"Rapier of the Strix","tr":"血鸮西洋剑","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":701}},"miscutils:itemGearPraseodymium":{"0":{"oreDict":["gearGtPraseodymium"," gearPraseodymium"],"name":"镨齿轮","tr":"镨齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:leechchest":{"0":{"name":"Leech Chest","tr":"水蛭箱子","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemPrimordialEdge":{"0":{"name":"Edge of the Primordials","tr":"元始之刃","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":513}},"dreamcraft:item.EngravedQuantumChip":{"0":{"name":"Engraved Quantum Chip","tr":"雕刻量子芯片","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedGTEnhancementcapsuleMolten":{"1":{"oreDict":["capsuleMoltenAluminium"],"name":"熔融铝胶囊","tr":"熔融铝胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"769":{"oreDict":["capsuleMoltenGaiaSpirit"],"name":"熔融盖亚之魂胶囊","tr":"熔融盖亚之魂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"259":{"oreDict":["capsuleMoltenVoid"],"name":"熔融虚空胶囊","tr":"熔融虚空胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"261":{"oreDict":["capsuleMoltenVulcanite"],"name":"熔融胶木胶囊","tr":"熔融胶木胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"262":{"oreDict":["capsuleMoltenVyroxeres"],"name":"熔融幽冥剧毒结晶胶囊","tr":"熔融幽冥剧毒结晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["capsuleMoltenBeryllium"],"name":"熔融铍胶囊","tr":"熔融铍胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["capsuleMoltenBismuth"],"name":"熔融铋胶囊","tr":"熔融铋胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["capsuleMoltenChrome"],"name":"熔融铬胶囊","tr":"熔融铬胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["capsuleMoltenCobalt"],"name":"熔融钴胶囊","tr":"熔融钴胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["capsuleMoltenGold"],"name":"熔融金胶囊","tr":"熔融金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["capsuleMoltenIridium"],"name":"熔融铱胶囊","tr":"熔融铱胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["capsuleMoltenIron"],"name":"熔融铁胶囊","tr":"熔融铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["capsuleMoltenLead"],"name":"熔融铅胶囊","tr":"熔融铅胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["capsuleMoltenMagic"],"name":"熔融神秘胶囊","tr":"熔融神秘胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"552":{"oreDict":["capsuleMoltenStainlessSteel"],"name":"熔融不锈钢胶囊","tr":"熔融不锈钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["capsuleMoltenManganese"],"name":"熔融锰胶囊","tr":"熔融锰胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"553":{"oreDict":["capsuleMoltenSteel"],"name":"熔融钢胶囊","tr":"熔融钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["capsuleMoltenMolybdenum"],"name":"熔融钼胶囊","tr":"熔融钼胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["capsuleMoltenNeodymium"],"name":"熔融钕胶囊","tr":"熔融钕胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["capsuleMoltenNeutronium"],"name":"熔融中子胶囊","tr":"熔融中子胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"oreDict":["capsuleMoltenNickel"],"name":"熔融镍胶囊","tr":"熔融镍胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"558":{"oreDict":["capsuleMoltenTinAlloy"],"name":"熔融锡铁合金胶囊","tr":"熔融锡铁合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["capsuleMoltenOsmium"],"name":"熔融锇胶囊","tr":"熔融锇胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"561":{"oreDict":["capsuleMoltenUltimet"],"name":"熔融哈氏合金胶囊","tr":"熔融哈氏合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["capsuleMoltenPalladium"],"name":"熔融钯胶囊","tr":"熔融钯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["capsuleMoltenPlatinum"],"name":"熔融铂胶囊","tr":"熔融铂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["capsuleMoltenPlutonium239"],"name":"熔融钚-239胶囊","tr":"熔融钚-239胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"566":{"oreDict":["capsuleMoltenWroughtIron"],"name":"熔融锻铁胶囊","tr":"熔融锻铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["capsuleMoltenPlutonium241"],"name":"熔融钚-241胶囊","tr":"熔融钚-241胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"572":{"oreDict":["capsuleMoltenIronwood"],"name":"熔融铁木胶囊","tr":"熔融铁木胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["capsuleMoltenSilver"],"name":"熔融银胶囊","tr":"熔融银胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"320":{"oreDict":["capsuleMoltenReinforced"],"name":"熔融强化胶囊","tr":"熔融强化胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["capsuleMoltenThorium"],"name":"熔融钍胶囊","tr":"熔融钍胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"583":{"oreDict":["capsuleMoltenBlaze"],"name":"熔融烈焰胶囊","tr":"熔融烈焰胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"841":{"oreDict":["capsuleMoltenSpaceTime"],"name":"熔融时空胶囊","tr":"熔融时空胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"oreDict":["capsuleMoltenTitanium"],"name":"熔融钛胶囊","tr":"熔融钛胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"842":{"oreDict":["capsuleMoltenTranscendentMetal"],"name":"熔融超时空金属胶囊","tr":"熔融超时空金属胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"oreDict":["capsuleMoltenTritanium"],"name":"熔融三钛胶囊","tr":"熔融三钛胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"843":{"oreDict":["capsuleMoltenMagnetohydrodynamicallyConstrainedStarMatter"],"name":"熔融磁流体约束恒星物质胶囊","tr":"熔融磁流体约束恒星物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["capsuleMoltenTungsten"],"name":"熔融钨胶囊","tr":"熔融钨胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"845":{"oreDict":["capsuleMoltenWhiteDwarfMatter"],"name":"熔融白矮星物质胶囊","tr":"熔融白矮星物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["capsuleMoltenUranium238"],"name":"熔融铀-238胶囊","tr":"熔融铀-238胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"334":{"oreDict":["capsuleMoltenAluminiumBrass"],"name":"熔融铝黄铜胶囊","tr":"熔融铝黄铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"846":{"oreDict":["capsuleMoltenBlackDwarfMatter"],"name":"熔融黑矮星物质胶囊","tr":"熔融黑矮星物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["capsuleMoltenUranium235"],"name":"熔融铀-235胶囊","tr":"熔融铀-235胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"335":{"oreDict":["capsuleMoltenOsmiridium"],"name":"熔融铱锇合金胶囊","tr":"熔融铱锇合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"336":{"oreDict":["capsuleMoltenSunnarium"],"name":"熔融阳光化合物胶囊","tr":"熔融阳光化合物胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"849":{"oreDict":["capsuleMoltenUniversium"],"name":"熔融宇宙素胶囊","tr":"熔融宇宙素胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"594":{"oreDict":["capsuleMoltenAlumite"],"name":"熔融耐酸铝胶囊","tr":"熔融耐酸铝胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"850":{"oreDict":["capsuleMoltenEternity"],"name":"熔融永恒胶囊","tr":"熔融永恒胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"595":{"oreDict":["capsuleMoltenManyullyn"],"name":"熔融玛玉灵胶囊","tr":"熔融玛玉灵胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"852":{"oreDict":["capsuleMoltenMagmatter"],"name":"熔融磁物质胶囊","tr":"熔融磁物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"597":{"oreDict":["capsuleMoltenKnightmetal"],"name":"熔融骑士金属胶囊","tr":"熔融骑士金属胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"598":{"oreDict":["capsuleMoltenSterlingSilver"],"name":"熔融标准纯银胶囊","tr":"熔融标准纯银胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"599":{"oreDict":["capsuleMoltenRoseGold"],"name":"熔融玫瑰金胶囊","tr":"熔融玫瑰金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"600":{"oreDict":["capsuleMoltenBlackBronze"],"name":"熔融黑青铜胶囊","tr":"熔融黑青铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"601":{"oreDict":["capsuleMoltenBismuthBronze"],"name":"熔融铋青铜胶囊","tr":"熔融铋青铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"602":{"oreDict":["capsuleMoltenBlackSteel"],"name":"熔融黑钢胶囊","tr":"熔融黑钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"603":{"oreDict":["capsuleMoltenRedSteel"],"name":"熔融红钢胶囊","tr":"熔融红钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["capsuleMoltenFlerovium"],"name":"熔融胶囊","tr":"熔融胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"604":{"oreDict":["capsuleMoltenBlueSteel"],"name":"熔融蓝钢胶囊","tr":"熔融蓝钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"605":{"oreDict":["capsuleMoltenDamascusSteel"],"name":"熔融大马士革钢胶囊","tr":"熔融大马士革钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"606":{"oreDict":["capsuleMoltenTungstensteel"],"name":"熔融钨钢胶囊","tr":"熔融钨钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"610":{"oreDict":["capsuleMoltenCobaltBrass"],"name":"熔融钴黄铜胶囊","tr":"熔融钴黄铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"358":{"oreDict":["capsuleMoltenBrass"],"name":"熔融黄铜胶囊","tr":"熔融黄铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"359":{"oreDict":["capsuleMoltenBronze"],"name":"熔融青铜胶囊","tr":"熔融青铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"617":{"oreDict":["capsuleMoltenThaumium"],"name":"熔融神秘胶囊","tr":"熔融神秘胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"618":{"oreDict":["capsuleMoltenVinteum"],"name":"熔融温特姆胶囊","tr":"熔融温特姆胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"111":{"oreDict":["capsuleMoltenEndium"],"name":"熔融终末胶囊","tr":"熔融终末胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"625":{"oreDict":["capsuleMoltenChrysotile"],"name":"熔融白石棉胶囊","tr":"熔融白石棉胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"626":{"oreDict":["capsuleMoltenRealgar"],"name":"熔融雄黄胶囊","tr":"熔融雄黄胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"374":{"oreDict":["capsuleMoltenCupronickel"],"name":"熔融白铜胶囊","tr":"熔融白铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"376":{"oreDict":["capsuleMoltenDeepIron"],"name":"熔融深渊铁胶囊","tr":"熔融深渊铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"122":{"oreDict":["capsuleMoltenDraconium"],"name":"熔融龙胶囊","tr":"熔融龙胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"378":{"oreDict":["capsuleMoltenElectrum"],"name":"熔融琥珀金胶囊","tr":"熔融琥珀金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"123":{"oreDict":["capsuleMoltenAwakenedDraconium"],"name":"熔融觉醒龙胶囊","tr":"熔融觉醒龙胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"126":{"oreDict":["capsuleMoltenAdamantium"],"name":"熔融精金胶囊","tr":"熔融精金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"128":{"oreDict":["capsuleMoltenAdluorite"],"name":"熔融亚萤石胶囊","tr":"熔融亚萤石胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"130":{"oreDict":["capsuleMoltenAlduorite"],"name":"熔融神秘蓝金胶囊","tr":"熔融神秘蓝金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"133":{"oreDict":["capsuleMoltenAmordrine"],"name":"熔融魔力之石胶囊","tr":"熔融魔力之石胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"135":{"oreDict":["capsuleMoltenAngmallen"],"name":"熔融神圣之金胶囊","tr":"熔融神圣之金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"136":{"oreDict":["capsuleMoltenArdite"],"name":"熔融阿迪特胶囊","tr":"熔融阿迪特胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"137":{"oreDict":["capsuleMoltenAredrite"],"name":"熔融希尔金胶囊","tr":"熔融希尔金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"393":{"oreDict":["capsuleMoltenInvar"],"name":"熔融殷钢胶囊","tr":"熔融殷钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"138":{"oreDict":["capsuleMoltenAtlarus"],"name":"熔融深金胶囊","tr":"熔融深金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"394":{"oreDict":["capsuleMoltenKanthal"],"name":"熔融坎塔尔合金胶囊","tr":"熔融坎塔尔合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"396":{"oreDict":["capsuleMoltenMagnalium"],"name":"熔融镁铝合金胶囊","tr":"熔融镁铝合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"400":{"oreDict":["capsuleMoltenNichrome"],"name":"熔融镍铬合金胶囊","tr":"熔融镍铬合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"146":{"oreDict":["capsuleMoltenCarmot"],"name":"熔融点金石胶囊","tr":"熔融点金石胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"147":{"oreDict":["capsuleMoltenCelenegil"],"name":"熔融幽冥剧毒结晶胶囊","tr":"熔融幽冥剧毒结晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"660":{"oreDict":["capsuleMoltenMagneticIron"],"name":"熔融磁化铁胶囊","tr":"熔融磁化铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"661":{"oreDict":["capsuleMoltenMagneticSteel"],"name":"熔融磁化钢胶囊","tr":"熔融磁化钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"150":{"oreDict":["capsuleMoltenCeruclase"],"name":"熔融暗影秘银胶囊","tr":"熔融暗影秘银胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"662":{"oreDict":["capsuleMoltenMagneticNeodymium"],"name":"熔融磁化钕胶囊","tr":"熔融磁化钕胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"407":{"oreDict":["capsuleMoltenPigIron"],"name":"熔融生铁胶囊","tr":"熔融生铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"663":{"oreDict":["capsuleMoltenMagneticSamarium"],"name":"熔融磁化钐胶囊","tr":"熔融磁化钐胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"408":{"oreDict":["capsuleMoltenPolyethylene"],"name":"熔融聚乙烯胶囊","tr":"熔融聚乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"664":{"oreDict":["capsuleMoltenTungstencarbide"],"name":"熔融碳化钨胶囊","tr":"熔融碳化钨胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"409":{"oreDict":["capsuleMoltenEpoxid"],"name":"熔融环氧树脂胶囊","tr":"熔融环氧树脂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"665":{"oreDict":["capsuleMoltenVanadiumsteel"],"name":"熔融钒钢胶囊","tr":"熔融钒钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"666":{"oreDict":["capsuleMoltenHSS-G"],"name":"熔融高速钢-G胶囊","tr":"熔融高速钢-G胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"411":{"oreDict":["capsuleMoltenSiliconeRubber"],"name":"熔融硅橡胶胶囊","tr":"熔融硅橡胶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"667":{"oreDict":["capsuleMoltenHSS-E"],"name":"熔融高速钢-E胶囊","tr":"熔融高速钢-E胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"412":{"oreDict":["capsuleMoltenPolycaprolactam"],"name":"熔融聚己内酰胺胶囊","tr":"熔融聚己内酰胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"668":{"oreDict":["capsuleMoltenHSS-S"],"name":"熔融高速钢-S胶囊","tr":"熔融高速钢-S胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"413":{"oreDict":["capsuleMoltenPolytetrafluoroethylene"],"name":"熔融聚四氟乙烯胶囊","tr":"熔融聚四氟乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"669":{"oreDict":["capsuleMoltenTPV-Alloy"],"name":"熔融钛铂钒合金胶囊","tr":"熔融钛铂钒合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"671":{"oreDict":["capsuleMoltenFiber-ReinforcedEpoxyResin"],"name":"熔融纤维强化的环氧树脂胶囊","tr":"熔融纤维强化的环氧树脂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"162":{"oreDict":["capsuleMoltenDarkIron"],"name":"熔融玄铁胶囊","tr":"熔融玄铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"420":{"oreDict":["capsuleMoltenRubber"],"name":"熔融橡胶胶囊","tr":"熔融橡胶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"165":{"oreDict":["capsuleMoltenDesh"],"name":"熔融戴斯胶囊","tr":"熔融戴斯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"166":{"oreDict":["capsuleMoltenDesichalkos"],"name":"熔融虚空之魂石胶囊","tr":"熔融虚空之魂石胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"170":{"oreDict":["capsuleMoltenDuranium"],"name":"熔融铿铀胶囊","tr":"熔融铿铀胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"172":{"oreDict":["capsuleMoltenFluxedElectrum"],"name":"熔融通流琥珀金胶囊","tr":"熔融通流琥珀金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"174":{"oreDict":["capsuleMoltenEnderiumBase"],"name":"熔融末影粗胚胶囊","tr":"熔融末影粗胚胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"177":{"oreDict":["capsuleMoltenEximite"],"name":"熔融虚空石胶囊","tr":"熔融虚空石胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"689":{"oreDict":["capsuleMoltenPolybenzimidazole"],"name":"熔融聚苯并咪唑胶囊","tr":"熔融聚苯并咪唑胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"178":{"oreDict":["capsuleMoltenFierySteel"],"name":"熔融炽热的钢胶囊","tr":"熔融炽热的钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"182":{"oreDict":["capsuleMoltenForce"],"name":"熔融力量胶囊","tr":"熔融力量胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"698":{"oreDict":["capsuleMoltenGalgadorian"],"name":"熔融混合晶胶囊","tr":"熔融混合晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"699":{"oreDict":["capsuleMoltenEnhancedGalgadorian"],"name":"熔融强化混合晶胶囊","tr":"熔融强化混合晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"700":{"oreDict":["capsuleMoltenBloodInfusedIron"],"name":"熔融注血铁胶囊","tr":"熔融注血铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"701":{"oreDict":["capsuleMoltenShadowMetal"],"name":"熔融暗影金属胶囊","tr":"熔融暗影金属胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"702":{"oreDict":["capsuleMoltenLedox"],"name":"熔融深铅胶囊","tr":"熔融深铅胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"703":{"oreDict":["capsuleMoltenQuantium"],"name":"熔融量子胶囊","tr":"熔融量子胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"704":{"oreDict":["capsuleMoltenMytryl"],"name":"熔融深空秘银胶囊","tr":"熔融深空秘银胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"193":{"oreDict":["capsuleMoltenHaderoth"],"name":"熔融幻之铜胶囊","tr":"熔融幻之铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"705":{"oreDict":["capsuleMoltenBlackPlutonium"],"name":"熔融黑钚胶囊","tr":"熔融黑钚胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"706":{"oreDict":["capsuleMoltenCallistoIce"],"name":"熔融木卫四冰胶囊","tr":"熔融木卫四冰胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"195":{"oreDict":["capsuleMoltenHepatizon"],"name":"熔融幽魂结晶胶囊","tr":"熔融幽魂结晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"707":{"oreDict":["capsuleMoltenDuralumin"],"name":"熔融硬铝胶囊","tr":"熔融硬铝胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"196":{"oreDict":["capsuleMoltenHSLASteel"],"name":"熔融HSLA钢胶囊","tr":"熔融HSLA钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"708":{"oreDict":["capsuleMoltenOriharukon"],"name":"熔融奥利哈钢胶囊","tr":"熔融奥利哈钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"709":{"oreDict":["capsuleMoltenMysteriousCrystal"],"name":"熔融神秘水晶胶囊","tr":"熔融神秘水晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"710":{"oreDict":["capsuleMoltenRedstoneAlloy"],"name":"熔融红石合金胶囊","tr":"熔融红石合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"199":{"oreDict":["capsuleMoltenInfuscolium"],"name":"熔融魔金胶囊","tr":"熔融魔金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"711":{"oreDict":["capsuleMoltenSoularium"],"name":"熔融魂金胶囊","tr":"熔融魂金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"200":{"oreDict":["capsuleMoltenInfusedGold"],"name":"熔融注魔金胶囊","tr":"熔融注魔金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"456":{"oreDict":["capsuleMoltenNickel-ZincFerrite"],"name":"熔融镍锌铁氧体胶囊","tr":"熔融镍锌铁氧体胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"712":{"oreDict":["capsuleMoltenConductiveIron"],"name":"熔融导电铁胶囊","tr":"熔融导电铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"713":{"oreDict":["capsuleMoltenElectricalSteel"],"name":"熔融磁钢胶囊","tr":"熔融磁钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"714":{"oreDict":["capsuleMoltenEnergeticAlloy"],"name":"熔融充能合金胶囊","tr":"熔融充能合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"715":{"oreDict":["capsuleMoltenVibrantAlloy"],"name":"熔融脉冲合金胶囊","tr":"熔融脉冲合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"716":{"oreDict":["capsuleMoltenPulsatingIron"],"name":"熔融脉冲铁胶囊","tr":"熔融脉冲铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"717":{"oreDict":["capsuleMoltenDarkSteel"],"name":"熔融玄钢胶囊","tr":"熔融玄钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"718":{"oreDict":["capsuleMoltenEndSteel"],"name":"熔融末影钢胶囊","tr":"熔融末影钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"719":{"oreDict":["capsuleMoltenClayCompound"],"name":"熔融复合粘土胶囊","tr":"熔融复合粘土胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"720":{"oreDict":["capsuleMoltenCrystallineAlloy"],"name":"熔融晶化合金胶囊","tr":"熔融晶化合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"209":{"oreDict":["capsuleMoltenInolashite"],"name":"熔融暗影秘银蓝金胶囊","tr":"熔融暗影秘银蓝金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"721":{"oreDict":["capsuleMoltenMelodicAlloy"],"name":"熔融旋律合金胶囊","tr":"熔融旋律合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"722":{"oreDict":["capsuleMoltenStellarAlloy"],"name":"熔融恒星合金胶囊","tr":"熔融恒星合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"723":{"oreDict":["capsuleMoltenCrystallinePinkSlime"],"name":"熔融晶化粉红史莱姆胶囊","tr":"熔融晶化粉红史莱姆胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"724":{"oreDict":["capsuleMoltenEnergeticSilver"],"name":"熔融充能银胶囊","tr":"熔融充能银胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"725":{"oreDict":["capsuleMoltenVividAlloy"],"name":"熔融生动合金胶囊","tr":"熔融生动合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"726":{"oreDict":["capsuleMoltenEnderium"],"name":"熔融末影(te)胶囊","tr":"熔融末影(te)胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"727":{"oreDict":["capsuleMoltenMithril"],"name":"熔融秘银胶囊","tr":"熔融秘银胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"472":{"oreDict":["capsuleMoltenPolyphenyleneSulfide"],"name":"熔融聚苯硫醚胶囊","tr":"熔融聚苯硫醚胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"729":{"oreDict":["capsuleMoltenShadowIron"],"name":"熔融暗影铁胶囊","tr":"熔融暗影铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"474":{"oreDict":["capsuleMoltenPolystyrene"],"name":"熔融聚苯乙烯胶囊","tr":"熔融聚苯乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"730":{"oreDict":["capsuleMoltenShadowSteel"],"name":"熔融暗影钢胶囊","tr":"熔融暗影钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"219":{"oreDict":["capsuleMoltenMercassium"],"name":"熔融玛卡斯胶囊","tr":"熔融玛卡斯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"731":{"oreDict":["capsuleMoltenAstralSilver"],"name":"熔融星辰银胶囊","tr":"熔融星辰银胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"220":{"oreDict":["capsuleMoltenMeteoricIron"],"name":"熔融陨铁胶囊","tr":"熔融陨铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"732":{"oreDict":["capsuleMoltenInfinityCatalyst"],"name":"熔融无尽催化剂胶囊","tr":"熔融无尽催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"221":{"oreDict":["capsuleMoltenMeteoricSteel"],"name":"熔融陨钢胶囊","tr":"熔融陨钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"733":{"oreDict":["capsuleMoltenInfinity"],"name":"熔融无尽胶囊","tr":"熔融无尽胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"735":{"oreDict":["capsuleMoltenTrinium"],"name":"熔融三元金属胶囊","tr":"熔融三元金属胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"736":{"oreDict":["capsuleMoltenIchorium"],"name":"熔融灵宝胶囊","tr":"熔融灵宝胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"737":{"oreDict":["capsuleMoltenCosmicNeutronium"],"name":"熔融宇宙中子态素胶囊","tr":"熔融宇宙中子态素胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"227":{"oreDict":["capsuleMoltenNaquadah"],"name":"熔融硅岩胶囊","tr":"熔融硅岩胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"228":{"oreDict":["capsuleMoltenNaquadahAlloy"],"name":"熔融硅岩合金胶囊","tr":"熔融硅岩合金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"229":{"oreDict":["capsuleMoltenEnrichedNaquadah"],"name":"熔融富集硅岩胶囊","tr":"熔融富集硅岩胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"485":{"oreDict":["capsuleMoltenStyrene-ButadieneRubber"],"name":"熔融丁苯橡胶胶囊","tr":"熔融丁苯橡胶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"230":{"oreDict":["capsuleMoltenNaquadria"],"name":"熔融超能硅岩胶囊","tr":"熔融超能硅岩胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"488":{"oreDict":["capsuleMoltenPolyvinylChloride"],"name":"熔融聚氯乙烯胶囊","tr":"熔融聚氯乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"238":{"oreDict":["capsuleMoltenOrichalcum"],"name":"熔融山铜胶囊","tr":"熔融山铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"239":{"oreDict":["capsuleMoltenOsmonium"],"name":"熔融幻锇胶囊","tr":"熔融幻锇胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"240":{"oreDict":["capsuleMoltenOureclase"],"name":"熔融地晶胶囊","tr":"熔融地晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"245":{"oreDict":["capsuleMoltenPhoenixite"],"name":"熔融凤晶胶囊","tr":"熔融凤晶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"246":{"oreDict":["capsuleMoltenPrometheum"],"name":"熔融盗火之金胶囊","tr":"熔融盗火之金胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"250":{"oreDict":["capsuleMoltenRubracium"],"name":"熔融褐铜胶囊","tr":"熔融褐铜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"762":{"oreDict":["capsuleMoltenPurifiedTengam"],"name":"熔融纯镃胶囊","tr":"熔融纯镃胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"763":{"oreDict":["capsuleMoltenAttunedTengam"],"name":"熔融谐镃胶囊","tr":"熔融谐镃胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"765":{"oreDict":["capsuleMoltenManasteel"],"name":"熔融魔钢胶囊","tr":"熔融魔钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"766":{"oreDict":["capsuleMoltenTerrasteel"],"name":"熔融泰拉钢胶囊","tr":"熔融泰拉钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"767":{"oreDict":["capsuleMoltenElvenElementium"],"name":"熔融源质钢胶囊","tr":"熔融源质钢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyNiobiumCarbide":{"0":{"oreDict":["dustTinyNiobiumCarbide"],"name":"小撮碳化铌粉","tr":"小撮碳化铌粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:post":{"0":{"name":"Wooden Post","tr":"木桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Post","tr":"石桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Metal Post","tr":"金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Wooden Platform","tr":"木头平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stone Platform","tr":"石头平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Metal Platform","tr":"金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:relay":{"0":{"oreDict":["oc:relay"],"name":"Relay","tr":"中继器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:shield.iron":{"0":{"name":"Iron Shield","tr":"铁盾","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":121}},"BloodArsenal:block_burned_string":{"0":{"name":"Blood Burned String","tr":"血灼之线","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTellurium":{"0":{"oreDict":["dustSmallTellurium"],"name":"小堆碲粉","tr":"小堆碲粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:stairsFireproof":{"0":{"oreDict":["stairWood"],"name":"Larch Stairs (Fireproof)","tr":"抗燃落叶树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stairWood"],"name":"Teak Stairs (Fireproof)","tr":"抗燃柚树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stairWood"],"name":"Desert Acacia Stairs (Fireproof)","tr":"抗燃沙漠刺槐楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stairWood"],"name":"Lime Stairs (Fireproof)","tr":"抗燃酸橙树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stairWood"],"name":"Chestnut Stairs (Fireproof)","tr":"抗燃栗树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stairWood"],"name":"Wenge Stairs (Fireproof)","tr":"抗燃崖豆楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stairWood"],"name":"Baobab Stairs (Fireproof)","tr":"抗燃猴面包树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stairWood"],"name":"Sequoia Stairs (Fireproof)","tr":"抗燃红杉树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stairWood"],"name":"Kapok Stairs (Fireproof)","tr":"抗燃木棉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stairWood"],"name":"Ebony Stairs (Fireproof)","tr":"抗燃乌檀树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stairWood"],"name":"Mahogany Stairs (Fireproof)","tr":"抗燃桃心树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stairWood"],"name":"Balsa Stairs (Fireproof)","tr":"抗燃巴尔杉树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stairWood"],"name":"Willow Stairs (Fireproof)","tr":"抗燃柳树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["stairWood"],"name":"Walnut Stairs (Fireproof)","tr":"抗燃核桃楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["stairWood"],"name":"Greenheart Stairs (Fireproof)","tr":"抗燃绿樟树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["stairWood"],"name":"Cherry Stairs (Fireproof)","tr":"抗燃樱桃楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["stairWood"],"name":"Mahoe Stairs (Fireproof)","tr":"抗燃高槿树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["stairWood"],"name":"Poplar Stairs (Fireproof)","tr":"抗燃白杨树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["stairWood"],"name":"Palm Stairs (Fireproof)","tr":"抗燃棕榈树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["stairWood"],"name":"Papaya Stairs (Fireproof)","tr":"抗燃木瓜楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["stairWood"],"name":"Pine Stairs (Fireproof)","tr":"抗燃松树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["stairWood"],"name":"Plum Stairs (Fireproof)","tr":"抗燃李子楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["stairWood"],"name":"Maple Stairs (Fireproof)","tr":"抗燃枫树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["stairWood"],"name":"Citrus Stairs (Fireproof)","tr":"抗燃柑橘树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["stairWood"],"name":"Giant Sequoia Stairs (Fireproof)","tr":"抗燃巨杉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["stairWood"],"name":"Ipe Stairs (Fireproof)","tr":"抗燃重蚁树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["stairWood"],"name":"Padauk Stairs (Fireproof)","tr":"抗燃紫檀树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["stairWood"],"name":"Cocobolo Stairs (Fireproof)","tr":"抗燃黄檀树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["stairWood"],"name":"Zebrawood Stairs (Fireproof)","tr":"抗燃斑木树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:obedienceStick":{"0":{"name":"Floral Obedience Stick","tr":"植物遵从法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:biomeEssence":{"0":{"name":"Biome Essence","tr":"生物源质","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RuneOfVoidFragment":{"0":{"name":"Rune of Void Fragment","tr":"虚空符文碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetSiliconCarbide":{"0":{"oreDict":["nuggetSiliconCarbide"],"name":"碳化硅粒","tr":"碳化硅粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:customBrick1Slab":{"0":{"name":"Soul Brick Slab","tr":"灵魂砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:appleyogurtItem":{"0":{"oreDict":["foodAppleyogurt"],"name":"Apple Yogurt","tr":"苹果酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyYttriaite":{"0":{"oreDict":["dustTinyYttriaite"],"name":"小撮钇矿粉","tr":"小撮钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:limejuiceItem":{"0":{"oreDict":["listAlljuice"," foodLimejuice"],"name":"Lime Juice","tr":"酸橙汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:frameMetabolic":{"0":{"name":"Metabolic Frame","tr":"代谢框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":131}},"miscutils:itemDustSmallManureByproducts":{"0":{"oreDict":["dustSmallManureByproducts"],"name":"小堆粪肥副产粉","tr":"小堆粪肥副产粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaResource":{"0":{"oreDict":["ingotManasteel"],"name":"Manasteel Ingot","tr":"魔钢锭","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["manaPearl"],"name":"Mana Pearl","tr":"魔力珍珠","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["manaDiamond"," gemManaDiamond"],"name":"Mana Diamond","tr":"魔力钻石","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["livingwoodTwig"],"name":"Livingwood Twig","tr":"活木枝","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["ingotTerrasteel"],"name":"Terrasteel Ingot","tr":"泰拉钢锭","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["eternalLifeEssence"],"name":"Gaia Spirit","tr":"盖亚之魂","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["redstoneRoot"],"name":"Redstone Root","tr":"红石根","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["ingotElvenElementium"],"name":"Elementium Ingot","tr":"源质钢锭","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["elvenPixieDust"],"name":"Pixie Dust","tr":"精灵尘","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["elvenDragonstone"," gemBotaniaDragonstone"],"name":"Dragonstone","tr":"龙石","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["shardPrismarine"],"name":"Prismarine Shard","tr":"海晶石碎片","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["bPlaceholder"],"name":"Crafting Placeholder","tr":"合成占位符","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["bRedString"],"name":"Red String","tr":"红线","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dreamwoodTwig"],"name":"Dreamwood Twig","tr":"梦之木棍","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["gaiaIngot"," ingotGaiaSpirit"],"name":"Gaia Spirit Ingot","tr":"盖亚魂锭","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["bEnderAirBottle"],"name":"Ender Air Bottle","tr":"瓶装末地空气","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["manaString"],"name":"Mana Infused String","tr":"蕴魔丝线","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["nuggetManasteel"],"name":"Manasteel Nugget","tr":"魔钢粒","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["nuggetTerrasteel"],"name":"Terrasteel Nugget","tr":"泰拉钢粒","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["nuggetElvenElementium"],"name":"Elementium Nugget","tr":"源质钢粒","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["clothManaweave"],"name":"Manaweave Cloth","tr":"魔源布匹","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["powderMana"],"name":"Mana Powder","tr":"魔力尘","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:emptySocket":{"0":{"name":"Empty Socket","tr":"空的血插槽","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemwoodrotor":{"1":{"name":"Kinetic Gearbox Rotor (Wood)","tr":"木转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10801}},"Natura:wheatBag":{"0":{"name":"Wheat Seed Bag","tr":"小麦种子袋","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:oberonblocks":{"0":{"oreDict":["rockOberon"," rockSpace"],"name":"Oberon Surface Block","tr":"天卫四地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockOberon"," rockSpace"],"name":"Oberon Subsurface Block","tr":"天卫四地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockOberon"," rockSpace"],"name":"Oberon Stone","tr":"天卫四石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreAdamantium"," oreAdamantite"],"name":"Adamantite Ore","tr":"天卫四精金矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:magnetRingGreater":{"0":{"name":"Greater Ring of Magnetization","tr":"巨型磁化环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:unknowwater":{"0":{"name":"Unknown Liquid","tr":"不明液体","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:trowelStone":{"0":{"name":"Stone Trowel","tr":"石质泥铲","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":132}},"Natura:trapdoor.maple":{"0":{"oreDict":["trapdoorWood"],"name":"Maple Trapdoor","tr":"枫树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemSmallSpringBlackSteel":{"0":{"oreDict":["springSmallBlackSteel"],"name":"小型黑钢弹簧","tr":"小型黑钢弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongIncoloyMA956":{"0":{"oreDict":["stickLongIncoloyMA956"],"name":"长耐热铬铁合金-MA956杆","tr":"长耐热铬铁合金-MA956杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.folder":{"0":{"name":"Folder","tr":"文件夹","tab":"开放式打印机","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AdsorptionFilterDirty":{"0":{"name":"Dirty Absorption Filter","tr":"脏的吸附过滤器","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:papayaItem":{"0":{"oreDict":["cropPapaya"," listAllfruit"],"name":"Papaya","tr":"木瓜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreIrarsite":{"0":{"oreDict":["oreIrarsite"],"name":"Irarsite Ore","tr":"硫砷铱矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemPanelMemoryCard":{"0":{"name":"Information Panel Memory Card","tr":"信息屏存储卡","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.SteelDualCompressedPlates":{"0":{"name":"Compressed Dual Steel Plates","tr":"航天双层钢板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:blue_kitchen_floor":{"0":{"name":"Blue Kitchen Floor","tr":"蓝色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier5Key":{"0":{"name":"Tier 4 Dungeon Key","tr":"4阶宝箱钥匙","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"IronChest:diamondCrystalUpgrade":{"0":{"name":"Diamond to Crystal Chest Upgrade","tr":"升级:钻石\u003e水晶","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicMachina:wandCore":{"0":{"name":"item.wandCore.celestial.name","tr":"item.wandCore.celestial.name","tab":"神秘力学","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:potatoandleeksoupItem":{"0":{"oreDict":["foodPotatoandleeksoup"],"name":"Potato and Leek Soup","tr":"大葱土豆汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellInconel690":{"0":{"oreDict":["cellInconel690"],"name":"镍铬基合金-690单元","tr":"镍铬基合金-690单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTriniumTitaniumAlloy":{"0":{"oreDict":["blockTriniumTitaniumAlloy"],"name":"三元钛合金块","tr":"三元钛合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.infernal":{"0":{"name":"Infernal Brick","tr":"地狱砖","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fitted Infernal Stone","tr":"匀称地狱方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Infernal Block","tr":"地狱方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ornate Infernal Stone","tr":"雕琢地狱方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Etched Infernal Stone","tr":"蚀刻地狱方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Infernal Cobblestone","tr":"地狱圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"computronics:computronics.partsForestry":{"0":{"oreDict":["beeComp"],"name":"Caustic Comb","tr":"腐蚀蜂窝","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Caustic Drop","tr":"腐蚀液滴","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:spectreBlock":{"0":{"name":"Black Spectre Block","tr":"黑色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Red Spectre Block","tr":"红色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Spectre Block","tr":"绿色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Brown Spectre Block","tr":"棕色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Spectre Block","tr":"蓝色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Purple Spectre Block","tr":"紫色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Cyan Spectre Block","tr":"青色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Light Gray Spectre Block","tr":"淡灰色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Gray Spectre Block","tr":"灰色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Spectre Block","tr":"粉红色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Spectre Block","tr":"黄绿色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Yellow Spectre Block","tr":"黄色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Light Blue Spectre Block","tr":"淡蓝色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Spectre Block","tr":"品红色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Orange Spectre Block","tr":"橙色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"White Spectre Block","tr":"白色幽灵方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:fluid.Protein":{"0":{"name":"Protein","tr":"蛋白质","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB5Stairs":{"0":{"name":"Metamorphic Desert Stone Brick Stairs","tr":"变质沙漠石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotRhugnor":{"0":{"oreDict":["ingotRhugnor"],"name":"鲁格诺锭","tr":"鲁格诺锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCalciumChloride":{"0":{"oreDict":["dustSmallCalciumChloride"],"name":"小堆氯化钙粉","tr":"小堆氯化钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorIncoloy020":{"0":{"oreDict":["rotorIncoloy020"],"name":"耐热铬铁合金-020转子","tr":"耐热铬铁合金-020转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.mazeMapFocus":{"0":{"name":"Maze Map Focus","tr":"迷宫地图核心","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemBatChargeRE":{"1":{"name":"Charging RE Battery","tr":"RE充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Charging RE Battery","tr":"RE充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"thaumicbases:bloodyBoots":{"0":{"name":"Bloodstained Thaumaturge\u0027s Boots","tr":"血腥神秘使之靴","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":274}},"dreamcraft:item.AlumiteDust":{"0":{"oreDict":["dustAlumite"],"name":"Alumite Dust","tr":"耐酸铝粉","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallWhiteMetal":{"0":{"oreDict":["dustSmallWhiteMetal"],"name":"小堆白物质粉","tr":"小堆白物质粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:soulMould":{"0":{"name":"Soul Mould","tr":"灵魂模具","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipepowersandstone":{"0":{"name":"Sandstone-Covered Kinesis Pipe","tr":"沙石能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotEglinSteel":{"0":{"oreDict":["ingotEglinSteel"],"name":"埃格林钢锭","tr":"埃格林钢锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewInconel792":{"0":{"oreDict":["screwInconel792"],"name":"镍铬基合金-792螺丝","tr":"镍铬基合金-792螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:matrixAlpha":{"0":{"name":"Arcane Marble Matrix","tr":"奥术大理石祭坛","tab":"神秘革命","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingRhenium":{"0":{"oreDict":["ringRhenium"],"name":"铼环","tr":"铼环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongOctiron":{"0":{"oreDict":["stickLongOctiron"],"name":"长八角铁杆","tr":"长八角铁杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:ashStone":{"0":{"name":"Ash Stone","tr":"火山灰岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockStairsArcaneStone":{"0":{"name":"Arcane Stone Stairs","tr":"奥术楼梯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_Cloak":{"0":{"name":"Cloak","tr":"斗篷","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spectral Mantle","tr":"幽灵斗篷","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Cloak of Voluminous Pockets","tr":"奇术斗篷","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Wolven Cloak","tr":"野狼斗篷","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:netherSapling":{"0":{"oreDict":["treeSapling"],"name":"Ignis Fruit Sapling","tr":"炙炎果树苗","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamriceCrop":{"0":{"name":"Rice Crop","tr":"水稻","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:wolfsbane":{"0":{"name":"Wolfsbane","tr":"狼毒草","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:fullDrawers4B":{"0":{"oreDict":["drawerBasic"],"name":"Mahoe Drawers 2x2","tr":"高槿树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Poplar Drawers 2x2","tr":"白杨树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Palm Drawers 2x2","tr":"棕榈树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Papaya Drawers 2x2","tr":"木瓜树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Pine Drawers 2x2","tr":"松树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Plum Drawers 2x2","tr":"李子树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Maple Drawers 2x2","tr":"枫树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Citrus Drawers 2x2","tr":"柑橘树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Giant Sequoia Drawers 2x2","tr":"巨杉树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Ipe Drawers 2x2","tr":"重蚁树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Padauk Drawers 2x2","tr":"紫檀树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Cocobolo Drawers 2x2","tr":"黄檀树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Zebrawood Drawers 2x2","tr":"斑木树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:fullDrawers4A":{"0":{"oreDict":["drawerBasic"],"name":"Larch Drawers 2x2","tr":"落叶树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Teak Drawers 2x2","tr":"柚树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Acacia Drawers 2x2","tr":"金合欢抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Lime Drawers 2x2","tr":"酸橙树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Chestnut Drawers 2x2","tr":"栗树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Wenge Drawers 2x2","tr":"崖豆树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Baobab Drawers 2x2","tr":"猴面包树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Sequoia Drawers 2x2","tr":"红杉树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Kapok Drawers 2x2","tr":"木棉树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Ebony Drawers 2x2","tr":"乌檀树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Mahogany Drawers 2x2","tr":"桃心树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Balsa Drawers 2x2","tr":"巴尔杉抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Willow Drawers 2x2","tr":"柳树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Walnut Drawers 2x2","tr":"胡桃树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Greenheart Drawers 2x2","tr":"绿樟树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["drawerBasic"],"name":"Cherry Drawers 2x2","tr":"樱树抽屉(2x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.SandClayMix":{"0":{"name":"Sand Clay Mix","tr":"沙粘土混合","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:fluidSuperheatedSteam":{"0":{"name":"Superheated Steam","tr":"过热蒸汽","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:mangoItem":{"0":{"oreDict":["listAllfruit"," cropMango"],"name":"Mango","tr":"芒果","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:limejellysandwichItem":{"0":{"oreDict":["foodLimejellysandwich"],"name":"Lime Jelly Sandwich","tr":"酸橙果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.ghostwood":{"0":{"oreDict":["trapdoorWood"],"name":"Ghostwood Trapdoor","tr":"幽魂树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA9SlabFull":{"0":{"name":"Metamorphic Plains Cobblestone Slab","tr":"变质平原圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:expanderInvTierThree":{"0":{"name":"Base Inventory Expander (Tier 3)","tr":"基座存储扩容(三级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:alderwooddoor":{"0":{"name":"Alder Wood Door","tr":"赤杨树木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:energyStorageCore":{"0":{"name":"Energy Core","tr":"能量核心","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.shovel.fusewood":{"0":{"name":"Fusewood Shovel","tr":"熔融树铲","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemCellTriniumNaquadahCarbonite":{"0":{"oreDict":["cellTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金单元","tr":"掺碳三元硅岩合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSpaceII":{"0":{"name":"Coin \"The Space Invaders 100\"","tr":"太空币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:herringrawItem":{"0":{"oreDict":["foodHerringraw"," listAllfishraw"],"name":"Raw Herring","tr":"生青鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:item.bloodFrame":{"0":{"name":"Sanguis Artus","tr":"血腥亚瑟王","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":2}},"miscutils:itemPlateTumbaga":{"0":{"oreDict":["plateTumbaga"],"name":"铜金合金板","tr":"铜金合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pearyogurtItem":{"0":{"oreDict":["foodPearyogurt"],"name":"Pear Yogurt","tr":"梨子酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:thornChakram":{"0":{"name":"Thorn Chakram","tr":"荆棘飞轮","tab":"植物魔法","type":"Item","maxStackSize":6,"maxDurability":1},"1":{"name":"Flare Chakram","tr":"闪耀飞轮","tab":"植物魔法","type":"Item","maxStackSize":6,"maxDurability":1}},"miscutils:itemRodHS188A":{"0":{"oreDict":["stickHS188A"],"name":"HS188-A杆","tr":"HS188-A杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFarmerIII":{"0":{"name":"Coin \"The Farmer 1000\"","tr":"农民币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallOctiron":{"0":{"oreDict":["dustSmallOctiron"],"name":"小堆八角铁粉","tr":"小堆八角铁粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:bw.werkstoffblocks.01":{"10112":{"oreDict":["blockShirabon"],"name":"调律源金块","tr":"调律源金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockBismutite"],"name":"泡铋块","tr":"泡铋块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockZirconium"],"name":"锆块","tr":"锆块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockCubicZirconia"],"name":"立方氧化锆块","tr":"立方氧化锆块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockFluor-Buergerite"],"name":"氟铁电气石块","tr":"氟铁电气石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockChromo-Alumino-Povondraite"],"name":"铬铝电气石块","tr":"铬铝电气石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockVanadio-Oxy-Dravite"],"name":"钒镁电气石块","tr":"钒镁电气石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockOlenite"],"name":"铝电气石块","tr":"铝电气石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["blockRedZircon"],"name":"红锆石块","tr":"红锆石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["blockSalt"],"name":"盐块","tr":"盐块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["blockSpodumene"],"name":"锂辉石块","tr":"锂辉石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["blockRockSalt"],"name":"岩盐块","tr":"岩盐块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["blockFayalite"],"name":"铁橄榄石块","tr":"铁橄榄石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["blockForsterite"],"name":"镁橄榄石块","tr":"镁橄榄石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["blockHedenbergite"],"name":"钙铁辉石块","tr":"钙铁辉石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["blockThorium232"],"name":"钍-232块","tr":"钍-232块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["blockPrasiolite"],"name":"堇云石块","tr":"堇云石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["blockMagnetoResonatic"],"name":"磁共振石块","tr":"磁共振石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["blockAtomicSeparationCatalyst"],"name":"原子分离催化剂块","tr":"原子分离催化剂块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["blockCalifornium"],"name":"锎块","tr":"锎块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["blockOrundum"],"name":"合成玉块","tr":"合成玉块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["blockCalcium"],"name":"钙块","tr":"钙块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["blockExtremelyUnstableNaquadah"],"name":"极不稳定硅岩块","tr":"极不稳定硅岩块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["blockBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK块","tr":"BArTiMaEuSNeK块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["blockPTMEGElastomer"],"name":"PTMEG橡胶块","tr":"PTMEG橡胶块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["blockRuthenium"],"name":"钌块","tr":"钌块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["blockZn-ThAlloy"],"name":"锌钍合金块","tr":"锌钍合金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["blockRhodium"],"name":"铑块","tr":"铑块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["blockRhodium-PlatedPalladium"],"name":"镀铑钯块","tr":"镀铑钯块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["blockTiberium"],"name":"泰伯利亚块","tr":"泰伯利亚块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["blockRuridit"],"name":"钌铱合金块","tr":"钌铱合金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["blockFluorspar"],"name":"氟石块","tr":"氟石块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["blockHighDurabilityCompoundSteel"],"name":"高耐久性复合钢块","tr":"高耐久性复合钢块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["blockAdemicSteel"],"name":"硬钢块","tr":"硬钢块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["blockZircaloy-4"],"name":"锆锡合金-4块","tr":"锆锡合金-4块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["blockZircaloy-2"],"name":"锆锡合金-2块","tr":"锆锡合金-2块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["blockIncoloy-903"],"name":"耐热铬铁合金-903块","tr":"耐热铬铁合金-903块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["blockAdamantiumAlloy"],"name":"精金合金块","tr":"精金合金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["blockFluorophlogopite"],"name":"氟金云母块","tr":"氟金云母块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["blockCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)块","tr":"掺铈镥铝石榴石 (Ce:LuAG)块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["blockMagnesia"],"name":"氧化镁块","tr":"氧化镁块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["blockTantalumHafniumCarbide"],"name":"碳化钽铪块","tr":"碳化钽铪块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["blockMAR-M200Steel"],"name":"MAR-M200特种钢块","tr":"MAR-M200特种钢块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["blockMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢块","tr":"MAR-Ce-M200特种钢块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["blockLithiumChloride"],"name":"氯化锂块","tr":"氯化锂块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["blockSignalium"],"name":"信素块","tr":"信素块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["blockLumiium"],"name":"流明块","tr":"流明块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["blockArtherium-Sn"],"name":"阿瑟锡块","tr":"阿瑟锡块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["blockTanmolyiumBeta-C"],"name":"钛钼合金β-C块","tr":"钛钼合金β-C块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["blockDalisenite"],"name":"大力合金块","tr":"大力合金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["blockHafnium"],"name":"铪块","tr":"铪块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["blockHikarium"],"name":"光素块","tr":"光素块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["blockTairitsu"],"name":"对立合金块","tr":"对立合金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["blockPreciousMetalsAlloy"],"name":"稀有金属合金块","tr":"稀有金属合金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["blockEnrichedNaquadahAlloy"],"name":"富集硅岩合金块","tr":"富集硅岩合金块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["blockMetastableOganesson"],"name":"亚稳态鿫块","tr":"亚稳态鿫块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["blockZirconium"],"name":"锆块","tr":"锆块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steelPole":{"0":{"name":"Steel Pole","tr":"钢杆","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetZirconium":{"0":{"oreDict":["nuggetZirconium"],"name":"锆粒","tr":"锆粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_tnt":{"0":{"name":"Blood TNT","tr":"血之TNT","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:beeCombs":{"0":{"oreDict":["beeComb"],"name":"Honey Comb","tr":"蜜蜂蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["beeComb"],"name":"Mellow Comb","tr":"醇厚蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["beeComb"],"name":"Simmering Comb","tr":"激化蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["beeComb"],"name":"Stringy Comb","tr":"纤维蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["beeComb"],"name":"Frozen Comb","tr":"冻结蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["beeComb"],"name":"Dripping Comb","tr":"滴水蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["beeComb"],"name":"Silky Comb","tr":"丝滑蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["beeComb"],"name":"Parched Comb","tr":"炎热蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["beeComb"],"name":"Mossy Comb","tr":"苔藓蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilBotmium":{"0":{"oreDict":["foilBotmium"],"name":"博特姆合金箔","tr":"博特姆合金箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA8Stairs":{"0":{"name":"Metamorphic Forest Cobblestone Stairs","tr":"变质森林圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CarbonPartHelmetNightVision":{"0":{"name":"Carbon Parts \"Helmet Night Vision\"","tr":"纳米夜视头盔","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersSlope":{"0":{"name":"Carpenter\u0027s Wedge Slope","tr":"木匠楔形斜坡","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Carpenter\u0027s Oblique Interior Slope","tr":"木匠内倾斜坡","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Carpenter\u0027s Oblique Exterior Slope","tr":"木匠外倾斜坡","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Carpenter\u0027s Prism Slope","tr":"木匠棱形斜坡","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Carpenter\u0027s Prism Wedge Slope","tr":"木匠三角坡","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:sweed":{"0":{"name":"Sweed Crop","tr":"芦苇","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:brownieItem":{"0":{"oreDict":["foodBrownie"],"name":"Brownie","tr":"核仁巧克力饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_magenta":{"0":{"name":"Magenta Curtain","tr":"品红色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:tile.cheeseBlock":{"0":{"name":"Block of Cheese","tr":"奶酪块","tab":"星系|方块","type":"Block","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:item.ItemBasicStorageCell.1k":{"0":{"name":"1k ME Storage Cell","tr":"1k-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearIncoloy020":{"0":{"oreDict":["gearGtIncoloy020"," gearIncoloy020"],"name":"耐热铬铁合金-020齿轮","tr":"耐热铬铁合金-020齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustInfusedAir":{"0":{"oreDict":["dustInfusedAir"],"name":"风之魔晶粉","tr":"风之魔晶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlatePotin":{"0":{"oreDict":["platePotin"],"name":"粗青铜合金板","tr":"粗青铜合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetCinobiteA243":{"0":{"oreDict":["nuggetCinobiteA243"],"name":"西诺柏A243粒","tr":"西诺柏A243粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:chalkotherwhere":{"0":{"name":"Otherwhere Chalk","tr":"他处粉笔","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":65}},"gregtech:gt.blockores":{"16386":{"name":"贫瘠玛玉灵矿石","tr":"贫瘠玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16387":{"name":"贫瘠深空秘银矿石","tr":"贫瘠深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16388":{"name":"贫瘠黑钚矿石","tr":"贫瘠黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16389":{"name":"贫瘠木卫四冰矿石","tr":"贫瘠木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oreLithium"],"name":"锂矿石","tr":"锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16390":{"name":"贫瘠深铅矿石","tr":"贫瘠深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16391":{"name":"贫瘠量子矿石","tr":"贫瘠量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oreBeryllium"],"name":"铍矿石","tr":"铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16392":{"name":"贫瘠硬铝矿石","tr":"贫瘠硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16393":{"name":"贫瘠奥利哈钢矿石","tr":"贫瘠奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16394":{"name":"贫瘠无尽催化剂矿石","tr":"贫瘠无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16395":{"name":"贫瘠基岩矿石","tr":"贫瘠基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16398":{"name":"贫瘠神秘水晶矿石","tr":"贫瘠神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["oreMagnesium"],"name":"镁矿石","tr":"镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["oreAluminium"],"name":"铝矿石","tr":"铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["oreSilicon"],"name":"硅矿石","tr":"硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["oreSulfur"],"name":"硫矿石","tr":"硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["oreScandium"],"name":"钪矿石","tr":"钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["oreTitanium"],"name":"钛矿石","tr":"钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["oreVanadium"],"name":"钒矿石","tr":"钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["oreChrome"],"name":"铬矿石","tr":"铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["oreManganese"],"name":"锰矿石","tr":"锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["oreAnyIron"," oreIron"],"name":"铁矿石","tr":"铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["oreCobalt"],"name":"钴矿石","tr":"钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["oreNickel"],"name":"镍矿石","tr":"镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"铜矿石","tr":"铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["oreZinc"],"name":"锌矿石","tr":"锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["oreGallium"],"name":"镓矿石","tr":"镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["oreArsenic"],"name":"砷矿石","tr":"砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["oreRubidium"],"name":"铷矿石","tr":"铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["oreStrontium"],"name":"锶矿石","tr":"锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["oreYttrium"],"name":"钇矿石","tr":"钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["oreNiobium"],"name":"铌矿石","tr":"铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["oreMolybdenum"],"name":"钼矿石","tr":"钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["orePalladium"],"name":"钯矿石","tr":"钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["oreSilver"],"name":"银矿石","tr":"银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["oreCadmium"],"name":"镉矿石","tr":"镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["oreIndium"],"name":"铟矿石","tr":"铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["oreTin"],"name":"锡矿石","tr":"锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["oreAntimony"],"name":"锑矿石","tr":"锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["oreTellurium"],"name":"碲矿石","tr":"碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["oreCaesium"],"name":"铯矿石","tr":"铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["oreBarium"],"name":"钡矿石","tr":"钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["oreLanthanum"],"name":"镧矿石","tr":"镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["oreCerium"],"name":"铈矿石","tr":"铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["orePraseodymium"],"name":"镨矿石","tr":"镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"67":{"oreDict":["oreNeodymium"],"name":"钕矿石","tr":"钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"68":{"oreDict":["orePromethium"],"name":"钷矿石","tr":"钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["oreSamarium"],"name":"钐矿石","tr":"钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["oreEuropium"],"name":"铕矿石","tr":"铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["oreGadolinium"],"name":"钆矿石","tr":"钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"72":{"oreDict":["oreTerbium"],"name":"铽矿石","tr":"铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"73":{"oreDict":["oreDysprosium"],"name":"镝矿石","tr":"镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"74":{"oreDict":["oreHolmium"],"name":"钬矿石","tr":"钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"75":{"oreDict":["oreErbium"],"name":"铒矿石","tr":"铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"76":{"oreDict":["oreThulium"],"name":"铥矿石","tr":"铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["oreYtterbium"],"name":"镱矿石","tr":"镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["oreLutetium"],"name":"镥矿石","tr":"镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"80":{"oreDict":["oreTantalum"],"name":"钽矿石","tr":"钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"81":{"oreDict":["oreTungsten"],"name":"钨矿石","tr":"钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"83":{"oreDict":["oreOsmium"],"name":"锇矿石","tr":"锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"84":{"oreDict":["oreIridium"],"name":"铱矿石","tr":"铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["orePlatinum"],"name":"铂矿石","tr":"铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"86":{"oreDict":["oreGold"],"name":"金矿石","tr":"金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["oreLead"],"name":"铅矿石","tr":"铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["oreBismuth"],"name":"铋矿石","tr":"铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["oreThorium"],"name":"钍矿石","tr":"钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"97":{"oreDict":["oreUranium235"],"name":"铀-235矿石","tr":"铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"98":{"oreDict":["oreUranium"],"name":"铀-238矿石","tr":"铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"100":{"oreDict":["orePlutonium"],"name":"钚-239矿石","tr":"钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"101":{"oreDict":["orePlutonium241"],"name":"钚-241矿石","tr":"钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16485":{"name":"贫瘠神秘蓝金矿石","tr":"贫瘠神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"103":{"oreDict":["oreAmericium"],"name":"镅矿石","tr":"镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16488":{"name":"贫瘠褐铜矿石","tr":"贫瘠褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16489":{"name":"贫瘠胶木矿石","tr":"贫瘠胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"110":{"oreDict":["oreTengamRaw"],"name":"生镃矿石","tr":"生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16500":{"name":"贫瘠钻石矿石","tr":"贫瘠钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16501":{"name":"贫瘠绿宝石矿石","tr":"贫瘠绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16502":{"name":"贫瘠红宝石矿石","tr":"贫瘠红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16503":{"name":"贫瘠蓝宝石矿石","tr":"贫瘠蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16504":{"name":"贫瘠绿色蓝宝石矿石","tr":"贫瘠绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16505":{"name":"贫瘠橄榄石矿石","tr":"贫瘠橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16506":{"name":"贫瘠下界之星矿石","tr":"贫瘠下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16507":{"name":"贫瘠黄玉矿石","tr":"贫瘠黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16508":{"name":"贫瘠坦桑石矿石","tr":"贫瘠坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16509":{"name":"贫瘠紫水晶矿石","tr":"贫瘠紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16510":{"name":"贫瘠蛋白石矿石","tr":"贫瘠蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16511":{"name":"贫瘠碧玉矿石","tr":"贫瘠碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16512":{"name":"贫瘠尖晶石矿石","tr":"贫瘠尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"129":{"oreDict":["oreNeutronium"],"name":"中子矿石","tr":"中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16513":{"name":"贫瘠蓝黄玉矿石","tr":"贫瘠蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16514":{"name":"贫瘠琥珀矿石","tr":"贫瘠琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16515":{"name":"贫瘠双锂矿石","tr":"贫瘠双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16516":{"name":"贫瘠赛特斯石英矿石","tr":"贫瘠赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16517":{"name":"贫瘠充能赛特斯石英矿石","tr":"贫瘠充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16518":{"name":"贫瘠力之宝石矿石","tr":"贫瘠力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16519":{"name":"贫瘠力场宝石矿石","tr":"贫瘠力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16520":{"name":"贫瘠独居石矿石","tr":"贫瘠独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16521":{"name":"贫瘠力量矿石","tr":"贫瘠力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16522":{"name":"贫瘠下界石英矿石","tr":"贫瘠下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16523":{"name":"贫瘠石英岩矿石","tr":"贫瘠石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16524":{"name":"贫瘠蓝金石矿石","tr":"贫瘠蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16525":{"name":"贫瘠方钠石矿石","tr":"贫瘠方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16526":{"name":"贫瘠青金石矿石","tr":"贫瘠青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16527":{"name":"贫瘠红石榴石矿石","tr":"贫瘠红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16528":{"name":"贫瘠黄石榴石矿石","tr":"贫瘠黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16529":{"name":"贫瘠温特姆矿石","tr":"贫瘠温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16530":{"name":"贫瘠磷灰石矿石","tr":"贫瘠磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16531":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16534":{"name":"贫瘠磷酸三钙矿石","tr":"贫瘠磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16535":{"name":"贫瘠煤矿石","tr":"贫瘠煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16537":{"name":"贫瘠玉矿石","tr":"贫瘠玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16538":{"name":"贫瘠褐煤矿石","tr":"贫瘠褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16540":{"name":"贫瘠风之蕴魔石","tr":"贫瘠风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16541":{"name":"贫瘠火之蕴魔石","tr":"贫瘠火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16542":{"name":"贫瘠地之蕴魔石","tr":"贫瘠地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16543":{"name":"贫瘠水之蕴魔石","tr":"贫瘠水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16544":{"name":"贫瘠混沌蕴魔石","tr":"贫瘠混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16545":{"name":"贫瘠秩序蕴魔石","tr":"贫瘠秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16548":{"name":"贫瘠焙烧铁矿石","tr":"贫瘠焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16549":{"name":"贫瘠焙烧镍矿石","tr":"贫瘠焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16607":{"name":"贫瘠烧绿石矿石","tr":"贫瘠烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"303":{"oreDict":["oreElectrum"],"name":"琥珀金矿石","tr":"琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"307":{"oreDict":["oreAnyIron"," orePigIron"],"name":"生铁矿石","tr":"生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16699":{"name":"贫瘠冰晶石矿石","tr":"贫瘠冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"319":{"oreDict":["oreAdamantium"],"name":"精金矿石","tr":"精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"320":{"oreDict":["oreElectrumFlux"],"name":"通流琥珀金矿石","tr":"通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"323":{"oreDict":["oreInfusedGold"],"name":"注魔金矿石","tr":"注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"324":{"oreDict":["oreNaquadah"],"name":"硅岩矿石","tr":"硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"326":{"oreDict":["oreNaquadahEnriched"],"name":"富集硅岩矿石","tr":"富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"327":{"oreDict":["oreNaquadria"],"name":"超能硅岩矿石","tr":"超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"329":{"oreDict":["oreTritanium"],"name":"三钛矿石","tr":"三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"331":{"oreDict":["oreMithril"],"name":"秘银矿石","tr":"秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"336":{"oreDict":["oreShadowIron"],"name":"暗影铁矿石","tr":"暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"340":{"oreDict":["oreMeteoricIron"],"name":"陨铁矿石","tr":"陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"342":{"oreDict":["oreDarkIron"],"name":"玄铁矿石","tr":"玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"347":{"oreDict":["oreFirestone"],"name":"火石矿石","tr":"火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"368":{"oreDict":["oreShadow"],"name":"暗影金属矿石","tr":"暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"375":{"oreDict":["oreRutile"],"name":"金红石矿石","tr":"金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"382":{"oreDict":["oreArdite"],"name":"阿迪特矿石","tr":"阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"386":{"oreDict":["oreManyullyn"],"name":"玛玉灵矿石","tr":"玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16770":{"name":"贫瘠终末矿石","tr":"贫瘠终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"387":{"oreDict":["oreMytryl"],"name":"深空秘银矿石","tr":"深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"388":{"oreDict":["oreBlackPlutonium"],"name":"黑钚矿石","tr":"黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"389":{"oreDict":["oreCallistoIce"],"name":"木卫四冰矿石","tr":"木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"390":{"oreDict":["oreLedox"],"name":"深铅矿石","tr":"深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"391":{"oreDict":["oreQuantium"],"name":"量子矿石","tr":"量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"392":{"oreDict":["oreDuralumin"],"name":"硬铝矿石","tr":"硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"393":{"oreDict":["oreOriharukon"],"name":"奥利哈钢矿石","tr":"奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"394":{"oreDict":["oreInfinityCatalyst"],"name":"无尽催化剂矿石","tr":"无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"395":{"oreDict":["oreBedrockium"],"name":"基岩矿石","tr":"基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"398":{"oreDict":["oreMysteriousCrystal"],"name":"神秘水晶矿石","tr":"神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16797":{"name":"贫瘠氢化钙矿石","tr":"贫瘠氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16810":{"name":"贫瘠红石矿石","tr":"贫瘠红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16812":{"name":"贫瘠蓝石矿石","tr":"贫瘠蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16817":{"name":"贫瘠盐矿石","tr":"贫瘠盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16820":{"name":"贫瘠铁铝榴石矿石","tr":"贫瘠铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16821":{"name":"贫瘠钙铁榴石矿石","tr":"贫瘠钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16822":{"name":"贫瘠铝土矿矿石","tr":"贫瘠铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16823":{"name":"贫瘠方解石矿石","tr":"贫瘠方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16824":{"name":"贫瘠锡石矿石","tr":"贫瘠锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16825":{"name":"贫瘠铬铁矿矿石","tr":"贫瘠铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16826":{"name":"贫瘠朱砂矿石","tr":"贫瘠朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16827":{"name":"贫瘠辉钴矿矿石","tr":"贫瘠辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16828":{"name":"贫瘠硫铂矿矿石","tr":"贫瘠硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16829":{"name":"贫瘠深渊铁矿石","tr":"贫瘠深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16830":{"name":"贫瘠方铅矿矿石","tr":"贫瘠方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16831":{"name":"贫瘠钙铝榴石矿石","tr":"贫瘠钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16833":{"name":"贫瘠磷酸盐矿石","tr":"贫瘠磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16834":{"name":"贫瘠黄铁矿矿石","tr":"贫瘠黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16835":{"name":"贫瘠镁铝榴石矿石","tr":"贫瘠镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16836":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16838":{"name":"贫瘠锰铝榴石矿石","tr":"贫瘠锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16839":{"name":"贫瘠闪锌矿矿石","tr":"贫瘠闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16840":{"name":"贫瘠黝铜矿矿石","tr":"贫瘠黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16841":{"name":"贫瘠钨酸锂矿石","tr":"贫瘠钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16842":{"name":"贫瘠钙铬榴石矿石","tr":"贫瘠钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16855":{"name":"贫瘠黄铜矿矿石","tr":"贫瘠黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16856":{"name":"贫瘠太阳能级硅(多晶硅)矿石","tr":"贫瘠太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16861":{"name":"贫瘠金刚砂矿石","tr":"贫瘠金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16865":{"name":"贫瘠石墨矿石","tr":"贫瘠石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16868":{"name":"贫瘠三元金属矿石","tr":"贫瘠三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"485":{"oreDict":["oreAlduorite"],"name":"神秘蓝金矿石","tr":"神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16870":{"name":"贫瘠磁铁矿矿石","tr":"贫瘠磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16871":{"name":"贫瘠孔雀石矿石","tr":"贫瘠孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"488":{"oreDict":["oreRubracium"],"name":"褐铜矿石","tr":"褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"489":{"oreDict":["oreVulcanite"],"name":"胶木矿石","tr":"胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16873":{"name":"贫瘠沥青铀矿","tr":"贫瘠沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16877":{"name":"贫瘠皂石矿石","tr":"贫瘠皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16878":{"name":"贫瘠油砂矿石","tr":"贫瘠油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16882":{"name":"贫瘠钼铅矿矿石","tr":"贫瘠钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16883":{"name":"贫瘠钼钙矿矿石","tr":"贫瘠钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"500":{"oreDict":["oreDiamond"],"name":"钻石矿石","tr":"钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16884":{"name":"贫瘠戴斯矿石","tr":"贫瘠戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"501":{"oreDict":["oreEmerald"],"name":"绿宝石矿石","tr":"绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"502":{"oreDict":["oreRuby"],"name":"红宝石矿石","tr":"红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"503":{"oreDict":["oreSapphire"],"name":"蓝宝石矿石","tr":"蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"504":{"oreDict":["oreGreenSapphire"],"name":"绿色蓝宝石矿石","tr":"绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"505":{"oreDict":["oreOlivine"],"name":"橄榄石矿石","tr":"橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"506":{"oreDict":["oreNetherStar"],"name":"下界之星矿石","tr":"下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"507":{"oreDict":["oreTopaz"],"name":"黄玉矿石","tr":"黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"508":{"oreDict":["oreTanzanite"],"name":"坦桑石矿石","tr":"坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"509":{"oreDict":["oreAmethyst"],"name":"紫水晶矿石","tr":"紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"510":{"oreDict":["oreOpal"],"name":"蛋白石矿石","tr":"蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16894":{"name":"贫瘠奶酪矿石","tr":"贫瘠奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"511":{"oreDict":["oreJasper"],"name":"碧玉矿石","tr":"碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"512":{"oreDict":["oreFoolsRuby"],"name":"尖晶石矿石","tr":"尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"513":{"oreDict":["oreBlueTopaz"],"name":"蓝黄玉矿石","tr":"蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"514":{"oreDict":["oreAmber"],"name":"琥珀矿石","tr":"琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"515":{"oreDict":["oreDilithium"],"name":"双锂矿石","tr":"双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"516":{"oreDict":["oreCertusQuartz"],"name":"赛特斯石英矿石","tr":"赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16900":{"name":"贫瘠芒硝矿石","tr":"贫瘠芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"517":{"oreDict":["oreChargedCertusQuartz"],"name":"充能赛特斯石英矿石","tr":"充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16901":{"name":"贫瘠云母矿石","tr":"贫瘠云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"518":{"oreDict":["oreForcicium"],"name":"力之宝石矿石","tr":"力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16902":{"name":"贫瘠滑石","tr":"贫瘠滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"519":{"oreDict":["oreForcillium"],"name":"力场宝石矿石","tr":"力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16903":{"name":"贫瘠天然碱矿石","tr":"贫瘠天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"520":{"oreDict":["oreMonazite"],"name":"独居石矿石","tr":"独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16904":{"name":"贫瘠重晶石矿石","tr":"贫瘠重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"521":{"oreDict":["oreForce"],"name":"力量矿石","tr":"力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16905":{"name":"贫瘠氟碳镧铈矿矿石","tr":"贫瘠氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"522":{"oreDict":["oreNetherQuartz"],"name":"下界石英矿石","tr":"下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16906":{"name":"贫瘠硅镁镍矿矿石","tr":"贫瘠硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"523":{"oreDict":["oreQuartzite"],"name":"石英岩矿石","tr":"石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16907":{"name":"贫瘠锂云母矿石","tr":"贫瘠锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"524":{"oreDict":["oreLazurite"],"name":"蓝金石矿石","tr":"蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16908":{"name":"贫瘠菱镁矿矿石","tr":"贫瘠菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"525":{"oreDict":["oreSodalite"],"name":"方钠石矿石","tr":"方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16909":{"name":"贫瘠镍黄铁矿矿石","tr":"贫瘠镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"526":{"oreDict":["oreLapis"],"name":"青金石矿石","tr":"青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16910":{"name":"贫瘠白钨矿矿石","tr":"贫瘠白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"527":{"oreDict":["oreGarnetRed"],"name":"红石榴石矿石","tr":"红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16911":{"name":"贫瘠明矾石矿石","tr":"贫瘠明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"528":{"oreDict":["oreGarnetYellow"],"name":"黄石榴石矿石","tr":"黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16912":{"name":"贫瘠白石棉矿石","tr":"贫瘠白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"529":{"oreDict":["oreVinteum"],"name":"温特姆矿石","tr":"温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16913":{"name":"贫瘠雄黄矿石","tr":"贫瘠雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"530":{"oreDict":["oreApatite"],"name":"磷灰石矿石","tr":"磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16914":{"name":"贫瘠白云石矿石","tr":"贫瘠白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"531":{"oreDict":["oreNiter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16915":{"name":"贫瘠硅灰石矿石","tr":"贫瘠硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16916":{"name":"贫瘠沸石矿石","tr":"贫瘠沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16917":{"name":"贫瘠带状铁矿矿石","tr":"贫瘠带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"534":{"oreDict":["oreTricalciumPhosphate"],"name":"磷酸三钙矿石","tr":"磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16918":{"name":"贫瘠钛铁矿矿石","tr":"贫瘠钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"535":{"oreDict":["oreCoal"],"name":"煤矿石","tr":"煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16919":{"name":"贫瘠铯榴石矿石","tr":"贫瘠铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16920":{"name":"贫瘠锂辉石矿石","tr":"贫瘠锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"537":{"oreDict":["oreJade"],"name":"玉矿石","tr":"玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16921":{"name":"贫瘠钽铁矿矿石","tr":"贫瘠钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"538":{"oreDict":["oreLignite"],"name":"褐煤矿石","tr":"褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16922":{"name":"贫瘠晶质铀矿矿石","tr":"贫瘠晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16923":{"name":"贫瘠钒磁铁矿矿石","tr":"贫瘠钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"540":{"oreDict":["oreInfusedAir"],"name":"风之蕴魔石","tr":"风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16924":{"name":"贫瘠蓝晶石矿石","tr":"贫瘠蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"541":{"oreDict":["oreInfusedFire"],"name":"火之蕴魔石","tr":"火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16925":{"name":"贫瘠珍珠岩矿石","tr":"贫瘠珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"542":{"oreDict":["oreInfusedEarth"],"name":"地之蕴魔石","tr":"地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16926":{"name":"贫瘠浮岩矿石","tr":"贫瘠浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"543":{"oreDict":["oreInfusedWater"],"name":"水之蕴魔石","tr":"水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16927":{"name":"贫瘠膨润土","tr":"贫瘠膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"544":{"oreDict":["oreInfusedEntropy"],"name":"混沌蕴魔石","tr":"混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16928":{"name":"贫瘠漂白土","tr":"贫瘠漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"545":{"oreDict":["oreInfusedOrder"],"name":"秩序蕴魔石","tr":"秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16929":{"name":"贫瘠高岭石","tr":"贫瘠高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16930":{"name":"贫瘠棕褐铁矿矿石","tr":"贫瘠棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16931":{"name":"贫瘠黄褐铁矿矿石","tr":"贫瘠黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"548":{"oreDict":["oreRoastedIron"],"name":"焙烧铁矿石","tr":"焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16932":{"name":"贫瘠蛭石","tr":"贫瘠蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"549":{"oreDict":["oreRoastedNickel"],"name":"焙烧镍矿石","tr":"焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16933":{"name":"贫瘠海绿石矿石","tr":"贫瘠海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16934":{"name":"贫瘠石膏矿石","tr":"贫瘠石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16935":{"name":"贫瘠玄武岩矿砂","tr":"贫瘠玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16936":{"name":"贫瘠花岗岩矿砂","tr":"贫瘠花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16937":{"name":"贫瘠锡石矿砂","tr":"贫瘠锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16938":{"name":"贫瘠石榴石矿砂","tr":"贫瘠石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16939":{"name":"贫瘠石英矿砂","tr":"贫瘠石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16941":{"name":"贫瘠硼砂矿石","tr":"贫瘠硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16942":{"name":"贫瘠辉钼矿矿石","tr":"贫瘠辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16943":{"name":"贫瘠软锰矿矿石","tr":"贫瘠软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16944":{"name":"贫瘠岩盐矿石","tr":"贫瘠岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16945":{"name":"贫瘠辉锑矿矿石","tr":"贫瘠辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16946":{"name":"贫瘠石棉矿石","tr":"贫瘠石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16948":{"name":"贫瘠硅藻土矿石","tr":"贫瘠硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16949":{"name":"贫瘠海绿石矿砂","tr":"贫瘠海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16951":{"name":"贫瘠幽冥剧毒结晶矿石","tr":"贫瘠幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16952":{"name":"贫瘠暗影秘银矿石","tr":"贫瘠暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16956":{"name":"贫瘠溶火之石矿石","tr":"贫瘠溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16966":{"name":"贫瘠山铜矿石","tr":"贫瘠山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16969":{"name":"贫瘠氟化铝矿石","tr":"贫瘠氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16971":{"name":"贫瘠二硅化钙矿石","tr":"贫瘠二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16975":{"name":"贫瘠龙矿石","tr":"贫瘠龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16976":{"name":"贫瘠觉醒龙矿石","tr":"贫瘠觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16978":{"name":"贫瘠灵宝矿石","tr":"贫瘠灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16982":{"name":"贫瘠宇宙中子态素矿石","tr":"贫瘠宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16984":{"name":"贫瘠矿石","tr":"贫瘠矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"607":{"oreDict":["orePyrochlore"],"name":"烧绿石矿石","tr":"烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17006":{"name":"贫瘠锂矿石","tr":"贫瘠锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17008":{"name":"贫瘠铍矿石","tr":"贫瘠铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17018":{"name":"贫瘠镁矿石","tr":"贫瘠镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17019":{"name":"贫瘠铝矿石","tr":"贫瘠铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17020":{"name":"贫瘠硅矿石","tr":"贫瘠硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17022":{"name":"贫瘠硫矿石","tr":"贫瘠硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17027":{"name":"贫瘠钪矿石","tr":"贫瘠钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17028":{"name":"贫瘠钛矿石","tr":"贫瘠钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17029":{"name":"贫瘠钒矿石","tr":"贫瘠钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17030":{"name":"贫瘠铬矿石","tr":"贫瘠铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17031":{"name":"贫瘠锰矿石","tr":"贫瘠锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17032":{"name":"贫瘠铁矿石","tr":"贫瘠铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17033":{"name":"贫瘠钴矿石","tr":"贫瘠钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17034":{"name":"贫瘠镍矿石","tr":"贫瘠镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17035":{"name":"贫瘠铜矿石","tr":"贫瘠铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17036":{"name":"贫瘠锌矿石","tr":"贫瘠锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17037":{"name":"贫瘠镓矿石","tr":"贫瘠镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17039":{"name":"贫瘠砷矿石","tr":"贫瘠砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17043":{"name":"贫瘠铷矿石","tr":"贫瘠铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17044":{"name":"贫瘠锶矿石","tr":"贫瘠锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17045":{"name":"贫瘠钇矿石","tr":"贫瘠钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17047":{"name":"贫瘠铌矿石","tr":"贫瘠铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17048":{"name":"贫瘠钼矿石","tr":"贫瘠钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17052":{"name":"贫瘠钯矿石","tr":"贫瘠钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17054":{"name":"贫瘠银矿石","tr":"贫瘠银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17055":{"name":"贫瘠镉矿石","tr":"贫瘠镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17056":{"name":"贫瘠铟矿石","tr":"贫瘠铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17057":{"name":"贫瘠锡矿石","tr":"贫瘠锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17058":{"name":"贫瘠锑矿石","tr":"贫瘠锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17059":{"name":"贫瘠碲矿石","tr":"贫瘠碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17062":{"name":"贫瘠铯矿石","tr":"贫瘠铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17063":{"name":"贫瘠钡矿石","tr":"贫瘠钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17064":{"name":"贫瘠镧矿石","tr":"贫瘠镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17065":{"name":"贫瘠铈矿石","tr":"贫瘠铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17066":{"name":"贫瘠镨矿石","tr":"贫瘠镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17067":{"name":"贫瘠钕矿石","tr":"贫瘠钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17068":{"name":"贫瘠钷矿石","tr":"贫瘠钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17069":{"name":"贫瘠钐矿石","tr":"贫瘠钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17070":{"name":"贫瘠铕矿石","tr":"贫瘠铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17071":{"name":"贫瘠钆矿石","tr":"贫瘠钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17072":{"name":"贫瘠铽矿石","tr":"贫瘠铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17073":{"name":"贫瘠镝矿石","tr":"贫瘠镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17074":{"name":"贫瘠钬矿石","tr":"贫瘠钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17075":{"name":"贫瘠铒矿石","tr":"贫瘠铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17076":{"name":"贫瘠铥矿石","tr":"贫瘠铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17077":{"name":"贫瘠镱矿石","tr":"贫瘠镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17078":{"name":"贫瘠镥矿石","tr":"贫瘠镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17080":{"name":"贫瘠钽矿石","tr":"贫瘠钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17081":{"name":"贫瘠钨矿石","tr":"贫瘠钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17083":{"name":"贫瘠锇矿石","tr":"贫瘠锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"699":{"oreDict":["oreCryolite"],"name":"冰晶石矿石","tr":"冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17084":{"name":"贫瘠铱矿石","tr":"贫瘠铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17085":{"name":"贫瘠铂矿石","tr":"贫瘠铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17086":{"name":"贫瘠金矿石","tr":"贫瘠金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17089":{"name":"贫瘠铅矿石","tr":"贫瘠铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17090":{"name":"贫瘠铋矿石","tr":"贫瘠铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17096":{"name":"贫瘠钍矿石","tr":"贫瘠钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17097":{"name":"贫瘠铀-235矿石","tr":"贫瘠铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17098":{"name":"贫瘠铀-238矿石","tr":"贫瘠铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17100":{"name":"贫瘠钚-239矿石","tr":"贫瘠钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17101":{"name":"贫瘠钚-241矿石","tr":"贫瘠钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17103":{"name":"贫瘠镅矿石","tr":"贫瘠镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17110":{"name":"贫瘠生镃矿石","tr":"贫瘠生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17129":{"name":"贫瘠中子矿石","tr":"贫瘠中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"770":{"oreDict":["oreHeeEndium"],"name":"终末矿石","tr":"终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"797":{"oreDict":["oreCalciumHydride"],"name":"氢化钙矿石","tr":"氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"810":{"oreDict":["oreRedstone"],"name":"红石矿石","tr":"红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"812":{"oreDict":["oreElectrotine"],"name":"蓝石矿石","tr":"蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"817":{"oreDict":["oreSalt"],"name":"盐矿石","tr":"盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"820":{"oreDict":["oreAlmandine"],"name":"铁铝榴石矿石","tr":"铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"821":{"oreDict":["oreAndradite"],"name":"钙铁榴石矿石","tr":"钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"822":{"oreDict":["oreBauxite"],"name":"铝土矿矿石","tr":"铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"823":{"oreDict":["oreCalcite"],"name":"方解石矿石","tr":"方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"824":{"oreDict":["oreCassiterite"],"name":"锡石矿石","tr":"锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"825":{"oreDict":["oreChromite"],"name":"铬铁矿矿石","tr":"铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"826":{"oreDict":["oreCinnabar"],"name":"朱砂矿石","tr":"朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"827":{"oreDict":["oreCobaltite"],"name":"辉钴矿矿石","tr":"辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"828":{"oreDict":["oreCooperite"],"name":"硫铂矿矿石","tr":"硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"829":{"oreDict":["oreDeepIron"],"name":"深渊铁矿石","tr":"深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"830":{"oreDict":["oreGalena"],"name":"方铅矿矿石","tr":"方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"831":{"oreDict":["oreGrossular"],"name":"钙铝榴石矿石","tr":"钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"833":{"oreDict":["orePhosphate"],"name":"磷酸盐矿石","tr":"磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"834":{"oreDict":["orePyrite"],"name":"黄铁矿矿石","tr":"黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"835":{"oreDict":["orePyrope"],"name":"镁铝榴石矿石","tr":"镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"836":{"oreDict":["oreSaltpeter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"838":{"oreDict":["oreSpessartine"],"name":"锰铝榴石矿石","tr":"锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"839":{"oreDict":["oreSphalerite"],"name":"闪锌矿矿石","tr":"闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"840":{"oreDict":["oreTetrahedrite"],"name":"黝铜矿矿石","tr":"黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"841":{"oreDict":["oreTungstate"],"name":"钨酸锂矿石","tr":"钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"842":{"oreDict":["oreUvarovite"],"name":"钙铬榴石矿石","tr":"钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"855":{"oreDict":["oreChalcopyrite"],"name":"黄铜矿矿石","tr":"黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"856":{"oreDict":["oreSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)矿石","tr":"太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"861":{"oreDict":["oreEmery"],"name":"金刚砂矿石","tr":"金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"865":{"oreDict":["oreGraphite"],"name":"石墨矿石","tr":"石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"868":{"oreDict":["oreTrinium"],"name":"三元金属矿石","tr":"三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"870":{"oreDict":["oreMagnetite"],"name":"磁铁矿矿石","tr":"磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"871":{"oreDict":["oreMalachite"],"name":"孔雀石矿石","tr":"孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"873":{"oreDict":["orePitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"877":{"oreDict":["oreSoapstone"],"name":"皂石矿石","tr":"皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"878":{"oreDict":["oreOilsands"],"name":"油砂矿石","tr":"油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"882":{"oreDict":["oreWulfenite"],"name":"钼铅矿矿石","tr":"钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"883":{"oreDict":["orePowellite"],"name":"钼钙矿矿石","tr":"钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"884":{"oreDict":["oreDesh"],"name":"戴斯矿石","tr":"戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"894":{"oreDict":["oreCheese"],"name":"奶酪矿石","tr":"奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"900":{"oreDict":["oreMirabilite"],"name":"芒硝矿石","tr":"芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"901":{"oreDict":["oreMica"],"name":"云母矿石","tr":"云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"902":{"oreDict":["oreTalc"],"name":"滑石","tr":"滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"903":{"oreDict":["oreTrona"],"name":"天然碱矿石","tr":"天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"904":{"oreDict":["oreBarite"],"name":"重晶石矿石","tr":"重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"905":{"oreDict":["oreBastnasite"],"name":"氟碳镧铈矿矿石","tr":"氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"906":{"oreDict":["oreGarnierite"],"name":"硅镁镍矿矿石","tr":"硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"907":{"oreDict":["oreLepidolite"],"name":"锂云母矿石","tr":"锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"908":{"oreDict":["oreMagnesite"],"name":"菱镁矿矿石","tr":"菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"909":{"oreDict":["orePentlandite"],"name":"镍黄铁矿矿石","tr":"镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"910":{"oreDict":["oreScheelite"],"name":"白钨矿矿石","tr":"白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"911":{"oreDict":["oreAlunite"],"name":"明矾石矿石","tr":"明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"912":{"oreDict":["oreChrysotile"],"name":"白石棉矿石","tr":"白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"913":{"oreDict":["oreRealgar"],"name":"雄黄矿石","tr":"雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"914":{"oreDict":["oreDolomite"],"name":"白云石矿石","tr":"白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"915":{"oreDict":["oreWollastonite"],"name":"硅灰石矿石","tr":"硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"916":{"oreDict":["oreZeolite"],"name":"沸石矿石","tr":"沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"917":{"oreDict":["oreBandedIron"],"name":"带状铁矿矿石","tr":"带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"918":{"oreDict":["oreIlmenite"],"name":"钛铁矿矿石","tr":"钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17303":{"name":"贫瘠琥珀金矿石","tr":"贫瘠琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"919":{"oreDict":["orePollucite"],"name":"铯榴石矿石","tr":"铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"920":{"oreDict":["oreSpodumene"],"name":"锂辉石矿石","tr":"锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"921":{"oreDict":["oreTantalite"],"name":"钽铁矿矿石","tr":"钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"922":{"oreDict":["oreUraninite"],"name":"晶质铀矿矿石","tr":"晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17307":{"name":"贫瘠生铁矿石","tr":"贫瘠生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"923":{"oreDict":["oreVanadiumMagnetite"],"name":"钒磁铁矿矿石","tr":"钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"924":{"oreDict":["oreKyanite"],"name":"蓝晶石矿石","tr":"蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"925":{"oreDict":["orePerlite"],"name":"珍珠岩矿石","tr":"珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"926":{"oreDict":["orePumice"],"name":"浮岩矿石","tr":"浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"927":{"oreDict":["oreBentonite"],"name":"膨润土","tr":"膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"928":{"oreDict":["oreFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"929":{"oreDict":["oreKaolinite"],"name":"高岭石","tr":"高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"930":{"oreDict":["oreBrownLimonite"],"name":"棕褐铁矿矿石","tr":"棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"931":{"oreDict":["oreYellowLimonite"],"name":"黄褐铁矿矿石","tr":"黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"932":{"oreDict":["oreVermiculite"],"name":"蛭石","tr":"蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"933":{"oreDict":["oreGlauconite"],"name":"海绿石矿石","tr":"海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"934":{"oreDict":["oreGypsum"],"name":"石膏矿石","tr":"石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17319":{"name":"贫瘠精金矿石","tr":"贫瘠精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"935":{"oreDict":["oreBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17320":{"name":"贫瘠通流琥珀金矿石","tr":"贫瘠通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"936":{"oreDict":["oreGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"937":{"oreDict":["oreCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"938":{"oreDict":["oreGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17323":{"name":"贫瘠注魔金矿石","tr":"贫瘠注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"939":{"oreDict":["oreQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17324":{"name":"贫瘠硅岩矿石","tr":"贫瘠硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"941":{"oreDict":["oreBorax"],"name":"硼砂矿石","tr":"硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17326":{"name":"贫瘠富集硅岩矿石","tr":"贫瘠富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"942":{"oreDict":["oreMolybdenite"],"name":"辉钼矿矿石","tr":"辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17327":{"name":"贫瘠超能硅岩矿石","tr":"贫瘠超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"943":{"oreDict":["orePyrolusite"],"name":"软锰矿矿石","tr":"软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"944":{"oreDict":["oreRockSalt"],"name":"岩盐矿石","tr":"岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17329":{"name":"贫瘠三钛矿石","tr":"贫瘠三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"945":{"oreDict":["oreStibnite"],"name":"辉锑矿矿石","tr":"辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"946":{"oreDict":["oreAsbestos"],"name":"石棉矿石","tr":"石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17331":{"name":"贫瘠秘银矿石","tr":"贫瘠秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"948":{"oreDict":["oreDiatomite"],"name":"硅藻土矿石","tr":"硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"949":{"oreDict":["oreGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"951":{"oreDict":["oreVyroxeres"],"name":"幽冥剧毒结晶矿石","tr":"幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17336":{"name":"贫瘠暗影铁矿石","tr":"贫瘠暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"952":{"oreDict":["oreCeruclase"],"name":"暗影秘银矿石","tr":"暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17340":{"name":"贫瘠陨铁矿石","tr":"贫瘠陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"956":{"oreDict":["oreTartarite"],"name":"溶火之石矿石","tr":"溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17342":{"name":"贫瘠玄铁矿石","tr":"贫瘠玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17347":{"name":"贫瘠火石矿石","tr":"贫瘠火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"966":{"oreDict":["oreOrichalcum"],"name":"山铜矿石","tr":"山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"969":{"oreDict":["oreAluminiumfluoride"],"name":"氟化铝矿石","tr":"氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"971":{"oreDict":["oreCalciumDisilicide"],"name":"二硅化钙矿石","tr":"二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"975":{"oreDict":["oreDraconium"],"name":"龙矿石","tr":"龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"976":{"oreDict":["oreDraconiumAwakened"],"name":"觉醒龙矿石","tr":"觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"978":{"oreDict":["oreIchorium"],"name":"灵宝矿石","tr":"灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"982":{"oreDict":["oreCosmicNeutronium"],"name":"宇宙中子态素矿石","tr":"宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17368":{"name":"贫瘠暗影金属矿石","tr":"贫瘠暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"984":{"oreDict":["oreFlerovium_GT5U"],"name":"矿石","tr":"矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17375":{"name":"贫瘠金红石矿石","tr":"贫瘠金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17382":{"name":"贫瘠阿迪特矿石","tr":"贫瘠阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17386":{"name":"贫瘠玛玉灵矿石","tr":"贫瘠玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17387":{"name":"贫瘠深空秘银矿石","tr":"贫瘠深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17388":{"name":"贫瘠黑钚矿石","tr":"贫瘠黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17389":{"name":"贫瘠木卫四冰矿石","tr":"贫瘠木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1006":{"oreDict":["oreNetherrackLithium"],"name":"锂矿石","tr":"锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17390":{"name":"贫瘠深铅矿石","tr":"贫瘠深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17391":{"name":"贫瘠量子矿石","tr":"贫瘠量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1008":{"oreDict":["oreNetherrackBeryllium"],"name":"铍矿石","tr":"铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17392":{"name":"贫瘠硬铝矿石","tr":"贫瘠硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17393":{"name":"贫瘠奥利哈钢矿石","tr":"贫瘠奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17394":{"name":"贫瘠无尽催化剂矿石","tr":"贫瘠无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17395":{"name":"贫瘠基岩矿石","tr":"贫瘠基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17398":{"name":"贫瘠神秘水晶矿石","tr":"贫瘠神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1018":{"oreDict":["oreNetherrackMagnesium"],"name":"镁矿石","tr":"镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1019":{"oreDict":["oreNetherrackAluminium"],"name":"铝矿石","tr":"铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1020":{"oreDict":["oreNetherrackSilicon"],"name":"硅矿石","tr":"硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1022":{"oreDict":["oreNetherrackSulfur"],"name":"硫矿石","tr":"硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1027":{"oreDict":["oreNetherrackScandium"],"name":"钪矿石","tr":"钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1028":{"oreDict":["oreNetherrackTitanium"],"name":"钛矿石","tr":"钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1029":{"oreDict":["oreNetherrackVanadium"],"name":"钒矿石","tr":"钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1030":{"oreDict":["oreNetherrackChrome"],"name":"铬矿石","tr":"铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1031":{"oreDict":["oreNetherrackManganese"],"name":"锰矿石","tr":"锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1032":{"oreDict":["oreNetherrackIron"," oreNetherrackAnyIron"],"name":"铁矿石","tr":"铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1033":{"oreDict":["oreNetherrackCobalt"],"name":"钴矿石","tr":"钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1034":{"oreDict":["oreNetherrackNickel"],"name":"镍矿石","tr":"镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1035":{"oreDict":["oreNetherrackCopper"," oreNetherrackAnyCopper"],"name":"铜矿石","tr":"铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1036":{"oreDict":["oreNetherrackZinc"],"name":"锌矿石","tr":"锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1037":{"oreDict":["oreNetherrackGallium"],"name":"镓矿石","tr":"镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1039":{"oreDict":["oreNetherrackArsenic"],"name":"砷矿石","tr":"砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1043":{"oreDict":["oreNetherrackRubidium"],"name":"铷矿石","tr":"铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1044":{"oreDict":["oreNetherrackStrontium"],"name":"锶矿石","tr":"锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1045":{"oreDict":["oreNetherrackYttrium"],"name":"钇矿石","tr":"钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1047":{"oreDict":["oreNetherrackNiobium"],"name":"铌矿石","tr":"铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1048":{"oreDict":["oreNetherrackMolybdenum"],"name":"钼矿石","tr":"钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1052":{"oreDict":["oreNetherrackPalladium"],"name":"钯矿石","tr":"钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1054":{"oreDict":["oreNetherrackSilver"],"name":"银矿石","tr":"银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1055":{"oreDict":["oreNetherrackCadmium"],"name":"镉矿石","tr":"镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1056":{"oreDict":["oreNetherrackIndium"],"name":"铟矿石","tr":"铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1057":{"oreDict":["oreNetherrackTin"],"name":"锡矿石","tr":"锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1058":{"oreDict":["oreNetherrackAntimony"],"name":"锑矿石","tr":"锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1059":{"oreDict":["oreNetherrackTellurium"],"name":"碲矿石","tr":"碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1062":{"oreDict":["oreNetherrackCaesium"],"name":"铯矿石","tr":"铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1063":{"oreDict":["oreNetherrackBarium"],"name":"钡矿石","tr":"钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1064":{"oreDict":["oreNetherrackLanthanum"],"name":"镧矿石","tr":"镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1065":{"oreDict":["oreNetherrackCerium"],"name":"铈矿石","tr":"铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1066":{"oreDict":["oreNetherrackPraseodymium"],"name":"镨矿石","tr":"镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1067":{"oreDict":["oreNetherrackNeodymium"],"name":"钕矿石","tr":"钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1068":{"oreDict":["oreNetherrackPromethium"],"name":"钷矿石","tr":"钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1069":{"oreDict":["oreNetherrackSamarium"],"name":"钐矿石","tr":"钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1070":{"oreDict":["oreNetherrackEuropium"],"name":"铕矿石","tr":"铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1071":{"oreDict":["oreNetherrackGadolinium"],"name":"钆矿石","tr":"钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1072":{"oreDict":["oreNetherrackTerbium"],"name":"铽矿石","tr":"铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1073":{"oreDict":["oreNetherrackDysprosium"],"name":"镝矿石","tr":"镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1074":{"oreDict":["oreNetherrackHolmium"],"name":"钬矿石","tr":"钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1075":{"oreDict":["oreNetherrackErbium"],"name":"铒矿石","tr":"铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1076":{"oreDict":["oreNetherrackThulium"],"name":"铥矿石","tr":"铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1077":{"oreDict":["oreNetherrackYtterbium"],"name":"镱矿石","tr":"镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1078":{"oreDict":["oreNetherrackLutetium"],"name":"镥矿石","tr":"镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1080":{"oreDict":["oreNetherrackTantalum"],"name":"钽矿石","tr":"钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1081":{"oreDict":["oreNetherrackTungsten"],"name":"钨矿石","tr":"钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1083":{"oreDict":["oreNetherrackOsmium"],"name":"锇矿石","tr":"锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1084":{"oreDict":["oreNetherrackIridium"],"name":"铱矿石","tr":"铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1085":{"oreDict":["oreNetherrackPlatinum"],"name":"铂矿石","tr":"铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1086":{"oreDict":["oreNetherrackGold"],"name":"金矿石","tr":"金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1089":{"oreDict":["oreNetherrackLead"],"name":"铅矿石","tr":"铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1090":{"oreDict":["oreNetherrackBismuth"],"name":"铋矿石","tr":"铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1096":{"oreDict":["oreNetherrackThorium"],"name":"钍矿石","tr":"钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1097":{"oreDict":["oreNetherrackUranium235"],"name":"铀-235矿石","tr":"铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1098":{"oreDict":["oreNetherrackUranium"],"name":"铀-238矿石","tr":"铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1100":{"oreDict":["oreNetherrackPlutonium"],"name":"钚-239矿石","tr":"钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1101":{"oreDict":["oreNetherrackPlutonium241"],"name":"钚-241矿石","tr":"钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17485":{"name":"贫瘠神秘蓝金矿石","tr":"贫瘠神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1103":{"oreDict":["oreNetherrackAmericium"],"name":"镅矿石","tr":"镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17488":{"name":"贫瘠褐铜矿石","tr":"贫瘠褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17489":{"name":"贫瘠胶木矿石","tr":"贫瘠胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1110":{"oreDict":["oreNetherrackTengamRaw"],"name":"生镃矿石","tr":"生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17500":{"name":"贫瘠钻石矿石","tr":"贫瘠钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17501":{"name":"贫瘠绿宝石矿石","tr":"贫瘠绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17502":{"name":"贫瘠红宝石矿石","tr":"贫瘠红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17503":{"name":"贫瘠蓝宝石矿石","tr":"贫瘠蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17504":{"name":"贫瘠绿色蓝宝石矿石","tr":"贫瘠绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17505":{"name":"贫瘠橄榄石矿石","tr":"贫瘠橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17506":{"name":"贫瘠下界之星矿石","tr":"贫瘠下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17507":{"name":"贫瘠黄玉矿石","tr":"贫瘠黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17508":{"name":"贫瘠坦桑石矿石","tr":"贫瘠坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17509":{"name":"贫瘠紫水晶矿石","tr":"贫瘠紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17510":{"name":"贫瘠蛋白石矿石","tr":"贫瘠蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17511":{"name":"贫瘠碧玉矿石","tr":"贫瘠碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17512":{"name":"贫瘠尖晶石矿石","tr":"贫瘠尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1129":{"oreDict":["oreNetherrackNeutronium"],"name":"中子矿石","tr":"中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17513":{"name":"贫瘠蓝黄玉矿石","tr":"贫瘠蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17514":{"name":"贫瘠琥珀矿石","tr":"贫瘠琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17515":{"name":"贫瘠双锂矿石","tr":"贫瘠双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17516":{"name":"贫瘠赛特斯石英矿石","tr":"贫瘠赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17517":{"name":"贫瘠充能赛特斯石英矿石","tr":"贫瘠充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17518":{"name":"贫瘠力之宝石矿石","tr":"贫瘠力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17519":{"name":"贫瘠力场宝石矿石","tr":"贫瘠力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17520":{"name":"贫瘠独居石矿石","tr":"贫瘠独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17521":{"name":"贫瘠力量矿石","tr":"贫瘠力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17522":{"name":"贫瘠下界石英矿石","tr":"贫瘠下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17523":{"name":"贫瘠石英岩矿石","tr":"贫瘠石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17524":{"name":"贫瘠蓝金石矿石","tr":"贫瘠蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17525":{"name":"贫瘠方钠石矿石","tr":"贫瘠方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17526":{"name":"贫瘠青金石矿石","tr":"贫瘠青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17527":{"name":"贫瘠红石榴石矿石","tr":"贫瘠红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17528":{"name":"贫瘠黄石榴石矿石","tr":"贫瘠黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17529":{"name":"贫瘠温特姆矿石","tr":"贫瘠温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17530":{"name":"贫瘠磷灰石矿石","tr":"贫瘠磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17531":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17534":{"name":"贫瘠磷酸三钙矿石","tr":"贫瘠磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17535":{"name":"贫瘠煤矿石","tr":"贫瘠煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17537":{"name":"贫瘠玉矿石","tr":"贫瘠玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17538":{"name":"贫瘠褐煤矿石","tr":"贫瘠褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17540":{"name":"贫瘠风之蕴魔石","tr":"贫瘠风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17541":{"name":"贫瘠火之蕴魔石","tr":"贫瘠火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17542":{"name":"贫瘠地之蕴魔石","tr":"贫瘠地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17543":{"name":"贫瘠水之蕴魔石","tr":"贫瘠水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17544":{"name":"贫瘠混沌蕴魔石","tr":"贫瘠混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17545":{"name":"贫瘠秩序蕴魔石","tr":"贫瘠秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17548":{"name":"贫瘠焙烧铁矿石","tr":"贫瘠焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17549":{"name":"贫瘠焙烧镍矿石","tr":"贫瘠焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17607":{"name":"贫瘠烧绿石矿石","tr":"贫瘠烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1303":{"oreDict":["oreNetherrackElectrum"],"name":"琥珀金矿石","tr":"琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1307":{"oreDict":["oreNetherrackAnyIron"," oreNetherrackPigIron"],"name":"生铁矿石","tr":"生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17699":{"name":"贫瘠冰晶石矿石","tr":"贫瘠冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1319":{"oreDict":["oreNetherrackAdamantium"],"name":"精金矿石","tr":"精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1320":{"oreDict":["oreNetherrackElectrumFlux"],"name":"通流琥珀金矿石","tr":"通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1323":{"oreDict":["oreNetherrackInfusedGold"],"name":"注魔金矿石","tr":"注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1324":{"oreDict":["oreNetherrackNaquadah"],"name":"硅岩矿石","tr":"硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1326":{"oreDict":["oreNetherrackNaquadahEnriched"],"name":"富集硅岩矿石","tr":"富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1327":{"oreDict":["oreNetherrackNaquadria"],"name":"超能硅岩矿石","tr":"超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1329":{"oreDict":["oreNetherrackTritanium"],"name":"三钛矿石","tr":"三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1331":{"oreDict":["oreNetherrackMithril"],"name":"秘银矿石","tr":"秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1336":{"oreDict":["oreNetherrackShadowIron"],"name":"暗影铁矿石","tr":"暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1340":{"oreDict":["oreNetherrackMeteoricIron"],"name":"陨铁矿石","tr":"陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1342":{"oreDict":["oreNetherrackDarkIron"],"name":"玄铁矿石","tr":"玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1347":{"oreDict":["oreNetherrackFirestone"],"name":"火石矿石","tr":"火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1368":{"oreDict":["oreNetherrackShadow"],"name":"暗影金属矿石","tr":"暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1375":{"oreDict":["oreNetherrackRutile"],"name":"金红石矿石","tr":"金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1382":{"oreDict":["oreNetherrackArdite"],"name":"阿迪特矿石","tr":"阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1386":{"oreDict":["oreNetherrackManyullyn"],"name":"玛玉灵矿石","tr":"玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17770":{"name":"贫瘠终末矿石","tr":"贫瘠终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1387":{"oreDict":["oreNetherrackMytryl"],"name":"深空秘银矿石","tr":"深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1388":{"oreDict":["oreNetherrackBlackPlutonium"],"name":"黑钚矿石","tr":"黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1389":{"oreDict":["oreNetherrackCallistoIce"],"name":"木卫四冰矿石","tr":"木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1390":{"oreDict":["oreNetherrackLedox"],"name":"深铅矿石","tr":"深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1391":{"oreDict":["oreNetherrackQuantium"],"name":"量子矿石","tr":"量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1392":{"oreDict":["oreNetherrackDuralumin"],"name":"硬铝矿石","tr":"硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1393":{"oreDict":["oreNetherrackOriharukon"],"name":"奥利哈钢矿石","tr":"奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1394":{"oreDict":["oreNetherrackInfinityCatalyst"],"name":"无尽催化剂矿石","tr":"无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1395":{"oreDict":["oreNetherrackBedrockium"],"name":"基岩矿石","tr":"基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1398":{"oreDict":["oreNetherrackMysteriousCrystal"],"name":"神秘水晶矿石","tr":"神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17797":{"name":"贫瘠氢化钙矿石","tr":"贫瘠氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17810":{"name":"贫瘠红石矿石","tr":"贫瘠红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17812":{"name":"贫瘠蓝石矿石","tr":"贫瘠蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17817":{"name":"贫瘠盐矿石","tr":"贫瘠盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17820":{"name":"贫瘠铁铝榴石矿石","tr":"贫瘠铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17821":{"name":"贫瘠钙铁榴石矿石","tr":"贫瘠钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17822":{"name":"贫瘠铝土矿矿石","tr":"贫瘠铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17823":{"name":"贫瘠方解石矿石","tr":"贫瘠方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17824":{"name":"贫瘠锡石矿石","tr":"贫瘠锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17825":{"name":"贫瘠铬铁矿矿石","tr":"贫瘠铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17826":{"name":"贫瘠朱砂矿石","tr":"贫瘠朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17827":{"name":"贫瘠辉钴矿矿石","tr":"贫瘠辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17828":{"name":"贫瘠硫铂矿矿石","tr":"贫瘠硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17829":{"name":"贫瘠深渊铁矿石","tr":"贫瘠深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17830":{"name":"贫瘠方铅矿矿石","tr":"贫瘠方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17831":{"name":"贫瘠钙铝榴石矿石","tr":"贫瘠钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17833":{"name":"贫瘠磷酸盐矿石","tr":"贫瘠磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17834":{"name":"贫瘠黄铁矿矿石","tr":"贫瘠黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17835":{"name":"贫瘠镁铝榴石矿石","tr":"贫瘠镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17836":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17838":{"name":"贫瘠锰铝榴石矿石","tr":"贫瘠锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17839":{"name":"贫瘠闪锌矿矿石","tr":"贫瘠闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17840":{"name":"贫瘠黝铜矿矿石","tr":"贫瘠黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17841":{"name":"贫瘠钨酸锂矿石","tr":"贫瘠钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17842":{"name":"贫瘠钙铬榴石矿石","tr":"贫瘠钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17855":{"name":"贫瘠黄铜矿矿石","tr":"贫瘠黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17856":{"name":"贫瘠太阳能级硅(多晶硅)矿石","tr":"贫瘠太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17861":{"name":"贫瘠金刚砂矿石","tr":"贫瘠金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17865":{"name":"贫瘠石墨矿石","tr":"贫瘠石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17868":{"name":"贫瘠三元金属矿石","tr":"贫瘠三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1485":{"oreDict":["oreNetherrackAlduorite"],"name":"神秘蓝金矿石","tr":"神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17870":{"name":"贫瘠磁铁矿矿石","tr":"贫瘠磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17871":{"name":"贫瘠孔雀石矿石","tr":"贫瘠孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1488":{"oreDict":["oreNetherrackRubracium"],"name":"褐铜矿石","tr":"褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1489":{"oreDict":["oreNetherrackVulcanite"],"name":"胶木矿石","tr":"胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17873":{"name":"贫瘠沥青铀矿","tr":"贫瘠沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17877":{"name":"贫瘠皂石矿石","tr":"贫瘠皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17878":{"name":"贫瘠油砂矿石","tr":"贫瘠油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17882":{"name":"贫瘠钼铅矿矿石","tr":"贫瘠钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17883":{"name":"贫瘠钼钙矿矿石","tr":"贫瘠钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1500":{"oreDict":["oreNetherrackDiamond"],"name":"钻石矿石","tr":"钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17884":{"name":"贫瘠戴斯矿石","tr":"贫瘠戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1501":{"oreDict":["oreNetherrackEmerald"],"name":"绿宝石矿石","tr":"绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1502":{"oreDict":["oreNetherrackRuby"],"name":"红宝石矿石","tr":"红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1503":{"oreDict":["oreNetherrackSapphire"],"name":"蓝宝石矿石","tr":"蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1504":{"oreDict":["oreNetherrackGreenSapphire"],"name":"绿色蓝宝石矿石","tr":"绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1505":{"oreDict":["oreNetherrackOlivine"],"name":"橄榄石矿石","tr":"橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1506":{"oreDict":["oreNetherrackNetherStar"],"name":"下界之星矿石","tr":"下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1507":{"oreDict":["oreNetherrackTopaz"],"name":"黄玉矿石","tr":"黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1508":{"oreDict":["oreNetherrackTanzanite"],"name":"坦桑石矿石","tr":"坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1509":{"oreDict":["oreNetherrackAmethyst"],"name":"紫水晶矿石","tr":"紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1510":{"oreDict":["oreNetherrackOpal"],"name":"蛋白石矿石","tr":"蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17894":{"name":"贫瘠奶酪矿石","tr":"贫瘠奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1511":{"oreDict":["oreNetherrackJasper"],"name":"碧玉矿石","tr":"碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1512":{"oreDict":["oreNetherrackFoolsRuby"],"name":"尖晶石矿石","tr":"尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1513":{"oreDict":["oreNetherrackBlueTopaz"],"name":"蓝黄玉矿石","tr":"蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1514":{"oreDict":["oreNetherrackAmber"],"name":"琥珀矿石","tr":"琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1515":{"oreDict":["oreNetherrackDilithium"],"name":"双锂矿石","tr":"双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1516":{"oreDict":["oreNetherrackCertusQuartz"],"name":"赛特斯石英矿石","tr":"赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17900":{"name":"贫瘠芒硝矿石","tr":"贫瘠芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1517":{"oreDict":["oreNetherrackChargedCertusQuartz"],"name":"充能赛特斯石英矿石","tr":"充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17901":{"name":"贫瘠云母矿石","tr":"贫瘠云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1518":{"oreDict":["oreNetherrackForcicium"],"name":"力之宝石矿石","tr":"力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17902":{"name":"贫瘠滑石","tr":"贫瘠滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1519":{"oreDict":["oreNetherrackForcillium"],"name":"力场宝石矿石","tr":"力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17903":{"name":"贫瘠天然碱矿石","tr":"贫瘠天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1520":{"oreDict":["oreNetherrackMonazite"],"name":"独居石矿石","tr":"独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17904":{"name":"贫瘠重晶石矿石","tr":"贫瘠重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1521":{"oreDict":["oreNetherrackForce"],"name":"力量矿石","tr":"力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17905":{"name":"贫瘠氟碳镧铈矿矿石","tr":"贫瘠氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1522":{"oreDict":["oreNetherrackNetherQuartz"],"name":"下界石英矿石","tr":"下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17906":{"name":"贫瘠硅镁镍矿矿石","tr":"贫瘠硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1523":{"oreDict":["oreNetherrackQuartzite"],"name":"石英岩矿石","tr":"石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17907":{"name":"贫瘠锂云母矿石","tr":"贫瘠锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1524":{"oreDict":["oreNetherrackLazurite"],"name":"蓝金石矿石","tr":"蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17908":{"name":"贫瘠菱镁矿矿石","tr":"贫瘠菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1525":{"oreDict":["oreNetherrackSodalite"],"name":"方钠石矿石","tr":"方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17909":{"name":"贫瘠镍黄铁矿矿石","tr":"贫瘠镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1526":{"oreDict":["oreNetherrackLapis"],"name":"青金石矿石","tr":"青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17910":{"name":"贫瘠白钨矿矿石","tr":"贫瘠白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1527":{"oreDict":["oreNetherrackGarnetRed"],"name":"红石榴石矿石","tr":"红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17911":{"name":"贫瘠明矾石矿石","tr":"贫瘠明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1528":{"oreDict":["oreNetherrackGarnetYellow"],"name":"黄石榴石矿石","tr":"黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17912":{"name":"贫瘠白石棉矿石","tr":"贫瘠白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1529":{"oreDict":["oreNetherrackVinteum"],"name":"温特姆矿石","tr":"温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17913":{"name":"贫瘠雄黄矿石","tr":"贫瘠雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1530":{"oreDict":["oreNetherrackApatite"],"name":"磷灰石矿石","tr":"磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17914":{"name":"贫瘠白云石矿石","tr":"贫瘠白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1531":{"oreDict":["oreNetherrackNiter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17915":{"name":"贫瘠硅灰石矿石","tr":"贫瘠硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17916":{"name":"贫瘠沸石矿石","tr":"贫瘠沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17917":{"name":"贫瘠带状铁矿矿石","tr":"贫瘠带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1534":{"oreDict":["oreNetherrackTricalciumPhosphate"],"name":"磷酸三钙矿石","tr":"磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17918":{"name":"贫瘠钛铁矿矿石","tr":"贫瘠钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1535":{"oreDict":["oreNetherrackCoal"],"name":"煤矿石","tr":"煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17919":{"name":"贫瘠铯榴石矿石","tr":"贫瘠铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17920":{"name":"贫瘠锂辉石矿石","tr":"贫瘠锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1537":{"oreDict":["oreNetherrackJade"],"name":"玉矿石","tr":"玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17921":{"name":"贫瘠钽铁矿矿石","tr":"贫瘠钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1538":{"oreDict":["oreNetherrackLignite"],"name":"褐煤矿石","tr":"褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17922":{"name":"贫瘠晶质铀矿矿石","tr":"贫瘠晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17923":{"name":"贫瘠钒磁铁矿矿石","tr":"贫瘠钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1540":{"oreDict":["oreNetherrackInfusedAir"],"name":"风之蕴魔石","tr":"风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17924":{"name":"贫瘠蓝晶石矿石","tr":"贫瘠蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1541":{"oreDict":["oreNetherrackInfusedFire"],"name":"火之蕴魔石","tr":"火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17925":{"name":"贫瘠珍珠岩矿石","tr":"贫瘠珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1542":{"oreDict":["oreNetherrackInfusedEarth"],"name":"地之蕴魔石","tr":"地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17926":{"name":"贫瘠浮岩矿石","tr":"贫瘠浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1543":{"oreDict":["oreNetherrackInfusedWater"],"name":"水之蕴魔石","tr":"水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17927":{"name":"贫瘠膨润土","tr":"贫瘠膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1544":{"oreDict":["oreNetherrackInfusedEntropy"],"name":"混沌蕴魔石","tr":"混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17928":{"name":"贫瘠漂白土","tr":"贫瘠漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1545":{"oreDict":["oreNetherrackInfusedOrder"],"name":"秩序蕴魔石","tr":"秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17929":{"name":"贫瘠高岭石","tr":"贫瘠高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17930":{"name":"贫瘠棕褐铁矿矿石","tr":"贫瘠棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17931":{"name":"贫瘠黄褐铁矿矿石","tr":"贫瘠黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1548":{"oreDict":["oreNetherrackRoastedIron"],"name":"焙烧铁矿石","tr":"焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17932":{"name":"贫瘠蛭石","tr":"贫瘠蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1549":{"oreDict":["oreNetherrackRoastedNickel"],"name":"焙烧镍矿石","tr":"焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17933":{"name":"贫瘠海绿石矿石","tr":"贫瘠海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17934":{"name":"贫瘠石膏矿石","tr":"贫瘠石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17935":{"name":"贫瘠玄武岩矿砂","tr":"贫瘠玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17936":{"name":"贫瘠花岗岩矿砂","tr":"贫瘠花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17937":{"name":"贫瘠锡石矿砂","tr":"贫瘠锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17938":{"name":"贫瘠石榴石矿砂","tr":"贫瘠石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17939":{"name":"贫瘠石英矿砂","tr":"贫瘠石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17941":{"name":"贫瘠硼砂矿石","tr":"贫瘠硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17942":{"name":"贫瘠辉钼矿矿石","tr":"贫瘠辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17943":{"name":"贫瘠软锰矿矿石","tr":"贫瘠软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17944":{"name":"贫瘠岩盐矿石","tr":"贫瘠岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17945":{"name":"贫瘠辉锑矿矿石","tr":"贫瘠辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17946":{"name":"贫瘠石棉矿石","tr":"贫瘠石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17948":{"name":"贫瘠硅藻土矿石","tr":"贫瘠硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17949":{"name":"贫瘠海绿石矿砂","tr":"贫瘠海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17951":{"name":"贫瘠幽冥剧毒结晶矿石","tr":"贫瘠幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17952":{"name":"贫瘠暗影秘银矿石","tr":"贫瘠暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17956":{"name":"贫瘠溶火之石矿石","tr":"贫瘠溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17966":{"name":"贫瘠山铜矿石","tr":"贫瘠山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17969":{"name":"贫瘠氟化铝矿石","tr":"贫瘠氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17971":{"name":"贫瘠二硅化钙矿石","tr":"贫瘠二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17975":{"name":"贫瘠龙矿石","tr":"贫瘠龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17976":{"name":"贫瘠觉醒龙矿石","tr":"贫瘠觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17978":{"name":"贫瘠灵宝矿石","tr":"贫瘠灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17982":{"name":"贫瘠宇宙中子态素矿石","tr":"贫瘠宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"17984":{"name":"贫瘠矿石","tr":"贫瘠矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1607":{"oreDict":["oreNetherrackPyrochlore"],"name":"烧绿石矿石","tr":"烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18006":{"name":"贫瘠锂矿石","tr":"贫瘠锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18008":{"name":"贫瘠铍矿石","tr":"贫瘠铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18018":{"name":"贫瘠镁矿石","tr":"贫瘠镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18019":{"name":"贫瘠铝矿石","tr":"贫瘠铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18020":{"name":"贫瘠硅矿石","tr":"贫瘠硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18022":{"name":"贫瘠硫矿石","tr":"贫瘠硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18027":{"name":"贫瘠钪矿石","tr":"贫瘠钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18028":{"name":"贫瘠钛矿石","tr":"贫瘠钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18029":{"name":"贫瘠钒矿石","tr":"贫瘠钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18030":{"name":"贫瘠铬矿石","tr":"贫瘠铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18031":{"name":"贫瘠锰矿石","tr":"贫瘠锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18032":{"name":"贫瘠铁矿石","tr":"贫瘠铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18033":{"name":"贫瘠钴矿石","tr":"贫瘠钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18034":{"name":"贫瘠镍矿石","tr":"贫瘠镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18035":{"name":"贫瘠铜矿石","tr":"贫瘠铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18036":{"name":"贫瘠锌矿石","tr":"贫瘠锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18037":{"name":"贫瘠镓矿石","tr":"贫瘠镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18039":{"name":"贫瘠砷矿石","tr":"贫瘠砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18043":{"name":"贫瘠铷矿石","tr":"贫瘠铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18044":{"name":"贫瘠锶矿石","tr":"贫瘠锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18045":{"name":"贫瘠钇矿石","tr":"贫瘠钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18047":{"name":"贫瘠铌矿石","tr":"贫瘠铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18048":{"name":"贫瘠钼矿石","tr":"贫瘠钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18052":{"name":"贫瘠钯矿石","tr":"贫瘠钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18054":{"name":"贫瘠银矿石","tr":"贫瘠银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18055":{"name":"贫瘠镉矿石","tr":"贫瘠镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18056":{"name":"贫瘠铟矿石","tr":"贫瘠铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18057":{"name":"贫瘠锡矿石","tr":"贫瘠锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18058":{"name":"贫瘠锑矿石","tr":"贫瘠锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18059":{"name":"贫瘠碲矿石","tr":"贫瘠碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18062":{"name":"贫瘠铯矿石","tr":"贫瘠铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18063":{"name":"贫瘠钡矿石","tr":"贫瘠钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18064":{"name":"贫瘠镧矿石","tr":"贫瘠镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18065":{"name":"贫瘠铈矿石","tr":"贫瘠铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18066":{"name":"贫瘠镨矿石","tr":"贫瘠镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18067":{"name":"贫瘠钕矿石","tr":"贫瘠钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18068":{"name":"贫瘠钷矿石","tr":"贫瘠钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18069":{"name":"贫瘠钐矿石","tr":"贫瘠钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18070":{"name":"贫瘠铕矿石","tr":"贫瘠铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18071":{"name":"贫瘠钆矿石","tr":"贫瘠钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18072":{"name":"贫瘠铽矿石","tr":"贫瘠铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18073":{"name":"贫瘠镝矿石","tr":"贫瘠镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18074":{"name":"贫瘠钬矿石","tr":"贫瘠钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18075":{"name":"贫瘠铒矿石","tr":"贫瘠铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18076":{"name":"贫瘠铥矿石","tr":"贫瘠铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18077":{"name":"贫瘠镱矿石","tr":"贫瘠镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18078":{"name":"贫瘠镥矿石","tr":"贫瘠镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18080":{"name":"贫瘠钽矿石","tr":"贫瘠钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18081":{"name":"贫瘠钨矿石","tr":"贫瘠钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18083":{"name":"贫瘠锇矿石","tr":"贫瘠锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1699":{"oreDict":["oreNetherrackCryolite"],"name":"冰晶石矿石","tr":"冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18084":{"name":"贫瘠铱矿石","tr":"贫瘠铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18085":{"name":"贫瘠铂矿石","tr":"贫瘠铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18086":{"name":"贫瘠金矿石","tr":"贫瘠金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18089":{"name":"贫瘠铅矿石","tr":"贫瘠铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18090":{"name":"贫瘠铋矿石","tr":"贫瘠铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18096":{"name":"贫瘠钍矿石","tr":"贫瘠钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18097":{"name":"贫瘠铀-235矿石","tr":"贫瘠铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18098":{"name":"贫瘠铀-238矿石","tr":"贫瘠铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18100":{"name":"贫瘠钚-239矿石","tr":"贫瘠钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18101":{"name":"贫瘠钚-241矿石","tr":"贫瘠钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18103":{"name":"贫瘠镅矿石","tr":"贫瘠镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18110":{"name":"贫瘠生镃矿石","tr":"贫瘠生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18129":{"name":"贫瘠中子矿石","tr":"贫瘠中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1770":{"oreDict":["oreNetherrackHeeEndium"],"name":"终末矿石","tr":"终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1797":{"oreDict":["oreNetherrackCalciumHydride"],"name":"氢化钙矿石","tr":"氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1810":{"oreDict":["oreNetherrackRedstone"],"name":"红石矿石","tr":"红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1812":{"oreDict":["oreNetherrackElectrotine"],"name":"蓝石矿石","tr":"蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1817":{"oreDict":["oreNetherrackSalt"],"name":"盐矿石","tr":"盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1820":{"oreDict":["oreNetherrackAlmandine"],"name":"铁铝榴石矿石","tr":"铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1821":{"oreDict":["oreNetherrackAndradite"],"name":"钙铁榴石矿石","tr":"钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1822":{"oreDict":["oreNetherrackBauxite"],"name":"铝土矿矿石","tr":"铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1823":{"oreDict":["oreNetherrackCalcite"],"name":"方解石矿石","tr":"方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1824":{"oreDict":["oreNetherrackCassiterite"],"name":"锡石矿石","tr":"锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1825":{"oreDict":["oreNetherrackChromite"],"name":"铬铁矿矿石","tr":"铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1826":{"oreDict":["oreNetherrackCinnabar"],"name":"朱砂矿石","tr":"朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1827":{"oreDict":["oreNetherrackCobaltite"],"name":"辉钴矿矿石","tr":"辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1828":{"oreDict":["oreNetherrackCooperite"],"name":"硫铂矿矿石","tr":"硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1829":{"oreDict":["oreNetherrackDeepIron"],"name":"深渊铁矿石","tr":"深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1830":{"oreDict":["oreNetherrackGalena"],"name":"方铅矿矿石","tr":"方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1831":{"oreDict":["oreNetherrackGrossular"],"name":"钙铝榴石矿石","tr":"钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1833":{"oreDict":["oreNetherrackPhosphate"],"name":"磷酸盐矿石","tr":"磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1834":{"oreDict":["oreNetherrackPyrite"],"name":"黄铁矿矿石","tr":"黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1835":{"oreDict":["oreNetherrackPyrope"],"name":"镁铝榴石矿石","tr":"镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1836":{"oreDict":["oreNetherrackSaltpeter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1838":{"oreDict":["oreNetherrackSpessartine"],"name":"锰铝榴石矿石","tr":"锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1839":{"oreDict":["oreNetherrackSphalerite"],"name":"闪锌矿矿石","tr":"闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1840":{"oreDict":["oreNetherrackTetrahedrite"],"name":"黝铜矿矿石","tr":"黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1841":{"oreDict":["oreNetherrackTungstate"],"name":"钨酸锂矿石","tr":"钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1842":{"oreDict":["oreNetherrackUvarovite"],"name":"钙铬榴石矿石","tr":"钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1855":{"oreDict":["oreNetherrackChalcopyrite"],"name":"黄铜矿矿石","tr":"黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1856":{"oreDict":["oreNetherrackSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)矿石","tr":"太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1861":{"oreDict":["oreNetherrackEmery"],"name":"金刚砂矿石","tr":"金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1865":{"oreDict":["oreNetherrackGraphite"],"name":"石墨矿石","tr":"石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1868":{"oreDict":["oreNetherrackTrinium"],"name":"三元金属矿石","tr":"三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1870":{"oreDict":["oreNetherrackMagnetite"],"name":"磁铁矿矿石","tr":"磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1871":{"oreDict":["oreNetherrackMalachite"],"name":"孔雀石矿石","tr":"孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1873":{"oreDict":["oreNetherrackPitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1877":{"oreDict":["oreNetherrackSoapstone"],"name":"皂石矿石","tr":"皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1878":{"oreDict":["oreNetherrackOilsands"],"name":"油砂矿石","tr":"油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1882":{"oreDict":["oreNetherrackWulfenite"],"name":"钼铅矿矿石","tr":"钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1883":{"oreDict":["oreNetherrackPowellite"],"name":"钼钙矿矿石","tr":"钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1884":{"oreDict":["oreNetherrackDesh"],"name":"戴斯矿石","tr":"戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1894":{"oreDict":["oreNetherrackCheese"],"name":"奶酪矿石","tr":"奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1900":{"oreDict":["oreNetherrackMirabilite"],"name":"芒硝矿石","tr":"芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1901":{"oreDict":["oreNetherrackMica"],"name":"云母矿石","tr":"云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1902":{"oreDict":["oreNetherrackTalc"],"name":"滑石","tr":"滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1903":{"oreDict":["oreNetherrackTrona"],"name":"天然碱矿石","tr":"天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1904":{"oreDict":["oreNetherrackBarite"],"name":"重晶石矿石","tr":"重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1905":{"oreDict":["oreNetherrackBastnasite"],"name":"氟碳镧铈矿矿石","tr":"氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1906":{"oreDict":["oreNetherrackGarnierite"],"name":"硅镁镍矿矿石","tr":"硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1907":{"oreDict":["oreNetherrackLepidolite"],"name":"锂云母矿石","tr":"锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1908":{"oreDict":["oreNetherrackMagnesite"],"name":"菱镁矿矿石","tr":"菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1909":{"oreDict":["oreNetherrackPentlandite"],"name":"镍黄铁矿矿石","tr":"镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1910":{"oreDict":["oreNetherrackScheelite"],"name":"白钨矿矿石","tr":"白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1911":{"oreDict":["oreNetherrackAlunite"],"name":"明矾石矿石","tr":"明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1912":{"oreDict":["oreNetherrackChrysotile"],"name":"白石棉矿石","tr":"白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1913":{"oreDict":["oreNetherrackRealgar"],"name":"雄黄矿石","tr":"雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1914":{"oreDict":["oreNetherrackDolomite"],"name":"白云石矿石","tr":"白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1915":{"oreDict":["oreNetherrackWollastonite"],"name":"硅灰石矿石","tr":"硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1916":{"oreDict":["oreNetherrackZeolite"],"name":"沸石矿石","tr":"沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1917":{"oreDict":["oreNetherrackBandedIron"],"name":"带状铁矿矿石","tr":"带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1918":{"oreDict":["oreNetherrackIlmenite"],"name":"钛铁矿矿石","tr":"钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18303":{"name":"贫瘠琥珀金矿石","tr":"贫瘠琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1919":{"oreDict":["oreNetherrackPollucite"],"name":"铯榴石矿石","tr":"铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1920":{"oreDict":["oreNetherrackSpodumene"],"name":"锂辉石矿石","tr":"锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1921":{"oreDict":["oreNetherrackTantalite"],"name":"钽铁矿矿石","tr":"钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1922":{"oreDict":["oreNetherrackUraninite"],"name":"晶质铀矿矿石","tr":"晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18307":{"name":"贫瘠生铁矿石","tr":"贫瘠生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1923":{"oreDict":["oreNetherrackVanadiumMagnetite"],"name":"钒磁铁矿矿石","tr":"钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1924":{"oreDict":["oreNetherrackKyanite"],"name":"蓝晶石矿石","tr":"蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1925":{"oreDict":["oreNetherrackPerlite"],"name":"珍珠岩矿石","tr":"珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1926":{"oreDict":["oreNetherrackPumice"],"name":"浮岩矿石","tr":"浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1927":{"oreDict":["oreNetherrackBentonite"],"name":"膨润土","tr":"膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1928":{"oreDict":["oreNetherrackFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1929":{"oreDict":["oreNetherrackKaolinite"],"name":"高岭石","tr":"高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1930":{"oreDict":["oreNetherrackBrownLimonite"],"name":"棕褐铁矿矿石","tr":"棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1931":{"oreDict":["oreNetherrackYellowLimonite"],"name":"黄褐铁矿矿石","tr":"黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1932":{"oreDict":["oreNetherrackVermiculite"],"name":"蛭石","tr":"蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1933":{"oreDict":["oreNetherrackGlauconite"],"name":"海绿石矿石","tr":"海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1934":{"oreDict":["oreNetherrackGypsum"],"name":"石膏矿石","tr":"石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18319":{"name":"贫瘠精金矿石","tr":"贫瘠精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1935":{"oreDict":["oreNetherrackBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18320":{"name":"贫瘠通流琥珀金矿石","tr":"贫瘠通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1936":{"oreDict":["oreNetherrackGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1937":{"oreDict":["oreNetherrackCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1938":{"oreDict":["oreNetherrackGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18323":{"name":"贫瘠注魔金矿石","tr":"贫瘠注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1939":{"oreDict":["oreNetherrackQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18324":{"name":"贫瘠硅岩矿石","tr":"贫瘠硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1941":{"oreDict":["oreNetherrackBorax"],"name":"硼砂矿石","tr":"硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18326":{"name":"贫瘠富集硅岩矿石","tr":"贫瘠富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1942":{"oreDict":["oreNetherrackMolybdenite"],"name":"辉钼矿矿石","tr":"辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18327":{"name":"贫瘠超能硅岩矿石","tr":"贫瘠超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1943":{"oreDict":["oreNetherrackPyrolusite"],"name":"软锰矿矿石","tr":"软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1944":{"oreDict":["oreNetherrackRockSalt"],"name":"岩盐矿石","tr":"岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18329":{"name":"贫瘠三钛矿石","tr":"贫瘠三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1945":{"oreDict":["oreNetherrackStibnite"],"name":"辉锑矿矿石","tr":"辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1946":{"oreDict":["oreNetherrackAsbestos"],"name":"石棉矿石","tr":"石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18331":{"name":"贫瘠秘银矿石","tr":"贫瘠秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1948":{"oreDict":["oreNetherrackDiatomite"],"name":"硅藻土矿石","tr":"硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1949":{"oreDict":["oreNetherrackGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1951":{"oreDict":["oreNetherrackVyroxeres"],"name":"幽冥剧毒结晶矿石","tr":"幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18336":{"name":"贫瘠暗影铁矿石","tr":"贫瘠暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1952":{"oreDict":["oreNetherrackCeruclase"],"name":"暗影秘银矿石","tr":"暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18340":{"name":"贫瘠陨铁矿石","tr":"贫瘠陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1956":{"oreDict":["oreNetherrackTartarite"],"name":"溶火之石矿石","tr":"溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18342":{"name":"贫瘠玄铁矿石","tr":"贫瘠玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18347":{"name":"贫瘠火石矿石","tr":"贫瘠火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1966":{"oreDict":["oreNetherrackOrichalcum"],"name":"山铜矿石","tr":"山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1969":{"oreDict":["oreNetherrackAluminiumfluoride"],"name":"氟化铝矿石","tr":"氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1971":{"oreDict":["oreNetherrackCalciumDisilicide"],"name":"二硅化钙矿石","tr":"二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1975":{"oreDict":["oreNetherrackDraconium"],"name":"龙矿石","tr":"龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1976":{"oreDict":["oreNetherrackDraconiumAwakened"],"name":"觉醒龙矿石","tr":"觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1978":{"oreDict":["oreNetherrackIchorium"],"name":"灵宝矿石","tr":"灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1982":{"oreDict":["oreNetherrackCosmicNeutronium"],"name":"宇宙中子态素矿石","tr":"宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18368":{"name":"贫瘠暗影金属矿石","tr":"贫瘠暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"1984":{"oreDict":["oreNetherrackFlerovium_GT5U"],"name":"矿石","tr":"矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18375":{"name":"贫瘠金红石矿石","tr":"贫瘠金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18382":{"name":"贫瘠阿迪特矿石","tr":"贫瘠阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18386":{"name":"贫瘠玛玉灵矿石","tr":"贫瘠玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18387":{"name":"贫瘠深空秘银矿石","tr":"贫瘠深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18388":{"name":"贫瘠黑钚矿石","tr":"贫瘠黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18389":{"name":"贫瘠木卫四冰矿石","tr":"贫瘠木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2006":{"oreDict":["oreEndstoneLithium"],"name":"锂矿石","tr":"锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18390":{"name":"贫瘠深铅矿石","tr":"贫瘠深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18391":{"name":"贫瘠量子矿石","tr":"贫瘠量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2008":{"oreDict":["oreEndstoneBeryllium"],"name":"铍矿石","tr":"铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18392":{"name":"贫瘠硬铝矿石","tr":"贫瘠硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18393":{"name":"贫瘠奥利哈钢矿石","tr":"贫瘠奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18394":{"name":"贫瘠无尽催化剂矿石","tr":"贫瘠无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18395":{"name":"贫瘠基岩矿石","tr":"贫瘠基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18398":{"name":"贫瘠神秘水晶矿石","tr":"贫瘠神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2018":{"oreDict":["oreEndstoneMagnesium"],"name":"镁矿石","tr":"镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2019":{"oreDict":["oreEndstoneAluminium"],"name":"铝矿石","tr":"铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2020":{"oreDict":["oreEndstoneSilicon"],"name":"硅矿石","tr":"硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2022":{"oreDict":["oreEndstoneSulfur"],"name":"硫矿石","tr":"硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2027":{"oreDict":["oreEndstoneScandium"],"name":"钪矿石","tr":"钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2028":{"oreDict":["oreEndstoneTitanium"],"name":"钛矿石","tr":"钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2029":{"oreDict":["oreEndstoneVanadium"],"name":"钒矿石","tr":"钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2030":{"oreDict":["oreEndstoneChrome"],"name":"铬矿石","tr":"铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2031":{"oreDict":["oreEndstoneManganese"],"name":"锰矿石","tr":"锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2032":{"oreDict":["oreEndstoneIron"," oreEndstoneAnyIron"],"name":"铁矿石","tr":"铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2033":{"oreDict":["oreEndstoneCobalt"],"name":"钴矿石","tr":"钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2034":{"oreDict":["oreEndstoneNickel"],"name":"镍矿石","tr":"镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2035":{"oreDict":["oreEndstoneCopper"," oreEndstoneAnyCopper"],"name":"铜矿石","tr":"铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2036":{"oreDict":["oreEndstoneZinc"],"name":"锌矿石","tr":"锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2037":{"oreDict":["oreEndstoneGallium"],"name":"镓矿石","tr":"镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2039":{"oreDict":["oreEndstoneArsenic"],"name":"砷矿石","tr":"砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2043":{"oreDict":["oreEndstoneRubidium"],"name":"铷矿石","tr":"铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2044":{"oreDict":["oreEndstoneStrontium"],"name":"锶矿石","tr":"锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2045":{"oreDict":["oreEndstoneYttrium"],"name":"钇矿石","tr":"钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2047":{"oreDict":["oreEndstoneNiobium"],"name":"铌矿石","tr":"铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2048":{"oreDict":["oreEndstoneMolybdenum"],"name":"钼矿石","tr":"钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2052":{"oreDict":["oreEndstonePalladium"],"name":"钯矿石","tr":"钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2054":{"oreDict":["oreEndstoneSilver"],"name":"银矿石","tr":"银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2055":{"oreDict":["oreEndstoneCadmium"],"name":"镉矿石","tr":"镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2056":{"oreDict":["oreEndstoneIndium"],"name":"铟矿石","tr":"铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2057":{"oreDict":["oreEndstoneTin"],"name":"锡矿石","tr":"锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2058":{"oreDict":["oreEndstoneAntimony"],"name":"锑矿石","tr":"锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2059":{"oreDict":["oreEndstoneTellurium"],"name":"碲矿石","tr":"碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2062":{"oreDict":["oreEndstoneCaesium"],"name":"铯矿石","tr":"铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2063":{"oreDict":["oreEndstoneBarium"],"name":"钡矿石","tr":"钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2064":{"oreDict":["oreEndstoneLanthanum"],"name":"镧矿石","tr":"镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2065":{"oreDict":["oreEndstoneCerium"],"name":"铈矿石","tr":"铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2066":{"oreDict":["oreEndstonePraseodymium"],"name":"镨矿石","tr":"镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2067":{"oreDict":["oreEndstoneNeodymium"],"name":"钕矿石","tr":"钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2068":{"oreDict":["oreEndstonePromethium"],"name":"钷矿石","tr":"钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2069":{"oreDict":["oreEndstoneSamarium"],"name":"钐矿石","tr":"钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2070":{"oreDict":["oreEndstoneEuropium"],"name":"铕矿石","tr":"铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2071":{"oreDict":["oreEndstoneGadolinium"],"name":"钆矿石","tr":"钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2072":{"oreDict":["oreEndstoneTerbium"],"name":"铽矿石","tr":"铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2073":{"oreDict":["oreEndstoneDysprosium"],"name":"镝矿石","tr":"镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2074":{"oreDict":["oreEndstoneHolmium"],"name":"钬矿石","tr":"钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2075":{"oreDict":["oreEndstoneErbium"],"name":"铒矿石","tr":"铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2076":{"oreDict":["oreEndstoneThulium"],"name":"铥矿石","tr":"铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2077":{"oreDict":["oreEndstoneYtterbium"],"name":"镱矿石","tr":"镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2078":{"oreDict":["oreEndstoneLutetium"],"name":"镥矿石","tr":"镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2080":{"oreDict":["oreEndstoneTantalum"],"name":"钽矿石","tr":"钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2081":{"oreDict":["oreEndstoneTungsten"],"name":"钨矿石","tr":"钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2083":{"oreDict":["oreEndstoneOsmium"],"name":"锇矿石","tr":"锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2084":{"oreDict":["oreEndstoneIridium"],"name":"铱矿石","tr":"铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2085":{"oreDict":["oreEndstonePlatinum"],"name":"铂矿石","tr":"铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2086":{"oreDict":["oreEndstoneGold"],"name":"金矿石","tr":"金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2089":{"oreDict":["oreEndstoneLead"],"name":"铅矿石","tr":"铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2090":{"oreDict":["oreEndstoneBismuth"],"name":"铋矿石","tr":"铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2096":{"oreDict":["oreEndstoneThorium"],"name":"钍矿石","tr":"钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2097":{"oreDict":["oreEndstoneUranium235"],"name":"铀-235矿石","tr":"铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2098":{"oreDict":["oreEndstoneUranium"],"name":"铀-238矿石","tr":"铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2100":{"oreDict":["oreEndstonePlutonium"],"name":"钚-239矿石","tr":"钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2101":{"oreDict":["oreEndstonePlutonium241"],"name":"钚-241矿石","tr":"钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18485":{"name":"贫瘠神秘蓝金矿石","tr":"贫瘠神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2103":{"oreDict":["oreEndstoneAmericium"],"name":"镅矿石","tr":"镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18488":{"name":"贫瘠褐铜矿石","tr":"贫瘠褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18489":{"name":"贫瘠胶木矿石","tr":"贫瘠胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2110":{"oreDict":["oreEndstoneTengamRaw"],"name":"生镃矿石","tr":"生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18500":{"name":"贫瘠钻石矿石","tr":"贫瘠钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18501":{"name":"贫瘠绿宝石矿石","tr":"贫瘠绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18502":{"name":"贫瘠红宝石矿石","tr":"贫瘠红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18503":{"name":"贫瘠蓝宝石矿石","tr":"贫瘠蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18504":{"name":"贫瘠绿色蓝宝石矿石","tr":"贫瘠绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18505":{"name":"贫瘠橄榄石矿石","tr":"贫瘠橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18506":{"name":"贫瘠下界之星矿石","tr":"贫瘠下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18507":{"name":"贫瘠黄玉矿石","tr":"贫瘠黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18508":{"name":"贫瘠坦桑石矿石","tr":"贫瘠坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18509":{"name":"贫瘠紫水晶矿石","tr":"贫瘠紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18510":{"name":"贫瘠蛋白石矿石","tr":"贫瘠蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18511":{"name":"贫瘠碧玉矿石","tr":"贫瘠碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18512":{"name":"贫瘠尖晶石矿石","tr":"贫瘠尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2129":{"oreDict":["oreEndstoneNeutronium"],"name":"中子矿石","tr":"中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18513":{"name":"贫瘠蓝黄玉矿石","tr":"贫瘠蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18514":{"name":"贫瘠琥珀矿石","tr":"贫瘠琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18515":{"name":"贫瘠双锂矿石","tr":"贫瘠双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18516":{"name":"贫瘠赛特斯石英矿石","tr":"贫瘠赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18517":{"name":"贫瘠充能赛特斯石英矿石","tr":"贫瘠充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18518":{"name":"贫瘠力之宝石矿石","tr":"贫瘠力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18519":{"name":"贫瘠力场宝石矿石","tr":"贫瘠力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18520":{"name":"贫瘠独居石矿石","tr":"贫瘠独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18521":{"name":"贫瘠力量矿石","tr":"贫瘠力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18522":{"name":"贫瘠下界石英矿石","tr":"贫瘠下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18523":{"name":"贫瘠石英岩矿石","tr":"贫瘠石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18524":{"name":"贫瘠蓝金石矿石","tr":"贫瘠蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18525":{"name":"贫瘠方钠石矿石","tr":"贫瘠方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18526":{"name":"贫瘠青金石矿石","tr":"贫瘠青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18527":{"name":"贫瘠红石榴石矿石","tr":"贫瘠红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18528":{"name":"贫瘠黄石榴石矿石","tr":"贫瘠黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18529":{"name":"贫瘠温特姆矿石","tr":"贫瘠温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18530":{"name":"贫瘠磷灰石矿石","tr":"贫瘠磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18531":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18534":{"name":"贫瘠磷酸三钙矿石","tr":"贫瘠磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18535":{"name":"贫瘠煤矿石","tr":"贫瘠煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18537":{"name":"贫瘠玉矿石","tr":"贫瘠玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18538":{"name":"贫瘠褐煤矿石","tr":"贫瘠褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18540":{"name":"贫瘠风之蕴魔石","tr":"贫瘠风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18541":{"name":"贫瘠火之蕴魔石","tr":"贫瘠火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18542":{"name":"贫瘠地之蕴魔石","tr":"贫瘠地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18543":{"name":"贫瘠水之蕴魔石","tr":"贫瘠水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18544":{"name":"贫瘠混沌蕴魔石","tr":"贫瘠混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18545":{"name":"贫瘠秩序蕴魔石","tr":"贫瘠秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18548":{"name":"贫瘠焙烧铁矿石","tr":"贫瘠焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18549":{"name":"贫瘠焙烧镍矿石","tr":"贫瘠焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18607":{"name":"贫瘠烧绿石矿石","tr":"贫瘠烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2303":{"oreDict":["oreEndstoneElectrum"],"name":"琥珀金矿石","tr":"琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2307":{"oreDict":["oreEndstoneAnyIron"," oreEndstonePigIron"],"name":"生铁矿石","tr":"生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18699":{"name":"贫瘠冰晶石矿石","tr":"贫瘠冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2319":{"oreDict":["oreEndstoneAdamantium"],"name":"精金矿石","tr":"精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2320":{"oreDict":["oreEndstoneElectrumFlux"],"name":"通流琥珀金矿石","tr":"通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2323":{"oreDict":["oreEndstoneInfusedGold"],"name":"注魔金矿石","tr":"注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2324":{"oreDict":["oreEndstoneNaquadah"],"name":"硅岩矿石","tr":"硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2326":{"oreDict":["oreEndstoneNaquadahEnriched"],"name":"富集硅岩矿石","tr":"富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2327":{"oreDict":["oreEndstoneNaquadria"],"name":"超能硅岩矿石","tr":"超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2329":{"oreDict":["oreEndstoneTritanium"],"name":"三钛矿石","tr":"三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2331":{"oreDict":["oreEndstoneMithril"],"name":"秘银矿石","tr":"秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2336":{"oreDict":["oreEndstoneShadowIron"],"name":"暗影铁矿石","tr":"暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2340":{"oreDict":["oreEndstoneMeteoricIron"],"name":"陨铁矿石","tr":"陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2342":{"oreDict":["oreEndstoneDarkIron"],"name":"玄铁矿石","tr":"玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2347":{"oreDict":["oreEndstoneFirestone"],"name":"火石矿石","tr":"火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2368":{"oreDict":["oreEndstoneShadow"],"name":"暗影金属矿石","tr":"暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2375":{"oreDict":["oreEndstoneRutile"],"name":"金红石矿石","tr":"金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2382":{"oreDict":["oreEndstoneArdite"],"name":"阿迪特矿石","tr":"阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2386":{"oreDict":["oreEndstoneManyullyn"],"name":"玛玉灵矿石","tr":"玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18770":{"name":"贫瘠终末矿石","tr":"贫瘠终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2387":{"oreDict":["oreEndstoneMytryl"],"name":"深空秘银矿石","tr":"深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2388":{"oreDict":["oreEndstoneBlackPlutonium"],"name":"黑钚矿石","tr":"黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2389":{"oreDict":["oreEndstoneCallistoIce"],"name":"木卫四冰矿石","tr":"木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2390":{"oreDict":["oreEndstoneLedox"],"name":"深铅矿石","tr":"深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2391":{"oreDict":["oreEndstoneQuantium"],"name":"量子矿石","tr":"量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2392":{"oreDict":["oreEndstoneDuralumin"],"name":"硬铝矿石","tr":"硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2393":{"oreDict":["oreEndstoneOriharukon"],"name":"奥利哈钢矿石","tr":"奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2394":{"oreDict":["oreEndstoneInfinityCatalyst"],"name":"无尽催化剂矿石","tr":"无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2395":{"oreDict":["oreEndstoneBedrockium"],"name":"基岩矿石","tr":"基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2398":{"oreDict":["oreEndstoneMysteriousCrystal"],"name":"神秘水晶矿石","tr":"神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18797":{"name":"贫瘠氢化钙矿石","tr":"贫瘠氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18810":{"name":"贫瘠红石矿石","tr":"贫瘠红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18812":{"name":"贫瘠蓝石矿石","tr":"贫瘠蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18817":{"name":"贫瘠盐矿石","tr":"贫瘠盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18820":{"name":"贫瘠铁铝榴石矿石","tr":"贫瘠铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18821":{"name":"贫瘠钙铁榴石矿石","tr":"贫瘠钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18822":{"name":"贫瘠铝土矿矿石","tr":"贫瘠铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18823":{"name":"贫瘠方解石矿石","tr":"贫瘠方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18824":{"name":"贫瘠锡石矿石","tr":"贫瘠锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18825":{"name":"贫瘠铬铁矿矿石","tr":"贫瘠铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18826":{"name":"贫瘠朱砂矿石","tr":"贫瘠朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18827":{"name":"贫瘠辉钴矿矿石","tr":"贫瘠辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18828":{"name":"贫瘠硫铂矿矿石","tr":"贫瘠硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18829":{"name":"贫瘠深渊铁矿石","tr":"贫瘠深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18830":{"name":"贫瘠方铅矿矿石","tr":"贫瘠方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18831":{"name":"贫瘠钙铝榴石矿石","tr":"贫瘠钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18833":{"name":"贫瘠磷酸盐矿石","tr":"贫瘠磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18834":{"name":"贫瘠黄铁矿矿石","tr":"贫瘠黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18835":{"name":"贫瘠镁铝榴石矿石","tr":"贫瘠镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18836":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18838":{"name":"贫瘠锰铝榴石矿石","tr":"贫瘠锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18839":{"name":"贫瘠闪锌矿矿石","tr":"贫瘠闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18840":{"name":"贫瘠黝铜矿矿石","tr":"贫瘠黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18841":{"name":"贫瘠钨酸锂矿石","tr":"贫瘠钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18842":{"name":"贫瘠钙铬榴石矿石","tr":"贫瘠钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18855":{"name":"贫瘠黄铜矿矿石","tr":"贫瘠黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18856":{"name":"贫瘠太阳能级硅(多晶硅)矿石","tr":"贫瘠太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18861":{"name":"贫瘠金刚砂矿石","tr":"贫瘠金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18865":{"name":"贫瘠石墨矿石","tr":"贫瘠石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18868":{"name":"贫瘠三元金属矿石","tr":"贫瘠三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2485":{"oreDict":["oreEndstoneAlduorite"],"name":"神秘蓝金矿石","tr":"神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18870":{"name":"贫瘠磁铁矿矿石","tr":"贫瘠磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18871":{"name":"贫瘠孔雀石矿石","tr":"贫瘠孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2488":{"oreDict":["oreEndstoneRubracium"],"name":"褐铜矿石","tr":"褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2489":{"oreDict":["oreEndstoneVulcanite"],"name":"胶木矿石","tr":"胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18873":{"name":"贫瘠沥青铀矿","tr":"贫瘠沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18877":{"name":"贫瘠皂石矿石","tr":"贫瘠皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18878":{"name":"贫瘠油砂矿石","tr":"贫瘠油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18882":{"name":"贫瘠钼铅矿矿石","tr":"贫瘠钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18883":{"name":"贫瘠钼钙矿矿石","tr":"贫瘠钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2500":{"oreDict":["oreEndstoneDiamond"],"name":"钻石矿石","tr":"钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18884":{"name":"贫瘠戴斯矿石","tr":"贫瘠戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2501":{"oreDict":["oreEndstoneEmerald"],"name":"绿宝石矿石","tr":"绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2502":{"oreDict":["oreEndstoneRuby"],"name":"红宝石矿石","tr":"红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2503":{"oreDict":["oreEndstoneSapphire"],"name":"蓝宝石矿石","tr":"蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2504":{"oreDict":["oreEndstoneGreenSapphire"],"name":"绿色蓝宝石矿石","tr":"绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2505":{"oreDict":["oreEndstoneOlivine"],"name":"橄榄石矿石","tr":"橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2506":{"oreDict":["oreEndstoneNetherStar"],"name":"下界之星矿石","tr":"下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2507":{"oreDict":["oreEndstoneTopaz"],"name":"黄玉矿石","tr":"黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2508":{"oreDict":["oreEndstoneTanzanite"],"name":"坦桑石矿石","tr":"坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2509":{"oreDict":["oreEndstoneAmethyst"],"name":"紫水晶矿石","tr":"紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2510":{"oreDict":["oreEndstoneOpal"],"name":"蛋白石矿石","tr":"蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18894":{"name":"贫瘠奶酪矿石","tr":"贫瘠奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2511":{"oreDict":["oreEndstoneJasper"],"name":"碧玉矿石","tr":"碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2512":{"oreDict":["oreEndstoneFoolsRuby"],"name":"尖晶石矿石","tr":"尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2513":{"oreDict":["oreEndstoneBlueTopaz"],"name":"蓝黄玉矿石","tr":"蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2514":{"oreDict":["oreEndstoneAmber"],"name":"琥珀矿石","tr":"琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2515":{"oreDict":["oreEndstoneDilithium"],"name":"双锂矿石","tr":"双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2516":{"oreDict":["oreEndstoneCertusQuartz"],"name":"赛特斯石英矿石","tr":"赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18900":{"name":"贫瘠芒硝矿石","tr":"贫瘠芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2517":{"oreDict":["oreEndstoneChargedCertusQuartz"],"name":"充能赛特斯石英矿石","tr":"充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18901":{"name":"贫瘠云母矿石","tr":"贫瘠云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2518":{"oreDict":["oreEndstoneForcicium"],"name":"力之宝石矿石","tr":"力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18902":{"name":"贫瘠滑石","tr":"贫瘠滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2519":{"oreDict":["oreEndstoneForcillium"],"name":"力场宝石矿石","tr":"力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18903":{"name":"贫瘠天然碱矿石","tr":"贫瘠天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2520":{"oreDict":["oreEndstoneMonazite"],"name":"独居石矿石","tr":"独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18904":{"name":"贫瘠重晶石矿石","tr":"贫瘠重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2521":{"oreDict":["oreEndstoneForce"],"name":"力量矿石","tr":"力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18905":{"name":"贫瘠氟碳镧铈矿矿石","tr":"贫瘠氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2522":{"oreDict":["oreEndstoneNetherQuartz"],"name":"下界石英矿石","tr":"下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18906":{"name":"贫瘠硅镁镍矿矿石","tr":"贫瘠硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2523":{"oreDict":["oreEndstoneQuartzite"],"name":"石英岩矿石","tr":"石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18907":{"name":"贫瘠锂云母矿石","tr":"贫瘠锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2524":{"oreDict":["oreEndstoneLazurite"],"name":"蓝金石矿石","tr":"蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18908":{"name":"贫瘠菱镁矿矿石","tr":"贫瘠菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2525":{"oreDict":["oreEndstoneSodalite"],"name":"方钠石矿石","tr":"方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18909":{"name":"贫瘠镍黄铁矿矿石","tr":"贫瘠镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2526":{"oreDict":["oreEndstoneLapis"],"name":"青金石矿石","tr":"青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18910":{"name":"贫瘠白钨矿矿石","tr":"贫瘠白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2527":{"oreDict":["oreEndstoneGarnetRed"],"name":"红石榴石矿石","tr":"红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18911":{"name":"贫瘠明矾石矿石","tr":"贫瘠明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2528":{"oreDict":["oreEndstoneGarnetYellow"],"name":"黄石榴石矿石","tr":"黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18912":{"name":"贫瘠白石棉矿石","tr":"贫瘠白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2529":{"oreDict":["oreEndstoneVinteum"],"name":"温特姆矿石","tr":"温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18913":{"name":"贫瘠雄黄矿石","tr":"贫瘠雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2530":{"oreDict":["oreEndstoneApatite"],"name":"磷灰石矿石","tr":"磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18914":{"name":"贫瘠白云石矿石","tr":"贫瘠白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2531":{"oreDict":["oreEndstoneNiter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18915":{"name":"贫瘠硅灰石矿石","tr":"贫瘠硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18916":{"name":"贫瘠沸石矿石","tr":"贫瘠沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18917":{"name":"贫瘠带状铁矿矿石","tr":"贫瘠带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2534":{"oreDict":["oreEndstoneTricalciumPhosphate"],"name":"磷酸三钙矿石","tr":"磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18918":{"name":"贫瘠钛铁矿矿石","tr":"贫瘠钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2535":{"oreDict":["oreEndstoneCoal"],"name":"煤矿石","tr":"煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18919":{"name":"贫瘠铯榴石矿石","tr":"贫瘠铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18920":{"name":"贫瘠锂辉石矿石","tr":"贫瘠锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2537":{"oreDict":["oreEndstoneJade"],"name":"玉矿石","tr":"玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18921":{"name":"贫瘠钽铁矿矿石","tr":"贫瘠钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2538":{"oreDict":["oreEndstoneLignite"],"name":"褐煤矿石","tr":"褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18922":{"name":"贫瘠晶质铀矿矿石","tr":"贫瘠晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18923":{"name":"贫瘠钒磁铁矿矿石","tr":"贫瘠钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2540":{"oreDict":["oreEndstoneInfusedAir"],"name":"风之蕴魔石","tr":"风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18924":{"name":"贫瘠蓝晶石矿石","tr":"贫瘠蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2541":{"oreDict":["oreEndstoneInfusedFire"],"name":"火之蕴魔石","tr":"火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18925":{"name":"贫瘠珍珠岩矿石","tr":"贫瘠珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2542":{"oreDict":["oreEndstoneInfusedEarth"],"name":"地之蕴魔石","tr":"地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18926":{"name":"贫瘠浮岩矿石","tr":"贫瘠浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2543":{"oreDict":["oreEndstoneInfusedWater"],"name":"水之蕴魔石","tr":"水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18927":{"name":"贫瘠膨润土","tr":"贫瘠膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2544":{"oreDict":["oreEndstoneInfusedEntropy"],"name":"混沌蕴魔石","tr":"混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18928":{"name":"贫瘠漂白土","tr":"贫瘠漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2545":{"oreDict":["oreEndstoneInfusedOrder"],"name":"秩序蕴魔石","tr":"秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18929":{"name":"贫瘠高岭石","tr":"贫瘠高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18930":{"name":"贫瘠棕褐铁矿矿石","tr":"贫瘠棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18931":{"name":"贫瘠黄褐铁矿矿石","tr":"贫瘠黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2548":{"oreDict":["oreEndstoneRoastedIron"],"name":"焙烧铁矿石","tr":"焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18932":{"name":"贫瘠蛭石","tr":"贫瘠蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2549":{"oreDict":["oreEndstoneRoastedNickel"],"name":"焙烧镍矿石","tr":"焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18933":{"name":"贫瘠海绿石矿石","tr":"贫瘠海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18934":{"name":"贫瘠石膏矿石","tr":"贫瘠石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18935":{"name":"贫瘠玄武岩矿砂","tr":"贫瘠玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18936":{"name":"贫瘠花岗岩矿砂","tr":"贫瘠花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18937":{"name":"贫瘠锡石矿砂","tr":"贫瘠锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18938":{"name":"贫瘠石榴石矿砂","tr":"贫瘠石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18939":{"name":"贫瘠石英矿砂","tr":"贫瘠石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18941":{"name":"贫瘠硼砂矿石","tr":"贫瘠硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18942":{"name":"贫瘠辉钼矿矿石","tr":"贫瘠辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18943":{"name":"贫瘠软锰矿矿石","tr":"贫瘠软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18944":{"name":"贫瘠岩盐矿石","tr":"贫瘠岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18945":{"name":"贫瘠辉锑矿矿石","tr":"贫瘠辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18946":{"name":"贫瘠石棉矿石","tr":"贫瘠石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18948":{"name":"贫瘠硅藻土矿石","tr":"贫瘠硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18949":{"name":"贫瘠海绿石矿砂","tr":"贫瘠海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18951":{"name":"贫瘠幽冥剧毒结晶矿石","tr":"贫瘠幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18952":{"name":"贫瘠暗影秘银矿石","tr":"贫瘠暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18956":{"name":"贫瘠溶火之石矿石","tr":"贫瘠溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18966":{"name":"贫瘠山铜矿石","tr":"贫瘠山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18969":{"name":"贫瘠氟化铝矿石","tr":"贫瘠氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18971":{"name":"贫瘠二硅化钙矿石","tr":"贫瘠二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18975":{"name":"贫瘠龙矿石","tr":"贫瘠龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18976":{"name":"贫瘠觉醒龙矿石","tr":"贫瘠觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18978":{"name":"贫瘠灵宝矿石","tr":"贫瘠灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18982":{"name":"贫瘠宇宙中子态素矿石","tr":"贫瘠宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"18984":{"name":"贫瘠矿石","tr":"贫瘠矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2607":{"oreDict":["oreEndstonePyrochlore"],"name":"烧绿石矿石","tr":"烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19006":{"name":"贫瘠锂矿石","tr":"贫瘠锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19008":{"name":"贫瘠铍矿石","tr":"贫瘠铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19018":{"name":"贫瘠镁矿石","tr":"贫瘠镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19019":{"name":"贫瘠铝矿石","tr":"贫瘠铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19020":{"name":"贫瘠硅矿石","tr":"贫瘠硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19022":{"name":"贫瘠硫矿石","tr":"贫瘠硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19027":{"name":"贫瘠钪矿石","tr":"贫瘠钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19028":{"name":"贫瘠钛矿石","tr":"贫瘠钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19029":{"name":"贫瘠钒矿石","tr":"贫瘠钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19030":{"name":"贫瘠铬矿石","tr":"贫瘠铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19031":{"name":"贫瘠锰矿石","tr":"贫瘠锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19032":{"name":"贫瘠铁矿石","tr":"贫瘠铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19033":{"name":"贫瘠钴矿石","tr":"贫瘠钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19034":{"name":"贫瘠镍矿石","tr":"贫瘠镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19035":{"name":"贫瘠铜矿石","tr":"贫瘠铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19036":{"name":"贫瘠锌矿石","tr":"贫瘠锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19037":{"name":"贫瘠镓矿石","tr":"贫瘠镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19039":{"name":"贫瘠砷矿石","tr":"贫瘠砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19043":{"name":"贫瘠铷矿石","tr":"贫瘠铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19044":{"name":"贫瘠锶矿石","tr":"贫瘠锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19045":{"name":"贫瘠钇矿石","tr":"贫瘠钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19047":{"name":"贫瘠铌矿石","tr":"贫瘠铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19048":{"name":"贫瘠钼矿石","tr":"贫瘠钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19052":{"name":"贫瘠钯矿石","tr":"贫瘠钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19054":{"name":"贫瘠银矿石","tr":"贫瘠银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19055":{"name":"贫瘠镉矿石","tr":"贫瘠镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19056":{"name":"贫瘠铟矿石","tr":"贫瘠铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19057":{"name":"贫瘠锡矿石","tr":"贫瘠锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19058":{"name":"贫瘠锑矿石","tr":"贫瘠锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19059":{"name":"贫瘠碲矿石","tr":"贫瘠碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19062":{"name":"贫瘠铯矿石","tr":"贫瘠铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19063":{"name":"贫瘠钡矿石","tr":"贫瘠钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19064":{"name":"贫瘠镧矿石","tr":"贫瘠镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19065":{"name":"贫瘠铈矿石","tr":"贫瘠铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19066":{"name":"贫瘠镨矿石","tr":"贫瘠镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19067":{"name":"贫瘠钕矿石","tr":"贫瘠钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19068":{"name":"贫瘠钷矿石","tr":"贫瘠钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19069":{"name":"贫瘠钐矿石","tr":"贫瘠钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19070":{"name":"贫瘠铕矿石","tr":"贫瘠铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19071":{"name":"贫瘠钆矿石","tr":"贫瘠钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19072":{"name":"贫瘠铽矿石","tr":"贫瘠铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19073":{"name":"贫瘠镝矿石","tr":"贫瘠镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19074":{"name":"贫瘠钬矿石","tr":"贫瘠钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19075":{"name":"贫瘠铒矿石","tr":"贫瘠铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19076":{"name":"贫瘠铥矿石","tr":"贫瘠铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19077":{"name":"贫瘠镱矿石","tr":"贫瘠镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19078":{"name":"贫瘠镥矿石","tr":"贫瘠镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19080":{"name":"贫瘠钽矿石","tr":"贫瘠钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19081":{"name":"贫瘠钨矿石","tr":"贫瘠钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19083":{"name":"贫瘠锇矿石","tr":"贫瘠锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2699":{"oreDict":["oreEndstoneCryolite"],"name":"冰晶石矿石","tr":"冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19084":{"name":"贫瘠铱矿石","tr":"贫瘠铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19085":{"name":"贫瘠铂矿石","tr":"贫瘠铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19086":{"name":"贫瘠金矿石","tr":"贫瘠金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19089":{"name":"贫瘠铅矿石","tr":"贫瘠铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19090":{"name":"贫瘠铋矿石","tr":"贫瘠铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19096":{"name":"贫瘠钍矿石","tr":"贫瘠钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19097":{"name":"贫瘠铀-235矿石","tr":"贫瘠铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19098":{"name":"贫瘠铀-238矿石","tr":"贫瘠铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19100":{"name":"贫瘠钚-239矿石","tr":"贫瘠钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19101":{"name":"贫瘠钚-241矿石","tr":"贫瘠钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19103":{"name":"贫瘠镅矿石","tr":"贫瘠镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19110":{"name":"贫瘠生镃矿石","tr":"贫瘠生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19129":{"name":"贫瘠中子矿石","tr":"贫瘠中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2770":{"oreDict":["oreEndstoneHeeEndium"],"name":"终末矿石","tr":"终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2797":{"oreDict":["oreEndstoneCalciumHydride"],"name":"氢化钙矿石","tr":"氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2810":{"oreDict":["oreEndstoneRedstone"],"name":"红石矿石","tr":"红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2812":{"oreDict":["oreEndstoneElectrotine"],"name":"蓝石矿石","tr":"蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2817":{"oreDict":["oreEndstoneSalt"],"name":"盐矿石","tr":"盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2820":{"oreDict":["oreEndstoneAlmandine"],"name":"铁铝榴石矿石","tr":"铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2821":{"oreDict":["oreEndstoneAndradite"],"name":"钙铁榴石矿石","tr":"钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2822":{"oreDict":["oreEndstoneBauxite"],"name":"铝土矿矿石","tr":"铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2823":{"oreDict":["oreEndstoneCalcite"],"name":"方解石矿石","tr":"方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2824":{"oreDict":["oreEndstoneCassiterite"],"name":"锡石矿石","tr":"锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2825":{"oreDict":["oreEndstoneChromite"],"name":"铬铁矿矿石","tr":"铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2826":{"oreDict":["oreEndstoneCinnabar"],"name":"朱砂矿石","tr":"朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2827":{"oreDict":["oreEndstoneCobaltite"],"name":"辉钴矿矿石","tr":"辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2828":{"oreDict":["oreEndstoneCooperite"],"name":"硫铂矿矿石","tr":"硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2829":{"oreDict":["oreEndstoneDeepIron"],"name":"深渊铁矿石","tr":"深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2830":{"oreDict":["oreEndstoneGalena"],"name":"方铅矿矿石","tr":"方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2831":{"oreDict":["oreEndstoneGrossular"],"name":"钙铝榴石矿石","tr":"钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2833":{"oreDict":["oreEndstonePhosphate"],"name":"磷酸盐矿石","tr":"磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2834":{"oreDict":["oreEndstonePyrite"],"name":"黄铁矿矿石","tr":"黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2835":{"oreDict":["oreEndstonePyrope"],"name":"镁铝榴石矿石","tr":"镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2836":{"oreDict":["oreEndstoneSaltpeter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2838":{"oreDict":["oreEndstoneSpessartine"],"name":"锰铝榴石矿石","tr":"锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2839":{"oreDict":["oreEndstoneSphalerite"],"name":"闪锌矿矿石","tr":"闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2840":{"oreDict":["oreEndstoneTetrahedrite"],"name":"黝铜矿矿石","tr":"黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2841":{"oreDict":["oreEndstoneTungstate"],"name":"钨酸锂矿石","tr":"钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2842":{"oreDict":["oreEndstoneUvarovite"],"name":"钙铬榴石矿石","tr":"钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2855":{"oreDict":["oreEndstoneChalcopyrite"],"name":"黄铜矿矿石","tr":"黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2856":{"oreDict":["oreEndstoneSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)矿石","tr":"太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2861":{"oreDict":["oreEndstoneEmery"],"name":"金刚砂矿石","tr":"金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2865":{"oreDict":["oreEndstoneGraphite"],"name":"石墨矿石","tr":"石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2868":{"oreDict":["oreEndstoneTrinium"],"name":"三元金属矿石","tr":"三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2870":{"oreDict":["oreEndstoneMagnetite"],"name":"磁铁矿矿石","tr":"磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2871":{"oreDict":["oreEndstoneMalachite"],"name":"孔雀石矿石","tr":"孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2873":{"oreDict":["oreEndstonePitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2877":{"oreDict":["oreEndstoneSoapstone"],"name":"皂石矿石","tr":"皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2878":{"oreDict":["oreEndstoneOilsands"],"name":"油砂矿石","tr":"油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2882":{"oreDict":["oreEndstoneWulfenite"],"name":"钼铅矿矿石","tr":"钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2883":{"oreDict":["oreEndstonePowellite"],"name":"钼钙矿矿石","tr":"钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2884":{"oreDict":["oreEndstoneDesh"],"name":"戴斯矿石","tr":"戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2894":{"oreDict":["oreEndstoneCheese"],"name":"奶酪矿石","tr":"奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2900":{"oreDict":["oreEndstoneMirabilite"],"name":"芒硝矿石","tr":"芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2901":{"oreDict":["oreEndstoneMica"],"name":"云母矿石","tr":"云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2902":{"oreDict":["oreEndstoneTalc"],"name":"滑石","tr":"滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2903":{"oreDict":["oreEndstoneTrona"],"name":"天然碱矿石","tr":"天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2904":{"oreDict":["oreEndstoneBarite"],"name":"重晶石矿石","tr":"重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2905":{"oreDict":["oreEndstoneBastnasite"],"name":"氟碳镧铈矿矿石","tr":"氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2906":{"oreDict":["oreEndstoneGarnierite"],"name":"硅镁镍矿矿石","tr":"硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2907":{"oreDict":["oreEndstoneLepidolite"],"name":"锂云母矿石","tr":"锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2908":{"oreDict":["oreEndstoneMagnesite"],"name":"菱镁矿矿石","tr":"菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2909":{"oreDict":["oreEndstonePentlandite"],"name":"镍黄铁矿矿石","tr":"镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2910":{"oreDict":["oreEndstoneScheelite"],"name":"白钨矿矿石","tr":"白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2911":{"oreDict":["oreEndstoneAlunite"],"name":"明矾石矿石","tr":"明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2912":{"oreDict":["oreEndstoneChrysotile"],"name":"白石棉矿石","tr":"白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2913":{"oreDict":["oreEndstoneRealgar"],"name":"雄黄矿石","tr":"雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2914":{"oreDict":["oreEndstoneDolomite"],"name":"白云石矿石","tr":"白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2915":{"oreDict":["oreEndstoneWollastonite"],"name":"硅灰石矿石","tr":"硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2916":{"oreDict":["oreEndstoneZeolite"],"name":"沸石矿石","tr":"沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2917":{"oreDict":["oreEndstoneBandedIron"],"name":"带状铁矿矿石","tr":"带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2918":{"oreDict":["oreEndstoneIlmenite"],"name":"钛铁矿矿石","tr":"钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19303":{"name":"贫瘠琥珀金矿石","tr":"贫瘠琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2919":{"oreDict":["oreEndstonePollucite"],"name":"铯榴石矿石","tr":"铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2920":{"oreDict":["oreEndstoneSpodumene"],"name":"锂辉石矿石","tr":"锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2921":{"oreDict":["oreEndstoneTantalite"],"name":"钽铁矿矿石","tr":"钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2922":{"oreDict":["oreEndstoneUraninite"],"name":"晶质铀矿矿石","tr":"晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19307":{"name":"贫瘠生铁矿石","tr":"贫瘠生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2923":{"oreDict":["oreEndstoneVanadiumMagnetite"],"name":"钒磁铁矿矿石","tr":"钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2924":{"oreDict":["oreEndstoneKyanite"],"name":"蓝晶石矿石","tr":"蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2925":{"oreDict":["oreEndstonePerlite"],"name":"珍珠岩矿石","tr":"珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2926":{"oreDict":["oreEndstonePumice"],"name":"浮岩矿石","tr":"浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2927":{"oreDict":["oreEndstoneBentonite"],"name":"膨润土","tr":"膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2928":{"oreDict":["oreEndstoneFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2929":{"oreDict":["oreEndstoneKaolinite"],"name":"高岭石","tr":"高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2930":{"oreDict":["oreEndstoneBrownLimonite"],"name":"棕褐铁矿矿石","tr":"棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2931":{"oreDict":["oreEndstoneYellowLimonite"],"name":"黄褐铁矿矿石","tr":"黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2932":{"oreDict":["oreEndstoneVermiculite"],"name":"蛭石","tr":"蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2933":{"oreDict":["oreEndstoneGlauconite"],"name":"海绿石矿石","tr":"海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2934":{"oreDict":["oreEndstoneGypsum"],"name":"石膏矿石","tr":"石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19319":{"name":"贫瘠精金矿石","tr":"贫瘠精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2935":{"oreDict":["oreEndstoneBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19320":{"name":"贫瘠通流琥珀金矿石","tr":"贫瘠通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2936":{"oreDict":["oreEndstoneGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2937":{"oreDict":["oreEndstoneCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2938":{"oreDict":["oreEndstoneGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19323":{"name":"贫瘠注魔金矿石","tr":"贫瘠注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2939":{"oreDict":["oreEndstoneQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19324":{"name":"贫瘠硅岩矿石","tr":"贫瘠硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2941":{"oreDict":["oreEndstoneBorax"],"name":"硼砂矿石","tr":"硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19326":{"name":"贫瘠富集硅岩矿石","tr":"贫瘠富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2942":{"oreDict":["oreEndstoneMolybdenite"],"name":"辉钼矿矿石","tr":"辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19327":{"name":"贫瘠超能硅岩矿石","tr":"贫瘠超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2943":{"oreDict":["oreEndstonePyrolusite"],"name":"软锰矿矿石","tr":"软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2944":{"oreDict":["oreEndstoneRockSalt"],"name":"岩盐矿石","tr":"岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19329":{"name":"贫瘠三钛矿石","tr":"贫瘠三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2945":{"oreDict":["oreEndstoneStibnite"],"name":"辉锑矿矿石","tr":"辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2946":{"oreDict":["oreEndstoneAsbestos"],"name":"石棉矿石","tr":"石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19331":{"name":"贫瘠秘银矿石","tr":"贫瘠秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2948":{"oreDict":["oreEndstoneDiatomite"],"name":"硅藻土矿石","tr":"硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2949":{"oreDict":["oreEndstoneGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2951":{"oreDict":["oreEndstoneVyroxeres"],"name":"幽冥剧毒结晶矿石","tr":"幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19336":{"name":"贫瘠暗影铁矿石","tr":"贫瘠暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2952":{"oreDict":["oreEndstoneCeruclase"],"name":"暗影秘银矿石","tr":"暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19340":{"name":"贫瘠陨铁矿石","tr":"贫瘠陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2956":{"oreDict":["oreEndstoneTartarite"],"name":"溶火之石矿石","tr":"溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19342":{"name":"贫瘠玄铁矿石","tr":"贫瘠玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19347":{"name":"贫瘠火石矿石","tr":"贫瘠火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2966":{"oreDict":["oreEndstoneOrichalcum"],"name":"山铜矿石","tr":"山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2969":{"oreDict":["oreEndstoneAluminiumfluoride"],"name":"氟化铝矿石","tr":"氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2971":{"oreDict":["oreEndstoneCalciumDisilicide"],"name":"二硅化钙矿石","tr":"二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2975":{"oreDict":["oreEndstoneDraconium"],"name":"龙矿石","tr":"龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2976":{"oreDict":["oreEndstoneDraconiumAwakened"],"name":"觉醒龙矿石","tr":"觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2978":{"oreDict":["oreEndstoneIchorium"],"name":"灵宝矿石","tr":"灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2982":{"oreDict":["oreEndstoneCosmicNeutronium"],"name":"宇宙中子态素矿石","tr":"宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19368":{"name":"贫瘠暗影金属矿石","tr":"贫瘠暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"2984":{"oreDict":["oreEndstoneFlerovium_GT5U"],"name":"矿石","tr":"矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19375":{"name":"贫瘠金红石矿石","tr":"贫瘠金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19382":{"name":"贫瘠阿迪特矿石","tr":"贫瘠阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19386":{"name":"贫瘠玛玉灵矿石","tr":"贫瘠玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19387":{"name":"贫瘠深空秘银矿石","tr":"贫瘠深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19388":{"name":"贫瘠黑钚矿石","tr":"贫瘠黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19389":{"name":"贫瘠木卫四冰矿石","tr":"贫瘠木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3006":{"oreDict":["oreBlackgraniteLithium"],"name":"锂矿石","tr":"锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19390":{"name":"贫瘠深铅矿石","tr":"贫瘠深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19391":{"name":"贫瘠量子矿石","tr":"贫瘠量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3008":{"oreDict":["oreBlackgraniteBeryllium"],"name":"铍矿石","tr":"铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19392":{"name":"贫瘠硬铝矿石","tr":"贫瘠硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19393":{"name":"贫瘠奥利哈钢矿石","tr":"贫瘠奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19394":{"name":"贫瘠无尽催化剂矿石","tr":"贫瘠无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19395":{"name":"贫瘠基岩矿石","tr":"贫瘠基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19398":{"name":"贫瘠神秘水晶矿石","tr":"贫瘠神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3018":{"oreDict":["oreBlackgraniteMagnesium"],"name":"镁矿石","tr":"镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3019":{"oreDict":["oreBlackgraniteAluminium"],"name":"铝矿石","tr":"铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3020":{"oreDict":["oreBlackgraniteSilicon"],"name":"硅矿石","tr":"硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3022":{"oreDict":["oreBlackgraniteSulfur"],"name":"硫矿石","tr":"硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3027":{"oreDict":["oreBlackgraniteScandium"],"name":"钪矿石","tr":"钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3028":{"oreDict":["oreBlackgraniteTitanium"],"name":"钛矿石","tr":"钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3029":{"oreDict":["oreBlackgraniteVanadium"],"name":"钒矿石","tr":"钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3030":{"oreDict":["oreBlackgraniteChrome"],"name":"铬矿石","tr":"铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3031":{"oreDict":["oreBlackgraniteManganese"],"name":"锰矿石","tr":"锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3032":{"oreDict":["oreBlackgraniteIron"," oreBlackgraniteAnyIron"],"name":"铁矿石","tr":"铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3033":{"oreDict":["oreBlackgraniteCobalt"],"name":"钴矿石","tr":"钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3034":{"oreDict":["oreBlackgraniteNickel"],"name":"镍矿石","tr":"镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3035":{"oreDict":["oreBlackgraniteCopper"," oreBlackgraniteAnyCopper"],"name":"铜矿石","tr":"铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3036":{"oreDict":["oreBlackgraniteZinc"],"name":"锌矿石","tr":"锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3037":{"oreDict":["oreBlackgraniteGallium"],"name":"镓矿石","tr":"镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3039":{"oreDict":["oreBlackgraniteArsenic"],"name":"砷矿石","tr":"砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3043":{"oreDict":["oreBlackgraniteRubidium"],"name":"铷矿石","tr":"铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3044":{"oreDict":["oreBlackgraniteStrontium"],"name":"锶矿石","tr":"锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3045":{"oreDict":["oreBlackgraniteYttrium"],"name":"钇矿石","tr":"钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3047":{"oreDict":["oreBlackgraniteNiobium"],"name":"铌矿石","tr":"铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3048":{"oreDict":["oreBlackgraniteMolybdenum"],"name":"钼矿石","tr":"钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3052":{"oreDict":["oreBlackgranitePalladium"],"name":"钯矿石","tr":"钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3054":{"oreDict":["oreBlackgraniteSilver"],"name":"银矿石","tr":"银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3055":{"oreDict":["oreBlackgraniteCadmium"],"name":"镉矿石","tr":"镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3056":{"oreDict":["oreBlackgraniteIndium"],"name":"铟矿石","tr":"铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3057":{"oreDict":["oreBlackgraniteTin"],"name":"锡矿石","tr":"锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3058":{"oreDict":["oreBlackgraniteAntimony"],"name":"锑矿石","tr":"锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3059":{"oreDict":["oreBlackgraniteTellurium"],"name":"碲矿石","tr":"碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3062":{"oreDict":["oreBlackgraniteCaesium"],"name":"铯矿石","tr":"铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3063":{"oreDict":["oreBlackgraniteBarium"],"name":"钡矿石","tr":"钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3064":{"oreDict":["oreBlackgraniteLanthanum"],"name":"镧矿石","tr":"镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3065":{"oreDict":["oreBlackgraniteCerium"],"name":"铈矿石","tr":"铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3066":{"oreDict":["oreBlackgranitePraseodymium"],"name":"镨矿石","tr":"镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3067":{"oreDict":["oreBlackgraniteNeodymium"],"name":"钕矿石","tr":"钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3068":{"oreDict":["oreBlackgranitePromethium"],"name":"钷矿石","tr":"钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3069":{"oreDict":["oreBlackgraniteSamarium"],"name":"钐矿石","tr":"钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3070":{"oreDict":["oreBlackgraniteEuropium"],"name":"铕矿石","tr":"铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3071":{"oreDict":["oreBlackgraniteGadolinium"],"name":"钆矿石","tr":"钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3072":{"oreDict":["oreBlackgraniteTerbium"],"name":"铽矿石","tr":"铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3073":{"oreDict":["oreBlackgraniteDysprosium"],"name":"镝矿石","tr":"镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3074":{"oreDict":["oreBlackgraniteHolmium"],"name":"钬矿石","tr":"钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3075":{"oreDict":["oreBlackgraniteErbium"],"name":"铒矿石","tr":"铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3076":{"oreDict":["oreBlackgraniteThulium"],"name":"铥矿石","tr":"铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3077":{"oreDict":["oreBlackgraniteYtterbium"],"name":"镱矿石","tr":"镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3078":{"oreDict":["oreBlackgraniteLutetium"],"name":"镥矿石","tr":"镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3080":{"oreDict":["oreBlackgraniteTantalum"],"name":"钽矿石","tr":"钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3081":{"oreDict":["oreBlackgraniteTungsten"],"name":"钨矿石","tr":"钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3083":{"oreDict":["oreBlackgraniteOsmium"],"name":"锇矿石","tr":"锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3084":{"oreDict":["oreBlackgraniteIridium"],"name":"铱矿石","tr":"铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3085":{"oreDict":["oreBlackgranitePlatinum"],"name":"铂矿石","tr":"铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3086":{"oreDict":["oreBlackgraniteGold"],"name":"金矿石","tr":"金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3089":{"oreDict":["oreBlackgraniteLead"],"name":"铅矿石","tr":"铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3090":{"oreDict":["oreBlackgraniteBismuth"],"name":"铋矿石","tr":"铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3096":{"oreDict":["oreBlackgraniteThorium"],"name":"钍矿石","tr":"钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3097":{"oreDict":["oreBlackgraniteUranium235"],"name":"铀-235矿石","tr":"铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3098":{"oreDict":["oreBlackgraniteUranium"],"name":"铀-238矿石","tr":"铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3100":{"oreDict":["oreBlackgranitePlutonium"],"name":"钚-239矿石","tr":"钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3101":{"oreDict":["oreBlackgranitePlutonium241"],"name":"钚-241矿石","tr":"钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19485":{"name":"贫瘠神秘蓝金矿石","tr":"贫瘠神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3103":{"oreDict":["oreBlackgraniteAmericium"],"name":"镅矿石","tr":"镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19488":{"name":"贫瘠褐铜矿石","tr":"贫瘠褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19489":{"name":"贫瘠胶木矿石","tr":"贫瘠胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3110":{"oreDict":["oreBlackgraniteTengamRaw"],"name":"生镃矿石","tr":"生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19500":{"name":"贫瘠钻石矿石","tr":"贫瘠钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19501":{"name":"贫瘠绿宝石矿石","tr":"贫瘠绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19502":{"name":"贫瘠红宝石矿石","tr":"贫瘠红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19503":{"name":"贫瘠蓝宝石矿石","tr":"贫瘠蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19504":{"name":"贫瘠绿色蓝宝石矿石","tr":"贫瘠绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19505":{"name":"贫瘠橄榄石矿石","tr":"贫瘠橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19506":{"name":"贫瘠下界之星矿石","tr":"贫瘠下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19507":{"name":"贫瘠黄玉矿石","tr":"贫瘠黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19508":{"name":"贫瘠坦桑石矿石","tr":"贫瘠坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19509":{"name":"贫瘠紫水晶矿石","tr":"贫瘠紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19510":{"name":"贫瘠蛋白石矿石","tr":"贫瘠蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19511":{"name":"贫瘠碧玉矿石","tr":"贫瘠碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19512":{"name":"贫瘠尖晶石矿石","tr":"贫瘠尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3129":{"oreDict":["oreBlackgraniteNeutronium"],"name":"中子矿石","tr":"中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19513":{"name":"贫瘠蓝黄玉矿石","tr":"贫瘠蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19514":{"name":"贫瘠琥珀矿石","tr":"贫瘠琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19515":{"name":"贫瘠双锂矿石","tr":"贫瘠双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19516":{"name":"贫瘠赛特斯石英矿石","tr":"贫瘠赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19517":{"name":"贫瘠充能赛特斯石英矿石","tr":"贫瘠充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19518":{"name":"贫瘠力之宝石矿石","tr":"贫瘠力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19519":{"name":"贫瘠力场宝石矿石","tr":"贫瘠力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19520":{"name":"贫瘠独居石矿石","tr":"贫瘠独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19521":{"name":"贫瘠力量矿石","tr":"贫瘠力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19522":{"name":"贫瘠下界石英矿石","tr":"贫瘠下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19523":{"name":"贫瘠石英岩矿石","tr":"贫瘠石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19524":{"name":"贫瘠蓝金石矿石","tr":"贫瘠蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19525":{"name":"贫瘠方钠石矿石","tr":"贫瘠方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19526":{"name":"贫瘠青金石矿石","tr":"贫瘠青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19527":{"name":"贫瘠红石榴石矿石","tr":"贫瘠红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19528":{"name":"贫瘠黄石榴石矿石","tr":"贫瘠黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19529":{"name":"贫瘠温特姆矿石","tr":"贫瘠温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19530":{"name":"贫瘠磷灰石矿石","tr":"贫瘠磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19531":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19534":{"name":"贫瘠磷酸三钙矿石","tr":"贫瘠磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19535":{"name":"贫瘠煤矿石","tr":"贫瘠煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19537":{"name":"贫瘠玉矿石","tr":"贫瘠玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19538":{"name":"贫瘠褐煤矿石","tr":"贫瘠褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19540":{"name":"贫瘠风之蕴魔石","tr":"贫瘠风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19541":{"name":"贫瘠火之蕴魔石","tr":"贫瘠火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19542":{"name":"贫瘠地之蕴魔石","tr":"贫瘠地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19543":{"name":"贫瘠水之蕴魔石","tr":"贫瘠水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19544":{"name":"贫瘠混沌蕴魔石","tr":"贫瘠混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19545":{"name":"贫瘠秩序蕴魔石","tr":"贫瘠秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19548":{"name":"贫瘠焙烧铁矿石","tr":"贫瘠焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19549":{"name":"贫瘠焙烧镍矿石","tr":"贫瘠焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19607":{"name":"贫瘠烧绿石矿石","tr":"贫瘠烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3303":{"oreDict":["oreBlackgraniteElectrum"],"name":"琥珀金矿石","tr":"琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3307":{"oreDict":["oreBlackgranitePigIron"," oreBlackgraniteAnyIron"],"name":"生铁矿石","tr":"生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19699":{"name":"贫瘠冰晶石矿石","tr":"贫瘠冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3319":{"oreDict":["oreBlackgraniteAdamantium"],"name":"精金矿石","tr":"精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3320":{"oreDict":["oreBlackgraniteElectrumFlux"],"name":"通流琥珀金矿石","tr":"通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3323":{"oreDict":["oreBlackgraniteInfusedGold"],"name":"注魔金矿石","tr":"注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3324":{"oreDict":["oreBlackgraniteNaquadah"],"name":"硅岩矿石","tr":"硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3326":{"oreDict":["oreBlackgraniteNaquadahEnriched"],"name":"富集硅岩矿石","tr":"富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3327":{"oreDict":["oreBlackgraniteNaquadria"],"name":"超能硅岩矿石","tr":"超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3329":{"oreDict":["oreBlackgraniteTritanium"],"name":"三钛矿石","tr":"三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3331":{"oreDict":["oreBlackgraniteMithril"],"name":"秘银矿石","tr":"秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3336":{"oreDict":["oreBlackgraniteShadowIron"],"name":"暗影铁矿石","tr":"暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3340":{"oreDict":["oreBlackgraniteMeteoricIron"],"name":"陨铁矿石","tr":"陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3342":{"oreDict":["oreBlackgraniteDarkIron"],"name":"玄铁矿石","tr":"玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3347":{"oreDict":["oreBlackgraniteFirestone"],"name":"火石矿石","tr":"火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3368":{"oreDict":["oreBlackgraniteShadow"],"name":"暗影金属矿石","tr":"暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3375":{"oreDict":["oreBlackgraniteRutile"],"name":"金红石矿石","tr":"金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3382":{"oreDict":["oreBlackgraniteArdite"],"name":"阿迪特矿石","tr":"阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3386":{"oreDict":["oreBlackgraniteManyullyn"],"name":"玛玉灵矿石","tr":"玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19770":{"name":"贫瘠终末矿石","tr":"贫瘠终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3387":{"oreDict":["oreBlackgraniteMytryl"],"name":"深空秘银矿石","tr":"深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3388":{"oreDict":["oreBlackgraniteBlackPlutonium"],"name":"黑钚矿石","tr":"黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3389":{"oreDict":["oreBlackgraniteCallistoIce"],"name":"木卫四冰矿石","tr":"木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3390":{"oreDict":["oreBlackgraniteLedox"],"name":"深铅矿石","tr":"深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3391":{"oreDict":["oreBlackgraniteQuantium"],"name":"量子矿石","tr":"量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3392":{"oreDict":["oreBlackgraniteDuralumin"],"name":"硬铝矿石","tr":"硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3393":{"oreDict":["oreBlackgraniteOriharukon"],"name":"奥利哈钢矿石","tr":"奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3394":{"oreDict":["oreBlackgraniteInfinityCatalyst"],"name":"无尽催化剂矿石","tr":"无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3395":{"oreDict":["oreBlackgraniteBedrockium"],"name":"基岩矿石","tr":"基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3398":{"oreDict":["oreBlackgraniteMysteriousCrystal"],"name":"神秘水晶矿石","tr":"神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19797":{"name":"贫瘠氢化钙矿石","tr":"贫瘠氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19810":{"name":"贫瘠红石矿石","tr":"贫瘠红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19812":{"name":"贫瘠蓝石矿石","tr":"贫瘠蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19817":{"name":"贫瘠盐矿石","tr":"贫瘠盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19820":{"name":"贫瘠铁铝榴石矿石","tr":"贫瘠铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19821":{"name":"贫瘠钙铁榴石矿石","tr":"贫瘠钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19822":{"name":"贫瘠铝土矿矿石","tr":"贫瘠铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19823":{"name":"贫瘠方解石矿石","tr":"贫瘠方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19824":{"name":"贫瘠锡石矿石","tr":"贫瘠锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19825":{"name":"贫瘠铬铁矿矿石","tr":"贫瘠铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19826":{"name":"贫瘠朱砂矿石","tr":"贫瘠朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19827":{"name":"贫瘠辉钴矿矿石","tr":"贫瘠辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19828":{"name":"贫瘠硫铂矿矿石","tr":"贫瘠硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19829":{"name":"贫瘠深渊铁矿石","tr":"贫瘠深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19830":{"name":"贫瘠方铅矿矿石","tr":"贫瘠方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19831":{"name":"贫瘠钙铝榴石矿石","tr":"贫瘠钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19833":{"name":"贫瘠磷酸盐矿石","tr":"贫瘠磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19834":{"name":"贫瘠黄铁矿矿石","tr":"贫瘠黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19835":{"name":"贫瘠镁铝榴石矿石","tr":"贫瘠镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19836":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19838":{"name":"贫瘠锰铝榴石矿石","tr":"贫瘠锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19839":{"name":"贫瘠闪锌矿矿石","tr":"贫瘠闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19840":{"name":"贫瘠黝铜矿矿石","tr":"贫瘠黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19841":{"name":"贫瘠钨酸锂矿石","tr":"贫瘠钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19842":{"name":"贫瘠钙铬榴石矿石","tr":"贫瘠钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19855":{"name":"贫瘠黄铜矿矿石","tr":"贫瘠黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19856":{"name":"贫瘠太阳能级硅(多晶硅)矿石","tr":"贫瘠太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19861":{"name":"贫瘠金刚砂矿石","tr":"贫瘠金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19865":{"name":"贫瘠石墨矿石","tr":"贫瘠石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19868":{"name":"贫瘠三元金属矿石","tr":"贫瘠三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3485":{"oreDict":["oreBlackgraniteAlduorite"],"name":"神秘蓝金矿石","tr":"神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19870":{"name":"贫瘠磁铁矿矿石","tr":"贫瘠磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19871":{"name":"贫瘠孔雀石矿石","tr":"贫瘠孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3488":{"oreDict":["oreBlackgraniteRubracium"],"name":"褐铜矿石","tr":"褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3489":{"oreDict":["oreBlackgraniteVulcanite"],"name":"胶木矿石","tr":"胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19873":{"name":"贫瘠沥青铀矿","tr":"贫瘠沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19877":{"name":"贫瘠皂石矿石","tr":"贫瘠皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19878":{"name":"贫瘠油砂矿石","tr":"贫瘠油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19882":{"name":"贫瘠钼铅矿矿石","tr":"贫瘠钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19883":{"name":"贫瘠钼钙矿矿石","tr":"贫瘠钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3500":{"oreDict":["oreBlackgraniteDiamond"],"name":"钻石矿石","tr":"钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19884":{"name":"贫瘠戴斯矿石","tr":"贫瘠戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3501":{"oreDict":["oreBlackgraniteEmerald"],"name":"绿宝石矿石","tr":"绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3502":{"oreDict":["oreBlackgraniteRuby"],"name":"红宝石矿石","tr":"红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3503":{"oreDict":["oreBlackgraniteSapphire"],"name":"蓝宝石矿石","tr":"蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3504":{"oreDict":["oreBlackgraniteGreenSapphire"],"name":"绿色蓝宝石矿石","tr":"绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3505":{"oreDict":["oreBlackgraniteOlivine"],"name":"橄榄石矿石","tr":"橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3506":{"oreDict":["oreBlackgraniteNetherStar"],"name":"下界之星矿石","tr":"下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3507":{"oreDict":["oreBlackgraniteTopaz"],"name":"黄玉矿石","tr":"黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3508":{"oreDict":["oreBlackgraniteTanzanite"],"name":"坦桑石矿石","tr":"坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3509":{"oreDict":["oreBlackgraniteAmethyst"],"name":"紫水晶矿石","tr":"紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3510":{"oreDict":["oreBlackgraniteOpal"],"name":"蛋白石矿石","tr":"蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19894":{"name":"贫瘠奶酪矿石","tr":"贫瘠奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3511":{"oreDict":["oreBlackgraniteJasper"],"name":"碧玉矿石","tr":"碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3512":{"oreDict":["oreBlackgraniteFoolsRuby"],"name":"尖晶石矿石","tr":"尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3513":{"oreDict":["oreBlackgraniteBlueTopaz"],"name":"蓝黄玉矿石","tr":"蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3514":{"oreDict":["oreBlackgraniteAmber"],"name":"琥珀矿石","tr":"琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3515":{"oreDict":["oreBlackgraniteDilithium"],"name":"双锂矿石","tr":"双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3516":{"oreDict":["oreBlackgraniteCertusQuartz"],"name":"赛特斯石英矿石","tr":"赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19900":{"name":"贫瘠芒硝矿石","tr":"贫瘠芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3517":{"oreDict":["oreBlackgraniteChargedCertusQuartz"],"name":"充能赛特斯石英矿石","tr":"充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19901":{"name":"贫瘠云母矿石","tr":"贫瘠云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3518":{"oreDict":["oreBlackgraniteForcicium"],"name":"力之宝石矿石","tr":"力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19902":{"name":"贫瘠滑石","tr":"贫瘠滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3519":{"oreDict":["oreBlackgraniteForcillium"],"name":"力场宝石矿石","tr":"力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19903":{"name":"贫瘠天然碱矿石","tr":"贫瘠天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3520":{"oreDict":["oreBlackgraniteMonazite"],"name":"独居石矿石","tr":"独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19904":{"name":"贫瘠重晶石矿石","tr":"贫瘠重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3521":{"oreDict":["oreBlackgraniteForce"],"name":"力量矿石","tr":"力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19905":{"name":"贫瘠氟碳镧铈矿矿石","tr":"贫瘠氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3522":{"oreDict":["oreBlackgraniteNetherQuartz"],"name":"下界石英矿石","tr":"下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19906":{"name":"贫瘠硅镁镍矿矿石","tr":"贫瘠硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3523":{"oreDict":["oreBlackgraniteQuartzite"],"name":"石英岩矿石","tr":"石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19907":{"name":"贫瘠锂云母矿石","tr":"贫瘠锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3524":{"oreDict":["oreBlackgraniteLazurite"],"name":"蓝金石矿石","tr":"蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19908":{"name":"贫瘠菱镁矿矿石","tr":"贫瘠菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3525":{"oreDict":["oreBlackgraniteSodalite"],"name":"方钠石矿石","tr":"方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19909":{"name":"贫瘠镍黄铁矿矿石","tr":"贫瘠镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3526":{"oreDict":["oreBlackgraniteLapis"],"name":"青金石矿石","tr":"青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19910":{"name":"贫瘠白钨矿矿石","tr":"贫瘠白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3527":{"oreDict":["oreBlackgraniteGarnetRed"],"name":"红石榴石矿石","tr":"红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19911":{"name":"贫瘠明矾石矿石","tr":"贫瘠明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3528":{"oreDict":["oreBlackgraniteGarnetYellow"],"name":"黄石榴石矿石","tr":"黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19912":{"name":"贫瘠白石棉矿石","tr":"贫瘠白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3529":{"oreDict":["oreBlackgraniteVinteum"],"name":"温特姆矿石","tr":"温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19913":{"name":"贫瘠雄黄矿石","tr":"贫瘠雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3530":{"oreDict":["oreBlackgraniteApatite"],"name":"磷灰石矿石","tr":"磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19914":{"name":"贫瘠白云石矿石","tr":"贫瘠白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3531":{"oreDict":["oreBlackgraniteNiter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19915":{"name":"贫瘠硅灰石矿石","tr":"贫瘠硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19916":{"name":"贫瘠沸石矿石","tr":"贫瘠沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19917":{"name":"贫瘠带状铁矿矿石","tr":"贫瘠带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3534":{"oreDict":["oreBlackgraniteTricalciumPhosphate"],"name":"磷酸三钙矿石","tr":"磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19918":{"name":"贫瘠钛铁矿矿石","tr":"贫瘠钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3535":{"oreDict":["oreBlackgraniteCoal"],"name":"煤矿石","tr":"煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19919":{"name":"贫瘠铯榴石矿石","tr":"贫瘠铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19920":{"name":"贫瘠锂辉石矿石","tr":"贫瘠锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3537":{"oreDict":["oreBlackgraniteJade"],"name":"玉矿石","tr":"玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19921":{"name":"贫瘠钽铁矿矿石","tr":"贫瘠钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3538":{"oreDict":["oreBlackgraniteLignite"],"name":"褐煤矿石","tr":"褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19922":{"name":"贫瘠晶质铀矿矿石","tr":"贫瘠晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19923":{"name":"贫瘠钒磁铁矿矿石","tr":"贫瘠钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3540":{"oreDict":["oreBlackgraniteInfusedAir"],"name":"风之蕴魔石","tr":"风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19924":{"name":"贫瘠蓝晶石矿石","tr":"贫瘠蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3541":{"oreDict":["oreBlackgraniteInfusedFire"],"name":"火之蕴魔石","tr":"火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19925":{"name":"贫瘠珍珠岩矿石","tr":"贫瘠珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3542":{"oreDict":["oreBlackgraniteInfusedEarth"],"name":"地之蕴魔石","tr":"地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19926":{"name":"贫瘠浮岩矿石","tr":"贫瘠浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3543":{"oreDict":["oreBlackgraniteInfusedWater"],"name":"水之蕴魔石","tr":"水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19927":{"name":"贫瘠膨润土","tr":"贫瘠膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3544":{"oreDict":["oreBlackgraniteInfusedEntropy"],"name":"混沌蕴魔石","tr":"混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19928":{"name":"贫瘠漂白土","tr":"贫瘠漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3545":{"oreDict":["oreBlackgraniteInfusedOrder"],"name":"秩序蕴魔石","tr":"秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19929":{"name":"贫瘠高岭石","tr":"贫瘠高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19930":{"name":"贫瘠棕褐铁矿矿石","tr":"贫瘠棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19931":{"name":"贫瘠黄褐铁矿矿石","tr":"贫瘠黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3548":{"oreDict":["oreBlackgraniteRoastedIron"],"name":"焙烧铁矿石","tr":"焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19932":{"name":"贫瘠蛭石","tr":"贫瘠蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3549":{"oreDict":["oreBlackgraniteRoastedNickel"],"name":"焙烧镍矿石","tr":"焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19933":{"name":"贫瘠海绿石矿石","tr":"贫瘠海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19934":{"name":"贫瘠石膏矿石","tr":"贫瘠石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19935":{"name":"贫瘠玄武岩矿砂","tr":"贫瘠玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19936":{"name":"贫瘠花岗岩矿砂","tr":"贫瘠花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19937":{"name":"贫瘠锡石矿砂","tr":"贫瘠锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19938":{"name":"贫瘠石榴石矿砂","tr":"贫瘠石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19939":{"name":"贫瘠石英矿砂","tr":"贫瘠石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19941":{"name":"贫瘠硼砂矿石","tr":"贫瘠硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19942":{"name":"贫瘠辉钼矿矿石","tr":"贫瘠辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19943":{"name":"贫瘠软锰矿矿石","tr":"贫瘠软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19944":{"name":"贫瘠岩盐矿石","tr":"贫瘠岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19945":{"name":"贫瘠辉锑矿矿石","tr":"贫瘠辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19946":{"name":"贫瘠石棉矿石","tr":"贫瘠石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19948":{"name":"贫瘠硅藻土矿石","tr":"贫瘠硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19949":{"name":"贫瘠海绿石矿砂","tr":"贫瘠海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19951":{"name":"贫瘠幽冥剧毒结晶矿石","tr":"贫瘠幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19952":{"name":"贫瘠暗影秘银矿石","tr":"贫瘠暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19956":{"name":"贫瘠溶火之石矿石","tr":"贫瘠溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19966":{"name":"贫瘠山铜矿石","tr":"贫瘠山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19969":{"name":"贫瘠氟化铝矿石","tr":"贫瘠氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19971":{"name":"贫瘠二硅化钙矿石","tr":"贫瘠二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19975":{"name":"贫瘠龙矿石","tr":"贫瘠龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19976":{"name":"贫瘠觉醒龙矿石","tr":"贫瘠觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19978":{"name":"贫瘠灵宝矿石","tr":"贫瘠灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19982":{"name":"贫瘠宇宙中子态素矿石","tr":"贫瘠宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"19984":{"name":"贫瘠矿石","tr":"贫瘠矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3607":{"oreDict":["oreBlackgranitePyrochlore"],"name":"烧绿石矿石","tr":"烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20006":{"name":"贫瘠锂矿石","tr":"贫瘠锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20008":{"name":"贫瘠铍矿石","tr":"贫瘠铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20018":{"name":"贫瘠镁矿石","tr":"贫瘠镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20019":{"name":"贫瘠铝矿石","tr":"贫瘠铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20020":{"name":"贫瘠硅矿石","tr":"贫瘠硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20022":{"name":"贫瘠硫矿石","tr":"贫瘠硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20027":{"name":"贫瘠钪矿石","tr":"贫瘠钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20028":{"name":"贫瘠钛矿石","tr":"贫瘠钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20029":{"name":"贫瘠钒矿石","tr":"贫瘠钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20030":{"name":"贫瘠铬矿石","tr":"贫瘠铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20031":{"name":"贫瘠锰矿石","tr":"贫瘠锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20032":{"name":"贫瘠铁矿石","tr":"贫瘠铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20033":{"name":"贫瘠钴矿石","tr":"贫瘠钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20034":{"name":"贫瘠镍矿石","tr":"贫瘠镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20035":{"name":"贫瘠铜矿石","tr":"贫瘠铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20036":{"name":"贫瘠锌矿石","tr":"贫瘠锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20037":{"name":"贫瘠镓矿石","tr":"贫瘠镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20039":{"name":"贫瘠砷矿石","tr":"贫瘠砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20043":{"name":"贫瘠铷矿石","tr":"贫瘠铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20044":{"name":"贫瘠锶矿石","tr":"贫瘠锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20045":{"name":"贫瘠钇矿石","tr":"贫瘠钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20047":{"name":"贫瘠铌矿石","tr":"贫瘠铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20048":{"name":"贫瘠钼矿石","tr":"贫瘠钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20052":{"name":"贫瘠钯矿石","tr":"贫瘠钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20054":{"name":"贫瘠银矿石","tr":"贫瘠银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20055":{"name":"贫瘠镉矿石","tr":"贫瘠镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20056":{"name":"贫瘠铟矿石","tr":"贫瘠铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20057":{"name":"贫瘠锡矿石","tr":"贫瘠锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20058":{"name":"贫瘠锑矿石","tr":"贫瘠锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20059":{"name":"贫瘠碲矿石","tr":"贫瘠碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20062":{"name":"贫瘠铯矿石","tr":"贫瘠铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20063":{"name":"贫瘠钡矿石","tr":"贫瘠钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20064":{"name":"贫瘠镧矿石","tr":"贫瘠镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20065":{"name":"贫瘠铈矿石","tr":"贫瘠铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20066":{"name":"贫瘠镨矿石","tr":"贫瘠镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20067":{"name":"贫瘠钕矿石","tr":"贫瘠钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20068":{"name":"贫瘠钷矿石","tr":"贫瘠钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20069":{"name":"贫瘠钐矿石","tr":"贫瘠钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20070":{"name":"贫瘠铕矿石","tr":"贫瘠铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20071":{"name":"贫瘠钆矿石","tr":"贫瘠钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20072":{"name":"贫瘠铽矿石","tr":"贫瘠铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20073":{"name":"贫瘠镝矿石","tr":"贫瘠镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20074":{"name":"贫瘠钬矿石","tr":"贫瘠钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20075":{"name":"贫瘠铒矿石","tr":"贫瘠铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20076":{"name":"贫瘠铥矿石","tr":"贫瘠铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20077":{"name":"贫瘠镱矿石","tr":"贫瘠镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20078":{"name":"贫瘠镥矿石","tr":"贫瘠镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20080":{"name":"贫瘠钽矿石","tr":"贫瘠钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20081":{"name":"贫瘠钨矿石","tr":"贫瘠钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20083":{"name":"贫瘠锇矿石","tr":"贫瘠锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3699":{"oreDict":["oreBlackgraniteCryolite"],"name":"冰晶石矿石","tr":"冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20084":{"name":"贫瘠铱矿石","tr":"贫瘠铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20085":{"name":"贫瘠铂矿石","tr":"贫瘠铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20086":{"name":"贫瘠金矿石","tr":"贫瘠金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20089":{"name":"贫瘠铅矿石","tr":"贫瘠铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20090":{"name":"贫瘠铋矿石","tr":"贫瘠铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20096":{"name":"贫瘠钍矿石","tr":"贫瘠钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20097":{"name":"贫瘠铀-235矿石","tr":"贫瘠铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20098":{"name":"贫瘠铀-238矿石","tr":"贫瘠铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20100":{"name":"贫瘠钚-239矿石","tr":"贫瘠钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20101":{"name":"贫瘠钚-241矿石","tr":"贫瘠钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20103":{"name":"贫瘠镅矿石","tr":"贫瘠镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20110":{"name":"贫瘠生镃矿石","tr":"贫瘠生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20129":{"name":"贫瘠中子矿石","tr":"贫瘠中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3770":{"oreDict":["oreBlackgraniteHeeEndium"],"name":"终末矿石","tr":"终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3797":{"oreDict":["oreBlackgraniteCalciumHydride"],"name":"氢化钙矿石","tr":"氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3810":{"oreDict":["oreBlackgraniteRedstone"],"name":"红石矿石","tr":"红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3812":{"oreDict":["oreBlackgraniteElectrotine"],"name":"蓝石矿石","tr":"蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3817":{"oreDict":["oreBlackgraniteSalt"],"name":"盐矿石","tr":"盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3820":{"oreDict":["oreBlackgraniteAlmandine"],"name":"铁铝榴石矿石","tr":"铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3821":{"oreDict":["oreBlackgraniteAndradite"],"name":"钙铁榴石矿石","tr":"钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3822":{"oreDict":["oreBlackgraniteBauxite"],"name":"铝土矿矿石","tr":"铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3823":{"oreDict":["oreBlackgraniteCalcite"],"name":"方解石矿石","tr":"方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3824":{"oreDict":["oreBlackgraniteCassiterite"],"name":"锡石矿石","tr":"锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3825":{"oreDict":["oreBlackgraniteChromite"],"name":"铬铁矿矿石","tr":"铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3826":{"oreDict":["oreBlackgraniteCinnabar"],"name":"朱砂矿石","tr":"朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3827":{"oreDict":["oreBlackgraniteCobaltite"],"name":"辉钴矿矿石","tr":"辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3828":{"oreDict":["oreBlackgraniteCooperite"],"name":"硫铂矿矿石","tr":"硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3829":{"oreDict":["oreBlackgraniteDeepIron"],"name":"深渊铁矿石","tr":"深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3830":{"oreDict":["oreBlackgraniteGalena"],"name":"方铅矿矿石","tr":"方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3831":{"oreDict":["oreBlackgraniteGrossular"],"name":"钙铝榴石矿石","tr":"钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3833":{"oreDict":["oreBlackgranitePhosphate"],"name":"磷酸盐矿石","tr":"磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3834":{"oreDict":["oreBlackgranitePyrite"],"name":"黄铁矿矿石","tr":"黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3835":{"oreDict":["oreBlackgranitePyrope"],"name":"镁铝榴石矿石","tr":"镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3836":{"oreDict":["oreBlackgraniteSaltpeter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3838":{"oreDict":["oreBlackgraniteSpessartine"],"name":"锰铝榴石矿石","tr":"锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3839":{"oreDict":["oreBlackgraniteSphalerite"],"name":"闪锌矿矿石","tr":"闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3840":{"oreDict":["oreBlackgraniteTetrahedrite"],"name":"黝铜矿矿石","tr":"黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3841":{"oreDict":["oreBlackgraniteTungstate"],"name":"钨酸锂矿石","tr":"钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3842":{"oreDict":["oreBlackgraniteUvarovite"],"name":"钙铬榴石矿石","tr":"钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3855":{"oreDict":["oreBlackgraniteChalcopyrite"],"name":"黄铜矿矿石","tr":"黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3856":{"oreDict":["oreBlackgraniteSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)矿石","tr":"太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3861":{"oreDict":["oreBlackgraniteEmery"],"name":"金刚砂矿石","tr":"金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3865":{"oreDict":["oreBlackgraniteGraphite"],"name":"石墨矿石","tr":"石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3868":{"oreDict":["oreBlackgraniteTrinium"],"name":"三元金属矿石","tr":"三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3870":{"oreDict":["oreBlackgraniteMagnetite"],"name":"磁铁矿矿石","tr":"磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3871":{"oreDict":["oreBlackgraniteMalachite"],"name":"孔雀石矿石","tr":"孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3873":{"oreDict":["oreBlackgranitePitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3877":{"oreDict":["oreBlackgraniteSoapstone"],"name":"皂石矿石","tr":"皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3878":{"oreDict":["oreBlackgraniteOilsands"],"name":"油砂矿石","tr":"油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3882":{"oreDict":["oreBlackgraniteWulfenite"],"name":"钼铅矿矿石","tr":"钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3883":{"oreDict":["oreBlackgranitePowellite"],"name":"钼钙矿矿石","tr":"钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3884":{"oreDict":["oreBlackgraniteDesh"],"name":"戴斯矿石","tr":"戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3894":{"oreDict":["oreBlackgraniteCheese"],"name":"奶酪矿石","tr":"奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3900":{"oreDict":["oreBlackgraniteMirabilite"],"name":"芒硝矿石","tr":"芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3901":{"oreDict":["oreBlackgraniteMica"],"name":"云母矿石","tr":"云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3902":{"oreDict":["oreBlackgraniteTalc"],"name":"滑石","tr":"滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3903":{"oreDict":["oreBlackgraniteTrona"],"name":"天然碱矿石","tr":"天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3904":{"oreDict":["oreBlackgraniteBarite"],"name":"重晶石矿石","tr":"重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3905":{"oreDict":["oreBlackgraniteBastnasite"],"name":"氟碳镧铈矿矿石","tr":"氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3906":{"oreDict":["oreBlackgraniteGarnierite"],"name":"硅镁镍矿矿石","tr":"硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3907":{"oreDict":["oreBlackgraniteLepidolite"],"name":"锂云母矿石","tr":"锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3908":{"oreDict":["oreBlackgraniteMagnesite"],"name":"菱镁矿矿石","tr":"菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3909":{"oreDict":["oreBlackgranitePentlandite"],"name":"镍黄铁矿矿石","tr":"镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3910":{"oreDict":["oreBlackgraniteScheelite"],"name":"白钨矿矿石","tr":"白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3911":{"oreDict":["oreBlackgraniteAlunite"],"name":"明矾石矿石","tr":"明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3912":{"oreDict":["oreBlackgraniteChrysotile"],"name":"白石棉矿石","tr":"白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3913":{"oreDict":["oreBlackgraniteRealgar"],"name":"雄黄矿石","tr":"雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3914":{"oreDict":["oreBlackgraniteDolomite"],"name":"白云石矿石","tr":"白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3915":{"oreDict":["oreBlackgraniteWollastonite"],"name":"硅灰石矿石","tr":"硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3916":{"oreDict":["oreBlackgraniteZeolite"],"name":"沸石矿石","tr":"沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3917":{"oreDict":["oreBlackgraniteBandedIron"],"name":"带状铁矿矿石","tr":"带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3918":{"oreDict":["oreBlackgraniteIlmenite"],"name":"钛铁矿矿石","tr":"钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20303":{"name":"贫瘠琥珀金矿石","tr":"贫瘠琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3919":{"oreDict":["oreBlackgranitePollucite"],"name":"铯榴石矿石","tr":"铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3920":{"oreDict":["oreBlackgraniteSpodumene"],"name":"锂辉石矿石","tr":"锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3921":{"oreDict":["oreBlackgraniteTantalite"],"name":"钽铁矿矿石","tr":"钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3922":{"oreDict":["oreBlackgraniteUraninite"],"name":"晶质铀矿矿石","tr":"晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20307":{"name":"贫瘠生铁矿石","tr":"贫瘠生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3923":{"oreDict":["oreBlackgraniteVanadiumMagnetite"],"name":"钒磁铁矿矿石","tr":"钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3924":{"oreDict":["oreBlackgraniteKyanite"],"name":"蓝晶石矿石","tr":"蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3925":{"oreDict":["oreBlackgranitePerlite"],"name":"珍珠岩矿石","tr":"珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3926":{"oreDict":["oreBlackgranitePumice"],"name":"浮岩矿石","tr":"浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3927":{"oreDict":["oreBlackgraniteBentonite"],"name":"膨润土","tr":"膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3928":{"oreDict":["oreBlackgraniteFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3929":{"oreDict":["oreBlackgraniteKaolinite"],"name":"高岭石","tr":"高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3930":{"oreDict":["oreBlackgraniteBrownLimonite"],"name":"棕褐铁矿矿石","tr":"棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3931":{"oreDict":["oreBlackgraniteYellowLimonite"],"name":"黄褐铁矿矿石","tr":"黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3932":{"oreDict":["oreBlackgraniteVermiculite"],"name":"蛭石","tr":"蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3933":{"oreDict":["oreBlackgraniteGlauconite"],"name":"海绿石矿石","tr":"海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3934":{"oreDict":["oreBlackgraniteGypsum"],"name":"石膏矿石","tr":"石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20319":{"name":"贫瘠精金矿石","tr":"贫瘠精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3935":{"oreDict":["oreBlackgraniteBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20320":{"name":"贫瘠通流琥珀金矿石","tr":"贫瘠通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3936":{"oreDict":["oreBlackgraniteGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3937":{"oreDict":["oreBlackgraniteCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3938":{"oreDict":["oreBlackgraniteGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20323":{"name":"贫瘠注魔金矿石","tr":"贫瘠注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3939":{"oreDict":["oreBlackgraniteQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20324":{"name":"贫瘠硅岩矿石","tr":"贫瘠硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3941":{"oreDict":["oreBlackgraniteBorax"],"name":"硼砂矿石","tr":"硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20326":{"name":"贫瘠富集硅岩矿石","tr":"贫瘠富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3942":{"oreDict":["oreBlackgraniteMolybdenite"],"name":"辉钼矿矿石","tr":"辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20327":{"name":"贫瘠超能硅岩矿石","tr":"贫瘠超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3943":{"oreDict":["oreBlackgranitePyrolusite"],"name":"软锰矿矿石","tr":"软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3944":{"oreDict":["oreBlackgraniteRockSalt"],"name":"岩盐矿石","tr":"岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20329":{"name":"贫瘠三钛矿石","tr":"贫瘠三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3945":{"oreDict":["oreBlackgraniteStibnite"],"name":"辉锑矿矿石","tr":"辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3946":{"oreDict":["oreBlackgraniteAsbestos"],"name":"石棉矿石","tr":"石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20331":{"name":"贫瘠秘银矿石","tr":"贫瘠秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3948":{"oreDict":["oreBlackgraniteDiatomite"],"name":"硅藻土矿石","tr":"硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3949":{"oreDict":["oreBlackgraniteGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3951":{"oreDict":["oreBlackgraniteVyroxeres"],"name":"幽冥剧毒结晶矿石","tr":"幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20336":{"name":"贫瘠暗影铁矿石","tr":"贫瘠暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3952":{"oreDict":["oreBlackgraniteCeruclase"],"name":"暗影秘银矿石","tr":"暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20340":{"name":"贫瘠陨铁矿石","tr":"贫瘠陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3956":{"oreDict":["oreBlackgraniteTartarite"],"name":"溶火之石矿石","tr":"溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20342":{"name":"贫瘠玄铁矿石","tr":"贫瘠玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20347":{"name":"贫瘠火石矿石","tr":"贫瘠火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3966":{"oreDict":["oreBlackgraniteOrichalcum"],"name":"山铜矿石","tr":"山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3969":{"oreDict":["oreBlackgraniteAluminiumfluoride"],"name":"氟化铝矿石","tr":"氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3971":{"oreDict":["oreBlackgraniteCalciumDisilicide"],"name":"二硅化钙矿石","tr":"二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3975":{"oreDict":["oreBlackgraniteDraconium"],"name":"龙矿石","tr":"龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3976":{"oreDict":["oreBlackgraniteDraconiumAwakened"],"name":"觉醒龙矿石","tr":"觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3978":{"oreDict":["oreBlackgraniteIchorium"],"name":"灵宝矿石","tr":"灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3982":{"oreDict":["oreBlackgraniteCosmicNeutronium"],"name":"宇宙中子态素矿石","tr":"宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20368":{"name":"贫瘠暗影金属矿石","tr":"贫瘠暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"3984":{"oreDict":["oreBlackgraniteFlerovium_GT5U"],"name":"矿石","tr":"矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20375":{"name":"贫瘠金红石矿石","tr":"贫瘠金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20382":{"name":"贫瘠阿迪特矿石","tr":"贫瘠阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20386":{"name":"贫瘠玛玉灵矿石","tr":"贫瘠玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20387":{"name":"贫瘠深空秘银矿石","tr":"贫瘠深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20388":{"name":"贫瘠黑钚矿石","tr":"贫瘠黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20389":{"name":"贫瘠木卫四冰矿石","tr":"贫瘠木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4006":{"oreDict":["oreRedgraniteLithium"],"name":"锂矿石","tr":"锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20390":{"name":"贫瘠深铅矿石","tr":"贫瘠深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20391":{"name":"贫瘠量子矿石","tr":"贫瘠量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4008":{"oreDict":["oreRedgraniteBeryllium"],"name":"铍矿石","tr":"铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20392":{"name":"贫瘠硬铝矿石","tr":"贫瘠硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20393":{"name":"贫瘠奥利哈钢矿石","tr":"贫瘠奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20394":{"name":"贫瘠无尽催化剂矿石","tr":"贫瘠无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20395":{"name":"贫瘠基岩矿石","tr":"贫瘠基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20398":{"name":"贫瘠神秘水晶矿石","tr":"贫瘠神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4018":{"oreDict":["oreRedgraniteMagnesium"],"name":"镁矿石","tr":"镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4019":{"oreDict":["oreRedgraniteAluminium"],"name":"铝矿石","tr":"铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4020":{"oreDict":["oreRedgraniteSilicon"],"name":"硅矿石","tr":"硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4022":{"oreDict":["oreRedgraniteSulfur"],"name":"硫矿石","tr":"硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4027":{"oreDict":["oreRedgraniteScandium"],"name":"钪矿石","tr":"钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4028":{"oreDict":["oreRedgraniteTitanium"],"name":"钛矿石","tr":"钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4029":{"oreDict":["oreRedgraniteVanadium"],"name":"钒矿石","tr":"钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4030":{"oreDict":["oreRedgraniteChrome"],"name":"铬矿石","tr":"铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4031":{"oreDict":["oreRedgraniteManganese"],"name":"锰矿石","tr":"锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4032":{"oreDict":["oreRedgraniteIron"," oreRedgraniteAnyIron"],"name":"铁矿石","tr":"铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4033":{"oreDict":["oreRedgraniteCobalt"],"name":"钴矿石","tr":"钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4034":{"oreDict":["oreRedgraniteNickel"],"name":"镍矿石","tr":"镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4035":{"oreDict":["oreRedgraniteCopper"," oreRedgraniteAnyCopper"],"name":"铜矿石","tr":"铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4036":{"oreDict":["oreRedgraniteZinc"],"name":"锌矿石","tr":"锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4037":{"oreDict":["oreRedgraniteGallium"],"name":"镓矿石","tr":"镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4039":{"oreDict":["oreRedgraniteArsenic"],"name":"砷矿石","tr":"砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4043":{"oreDict":["oreRedgraniteRubidium"],"name":"铷矿石","tr":"铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4044":{"oreDict":["oreRedgraniteStrontium"],"name":"锶矿石","tr":"锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4045":{"oreDict":["oreRedgraniteYttrium"],"name":"钇矿石","tr":"钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4047":{"oreDict":["oreRedgraniteNiobium"],"name":"铌矿石","tr":"铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4048":{"oreDict":["oreRedgraniteMolybdenum"],"name":"钼矿石","tr":"钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4052":{"oreDict":["oreRedgranitePalladium"],"name":"钯矿石","tr":"钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4054":{"oreDict":["oreRedgraniteSilver"],"name":"银矿石","tr":"银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4055":{"oreDict":["oreRedgraniteCadmium"],"name":"镉矿石","tr":"镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4056":{"oreDict":["oreRedgraniteIndium"],"name":"铟矿石","tr":"铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4057":{"oreDict":["oreRedgraniteTin"],"name":"锡矿石","tr":"锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4058":{"oreDict":["oreRedgraniteAntimony"],"name":"锑矿石","tr":"锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4059":{"oreDict":["oreRedgraniteTellurium"],"name":"碲矿石","tr":"碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4062":{"oreDict":["oreRedgraniteCaesium"],"name":"铯矿石","tr":"铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4063":{"oreDict":["oreRedgraniteBarium"],"name":"钡矿石","tr":"钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4064":{"oreDict":["oreRedgraniteLanthanum"],"name":"镧矿石","tr":"镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4065":{"oreDict":["oreRedgraniteCerium"],"name":"铈矿石","tr":"铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4066":{"oreDict":["oreRedgranitePraseodymium"],"name":"镨矿石","tr":"镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4067":{"oreDict":["oreRedgraniteNeodymium"],"name":"钕矿石","tr":"钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4068":{"oreDict":["oreRedgranitePromethium"],"name":"钷矿石","tr":"钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4069":{"oreDict":["oreRedgraniteSamarium"],"name":"钐矿石","tr":"钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4070":{"oreDict":["oreRedgraniteEuropium"],"name":"铕矿石","tr":"铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4071":{"oreDict":["oreRedgraniteGadolinium"],"name":"钆矿石","tr":"钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4072":{"oreDict":["oreRedgraniteTerbium"],"name":"铽矿石","tr":"铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4073":{"oreDict":["oreRedgraniteDysprosium"],"name":"镝矿石","tr":"镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4074":{"oreDict":["oreRedgraniteHolmium"],"name":"钬矿石","tr":"钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4075":{"oreDict":["oreRedgraniteErbium"],"name":"铒矿石","tr":"铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4076":{"oreDict":["oreRedgraniteThulium"],"name":"铥矿石","tr":"铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4077":{"oreDict":["oreRedgraniteYtterbium"],"name":"镱矿石","tr":"镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4078":{"oreDict":["oreRedgraniteLutetium"],"name":"镥矿石","tr":"镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4080":{"oreDict":["oreRedgraniteTantalum"],"name":"钽矿石","tr":"钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4081":{"oreDict":["oreRedgraniteTungsten"],"name":"钨矿石","tr":"钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4083":{"oreDict":["oreRedgraniteOsmium"],"name":"锇矿石","tr":"锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4084":{"oreDict":["oreRedgraniteIridium"],"name":"铱矿石","tr":"铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4085":{"oreDict":["oreRedgranitePlatinum"],"name":"铂矿石","tr":"铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4086":{"oreDict":["oreRedgraniteGold"],"name":"金矿石","tr":"金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4089":{"oreDict":["oreRedgraniteLead"],"name":"铅矿石","tr":"铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4090":{"oreDict":["oreRedgraniteBismuth"],"name":"铋矿石","tr":"铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4096":{"oreDict":["oreRedgraniteThorium"],"name":"钍矿石","tr":"钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4097":{"oreDict":["oreRedgraniteUranium235"],"name":"铀-235矿石","tr":"铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4098":{"oreDict":["oreRedgraniteUranium"],"name":"铀-238矿石","tr":"铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4100":{"oreDict":["oreRedgranitePlutonium"],"name":"钚-239矿石","tr":"钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4101":{"oreDict":["oreRedgranitePlutonium241"],"name":"钚-241矿石","tr":"钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20485":{"name":"贫瘠神秘蓝金矿石","tr":"贫瘠神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4103":{"oreDict":["oreRedgraniteAmericium"],"name":"镅矿石","tr":"镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20488":{"name":"贫瘠褐铜矿石","tr":"贫瘠褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20489":{"name":"贫瘠胶木矿石","tr":"贫瘠胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4110":{"oreDict":["oreRedgraniteTengamRaw"],"name":"生镃矿石","tr":"生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20500":{"name":"贫瘠钻石矿石","tr":"贫瘠钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20501":{"name":"贫瘠绿宝石矿石","tr":"贫瘠绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20502":{"name":"贫瘠红宝石矿石","tr":"贫瘠红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20503":{"name":"贫瘠蓝宝石矿石","tr":"贫瘠蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20504":{"name":"贫瘠绿色蓝宝石矿石","tr":"贫瘠绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20505":{"name":"贫瘠橄榄石矿石","tr":"贫瘠橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20506":{"name":"贫瘠下界之星矿石","tr":"贫瘠下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20507":{"name":"贫瘠黄玉矿石","tr":"贫瘠黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20508":{"name":"贫瘠坦桑石矿石","tr":"贫瘠坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20509":{"name":"贫瘠紫水晶矿石","tr":"贫瘠紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20510":{"name":"贫瘠蛋白石矿石","tr":"贫瘠蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20511":{"name":"贫瘠碧玉矿石","tr":"贫瘠碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20512":{"name":"贫瘠尖晶石矿石","tr":"贫瘠尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4129":{"oreDict":["oreRedgraniteNeutronium"],"name":"中子矿石","tr":"中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20513":{"name":"贫瘠蓝黄玉矿石","tr":"贫瘠蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20514":{"name":"贫瘠琥珀矿石","tr":"贫瘠琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20515":{"name":"贫瘠双锂矿石","tr":"贫瘠双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20516":{"name":"贫瘠赛特斯石英矿石","tr":"贫瘠赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20517":{"name":"贫瘠充能赛特斯石英矿石","tr":"贫瘠充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20518":{"name":"贫瘠力之宝石矿石","tr":"贫瘠力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20519":{"name":"贫瘠力场宝石矿石","tr":"贫瘠力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20520":{"name":"贫瘠独居石矿石","tr":"贫瘠独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20521":{"name":"贫瘠力量矿石","tr":"贫瘠力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20522":{"name":"贫瘠下界石英矿石","tr":"贫瘠下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20523":{"name":"贫瘠石英岩矿石","tr":"贫瘠石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20524":{"name":"贫瘠蓝金石矿石","tr":"贫瘠蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20525":{"name":"贫瘠方钠石矿石","tr":"贫瘠方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20526":{"name":"贫瘠青金石矿石","tr":"贫瘠青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20527":{"name":"贫瘠红石榴石矿石","tr":"贫瘠红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20528":{"name":"贫瘠黄石榴石矿石","tr":"贫瘠黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20529":{"name":"贫瘠温特姆矿石","tr":"贫瘠温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20530":{"name":"贫瘠磷灰石矿石","tr":"贫瘠磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20531":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20534":{"name":"贫瘠磷酸三钙矿石","tr":"贫瘠磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20535":{"name":"贫瘠煤矿石","tr":"贫瘠煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20537":{"name":"贫瘠玉矿石","tr":"贫瘠玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20538":{"name":"贫瘠褐煤矿石","tr":"贫瘠褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20540":{"name":"贫瘠风之蕴魔石","tr":"贫瘠风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20541":{"name":"贫瘠火之蕴魔石","tr":"贫瘠火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20542":{"name":"贫瘠地之蕴魔石","tr":"贫瘠地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20543":{"name":"贫瘠水之蕴魔石","tr":"贫瘠水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20544":{"name":"贫瘠混沌蕴魔石","tr":"贫瘠混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20545":{"name":"贫瘠秩序蕴魔石","tr":"贫瘠秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20548":{"name":"贫瘠焙烧铁矿石","tr":"贫瘠焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20549":{"name":"贫瘠焙烧镍矿石","tr":"贫瘠焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20607":{"name":"贫瘠烧绿石矿石","tr":"贫瘠烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4303":{"oreDict":["oreRedgraniteElectrum"],"name":"琥珀金矿石","tr":"琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4307":{"oreDict":["oreRedgranitePigIron"," oreRedgraniteAnyIron"],"name":"生铁矿石","tr":"生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20699":{"name":"贫瘠冰晶石矿石","tr":"贫瘠冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4319":{"oreDict":["oreRedgraniteAdamantium"],"name":"精金矿石","tr":"精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4320":{"oreDict":["oreRedgraniteElectrumFlux"],"name":"通流琥珀金矿石","tr":"通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4323":{"oreDict":["oreRedgraniteInfusedGold"],"name":"注魔金矿石","tr":"注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4324":{"oreDict":["oreRedgraniteNaquadah"],"name":"硅岩矿石","tr":"硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4326":{"oreDict":["oreRedgraniteNaquadahEnriched"],"name":"富集硅岩矿石","tr":"富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4327":{"oreDict":["oreRedgraniteNaquadria"],"name":"超能硅岩矿石","tr":"超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4329":{"oreDict":["oreRedgraniteTritanium"],"name":"三钛矿石","tr":"三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4331":{"oreDict":["oreRedgraniteMithril"],"name":"秘银矿石","tr":"秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4336":{"oreDict":["oreRedgraniteShadowIron"],"name":"暗影铁矿石","tr":"暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4340":{"oreDict":["oreRedgraniteMeteoricIron"],"name":"陨铁矿石","tr":"陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4342":{"oreDict":["oreRedgraniteDarkIron"],"name":"玄铁矿石","tr":"玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4347":{"oreDict":["oreRedgraniteFirestone"],"name":"火石矿石","tr":"火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4368":{"oreDict":["oreRedgraniteShadow"],"name":"暗影金属矿石","tr":"暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4375":{"oreDict":["oreRedgraniteRutile"],"name":"金红石矿石","tr":"金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4382":{"oreDict":["oreRedgraniteArdite"],"name":"阿迪特矿石","tr":"阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4386":{"oreDict":["oreRedgraniteManyullyn"],"name":"玛玉灵矿石","tr":"玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20770":{"name":"贫瘠终末矿石","tr":"贫瘠终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4387":{"oreDict":["oreRedgraniteMytryl"],"name":"深空秘银矿石","tr":"深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4388":{"oreDict":["oreRedgraniteBlackPlutonium"],"name":"黑钚矿石","tr":"黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4389":{"oreDict":["oreRedgraniteCallistoIce"],"name":"木卫四冰矿石","tr":"木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4390":{"oreDict":["oreRedgraniteLedox"],"name":"深铅矿石","tr":"深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4391":{"oreDict":["oreRedgraniteQuantium"],"name":"量子矿石","tr":"量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4392":{"oreDict":["oreRedgraniteDuralumin"],"name":"硬铝矿石","tr":"硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4393":{"oreDict":["oreRedgraniteOriharukon"],"name":"奥利哈钢矿石","tr":"奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4394":{"oreDict":["oreRedgraniteInfinityCatalyst"],"name":"无尽催化剂矿石","tr":"无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4395":{"oreDict":["oreRedgraniteBedrockium"],"name":"基岩矿石","tr":"基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4398":{"oreDict":["oreRedgraniteMysteriousCrystal"],"name":"神秘水晶矿石","tr":"神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20797":{"name":"贫瘠氢化钙矿石","tr":"贫瘠氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20810":{"name":"贫瘠红石矿石","tr":"贫瘠红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20812":{"name":"贫瘠蓝石矿石","tr":"贫瘠蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20817":{"name":"贫瘠盐矿石","tr":"贫瘠盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20820":{"name":"贫瘠铁铝榴石矿石","tr":"贫瘠铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20821":{"name":"贫瘠钙铁榴石矿石","tr":"贫瘠钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20822":{"name":"贫瘠铝土矿矿石","tr":"贫瘠铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20823":{"name":"贫瘠方解石矿石","tr":"贫瘠方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20824":{"name":"贫瘠锡石矿石","tr":"贫瘠锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20825":{"name":"贫瘠铬铁矿矿石","tr":"贫瘠铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20826":{"name":"贫瘠朱砂矿石","tr":"贫瘠朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20827":{"name":"贫瘠辉钴矿矿石","tr":"贫瘠辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20828":{"name":"贫瘠硫铂矿矿石","tr":"贫瘠硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20829":{"name":"贫瘠深渊铁矿石","tr":"贫瘠深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20830":{"name":"贫瘠方铅矿矿石","tr":"贫瘠方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20831":{"name":"贫瘠钙铝榴石矿石","tr":"贫瘠钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20833":{"name":"贫瘠磷酸盐矿石","tr":"贫瘠磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20834":{"name":"贫瘠黄铁矿矿石","tr":"贫瘠黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20835":{"name":"贫瘠镁铝榴石矿石","tr":"贫瘠镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20836":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20838":{"name":"贫瘠锰铝榴石矿石","tr":"贫瘠锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20839":{"name":"贫瘠闪锌矿矿石","tr":"贫瘠闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20840":{"name":"贫瘠黝铜矿矿石","tr":"贫瘠黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20841":{"name":"贫瘠钨酸锂矿石","tr":"贫瘠钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20842":{"name":"贫瘠钙铬榴石矿石","tr":"贫瘠钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20855":{"name":"贫瘠黄铜矿矿石","tr":"贫瘠黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20856":{"name":"贫瘠太阳能级硅(多晶硅)矿石","tr":"贫瘠太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20861":{"name":"贫瘠金刚砂矿石","tr":"贫瘠金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20865":{"name":"贫瘠石墨矿石","tr":"贫瘠石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20868":{"name":"贫瘠三元金属矿石","tr":"贫瘠三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4485":{"oreDict":["oreRedgraniteAlduorite"],"name":"神秘蓝金矿石","tr":"神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20870":{"name":"贫瘠磁铁矿矿石","tr":"贫瘠磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20871":{"name":"贫瘠孔雀石矿石","tr":"贫瘠孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4488":{"oreDict":["oreRedgraniteRubracium"],"name":"褐铜矿石","tr":"褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4489":{"oreDict":["oreRedgraniteVulcanite"],"name":"胶木矿石","tr":"胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20873":{"name":"贫瘠沥青铀矿","tr":"贫瘠沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20877":{"name":"贫瘠皂石矿石","tr":"贫瘠皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20878":{"name":"贫瘠油砂矿石","tr":"贫瘠油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20882":{"name":"贫瘠钼铅矿矿石","tr":"贫瘠钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20883":{"name":"贫瘠钼钙矿矿石","tr":"贫瘠钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4500":{"oreDict":["oreRedgraniteDiamond"],"name":"钻石矿石","tr":"钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20884":{"name":"贫瘠戴斯矿石","tr":"贫瘠戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4501":{"oreDict":["oreRedgraniteEmerald"],"name":"绿宝石矿石","tr":"绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4502":{"oreDict":["oreRedgraniteRuby"],"name":"红宝石矿石","tr":"红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4503":{"oreDict":["oreRedgraniteSapphire"],"name":"蓝宝石矿石","tr":"蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4504":{"oreDict":["oreRedgraniteGreenSapphire"],"name":"绿色蓝宝石矿石","tr":"绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4505":{"oreDict":["oreRedgraniteOlivine"],"name":"橄榄石矿石","tr":"橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4506":{"oreDict":["oreRedgraniteNetherStar"],"name":"下界之星矿石","tr":"下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4507":{"oreDict":["oreRedgraniteTopaz"],"name":"黄玉矿石","tr":"黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4508":{"oreDict":["oreRedgraniteTanzanite"],"name":"坦桑石矿石","tr":"坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4509":{"oreDict":["oreRedgraniteAmethyst"],"name":"紫水晶矿石","tr":"紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4510":{"oreDict":["oreRedgraniteOpal"],"name":"蛋白石矿石","tr":"蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20894":{"name":"贫瘠奶酪矿石","tr":"贫瘠奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4511":{"oreDict":["oreRedgraniteJasper"],"name":"碧玉矿石","tr":"碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4512":{"oreDict":["oreRedgraniteFoolsRuby"],"name":"尖晶石矿石","tr":"尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4513":{"oreDict":["oreRedgraniteBlueTopaz"],"name":"蓝黄玉矿石","tr":"蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4514":{"oreDict":["oreRedgraniteAmber"],"name":"琥珀矿石","tr":"琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4515":{"oreDict":["oreRedgraniteDilithium"],"name":"双锂矿石","tr":"双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4516":{"oreDict":["oreRedgraniteCertusQuartz"],"name":"赛特斯石英矿石","tr":"赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20900":{"name":"贫瘠芒硝矿石","tr":"贫瘠芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4517":{"oreDict":["oreRedgraniteChargedCertusQuartz"],"name":"充能赛特斯石英矿石","tr":"充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20901":{"name":"贫瘠云母矿石","tr":"贫瘠云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4518":{"oreDict":["oreRedgraniteForcicium"],"name":"力之宝石矿石","tr":"力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20902":{"name":"贫瘠滑石","tr":"贫瘠滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4519":{"oreDict":["oreRedgraniteForcillium"],"name":"力场宝石矿石","tr":"力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20903":{"name":"贫瘠天然碱矿石","tr":"贫瘠天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4520":{"oreDict":["oreRedgraniteMonazite"],"name":"独居石矿石","tr":"独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20904":{"name":"贫瘠重晶石矿石","tr":"贫瘠重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4521":{"oreDict":["oreRedgraniteForce"],"name":"力量矿石","tr":"力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20905":{"name":"贫瘠氟碳镧铈矿矿石","tr":"贫瘠氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4522":{"oreDict":["oreRedgraniteNetherQuartz"],"name":"下界石英矿石","tr":"下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20906":{"name":"贫瘠硅镁镍矿矿石","tr":"贫瘠硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4523":{"oreDict":["oreRedgraniteQuartzite"],"name":"石英岩矿石","tr":"石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20907":{"name":"贫瘠锂云母矿石","tr":"贫瘠锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4524":{"oreDict":["oreRedgraniteLazurite"],"name":"蓝金石矿石","tr":"蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20908":{"name":"贫瘠菱镁矿矿石","tr":"贫瘠菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4525":{"oreDict":["oreRedgraniteSodalite"],"name":"方钠石矿石","tr":"方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20909":{"name":"贫瘠镍黄铁矿矿石","tr":"贫瘠镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4526":{"oreDict":["oreRedgraniteLapis"],"name":"青金石矿石","tr":"青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20910":{"name":"贫瘠白钨矿矿石","tr":"贫瘠白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4527":{"oreDict":["oreRedgraniteGarnetRed"],"name":"红石榴石矿石","tr":"红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20911":{"name":"贫瘠明矾石矿石","tr":"贫瘠明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4528":{"oreDict":["oreRedgraniteGarnetYellow"],"name":"黄石榴石矿石","tr":"黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20912":{"name":"贫瘠白石棉矿石","tr":"贫瘠白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4529":{"oreDict":["oreRedgraniteVinteum"],"name":"温特姆矿石","tr":"温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20913":{"name":"贫瘠雄黄矿石","tr":"贫瘠雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4530":{"oreDict":["oreRedgraniteApatite"],"name":"磷灰石矿石","tr":"磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20914":{"name":"贫瘠白云石矿石","tr":"贫瘠白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4531":{"oreDict":["oreRedgraniteNiter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20915":{"name":"贫瘠硅灰石矿石","tr":"贫瘠硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20916":{"name":"贫瘠沸石矿石","tr":"贫瘠沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20917":{"name":"贫瘠带状铁矿矿石","tr":"贫瘠带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4534":{"oreDict":["oreRedgraniteTricalciumPhosphate"],"name":"磷酸三钙矿石","tr":"磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20918":{"name":"贫瘠钛铁矿矿石","tr":"贫瘠钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4535":{"oreDict":["oreRedgraniteCoal"],"name":"煤矿石","tr":"煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20919":{"name":"贫瘠铯榴石矿石","tr":"贫瘠铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20920":{"name":"贫瘠锂辉石矿石","tr":"贫瘠锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4537":{"oreDict":["oreRedgraniteJade"],"name":"玉矿石","tr":"玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20921":{"name":"贫瘠钽铁矿矿石","tr":"贫瘠钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4538":{"oreDict":["oreRedgraniteLignite"],"name":"褐煤矿石","tr":"褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20922":{"name":"贫瘠晶质铀矿矿石","tr":"贫瘠晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20923":{"name":"贫瘠钒磁铁矿矿石","tr":"贫瘠钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4540":{"oreDict":["oreRedgraniteInfusedAir"],"name":"风之蕴魔石","tr":"风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20924":{"name":"贫瘠蓝晶石矿石","tr":"贫瘠蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4541":{"oreDict":["oreRedgraniteInfusedFire"],"name":"火之蕴魔石","tr":"火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20925":{"name":"贫瘠珍珠岩矿石","tr":"贫瘠珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4542":{"oreDict":["oreRedgraniteInfusedEarth"],"name":"地之蕴魔石","tr":"地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20926":{"name":"贫瘠浮岩矿石","tr":"贫瘠浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4543":{"oreDict":["oreRedgraniteInfusedWater"],"name":"水之蕴魔石","tr":"水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20927":{"name":"贫瘠膨润土","tr":"贫瘠膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4544":{"oreDict":["oreRedgraniteInfusedEntropy"],"name":"混沌蕴魔石","tr":"混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20928":{"name":"贫瘠漂白土","tr":"贫瘠漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4545":{"oreDict":["oreRedgraniteInfusedOrder"],"name":"秩序蕴魔石","tr":"秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20929":{"name":"贫瘠高岭石","tr":"贫瘠高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20930":{"name":"贫瘠棕褐铁矿矿石","tr":"贫瘠棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20931":{"name":"贫瘠黄褐铁矿矿石","tr":"贫瘠黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4548":{"oreDict":["oreRedgraniteRoastedIron"],"name":"焙烧铁矿石","tr":"焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20932":{"name":"贫瘠蛭石","tr":"贫瘠蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4549":{"oreDict":["oreRedgraniteRoastedNickel"],"name":"焙烧镍矿石","tr":"焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20933":{"name":"贫瘠海绿石矿石","tr":"贫瘠海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20934":{"name":"贫瘠石膏矿石","tr":"贫瘠石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20935":{"name":"贫瘠玄武岩矿砂","tr":"贫瘠玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20936":{"name":"贫瘠花岗岩矿砂","tr":"贫瘠花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20937":{"name":"贫瘠锡石矿砂","tr":"贫瘠锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20938":{"name":"贫瘠石榴石矿砂","tr":"贫瘠石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20939":{"name":"贫瘠石英矿砂","tr":"贫瘠石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20941":{"name":"贫瘠硼砂矿石","tr":"贫瘠硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20942":{"name":"贫瘠辉钼矿矿石","tr":"贫瘠辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20943":{"name":"贫瘠软锰矿矿石","tr":"贫瘠软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20944":{"name":"贫瘠岩盐矿石","tr":"贫瘠岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20945":{"name":"贫瘠辉锑矿矿石","tr":"贫瘠辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20946":{"name":"贫瘠石棉矿石","tr":"贫瘠石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20948":{"name":"贫瘠硅藻土矿石","tr":"贫瘠硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20949":{"name":"贫瘠海绿石矿砂","tr":"贫瘠海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20951":{"name":"贫瘠幽冥剧毒结晶矿石","tr":"贫瘠幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20952":{"name":"贫瘠暗影秘银矿石","tr":"贫瘠暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20956":{"name":"贫瘠溶火之石矿石","tr":"贫瘠溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20966":{"name":"贫瘠山铜矿石","tr":"贫瘠山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20969":{"name":"贫瘠氟化铝矿石","tr":"贫瘠氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20971":{"name":"贫瘠二硅化钙矿石","tr":"贫瘠二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20975":{"name":"贫瘠龙矿石","tr":"贫瘠龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20976":{"name":"贫瘠觉醒龙矿石","tr":"贫瘠觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20978":{"name":"贫瘠灵宝矿石","tr":"贫瘠灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20982":{"name":"贫瘠宇宙中子态素矿石","tr":"贫瘠宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"20984":{"name":"贫瘠矿石","tr":"贫瘠矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4607":{"oreDict":["oreRedgranitePyrochlore"],"name":"烧绿石矿石","tr":"烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21006":{"name":"贫瘠锂矿石","tr":"贫瘠锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21008":{"name":"贫瘠铍矿石","tr":"贫瘠铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21018":{"name":"贫瘠镁矿石","tr":"贫瘠镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21019":{"name":"贫瘠铝矿石","tr":"贫瘠铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21020":{"name":"贫瘠硅矿石","tr":"贫瘠硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21022":{"name":"贫瘠硫矿石","tr":"贫瘠硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21027":{"name":"贫瘠钪矿石","tr":"贫瘠钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21028":{"name":"贫瘠钛矿石","tr":"贫瘠钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21029":{"name":"贫瘠钒矿石","tr":"贫瘠钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21030":{"name":"贫瘠铬矿石","tr":"贫瘠铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21031":{"name":"贫瘠锰矿石","tr":"贫瘠锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21032":{"name":"贫瘠铁矿石","tr":"贫瘠铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21033":{"name":"贫瘠钴矿石","tr":"贫瘠钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21034":{"name":"贫瘠镍矿石","tr":"贫瘠镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21035":{"name":"贫瘠铜矿石","tr":"贫瘠铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21036":{"name":"贫瘠锌矿石","tr":"贫瘠锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21037":{"name":"贫瘠镓矿石","tr":"贫瘠镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21039":{"name":"贫瘠砷矿石","tr":"贫瘠砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21043":{"name":"贫瘠铷矿石","tr":"贫瘠铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21044":{"name":"贫瘠锶矿石","tr":"贫瘠锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21045":{"name":"贫瘠钇矿石","tr":"贫瘠钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21047":{"name":"贫瘠铌矿石","tr":"贫瘠铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21048":{"name":"贫瘠钼矿石","tr":"贫瘠钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21052":{"name":"贫瘠钯矿石","tr":"贫瘠钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21054":{"name":"贫瘠银矿石","tr":"贫瘠银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21055":{"name":"贫瘠镉矿石","tr":"贫瘠镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21056":{"name":"贫瘠铟矿石","tr":"贫瘠铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21057":{"name":"贫瘠锡矿石","tr":"贫瘠锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21058":{"name":"贫瘠锑矿石","tr":"贫瘠锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21059":{"name":"贫瘠碲矿石","tr":"贫瘠碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21062":{"name":"贫瘠铯矿石","tr":"贫瘠铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21063":{"name":"贫瘠钡矿石","tr":"贫瘠钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21064":{"name":"贫瘠镧矿石","tr":"贫瘠镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21065":{"name":"贫瘠铈矿石","tr":"贫瘠铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21066":{"name":"贫瘠镨矿石","tr":"贫瘠镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21067":{"name":"贫瘠钕矿石","tr":"贫瘠钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21068":{"name":"贫瘠钷矿石","tr":"贫瘠钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21069":{"name":"贫瘠钐矿石","tr":"贫瘠钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21070":{"name":"贫瘠铕矿石","tr":"贫瘠铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21071":{"name":"贫瘠钆矿石","tr":"贫瘠钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21072":{"name":"贫瘠铽矿石","tr":"贫瘠铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21073":{"name":"贫瘠镝矿石","tr":"贫瘠镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21074":{"name":"贫瘠钬矿石","tr":"贫瘠钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21075":{"name":"贫瘠铒矿石","tr":"贫瘠铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21076":{"name":"贫瘠铥矿石","tr":"贫瘠铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21077":{"name":"贫瘠镱矿石","tr":"贫瘠镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21078":{"name":"贫瘠镥矿石","tr":"贫瘠镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21080":{"name":"贫瘠钽矿石","tr":"贫瘠钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21081":{"name":"贫瘠钨矿石","tr":"贫瘠钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21083":{"name":"贫瘠锇矿石","tr":"贫瘠锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4699":{"oreDict":["oreRedgraniteCryolite"],"name":"冰晶石矿石","tr":"冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21084":{"name":"贫瘠铱矿石","tr":"贫瘠铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21085":{"name":"贫瘠铂矿石","tr":"贫瘠铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21086":{"name":"贫瘠金矿石","tr":"贫瘠金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21089":{"name":"贫瘠铅矿石","tr":"贫瘠铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21090":{"name":"贫瘠铋矿石","tr":"贫瘠铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21096":{"name":"贫瘠钍矿石","tr":"贫瘠钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21097":{"name":"贫瘠铀-235矿石","tr":"贫瘠铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21098":{"name":"贫瘠铀-238矿石","tr":"贫瘠铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21100":{"name":"贫瘠钚-239矿石","tr":"贫瘠钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21101":{"name":"贫瘠钚-241矿石","tr":"贫瘠钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21103":{"name":"贫瘠镅矿石","tr":"贫瘠镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21110":{"name":"贫瘠生镃矿石","tr":"贫瘠生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21129":{"name":"贫瘠中子矿石","tr":"贫瘠中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4770":{"oreDict":["oreRedgraniteHeeEndium"],"name":"终末矿石","tr":"终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4797":{"oreDict":["oreRedgraniteCalciumHydride"],"name":"氢化钙矿石","tr":"氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4810":{"oreDict":["oreRedgraniteRedstone"],"name":"红石矿石","tr":"红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4812":{"oreDict":["oreRedgraniteElectrotine"],"name":"蓝石矿石","tr":"蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4817":{"oreDict":["oreRedgraniteSalt"],"name":"盐矿石","tr":"盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4820":{"oreDict":["oreRedgraniteAlmandine"],"name":"铁铝榴石矿石","tr":"铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4821":{"oreDict":["oreRedgraniteAndradite"],"name":"钙铁榴石矿石","tr":"钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4822":{"oreDict":["oreRedgraniteBauxite"],"name":"铝土矿矿石","tr":"铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4823":{"oreDict":["oreRedgraniteCalcite"],"name":"方解石矿石","tr":"方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4824":{"oreDict":["oreRedgraniteCassiterite"],"name":"锡石矿石","tr":"锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4825":{"oreDict":["oreRedgraniteChromite"],"name":"铬铁矿矿石","tr":"铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4826":{"oreDict":["oreRedgraniteCinnabar"],"name":"朱砂矿石","tr":"朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4827":{"oreDict":["oreRedgraniteCobaltite"],"name":"辉钴矿矿石","tr":"辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4828":{"oreDict":["oreRedgraniteCooperite"],"name":"硫铂矿矿石","tr":"硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4829":{"oreDict":["oreRedgraniteDeepIron"],"name":"深渊铁矿石","tr":"深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4830":{"oreDict":["oreRedgraniteGalena"],"name":"方铅矿矿石","tr":"方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4831":{"oreDict":["oreRedgraniteGrossular"],"name":"钙铝榴石矿石","tr":"钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4833":{"oreDict":["oreRedgranitePhosphate"],"name":"磷酸盐矿石","tr":"磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4834":{"oreDict":["oreRedgranitePyrite"],"name":"黄铁矿矿石","tr":"黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4835":{"oreDict":["oreRedgranitePyrope"],"name":"镁铝榴石矿石","tr":"镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4836":{"oreDict":["oreRedgraniteSaltpeter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4838":{"oreDict":["oreRedgraniteSpessartine"],"name":"锰铝榴石矿石","tr":"锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4839":{"oreDict":["oreRedgraniteSphalerite"],"name":"闪锌矿矿石","tr":"闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4840":{"oreDict":["oreRedgraniteTetrahedrite"],"name":"黝铜矿矿石","tr":"黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4841":{"oreDict":["oreRedgraniteTungstate"],"name":"钨酸锂矿石","tr":"钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4842":{"oreDict":["oreRedgraniteUvarovite"],"name":"钙铬榴石矿石","tr":"钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4855":{"oreDict":["oreRedgraniteChalcopyrite"],"name":"黄铜矿矿石","tr":"黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4856":{"oreDict":["oreRedgraniteSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)矿石","tr":"太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4861":{"oreDict":["oreRedgraniteEmery"],"name":"金刚砂矿石","tr":"金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4865":{"oreDict":["oreRedgraniteGraphite"],"name":"石墨矿石","tr":"石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4868":{"oreDict":["oreRedgraniteTrinium"],"name":"三元金属矿石","tr":"三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4870":{"oreDict":["oreRedgraniteMagnetite"],"name":"磁铁矿矿石","tr":"磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4871":{"oreDict":["oreRedgraniteMalachite"],"name":"孔雀石矿石","tr":"孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4873":{"oreDict":["oreRedgranitePitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4877":{"oreDict":["oreRedgraniteSoapstone"],"name":"皂石矿石","tr":"皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4878":{"oreDict":["oreRedgraniteOilsands"],"name":"油砂矿石","tr":"油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4882":{"oreDict":["oreRedgraniteWulfenite"],"name":"钼铅矿矿石","tr":"钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4883":{"oreDict":["oreRedgranitePowellite"],"name":"钼钙矿矿石","tr":"钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4884":{"oreDict":["oreRedgraniteDesh"],"name":"戴斯矿石","tr":"戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4894":{"oreDict":["oreRedgraniteCheese"],"name":"奶酪矿石","tr":"奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4900":{"oreDict":["oreRedgraniteMirabilite"],"name":"芒硝矿石","tr":"芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4901":{"oreDict":["oreRedgraniteMica"],"name":"云母矿石","tr":"云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4902":{"oreDict":["oreRedgraniteTalc"],"name":"滑石","tr":"滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4903":{"oreDict":["oreRedgraniteTrona"],"name":"天然碱矿石","tr":"天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4904":{"oreDict":["oreRedgraniteBarite"],"name":"重晶石矿石","tr":"重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4905":{"oreDict":["oreRedgraniteBastnasite"],"name":"氟碳镧铈矿矿石","tr":"氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4906":{"oreDict":["oreRedgraniteGarnierite"],"name":"硅镁镍矿矿石","tr":"硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4907":{"oreDict":["oreRedgraniteLepidolite"],"name":"锂云母矿石","tr":"锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4908":{"oreDict":["oreRedgraniteMagnesite"],"name":"菱镁矿矿石","tr":"菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4909":{"oreDict":["oreRedgranitePentlandite"],"name":"镍黄铁矿矿石","tr":"镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4910":{"oreDict":["oreRedgraniteScheelite"],"name":"白钨矿矿石","tr":"白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4911":{"oreDict":["oreRedgraniteAlunite"],"name":"明矾石矿石","tr":"明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4912":{"oreDict":["oreRedgraniteChrysotile"],"name":"白石棉矿石","tr":"白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4913":{"oreDict":["oreRedgraniteRealgar"],"name":"雄黄矿石","tr":"雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4914":{"oreDict":["oreRedgraniteDolomite"],"name":"白云石矿石","tr":"白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4915":{"oreDict":["oreRedgraniteWollastonite"],"name":"硅灰石矿石","tr":"硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4916":{"oreDict":["oreRedgraniteZeolite"],"name":"沸石矿石","tr":"沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4917":{"oreDict":["oreRedgraniteBandedIron"],"name":"带状铁矿矿石","tr":"带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4918":{"oreDict":["oreRedgraniteIlmenite"],"name":"钛铁矿矿石","tr":"钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21303":{"name":"贫瘠琥珀金矿石","tr":"贫瘠琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4919":{"oreDict":["oreRedgranitePollucite"],"name":"铯榴石矿石","tr":"铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4920":{"oreDict":["oreRedgraniteSpodumene"],"name":"锂辉石矿石","tr":"锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4921":{"oreDict":["oreRedgraniteTantalite"],"name":"钽铁矿矿石","tr":"钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4922":{"oreDict":["oreRedgraniteUraninite"],"name":"晶质铀矿矿石","tr":"晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21307":{"name":"贫瘠生铁矿石","tr":"贫瘠生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4923":{"oreDict":["oreRedgraniteVanadiumMagnetite"],"name":"钒磁铁矿矿石","tr":"钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4924":{"oreDict":["oreRedgraniteKyanite"],"name":"蓝晶石矿石","tr":"蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4925":{"oreDict":["oreRedgranitePerlite"],"name":"珍珠岩矿石","tr":"珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4926":{"oreDict":["oreRedgranitePumice"],"name":"浮岩矿石","tr":"浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4927":{"oreDict":["oreRedgraniteBentonite"],"name":"膨润土","tr":"膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4928":{"oreDict":["oreRedgraniteFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4929":{"oreDict":["oreRedgraniteKaolinite"],"name":"高岭石","tr":"高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4930":{"oreDict":["oreRedgraniteBrownLimonite"],"name":"棕褐铁矿矿石","tr":"棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4931":{"oreDict":["oreRedgraniteYellowLimonite"],"name":"黄褐铁矿矿石","tr":"黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4932":{"oreDict":["oreRedgraniteVermiculite"],"name":"蛭石","tr":"蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4933":{"oreDict":["oreRedgraniteGlauconite"],"name":"海绿石矿石","tr":"海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4934":{"oreDict":["oreRedgraniteGypsum"],"name":"石膏矿石","tr":"石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21319":{"name":"贫瘠精金矿石","tr":"贫瘠精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4935":{"oreDict":["oreRedgraniteBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21320":{"name":"贫瘠通流琥珀金矿石","tr":"贫瘠通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4936":{"oreDict":["oreRedgraniteGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4937":{"oreDict":["oreRedgraniteCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4938":{"oreDict":["oreRedgraniteGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21323":{"name":"贫瘠注魔金矿石","tr":"贫瘠注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4939":{"oreDict":["oreRedgraniteQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21324":{"name":"贫瘠硅岩矿石","tr":"贫瘠硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4941":{"oreDict":["oreRedgraniteBorax"],"name":"硼砂矿石","tr":"硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21326":{"name":"贫瘠富集硅岩矿石","tr":"贫瘠富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4942":{"oreDict":["oreRedgraniteMolybdenite"],"name":"辉钼矿矿石","tr":"辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21327":{"name":"贫瘠超能硅岩矿石","tr":"贫瘠超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4943":{"oreDict":["oreRedgranitePyrolusite"],"name":"软锰矿矿石","tr":"软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4944":{"oreDict":["oreRedgraniteRockSalt"],"name":"岩盐矿石","tr":"岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21329":{"name":"贫瘠三钛矿石","tr":"贫瘠三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4945":{"oreDict":["oreRedgraniteStibnite"],"name":"辉锑矿矿石","tr":"辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4946":{"oreDict":["oreRedgraniteAsbestos"],"name":"石棉矿石","tr":"石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21331":{"name":"贫瘠秘银矿石","tr":"贫瘠秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4948":{"oreDict":["oreRedgraniteDiatomite"],"name":"硅藻土矿石","tr":"硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4949":{"oreDict":["oreRedgraniteGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4951":{"oreDict":["oreRedgraniteVyroxeres"],"name":"幽冥剧毒结晶矿石","tr":"幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21336":{"name":"贫瘠暗影铁矿石","tr":"贫瘠暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4952":{"oreDict":["oreRedgraniteCeruclase"],"name":"暗影秘银矿石","tr":"暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21340":{"name":"贫瘠陨铁矿石","tr":"贫瘠陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4956":{"oreDict":["oreRedgraniteTartarite"],"name":"溶火之石矿石","tr":"溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21342":{"name":"贫瘠玄铁矿石","tr":"贫瘠玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21347":{"name":"贫瘠火石矿石","tr":"贫瘠火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4966":{"oreDict":["oreRedgraniteOrichalcum"],"name":"山铜矿石","tr":"山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4969":{"oreDict":["oreRedgraniteAluminiumfluoride"],"name":"氟化铝矿石","tr":"氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4971":{"oreDict":["oreRedgraniteCalciumDisilicide"],"name":"二硅化钙矿石","tr":"二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4975":{"oreDict":["oreRedgraniteDraconium"],"name":"龙矿石","tr":"龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4976":{"oreDict":["oreRedgraniteDraconiumAwakened"],"name":"觉醒龙矿石","tr":"觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4978":{"oreDict":["oreRedgraniteIchorium"],"name":"灵宝矿石","tr":"灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4982":{"oreDict":["oreRedgraniteCosmicNeutronium"],"name":"宇宙中子态素矿石","tr":"宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21368":{"name":"贫瘠暗影金属矿石","tr":"贫瘠暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"4984":{"oreDict":["oreRedgraniteFlerovium_GT5U"],"name":"矿石","tr":"矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21375":{"name":"贫瘠金红石矿石","tr":"贫瘠金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21382":{"name":"贫瘠阿迪特矿石","tr":"贫瘠阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21386":{"name":"贫瘠玛玉灵矿石","tr":"贫瘠玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21387":{"name":"贫瘠深空秘银矿石","tr":"贫瘠深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21388":{"name":"贫瘠黑钚矿石","tr":"贫瘠黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21389":{"name":"贫瘠木卫四冰矿石","tr":"贫瘠木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5006":{"oreDict":["oreMarbleLithium"],"name":"锂矿石","tr":"锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21390":{"name":"贫瘠深铅矿石","tr":"贫瘠深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21391":{"name":"贫瘠量子矿石","tr":"贫瘠量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5008":{"oreDict":["oreMarbleBeryllium"],"name":"铍矿石","tr":"铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21392":{"name":"贫瘠硬铝矿石","tr":"贫瘠硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21393":{"name":"贫瘠奥利哈钢矿石","tr":"贫瘠奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21394":{"name":"贫瘠无尽催化剂矿石","tr":"贫瘠无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21395":{"name":"贫瘠基岩矿石","tr":"贫瘠基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21398":{"name":"贫瘠神秘水晶矿石","tr":"贫瘠神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5018":{"oreDict":["oreMarbleMagnesium"],"name":"镁矿石","tr":"镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5019":{"oreDict":["oreMarbleAluminium"],"name":"铝矿石","tr":"铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5020":{"oreDict":["oreMarbleSilicon"],"name":"硅矿石","tr":"硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5022":{"oreDict":["oreMarbleSulfur"],"name":"硫矿石","tr":"硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5027":{"oreDict":["oreMarbleScandium"],"name":"钪矿石","tr":"钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5028":{"oreDict":["oreMarbleTitanium"],"name":"钛矿石","tr":"钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5029":{"oreDict":["oreMarbleVanadium"],"name":"钒矿石","tr":"钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5030":{"oreDict":["oreMarbleChrome"],"name":"铬矿石","tr":"铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5031":{"oreDict":["oreMarbleManganese"],"name":"锰矿石","tr":"锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5032":{"oreDict":["oreMarbleIron"," oreMarbleAnyIron"],"name":"铁矿石","tr":"铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5033":{"oreDict":["oreMarbleCobalt"],"name":"钴矿石","tr":"钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5034":{"oreDict":["oreMarbleNickel"],"name":"镍矿石","tr":"镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5035":{"oreDict":["oreMarbleCopper"," oreMarbleAnyCopper"],"name":"铜矿石","tr":"铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5036":{"oreDict":["oreMarbleZinc"],"name":"锌矿石","tr":"锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5037":{"oreDict":["oreMarbleGallium"],"name":"镓矿石","tr":"镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5039":{"oreDict":["oreMarbleArsenic"],"name":"砷矿石","tr":"砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5043":{"oreDict":["oreMarbleRubidium"],"name":"铷矿石","tr":"铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5044":{"oreDict":["oreMarbleStrontium"],"name":"锶矿石","tr":"锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5045":{"oreDict":["oreMarbleYttrium"],"name":"钇矿石","tr":"钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5047":{"oreDict":["oreMarbleNiobium"],"name":"铌矿石","tr":"铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5048":{"oreDict":["oreMarbleMolybdenum"],"name":"钼矿石","tr":"钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5052":{"oreDict":["oreMarblePalladium"],"name":"钯矿石","tr":"钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5054":{"oreDict":["oreMarbleSilver"],"name":"银矿石","tr":"银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5055":{"oreDict":["oreMarbleCadmium"],"name":"镉矿石","tr":"镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5056":{"oreDict":["oreMarbleIndium"],"name":"铟矿石","tr":"铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5057":{"oreDict":["oreMarbleTin"],"name":"锡矿石","tr":"锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5058":{"oreDict":["oreMarbleAntimony"],"name":"锑矿石","tr":"锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5059":{"oreDict":["oreMarbleTellurium"],"name":"碲矿石","tr":"碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5062":{"oreDict":["oreMarbleCaesium"],"name":"铯矿石","tr":"铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5063":{"oreDict":["oreMarbleBarium"],"name":"钡矿石","tr":"钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5064":{"oreDict":["oreMarbleLanthanum"],"name":"镧矿石","tr":"镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5065":{"oreDict":["oreMarbleCerium"],"name":"铈矿石","tr":"铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5066":{"oreDict":["oreMarblePraseodymium"],"name":"镨矿石","tr":"镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5067":{"oreDict":["oreMarbleNeodymium"],"name":"钕矿石","tr":"钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5068":{"oreDict":["oreMarblePromethium"],"name":"钷矿石","tr":"钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5069":{"oreDict":["oreMarbleSamarium"],"name":"钐矿石","tr":"钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5070":{"oreDict":["oreMarbleEuropium"],"name":"铕矿石","tr":"铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5071":{"oreDict":["oreMarbleGadolinium"],"name":"钆矿石","tr":"钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5072":{"oreDict":["oreMarbleTerbium"],"name":"铽矿石","tr":"铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5073":{"oreDict":["oreMarbleDysprosium"],"name":"镝矿石","tr":"镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5074":{"oreDict":["oreMarbleHolmium"],"name":"钬矿石","tr":"钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5075":{"oreDict":["oreMarbleErbium"],"name":"铒矿石","tr":"铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5076":{"oreDict":["oreMarbleThulium"],"name":"铥矿石","tr":"铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5077":{"oreDict":["oreMarbleYtterbium"],"name":"镱矿石","tr":"镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5078":{"oreDict":["oreMarbleLutetium"],"name":"镥矿石","tr":"镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5080":{"oreDict":["oreMarbleTantalum"],"name":"钽矿石","tr":"钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5081":{"oreDict":["oreMarbleTungsten"],"name":"钨矿石","tr":"钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5083":{"oreDict":["oreMarbleOsmium"],"name":"锇矿石","tr":"锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5084":{"oreDict":["oreMarbleIridium"],"name":"铱矿石","tr":"铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5085":{"oreDict":["oreMarblePlatinum"],"name":"铂矿石","tr":"铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5086":{"oreDict":["oreMarbleGold"],"name":"金矿石","tr":"金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5089":{"oreDict":["oreMarbleLead"],"name":"铅矿石","tr":"铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5090":{"oreDict":["oreMarbleBismuth"],"name":"铋矿石","tr":"铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5096":{"oreDict":["oreMarbleThorium"],"name":"钍矿石","tr":"钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5097":{"oreDict":["oreMarbleUranium235"],"name":"铀-235矿石","tr":"铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5098":{"oreDict":["oreMarbleUranium"],"name":"铀-238矿石","tr":"铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5100":{"oreDict":["oreMarblePlutonium"],"name":"钚-239矿石","tr":"钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5101":{"oreDict":["oreMarblePlutonium241"],"name":"钚-241矿石","tr":"钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21485":{"name":"贫瘠神秘蓝金矿石","tr":"贫瘠神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5103":{"oreDict":["oreMarbleAmericium"],"name":"镅矿石","tr":"镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21488":{"name":"贫瘠褐铜矿石","tr":"贫瘠褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21489":{"name":"贫瘠胶木矿石","tr":"贫瘠胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5110":{"oreDict":["oreMarbleTengamRaw"],"name":"生镃矿石","tr":"生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21500":{"name":"贫瘠钻石矿石","tr":"贫瘠钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21501":{"name":"贫瘠绿宝石矿石","tr":"贫瘠绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21502":{"name":"贫瘠红宝石矿石","tr":"贫瘠红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21503":{"name":"贫瘠蓝宝石矿石","tr":"贫瘠蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21504":{"name":"贫瘠绿色蓝宝石矿石","tr":"贫瘠绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21505":{"name":"贫瘠橄榄石矿石","tr":"贫瘠橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21506":{"name":"贫瘠下界之星矿石","tr":"贫瘠下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21507":{"name":"贫瘠黄玉矿石","tr":"贫瘠黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21508":{"name":"贫瘠坦桑石矿石","tr":"贫瘠坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21509":{"name":"贫瘠紫水晶矿石","tr":"贫瘠紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21510":{"name":"贫瘠蛋白石矿石","tr":"贫瘠蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21511":{"name":"贫瘠碧玉矿石","tr":"贫瘠碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21512":{"name":"贫瘠尖晶石矿石","tr":"贫瘠尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5129":{"oreDict":["oreMarbleNeutronium"],"name":"中子矿石","tr":"中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21513":{"name":"贫瘠蓝黄玉矿石","tr":"贫瘠蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21514":{"name":"贫瘠琥珀矿石","tr":"贫瘠琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21515":{"name":"贫瘠双锂矿石","tr":"贫瘠双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21516":{"name":"贫瘠赛特斯石英矿石","tr":"贫瘠赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21517":{"name":"贫瘠充能赛特斯石英矿石","tr":"贫瘠充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21518":{"name":"贫瘠力之宝石矿石","tr":"贫瘠力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21519":{"name":"贫瘠力场宝石矿石","tr":"贫瘠力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21520":{"name":"贫瘠独居石矿石","tr":"贫瘠独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21521":{"name":"贫瘠力量矿石","tr":"贫瘠力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21522":{"name":"贫瘠下界石英矿石","tr":"贫瘠下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21523":{"name":"贫瘠石英岩矿石","tr":"贫瘠石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21524":{"name":"贫瘠蓝金石矿石","tr":"贫瘠蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21525":{"name":"贫瘠方钠石矿石","tr":"贫瘠方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21526":{"name":"贫瘠青金石矿石","tr":"贫瘠青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21527":{"name":"贫瘠红石榴石矿石","tr":"贫瘠红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21528":{"name":"贫瘠黄石榴石矿石","tr":"贫瘠黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21529":{"name":"贫瘠温特姆矿石","tr":"贫瘠温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21530":{"name":"贫瘠磷灰石矿石","tr":"贫瘠磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21531":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21534":{"name":"贫瘠磷酸三钙矿石","tr":"贫瘠磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21535":{"name":"贫瘠煤矿石","tr":"贫瘠煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21537":{"name":"贫瘠玉矿石","tr":"贫瘠玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21538":{"name":"贫瘠褐煤矿石","tr":"贫瘠褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21540":{"name":"贫瘠风之蕴魔石","tr":"贫瘠风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21541":{"name":"贫瘠火之蕴魔石","tr":"贫瘠火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21542":{"name":"贫瘠地之蕴魔石","tr":"贫瘠地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21543":{"name":"贫瘠水之蕴魔石","tr":"贫瘠水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21544":{"name":"贫瘠混沌蕴魔石","tr":"贫瘠混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21545":{"name":"贫瘠秩序蕴魔石","tr":"贫瘠秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21548":{"name":"贫瘠焙烧铁矿石","tr":"贫瘠焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21549":{"name":"贫瘠焙烧镍矿石","tr":"贫瘠焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21607":{"name":"贫瘠烧绿石矿石","tr":"贫瘠烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5303":{"oreDict":["oreMarbleElectrum"],"name":"琥珀金矿石","tr":"琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5307":{"oreDict":["oreMarbleAnyIron"," oreMarblePigIron"],"name":"生铁矿石","tr":"生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21699":{"name":"贫瘠冰晶石矿石","tr":"贫瘠冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5319":{"oreDict":["oreMarbleAdamantium"],"name":"精金矿石","tr":"精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5320":{"oreDict":["oreMarbleElectrumFlux"],"name":"通流琥珀金矿石","tr":"通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5323":{"oreDict":["oreMarbleInfusedGold"],"name":"注魔金矿石","tr":"注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5324":{"oreDict":["oreMarbleNaquadah"],"name":"硅岩矿石","tr":"硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5326":{"oreDict":["oreMarbleNaquadahEnriched"],"name":"富集硅岩矿石","tr":"富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5327":{"oreDict":["oreMarbleNaquadria"],"name":"超能硅岩矿石","tr":"超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5329":{"oreDict":["oreMarbleTritanium"],"name":"三钛矿石","tr":"三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5331":{"oreDict":["oreMarbleMithril"],"name":"秘银矿石","tr":"秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5336":{"oreDict":["oreMarbleShadowIron"],"name":"暗影铁矿石","tr":"暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5340":{"oreDict":["oreMarbleMeteoricIron"],"name":"陨铁矿石","tr":"陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5342":{"oreDict":["oreMarbleDarkIron"],"name":"玄铁矿石","tr":"玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5347":{"oreDict":["oreMarbleFirestone"],"name":"火石矿石","tr":"火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5368":{"oreDict":["oreMarbleShadow"],"name":"暗影金属矿石","tr":"暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5375":{"oreDict":["oreMarbleRutile"],"name":"金红石矿石","tr":"金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5382":{"oreDict":["oreMarbleArdite"],"name":"阿迪特矿石","tr":"阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5386":{"oreDict":["oreMarbleManyullyn"],"name":"玛玉灵矿石","tr":"玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21770":{"name":"贫瘠终末矿石","tr":"贫瘠终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5387":{"oreDict":["oreMarbleMytryl"],"name":"深空秘银矿石","tr":"深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5388":{"oreDict":["oreMarbleBlackPlutonium"],"name":"黑钚矿石","tr":"黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5389":{"oreDict":["oreMarbleCallistoIce"],"name":"木卫四冰矿石","tr":"木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5390":{"oreDict":["oreMarbleLedox"],"name":"深铅矿石","tr":"深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5391":{"oreDict":["oreMarbleQuantium"],"name":"量子矿石","tr":"量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5392":{"oreDict":["oreMarbleDuralumin"],"name":"硬铝矿石","tr":"硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5393":{"oreDict":["oreMarbleOriharukon"],"name":"奥利哈钢矿石","tr":"奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5394":{"oreDict":["oreMarbleInfinityCatalyst"],"name":"无尽催化剂矿石","tr":"无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5395":{"oreDict":["oreMarbleBedrockium"],"name":"基岩矿石","tr":"基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5398":{"oreDict":["oreMarbleMysteriousCrystal"],"name":"神秘水晶矿石","tr":"神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21797":{"name":"贫瘠氢化钙矿石","tr":"贫瘠氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21810":{"name":"贫瘠红石矿石","tr":"贫瘠红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21812":{"name":"贫瘠蓝石矿石","tr":"贫瘠蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21817":{"name":"贫瘠盐矿石","tr":"贫瘠盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21820":{"name":"贫瘠铁铝榴石矿石","tr":"贫瘠铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21821":{"name":"贫瘠钙铁榴石矿石","tr":"贫瘠钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21822":{"name":"贫瘠铝土矿矿石","tr":"贫瘠铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21823":{"name":"贫瘠方解石矿石","tr":"贫瘠方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21824":{"name":"贫瘠锡石矿石","tr":"贫瘠锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21825":{"name":"贫瘠铬铁矿矿石","tr":"贫瘠铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21826":{"name":"贫瘠朱砂矿石","tr":"贫瘠朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21827":{"name":"贫瘠辉钴矿矿石","tr":"贫瘠辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21828":{"name":"贫瘠硫铂矿矿石","tr":"贫瘠硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21829":{"name":"贫瘠深渊铁矿石","tr":"贫瘠深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21830":{"name":"贫瘠方铅矿矿石","tr":"贫瘠方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21831":{"name":"贫瘠钙铝榴石矿石","tr":"贫瘠钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21833":{"name":"贫瘠磷酸盐矿石","tr":"贫瘠磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21834":{"name":"贫瘠黄铁矿矿石","tr":"贫瘠黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21835":{"name":"贫瘠镁铝榴石矿石","tr":"贫瘠镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21836":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21838":{"name":"贫瘠锰铝榴石矿石","tr":"贫瘠锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21839":{"name":"贫瘠闪锌矿矿石","tr":"贫瘠闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21840":{"name":"贫瘠黝铜矿矿石","tr":"贫瘠黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21841":{"name":"贫瘠钨酸锂矿石","tr":"贫瘠钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21842":{"name":"贫瘠钙铬榴石矿石","tr":"贫瘠钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21855":{"name":"贫瘠黄铜矿矿石","tr":"贫瘠黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21856":{"name":"贫瘠太阳能级硅(多晶硅)矿石","tr":"贫瘠太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21861":{"name":"贫瘠金刚砂矿石","tr":"贫瘠金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21865":{"name":"贫瘠石墨矿石","tr":"贫瘠石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21868":{"name":"贫瘠三元金属矿石","tr":"贫瘠三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5485":{"oreDict":["oreMarbleAlduorite"],"name":"神秘蓝金矿石","tr":"神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21870":{"name":"贫瘠磁铁矿矿石","tr":"贫瘠磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21871":{"name":"贫瘠孔雀石矿石","tr":"贫瘠孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5488":{"oreDict":["oreMarbleRubracium"],"name":"褐铜矿石","tr":"褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5489":{"oreDict":["oreMarbleVulcanite"],"name":"胶木矿石","tr":"胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21873":{"name":"贫瘠沥青铀矿","tr":"贫瘠沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21877":{"name":"贫瘠皂石矿石","tr":"贫瘠皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21878":{"name":"贫瘠油砂矿石","tr":"贫瘠油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21882":{"name":"贫瘠钼铅矿矿石","tr":"贫瘠钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21883":{"name":"贫瘠钼钙矿矿石","tr":"贫瘠钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5500":{"oreDict":["oreMarbleDiamond"],"name":"钻石矿石","tr":"钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21884":{"name":"贫瘠戴斯矿石","tr":"贫瘠戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5501":{"oreDict":["oreMarbleEmerald"],"name":"绿宝石矿石","tr":"绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5502":{"oreDict":["oreMarbleRuby"],"name":"红宝石矿石","tr":"红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5503":{"oreDict":["oreMarbleSapphire"],"name":"蓝宝石矿石","tr":"蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5504":{"oreDict":["oreMarbleGreenSapphire"],"name":"绿色蓝宝石矿石","tr":"绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5505":{"oreDict":["oreMarbleOlivine"],"name":"橄榄石矿石","tr":"橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5506":{"oreDict":["oreMarbleNetherStar"],"name":"下界之星矿石","tr":"下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5507":{"oreDict":["oreMarbleTopaz"],"name":"黄玉矿石","tr":"黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5508":{"oreDict":["oreMarbleTanzanite"],"name":"坦桑石矿石","tr":"坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5509":{"oreDict":["oreMarbleAmethyst"],"name":"紫水晶矿石","tr":"紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5510":{"oreDict":["oreMarbleOpal"],"name":"蛋白石矿石","tr":"蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21894":{"name":"贫瘠奶酪矿石","tr":"贫瘠奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5511":{"oreDict":["oreMarbleJasper"],"name":"碧玉矿石","tr":"碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5512":{"oreDict":["oreMarbleFoolsRuby"],"name":"尖晶石矿石","tr":"尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5513":{"oreDict":["oreMarbleBlueTopaz"],"name":"蓝黄玉矿石","tr":"蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5514":{"oreDict":["oreMarbleAmber"],"name":"琥珀矿石","tr":"琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5515":{"oreDict":["oreMarbleDilithium"],"name":"双锂矿石","tr":"双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5516":{"oreDict":["oreMarbleCertusQuartz"],"name":"赛特斯石英矿石","tr":"赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21900":{"name":"贫瘠芒硝矿石","tr":"贫瘠芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5517":{"oreDict":["oreMarbleChargedCertusQuartz"],"name":"充能赛特斯石英矿石","tr":"充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21901":{"name":"贫瘠云母矿石","tr":"贫瘠云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5518":{"oreDict":["oreMarbleForcicium"],"name":"力之宝石矿石","tr":"力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21902":{"name":"贫瘠滑石","tr":"贫瘠滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5519":{"oreDict":["oreMarbleForcillium"],"name":"力场宝石矿石","tr":"力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21903":{"name":"贫瘠天然碱矿石","tr":"贫瘠天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5520":{"oreDict":["oreMarbleMonazite"],"name":"独居石矿石","tr":"独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21904":{"name":"贫瘠重晶石矿石","tr":"贫瘠重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5521":{"oreDict":["oreMarbleForce"],"name":"力量矿石","tr":"力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21905":{"name":"贫瘠氟碳镧铈矿矿石","tr":"贫瘠氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5522":{"oreDict":["oreMarbleNetherQuartz"],"name":"下界石英矿石","tr":"下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21906":{"name":"贫瘠硅镁镍矿矿石","tr":"贫瘠硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5523":{"oreDict":["oreMarbleQuartzite"],"name":"石英岩矿石","tr":"石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21907":{"name":"贫瘠锂云母矿石","tr":"贫瘠锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5524":{"oreDict":["oreMarbleLazurite"],"name":"蓝金石矿石","tr":"蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21908":{"name":"贫瘠菱镁矿矿石","tr":"贫瘠菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5525":{"oreDict":["oreMarbleSodalite"],"name":"方钠石矿石","tr":"方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21909":{"name":"贫瘠镍黄铁矿矿石","tr":"贫瘠镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5526":{"oreDict":["oreMarbleLapis"],"name":"青金石矿石","tr":"青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21910":{"name":"贫瘠白钨矿矿石","tr":"贫瘠白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5527":{"oreDict":["oreMarbleGarnetRed"],"name":"红石榴石矿石","tr":"红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21911":{"name":"贫瘠明矾石矿石","tr":"贫瘠明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5528":{"oreDict":["oreMarbleGarnetYellow"],"name":"黄石榴石矿石","tr":"黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21912":{"name":"贫瘠白石棉矿石","tr":"贫瘠白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5529":{"oreDict":["oreMarbleVinteum"],"name":"温特姆矿石","tr":"温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21913":{"name":"贫瘠雄黄矿石","tr":"贫瘠雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5530":{"oreDict":["oreMarbleApatite"],"name":"磷灰石矿石","tr":"磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21914":{"name":"贫瘠白云石矿石","tr":"贫瘠白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5531":{"oreDict":["oreMarbleNiter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21915":{"name":"贫瘠硅灰石矿石","tr":"贫瘠硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21916":{"name":"贫瘠沸石矿石","tr":"贫瘠沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21917":{"name":"贫瘠带状铁矿矿石","tr":"贫瘠带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5534":{"oreDict":["oreMarbleTricalciumPhosphate"],"name":"磷酸三钙矿石","tr":"磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21918":{"name":"贫瘠钛铁矿矿石","tr":"贫瘠钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5535":{"oreDict":["oreMarbleCoal"],"name":"煤矿石","tr":"煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21919":{"name":"贫瘠铯榴石矿石","tr":"贫瘠铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21920":{"name":"贫瘠锂辉石矿石","tr":"贫瘠锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5537":{"oreDict":["oreMarbleJade"],"name":"玉矿石","tr":"玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21921":{"name":"贫瘠钽铁矿矿石","tr":"贫瘠钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5538":{"oreDict":["oreMarbleLignite"],"name":"褐煤矿石","tr":"褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21922":{"name":"贫瘠晶质铀矿矿石","tr":"贫瘠晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21923":{"name":"贫瘠钒磁铁矿矿石","tr":"贫瘠钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5540":{"oreDict":["oreMarbleInfusedAir"],"name":"风之蕴魔石","tr":"风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21924":{"name":"贫瘠蓝晶石矿石","tr":"贫瘠蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5541":{"oreDict":["oreMarbleInfusedFire"],"name":"火之蕴魔石","tr":"火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21925":{"name":"贫瘠珍珠岩矿石","tr":"贫瘠珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5542":{"oreDict":["oreMarbleInfusedEarth"],"name":"地之蕴魔石","tr":"地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21926":{"name":"贫瘠浮岩矿石","tr":"贫瘠浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5543":{"oreDict":["oreMarbleInfusedWater"],"name":"水之蕴魔石","tr":"水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21927":{"name":"贫瘠膨润土","tr":"贫瘠膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5544":{"oreDict":["oreMarbleInfusedEntropy"],"name":"混沌蕴魔石","tr":"混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21928":{"name":"贫瘠漂白土","tr":"贫瘠漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5545":{"oreDict":["oreMarbleInfusedOrder"],"name":"秩序蕴魔石","tr":"秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21929":{"name":"贫瘠高岭石","tr":"贫瘠高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21930":{"name":"贫瘠棕褐铁矿矿石","tr":"贫瘠棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21931":{"name":"贫瘠黄褐铁矿矿石","tr":"贫瘠黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5548":{"oreDict":["oreMarbleRoastedIron"],"name":"焙烧铁矿石","tr":"焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21932":{"name":"贫瘠蛭石","tr":"贫瘠蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5549":{"oreDict":["oreMarbleRoastedNickel"],"name":"焙烧镍矿石","tr":"焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21933":{"name":"贫瘠海绿石矿石","tr":"贫瘠海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21934":{"name":"贫瘠石膏矿石","tr":"贫瘠石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21935":{"name":"贫瘠玄武岩矿砂","tr":"贫瘠玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21936":{"name":"贫瘠花岗岩矿砂","tr":"贫瘠花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21937":{"name":"贫瘠锡石矿砂","tr":"贫瘠锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21938":{"name":"贫瘠石榴石矿砂","tr":"贫瘠石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21939":{"name":"贫瘠石英矿砂","tr":"贫瘠石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21941":{"name":"贫瘠硼砂矿石","tr":"贫瘠硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21942":{"name":"贫瘠辉钼矿矿石","tr":"贫瘠辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21943":{"name":"贫瘠软锰矿矿石","tr":"贫瘠软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21944":{"name":"贫瘠岩盐矿石","tr":"贫瘠岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21945":{"name":"贫瘠辉锑矿矿石","tr":"贫瘠辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21946":{"name":"贫瘠石棉矿石","tr":"贫瘠石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21948":{"name":"贫瘠硅藻土矿石","tr":"贫瘠硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21949":{"name":"贫瘠海绿石矿砂","tr":"贫瘠海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21951":{"name":"贫瘠幽冥剧毒结晶矿石","tr":"贫瘠幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21952":{"name":"贫瘠暗影秘银矿石","tr":"贫瘠暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21956":{"name":"贫瘠溶火之石矿石","tr":"贫瘠溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21966":{"name":"贫瘠山铜矿石","tr":"贫瘠山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21969":{"name":"贫瘠氟化铝矿石","tr":"贫瘠氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21971":{"name":"贫瘠二硅化钙矿石","tr":"贫瘠二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21975":{"name":"贫瘠龙矿石","tr":"贫瘠龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21976":{"name":"贫瘠觉醒龙矿石","tr":"贫瘠觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21978":{"name":"贫瘠灵宝矿石","tr":"贫瘠灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21982":{"name":"贫瘠宇宙中子态素矿石","tr":"贫瘠宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"21984":{"name":"贫瘠矿石","tr":"贫瘠矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5607":{"oreDict":["oreMarblePyrochlore"],"name":"烧绿石矿石","tr":"烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22006":{"name":"贫瘠锂矿石","tr":"贫瘠锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22008":{"name":"贫瘠铍矿石","tr":"贫瘠铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22018":{"name":"贫瘠镁矿石","tr":"贫瘠镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22019":{"name":"贫瘠铝矿石","tr":"贫瘠铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22020":{"name":"贫瘠硅矿石","tr":"贫瘠硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22022":{"name":"贫瘠硫矿石","tr":"贫瘠硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22027":{"name":"贫瘠钪矿石","tr":"贫瘠钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22028":{"name":"贫瘠钛矿石","tr":"贫瘠钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22029":{"name":"贫瘠钒矿石","tr":"贫瘠钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22030":{"name":"贫瘠铬矿石","tr":"贫瘠铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22031":{"name":"贫瘠锰矿石","tr":"贫瘠锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22032":{"name":"贫瘠铁矿石","tr":"贫瘠铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22033":{"name":"贫瘠钴矿石","tr":"贫瘠钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22034":{"name":"贫瘠镍矿石","tr":"贫瘠镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22035":{"name":"贫瘠铜矿石","tr":"贫瘠铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22036":{"name":"贫瘠锌矿石","tr":"贫瘠锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22037":{"name":"贫瘠镓矿石","tr":"贫瘠镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22039":{"name":"贫瘠砷矿石","tr":"贫瘠砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22043":{"name":"贫瘠铷矿石","tr":"贫瘠铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22044":{"name":"贫瘠锶矿石","tr":"贫瘠锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22045":{"name":"贫瘠钇矿石","tr":"贫瘠钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22047":{"name":"贫瘠铌矿石","tr":"贫瘠铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22048":{"name":"贫瘠钼矿石","tr":"贫瘠钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22052":{"name":"贫瘠钯矿石","tr":"贫瘠钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22054":{"name":"贫瘠银矿石","tr":"贫瘠银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22055":{"name":"贫瘠镉矿石","tr":"贫瘠镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22056":{"name":"贫瘠铟矿石","tr":"贫瘠铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22057":{"name":"贫瘠锡矿石","tr":"贫瘠锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22058":{"name":"贫瘠锑矿石","tr":"贫瘠锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22059":{"name":"贫瘠碲矿石","tr":"贫瘠碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22062":{"name":"贫瘠铯矿石","tr":"贫瘠铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22063":{"name":"贫瘠钡矿石","tr":"贫瘠钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22064":{"name":"贫瘠镧矿石","tr":"贫瘠镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22065":{"name":"贫瘠铈矿石","tr":"贫瘠铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22066":{"name":"贫瘠镨矿石","tr":"贫瘠镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22067":{"name":"贫瘠钕矿石","tr":"贫瘠钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22068":{"name":"贫瘠钷矿石","tr":"贫瘠钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22069":{"name":"贫瘠钐矿石","tr":"贫瘠钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22070":{"name":"贫瘠铕矿石","tr":"贫瘠铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22071":{"name":"贫瘠钆矿石","tr":"贫瘠钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22072":{"name":"贫瘠铽矿石","tr":"贫瘠铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22073":{"name":"贫瘠镝矿石","tr":"贫瘠镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22074":{"name":"贫瘠钬矿石","tr":"贫瘠钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22075":{"name":"贫瘠铒矿石","tr":"贫瘠铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22076":{"name":"贫瘠铥矿石","tr":"贫瘠铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22077":{"name":"贫瘠镱矿石","tr":"贫瘠镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22078":{"name":"贫瘠镥矿石","tr":"贫瘠镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22080":{"name":"贫瘠钽矿石","tr":"贫瘠钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22081":{"name":"贫瘠钨矿石","tr":"贫瘠钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22083":{"name":"贫瘠锇矿石","tr":"贫瘠锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5699":{"oreDict":["oreMarbleCryolite"],"name":"冰晶石矿石","tr":"冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22084":{"name":"贫瘠铱矿石","tr":"贫瘠铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22085":{"name":"贫瘠铂矿石","tr":"贫瘠铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22086":{"name":"贫瘠金矿石","tr":"贫瘠金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22089":{"name":"贫瘠铅矿石","tr":"贫瘠铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22090":{"name":"贫瘠铋矿石","tr":"贫瘠铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22096":{"name":"贫瘠钍矿石","tr":"贫瘠钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22097":{"name":"贫瘠铀-235矿石","tr":"贫瘠铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22098":{"name":"贫瘠铀-238矿石","tr":"贫瘠铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22100":{"name":"贫瘠钚-239矿石","tr":"贫瘠钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22101":{"name":"贫瘠钚-241矿石","tr":"贫瘠钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22103":{"name":"贫瘠镅矿石","tr":"贫瘠镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22110":{"name":"贫瘠生镃矿石","tr":"贫瘠生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22129":{"name":"贫瘠中子矿石","tr":"贫瘠中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5770":{"oreDict":["oreMarbleHeeEndium"],"name":"终末矿石","tr":"终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5797":{"oreDict":["oreMarbleCalciumHydride"],"name":"氢化钙矿石","tr":"氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5810":{"oreDict":["oreMarbleRedstone"],"name":"红石矿石","tr":"红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5812":{"oreDict":["oreMarbleElectrotine"],"name":"蓝石矿石","tr":"蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5817":{"oreDict":["oreMarbleSalt"],"name":"盐矿石","tr":"盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5820":{"oreDict":["oreMarbleAlmandine"],"name":"铁铝榴石矿石","tr":"铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5821":{"oreDict":["oreMarbleAndradite"],"name":"钙铁榴石矿石","tr":"钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5822":{"oreDict":["oreMarbleBauxite"],"name":"铝土矿矿石","tr":"铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5823":{"oreDict":["oreMarbleCalcite"],"name":"方解石矿石","tr":"方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5824":{"oreDict":["oreMarbleCassiterite"],"name":"锡石矿石","tr":"锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5825":{"oreDict":["oreMarbleChromite"],"name":"铬铁矿矿石","tr":"铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5826":{"oreDict":["oreMarbleCinnabar"],"name":"朱砂矿石","tr":"朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5827":{"oreDict":["oreMarbleCobaltite"],"name":"辉钴矿矿石","tr":"辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5828":{"oreDict":["oreMarbleCooperite"],"name":"硫铂矿矿石","tr":"硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5829":{"oreDict":["oreMarbleDeepIron"],"name":"深渊铁矿石","tr":"深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5830":{"oreDict":["oreMarbleGalena"],"name":"方铅矿矿石","tr":"方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5831":{"oreDict":["oreMarbleGrossular"],"name":"钙铝榴石矿石","tr":"钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5833":{"oreDict":["oreMarblePhosphate"],"name":"磷酸盐矿石","tr":"磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5834":{"oreDict":["oreMarblePyrite"],"name":"黄铁矿矿石","tr":"黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5835":{"oreDict":["oreMarblePyrope"],"name":"镁铝榴石矿石","tr":"镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5836":{"oreDict":["oreMarbleSaltpeter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5838":{"oreDict":["oreMarbleSpessartine"],"name":"锰铝榴石矿石","tr":"锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5839":{"oreDict":["oreMarbleSphalerite"],"name":"闪锌矿矿石","tr":"闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5840":{"oreDict":["oreMarbleTetrahedrite"],"name":"黝铜矿矿石","tr":"黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5841":{"oreDict":["oreMarbleTungstate"],"name":"钨酸锂矿石","tr":"钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5842":{"oreDict":["oreMarbleUvarovite"],"name":"钙铬榴石矿石","tr":"钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5855":{"oreDict":["oreMarbleChalcopyrite"],"name":"黄铜矿矿石","tr":"黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5856":{"oreDict":["oreMarbleSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)矿石","tr":"太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5861":{"oreDict":["oreMarbleEmery"],"name":"金刚砂矿石","tr":"金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5865":{"oreDict":["oreMarbleGraphite"],"name":"石墨矿石","tr":"石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5868":{"oreDict":["oreMarbleTrinium"],"name":"三元金属矿石","tr":"三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5870":{"oreDict":["oreMarbleMagnetite"],"name":"磁铁矿矿石","tr":"磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5871":{"oreDict":["oreMarbleMalachite"],"name":"孔雀石矿石","tr":"孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5873":{"oreDict":["oreMarblePitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5877":{"oreDict":["oreMarbleSoapstone"],"name":"皂石矿石","tr":"皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5878":{"oreDict":["oreMarbleOilsands"],"name":"油砂矿石","tr":"油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5882":{"oreDict":["oreMarbleWulfenite"],"name":"钼铅矿矿石","tr":"钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5883":{"oreDict":["oreMarblePowellite"],"name":"钼钙矿矿石","tr":"钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5884":{"oreDict":["oreMarbleDesh"],"name":"戴斯矿石","tr":"戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5894":{"oreDict":["oreMarbleCheese"],"name":"奶酪矿石","tr":"奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5900":{"oreDict":["oreMarbleMirabilite"],"name":"芒硝矿石","tr":"芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5901":{"oreDict":["oreMarbleMica"],"name":"云母矿石","tr":"云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5902":{"oreDict":["oreMarbleTalc"],"name":"滑石","tr":"滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5903":{"oreDict":["oreMarbleTrona"],"name":"天然碱矿石","tr":"天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5904":{"oreDict":["oreMarbleBarite"],"name":"重晶石矿石","tr":"重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5905":{"oreDict":["oreMarbleBastnasite"],"name":"氟碳镧铈矿矿石","tr":"氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5906":{"oreDict":["oreMarbleGarnierite"],"name":"硅镁镍矿矿石","tr":"硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5907":{"oreDict":["oreMarbleLepidolite"],"name":"锂云母矿石","tr":"锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5908":{"oreDict":["oreMarbleMagnesite"],"name":"菱镁矿矿石","tr":"菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5909":{"oreDict":["oreMarblePentlandite"],"name":"镍黄铁矿矿石","tr":"镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5910":{"oreDict":["oreMarbleScheelite"],"name":"白钨矿矿石","tr":"白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5911":{"oreDict":["oreMarbleAlunite"],"name":"明矾石矿石","tr":"明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5912":{"oreDict":["oreMarbleChrysotile"],"name":"白石棉矿石","tr":"白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5913":{"oreDict":["oreMarbleRealgar"],"name":"雄黄矿石","tr":"雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5914":{"oreDict":["oreMarbleDolomite"],"name":"白云石矿石","tr":"白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5915":{"oreDict":["oreMarbleWollastonite"],"name":"硅灰石矿石","tr":"硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5916":{"oreDict":["oreMarbleZeolite"],"name":"沸石矿石","tr":"沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5917":{"oreDict":["oreMarbleBandedIron"],"name":"带状铁矿矿石","tr":"带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5918":{"oreDict":["oreMarbleIlmenite"],"name":"钛铁矿矿石","tr":"钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22303":{"name":"贫瘠琥珀金矿石","tr":"贫瘠琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5919":{"oreDict":["oreMarblePollucite"],"name":"铯榴石矿石","tr":"铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5920":{"oreDict":["oreMarbleSpodumene"],"name":"锂辉石矿石","tr":"锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5921":{"oreDict":["oreMarbleTantalite"],"name":"钽铁矿矿石","tr":"钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5922":{"oreDict":["oreMarbleUraninite"],"name":"晶质铀矿矿石","tr":"晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22307":{"name":"贫瘠生铁矿石","tr":"贫瘠生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5923":{"oreDict":["oreMarbleVanadiumMagnetite"],"name":"钒磁铁矿矿石","tr":"钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5924":{"oreDict":["oreMarbleKyanite"],"name":"蓝晶石矿石","tr":"蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5925":{"oreDict":["oreMarblePerlite"],"name":"珍珠岩矿石","tr":"珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5926":{"oreDict":["oreMarblePumice"],"name":"浮岩矿石","tr":"浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5927":{"oreDict":["oreMarbleBentonite"],"name":"膨润土","tr":"膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5928":{"oreDict":["oreMarbleFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5929":{"oreDict":["oreMarbleKaolinite"],"name":"高岭石","tr":"高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5930":{"oreDict":["oreMarbleBrownLimonite"],"name":"棕褐铁矿矿石","tr":"棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5931":{"oreDict":["oreMarbleYellowLimonite"],"name":"黄褐铁矿矿石","tr":"黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5932":{"oreDict":["oreMarbleVermiculite"],"name":"蛭石","tr":"蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5933":{"oreDict":["oreMarbleGlauconite"],"name":"海绿石矿石","tr":"海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5934":{"oreDict":["oreMarbleGypsum"],"name":"石膏矿石","tr":"石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22319":{"name":"贫瘠精金矿石","tr":"贫瘠精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5935":{"oreDict":["oreMarbleBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22320":{"name":"贫瘠通流琥珀金矿石","tr":"贫瘠通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5936":{"oreDict":["oreMarbleGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5937":{"oreDict":["oreMarbleCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5938":{"oreDict":["oreMarbleGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22323":{"name":"贫瘠注魔金矿石","tr":"贫瘠注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5939":{"oreDict":["oreMarbleQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22324":{"name":"贫瘠硅岩矿石","tr":"贫瘠硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5941":{"oreDict":["oreMarbleBorax"],"name":"硼砂矿石","tr":"硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22326":{"name":"贫瘠富集硅岩矿石","tr":"贫瘠富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5942":{"oreDict":["oreMarbleMolybdenite"],"name":"辉钼矿矿石","tr":"辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22327":{"name":"贫瘠超能硅岩矿石","tr":"贫瘠超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5943":{"oreDict":["oreMarblePyrolusite"],"name":"软锰矿矿石","tr":"软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5944":{"oreDict":["oreMarbleRockSalt"],"name":"岩盐矿石","tr":"岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22329":{"name":"贫瘠三钛矿石","tr":"贫瘠三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5945":{"oreDict":["oreMarbleStibnite"],"name":"辉锑矿矿石","tr":"辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5946":{"oreDict":["oreMarbleAsbestos"],"name":"石棉矿石","tr":"石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22331":{"name":"贫瘠秘银矿石","tr":"贫瘠秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5948":{"oreDict":["oreMarbleDiatomite"],"name":"硅藻土矿石","tr":"硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5949":{"oreDict":["oreMarbleGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5951":{"oreDict":["oreMarbleVyroxeres"],"name":"幽冥剧毒结晶矿石","tr":"幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22336":{"name":"贫瘠暗影铁矿石","tr":"贫瘠暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5952":{"oreDict":["oreMarbleCeruclase"],"name":"暗影秘银矿石","tr":"暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22340":{"name":"贫瘠陨铁矿石","tr":"贫瘠陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5956":{"oreDict":["oreMarbleTartarite"],"name":"溶火之石矿石","tr":"溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22342":{"name":"贫瘠玄铁矿石","tr":"贫瘠玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22347":{"name":"贫瘠火石矿石","tr":"贫瘠火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5966":{"oreDict":["oreMarbleOrichalcum"],"name":"山铜矿石","tr":"山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5969":{"oreDict":["oreMarbleAluminiumfluoride"],"name":"氟化铝矿石","tr":"氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5971":{"oreDict":["oreMarbleCalciumDisilicide"],"name":"二硅化钙矿石","tr":"二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5975":{"oreDict":["oreMarbleDraconium"],"name":"龙矿石","tr":"龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5976":{"oreDict":["oreMarbleDraconiumAwakened"],"name":"觉醒龙矿石","tr":"觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5978":{"oreDict":["oreMarbleIchorium"],"name":"灵宝矿石","tr":"灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5982":{"oreDict":["oreMarbleCosmicNeutronium"],"name":"宇宙中子态素矿石","tr":"宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22368":{"name":"贫瘠暗影金属矿石","tr":"贫瘠暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"5984":{"oreDict":["oreMarbleFlerovium_GT5U"],"name":"矿石","tr":"矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22375":{"name":"贫瘠金红石矿石","tr":"贫瘠金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22382":{"name":"贫瘠阿迪特矿石","tr":"贫瘠阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22386":{"name":"贫瘠玛玉灵矿石","tr":"贫瘠玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22387":{"name":"贫瘠深空秘银矿石","tr":"贫瘠深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22388":{"name":"贫瘠黑钚矿石","tr":"贫瘠黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22389":{"name":"贫瘠木卫四冰矿石","tr":"贫瘠木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6006":{"oreDict":["oreBasaltLithium"],"name":"锂矿石","tr":"锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22390":{"name":"贫瘠深铅矿石","tr":"贫瘠深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22391":{"name":"贫瘠量子矿石","tr":"贫瘠量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6008":{"oreDict":["oreBasaltBeryllium"],"name":"铍矿石","tr":"铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22392":{"name":"贫瘠硬铝矿石","tr":"贫瘠硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22393":{"name":"贫瘠奥利哈钢矿石","tr":"贫瘠奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22394":{"name":"贫瘠无尽催化剂矿石","tr":"贫瘠无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22395":{"name":"贫瘠基岩矿石","tr":"贫瘠基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22398":{"name":"贫瘠神秘水晶矿石","tr":"贫瘠神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6018":{"oreDict":["oreBasaltMagnesium"],"name":"镁矿石","tr":"镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6019":{"oreDict":["oreBasaltAluminium"],"name":"铝矿石","tr":"铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6020":{"oreDict":["oreBasaltSilicon"],"name":"硅矿石","tr":"硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6022":{"oreDict":["oreBasaltSulfur"],"name":"硫矿石","tr":"硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6027":{"oreDict":["oreBasaltScandium"],"name":"钪矿石","tr":"钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6028":{"oreDict":["oreBasaltTitanium"],"name":"钛矿石","tr":"钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6029":{"oreDict":["oreBasaltVanadium"],"name":"钒矿石","tr":"钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6030":{"oreDict":["oreBasaltChrome"],"name":"铬矿石","tr":"铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6031":{"oreDict":["oreBasaltManganese"],"name":"锰矿石","tr":"锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6032":{"oreDict":["oreBasaltIron"," oreBasaltAnyIron"],"name":"铁矿石","tr":"铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6033":{"oreDict":["oreBasaltCobalt"],"name":"钴矿石","tr":"钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6034":{"oreDict":["oreBasaltNickel"],"name":"镍矿石","tr":"镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6035":{"oreDict":["oreBasaltCopper"," oreBasaltAnyCopper"],"name":"铜矿石","tr":"铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6036":{"oreDict":["oreBasaltZinc"],"name":"锌矿石","tr":"锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6037":{"oreDict":["oreBasaltGallium"],"name":"镓矿石","tr":"镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6039":{"oreDict":["oreBasaltArsenic"],"name":"砷矿石","tr":"砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6043":{"oreDict":["oreBasaltRubidium"],"name":"铷矿石","tr":"铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6044":{"oreDict":["oreBasaltStrontium"],"name":"锶矿石","tr":"锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6045":{"oreDict":["oreBasaltYttrium"],"name":"钇矿石","tr":"钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6047":{"oreDict":["oreBasaltNiobium"],"name":"铌矿石","tr":"铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6048":{"oreDict":["oreBasaltMolybdenum"],"name":"钼矿石","tr":"钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6052":{"oreDict":["oreBasaltPalladium"],"name":"钯矿石","tr":"钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6054":{"oreDict":["oreBasaltSilver"],"name":"银矿石","tr":"银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6055":{"oreDict":["oreBasaltCadmium"],"name":"镉矿石","tr":"镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6056":{"oreDict":["oreBasaltIndium"],"name":"铟矿石","tr":"铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6057":{"oreDict":["oreBasaltTin"],"name":"锡矿石","tr":"锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6058":{"oreDict":["oreBasaltAntimony"],"name":"锑矿石","tr":"锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6059":{"oreDict":["oreBasaltTellurium"],"name":"碲矿石","tr":"碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6062":{"oreDict":["oreBasaltCaesium"],"name":"铯矿石","tr":"铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6063":{"oreDict":["oreBasaltBarium"],"name":"钡矿石","tr":"钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6064":{"oreDict":["oreBasaltLanthanum"],"name":"镧矿石","tr":"镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6065":{"oreDict":["oreBasaltCerium"],"name":"铈矿石","tr":"铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6066":{"oreDict":["oreBasaltPraseodymium"],"name":"镨矿石","tr":"镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6067":{"oreDict":["oreBasaltNeodymium"],"name":"钕矿石","tr":"钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6068":{"oreDict":["oreBasaltPromethium"],"name":"钷矿石","tr":"钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6069":{"oreDict":["oreBasaltSamarium"],"name":"钐矿石","tr":"钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6070":{"oreDict":["oreBasaltEuropium"],"name":"铕矿石","tr":"铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6071":{"oreDict":["oreBasaltGadolinium"],"name":"钆矿石","tr":"钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6072":{"oreDict":["oreBasaltTerbium"],"name":"铽矿石","tr":"铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6073":{"oreDict":["oreBasaltDysprosium"],"name":"镝矿石","tr":"镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6074":{"oreDict":["oreBasaltHolmium"],"name":"钬矿石","tr":"钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6075":{"oreDict":["oreBasaltErbium"],"name":"铒矿石","tr":"铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6076":{"oreDict":["oreBasaltThulium"],"name":"铥矿石","tr":"铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6077":{"oreDict":["oreBasaltYtterbium"],"name":"镱矿石","tr":"镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6078":{"oreDict":["oreBasaltLutetium"],"name":"镥矿石","tr":"镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6080":{"oreDict":["oreBasaltTantalum"],"name":"钽矿石","tr":"钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6081":{"oreDict":["oreBasaltTungsten"],"name":"钨矿石","tr":"钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6083":{"oreDict":["oreBasaltOsmium"],"name":"锇矿石","tr":"锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6084":{"oreDict":["oreBasaltIridium"],"name":"铱矿石","tr":"铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6085":{"oreDict":["oreBasaltPlatinum"],"name":"铂矿石","tr":"铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6086":{"oreDict":["oreBasaltGold"],"name":"金矿石","tr":"金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6089":{"oreDict":["oreBasaltLead"],"name":"铅矿石","tr":"铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6090":{"oreDict":["oreBasaltBismuth"],"name":"铋矿石","tr":"铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6096":{"oreDict":["oreBasaltThorium"],"name":"钍矿石","tr":"钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6097":{"oreDict":["oreBasaltUranium235"],"name":"铀-235矿石","tr":"铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6098":{"oreDict":["oreBasaltUranium"],"name":"铀-238矿石","tr":"铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6100":{"oreDict":["oreBasaltPlutonium"],"name":"钚-239矿石","tr":"钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6101":{"oreDict":["oreBasaltPlutonium241"],"name":"钚-241矿石","tr":"钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22485":{"name":"贫瘠神秘蓝金矿石","tr":"贫瘠神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6103":{"oreDict":["oreBasaltAmericium"],"name":"镅矿石","tr":"镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22488":{"name":"贫瘠褐铜矿石","tr":"贫瘠褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22489":{"name":"贫瘠胶木矿石","tr":"贫瘠胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6110":{"oreDict":["oreBasaltTengamRaw"],"name":"生镃矿石","tr":"生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22500":{"name":"贫瘠钻石矿石","tr":"贫瘠钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22501":{"name":"贫瘠绿宝石矿石","tr":"贫瘠绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22502":{"name":"贫瘠红宝石矿石","tr":"贫瘠红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22503":{"name":"贫瘠蓝宝石矿石","tr":"贫瘠蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22504":{"name":"贫瘠绿色蓝宝石矿石","tr":"贫瘠绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22505":{"name":"贫瘠橄榄石矿石","tr":"贫瘠橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22506":{"name":"贫瘠下界之星矿石","tr":"贫瘠下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22507":{"name":"贫瘠黄玉矿石","tr":"贫瘠黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22508":{"name":"贫瘠坦桑石矿石","tr":"贫瘠坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22509":{"name":"贫瘠紫水晶矿石","tr":"贫瘠紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22510":{"name":"贫瘠蛋白石矿石","tr":"贫瘠蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22511":{"name":"贫瘠碧玉矿石","tr":"贫瘠碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22512":{"name":"贫瘠尖晶石矿石","tr":"贫瘠尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6129":{"oreDict":["oreBasaltNeutronium"],"name":"中子矿石","tr":"中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22513":{"name":"贫瘠蓝黄玉矿石","tr":"贫瘠蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22514":{"name":"贫瘠琥珀矿石","tr":"贫瘠琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22515":{"name":"贫瘠双锂矿石","tr":"贫瘠双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22516":{"name":"贫瘠赛特斯石英矿石","tr":"贫瘠赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22517":{"name":"贫瘠充能赛特斯石英矿石","tr":"贫瘠充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22518":{"name":"贫瘠力之宝石矿石","tr":"贫瘠力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22519":{"name":"贫瘠力场宝石矿石","tr":"贫瘠力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22520":{"name":"贫瘠独居石矿石","tr":"贫瘠独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22521":{"name":"贫瘠力量矿石","tr":"贫瘠力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22522":{"name":"贫瘠下界石英矿石","tr":"贫瘠下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22523":{"name":"贫瘠石英岩矿石","tr":"贫瘠石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22524":{"name":"贫瘠蓝金石矿石","tr":"贫瘠蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22525":{"name":"贫瘠方钠石矿石","tr":"贫瘠方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22526":{"name":"贫瘠青金石矿石","tr":"贫瘠青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22527":{"name":"贫瘠红石榴石矿石","tr":"贫瘠红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22528":{"name":"贫瘠黄石榴石矿石","tr":"贫瘠黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22529":{"name":"贫瘠温特姆矿石","tr":"贫瘠温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22530":{"name":"贫瘠磷灰石矿石","tr":"贫瘠磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22531":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22534":{"name":"贫瘠磷酸三钙矿石","tr":"贫瘠磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22535":{"name":"贫瘠煤矿石","tr":"贫瘠煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22537":{"name":"贫瘠玉矿石","tr":"贫瘠玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22538":{"name":"贫瘠褐煤矿石","tr":"贫瘠褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22540":{"name":"贫瘠风之蕴魔石","tr":"贫瘠风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22541":{"name":"贫瘠火之蕴魔石","tr":"贫瘠火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22542":{"name":"贫瘠地之蕴魔石","tr":"贫瘠地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22543":{"name":"贫瘠水之蕴魔石","tr":"贫瘠水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22544":{"name":"贫瘠混沌蕴魔石","tr":"贫瘠混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22545":{"name":"贫瘠秩序蕴魔石","tr":"贫瘠秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22548":{"name":"贫瘠焙烧铁矿石","tr":"贫瘠焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22549":{"name":"贫瘠焙烧镍矿石","tr":"贫瘠焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22607":{"name":"贫瘠烧绿石矿石","tr":"贫瘠烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6303":{"oreDict":["oreBasaltElectrum"],"name":"琥珀金矿石","tr":"琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6307":{"oreDict":["oreBasaltAnyIron"," oreBasaltPigIron"],"name":"生铁矿石","tr":"生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22699":{"name":"贫瘠冰晶石矿石","tr":"贫瘠冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6319":{"oreDict":["oreBasaltAdamantium"],"name":"精金矿石","tr":"精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6320":{"oreDict":["oreBasaltElectrumFlux"],"name":"通流琥珀金矿石","tr":"通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6323":{"oreDict":["oreBasaltInfusedGold"],"name":"注魔金矿石","tr":"注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6324":{"oreDict":["oreBasaltNaquadah"],"name":"硅岩矿石","tr":"硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6326":{"oreDict":["oreBasaltNaquadahEnriched"],"name":"富集硅岩矿石","tr":"富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6327":{"oreDict":["oreBasaltNaquadria"],"name":"超能硅岩矿石","tr":"超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6329":{"oreDict":["oreBasaltTritanium"],"name":"三钛矿石","tr":"三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6331":{"oreDict":["oreBasaltMithril"],"name":"秘银矿石","tr":"秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6336":{"oreDict":["oreBasaltShadowIron"],"name":"暗影铁矿石","tr":"暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6340":{"oreDict":["oreBasaltMeteoricIron"],"name":"陨铁矿石","tr":"陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6342":{"oreDict":["oreBasaltDarkIron"],"name":"玄铁矿石","tr":"玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6347":{"oreDict":["oreBasaltFirestone"],"name":"火石矿石","tr":"火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6368":{"oreDict":["oreBasaltShadow"],"name":"暗影金属矿石","tr":"暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6375":{"oreDict":["oreBasaltRutile"],"name":"金红石矿石","tr":"金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6382":{"oreDict":["oreBasaltArdite"],"name":"阿迪特矿石","tr":"阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6386":{"oreDict":["oreBasaltManyullyn"],"name":"玛玉灵矿石","tr":"玛玉灵矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22770":{"name":"贫瘠终末矿石","tr":"贫瘠终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6387":{"oreDict":["oreBasaltMytryl"],"name":"深空秘银矿石","tr":"深空秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6388":{"oreDict":["oreBasaltBlackPlutonium"],"name":"黑钚矿石","tr":"黑钚矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6389":{"oreDict":["oreBasaltCallistoIce"],"name":"木卫四冰矿石","tr":"木卫四冰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6390":{"oreDict":["oreBasaltLedox"],"name":"深铅矿石","tr":"深铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6391":{"oreDict":["oreBasaltQuantium"],"name":"量子矿石","tr":"量子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6392":{"oreDict":["oreBasaltDuralumin"],"name":"硬铝矿石","tr":"硬铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6393":{"oreDict":["oreBasaltOriharukon"],"name":"奥利哈钢矿石","tr":"奥利哈钢矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6394":{"oreDict":["oreBasaltInfinityCatalyst"],"name":"无尽催化剂矿石","tr":"无尽催化剂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6395":{"oreDict":["oreBasaltBedrockium"],"name":"基岩矿石","tr":"基岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6398":{"oreDict":["oreBasaltMysteriousCrystal"],"name":"神秘水晶矿石","tr":"神秘水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22797":{"name":"贫瘠氢化钙矿石","tr":"贫瘠氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22810":{"name":"贫瘠红石矿石","tr":"贫瘠红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22812":{"name":"贫瘠蓝石矿石","tr":"贫瘠蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22817":{"name":"贫瘠盐矿石","tr":"贫瘠盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22820":{"name":"贫瘠铁铝榴石矿石","tr":"贫瘠铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22821":{"name":"贫瘠钙铁榴石矿石","tr":"贫瘠钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22822":{"name":"贫瘠铝土矿矿石","tr":"贫瘠铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22823":{"name":"贫瘠方解石矿石","tr":"贫瘠方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22824":{"name":"贫瘠锡石矿石","tr":"贫瘠锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22825":{"name":"贫瘠铬铁矿矿石","tr":"贫瘠铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22826":{"name":"贫瘠朱砂矿石","tr":"贫瘠朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22827":{"name":"贫瘠辉钴矿矿石","tr":"贫瘠辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22828":{"name":"贫瘠硫铂矿矿石","tr":"贫瘠硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22829":{"name":"贫瘠深渊铁矿石","tr":"贫瘠深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22830":{"name":"贫瘠方铅矿矿石","tr":"贫瘠方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22831":{"name":"贫瘠钙铝榴石矿石","tr":"贫瘠钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22833":{"name":"贫瘠磷酸盐矿石","tr":"贫瘠磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22834":{"name":"贫瘠黄铁矿矿石","tr":"贫瘠黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22835":{"name":"贫瘠镁铝榴石矿石","tr":"贫瘠镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22836":{"name":"贫瘠硝石矿石","tr":"贫瘠硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22838":{"name":"贫瘠锰铝榴石矿石","tr":"贫瘠锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22839":{"name":"贫瘠闪锌矿矿石","tr":"贫瘠闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22840":{"name":"贫瘠黝铜矿矿石","tr":"贫瘠黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22841":{"name":"贫瘠钨酸锂矿石","tr":"贫瘠钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22842":{"name":"贫瘠钙铬榴石矿石","tr":"贫瘠钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22855":{"name":"贫瘠黄铜矿矿石","tr":"贫瘠黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22856":{"name":"贫瘠太阳能级硅(多晶硅)矿石","tr":"贫瘠太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22861":{"name":"贫瘠金刚砂矿石","tr":"贫瘠金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22865":{"name":"贫瘠石墨矿石","tr":"贫瘠石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22868":{"name":"贫瘠三元金属矿石","tr":"贫瘠三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6485":{"oreDict":["oreBasaltAlduorite"],"name":"神秘蓝金矿石","tr":"神秘蓝金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22870":{"name":"贫瘠磁铁矿矿石","tr":"贫瘠磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22871":{"name":"贫瘠孔雀石矿石","tr":"贫瘠孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6488":{"oreDict":["oreBasaltRubracium"],"name":"褐铜矿石","tr":"褐铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6489":{"oreDict":["oreBasaltVulcanite"],"name":"胶木矿石","tr":"胶木矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22873":{"name":"贫瘠沥青铀矿","tr":"贫瘠沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22877":{"name":"贫瘠皂石矿石","tr":"贫瘠皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22878":{"name":"贫瘠油砂矿石","tr":"贫瘠油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22882":{"name":"贫瘠钼铅矿矿石","tr":"贫瘠钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22883":{"name":"贫瘠钼钙矿矿石","tr":"贫瘠钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6500":{"oreDict":["oreBasaltDiamond"],"name":"钻石矿石","tr":"钻石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22884":{"name":"贫瘠戴斯矿石","tr":"贫瘠戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6501":{"oreDict":["oreBasaltEmerald"],"name":"绿宝石矿石","tr":"绿宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6502":{"oreDict":["oreBasaltRuby"],"name":"红宝石矿石","tr":"红宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6503":{"oreDict":["oreBasaltSapphire"],"name":"蓝宝石矿石","tr":"蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6504":{"oreDict":["oreBasaltGreenSapphire"],"name":"绿色蓝宝石矿石","tr":"绿色蓝宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6505":{"oreDict":["oreBasaltOlivine"],"name":"橄榄石矿石","tr":"橄榄石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6506":{"oreDict":["oreBasaltNetherStar"],"name":"下界之星矿石","tr":"下界之星矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6507":{"oreDict":["oreBasaltTopaz"],"name":"黄玉矿石","tr":"黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6508":{"oreDict":["oreBasaltTanzanite"],"name":"坦桑石矿石","tr":"坦桑石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6509":{"oreDict":["oreBasaltAmethyst"],"name":"紫水晶矿石","tr":"紫水晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6510":{"oreDict":["oreBasaltOpal"],"name":"蛋白石矿石","tr":"蛋白石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22894":{"name":"贫瘠奶酪矿石","tr":"贫瘠奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6511":{"oreDict":["oreBasaltJasper"],"name":"碧玉矿石","tr":"碧玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6512":{"oreDict":["oreBasaltFoolsRuby"],"name":"尖晶石矿石","tr":"尖晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6513":{"oreDict":["oreBasaltBlueTopaz"],"name":"蓝黄玉矿石","tr":"蓝黄玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6514":{"oreDict":["oreBasaltAmber"],"name":"琥珀矿石","tr":"琥珀矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6515":{"oreDict":["oreBasaltDilithium"],"name":"双锂矿石","tr":"双锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6516":{"oreDict":["oreBasaltCertusQuartz"],"name":"赛特斯石英矿石","tr":"赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22900":{"name":"贫瘠芒硝矿石","tr":"贫瘠芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6517":{"oreDict":["oreBasaltChargedCertusQuartz"],"name":"充能赛特斯石英矿石","tr":"充能赛特斯石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22901":{"name":"贫瘠云母矿石","tr":"贫瘠云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6518":{"oreDict":["oreBasaltForcicium"],"name":"力之宝石矿石","tr":"力之宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22902":{"name":"贫瘠滑石","tr":"贫瘠滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6519":{"oreDict":["oreBasaltForcillium"],"name":"力场宝石矿石","tr":"力场宝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22903":{"name":"贫瘠天然碱矿石","tr":"贫瘠天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6520":{"oreDict":["oreBasaltMonazite"],"name":"独居石矿石","tr":"独居石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22904":{"name":"贫瘠重晶石矿石","tr":"贫瘠重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6521":{"oreDict":["oreBasaltForce"],"name":"力量矿石","tr":"力量矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22905":{"name":"贫瘠氟碳镧铈矿矿石","tr":"贫瘠氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6522":{"oreDict":["oreBasaltNetherQuartz"],"name":"下界石英矿石","tr":"下界石英矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22906":{"name":"贫瘠硅镁镍矿矿石","tr":"贫瘠硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6523":{"oreDict":["oreBasaltQuartzite"],"name":"石英岩矿石","tr":"石英岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22907":{"name":"贫瘠锂云母矿石","tr":"贫瘠锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6524":{"oreDict":["oreBasaltLazurite"],"name":"蓝金石矿石","tr":"蓝金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22908":{"name":"贫瘠菱镁矿矿石","tr":"贫瘠菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6525":{"oreDict":["oreBasaltSodalite"],"name":"方钠石矿石","tr":"方钠石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22909":{"name":"贫瘠镍黄铁矿矿石","tr":"贫瘠镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6526":{"oreDict":["oreBasaltLapis"],"name":"青金石矿石","tr":"青金石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22910":{"name":"贫瘠白钨矿矿石","tr":"贫瘠白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6527":{"oreDict":["oreBasaltGarnetRed"],"name":"红石榴石矿石","tr":"红石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22911":{"name":"贫瘠明矾石矿石","tr":"贫瘠明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6528":{"oreDict":["oreBasaltGarnetYellow"],"name":"黄石榴石矿石","tr":"黄石榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22912":{"name":"贫瘠白石棉矿石","tr":"贫瘠白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6529":{"oreDict":["oreBasaltVinteum"],"name":"温特姆矿石","tr":"温特姆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22913":{"name":"贫瘠雄黄矿石","tr":"贫瘠雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6530":{"oreDict":["oreBasaltApatite"],"name":"磷灰石矿石","tr":"磷灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22914":{"name":"贫瘠白云石矿石","tr":"贫瘠白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6531":{"oreDict":["oreBasaltNiter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22915":{"name":"贫瘠硅灰石矿石","tr":"贫瘠硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22916":{"name":"贫瘠沸石矿石","tr":"贫瘠沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22917":{"name":"贫瘠带状铁矿矿石","tr":"贫瘠带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6534":{"oreDict":["oreBasaltTricalciumPhosphate"],"name":"磷酸三钙矿石","tr":"磷酸三钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22918":{"name":"贫瘠钛铁矿矿石","tr":"贫瘠钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6535":{"oreDict":["oreBasaltCoal"],"name":"煤矿石","tr":"煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22919":{"name":"贫瘠铯榴石矿石","tr":"贫瘠铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22920":{"name":"贫瘠锂辉石矿石","tr":"贫瘠锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6537":{"oreDict":["oreBasaltJade"],"name":"玉矿石","tr":"玉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22921":{"name":"贫瘠钽铁矿矿石","tr":"贫瘠钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6538":{"oreDict":["oreBasaltLignite"],"name":"褐煤矿石","tr":"褐煤矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22922":{"name":"贫瘠晶质铀矿矿石","tr":"贫瘠晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22923":{"name":"贫瘠钒磁铁矿矿石","tr":"贫瘠钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6540":{"oreDict":["oreBasaltInfusedAir"],"name":"风之蕴魔石","tr":"风之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22924":{"name":"贫瘠蓝晶石矿石","tr":"贫瘠蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6541":{"oreDict":["oreBasaltInfusedFire"],"name":"火之蕴魔石","tr":"火之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22925":{"name":"贫瘠珍珠岩矿石","tr":"贫瘠珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6542":{"oreDict":["oreBasaltInfusedEarth"],"name":"地之蕴魔石","tr":"地之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22926":{"name":"贫瘠浮岩矿石","tr":"贫瘠浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6543":{"oreDict":["oreBasaltInfusedWater"],"name":"水之蕴魔石","tr":"水之蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22927":{"name":"贫瘠膨润土","tr":"贫瘠膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6544":{"oreDict":["oreBasaltInfusedEntropy"],"name":"混沌蕴魔石","tr":"混沌蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22928":{"name":"贫瘠漂白土","tr":"贫瘠漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6545":{"oreDict":["oreBasaltInfusedOrder"],"name":"秩序蕴魔石","tr":"秩序蕴魔石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22929":{"name":"贫瘠高岭石","tr":"贫瘠高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22930":{"name":"贫瘠棕褐铁矿矿石","tr":"贫瘠棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22931":{"name":"贫瘠黄褐铁矿矿石","tr":"贫瘠黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6548":{"oreDict":["oreBasaltRoastedIron"],"name":"焙烧铁矿石","tr":"焙烧铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22932":{"name":"贫瘠蛭石","tr":"贫瘠蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6549":{"oreDict":["oreBasaltRoastedNickel"],"name":"焙烧镍矿石","tr":"焙烧镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22933":{"name":"贫瘠海绿石矿石","tr":"贫瘠海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22934":{"name":"贫瘠石膏矿石","tr":"贫瘠石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22935":{"name":"贫瘠玄武岩矿砂","tr":"贫瘠玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22936":{"name":"贫瘠花岗岩矿砂","tr":"贫瘠花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22937":{"name":"贫瘠锡石矿砂","tr":"贫瘠锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22938":{"name":"贫瘠石榴石矿砂","tr":"贫瘠石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22939":{"name":"贫瘠石英矿砂","tr":"贫瘠石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22941":{"name":"贫瘠硼砂矿石","tr":"贫瘠硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22942":{"name":"贫瘠辉钼矿矿石","tr":"贫瘠辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22943":{"name":"贫瘠软锰矿矿石","tr":"贫瘠软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22944":{"name":"贫瘠岩盐矿石","tr":"贫瘠岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22945":{"name":"贫瘠辉锑矿矿石","tr":"贫瘠辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22946":{"name":"贫瘠石棉矿石","tr":"贫瘠石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22948":{"name":"贫瘠硅藻土矿石","tr":"贫瘠硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22949":{"name":"贫瘠海绿石矿砂","tr":"贫瘠海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22951":{"name":"贫瘠幽冥剧毒结晶矿石","tr":"贫瘠幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22952":{"name":"贫瘠暗影秘银矿石","tr":"贫瘠暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22956":{"name":"贫瘠溶火之石矿石","tr":"贫瘠溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22966":{"name":"贫瘠山铜矿石","tr":"贫瘠山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22969":{"name":"贫瘠氟化铝矿石","tr":"贫瘠氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22971":{"name":"贫瘠二硅化钙矿石","tr":"贫瘠二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22975":{"name":"贫瘠龙矿石","tr":"贫瘠龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22976":{"name":"贫瘠觉醒龙矿石","tr":"贫瘠觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22978":{"name":"贫瘠灵宝矿石","tr":"贫瘠灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22982":{"name":"贫瘠宇宙中子态素矿石","tr":"贫瘠宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"22984":{"name":"贫瘠矿石","tr":"贫瘠矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6607":{"oreDict":["oreBasaltPyrochlore"],"name":"烧绿石矿石","tr":"烧绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6699":{"oreDict":["oreBasaltCryolite"],"name":"冰晶石矿石","tr":"冰晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6770":{"oreDict":["oreBasaltHeeEndium"],"name":"终末矿石","tr":"终末矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6797":{"oreDict":["oreBasaltCalciumHydride"],"name":"氢化钙矿石","tr":"氢化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6810":{"oreDict":["oreBasaltRedstone"],"name":"红石矿石","tr":"红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6812":{"oreDict":["oreBasaltElectrotine"],"name":"蓝石矿石","tr":"蓝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6817":{"oreDict":["oreBasaltSalt"],"name":"盐矿石","tr":"盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6820":{"oreDict":["oreBasaltAlmandine"],"name":"铁铝榴石矿石","tr":"铁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6821":{"oreDict":["oreBasaltAndradite"],"name":"钙铁榴石矿石","tr":"钙铁榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6822":{"oreDict":["oreBasaltBauxite"],"name":"铝土矿矿石","tr":"铝土矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6823":{"oreDict":["oreBasaltCalcite"],"name":"方解石矿石","tr":"方解石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6824":{"oreDict":["oreBasaltCassiterite"],"name":"锡石矿石","tr":"锡石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6825":{"oreDict":["oreBasaltChromite"],"name":"铬铁矿矿石","tr":"铬铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6826":{"oreDict":["oreBasaltCinnabar"],"name":"朱砂矿石","tr":"朱砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6827":{"oreDict":["oreBasaltCobaltite"],"name":"辉钴矿矿石","tr":"辉钴矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6828":{"oreDict":["oreBasaltCooperite"],"name":"硫铂矿矿石","tr":"硫铂矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6829":{"oreDict":["oreBasaltDeepIron"],"name":"深渊铁矿石","tr":"深渊铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6830":{"oreDict":["oreBasaltGalena"],"name":"方铅矿矿石","tr":"方铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6831":{"oreDict":["oreBasaltGrossular"],"name":"钙铝榴石矿石","tr":"钙铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6833":{"oreDict":["oreBasaltPhosphate"],"name":"磷酸盐矿石","tr":"磷酸盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6834":{"oreDict":["oreBasaltPyrite"],"name":"黄铁矿矿石","tr":"黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6835":{"oreDict":["oreBasaltPyrope"],"name":"镁铝榴石矿石","tr":"镁铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6836":{"oreDict":["oreBasaltSaltpeter"],"name":"硝石矿石","tr":"硝石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6838":{"oreDict":["oreBasaltSpessartine"],"name":"锰铝榴石矿石","tr":"锰铝榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6839":{"oreDict":["oreBasaltSphalerite"],"name":"闪锌矿矿石","tr":"闪锌矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6840":{"oreDict":["oreBasaltTetrahedrite"],"name":"黝铜矿矿石","tr":"黝铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6841":{"oreDict":["oreBasaltTungstate"],"name":"钨酸锂矿石","tr":"钨酸锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6842":{"oreDict":["oreBasaltUvarovite"],"name":"钙铬榴石矿石","tr":"钙铬榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6855":{"oreDict":["oreBasaltChalcopyrite"],"name":"黄铜矿矿石","tr":"黄铜矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6856":{"oreDict":["oreBasaltSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)矿石","tr":"太阳能级硅(多晶硅)矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6861":{"oreDict":["oreBasaltEmery"],"name":"金刚砂矿石","tr":"金刚砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6865":{"oreDict":["oreBasaltGraphite"],"name":"石墨矿石","tr":"石墨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6868":{"oreDict":["oreBasaltTrinium"],"name":"三元金属矿石","tr":"三元金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6870":{"oreDict":["oreBasaltMagnetite"],"name":"磁铁矿矿石","tr":"磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6871":{"oreDict":["oreBasaltMalachite"],"name":"孔雀石矿石","tr":"孔雀石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6873":{"oreDict":["oreBasaltPitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6877":{"oreDict":["oreBasaltSoapstone"],"name":"皂石矿石","tr":"皂石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6878":{"oreDict":["oreBasaltOilsands"],"name":"油砂矿石","tr":"油砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6882":{"oreDict":["oreBasaltWulfenite"],"name":"钼铅矿矿石","tr":"钼铅矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6883":{"oreDict":["oreBasaltPowellite"],"name":"钼钙矿矿石","tr":"钼钙矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6884":{"oreDict":["oreBasaltDesh"],"name":"戴斯矿石","tr":"戴斯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6894":{"oreDict":["oreBasaltCheese"],"name":"奶酪矿石","tr":"奶酪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6900":{"oreDict":["oreBasaltMirabilite"],"name":"芒硝矿石","tr":"芒硝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6901":{"oreDict":["oreBasaltMica"],"name":"云母矿石","tr":"云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6902":{"oreDict":["oreBasaltTalc"],"name":"滑石","tr":"滑石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6903":{"oreDict":["oreBasaltTrona"],"name":"天然碱矿石","tr":"天然碱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6904":{"oreDict":["oreBasaltBarite"],"name":"重晶石矿石","tr":"重晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6905":{"oreDict":["oreBasaltBastnasite"],"name":"氟碳镧铈矿矿石","tr":"氟碳镧铈矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6906":{"oreDict":["oreBasaltGarnierite"],"name":"硅镁镍矿矿石","tr":"硅镁镍矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6907":{"oreDict":["oreBasaltLepidolite"],"name":"锂云母矿石","tr":"锂云母矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6908":{"oreDict":["oreBasaltMagnesite"],"name":"菱镁矿矿石","tr":"菱镁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6909":{"oreDict":["oreBasaltPentlandite"],"name":"镍黄铁矿矿石","tr":"镍黄铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6910":{"oreDict":["oreBasaltScheelite"],"name":"白钨矿矿石","tr":"白钨矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6911":{"oreDict":["oreBasaltAlunite"],"name":"明矾石矿石","tr":"明矾石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6912":{"oreDict":["oreBasaltChrysotile"],"name":"白石棉矿石","tr":"白石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6913":{"oreDict":["oreBasaltRealgar"],"name":"雄黄矿石","tr":"雄黄矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6914":{"oreDict":["oreBasaltDolomite"],"name":"白云石矿石","tr":"白云石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6915":{"oreDict":["oreBasaltWollastonite"],"name":"硅灰石矿石","tr":"硅灰石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6916":{"oreDict":["oreBasaltZeolite"],"name":"沸石矿石","tr":"沸石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6917":{"oreDict":["oreBasaltBandedIron"],"name":"带状铁矿矿石","tr":"带状铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6918":{"oreDict":["oreBasaltIlmenite"],"name":"钛铁矿矿石","tr":"钛铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6919":{"oreDict":["oreBasaltPollucite"],"name":"铯榴石矿石","tr":"铯榴石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6920":{"oreDict":["oreBasaltSpodumene"],"name":"锂辉石矿石","tr":"锂辉石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6921":{"oreDict":["oreBasaltTantalite"],"name":"钽铁矿矿石","tr":"钽铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6922":{"oreDict":["oreBasaltUraninite"],"name":"晶质铀矿矿石","tr":"晶质铀矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6923":{"oreDict":["oreBasaltVanadiumMagnetite"],"name":"钒磁铁矿矿石","tr":"钒磁铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6924":{"oreDict":["oreBasaltKyanite"],"name":"蓝晶石矿石","tr":"蓝晶石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6925":{"oreDict":["oreBasaltPerlite"],"name":"珍珠岩矿石","tr":"珍珠岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6926":{"oreDict":["oreBasaltPumice"],"name":"浮岩矿石","tr":"浮岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6927":{"oreDict":["oreBasaltBentonite"],"name":"膨润土","tr":"膨润土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6928":{"oreDict":["oreBasaltFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6929":{"oreDict":["oreBasaltKaolinite"],"name":"高岭石","tr":"高岭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6930":{"oreDict":["oreBasaltBrownLimonite"],"name":"棕褐铁矿矿石","tr":"棕褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6931":{"oreDict":["oreBasaltYellowLimonite"],"name":"黄褐铁矿矿石","tr":"黄褐铁矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6932":{"oreDict":["oreBasaltVermiculite"],"name":"蛭石","tr":"蛭石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6933":{"oreDict":["oreBasaltGlauconite"],"name":"海绿石矿石","tr":"海绿石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6934":{"oreDict":["oreBasaltGypsum"],"name":"石膏矿石","tr":"石膏矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6935":{"oreDict":["oreBasaltBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6936":{"oreDict":["oreBasaltGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6937":{"oreDict":["oreBasaltCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6938":{"oreDict":["oreBasaltGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6939":{"oreDict":["oreBasaltQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6941":{"oreDict":["oreBasaltBorax"],"name":"硼砂矿石","tr":"硼砂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6942":{"oreDict":["oreBasaltMolybdenite"],"name":"辉钼矿矿石","tr":"辉钼矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6943":{"oreDict":["oreBasaltPyrolusite"],"name":"软锰矿矿石","tr":"软锰矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6944":{"oreDict":["oreBasaltRockSalt"],"name":"岩盐矿石","tr":"岩盐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6945":{"oreDict":["oreBasaltStibnite"],"name":"辉锑矿矿石","tr":"辉锑矿矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6946":{"oreDict":["oreBasaltAsbestos"],"name":"石棉矿石","tr":"石棉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6948":{"oreDict":["oreBasaltDiatomite"],"name":"硅藻土矿石","tr":"硅藻土矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6949":{"oreDict":["oreBasaltGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6951":{"oreDict":["oreBasaltVyroxeres"],"name":"幽冥剧毒结晶矿石","tr":"幽冥剧毒结晶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6952":{"oreDict":["oreBasaltCeruclase"],"name":"暗影秘银矿石","tr":"暗影秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6956":{"oreDict":["oreBasaltTartarite"],"name":"溶火之石矿石","tr":"溶火之石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6966":{"oreDict":["oreBasaltOrichalcum"],"name":"山铜矿石","tr":"山铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6969":{"oreDict":["oreBasaltAluminiumfluoride"],"name":"氟化铝矿石","tr":"氟化铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6971":{"oreDict":["oreBasaltCalciumDisilicide"],"name":"二硅化钙矿石","tr":"二硅化钙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6975":{"oreDict":["oreBasaltDraconium"],"name":"龙矿石","tr":"龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6976":{"oreDict":["oreBasaltDraconiumAwakened"],"name":"觉醒龙矿石","tr":"觉醒龙矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6978":{"oreDict":["oreBasaltIchorium"],"name":"灵宝矿石","tr":"灵宝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6982":{"oreDict":["oreBasaltCosmicNeutronium"],"name":"宇宙中子态素矿石","tr":"宇宙中子态素矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"6984":{"oreDict":["oreBasaltFlerovium_GT5U"],"name":"矿石","tr":"矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16006":{"name":"贫瘠锂矿石","tr":"贫瘠锂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16008":{"name":"贫瘠铍矿石","tr":"贫瘠铍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16018":{"name":"贫瘠镁矿石","tr":"贫瘠镁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16019":{"name":"贫瘠铝矿石","tr":"贫瘠铝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16020":{"name":"贫瘠硅矿石","tr":"贫瘠硅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16022":{"name":"贫瘠硫矿石","tr":"贫瘠硫矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16027":{"name":"贫瘠钪矿石","tr":"贫瘠钪矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16028":{"name":"贫瘠钛矿石","tr":"贫瘠钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16029":{"name":"贫瘠钒矿石","tr":"贫瘠钒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16030":{"name":"贫瘠铬矿石","tr":"贫瘠铬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16031":{"name":"贫瘠锰矿石","tr":"贫瘠锰矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16032":{"name":"贫瘠铁矿石","tr":"贫瘠铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16033":{"name":"贫瘠钴矿石","tr":"贫瘠钴矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16034":{"name":"贫瘠镍矿石","tr":"贫瘠镍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16035":{"name":"贫瘠铜矿石","tr":"贫瘠铜矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16036":{"name":"贫瘠锌矿石","tr":"贫瘠锌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16037":{"name":"贫瘠镓矿石","tr":"贫瘠镓矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16039":{"name":"贫瘠砷矿石","tr":"贫瘠砷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16043":{"name":"贫瘠铷矿石","tr":"贫瘠铷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16044":{"name":"贫瘠锶矿石","tr":"贫瘠锶矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16045":{"name":"贫瘠钇矿石","tr":"贫瘠钇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16047":{"name":"贫瘠铌矿石","tr":"贫瘠铌矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16048":{"name":"贫瘠钼矿石","tr":"贫瘠钼矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16052":{"name":"贫瘠钯矿石","tr":"贫瘠钯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16054":{"name":"贫瘠银矿石","tr":"贫瘠银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16055":{"name":"贫瘠镉矿石","tr":"贫瘠镉矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16056":{"name":"贫瘠铟矿石","tr":"贫瘠铟矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16057":{"name":"贫瘠锡矿石","tr":"贫瘠锡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16058":{"name":"贫瘠锑矿石","tr":"贫瘠锑矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16059":{"name":"贫瘠碲矿石","tr":"贫瘠碲矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16062":{"name":"贫瘠铯矿石","tr":"贫瘠铯矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16063":{"name":"贫瘠钡矿石","tr":"贫瘠钡矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16064":{"name":"贫瘠镧矿石","tr":"贫瘠镧矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16065":{"name":"贫瘠铈矿石","tr":"贫瘠铈矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16066":{"name":"贫瘠镨矿石","tr":"贫瘠镨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16067":{"name":"贫瘠钕矿石","tr":"贫瘠钕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16068":{"name":"贫瘠钷矿石","tr":"贫瘠钷矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16069":{"name":"贫瘠钐矿石","tr":"贫瘠钐矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16070":{"name":"贫瘠铕矿石","tr":"贫瘠铕矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16071":{"name":"贫瘠钆矿石","tr":"贫瘠钆矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16072":{"name":"贫瘠铽矿石","tr":"贫瘠铽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16073":{"name":"贫瘠镝矿石","tr":"贫瘠镝矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16074":{"name":"贫瘠钬矿石","tr":"贫瘠钬矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16075":{"name":"贫瘠铒矿石","tr":"贫瘠铒矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16076":{"name":"贫瘠铥矿石","tr":"贫瘠铥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16077":{"name":"贫瘠镱矿石","tr":"贫瘠镱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16078":{"name":"贫瘠镥矿石","tr":"贫瘠镥矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16080":{"name":"贫瘠钽矿石","tr":"贫瘠钽矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16081":{"name":"贫瘠钨矿石","tr":"贫瘠钨矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16083":{"name":"贫瘠锇矿石","tr":"贫瘠锇矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16084":{"name":"贫瘠铱矿石","tr":"贫瘠铱矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16085":{"name":"贫瘠铂矿石","tr":"贫瘠铂矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16086":{"name":"贫瘠金矿石","tr":"贫瘠金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16089":{"name":"贫瘠铅矿石","tr":"贫瘠铅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16090":{"name":"贫瘠铋矿石","tr":"贫瘠铋矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16096":{"name":"贫瘠钍矿石","tr":"贫瘠钍矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16097":{"name":"贫瘠铀-235矿石","tr":"贫瘠铀-235矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16098":{"name":"贫瘠铀-238矿石","tr":"贫瘠铀-238矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16100":{"name":"贫瘠钚-239矿石","tr":"贫瘠钚-239矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16101":{"name":"贫瘠钚-241矿石","tr":"贫瘠钚-241矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16103":{"name":"贫瘠镅矿石","tr":"贫瘠镅矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16110":{"name":"贫瘠生镃矿石","tr":"贫瘠生镃矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16129":{"name":"贫瘠中子矿石","tr":"贫瘠中子矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16303":{"name":"贫瘠琥珀金矿石","tr":"贫瘠琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16307":{"name":"贫瘠生铁矿石","tr":"贫瘠生铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16319":{"name":"贫瘠精金矿石","tr":"贫瘠精金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16320":{"name":"贫瘠通流琥珀金矿石","tr":"贫瘠通流琥珀金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16323":{"name":"贫瘠注魔金矿石","tr":"贫瘠注魔金矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16324":{"name":"贫瘠硅岩矿石","tr":"贫瘠硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16326":{"name":"贫瘠富集硅岩矿石","tr":"贫瘠富集硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16327":{"name":"贫瘠超能硅岩矿石","tr":"贫瘠超能硅岩矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16329":{"name":"贫瘠三钛矿石","tr":"贫瘠三钛矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16331":{"name":"贫瘠秘银矿石","tr":"贫瘠秘银矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16336":{"name":"贫瘠暗影铁矿石","tr":"贫瘠暗影铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16340":{"name":"贫瘠陨铁矿石","tr":"贫瘠陨铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16342":{"name":"贫瘠玄铁矿石","tr":"贫瘠玄铁矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16347":{"name":"贫瘠火石矿石","tr":"贫瘠火石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16368":{"name":"贫瘠暗影金属矿石","tr":"贫瘠暗影金属矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16375":{"name":"贫瘠金红石矿石","tr":"贫瘠金红石矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1},"16382":{"name":"贫瘠阿迪特矿石","tr":"贫瘠阿迪特矿石","tab":"矿石","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSpaceIV":{"0":{"name":"Coin \"The Space Invaders 10K\"","tr":"太空币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:pyrotheum":{"0":{"oreDict":["cellBlazingPyrotheum"],"name":"烈焰之炽焱单元","tr":"烈焰之炽焱单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WandCapVinteum":{"0":{"name":"Vinteum Cap","tr":"温特姆杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.chatBox":{"0":{"name":"Chat Box","tr":"聊天盒","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Creative Chat Box","tr":"创造模式聊天盒","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"compactkineticgenerators:IridiumBlade":{"0":{"name":"Iridium Rotor Blade","tr":"铱扇叶","tab":"压缩动能发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongLaurenium":{"0":{"oreDict":["stickLongLaurenium"],"name":"长劳伦姆合金杆","tr":"长劳伦姆合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:boiledeggItem":{"0":{"oreDict":["foodBoiledegg"],"name":"Boiled Egg","tr":"水煮鸡蛋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:marzipanItem":{"0":{"oreDict":["foodMarzipan"],"name":"Marzipan","tr":"杏仁糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:goldEgg":{"0":{"name":"Golden Egg","tr":"金蛋","tab":"神秘视界","type":"Item","maxStackSize":16,"maxDurability":1}},"harvestcraft:zucchinibreadItem":{"0":{"oreDict":["foodZucchinibread"],"name":"Zucchini Bread","tr":"西葫芦面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WoodenCasing":{"0":{"name":"Wooden Casing","tr":"木制外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewEnergyCrystal":{"0":{"oreDict":["screwEnergyCrystal"],"name":"能量水晶螺丝","tr":"能量水晶螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongChromaticGlass":{"0":{"oreDict":["stickLongChromaticGlass"],"name":"长彩色玻璃杆","tr":"长彩色玻璃杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinAdventureII":{"0":{"name":"Coin \"The Explorer 100\"","tr":"探险家币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemRemoteSensorKit":{"0":{"name":"Remote Sensor Kit","tr":"远程传感工具","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"EMT:QuantumGogglesRevealing":{"1":{"name":"Quantum Goggles of Revealing","tr":"量子揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Quantum Goggles of Revealing","tr":"量子揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"dreamcraft:item.CoinAdventureIV":{"0":{"name":"Coin \"The Explorer 10K\"","tr":"探险家币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manasteelChest":{"0":{"name":"Manasteel Chestplate","tr":"魔钢胸甲","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":257}},"GraviSuite:advDDrill":{"1":{"name":"Advanced Drill (Mark I)","tr":"高级钻头 (Mark I)","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Advanced Drill (Mark I)","tr":"高级钻头 (Mark I)","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemNuggetHS188A":{"0":{"oreDict":["nuggetHS188A"],"name":"HS188-A粒","tr":"HS188-A粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFAuroraBrick":{"0":{"name":"Aurora Block","tr":"极光方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureYttriaite":{"0":{"oreDict":["dustImpureYttriaite"],"name":"Impure Yttriaite Dust","tr":"含杂钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coffeeItem":{"0":{"oreDict":["foodCoffee"],"name":"Cup of Coffee","tr":"一杯咖啡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:strangeFood":{"0":{"oreDict":["slimeball"],"name":"Gelatinous Slime","tr":"胶状黏液","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slimeball"],"name":"Coagulated Blood","tr":"凝血","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Bacon","tr":"培根","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeRod":{"0":{"name":"Casting Form (Rod Shape)","tr":"铸形(杆)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Compat:item.buildcraftPipe.pipeitemspropolis":{"0":{"name":"Apiarist\u0027s Pipe","tr":"养蜂员管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.tnt.wood":{"0":{"name":"Wooden TNT Cart","tr":"木质TNT矿车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"EMT:DiamondChainsaw":{"1":{"name":"Diamond Chainsaw","tr":"钻石链锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Diamond Chainsaw","tr":"钻石链锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"malisisdoors:item.curtain_yellow":{"0":{"name":"Yellow Curtain","tr":"黄色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:blockPortalEldritch":{"0":{"name":"Eldritch Portal","tr":"邪术传送门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.itemUpgrade":{"0":{"name":"Sneaky Upgrade (UP)","tr":"选择连接升级(上)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Sneaky Upgrade (DOWN)","tr":"选择连接升级(下)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Sneaky Upgrade (NORTH)","tr":"选择连接升级(北)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Sneaky Upgrade (SOUTH)","tr":"选择连接升级(南)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Sneaky Upgrade (EAST)","tr":"选择连接升级(东)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Sneaky Upgrade (WEST)","tr":"选择连接升级(西)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Sneaky Combination Upgrade","tr":"多选连接升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Disconnection Upgrade (UP)","tr":"断开连接升级(上)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Disconnection Upgrade (DOWN)","tr":"断开连接升级(下)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Disconnection Upgrade (NORTH)","tr":"断开连接升级(北)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Disconnection Upgrade (SOUTH)","tr":"断开连接升级(南)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Disconnection Upgrade (EAST)","tr":"断开连接升级(东)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Disconnection Upgrade (WEST)","tr":"断开连接升级(西)","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Item Speed Upgrade","tr":"物品加速升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Advanced Satellite Upgrade","tr":"高级卫星升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Fluid Crafting Upgrade","tr":"流体合成升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Crafting Byproduct Extraction Upgrade","tr":"副产物提取升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Placement Rules Upgrade","tr":"放置规则升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Fuzzy Upgrade","tr":"模糊升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Crafting Cleanup Upgrade","tr":"合成残余物清理升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Power Transportation Upgrade","tr":"能量运输升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"TE Power Supplier Upgrade","tr":"TE能量补给升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"IC2 LV Power Supplier Upgrade","tr":"IC2-LV能量补给升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"IC2 MV Power Supplier Upgrade","tr":"IC2-MV能量补给升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"IC2 HV Power Supplier Upgrade","tr":"IC2-HV能量补给升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"IC2 EV Power Supplier Upgrade","tr":"IC2-EV能量补给升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"CC Remote Control Upgrade","tr":"CC遥控升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Crafting Monitoring Upgrade","tr":"合成监视升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Opaque Upgrade","tr":"不透明升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Upgrade Module Upgrade","tr":"升级模块升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearRhenium":{"0":{"oreDict":["gearRhenium"," gearGtRhenium"],"name":"铼齿轮","tr":"铼齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipepoweriron":{"0":{"name":"Iron-Covered Kinesis Pipe","tr":"铁质能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingrock0Slab":{"0":{"name":"Livingrock Slab","tr":"活石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockCraftingStorage":{"0":{"name":"1k Crafting Storage","tr":"1k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"4k Crafting Storage","tr":"4k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"16k Crafting Storage","tr":"16k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"64k Crafting Storage","tr":"64k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"GraviSuite:advLappack":{"1":{"name":"Advanced Lappack","tr":"进阶兰波顿电池背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Advanced Lappack","tr":"进阶兰波顿电池背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"GalacticraftCore:item.basicItem":{"0":{"name":"Single Solar Module","tr":"单体太阳能模块","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Full Solar Panel","tr":"全载太阳能模块","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["itemSilicon"],"name":"Raw Silicon","tr":"生硅","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotCopper"," ingotAnyCopper"],"name":"Copper Ingot","tr":"铜锭","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["ingotTin"],"name":"Tin Ingot","tr":"锡锭","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["ingotAluminum"],"name":"Aluminum Ingot","tr":"铝锭","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["compressedCopper"," compressedAnyCopper"],"name":"Compressed Copper Plate","tr":"致密铜板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["compressedTin"],"name":"Compressed Tin Plate","tr":"致密锡板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["compressedAluminum"," compressedAluminium"],"name":"Compressed Aluminium Plate","tr":"致密铝板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["compressedSteel"],"name":"Compressed Steel Plate","tr":"致密钢板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["compressedBronze"," compressedAnyBronze"],"name":"Compressed Bronze Plate","tr":"致密青铜板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["compressedIron"," compressedAnyIron"],"name":"Compressed Iron Plate","tr":"致密铁板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["waferSolar"],"name":"Blue Solar Wafer","tr":"蓝色太阳能晶圆","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["waferBasic"],"name":"Basic Wafer","tr":"基础晶圆","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["waferAdvanced"],"name":"Advanced Wafer","tr":"高级晶圆","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Can of Food","tr":"罐装食物","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Can of Food","tr":"罐装食物","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Can of Food","tr":"罐装食物","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Can of Food","tr":"罐装食物","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Frequency Module","tr":"频率模块","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Ambient Thermal Controller","tr":"环境温度控制器","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemConduitFacade":{"0":{"name":"Conduit Facade","tr":"导管框架","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Hardened Conduit Facade","tr":"硬化导管框架","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreFluoriteF":{"0":{"oreDict":["oreFluoriteF"],"name":"Fluorite (F) Ore","tr":"氟石(F)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.lead_boots":{"0":{"name":"Lead Boots","tr":"铅靴","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":391}},"harvestcraft:hardenedleatherbootsItem":{"0":{"name":"Hardened Leather Boots","tr":"硬化皮革靴子","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":196}},"Forestry:pods":{"0":{"name":"Pod","tr":"豆荚","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pomegranatejellysandwichItem":{"0":{"oreDict":["foodPomegranatejellysandwich"],"name":"Pomegranate Jelly Sandwich","tr":"石榴果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsProviderLogisticsMk2":{"0":{"name":"Provider Logistics Pipe Mk2","tr":"供应物流管道Mk2","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamStarfruit":{"0":{"name":"Starfruit","tr":"杨桃","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.UnknowCrystal":{"0":{"name":"Unknown Crystal Shard","tr":"神秘水晶碎片","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:naquadahBlock":{"0":{"name":"Naquadah Alloy Block","tr":"硅岩合金块","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockZirconiumCarbide":{"0":{"oreDict":["blockZirconiumCarbide"],"name":"碳化锆块","tr":"碳化锆块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetRhugnor":{"0":{"oreDict":["nuggetRhugnor"],"name":"鲁格诺粒","tr":"鲁格诺粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.steel.sword":{"0":{"name":"Steel Sword","tr":"钢剑","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":501}},"miscutils:crushedCentrifugedSamarskiteYb":{"0":{"oreDict":["crushedCentrifugedSamarskiteYb"],"name":"Centrifuged Crushed Samarskite (Yb) Ore","tr":"离心铌钇矿(Yb)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA14SlabFull":{"0":{"name":"Metamorphic Taiga Cobblestone Slab","tr":"变质雪原圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateInconel792":{"0":{"oreDict":["plateInconel792"],"name":"镍铬基合金-792板","tr":"镍铬基合金-792板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:MetaBlockCasing01":{"0":{"name":"Test Casing","tr":"Test Casing","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"High Power Radiation Proof Casing","tr":"高能防辐射机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Advanced High Power Coil","tr":"进阶高能线圈","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Primitive processing array parallelism block","tr":"初等处理阵列并行机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Advanced processing array parallelism block","tr":"进阶处理阵列并行机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Energized processing array parallelism block","tr":"高能处理阵列并行机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Hyper processing array parallelism block","tr":"超能处理阵列并行机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cosmic processing array parallelism block","tr":"寰宇处理阵列并行机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Anti-Magnetic Casing","tr":"抗磁机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Reinforced Stone Brick Casing","tr":"强化石砖机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Composite Farm Casing","tr":"复合农场机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Dense Cyclotron Outer Casing","tr":"致密回旋加速器机械方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Compact Cyclotron Coil","tr":"压缩回旋加速器线圈","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireBabbitAlloy":{"0":{"oreDict":["wireFineBabbitAlloy"],"name":"细巴氏合金导线","tr":"细巴氏合金导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyNeptuniumHexafluoride":{"0":{"oreDict":["dustTinyNeptuniumHexafluoride"],"name":"小撮六氟化镎粉","tr":"小撮六氟化镎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:adminSpawnEgg":{"0":{"name":"Spawn ","tr":"Spawn ","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PotassiumHydroxideDust":{"0":{"oreDict":["dustPotassiumHydroxide"],"name":"Potassium Hydroxide Dust","tr":"氢氧化钾粉","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"FloodLights:uvFloodlight":{"0":{"name":"UV Floodlight","tr":"UV泛光灯","tab":"泛光灯","type":"Block","maxStackSize":64,"maxDurability":1}},"adventurebackpack:blockSleepingBag":{"0":{"name":"Sleeping Bag","tr":"睡袋","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:transmutationStaffCore":{"0":{"name":"Transmutative Staff Core","tr":"转化杖芯","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:endstone":{"0":{"oreDict":["oc:stoneEndstone"],"name":"End Stone","tr":"末地石","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedspringSmall":{"96":{"oreDict":["springSmallAdemicSteel"],"name":"小型硬钢弹簧","tr":"小型硬钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["springSmallShirabon"],"name":"小型调律源金弹簧","tr":"小型调律源金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["springSmallZircaloy-4"],"name":"小型锆锡合金-4弹簧","tr":"小型锆锡合金-4弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["springSmallZircaloy-2"],"name":"小型锆锡合金-2弹簧","tr":"小型锆锡合金-2弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["springSmallIncoloy-903"],"name":"小型耐热铬铁合金-903弹簧","tr":"小型耐热铬铁合金-903弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["springSmallAdamantiumAlloy"],"name":"小型精金合金弹簧","tr":"小型精金合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["springSmallAtomicSeparationCatalyst"],"name":"小型原子分离催化剂弹簧","tr":"小型原子分离催化剂弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["springSmallExtremelyUnstableNaquadah"],"name":"小型极不稳定硅岩弹簧","tr":"小型极不稳定硅岩弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["springSmallMAR-M200Steel"],"name":"小型MAR-M200特种钢弹簧","tr":"小型MAR-M200特种钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["springSmallMAR-Ce-M200Steel"],"name":"小型MAR-Ce-M200特种钢弹簧","tr":"小型MAR-Ce-M200特种钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["springSmallSignalium"],"name":"小型信素弹簧","tr":"小型信素弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["springSmallLumiium"],"name":"小型流明弹簧","tr":"小型流明弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["springSmallArtherium-Sn"],"name":"小型阿瑟锡弹簧","tr":"小型阿瑟锡弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["springSmallTanmolyiumBeta-C"],"name":"小型钛钼合金β-C弹簧","tr":"小型钛钼合金β-C弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["springSmallRhodium-PlatedPalladium"],"name":"小型镀铑钯弹簧","tr":"小型镀铑钯弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["springSmallDalisenite"],"name":"小型大力合金弹簧","tr":"小型大力合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["springSmallTiberium"],"name":"小型泰伯利亚弹簧","tr":"小型泰伯利亚弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["springSmallHikarium"],"name":"小型光素弹簧","tr":"小型光素弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["springSmallRuridit"],"name":"小型钌铱合金弹簧","tr":"小型钌铱合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["springSmallTairitsu"],"name":"小型对立合金弹簧","tr":"小型对立合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["springSmallHighDurabilityCompoundSteel"],"name":"小型高耐久性复合钢弹簧","tr":"小型高耐久性复合钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["springSmallPreciousMetalsAlloy"],"name":"小型稀有金属合金弹簧","tr":"小型稀有金属合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["springSmallEnrichedNaquadahAlloy"],"name":"小型富集硅岩合金弹簧","tr":"小型富集硅岩合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["springSmallMetastableOganesson"],"name":"小型亚稳态鿫弹簧","tr":"小型亚稳态鿫弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemCable":{"0":{"oreDict":["craftingWireCopper"," wireCopper"],"name":"Insulated Copper Cable","tr":"绝缘铜质导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Copper Cable","tr":"铜质导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Gold Cable","tr":"金质导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["craftingWireGold"],"name":"Insulated Gold Cable","tr":"绝缘金质导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"HV Cable","tr":"高压导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["craftingWireIron"],"name":"Insulated HV Cable","tr":"绝缘高压导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Glass Fibre Cable","tr":"玻璃纤维导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Tin Cable","tr":"锡质导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"EU-Detector Cable","tr":"EU检测导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"EU-Splitter Cable","tr":"EU分流导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["craftingWireTin"],"name":"Insulated Tin Cable","tr":"绝缘锡质导线","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:curtains":{"0":{"name":"Blackout Curtains","tr":"黑幕布帘","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcoffeebeanCrop":{"0":{"name":"Coffee Bean Crop","tr":"咖啡豆","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingChromaticGlass":{"0":{"oreDict":["ringChromaticGlass"],"name":"彩色玻璃环","tr":"彩色玻璃环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltBotmium":{"0":{"oreDict":["boltBotmium"],"name":"博特姆合金螺栓","tr":"博特姆合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:weakBindingAgent":{"0":{"name":"Weak Binding Agent","tr":"[虚弱的]粘合剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcherrySapling":{"0":{"name":"Cherry Sapling","tr":"樱桃树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleCinobiteA243":{"0":{"oreDict":["plateDoubleCinobiteA243"],"name":"双重西诺柏A243板","tr":"双重西诺柏A243板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemDustTitansteel":{"0":{"oreDict":["dustTitansteel"],"name":"泰坦精钢粉","tr":"泰坦精钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement4Stairs":{"0":{"name":"Yellow Portuguese Pavement Stairs","tr":"黄色葡萄牙楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewRhodium":{"0":{"oreDict":["screwRhodium"],"name":"铑螺丝","tr":"铑螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreYttrialite":{"0":{"oreDict":["oreYttrialite"],"name":"Yttrialite Ore","tr":"硅钍钇矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.DeshDualCompressedPlates":{"0":{"name":"Compressed Dual Desh Plates","tr":"航天双层戴斯板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:willowStairs":{"0":{"oreDict":["stairWood"],"name":"Willow Wood Stairs","tr":"柳树木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:robotAfterimage":{"0":{"name":"Robot","tr":"机器人","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAncientGranite":{"0":{"oreDict":["dustSmallAncientGranite"],"name":"小堆古花岗岩粉","tr":"小堆古花岗岩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:fullDrawers2A":{"0":{"oreDict":["drawerBasic"],"name":"Larch Drawers 1x2","tr":"落叶树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Teak Drawers 1x2","tr":"柚树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Acacia Drawers 1x2","tr":"金合欢抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Lime Drawers 1x2","tr":"酸橙树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Chestnut Drawers 1x2","tr":"栗树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Wenge Drawers 1x2","tr":"崖豆树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Baobab Drawers 1x2","tr":"猴面包树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Sequoia Drawers 1x2","tr":"红杉树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Kapok Drawers 1x2","tr":"木棉树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Ebony Drawers 1x2","tr":"乌檀树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Mahogany Drawers 1x2","tr":"桃心树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Balsa Drawers 1x2","tr":"巴尔杉抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Willow Drawers 1x2","tr":"柳树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Walnut Drawers 1x2","tr":"胡桃树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Greenheart Drawers 1x2","tr":"绿樟树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["drawerBasic"],"name":"Cherry Drawers 1x2","tr":"樱树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellQuantum":{"0":{"oreDict":["cellQuantum"],"name":"量子合金单元","tr":"量子合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"adventurebackpack:coalJetpack":{"0":{"name":"Coal Jetpack","tr":"煤喷气背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedPhosphor":{"0":{"name":"Crated Phosphor","tr":"装箱的荧光粉","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreLanthaniteCe":{"0":{"oreDict":["oreLanthaniteCe"],"name":"Lanthanite (Ce) Ore","tr":"镧石(Ce)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:fullDrawers2B":{"0":{"oreDict":["drawerBasic"],"name":"Mahoe Drawers 1x2","tr":"高槿树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Poplar Drawers 1x2","tr":"白杨树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Palm Drawers 1x2","tr":"棕榈树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Papaya Drawers 1x2","tr":"木瓜树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Pine Drawers 1x2","tr":"松树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Plum Drawers 1x2","tr":"李子树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Maple Drawers 1x2","tr":"枫树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Citrus Drawers 1x2","tr":"柑橘树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Giant Sequoia Drawers 1x2","tr":"巨杉树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Ipe Drawers 1x2","tr":"重蚁树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Padauk Drawers 1x2","tr":"紫檀树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Cocobolo Drawers 1x2","tr":"黄檀树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Zebrawood Drawers 1x2","tr":"斑木树抽屉(1x2)","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"supersolarpanel:redcomponent":{"0":{"name":"Red Spectral Component","tr":"红色光谱组件","tab":"超级太阳能发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcabbageCrop":{"0":{"name":"Cabbage Crop","tr":"包菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:trophy":{"0":{"name":"Pig Trophy","tr":"猪战利品","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:frameMagic":{"0":{"name":"Magic Frame","tr":"魔法框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":241}},"harvestcraft:mustardItem":{"0":{"oreDict":["foodMustard"],"name":"Mustard","tr":"芥末","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltIodine":{"0":{"oreDict":["boltIodine"],"name":"碘螺栓","tr":"碘螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:applejellyItem":{"0":{"oreDict":["foodApplejelly"],"name":"Apple Jelly","tr":"苹果果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemConduitProbe":{"0":{"name":"Conduit Probe","tr":"导管探测器","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:part_fluid_pattern_terminal_ex":{"0":{"name":"ME Fluid Processing Pattern Terminal","tr":"ME增广流体样板终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemExtendedNodeJar":{"0":{"name":"Node in a Jar","tr":"缸中节点","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.GoldWandCap":{"0":{"name":"Gold Wand Cap","tr":"金杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:ApiaryUpgrade":{"0":{"name":"Production Upgrade","tr":"产量升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"1":{"name":"Lifespan Upgrade","tr":"寿命升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"2":{"name":"Flowering Upgrade","tr":"授粉升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"3":{"name":"Territory Upgrade","tr":"范围升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"4":{"name":"Humidifier Upgrade","tr":"加湿器升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"5":{"name":"Dryer Upgrade","tr":"干燥升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"6":{"name":"Heater Upgrade","tr":"加热器升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"7":{"name":"Cooler Upgrade","tr":"冷却器升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"10":{"name":"Seal Upgrade","tr":"气密性升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"11":{"name":"Light Upgrade","tr":"光照升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"12":{"name":"Open Sky Upgrade","tr":"露天环境升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"13":{"name":"Hell Emulation Upgrade","tr":"地狱环境升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"14":{"name":"Automation Upgrade","tr":"自动化升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"15":{"name":"Sieve Upgrade","tr":"筛滤升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"16":{"name":"Desert Emulation Upgrade","tr":"沙漠环境升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"17":{"name":"Plains Emulation Upgrade","tr":"平原环境升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"18":{"name":"Jungle Emulation Upgrade","tr":"丛林环境升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"19":{"name":"Genetic Stabilizer Upgrade","tr":"基因稳定升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"20":{"name":"Winter Emulation Upgrade","tr":"严寒环境升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"21":{"name":"Ocean Emulation Upgrade","tr":"海洋环境升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0},"22":{"name":"Pollen Scrubber Upgrade","tr":"花粉洗涤塔升级","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":0}},"miscutils:itemFoilLafiumCompound":{"0":{"oreDict":["foilLafiumCompound"],"name":"路菲恩化合物箔","tr":"路菲恩化合物箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodStaballoy":{"0":{"oreDict":["stickStaballoy"],"name":"贫铀合金杆","tr":"贫铀合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockArceusAlloy2B":{"0":{"oreDict":["blockArceusAlloy2B"],"name":"阿尔宙斯合金2B块","tr":"阿尔宙斯合金2B块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsTrans":{"0":{"name":"Transwood Stairs","tr":"变化树楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:etherealStairs":{"0":{"oreDict":["stairWood"],"name":"Ethereal Wood Stairs","tr":"空灵木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicIngot":{"0":{"oreDict":["ingotDraconiumAwakened"],"name":"Awakened Draconium Ingot","tr":"觉醒龙锭","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:fullDrawers1B":{"0":{"oreDict":["drawerBasic"],"name":"Mahoe Drawer","tr":"高槿树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Poplar Drawer","tr":"白杨树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Palm Drawer","tr":"棕榈树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Papaya Drawer","tr":"木瓜树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Pine Drawer","tr":"松树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Plum Drawer","tr":"李子树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Maple Drawer","tr":"枫树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Citrus Drawer","tr":"柑橘树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Giant Sequoia Drawer","tr":"巨杉树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Ipe Drawer","tr":"重蚁树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Padauk Drawer","tr":"紫檀树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Cocobolo Drawer","tr":"黄檀树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Zebrawood Drawer","tr":"斑木树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureAgarditeCd":{"0":{"oreDict":["dustImpureAgarditeCd"],"name":"Impure Agardite (Cd) Dust","tr":"含杂菱铁矿(Cd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersForestry:fullDrawers1A":{"0":{"oreDict":["drawerBasic"],"name":"Larch Drawer","tr":"落叶树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Teak Drawer","tr":"柚树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Acacia Drawer","tr":"金合欢抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Lime Drawer","tr":"酸橙树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Chestnut Drawer","tr":"栗树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Wenge Drawer","tr":"崖豆树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Baobab Drawer","tr":"猴面包树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Sequoia Drawer","tr":"红杉树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Kapok Drawer","tr":"木棉树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Ebony Drawer","tr":"乌檀树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Mahogany Drawer","tr":"桃心树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Balsa Drawer","tr":"巴尔杉抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Willow Drawer","tr":"柳树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Walnut Drawer","tr":"胡桃树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Greenheart Drawer","tr":"绿樟树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["drawerBasic"],"name":"Cherry Drawer","tr":"樱树抽屉","tab":"储物抽屉|林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:softpretzelItem":{"0":{"oreDict":["foodSoftpretzel"],"name":"Soft Pretzel","tr":"椒盐脆饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyAlloyIngotT9":{"0":{"name":"Lightweight Alloy Ingot","tr":"轻质合金锭 T9","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement3SlabFull":{"0":{"name":"Red Portuguese Pavement Slab","tr":"红色葡萄牙台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemMagnet":{"0":{"name":"Electromagnet","tr":"电磁铁","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":17},"16":{"name":"Electromagnet","tr":"电磁铁","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":17}},"malisisdoors:item.door_dark_oak":{"0":{"name":"Dark Oak Door","tr":"深色橡木门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedAlburnite":{"0":{"oreDict":["crushedAlburnite"],"name":"Crushed Alburnite Ore","tr":"粉碎硫碲金锗矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pambrusselsproutCrop":{"0":{"name":"Brussel Sprout Crop","tr":"芽甘蓝","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconiumChest":{"0":{"name":"Draconic Chest","tr":"龙箱","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:oldCobbleMossy":{"0":{"oreDict":["stoneCobble"," mossyCobblestone"," cobblestone"],"name":"Ancient Mossy Cobblestone","tr":"远古苔石","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:fluidBiomass":{"0":{"name":"Biomass","tr":"生物质","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:fluidCore":{"0":{"name":"Fluid Storage Core T1","tr":"流体存储核心T1","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Fluid Storage Core T2","tr":"流体存储核心T2","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Fluid Storage Core T3","tr":"流体存储核心T3","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fluid Storage Core T4","tr":"流体存储核心T4","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Fluid Storage Core T5","tr":"流体存储核心T5","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Fluid Storage Core T6","tr":"流体存储核心T6","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Fluid Storage Core T7","tr":"流体存储核心T7","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Fluid Storage Core T8","tr":"流体存储核心T8","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Fluid Storage Core T9","tr":"流体存储核心T9","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Fluid Storage Core T10","tr":"流体存储核心T10","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bananayogurtItem":{"0":{"oreDict":["foodBananayogurt"],"name":"Banana Yogurt","tr":"香蕉酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:avatar":{"0":{"name":"Livingwood Avatar","tr":"活木枝化身","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockEnergyCell":{"0":{"name":"Energy Cell","tr":"能源元件","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:block_bedrockium":{"0":{"name":"Block of Bedrockium","tr":"基岩块","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicMachina:metaphysicalBrick":{"0":{"name":"tile.metaphysicalBrick.name","tr":"tile.metaphysicalBrick.name","tab":"神秘力学","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:bloodedwool":{"0":{"name":"Blood-stained Wool","tr":"染血羊毛","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedcrushed":{"1":{"oreDict":["crushedBismutite"],"name":"粉碎的泡铋矿石","tr":"粉碎的泡铋矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["crushedBismuthinite"],"name":"粉碎的辉铋矿石","tr":"粉碎的辉铋矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["crushedFluor-Buergerite"],"name":"粉碎的氟铁电气石矿石","tr":"粉碎的氟铁电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["crushedRarestMetalResidue"],"name":"粉碎的稀有金属渣矿石","tr":"粉碎的稀有金属渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["crushedIridiumMetalResidue"],"name":"粉碎的铱金属渣矿石","tr":"粉碎的铱金属渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["crushedNaquadahOxideMixture"],"name":"粉碎的氧化硅岩混合物矿石","tr":"粉碎的氧化硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["crushedChromo-Alumino-Povondraite"],"name":"粉碎的铬铝电气石矿石","tr":"粉碎的铬铝电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["crushedVanadio-Oxy-Dravite"],"name":"粉碎的钒镁电气石矿石","tr":"粉碎的钒镁电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["crushedOlenite"],"name":"粉碎的铝电气石矿石","tr":"粉碎的铝电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["crushedArsenopyrite"],"name":"粉碎的砷黄铁矿石","tr":"粉碎的砷黄铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["crushedFerberite"],"name":"粉碎的钨铁矿石","tr":"粉碎的钨铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["crushedLoellingite"],"name":"粉碎的斜方砷铁矿石","tr":"粉碎的斜方砷铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["crushedRoquesite"],"name":"粉碎的硫铟铜矿石","tr":"粉碎的硫铟铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["crushedBornite"],"name":"粉碎的斑铜矿石","tr":"粉碎的斑铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["crushedWittichenite"],"name":"粉碎的硫铋铜矿石","tr":"粉碎的硫铋铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["crushedCrudeRhodiumMetal"],"name":"粉碎的粗制铑金属矿石","tr":"粉碎的粗制铑金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["crushedDjurleite"],"name":"粉碎的久辉铜矿石","tr":"粉碎的久辉铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["crushedHuebnerite"],"name":"粉碎的钨酸锰矿石","tr":"粉碎的钨酸锰矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["crushedThorianite"],"name":"粉碎的方钍石矿石","tr":"粉碎的方钍石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["crushedRedZircon"],"name":"粉碎的红锆石矿石","tr":"粉碎的红锆石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["crushedEnriched-NaquadahOxideMixture"],"name":"粉碎的氧化富集硅岩混合物矿石","tr":"粉碎的氧化富集硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["crushedFayalite"],"name":"粉碎的铁橄榄石矿石","tr":"粉碎的铁橄榄石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["crushedForsterite"],"name":"粉碎的镁橄榄石矿石","tr":"粉碎的镁橄榄石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["crushedNaquadriaOxideMixture"],"name":"粉碎的氧化超能硅岩混合物矿石","tr":"粉碎的氧化超能硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["crushedHedenbergite"],"name":"粉碎的钙铁辉石矿石","tr":"粉碎的钙铁辉石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["crushedTiberium"],"name":"粉碎的泰伯利亚矿石","tr":"粉碎的泰伯利亚矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["crushedRedDescloizite"],"name":"粉碎的红钒铅锌矿石","tr":"粉碎的红钒铅锌矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["crushedOrangeDescloizite"],"name":"粉碎的橙钒铅铜矿石","tr":"粉碎的橙钒铅铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["crushedFluorspar"],"name":"粉碎的氟石矿石","tr":"粉碎的氟石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["crushedGreenFuchsite"],"name":"粉碎的绿铬云母矿石","tr":"粉碎的绿铬云母矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["crushedRedFuchsite"],"name":"粉碎的红铬云母矿石","tr":"粉碎的红铬云母矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["crushedAtheneite"],"name":"粉碎的砷汞钯矿石","tr":"粉碎的砷汞钯矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["crushedTemagamite"],"name":"粉碎的碲汞钯矿石","tr":"粉碎的碲汞钯矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["crushedTerlinguaite"],"name":"粉碎的黄氯汞矿石","tr":"粉碎的黄氯汞矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["crushedPrasiolite"],"name":"粉碎的堇云石矿石","tr":"粉碎的堇云石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["crushedOrundum"],"name":"粉碎的合成玉矿石","tr":"粉碎的合成玉矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["crushedBArTiMaEuSNeK"],"name":"粉碎的BArTiMaEuSNeK矿石","tr":"粉碎的BArTiMaEuSNeK矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["crushedPlatinumMetallicPowder"],"name":"粉碎的铂金属矿石","tr":"粉碎的铂金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["crushedPalladiumMetallicPowder"],"name":"粉碎的钯金属矿石","tr":"粉碎的钯金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["crushedLeachResidue"],"name":"粉碎的浸出渣矿石","tr":"粉碎的浸出渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemVoidFortressHelmet":{"0":{"name":"Void Fortress Helm","tr":"虚空要塞兜鍪","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":3301}},"gadomancy:ItemElement":{"0":{"name":"Element of Darkness","tr":"黑暗元素","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:blood_diamond":{"0":{"name":"Blood Diamond","tr":"血之钻石","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneStairsMossyLeft":{"0":{"oreDict":["nagastoneStairsMossy"],"name":"Mossy Nagastone Stairs (Left)","tr":"苔藓娜迦石台阶(左)","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjRed|Core:projectred.core.screwdriver":{"0":{"name":"Screwdriver","tr":"螺丝刀","tab":"红石计划:核心","type":"Item","maxStackSize":1,"maxDurability":129}},"Natura:trapdoor.willow":{"0":{"oreDict":["trapdoorWood"],"name":"Willow Trapdoor","tr":"柳树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorBronzeHelmet":{"0":{"name":"Bronze Helmet","tr":"青铜头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":166}},"miscutils:itemRodTriniumNaquadahCarbonite":{"0":{"oreDict":["stickTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金杆","tr":"掺碳三元硅岩合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:imbuedSlate":{"0":{"name":"Imbued Slate","tr":"灌输石板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPistachio":{"0":{"name":"Pistachio","tr":"开心果","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:potatoandcheesepirogiItem":{"0":{"oreDict":["foodPotatoandcheesepirogi"],"name":"Potato and Cheese Pirogi","tr":"土豆芝士馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallErbium":{"0":{"oreDict":["dustSmallErbium"],"name":"小堆铒粉","tr":"小堆铒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TitanStoneDust":{"0":{"oreDict":["dustSpace"," dustTitanStone"," dustTitan"],"name":"Titan Stone Dust","tr":"土卫六尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:technical":{"0":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockPaint":{"0":{"name":"tile.appliedenergistics2.BlockPaint.name","tr":"tile.appliedenergistics2.BlockPaint.name","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyAlloyIngotT4":{"0":{"name":"Heavy Duty Alloy Ingot T4","tr":"重型合金锭 T4","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyAlloyIngotT6":{"0":{"name":"Heavy Duty Alloy Ingot T6","tr":"重型合金锭 T6","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyAlloyIngotT5":{"0":{"name":"Heavy Duty Alloy Ingot T5","tr":"重型合金锭 T5","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:WandRod":{"0":{"name":"Greatwood Rod","tr":"宏伟之木杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Obsidian Rod","tr":"黑曜石杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Silverwood Rod","tr":"银树杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Icy Rod","tr":"寒霜杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Quartz Rod","tr":"石英杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"name":"Staff Core of the Primal","tr":"元始杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Reed Rod","tr":"甘蔗杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Blazing Rod","tr":"烈焰杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Bone Rod","tr":"白骨杖柄","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"name":"Greatwood Staff Core","tr":"宏伟之木杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"Obsidian Staff Core","tr":"黑曜石杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"name":"Silverwood Staff Core","tr":"银树杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"Icy Staff Core","tr":"寒霜杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"Quartz Staff Core","tr":"石英杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"name":"Reed Staff Core","tr":"甘蔗杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"Blazing Staff Core","tr":"烈焰杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"Bone Staff Core","tr":"白骨杖芯","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyAlloyIngotT8":{"0":{"name":"Heavy Duty Alloy Ingot T8","tr":"重型合金锭 T8","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AdvancedCokeOvenBrick":{"0":{"name":"Advanced Coke Oven Brick","tr":"高级焦炉砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyAlloyIngotT7":{"0":{"name":"Heavy Duty Alloy Ingot T7","tr":"重型合金锭 T7","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.metallurgy.singularity":{"0":{"name":"Bitumen Singularity","tr":"沥青奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Potash Singularity","tr":"碳酸钾奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Angmallen Singularity","tr":"金铁奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Hepatizon Singularity","tr":"魂晶奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Desichalkos Singularity","tr":"虚空魂石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Celenegil Singularity","tr":"幽冥毒晶奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Haderoth Singularity","tr":"幻铜奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Tartarite Singularity","tr":"熔火之石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Amordrine Singularity","tr":"魔石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Inolashite Singularity","tr":"暗影秘银蓝金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedHoneaite":{"0":{"oreDict":["crushedCentrifugedHoneaite"],"name":"Centrifuged Crushed Honeaite Ore","tr":"离心碲化金铊矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.kama.netherquartz":{"0":{"name":"Quartz Kama","tr":"石英镰刀","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"ExtraUtilities:timer":{"0":{"name":"Redstone Clock","tr":"红石钟","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHeLiCoPtEr":{"0":{"oreDict":["cellHeLiCoPtEr"],"name":"HeLiCoPtEr单元","tr":"HeLiCoPtEr单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.printerInkColor":{"0":{"name":"Color Ink","tr":"彩色墨水","tab":"开放式打印机","type":"Item","maxStackSize":1,"maxDurability":4001}},"EMT:SolarHelmetRevealing":{"1":{"name":"Solar Goggles of Revealing","tr":"太阳能揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Solar Goggles of Revealing","tr":"太阳能揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:lavendershortbreadItem":{"0":{"oreDict":["foodLavendershortbread"],"name":"Lavender Shortbread","tr":"薰衣草饼干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PlutoIceDust":{"0":{"oreDict":["dustSpace"," dustPlutoIce"," dustPluto"],"name":"Pluto Ice Dust","tr":"冥王星冰屑","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steel_leggings":{"0":{"name":"Heavy Duty Leggings","tr":"重型护腿","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":451}},"IC2:itemToolPainterYellow":{"0":{"name":"Yellow Painter","tr":"黄色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:itemGearWhiteMetal":{"0":{"oreDict":["gearGtWhiteMetal"," gearWhiteMetal"],"name":"白物质齿轮","tr":"白物质齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:rapier":{"0":{"name":"§f山铜 西洋剑","tr":"§f山铜 西洋剑","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemDustCopperIISulfate":{"0":{"oreDict":["dustCopperIISulfate"],"name":"硫酸铜(II)粉","tr":"硫酸铜(II)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDragonblood":{"0":{"oreDict":["plateDragonblood"],"name":"龙血板","tr":"龙血板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Silicon:package":{"0":{"name":"Package","tr":"包","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemScrewThallium":{"0":{"oreDict":["screwThallium"],"name":"铊螺丝","tr":"铊螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:crystalBlock":{"0":{"oreDict":["blockCrystalCluster"],"name":"Air Crystal Block","tr":"风之魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockCrystalCluster"],"name":"Fire Crystal Block","tr":"火之魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockCrystalCluster"],"name":"Water Crystal Block","tr":"水之魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockCrystalCluster"],"name":"Earth Crystal Block","tr":"地之魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockCrystalCluster"],"name":"Order Crystal Block","tr":"秩序魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockCrystalCluster"],"name":"Entropy Crystal Block","tr":"混沌魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockCrystalCluster"],"name":"Mixed Crystal Block","tr":"复相魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockCrystalCluster"],"name":"Tainted Crystal Block","tr":"污染魔晶块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBuns":{"0":{"name":"Casting Form (Buns Mold)","tr":"铸件(小圆面包)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:quicksilverBlock":{"0":{"oreDict":["blockQuicksilver"],"name":"Quicksilver Block","tr":"水银块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioMiddlePainting":{"0":{"name":"Oak Painting Frame","tr":"橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Painting Frame","tr":"云杉画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Painting Frame","tr":"桦木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Painting Frame","tr":"丛林木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Painting Frame","tr":"深色橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Painting Frame","tr":"镶框画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinChemist":{"0":{"name":"Coin \"The Chemist 1\"","tr":"化学家币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:necroStaffCore":{"0":{"name":"Necromancer\u0027s Staff Core","tr":"亡灵杖芯","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallThoriumTetrafluoride":{"0":{"oreDict":["dustSmallThoriumTetrafluoride"],"name":"小堆四氟化钍粉","tr":"小堆四氟化钍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureZirconolite":{"0":{"oreDict":["dustImpureZirconolite"],"name":"Impure Zirconolite Dust","tr":"含杂钛锆酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCookedZrCl4":{"0":{"oreDict":["dustTinyCookedZrCl4"],"name":"小撮焙烧过的氯化锆粉","tr":"小撮焙烧过的氯化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:putrescine":{"0":{"oreDict":["cellPutrescine"],"name":"腐胺单元","tr":"腐胺单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:jellydonutItem":{"0":{"oreDict":["foodJellydonut"],"name":"Jelly Donut","tr":"果酱甜甜圈","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustThoriumHexafluoride":{"0":{"oreDict":["dustThoriumHexafluoride"],"name":"六氟化钍粉","tr":"六氟化钍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MushroomPowder":{"0":{"name":"Mushroom Powder","tr":"蘑菇粉","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:grimstone":{"0":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Grimstone","tr":"阴森石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteChest":{"0":{"name":"Thauminite Chestplate","tr":"秘晶胸甲","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":433}},"miscutils:itemDustSmallPolycrase":{"0":{"oreDict":["dustSmallPolycrase"],"name":"小堆锗铀钇矿粉","tr":"小堆锗铀钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.standardWrench":{"0":{"name":"Standard Wrench","tr":"标准扳手","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":257}},"miscutils:itemNuggetIndalloy140":{"0":{"oreDict":["nuggetIndalloy140"],"name":"铋铅合金140粒","tr":"铋铅合金140粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:personalKey":{"0":{"name":"Personal Key","tr":"私人钥匙","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraBees:hiveFrame.clay":{"0":{"name":"Healing Frame","tr":"治愈框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:itemHotIngotErbium":{"0":{"oreDict":["ingotHotErbium"],"name":"热铒锭","tr":"热铒锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:item.ItemEightBitRedCrown":{"0":{"name":"Red Crown","tr":"红色王冠","tab":"神秘革命","type":"Item","maxStackSize":1,"maxDurability":351}},"Botania:quartzSlabBlazeHalf":{"0":{"name":"Blaze Quartz Slab","tr":"烈焰石英台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:NanosuitWing":{"1":{"name":"Nanosuit Wings","tr":"纳米羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Nanosuit Wings","tr":"纳米羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"TwilightForest:item.ironwoodHoe":{"0":{"name":"Ironwood Hoe","tr":"铁木锄","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"GoodGenerator:wrappedThoriumIngot":{"0":{"name":"Wrapped Thorium Ingot","tr":"封装钍锭","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:willow":{"0":{"name":"Willow","tr":"柳树","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtAbyssalAlloy":{"0":{"oreDict":["frameGtAbyssalAlloy"],"name":"深渊合金框架","tr":"深渊合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockPatternOptimizationMatrix":{"0":{"name":"Pattern Optimization Matrix","tr":"Pattern Optimization Matrix","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:nodeUpgrade":{"0":{"name":"Speed Upgrade","tr":"节点升级:速度提升","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Item Filter","tr":"节点升级:物品过滤","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"World Interaction Upgrade","tr":"节点升级:世界交互","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Stack Upgrade","tr":"节点升级:堆叠提升","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Creative Upgrade","tr":"节点升级:创世神权","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ender Transmitter","tr":"节点升级:末影发信","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Ender Receiver","tr":"节点升级:末影收信","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Depth-First Search Upgrade","tr":"节点升级:深度优先搜索","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Breadth-First Search Upgrade","tr":"节点升级:宽度优先搜索","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Pseudo Round Robin Upgrade","tr":"节点升级:伪循环模式","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Advanced Item Filter","tr":"高级物品过滤器","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:icefencegate":{"0":{"name":"Ice Gate","tr":"冰门","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:metalsblock":{"0":{"oreDict":["blockLead"],"name":"Decorative Lead Block","tr":"装饰铅块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockAdamantium"],"name":"Decorative Adamantite Block","tr":"装饰精金块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockCobalt"],"name":"Decorative Cobalt Block","tr":"装饰钴块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockMagnesium"],"name":"Decorative Magnesium Block","tr":"装饰镁块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockMithril"],"name":"Decorative Mithril Block","tr":"装饰秘银块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockNickel"],"name":"Decorative Nickel Block","tr":"装饰镍块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockOriharukon"],"name":"Decorative Oriharukon Block","tr":"装饰奥利哈钢块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockPlatinum"],"name":"Decorative Platinum Block","tr":"装饰铂块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockTungsten"],"name":"Decorative Tungsten Block","tr":"装饰钨块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockCopper"," blockAnyCopper"],"name":"Decorative Copper Block","tr":"装饰铜块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:ToolStationBlock":{"0":{"name":"Tool Station","tr":"工具组装台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Part Builder","tr":"部件加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Part Builder","tr":"部件加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Part Builder","tr":"部件加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Part Builder","tr":"部件加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Pattern Chest","tr":"模具箱","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stencil Table","tr":"模具加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stencil Table","tr":"模具加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stencil Table","tr":"模具加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stencil Table","tr":"模具加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellCurium":{"0":{"oreDict":["cellCurium"],"name":"锔单元","tr":"锔单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:rfidwriter":{"0":{"name":"Card Writer","tr":"写卡器","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Factory:autoWorkbenchBlock":{"0":{"oreDict":["craftingWorkBench"],"name":"Auto Workbench","tr":"自动合成台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"kubatech:kubaitems":{"0":{"name":"§6§lKuba\u0027s Black Tea","tr":"§6§lKuba红茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"§1§lKuba\u0027s Butterfly Pea Tea","tr":"§1§lKuba蝶豆花茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"§6§lKuba\u0027s Earl Gray Tea","tr":"§6§lKuba格雷伯爵茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"§2§lKuba\u0027s Green Tea","tr":"§2§lKuba绿茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"§e§lKuba\u0027s Lemon Tea","tr":"§e§lKuba柠檬茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"§f§lKuba\u0027s Milk Tea","tr":"§f§lKuba奶茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"§e§lKuba\u0027s Oolong Tea","tr":"§e§lKuba乌龙茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"§a§lKuba\u0027s Peppermint Tea","tr":"§a§lKuba薄荷茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"§4§lKuba\u0027s Pu-erh Tea","tr":"§4§lKuba普洱茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"§c§lKuba\u0027s Hibiscus Tea","tr":"§c§lKuba洛神花茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"§e§lKuba\u0027s White Tea","tr":"§e§lKuba白茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"§6§lKuba\u0027s Yellow Tea","tr":"§6§lKuba黄茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"§6§lKuba\u0027s §c§l§kU§6§l§kL§e§l§kT§2§l§kI§a§l§kM§b§l§kA§3§l§kT§1§l§kE§r §6§lTea","tr":"§6§lKuba§4§l§kU§c§l§kL§6§l§kT§e§l§kI§2§l§kM§a§l§kA§b§l§kT§3§l§kE§r §6§l茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Black Tea","tr":"红茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Earl Gray Tea","tr":"格雷伯爵茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Green Tea","tr":"绿茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Lemon Tea","tr":"柠檬茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Milk Tea","tr":"奶茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Oolong Tea","tr":"乌龙茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Peppermint Tea","tr":"薄荷茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Pu-erh Tea","tr":"普洱茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"White Tea","tr":"白茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Yellow Tea","tr":"黄茶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Black Tea Leaf","tr":"红茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Green Tea Leaf","tr":"绿茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Oolong Tea Leaf","tr":"乌龙茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Pu-erh Tea Leaf","tr":"普洱茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"White Tea Leaf","tr":"白茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Yellow Tea Leaf","tr":"黄茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Dehydrated Tea Leaf","tr":"脱水茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Steamed Tea Leaf","tr":"蒸制茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Rolled Tea Leaf","tr":"揉制茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Oxidized Tea Leaf","tr":"氧化茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Fermented Tea Leaf","tr":"发酵茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Bruised Tea Leaf","tr":"揉伤茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Partially Oxidized Tea Leaf","tr":"部分氧化茶叶","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"Tea Acceptor Research Note","tr":"茶接收器研究笔记","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"kubaitem.beeeeee.name","tr":"kubaitem.beeeeee.name","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"Draconic Core Schematic","tr":"龙之核心图纸","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"Wyvern Core Schematic","tr":"双足飞龙核心图纸","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"Awakened Core Schematic","tr":"觉醒核心图纸","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Chaotic Core Schematic","tr":"混沌核心图纸","tab":"KubaTech","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:shovelHead":{"0":{"name":"Wooden Shovel Head","tr":"木铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Shovel Head","tr":"石铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Shovel Head","tr":"铁铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Shovel Head","tr":"燧石铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Shovel Head","tr":"仙人掌铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Shovel Head","tr":"骨头铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Shovel Head","tr":"黑曜石铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Shovel Head","tr":"地狱岩铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Shovel Head","tr":"史莱姆铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Shovel Head","tr":"纸铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Shovel Head","tr":"钴铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Shovel Head","tr":"阿迪特铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Shovel Head","tr":"玛玉灵铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Shovel Head","tr":"铜铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Shovel Head","tr":"青铜铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Shovel Head","tr":"耐酸铝铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Shovel Head","tr":"钢铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Shovel Head","tr":"史莱姆铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Shovel Head","tr":"生铁铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Shovel Head","tr":"不稳定感应铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chilichocolateItem":{"0":{"oreDict":["foodChilichocolate"],"name":"Chili Chocolate","tr":"辣椒巧克力","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.landingPadFull":{"0":{"name":"Rocket Launch Pad","tr":"火箭发射平台","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SilverThread":{"0":{"name":"Silver Thread","tr":"银丝","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartCrossbowLimb":{"1536":{"name":"精金 Crossbow Limb","tr":"精金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Crossbow Limb","tr":"神秘蓝金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Crossbow Limb","tr":"琥珀 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Crossbow Limb","tr":"纯镃 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Crossbow Limb","tr":"谐镃 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Crossbow Limb","tr":"聚氯乙烯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Crossbow Limb","tr":"永恒 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Crossbow Limb","tr":"磁物质 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Crossbow Limb","tr":"赛特斯石英 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Crossbow Limb","tr":"暗影秘银 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Crossbow Limb","tr":"玄铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Crossbow Limb","tr":"戴斯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Crossbow Limb","tr":"铿铀 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Crossbow Limb","tr":"通流琥珀金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Crossbow Limb","tr":"末影粗胚 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Crossbow Limb","tr":"末影(te) 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Crossbow Limb","tr":"炽热的钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Crossbow Limb","tr":"火石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Crossbow Limb","tr":"力量 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Crossbow Limb","tr":"石墨 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Crossbow Limb","tr":"石墨烯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Crossbow Limb","tr":"注魔金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Crossbow Limb","tr":"风之魔晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Crossbow Limb","tr":"火之魔晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Crossbow Limb","tr":"地之魔晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Crossbow Limb","tr":"水之魔晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Crossbow Limb","tr":"混沌魔晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Crossbow Limb","tr":"秩序魔晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Crossbow Limb","tr":"玉 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Crossbow Limb","tr":"碧玉 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Crossbow Limb","tr":"陨铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Crossbow Limb","tr":"陨钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Crossbow Limb","tr":"硅岩 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Crossbow Limb","tr":"硅岩合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Crossbow Limb","tr":"富集硅岩 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Crossbow Limb","tr":"超能硅岩 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Crossbow Limb","tr":"下界石英 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Crossbow Limb","tr":"下界之星 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Crossbow Limb","tr":"三钛 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Crossbow Limb","tr":"虚空 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Crossbow Limb","tr":"胶木 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Crossbow Limb","tr":"幽冥剧毒结晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Crossbow Limb","tr":"强化 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Crossbow Limb","tr":"铱锇合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Crossbow Limb","tr":"阳光化合物 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Crossbow Limb","tr":"魂金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Crossbow Limb","tr":"蓝黄玉 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Crossbow Limb","tr":"黄铜 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Crossbow Limb","tr":"白铜 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Crossbow Limb","tr":"深渊铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Crossbow Limb","tr":"钻石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Crossbow Limb","tr":"琥珀金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Crossbow Limb","tr":"绿宝石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Crossbow Limb","tr":"强化混合晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Crossbow Limb","tr":"混合晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Crossbow Limb","tr":"绿色蓝宝石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Crossbow Limb","tr":"殷钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Crossbow Limb","tr":"坎塔尔合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Crossbow Limb","tr":"镁铝合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Crossbow Limb","tr":"镍铬合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Crossbow Limb","tr":"玄钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Crossbow Limb","tr":"生铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Crossbow Limb","tr":"聚乙烯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Crossbow Limb","tr":"环氧树脂 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Crossbow Limb","tr":"硅橡胶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Crossbow Limb","tr":"聚己内酰胺 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Crossbow Limb","tr":"聚四氟乙烯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Crossbow Limb","tr":"蓝宝石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Crossbow Limb","tr":"不锈钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Crossbow Limb","tr":"坦桑石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Crossbow Limb","tr":"锡铁合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Crossbow Limb","tr":"黄玉 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Crossbow Limb","tr":"哈氏合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Crossbow Limb","tr":"锻铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Crossbow Limb","tr":"铁木 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Crossbow Limb","tr":"橄榄石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Crossbow Limb","tr":"蛋白石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Crossbow Limb","tr":"紫水晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Crossbow Limb","tr":"暗影金属 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Crossbow Limb","tr":"暗影铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Crossbow Limb","tr":"暗影钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Crossbow Limb","tr":"钢叶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Crossbow Limb","tr":"骑士金属 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Crossbow Limb","tr":"标准纯银 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Crossbow Limb","tr":"玫瑰金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Crossbow Limb","tr":"黑青铜 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Crossbow Limb","tr":"铋青铜 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Crossbow Limb","tr":"黑钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Crossbow Limb","tr":"红钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Crossbow Limb","tr":"蓝钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Crossbow Limb","tr":"大马士革钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Crossbow Limb","tr":"充能合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Crossbow Limb","tr":"脉冲合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Crossbow Limb","tr":"星辰银 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Crossbow Limb","tr":"钴黄铜 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Crossbow Limb","tr":"红石榴石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Crossbow Limb","tr":"黄石榴石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Crossbow Limb","tr":"温特姆 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Crossbow Limb","tr":"黑花岗岩 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Crossbow Limb","tr":"红花岗岩 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Crossbow Limb","tr":"白石棉 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Crossbow Limb","tr":"雄黄 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Crossbow Limb","tr":"磁化铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Crossbow Limb","tr":"磁化钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Crossbow Limb","tr":"磁化钕 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Crossbow Limb","tr":"碳化钨 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Crossbow Limb","tr":"钒钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Crossbow Limb","tr":"高速钢-G 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Crossbow Limb","tr":"高速钢-E 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Crossbow Limb","tr":"高速钢-S 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Crossbow Limb","tr":"深铅 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Crossbow Limb","tr":"量子 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Crossbow Limb","tr":"深空秘银 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Crossbow Limb","tr":"黑钚 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Crossbow Limb","tr":"木卫四冰 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Crossbow Limb","tr":"硬铝 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Crossbow Limb","tr":"奥利哈钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Crossbow Limb","tr":"三元金属 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Crossbow Limb","tr":"聚苯硫醚 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Crossbow Limb","tr":"聚苯乙烯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Crossbow Limb","tr":"丁苯橡胶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Crossbow Limb","tr":"镍锌铁氧体 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Crossbow Limb","tr":"纤维强化的环氧树脂 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Crossbow Limb","tr":"磁化钐 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Crossbow Limb","tr":"无尽催化剂 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Crossbow Limb","tr":"聚苯并咪唑 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Crossbow Limb","tr":" 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Crossbow Limb","tr":"钛铂钒合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Crossbow Limb","tr":"时空 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Crossbow Limb","tr":"大理石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Crossbow Limb","tr":"神秘水晶 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Crossbow Limb","tr":"末影钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Crossbow Limb","tr":"复合粘土 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Crossbow Limb","tr":"晶化合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Crossbow Limb","tr":"旋律合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Crossbow Limb","tr":"恒星合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Crossbow Limb","tr":"晶化粉红史莱姆 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Crossbow Limb","tr":"充能银 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Crossbow Limb","tr":"生动合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Crossbow Limb","tr":"灵宝 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Crossbow Limb","tr":"超时空金属 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Crossbow Limb","tr":"活石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Crossbow Limb","tr":"盖亚之魂 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Crossbow Limb","tr":"活木 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Crossbow Limb","tr":"梦之木 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Crossbow Limb","tr":"泡铋 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Crossbow Limb","tr":"立方氧化锆 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Crossbow Limb","tr":"氟铁电气石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Crossbow Limb","tr":"铬铝电气石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Crossbow Limb","tr":"钒镁电气石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Crossbow Limb","tr":"铝电气石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Crossbow Limb","tr":"红锆石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Crossbow Limb","tr":"铁橄榄石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Crossbow Limb","tr":"镁橄榄石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Crossbow Limb","tr":"钙铁辉石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Crossbow Limb","tr":"钍-232 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Crossbow Limb","tr":"堇云石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Crossbow Limb","tr":"磁共振石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Crossbow Limb","tr":"锎 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Crossbow Limb","tr":"BArTiMaEuSNeK 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Crossbow Limb","tr":"钌 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Crossbow Limb","tr":"铑 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Crossbow Limb","tr":"镀铑钯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Crossbow Limb","tr":"泰伯利亚 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Crossbow Limb","tr":"钌铱合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Crossbow Limb","tr":"氟石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Crossbow Limb","tr":"高耐久性复合钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Crossbow Limb","tr":"硬钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Crossbow Limb","tr":"合成玉 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Crossbow Limb","tr":"原子分离催化剂 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Crossbow Limb","tr":"极不稳定硅岩 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Crossbow Limb","tr":"锌钍合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Crossbow Limb","tr":"锆锡合金-4 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Crossbow Limb","tr":"锆锡合金-2 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Crossbow Limb","tr":"耐热铬铁合金-903 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Crossbow Limb","tr":"精金合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Crossbow Limb","tr":"MAR-M200特种钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Crossbow Limb","tr":"MAR-Ce-M200特种钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Crossbow Limb","tr":"氯化锂 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Crossbow Limb","tr":"信素 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Crossbow Limb","tr":"流明 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Crossbow Limb","tr":"阿瑟锡 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Crossbow Limb","tr":"钛钼合金β-C 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Crossbow Limb","tr":"大力合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Crossbow Limb","tr":"光素 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Crossbow Limb","tr":"对立合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Crossbow Limb","tr":"稀有金属合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Crossbow Limb","tr":"富集硅岩合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Crossbow Limb","tr":"亚稳态鿫 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Crossbow Limb","tr":"调律源金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Crossbow Limb","tr":"魔钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Crossbow Limb","tr":"泰拉钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Crossbow Limb","tr":"源质钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Crossbow Limb","tr":"磁流体约束恒星物质 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Crossbow Limb","tr":"白矮星物质 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Crossbow Limb","tr":"黑矮星物质 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Crossbow Limb","tr":"宇宙素 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Crossbow Limb","tr":"铝 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Crossbow Limb","tr":"铍 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Crossbow Limb","tr":"铋 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Crossbow Limb","tr":"碳 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Crossbow Limb","tr":"铬 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Crossbow Limb","tr":"金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Crossbow Limb","tr":"铱 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Crossbow Limb","tr":"铅 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Crossbow Limb","tr":"锰 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Crossbow Limb","tr":"钼 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Crossbow Limb","tr":"钕 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Crossbow Limb","tr":"中子 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Crossbow Limb","tr":"镍 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Crossbow Limb","tr":"锇 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Crossbow Limb","tr":"钯 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Crossbow Limb","tr":"铂 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Crossbow Limb","tr":"钚-239 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Crossbow Limb","tr":"钚-241 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Crossbow Limb","tr":"银 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Crossbow Limb","tr":"钍 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Crossbow Limb","tr":"钛 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Crossbow Limb","tr":"钨 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Crossbow Limb","tr":"铀-238 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Crossbow Limb","tr":"铀-235 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Crossbow Limb","tr":"红宝石 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Crossbow Limb","tr":"红石合金 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Crossbow Limb","tr":"终末 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Crossbow Limb","tr":"导电铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Crossbow Limb","tr":"磁钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Crossbow Limb","tr":"钨钢 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Crossbow Limb","tr":"烈焰 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Crossbow Limb","tr":"脉冲铁 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Crossbow Limb","tr":"龙 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Crossbow Limb","tr":"觉醒龙 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Crossbow Limb","tr":"褐铜 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Crossbow Limb","tr":"山铜 弩臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorEnergypack":{"1":{"name":"Energypack","tr":"能量水晶储电背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Energypack","tr":"能量水晶储电背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"ForbiddenMagic:TaintCoal":{"0":{"name":"Hexcoal","tr":"六重煤炭","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodSiliconCarbide":{"0":{"oreDict":["stickSiliconCarbide"],"name":"碳化硅杆","tr":"碳化硅杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.BiblioGlasses":{"0":{"name":"Reading Glasses","tr":"老花镜","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tinted Glasses","tr":"太阳镜","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Monocle","tr":"单片眼镜","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"ForbiddenMagic:TaintPickaxe":{"0":{"name":"Pickaxe of Distortion","tr":"畸变镐","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1501}},"GalacticraftAmunRa:tile.aluChest":{"0":{"name":"Aluminum Chest","tr":"铝制箱子","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTellurium":{"0":{"oreDict":["cellTellurium"],"name":"碲单元","tr":"碲单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"kekztech:kekztech_crafting_item":{"9":{"name":"YSZ Ceramic Dust","tr":"钇锆陶瓷粉","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"GDC Ceramic Dust","tr":"钆铈陶瓷粉","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustYttriumOxide"],"name":"Yttria Dust","tr":"氧化钇粉","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustCubicZirconia"],"name":"Zirconia Dust","tr":"氧化锆粉","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Ceria Dust","tr":"氧化铈粉","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"YSZ Ceramic Plate","tr":"钇锆陶瓷板","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"GDC Ceramic Plate","tr":"钆铈陶瓷板","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:Sampler":{"0":{"name":"Genetic Sampler","tr":"基因采样机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:cwoodendoor":{"0":{"name":"Wooden Door","tr":"木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonbarItem":{"0":{"oreDict":["foodLemonbar"],"name":"Lemon Bar","tr":"柠檬方糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamVanillabean":{"0":{"name":"Vanilla Bean","tr":"香草豆","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:magreader":{"0":{"name":"Magnetic Card Reader","tr":"磁卡片输入机","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotLithium7":{"0":{"oreDict":["ingotLithium7"],"name":"锂-7锭","tr":"锂-7锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaPolonium":{"0":{"oreDict":["cellPlasmaPolonium"],"name":"钋等离子体单元","tr":"钋等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleZirconiumCarbide":{"0":{"oreDict":["plateDoubleZirconiumCarbide"],"name":"双重碳化锆板","tr":"双重碳化锆板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:hashItem":{"0":{"oreDict":["foodHash"],"name":"Hash","tr":"大杂烩","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaBomb":{"0":{"name":"Manastorm Charge","tr":"魔力风暴","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:phantomInk":{"0":{"name":"Phantom Ink","tr":"幻影墨水","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockIngotStorage":{"0":{"oreDict":["blockElectricalSteel"],"name":"Electrical Steel Block","tr":"磁钢块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockEnergeticAlloy"],"name":"Energetic Alloy Block","tr":"充能合金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockPhasedGold"," blockVibrantAlloy"],"name":"Vibrant Alloy Block","tr":"脉冲合金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockRedstoneAlloy"],"name":"Redstone Alloy Block","tr":"红石合金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockConductiveIron"],"name":"Conductive Iron Block","tr":"导电铁块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockPulsatingIron"," blockPhasedIron"],"name":"Pulsating Iron Block","tr":"脉冲铁块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockDarkSteel"],"name":"Dark Steel Block","tr":"玄钢块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockSoularium"],"name":"Soularium Block","tr":"魂金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockEndSteel"],"name":"End Steel Block","tr":"末影钢块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedPeat":{"0":{"name":"Crated Peat","tr":"装箱的泥炭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBottle":{"0":{"name":"Casting Form (Bottle Mold)","tr":"铸件(瓶)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:figjuiceItem":{"0":{"oreDict":["listAlljuice"," foodFigjuice"],"name":"Fig Juice","tr":"无花果汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureHibonite":{"0":{"oreDict":["dustPureHibonite"],"name":"Purified Hibonite Dust","tr":"洁净黑铝钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:liquidmethane":{"0":{"name":"Liquid Methane","tr":"土卫六液态甲烷","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:gold2":{"0":{"name":"Block of Gold","tr":"金块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Gold","tr":"金块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Gold","tr":"金块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Gold","tr":"金块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Gold","tr":"金块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Gold","tr":"金块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleWatertightSteel":{"0":{"oreDict":["plateDoubleWatertightSteel"],"name":"双重防水钢板","tr":"双重防水钢板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"thaumicbases:metalleat":{"0":{"name":"Metalleat Crop","tr":"金属草","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:papayasmoothieItem":{"0":{"oreDict":["foodPapayasmoothie"," listAllsmoothie"],"name":"Papaya Smoothie","tr":"木瓜冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:moonSensor":{"0":{"name":"Moon Phase Sensor","tr":"月相传感器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:distilleryburning":{"0":{"name":"Distillery","tr":"工作中的蒸馏塔","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:barrelTierFive":{"0":{"name":"Barrel (Tier 5)","tr":"炮管(五级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_AdvancedRobeLegs":{"0":{"name":"Bewitched Leggings","tr":"秘法护腿","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":376}},"TConstruct:fluid.molten.manyullyn":{"0":{"name":"Molten Manyullyn","tr":"熔融玛玉灵","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MarshmallowForm":{"0":{"name":"Mold (Marshmallow)","tr":"棉花糖模具","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:devilstonguecharm":{"0":{"name":"Devils Tongue Charm","tr":"恶魔舌之咒","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":51}},"harvestcraft:mcpamItem":{"0":{"oreDict":["foodMcpam"],"name":"McPam","tr":"潘氏巨无霸","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotCinobiteA243":{"0":{"oreDict":["ingotCinobiteA243"],"name":"西诺柏A243锭","tr":"西诺柏A243锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureGadoliniteCe":{"0":{"oreDict":["dustImpureGadoliniteCe"],"name":"Impure Gadolinite (Ce) Dust","tr":"含杂硅铍钇矿(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyRadium":{"0":{"oreDict":["dustTinyRadium"],"name":"小撮镭粉","tr":"小撮镭粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:frameGentle":{"0":{"name":"Gentle Frame","tr":"柔性框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":201}},"witchery:hornofthehunt":{"0":{"name":"Horn of the Hunt","tr":"狩猎之角","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":2}},"IC2:itemPlates":{"0":{"oreDict":["plateCopper"," plateAnyCopper"],"name":"Copper Plate","tr":"铜板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plateTin"],"name":"Tin Plate","tr":"锡板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plateBronze"," plateAnyBronze"],"name":"Bronze Plate","tr":"青铜板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plateGold"],"name":"Gold Plate","tr":"金板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plateIron"," plateAnyIron"],"name":"Iron Plate","tr":"铁板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Steel Plate","tr":"精炼铁板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plateLead"],"name":"Lead Plate","tr":"铅板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plateObsidian"],"name":"Obsidian Plate","tr":"黑曜石板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plateLapis"],"name":"Lapis Lazuli Plate","tr":"青金石板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioPotionShelf":{"0":{"name":"Oak Potion Shelf","tr":"橡木药水架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Potion Shelf","tr":"云杉木药水架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Potion Shelf","tr":"白桦木药水架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Potion Shelf","tr":"丛林木药水架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Potion Shelf","tr":"金合欢药水架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Potion Shelf","tr":"深色橡木药水架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Potion Shelf","tr":"镶框药水架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryOil":{"0":{"name":"Oil Capsule","tr":"石油胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorMOXQuaddepleted":{"0":{"name":"Quad Fuel Rod (Depleted MOX)","tr":"四联燃料棒(枯竭MOX)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockEnergyAcceptor":{"0":{"name":"Energy Acceptor","tr":"能源接收器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:portable_fluid_cell":{"0":{"name":"Portable Fluid Cell","tr":"便携流体元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":33}},"dreamcraft:dreamcraft_CompressedNitrogen":{"0":{"name":"Compressed Nitrogen Gas","tr":"压缩氮气","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemBasicStorageCell.4k":{"0":{"name":"4k ME Storage Cell","tr":"4k-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"TGregworks:tGregToolPartShuriken":{"1536":{"name":"精金 Shuriken","tr":"精金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Shuriken","tr":"神秘蓝金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Shuriken","tr":"琥珀 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Shuriken","tr":"纯镃 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Shuriken","tr":"谐镃 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Shuriken","tr":"聚氯乙烯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Shuriken","tr":"永恒 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Shuriken","tr":"磁物质 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Shuriken","tr":"赛特斯石英 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Shuriken","tr":"暗影秘银 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Shuriken","tr":"玄铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Shuriken","tr":"戴斯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Shuriken","tr":"铿铀 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Shuriken","tr":"通流琥珀金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Shuriken","tr":"末影粗胚 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Shuriken","tr":"末影(te) 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Shuriken","tr":"炽热的钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Shuriken","tr":"火石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Shuriken","tr":"力量 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Shuriken","tr":"石墨 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Shuriken","tr":"石墨烯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Shuriken","tr":"注魔金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Shuriken","tr":"风之魔晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Shuriken","tr":"火之魔晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Shuriken","tr":"地之魔晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Shuriken","tr":"水之魔晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Shuriken","tr":"混沌魔晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Shuriken","tr":"秩序魔晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Shuriken","tr":"玉 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Shuriken","tr":"碧玉 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Shuriken","tr":"陨铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Shuriken","tr":"陨钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Shuriken","tr":"硅岩 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Shuriken","tr":"硅岩合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Shuriken","tr":"富集硅岩 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Shuriken","tr":"超能硅岩 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Shuriken","tr":"下界石英 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Shuriken","tr":"下界之星 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Shuriken","tr":"三钛 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Shuriken","tr":"虚空 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Shuriken","tr":"胶木 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Shuriken","tr":"幽冥剧毒结晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Shuriken","tr":"强化 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Shuriken","tr":"铱锇合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Shuriken","tr":"阳光化合物 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Shuriken","tr":"魂金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Shuriken","tr":"蓝黄玉 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Shuriken","tr":"黄铜 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Shuriken","tr":"白铜 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Shuriken","tr":"深渊铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Shuriken","tr":"钻石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Shuriken","tr":"琥珀金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Shuriken","tr":"绿宝石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Shuriken","tr":"强化混合晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Shuriken","tr":"混合晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Shuriken","tr":"绿色蓝宝石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Shuriken","tr":"殷钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Shuriken","tr":"坎塔尔合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Shuriken","tr":"镁铝合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Shuriken","tr":"镍铬合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Shuriken","tr":"玄钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Shuriken","tr":"生铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Shuriken","tr":"聚乙烯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Shuriken","tr":"环氧树脂 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Shuriken","tr":"硅橡胶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Shuriken","tr":"聚己内酰胺 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Shuriken","tr":"聚四氟乙烯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Shuriken","tr":"蓝宝石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Shuriken","tr":"不锈钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Shuriken","tr":"坦桑石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Shuriken","tr":"锡铁合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Shuriken","tr":"黄玉 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Shuriken","tr":"哈氏合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Shuriken","tr":"锻铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Shuriken","tr":"铁木 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Shuriken","tr":"橄榄石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Shuriken","tr":"蛋白石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Shuriken","tr":"紫水晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Shuriken","tr":"暗影金属 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Shuriken","tr":"暗影铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Shuriken","tr":"暗影钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Shuriken","tr":"钢叶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Shuriken","tr":"骑士金属 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Shuriken","tr":"标准纯银 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Shuriken","tr":"玫瑰金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Shuriken","tr":"黑青铜 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Shuriken","tr":"铋青铜 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Shuriken","tr":"黑钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Shuriken","tr":"红钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Shuriken","tr":"蓝钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Shuriken","tr":"大马士革钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Shuriken","tr":"充能合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Shuriken","tr":"脉冲合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Shuriken","tr":"星辰银 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Shuriken","tr":"钴黄铜 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Shuriken","tr":"红石榴石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Shuriken","tr":"黄石榴石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Shuriken","tr":"温特姆 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Shuriken","tr":"黑花岗岩 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Shuriken","tr":"红花岗岩 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Shuriken","tr":"白石棉 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Shuriken","tr":"雄黄 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Shuriken","tr":"磁化铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Shuriken","tr":"磁化钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Shuriken","tr":"磁化钕 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Shuriken","tr":"碳化钨 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Shuriken","tr":"钒钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Shuriken","tr":"高速钢-G 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Shuriken","tr":"高速钢-E 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Shuriken","tr":"高速钢-S 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Shuriken","tr":"深铅 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Shuriken","tr":"量子 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Shuriken","tr":"深空秘银 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Shuriken","tr":"黑钚 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Shuriken","tr":"木卫四冰 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Shuriken","tr":"硬铝 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Shuriken","tr":"奥利哈钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Shuriken","tr":"三元金属 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Shuriken","tr":"聚苯硫醚 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Shuriken","tr":"聚苯乙烯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Shuriken","tr":"丁苯橡胶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Shuriken","tr":"镍锌铁氧体 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Shuriken","tr":"纤维强化的环氧树脂 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Shuriken","tr":"磁化钐 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Shuriken","tr":"无尽催化剂 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Shuriken","tr":"聚苯并咪唑 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Shuriken","tr":" 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Shuriken","tr":"钛铂钒合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Shuriken","tr":"时空 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Shuriken","tr":"大理石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Shuriken","tr":"神秘水晶 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Shuriken","tr":"末影钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Shuriken","tr":"复合粘土 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Shuriken","tr":"晶化合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Shuriken","tr":"旋律合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Shuriken","tr":"恒星合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Shuriken","tr":"晶化粉红史莱姆 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Shuriken","tr":"充能银 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Shuriken","tr":"生动合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Shuriken","tr":"灵宝 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Shuriken","tr":"超时空金属 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Shuriken","tr":"活石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Shuriken","tr":"盖亚之魂 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Shuriken","tr":"活木 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Shuriken","tr":"梦之木 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Shuriken","tr":"泡铋 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Shuriken","tr":"立方氧化锆 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Shuriken","tr":"氟铁电气石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Shuriken","tr":"铬铝电气石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Shuriken","tr":"钒镁电气石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Shuriken","tr":"铝电气石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Shuriken","tr":"红锆石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Shuriken","tr":"铁橄榄石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Shuriken","tr":"镁橄榄石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Shuriken","tr":"钙铁辉石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Shuriken","tr":"钍-232 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Shuriken","tr":"堇云石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Shuriken","tr":"磁共振石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Shuriken","tr":"锎 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Shuriken","tr":"BArTiMaEuSNeK 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Shuriken","tr":"钌 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Shuriken","tr":"铑 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Shuriken","tr":"镀铑钯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Shuriken","tr":"泰伯利亚 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Shuriken","tr":"钌铱合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Shuriken","tr":"氟石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Shuriken","tr":"高耐久性复合钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Shuriken","tr":"硬钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Shuriken","tr":"合成玉 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Shuriken","tr":"原子分离催化剂 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Shuriken","tr":"极不稳定硅岩 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Shuriken","tr":"锌钍合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Shuriken","tr":"锆锡合金-4 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Shuriken","tr":"锆锡合金-2 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Shuriken","tr":"耐热铬铁合金-903 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Shuriken","tr":"精金合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Shuriken","tr":"MAR-M200特种钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Shuriken","tr":"MAR-Ce-M200特种钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Shuriken","tr":"氯化锂 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Shuriken","tr":"信素 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Shuriken","tr":"流明 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Shuriken","tr":"阿瑟锡 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Shuriken","tr":"钛钼合金β-C 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Shuriken","tr":"大力合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Shuriken","tr":"光素 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Shuriken","tr":"对立合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Shuriken","tr":"稀有金属合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Shuriken","tr":"富集硅岩合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Shuriken","tr":"亚稳态鿫 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Shuriken","tr":"调律源金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Shuriken","tr":"魔钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Shuriken","tr":"泰拉钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Shuriken","tr":"源质钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Shuriken","tr":"磁流体约束恒星物质 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Shuriken","tr":"白矮星物质 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Shuriken","tr":"黑矮星物质 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Shuriken","tr":"宇宙素 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Shuriken","tr":"铝 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Shuriken","tr":"铍 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Shuriken","tr":"铋 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Shuriken","tr":"碳 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Shuriken","tr":"铬 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Shuriken","tr":"金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Shuriken","tr":"铱 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Shuriken","tr":"铅 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Shuriken","tr":"锰 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Shuriken","tr":"钼 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Shuriken","tr":"钕 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Shuriken","tr":"中子 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Shuriken","tr":"镍 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Shuriken","tr":"锇 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Shuriken","tr":"钯 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Shuriken","tr":"铂 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Shuriken","tr":"钚-239 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Shuriken","tr":"钚-241 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Shuriken","tr":"银 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Shuriken","tr":"钍 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Shuriken","tr":"钛 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Shuriken","tr":"钨 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Shuriken","tr":"铀-238 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Shuriken","tr":"铀-235 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Shuriken","tr":"红宝石 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Shuriken","tr":"红石合金 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Shuriken","tr":"终末 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Shuriken","tr":"导电铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Shuriken","tr":"磁钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Shuriken","tr":"钨钢 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Shuriken","tr":"烈焰 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Shuriken","tr":"脉冲铁 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Shuriken","tr":"龙 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Shuriken","tr":"觉醒龙 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Shuriken","tr":"褐铜 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Shuriken","tr":"山铜 手里剑","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:BlockWarpwoodPlanks":{"0":{"oreDict":["plankWood"],"name":"Warpwood Planks","tr":"扭曲木板","tab":"污秽魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:toastedcoconutItem":{"0":{"oreDict":["foodToastedcoconut"],"name":"Toasted Coconut","tr":"烤椰子","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TitaniumItemCasing":{"0":{"oreDict":["itemCasingTitanium"],"name":"Titanium Item Casing","tr":"钛外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCalciumHydroxide":{"0":{"oreDict":["dustSmallCalciumHydroxide"],"name":"小堆氢氧化钙粉","tr":"小堆氢氧化钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewTumbaga":{"0":{"oreDict":["screwTumbaga"],"name":"铜金合金螺丝","tr":"铜金合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:elementiumPick":{"0":{"name":"Elementium Pickaxe","tr":"源质钢镐","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":721}},"RandomThings:imbue":{"0":{"name":"Flask of Poison","tr":"毒性激素药水","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Flask of Experience","tr":"经验激素药水","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Flask of Fire","tr":"火焰激素药水","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flask of Withering","tr":"凋零激素药水","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Flask of Weakness","tr":"虚弱激素药水","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Flask of Spectre","tr":"灵魂激素药水","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1}},"Genetics:advMachine":{"0":{"name":"Splicer","tr":"基因拼接器","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamredvelvetCake":{"0":{"name":"Red Velvet Cake","tr":"红丝绒蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:neapolitanicecreamItem":{"0":{"oreDict":["foodNeapolitanicecream"],"name":"Neapolitan Ice Cream","tr":"那不勒斯冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockTelePad":{"0":{"name":"Telepad Block","tr":"传送台","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:stair.sakura":{"0":{"oreDict":["stairWood"],"name":"Sakura Stairs","tr":"樱花树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedIrarsite":{"0":{"oreDict":["crushedIrarsite"],"name":"Crushed Irarsite Ore","tr":"粉碎硫砷铱矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:infoBook":{"0":{"name":"World Domination with OpenBlocks","tr":"用开放式方块主宰世界","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.moonwormQueen":{"0":{"name":"Moonworm Queen","tr":"月光蠕虫女王","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":257}},"catwalks:cagedLadder_south_unlit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:chisel":{"0":{"name":"§f山铜 凿子","tr":"§f山铜 凿子","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"Thaumcraft:ItemResource":{"0":{"name":"Alumentum","tr":"源动之焰","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Nitor","tr":"闪耀之光","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotThaumium"],"name":"Thaumium Ingot","tr":"神秘锭","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["quicksilver"," gemMercury"," nuggetQuicksilver"],"name":"Quicksilver","tr":"水银","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Magic Tallow","tr":"魔力油脂","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["gemAmber"],"name":"Amber","tr":"琥珀","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Enchanted Fabric","tr":"魔力布匹","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Vis Filter","tr":"魔力滤管","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["paperResearchFragment"],"name":"Knowledge Fragment","tr":"知识碎片","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Mirrored Glass","tr":"镜面玻璃","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["resourceTaint"],"name":"Tainted Goo","tr":"腐化粘浆","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Taint Tendril","tr":"腐化触手","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Jar Label","tr":"罐子标签","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Salis Mundus","tr":"世界盐","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Primal Charm","tr":"元始魔力","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"oreDict":["ingotVoid"],"name":"Void metal Ingot","tr":"虚空金属锭","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Void Seed","tr":"虚空种子","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["nuggetGold"],"name":"Gold Coin","tr":"金币","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:laser_beam":{"0":{"name":"Laser Beam","tr":"激光束","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:pipeWaterproof":{"0":{"name":"Pipe Sealant","tr":"管道密封剂","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fluid.biomass":{"0":{"name":"Biomass","tr":"生物质","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:tree":{"0":{"oreDict":["logWood"],"name":"Eucalyptus Wood","tr":"桉树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Sakura Wood","tr":"樱花树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Ghostwood","tr":"幽魂树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Hopseed Wood","tr":"车桑子树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:player_sensor":{"0":{"name":"Player Sensor","tr":"玩家感应器","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:picklesItem":{"0":{"oreDict":["foodPickles"],"name":"Pickles","tr":"咸菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:countercorner":{"0":{"name":"Counter Corner","tr":"厨柜转角","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:solarPanelAddon":{"0":{"name":"Addon - Solar Generator","tr":"附件-太阳能芯片","tab":"模块化炮塔","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:Pattern":{"0":{"name":"Shuriken Pattern","tr":"手里剑模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Crossbow Limb Pattern","tr":"弩臂模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Crossbow Body Pattern","tr":"弩身模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Bow Limb Pattern","tr":"弓臂模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestthenether:netherPlanks":{"0":{"oreDict":["plankWood"],"name":"Nether Planks","tr":"下界木板","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemEncodedPattern":{"0":{"name":"Encoded Pattern","tr":"编码样板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:sacredoakStairs":{"0":{"oreDict":["stairWood"],"name":"Sacred Oak Wood Stairs","tr":"神圣橡木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:item.empty":{"0":{"name":"Empty","tr":"Empty","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:eggsaladItem":{"0":{"oreDict":["foodEggsalad"],"name":"Egg Salad","tr":"鸡蛋沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreLanthaniteLa":{"0":{"oreDict":["oreLanthaniteLa"],"name":"Lanthanite (La) Ore","tr":"镧石(La)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCurium":{"0":{"oreDict":["dustCurium"],"name":"锔粉","tr":"锔粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBees":{"0":{"name":"Coin \"The Beekeeper 1\"","tr":"养蜂员币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustUN18Fertiliser":{"0":{"oreDict":["dustUN18Fertiliser"],"name":"流体肥料UN-18粉","tr":"流体肥料UN-18粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemMultiMaterial":{"1":{"oreDict":["itemCertusQuartz"," craftingQuartz"," crystalChargedCertusQuartz"," gemChargedCertusQuartz"],"name":"Charged Certus Quartz Crystal","tr":"充能赛特斯石英水晶","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Matter Ball","tr":"物质球","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["craftingQuartz"," crystalFluix"," gemFluix"],"name":"Fluix Crystal","tr":"福鲁伊克斯水晶","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustFluix"],"name":"Fluix Dust","tr":"福鲁伊克斯粉","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["pearlFluix"],"name":"Fluix Pearl","tr":"福鲁伊克斯珍珠","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["itemCertusQuartz"," craftingQuartz"],"name":"Pure Certus Quartz Crystal","tr":"高纯赛特斯石英水晶","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["craftingQuartz"," itemNetherQuartz"],"name":"Pure Nether Quartz Crystal","tr":"高纯下界石英水晶","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["crystalPureFluix"],"name":"Pure Fluix Crystal","tr":"高纯福鲁伊克斯水晶","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Inscriber Calculation Press","tr":"运算压印模板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Inscriber Engineering Press","tr":"工程压印模板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Inscriber Logic Press","tr":"逻辑压印模板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Printed Calculation Circuit","tr":"运算电路板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Printed Engineering Circuit","tr":"工程电路板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Printed Logic Circuit","tr":"逻辑电路板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Inscriber Silicon Press","tr":"硅压印模板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Printed Silicon","tr":"硅板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Inscriber Name Press","tr":"名称压印模板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Logic Processor","tr":"逻辑处理器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Calculation Processor","tr":"运算处理器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Engineering Processor","tr":"工程处理器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Basic Card","tr":"基础卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Redstone Card","tr":"红石卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Capacity Card","tr":"容量卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Advanced Card","tr":"高级卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Fuzzy Card","tr":"模糊卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Acceleration Card","tr":"加速卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Inverter Card","tr":"反相卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"2³ Spatial Component","tr":"2³-空间组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"16³ Spatial Component","tr":"16³-空间组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"128³ Spatial Component","tr":"128³-空间组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"1k ME Storage Component","tr":"1k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"4k ME Storage Component","tr":"4k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"16k ME Storage Component","tr":"16k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"64k ME Storage Component","tr":"64k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"Universal Storage Housing","tr":"Universal Storage Housing","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Wireless Receiver","tr":"无线接收器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Wireless Booster","tr":"无线信号增幅器","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Formation Core","tr":"成型核心","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Annihilation Core","tr":"破坏核心","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"Sky Stone Dust","tr":"陨石粉","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"Singularity","tr":"奇点","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"Quantum Entangled Singularity","tr":"量子纠缠奇点","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"name":"Blank Pattern","tr":"空白样板","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"Crafting Card","tr":"合成卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"Pattern Capacity Card","tr":"样板容量卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"name":"Oredictionary Filter Card","tr":"矿典过滤卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"Hyper-Acceleration Card","tr":"超级加速卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"256k ME Storage Component","tr":"256k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"1024k ME Storage Component","tr":"1024k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"name":"4096k ME Storage Component","tr":"4096k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"name":"16384k ME Storage Component","tr":"16384k-ME存储组件","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"name":"ME Advanced Storage Housing","tr":"ME高级存储外壳","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"name":"Pattern Refiller Card","tr":"空白样板重填卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"name":"Advanced Blocking Card","tr":"高级阻挡卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"name":"Sticky Card","tr":"粘性卡","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"name":"Locking Card","tr":"Locking Card","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:deathshand":{"0":{"name":"Hand of Death","tr":"死神之手","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CentauriASurfaceDust":{"0":{"oreDict":["dustSpace"," dustCentauriA"," dustCentauriASurface"],"name":"α Centauri Bb Surface Dust","tr":"半人马Bb地表尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:hempcretesand":{"0":{"oreDict":["hempcretesand"],"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Hempcrete powder","tr":"粉状汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:thaumium":{"0":{"name":"Thaumium Block","tr":"神秘方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Thaumium Block","tr":"神秘方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Thaumium Block","tr":"神秘方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Thaumium Block","tr":"神秘方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Thaumium Block","tr":"神秘方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Thaumium Block","tr":"神秘方块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastonePillarWeathered":{"0":{"name":"Ruined Nagastone Pillar","tr":"Ruined Nagastone Pillar","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.rockSlab":{"0":{"name":"Basalt Slab","tr":"玄武岩台阶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Basalt Brick Slab","tr":"玄武岩砖台阶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Smooth Basalt Slab","tr":"平滑玄武岩台阶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Obsidian Brick Slab","tr":"黑曜石砖块台阶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Aluminum Slab","tr":"铝制台阶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.copper":{"0":{"name":"Molten Copper","tr":"熔融铜","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.laboratory_door":{"0":{"name":"Laboratory Door","tr":"实验室门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockCelestialTungsten":{"0":{"oreDict":["blockCelestialTungsten"],"name":"天体钨块","tr":"天体钨块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtOctiron":{"0":{"oreDict":["frameGtOctiron"],"name":"八角铁框架","tr":"八角铁框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:compacter":{"0":{"name":"Soul Compacter","tr":"灵魂压缩器","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearTungstenTitaniumCarbide":{"0":{"oreDict":["gearGtTungstenTitaniumCarbide"," gearTungstenTitaniumCarbide"],"name":"碳化钨钛合金齿轮","tr":"碳化钨钛合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongEglinSteel":{"0":{"oreDict":["stickLongEglinSteel"],"name":"长埃格林钢杆","tr":"长埃格林钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:desertgarden":{"0":{"name":"Desert Garden","tr":"沙漠菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongTriniumNaquadahCarbonite":{"0":{"oreDict":["stickLongTriniumNaquadahCarbonite"],"name":"长掺碳三元硅岩合金杆","tr":"长掺碳三元硅岩合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coffeeseedItem":{"0":{"oreDict":["listAllseed"," seedCoffee"],"name":"Coffee Seed","tr":"咖啡豆种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.meefRaw":{"0":{"name":"Raw Meef","tr":"生牛头人肉","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemCometMeteor":{"0":{"name":"Icy Boots of the Frozen Meteor","tr":"冰流星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:oreLanthaniteNd":{"0":{"oreDict":["oreLanthaniteNd"],"name":"Lanthanite (Nd) Ore","tr":"镧石(Nd)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fieryLegs":{"0":{"name":"Fiery Legs","tr":"炽热的护腿","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":376}},"Railcraft:cart.tank":{"0":{"name":"Tank Cart","tr":"蓄水槽车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"AdvancedSolarPanel:asp_crafting_items":{"0":{"oreDict":["craftingSunnarium"],"name":"Sunnarium","tr":"阳光化合物","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Sunnarium Alloy","tr":"阳光合金","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Irradiant Uranium","tr":"光辉铀锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Enriched Sunnarium","tr":"富集阳光化合物","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Enriched Sunnarium Alloy","tr":"富集阳光化合物合金","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Irradiant Glass Pane","tr":"光辉玻璃板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Iridium-Iron Plate","tr":"铱铁合金板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Reinforced Iridium-Iron Plate","tr":"强化铱铁合金板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Irradiant Reinforced Iridium Plate","tr":"Irradiant Reinforced Iridium Plate","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["craftingSunnariumPart"],"name":"Sunnarium Piece","tr":"小块阳光化合物","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["ingotIridium"],"name":"Iridium Ingot","tr":"铱锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["ingotUranium"],"name":"Uranium Ingot","tr":"铀锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["craftingMTCore"],"name":"MT Core","tr":"MT核心","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Quantum Core","tr":"量子核心","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtInconel690":{"0":{"oreDict":["frameGtInconel690"],"name":"镍铬基合金-690框架","tr":"镍铬基合金-690框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockCrucible":{"0":{"name":"Incense Crucible","tr":"香炉","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_south_lit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:rfidreader":{"0":{"name":"RFID Reader","tr":"RFID读写器","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotZeron100":{"0":{"oreDict":["ingotZeron100"],"name":"塞龙-100锭","tr":"塞龙-100锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:crabcookedItem":{"0":{"oreDict":["foodCrabcooked"],"name":"Cooked Crab","tr":"熟螃蟹","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotZirconium":{"0":{"oreDict":["ingotZirconium"],"name":"锆锭","tr":"锆锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTriniumNaquadahAlloy":{"0":{"oreDict":["dustTriniumNaquadahAlloy"],"name":"三元硅岩合金粉","tr":"三元硅岩合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockMagicalLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Greatwood Leaves","tr":"宏伟之木树叶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Silverwood Leaves","tr":"银树树叶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:EnergyBallFocus":{"0":{"name":"Energy Ball Focus","tr":"法杖核心:能量球","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2}},"chisel:limestone_stairs.0":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier6Key":{"0":{"name":"Tier 5 Dungeon Key","tr":"5阶宝箱钥匙","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRotorBlackMetal":{"0":{"oreDict":["rotorBlackMetal"],"name":"黑物质转子","tr":"黑物质转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamstrawberryCrop":{"0":{"name":"Strawberry Crop","tr":"草莓","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_north_unlit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltErbium":{"0":{"oreDict":["boltErbium"],"name":"铒螺栓","tr":"铒螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:tobaccoSeeds":{"0":{"name":"Tobacco Seeds","tr":"烟草种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedDarkOakSapling":{"0":{"name":"Crated Dark Oak Sapling","tr":"装箱的深色橡树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusHellbat":{"0":{"name":"Wand Focus: Nine Hells","tr":"法杖核心:九狱","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:manualBook":{"0":{"oreDict":["bookTinkersManual"],"name":"Materials and You: Volume 1","tr":"匠魂宝典Ⅰ","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["bookTinkersManual"],"name":"Materials and You: Volume 2","tr":"匠魂宝典Ⅱ","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["bookTinkersManual"],"name":"Mighty Smelting","tr":"冶炼秘术","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["bookTinkersManual"],"name":"Diary of a Tinker","tr":"匠人日记","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["bookTinkersManual"],"name":"Tinkers\u0027 Weaponry","tr":"工匠武器","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHelmetFortress":{"0":{"name":"Thaumium Fortress Helm","tr":"神秘要塞兜鍪","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":441}},"Forestry:cratedCoal":{"0":{"name":"Crated Coal","tr":"装箱的煤炭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemToolThermometer":{"0":{"name":"Thermometer","tr":"温度计","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":103}},"miscutils:dustPurePolycrase":{"0":{"oreDict":["dustPurePolycrase"],"name":"Purified Polycrase Dust","tr":"洁净锗铀钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafHelm":{"0":{"name":"Steeleaf Helm","tr":"钢叶头盔","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":221}},"miscutils:itemRodTriniumTitaniumAlloy":{"0":{"oreDict":["stickTriniumTitaniumAlloy"],"name":"三元钛合金杆","tr":"三元钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShadowmetalCap":{"0":{"name":"Shadowmetal Cap","tr":"暗影杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:activationCrystal":{"0":{"name":"Weak Activation Crystal","tr":"[虚弱]激活水晶","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Awakened Activation Crystal","tr":"[觉醒]激活水晶","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Creative Activation Crystal","tr":"[创造模式]激活水晶","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyHeLiCoPtEr":{"0":{"oreDict":["dustTinyHeLiCoPtEr"],"name":"小撮HeLiCoPtEr粉","tr":"小撮HeLiCoPtEr粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:flutterlyzer":{"0":{"name":"Flutterlyzer","tr":"蝴蝶分析仪","tab":"林业|蝴蝶","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:redstoneReactorAddon":{"0":{"name":"Addon - Redstone Reactor","tr":"附件-红石能源芯片","tab":"模块化炮塔","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:quartzCrystalResonator":{"0":{"name":"Quartz Crystal Resonator","tr":"石英晶体谐振器","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pecanItem":{"0":{"oreDict":["listAllnut"," cropPecan"],"name":"Pecan","tr":"山核桃","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:framingTable":{"0":{"name":"Framing Table","tr":"成型台","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern1":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern3":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_stick":{"0":{"name":"Blood Infused Stick","tr":"注血木棍","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:pathMarkerBlock":{"0":{"name":"Path Mark","tr":"路径标","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:bedrockiumIngot":{"0":{"oreDict":["ingotBedrockium"],"name":"Bedrockium Ingot","tr":"基岩锭","tab":"更多实用设备","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern2":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaCdirt":{"0":{"name":"Barnarda C Dirt","tr":"巴纳德C泥土","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern5":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:vanillabeanItem":{"0":{"oreDict":["cropVanillabean"],"name":"Vanilla Bean","tr":"香草豆荚","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern4":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidPlutonium4":{"0":{"name":"Quad Fuel Rod (Excited Plutonium)","tr":"四联燃料棒(激发钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"chisel:jackolantern7":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern6":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidPlutonium2":{"0":{"name":"Dual Fuel Rod (Excited Plutonium)","tr":"二联燃料棒(激发钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"chisel:jackolantern9":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern8":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemAuraCore":{"0":{"name":"Aura Core","tr":"魔灵核心","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Aura Core","tr":"魔灵核心","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Aura Core","tr":"魔灵核心","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Aura Core","tr":"魔灵核心","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Aura Core","tr":"魔灵核心","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Aura Core","tr":"魔灵核心","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Aura Core","tr":"魔灵核心","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneB2SlabFull":{"0":{"name":"Metamorphic Mountain Stone Brick Slab","tr":"变质高山石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearThallium":{"0":{"oreDict":["gearGtThallium"," gearThallium"],"name":"铊齿轮","tr":"铊齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:placeditem":{"0":{"name":"tile.witchery:placeditem.name","tr":"tile.witchery:placeditem.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustRhenium":{"0":{"oreDict":["dustRhenium"],"name":"铼粉","tr":"铼粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:biometricScanner":{"0":{"name":"Biometric Reader","tr":"生物计量读写器","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:spikeTH":{"0":{"name":"Metal Spike","tr":"金属钉","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaAdvancedNitinol":{"0":{"oreDict":["cellPlasmaAdvancedNitinol"],"name":"高级镍钛诺等离子体单元","tr":"高级镍钛诺等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBlockHeatsand":{"0":{"name":"Crated Heat Sand","tr":"装箱的热沙","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockBasalt":{"0":{"name":"Basalt","tr":"玄武岩","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberryyogurtItem":{"0":{"oreDict":["foodBlueberryyogurt"],"name":"Blueberry Yogurt","tr":"蓝莓酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewCelestialTungsten":{"0":{"oreDict":["screwCelestialTungsten"],"name":"天体钨螺丝","tr":"天体钨螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:toaster":{"0":{"name":"Toaster","tr":"吐司机","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallRuthenium":{"0":{"oreDict":["dustSmallRuthenium"],"name":"小堆钌粉","tr":"小堆钌粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlatePikyonium64B":{"0":{"oreDict":["platePikyonium64B"],"name":"皮卡优合金64B板","tr":"皮卡优合金64B板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:block_special_effects":{"1":{"name":"specialEffects.1.name","tr":"specialEffects.1.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"specialEffects.2.name","tr":"specialEffects.2.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"specialEffects.3.name","tr":"specialEffects.3.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"specialEffects.4.name","tr":"specialEffects.4.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"specialEffects.5.name","tr":"specialEffects.5.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateIndalloy140":{"0":{"oreDict":["plateIndalloy140"],"name":"铋铅合金140板","tr":"铋铅合金140板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleIncoloyMA956":{"0":{"oreDict":["plateDoubleIncoloyMA956"],"name":"双重耐热铬铁合金-MA956板","tr":"双重耐热铬铁合金-MA956板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"AWWayofTime:bloodSocket":{"0":{"name":"Filled Socket","tr":"满的血插槽","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongHafnium":{"0":{"oreDict":["stickLongHafnium"],"name":"长铪杆","tr":"长铪杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabManaFull":{"0":{"name":"Mana Quartz Slab","tr":"魔力石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone0SlabFull":{"0":{"name":"Andesite Slab","tr":"安山岩台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"NodalMechanics:item.nodalmechanics.matrix":{"0":{"name":"Attuned Node Matrix","tr":"节点基体(已调制)","tab":"节点学","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsMangrove":{"0":{"name":"Mangrove Stairs","tr":"红树木楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodArcanite":{"0":{"oreDict":["stickArcanite"],"name":"奥金杆","tr":"奥金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:blockPlacer":{"0":{"name":"Block Placer","tr":"方块放置器","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:shimmerrock0Slab":{"0":{"name":"Shimmerrock Slab","tr":"微光石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipestructurecobblestone":{"0":{"name":"Cobblestone Structure Pipe","tr":"圆石建筑管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:baconwrappeddatesItem":{"0":{"oreDict":["foodBaconwrappeddates"],"name":"Bacon Wrapped Dates","tr":"培根包枣椰","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:Crystalwell":{"0":{"name":"Crystal Scribing Tools","tr":"水晶笔与墨","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":101}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidswood":{"0":{"name":"Wooden Fluid Pipe","tr":"木质流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearTalonite":{"0":{"oreDict":["gearGtTalonite"," gearTalonite"],"name":"铬钴磷酸盐合金齿轮","tr":"铬钴磷酸盐合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:sungrenade":{"0":{"name":"Sun Grenade","tr":"阳光手雷","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1}},"BiblioCraft:item.BiblioChase":{"0":{"name":"Print Press Chase","tr":"拓印槽","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusPech":{"0":{"name":"Wand Focus: Pech\u0027s Curse","tr":"法杖核心:岩精之诅咒","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:vortexTH":{"0":{"name":"Planar Vortex","tr":"异界漩涡","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Planar Vortex (Creative)","tr":"异界漩涡(创造)","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:slime.gel":{"0":{"name":"Congealed Blue Slime","tr":"蓝色凝固史莱姆块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Congealed Green Slime","tr":"绿色凝固史莱姆块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Congealed Purple Slime","tr":"紫色凝固史莱姆块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockEndermanSkull":{"0":{"oreDict":["itemSkull"],"name":"Enderman Head","tr":"末影人头","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Tormented Enderman Head","tr":"禁锢末影人头","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.CastleDoor":{"0":{"name":"Blue Castle Door","tr":"蓝色城堡门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Yellow Castle Door","tr":"黄色城堡门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pink Castle Door","tr":"粉色城堡门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Violet Castle Door","tr":"紫色城堡门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:mudball":{"0":{"name":"Mud Ball","tr":"泥球","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:stardust_ore":{"0":{"oreDict":["oreHeeStardust"],"name":"Stardust Ore","tr":"星尘矿石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.airousLight":{"0":{"name":"tile.projectred.illumination.airousLight|0.name","tr":"tile.projectred.illumination.airousLight|0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:quartzchestItem":{"0":{"name":"Quartz Chest","tr":"石英胸甲","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:dustImpureAgarditeLa":{"0":{"oreDict":["dustImpureAgarditeLa"],"name":"Impure Agardite (La) Dust","tr":"含杂菱铁矿(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:flowerBand":{"0":{"name":"Dull Flower Band","tr":"黯淡的花环","tab":"超多生态群系","type":"Item","maxStackSize":8,"maxDurability":1},"1":{"name":"Plain Flower Band","tr":"平凡的花环","tab":"超多生态群系","type":"Item","maxStackSize":8,"maxDurability":1},"2":{"name":"Lush Flower Band","tr":"丰饶的花环","tab":"超多生态群系","type":"Item","maxStackSize":8,"maxDurability":1},"3":{"name":"Exotic Flower Band","tr":"异域之花环","tab":"超多生态群系","type":"Item","maxStackSize":8,"maxDurability":1}},"TwilightForest:tile.TFBurntThorns":{"0":{"name":"Burnt Thorns","tr":"荆棘灰烬","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorTitansteel":{"0":{"oreDict":["rotorTitansteel"],"name":"泰坦精钢转子","tr":"泰坦精钢转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:deathsrobe":{"0":{"name":"Death\u0027s Robe","tr":"死神之袍","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":529}},"Thaumcraft:ItemSwordElemental":{"0":{"name":"Sword of the Zephyr","tr":"风雷剑","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1501}},"OpenBlocks:emptyMap":{"0":{"name":"Empty Map","tr":"空白地图","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLi2CO3CaOH2":{"0":{"oreDict":["dustTinyLi2CO3CaOH2"],"name":"小撮碳酸锂+氢氧化钙复合物粉","tr":"小撮碳酸锂+氢氧化钙复合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hotdogItem":{"0":{"oreDict":["foodHotdog"],"name":"Hotdog","tr":"热狗","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCryoliteF":{"0":{"oreDict":["dustSmallCryoliteF"],"name":"小堆冰晶石(F)粉","tr":"小堆冰晶石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manasteelShears":{"0":{"name":"Manasteel Shears","tr":"魔钢剪刀","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":239}},"Botany:ceramicBrick":{"0":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"257":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"514":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"771":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"16387":{"name":"Large Ceramic Bricks","tr":"大型瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1028":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1285":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1542":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1799":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2056":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2313":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2570":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2827":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3084":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3341":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3598":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3855":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4112":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4369":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4626":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4883":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5140":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5397":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5654":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5911":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6168":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6425":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6682":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6939":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7196":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7453":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7710":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7967":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8224":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8481":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8738":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8995":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"9252":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"9509":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"9766":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"10023":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"10280":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"10537":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"10794":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"11051":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"11308":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"11565":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"11822":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"12079":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"12336":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"12593":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"12850":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"13107":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"13364":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"13621":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"13878":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"14135":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"14392":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"14649":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"14906":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"15163":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"15420":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"15677":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"15934":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"16191":{"name":"Ceramic Tile","tr":"瓷砖","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:sphalerite":{"0":{"name":"Sphalerite","tr":"闪锌矿","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sphalerite with Stardust","tr":"闪锌星尘","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltInconel690":{"0":{"oreDict":["boltInconel690"],"name":"镍铬基合金-690螺栓","tr":"镍铬基合金-690螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:mace.iron":{"0":{"name":"Iron Mace","tr":"铁槌","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":501}},"miscutils:itemPlateDenseHeLiCoPtEr":{"0":{"oreDict":["plateDenseHeLiCoPtEr"],"name":"致密HeLiCoPtEr板","tr":"致密HeLiCoPtEr板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.itemTier3Rocket":{"0":{"name":"Tier 3 Rocket","tr":"3阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 3 Rocket","tr":"3阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 3 Rocket","tr":"3阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 3 Rocket","tr":"3阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 3 Rocket","tr":"3阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:canBiomass":{"0":{"name":"Biomass Can","tr":"生物质罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pecanpieItem":{"0":{"oreDict":["foodPecanpie"],"name":"Pecan Pie","tr":"核桃派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:enderDagger":{"0":{"name":"Soulscribe","tr":"灵魂匕首","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":70}},"miscutils:itemPlateRhugnor":{"0":{"oreDict":["plateRhugnor"],"name":"鲁格诺板","tr":"鲁格诺板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotThallium":{"0":{"oreDict":["ingotThallium"],"name":"铊锭","tr":"铊锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCopper":{"0":{"name":"Crated Copper Ingot","tr":"装箱的铜锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:dirtRod":{"0":{"name":"Rod of the Lands","tr":"大地法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"betterbuilderswands:wandIron":{"0":{"name":"Iron Wand","tr":"铁质建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":251}},"Forestry:cratedNaturaSaplingGhostwood":{"0":{"name":"Crated Ghostwood Sapling","tr":"装箱的幽魂树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone2Slab":{"0":{"name":"Diorite Slab","tr":"闪长岩台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:meatystewItem":{"0":{"oreDict":["foodMeatystew"],"name":"Meaty Stew","tr":"肉汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:whitestone":{"0":{"name":"White Stone [Uncharged]","tr":"白石 \u003c未充能\u003e","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"White Stone [Charged]","tr":"白石 \u003c充能\u003e","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDenseZirconiumCarbide":{"0":{"oreDict":["plateDenseZirconiumCarbide"],"name":"致密碳化锆板","tr":"致密碳化锆板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockFluix":{"0":{"name":"Fluix Block","tr":"福鲁伊克斯块","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:mushroomrisottoItem":{"0":{"oreDict":["foodMushroomrisotto"],"name":"Mushroom Risotto","tr":"牛肝菌烩饭","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:PrimalArrow":{"0":{"name":"Air Arrow","tr":"风之矢","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Fire Arrow","tr":"火之矢","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Water Arrow","tr":"水之矢","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Earth Arrow","tr":"地之矢","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Order Arrow","tr":"秩序矢","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Entropy Arrow","tr":"混沌矢","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.grapple":{"0":{"name":"Grapple","tr":"吊钩","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":385}},"witchery:wolfhead":{"0":{"name":"Wolf Head","tr":"狼头颅","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hellhound Head","tr":"地狱犬头颅","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:chalkinfernal":{"0":{"name":"Infernal Chalk","tr":"炼狱粉笔","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":65}},"IC2:itemToolPainterBrown":{"0":{"name":"Brown Painter","tr":"棕色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"dreamcraft:item.CokeOvenBrick":{"0":{"oreDict":["ingotCokeOvenBrick"],"name":"Coke Oven Brick","tr":"焦炉砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LedoxCompressedPlate":{"0":{"oreDict":["compressedLedox"],"name":"Compressed Ledox Plate","tr":"航天深铅板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaUranium232":{"0":{"oreDict":["cellPlasmaUranium232"],"name":"铀-232等离子体单元","tr":"铀-232等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaUranium233":{"0":{"oreDict":["cellPlasmaUranium233"],"name":"铀-233等离子体单元","tr":"铀-233等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtSiliconCarbide":{"0":{"oreDict":["frameGtSiliconCarbide"],"name":"碳化硅框架","tr":"碳化硅框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"tinkersdefense:Queen\u0027s Gold Ingot":{"0":{"name":"Queen\u0027s Gold Ingot","tr":"女王之金锭","tab":"工匠之盾","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_NitricAcid":{"0":{"name":"Nitric Acid","tr":"硝酸","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCactusCoke":{"0":{"oreDict":["itemCokeCactus"," fuelCactusCoke"],"name":"Cactus Coke","tr":"仙人掌焦炭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:particleGenerator":{"0":{"name":"Particle Generator","tr":"粒子发生器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustStrontiumOxide":{"0":{"oreDict":["dustStrontiumOxide"],"name":"氧化锶粉","tr":"氧化锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MCFrames:mcframes.motor":{"0":{"name":"Debug Frame Motor","tr":"Debug框架电机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:alluringskull":{"0":{"name":"Alluring Skull","tr":"魅惑头骨","tab":"巫术","type":"Block","maxStackSize":1,"maxDurability":1}},"EMT:EMTSolars":{"0":{"name":"Compressed Solar Panel","tr":"压缩太阳能(1级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Double Compressed Solar Panel","tr":"压缩太阳能(2级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Triple Compressed Solar Panel","tr":"压缩太阳能(3级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Water Infused Compressed Solar Panel","tr":"水注魔太阳能(1级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Water Infused Double Compressed Solar Panel","tr":"水注魔太阳能(2级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Water Infused Triple Compressed Solar Panel","tr":"水注魔太阳能(3级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Entropy Infused Compressed Solar Panel","tr":"混沌注魔太阳能(1级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Entropy Double Infused Compressed Solar Panel","tr":"混沌注魔太阳能(2级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Entropy Triple Infused Compressed Solar Panel","tr":"混沌注魔太阳能(3级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Order Infused Compressed Solar Panel","tr":"秩序注魔太阳能(1级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Order Infused Double Compressed Solar Panel","tr":"秩序注魔太阳能(2级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Order Infused Triple Compressed Solar Panel","tr":"秩序注魔太阳能(3级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fire Infused Compressed Solar Panel","tr":"火注魔太阳能(1级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fire Infused Double Compressed Solar Panel","tr":"火注魔太阳能(2级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fire Infused Triple Compressed Solar Panel","tr":"火注魔太阳能(3级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Air Infused Compressed Solar Panel","tr":"风注魔太阳能(1级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:highDensityThoriumNugget":{"0":{"name":"High Density Thorium Nugget","tr":"浓缩钍粒","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureAgarditeNd":{"0":{"oreDict":["dustImpureAgarditeNd"],"name":"Impure Agardite (Nd) Dust","tr":"含杂菱铁矿(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockWeatherObelisk":{"0":{"name":"Weather Obelisk","tr":"气象方尖碑","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtInconel625":{"0":{"oreDict":["frameGtInconel625"],"name":"镍铬基合金-625框架","tr":"镍铬基合金-625框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockHS188A":{"0":{"oreDict":["blockHS188A"],"name":"HS188-A块","tr":"HS188-A块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.CompressedPlates":{"0":{"oreDict":["CompressedAdamantite"],"name":"Compressed Adamantite","tr":"致密精金板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["CompressedCobaltum"," CompressedCobalt"],"name":"Compressed Cobalt","tr":"致密钴板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["CompressedDuralumin"],"name":"Compressed Duralumin","tr":"致密杜拉铝板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["CompressedLead"],"name":"Compressed Lead","tr":"致密铅板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["CompressedMagnesium"],"name":"Compressed Magnesium","tr":"致密镁板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["CompressedMithril"],"name":"Compressed Mithril","tr":"致密秘银板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["CompressedNickel"],"name":"Compressed Nickel","tr":"致密镍板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["CompressedOriharukon"],"name":"Compressed Oriharukon","tr":"致密奥利哈钢板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["CompressedPlatinum"],"name":"Compressed Platinum","tr":"致密铂板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["CompressedTungsten"],"name":"Compressed Tungsten","tr":"致密钨板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:advancedFuelRod":{"0":{"name":"Advanced Fuel Rod (Empty)","tr":"高级燃料棒(空)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundLeggingsEarth":{"0":{"name":"Earth Omega Leggings","tr":"土`欧米伽护腿","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"lootgames:gol_master":{"0":{"name":"Game of Light","tr":"游戏灯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.meefStroganoff":{"0":{"name":"Meef Stroganoff","tr":"牛头人沙拉酱肉","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"ifu:ifu_buildingKit":{"0":{"name":"Ore Finder Wand","tr":"寻矿魔杖","tab":"寻矿魔杖","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemTreetapElectric":{"1":{"name":"Electric Treetap","tr":"电动树脂提取器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Electric Treetap","tr":"电动树脂提取器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"TwilightForest:item.yetiBoots":{"0":{"name":"Yeti Boots","tr":"雪人靴子","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":261}},"miscutils:itemPlateInconel690":{"0":{"oreDict":["plateInconel690"],"name":"镍铬基合金-690板","tr":"镍铬基合金-690板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:item.tm.teslaStaff":{"0":{"name":"Tesla Staff","tr":"特斯拉权杖","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyBlackTitanium":{"0":{"oreDict":["dustTinyBlackTitanium"],"name":"小撮黑钛粉","tr":"小撮黑钛粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampeppercornSapling":{"0":{"name":"Peppercorn Sapling","tr":"胡椒树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemEnderface":{"0":{"name":"Enderface","tr":"末影面板","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustLautarite":{"0":{"oreDict":["dustLautarite"],"name":"碘钙石粉","tr":"碘钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:SpaceTimeOscillator":{"0":{"name":"SpaceTime Oscillator T1","tr":"时空振荡器T1","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"SpaceTime Oscillator T2","tr":"时空振荡器T2","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"SpaceTime Oscillator T3","tr":"时空振荡器T3","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TwilightCrystal":{"0":{"name":"Quick and Dirty Portal Generator","tr":"暮色传送门激活水晶","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemscobblestone":{"0":{"name":"Cobblestone-Covered Pipe","tr":"圆石管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:radiationProtectionPlate":{"0":{"name":"Radiation Proof Plate","tr":"防辐射板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:torch10":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustGrisium":{"0":{"oreDict":["dustGrisium"],"name":"灰钛合金粉","tr":"灰钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:solarPanel":{"0":{"name":"Hybrid Solar Panel","tr":"混合太阳能板","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureLanthaniteCe":{"0":{"oreDict":["dustPureLanthaniteCe"],"name":"Purified Lanthanite (Ce) Dust","tr":"洁净镧石(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemSugarCoke":{"0":{"oreDict":["itemCokeSugar"," fuelSugarCoke"],"name":"Sugar Coke","tr":"糖焦炭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockDynamiteRemote":{"0":{"name":"ic2.blockDynamiteRemote","tr":"ic2.blockDynamiteRemote","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSmithIV":{"0":{"name":"Coin \"Blacksmith 10K\"","tr":"匠师币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.BiblioDrill":{"0":{"name":"Screw Gun","tr":"机械螺丝刀","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:LiquidHydrogen":{"0":{"oreDict":["cellLiquidHydrogen"],"name":"液氢单元","tr":"液氢单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:witchsladder":{"0":{"name":"Witch\u0027s Ladder (尖啸)","tr":"女巫之阶 (尖啸)","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.ironwoodBoots":{"0":{"name":"Ironwood Boots","tr":"铁木靴子","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":261}},"Natura:redwoodDoorItem":{"0":{"oreDict":["doorWood"],"name":"Redwood Door","tr":"红木门","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["doorWood"],"name":"Eucalyptus Door","tr":"桉树木门","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["doorWood"],"name":"Hopseed Door","tr":"车桑子树木门","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["doorWood"],"name":"Sakura Door","tr":"樱花树木门","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["doorWood"],"name":"Ghostwood Door","tr":"幽魂树木门","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["doorWood"],"name":"Bloodwood Door","tr":"血树木门","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["doorWood"],"name":"Redwood Bark Door","tr":"红木树皮门","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:knights_armour.helmet":{"0":{"name":"Knight\u0027s Helmet","tr":"骑士头盔","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":276}},"miscutils:dustPureCryoliteF":{"0":{"oreDict":["dustPureCryoliteF"],"name":"Purified Cryolite (F) Dust","tr":"洁净冰晶石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSandstone":{"0":{"name":"Crated Sandstone","tr":"装箱的沙石","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.tfFeather":{"0":{"oreDict":["feather"," craftingFeather"],"name":"Raven\u0027s Feather","tr":"乌鸦羽毛","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.GlowstoneDusts":{"0":{"oreDict":["dustCeres"," dustSpace"," dustCeresGlowstone"],"name":"Ceres Glowstone Dust","tr":"谷神星萤石粉","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dustSpace"," dustIo"," dustIoGlowstone"],"name":"Io Glowstone Dust","tr":"木卫一萤石粉","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustEnceladus"," dustSpace"," dustEnceladusGlowstone"],"name":"Enceladus Glowstone Dust","tr":"土卫二萤石粉","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustProteusGlowstone"," dustProteus"," dustSpace"],"name":"Proteus Glowstone Dust","tr":"海卫八萤石粉","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustPlutoGlowstone"," dustSpace"," dustPluto"],"name":"Pluto Glowstone Dust","tr":"冥王星萤石粉","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemAdvancedStorageCell.4096k":{"0":{"name":"4096k ME Storage Cell","tr":"4096k-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:item.CompressedDualAluminium":{"0":{"name":"Compressed Dual Aluminium","tr":"航天双层铝板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:applepieItem":{"0":{"oreDict":["foodApplepie"],"name":"Apple Pie","tr":"苹果派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemSoulVessel":{"0":{"name":"Soul Vial","tr":"灵魂瓶","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyWatertightSteel":{"0":{"oreDict":["dustTinyWatertightSteel"],"name":"小撮防水钢粉","tr":"小撮防水钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:castingBracelet":{"0":{"name":"Iron Bracelet","tr":"铁手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Gold Bracelet","tr":"金手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Greatwood Bracelet","tr":"宏伟之木手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Thaumium Bracelet","tr":"神秘手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Silverwood Bracelet","tr":"银树手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Reed Bracelet","tr":"甘蔗手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Bone Bracelet","tr":"白骨手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Obsidian Bracelet","tr":"黑曜石手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Blaze Bracelet","tr":"烈焰手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Ice Bracelet","tr":"寒冰手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Quartz Bracelet","tr":"石英手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Void Bracelet","tr":"虚空手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Primal Bracelet","tr":"始源手镯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:gooseberryItem":{"0":{"oreDict":["cropGooseberry"," listAllfruit"," listAllberry"],"name":"Gooseberry","tr":"醋栗","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockRubSapling":{"0":{"oreDict":["treeSapling"],"name":"Rubber Tree Sapling","tr":"橡胶树树苗","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellNeptunium":{"0":{"oreDict":["cellNeptunium"],"name":"镎单元","tr":"镎单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:bucketbrew":{"0":{"name":"item.witchery:bucketbrew.name","tr":"item.witchery:bucketbrew.name","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"tectech:item.tm.powerpassupgradecover":{"0":{"name":"Power Pass Upgrade Cover","tr":"导能升级覆盖板","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockRadium":{"0":{"oreDict":["blockRadium"],"name":"镭块","tr":"镭块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:magnetRing":{"0":{"name":"Ring of Magnetization","tr":"磁化指环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:NetherFurnace":{"0":{"name":"Nether Furnace","tr":"下界熔炉","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:shimmerrock0SlabFull":{"0":{"name":"Shimmerrock Slab","tr":"微光石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotWatertightSteel":{"0":{"oreDict":["ingotWatertightSteel"],"name":"防水钢锭","tr":"防水钢锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.spawnegg":{"0":{"name":"Spawn Imp","tr":"生成 小恶魔","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn Heatscar Spider","tr":"生成 灼疤蜘蛛","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Spawn Nitro Creeper","tr":"生成 硝基爬行者","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Spawn Baby Heatscar Spider","tr":"生成 幼年灼疤蜘蛛","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.axe.fusewood":{"0":{"name":"Fusewood Hatchet","tr":"熔融树手斧","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":251}},"TConstruct:binding":{"0":{"name":"Wooden Binding","tr":"木绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Binding","tr":"石绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Binding","tr":"铁绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Binding","tr":"燧石绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Binding","tr":"仙人掌绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Binding","tr":"骨头绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Binding","tr":"黑曜石绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Binding","tr":"地狱岩绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Binding","tr":"史莱姆绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Binding","tr":"纸绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Binding","tr":"钴绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Binding","tr":"阿迪特绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Binding","tr":"玛玉灵绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Binding","tr":"铜绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Binding","tr":"青铜绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Binding","tr":"耐酸铝绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Binding","tr":"钢绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Binding","tr":"史莱姆绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Binding","tr":"生铁绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Binding","tr":"不稳定感应绑定结","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:birchFenceGate":{"0":{"name":"Birch Fence Gate","tr":"白桦木栅栏门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:BW_FakeGlasBlocks2":{"0":{"name":"BW_GlasBlocks2.name","tr":"BW_GlasBlocks2.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:genericSlab":{"0":{"name":"Gold Etched Obsidian Slab","tr":"远古镶金黑曜石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ancient Brick Slab","tr":"远古石砖台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ancient Cobblestone Slab","tr":"远古圆石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ancient Mossy Cobblestone Slab","tr":"远古苔石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ancient Diamond Slab","tr":"远古钻石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ancient Gold Slab","tr":"远古金台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ancient Iron Slab","tr":"远古铁台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Ancient Lapis Lazuli Slab","tr":"远古青金石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:record_wanderer":{"0":{"name":"Music Disc","tr":"音乐唱片","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:item.oxygenTankMedFull":{"0":{"name":"Medium Oxygen Tank","tr":"中型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":2001},"2000":{"name":"Medium Oxygen Tank","tr":"中型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":2001}},"SGCraft:naquadah":{"0":{"oreDict":["naquadah"],"name":"Naquadah","tr":"硅岩","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolMiningLaser":{"1":{"name":"Mining Laser","tr":"采矿镭射枪","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Mining Laser","tr":"采矿镭射枪","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"catwalks:sturdy_rail_detector":{"0":{"name":"Sturdy Detector Rail","tr":"坚实检测铁轨","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltArcanite":{"0":{"oreDict":["boltArcanite"],"name":"奥金螺栓","tr":"奥金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:ravaged_brick_glow":{"0":{"name":"Glowing Ravaged Brick","tr":"发光毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:goldenEye":{"0":{"name":"Golden eye","tr":"黄金之眼","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Golden eye","tr":"黄金之眼","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":101}},"Railcraft:anvil":{"0":{"oreDict":["craftingAnvil"],"name":"Steel Anvil","tr":"钢砧","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Slightly Damaged Steel Anvil","tr":"裂纹钢砧","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Very Damaged Steel Anvil","tr":"碎裂钢砧","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotRhenium":{"0":{"oreDict":["ingotRhenium"],"name":"铼锭","tr":"铼锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:UpgradeFrame":{"0":{"name":"Upgrade Frame","tr":"升级框架","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.UncookedSlush":{"0":{"name":"Uncooked Slush","tr":"生糖浆","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"JABBA:upgradeCore":{"0":{"name":"Storage upgrade","tr":"存储升级","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"BSpace upgrade","tr":"B空间升级","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Redstone upgrade","tr":"红石升级","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Hopper upgrade","tr":"漏斗升级","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"4":{"name":"Storage upgrade x3","tr":"存储升级+3","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"5":{"name":"Storage upgrade x9","tr":"存储升级+9","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"6":{"name":"Storage upgrade x27","tr":"存储升级+27","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"7":{"name":"Void upgrade","tr":"虚空升级","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"8":{"name":"Storage upgrade x81","tr":"存储升级+81","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"9":{"name":"Storage upgrade x243","tr":"存储升级+243","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"10":{"name":"Creative upgrade","tr":"创造升级","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"11":{"name":"Storage upgrade x729","tr":"存储升级+729","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"12":{"name":"Storage upgrade x2187","tr":"存储升级+2187","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"13":{"name":"Storage upgrade x6561","tr":"存储升级+6561","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1}},"Botania:reedBlock0Wall":{"0":{"name":"Reed Block Wall","tr":"甘蔗围墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetUranium232":{"0":{"oreDict":["nuggetUranium232"],"name":"铀-232粒","tr":"铀-232粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundPlateEarth":{"0":{"name":"Earth Omega Plate","tr":"土`欧米伽胸甲","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"dreamcraft:item.ShapeNormalPipe":{"0":{"name":"Casting Form (Normal pipe Shape)","tr":"铸形(管道)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetUranium233":{"0":{"oreDict":["nuggetUranium233"],"name":"铀-233粒","tr":"铀-233粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellSolarSaltCold":{"0":{"oreDict":["cellSolarSaltCold"],"name":"太阳能盐(冷)单元","tr":"太阳能盐(冷)单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:seaweedItem":{"0":{"oreDict":["cropSeaweed"," listAllveggie"," listAllgreenveggie"],"name":"Seaweed","tr":"海带","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemDoorAlloy":{"0":{"name":"Reinforced Door","tr":"防爆门","tab":"工业2","type":"Item","maxStackSize":8,"maxDurability":1}},"dreamcraft:item.EnrichedNaquadriaNeutroniumSunnariumAlloy":{"0":{"name":"Enriched Naquadria Neutronium Sunnarium Alloy","tr":"富集超能硅岩中子阳光合金","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:florasapling":{"0":{"oreDict":["treeSapling"],"name":"Redwood Sapling","tr":"红木树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Eucalyptus Sapling","tr":"桉树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeSapling"],"name":"Hopseed Sapling","tr":"车桑子树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeSapling"],"name":"Sakura Sapling","tr":"樱花树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["treeSapling"],"name":"Ghostwood Sapling","tr":"幽魂树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["treeSapling"],"name":"Blood Sapling","tr":"血树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["treeSapling"],"name":"Darkwood Sapling","tr":"黑暗树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["treeSapling"],"name":"Fusewood Sapling","tr":"熔融树树苗","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusPouch":{"0":{"name":"Focus Pouch","tr":"法杖核心手袋","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:redStringInterceptor":{"0":{"name":"Red Stringed Interceptor","tr":"红线拦截器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:grassper":{"0":{"name":"Grassper","tr":"擒拿草","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreKoboldite":{"0":{"oreDict":["oreKoboldite"],"name":"Koboldite Ore","tr":"妖金矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotAstralTitanium":{"0":{"oreDict":["ingotHotAstralTitanium"],"name":"热星体钛锭","tr":"热星体钛锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellDragonblood":{"0":{"oreDict":["cellDragonblood"],"name":"龙血单元","tr":"龙血单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.AtlasPlate":{"0":{"name":"Atlas Plate","tr":"地图板","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.AluminoSilicateWool":{"0":{"name":"Alumino Silicate Wool","tr":"硅酸铝粉","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:item.manasteelScoop":{"0":{"name":"Manasteel Scoop","tr":"魔钢捕虫网","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":21}},"harvestcraft:pampavlovaCake":{"0":{"name":"Pavlova","tr":"巴甫洛娃蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:friedeggItem":{"0":{"oreDict":["foodFriedegg"],"name":"Fried Egg","tr":"煎蛋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:plumjuiceItem":{"0":{"oreDict":["listAlljuice"," foodPlumjuice"],"name":"Plum Juice","tr":"李子汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:worldlogic":{"0":{"name":"Saltpeter Ore Spawner","tr":"硝石刷新器","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:coconutyogurtItem":{"0":{"oreDict":["foodCoconutyogurt"],"name":"Coconut Yogurt","tr":"椰子酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseInconel625":{"0":{"oreDict":["plateDenseInconel625"],"name":"致密镍铬基合金-625板","tr":"致密镍铬基合金-625板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.basalt.stairs":{"0":{"name":"Basalt Stairs","tr":"玄武岩楼梯","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chickencurryItem":{"0":{"oreDict":["foodChickencurry"],"name":"Chicken Curry","tr":"咖喱鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:persimmonjuiceItem":{"0":{"oreDict":["listAlljuice"," foodPersimmonjuice"],"name":"Persimmon Juice","tr":"柿子汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:glowglobe":{"0":{"name":"Glow Globe","tr":"光之球","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:sandstone":{"0":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"SGCraft:sgIrisUpgrade":{"0":{"name":"Stargate Iris Upgrade","tr":"星门虹膜升级","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:fluid.creosote.refactory":{"0":{"name":"Creosote Capsule","tr":"杂酚油耐火胶囊","tab":"","type":"Item","maxStackSize":16,"maxDurability":1}},"Forestry:canEthanol":{"0":{"name":"Ethanol Can","tr":"乙醇罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzStairsElf":{"0":{"name":"Elven Quartz Stairs","tr":"精灵石英楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:brainTH":{"0":{"name":"Lump of Brain","tr":"大脑团","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MedalDerp":{"0":{"name":"Medal - Darwin Award","tr":"达尔文勋章","tab":"GTNH: 物品","type":"Item","maxStackSize":1,"maxDurability":1}},"kekztech:kekztech_yszceramicelectrolyteunit_block":{"0":{"name":"YSZ Ceramic Electrolyte Unit","tr":"钇锆陶瓷电解质单元","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:darkQuartzSlab":{"0":{"name":"Smokey Quartz Slab","tr":"烟黑石英台阶","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.securityDoorPrivate":{"0":{"name":"Private Security Door","tr":"私人防盗门","tab":"开放式保安","type":"Item","maxStackSize":16,"maxDurability":1}},"BiomesOPlenty:pineStairs":{"0":{"oreDict":["stairWood"],"name":"Pine Wood Stairs","tr":"松树木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:market":{"0":{"name":"Market","tr":"集市交易方块","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockRhugnor":{"0":{"oreDict":["blockRhugnor"],"name":"鲁格诺块","tr":"鲁格诺块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtAstralTitanium":{"0":{"oreDict":["frameGtAstralTitanium"],"name":"星体钛框架","tr":"星体钛框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:convertersurface":{"0":{"name":"Surface Converter","tr":"草方块制造机","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsCanopy":{"0":{"name":"Canopy Tree Stairs","tr":"苍穹树楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:ceasarsaladItem":{"0":{"oreDict":["foodCeasarsalad"],"name":"Ceasar Salad","tr":"凯撒沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:cobblestone_compressed":{"0":{"oreDict":["compressedCobblestone1x"],"name":"Compressed Cobblestone","tr":"压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["compressedCobblestone2x"],"name":"Double Compressed Cobblestone","tr":"二重压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["compressedCobblestone3x"],"name":"Triple Compressed Cobblestone","tr":"三重压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["compressedCobblestone4x"],"name":"Quadruple Compressed Cobblestone","tr":"四重压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["compressedCobblestone5x"],"name":"Quintuple Compressed Cobblestone","tr":"五重压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["compressedCobblestone6x"],"name":"Sextuple Compressed Cobblestone","tr":"六重压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["compressedCobblestone7x"],"name":"Septuple Compressed Cobblestone","tr":"七重压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["compressedCobblestone8x"],"name":"Octuple Compressed Cobblestone","tr":"八重压缩圆石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["compressedDirt1x"],"name":"Compressed Dirt","tr":"压缩泥土","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["compressedDirt2x"],"name":"Double Compressed Dirt","tr":"二重压缩泥土","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["compressedDirt3x"],"name":"Triple Compressed Dirt","tr":"三重压缩泥土","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["compressedDirt4x"],"name":"Quadruple Compressed Dirt","tr":"四重压缩泥土","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["compressedGravel1x"],"name":"Compressed Gravel","tr":"压缩沙砾","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["compressedGravel2x"],"name":"Double Compressed Gravel","tr":"二重压缩沙砾","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["compressedSand1x"],"name":"Compressed Sand","tr":"压缩沙子","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["compressedSand2x"],"name":"Double Compressed Sand","tr":"二重压缩沙子","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnergeticAlloyBars":{"0":{"oreDict":["barsEnergeticAlloy"],"name":"Energetic Alloy Bars","tr":"充能合金栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.ocParts":{"0":{"name":"Camera Upgrade","tr":"摄像头升级","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Chat Upgrade","tr":"聊天升级","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Radar Upgrade","tr":"雷达升级","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Particle Effects Card","tr":"粒子效果卡","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Spoofing Card","tr":"欺骗攻击卡","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Beep Card","tr":"蜂鸣卡","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Self-Destructing Card","tr":"自毁卡","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Colorful Upgrade","tr":"变色升级","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Noise Card","tr":"噪音卡","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Sound Card","tr":"声卡","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Light Board","tr":"指示灯面板","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Server Self-Destructor","tr":"服务器自毁装置","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Rack Capacitor","tr":"机架式电容","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Switch Board","tr":"开关面板","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Speech Upgrade","tr":"语音升级","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPhthalicAnhydride":{"0":{"oreDict":["dustTinyPhthalicAnhydride"],"name":"小撮邻苯二甲酸酐粉","tr":"小撮邻苯二甲酸酐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.treasureChest":{"0":{"name":"Treasure Chest","tr":"珍品箱","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellEthylCyanoacrylateSuperGlue":{"0":{"oreDict":["cellEthylCyanoacrylateSuperGlue"],"name":"氰基丙烯酸乙酯(强力胶水)单元","tr":"氰基丙烯酸乙酯(强力胶水)单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.gt_parts":{"0":{"name":"Chromium Dioxide Tape Reel","tr":"二氧化铬录音带卷轮","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:crucibleSouls":{"0":{"name":"Crucible of Souls","tr":"灵魂坩埚","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.seatBack2":{"0":{"name":"Oak Seat Back","tr":"橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Seat Back","tr":"云杉椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Seat Back","tr":"桦木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Seat Back","tr":"丛林木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Seat Back","tr":"深色橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Seat Back","tr":"镶框椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:infuser":{"0":{"name":"Infuser","tr":"灌注器","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"BiblioCraft:item.seatBack3":{"0":{"name":"Oak Seat Back","tr":"橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Seat Back","tr":"云杉椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Seat Back","tr":"桦木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Seat Back","tr":"丛林木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Seat Back","tr":"深色橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Seat Back","tr":"镶框椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.seatBack4":{"0":{"name":"Oak Seat Back","tr":"橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Seat Back","tr":"云杉椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Seat Back","tr":"桦木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Seat Back","tr":"丛林木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Seat Back","tr":"深色橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Seat Back","tr":"镶框椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.seatBack5":{"0":{"name":"Oak Seat Back","tr":"橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Seat Back","tr":"云杉椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Seat Back","tr":"桦木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Seat Back","tr":"丛林木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Seat Back","tr":"深色橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Seat Back","tr":"镶框椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"ForgeMicroblock:sawIron":{"0":{"name":"Iron Saw","tr":"铁手锯","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1025}},"miscutils:itemDustZirconolite":{"0":{"oreDict":["dustZirconolite"],"name":"钛锆酸钙粉","tr":"钛锆酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseInconel690":{"0":{"oreDict":["plateDenseInconel690"],"name":"致密镍铬基合金-690板","tr":"致密镍铬基合金-690板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Silicon:laserBlock":{"0":{"name":"Laser","tr":"镭射器","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AsteroidsStoneDust":{"0":{"oreDict":["dustAsteroidsStone"," dustAsteroids"," dustSpace"],"name":"Asteroid Stone Dust","tr":"小行星尘","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemElectricVoid":{"1":{"name":"Electric Boots of the Voidwalker","tr":"电子虚空旅行者之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Electric Boots of the Voidwalker","tr":"电子虚空旅行者之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"Railcraft:part.bleached.clay":{"0":{"name":"Bleached Clay","tr":"漂白粘土","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:glyph":{"0":{"name":"Aqueous Admixture","tr":"水之印泥","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Glyph of the Void","tr":"符石:虚空","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Glyph of Consumption","tr":"符石:泯灭","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Glyph of Siphoning","tr":"符石:虹吸","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Glyph of Envy","tr":"符石:嫉妒","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Glyph of Temperance","tr":"符石:节制","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Glyph of Preservation","tr":"符石:贮存","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Glyph of the Guzzler","tr":"符石:狂饮","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Glyph of the Reservoir","tr":"符石:库容","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Glyph of the Bovine","tr":"符石:汲奶","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.scepterTwilight":{"0":{"name":"Scepter of Twilight","tr":"黄昏权杖","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":100}},"miscutils:crushedPurifiedLanthaniteLa":{"0":{"oreDict":["crushedPurifiedLanthaniteLa"],"name":"Purified Crushed Lanthanite (La) Ore","tr":"洗净的镧石(La)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steel_shovel":{"0":{"name":"Heavy Duty Shovel","tr":"重锹","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":769}},"GalacticraftMars:tile.mars":{"0":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreDesh"],"name":"Desh Ore","tr":"戴斯矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreAnyIron"," oreIron"],"name":"Iron Ore","tr":"铁矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["rockSpace"," rockMars"],"name":"Mars Cobblestone","tr":"火星圆石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["rockSpace"," rockMars"],"name":"Mars Surface Rock","tr":"火星地表岩石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["rockSpace"," rockMars"],"name":"Mars Sub-Surface Rock","tr":"火星地底岩石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Mars Dungeon Brick","tr":"火星地牢砖","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Block of Desh","tr":"戴斯块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["rockSpace"," rockMars"],"name":"Mars Stone","tr":"火星石头","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTriniumTitaniumAlloy":{"0":{"oreDict":["frameGtTriniumTitaniumAlloy"],"name":"三元钛合金框架","tr":"三元钛合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:tunapotatoItem":{"0":{"oreDict":["foodTunapotato"],"name":"Tuna Potato","tr":"金枪鱼土豆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hive":{"0":{"name":"Honeycomb Block","tr":"蜂窝块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hive Block","tr":"蜂巢块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Empty Honeycomb Block","tr":"空蜂窝块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Filled Honeycomb Block","tr":"满的蜂窝块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"tectech:item.tm.teslaCoilCapacitor":{"0":{"name":"LV Tesla Capacitor","tr":"LV特斯拉电容","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"MV Tesla Capacitor","tr":"MV特斯拉电容","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"HV Tesla Capacitor","tr":"HV特斯拉电容","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"EV Tesla Capacitor","tr":"EV特斯拉电容","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"IV Tesla Capacitor","tr":"IV特斯拉电容","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"LuV Tesla Capacitor","tr":"LuV特斯拉电容","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"ZPM Tesla Capacitor","tr":"ZPM特斯拉电容","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChargedCertusQuartzDust":{"0":{"oreDict":["dustChargedCertusQuartz"],"name":"Charged Certus Quartz Dust","tr":"充能赛特斯石英粉","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureLanthaniteNd":{"0":{"oreDict":["dustPureLanthaniteNd"],"name":"Purified Lanthanite (Nd) Dust","tr":"洁净镧石(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.lantern.inv":{"0":{"name":"Inverted White Lantern","tr":"反相白色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Inverted Orange Lantern","tr":"反相橙色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Inverted Magenta Lantern","tr":"反相品红色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Inverted Light Blue Lantern","tr":"反相淡蓝色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Inverted Yellow Lantern","tr":"反相黄色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Inverted Lime Lantern","tr":"反相黄绿色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Inverted Pink Lantern","tr":"反相粉色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Inverted Grey Lantern","tr":"反相灰色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Inverted Light Grey Lantern","tr":"反相淡灰色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Inverted Cyan Lantern","tr":"反相青色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Inverted Purple Lantern","tr":"反相紫色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Inverted Blue Lantern","tr":"反相蓝色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Inverted Brown Lantern","tr":"反相棕色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Inverted Green Lantern","tr":"反相绿色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Inverted Red Lantern","tr":"反相红色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Inverted Black Lantern","tr":"反相黑色灯笼","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockChestHungry":{"0":{"name":"Hungry Chest","tr":"饕餮箱子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemTinCanFilled":{"0":{"name":"(Filled) Tin Can","tr":"锡罐(满)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersDaylightSensor":{"0":{"name":"Carpenter\u0027s Daylight Sensor","tr":"木匠阳光传感器","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gravyItem":{"0":{"oreDict":["foodGravy"],"name":"Gravy","tr":"肉汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:oliveoilItem":{"0":{"oreDict":["foodOliveoil"],"name":"Cooking Oil","tr":"食用油","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateInconel625":{"0":{"oreDict":["plateInconel625"],"name":"镍铬基合金-625板","tr":"镍铬基合金-625板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:roastpotatoesItem":{"0":{"oreDict":["foodRoastpotatoes"],"name":"Roast Potatoes","tr":"烤土豆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sigilOfWind":{"0":{"name":"Sigil of the Whirlwind","tr":"旋风印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:item.key":{"0":{"name":"Tier 1 Dungeon Key","tr":"地牢钥匙(1阶)","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"lootgames:ms_master":{"0":{"name":"Minesweeper","tr":"扫雷","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:venisoncookedItem":{"0":{"oreDict":["listAllvenisoncooked"," foodVenisoncooked"," listAllmeatcooked"],"name":"Cooked Venison","tr":"熟鹿肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.QuartzSlabBlock.double":{"0":{"name":"Certus Quartz Slabs","tr":"赛特斯石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:cyan_kitchen_floor":{"0":{"name":"Cyan Kitchen Floor","tr":"青色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusTelekinesis":{"0":{"name":"Wand Focus: Telekinesis","tr":"法杖核心:念力","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemScrewInconel690":{"0":{"oreDict":["screwInconel690"],"name":"镍铬基合金-690螺丝","tr":"镍铬基合金-690螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:nutrients":{"0":{"name":"Nutrient Mix","tr":"富营养混合物","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotCelestialTungsten":{"0":{"oreDict":["ingotCelestialTungsten"],"name":"天体钨锭","tr":"天体钨锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustYttriaite":{"0":{"oreDict":["dustYttriaite"],"name":"钇矿粉","tr":"钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2stuff:Encoder":{"0":{"name":"Pattern Encoder","tr":"样板编码台","tab":"应用能源附加机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallUraniumTetrafluoride":{"0":{"oreDict":["dustSmallUraniumTetrafluoride"],"name":"小堆四氟化铀粉","tr":"小堆四氟化铀粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzStairsSunny":{"0":{"name":"Sunny Quartz Stairs","tr":"金黄石英楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearErbium":{"0":{"oreDict":["gearGtErbium"," gearErbium"],"name":"铒齿轮","tr":"铒齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_Material":{"0":{"name":"Yarn","tr":"纱线","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Golden Thread","tr":"金丝线","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Thaumium Thread","tr":"神秘丝线","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Cloth of Spacious Folds","tr":"宽纺布匹","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Golden Fabric","tr":"黄金布匹","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bewitched Fleece","tr":"秘法布匹","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Wolf Pelt","tr":"狼皮","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Arcane Abacus","tr":"奥术计算器","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Gemcutter\u0027s Tools","tr":"宝石切刀","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Iconographic Plate","tr":"成像底片","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Developed Iconograph","tr":"成像洗片","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Guiding Thread","tr":"引路线卷","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Powerless Pearl","tr":"黯影珍珠","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Gemstone Dust","tr":"宝石粉","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyMiessiite":{"0":{"oreDict":["dustTinyMiessiite"],"name":"小撮硅灰石粉","tr":"小撮硅灰石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockSpawnGuard":{"0":{"name":"Aversion Obelisk","tr":"生物排除方尖碑","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.doorDarkwood":{"0":{"name":"Darkwood Door","tr":"Darkwood Door","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:cucumbersoupItem":{"0":{"oreDict":["foodCucumbersoup"],"name":"Cucumber Soup","tr":"黄瓜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlackGate":{"0":{"name":"Wither Cage","tr":"凋灵笼子","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedSamarskiteYb":{"0":{"oreDict":["crushedPurifiedSamarskiteYb"],"name":"Purified Crushed Samarskite (Yb) Ore","tr":"洗净的铌钇矿(Yb)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonaideItem":{"0":{"oreDict":["listAlljuice"," foodLemonaide"],"name":"Lemonade","tr":"柠檬汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzTypeSunny":{"0":{"name":"Block of Sunny Quartz","tr":"金黄石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Sunny Quartz Block","tr":"錾制金黄石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Sunny Quartz Block","tr":"竖纹金黄石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngravedEnergyChip":{"0":{"name":"Engraved Energy Chip","tr":"雕刻能量芯片","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyThorium232":{"0":{"oreDict":["dustTinyThorium232"],"name":"小撮钍-232粉","tr":"小撮钍-232粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureLanthaniteLa":{"0":{"oreDict":["dustPureLanthaniteLa"],"name":"Purified Lanthanite (La) Dust","tr":"洁净镧石(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:nugget":{"0":{"oreDict":["nuggetAnyIron"," nuggetIron"],"name":"Iron Nugget","tr":"铁粒","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["nuggetSteel"],"name":"Steel Nugget","tr":"钢粒","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["nuggetCopper"," nuggetAnyCopper"],"name":"Copper Nugget","tr":"铜粒","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["nuggetTin"],"name":"Tin Nugget","tr":"锡粒","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["nuggetLead"],"name":"Lead Nugget","tr":"铅粒","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_yellow":{"0":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngineCore":{"0":{"name":"Engine Core","tr":"引擎核心","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:vegemiteItem":{"0":{"oreDict":["foodVegemite"],"name":"Vegemite","tr":"维吉米特黑酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemBloodLightSigil":{"0":{"name":"Sigil of the Blood Lamp","tr":"血光印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ProjRed|Core:projectred.core.drawplate":{"0":{"name":"Draw Plate","tr":"起模板","tab":"红石计划:核心","type":"Item","maxStackSize":1,"maxDurability":513}},"miscutils:frameSlowing":{"0":{"name":"Slowing Frame","tr":"减速框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":176}},"gregtech:gt.Quad_MNqCellDep":{"0":{"name":"枯竭四联燃料棒(Nq*)","tr":"枯竭四联燃料棒(Nq*)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Forestry:engine":{"0":{"name":"Electrical Engine","tr":"电动引擎","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Peat-fired Engine","tr":"泥炭引擎","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Biogas Engine","tr":"生物燃油引擎","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Bio Generator","tr":"生物质引擎","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Clockwork Engine","tr":"发条引擎","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:honeyDrop":{"0":{"oreDict":["foodHoneydrop"," dropHoney"," listAllsugar"],"name":"Honey Drop","tr":"蜂蜜滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingIodine":{"0":{"oreDict":["ringIodine"],"name":"碘环","tr":"碘环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeShovelHead":{"0":{"name":"Casting Form (Shovel head Shape)","tr":"铸形(铲头)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSmithII":{"0":{"name":"Coin \"Blacksmith 100\"","tr":"匠师币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:blockTalisman":{"0":{"name":"Black Hole Ring","tr":"黑洞指环","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:fishandchipsItem":{"0":{"oreDict":["foodFishandchips"],"name":"Fish and Chips","tr":"炸鱼薯条","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodTitansteel":{"0":{"oreDict":["stickTitansteel"],"name":"泰坦精钢杆","tr":"泰坦精钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.stick":{"0":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stickWood"],"name":"Stick","tr":"木棍","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:beanseedItem":{"0":{"oreDict":["seedBean"," listAllseed"],"name":"Bean Seed","tr":"大豆种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureXenotime":{"0":{"oreDict":["dustPureXenotime"],"name":"Purified Xenotime Dust","tr":"洁净磷钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.bigReactors.singularity":{"0":{"name":"Blutonium Singularity","tr":"蓝钚奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Cyanite Singularity","tr":"蓝晶奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Graphite Singularity","tr":"石墨奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Ludicrite Singularity","tr":"纯镥奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellorium Singularity","tr":"黄铀奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemExistingItemFilter":{"0":{"name":"Existing Item Filter","tr":"现有物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:tortillaItem":{"0":{"oreDict":["foodTortilla"],"name":"Tortilla","tr":"墨西哥玉米饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:hunterbootsgarlicked":{"0":{"name":"Witch Hunter Dawn Boots","tr":"狩巫黎明之靴","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":196}},"appliedenergistics2:item.ItemVoidStorageCell":{"0":{"name":"Void ME Storage Cell","tr":"ME虚空存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CarminiteChip":{"0":{"name":"Carminite Chip","tr":"砷铅铁矿碎屑","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BedrockiumIronPlate":{"0":{"name":"Bedrockium-Iron Plate","tr":"基岩铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemShovelVoid":{"0":{"name":"Void Shovel","tr":"虚空铲","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":151}},"Ztones:tile.zionBlock":{"0":{"name":"Zion ⓪","tr":"Zion ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zion ①","tr":"Zion ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zion ②","tr":"Zion ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zion ③","tr":"Zion ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zion ④","tr":"Zion ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zion ⑤","tr":"Zion ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zion ⑥","tr":"Zion ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zion ⑦","tr":"Zion ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zion ⑧","tr":"Zion ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zion ⑨","tr":"Zion ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zion ⑩","tr":"Zion ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zion ⑪","tr":"Zion ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zion ⑫","tr":"Zion ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zion ⑬","tr":"Zion ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zion ⑭","tr":"Zion ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zion ⑮","tr":"Zion ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:SubCollar":{"0":{"name":"Collar of Pain","tr":"苦痛项圈","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockGolemTaskmaster":{"0":{"name":"Golemic Taskmaster","tr":"傀儡指示器","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MytrylDensePlate":{"0":{"oreDict":["plateDenseMytryl"],"name":"Dense Mytryl Plate","tr":"致密深空秘银板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings":{"0":{"name":"ULV机械方块","tr":"ULV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"LV机械方块","tr":"LV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"MV机械方块","tr":"MV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"HV机械方块","tr":"HV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"EV机械方块","tr":"EV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"IV机械方块","tr":"IV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"LuV机械方块","tr":"LuV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"ZPM机械方块","tr":"ZPM机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"UV机械方块","tr":"UV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"UHV机械方块","tr":"UHV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"镀铜砖块","tr":"镀铜砖块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"隔热机械方块","tr":"隔热机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"超维度机械方块","tr":"超维度机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"维度注入机械方块","tr":"维度注入机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"维度桥接方块","tr":"维度桥接方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"超导线圈方块","tr":"超导线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewInconel625":{"0":{"oreDict":["screwInconel625"],"name":"镍铬基合金-625螺丝","tr":"镍铬基合金-625螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:firestone.cut":{"0":{"name":"Cut Firestone","tr":"切割火石","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemRecipePart":{"0":{"name":"Coil","tr":"线圈","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Electric Motor","tr":"电动马达","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Power Unit","tr":"驱动把手","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Small Power Unit","tr":"小型驱动把手","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Crystal Memory (raw)","tr":"(粗制)模式存储水晶","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Heat Conductor","tr":"热传导器","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Copper Boiler","tr":"铜锅炉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Wood Rotor Blade","tr":"木扇叶","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Iron Rotor Blade","tr":"铁扇叶","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Carbon Rotor Blade","tr":"碳扇叶","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Steel Rotor Blade","tr":"钢扇叶","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Shaft (Iron)","tr":"铁柄","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Shaft (Steel)","tr":"精炼铁柄","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDysprosium":{"0":{"oreDict":["plateDysprosium"],"name":"镝板","tr":"镝板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:gooseberryjuiceItem":{"0":{"oreDict":["foodGooseberryjuice"],"name":"Gooseberry Juice","tr":"醋栗汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:essence_altar":{"0":{"name":"Basic Essence Altar","tr":"基础精华祭坛","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dragon Essence Altar","tr":"龙之精华祭坛","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fiery Essence Altar","tr":"炎之精华祭坛","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Spectral Essence Altar","tr":"魂之精华祭坛","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustOrganicFertilizer":{"0":{"oreDict":["dustOrganicFertilizer"],"name":"生物肥料粉","tr":"生物肥料粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:auroraBlock":{"0":{"name":"Aurora","tr":"极光","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone8Stairs":{"0":{"name":"Andesite Brick Stairs","tr":"安山岩砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemEnergeticShaft":{"0":{"name":"Energetic Alloy Shaft","tr":"充能合金轴","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"IC2:itemPartCircuitAdv":{"0":{"oreDict":["circuitAdvanced"],"name":"Advanced Circuit","tr":"高级电路板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.obsidianMultiOre":{"0":{"oreDict":["oreDiamond"],"name":"Diamond Ore","tr":"钻石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreRuby"],"name":"Ruby Ore","tr":"红宝石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreUranium"],"name":"Uranium Ore","tr":"铀矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreLead"],"name":"Lead Ore","tr":"铅矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["oreEmerald"],"name":"Emerald Ore","tr":"绿宝石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeBottle":{"0":{"name":"Casting Form (Bottle Shape)","tr":"铸形(瓶)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallGadoliniteCe":{"0":{"oreDict":["dustSmallGadoliniteCe"],"name":"小堆硅铍钇矿(Ce)粉","tr":"小堆硅铍钇矿(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_axe_iron":{"0":{"name":"Blood Infused Iron Axe","tr":"注血铁斧","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinCookIV":{"0":{"name":"Coin \"The Cook 10K\"","tr":"厨师币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotDysprosium":{"0":{"oreDict":["ingotDysprosium"],"name":"镝锭","tr":"镝锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodPraseodymium":{"0":{"oreDict":["stickPraseodymium"],"name":"镨杆","tr":"镨杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:waraxe.gold":{"0":{"name":"Golden Waraxe","tr":"金战斧","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":65}},"dreamcraft:item.PistonPlate":{"0":{"name":"Piston Plate","tr":"活塞板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidssandstone":{"0":{"name":"Sandstone Fluid Pipe","tr":"沙石流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemAirFilter":{"0":{"name":"Air Filter [Tier 1]","tr":"空气过滤器 [Tier 1]","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Air Filter [Tier 2]","tr":"空气过滤器 [Tier 2]","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:item.doorTime":{"0":{"name":"Timewood Door","tr":"时光树门","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pineappleItem":{"0":{"oreDict":["listAllfruit"," cropPineapple"],"name":"Pineapple","tr":"菠萝","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellFermium":{"0":{"oreDict":["cellFermium"],"name":"镄单元","tr":"镄单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialLegs":{"0":{"name":"Primordial Greaves","tr":"元始护腿","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":45001}},"Automagy:blockHungryMaw":{"0":{"name":"Hungry Maw","tr":"饕餮之洞","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodQuantum":{"0":{"oreDict":["stickQuantum"],"name":"量子合金杆","tr":"量子合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtArcanite":{"0":{"oreDict":["frameGtArcanite"],"name":"奥金框架","tr":"奥金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedAgarditeLa":{"0":{"oreDict":["crushedPurifiedAgarditeLa"],"name":"Purified Crushed Agardite (La) Ore","tr":"洗净的菱铁矿(La)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellThoriumHexafluoride":{"0":{"oreDict":["cellThoriumHexafluoride"],"name":"六氟化钍单元","tr":"六氟化钍单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:eternalSpring":{"0":{"name":"Water Spring","tr":"水泉","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Oil Spring","tr":"油泉","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:pavement4SlabFull":{"0":{"name":"Yellow Portuguese Pavement Slab","tr":"黄色葡萄牙台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:leafyfishsandwichItem":{"0":{"oreDict":["foodLeafyfishsandwich"],"name":"Leafy Fish Sandwich","tr":"鲜鱼菜叶三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTumbaga":{"0":{"oreDict":["nuggetTumbaga"],"name":"铜金合金粒","tr":"铜金合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamsoybeanCrop":{"0":{"name":"Soybean Crop","tr":"黄豆","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:honey":{"0":{"name":"Honey","tr":"蜂蜜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHypogen":{"0":{"oreDict":["dustTinyHypogen"],"name":"小撮海珀珍粉","tr":"小撮海珀珍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"FloodLights:smallElectricFloodlightMetaBlock":{"0":{"name":"Small Flourescent Light","tr":"小型萤光灯","tab":"泛光灯","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Square Flourescent Light","tr":"广场大灯","tab":"泛光灯","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.bore":{"0":{"name":"Tunnel Bore","tr":"隧道盾构车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.MoldFormDrillHead":{"0":{"name":"Casting Form (Drill Head Mold)","tr":"铸件(钻头)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTantalloy61":{"0":{"oreDict":["frameGtTantalloy61"],"name":"钽钨合金-61框架","tr":"钽钨合金-61框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonlimesodaItem":{"0":{"oreDict":["foodLemonlimesoda"],"name":"Lemon-Lime Soda","tr":"柠檬-酸橙汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTantalloy60":{"0":{"oreDict":["frameGtTantalloy60"],"name":"钽钨合金-60框架","tr":"钽钨合金-60框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.FieryBlock":{"0":{"name":"Block of Fiery Metal","tr":"Block of Fiery Metal","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:NetherGlass":{"0":{"oreDict":["blockGlassHV"," glassSoul"," glass"],"name":"Soul Glass","tr":"灵魂玻璃","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"," glass"],"name":"Heat Glass","tr":"灼热玻璃","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockFluidVishroom":{"0":{"name":"Vishroom Soup","tr":"毒菇汤","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFFireJet":{"0":{"name":"Smoking block","tr":"烟雾方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Encased Smoker","tr":"被包裹的烟雾方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fire Jet","tr":"火焰喷射","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Encased Fire Jet","tr":"被包裹的火焰喷射","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinCookII":{"0":{"name":"Coin \"The Cook 100\"","tr":"厨师币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:enderEnergyDistributor":{"0":{"name":"Ender Energy Distributor","tr":"末影能量分配器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.securityDoor":{"0":{"name":"Security Door","tr":"防盗门","tab":"开放式保安","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:itemScrewGrisium":{"0":{"oreDict":["screwGrisium"],"name":"灰钛合金螺丝","tr":"灰钛合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDensePraseodymium":{"0":{"oreDict":["plateDensePraseodymium"],"name":"致密镨板","tr":"致密镨板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:frameMutagenic":{"0":{"name":"Mutagenic Frame","tr":"诱变框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":4}},"harvestcraft:grapefruitsodaItem":{"0":{"oreDict":["foodGrapefruitsoda"],"name":"Grapefruit Soda","tr":"葡萄柚汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:woodPulp":{"0":{"oreDict":["dustWood"," pulpWood"],"name":"Wood Pulp","tr":"木浆","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:oldBrick":{"0":{"oreDict":["brick"],"name":"Ancient Bricks","tr":"远古砖块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:ovenon":{"0":{"name":"Oven","tr":"烤箱","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:glass_chestplate":{"0":{"name":"Glass Chestplate","tr":"玻璃胸甲","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":43}},"WitchingGadgets:item.WG_ScanCamera":{"0":{"name":"Thaumic Iconograph Box","tr":"神秘相机","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockTenaciousChest":{"0":{"name":"Tenacious Chest","tr":"吝物箱子","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemCofeePowder":{"0":{"oreDict":["dustCoffee"," dyeBrown"," dye"],"name":"Coffee Powder","tr":"咖啡粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedGadoliniteY":{"0":{"oreDict":["crushedGadoliniteY"],"name":"Crushed Gadolinite (Y) Ore","tr":"粉碎的硅铍钇矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.unlitTorch_Stone":{"0":{"name":"Stone Torch","tr":"石柄火把","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_FermentedBacterialSludge":{"0":{"name":"Fermented Bacterial Sludge","tr":"发酵的细菌污泥","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockThirstyTank":{"0":{"name":"Thirsty Tank","tr":"渴饮储罐","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:camoFenceGate":{"0":{"name":"Camo Fence Gate","tr":"混色栅栏门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioSeats":{"0":{"name":"Oak Seat","tr":"橡木椅子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Seat","tr":"云杉椅子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Seat","tr":"桦木椅子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Seat","tr":"丛林木椅子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Seat","tr":"金合欢座椅","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Seat","tr":"深色橡木椅","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Seat","tr":"镶框椅子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCalciumCarbonate":{"0":{"oreDict":["dustCalciumCarbonate"],"name":"碳酸钙粉","tr":"碳酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.NaquadahcellDep":{"0":{"name":"枯竭燃料棒(硅岩)","tr":"枯竭燃料棒(硅岩)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Botania:blackLotus":{"0":{"name":"Black Lotus","tr":"黑莲花","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Blacker Lotus","tr":"暗黑莲花","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:regenIvy":{"0":{"name":"Timeless Ivy","tr":"永恒常春藤","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellNiobiumCarbide":{"0":{"oreDict":["cellNiobiumCarbide"],"name":"碳化铌单元","tr":"碳化铌单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AdvancedBoard":{"0":{"name":"Empty Advanced Processor Board","tr":"先进电路基板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.BiblioMapTool":{"0":{"name":"Drafting Compass","tr":"制图盘","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:lavaPendant":{"0":{"name":"Pyroclast Pendant","tr":"火石项链","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:beartrap":{"0":{"name":"Beartrap","tr":"捕熊陷阱","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeHoeHead":{"0":{"name":"Casting Form (Hoe Head Shape)","tr":"铸形(锄头)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_storage16":{"0":{"name":"§a16k§r ME Fluid Storage Cell","tr":"§a16k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:bound_bow":{"0":{"name":"Bound Bow","tr":"约束之弓","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamchilipepperCrop":{"0":{"name":"Chili Pepper Crop","tr":"辣椒","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:cobbleRod":{"0":{"name":"Rod of the Depths","tr":"深渊法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyRhugnor":{"0":{"oreDict":["dustTinyRhugnor"],"name":"小撮鲁格诺粉","tr":"小撮鲁格诺粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:peachyogurtItem":{"0":{"oreDict":["foodPeachyogurt"],"name":"Peach Yogurt","tr":"桃子酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicMachina:wandAugmentationCore":{"0":{"name":"Wand Augmentation Core","tr":"法杖强化核心","tab":"神秘力学","type":"Item","maxStackSize":1,"maxDurability":1}},"DraconicEvolution:generator":{"3":{"name":"Generator","tr":"发电机","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:durianItem":{"0":{"oreDict":["cropDurian"],"name":"Durian","tr":"榴莲","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHS188A":{"0":{"oreDict":["dustTinyHS188A"],"name":"小撮HS188-A粉","tr":"小撮HS188-A粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.minerBase":{"0":{"name":"Astro Miner Base","tr":"太空采矿机基地方块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:seerSigil":{"0":{"name":"Sigil of Sight","tr":"见解印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:barnardaCdandelion3":{"0":{"name":"Barnarda C Dandelion","tr":"巴纳德C蒲公英","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingLaurenium":{"0":{"oreDict":["ringLaurenium"],"name":"劳伦姆合金环","tr":"劳伦姆合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:flagpole":{"0":{"name":"Oak Flag Pole","tr":"橡木旗杆","tab":"挖矿与砍杀|战备双持2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Flag Pole","tr":"云杉旗杆","tab":"挖矿与砍杀|战备双持2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Flag Pole","tr":"白桦旗杆","tab":"挖矿与砍杀|战备双持2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Flag Pole","tr":"丛林木旗杆","tab":"挖矿与砍杀|战备双持2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Iron Flag Pole","tr":"铁旗杆","tab":"挖矿与砍杀|战备双持2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Acacia Flag Pole","tr":"刺槐旗杆","tab":"挖矿与砍杀|战备双持2","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Dark Oak Flag Pole","tr":"黑橡木旗杆","tab":"挖矿与砍杀|战备双持2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:itemFlower":{"0":{"name":"Hollyhock","tr":"蜀葵","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pammapleSapling":{"0":{"name":"Maple Sapling","tr":"枫树树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.darkSteel_axe":{"0":{"name":"Dark Axe","tr":"玄钢斧","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1562}},"miscutils:itemDustSmallRadium":{"0":{"oreDict":["dustSmallRadium"],"name":"小堆镭粉","tr":"小堆镭粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinTechnicianI":{"0":{"name":"Coin \"The Technician 10\"","tr":"技术员币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:speedingPipe":{"0":{"name":"Speeding Pipe Casing","tr":"高速管道方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:genericSlab_full":{"0":{"name":"Gold Etched Obsidian Slab","tr":"远古镶金黑曜石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ancient Brick Slab","tr":"远古石砖台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ancient Cobblestone Slab","tr":"远古圆石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ancient Mossy Cobblestone Slab","tr":"远古苔石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ancient Diamond Slab","tr":"远古钻石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ancient Gold Slab","tr":"远古金台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ancient Iron Slab","tr":"远古铁台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Ancient Lapis Lazuli Slab","tr":"远古青金石台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.moonBlock":{"0":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreCheese"],"name":"Cheese Ore","tr":"奶酪矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["rockMoon"," rockSpace"],"name":"Moon Dirt","tr":"月球泥土","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["rockMoon"," rockSpace"],"name":"Moon Rock","tr":"月球石头","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["rockMoon"," rockSpace"],"name":"Moon Turf","tr":"月面草皮","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Moon Dungeon Brick","tr":"月球地牢砖块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaEsubgrunt":{"0":{"oreDict":["rockBarnardaE"," rockSpace"],"name":"Barnarda E Subsurface Block","tr":"巴纳德E地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bananaItem":{"0":{"oreDict":["cropBanana"," listAllfruit"],"name":"Banana","tr":"香蕉","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemQuantumComet":{"1":{"name":"Quantum Boots of the Comet","tr":"量子彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Quantum Boots of the Comet","tr":"量子彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"IC2:itemBiochaff":{"0":{"name":"Bio Chaff","tr":"糠","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleInconel625":{"0":{"oreDict":["plateDoubleInconel625"],"name":"双重镍铬基合金-625板","tr":"双重镍铬基合金-625板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"TwilightForest:tile.UnripeTrollBer":{"0":{"name":"Unripe Trollber","tr":"未成熟的巨魔浆果","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemSanitySoap":{"0":{"name":"Sanitizing Soap","tr":"祛邪肥皂","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodMapFrame2":{"0":{"name":"Pine Map Frame","tr":"松树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Map Frame","tr":"李子树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Map Frame","tr":"杨树木地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Map Frame","tr":"红杉地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Map Frame","tr":"柚木地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Map Frame","tr":"核桃树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Map Frame","tr":"崖豆树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Map Frame","tr":"柳树地图框架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTitansteel":{"0":{"oreDict":["dustTinyTitansteel"],"name":"小撮泰坦精钢粉","tr":"小撮泰坦精钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AFSU:ALC":{"0":{"name":"AFB","tr":"AFB","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":100000002}},"chisel:aluminum_stairs.0":{"0":{"name":"Aluminum Stairs","tr":"铝制楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Aluminum Stairs","tr":"铝制楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.StargateShieldingFoil":{"0":{"name":"Stargate-Radiation-Containment-Plate","tr":"星门辐射防护板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotStellite":{"0":{"oreDict":["ingotHotStellite"],"name":"热铬钴锰钛合金锭","tr":"热铬钴锰钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableName":{"0":{"name":"Inventory Cable","tr":"工厂线缆","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.bauble.fireprotection.0.name":{"0":{"name":"§4Supreme Pizza Gloves§7","tr":"§4超级披萨手套§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":101}},"gendustry:Liquifier":{"0":{"name":"Protein Liquifier","tr":"蛋白质液化机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:guide":{"0":{"name":"Building Guide","tr":"建筑指导仪","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:aluminum_stairs.2":{"0":{"name":"Aluminum Stairs","tr":"铝制楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Aluminum Stairs","tr":"铝制楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustWhiteMetal":{"0":{"oreDict":["dustWhiteMetal"],"name":"白物质粉","tr":"白物质粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:aluminum_stairs.1":{"0":{"name":"Aluminum Stairs","tr":"铝制楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Aluminum Stairs","tr":"铝制楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.integrated_circuit":{"0":{"name":"编程电路","tr":"编程电路","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedTitanite":{"0":{"oreDict":["crushedTitanite"],"name":"Crushed Titanite Ore","tr":"粉碎的榍石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SoulariumBars":{"0":{"oreDict":["barsSoularium"],"name":"Soularium Bars","tr":"魂金栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bambooshootseedItem":{"0":{"oreDict":["listAllseed"," seedBambooshoot"],"name":"Bamboo Shoot Seed","tr":"竹笋种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSurvivorII":{"0":{"name":"Coin \"The Survivor 100\"","tr":"幸存者币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.HugeGloomBlock":{"0":{"name":"Huge Mushgloom","tr":"巨型暮色森林蘑菇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTriniumNaquadahAlloy":{"0":{"oreDict":["plateTriniumNaquadahAlloy"],"name":"三元硅岩合金板","tr":"三元硅岩合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetPotin":{"0":{"oreDict":["nuggetPotin"],"name":"粗青铜合金粒","tr":"粗青铜合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHastelloyC276":{"0":{"oreDict":["screwHastelloyC276"],"name":"哈斯特洛依合金-C276螺丝","tr":"哈斯特洛依合金-C276螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemUpgrade":{"0":{"name":"Range Upgrade","tr":"范围升级","tab":"核电控制2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Color Upgrade","tr":"彩色升级","tab":"核电控制2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Web Upgrade","tr":"网页升级","tab":"核电控制2","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneBlockStairBlock":{"0":{"name":"Sky Stone Block Stairs","tr":"陨石块楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.reactorMOXSimple":{"0":{"name":"燃料棒(MOX)","tr":"燃料棒(MOX)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:itemRodLongTantalloy61":{"0":{"oreDict":["stickLongTantalloy61"],"name":"长钽钨合金-61杆","tr":"长钽钨合金-61杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:thorRing":{"0":{"name":"Ring of Thor","tr":"托尔之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:ceresTChestT4":{"0":{"name":"Treasure Chest Tier 3","tr":"3阶宝箱","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:HydrogenPeroxide":{"0":{"oreDict":["cellHydrogenPeroxide"],"name":"过氧化氢单元","tr":"过氧化氢单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.darkSteel_helmet":{"0":{"name":"Dark Helm","tr":"玄钢头盔","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":386}},"miscutils:itemRodLongTantalloy60":{"0":{"oreDict":["stickLongTantalloy60"],"name":"长钽钨合金-60杆","tr":"长钽钨合金-60杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:hardWallTierTwo":{"0":{"name":"Hard Wall (Tier 2)","tr":"坚固墙壁(二级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bakedbeansItem":{"0":{"oreDict":["foodBakedbeans"],"name":"Baked Beans","tr":"烘豆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:paperwall":{"0":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Paperwall","tr":"障子","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:redwood":{"0":{"oreDict":["logWood"],"name":"Redwood Bark","tr":"红木树皮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Redwood","tr":"红木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Redwood Root","tr":"红木树根","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:jarFilled":{"0":{"name":"Honey Jar","tr":"蜂蜜罐","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Poison Extract Jar","tr":"毒罐子","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Pixie Jar","tr":"妖精罐子","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinSurvivorIV":{"0":{"name":"Coin \"The Survivor 10K\"","tr":"幸存者币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.extraPlanets.singularity":{"0":{"name":"Blue Gem Singularity","tr":"蓝色宝石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Carbon Singularity","tr":"碳奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Crystal Singularity","tr":"水晶奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Red Gem Singularity","tr":"红色宝石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"White Gem Singularity","tr":"白色宝石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:door.ghostwood":{"0":{"name":"Ghostwood Door","tr":"幽魂树门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bananasplitItem":{"0":{"oreDict":["foodBananasplit"],"name":"Banana Split","tr":"香蕉圣代","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltGrisium":{"0":{"oreDict":["boltGrisium"],"name":"灰钛合金螺栓","tr":"灰钛合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedrotor":{"96":{"oreDict":["rotorAdemicSteel"],"name":"硬钢转子","tr":"硬钢转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["rotorShirabon"],"name":"调律源金转子","tr":"调律源金转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["rotorZircaloy-4"],"name":"锆锡合金-4转子","tr":"锆锡合金-4转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["rotorZircaloy-2"],"name":"锆锡合金-2转子","tr":"锆锡合金-2转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["rotorIncoloy-903"],"name":"耐热铬铁合金-903转子","tr":"耐热铬铁合金-903转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["rotorAdamantiumAlloy"],"name":"精金合金转子","tr":"精金合金转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["rotorAtomicSeparationCatalyst"],"name":"原子分离催化剂转子","tr":"原子分离催化剂转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["rotorExtremelyUnstableNaquadah"],"name":"极不稳定硅岩转子","tr":"极不稳定硅岩转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["rotorMAR-M200Steel"],"name":"MAR-M200特种钢转子","tr":"MAR-M200特种钢转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["rotorMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢转子","tr":"MAR-Ce-M200特种钢转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["rotorSignalium"],"name":"信素转子","tr":"信素转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["rotorLumiium"],"name":"流明转子","tr":"流明转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["rotorArtherium-Sn"],"name":"阿瑟锡转子","tr":"阿瑟锡转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["rotorTanmolyiumBeta-C"],"name":"钛钼合金β-C转子","tr":"钛钼合金β-C转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["rotorRhodium-PlatedPalladium"],"name":"镀铑钯转子","tr":"镀铑钯转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["rotorDalisenite"],"name":"大力合金转子","tr":"大力合金转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["rotorTiberium"],"name":"泰伯利亚转子","tr":"泰伯利亚转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["rotorHikarium"],"name":"光素转子","tr":"光素转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["rotorRuridit"],"name":"钌铱合金转子","tr":"钌铱合金转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["rotorTairitsu"],"name":"对立合金转子","tr":"对立合金转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["rotorHighDurabilityCompoundSteel"],"name":"高耐久性复合钢转子","tr":"高耐久性复合钢转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["rotorPreciousMetalsAlloy"],"name":"稀有金属合金转子","tr":"稀有金属合金转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["rotorEnrichedNaquadahAlloy"],"name":"富集硅岩合金转子","tr":"富集硅岩合金转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["rotorMetastableOganesson"],"name":"亚稳态鿫转子","tr":"亚稳态鿫转子","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorWhiteMetal":{"0":{"oreDict":["rotorWhiteMetal"],"name":"白物质转子","tr":"白物质转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:spicygreensItem":{"0":{"oreDict":["foodSpicygreens"],"name":"Spicy Greens","tr":"辛辣蔬菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLaurenium":{"0":{"oreDict":["dustTinyLaurenium"],"name":"小撮劳伦姆合金粉","tr":"小撮劳伦姆合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallRhugnor":{"0":{"oreDict":["dustSmallRhugnor"],"name":"小堆鲁格诺粉","tr":"小堆鲁格诺粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellGermanium":{"0":{"oreDict":["cellGermanium"],"name":"锗单元","tr":"锗单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewLafiumCompound":{"0":{"oreDict":["screwLafiumCompound"],"name":"路菲恩化合物螺丝","tr":"路菲恩化合物螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTeflon":{"0":{"oreDict":["blockTeflon"],"name":"特氟龙块","tr":"特氟龙块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingZirconiumCarbide":{"0":{"oreDict":["ringZirconiumCarbide"],"name":"碳化锆环","tr":"碳化锆环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:inspiratron":{"0":{"name":"Inspiratron","tr":"摄魂之脑","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:manasteelBoots":{"0":{"name":"Manasteel Boots","tr":"魔钢靴子","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":209}},"EnderIO:blockFarmStation":{"0":{"name":"Farming Station","tr":"种植站","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockRubLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Rubber Tree Leaves","tr":"橡胶树树叶","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockAlloySmelter":{"0":{"name":"Alloy Smelter","tr":"合金炉","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockDenseEnergyCell":{"0":{"name":"Dense Energy Cell","tr":"致密能源元件","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.landingPad":{"0":{"name":"Rocket Launch Pad","tr":"火箭发射平台","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Buggy Fueling Pad","tr":"星球车燃料补给台","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.CompressedCoal":{"0":{"name":"Block of Compressed Coal","tr":"压缩煤炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fieryBoots":{"0":{"name":"Fiery Boots","tr":"炽热的靴子","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:oreZirconolite":{"0":{"oreDict":["oreZirconolite"],"name":"Zirconolite Ore","tr":"钛锆酸钙矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:enhancedTelepositionFocus":{"0":{"name":"Enhanced Teleposition Focus","tr":"[加强]传送方位核心","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"battlegear2:dagger.iron":{"0":{"name":"Iron Dagger","tr":"铁匕首","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":251}},"Botania:dreamwood0Stairs":{"0":{"name":"Dreamwood Stairs","tr":"梦之木楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:green_kitchen_floor":{"0":{"name":"Green Kitchen Floor","tr":"绿色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:lightlyCrackedNaquadahGas":{"0":{"name":"Lightly Cracked Naquadah Gas","tr":"轻度裂化硅岩气","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockNitinol60":{"0":{"oreDict":["blockNitinol60"],"name":"镍钛诺60块","tr":"镍钛诺60块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteShovel":{"0":{"name":"Thauminite Shovel","tr":"秘晶铲","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":975}},"TConstruct:trap.punji":{"0":{"name":"Punji Stick","tr":"尖竹钉","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellZirconiumCarbide":{"0":{"oreDict":["cellZirconiumCarbide"],"name":"碳化锆单元","tr":"碳化锆单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFMagicLogSpecial":{"0":{"name":"Timewood Clock","tr":"时光树的时钟","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Heart of Transformation","tr":"变化树的心脏","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Minewood Core","tr":"矿工树的核心","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sortingwood Engine","tr":"分类树的引擎","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:itemCarpentersHammer":{"0":{"name":"Carpenter\u0027s Hammer","tr":"木匠锤","tab":"木匠方块","type":"Item","maxStackSize":1,"maxDurability":401}},"Forestry:waxCapsuleMead":{"0":{"oreDict":["capsuleMead"],"name":"Mead Capsule","tr":"蜂蜜陈酿胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:diamond_block":{"1":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Diamond Block","tr":"钻石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustChromaticGlass":{"0":{"oreDict":["dustChromaticGlass"],"name":"彩色玻璃粉","tr":"彩色玻璃粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsemerald":{"0":{"name":"Emerald Fluid Pipe","tr":"绿宝石流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:gemOre":{"0":{"name":"Ender Amethyst Ore","tr":"紫晶矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Amethyst","tr":"紫晶块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreRuby"],"name":"Ruby Ore","tr":"红宝石矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockRuby"],"name":"Block of Ruby","tr":"红宝石块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["orePeridot"],"name":"Peridot Ore","tr":"橄榄石矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockPeridot"],"name":"Block of Peridot","tr":"橄榄石块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oreTopaz"],"name":"Topaz Ore","tr":"黄玉矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockTopaz"],"name":"Block of Topaz","tr":"黄玉块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oreTanzanite"],"name":"Tanzanite Ore","tr":"坦桑矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockTanzanite"],"name":"Block of Tanzanite","tr":"坦桑石块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["oreMalachite"],"name":"Malachite Ore","tr":"孔雀石矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockMalachite"],"name":"Block of Malachite","tr":"孔雀石块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["oreSapphire"],"name":"Sapphire Ore","tr":"蓝宝石矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockSapphire"],"name":"Block of Sapphire","tr":"蓝宝石块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["oreAmber"],"name":"Amber Ore","tr":"琥珀矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockAmber"],"name":"Block of Amber","tr":"琥珀块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:jaffaItem":{"0":{"oreDict":["foodJaffa"],"name":"Jaffa","tr":"佳发蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:mirrorblock2":{"0":{"name":"Mirror","tr":"魔镜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Mantle:mantleBook":{"0":{"name":"Mantle:item.mantle.manual.test.name","tr":"Mantle:item.mantle.manual.test.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Mantle:mantleBook","tr":"Mantle:mantleBook","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Mantle:mantleBook","tr":"Mantle:mantleBook","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Mantle:mantleBook","tr":"Mantle:mantleBook","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:mobSoul":{"0":{"name":"Mob Soul","tr":"怪物灵魂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedLanthaniteNd":{"0":{"oreDict":["crushedPurifiedLanthaniteNd"],"name":"Purified Crushed Lanthanite (Nd) Ore","tr":"洗净的镧石(Nd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:elementiumShears":{"0":{"name":"Elementium Shears","tr":"源质钢剪","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":239}},"Avaritia:Infinity_Pickaxe":{"0":{"name":"World Breaker","tr":"世界崩解之镐","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":10000}},"dreamcraft:item.ReinforcedBedrockiumIronPlate":{"0":{"name":"Reinforced Bedrockium-Iron Plate","tr":"强化基岩铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockQuantumLinkChamber":{"0":{"name":"ME Quantum Link Chamber","tr":"ME量子链接仓","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedcellMolten":{"64":{"oreDict":["cellMoltenRuthenium"],"name":"熔融钌单元","tr":"熔融钌单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["cellMoltenShirabon"],"name":"熔融调律源金单元","tr":"熔融调律源金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["cellMoltenZn-ThAlloy"],"name":"熔融锌钍合金单元","tr":"熔融锌钍合金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11465":{"oreDict":["cellMoltenSamarium(III)-Chloride"],"name":"熔融含杂氯化钐单元","tr":"熔融含杂氯化钐单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["cellMoltenRhodium"],"name":"熔融铑单元","tr":"熔融铑单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["cellMoltenRhodium-PlatedPalladium"],"name":"熔融镀铑钯单元","tr":"熔融镀铑钯单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["cellMoltenRuridit"],"name":"熔融钌铱合金单元","tr":"熔融钌铱合金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["cellMoltenHighDurabilityCompoundSteel"],"name":"熔融高耐久性复合钢单元","tr":"熔融高耐久性复合钢单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["cellMoltenAdemicSteel"],"name":"熔融硬钢单元","tr":"熔融硬钢单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20001":{"oreDict":["cellMoltenHolmiumGarnet"],"name":"熔融Holmium Garnet单元","tr":"熔融Holmium Garnet单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["cellMoltenZircaloy-4"],"name":"熔融锆锡合金-4单元","tr":"熔融锆锡合金-4单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["cellMoltenZircaloy-2"],"name":"熔融锆锡合金-2单元","tr":"熔融锆锡合金-2单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["cellMoltenIncoloy-903"],"name":"熔融耐热铬铁合金-903单元","tr":"熔融耐热铬铁合金-903单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["cellMoltenAdamantiumAlloy"],"name":"熔融精金合金单元","tr":"熔融精金合金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["cellMoltenAtomicSeparationCatalyst"],"name":"熔融原子分离催化剂单元","tr":"熔融原子分离催化剂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["cellMoltenCalifornium"],"name":"熔融锎单元","tr":"熔融锎单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["cellMoltenOrundum"],"name":"熔融合成玉单元","tr":"熔融合成玉单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["cellMoltenCalcium"],"name":"熔融钙单元","tr":"熔融钙单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["cellMoltenExtremelyUnstableNaquadah"],"name":"熔融极不稳定硅岩单元","tr":"熔融极不稳定硅岩单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11498":{"oreDict":["cellMoltenCerium-dopedLutetiumAluminiumOxygenBlend"],"name":"熔融掺铈镥铝氧混合物单元","tr":"熔融掺铈镥铝氧混合物单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["cellMoltenBArTiMaEuSNeK"],"name":"熔融BArTiMaEuSNeK单元","tr":"熔融BArTiMaEuSNeK单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["cellMoltenMagnesia"],"name":"熔融氧化镁单元","tr":"熔融氧化镁单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["cellMoltenTantalumHafniumCarbide"],"name":"熔融碳化钽铪单元","tr":"熔融碳化钽铪单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["cellMoltenMAR-M200Steel"],"name":"熔融MAR-M200特种钢单元","tr":"熔融MAR-M200特种钢单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["cellMoltenPTMEGElastomer"],"name":"熔融PTMEG橡胶单元","tr":"熔融PTMEG橡胶单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["cellMoltenMAR-Ce-M200Steel"],"name":"熔融MAR-Ce-M200特种钢单元","tr":"熔融MAR-Ce-M200特种钢单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["cellMoltenLithiumChloride"],"name":"熔融氯化锂单元","tr":"熔融氯化锂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11314":{"oreDict":["cellMoltenPotassiumChlorate"],"name":"熔融氯酸钾单元","tr":"熔融氯酸钾单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["cellMoltenSignalium"],"name":"熔融信素单元","tr":"熔融信素单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11124":{"oreDict":["cellMoltenCalciumFluoride"],"name":"熔融氟化钙单元","tr":"熔融氟化钙单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["cellMoltenLumiium"],"name":"熔融流明单元","tr":"熔融流明单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["cellMoltenArtherium-Sn"],"name":"熔融阿瑟锡单元","tr":"熔融阿瑟锡单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["cellMoltenTanmolyiumBeta-C"],"name":"熔融钛钼合金β-C单元","tr":"熔融钛钼合金β-C单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["cellMoltenDalisenite"],"name":"熔融大力合金单元","tr":"熔融大力合金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["cellMoltenHikarium"],"name":"熔融光素单元","tr":"熔融光素单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["cellMoltenTairitsu"],"name":"熔融对立合金单元","tr":"熔融对立合金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["cellMoltenPotassiumDisulfate"],"name":"熔融焦硫酸钾单元","tr":"熔融焦硫酸钾单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["cellMoltenPreciousMetalsAlloy"],"name":"熔融稀有金属合金单元","tr":"熔融稀有金属合金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["cellMoltenEnrichedNaquadahAlloy"],"name":"熔融富集硅岩合金单元","tr":"熔融富集硅岩合金单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["cellMoltenMetastableOganesson"],"name":"熔融亚稳态鿫单元","tr":"熔融亚稳态鿫单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellLFTRFuel3":{"0":{"oreDict":["cellLFTRFuel3"],"name":"液态氟钍反应堆燃料3单元","tr":"液态氟钍反应堆燃料3单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellLFTRFuel2":{"0":{"oreDict":["cellLFTRFuel2"],"name":"液态氟钍反应堆燃料2单元","tr":"液态氟钍反应堆燃料2单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellLFTRFuel1":{"0":{"oreDict":["cellLFTRFuel1"],"name":"液态氟钍反应堆燃料1单元","tr":"液态氟钍反应堆燃料1单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedTitaniumIronPlate":{"0":{"name":"Reinforced Titanium-Iron Plate","tr":"强化钛铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltNitinol60":{"0":{"oreDict":["boltNitinol60"],"name":"镍钛诺60螺栓","tr":"镍钛诺60螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:shape":{"0":{"name":"Architectural Block","tr":"构件","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:bucketGlass":{"0":{"name":"Molten Glass Bucket","tr":"液态玻璃桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"MagicBees:frameNecrotic":{"0":{"name":"Necrotic Frame","tr":"坏死框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":281}},"IC2:reactorMOXSimple":{"1":{"name":"Fuel Rod (MOX)","tr":"燃料棒(MOX)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":10001}},"GalaxySpace:barnardaCdandelions":{"0":{"name":"Barnarda C Dandelion","tr":"巴纳德C蒲公英","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Barnarda C Dandelion","tr":"巴纳德C蒲公英","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:floatCandle":{"0":{"name":"White Floating Candle","tr":"白色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Floating Candle","tr":"橙色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Floating Candle","tr":"品红色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Floating Candle","tr":"淡蓝色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Floating Candle","tr":"黄色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Floating Candle","tr":"黄绿色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Floating Candle","tr":"粉色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Floating Candle","tr":"灰色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Gray Floating Candle","tr":"淡灰色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Floating Candle","tr":"青色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Floating Candle","tr":"紫色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Floating Candle","tr":"蓝色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Floating Candle","tr":"棕色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Floating Candle","tr":"绿色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Floating Candle","tr":"红色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Floating Candle","tr":"黑色浮烛","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCinobiteA243":{"0":{"oreDict":["dustSmallCinobiteA243"],"name":"小堆西诺柏A243粉","tr":"小堆西诺柏A243粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Robotics:robotStation":{"0":{"name":"Docking Station","tr":"机器人转接坞","tab":"建筑|机器人","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.gear.box":{"0":{"name":"Iron Gear Box","tr":"铁齿轮箱","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtNitinol60":{"0":{"oreDict":["frameGtNitinol60"],"name":"镍钛诺60框架","tr":"镍钛诺60框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtPotin":{"0":{"oreDict":["frameGtPotin"],"name":"粗青铜合金框架","tr":"粗青铜合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedAgarditeCd":{"0":{"oreDict":["crushedPurifiedAgarditeCd"],"name":"Purified Crushed Agardite (Cd) Ore","tr":"洗净的菱铁矿(Cd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:supercriticalFluidTurbineCasing":{"0":{"name":"SC Turbine Casing","tr":"超临界蒸汽涡轮机械方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartLumberHead":{"1536":{"name":"精金 Broad Axe Head","tr":"精金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Broad Axe Head","tr":"神秘蓝金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Broad Axe Head","tr":"琥珀 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Broad Axe Head","tr":"纯镃 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Broad Axe Head","tr":"谐镃 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Broad Axe Head","tr":"聚氯乙烯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Broad Axe Head","tr":"永恒 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Broad Axe Head","tr":"磁物质 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Broad Axe Head","tr":"赛特斯石英 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Broad Axe Head","tr":"暗影秘银 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Broad Axe Head","tr":"玄铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Broad Axe Head","tr":"戴斯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Broad Axe Head","tr":"铿铀 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Broad Axe Head","tr":"通流琥珀金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Broad Axe Head","tr":"末影粗胚 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Broad Axe Head","tr":"末影(te) 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Broad Axe Head","tr":"炽热的钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Broad Axe Head","tr":"火石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Broad Axe Head","tr":"力量 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Broad Axe Head","tr":"石墨 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Broad Axe Head","tr":"石墨烯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Broad Axe Head","tr":"注魔金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Broad Axe Head","tr":"风之魔晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Broad Axe Head","tr":"火之魔晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Broad Axe Head","tr":"地之魔晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Broad Axe Head","tr":"水之魔晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Broad Axe Head","tr":"混沌魔晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Broad Axe Head","tr":"秩序魔晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Broad Axe Head","tr":"玉 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Broad Axe Head","tr":"碧玉 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Broad Axe Head","tr":"陨铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Broad Axe Head","tr":"陨钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Broad Axe Head","tr":"硅岩 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Broad Axe Head","tr":"硅岩合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Broad Axe Head","tr":"富集硅岩 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Broad Axe Head","tr":"超能硅岩 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Broad Axe Head","tr":"下界石英 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Broad Axe Head","tr":"下界之星 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Broad Axe Head","tr":"三钛 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Broad Axe Head","tr":"虚空 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Broad Axe Head","tr":"胶木 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Broad Axe Head","tr":"幽冥剧毒结晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Broad Axe Head","tr":"强化 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Broad Axe Head","tr":"铱锇合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Broad Axe Head","tr":"阳光化合物 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Broad Axe Head","tr":"魂金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Broad Axe Head","tr":"蓝黄玉 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Broad Axe Head","tr":"黄铜 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Broad Axe Head","tr":"白铜 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Broad Axe Head","tr":"深渊铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Broad Axe Head","tr":"钻石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Broad Axe Head","tr":"琥珀金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Broad Axe Head","tr":"绿宝石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Broad Axe Head","tr":"强化混合晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Broad Axe Head","tr":"混合晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Broad Axe Head","tr":"绿色蓝宝石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Broad Axe Head","tr":"殷钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Broad Axe Head","tr":"坎塔尔合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Broad Axe Head","tr":"镁铝合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Broad Axe Head","tr":"镍铬合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Broad Axe Head","tr":"玄钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Broad Axe Head","tr":"生铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Broad Axe Head","tr":"聚乙烯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Broad Axe Head","tr":"环氧树脂 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Broad Axe Head","tr":"硅橡胶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Broad Axe Head","tr":"聚己内酰胺 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Broad Axe Head","tr":"聚四氟乙烯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Broad Axe Head","tr":"蓝宝石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Broad Axe Head","tr":"不锈钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Broad Axe Head","tr":"坦桑石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Broad Axe Head","tr":"锡铁合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Broad Axe Head","tr":"黄玉 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Broad Axe Head","tr":"哈氏合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Broad Axe Head","tr":"锻铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Broad Axe Head","tr":"铁木 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Broad Axe Head","tr":"橄榄石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Broad Axe Head","tr":"蛋白石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Broad Axe Head","tr":"紫水晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Broad Axe Head","tr":"暗影金属 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Broad Axe Head","tr":"暗影铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Broad Axe Head","tr":"暗影钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Broad Axe Head","tr":"钢叶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Broad Axe Head","tr":"骑士金属 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Broad Axe Head","tr":"标准纯银 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Broad Axe Head","tr":"玫瑰金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Broad Axe Head","tr":"黑青铜 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Broad Axe Head","tr":"铋青铜 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Broad Axe Head","tr":"黑钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Broad Axe Head","tr":"红钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Broad Axe Head","tr":"蓝钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Broad Axe Head","tr":"大马士革钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Broad Axe Head","tr":"充能合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Broad Axe Head","tr":"脉冲合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Broad Axe Head","tr":"星辰银 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Broad Axe Head","tr":"钴黄铜 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Broad Axe Head","tr":"红石榴石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Broad Axe Head","tr":"黄石榴石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Broad Axe Head","tr":"温特姆 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Broad Axe Head","tr":"黑花岗岩 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Broad Axe Head","tr":"红花岗岩 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Broad Axe Head","tr":"白石棉 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Broad Axe Head","tr":"雄黄 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Broad Axe Head","tr":"磁化铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Broad Axe Head","tr":"磁化钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Broad Axe Head","tr":"磁化钕 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Broad Axe Head","tr":"碳化钨 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Broad Axe Head","tr":"钒钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Broad Axe Head","tr":"高速钢-G 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Broad Axe Head","tr":"高速钢-E 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Broad Axe Head","tr":"高速钢-S 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Broad Axe Head","tr":"深铅 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Broad Axe Head","tr":"量子 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Broad Axe Head","tr":"深空秘银 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Broad Axe Head","tr":"黑钚 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Broad Axe Head","tr":"木卫四冰 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Broad Axe Head","tr":"硬铝 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Broad Axe Head","tr":"奥利哈钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Broad Axe Head","tr":"三元金属 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Broad Axe Head","tr":"聚苯硫醚 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Broad Axe Head","tr":"聚苯乙烯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Broad Axe Head","tr":"丁苯橡胶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Broad Axe Head","tr":"镍锌铁氧体 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Broad Axe Head","tr":"纤维强化的环氧树脂 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Broad Axe Head","tr":"磁化钐 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Broad Axe Head","tr":"无尽催化剂 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Broad Axe Head","tr":"聚苯并咪唑 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Broad Axe Head","tr":" 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Broad Axe Head","tr":"钛铂钒合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Broad Axe Head","tr":"时空 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Broad Axe Head","tr":"大理石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Broad Axe Head","tr":"神秘水晶 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Broad Axe Head","tr":"末影钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Broad Axe Head","tr":"复合粘土 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Broad Axe Head","tr":"晶化合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Broad Axe Head","tr":"旋律合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Broad Axe Head","tr":"恒星合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Broad Axe Head","tr":"晶化粉红史莱姆 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Broad Axe Head","tr":"充能银 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Broad Axe Head","tr":"生动合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Broad Axe Head","tr":"灵宝 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Broad Axe Head","tr":"超时空金属 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Broad Axe Head","tr":"活石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Broad Axe Head","tr":"盖亚之魂 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Broad Axe Head","tr":"活木 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Broad Axe Head","tr":"梦之木 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Broad Axe Head","tr":"泡铋 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Broad Axe Head","tr":"立方氧化锆 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Broad Axe Head","tr":"氟铁电气石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Broad Axe Head","tr":"铬铝电气石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Broad Axe Head","tr":"钒镁电气石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Broad Axe Head","tr":"铝电气石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Broad Axe Head","tr":"红锆石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Broad Axe Head","tr":"铁橄榄石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Broad Axe Head","tr":"镁橄榄石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Broad Axe Head","tr":"钙铁辉石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Broad Axe Head","tr":"钍-232 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Broad Axe Head","tr":"堇云石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Broad Axe Head","tr":"磁共振石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Broad Axe Head","tr":"锎 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Broad Axe Head","tr":"BArTiMaEuSNeK 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Broad Axe Head","tr":"钌 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Broad Axe Head","tr":"铑 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Broad Axe Head","tr":"镀铑钯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Broad Axe Head","tr":"泰伯利亚 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Broad Axe Head","tr":"钌铱合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Broad Axe Head","tr":"氟石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Broad Axe Head","tr":"高耐久性复合钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Broad Axe Head","tr":"硬钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Broad Axe Head","tr":"合成玉 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Broad Axe Head","tr":"原子分离催化剂 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Broad Axe Head","tr":"极不稳定硅岩 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Broad Axe Head","tr":"锌钍合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Broad Axe Head","tr":"锆锡合金-4 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Broad Axe Head","tr":"锆锡合金-2 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Broad Axe Head","tr":"耐热铬铁合金-903 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Broad Axe Head","tr":"精金合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Broad Axe Head","tr":"MAR-M200特种钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Broad Axe Head","tr":"MAR-Ce-M200特种钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Broad Axe Head","tr":"氯化锂 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Broad Axe Head","tr":"信素 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Broad Axe Head","tr":"流明 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Broad Axe Head","tr":"阿瑟锡 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Broad Axe Head","tr":"钛钼合金β-C 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Broad Axe Head","tr":"大力合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Broad Axe Head","tr":"光素 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Broad Axe Head","tr":"对立合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Broad Axe Head","tr":"稀有金属合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Broad Axe Head","tr":"富集硅岩合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Broad Axe Head","tr":"亚稳态鿫 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Broad Axe Head","tr":"调律源金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Broad Axe Head","tr":"魔钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Broad Axe Head","tr":"泰拉钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Broad Axe Head","tr":"源质钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Broad Axe Head","tr":"磁流体约束恒星物质 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Broad Axe Head","tr":"白矮星物质 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Broad Axe Head","tr":"黑矮星物质 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Broad Axe Head","tr":"宇宙素 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Broad Axe Head","tr":"铝 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Broad Axe Head","tr":"铍 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Broad Axe Head","tr":"铋 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Broad Axe Head","tr":"碳 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Broad Axe Head","tr":"铬 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Broad Axe Head","tr":"金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Broad Axe Head","tr":"铱 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Broad Axe Head","tr":"铅 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Broad Axe Head","tr":"锰 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Broad Axe Head","tr":"钼 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Broad Axe Head","tr":"钕 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Broad Axe Head","tr":"中子 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Broad Axe Head","tr":"镍 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Broad Axe Head","tr":"锇 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Broad Axe Head","tr":"钯 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Broad Axe Head","tr":"铂 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Broad Axe Head","tr":"钚-239 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Broad Axe Head","tr":"钚-241 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Broad Axe Head","tr":"银 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Broad Axe Head","tr":"钍 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Broad Axe Head","tr":"钛 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Broad Axe Head","tr":"钨 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Broad Axe Head","tr":"铀-238 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Broad Axe Head","tr":"铀-235 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Broad Axe Head","tr":"红宝石 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Broad Axe Head","tr":"红石合金 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Broad Axe Head","tr":"终末 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Broad Axe Head","tr":"导电铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Broad Axe Head","tr":"磁钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Broad Axe Head","tr":"钨钢 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Broad Axe Head","tr":"烈焰 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Broad Axe Head","tr":"脉冲铁 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Broad Axe Head","tr":"龙 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Broad Axe Head","tr":"觉醒龙 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Broad Axe Head","tr":"褐铜 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Broad Axe Head","tr":"山铜 宽斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockUranium233":{"0":{"oreDict":["blockUranium233"],"name":"铀-233块","tr":"铀-233块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallDemicheleiteBr":{"0":{"oreDict":["dustSmallDemicheleiteBr"],"name":"小堆溴硫铋矿(Br)粉","tr":"小堆溴硫铋矿(Br)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateSelenium":{"0":{"oreDict":["plateSelenium"],"name":"硒板","tr":"硒板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:barChocolate":{"0":{"name":"Chocolate Bar","tr":"巧克力块","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:propolis":{"0":{"name":"Propolis","tr":"蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Sticky Propolis","tr":"粘性蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Silky Propolis","tr":"丝滑蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.spinThruster":{"0":{"name":"Spin Thruster","tr":"旋转推进器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IronChest:steelGoldUpgrade":{"0":{"name":"Steel to Gold Chest Upgrade","tr":"升级:钢\u003e金","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemBoltNiobiumCarbide":{"0":{"oreDict":["boltNiobiumCarbide"],"name":"碳化铌螺栓","tr":"碳化铌螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinChunkloaderTierII":{"0":{"name":"Chunkloader Coin Tier II","tr":"区块加载器硬币Tier II","tab":"GTNH: 物品","type":"Item","maxStackSize":4,"maxDurability":1}},"miscutils:itemDustTinyNichromite":{"0":{"oreDict":["dustTinyNichromite"],"name":"小撮镍铬矿粉","tr":"小撮镍铬矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.rocketWorkbench":{"0":{"name":"NASA Workbench","tr":"NASA工作台","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedGravel":{"0":{"name":"Crated Gravel","tr":"装箱的沙砾","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemironrotor":{"1":{"name":"Kinetic Gearbox Rotor (Iron)","tr":"铁转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":86401}},"ToxicEverglades:blockDarkWorldPortalFrame":{"0":{"name":"Containment Frame","tr":"遏制框架","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorStaballoy":{"0":{"oreDict":["rotorStaballoy"],"name":"贫铀合金转子","tr":"贫铀合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:light_blue_kitchen_floor":{"0":{"name":"Light Blue Kitchen Floor","tr":"淡蓝厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:tcetiedandelions":{"0":{"oreDict":["cropSpace"," cropTcetiESeaweed"],"name":"T Ceti E Seaweed","tr":"鲸鱼座T星E藻类","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropSpace"," cropTcetiESeaweed"],"name":"T Ceti E Seaweed","tr":"鲸鱼座T星E藻类","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["cropSpace"," cropTcetiESeaweed"],"name":"T Ceti E Seaweed","tr":"鲸鱼座T星E藻类","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["cropSpace"," cropTcetiESeaweed"],"name":"T Ceti E Seaweed","tr":"鲸鱼座T星E藻类","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodInconel625":{"0":{"oreDict":["stickInconel625"],"name":"镍铬基合金-625杆","tr":"镍铬基合金-625杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.glaxx":{"0":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⓪","tr":"Tinted Glass ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ①","tr":"Tinted Glass ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ②","tr":"Tinted Glass ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ③","tr":"Tinted Glass ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ④","tr":"Tinted Glass ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑤","tr":"Tinted Glass ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑥","tr":"Tinted Glass ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑦","tr":"Tinted Glass ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑧","tr":"Tinted Glass ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑨","tr":"Tinted Glass ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑩","tr":"Tinted Glass ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑪","tr":"Tinted Glass ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑫","tr":"Tinted Glass ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑬","tr":"Tinted Glass ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑭","tr":"Tinted Glass ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Tinted Glass ⑮","tr":"Tinted Glass ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockMachine2":{"0":{"oreDict":["craftingTeleporter"],"name":"Teleporter","tr":"传送机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tesla Coil","tr":"特斯拉线圈","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Crop-Matron","tr":"作物监管机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Thermal Centrifuge","tr":"热能离心机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Metal Former","tr":"金属成型机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ore Washing Plant","tr":"洗矿机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pattern Storage","tr":"模式存储机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Scanner","tr":"模式扫描机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Replicator","tr":"复制机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Solid Canning Machine","tr":"固体装罐机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Bottling Plant","tr":"流体装罐机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Advanced Miner","tr":"高级采矿机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Liquid Heat Exchanger","tr":"流体热交换机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fermenter","tr":"发酵机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fluid Regulator","tr":"流体流量调节机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Condenser","tr":"冷凝机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockMachine3":{"0":{"name":"Steam Generator","tr":"蒸汽机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Blast Furnace","tr":"高炉","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block Cutting Machine","tr":"方块切割机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Solar Distiller","tr":"太阳能蒸馏机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fluid Distributor","tr":"流体分配机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Electric Sorting Machine","tr":"电动分拣机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Item Buffer","tr":"物品缓冲机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Crop Harvester","tr":"作物收割机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Turning Table","tr":"车床","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyFlorencite":{"0":{"oreDict":["dustTinyFlorencite"],"name":"小撮磷铝铈矿粉","tr":"小撮磷铝铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone9Stairs":{"0":{"name":"Basalt Brick Stairs","tr":"玄武岩砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:porklomeinItem":{"0":{"oreDict":["foodPorklomein"],"name":"Pork Lo Mein","tr":"肉捞面","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemVoidwalkerBoots":{"0":{"name":"Boots of the Voidwalker","tr":"虚空旅行者之靴","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":6501}},"FloodLights:mantle":{"0":{"name":"Mantle","tr":"灯架","tab":"泛光灯","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCalciumChloride":{"0":{"oreDict":["dustTinyCalciumChloride"],"name":"小撮氯化钙粉","tr":"小撮氯化钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockUranium232":{"0":{"oreDict":["blockUranium232"],"name":"铀-232块","tr":"铀-232块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemFusedQuartzFrame":{"0":{"name":"Fused Quartz Frame","tr":"石英玻璃框","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:golemPlacer":{"0":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Animated Golem","tr":"活化傀儡","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"LogisticsPipes:item.pipeComponents":{"0":{"name":"Structural Pipe Frame","tr":"结构管道框架","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Micro Servo","tr":"微型伺服器","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Routing Logic Processor","tr":"路由逻辑处理器","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Micro Packager","tr":"微型打包机","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Micro Capsulator","tr":"微型封包器","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Logic Expansion Circuit","tr":"逻辑扩展电路","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Focus Lense","tr":"聚焦透镜","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Laser Acceptor Interface","tr":"激光接收器接口","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"item.pipeComponents","tr":"item.pipeComponents","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockRedcrystalDense":{"0":{"name":"Dense Redcrystal","tr":"钝化红晶","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.tiger":{"0":{"oreDict":["pressurePlateWood"],"name":"Tigerwood Pressure Plate","tr":"核桃树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemLeggingsThaumium":{"0":{"name":"Thaumium Leggings","tr":"神秘护腿","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":376}},"LogisticsPipes:item.PipeItemsFluidSupplier":{"0":{"name":"Logistics Fluid Container Supplier","tr":"物流流体容器补给管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:enhanced_brewing_stand_block":{"0":{"name":"Enhanced Brewing Stand","tr":"强化酿造台","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewPikyonium64B":{"0":{"oreDict":["screwPikyonium64B"],"name":"皮卡优合金64B螺丝","tr":"皮卡优合金64B螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:rocks":{"0":{"name":"Limestone","tr":"石灰岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Polished Limestone","tr":"光滑石灰岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Siltstone","tr":"粉砂岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Polished Siltstone","tr":"光滑粉砂岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Shale","tr":"页岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Polished Shale","tr":"光滑页岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EctoplasmaFragment":{"0":{"name":"Ectoplasma Fragment","tr":"外质碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cocoapowderItem":{"0":{"oreDict":["dustCocoa"," dyeBrown"," foodCocoapowder"," dye"],"name":"Cocoa Powder","tr":"可可粉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtInconel792":{"0":{"oreDict":["frameGtInconel792"],"name":"镍铬基合金-792框架","tr":"镍铬基合金-792框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:naturalistHelmet":{"0":{"name":"Spectacles","tr":"眼镜","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":101}},"Thaumcraft:blockTube":{"0":{"name":"Essentia Tube","tr":"源质管道","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Essentia Valve","tr":"源质阀门","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Alchemical Centrifuge","tr":"奥法离心机","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Filtered Essentia Tube","tr":"过滤源质管道","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Essentia Buffer","tr":"源质缓存器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Restricted Essentia Tube","tr":"限定源质管道","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Directional Essentia Tube","tr":"定向源质管道","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Essentia Crystallizer","tr":"源质结晶器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"Translocator:diamondNugget":{"0":{"oreDict":["nuggetDiamond"],"name":"Diamond Nugget","tr":"钻石粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:seatBack1":{"0":{"name":"Bloodwood Seat Back","tr":"血树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Seat Back","tr":"黑暗树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Seat Back","tr":"桉树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Seat Back","tr":"熔融树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Seat Back","tr":"幽魂树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Seat Back","tr":"车桑子树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Seat Back","tr":"紫檀树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Seat Back","tr":"银铃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Seat Back","tr":"樱花树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Seat Back","tr":"核桃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_unlit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedGreenockite":{"0":{"oreDict":["crushedCentrifugedGreenockite"],"name":"Centrifuged Crushed Greenockite Ore","tr":"离心硫镉矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.vectBlock":{"0":{"name":"Vect ⓪","tr":"Vect ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Vect ①","tr":"Vect ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Vect ②","tr":"Vect ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Vect ③","tr":"Vect ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Vect ④","tr":"Vect ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Vect ⑤","tr":"Vect ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Vect ⑥","tr":"Vect ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Vect ⑦","tr":"Vect ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Vect ⑧","tr":"Vect ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Vect ⑨","tr":"Vect ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Vect ⑩","tr":"Vect ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Vect ⑪","tr":"Vect ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Vect ⑫","tr":"Vect ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Vect ⑬","tr":"Vect ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Vect ⑭","tr":"Vect ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Vect ⑮","tr":"Vect ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersLever":{"0":{"name":"Carpenter\u0027s Lever","tr":"木匠拉杆","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:seatBack3":{"0":{"name":"Bloodwood Seat Back","tr":"血树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Seat Back","tr":"黑暗树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Seat Back","tr":"桉树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Seat Back","tr":"熔融树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Seat Back","tr":"幽魂树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Seat Back","tr":"车桑子树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Seat Back","tr":"紫檀树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Seat Back","tr":"银铃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Seat Back","tr":"樱花树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Seat Back","tr":"核桃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.oxygenTankLightFull":{"0":{"name":"Light Oxygen Tank","tr":"轻型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1001},"1000":{"name":"Light Oxygen Tank","tr":"轻型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1001}},"BiblioWoodsNatura:seatBack2":{"0":{"name":"Bloodwood Seat Back","tr":"血树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Seat Back","tr":"黑暗树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Seat Back","tr":"桉树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Seat Back","tr":"熔融树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Seat Back","tr":"幽魂树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Seat Back","tr":"车桑子树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Seat Back","tr":"紫檀树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Seat Back","tr":"银铃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Seat Back","tr":"樱花树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Seat Back","tr":"核桃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.schematic":{"0":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallHastelloyC276":{"0":{"oreDict":["dustSmallHastelloyC276"],"name":"小堆哈斯特洛依合金-C276粉","tr":"小堆哈斯特洛依合金-C276粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA4Slab":{"0":{"name":"Metamorphic Swamp Stone Slab","tr":"变质沼泽石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.itemBasicAsteroids":{"0":{"name":"Heavy Duty Plate","tr":"重型装甲板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Heavy Rocket Engine","tr":"重型火箭引擎","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Heavy Rocket Fins","tr":"重型火箭鳍","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["shardIron"," shardAnyIron"],"name":"Iron Shard","tr":"铁碎片","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["shardTitanium"],"name":"Titanium Shard","tr":"钛碎片","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["ingotTitanium"],"name":"Titanium Ingot","tr":"钛锭","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["compressedTitanium"],"name":"Compressed Titanium Plate","tr":"Compressed Titanium Plate","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Thermal Cloth","tr":"隔热布匹","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Beam Core","tr":"粒子束核心","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltAbyssalAlloy":{"0":{"oreDict":["boltAbyssalAlloy"],"name":"深渊合金螺栓","tr":"深渊合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodHeLiCoPtEr":{"0":{"oreDict":["stickHeLiCoPtEr"],"name":"HeLiCoPtEr杆","tr":"HeLiCoPtEr杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockFinicalMaw":{"0":{"name":"Finical Maw","tr":"深究之洞","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:woodPattern":{"1":{"name":"Tool Rod Pattern","tr":"手柄模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Pickaxe Head Pattern","tr":"镐头模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Shovel Head Pattern","tr":"铲头模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Axe Head Pattern","tr":"斧刃模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Sword Blade Pattern","tr":"剑刃模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Wide Guard Pattern","tr":"宽护手模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Hand Guard Pattern","tr":"护手模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Crossbar Pattern","tr":"十字柄模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Tool Binding Pattern","tr":"绑定结模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Pan Pattern","tr":"盘模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Wide Board Pattern","tr":"牌板模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Knife Blade Pattern","tr":"刀刃模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Chisel Head Pattern","tr":"凿刃模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Tough Rod Pattern","tr":"坚韧手柄模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Tough Binding Pattern","tr":"坚韧绑定结模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"name":"Large Plate Pattern","tr":"大板模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Broadaxe Head Pattern","tr":"宽斧刃模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Scythe Head Pattern","tr":"镰刀刀刃模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Excavator Head Pattern","tr":"开掘铲头模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Large Blade Pattern","tr":"宽剑刃模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Hammer Head Pattern","tr":"锤头模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Full Guard Pattern","tr":"大型护手模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"23":{"name":"Bowstring Pattern","tr":"弓弦模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"24":{"name":"Fletching Pattern","tr":"箭羽模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Arrowhead Pattern","tr":"箭头模具","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:barnardaEoreiron":{"0":{"oreDict":["oreAnyIron"," oreIron"],"name":"Iron Ore","tr":"巴纳德E铁矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.glowstoneTorch":{"0":{"name":"Glowstone Torch","tr":"萤石火把","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallYttrocerite":{"0":{"oreDict":["dustSmallYttrocerite"],"name":"小堆铈钇矿粉","tr":"小堆铈钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:PowerChair":{"0":{"name":"Power Chair","tr":"抛瓦椅","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:beartrap":{"0":{"name":"Bear Trap","tr":"捕兽夹","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseHafnium":{"0":{"oreDict":["plateDenseHafnium"],"name":"致密铪板","tr":"致密铪板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemMultipleSensorKit":{"0":{"name":"Counter Sensor Kit","tr":"计数器传感工具","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Liquid Sensor Kit","tr":"流体传感工具","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Generator Sensor Kit","tr":"发电机传感工具","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"IguanaTweaksTConstruct:clayBucketLava":{"0":{"oreDict":["bucketClayLava"],"name":"Lava Clay Bucket","tr":"粘土桶(岩浆)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:blockEnder_distillation":{"0":{"name":"Dew of the Void","tr":"深渊露水","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"adventurebackpack:backpackHose":{"0":{"name":"Hose: Useless / No Backpack","tr":"软管:无法使用 / 没有背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:item.Tier6Rocket":{"0":{"name":"Tier 6 Rocket","tr":"6阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 6 Rocket","tr":"6阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 6 Rocket","tr":"6阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 6 Rocket","tr":"6阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 6 Rocket","tr":"6阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"ProjRed|Transmission:projectred.transmission.wire":{"0":{"name":"Red Alloy Wire","tr":"红色合金丝","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["projredInsulatedWire"],"name":"White Insulated Wire","tr":"白色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["projredInsulatedWire"],"name":"Orange Insulated Wire","tr":"橙色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["projredInsulatedWire"],"name":"Magenta Insulated Wire","tr":"品红色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["projredInsulatedWire"],"name":"Light Blue Insulated Wire","tr":"淡蓝色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["projredInsulatedWire"],"name":"Yellow Insulated Wire","tr":"黄色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["projredInsulatedWire"],"name":"Lime Insulated Wire","tr":"黄绿色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["projredInsulatedWire"],"name":"Pink Insulated Wire","tr":"粉色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["projredInsulatedWire"],"name":"Grey Insulated Wire","tr":"灰色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["projredInsulatedWire"],"name":"Light Grey Insulated Wire","tr":"淡灰色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["projredInsulatedWire"],"name":"Cyan Insulated Wire","tr":"青色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["projredInsulatedWire"],"name":"Purple Insulated Wire","tr":"紫色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["projredInsulatedWire"],"name":"Blue Insulated Wire","tr":"蓝色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["projredInsulatedWire"],"name":"Brown Insulated Wire","tr":"棕色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["projredInsulatedWire"],"name":"Green Insulated Wire","tr":"绿色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["projredInsulatedWire"],"name":"Red Insulated Wire","tr":"红色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["projredInsulatedWire"],"name":"Black Insulated Wire","tr":"黑色绝缘线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["projredBundledCable"],"name":"Bundled Cable","tr":"集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["projredBundledCable"],"name":"White Bundled Cable","tr":"白色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["projredBundledCable"],"name":"Orange Bundled Cable","tr":"橙色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["projredBundledCable"],"name":"Magenta Bundled Cable","tr":"品红色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["projredBundledCable"],"name":"Light Blue Bundled Cable","tr":"淡蓝色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["projredBundledCable"],"name":"Yellow Bundled Cable","tr":"黄色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["projredBundledCable"],"name":"Lime Bundled Cable","tr":"黄绿色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["projredBundledCable"],"name":"Pink Bundled Cable","tr":"粉色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["projredBundledCable"],"name":"Grey Bundled Cable","tr":"灰色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["projredBundledCable"],"name":"Light Grey Bundled Cable","tr":"淡灰色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["projredBundledCable"],"name":"Cyan Bundled Cable","tr":"青色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["projredBundledCable"],"name":"Purple Bundled Cable","tr":"紫色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["projredBundledCable"],"name":"Blue Bundled Cable","tr":"蓝色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["projredBundledCable"],"name":"Brown Bundled Cable","tr":"棕色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["projredBundledCable"],"name":"Green Bundled Cable","tr":"绿色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["projredBundledCable"],"name":"Red Bundled Cable","tr":"红色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["projredBundledCable"],"name":"Black Bundled Cable","tr":"黑色集束线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Low Load Power Line","tr":"低负载功率线缆","tab":"红石计划:线缆","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateZeron100":{"0":{"oreDict":["plateZeron100"],"name":"塞龙-100板","tr":"塞龙-100板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipepowerdiamond":{"0":{"name":"Diamond-Covered Kinesis Pipe","tr":"钻石能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormPipeHuge":{"0":{"name":"Casting Form (Huge Pipe Mold)","tr":"铸件(巨型管道)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateArceusAlloy2B":{"0":{"oreDict":["plateArceusAlloy2B"],"name":"阿尔宙斯合金2B板","tr":"阿尔宙斯合金2B板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:fruitpunchItem":{"0":{"oreDict":["foodFruitpunch"],"name":"Fruit Punch","tr":"果汁潘趣酒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:swordMud":{"0":{"name":"Muddy Sword","tr":"泥巴剑","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"tectech:item.tm.enderfluidlinkcover":{"0":{"name":"Ender Fluid Link Cover","tr":"末影流体覆盖板","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTumbaga":{"0":{"oreDict":["blockTumbaga"],"name":"铜金合金块","tr":"铜金合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:dice":{"0":{"name":"Dice of Fate","tr":"命运骰子","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedMulch":{"0":{"name":"Crated Mulch","tr":"装箱的覆盖物","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:bookbiomes2":{"0":{"name":"Book of Biomes (Extended Edition)","tr":"生态之书 (扩展版)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LedoxDensePlate":{"0":{"oreDict":["plateDenseLedox"],"name":"Dense Ledox Plate","tr":"致密深铅板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:TripleMeatTreat":{"0":{"name":"Triple Meat Treat","tr":"三层肉饼","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinChunkloaderTierIV":{"0":{"name":"Chunkloader Coin Tier IV","tr":"区块加载器硬币Tier IV","tab":"GTNH: 物品","type":"Item","maxStackSize":4,"maxDurability":1}},"miscutils:BurntLiFBeF2ZrF4UF4":{"0":{"oreDict":["cellBurntLiFBeF2ZrF4UF4Salt"],"name":"枯竭铀锆复合氟化物熔盐单元","tr":"枯竭铀锆复合氟化物熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemThaumicDisassembler":{"0":{"name":"Thaumic Disassembler","tr":"奥术分解杵","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":501}},"ae2fc:fluid_storage64":{"0":{"name":"§b64k§r ME Fluid Storage Cell","tr":"§b64k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustBlackMetal":{"0":{"oreDict":["dustBlackMetal"],"name":"黑物质粉","tr":"黑物质粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:monocle":{"0":{"name":"Manaseer Monocle","tr":"窥魔之镜","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedgearGt":{"96":{"oreDict":["gearGtAdemicSteel"],"name":"硬钢齿轮","tr":"硬钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10112":{"oreDict":["gearGtShirabon"],"name":"调律源金齿轮","tr":"调律源金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10082":{"oreDict":["gearGtZircaloy-4"],"name":"锆锡合金-4齿轮","tr":"锆锡合金-4齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10083":{"oreDict":["gearGtZircaloy-2"],"name":"锆锡合金-2齿轮","tr":"锆锡合金-2齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10084":{"oreDict":["gearGtIncoloy-903"],"name":"耐热铬铁合金-903齿轮","tr":"耐热铬铁合金-903齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10085":{"oreDict":["gearGtAdamantiumAlloy"],"name":"精金合金齿轮","tr":"精金合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10022":{"oreDict":["gearGtAtomicSeparationCatalyst"],"name":"原子分离催化剂齿轮","tr":"原子分离催化剂齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10024":{"oreDict":["gearGtExtremelyUnstableNaquadah"],"name":"极不稳定硅岩齿轮","tr":"极不稳定硅岩齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10096":{"oreDict":["gearGtMAR-M200Steel"],"name":"MAR-M200特种钢齿轮","tr":"MAR-M200特种钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10097":{"oreDict":["gearGtMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢齿轮","tr":"MAR-Ce-M200特种钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10099":{"oreDict":["gearGtSignalium"],"name":"信素齿轮","tr":"信素齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10101":{"oreDict":["gearGtLumiium"],"name":"流明齿轮","tr":"流明齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10102":{"oreDict":["gearGtArtherium-Sn"],"name":"阿瑟锡齿轮","tr":"阿瑟锡齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10103":{"oreDict":["gearGtTanmolyiumBeta-C"],"name":"钛钼合金β-C齿轮","tr":"钛钼合金β-C齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"88":{"oreDict":["gearGtRhodium-PlatedPalladium"],"name":"镀铑钯齿轮","tr":"镀铑钯齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10104":{"oreDict":["gearGtDalisenite"],"name":"大力合金齿轮","tr":"大力合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"89":{"oreDict":["gearGtTiberium"],"name":"泰伯利亚齿轮","tr":"泰伯利亚齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10105":{"oreDict":["gearGtHikarium"],"name":"光素齿轮","tr":"光素齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"90":{"oreDict":["gearGtRuridit"],"name":"钌铱合金齿轮","tr":"钌铱合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10106":{"oreDict":["gearGtTairitsu"],"name":"对立合金齿轮","tr":"对立合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"92":{"oreDict":["gearGtHighDurabilityCompoundSteel"],"name":"高耐久性复合钢齿轮","tr":"高耐久性复合钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10109":{"oreDict":["gearGtPreciousMetalsAlloy"],"name":"稀有金属合金齿轮","tr":"稀有金属合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10110":{"oreDict":["gearGtEnrichedNaquadahAlloy"],"name":"富集硅岩合金齿轮","tr":"富集硅岩合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1},"10111":{"oreDict":["gearGtMetastableOganesson"],"name":"亚稳态鿫齿轮","tr":"亚稳态鿫齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":16,"maxDurability":1}},"Thaumcraft:ItemChestplateVoid":{"0":{"name":"Void Chestplate","tr":"虚空胸甲","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":161}},"dreamcraft:item.EMT":{"0":{"name":"Electro Magic Tool","tr":"电力魔法工具","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotAbyssalAlloy":{"0":{"oreDict":["ingotAbyssalAlloy"],"name":"深渊合金锭","tr":"深渊合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:mooncharm":{"0":{"name":"Moon Charm","tr":"月影之魅","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":50}},"harvestcraft:pamcinnamonSapling":{"0":{"name":"Cinnamon Sapling","tr":"肉桂树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemChristmasBoots":{"0":{"name":"Boots of Christmas Spirit","tr":"圣诞精灵之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"BuildCraft|Transport:item.buildcraftPipe.pipepowerstone":{"0":{"name":"Stone-Covered Kinesis Pipe","tr":"石头能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LedoxColdIngot":{"0":{"oreDict":["ingotColdLedox"],"name":"Cold Ledox Ingot","tr":"霜冻的深铅锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:fluidDistilledWater":{"0":{"name":"Distilled Water","tr":"蒸馏水","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemTinCan":{"0":{"name":"Tin Can","tr":"锡罐","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:honeyedSlice":{"0":{"name":"Honeyed Slice","tr":"蜂蜜面包","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightmetalRing":{"0":{"name":"Knightmetal Loop","tr":"骑士金属环","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:ricesoupItem":{"0":{"oreDict":["foodRicesoup"],"name":"Rice Soup","tr":"汤泡饭","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBread":{"0":{"name":"Casting Form (Bread Mold)","tr":"铸件(面包)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHastelloyC276":{"0":{"oreDict":["cellHastelloyC276"],"name":"哈斯特洛依合金-C276单元","tr":"哈斯特洛依合金-C276单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedLanthaniteCe":{"0":{"oreDict":["crushedCentrifugedLanthaniteCe"],"name":"Centrifuged Crushed Lanthanite (Ce) Ore","tr":"离心镧石(Ce)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellRunite":{"0":{"oreDict":["cellRunite"],"name":"虚恩单元","tr":"虚恩单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:helmetAmethyst":{"0":{"name":"Amethyst Helmet","tr":"紫水晶头盔","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":441}},"dreamcraft:item.MytrylHotIngot":{"0":{"name":"Hot Mytryl Ingot","tr":"炙热的深空秘银锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTeflon":{"0":{"oreDict":["nuggetTeflon"],"name":"特氟龙粒","tr":"特氟龙粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingSilverbell":{"0":{"name":"Crated Silverbell Sapling","tr":"装箱的银铃树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.frostbound":{"0":{"name":"Frost Bound Brick","tr":"霜冻砖","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fitted Frost Bound Stone","tr":"匀称霜冻方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Frost Bound Block","tr":"霜冻方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ornate Frost Bound Stone","tr":"雕琢霜冻方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Etched Frost Bound Stone","tr":"蚀刻霜冻方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Frost Bound Cobblestone","tr":"霜冻圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:stonebricksmooth":{"0":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Stone Bricks","tr":"石砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tgregworks.shardcast":{"0":{"name":"Shard Cast","tr":"碎片铸件","tab":"匠魂|GT材料","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:armor.goggles":{"0":{"name":"Trackman\u0027s Goggles","tr":"铁路工护目镜","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":221}},"harvestcraft:cherryyogurtItem":{"0":{"oreDict":["foodCherryyogurt"],"name":"Cherry Yogurt","tr":"樱桃酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:travelVest":{"0":{"name":"Traveller\u0027s Vest","tr":"旅行者马甲","tab":"匠魂|装备","type":"Item","maxStackSize":1,"maxDurability":1036}},"Botania:biomeStoneB3Slab":{"0":{"name":"Metamorphic Fungal Stone Brick Slab","tr":"变质菌丝石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:seedsmandrake":{"0":{"oreDict":["seedMandrake"," listAllseed"],"name":"Mandrake Seeds","tr":"曼德拉种子","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:persegrit":{"0":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Persegrit","tr":"紫沙砾","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_pillar":{"0":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Marble Pillar","tr":"大理石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPotassiumNitrate":{"0":{"oreDict":["dustSmallPotassiumNitrate"],"name":"小堆硝酸钾粉","tr":"小堆硝酸钾粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:canIce":{"0":{"name":"Ice Can","tr":"冰罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTellurium":{"0":{"oreDict":["blockTellurium"],"name":"碲块","tr":"碲块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.IronwoodBlock":{"0":{"name":"Block of Ironwood","tr":"Block of Ironwood","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedRedSand":{"0":{"name":"Crated Red Sand","tr":"装箱的红沙","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BW_PaperRotor":{"0":{"name":"Primitive Paper Rotor (Wind only)","tr":"原始纸转子(风车专用)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":30001}},"TConstruct:Clay Cast":{"3":{"name":"Bow Limb Clay Cast","tr":"弓臂粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:chamberTierTwo":{"0":{"name":"Chamber (Tier 2)","tr":"弹膛(二级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:sunDial":{"0":{"name":"Sun Dial","tr":"日晷","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseRhenium":{"0":{"oreDict":["plateDenseRhenium"],"name":"致密铼板","tr":"致密铼板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartFullGuard":{"1536":{"name":"精金 Full Guard","tr":"精金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Full Guard","tr":"神秘蓝金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Full Guard","tr":"琥珀 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Full Guard","tr":"纯镃 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Full Guard","tr":"谐镃 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Full Guard","tr":"聚氯乙烯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Full Guard","tr":"永恒 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Full Guard","tr":"磁物质 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Full Guard","tr":"赛特斯石英 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Full Guard","tr":"暗影秘银 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Full Guard","tr":"玄铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Full Guard","tr":"戴斯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Full Guard","tr":"铿铀 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Full Guard","tr":"通流琥珀金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Full Guard","tr":"末影粗胚 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Full Guard","tr":"末影(te) 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Full Guard","tr":"炽热的钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Full Guard","tr":"火石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Full Guard","tr":"力量 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Full Guard","tr":"石墨 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Full Guard","tr":"石墨烯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Full Guard","tr":"注魔金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Full Guard","tr":"风之魔晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Full Guard","tr":"火之魔晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Full Guard","tr":"地之魔晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Full Guard","tr":"水之魔晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Full Guard","tr":"混沌魔晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Full Guard","tr":"秩序魔晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Full Guard","tr":"玉 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Full Guard","tr":"碧玉 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Full Guard","tr":"陨铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Full Guard","tr":"陨钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Full Guard","tr":"硅岩 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Full Guard","tr":"硅岩合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Full Guard","tr":"富集硅岩 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Full Guard","tr":"超能硅岩 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Full Guard","tr":"下界石英 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Full Guard","tr":"下界之星 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Full Guard","tr":"三钛 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Full Guard","tr":"虚空 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Full Guard","tr":"胶木 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Full Guard","tr":"幽冥剧毒结晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Full Guard","tr":"强化 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Full Guard","tr":"铱锇合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Full Guard","tr":"阳光化合物 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Full Guard","tr":"魂金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Full Guard","tr":"蓝黄玉 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Full Guard","tr":"黄铜 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Full Guard","tr":"白铜 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Full Guard","tr":"深渊铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Full Guard","tr":"钻石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Full Guard","tr":"琥珀金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Full Guard","tr":"绿宝石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Full Guard","tr":"强化混合晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Full Guard","tr":"混合晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Full Guard","tr":"绿色蓝宝石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Full Guard","tr":"殷钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Full Guard","tr":"坎塔尔合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Full Guard","tr":"镁铝合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Full Guard","tr":"镍铬合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Full Guard","tr":"玄钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Full Guard","tr":"生铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Full Guard","tr":"聚乙烯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Full Guard","tr":"环氧树脂 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Full Guard","tr":"硅橡胶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Full Guard","tr":"聚己内酰胺 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Full Guard","tr":"聚四氟乙烯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Full Guard","tr":"蓝宝石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Full Guard","tr":"不锈钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Full Guard","tr":"坦桑石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Full Guard","tr":"锡铁合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Full Guard","tr":"黄玉 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Full Guard","tr":"哈氏合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Full Guard","tr":"锻铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Full Guard","tr":"铁木 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Full Guard","tr":"橄榄石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Full Guard","tr":"蛋白石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Full Guard","tr":"紫水晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Full Guard","tr":"暗影金属 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Full Guard","tr":"暗影铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Full Guard","tr":"暗影钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Full Guard","tr":"钢叶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Full Guard","tr":"骑士金属 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Full Guard","tr":"标准纯银 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Full Guard","tr":"玫瑰金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Full Guard","tr":"黑青铜 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Full Guard","tr":"铋青铜 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Full Guard","tr":"黑钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Full Guard","tr":"红钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Full Guard","tr":"蓝钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Full Guard","tr":"大马士革钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Full Guard","tr":"充能合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Full Guard","tr":"脉冲合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Full Guard","tr":"星辰银 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Full Guard","tr":"钴黄铜 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Full Guard","tr":"红石榴石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Full Guard","tr":"黄石榴石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Full Guard","tr":"温特姆 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Full Guard","tr":"黑花岗岩 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Full Guard","tr":"红花岗岩 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Full Guard","tr":"白石棉 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Full Guard","tr":"雄黄 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Full Guard","tr":"磁化铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Full Guard","tr":"磁化钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Full Guard","tr":"磁化钕 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Full Guard","tr":"碳化钨 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Full Guard","tr":"钒钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Full Guard","tr":"高速钢-G 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Full Guard","tr":"高速钢-E 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Full Guard","tr":"高速钢-S 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Full Guard","tr":"深铅 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Full Guard","tr":"量子 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Full Guard","tr":"深空秘银 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Full Guard","tr":"黑钚 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Full Guard","tr":"木卫四冰 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Full Guard","tr":"硬铝 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Full Guard","tr":"奥利哈钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Full Guard","tr":"三元金属 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Full Guard","tr":"聚苯硫醚 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Full Guard","tr":"聚苯乙烯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Full Guard","tr":"丁苯橡胶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Full Guard","tr":"镍锌铁氧体 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Full Guard","tr":"纤维强化的环氧树脂 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Full Guard","tr":"磁化钐 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Full Guard","tr":"无尽催化剂 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Full Guard","tr":"聚苯并咪唑 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Full Guard","tr":" 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Full Guard","tr":"钛铂钒合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Full Guard","tr":"时空 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Full Guard","tr":"大理石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Full Guard","tr":"神秘水晶 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Full Guard","tr":"末影钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Full Guard","tr":"复合粘土 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Full Guard","tr":"晶化合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Full Guard","tr":"旋律合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Full Guard","tr":"恒星合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Full Guard","tr":"晶化粉红史莱姆 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Full Guard","tr":"充能银 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Full Guard","tr":"生动合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Full Guard","tr":"灵宝 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Full Guard","tr":"超时空金属 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Full Guard","tr":"活石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Full Guard","tr":"盖亚之魂 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Full Guard","tr":"活木 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Full Guard","tr":"梦之木 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Full Guard","tr":"泡铋 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Full Guard","tr":"立方氧化锆 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Full Guard","tr":"氟铁电气石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Full Guard","tr":"铬铝电气石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Full Guard","tr":"钒镁电气石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Full Guard","tr":"铝电气石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Full Guard","tr":"红锆石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Full Guard","tr":"铁橄榄石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Full Guard","tr":"镁橄榄石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Full Guard","tr":"钙铁辉石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Full Guard","tr":"钍-232 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Full Guard","tr":"堇云石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Full Guard","tr":"磁共振石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Full Guard","tr":"锎 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Full Guard","tr":"BArTiMaEuSNeK 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Full Guard","tr":"钌 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Full Guard","tr":"铑 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Full Guard","tr":"镀铑钯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Full Guard","tr":"泰伯利亚 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Full Guard","tr":"钌铱合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Full Guard","tr":"氟石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Full Guard","tr":"高耐久性复合钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Full Guard","tr":"硬钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Full Guard","tr":"合成玉 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Full Guard","tr":"原子分离催化剂 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Full Guard","tr":"极不稳定硅岩 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Full Guard","tr":"锌钍合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Full Guard","tr":"锆锡合金-4 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Full Guard","tr":"锆锡合金-2 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Full Guard","tr":"耐热铬铁合金-903 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Full Guard","tr":"精金合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Full Guard","tr":"MAR-M200特种钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Full Guard","tr":"MAR-Ce-M200特种钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Full Guard","tr":"氯化锂 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Full Guard","tr":"信素 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Full Guard","tr":"流明 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Full Guard","tr":"阿瑟锡 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Full Guard","tr":"钛钼合金β-C 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Full Guard","tr":"大力合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Full Guard","tr":"光素 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Full Guard","tr":"对立合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Full Guard","tr":"稀有金属合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Full Guard","tr":"富集硅岩合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Full Guard","tr":"亚稳态鿫 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Full Guard","tr":"调律源金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Full Guard","tr":"魔钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Full Guard","tr":"泰拉钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Full Guard","tr":"源质钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Full Guard","tr":"磁流体约束恒星物质 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Full Guard","tr":"白矮星物质 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Full Guard","tr":"黑矮星物质 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Full Guard","tr":"宇宙素 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Full Guard","tr":"铝 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Full Guard","tr":"铍 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Full Guard","tr":"铋 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Full Guard","tr":"碳 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Full Guard","tr":"铬 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Full Guard","tr":"金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Full Guard","tr":"铱 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Full Guard","tr":"铅 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Full Guard","tr":"锰 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Full Guard","tr":"钼 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Full Guard","tr":"钕 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Full Guard","tr":"中子 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Full Guard","tr":"镍 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Full Guard","tr":"锇 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Full Guard","tr":"钯 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Full Guard","tr":"铂 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Full Guard","tr":"钚-239 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Full Guard","tr":"钚-241 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Full Guard","tr":"银 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Full Guard","tr":"钍 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Full Guard","tr":"钛 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Full Guard","tr":"钨 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Full Guard","tr":"铀-238 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Full Guard","tr":"铀-235 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Full Guard","tr":"红宝石 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Full Guard","tr":"红石合金 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Full Guard","tr":"终末 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Full Guard","tr":"导电铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Full Guard","tr":"磁钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Full Guard","tr":"钨钢 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Full Guard","tr":"烈焰 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Full Guard","tr":"脉冲铁 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Full Guard","tr":"龙 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Full Guard","tr":"觉醒龙 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Full Guard","tr":"褐铜 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Full Guard","tr":"山铜 大型护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPeach":{"0":{"name":"Peach","tr":"桃子","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:TaintSapling":{"0":{"name":"Tainted Sapling","tr":"腐化树苗","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:pyrofluid":{"0":{"name":"Pyrofluid","tr":"魔力熔岩","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcoconutSapling":{"0":{"name":"Coconut Sapling","tr":"椰子树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_white":{"0":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FluidPyrotheum":{"0":{"name":"Blazing Pyrotheum","tr":"烈焰之炽焱","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:bucketIce":{"0":{"name":"Crushed Ice Bucket","tr":"碎冰桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:oreSamarskiteYb":{"0":{"oreDict":["oreSamarskiteYb"],"name":"Samarskite (Yb) Ore","tr":"铌钇矿(Yb)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockLightDetector":{"0":{"name":"Light Detecting Fixture","tr":"光亮探测器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:flower":{"0":{"name":"Flower","tr":"花","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:trowelDiamond":{"0":{"name":"Diamond Trowel","tr":"钻石泥铲","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":1562}},"harvestcraft:pumpkinsoupItem":{"0":{"oreDict":["foodPumpkinsoup"],"name":"Pumpkin Soup","tr":"南瓜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicBow":{"0":{"name":"Draconic Bow","tr":"龙之弓","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"opensecurity:opensecurity.DataBlock":{"0":{"name":"Data Block","tr":"数据块","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.alucrate.stairs":{"0":{"name":"Aluminum Stairs","tr":"铝制楼梯","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BioCarbonPlate":{"0":{"name":"Bio Carbon Plate","tr":"有机碳板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:packedice":{"1":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Packed Ice","tr":"浮冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA8SlabFull":{"0":{"name":"Metamorphic Forest Cobblestone Slab","tr":"变质森林圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedAgarditeNd":{"0":{"oreDict":["crushedPurifiedAgarditeNd"],"name":"Purified Crushed Agardite (Nd) Ore","tr":"洗净的菱铁矿(Nd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorBronzeLegs":{"0":{"name":"Bronze Leggings","tr":"青铜护腿","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":226}},"GalaxySpace:item.BarnardaCStrawberry":{"0":{"name":"Unknown Fruits","tr":"未知的水果","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateAdvancedNitinol":{"0":{"oreDict":["plateAdvancedNitinol"],"name":"高级镍钛诺板","tr":"高级镍钛诺板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstshelf":{"0":{"name":"Acacia Shelf","tr":"金合欢架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Shelf","tr":"巴尔杉架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Shelf","tr":"猴面包树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Shelf","tr":"樱桃树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Shelf","tr":"栗树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Shelf","tr":"柑橘树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Shelf","tr":"乌檀树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Shelf","tr":"樟树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Shelf","tr":"木棉架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Shelf","tr":"落叶松架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Shelf","tr":"菩提树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Shelf","tr":"白皮树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Shelf","tr":"桃花心木架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Shelf","tr":"枫树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Shelf","tr":"棕榈树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Shelf","tr":"木瓜树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:potroastItem":{"0":{"oreDict":["foodPotroast"],"name":"Pot Roast","tr":"红烧牛肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockRhodium":{"0":{"oreDict":["blockRhodium"],"name":"铑块","tr":"铑块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedLanthaniteCe":{"0":{"oreDict":["crushedPurifiedLanthaniteCe"],"name":"Purified Crushed Lanthanite (Ce) Ore","tr":"洗净的镧石(Ce)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:shovelMud":{"0":{"name":"Muddy Shovel","tr":"泥巴铲","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:itemRodAstralTitanium":{"0":{"oreDict":["stickAstralTitanium"],"name":"星体钛杆","tr":"星体钛杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateRhodium":{"0":{"oreDict":["plateRhodium"],"name":"铑板","tr":"铑板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySamarskiteY":{"0":{"oreDict":["dustTinySamarskiteY"],"name":"小撮铌钇矿(Y)粉","tr":"小撮铌钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zaneBlock":{"0":{"name":"Zane ⓪","tr":"Zane ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zane ①","tr":"Zane ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zane ②","tr":"Zane ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zane ③","tr":"Zane ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zane ④","tr":"Zane ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zane ⑤","tr":"Zane ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zane ⑥","tr":"Zane ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zane ⑦","tr":"Zane ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zane ⑧","tr":"Zane ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zane ⑨","tr":"Zane ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zane ⑩","tr":"Zane ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zane ⑪","tr":"Zane ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zane ⑫","tr":"Zane ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zane ⑬","tr":"Zane ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zane ⑭","tr":"Zane ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zane ⑮","tr":"Zane ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Singularity":{"0":{"name":"Iron Singularity","tr":"铁奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Golden Singularity","tr":"金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Lapis Singularity","tr":"青金石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Redstone Singularity","tr":"红石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Nether Quartz Singularity","tr":"下界石英奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Copper Singularity","tr":"铜奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Tin Singularity","tr":"锡奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Leaden Singularity","tr":"铅奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Silver Singularity","tr":"银奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Nickel Singularity","tr":"镍奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Enderium Singularity","tr":"末影锭奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Clay Singularity","tr":"粘土奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsInvSysConnector":{"0":{"name":"Logistics Inventory System Connector","tr":"物流网络连接器","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHoeThaumium":{"0":{"name":"Thaumium Hoe","tr":"神秘锄","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"dreamcraft:item.MysteriousCrystalLens":{"0":{"name":"Quite Certain Crystal Lens","tr":"神秘水晶透镜","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BinnieCore:containerCapsule":{"128":{"name":"Sap Capsule","tr":"树液胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"64":{"name":"Acid Capsule","tr":"酸液胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"129":{"name":"Resin Capsule","tr":"树脂胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"65":{"name":"Poison Capsule","tr":"毒液胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"130":{"name":"Latex Capsule","tr":"乳胶胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"66":{"name":"Nitrogen Capsule","tr":"液氮胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"131":{"name":"Turpentine Capsule","tr":"松节油胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1}},"dreamcraft:item.ElectrotineWire":{"0":{"name":"Electrotine Wire","tr":"蓝石线缆","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:timtamItem":{"0":{"oreDict":["foodTimtam"],"name":"Tim Tam","tr":"巧克力威化","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemChestplateFortress":{"0":{"name":"Thaumium Fortress Cuirass","tr":"神秘要塞胸铠","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":641}},"TwilightForest:tile.TFTrapDoorDarkwood":{"0":{"name":"Darkwood Trapdoor","tr":"黑暗树活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTriniumTitaniumAlloy":{"0":{"oreDict":["nuggetTriniumTitaniumAlloy"],"name":"三元钛合金粒","tr":"三元钛合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:WandCap":{"0":{"name":"Iron Cap","tr":"铁杖端","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Gold Cap","tr":"金杖端","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Charged Thaumium Cap","tr":"充能神秘杖端","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Inert Thaumium Cap","tr":"惰性神秘杖端","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Charged Void metal Cap","tr":"充能虚空金属杖端","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Inert Void metal Cap","tr":"惰性虚空金属杖端","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodInconel690":{"0":{"oreDict":["stickInconel690"],"name":"镍铬基合金-690杆","tr":"镍铬基合金-690杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightlySword":{"0":{"name":"Knightly Sword","tr":"骑士剑","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"malisisdoors:curtain_yellow":{"0":{"name":"Yellow Curtain","tr":"黄色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:limejellyItem":{"0":{"oreDict":["foodLimejelly"],"name":"Lime Jelly","tr":"酸橙果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.iron":{"0":{"name":"Molten Iron","tr":"熔融铁","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:FMResource":{"0":{"oreDict":["nuggetEmerald"],"name":"Emerald Fragment","tr":"绿宝石碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dyeBlack"," dye"],"name":"Shadow Ink","tr":"暗影墨水","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["nuggetManasteel"],"name":"Manasteel Nugget","tr":"魔钢粒","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Tainted Blood Shard","tr":"腐血碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["nuggetElvenElementium"],"name":"Elementium Nugget","tr":"元素钢粒","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:slime.sapling":{"0":{"name":"Slimy Sapling","tr":"史莱姆树苗","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCerite":{"0":{"oreDict":["crushedCerite"],"name":"Crushed Cerite Ore","tr":"粉碎的铈硅石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:baubleBox":{"0":{"name":"Bauble Case","tr":"饰品盒子","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinBloodIII":{"0":{"name":"Coin \"The Vampire 1000\"","tr":"吸血鬼币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:RaisinJuice":{"0":{"oreDict":["cellRaisinJuice"],"name":"葡萄汁单元","tr":"葡萄汁单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:orangejellysandwichItem":{"0":{"oreDict":["foodOrangejellysandwich"],"name":"Orange Jelly Sandwich","tr":"橙子果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.essentia.provider":{"0":{"name":"Essentia Provider","tr":"源质供应器","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.QuartzSlabBlock":{"0":{"name":"Certus Quartz Slabs","tr":"赛特斯石英台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:conveyor":{"0":{"name":"Conveyor Belt","tr":"传送带","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLithiumHydroxide":{"0":{"oreDict":["dustTinyLithiumHydroxide"],"name":"小撮氢氧化锂粉","tr":"小撮氢氧化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:machine.delta":{"0":{"name":"Electric Shunting Wire","tr":"电力分路线缆","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:circle":{"0":{"name":"Heart Glyph","tr":"心形","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:wormwood":{"0":{"name":"Wormwood","tr":"苦艾","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongMaragingSteel300":{"0":{"oreDict":["stickLongMaragingSteel300"],"name":"长马氏体时效钢300杆","tr":"长马氏体时效钢300杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltArceusAlloy2B":{"0":{"oreDict":["boltArceusAlloy2B"],"name":"阿尔宙斯合金2B螺栓","tr":"阿尔宙斯合金2B螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltInconel792":{"0":{"oreDict":["boltInconel792"],"name":"镍铬基合金-792螺栓","tr":"镍铬基合金-792螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pomegranateyogurtItem":{"0":{"oreDict":["foodPomegranateyogurt"],"name":"Pomegranate Yogurt","tr":"石榴酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:sleepingBag":{"0":{"name":"Sleeping Bag","tr":"睡袋","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":241}},"thaumicinsurgence:item.ItemSanitySoapAlpha":{"0":{"name":"Trosma Sláintíochta Soap","tr":"祛邪肥皂α","tab":"神秘革命","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:pickaxeHead":{"0":{"name":"Wooden Pickaxe Head","tr":"木镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Pickaxe Head","tr":"石镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Pickaxe Head","tr":"铁镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Pickaxe Head","tr":"燧石镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Pickaxe Head","tr":"仙人掌镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Pickaxe Head","tr":"骨头镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Pickaxe Head","tr":"黑曜石镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Pickaxe Head","tr":"地狱岩镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Pickaxe Head","tr":"史莱姆镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Pickaxe Head","tr":"纸镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Pickaxe Head","tr":"钴镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Pickaxe Head","tr":"阿迪特镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Pickaxe Head","tr":"玛玉灵镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Pickaxe Head","tr":"铜镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Pickaxe Head","tr":"青铜镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Pickaxe Head","tr":"耐酸铝镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Pickaxe Head","tr":"钢镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Pickaxe Head","tr":"史莱姆镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Pickaxe Head","tr":"生铁镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Pickaxe Head","tr":"不稳定感应镐头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:soul_nullifier":{"0":{"name":"Soul Nullifier","tr":"减益灵魂之石","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:marble":{"0":{"oreDict":["marble"," blockMarble"],"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Marble","tr":"大理石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:storage":{"0":{"oreDict":["blockManasteel"],"name":"Block of Manasteel","tr":"魔钢块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockTerrasteel"],"name":"Block of Terrasteel","tr":"泰拉钢块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockElvenElementium"],"name":"Block of Elementium","tr":"源质钢块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockManaDiamond"],"name":"Block of Mana Diamond","tr":"魔力钻石块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockBotaniaDragonstone"],"name":"Block of Dragonstone","tr":"龙石块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFShield":{"0":{"name":"Stronghold Shield","tr":"要塞屏障","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bakedhamItem":{"0":{"oreDict":["foodBakedham"],"name":"Baked Ham","tr":"烤火腿","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorBronzeBoots":{"0":{"name":"Bronze Boots","tr":"青铜靴子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":196}},"Natura:GrassBlock":{"0":{"name":"Topiary Grass","tr":"修饰草地","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Bluegrass","tr":"蓝色草地","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Autumnal Grass","tr":"秋光草地","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellFluorinatedUraniumHexafluorideFUF6":{"0":{"oreDict":["cellFluorinatedUraniumHexafluorideFUF6"],"name":"氟化六氟化铀(F-UF6)单元","tr":"氟化六氟化铀(F-UF6)单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellIncoloyDS":{"0":{"oreDict":["cellIncoloyDS"],"name":"耐热铬铁合金-DS单元","tr":"耐热铬铁合金-DS单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.03.name":{"1":{"name":"§9Charge Pack [HV]§7","tr":"§9充电工具包[HV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [HV]§7","tr":"§9充电工具包[HV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemDustLepersonnite":{"0":{"oreDict":["dustLepersonnite"],"name":"绿泥石粉","tr":"绿泥石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:mirror":{"0":{"name":"Mirror","tr":"魔镜","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"TGregworks:tGregToolPartToughRod":{"1536":{"name":"精金 Tough Tool Rod","tr":"精金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Tough Tool Rod","tr":"神秘蓝金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Tough Tool Rod","tr":"琥珀 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Tough Tool Rod","tr":"纯镃 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Tough Tool Rod","tr":"谐镃 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Tough Tool Rod","tr":"聚氯乙烯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Tough Tool Rod","tr":"永恒 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Tough Tool Rod","tr":"磁物质 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Tough Tool Rod","tr":"赛特斯石英 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Tough Tool Rod","tr":"暗影秘银 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Tough Tool Rod","tr":"玄铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Tough Tool Rod","tr":"戴斯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Tough Tool Rod","tr":"铿铀 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Tough Tool Rod","tr":"通流琥珀金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Tough Tool Rod","tr":"末影粗胚 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Tough Tool Rod","tr":"末影(te) 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Tough Tool Rod","tr":"炽热的钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Tough Tool Rod","tr":"火石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Tough Tool Rod","tr":"力量 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Tough Tool Rod","tr":"石墨 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Tough Tool Rod","tr":"石墨烯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Tough Tool Rod","tr":"注魔金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Tough Tool Rod","tr":"风之魔晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Tough Tool Rod","tr":"火之魔晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Tough Tool Rod","tr":"地之魔晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Tough Tool Rod","tr":"水之魔晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Tough Tool Rod","tr":"混沌魔晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Tough Tool Rod","tr":"秩序魔晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Tough Tool Rod","tr":"玉 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Tough Tool Rod","tr":"碧玉 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Tough Tool Rod","tr":"陨铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Tough Tool Rod","tr":"陨钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Tough Tool Rod","tr":"硅岩 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Tough Tool Rod","tr":"硅岩合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Tough Tool Rod","tr":"富集硅岩 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Tough Tool Rod","tr":"超能硅岩 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Tough Tool Rod","tr":"下界石英 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Tough Tool Rod","tr":"下界之星 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Tough Tool Rod","tr":"三钛 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Tough Tool Rod","tr":"虚空 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Tough Tool Rod","tr":"胶木 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Tough Tool Rod","tr":"幽冥剧毒结晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Tough Tool Rod","tr":"强化 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Tough Tool Rod","tr":"铱锇合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Tough Tool Rod","tr":"阳光化合物 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Tough Tool Rod","tr":"魂金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Tough Tool Rod","tr":"蓝黄玉 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Tough Tool Rod","tr":"黄铜 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Tough Tool Rod","tr":"白铜 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Tough Tool Rod","tr":"深渊铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Tough Tool Rod","tr":"钻石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Tough Tool Rod","tr":"琥珀金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Tough Tool Rod","tr":"绿宝石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Tough Tool Rod","tr":"强化混合晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Tough Tool Rod","tr":"混合晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Tough Tool Rod","tr":"绿色蓝宝石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Tough Tool Rod","tr":"殷钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Tough Tool Rod","tr":"坎塔尔合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Tough Tool Rod","tr":"镁铝合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Tough Tool Rod","tr":"镍铬合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Tough Tool Rod","tr":"玄钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Tough Tool Rod","tr":"生铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Tough Tool Rod","tr":"聚乙烯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Tough Tool Rod","tr":"环氧树脂 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Tough Tool Rod","tr":"硅橡胶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Tough Tool Rod","tr":"聚己内酰胺 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Tough Tool Rod","tr":"聚四氟乙烯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Tough Tool Rod","tr":"蓝宝石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Tough Tool Rod","tr":"不锈钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Tough Tool Rod","tr":"坦桑石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Tough Tool Rod","tr":"锡铁合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Tough Tool Rod","tr":"黄玉 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Tough Tool Rod","tr":"哈氏合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Tough Tool Rod","tr":"锻铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Tough Tool Rod","tr":"铁木 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Tough Tool Rod","tr":"橄榄石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Tough Tool Rod","tr":"蛋白石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Tough Tool Rod","tr":"紫水晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Tough Tool Rod","tr":"暗影金属 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Tough Tool Rod","tr":"暗影铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Tough Tool Rod","tr":"暗影钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Tough Tool Rod","tr":"钢叶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Tough Tool Rod","tr":"骑士金属 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Tough Tool Rod","tr":"标准纯银 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Tough Tool Rod","tr":"玫瑰金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Tough Tool Rod","tr":"黑青铜 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Tough Tool Rod","tr":"铋青铜 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Tough Tool Rod","tr":"黑钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Tough Tool Rod","tr":"红钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Tough Tool Rod","tr":"蓝钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Tough Tool Rod","tr":"大马士革钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Tough Tool Rod","tr":"充能合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Tough Tool Rod","tr":"脉冲合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Tough Tool Rod","tr":"星辰银 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Tough Tool Rod","tr":"钴黄铜 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Tough Tool Rod","tr":"红石榴石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Tough Tool Rod","tr":"黄石榴石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Tough Tool Rod","tr":"温特姆 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Tough Tool Rod","tr":"黑花岗岩 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Tough Tool Rod","tr":"红花岗岩 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Tough Tool Rod","tr":"白石棉 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Tough Tool Rod","tr":"雄黄 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Tough Tool Rod","tr":"磁化铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Tough Tool Rod","tr":"磁化钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Tough Tool Rod","tr":"磁化钕 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Tough Tool Rod","tr":"碳化钨 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Tough Tool Rod","tr":"钒钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Tough Tool Rod","tr":"高速钢-G 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Tough Tool Rod","tr":"高速钢-E 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Tough Tool Rod","tr":"高速钢-S 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Tough Tool Rod","tr":"深铅 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Tough Tool Rod","tr":"量子 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Tough Tool Rod","tr":"深空秘银 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Tough Tool Rod","tr":"黑钚 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Tough Tool Rod","tr":"木卫四冰 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Tough Tool Rod","tr":"硬铝 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Tough Tool Rod","tr":"奥利哈钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Tough Tool Rod","tr":"三元金属 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Tough Tool Rod","tr":"聚苯硫醚 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Tough Tool Rod","tr":"聚苯乙烯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Tough Tool Rod","tr":"丁苯橡胶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Tough Tool Rod","tr":"镍锌铁氧体 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Tough Tool Rod","tr":"纤维强化的环氧树脂 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Tough Tool Rod","tr":"磁化钐 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Tough Tool Rod","tr":"无尽催化剂 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Tough Tool Rod","tr":"聚苯并咪唑 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Tough Tool Rod","tr":" 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Tough Tool Rod","tr":"钛铂钒合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Tough Tool Rod","tr":"时空 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Tough Tool Rod","tr":"大理石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Tough Tool Rod","tr":"神秘水晶 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Tough Tool Rod","tr":"末影钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Tough Tool Rod","tr":"复合粘土 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Tough Tool Rod","tr":"晶化合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Tough Tool Rod","tr":"旋律合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Tough Tool Rod","tr":"恒星合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Tough Tool Rod","tr":"晶化粉红史莱姆 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Tough Tool Rod","tr":"充能银 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Tough Tool Rod","tr":"生动合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Tough Tool Rod","tr":"灵宝 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Tough Tool Rod","tr":"超时空金属 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Tough Tool Rod","tr":"活石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Tough Tool Rod","tr":"盖亚之魂 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Tough Tool Rod","tr":"活木 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Tough Tool Rod","tr":"梦之木 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Tough Tool Rod","tr":"泡铋 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Tough Tool Rod","tr":"立方氧化锆 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Tough Tool Rod","tr":"氟铁电气石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Tough Tool Rod","tr":"铬铝电气石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Tough Tool Rod","tr":"钒镁电气石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Tough Tool Rod","tr":"铝电气石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Tough Tool Rod","tr":"红锆石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Tough Tool Rod","tr":"铁橄榄石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Tough Tool Rod","tr":"镁橄榄石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Tough Tool Rod","tr":"钙铁辉石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Tough Tool Rod","tr":"钍-232 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Tough Tool Rod","tr":"堇云石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Tough Tool Rod","tr":"磁共振石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Tough Tool Rod","tr":"锎 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Tough Tool Rod","tr":"BArTiMaEuSNeK 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Tough Tool Rod","tr":"钌 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Tough Tool Rod","tr":"铑 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Tough Tool Rod","tr":"镀铑钯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Tough Tool Rod","tr":"泰伯利亚 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Tough Tool Rod","tr":"钌铱合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Tough Tool Rod","tr":"氟石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Tough Tool Rod","tr":"高耐久性复合钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Tough Tool Rod","tr":"硬钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Tough Tool Rod","tr":"合成玉 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Tough Tool Rod","tr":"原子分离催化剂 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Tough Tool Rod","tr":"极不稳定硅岩 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Tough Tool Rod","tr":"锌钍合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Tough Tool Rod","tr":"锆锡合金-4 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Tough Tool Rod","tr":"锆锡合金-2 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Tough Tool Rod","tr":"耐热铬铁合金-903 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Tough Tool Rod","tr":"精金合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Tough Tool Rod","tr":"MAR-M200特种钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Tough Tool Rod","tr":"MAR-Ce-M200特种钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Tough Tool Rod","tr":"氯化锂 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Tough Tool Rod","tr":"信素 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Tough Tool Rod","tr":"流明 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Tough Tool Rod","tr":"阿瑟锡 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Tough Tool Rod","tr":"钛钼合金β-C 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Tough Tool Rod","tr":"大力合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Tough Tool Rod","tr":"光素 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Tough Tool Rod","tr":"对立合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Tough Tool Rod","tr":"稀有金属合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Tough Tool Rod","tr":"富集硅岩合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Tough Tool Rod","tr":"亚稳态鿫 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Tough Tool Rod","tr":"调律源金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Tough Tool Rod","tr":"魔钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Tough Tool Rod","tr":"泰拉钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Tough Tool Rod","tr":"源质钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Tough Tool Rod","tr":"磁流体约束恒星物质 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Tough Tool Rod","tr":"白矮星物质 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Tough Tool Rod","tr":"黑矮星物质 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Tough Tool Rod","tr":"宇宙素 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Tough Tool Rod","tr":"铝 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Tough Tool Rod","tr":"铍 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Tough Tool Rod","tr":"铋 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Tough Tool Rod","tr":"碳 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Tough Tool Rod","tr":"铬 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Tough Tool Rod","tr":"金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Tough Tool Rod","tr":"铱 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Tough Tool Rod","tr":"铅 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Tough Tool Rod","tr":"锰 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Tough Tool Rod","tr":"钼 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Tough Tool Rod","tr":"钕 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Tough Tool Rod","tr":"中子 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Tough Tool Rod","tr":"镍 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Tough Tool Rod","tr":"锇 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Tough Tool Rod","tr":"钯 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Tough Tool Rod","tr":"铂 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Tough Tool Rod","tr":"钚-239 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Tough Tool Rod","tr":"钚-241 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Tough Tool Rod","tr":"银 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Tough Tool Rod","tr":"钍 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Tough Tool Rod","tr":"钛 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Tough Tool Rod","tr":"钨 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Tough Tool Rod","tr":"铀-238 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Tough Tool Rod","tr":"铀-235 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Tough Tool Rod","tr":"红宝石 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Tough Tool Rod","tr":"红石合金 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Tough Tool Rod","tr":"终末 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Tough Tool Rod","tr":"导电铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Tough Tool Rod","tr":"磁钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Tough Tool Rod","tr":"钨钢 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Tough Tool Rod","tr":"烈焰 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Tough Tool Rod","tr":"脉冲铁 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Tough Tool Rod","tr":"龙 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Tough Tool Rod","tr":"觉醒龙 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Tough Tool Rod","tr":"褐铜 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Tough Tool Rod","tr":"山铜 坚韧手柄","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:turnipseedItem":{"0":{"oreDict":["listAllseed"," seedTurnip"],"name":"Turnip Seed","tr":"大头菜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.invar":{"0":{"name":"Molten Invar","tr":"熔融殷钢","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB1SlabFull":{"0":{"name":"Metamorphic Plains Stone Brick Slab","tr":"变质平原石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:rail.wood":{"0":{"name":"Wooden Rail","tr":"木轨道","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.yetiHelm":{"0":{"name":"Yeti Horned Helm","tr":"雪人角盔","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":221}},"ThaumicHorizons:vat":{"0":{"name":"Curative Vat","tr":"治愈之缸","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLafiumCompound":{"0":{"oreDict":["dustSmallLafiumCompound"],"name":"小堆路菲恩化合物粉","tr":"小堆路菲恩化合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorRuthenium":{"0":{"oreDict":["rotorRuthenium"],"name":"钌转子","tr":"钌转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.sensorcard":{"0":{"name":"传感器卡片[GT]","tr":"传感器卡片[GT]","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1}},"IronChest:crystalDarkSteelUpgrade":{"0":{"name":"Crystal to Dark Steel Chest Upgrade","tr":"Crystal to Dark Steel Chest Upgrade","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:candelabra":{"0":{"name":"Candelabra","tr":"枝状大烛台","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:futureglasses":{"0":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Black Future Glass","tr":"黑色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Red Future Glass","tr":"红色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Green Future Glass","tr":"绿色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Brown Future Glass","tr":"棕色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Blue Future Glass","tr":"蓝色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Purple Future Glass","tr":"紫色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Cyan Future Glass","tr":"青色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Light Gray Future Glass","tr":"淡灰色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Gray Future Glass","tr":"灰色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Pink Future Glass","tr":"粉色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Lime Future Glass","tr":"亮绿色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Yellow Future Glass","tr":"黄色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Light Blue Future Glass","tr":"淡蓝色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Magenta Future Glass","tr":"品红色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Orange Future Glass","tr":"橙色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"," blockGlass"],"name":"White Future Glass","tr":"白色未来玻璃","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLaurenium":{"0":{"oreDict":["dustSmallLaurenium"],"name":"小堆劳伦姆合金粉","tr":"小堆劳伦姆合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:cobblestone":{"1":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Cobblestone","tr":"圆石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:frosteddonutItem":{"0":{"oreDict":["foodFrosteddonut"],"name":"Frosted Donut","tr":"糖霜甜甜圈","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:bloodMoonSensor":{"0":{"name":"Bloodmoon Sensor","tr":"血月传感器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:button.bloodwood":{"0":{"oreDict":["buttonWood"],"name":"Blood Button","tr":"血树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:slimalyzer":{"0":{"name":"Slimalyzer","tr":"史莱姆区块探测器","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:mud":{"0":{"name":"Mud","tr":"泥巴","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Quicksand","tr":"流沙","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidUranium4":{"0":{"name":"Quad Fuel Rod (Excited Uranium)","tr":"四联燃料棒(激发铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"malisisdoors:factory_door":{"0":{"name":"Factory Door","tr":"工厂门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallHG1223":{"0":{"oreDict":["dustSmallHG1223"],"name":"小堆HG-1223粉","tr":"小堆HG-1223粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidUranium2":{"0":{"name":"Dual Fuel Rod (Excited Uranium)","tr":"二联燃料棒(激发铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"GalaxySpace:item.Icon":{"0":{"name":"item.Icon.name","tr":"item.Icon.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:MutagenTank":{"0":{"name":"Mutagen Tank","tr":"诱变剂储罐","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotWatertightSteel":{"0":{"oreDict":["ingotHotWatertightSteel"],"name":"热防水钢锭","tr":"热防水钢锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDensePotin":{"0":{"oreDict":["plateDensePotin"],"name":"致密粗青铜合金板","tr":"致密粗青铜合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:mechanistCapUncharged":{"0":{"name":"Inert Mechanist\u0027s Cap","tr":"惰性机械杖端","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolChainsaw":{"1":{"name":"Chainsaw","tr":"链锯","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Chainsaw","tr":"链锯","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"Thaumcraft:blockTable":{"0":{"name":"Table","tr":"台桌","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Deconstruction Table","tr":"解构工作台","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Arcane Worktable","tr":"奥术工作台","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:upgradeModifier":{"0":{"name":"Upgrade Modifier","tr":"升级调整器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTungstenTitaniumCarbide":{"0":{"oreDict":["nuggetTungstenTitaniumCarbide"],"name":"碳化钨钛合金粒","tr":"碳化钨钛合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_storage4096":{"0":{"name":"§c4096k§r ME Fluid Storage Cell","tr":"§c4096k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"DraconicEvolution:grinder":{"3":{"name":"Mob Grinder","tr":"怪物粉碎机","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedKashinite":{"0":{"oreDict":["crushedKashinite"],"name":"Crushed Kashinite Ore","tr":"粉碎硫铑铱矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:craftingHalo":{"0":{"name":"Assembly Halo","tr":"合成环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:expanderPowerTierOne":{"0":{"name":"Base Power Expander (Tier 1)","tr":"基座能量扩容(一级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:seatBack5":{"0":{"name":"Bloodwood Seat Back","tr":"血树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Seat Back","tr":"黑暗树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Seat Back","tr":"桉树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Seat Back","tr":"熔融树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Seat Back","tr":"幽魂树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Seat Back","tr":"车桑子树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Seat Back","tr":"紫檀树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Seat Back","tr":"银铃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Seat Back","tr":"樱花树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Seat Back","tr":"核桃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:safetyMatch":{"0":{"name":"Box of Safety Matches","tr":"安全火柴盒","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":21},"1000":{"name":"Safety Match","tr":"安全火柴","tab":"龙之研究工具和武器","type":"Item","maxStackSize":16,"maxDurability":1001}},"miscutils:blockFrameGtTungstenTitaniumCarbide":{"0":{"oreDict":["frameGtTungstenTitaniumCarbide"],"name":"碳化钨钛合金框架","tr":"碳化钨钛合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:seatBack4":{"0":{"name":"Bloodwood Seat Back","tr":"血树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Seat Back","tr":"黑暗树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Seat Back","tr":"桉树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Seat Back","tr":"熔融树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Seat Back","tr":"幽魂树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Seat Back","tr":"车桑子树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Seat Back","tr":"枫树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Seat Back","tr":"紫檀树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Seat Back","tr":"银铃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Seat Back","tr":"樱花树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Seat Back","tr":"核桃树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆:Natura版","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_diamond_active":{"0":{"name":"Blood Infused Diamond (Active)","tr":"注血钻石(激活)","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemScrewTriniumNaquadahCarbonite":{"0":{"oreDict":["screwTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金螺丝","tr":"掺碳三元硅岩合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusFire":{"0":{"name":"Wand Focus: Fire","tr":"法杖核心:火焰","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"TaintedMagic:ItemShadowmetalAxe":{"0":{"name":"Shadowmetal Hatchet","tr":"暗影之斧","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":2201}},"miscutils:itemRodLongMaragingSteel350":{"0":{"oreDict":["stickLongMaragingSteel350"],"name":"长马氏体时效钢350杆","tr":"长马氏体时效钢350杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:carpet_block":{"0":{"oreDict":["blockCarpet"],"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Carpet","tr":"地毯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"adventurebackpack:pistonBoots":{"0":{"name":"Piston Boots","tr":"活塞靴子","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":251}},"GalaxySpace:enceladusblocks":{"0":{"oreDict":["rockSpace"," rockEnceladus"],"name":"Enceladus Snow","tr":"土卫二雪","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockEnceladus"],"name":"Enceladus Subsurface Block","tr":"土卫二地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Enceladus Dungeon Bricks","tr":"土卫二地牢砖","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["rockSpace"," rockEnceladus"],"name":"Enceladus Ice","tr":"土卫二冰","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCalifornium":{"0":{"oreDict":["dustTinyCalifornium"],"name":"小撮锎粉","tr":"小撮锎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemAdvancedStorageCell.16384k":{"0":{"name":"16384k ME Storage Cell","tr":"16384K-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:royalJelly":{"0":{"oreDict":["dropRoyalJelly"],"name":"Royal Jelly","tr":"蜂王浆","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA15SlabFull":{"0":{"name":"Metamorphic Mesa Cobblestone Slab","tr":"变质高原圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellIndalloy140":{"0":{"oreDict":["cellIndalloy140"],"name":"铋铅合金140单元","tr":"铋铅合金140单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedLanthaniteLa":{"0":{"oreDict":["crushedCentrifugedLanthaniteLa"],"name":"Centrifuged Crushed Lanthanite (La) Ore","tr":"离心镧石(La)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureLautarite":{"0":{"oreDict":["dustPureLautarite"],"name":"Purified Lautarite Dust","tr":"纯净碘钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.itemDisk":{"0":{"name":"Logistics Disk","tr":"物流磁盘","tab":"红石","type":"Item","maxStackSize":1,"maxDurability":1}},"TGregworks:tGregToolPartSwordBlade":{"1536":{"name":"精金 Sword Blade","tr":"精金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Sword Blade","tr":"神秘蓝金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Sword Blade","tr":"琥珀 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Sword Blade","tr":"纯镃 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Sword Blade","tr":"谐镃 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Sword Blade","tr":"聚氯乙烯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Sword Blade","tr":"永恒 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Sword Blade","tr":"磁物质 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Sword Blade","tr":"赛特斯石英 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Sword Blade","tr":"暗影秘银 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Sword Blade","tr":"玄铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Sword Blade","tr":"戴斯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Sword Blade","tr":"铿铀 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Sword Blade","tr":"通流琥珀金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Sword Blade","tr":"末影粗胚 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Sword Blade","tr":"末影(te) 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Sword Blade","tr":"炽热的钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Sword Blade","tr":"火石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Sword Blade","tr":"力量 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Sword Blade","tr":"石墨 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Sword Blade","tr":"石墨烯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Sword Blade","tr":"注魔金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Sword Blade","tr":"风之魔晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Sword Blade","tr":"火之魔晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Sword Blade","tr":"地之魔晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Sword Blade","tr":"水之魔晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Sword Blade","tr":"混沌魔晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Sword Blade","tr":"秩序魔晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Sword Blade","tr":"玉 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Sword Blade","tr":"碧玉 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Sword Blade","tr":"陨铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Sword Blade","tr":"陨钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Sword Blade","tr":"硅岩 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Sword Blade","tr":"硅岩合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Sword Blade","tr":"富集硅岩 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Sword Blade","tr":"超能硅岩 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Sword Blade","tr":"下界石英 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Sword Blade","tr":"下界之星 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Sword Blade","tr":"三钛 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Sword Blade","tr":"虚空 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Sword Blade","tr":"胶木 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Sword Blade","tr":"幽冥剧毒结晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Sword Blade","tr":"强化 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Sword Blade","tr":"铱锇合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Sword Blade","tr":"阳光化合物 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Sword Blade","tr":"魂金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Sword Blade","tr":"蓝黄玉 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Sword Blade","tr":"黄铜 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Sword Blade","tr":"白铜 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Sword Blade","tr":"深渊铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Sword Blade","tr":"钻石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Sword Blade","tr":"琥珀金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Sword Blade","tr":"绿宝石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Sword Blade","tr":"强化混合晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Sword Blade","tr":"混合晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Sword Blade","tr":"绿色蓝宝石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Sword Blade","tr":"殷钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Sword Blade","tr":"坎塔尔合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Sword Blade","tr":"镁铝合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Sword Blade","tr":"镍铬合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Sword Blade","tr":"玄钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Sword Blade","tr":"生铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Sword Blade","tr":"聚乙烯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Sword Blade","tr":"环氧树脂 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Sword Blade","tr":"硅橡胶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Sword Blade","tr":"聚己内酰胺 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Sword Blade","tr":"聚四氟乙烯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Sword Blade","tr":"蓝宝石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Sword Blade","tr":"不锈钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Sword Blade","tr":"坦桑石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Sword Blade","tr":"锡铁合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Sword Blade","tr":"黄玉 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Sword Blade","tr":"哈氏合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Sword Blade","tr":"锻铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Sword Blade","tr":"铁木 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Sword Blade","tr":"橄榄石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Sword Blade","tr":"蛋白石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Sword Blade","tr":"紫水晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Sword Blade","tr":"暗影金属 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Sword Blade","tr":"暗影铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Sword Blade","tr":"暗影钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Sword Blade","tr":"钢叶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Sword Blade","tr":"骑士金属 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Sword Blade","tr":"标准纯银 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Sword Blade","tr":"玫瑰金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Sword Blade","tr":"黑青铜 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Sword Blade","tr":"铋青铜 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Sword Blade","tr":"黑钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Sword Blade","tr":"红钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Sword Blade","tr":"蓝钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Sword Blade","tr":"大马士革钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Sword Blade","tr":"充能合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Sword Blade","tr":"脉冲合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Sword Blade","tr":"星辰银 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Sword Blade","tr":"钴黄铜 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Sword Blade","tr":"红石榴石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Sword Blade","tr":"黄石榴石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Sword Blade","tr":"温特姆 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Sword Blade","tr":"黑花岗岩 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Sword Blade","tr":"红花岗岩 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Sword Blade","tr":"白石棉 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Sword Blade","tr":"雄黄 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Sword Blade","tr":"磁化铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Sword Blade","tr":"磁化钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Sword Blade","tr":"磁化钕 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Sword Blade","tr":"碳化钨 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Sword Blade","tr":"钒钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Sword Blade","tr":"高速钢-G 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Sword Blade","tr":"高速钢-E 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Sword Blade","tr":"高速钢-S 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Sword Blade","tr":"深铅 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Sword Blade","tr":"量子 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Sword Blade","tr":"深空秘银 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Sword Blade","tr":"黑钚 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Sword Blade","tr":"木卫四冰 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Sword Blade","tr":"硬铝 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Sword Blade","tr":"奥利哈钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Sword Blade","tr":"三元金属 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Sword Blade","tr":"聚苯硫醚 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Sword Blade","tr":"聚苯乙烯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Sword Blade","tr":"丁苯橡胶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Sword Blade","tr":"镍锌铁氧体 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Sword Blade","tr":"纤维强化的环氧树脂 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Sword Blade","tr":"磁化钐 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Sword Blade","tr":"无尽催化剂 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Sword Blade","tr":"聚苯并咪唑 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Sword Blade","tr":" 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Sword Blade","tr":"钛铂钒合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Sword Blade","tr":"时空 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Sword Blade","tr":"大理石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Sword Blade","tr":"神秘水晶 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Sword Blade","tr":"末影钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Sword Blade","tr":"复合粘土 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Sword Blade","tr":"晶化合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Sword Blade","tr":"旋律合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Sword Blade","tr":"恒星合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Sword Blade","tr":"晶化粉红史莱姆 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Sword Blade","tr":"充能银 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Sword Blade","tr":"生动合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Sword Blade","tr":"灵宝 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Sword Blade","tr":"超时空金属 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Sword Blade","tr":"活石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Sword Blade","tr":"盖亚之魂 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Sword Blade","tr":"活木 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Sword Blade","tr":"梦之木 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Sword Blade","tr":"泡铋 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Sword Blade","tr":"立方氧化锆 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Sword Blade","tr":"氟铁电气石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Sword Blade","tr":"铬铝电气石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Sword Blade","tr":"钒镁电气石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Sword Blade","tr":"铝电气石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Sword Blade","tr":"红锆石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Sword Blade","tr":"铁橄榄石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Sword Blade","tr":"镁橄榄石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Sword Blade","tr":"钙铁辉石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Sword Blade","tr":"钍-232 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Sword Blade","tr":"堇云石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Sword Blade","tr":"磁共振石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Sword Blade","tr":"锎 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Sword Blade","tr":"BArTiMaEuSNeK 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Sword Blade","tr":"钌 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Sword Blade","tr":"铑 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Sword Blade","tr":"镀铑钯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Sword Blade","tr":"泰伯利亚 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Sword Blade","tr":"钌铱合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Sword Blade","tr":"氟石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Sword Blade","tr":"高耐久性复合钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Sword Blade","tr":"硬钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Sword Blade","tr":"合成玉 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Sword Blade","tr":"原子分离催化剂 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Sword Blade","tr":"极不稳定硅岩 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Sword Blade","tr":"锌钍合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Sword Blade","tr":"锆锡合金-4 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Sword Blade","tr":"锆锡合金-2 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Sword Blade","tr":"耐热铬铁合金-903 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Sword Blade","tr":"精金合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Sword Blade","tr":"MAR-M200特种钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Sword Blade","tr":"MAR-Ce-M200特种钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Sword Blade","tr":"氯化锂 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Sword Blade","tr":"信素 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Sword Blade","tr":"流明 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Sword Blade","tr":"阿瑟锡 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Sword Blade","tr":"钛钼合金β-C 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Sword Blade","tr":"大力合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Sword Blade","tr":"光素 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Sword Blade","tr":"对立合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Sword Blade","tr":"稀有金属合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Sword Blade","tr":"富集硅岩合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Sword Blade","tr":"亚稳态鿫 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Sword Blade","tr":"调律源金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Sword Blade","tr":"魔钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Sword Blade","tr":"泰拉钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Sword Blade","tr":"源质钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Sword Blade","tr":"磁流体约束恒星物质 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Sword Blade","tr":"白矮星物质 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Sword Blade","tr":"黑矮星物质 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Sword Blade","tr":"宇宙素 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Sword Blade","tr":"铝 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Sword Blade","tr":"铍 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Sword Blade","tr":"铋 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Sword Blade","tr":"碳 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Sword Blade","tr":"铬 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Sword Blade","tr":"金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Sword Blade","tr":"铱 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Sword Blade","tr":"铅 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Sword Blade","tr":"锰 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Sword Blade","tr":"钼 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Sword Blade","tr":"钕 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Sword Blade","tr":"中子 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Sword Blade","tr":"镍 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Sword Blade","tr":"锇 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Sword Blade","tr":"钯 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Sword Blade","tr":"铂 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Sword Blade","tr":"钚-239 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Sword Blade","tr":"钚-241 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Sword Blade","tr":"银 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Sword Blade","tr":"钍 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Sword Blade","tr":"钛 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Sword Blade","tr":"钨 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Sword Blade","tr":"铀-238 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Sword Blade","tr":"铀-235 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Sword Blade","tr":"红宝石 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Sword Blade","tr":"红石合金 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Sword Blade","tr":"终末 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Sword Blade","tr":"导电铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Sword Blade","tr":"磁钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Sword Blade","tr":"钨钢 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Sword Blade","tr":"烈焰 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Sword Blade","tr":"脉冲铁 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Sword Blade","tr":"龙 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Sword Blade","tr":"觉醒龙 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Sword Blade","tr":"褐铜 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Sword Blade","tr":"山铜 剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:snowstairs":{"0":{"name":"Snow Stairs","tr":"雪楼梯","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsRemoteOrdererLogistics":{"0":{"name":"Remote Orderer Logistics Pipe","tr":"远程请求物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedSamarskiteY":{"0":{"oreDict":["crushedPurifiedSamarskiteY"],"name":"Purified Crushed Samarskite (Y) Ore","tr":"洗净的铌钇矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"adventurebackpack:adventurePants":{"0":{"name":"Adventurer\u0027s Pants","tr":"探险者裤子","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":151}},"BuildCraft|Builders:fillerBlock":{"0":{"name":"Filler","tr":"填充机","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gooseberrypieItem":{"0":{"oreDict":["foodGooseberrypie"],"name":"Gooseberry Pie","tr":"醋栗馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.alumite":{"0":{"name":"Molten Alumite","tr":"熔融耐酸铝","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:obsidianChisel":{"0":{"name":"Obsidian Chisel","tr":"黑曜石凿子","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":513}},"TwilightForest:tile.AuroraPillar":{"0":{"name":"Aurora Pillar","tr":"极光柱","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:item.bloodSoakedFrame":{"0":{"name":"Blood Frame","tr":"浸血框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":2}},"Forestry:ingotTin":{"0":{"oreDict":["ingotTin"],"name":"Tin Ingot","tr":"锡锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolWirelessTerminal":{"0":{"name":"Wireless Terminal","tr":"无线终端","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":33}},"harvestcraft:mochaicecreamItem":{"0":{"oreDict":["foodMochaicecream"],"name":"Mocha Ice Cream","tr":"摩卡冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPhosphorousUraniumHexafluoridePUF6":{"0":{"oreDict":["cellPhosphorousUraniumHexafluoridePUF6"],"name":"磷化六氟化铀(P-UF6)单元","tr":"磷化六氟化铀(P-UF6)单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCryoliteF":{"0":{"oreDict":["dustCryoliteF"],"name":"冰晶石(F)粉","tr":"冰晶石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.pumpkin":{"0":{"name":"Pumpkin Cart","tr":"南瓜车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"ThaumicHorizons:syringeEmpty":{"0":{"name":"Warded Syringe","tr":"奥术针筒","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:scalloprawItem":{"0":{"oreDict":["foodScallopraw"," listAllfishraw"],"name":"Raw Scallop","tr":"生扇贝","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemIngot":{"0":{"oreDict":["ingotCopper"," ingotAnyCopper"],"name":"Copper Ingot","tr":"铜锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["ingotTin"],"name":"Tin Ingot","tr":"锡锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotBronze"," ingotAnyBronze"],"name":"Bronze Ingot","tr":"青铜锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotSteel"],"name":"Refined Iron Ingot","tr":"精炼铁锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Mixed Metal Ingot","tr":"合金锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["ingotLead"],"name":"Lead Ingot","tr":"铅锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["ingotSilver"],"name":"Silver Ingot","tr":"银锭","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:endStoneBrick0SlabFull":{"0":{"name":"End Stone Brick Slab","tr":"末地石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:netherBed":{"0":{"name":"Nether Bed","tr":"下界床","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetherQuartzHoe":{"0":{"name":"Nether Quartz Hoe","tr":"下界石英锄","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemGearLafiumCompound":{"0":{"oreDict":["gearGtLafiumCompound"," gearLafiumCompound"],"name":"路菲恩化合物齿轮","tr":"路菲恩化合物齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedstick":{"10112":{"oreDict":["stickShirabon"],"name":"调律源金杆","tr":"调律源金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stickBismutite"],"name":"泡铋杆","tr":"泡铋杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stickZirconium"],"name":"锆杆","tr":"锆杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stickCubicZirconia"],"name":"立方氧化锆杆","tr":"立方氧化锆杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stickFluor-Buergerite"],"name":"氟铁电气石杆","tr":"氟铁电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stickChromo-Alumino-Povondraite"],"name":"铬铝电气石杆","tr":"铬铝电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stickVanadio-Oxy-Dravite"],"name":"钒镁电气石杆","tr":"钒镁电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stickOlenite"],"name":"铝电气石杆","tr":"铝电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["stickRedZircon"],"name":"红锆石杆","tr":"红锆石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["stickSalt"],"name":"盐杆","tr":"盐杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["stickSpodumene"],"name":"锂辉石杆","tr":"锂辉石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["stickRockSalt"],"name":"岩盐杆","tr":"岩盐杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["stickFayalite"],"name":"铁橄榄石杆","tr":"铁橄榄石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["stickForsterite"],"name":"镁橄榄石杆","tr":"镁橄榄石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["stickHedenbergite"],"name":"钙铁辉石杆","tr":"钙铁辉石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["stickThorium232"],"name":"钍-232杆","tr":"钍-232杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["stickPrasiolite"],"name":"堇云石杆","tr":"堇云石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["stickMagnetoResonatic"],"name":"磁共振石杆","tr":"磁共振石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["stickAtomicSeparationCatalyst"],"name":"原子分离催化剂杆","tr":"原子分离催化剂杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["stickCalifornium"],"name":"锎杆","tr":"锎杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["stickOrundum"],"name":"合成玉杆","tr":"合成玉杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["stickCalcium"],"name":"钙杆","tr":"钙杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["stickExtremelyUnstableNaquadah"],"name":"极不稳定硅岩杆","tr":"极不稳定硅岩杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["stickBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK杆","tr":"BArTiMaEuSNeK杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["stickPTMEGElastomer"],"name":"PTMEG橡胶杆","tr":"PTMEG橡胶杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["stickRuthenium"],"name":"钌杆","tr":"钌杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["stickZn-ThAlloy"],"name":"锌钍合金杆","tr":"锌钍合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["stickRhodium"],"name":"铑杆","tr":"铑杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["stickRhodium-PlatedPalladium"],"name":"镀铑钯杆","tr":"镀铑钯杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["stickTiberium"],"name":"泰伯利亚杆","tr":"泰伯利亚杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["stickRuridit"],"name":"钌铱合金杆","tr":"钌铱合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["stickFluorspar"],"name":"氟石杆","tr":"氟石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["stickHighDurabilityCompoundSteel"],"name":"高耐久性复合钢杆","tr":"高耐久性复合钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["stickAdemicSteel"],"name":"硬钢杆","tr":"硬钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["stickZircaloy-4"],"name":"锆锡合金-4杆","tr":"锆锡合金-4杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["stickZircaloy-2"],"name":"锆锡合金-2杆","tr":"锆锡合金-2杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["stickIncoloy-903"],"name":"耐热铬铁合金-903杆","tr":"耐热铬铁合金-903杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["stickAdamantiumAlloy"],"name":"精金合金杆","tr":"精金合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["stickFluorophlogopite"],"name":"氟金云母杆","tr":"氟金云母杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["stickCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)杆","tr":"掺铈镥铝石榴石 (Ce:LuAG)杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["stickMagnesia"],"name":"氧化镁杆","tr":"氧化镁杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["stickMAR-M200Steel"],"name":"MAR-M200特种钢杆","tr":"MAR-M200特种钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["stickMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢杆","tr":"MAR-Ce-M200特种钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["stickLithiumChloride"],"name":"氯化锂杆","tr":"氯化锂杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["stickSignalium"],"name":"信素杆","tr":"信素杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["stickLumiium"],"name":"流明杆","tr":"流明杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["stickArtherium-Sn"],"name":"阿瑟锡杆","tr":"阿瑟锡杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["stickTanmolyiumBeta-C"],"name":"钛钼合金β-C杆","tr":"钛钼合金β-C杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["stickDalisenite"],"name":"大力合金杆","tr":"大力合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["stickHafnium"],"name":"铪杆","tr":"铪杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["stickHikarium"],"name":"光素杆","tr":"光素杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["stickTairitsu"],"name":"对立合金杆","tr":"对立合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["stickPreciousMetalsAlloy"],"name":"稀有金属合金杆","tr":"稀有金属合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["stickEnrichedNaquadahAlloy"],"name":"富集硅岩合金杆","tr":"富集硅岩合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["stickMetastableOganesson"],"name":"亚稳态鿫杆","tr":"亚稳态鿫杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["stickZirconium"],"name":"锆杆","tr":"锆杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:thatch0Stairs":{"0":{"name":"Thatch Stairs","tr":"茅草楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTellurium":{"0":{"oreDict":["boltTellurium"],"name":"碲螺栓","tr":"碲螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateMaragingSteel300":{"0":{"oreDict":["plateMaragingSteel300"],"name":"马氏体时效钢300板","tr":"马氏体时效钢300板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallGeikielite":{"0":{"oreDict":["dustSmallGeikielite"],"name":"小堆镁钛矿粉","tr":"小堆镁钛矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamblackberryCrop":{"0":{"name":"Blackberry Crop","tr":"黑莓","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioDesk":{"0":{"name":"Oak Desk","tr":"橡木台桌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Desk","tr":"云杉木台桌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Desk","tr":"白桦木台桌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Desk","tr":"丛林木台桌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Desk","tr":"金合欢台桌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Desk","tr":"深色橡木台桌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Desk","tr":"镶框桌子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDehydratorCoilWire":{"0":{"name":"Coil Wire [EV]","tr":"线圈 [EV]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Coil Wire [IV]","tr":"线圈 [IV]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Coil Wire [LuV]","tr":"线圈 [LuV]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Coil Wire [ZPM]","tr":"线圈 [ZPM]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapefruitsmoothieItem":{"0":{"oreDict":["foodGrapefruitjellysmoothie"," listAllsmoothie"],"name":"Grapefruit Smoothie","tr":"葡萄柚冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pearjellysandwichItem":{"0":{"oreDict":["foodPearjellysandwich"],"name":"Pear Jelly Sandwich","tr":"秋梨枇杷冻三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.pickaxe.darkwood":{"0":{"name":"Darkwood Pickaxe","tr":"黑暗树镐","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"Forestry:cratedNaturaLogGhostwood":{"0":{"name":"Crated Ghostwood","tr":"装箱的幽魂树原木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedLanthaniteNd":{"0":{"oreDict":["crushedCentrifugedLanthaniteNd"],"name":"Centrifuged Crushed Lanthanite (Nd) Ore","tr":"离心镧石(Nd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:generator.8":{"0":{"name":"Survivalist Generator","tr":"生存者发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Furnace Generator","tr":"熔炉发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lava Generator","tr":"岩浆发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Generator","tr":"末影发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Heated Redstone Generator","tr":"高热红石发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Culinary Generator","tr":"厨用发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Potions Generator","tr":"药水发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Solar Generator","tr":"太阳能发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"TNT Generator","tr":"TNT发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Generator","tr":"粉之发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"High-temperature Furnace Generator","tr":"高温熔炉发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Nether Star Generator","tr":"下界之星发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyRocketEngineTier3":{"0":{"name":"Heavy Duty Rocket Engine Tier 3","tr":"高能火箭引擎","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyRocketEngineTier4":{"0":{"name":"Heavy Duty Rocket Engine Tier 4","tr":"深空火箭引擎","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cinnamonItem":{"0":{"oreDict":["cropCinnamon"],"name":"Cinnamon","tr":"肉桂","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamwhitemushroomCrop":{"0":{"name":"White Mushroom Crop","tr":"白蘑菇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.armor.impjerkin":{"0":{"name":"Impskin Jerkin","tr":"恶魔皮胸甲","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":529}},"TConstruct:signHead":{"0":{"name":"Wooden Sign Head","tr":"木牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Sign Head","tr":"石牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Sign Head","tr":"铁牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Sign Head","tr":"燧石牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Sign Head","tr":"仙人掌牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Sign Head","tr":"骨头牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Sign Head","tr":"黑曜石牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Sign Head","tr":"地狱岩牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Sign Head","tr":"史莱姆牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Sign Head","tr":"纸牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Sign Head","tr":"钴牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Sign Head","tr":"阿迪特牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Sign Head","tr":"玛玉灵牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Sign Head","tr":"铜牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Sign Head","tr":"青铜牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Sign Head","tr":"耐酸铝牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Sign Head","tr":"钢牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Sign Head","tr":"史莱姆牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Sign Head","tr":"生铁牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Sign Head","tr":"不稳定感应牌板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:null":{"0":{"name":"Unnamed Block, report to mod author.","tr":"未命名方块,请报告给作者.","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:stairs":{"0":{"oreDict":["stairWood"],"name":"Larch Stairs","tr":"落叶树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stairWood"],"name":"Teak Stairs","tr":"柚树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stairWood"],"name":"Desert Acacia Stairs","tr":"沙漠刺槐楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stairWood"],"name":"Lime Stairs","tr":"酸橙树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stairWood"],"name":"Chestnut Stairs","tr":"栗树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stairWood"],"name":"Wenge Stairs","tr":"崖豆楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stairWood"],"name":"Baobab Stairs","tr":"猴面包树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stairWood"],"name":"Sequoia Stairs","tr":"红杉树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stairWood"],"name":"Kapok Stairs","tr":"木棉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stairWood"],"name":"Ebony Stairs","tr":"乌檀树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stairWood"],"name":"Mahogany Stairs","tr":"桃心树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stairWood"],"name":"Balsa Stairs","tr":"巴尔杉树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stairWood"],"name":"Willow Stairs","tr":"柳树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["stairWood"],"name":"Walnut Stairs","tr":"核桃楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["stairWood"],"name":"Greenheart Stairs","tr":"绿樟树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["stairWood"],"name":"Cherry Stairs","tr":"樱桃楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["stairWood"],"name":"Mahoe Stairs","tr":"高槿树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["stairWood"],"name":"Poplar Stairs","tr":"白杨树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["stairWood"],"name":"Palm Stairs","tr":"棕榈树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["stairWood"],"name":"Papaya Stairs","tr":"木瓜楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["stairWood"],"name":"Pine Stairs","tr":"松树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["stairWood"],"name":"Plum Stairs","tr":"李子楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["stairWood"],"name":"Maple Stairs","tr":"枫树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["stairWood"],"name":"Citrus Stairs","tr":"柑橘树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["stairWood"],"name":"Giant Sequoia Stairs","tr":"巨杉楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["stairWood"],"name":"Ipe Stairs","tr":"重蚁树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["stairWood"],"name":"Padauk Stairs","tr":"紫檀树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["stairWood"],"name":"Cocobolo Stairs","tr":"黄檀树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["stairWood"],"name":"Zebrawood Stairs","tr":"斑木树楼梯","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:gearCopper":{"0":{"oreDict":["gearCopper"],"name":"Copper Gear","tr":"铜齿轮","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:amorphic_catalyst":{"0":{"name":"Amorphic Catalyst","tr":"无序的催化剂","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorVentDiamond":{"1":{"name":"Advanced Heat Vent","tr":"高级散热片","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"miscutils:itemPlateDoubleBlackMetal":{"0":{"oreDict":["plateDoubleBlackMetal"],"name":"双重黑物质板","tr":"双重黑物质板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemGearArcanite":{"0":{"oreDict":["gearGtArcanite"," gearArcanite"],"name":"奥金齿轮","tr":"奥金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:heavilyCrackedHeavyNaquadahFuel":{"0":{"name":"Severely Cracked Heavy Naquadah Fuel","tr":"重度裂化重质硅岩燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FrothGrossularflotation":{"0":{"oreDict":["cellGrossularFroth"],"name":"钙铝榴石泡沫单元","tr":"钙铝榴石泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustYttrialite":{"0":{"oreDict":["dustYttrialite"],"name":"硅钍钇矿粉","tr":"硅钍钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberryItem":{"0":{"oreDict":["cropRaspberry"," listAllfruit"," listAllberry"],"name":"Raspberry","tr":"树莓","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"kekztech:kekztech_largehextile_block":{"0":{"name":"Large Hex Tile","tr":"大六角瓷砖","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:eeprom":{"0":{"oreDict":["oc:eeprom"],"name":"EEPROM","tr":"EEPROM","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:lantern.metal":{"0":{"name":"Iron Lantern","tr":"铁灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Gold Lantern","tr":"金灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Copper Lantern","tr":"铜灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Tin Lantern","tr":"锡灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Lead Lantern","tr":"铅灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Steel Lantern","tr":"钢灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHoeElemental":{"0":{"name":"Hoe of Growth","tr":"句芒锄","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1501}},"Botania:biomeStoneA12Stairs":{"0":{"name":"Metamorphic Swamp Cobblestone Stairs","tr":"变质沼泽圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewChromaticGlass":{"0":{"oreDict":["screwChromaticGlass"],"name":"彩色玻璃螺丝","tr":"彩色玻璃螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyThoriumTetrafluoride":{"0":{"oreDict":["dustTinyThoriumTetrafluoride"],"name":"小撮四氟化钍粉","tr":"小撮四氟化钍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:sextant":{"0":{"name":"Worldshaper\u0027s Sextant","tr":"盖世六分仪","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftMars:item.deshChestplate":{"0":{"name":"Desh Chestplate","tr":"戴斯胸甲","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":673}},"EMT:EMTSolars5":{"0":{"name":"Octuple Compressed Terra Solar","tr":"地注魔太阳能(8级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Octuple Compressed Aqua Solar","tr":"水注魔太阳能(8级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Octuple Compressed Ignis Solar","tr":"火注魔太阳能(8级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:ingredient":{"0":{"name":"Conflux Disc","tr":"汇流圆盘","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:SearedBrick":{"1":{"oreDict":["oreCobalt"],"name":"Cobalt Ore","tr":"钴矿石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreArdite"],"name":"Ardite Ore","tr":"阿迪特矿石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreAluminum"," oreAluminium"],"name":"Aluminum Ore","tr":"铝矿石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:EMTSolars4":{"0":{"name":"Sextuple Compressed Perditio Solar","tr":"混沌注魔太阳能(6级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sextuple Compressed Aer Solar","tr":"风注魔太阳能(6级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sextuple Compressed Terra Solar","tr":"地注魔太阳能(6级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sextuple Compressed Aqua Solar","tr":"水注魔太阳能(6级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Sextuple Compressed Ignis Solar","tr":"火注魔太阳能(6级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Septuple Compressed Solar","tr":"压缩太阳能(7级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Septuple Compressed Ordo Solar","tr":"秩序注魔太阳能(7级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Septuple Compressed Perditio Solar","tr":"混沌注魔太阳能(7级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Septuple Compressed Aer Solar","tr":"风注魔太阳能(7级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Septuple Compressed Terra Solar","tr":"地注魔太阳能(7级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Septuple Compressed Aqua Solar","tr":"水注魔太阳能(7级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Septuple Compressed Ignis Solar","tr":"火注魔太阳能(7级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Octuple Compressed Solar","tr":"压缩太阳能(8级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Octuple Compressed Ordo Solar","tr":"秩序注魔太阳能(8级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Octuple Compressed Perditio Solar","tr":"混沌注魔太阳能(8级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Octuple Compressed Aer Solar","tr":"风注魔太阳能(8级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemPartCFPowder":{"0":{"name":"CF Powder","tr":"建筑泡沫","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:EMTSolars3":{"0":{"name":"Quadruple Compressed Solar","tr":"压缩太阳能(4级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Quadruple Compressed Ordo Solar","tr":"秩序注魔太阳能(4级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Quadruple Compressed Perditio Solar","tr":"混沌注魔太阳能(4级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Quadruple Compressed Aer Solar","tr":"风注魔太阳能(4级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Quadruple Compressed Terra Solar","tr":"地注魔太阳能(4级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Quadruple Compressed Aqua Solar","tr":"水注魔太阳能(4级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Quadruple Compressed Ignis Solar","tr":"火注魔太阳能(4级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Quintuple Compressed Solar","tr":"压缩太阳能(5级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Quintuple Compressed Ordo Solar","tr":"秩序注魔太阳能(5级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Quintuple Compressed Perditio Solar","tr":"混沌注魔太阳能(5级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Quintuple Compressed Aer Solar","tr":"风注魔太阳能(5级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Quintuple Compressed Terra Solar","tr":"地注魔太阳能(5级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Quintuple Compressed Aqua Solar","tr":"水注魔太阳能(5级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Quintuple Compressed Ignis Solar","tr":"火注魔太阳能(5级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Sextuple Compressed Solar","tr":"压缩太阳能(6级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Sextuple Compressed Ordo Solar","tr":"秩序注魔太阳能(6级)","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:circleglyphinfernal":{"0":{"name":"Infernal Glyph","tr":"炼狱符形","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:EMTSolars2":{"0":{"name":"Double Compressed Aer Solar","tr":"Double Compressed Aer Solar","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Triple Compressed Aer Solar","tr":"Triple Compressed Aer Solar","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Compressed Terra Solar","tr":"Compressed Terra Solar","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Double Compressed Terra Solar","tr":"Double Compressed Terra Solar","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Triple Compressed Terra Solar","tr":"Triple Compressed Terra Solar","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.shiny":{"0":{"name":"Molten Shiny","tr":"熔融铂金","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:travelGoggles":{"0":{"name":"Traveller\u0027s Goggles","tr":"旅行者护目镜","tab":"匠魂|装备","type":"Item","maxStackSize":1,"maxDurability":1036}},"bartworks:gt.bwMetaGeneratedcapsule":{"11010":{"oreDict":["capsuleZirconiumTetrachlorideSolution"],"name":"四氯化锆溶液胶囊","tr":"四氯化锆溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11012":{"oreDict":["capsuleIodine"],"name":"碘胶囊","tr":"碘胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11014":{"oreDict":["capsuleMuddyMonaziteRareEarthSolution"],"name":"独居石稀土浊溶液胶囊","tr":"独居石稀土浊溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11015":{"oreDict":["capsuleDilutedMonaziteRareEarthMud"],"name":"稀释独居石稀土泥浆胶囊","tr":"稀释独居石稀土泥浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11016":{"oreDict":["capsuleDilutedMonaziteSulfate"],"name":"稀释硫酸独居石溶液胶囊","tr":"稀释硫酸独居石溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11017":{"oreDict":["capsuleNitrogenatedMonaziteRareEarthConcentrate"],"name":"浓缩氮化独居石稀土溶液胶囊","tr":"浓缩氮化独居石稀土溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11018":{"oreDict":["capsuleNitricMonaziteLeachedConcentrate"],"name":"浓缩硝酸独居石浸出溶液胶囊","tr":"浓缩硝酸独居石浸出溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10002":{"oreDict":["capsuleUraniumBasedLiquidFuel"],"name":"铀基流体燃料胶囊","tr":"铀基流体燃料胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10003":{"oreDict":["capsuleUraniumBasedLiquidFuel(ExcitedState)"],"name":"铀基流体燃料(激发态)胶囊","tr":"铀基流体燃料(激发态)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10004":{"oreDict":["capsuleUraniumBasedLiquidFuel(Depleted)"],"name":"铀基流体燃料(枯竭的)胶囊","tr":"铀基流体燃料(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10006":{"oreDict":["capsuleThoriumBasedLiquidFuel"],"name":"钍基流体燃料胶囊","tr":"钍基流体燃料胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10007":{"oreDict":["capsuleThoriumBasedLiquidFuel(ExcitedState)"],"name":"钍基流体燃料(激发态)胶囊","tr":"钍基流体燃料(激发态)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10008":{"oreDict":["capsuleThoriumBasedLiquidFuel(Depleted)"],"name":"钍基流体燃料(枯竭的)胶囊","tr":"钍基流体燃料(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10010":{"oreDict":["capsulePlutoniumBasedLiquidFuel"],"name":"钚基流体燃料胶囊","tr":"钚基流体燃料胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10011":{"oreDict":["capsulePlutoniumBasedLiquidFuel(ExcitedState)"],"name":"钚基流体燃料(激发态)胶囊","tr":"钚基流体燃料(激发态)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10012":{"oreDict":["capsulePlutoniumBasedLiquidFuel(Depleted)"],"name":"钚基流体燃料(枯竭的)胶囊","tr":"钚基流体燃料(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11036":{"oreDict":["capsuleAmmoniumNitrateSolution"],"name":"硝酸铵溶液胶囊","tr":"硝酸铵溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10013":{"oreDict":["capsuleOxalate"],"name":"草酸胶囊","tr":"草酸胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10015":{"oreDict":["capsuleThoriumNitrate"],"name":"硝酸钍胶囊","tr":"硝酸钍胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11042":{"oreDict":["capsuleSeaweedConcentrate"],"name":"浓缩海藻溶液胶囊","tr":"浓缩海藻溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10019":{"oreDict":["capsuleThoriumTetrachloride"],"name":"四氯化钍胶囊","tr":"四氯化钍胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10020":{"oreDict":["capsuleThoriumTetrafluoride"],"name":"四氟化钍胶囊","tr":"四氟化钍胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11044":{"oreDict":["capsulePotassiumPermanganateSolution"],"name":"高锰酸钾溶液胶囊","tr":"高锰酸钾溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11300":{"oreDict":["capsuleTetrahydrofuran"],"name":"四氢呋喃胶囊","tr":"四氢呋喃胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["capsuleXenon"],"name":"氙胶囊","tr":"氙胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10021":{"oreDict":["capsuleThorium-232Tetrafluoride"],"name":"四氟化钍-232胶囊","tr":"四氟化钍-232胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11045":{"oreDict":["capsuleSeaweedByproducts"],"name":"海藻副产胶囊","tr":"海藻副产胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11301":{"oreDict":["capsule1","4-Butanediol"],"name":"1,4-丁二醇胶囊","tr":"1,4-丁二醇胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20005":{"oreDict":["capsulePureMana"],"name":"Pure Mana胶囊","tr":"Pure Mana胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["capsuleOganesson"],"name":"鿫胶囊","tr":"鿫胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11046":{"oreDict":["capsuleNitric-LeachedMonaziteMixture"],"name":"硝酸独居石浸出混合物胶囊","tr":"硝酸独居石浸出混合物胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11302":{"oreDict":["capsuleAcidicised1","4-Butanediol"],"name":"酸化1,4-丁二醇胶囊","tr":"酸化1,4-丁二醇胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20006":{"oreDict":["capsuleLiquidMana"],"name":"Liquid Mana胶囊","tr":"Liquid Mana胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20007":{"oreDict":["capsulePurifiedMana"],"name":"Purified Mana胶囊","tr":"Purified Mana胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["capsuleNeon"],"name":"氖胶囊","tr":"氖胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10025":{"oreDict":["capsuleLightNaquadahFuel"],"name":"轻质硅岩燃料胶囊","tr":"轻质硅岩燃料胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["capsuleKrypton"],"name":"氪胶囊","tr":"氪胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10026":{"oreDict":["capsuleHeavyNaquadahFuel"],"name":"重质硅岩燃料胶囊","tr":"重质硅岩燃料胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11306":{"oreDict":["capsulePolytetrahydrofuran"],"name":"聚四氢呋喃胶囊","tr":"聚四氢呋喃胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10027":{"oreDict":["capsuleNaquadahGas"],"name":"硅岩气胶囊","tr":"硅岩气胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11307":{"oreDict":["capsuleTungstophosphoricAcid"],"name":"磷钨酸胶囊","tr":"磷钨酸胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["capsulePlatinumConcentrate"],"name":"浓缩铂胶囊","tr":"浓缩铂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10028":{"oreDict":["capsuleNaquadahAsphalt"],"name":"硅岩沥青胶囊","tr":"硅岩沥青胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11308":{"oreDict":["capsuleTolueneDiisocyanate"],"name":"甲苯二异氰酸酯胶囊","tr":"甲苯二异氰酸酯胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10029":{"oreDict":["capsuleEther"],"name":"乙醚胶囊","tr":"乙醚胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11309":{"oreDict":["capsuleDinitrotoluene"],"name":"二硝基甲苯胶囊","tr":"二硝基甲苯胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10030":{"oreDict":["capsuleAntimonyTrichlorideSolution"],"name":"三氯化锑溶液胶囊","tr":"三氯化锑溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11310":{"oreDict":["capsuleDiaminotoluene"],"name":"二氨基甲苯胶囊","tr":"二氨基甲苯胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10031":{"oreDict":["capsuleAntimonyPentachlorideSolution"],"name":"五氯化锑溶液胶囊","tr":"五氯化锑溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11311":{"oreDict":["capsuleTolueneTetramethylDiisocyanate"],"name":"PTMEG橡胶粗胚胶囊","tr":"PTMEG橡胶粗胚胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["capsuleAquaRegia"],"name":"王水胶囊","tr":"王水胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10032":{"oreDict":["capsuleAntimonyPentachloride"],"name":"五氯化锑胶囊","tr":"五氯化锑胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10033":{"oreDict":["capsuleAntimonyPentafluoride"],"name":"五氟化锑胶囊","tr":"五氟化锑胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"oreDict":["capsuleAmmoniumChloride"],"name":"氯化铵胶囊","tr":"氯化铵胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10034":{"oreDict":["capsuleFluoroantimonicAcid"],"name":"氟锑酸胶囊","tr":"氟锑酸胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["capsulePalladiumEnrichedAmmonia"],"name":"富钯氨胶囊","tr":"富钯氨胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10036":{"oreDict":["capsuleAcidNaquadahEmulsion"],"name":"酸性硅岩乳液胶囊","tr":"酸性硅岩乳液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11316":{"oreDict":["capsuleDilutedAcetone"],"name":"稀释丙酮胶囊","tr":"稀释丙酮胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10037":{"oreDict":["capsuleNaquadahEmulsion"],"name":"硅岩乳液胶囊","tr":"硅岩乳液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10038":{"oreDict":["capsuleNaquadahSolution"],"name":"硅岩溶液胶囊","tr":"硅岩溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10039":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkI"],"name":"硅岩基流体燃料-MkI胶囊","tr":"硅岩基流体燃料-MkI胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["capsuleSodiumFormate"],"name":"甲酸钠胶囊","tr":"甲酸钠胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10040":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkI(Depleted)"],"name":"硅岩基流体燃料-MkI(枯竭的)胶囊","tr":"硅岩基流体燃料-MkI(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10041":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkII"],"name":"硅岩基流体燃料-MkII胶囊","tr":"硅岩基流体燃料-MkII胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["capsuleFormicAcid"],"name":"甲酸胶囊","tr":"甲酸胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10042":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkII(Depleted)"],"name":"硅岩基流体燃料-MkII(枯竭的)胶囊","tr":"硅岩基流体燃料-MkII(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"oreDict":["capsuleRhodiumSulfate"],"name":"硫酸铑胶囊","tr":"硫酸铑胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["capsuleRhodiumSulfateSolution"],"name":"硫酸铑溶液胶囊","tr":"硫酸铑溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10046":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkIII"],"name":"硅岩基流体燃料-MkIII胶囊","tr":"硅岩基流体燃料-MkIII胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["capsuleCalciumChloride"],"name":"氯化钙胶囊","tr":"氯化钙胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10047":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkIII(Depleted)"],"name":"硅岩基流体燃料-MkIII(枯竭的)胶囊","tr":"硅岩基流体燃料-MkIII(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10048":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkIV"],"name":"硅岩基流体燃料-MkIV胶囊","tr":"硅岩基流体燃料-MkIV胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10049":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkIV(Depleted)"],"name":"硅岩基流体燃料-MkIV(枯竭的)胶囊","tr":"硅岩基流体燃料-MkIV(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["capsuleRutheniumTetroxide"],"name":"四氧化钌胶囊","tr":"四氧化钌胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10050":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkV"],"name":"硅岩基流体燃料-MkV胶囊","tr":"硅岩基流体燃料-MkV胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"oreDict":["capsuleHotRutheniumTetroxideSolution"],"name":"热四氧化钌溶液胶囊","tr":"热四氧化钌溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10051":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkV(Depleted)"],"name":"硅岩基流体燃料-MkV(枯竭的)胶囊","tr":"硅岩基流体燃料-MkV(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"oreDict":["capsuleRutheniumTetroxideSolution"],"name":"四氧化钌溶液胶囊","tr":"四氧化钌溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"oreDict":["capsuleAcidicOsmiumSolution"],"name":"酸性锇溶液胶囊","tr":"酸性锇溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10056":{"oreDict":["capsuleLowQualityNaquadahEmulsion"],"name":"低纯硅岩乳液胶囊","tr":"低纯硅岩乳液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"oreDict":["capsuleOsmiumSolution"],"name":"锇溶液胶囊","tr":"锇溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10058":{"oreDict":["capsuleLowQualityNaquadahSolution"],"name":"低纯硅岩溶液胶囊","tr":"低纯硅岩溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"oreDict":["capsuleAcidicIridiumSolution"],"name":"酸性铱溶液胶囊","tr":"酸性铱溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10059":{"oreDict":["capsule2-Ethyl-1-Hexanol"],"name":"2-乙基己醇胶囊","tr":"2-乙基己醇胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10060":{"oreDict":["capsuleP-507"],"name":"P-507胶囊","tr":"P-507胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10061":{"oreDict":["capsuleNaquadah-AdamantiumSolution"],"name":"硅岩-精金溶液胶囊","tr":"硅岩-精金溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10062":{"oreDict":["capsuleNaquadah-RichSolution"],"name":"高纯硅岩溶液胶囊","tr":"高纯硅岩溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10064":{"oreDict":["capsuleFluorine-RichWasteLiquid"],"name":"富氟废液胶囊","tr":"富氟废液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"oreDict":["capsuleRhodiumSaltSolution"],"name":"铑盐溶液胶囊","tr":"铑盐溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10065":{"oreDict":["capsuleWasteLiquid"],"name":"废液胶囊","tr":"废液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10069":{"oreDict":["capsuleEnriched-Naquadah-RichSolution"],"name":"高纯富集硅岩溶液胶囊","tr":"高纯富集硅岩溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"oreDict":["capsuleRhodiumFilterCakeSolution"],"name":"铑滤饼溶液胶囊","tr":"铑滤饼溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10075":{"oreDict":["capsuleNaquadria-RichSolution"],"name":"高纯超能硅岩溶液胶囊","tr":"高纯超能硅岩溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11100":{"oreDict":["capsuleMuddyBastnasiteRareEarthSolution"],"name":"氟碳镧铈稀土浊溶液胶囊","tr":"氟碳镧铈稀土浊溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10077":{"oreDict":["capsuleLowQualityNaquadriaSulphate"],"name":"低纯硫酸超能硅岩胶囊","tr":"低纯硫酸超能硅岩胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11102":{"oreDict":["capsuleSodiumfluorosilicate"],"name":"氟硅酸钠胶囊","tr":"氟硅酸钠胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10079":{"oreDict":["capsuleNaquadahGoo"],"name":"硅岩粘浆胶囊","tr":"硅岩粘浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11103":{"oreDict":["capsuleSteam-CrackedBastnasiteMud"],"name":"蒸汽裂化氟碳镧铈泥浆胶囊","tr":"蒸汽裂化氟碳镧铈泥浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10080":{"oreDict":["capsuleEnrichedNaquadahGoo"],"name":"富集硅岩粘浆胶囊","tr":"富集硅岩粘浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11104":{"oreDict":["capsuleConditionedBastnasiteMud"],"name":"调制氟碳镧铈泥浆胶囊","tr":"调制氟碳镧铈泥浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10081":{"oreDict":["capsuleNaquadriaGoo"],"name":"超能硅岩粘浆胶囊","tr":"超能硅岩粘浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11105":{"oreDict":["capsuleDilutedBastnasiteMud"],"name":"稀释氟碳镧铈泥浆胶囊","tr":"稀释氟碳镧铈泥浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"98":{"oreDict":["capsuleHexafluorosilicicAcid"],"name":"氟硅酸胶囊","tr":"氟硅酸胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11106":{"oreDict":["capsuleFilteredBastnasiteMud"],"name":"过滤氟碳镧铈泥浆胶囊","tr":"过滤氟碳镧铈泥浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10086":{"oreDict":["capsuleEthanolGasoline"],"name":"乙醇汽油胶囊","tr":"乙醇汽油胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"103":{"oreDict":["capsuleUnformedFluorophlogopite"],"name":"未定型氟金云母胶囊","tr":"未定型氟金云母胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10087":{"oreDict":["capsuleCyclopentadiene"],"name":"环戊二烯胶囊","tr":"环戊二烯胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10088":{"oreDict":["capsuleIronIIChloride"],"name":"氯化亚铁胶囊","tr":"氯化亚铁胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10089":{"oreDict":["capsuleDiethylamine"],"name":"二乙胺胶囊","tr":"二乙胺胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10090":{"oreDict":["capsuleImpureFerroceneMixture"],"name":"含杂二茂铁混合物胶囊","tr":"含杂二茂铁混合物胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11114":{"oreDict":["capsuleNitrogenatedBastnasiteRarerEarthOxides"],"name":"氮化氟碳镧铈罕土氧化物胶囊","tr":"氮化氟碳镧铈罕土氧化物胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10091":{"oreDict":["capsuleFerroceneSolution"],"name":"二茂铁溶液胶囊","tr":"二茂铁溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11115":{"oreDict":["capsuleBastnasiteRarerEarthOxideSuspension"],"name":"氟碳镧铈罕土氧化物悬浊液胶囊","tr":"氟碳镧铈罕土氧化物悬浊液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10092":{"oreDict":["capsuleFerroceneWaste"],"name":"二茂铁废水胶囊","tr":"二茂铁废水胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10094":{"oreDict":["capsuleJetFuelNo.3"],"name":"航空煤油#3胶囊","tr":"航空煤油#3胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10095":{"oreDict":["capsuleJetFuelA"],"name":"航空煤油A胶囊","tr":"航空煤油A胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11124":{"oreDict":["capsuleCalciumFluoride"],"name":"氟化钙胶囊","tr":"氟化钙胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10107":{"oreDict":["capsuleAntimonyPentafluorideSolution"],"name":"五氟化锑溶液胶囊","tr":"五氟化锑溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10116":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkVI"],"name":"硅岩基流体燃料-MkVI胶囊","tr":"硅岩基流体燃料-MkVI胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10117":{"oreDict":["capsuleNaquadahBasedLiquidFuelMkVI(Depleted)"],"name":"硅岩基流体燃料-MkVI(枯竭的)胶囊","tr":"硅岩基流体燃料-MkVI(枯竭的)胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11401":{"oreDict":["capsuleLanthanumExtractingNanoResin"],"name":"镧萃取纳米树脂胶囊","tr":"镧萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11402":{"oreDict":["capsuleFilledLanthanumExtractingNanoResin"],"name":"满溢的镧萃取纳米树脂胶囊","tr":"满溢的镧萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11403":{"oreDict":["capsulePraseodymiumExtractingNanoResin"],"name":"镨萃取纳米树脂胶囊","tr":"镨萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11404":{"oreDict":["capsuleFilledPraseodymiumExtractingNanoResin"],"name":"满溢的镨萃取纳米树脂胶囊","tr":"满溢的镨萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11405":{"oreDict":["capsuleCeriumExtractingNanoResin"],"name":"铈萃取纳米树脂胶囊","tr":"铈萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11406":{"oreDict":["capsuleFilledCeriumExtractingNanoResin"],"name":"满溢的铈萃取纳米树脂胶囊","tr":"满溢的铈萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11407":{"oreDict":["capsuleNeodymiumExtractingNanoResin"],"name":"钕萃取纳米树脂胶囊","tr":"钕萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11408":{"oreDict":["capsuleFilledNeodymiumExtractingNanoResin"],"name":"满溢的钕萃取纳米树脂胶囊","tr":"满溢的钕萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11409":{"oreDict":["capsulePromethiumExtractingNanoResin"],"name":"钷萃取纳米树脂胶囊","tr":"钷萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11410":{"oreDict":["capsuleFilledPromethiumExtractingNanoResin"],"name":"满溢的钷萃取纳米树脂胶囊","tr":"满溢的钷萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11411":{"oreDict":["capsuleSamariumExtractingNanoResin"],"name":"钐萃取纳米树脂胶囊","tr":"钐萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11412":{"oreDict":["capsuleFilledSamariumExtractingNanoResin"],"name":"满溢的钐萃取纳米树脂胶囊","tr":"满溢的钐萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11413":{"oreDict":["capsuleEuropiumExtractingNanoResin"],"name":"铕萃取纳米树脂胶囊","tr":"铕萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11414":{"oreDict":["capsuleFilledEuropiumExtractingNanoResin"],"name":"满溢的铕萃取纳米树脂胶囊","tr":"满溢的铕萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11415":{"oreDict":["capsuleGadoliniumExtractingNanoResin"],"name":"钆萃取纳米树脂胶囊","tr":"钆萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11416":{"oreDict":["capsuleFilledGadoliniumExtractingNanoResin"],"name":"满溢的钆萃取纳米树脂胶囊","tr":"满溢的钆萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11417":{"oreDict":["capsuleTerbiumExtractingNanoResin"],"name":"铽萃取纳米树脂胶囊","tr":"铽萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11418":{"oreDict":["capsuleFilledTerbiumExtractingNanoResin"],"name":"满溢的铽萃取纳米树脂胶囊","tr":"满溢的铽萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11419":{"oreDict":["capsuleDysprosiumExtractingNanoResin"],"name":"镝萃取纳米树脂胶囊","tr":"镝萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11420":{"oreDict":["capsuleFilledDysprosiumExtractingNanoResin"],"name":"满溢的镝萃取纳米树脂胶囊","tr":"满溢的镝萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11421":{"oreDict":["capsuleHolmiumExtractingNanoResin"],"name":"钬萃取纳米树脂胶囊","tr":"钬萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11422":{"oreDict":["capsuleFilledHolmiumExtractingNanoResin"],"name":"满溢的钬萃取纳米树脂胶囊","tr":"满溢的钬萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11423":{"oreDict":["capsuleErbiumExtractingNanoResin"],"name":"铒萃取纳米树脂胶囊","tr":"铒萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11424":{"oreDict":["capsuleFilledErbiumExtractingNanoResin"],"name":"满溢的铒萃取纳米树脂胶囊","tr":"满溢的铒萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11425":{"oreDict":["capsuleThuliumExtractingNanoResin"],"name":"铥萃取纳米树脂胶囊","tr":"铥萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11426":{"oreDict":["capsuleFilledThuliumExtractingNanoResin"],"name":"满溢的铥萃取纳米树脂胶囊","tr":"满溢的铥萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11427":{"oreDict":["capsuleYtterbiumExtractingNanoResin"],"name":"镱萃取纳米树脂胶囊","tr":"镱萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11428":{"oreDict":["capsuleFilledYtterbiumExtractingNanoResin"],"name":"满溢的镱萃取纳米树脂胶囊","tr":"满溢的镱萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11429":{"oreDict":["capsuleLutetiumExtractingNanoResin"],"name":"镥萃取纳米树脂胶囊","tr":"镥萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11430":{"oreDict":["capsuleFilledLutetiumExtractingNanoResin"],"name":"满溢的镥萃取纳米树脂胶囊","tr":"满溢的镥萃取纳米树脂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11431":{"oreDict":["capsuleLanthanumChlorideConcentrate"],"name":"氯化镧浓缩液胶囊","tr":"氯化镧浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11432":{"oreDict":["capsulePraseodymiumChlorideConcentrate"],"name":"氯化镨浓缩液胶囊","tr":"氯化镨浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11433":{"oreDict":["capsuleCeriumChlorideConcentrate"],"name":"氯化铈浓缩液胶囊","tr":"氯化铈浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11434":{"oreDict":["capsuleNeodymiumChlorideConcentrate"],"name":"氯化钕浓缩液胶囊","tr":"氯化钕浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11435":{"oreDict":["capsulePromethiumChlorideConcentrate"],"name":"氯化钷浓缩液胶囊","tr":"氯化钷浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11436":{"oreDict":["capsuleSamariumChlorideConcentrate"],"name":"氯化钐浓缩液胶囊","tr":"氯化钐浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11437":{"oreDict":["capsuleEuropiumChlorideConcentrate"],"name":"氯化铕浓缩液胶囊","tr":"氯化铕浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11438":{"oreDict":["capsuleGadoliniumChlorideConcentrate"],"name":"氯化钆浓缩液胶囊","tr":"氯化钆浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11439":{"oreDict":["capsuleTerbiumChlorideConcentrate"],"name":"氯化铽浓缩液胶囊","tr":"氯化铽浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11440":{"oreDict":["capsuleDysprosiumChlorideConcentrate"],"name":"氯化镝浓缩液胶囊","tr":"氯化镝浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11441":{"oreDict":["capsuleHolmiumChlorideConcentrate"],"name":"氯化钬浓缩液胶囊","tr":"氯化钬浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11442":{"oreDict":["capsuleErbiumChlorideConcentrate"],"name":"氯化铒浓缩液胶囊","tr":"氯化铒浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11443":{"oreDict":["capsuleThuliumChlorideConcentrate"],"name":"氯化铥浓缩液胶囊","tr":"氯化铥浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11444":{"oreDict":["capsuleYtterbiumChlorideConcentrate"],"name":"氯化镱浓缩液胶囊","tr":"氯化镱浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11445":{"oreDict":["capsuleLutetiumChlorideConcentrate"],"name":"氯化镥浓缩液胶囊","tr":"氯化镥浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11461":{"oreDict":["capsuleMuddySamariumRareEarthSolution"],"name":"钐稀土浊液胶囊","tr":"钐稀土浊液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11462":{"oreDict":["capsuleSamariumRareEarthMud"],"name":"钐稀土泥浆胶囊","tr":"钐稀土泥浆胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11463":{"oreDict":["capsuleDilutedSamariumRareEarthSolution"],"name":"钐稀土稀释液胶囊","tr":"钐稀土稀释液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11469":{"oreDict":["capsuleChlorinatedRareEarthConcentrate"],"name":"氯化稀土浓缩液胶囊","tr":"氯化稀土浓缩液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11470":{"oreDict":["capsuleChlorinatedRareEarthEnrichedSolution"],"name":"氯化稀土富集液胶囊","tr":"氯化稀土富集液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11471":{"oreDict":["capsuleChlorinatedRareEarthDilutedSolution"],"name":"氯化稀土稀释液胶囊","tr":"氯化稀土稀释液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29904":{"oreDict":["capsuleSodiumTungstate"],"name":"钨酸钠胶囊","tr":"钨酸钠胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29905":{"oreDict":["capsulePhosgene"],"name":"碳酰氯胶囊","tr":"碳酰氯胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29914":{"oreDict":["capsuleNitromethane"],"name":"硝基甲烷胶囊","tr":"硝基甲烷胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29915":{"oreDict":["capsuleO-Xylene"],"name":"1,2-二甲苯胶囊","tr":"1,2-二甲苯胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11500":{"oreDict":["capsuleLiquidHelium"],"name":"液氦胶囊","tr":"液氦胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11004":{"oreDict":["capsuleHafniumTetrachlorideSolution"],"name":"四氯化铪溶液胶囊","tr":"四氯化铪溶液胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:huntercoatsilvered":{"0":{"name":"Witch Hunter Coat (Silvered)","tr":"狩巫衣(镀银)","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"IC2:blockMetal":{"0":{"oreDict":["blockCopper"," blockAnyCopper"],"name":"Copper Block","tr":"铜块","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockTin"],"name":"Tin Block","tr":"锡块","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockBronze"," blockAnyBronze"],"name":"Bronze Block","tr":"青铜块","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockUranium"],"name":"Uranium Block","tr":"铀块","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockLead"],"name":"Lead Block","tr":"铅块","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockSteel"],"name":"Steel Block","tr":"精炼铁块","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:heavyPlate":{"0":{"name":"Wooden Large Plate","tr":"木大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Large Plate","tr":"石大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Large Plate","tr":"铁大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Large Plate","tr":"燧石大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Large Plate","tr":"仙人掌大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Large Plate","tr":"骨头大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Large Plate","tr":"黑曜石大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Large Plate","tr":"地狱岩大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Large Plate","tr":"史莱姆大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Large Plate","tr":"纸大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Large Plate","tr":"钴大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Large Plate","tr":"阿迪特大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Large Plate","tr":"玛玉灵大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Large Plate","tr":"铜大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Large Plate","tr":"青铜大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Large Plate","tr":"耐酸铝大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Large Plate","tr":"钢大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Large Plate","tr":"史莱姆大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Large Plate","tr":"生铁大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Large Plate","tr":"不稳定感应大板","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockHole":{"0":{"name":"Empty Space","tr":"隙间","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewPotin":{"0":{"oreDict":["screwPotin"],"name":"粗青铜合金螺丝","tr":"粗青铜合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Robotics:requester":{"0":{"name":"Requester","tr":"请求机","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CallistoIceDust":{"0":{"oreDict":["dustCallistoIce"],"name":"Callisto Ice Dust","tr":"木卫四冰尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedgemExquisite":{"1":{"oreDict":["gemExquisiteBismutite"],"name":"精致的泡铋","tr":"精致的泡铋","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["gemExquisitePrasiolite"],"name":"精致的堇云石","tr":"精致的堇云石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["craftingIndustrialDiamond"," gemExquisiteCubicZirconia"],"name":"精致的立方氧化锆","tr":"精致的立方氧化锆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["gemExquisiteMagnetoResonatic"],"name":"精致的磁共振石","tr":"精致的磁共振石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["gemExquisiteFluor-Buergerite"],"name":"精致的氟铁电气石","tr":"精致的氟铁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["gemExquisiteChromo-Alumino-Povondraite"],"name":"精致的铬铝电气石","tr":"精致的铬铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["gemExquisiteOrundum"],"name":"精致的合成玉","tr":"精致的合成玉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["gemExquisiteVanadio-Oxy-Dravite"],"name":"精致的钒镁电气石","tr":"精致的钒镁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["gemExquisiteOlenite"],"name":"精致的铝电气石","tr":"精致的铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["gemExquisiteBArTiMaEuSNeK"],"name":"精致的BArTiMaEuSNeK","tr":"精致的BArTiMaEuSNeK","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["gemExquisiteCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"精致的掺铈镥铝石榴石 (Ce:LuAG)","tr":"精致的掺铈镥铝石榴石 (Ce:LuAG)","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["gemExquisiteRedZircon"],"name":"精致的红锆石","tr":"精致的红锆石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["gemExquisiteSalt"],"name":"精致的盐","tr":"精致的盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["gemExquisiteSpodumene"],"name":"精致的锂辉石","tr":"精致的锂辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["gemExquisiteRockSalt"],"name":"精致的岩盐","tr":"精致的岩盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["gemExquisiteFayalite"],"name":"精致的铁橄榄石","tr":"精致的铁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["gemExquisiteForsterite"],"name":"精致的镁橄榄石","tr":"精致的镁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["gemExquisiteHedenbergite"],"name":"精致的钙铁辉石","tr":"精致的钙铁辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["gemExquisiteTiberium"],"name":"精致的泰伯利亚","tr":"精致的泰伯利亚","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["gemExquisiteFluorspar"],"name":"精致的氟石","tr":"精致的氟石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockZirconium":{"0":{"oreDict":["blockZirconium"],"name":"锆块","tr":"锆块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockDarkSteelPressurePlate":{"0":{"name":"Dark Pressure Plate","tr":"玄钢压力板","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dark Pressure Plate","tr":"玄钢压力板","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedPollen":{"0":{"name":"Crated Pollen Cluster","tr":"装箱的花粉","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:pipette":{"0":{"name":"Pipette","tr":"移液管","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockArcanite":{"0":{"oreDict":["blockArcanite"],"name":"奥金块","tr":"奥金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:chamberTierFive":{"0":{"name":"Chamber (Tier 5)","tr":"弹膛(五级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:xRayBlock":{"0":{"name":"Distortion Flame","tr":"透视方块","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockWatertightSteel":{"0":{"oreDict":["blockWatertightSteel"],"name":"防水钢块","tr":"防水钢块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:hunterBagT2":{"0":{"name":"Hunter\u0027s Woven Backpack","tr":"狩猎者编织背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:fluidSigil":{"0":{"name":"","tr":"","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedWheatenCombs":{"0":{"name":"Crated Wheaten Comb","tr":"装箱的麦香蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"gravisuiteneo:itemPlasmaCell":{"27":{"name":"Plasma Cell [WIP]","tr":"等离子体单元 [WIP]","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemDustSmallUN32Fertiliser":{"0":{"oreDict":["dustSmallUN32Fertiliser"],"name":"小堆流体肥料UN-32粉","tr":"小堆流体肥料UN-32粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantumPartLeggings":{"0":{"name":"Quantum Parts \"Leggings\"","tr":"量子护腿外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:packedice_pillar":{"0":{"name":"Packed Ice Pillar","tr":"浮冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Packed Ice Pillar","tr":"浮冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Packed Ice Pillar","tr":"浮冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Packed Ice Pillar","tr":"浮冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Packed Ice Pillar","tr":"浮冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Packed Ice Pillar","tr":"浮冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Packed Ice Pillar","tr":"浮冰柱","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHafnium":{"0":{"oreDict":["ringHafnium"],"name":"铪环","tr":"铪环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateOctiron":{"0":{"oreDict":["plateOctiron"],"name":"八角铁板","tr":"八角铁板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidUraniumDepleted4":{"0":{"name":"Quad Fuel Rod (Depleted Excited Uranium)","tr":"枯竭四联燃料棒(激发铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:ethericsword":{"0":{"name":"Etheric Sword","tr":"天域之剑","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1562}},"BiblioWoodsBoP:BiblioWoodBookcase":{"0":{"name":"Sacred Oak Bookcase","tr":"天域树橡树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Bookcase","tr":"樱桃树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Bookcase","tr":"黑暗树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Bookcase","tr":"杉树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Bookcase","tr":"地狱皮树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Bookcase","tr":"阁楼树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Bookcase","tr":"蓝花楹书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Bookcase","tr":"魔法树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Bookcase","tr":"红杉书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Bookcase","tr":"棕榈树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Bookcase","tr":"松树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Bookcase","tr":"红木书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Bookcase","tr":"柳树书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Bookcase","tr":"桃花心木书架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedKoboldite":{"0":{"oreDict":["crushedCentrifugedKoboldite"],"name":"Centrifuged Crushed Koboldite Ore","tr":"离心妖金矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:bones":{"0":{"name":"Small Bone Segment","tr":"一小截骨头","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Medium Bone Segment","tr":"一截骨头","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Large Bone Segment","tr":"一大截骨头","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidUraniumDepleted2":{"0":{"name":"Dual Fuel Rod (Depleted Excited Uranium)","tr":"枯竭二联燃料棒(激发铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_AdvancedRobeChest":{"0":{"name":"Bewitched Robe","tr":"秘法长袍","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":401}},"DraconicEvolution:draconicDistructionStaff":{"0":{"name":"Draconic Staff of Power","tr":"龙之权杖","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"ThaumicTinkerer:travelSlabFull":{"0":{"name":"Paving Slab of Travel","tr":"旅行者台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:enderQuarry":{"0":{"name":"Ender Quarry","tr":"末影采石场","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:ryeItem":{"0":{"oreDict":["listAllgrain"," cropRye"],"name":"Rye","tr":"黑麦","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:blood.channel":{"0":{"name":"Blood Channel","tr":"血通道","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetErbium":{"0":{"oreDict":["nuggetErbium"],"name":"铒粒","tr":"铒粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemTankSegmenter":{"0":{"name":"Alchemic Segmenter","tr":"炼金分配杖","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:slotTH":{"0":{"name":"Keystone Receptacle","tr":"要石容器","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"FloodLights:carbonLantern":{"0":{"name":"Non-electric Lantern","tr":"节能灯","tab":"泛光灯","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:clayPattern":{"0":{"name":"Ingot Clay Cast","tr":"锭粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tool Rod Clay Cast","tr":"手柄粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Pickaxe Head Clay Cast","tr":"镐头粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Shovel Head Clay Cast","tr":"铲头粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Axe Head Clay Cast","tr":"斧刃粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Sword Blade Clay Cast","tr":"剑刃粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Wide Guard Clay Cast","tr":"宽护手粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Hand Guard Clay Cast","tr":"护手粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Crossbar Clay Cast","tr":"十字柄粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Tool Binding Clay Cast","tr":"绑定结粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Pan Clay Cast","tr":"盘粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Wide Board Clay Cast","tr":"牌板粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Knife Blade Clay Cast","tr":"刀刃粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Chisel Head Clay Cast","tr":"凿刃粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Full Guard Clay Cast","tr":"大型护手粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Arrowhead Clay Cast","tr":"箭头粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"name":"Gem Clay Cast","tr":"宝石粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"27":{"name":"Nugget Clay Cast","tr":"粒粘土铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustPolycrase":{"0":{"oreDict":["dustPolycrase"],"name":"锗铀钇矿粉","tr":"锗铀钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaGun":{"0":{"name":"Mana Blaster","tr":"魔力脉冲枪","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":31}},"appliedenergistics2:tile.SkyStoneBlockSlabBlock.double":{"0":{"name":"Sky Stone Block Slabs","tr":"陨石块台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"JABBA:mover":{"0":{"name":"Dolly","tr":"手推车","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodLongRuthenium":{"0":{"oreDict":["stickLongRuthenium"],"name":"长钌杆","tr":"长钌杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.axe.netherquartz":{"0":{"name":"Quartz Hatchet","tr":"石英手斧","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"miscutils:itemDustSodiumFluoride":{"0":{"oreDict":["dustSodiumFluoride"],"name":"氟化钠粉","tr":"氟化钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:WandCores":{"0":{"name":"Tainted Rod","tr":"腐化杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Infernal Rod","tr":"炼狱杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Eldritch Rod","tr":"异域杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Blood Rod","tr":"血腥杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Witchwood Rod","tr":"巫魂木杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Profane Rod","tr":"渎神杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Inert Blood Rod","tr":"惰性血腥杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Livingwood Rod","tr":"活木杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Dormant Livingwood Rod","tr":"休眠活木杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Blood Staff Core","tr":"血腥杖芯","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Witchwood Staff Core","tr":"巫魂木杖芯","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Dreamwood Rod","tr":"梦之木杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Silent Dreamwood Rod","tr":"休眠梦之木杖柄","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Dreamwood Staff Core","tr":"梦之木杖芯","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA7Slab":{"0":{"name":"Metamorphic Mesa Stone Slab","tr":"变质高原石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_north_lit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockNetherRuneMob":{"0":{"name":"Runed Obsidian (Zombie)","tr":"符文黑曜石(僵尸)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Runed Obsidian (Blaze)","tr":"符文黑曜石(烈焰人)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Runed Obsidian (Ghast)","tr":"符文黑曜石(恶魂)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Runed Obsidian (Skull)","tr":"符文黑曜石(骷髅)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Runed Obsidian (Slime)","tr":"符文黑曜石(史莱姆)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Runed Obsidian (Bat)","tr":"符文黑曜石(蝙蝠)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Runed Obsidian (Wisp)","tr":"符文黑曜石(精灵)","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotHastelloyC276":{"0":{"oreDict":["ingotHotHastelloyC276"],"name":"热哈斯特洛依合金-C276锭","tr":"热哈斯特洛依合金-C276锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateBotmium":{"0":{"oreDict":["plateBotmium"],"name":"博特姆合金板","tr":"博特姆合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:candiedgingerItem":{"0":{"oreDict":["foodCandiedginger"],"name":"Candied Ginger","tr":"香甜姜糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:curryItem":{"0":{"oreDict":["foodCurry"],"name":"Curry Rice","tr":"咖喱饭","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.signal.label":{"0":{"name":"Signal Label","tr":"信号标签","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTantalumCarbide":{"0":{"oreDict":["plateTantalumCarbide"],"name":"碳化钽板","tr":"碳化钽板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsgold":{"0":{"name":"Golden Fluid Pipe","tr":"金质流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:marrowberryseedItem":{"0":{"oreDict":["listAllseed"],"name":"Marrow Berry Seed","tr":"骨髓浆果种子","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AdvancedCokeOvenBrickDust":{"0":{"name":"Advanced Coke Oven Brick Dust","tr":"高级焦炉砖粉","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:reactorEnergyInjector":{"0":{"name":"Reactor Energy Injector","tr":"反应堆能量喷射器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtZirconium":{"0":{"oreDict":["frameGtZirconium"],"name":"锆框架","tr":"锆框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallArcanite":{"0":{"oreDict":["dustSmallArcanite"],"name":"小堆奥金粉","tr":"小堆奥金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:AlchemicalWizardrytile.blockSpellEffect":{"0":{"name":"Crucible of Fire","tr":"火焰效应器","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ice Maker","tr":"冰霜效应器","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Wind Generator","tr":"风暴效应器","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Earth Former","tr":"尘土效应器","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.glowstoneCell":{"0":{"name":"萤石燃料棒","tr":"萤石燃料棒","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":10001}},"harvestcraft:barleyseedItem":{"0":{"oreDict":["seedBarley"," listAllseed"],"name":"Barley Seed","tr":"大麦种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.TesterItem":{"0":{"name":"ItemStack Name Tester","tr":"物品名检测器","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"TGregworks:tGregToolPartLargePlate":{"1536":{"name":"精金 Large Plate","tr":"精金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Large Plate","tr":"神秘蓝金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Large Plate","tr":"琥珀 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Large Plate","tr":"纯镃 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Large Plate","tr":"谐镃 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Large Plate","tr":"聚氯乙烯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Large Plate","tr":"永恒 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Large Plate","tr":"磁物质 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Large Plate","tr":"赛特斯石英 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Large Plate","tr":"暗影秘银 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Large Plate","tr":"玄铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Large Plate","tr":"戴斯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Large Plate","tr":"铿铀 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Large Plate","tr":"通流琥珀金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Large Plate","tr":"末影粗胚 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Large Plate","tr":"末影(te) 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Large Plate","tr":"炽热的钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Large Plate","tr":"火石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Large Plate","tr":"力量 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Large Plate","tr":"石墨 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Large Plate","tr":"石墨烯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Large Plate","tr":"注魔金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Large Plate","tr":"风之魔晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Large Plate","tr":"火之魔晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Large Plate","tr":"地之魔晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Large Plate","tr":"水之魔晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Large Plate","tr":"混沌魔晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Large Plate","tr":"秩序魔晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Large Plate","tr":"玉 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Large Plate","tr":"碧玉 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Large Plate","tr":"陨铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Large Plate","tr":"陨钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Large Plate","tr":"硅岩 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Large Plate","tr":"硅岩合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Large Plate","tr":"富集硅岩 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Large Plate","tr":"超能硅岩 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Large Plate","tr":"下界石英 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Large Plate","tr":"下界之星 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Large Plate","tr":"三钛 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Large Plate","tr":"虚空 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Large Plate","tr":"胶木 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Large Plate","tr":"幽冥剧毒结晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Large Plate","tr":"强化 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Large Plate","tr":"铱锇合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Large Plate","tr":"阳光化合物 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Large Plate","tr":"魂金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Large Plate","tr":"蓝黄玉 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Large Plate","tr":"黄铜 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Large Plate","tr":"白铜 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Large Plate","tr":"深渊铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Large Plate","tr":"钻石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Large Plate","tr":"琥珀金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Large Plate","tr":"绿宝石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Large Plate","tr":"强化混合晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Large Plate","tr":"混合晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Large Plate","tr":"绿色蓝宝石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Large Plate","tr":"殷钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Large Plate","tr":"坎塔尔合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Large Plate","tr":"镁铝合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Large Plate","tr":"镍铬合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Large Plate","tr":"玄钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Large Plate","tr":"生铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Large Plate","tr":"聚乙烯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Large Plate","tr":"环氧树脂 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Large Plate","tr":"硅橡胶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Large Plate","tr":"聚己内酰胺 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Large Plate","tr":"聚四氟乙烯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Large Plate","tr":"蓝宝石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Large Plate","tr":"不锈钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Large Plate","tr":"坦桑石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Large Plate","tr":"锡铁合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Large Plate","tr":"黄玉 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Large Plate","tr":"哈氏合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Large Plate","tr":"锻铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Large Plate","tr":"铁木 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Large Plate","tr":"橄榄石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Large Plate","tr":"蛋白石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Large Plate","tr":"紫水晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Large Plate","tr":"暗影金属 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Large Plate","tr":"暗影铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Large Plate","tr":"暗影钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Large Plate","tr":"钢叶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Large Plate","tr":"骑士金属 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Large Plate","tr":"标准纯银 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Large Plate","tr":"玫瑰金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Large Plate","tr":"黑青铜 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Large Plate","tr":"铋青铜 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Large Plate","tr":"黑钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Large Plate","tr":"红钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Large Plate","tr":"蓝钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Large Plate","tr":"大马士革钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Large Plate","tr":"充能合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Large Plate","tr":"脉冲合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Large Plate","tr":"星辰银 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Large Plate","tr":"钴黄铜 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Large Plate","tr":"红石榴石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Large Plate","tr":"黄石榴石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Large Plate","tr":"温特姆 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Large Plate","tr":"黑花岗岩 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Large Plate","tr":"红花岗岩 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Large Plate","tr":"白石棉 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Large Plate","tr":"雄黄 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Large Plate","tr":"磁化铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Large Plate","tr":"磁化钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Large Plate","tr":"磁化钕 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Large Plate","tr":"碳化钨 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Large Plate","tr":"钒钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Large Plate","tr":"高速钢-G 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Large Plate","tr":"高速钢-E 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Large Plate","tr":"高速钢-S 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Large Plate","tr":"深铅 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Large Plate","tr":"量子 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Large Plate","tr":"深空秘银 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Large Plate","tr":"黑钚 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Large Plate","tr":"木卫四冰 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Large Plate","tr":"硬铝 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Large Plate","tr":"奥利哈钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Large Plate","tr":"三元金属 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Large Plate","tr":"聚苯硫醚 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Large Plate","tr":"聚苯乙烯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Large Plate","tr":"丁苯橡胶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Large Plate","tr":"镍锌铁氧体 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Large Plate","tr":"纤维强化的环氧树脂 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Large Plate","tr":"磁化钐 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Large Plate","tr":"无尽催化剂 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Large Plate","tr":"聚苯并咪唑 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Large Plate","tr":" 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Large Plate","tr":"钛铂钒合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Large Plate","tr":"时空 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Large Plate","tr":"大理石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Large Plate","tr":"神秘水晶 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Large Plate","tr":"末影钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Large Plate","tr":"复合粘土 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Large Plate","tr":"晶化合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Large Plate","tr":"旋律合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Large Plate","tr":"恒星合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Large Plate","tr":"晶化粉红史莱姆 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Large Plate","tr":"充能银 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Large Plate","tr":"生动合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Large Plate","tr":"灵宝 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Large Plate","tr":"超时空金属 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Large Plate","tr":"活石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Large Plate","tr":"盖亚之魂 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Large Plate","tr":"活木 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Large Plate","tr":"梦之木 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Large Plate","tr":"泡铋 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Large Plate","tr":"立方氧化锆 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Large Plate","tr":"氟铁电气石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Large Plate","tr":"铬铝电气石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Large Plate","tr":"钒镁电气石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Large Plate","tr":"铝电气石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Large Plate","tr":"红锆石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Large Plate","tr":"铁橄榄石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Large Plate","tr":"镁橄榄石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Large Plate","tr":"钙铁辉石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Large Plate","tr":"钍-232 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Large Plate","tr":"堇云石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Large Plate","tr":"磁共振石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Large Plate","tr":"锎 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Large Plate","tr":"BArTiMaEuSNeK 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Large Plate","tr":"钌 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Large Plate","tr":"铑 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Large Plate","tr":"镀铑钯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Large Plate","tr":"泰伯利亚 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Large Plate","tr":"钌铱合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Large Plate","tr":"氟石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Large Plate","tr":"高耐久性复合钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Large Plate","tr":"硬钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Large Plate","tr":"合成玉 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Large Plate","tr":"原子分离催化剂 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Large Plate","tr":"极不稳定硅岩 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Large Plate","tr":"锌钍合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Large Plate","tr":"锆锡合金-4 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Large Plate","tr":"锆锡合金-2 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Large Plate","tr":"耐热铬铁合金-903 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Large Plate","tr":"精金合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Large Plate","tr":"MAR-M200特种钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Large Plate","tr":"MAR-Ce-M200特种钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Large Plate","tr":"氯化锂 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Large Plate","tr":"信素 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Large Plate","tr":"流明 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Large Plate","tr":"阿瑟锡 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Large Plate","tr":"钛钼合金β-C 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Large Plate","tr":"大力合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Large Plate","tr":"光素 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Large Plate","tr":"对立合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Large Plate","tr":"稀有金属合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Large Plate","tr":"富集硅岩合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Large Plate","tr":"亚稳态鿫 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Large Plate","tr":"调律源金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Large Plate","tr":"魔钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Large Plate","tr":"泰拉钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Large Plate","tr":"源质钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Large Plate","tr":"磁流体约束恒星物质 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Large Plate","tr":"白矮星物质 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Large Plate","tr":"黑矮星物质 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Large Plate","tr":"宇宙素 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Large Plate","tr":"铝 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Large Plate","tr":"铍 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Large Plate","tr":"铋 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Large Plate","tr":"碳 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Large Plate","tr":"铬 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Large Plate","tr":"金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Large Plate","tr":"铱 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Large Plate","tr":"铅 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Large Plate","tr":"锰 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Large Plate","tr":"钼 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Large Plate","tr":"钕 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Large Plate","tr":"中子 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Large Plate","tr":"镍 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Large Plate","tr":"锇 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Large Plate","tr":"钯 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Large Plate","tr":"铂 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Large Plate","tr":"钚-239 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Large Plate","tr":"钚-241 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Large Plate","tr":"银 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Large Plate","tr":"钍 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Large Plate","tr":"钛 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Large Plate","tr":"钨 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Large Plate","tr":"铀-238 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Large Plate","tr":"铀-235 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Large Plate","tr":"红宝石 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Large Plate","tr":"红石合金 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Large Plate","tr":"终末 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Large Plate","tr":"导电铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Large Plate","tr":"磁钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Large Plate","tr":"钨钢 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Large Plate","tr":"烈焰 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Large Plate","tr":"脉冲铁 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Large Plate","tr":"龙 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Large Plate","tr":"觉醒龙 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Large Plate","tr":"褐铜 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Large Plate","tr":"山铜 大板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernShovel":{"0":{"name":"Shovel of the Wyvern","tr":"双足飞龙铲","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"harvestcraft:bakewareItem":{"0":{"oreDict":["toolBakeware"],"name":"Bakeware","tr":"烤盘","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedJungleSapling":{"0":{"name":"Crated Jungle Sapling","tr":"装箱的丛林树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:ic2PowerUnit":{"0":{"name":"IC2 Stargate Power Unit","tr":"IC2星门能量单元","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"adventurebackpack:melonJuiceBottle":{"0":{"name":"Melon Juice Bottle","tr":"西瓜汁","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:baseTierOneBlock":{"0":{"name":"Turret Base (Tier 2)","tr":"炮塔基座(二级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:microHeater":{"0":{"name":"Micro-Heater","tr":"微型加热器","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TCetiESeaweedExtract":{"0":{"name":"TCetiE-Seaweed Extract","tr":"鲸鱼座T星E藻类提取物","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHastelloyX":{"0":{"oreDict":["dustHastelloyX"],"name":"哈斯特洛依合金-X粉","tr":"哈斯特洛依合金-X粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHastelloyW":{"0":{"oreDict":["dustHastelloyW"],"name":"哈斯特洛依合金-W粉","tr":"哈斯特洛依合金-W粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:sapling":{"0":{"oreDict":["treeSapling"],"name":"White Poplar Sapling","tr":"白杨树苗","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHastelloyN":{"0":{"oreDict":["dustHastelloyN"],"name":"哈斯特洛依合金-N粉","tr":"哈斯特洛依合金-N粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:engineBlock":{"0":{"name":"Redstone Engine","tr":"红石引擎","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stirling Engine","tr":"斯特林引擎","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Combustion Engine","tr":"燃油引擎","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Creative Engine","tr":"创造引擎","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleLithium7":{"0":{"oreDict":["plateDoubleLithium7"],"name":"双重锂-7板","tr":"双重锂-7板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"TConstruct:swordBlade":{"0":{"name":"Wooden Sword Blade","tr":"木剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Sword Blade","tr":"石剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Sword Blade","tr":"铁剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Sword Blade","tr":"燧石剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Sword Blade","tr":"仙人掌剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Sword Blade","tr":"骨头剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Sword Blade","tr":"黑曜石剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Sword Blade","tr":"地狱岩剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Sword Blade","tr":"史莱姆剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Sword Blade","tr":"纸剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Sword Blade","tr":"钴剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Sword Blade","tr":"阿迪特剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Sword Blade","tr":"玛玉灵剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Sword Blade","tr":"铜剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Sword Blade","tr":"青铜剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Sword Blade","tr":"耐酸铝剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Sword Blade","tr":"钢剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Sword Blade","tr":"史莱姆剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Sword Blade","tr":"生铁剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Sword Blade","tr":"不稳定感应剑刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:dark_portal":{"0":{"name":"Portal to The Deep Dark","tr":"漆黑之门","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Portal to The Last Millenium","tr":"传送门:深渊世界","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"SpiceOfLife:lunchbag":{"0":{"name":"Lunch Bag","tr":"午餐袋","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateMaragingSteel350":{"0":{"oreDict":["plateMaragingSteel350"],"name":"马氏体时效钢350板","tr":"马氏体时效钢350板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconiumBlend":{"0":{"name":"Draconium Blend (Depreciated)","tr":"混合龙尘(已移除)","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:titanblocks":{"0":{"oreDict":["rockSpace"," rockTitan"],"name":"Titan Surface Block","tr":"土卫六地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockTitan"],"name":"Titan Subsurface Block","tr":"土卫六地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockSpace"," rockTitan"],"name":"Titan Stone","tr":"土卫六石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:dawnScribeTool":{"0":{"name":"Elemental Inscription Tool: Dawn","tr":"元素铭文:破晓","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":11}},"miscutils:itemCellPlasmaProtactinium":{"0":{"oreDict":["cellPlasmaProtactinium"],"name":"镤等离子体单元","tr":"镤等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:beealyzer":{"0":{"name":"Beealyzer","tr":"蜜蜂分析仪","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:radishseedItem":{"0":{"oreDict":["seedRadish"," listAllseed"],"name":"Radish Seed","tr":"小红萝卜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:ErrorSensorCover":{"0":{"name":"Error Sensor Cover","tr":"错误传感器盖板","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ArcaneDoorKey":{"0":{"name":"Iron Arcane Key","tr":"铁钥匙","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Gold Arcane Key","tr":"金钥匙","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:ravaged_brick_stairs":{"0":{"name":"Ravaged Brick Stairs","tr":"毁灭砖楼梯","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:cubit":{"0":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Cubits","tr":"立方休","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:AlchemicalWizardrytile.blockSpellParadigm":{"0":{"name":"Particle Generator","tr":"抛射法术基架","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Self Augmentator","tr":"自体法术基架","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Melee Aggregator","tr":"格斗法术基架","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Tool Forger","tr":"工具法术基架","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:museliItem":{"0":{"oreDict":["foodMuseli"],"name":"Museli","tr":"杂锦果麦","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:damageAmpAddon":{"0":{"name":"Addon - Damage Boost","tr":"附件-攻击增强","tab":"模块化炮塔","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockPlutonium238":{"0":{"oreDict":["blockPlutonium238"],"name":"钚-238块","tr":"钚-238块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:liquid.blood":{"0":{"name":"Blood","tr":"血","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.01.name":{"1":{"name":"§9Charge Pack [LV]§7","tr":"§9充电工具包[LV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [LV]§7","tr":"§9充电工具包[LV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"IC2:itemPartIndustrialDiamond":{"0":{"oreDict":["gemDiamond"," craftingIndustrialDiamond"],"name":"Industrial Diamond","tr":"工业钻石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaRadium":{"0":{"oreDict":["cellPlasmaRadium"],"name":"镭等离子体单元","tr":"镭等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:melonyogurtItem":{"0":{"oreDict":["foodMelonyogurt"],"name":"Melon Yogurt","tr":"西瓜酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockGrisium":{"0":{"oreDict":["blockGrisium"],"name":"灰钛合金块","tr":"灰钛合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemArmorHazmatChestplateEx":{"0":{"name":"Advanced Hazmat Suit","tr":"高级防化服","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":257}},"AWWayofTime:standardBindingAgent":{"0":{"name":"Standard Binding Agent","tr":"[标准的]粘合剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.spacesuit_leg":{"0":{"name":"SpaceSuit Leggins","tr":"宇航裤","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":451}},"Botania:stone1SlabFull":{"0":{"name":"Basalt Slab","tr":"玄武岩台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.oxygenGear":{"0":{"name":"Oxygen Gear","tr":"供氧设备","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.UnfiredCokeOvenBrick":{"0":{"name":"Unfired Coke Oven Brick","tr":"未烧制的焦炉砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberryjuiceItem":{"0":{"oreDict":["listAlljuice"," foodRaspberryjuice"],"name":"Raspberry Juice","tr":"树莓汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureAgarditeCd":{"0":{"oreDict":["dustPureAgarditeCd"],"name":"Purified Agardite (Cd) Dust","tr":"洁净菱铁矿(Cd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorTantalloy60":{"0":{"oreDict":["rotorTantalloy60"],"name":"钽钨合金-60转子","tr":"钽钨合金-60转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:frameTemporal":{"0":{"name":"Temporal Frame","tr":"瞬息框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":301}},"miscutils:itemRotorTantalloy61":{"0":{"oreDict":["rotorTantalloy61"],"name":"钽钨合金-61转子","tr":"钽钨合金-61转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:ArcaneCake":{"0":{"name":"Thaumic Cake","tr":"奥法蛋糕","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.obsidian":{"0":{"name":"Molten Obsidian","tr":"熔融黑曜石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.iron_sliding_door":{"0":{"name":"Iron Glass Door","tr":"铁框玻璃门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:item.ToolBiometricCard":{"0":{"name":"Biometric Card","tr":"身份卡","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:stair.ghostwood":{"0":{"oreDict":["stairWood"],"name":"Ghostwood Stairs","tr":"幽魂树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cornonthecobItem":{"0":{"oreDict":["foodCornonthecob"],"name":"Corn on the Cob","tr":"玉米棒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:cabinet":{"0":{"name":"Cabinet","tr":"储藏柜","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:mudBricks":{"0":{"name":"Mud Bricks","tr":"泥巴砖块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:catfishrawItem":{"0":{"oreDict":["listAllfishraw"," foodCatfishraw"],"name":"Raw Catfish","tr":"生鲶鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:prismarine0SlabFull":{"0":{"name":"Prismarine Slab","tr":"海晶石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyEglinSteelBaseCompound":{"0":{"oreDict":["dustTinyEglinSteelBaseCompound"],"name":"小撮埃格林钢粗胚粉","tr":"小撮埃格林钢粗胚粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:halfCustom4":{"0":{"name":"Framed Drawers 2x2","tr":"小型自定义抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Quad_Thoriumcell":{"0":{"name":"四联燃料棒(钍)","tr":"四联燃料棒(钍)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"StorageDrawers:halfCustom2":{"0":{"name":"Framed Drawers 1x2","tr":"小型自定义抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pumpkinbreadItem":{"0":{"oreDict":["foodPumpkinbread"],"name":"Pumpkin Bread","tr":"南瓜面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBlankI":{"0":{"name":"Coin \"Blank 10\"","tr":"空白硬币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:cabinetcorner":{"0":{"name":"Cabinet Corner","tr":"储藏柜转角","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:trailmixItem":{"0":{"oreDict":["foodTrailmix"],"name":"Trail Mix","tr":"什锦蜜饯","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsclay":{"0":{"name":"Clay Transport Pipe","tr":"粘土管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:itemArmorQuantumChestplate":{"1":{"name":"Infused Quantum Chestplate","tr":"注魔量子胸甲","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Infused Quantum Chestplate","tr":"注魔量子胸甲","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"thaumicbases:fociExperience":{"0":{"name":"Wand Focus: Experience","tr":"法杖核心:经验","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:ichorclothLegsGem":{"0":{"name":"Leggings of the Burning Mantle","tr":"熔岩地幔之护腿","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:item.ToolMassCannon":{"0":{"name":"Matter Cannon","tr":"物质炮","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:itemDustSmallHS188A":{"0":{"oreDict":["dustSmallHS188A"],"name":"小堆HS188-A粉","tr":"小堆HS188-A粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:wisteria":{"0":{"name":"Wisteria","tr":"紫藤","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_FermentedBacterialSludge_bucket":{"0":{"name":"Bucket of Fermented Bacterial Sludge","tr":"桶装发酵的细菌污泥","tab":"GTNH: 流体","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:customBrick3SlabFull":{"0":{"name":"Roof Tile Slab","tr":"瓦块台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:BW_GlasBlocks2":{"0":{"oreDict":["blockGlassUMV"],"name":"Transcendentally Reinforced Borosilicate Glass Block","tr":"超时空强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:Quartz Sword":{"0":{"name":"Quartz Sword","tr":"石英剑","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemCellPlasmaRuthenium":{"0":{"oreDict":["cellPlasmaRuthenium"],"name":"钌等离子体单元","tr":"钌等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodFancyWorkbench":{"0":{"name":"Bloodwood Fancy Workbench","tr":"血树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Fancy Workbench","tr":"黑暗树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Fancy Workbench","tr":"桉树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Fancy Workbench","tr":"熔融树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Fancy Workbench","tr":"熔融树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Fancy Workbench","tr":"车桑子树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Fancy Workbench","tr":"枫树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Fancy Workbench","tr":"紫檀树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Fancy Workbench","tr":"红木精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Fancy Workbench","tr":"银铃树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Fancy Workbench","tr":"樱花树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Fancy Workbench","tr":"核桃树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Fancy Workbench","tr":"柳树精致工作台","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cottagepieItem":{"0":{"oreDict":["foodCottagepie"],"name":"Cottage Pie","tr":"农舍派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:jarSeal":{"0":{"name":"Dark Jar Binding Seal","tr":"黑色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Red Jar Binding Seal","tr":"红色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Jar Binding Seal","tr":"绿色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Brown Jar Binding Seal","tr":"棕色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Jar Binding Seal","tr":"蓝色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Purple Jar Binding Seal","tr":"紫色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Cyan Jar Binding Seal","tr":"青色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Light Gray Jar Binding Seal","tr":"淡灰色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Gray Jar Binding Seal","tr":"灰色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Jar Binding Seal","tr":"粉色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Jar Binding Seal","tr":"黄绿色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Yellow Jar Binding Seal","tr":"黄色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Light Blue Jar Binding Seal","tr":"淡蓝色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Jar Binding Seal","tr":"品红色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Orange Jar Binding Seal","tr":"橙色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Pale Jar Binding Seal","tr":"白色罐子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:minerBag":{"0":{"name":"Miner\u0027s Backpack","tr":"采矿者背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"computronics:computronics.audioCable":{"0":{"name":"Audio Cable","tr":"音频线缆","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:foliage":{"0":{"name":"Duckweed","tr":"浮萍","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["cropGrass"],"name":"Short Grass","tr":"小草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cropGrass"],"name":"Medium Grass","tr":"矮草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Flax","tr":"亚麻","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Bush","tr":"灌木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["cropGrass"],"name":"Sprout","tr":"野菜","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["cropGrass"],"name":"Poison Ivy","tr":"毒藤","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Berry Bush","tr":"浆果灌木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["cropGrass"],"name":"Shrub","tr":"灌木","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["cropGrass"],"name":"Wheat Grass","tr":"麦草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["cropGrass"],"name":"Damp Grass","tr":"湿草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["cropGrass"],"name":"Koru","tr":"银蕨","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["cropGrass"],"name":"Clover Patch","tr":"苜蓿地","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Leaf Pile","tr":"树叶堆","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Dead Leaf Pile","tr":"枯叶堆","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peasItem":{"0":{"oreDict":["cropPeas"," listAllveggie"," listAllgreenveggie"],"name":"Peas","tr":"豌豆","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.bow.fusewood":{"0":{"name":"Fusewood Bow","tr":"熔融树弓","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":29}},"miscutils:itemIngotTriniumNaquadahAlloy":{"0":{"oreDict":["ingotTriniumNaquadahAlloy"],"name":"三元硅岩合金锭","tr":"三元硅岩合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:icecreamItem":{"0":{"oreDict":["foodIcecream"," listAllicecream"],"name":"Ice Cream","tr":"冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:halfDrawers4_0":{"0":{"oreDict":["drawerBasic"],"name":"Compact Redwood Drawers 2x2","tr":"小型红木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Fir Drawers 2x2","tr":"小型冷杉抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Acacia Drawers 2x2","tr":"小型刺槐抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Cypress Drawers 2x2","tr":"小型柏树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Japanese Maple Drawers 2x2","tr":"小型日本枫树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Rainbow Eucalyptus Drawers 2x2","tr":"小型彩虹桉树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Autumn Drawers 2x2","tr":"小型秋树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Bald Cypress Drawers 2x2","tr":"小型落羽松抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Sakura Drawers 2x2","tr":"小型樱花树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:halfDrawers4_1":{"0":{"oreDict":["drawerBasic"],"name":"Compact Yellow Drawers 2x2","tr":"小型黄色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact White Drawers 2x2","tr":"小型白色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Red Drawers 2x2","tr":"小型红色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Grey Drawers 2x2","tr":"小型灰色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Greatwood Drawers 2x2","tr":"小型宏伟之木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Silverwood Drawers 2x2","tr":"小型银木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Compact Rowan Drawers 2x2","tr":"小型山梨木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Compact Alder Drawers 2x2","tr":"小型赤杨木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Compact Hawthorn Drawers 2x2","tr":"小型山楂木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Compact Treated Wood Drawers 2x2","tr":"小型防腐木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Compact Livingwood Drawers 2x2","tr":"小型活木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Compact Dreamwood Drawers 2x2","tr":"小型梦之木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:moderatelyCrackedHeavyNaquadahFuel":{"0":{"name":"Moderately Cracked Heavy Naquadah Fuel","tr":"中度裂化重质硅岩燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NanoPlatedLeggings":{"0":{"name":"Nano Plated Leggings","tr":"纳米镀层护腿","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureLafossaite":{"0":{"oreDict":["dustImpureLafossaite"],"name":"Impure Lafossaite Dust","tr":"含杂铊盐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Dark Leaves":{"0":{"oreDict":["treeLeaves"],"name":"Darkwood Leaves","tr":"黑暗树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Darkwood Leaves","tr":"黑暗树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Darkwood Leaves","tr":"黑暗树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Fusewood Leaves","tr":"熔融树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:figjellyItem":{"0":{"oreDict":["foodFigjelly"],"name":"Fig Jelly","tr":"无花果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:mossy_cobblestone":{"1":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Mossy Cobblestone","tr":"苔石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemLeggingsVoid":{"0":{"name":"Void Leggings","tr":"虚空护腿","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":151}},"Botania:stone0Stairs":{"0":{"name":"Andesite Stairs","tr":"安山岩楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetPolonium":{"0":{"oreDict":["nuggetPolonium"],"name":"钋粒","tr":"钋粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:accessPoint":{"0":{"name":"§cAccess Point§7","tr":"§c无线接入点§7","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"Baubles:Ring":{"0":{"name":"Miner\u0027s Ring","tr":"矿工指环","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateHeLiCoPtEr":{"0":{"oreDict":["plateHeLiCoPtEr"],"name":"HeLiCoPtEr板","tr":"HeLiCoPtEr板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ThaumiumDrill":{"1":{"name":"Thaumium Drill","tr":"神秘钻头","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Thaumium Drill","tr":"神秘钻头","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:hardenedleatherhelmItem":{"0":{"name":"Hardened Leather Helm","tr":"硬化皮革头盔","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":166}},"Thaumcraft:ItemLeggingsCultistLeaderPlate":{"0":{"name":"Crimson Praetor Greaves","tr":"血腥主教护胫","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":601}},"Forestry:cratedDarkOakWood":{"0":{"name":"Crated Dark Oak Wood","tr":"装箱的深色橡木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:juicerItem":{"0":{"oreDict":["toolJuicer"],"name":"Juicer","tr":"榨汁机","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Ztones:tile.zomeBlock":{"0":{"name":"Zome ⓪","tr":"Zome ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zome ①","tr":"Zome ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zome ②","tr":"Zome ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zome ③","tr":"Zome ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zome ④","tr":"Zome ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zome ⑤","tr":"Zome ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zome ⑥","tr":"Zome ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zome ⑦","tr":"Zome ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zome ⑧","tr":"Zome ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zome ⑨","tr":"Zome ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zome ⑩","tr":"Zome ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zome ⑪","tr":"Zome ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zome ⑫","tr":"Zome ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zome ⑬","tr":"Zome ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zome ⑭","tr":"Zome ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zome ⑮","tr":"Zome ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:igneous_rock_ore":{"0":{"oreDict":["oreHeeIgneousRock"],"name":"Igneous Rock Ore","tr":"火成岩矿石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTriniumNaquadahCarbonite":{"0":{"oreDict":["ringTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金环","tr":"掺碳三元硅岩合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnderEgg":{"0":{"name":"Ender Egg","tr":"末影蛋","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:funnel":{"0":{"name":"Essentia Funnel","tr":"源质漏斗","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltCinobiteA243":{"0":{"oreDict":["boltCinobiteA243"],"name":"西诺柏A243螺栓","tr":"西诺柏A243螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Empty1080SpCell":{"0":{"name":"1080K Space Cell","tr":"1080K空间冷却单元外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemFertilizer":{"0":{"name":"Fertilizer","tr":"肥料","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:kingKey":{"0":{"name":"Key of the King\u0027s Law","tr":"王之宝钥","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:spinachpieItem":{"0":{"oreDict":["foodSpinachpie"],"name":"Spinach Pie","tr":"菠菜派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hotwingsItem":{"0":{"oreDict":["foodHotwings"],"name":"Hot Wings","tr":"香辣鸡翅","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallFermium":{"0":{"oreDict":["dustSmallFermium"],"name":"小堆镄粉","tr":"小堆镄粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSodiumNitrate":{"0":{"oreDict":["dustSodiumNitrate"],"name":"硝酸钠粉","tr":"硝酸钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:rocketTurret":{"0":{"name":"Rocket Launcher Turret","tr":"火箭发射炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:figbarItem":{"0":{"oreDict":["foodFigbar"],"name":"Fig Bar","tr":"无花果馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:masterStone":{"0":{"name":"Master Ritual Stone","tr":"主仪式石","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.mazeMap":{"0":{"name":"Maze Map #0","tr":"迷宫地图 #0","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:redstone_block":{"1":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Redstone Block","tr":"红石块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetPlutonium238":{"0":{"oreDict":["nuggetPlutonium238"],"name":"钚-238粒","tr":"钚-238粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.darkSteel_leggings":{"0":{"name":"Dark Leggings","tr":"玄钢护腿","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":526}},"miscutils:itemIngotTitansteel":{"0":{"oreDict":["ingotTitansteel"],"name":"泰坦精钢锭","tr":"泰坦精钢锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:onionhamburgerItem":{"0":{"oreDict":["foodOnionhamburger"],"name":"Onion Hamburger","tr":"洋葱汉堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SawBladeArdite":{"0":{"oreDict":["toolHeadSawArdite"],"name":"Ardite Saw Blade","tr":"阿迪特锯刃","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.cagelamp2":{"0":{"name":"White Cage Lamp","tr":"白色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Cage Lamp","tr":"橙色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Cage Lamp","tr":"品红色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Cage Lamp","tr":"淡蓝色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Cage Lamp","tr":"黄色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Cage Lamp","tr":"黄绿色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Cage Lamp","tr":"粉色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Grey Cage Lamp","tr":"灰色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Grey Cage Lamp","tr":"淡灰色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Cage Lamp","tr":"青色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Cage Lamp","tr":"紫色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Cage Lamp","tr":"蓝色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Cage Lamp","tr":"棕色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Cage Lamp","tr":"绿色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Cage Lamp","tr":"红色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Cage Lamp","tr":"黑色笼灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:overgrowthSeed":{"0":{"name":"Overgrowth Seed","tr":"增生之种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:HandMirror":{"0":{"name":"Magic Hand Mirror","tr":"魔力手镜","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"ForbiddenMagic:Boundwell":{"0":{"name":"Bound Scribing Tools","tr":"绑定笔与墨","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":101}},"gregtech:gt.Quad_NaquadahcellDep":{"0":{"name":"枯竭四联燃料棒(硅岩)","tr":"枯竭四联燃料棒(硅岩)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"irontank:silverGoldUpgrade":{"0":{"name":"Steel to Gold Tank Upgrade","tr":"储罐升级:钢\u003e金","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:proteusTChestT7":{"0":{"name":"Treasure Chest Tier 6","tr":"6阶宝箱","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:cursedearthside":{"0":{"name":"Cursed Earth","tr":"诅咒之土","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesAddons:duplicator":{"0":{"name":"Manager Duplicator","tr":"管理器复制器","tab":"史蒂夫工厂管理","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemPartAlloy":{"0":{"oreDict":["plateAlloyAdvanced"],"name":"Advanced Alloy","tr":"高级合金","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:SpaceTimeConstraintor":{"0":{"name":"SpaceTime Constraintor T1","tr":"时空约束器T1","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"SpaceTime Constraintor T2","tr":"时空约束器T2","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"SpaceTime Constraintor T3","tr":"时空约束器T3","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockIronScaffold":{"0":{"name":"Iron Scaffold","tr":"铁质脚手架","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.airLockSeal":{"0":{"name":"Air Lock Seal","tr":"气密闸","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:acentauribbsubgrunt":{"0":{"oreDict":["rockSpace"," rockCentauriA"],"name":"α Centauri Bb Subsurface Block","tr":"半人马Bb地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:purple_kitchen_floor":{"0":{"name":"Purple Kitchen Floor","tr":"紫色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.dummyblock":{"0":{"name":"tile.dummyblock.null.name","tr":"tile.dummyblock.null.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHastelloyN":{"0":{"oreDict":["screwHastelloyN"],"name":"哈斯特洛依合金-N螺丝","tr":"哈斯特洛依合金-N螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:cstonepressureplate":{"0":{"name":"Pressure Plate","tr":"压力板","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHastelloyW":{"0":{"oreDict":["screwHastelloyW"],"name":"哈斯特洛依合金-W螺丝","tr":"哈斯特洛依合金-W螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHastelloyX":{"0":{"oreDict":["screwHastelloyX"],"name":"哈斯特洛依合金-X螺丝","tr":"哈斯特洛依合金-X螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.BiblioRedBook":{"0":{"name":"Redstone: Volume I","tr":"红石之书:第一卷","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseStrontium":{"0":{"oreDict":["plateDenseStrontium"],"name":"致密锶板","tr":"致密锶板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedgemChipped":{"1":{"oreDict":["gemChippedBismutite"],"name":"破碎的泡铋","tr":"破碎的泡铋","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["gemChippedPrasiolite"],"name":"破碎的堇云石","tr":"破碎的堇云石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["gemChippedCubicZirconia"],"name":"破碎的立方氧化锆","tr":"破碎的立方氧化锆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["gemChippedMagnetoResonatic"],"name":"破碎的磁共振石","tr":"破碎的磁共振石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["gemChippedFluor-Buergerite"],"name":"破碎的氟铁电气石","tr":"破碎的氟铁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["gemChippedChromo-Alumino-Povondraite"],"name":"破碎的铬铝电气石","tr":"破碎的铬铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["gemChippedOrundum"],"name":"破碎的合成玉","tr":"破碎的合成玉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["gemChippedVanadio-Oxy-Dravite"],"name":"破碎的钒镁电气石","tr":"破碎的钒镁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["gemChippedOlenite"],"name":"破碎的铝电气石","tr":"破碎的铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["gemChippedBArTiMaEuSNeK"],"name":"破碎的BArTiMaEuSNeK","tr":"破碎的BArTiMaEuSNeK","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["gemChippedCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"破碎的掺铈镥铝石榴石 (Ce:LuAG)","tr":"破碎的掺铈镥铝石榴石 (Ce:LuAG)","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["gemChippedRedZircon"],"name":"破碎的红锆石","tr":"破碎的红锆石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["gemChippedSalt"],"name":"破碎的盐","tr":"破碎的盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["gemChippedSpodumene"],"name":"破碎的锂辉石","tr":"破碎的锂辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["gemChippedRockSalt"],"name":"破碎的岩盐","tr":"破碎的岩盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["gemChippedFayalite"],"name":"破碎的铁橄榄石","tr":"破碎的铁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["gemChippedForsterite"],"name":"破碎的镁橄榄石","tr":"破碎的镁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["gemChippedHedenbergite"],"name":"破碎的钙铁辉石","tr":"破碎的钙铁辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["gemChippedTiberium"],"name":"破碎的泰伯利亚","tr":"破碎的泰伯利亚","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["gemChippedFluorspar"],"name":"破碎的氟石","tr":"破碎的氟石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:magicianBloodOrb":{"0":{"name":"Magician\u0027s Blood Orb","tr":"法师气血宝珠","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellPlasmaNeon":{"0":{"oreDict":["cellPlasmaNeon"],"name":"氖等离子体单元","tr":"氖等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormPipeTiny":{"0":{"name":"Casting Form (Tiny Pipe Mold)","tr":"铸件(微型管道)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:crayfishcookedItem":{"0":{"oreDict":["foodCrayfishcooked"],"name":"Cooked Crayfish","tr":"熟龙虾","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.tiger":{"0":{"oreDict":["buttonWood"],"name":"Tigerwood Button","tr":"核桃树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewBotmium":{"0":{"oreDict":["screwBotmium"],"name":"博特姆合金螺丝","tr":"博特姆合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:sweetpickleItem":{"0":{"oreDict":["foodSweetpickle"],"name":"Sweet Pickle","tr":"糖渍黄瓜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:syringeBlood":{"0":{"name":"Blood Syringe","tr":"含血奥术针筒","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Blast Phial","tr":"爆裂安瓿","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:meatNuggetTH":{"0":{"name":"Unidentifiable Meat Nugget","tr":"无法辨认的肉粒","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:rustyLadder":{"0":{"name":"Rusty Ladder","tr":"生锈铁梯","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.seatBack":{"0":{"name":"Oak Seat Back","tr":"橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Seat Back","tr":"云杉椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Seat Back","tr":"桦木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Seat Back","tr":"丛林木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Seat Back","tr":"金合欢座椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Seat Back","tr":"深色橡木椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Seat Back","tr":"镶框椅背","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AluminiumItemCasing":{"0":{"oreDict":["itemCasingAluminium"],"name":"Aluminium Item Casing","tr":"铝外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.distillation.encoder":{"0":{"name":"Distillation Pattern Encoder","tr":"蒸馏编码台","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellEnergyCrystal":{"0":{"oreDict":["cellEnergyCrystal"],"name":"能量水晶单元","tr":"能量水晶单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseNiobiumCarbide":{"0":{"oreDict":["plateDenseNiobiumCarbide"],"name":"致密碳化铌板","tr":"致密碳化铌板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Rare Tree":{"0":{"oreDict":["logWood"],"name":"Maple Wood","tr":"枫树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Silverbell Wood","tr":"银铃树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Amaranth Wood","tr":"紫檀树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Tiger Wood","tr":"核桃树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneStairsLeft":{"0":{"oreDict":["nagastoneStairs"],"name":"Nagastone Stairs (Left)","tr":"娜迦石台阶(左)","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:transmutationCore":{"0":{"name":"Transmutative Rod","tr":"转化杖柄","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotPlutonium238":{"0":{"oreDict":["ingotPlutonium238"],"name":"钚-238锭","tr":"钚-238锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.bossSpawner":{"0":{"name":"tile.bossSpawner.name","tr":"tile.bossSpawner.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureAgarditeLa":{"0":{"oreDict":["dustPureAgarditeLa"],"name":"Purified Agardite (La) Dust","tr":"洁净菱铁矿(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaGreenGlowshroom":{"0":{"name":"Crated Green Glowshroom","tr":"装箱的绿色荧光菇","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.QuartzPillarSlabBlock":{"0":{"name":"Certus Quartz Pillar Slabs","tr":"竖纹赛特斯石英台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:acaciaFenceGate":{"0":{"name":"Acacia Fence Gate","tr":"金合欢木栅栏门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:energyTurretBlock":{"0":{"name":"Energy Turret","tr":"能源炮塔","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.bow.darkwood":{"0":{"name":"Darkwood Bow","tr":"黑暗树弓","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":163}},"harvestcraft:crackerItem":{"0":{"oreDict":["foodCracker"],"name":"Cracker","tr":"薄脆饼干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:battleaxe":{"0":{"name":"§f山铜 战斧","tr":"§f山铜 战斧","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"appliedenergistics2:tile.BlockCondenser":{"0":{"name":"Matter Condenser","tr":"物质聚合器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemPowerConduit":{"0":{"name":"Energy Conduit","tr":"能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Enhanced Energy Conduit","tr":"强化能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Ender Energy Conduit","tr":"末影能量导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:frameProven":{"0":{"name":"Proven Frame","tr":"标定框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":721}},"OpenBlocks:hangglider":{"0":{"name":"Hang Glider","tr":"滑翔翼","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:Item55ReactorCard":{"0":{"name":"5x5 Reactor Sensor Location Card","tr":"流体反应堆传感定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.TenKCell":{"0":{"name":"10K Cell","tr":"10K冷却单元外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NanoChestJetPack":{"0":{"name":"Nano Chest Jet Pack","tr":"纳米喷气胸甲","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:circletalisman":{"0":{"name":"Circle Talisman","tr":"环形护身符","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"16":{"name":"Circle Talisman (Medium Otherwhere)","tr":"环形护身符 (中型他处)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"64":{"name":"Circle Talisman (Large Ritual)","tr":"环形护身符 (大型仪式)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"128":{"name":"Circle Talisman (Large Otherwhere)","tr":"环形护身符 (大型他处)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"192":{"name":"Circle Talisman (Large Infernal)","tr":"环形护身符 (大型炼狱)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Circle Talisman (Small Ritual)","tr":"环形护身符 (小型仪式)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Circle Talisman (Small Otherwhere)","tr":"环形护身符 (小型他处)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Circle Talisman (Small Infernal)","tr":"环形护身符 (小型炼狱)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"8":{"name":"Circle Talisman (Medium Ritual)","tr":"环形护身符 (中型仪式)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1},"24":{"name":"Circle Talisman (Medium Infernal)","tr":"环形护身符 (中型炼狱)","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1}},"StorageDrawersMisc:fullDrawers4_1":{"0":{"oreDict":["drawerBasic"],"name":"Yellow Drawers 2x2","tr":"黄色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"White Drawers 2x2","tr":"白色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Red Drawers 2x2","tr":"红色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Grey Drawers 2x2","tr":"灰色木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Greatwood Drawers 2x2","tr":"宏伟之木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Silverwood Drawers 2x2","tr":"银木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Rowan Drawers 2x2","tr":"山梨木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Alder Drawers 2x2","tr":"赤杨木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Hawthorn Drawers 2x2","tr":"山楂木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Treated Wood Drawers 2x2","tr":"防腐木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Livingwood Drawers 2x2","tr":"活木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Dreamwood Drawers 2x2","tr":"梦之木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcornCrop":{"0":{"name":"Corn Crop","tr":"玉米","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:NanosuitGogglesRevealing":{"1":{"name":"Nanosuit Goggles of Revealing","tr":"纳米揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Nanosuit Goggles of Revealing","tr":"纳米揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"StorageDrawersMisc:fullDrawers4_0":{"0":{"oreDict":["drawerBasic"],"name":"Redwood Drawers 2x2","tr":"红木抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Fir Drawers 2x2","tr":"冷杉抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Acacia Drawers 2x2","tr":"刺槐抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Cypress Drawers 2x2","tr":"柏树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Japanese Maple Drawers 2x2","tr":"日本枫树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Rainbow Eucalyptus Drawers 2x2","tr":"彩虹桉树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Autumn Drawers 2x2","tr":"秋树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Bald Cypress Drawers 2x2","tr":"落羽松抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Sakura Drawers 2x2","tr":"樱花树抽屉(2x2)","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockCable":{"0":{"name":"ic2.blockCable","tr":"ic2.blockCable","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:potatoBag":{"0":{"name":"Potato Bag","tr":"马铃薯袋","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSpruceSapling":{"0":{"name":"Crated Spruce Sapling","tr":"装箱的云杉树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongTriniumTitaniumAlloy":{"0":{"oreDict":["stickLongTriniumTitaniumAlloy"],"name":"长三元钛合金杆","tr":"长三元钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetEglinSteel":{"0":{"oreDict":["nuggetEglinSteel"],"name":"埃格林钢粒","tr":"埃格林钢粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:instability_orb_ore":{"0":{"oreDict":["oreHeeInstabilityOrb"],"name":"Instability Orb Ore","tr":"震荡球矿石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockReservoir":{"0":{"name":"Reservoir","tr":"蓄水库","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetStellite":{"0":{"oreDict":["nuggetStellite"],"name":"铬钴锰钛合金粒","tr":"铬钴锰钛合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Thoriumcell":{"0":{"name":"燃料棒(钍)","tr":"燃料棒(钍)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"harvestcraft:toastsandwichItem":{"0":{"oreDict":["foodToastsandwich"],"name":"Toast Sandwich","tr":"烤三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeFluidRequestLogistics":{"0":{"name":"Logistics Fluid Request Pipe","tr":"物流流体请求管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fluid.mead":{"0":{"name":"Mead","tr":"蜂蜜陈酿","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:borehead.diamond":{"0":{"name":"Diamond Bore Head","tr":"钻石钻头","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":6001}},"Natura:stair.hopseed":{"0":{"oreDict":["stairWood"],"name":"Hopseed Stairs","tr":"车桑子树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:daggerOfSacrifice":{"0":{"name":"Dagger of Sacrifice","tr":"献祭刀","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:dustPureAgarditeNd":{"0":{"oreDict":["dustPureAgarditeNd"],"name":"Purified Agardite (Nd) Dust","tr":"洁净菱铁矿(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:wall.alpha":{"0":{"name":"Infernal Brick Wall","tr":"地狱砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sandy Brick Wall","tr":"沙岩砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Concrete Wall","tr":"混凝土墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Snow Wall","tr":"雪墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ice Wall","tr":"冰墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stone Brick Wall","tr":"石砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mossy Stone Brick Wall","tr":"苔石砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cracked Stone Brick Wall","tr":"裂痕石砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Chiseled Stone Brick Wall","tr":"錾制石砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Nether Brick Wall","tr":"下界砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Brick Wall","tr":"砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Sandstone Wall","tr":"沙石墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Chiseled Sandstone Wall","tr":"錾制沙石墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Smooth Sandstone Wall","tr":"光滑沙石墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Obsidian Wall","tr":"黑曜石墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Frost Bound Brick Wall","tr":"霜冻砖墙","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetPromethium":{"0":{"oreDict":["nuggetPromethium"],"name":"钷粒","tr":"钷粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleArcanite":{"0":{"oreDict":["plateDoubleArcanite"],"name":"双重奥金板","tr":"双重奥金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"BiblioCraft:BiblioFancySign":{"0":{"name":"Oak Fancy Sign","tr":"橡木精致木牌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Fancy Sign","tr":"云杉精致木牌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Fancy Sign","tr":"桦木精致木牌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Fancy Sign","tr":"丛林精致木牌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Fancy Sign","tr":"金合欢精致木牌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Fancy Sign","tr":"深色橡木精致木牌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Fancy Sign","tr":"镶框精致木牌","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantinumPlate":{"0":{"oreDict":["plateQuantium"],"name":"Quantium Plate","tr":"量子板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cantaloupeseedItem":{"0":{"oreDict":["listAllseed"," seedCantaloupe"],"name":"Cantaloupe Seed","tr":"哈密瓜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemShadowmetalSpade":{"0":{"name":"Shadowmetal Spade","tr":"暗影之铲","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":2201}},"catwalks:scaffold":{"0":{"name":"Scaffold","tr":"脚手架","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Builder\u0027s Scaffold","tr":"施工脚手架","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:acentauribbgrunt":{"0":{"oreDict":["rockSpace"," rockCentauriA"],"name":"α Centauri Bb Surface Block","tr":"半人马Bb地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.ironwoodPlate":{"0":{"name":"Ironwood Plate","tr":"铁木胸甲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":321}},"TwistSpaceTechnology:MetaItem01":{"0":{"name":"Test Item 0","tr":"测试物品","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Space Warper","tr":"空间翘曲器","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Gravitationally Confined Optical Quantum Crystals","tr":"引力约束光量子晶体","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Mold (Singularity)","tr":"模具(奇点)","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Particle Trap - SpaceTime Scabbard","tr":"粒子阱 - 时空鞘","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lapotron Shard","tr":"兰波顿碎片","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Perfect Lapotron Crystal","tr":"完美兰波顿水晶","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Energy Crystal Shard","tr":"能量水晶碎片","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Perfect Energy Crystal","tr":"完美能量水晶","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Solar Sail","tr":"太阳帆","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Dyson Sphere Frame Component","tr":"戴森球框架部件","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Small Carrier Rocket","tr":"小型运载火箭","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Empty Small Carrier Rocket","tr":"空的小型运载火箭","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Critical Photon","tr":"临界光子","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Antimatter","tr":"反物质","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Annihilation Constrainer","tr":"湮灭约束器","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Antimatter Fuel Rod","tr":"反物质燃料棒","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Stellar Structural Frame Material","tr":"恒星结构框架材料","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Graviton Lens","tr":"引力透镜","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Purple Magnolia Petal","tr":"紫玉兰花瓣","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Purple Magnolia Sapling","tr":"紫玉兰树苗","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Void Pollen","tr":"虚空花粉","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Primitive Man\u0027s SpaceTime Distortion Device","tr":"原始人的时空扭曲装置","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Wireless Computation update circuit","tr":"无线算力网络升级芯片","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Ball Lightning Upgrade Chip","tr":"球状闪电升级芯片","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Energy Shard","tr":"能量碎片","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Silicon-based Neuron","tr":"硅基神经元","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Matter Recombinator","tr":"物质重组器","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Core Element","tr":"核心素","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Strange Annihilation Fuel Rod","tr":"奇异湮灭燃料棒","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"SpaceTime Superconducting Inlaid Motherboard","tr":"时空超导镶嵌主板","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Packet Information Translation Array","tr":"封装信息转译阵列","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Information Horizon Intervention Shell","tr":"信系介入外壳","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Energy Fluctuation Self-Harmonizer","tr":"能量涨落自谐调器","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Encapsulated Micro SpaceTime Unit","tr":"封装微型时空单元","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Seeds of Space and Time","tr":"时空之种","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockController":{"0":{"name":"ME Controller","tr":"ME控制器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FrothMonaziteflotation":{"0":{"oreDict":["cellMonaziteFroth"],"name":"独居石泡沫单元","tr":"独居石泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.180k_NaK_Coolantcell":{"0":{"name":"180k钠钾冷却单元","tr":"180k钠钾冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"Thaumcraft:ItemGirdleRunic":{"0":{"name":"Girdle of Runic Shielding","tr":"符文护盾腰带","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Kinetic Girdle of Shielding","tr":"冲击符文护盾腰带","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellBotmium":{"0":{"oreDict":["cellBotmium"],"name":"博特姆合金单元","tr":"博特姆合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemChestplateThaumium":{"0":{"name":"Thaumium Chestplate","tr":"神秘胸甲","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"Botania:divaCharm":{"0":{"name":"Charm of the Diva","tr":"女王之魅","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"adventurebackpack:blockBackpack":{"0":{"name":"Adventure Backpacks","tr":"探险背包","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PikoCircuit":{"0":{"oreDict":["circuitPiko"],"name":"Pico Circuit","tr":"Piko电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearWatertightSteel":{"0":{"oreDict":["gearGtWatertightSteel"," gearWatertightSteel"],"name":"防水钢齿轮","tr":"防水钢齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MytrylPlate":{"0":{"oreDict":["plateMytryl"],"name":"Mytryl Plate","tr":"深空秘银板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:brewbag":{"0":{"name":"Brew Bag","tr":"酿造袋","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:endium_ore":{"0":{"oreDict":["oreHeeEndium"],"name":"Endium Ore","tr":"终末矿石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaEgrunt":{"0":{"oreDict":["rockBarnardaE"," rockSpace"],"name":"Barnarda E Surface Block","tr":"巴纳德E地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:plumjellyItem":{"0":{"oreDict":["foodPlumjelly"],"name":"Plum Jelly","tr":"李子果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.endSteel_leggings":{"0":{"name":"End Steel Leggings","tr":"末影钢护腿","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":751}},"harvestcraft:papayajellysandwichItem":{"0":{"oreDict":["foodPapayajellysandwich"],"name":"Papaya Jelly Sandwich","tr":"木瓜果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraTrees:log":{"0":{"oreDict":["logWood"],"name":"Apple Wood","tr":"苹果树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Fig Wood","tr":"无花果原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Butternut Wood","tr":"灰核桃树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Cherry Wood","tr":"樱树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["logWood"],"name":"Whitebeam Wood","tr":"白面子树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["logWood"],"name":"Rowan Wood","tr":"花楸原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["logWood"],"name":"Hemlock Wood","tr":"铁杉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["logWood"],"name":"Ash Wood","tr":"梣树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["logWood"],"name":"Alder Wood","tr":"桤木原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["logWood"],"name":"Beech Wood","tr":"山毛榉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["logWood"],"name":"Hawthorn Wood","tr":"山楂树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["logWood"],"name":"Banana Wood","tr":"香蕉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["logWood"],"name":"Yew Wood","tr":"红豆杉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["logWood"],"name":"Cypress Wood","tr":"柏树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["logWood"],"name":"Fir Wood","tr":"冷杉原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["logWood"],"name":"Hazel Wood","tr":"榛树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["logWood"],"name":"Hickory Wood","tr":"山核桃原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["logWood"],"name":"Elm Wood","tr":"榆树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["logWood"],"name":"Elder Wood","tr":"接骨木原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["logWood"],"name":"Holly Wood","tr":"冬青原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["logWood"],"name":"Hornbeam Wood","tr":"鹅耳枥原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["logWood"],"name":"Cedar Wood","tr":"雪松原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["logWood"],"name":"Olive Wood","tr":"橄榄树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["logWood"],"name":"Sweetgum Wood","tr":"枫香树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["logWood"],"name":"Locust Wood","tr":"刺槐原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["logWood"],"name":"Pear Wood","tr":"梨树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["logWood"],"name":"Maclura Wood","tr":"桑橙原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["logWood"],"name":"Brazilwood Wood","tr":"巴西红木原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["logWood"],"name":"Logwood Wood","tr":"墨水树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["logWood"],"name":"Rosewood Wood","tr":"蔷薇木原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["logWood"],"name":"Purpleheart Wood","tr":"紫心檀木原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["logWood"],"name":"Iroko Wood","tr":"大绿柄桑木原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["logWood"],"name":"Gingko Wood","tr":"银杏原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["logWood"],"name":"Eucalyptus Wood","tr":"桉树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["logWood"],"name":"Eucalyptus Wood","tr":"桉树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["logWood"],"name":"Box Wood","tr":"黄杨原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["logWood"],"name":"Syzgium Wood","tr":"蒲桃原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["logWood"],"name":"Eucalyptus Wood","tr":"桉树原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["logWood"],"name":"Cinnamon Wood","tr":"肉桂原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["logWood"],"name":"Pink Ivory Wood","tr":"象牙粉红木原木","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleInconel690":{"0":{"oreDict":["plateDoubleInconel690"],"name":"双重镍铬基合金-690板","tr":"双重镍铬基合金-690板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"BloodArsenal:soul_booster":{"0":{"name":"Soul Booster","tr":"增益灵魂之石","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"Botany:plant":{"0":{"name":"Weeds","tr":"杂草","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Long Weeds","tr":"长的杂草","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Very Long Weeds","tr":"非常长的杂草","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Dead Flower","tr":"死花","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Decaying Flower","tr":"凋谢的花","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.cagelamp.inv":{"0":{"name":"Inverted White Fallout Light","tr":"反相白色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Inverted Orange Fallout Light","tr":"反相橙色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Inverted Magenta Fallout Light","tr":"反相品红色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Inverted Light Blue Fallout Light","tr":"反相淡蓝色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Inverted Yellow Fallout Light","tr":"反相黄色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Inverted Lime Fallout Light","tr":"反相黄绿色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Inverted Pink Fallout Light","tr":"反相粉色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Inverted Grey Fallout Light","tr":"反相灰色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Inverted Light Grey Fallout Light","tr":"反相淡灰色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Inverted Cyan Fallout Light","tr":"反相青色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Inverted Purple Fallout Light","tr":"反相紫色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Inverted Blue Fallout Light","tr":"反相蓝色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Inverted Brown Fallout Light","tr":"反相棕色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Inverted Green Fallout Light","tr":"反相绿色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Inverted Red Fallout Light","tr":"反相红色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Inverted Black Fallout Light","tr":"反相黑色罩灯","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTriniumTitaniumAlloy":{"0":{"oreDict":["cellTriniumTitaniumAlloy"],"name":"三元钛合金单元","tr":"三元钛合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTitansteel":{"0":{"oreDict":["cellTitansteel"],"name":"泰坦精钢单元","tr":"泰坦精钢单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PulsatingSpatialCoreChip":{"0":{"name":"Spatial Circuit Tier I","tr":"空间电路 I","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockInscriber":{"0":{"name":"Inscriber","tr":"压印器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"structurelib:item.structurelib.frontRotationTool":{"0":{"name":"Front Rotation Tool (Standalone)","tr":"正面旋转扳手(独立)","tab":"结构库","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRingBloodSteel":{"0":{"oreDict":["ringBloodSteel"],"name":"血钢环","tr":"血钢环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedHibonite":{"0":{"oreDict":["crushedHibonite"],"name":"Crushed Hibonite Ore","tr":"粉碎的黑铝钙石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:croissantItem":{"0":{"oreDict":["foodCroissant"],"name":"Croissant","tr":"羊角面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallKashinite":{"0":{"oreDict":["dustSmallKashinite"],"name":"小堆硫铑铱矿粉","tr":"小堆硫铑铱矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:SuperchargedMjolnir":{"1":{"name":"Supercharged Mjolnir","tr":"高压雷神之锤","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Supercharged Mjolnir","tr":"高压雷神之锤","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"BuildCraft|Transport:pipePowerAdapter":{"0":{"name":"Power Adapter","tr":"能量接收器","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.08.name":{"1":{"name":"§9Charge Pack [UV]§7","tr":"§9充电工具包[UV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [UV]§7","tr":"§9充电工具包[UV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"OpenComputers:waypoint":{"0":{"oreDict":["oc:waypoint"],"name":"Waypoint","tr":"路径点","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureCryoliteF":{"0":{"oreDict":["dustImpureCryoliteF"],"name":"Impure Cryolite (F) Dust","tr":"含杂冰晶石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.gold":{"0":{"name":"Molten Gold","tr":"熔融金","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemSmallSpringNichrome":{"0":{"oreDict":["springSmallNichrome"],"name":"小型镍铬合金弹簧","tr":"小型镍铬合金弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:magicStairs":{"0":{"oreDict":["stairWood"],"name":"Magic Wood Stairs","tr":"魔法木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGenerateddustTiny":{"1":{"oreDict":["dustTinyBismutite"],"name":"小撮泡铋粉","tr":"小撮泡铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustTinyBismuthinite"],"name":"小撮辉铋粉","tr":"小撮辉铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustTinyZirconium"],"name":"小撮锆粉","tr":"小撮锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustTinyCubicZirconia"],"name":"小撮立方氧化锆粉","tr":"小撮立方氧化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dustTinyFluor-Buergerite"],"name":"小撮氟铁电气石粉","tr":"小撮氟铁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["dustTinyYttriumOxide"],"name":"小撮氧化钇粉","tr":"小撮氧化钇粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustTinyChromo-Alumino-Povondraite"],"name":"小撮铬铝电气石粉","tr":"小撮铬铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustTinyVanadio-Oxy-Dravite"],"name":"小撮钒镁电气石粉","tr":"小撮钒镁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dustTinyOlenite"],"name":"小撮铝电气石粉","tr":"小撮铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustTinyArsenopyrite"],"name":"小撮砷黄铁粉","tr":"小撮砷黄铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustTinyFerberite"],"name":"小撮钨铁粉","tr":"小撮钨铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustTinyLoellingite"],"name":"小撮斜方砷铁粉","tr":"小撮斜方砷铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dustTinyRoquesite"],"name":"小撮硫铟铜粉","tr":"小撮硫铟铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["dustTinyBornite"],"name":"小撮斑铜粉","tr":"小撮斑铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["dustTinyWittichenite"],"name":"小撮硫铋铜粉","tr":"小撮硫铋铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["dustTinyDjurleite"],"name":"小撮久辉铜粉","tr":"小撮久辉铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["dustTinyHuebnerite"],"name":"小撮钨酸锰粉","tr":"小撮钨酸锰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["dustTinyThorianite"],"name":"小撮方钍石粉","tr":"小撮方钍石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["dustTinyRedZircon"],"name":"小撮红锆石粉","tr":"小撮红锆石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["dustTinyFayalite"],"name":"小撮铁橄榄石粉","tr":"小撮铁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["dustTinyForsterite"],"name":"小撮镁橄榄石粉","tr":"小撮镁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["dustTinyHedenbergite"],"name":"小撮钙铁辉石粉","tr":"小撮钙铁辉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["dustTinyRedDescloizite"],"name":"小撮红钒铅锌粉","tr":"小撮红钒铅锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["dustTinyOrangeDescloizite"],"name":"小撮橙钒铅铜粉","tr":"小撮橙钒铅铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["dustTinyGreenFuchsite"],"name":"小撮绿铬云母粉","tr":"小撮绿铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["dustTinyRedFuchsite"],"name":"小撮红铬云母粉","tr":"小撮红铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["dustTinyThorium232"],"name":"小撮钍-232粉","tr":"小撮钍-232粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["dustTinyBismuthTellurite"],"name":"小撮碲化铋粉","tr":"小撮碲化铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["dustTinyDibismuthhydroborat"],"name":"小撮硼氢二铋粉","tr":"小撮硼氢二铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20001":{"oreDict":["dustTinyHolmiumGarnet"],"name":"小撮Holmium Garnet粉","tr":"小撮Holmium Garnet粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["dustTinyCircuitCompoundMK3"],"name":"小撮电路化合物MK3粉","tr":"小撮电路化合物MK3粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["dustTinyPrasiolite"],"name":"小撮堇云石粉","tr":"小撮堇云石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["dustTinyMagnetoResonatic"],"name":"小撮磁共振石粉","tr":"小撮磁共振石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["dustTinyCalifornium"],"name":"小撮锎粉","tr":"小撮锎粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11303":{"oreDict":["dustTinyTellurium-Molybdenum-OxideCatalyst"],"name":"小撮钼碲氧化物催化剂粉","tr":"小撮钼碲氧化物催化剂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11304":{"oreDict":["dustTinyTellurium(IV)Oxide"],"name":"小撮氧化碲(IV)粉","tr":"小撮氧化碲(IV)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11305":{"oreDict":["dustTinyMolybdenum(IV)Oxide"],"name":"小撮氧化钼(IV)粉","tr":"小撮氧化钼(IV)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11306":{"oreDict":["dustTinyPolytetrahydrofuran"],"name":"小撮聚四氢呋喃粉","tr":"小撮聚四氢呋喃粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["dustTinyBArTiMaEuSNeK"],"name":"小撮BArTiMaEuSNeK粉","tr":"小撮BArTiMaEuSNeK粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["dustTinyPlatinumSalt"],"name":"小撮铂盐粉","tr":"小撮铂盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"oreDict":["dustTinyRefinedPlatinumSalt"],"name":"小撮精炼铂盐粉","tr":"小撮精炼铂盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["dustTinyPlatinumMetallicPowder"],"name":"小撮铂金属粉","tr":"小撮铂金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["dustTinyPTMEGElastomer"],"name":"小撮PTMEG橡胶粉","tr":"小撮PTMEG橡胶粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["dustTinyPlatinumResidue"],"name":"小撮铂渣粉","tr":"小撮铂渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11314":{"oreDict":["dustTinyPotassiumChlorate"],"name":"小撮氯酸钾粉","tr":"小撮氯酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["dustTinyReprecipitatedPlatinum"],"name":"小撮再沉淀铂粉","tr":"小撮再沉淀铂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["dustTinyPalladiumMetallicPowder"],"name":"小撮钯金属粉","tr":"小撮钯金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["dustTinyReprecipitatedPalladium"],"name":"小撮再沉淀钯粉","tr":"小撮再沉淀钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["dustTinyPalladiumSalt"],"name":"小撮钯盐粉","tr":"小撮钯盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["dustTinySodiumSulfate"],"name":"小撮硫酸钠粉","tr":"小撮硫酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["dustTinyPotassiumDisulfate"],"name":"小撮焦硫酸钾粉","tr":"小撮焦硫酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["dustTinyLeachResidue"],"name":"小撮浸出渣粉","tr":"小撮浸出渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["dustTinyCalciumChloride"],"name":"小撮氯化钙粉","tr":"小撮氯化钙粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["dustTinyRuthenium"],"name":"小撮钌粉","tr":"小撮钌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["dustTinySodiumRuthenate"],"name":"小撮钌酸钠粉","tr":"小撮钌酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["dustTinyRutheniumTetroxide"],"name":"小撮四氧化钌粉","tr":"小撮四氧化钌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["dustTinyRarestMetalResidue"],"name":"小撮稀有金属渣粉","tr":"小撮稀有金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["dustTinyIridiumMetalResidue"],"name":"小撮铱金属渣粉","tr":"小撮铱金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["dustTinySludgeDustResidue"],"name":"小撮泥渣粉","tr":"小撮泥渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"oreDict":["dustTinyIridiumDioxide"],"name":"小撮二氧化铱粉","tr":"小撮二氧化铱粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"oreDict":["dustTinyIridiumChloride"],"name":"小撮氯化铱粉","tr":"小撮氯化铱粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["dustTinyMetallicSludgeDustResidue"],"name":"小撮金属泥渣粉","tr":"小撮金属泥渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["dustTinyRhodium"],"name":"小撮铑粉","tr":"小撮铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["dustTinyCrudeRhodiumMetal"],"name":"小撮粗制铑金属粉","tr":"小撮粗制铑金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"oreDict":["dustTinyRhodiumSalt"],"name":"小撮铑盐粉","tr":"小撮铑盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"oreDict":["dustTinySodiumNitrate"],"name":"小撮硝酸钠粉","tr":"小撮硝酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"oreDict":["dustTinyRhodiumNitrate"],"name":"小撮硝酸铑粉","tr":"小撮硝酸铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"oreDict":["dustTinyZincSulfate"],"name":"小撮硫酸锌粉","tr":"小撮硫酸锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["dustTinyRhodiumFilterCake"],"name":"小撮铑滤饼粉","tr":"小撮铑滤饼粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"oreDict":["dustTinyReprecipitatedRhodium"],"name":"小撮再沉淀铑粉","tr":"小撮再沉淀铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["dustTinyRhodium-PlatedPalladium"],"name":"小撮镀铑钯粉","tr":"小撮镀铑钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["dustTinyTiberium"],"name":"小撮泰伯利亚粉","tr":"小撮泰伯利亚粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["dustTinyRuridit"],"name":"小撮钌铱合金粉","tr":"小撮钌铱合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["dustTinyFluorspar"],"name":"小撮氟石粉","tr":"小撮氟石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["dustTinyHighDurabilityCompoundSteel"],"name":"小撮高耐久性复合钢粉","tr":"小撮高耐久性复合钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["dustTinyAtheneite"],"name":"小撮砷汞钯粉","tr":"小撮砷汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["dustTinyTemagamite"],"name":"小撮碲汞钯粉","tr":"小撮碲汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["dustTinyTerlinguaite"],"name":"小撮黄氯汞粉","tr":"小撮黄氯汞粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["dustTinyAdemicSteel"],"name":"小撮硬钢粉","tr":"小撮硬钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"oreDict":["dustTinyRawAdemicSteel"],"name":"小撮粗制硬钢粉","tr":"小撮粗制硬钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"99":{"oreDict":["dustTinyPotassiumfluorosilicate"],"name":"小撮氟硅酸钾粉","tr":"小撮氟硅酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"oreDict":["dustTinyPotassiumCarbonate"],"name":"小撮碳酸钾粉","tr":"小撮碳酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"102":{"oreDict":["dustTinyRawFluorophlogopite"],"name":"小撮粗制氟金云母粉","tr":"小撮粗制氟金云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["dustTinyFluorophlogopite"],"name":"小撮氟金云母粉","tr":"小撮氟金云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11446":{"oreDict":["dustTinyLanthanumOreConcentrate"],"name":"小撮镧精粉","tr":"小撮镧精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11447":{"oreDict":["dustTinyPraseodymiumOreConcentrate"],"name":"小撮镨精粉","tr":"小撮镨精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11449":{"oreDict":["dustTinyNeodymiumOreConcentrate"],"name":"小撮钕精粉","tr":"小撮钕精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11450":{"oreDict":["dustTinyPromethiumOreConcentrate"],"name":"小撮钷精粉","tr":"小撮钷精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11451":{"oreDict":["dustTinyEuropiumOreConcentrate"],"name":"小撮铕精粉","tr":"小撮铕精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11452":{"oreDict":["dustTinyGadoliniumOreConcentrate"],"name":"小撮钆精粉","tr":"小撮钆精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11453":{"oreDict":["dustTinyTerbiumOreConcentrate"],"name":"小撮铽精粉","tr":"小撮铽精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11454":{"oreDict":["dustTinyDysprosiumOreConcentrate"],"name":"小撮镝精粉","tr":"小撮镝精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11455":{"oreDict":["dustTinyHolmiumOreConcentrate"],"name":"小撮钬精粉","tr":"小撮钬精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11456":{"oreDict":["dustTinyErbiumOreConcentrate"],"name":"小撮铒精粉","tr":"小撮铒精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11457":{"oreDict":["dustTinyThuliumOreConcentrate"],"name":"小撮铥精粉","tr":"小撮铥精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11458":{"oreDict":["dustTinyYtterbiumOreConcentrate"],"name":"小撮镱精粉","tr":"小撮镱精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11459":{"oreDict":["dustTinyLutetiumOreConcentrate"],"name":"小撮镥精粉","tr":"小撮镥精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11464":{"oreDict":["dustTinySamarium(III)Oxalate"],"name":"小撮含杂草酸钐粉","tr":"小撮含杂草酸钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11465":{"oreDict":["dustTinySamarium(III)-Chloride"],"name":"小撮含杂氯化钐粉","tr":"小撮含杂氯化钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11466":{"oreDict":["dustTinySamariumChloride-SodiumChlorideBlend"],"name":"小撮氯化钐-氯化钠混合物粉","tr":"小撮氯化钐-氯化钠混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11467":{"oreDict":["dustTinyImpureLanthanumChloride"],"name":"小撮含杂氯化镧粉","tr":"小撮含杂氯化镧粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11468":{"oreDict":["dustTinySamariumOxide"],"name":"小撮氧化钐粉","tr":"小撮氧化钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29900":{"oreDict":["dustTinyTungsticAcid"],"name":"小撮钨酸粉","tr":"小撮钨酸粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29901":{"oreDict":["dustTinyTungstenTrioxide"],"name":"小撮三氧化钨粉","tr":"小撮三氧化钨粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29903":{"oreDict":["dustTinyAmmoniumNitrate"],"name":"小撮硝酸铵粉","tr":"小撮硝酸铵粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11472":{"oreDict":["dustTinyRarestEarthResidue"],"name":"小撮罕见稀土渣粉","tr":"小撮罕见稀土渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11498":{"oreDict":["dustTinyCerium-dopedLutetiumAluminiumOxygenBlend"],"name":"小撮掺铈镥铝氧混合物粉","tr":"小撮掺铈镥铝氧混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11501":{"oreDict":["dustTinyHafniumCarbide"],"name":"小撮碳化铪粉","tr":"小撮碳化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11502":{"oreDict":["dustTinyTantalumCarbide/HafniumCarbideMixture"],"name":"小撮碳化钽-碳化铪混合物粉","tr":"小撮碳化钽-碳化铪混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["dustTinyTantalumHafniumCarbide"],"name":"小撮碳化钽铪粉","tr":"小撮碳化钽铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["dustTinyHafnium"],"name":"小撮铪粉","tr":"小撮铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11001":{"oreDict":["dustTinyLow-PurityHafnium"],"name":"小撮低纯铪粉","tr":"小撮低纯铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11002":{"oreDict":["dustTinyHafnia"],"name":"小撮氧化铪粉","tr":"小撮氧化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11003":{"oreDict":["dustTinyHafniumTetrachloride"],"name":"小撮四氯化铪粉","tr":"小撮四氯化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11005":{"oreDict":["dustTinyHafniumIodide"],"name":"小撮碘化铪粉","tr":"小撮碘化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11006":{"oreDict":["dustTinyHafniumRunoff"],"name":"小撮铪废料粉","tr":"小撮铪废料粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["dustTinyZirconium"],"name":"小撮锆粉","tr":"小撮锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11008":{"oreDict":["dustTinyZirconia"],"name":"小撮氧化锆粉","tr":"小撮氧化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11009":{"oreDict":["dustTinyZirconiumTetrachloride"],"name":"小撮四氯化锆粉","tr":"小撮四氯化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11011":{"oreDict":["dustTinyHafnia-ZirconiaBlend"],"name":"小撮氧化铪-氧化锆混合物粉","tr":"小撮氧化铪-氧化锆混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11012":{"oreDict":["dustTinyIodine"],"name":"小撮碘粉","tr":"小撮碘粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11019":{"oreDict":["dustTinyMonaziteSulfate"],"name":"小撮硫酸独居石粉","tr":"小撮硫酸独居石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11020":{"oreDict":["dustTinyAcidicMonazitePowder"],"name":"小撮酸性独居石粉","tr":"小撮酸性独居石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11021":{"oreDict":["dustTinyMonaziteRareEarthFiltrate"],"name":"小撮独居石稀土滤渣粉","tr":"小撮独居石稀土滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11022":{"oreDict":["dustTinyNeutralizedMonaziteRareEarthFiltrate"],"name":"小撮中和独居石稀土滤渣粉","tr":"小撮中和独居石稀土滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11023":{"oreDict":["dustTinyMonaziteRareEarthHydroxideConcentrate"],"name":"小撮浓缩独居石稀土氢氧化物粉","tr":"小撮浓缩独居石稀土氢氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11024":{"oreDict":["dustTinyDriedMonaziteRareEarthConcentrate"],"name":"小撮干燥浓缩硝酸独居石稀土粉","tr":"小撮干燥浓缩硝酸独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10001":{"oreDict":["dustTinyGraphite-UraniumMixture"],"name":"小撮石墨-铀混合物粉","tr":"小撮石墨-铀混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11025":{"oreDict":["dustTinyCeriumDioxide"],"name":"小撮二氧化铈粉","tr":"小撮二氧化铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11026":{"oreDict":["dustTinyCeriumChloride"],"name":"小撮氯化铈粉","tr":"小撮氯化铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11027":{"oreDict":["dustTinyCeriumOxalate"],"name":"小撮草酸铈粉","tr":"小撮草酸铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11028":{"oreDict":["dustTinyCerium(III)Oxide"],"name":"小撮氧化铈(III)粉","tr":"小撮氧化铈(III)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10005":{"oreDict":["dustTinyUraniumCarbide-ThoriumMixture"],"name":"小撮碳化铀-钍混合物粉","tr":"小撮碳化铀-钍混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11029":{"oreDict":["dustTinyCerium-RichMixture"],"name":"小撮富铈混合物粉","tr":"小撮富铈混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11030":{"oreDict":["dustTinyCooledMonaziteRareEarthConcentrate"],"name":"小撮冷却浓缩硝酸独居石稀土粉","tr":"小撮冷却浓缩硝酸独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11031":{"oreDict":["dustTinyMonaziteRarerEarthSediment"],"name":"小撮独居石罕土沉淀粉","tr":"小撮独居石罕土沉淀粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11032":{"oreDict":["dustTinyHeterogenousHalogenicMonaziteRareEarthMixture"],"name":"小撮异质卤化独居石稀土混合物粉","tr":"小撮异质卤化独居石稀土混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10009":{"oreDict":["dustTinyPlutoniumOxide-UraniumMixture"],"name":"小撮氧化钚-铀混合物粉","tr":"小撮氧化钚-铀混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11033":{"oreDict":["dustTinySaturatedMonaziteRareEarth"],"name":"小撮饱和独居石稀土粉","tr":"小撮饱和独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11034":{"oreDict":["dustTinySamaricResidue"],"name":"小撮钐沉淀粉","tr":"小撮钐沉淀粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11037":{"oreDict":["dustTinyThorium-PhosphateCake"],"name":"小撮磷酸钍滤饼粉","tr":"小撮磷酸钍滤饼粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10014":{"oreDict":["dustTinyVanadiumPentoxide"],"name":"小撮五氧化二钒粉","tr":"小撮五氧化二钒粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11038":{"oreDict":["dustTinyThorium-PhosphateConcentrate"],"name":"小撮磷酸钍精粉","tr":"小撮磷酸钍精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11039":{"oreDict":["dustTinyUraniumFiltrate"],"name":"小撮铀滤渣粉","tr":"小撮铀滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10016":{"oreDict":["dustTinyThoriumOxalate"],"name":"小撮草酸钍粉","tr":"小撮草酸钍粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11040":{"oreDict":["dustTinyNeutralizedUraniumFiltrate"],"name":"小撮中和铀滤渣粉","tr":"小撮中和铀滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10017":{"oreDict":["dustTinyThoriumHydroxide"],"name":"小撮氢氧化钍粉","tr":"小撮氢氧化钍粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11041":{"oreDict":["dustTinySeaweedAsh"],"name":"小撮海藻灰粉","tr":"小撮海藻灰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10018":{"oreDict":["dustTinySodiumOxalate"],"name":"小撮草酸钠粉","tr":"小撮草酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11043":{"oreDict":["dustTinyPotassiumPermanganate"],"name":"小撮高锰酸钾粉","tr":"小撮高锰酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["dustTinyAtomicSeparationCatalyst"],"name":"小撮原子分离催化剂粉","tr":"小撮原子分离催化剂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["dustTinyOrundum"],"name":"小撮合成玉粉","tr":"小撮合成玉粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11047":{"oreDict":["dustTinyEuropiumOxide"],"name":"小撮氧化铕粉","tr":"小撮氧化铕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["dustTinyExtremelyUnstableNaquadah"],"name":"小撮极不稳定硅岩粉","tr":"小撮极不稳定硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11048":{"oreDict":["dustTinyEuropiumSulfide"],"name":"小撮硫化铕粉","tr":"小撮硫化铕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11049":{"oreDict":["dustTinyUnknownBlend"],"name":"小撮未知混合物粉","tr":"小撮未知混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11050":{"oreDict":["dustTinyEuropiumIIIOxide"],"name":"小撮氧化铕(III)粉","tr":"小撮氧化铕(III)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10035":{"oreDict":["dustTinyRadioactiveSludge"],"name":"小撮放射性污泥粉","tr":"小撮放射性污泥粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10052":{"oreDict":["dustTinyZincChloride"],"name":"小撮氯化锌粉","tr":"小撮氯化锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["dustTinyZn-ThAlloy"],"name":"小撮锌钍合金粉","tr":"小撮锌钍合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["dustTinyNaquadahOxideMixture"],"name":"小撮氧化硅岩混合物粉","tr":"小撮氧化硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10055":{"oreDict":["dustTinyTitaniumTrifluoride"],"name":"小撮三氟化钛粉","tr":"小撮三氟化钛粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10057":{"oreDict":["dustTinyGalliumHydroxide"],"name":"小撮氢氧化镓粉","tr":"小撮氢氧化镓粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10063":{"oreDict":["dustTinyNaquadahine"],"name":"小撮氧化硅岩粉","tr":"小撮氧化硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10066":{"oreDict":["dustTinyAdamantine"],"name":"小撮氧化精金粉","tr":"小撮氧化精金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["dustTinyEnriched-NaquadahOxideMixture"],"name":"小撮氧化富集硅岩混合物粉","tr":"小撮氧化富集硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10068":{"oreDict":["dustTinyTriniumSulphate"],"name":"小撮硫酸三元粉","tr":"小撮硫酸三元粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10070":{"oreDict":["dustTinyConcentratedEnriched-NaquadahSludge"],"name":"小撮浓缩富集硅岩矿泥粉","tr":"小撮浓缩富集硅岩矿泥粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10071":{"oreDict":["dustTinyEnriched-NaquadahSulphate"],"name":"小撮硫酸富集硅岩粉","tr":"小撮硫酸富集硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["dustTinyNaquadriaOxideMixture"],"name":"小撮氧化超能硅岩混合物粉","tr":"小撮氧化超能硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10073":{"oreDict":["dustTinyIndiumPhosphate"],"name":"小撮磷酸铟粉","tr":"小撮磷酸铟粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10074":{"oreDict":["dustTinyLowQualityNaquadriaPhosphate"],"name":"小撮低纯磷酸超能硅岩粉","tr":"小撮低纯磷酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10076":{"oreDict":["dustTinyLowQualityNaquadriaSulphate"],"name":"小撮低纯硫酸超能硅岩粉","tr":"小撮低纯硫酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10078":{"oreDict":["dustTinyNaquadriaSulphate"],"name":"小撮硫酸超能硅岩粉","tr":"小撮硫酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["dustTinyZircaloy-4"],"name":"小撮锆锡合金-4粉","tr":"小撮锆锡合金-4粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["dustTinyZircaloy-2"],"name":"小撮锆锡合金-2粉","tr":"小撮锆锡合金-2粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11107":{"oreDict":["dustTinyBastnasiteRareEarthOxides"],"name":"小撮氟碳镧铈稀土氧化物粉","tr":"小撮氟碳镧铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["dustTinyIncoloy-903"],"name":"小撮耐热铬铁合金-903粉","tr":"小撮耐热铬铁合金-903粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11108":{"oreDict":["dustTinyAcid-LeachedBastnasiteRareEarthOxides"],"name":"小撮酸浸氟碳镧铈稀土氧化物粉","tr":"小撮酸浸氟碳镧铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["dustTinyAdamantiumAlloy"],"name":"小撮精金合金粉","tr":"小撮精金合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11109":{"oreDict":["dustTinyGangue"],"name":"小撮脉石粉","tr":"小撮脉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11110":{"oreDict":["dustTinyRoastedRareEarthOxides"],"name":"小撮焙烧稀土氧化物粉","tr":"小撮焙烧稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11111":{"oreDict":["dustTinyWetRareEarthOxides"],"name":"小撮湿稀土氧化物粉","tr":"小撮湿稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11112":{"oreDict":["dustTinyCerium-OxidisedRareEarthOxides"],"name":"小撮氧化铈稀土氧化物粉","tr":"小撮氧化铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11113":{"oreDict":["dustTinyBastnasiteRarerEarthOxides"],"name":"小撮氟碳镧铈罕土氧化物粉","tr":"小撮氟碳镧铈罕土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11116":{"oreDict":["dustTinySamaricRareEarthConcentrate"],"name":"小撮钐稀土精粉","tr":"小撮钐稀土精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10093":{"oreDict":["dustTinyFerrocene"],"name":"小撮二茂铁粉","tr":"小撮二茂铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11117":{"oreDict":["dustTinyNeodymiumRareEarthConcentrate"],"name":"小撮钕稀土精粉","tr":"小撮钕稀土精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["dustTinyMAR-M200Steel"],"name":"小撮MAR-M200特种钢粉","tr":"小撮MAR-M200特种钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["dustTinyMAR-Ce-M200Steel"],"name":"小撮MAR-Ce-M200特种钢粉","tr":"小撮MAR-Ce-M200特种钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11121":{"oreDict":["dustTinyLanthaniumChloride"],"name":"小撮氯化镧粉","tr":"小撮氯化镧粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["dustTinyLithiumChloride"],"name":"小撮氯化锂粉","tr":"小撮氯化锂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11122":{"oreDict":["dustTinyNeodymiumOxide"],"name":"小撮氧化钕粉","tr":"小撮氧化钕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["dustTinySignalium"],"name":"小撮信素粉","tr":"小撮信素粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11123":{"oreDict":["dustTinyFluorinatedSamaricConcentrate"],"name":"小撮氟化钐精粉","tr":"小撮氟化钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10100":{"oreDict":["dustTinyLumiinessence"],"name":"小撮流明精华粉","tr":"小撮流明精华粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11124":{"oreDict":["dustTinyCalciumFluoride"],"name":"小撮氟化钙粉","tr":"小撮氟化钙粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["dustTinyLumiium"],"name":"小撮流明粉","tr":"小撮流明粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11125":{"oreDict":["dustTinySamarium-TerbiumMixture"],"name":"小撮钐-铽混合物粉","tr":"小撮钐-铽混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["dustTinyArtherium-Sn"],"name":"小撮阿瑟锡粉","tr":"小撮阿瑟锡粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11126":{"oreDict":["dustTinyNitrogenatedSamarium-TerbiumMixture"],"name":"小撮氮化钐-铽混合物粉","tr":"小撮氮化钐-铽混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["dustTinyTanmolyiumBeta-C"],"name":"小撮钛钼合金β-C粉","tr":"小撮钛钼合金β-C粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11127":{"oreDict":["dustTinyTerbiumNitrate"],"name":"小撮硝酸铽粉","tr":"小撮硝酸铽粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["dustTinyDalisenite"],"name":"小撮大力合金粉","tr":"小撮大力合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11128":{"oreDict":["dustTinySamariumOreConcentrate"],"name":"小撮钐精粉","tr":"小撮钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["dustTinyHikarium"],"name":"小撮光素粉","tr":"小撮光素粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11129":{"oreDict":["dustTinyDephosphatedSamariumConcentrate"],"name":"小撮脱磷钐精粉","tr":"小撮脱磷钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["dustTinyTairitsu"],"name":"小撮对立合金粉","tr":"小撮对立合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10108":{"oreDict":["dustTinyMagnesiumSulphate"],"name":"小撮硫酸镁粉","tr":"小撮硫酸镁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["dustTinyPreciousMetalsAlloy"],"name":"小撮稀有金属合金粉","tr":"小撮稀有金属合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["dustTinyEnrichedNaquadahAlloy"],"name":"小撮富集硅岩合金粉","tr":"小撮富集硅岩合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["dustTinyMetastableOganesson"],"name":"小撮亚稳态鿫粉","tr":"小撮亚稳态鿫粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["dustTinyShirabon"],"name":"小撮调律源金粉","tr":"小撮调律源金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10113":{"oreDict":["dustTinyInertNaquadah"],"name":"小撮惰性硅岩粉","tr":"小撮惰性硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10114":{"oreDict":["dustTinyInertEnrichedNaquadah"],"name":"小撮惰性富集硅岩粉","tr":"小撮惰性富集硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10115":{"oreDict":["dustTinyInertNaquadria"],"name":"小撮惰性超能硅岩粉","tr":"小撮惰性超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"lootgames:smart_subordinate":{"0":{"name":"Smart Subordinate","tr":"智能助手","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:slabs":{"0":{"oreDict":["LarchSlabs"," slabWood"],"name":"Larch Wood Slab","tr":"落叶树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"," TeakSlab"],"name":"Teak Wood Slab","tr":"柚树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabWood"," AcaciaSlab"],"name":"Desert Acacia Wood Slab","tr":"沙漠刺槐台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabWood"," LimeSlabs"],"name":"Lime Wood Slab","tr":"酸橙树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabWood"," ChestnutSlab"],"name":"Chestnut Wood Slab","tr":"栗树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["slabWood"," WengeSlab"],"name":"Wenge Wood Slab","tr":"崖豆台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["slabWood"," BaobabSlab"],"name":"Baobab Wood Slab","tr":"猴面包树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["slabWood"," SequoiaSlab"],"name":"Sequoia Wood Slab","tr":"红杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["slabWood"," KapokSlabs"],"name":"Kapok Wood Slab","tr":"木棉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["slabWood"," EbonySlab"],"name":"Ebony Wood Slab","tr":"乌檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["slabWood"," MahoganySlabs"],"name":"Mahogany Wood Slab","tr":"桃心树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["BalsaSlab"," slabWood"],"name":"Balsa Wood Slab","tr":"巴尔杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["slabWood"," WillowSlab"],"name":"Willow Wood Slab","tr":"柳树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["slabWood"," WalnutSlab"],"name":"Walnut Wood Slab","tr":"核桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["slabWood"," GreenheartSlabs"],"name":"Greenheart Wood Slab","tr":"绿樟树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["slabWood"," CherrySlab"],"name":"Cherry Wood Slab","tr":"樱桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["slabWood"," MahoeSlabs"],"name":"Mahoe Wood Slab","tr":"高槿树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["slabWood"],"name":"Poplar Wood Slab","tr":"白杨树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["slabWood"," PalmSlabs"],"name":"Palm Wood Slab","tr":"棕榈树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["slabWood"," PapayaSlabs"],"name":"Papaya Wood Slab","tr":"木瓜台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["PineSlab"," slabWood"],"name":"Pine Wood Slab","tr":"松树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["slabWood"," PlumSlab"],"name":"Plum Wood Slab","tr":"李子台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["slabWood"," PoplarSlab"," MappleSlabs"],"name":"Maple Wood Slab","tr":"枫树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["slabWood"," CitrusSlab"],"name":"Citrus Wood Slab","tr":"柑橘树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["slabWood"],"name":"Giant Sequoia Wood Slab","tr":"巨杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["slabWood"],"name":"Ipe Wood Slab","tr":"重蚁树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["slabWood"],"name":"Padauk Wood Slab","tr":"紫檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["slabWood"],"name":"Cocobolo Wood Slab","tr":"黄檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["slabWood"],"name":"Zebrawood Wood Slab","tr":"斑木树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:GlassPaneClearStained":{"0":{"name":"White Stained Pane","tr":"白色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Stained Pane","tr":"橙色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Stained Pane","tr":"品红色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Stained Pane","tr":"淡蓝色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Stained Pane","tr":"黄色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Stained Pane","tr":"黄绿色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Stained Pane","tr":"粉色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Stained Pane","tr":"灰色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Gray Stained Pane","tr":"淡灰色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Stained Pane","tr":"青色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Stained Pane","tr":"紫色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Stained Pane","tr":"蓝色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Stained Pane","tr":"棕色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Stained Pane","tr":"绿色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Stained Pane","tr":"红色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Stained Pane","tr":"黑色玻璃板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"SpiceOfLife:lunchbox":{"0":{"name":"Lunch Box","tr":"午餐盒","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.MoldFormPipeSmall":{"0":{"name":"Casting Form (Small Pipe Mold)","tr":"铸件(小型管道)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:CoalTar":{"0":{"oreDict":["cellCoalTar"],"name":"煤焦单元","tr":"煤焦单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamwintersquashCrop":{"0":{"name":"Winter Squash Crop","tr":"冬南瓜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearStaballoy":{"0":{"oreDict":["gearGtStaballoy"," gearStaballoy"],"name":"贫铀合金齿轮","tr":"贫铀合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:planks":{"0":{"oreDict":["LarchPlanks"," plankWood"],"name":"Larch Wood Planks","tr":"落叶树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"," TeakPlanks"],"name":"Teak Wood Planks","tr":"柚树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"," AcaciaPlanks"],"name":"Desert Acacia Wood Planks","tr":"沙漠刺槐木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"," LimePlanks"],"name":"Lime Wood Planks","tr":"酸橙树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"," ChestnutPlanks"],"name":"Chestnut Wood Planks","tr":"栗树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plankWood"," WengePlanks"],"name":"Wenge Wood Planks","tr":"崖豆木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"," BaobabPlanks"],"name":"Baobab Wood Planks","tr":"猴面包树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"," SequoiaPlanks"],"name":"Sequoia Wood Planks","tr":"红杉树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plankWood"," KapokPlanks"],"name":"Kapok Wood Planks","tr":"木棉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["plankWood"," EbonyPlanks"],"name":"Ebony Wood Planks","tr":"乌檀树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["plankWood"," MahoganyPlanks"],"name":"Mahogany Wood Planks","tr":"桃心树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["BalsaPlanks"," plankWood"],"name":"Balsa Wood Planks","tr":"巴尔杉树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["plankWood"," WillowPlanks"],"name":"Willow Wood Planks","tr":"柳树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["plankWood"," WalnutPlanks"],"name":"Walnut Wood Planks","tr":"核桃木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["plankWood"," GreenheartPlanks"],"name":"Greenheart Wood Planks","tr":"绿樟树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["plankWood"," CherryPlanks"],"name":"Cherry Wood Planks","tr":"樱桃木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["plankWood"," MahoePlanks"],"name":"Mahoe Wood Planks","tr":"高槿树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["plankWood"],"name":"Poplar Wood Planks","tr":"白杨树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["plankWood"," PalmPlanks"],"name":"Palm Wood Planks","tr":"棕榈树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["plankWood"," PapayaPlanks"],"name":"Papaya Wood Planks","tr":"木瓜木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["PinePlanks"," plankWood"],"name":"Pine Wood Planks","tr":"松树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["plankWood"," PlumPlanks"],"name":"Plum Wood Planks","tr":"李子木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["plankWood"," PoplarPlanks"," MapplePlanks"],"name":"Maple Wood Planks","tr":"枫树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["plankWood"," CitrusPlanks"],"name":"Citrus Wood Planks","tr":"柑橘树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["plankWood"],"name":"Giant Sequoia Wood Planks","tr":"巨杉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["plankWood"],"name":"Ipe Wood Planks","tr":"重蚁树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["plankWood"],"name":"Padauk Wood Planks","tr":"紫檀树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["plankWood"],"name":"Cocobolo Wood Planks","tr":"黄檀树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["plankWood"],"name":"Zebrawood Wood Planks","tr":"斑木树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"IronChest:copperSteelUpgrade":{"0":{"name":"Copper to Steel Chest Upgrade","tr":"升级:铜\u003e钢","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:scythe":{"0":{"name":"§f山铜 镰刀","tr":"§f山铜 镰刀","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"AWWayofTime:itemCombinationalCatalyst":{"0":{"name":"Combinational Catalyst","tr":"组合催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:glintweed":{"0":{"oreDict":["cropGlintWeed"],"name":"Glint Weed","tr":"闪烁草","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaEoregold":{"0":{"oreDict":["oreGold"],"name":"Gold Ore","tr":"巴纳德E金矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewMaragingSteel250":{"0":{"oreDict":["screwMaragingSteel250"],"name":"马氏体时效钢250螺丝","tr":"马氏体时效钢250螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:StarBlock":{"0":{"oreDict":["blockNetherStar"],"name":"Nether Star Block","tr":"下界之星方块","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodClock":{"0":{"name":"Sacred Oak Clock","tr":"天域树橡树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Clock","tr":"樱桃树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Clock","tr":"暗黑树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Clock","tr":"杉树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"HellBark Clock","tr":"地狱皮树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Clock","tr":"天域树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Clock","tr":"蓝花楹时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Clock","tr":"魔法树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Clock","tr":"红杉时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Clock","tr":"棕榈树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Clock","tr":"松树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Clock","tr":"红木时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Clock","tr":"柳树时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Clock","tr":"桃花心木时钟","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.giantSword":{"0":{"name":"Giant\u0027s Sword","tr":"巨人的剑","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1025}},"chisel:bookshelf":{"1":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Bookshelf","tr":"书架","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:laboratoryblock":{"0":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Laboratory Block","tr":"实验室方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:diorite":{"0":{"oreDict":["blockDiorite"," stoneDiorite"],"name":"Diorite","tr":"闪长岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Diorite","tr":"闪长岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Diorite","tr":"闪长岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Diorite","tr":"闪长岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Diorite","tr":"闪长岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Diorite","tr":"闪长岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Diorite","tr":"闪长岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyMaragingSteel250":{"0":{"oreDict":["dustTinyMaragingSteel250"],"name":"小撮马氏体时效钢250粉","tr":"小撮马氏体时效钢250粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeSmallPipe":{"0":{"name":"Casting Form (Small Pipe Shape)","tr":"铸形(小型管道)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearChromaticGlass":{"0":{"oreDict":["gearGtChromaticGlass"," gearChromaticGlass"],"name":"彩色玻璃齿轮","tr":"彩色玻璃齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:slime.grass.tall":{"0":{"oreDict":["cropGrass"],"name":"Slimy Grass","tr":"史莱姆草","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltZirconium":{"0":{"oreDict":["boltZirconium"],"name":"锆螺栓","tr":"锆螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:adventurers_diary":{"0":{"name":"Adventurer\u0027s Diary","tr":"冒险家日志","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:item.steel_boots":{"0":{"name":"Heavy Duty Boots","tr":"重型靴","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":391}},"harvestcraft:vanillaicecreamItem":{"0":{"oreDict":["foodVanillaicecream"],"name":"Vanilla Ice Cream","tr":"香草冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPolonium":{"0":{"oreDict":["dustTinyPolonium"],"name":"小撮钋粉","tr":"小撮钋粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.loco.steam.solid":{"0":{"name":"Steam Locomotive","tr":"蒸汽机车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"FloodLights:carbonDissolver":{"0":{"name":"Fuel Dissolver","tr":"燃料溶解器","tab":"泛光灯","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureGadoliniteY":{"0":{"oreDict":["dustPureGadoliniteY"],"name":"Purified Gadolinite (Y) Dust","tr":"洁净硅铍钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_pickaxe_diamond":{"0":{"name":"Blood Infused Diamond Pickaxe","tr":"注血钻石镐","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:ItemNuggetBeef":{"0":{"name":"Beef Nugget","tr":"牛肉粒","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:rubyslippers":{"0":{"name":"Ruby Slippers","tr":"红宝石舞鞋","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":66}},"Botania:biomeStoneA14Slab":{"0":{"name":"Metamorphic Taiga Cobblestone Slab","tr":"变质雪原圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"FloodLights:growLight":{"0":{"name":"Grow Light","tr":"催生灯","tab":"泛光灯","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_north_unlit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtCinobiteA243":{"0":{"oreDict":["frameGtCinobiteA243"],"name":"西诺柏A243框架","tr":"西诺柏A243框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberrypancakesItem":{"0":{"oreDict":["foodBlueberrypancakes"],"name":"Blueberry Pancakes","tr":"蓝莓煎饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseHypogen":{"0":{"oreDict":["plateDenseHypogen"],"name":"致密海珀珍板","tr":"致密海珀珍板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledAlmandine":{"0":{"oreDict":["milledAlmandine"],"name":"Milled Almandine","tr":"研磨铁铝榴石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamzucchiniCrop":{"0":{"name":"Zucchini Crop","tr":"西葫芦","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:raisinsItem":{"0":{"oreDict":["foodRaisins"],"name":"Raisins","tr":"葡萄干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTellurium":{"0":{"oreDict":["frameGtTellurium"],"name":"碲框架","tr":"碲框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:apimancersDrainer":{"0":{"name":"Apimancer\u0027s Drainer","tr":"Apimancer\u0027s Drainer","tab":"魔法蜜蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltIncoloy020":{"0":{"oreDict":["boltIncoloy020"],"name":"耐热铬铁合金-020螺栓","tr":"耐热铬铁合金-020螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBerylliumHydroxide":{"0":{"oreDict":["dustSmallBerylliumHydroxide"],"name":"小堆氢氧化铍粉","tr":"小堆氢氧化铍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EuropaStoneDust":{"0":{"oreDict":["dustSpace"," dustEuropa"," dustEuropaStone"],"name":"Europa Stone Dust","tr":"木卫二尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemNanoSaber":{"1":{"name":"Nano Saber","tr":"纳米剑","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Nano Saber","tr":"纳米剑","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:pamcarrotCake":{"0":{"name":"Carrot Cake","tr":"胡萝卜蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.StargateCrystalDust":{"0":{"name":"Stargate-Crystal Dust","tr":"星门水晶粉","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_obsidian":{"0":{"oreDict":["obsidian"," obsidianBlack"],"name":"Colored Obsidian (White Frequency)","tr":"染色 黑曜石 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["obsidian"," obsidianRed"],"name":"Colored Obsidian (Orange Frequency)","tr":"染色 黑曜石 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["obsidian"," obsidianGreen"],"name":"Colored Obsidian (Magenta Frequency)","tr":"染色 黑曜石 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["obsidian"," obsidianBrown"],"name":"Colored Obsidian (Light Blue Frequency)","tr":"染色 黑曜石 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["obsidian"," obsidianBlue"],"name":"Colored Obsidian (Yellow Frequency)","tr":"染色 黑曜石 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["obsidian"," obsidianPurple"],"name":"Colored Obsidian (Lime Frequency)","tr":"染色 黑曜石 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["obsidian"," obsidianCyan"],"name":"Colored Obsidian (Pink Frequency)","tr":"染色 黑曜石 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["obsidian"," obsidianLightGray"],"name":"Colored Obsidian (Gray Frequency)","tr":"染色 黑曜石 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["obsidian"," obsidianGray"],"name":"Colored Obsidian (Light Gray Frequency)","tr":"染色 黑曜石 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["obsidianPink"," obsidian"],"name":"Colored Obsidian (Cyan Frequency)","tr":"染色 黑曜石 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["obsidianLime"," obsidian"],"name":"Colored Obsidian (Purple Frequency)","tr":"染色 黑曜石 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["obsidianYellow"," obsidian"],"name":"Colored Obsidian (Blue Frequency)","tr":"染色 黑曜石 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["obsidianLightBlue"," obsidian"],"name":"Colored Obsidian (Brown Frequency)","tr":"染色 黑曜石 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["obsidianMagenta"," obsidian"],"name":"Colored Obsidian (Green Frequency)","tr":"染色 黑曜石 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["obsidianOrange"," obsidian"],"name":"Colored Obsidian (Red Frequency)","tr":"染色 黑曜石 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["obsidian"," obsidianWhite"],"name":"Colored Obsidian (Black Frequency)","tr":"染色 黑曜石 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockRainforestOakLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Oak Leaves","tr":"橡树树叶","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:stairswoodhawthorn":{"0":{"oreDict":["stairWood"],"name":"Hawthorn Stairs","tr":"山楂树楼梯","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongHS188A":{"0":{"oreDict":["stickLongHS188A"],"name":"长HS188-A杆","tr":"长HS188-A杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFsttable2":{"0":{"name":"Pine Table","tr":"松树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Table","tr":"李子树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Table","tr":"杨树木桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Table","tr":"红杉桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Table","tr":"柚木桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Table","tr":"核桃树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Table","tr":"崖豆树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Table","tr":"柳树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:invisibleMultiblock":{"0":{"name":"Energy Core","tr":"能量核心(隐藏)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:refillingchest":{"0":{"name":"Chest","tr":"箱子","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ApprenticeOrb":{"0":{"name":"Apprentice Orb","tr":"学徒宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTriniumNaquadahCarbonite":{"0":{"oreDict":["dustTinyTriniumNaquadahCarbonite"],"name":"小撮掺碳三元硅岩合金粉","tr":"小撮掺碳三元硅岩合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedCerite":{"0":{"oreDict":["crushedPurifiedCerite"],"name":"Purified Crushed Cerite Ore","tr":"洗净的铈硅石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:grenadeThrowable":{"0":{"name":"Throwable Grenade","tr":"投射型榴弹","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:peachjellyItem":{"0":{"oreDict":["foodPeachjelly"],"name":"Peach Jelly","tr":"桃子果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:maplesyruppancakesItem":{"0":{"oreDict":["foodMaplesyruppancakes"],"name":"Maple Syrup Pancakes","tr":"枫糖煎饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedAlburnite":{"0":{"oreDict":["crushedPurifiedAlburnite"],"name":"Purified Crushed Alburnite Ore","tr":"洗净的硫碲金锗矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioClipboard":{"0":{"name":"Clipboard","tr":"Clipboard","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearIncoloyMA956":{"0":{"oreDict":["gearGtIncoloyMA956"," gearIncoloyMA956"],"name":"耐热铬铁合金-MA956齿轮","tr":"耐热铬铁合金-MA956齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:trapdoor_acacia":{"0":{"name":"Acacia Trapdoor","tr":"金合欢木活板门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:crabrawItem":{"0":{"oreDict":["foodCrabraw"],"name":"Raw Crab","tr":"生螃蟹","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshSpade":{"0":{"name":"Desh Shovel","tr":"戴斯铲","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1025}},"miscutils:blockFrameGtRhodium":{"0":{"oreDict":["frameGtRhodium"],"name":"铑框架","tr":"铑框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellThorium232":{"0":{"oreDict":["cellThorium232"],"name":"钍-232单元","tr":"钍-232单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:cauldronbook":{"0":{"name":"Witches\u0027 Brews","tr":"巫师酿造手册","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedSamarskiteY":{"0":{"oreDict":["crushedSamarskiteY"],"name":"Crushed Samarskite (Y) Ore","tr":"粉碎的铌钇矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateMaragingSteel250":{"0":{"oreDict":["plateMaragingSteel250"],"name":"马氏体时效钢250板","tr":"马氏体时效钢250板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetOctiron":{"0":{"oreDict":["nuggetOctiron"],"name":"八角铁粒","tr":"八角铁粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.viewScreen":{"0":{"name":"Display Screen","tr":"显示屏","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedgemFlawless":{"1":{"oreDict":["gemFlawlessBismutite"],"name":"无瑕的泡铋","tr":"无瑕的泡铋","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["gemFlawlessPrasiolite"],"name":"无瑕的堇云石","tr":"无瑕的堇云石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["gemFlawlessCubicZirconia"],"name":"无瑕的立方氧化锆","tr":"无瑕的立方氧化锆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["gemFlawlessMagnetoResonatic"],"name":"无瑕的磁共振石","tr":"无瑕的磁共振石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["gemFlawlessFluor-Buergerite"],"name":"无瑕的氟铁电气石","tr":"无瑕的氟铁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["gemFlawlessChromo-Alumino-Povondraite"],"name":"无瑕的铬铝电气石","tr":"无瑕的铬铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["gemFlawlessOrundum"],"name":"无瑕的合成玉","tr":"无瑕的合成玉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["gemFlawlessVanadio-Oxy-Dravite"],"name":"无瑕的钒镁电气石","tr":"无瑕的钒镁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["gemFlawlessOlenite"],"name":"无瑕的铝电气石","tr":"无瑕的铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["gemFlawlessBArTiMaEuSNeK"],"name":"无瑕的BArTiMaEuSNeK","tr":"无瑕的BArTiMaEuSNeK","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["gemFlawlessCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"无瑕的掺铈镥铝石榴石 (Ce:LuAG)","tr":"无瑕的掺铈镥铝石榴石 (Ce:LuAG)","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["gemFlawlessRedZircon"],"name":"无瑕的红锆石","tr":"无瑕的红锆石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["gemFlawlessSalt"],"name":"无瑕的盐","tr":"无瑕的盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["gemFlawlessSpodumene"],"name":"无瑕的锂辉石","tr":"无瑕的锂辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["gemFlawlessRockSalt"],"name":"无瑕的岩盐","tr":"无瑕的岩盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["gemFlawlessFayalite"],"name":"无瑕的铁橄榄石","tr":"无瑕的铁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["gemFlawlessForsterite"],"name":"无瑕的镁橄榄石","tr":"无瑕的镁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["gemFlawlessHedenbergite"],"name":"无瑕的钙铁辉石","tr":"无瑕的钙铁辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["gemFlawlessTiberium"],"name":"无瑕的泰伯利亚","tr":"无瑕的泰伯利亚","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["gemFlawlessFluorspar"],"name":"无瑕的氟石","tr":"无瑕的氟石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:creamedcornItem":{"0":{"oreDict":["foodCreamedcorn"],"name":"Creamed Corn","tr":"奶油玉米","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:lightlyCrackedNaquadahAsphalt":{"0":{"name":"Lightly Cracked Naquadah Asphalt","tr":"轻度裂化硅岩沥青","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:root":{"0":{"name":"Living Root","tr":"活根","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SixtyKCell":{"0":{"name":"60K Cell","tr":"60K冷却单元外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureCrocoite":{"0":{"oreDict":["dustPureCrocoite"],"name":"Purified Crocoite Dust","tr":"洁净赤铅矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetBloodSteel":{"0":{"oreDict":["nuggetBloodSteel"],"name":"血钢粒","tr":"血钢粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:clay":{"0":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"name":"Clay","tr":"粘土","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodBookcase":{"0":{"name":"Bloodwood Bookcase","tr":"血树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Bookcase","tr":"黑暗树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Bookcase","tr":"桉树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Bookcase","tr":"熔融树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Bookcase","tr":"幽魂树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Bookcase","tr":"车桑子树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Bookcase","tr":"枫树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Bookcase","tr":"紫檀树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Bookcase","tr":"红木书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Bookcase","tr":"银铃树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Bookcase","tr":"樱花树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Bookcase","tr":"核桃树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Bookcase","tr":"柳树书架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustAlburnite":{"0":{"oreDict":["dustAlburnite"],"name":"硫碲金锗矿粉","tr":"硫碲金锗矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemTFBP":{"0":{"name":"TFBP - Empty","tr":"地形转换模板-空白","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyMixTumbaga":{"0":{"oreDict":["dustTinyMixTumbaga"],"name":"小撮铜金混合物粉","tr":"小撮铜金混合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:ancientStaff":{"0":{"name":"Ancient Staff","tr":"上古手仗","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Ancient Staff Handle","tr":"上古手杖手柄","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Ancient Staff Pole","tr":"上古手杖仗杆","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Ancient Staff Topper","tr":"上古手杖龙头","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Depleted Ancient Staff","tr":"废弃上古手杖","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:grassHorn":{"0":{"name":"Horn of the Wild","tr":"狂野号角","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Horn of the Canopy","tr":"林冠号角","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Horn of the Covering","tr":"雪原号角","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:FocusWarding":{"0":{"name":"Wand Focus: Warding","tr":"法杖核心:守护","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:tile.BlockWireless":{"0":{"name":"ME Wireless Access Point","tr":"ME无线访问点","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraBees:hive":{"0":{"name":"Water Hive","tr":"水生蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Rock Hive","tr":"岩石蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Nether Hive","tr":"下界蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Marble Hive","tr":"大理石蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedResin":{"0":{"name":"Crated Sticky Resin","tr":"装箱的粘性树脂","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WitherProtectionRing":{"0":{"name":"Wither Protection Ring","tr":"凋零防护指环","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamNutmeg":{"0":{"name":"Nutmeg","tr":"肉豆蔻","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:elevator":{"0":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Elevator","tr":"电梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustInconel625":{"0":{"oreDict":["dustInconel625"],"name":"镍铬基合金-625粉","tr":"镍铬基合金-625粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:frame":{"0":{"name":"Wire Support Frame","tr":"线缆支撑框架","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MutatedEgg":{"0":{"name":"Mutated Egg","tr":"基因突变蛋","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellKoboldite":{"0":{"oreDict":["cellKoboldite"],"name":"妖金单元","tr":"妖金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotMaragingSteel350":{"0":{"oreDict":["ingotMaragingSteel350"],"name":"马氏体时效钢350锭","tr":"马氏体时效钢350锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewOctiron":{"0":{"oreDict":["screwOctiron"],"name":"八角铁螺丝","tr":"八角铁螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnderiumBaseBars":{"0":{"oreDict":["barsEnderiumBase"],"name":"Enderium Base Bars","tr":"末影粗胚栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleWhiteMetal":{"0":{"oreDict":["plateDoubleWhiteMetal"],"name":"双重白物质板","tr":"双重白物质板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemCellLafiumCompound":{"0":{"oreDict":["cellLafiumCompound"],"name":"路菲恩化合物单元","tr":"路菲恩化合物单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallStaballoy":{"0":{"oreDict":["dustSmallStaballoy"],"name":"小堆贫铀合金粉","tr":"小堆贫铀合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cauliflowerItem":{"0":{"oreDict":["cropCauliflower"," listAllveggie"],"name":"Cauliflower","tr":"花椰菜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngineeringProcessorItemEmeraldCore":{"0":{"name":"Item Processor Tier III","tr":"物品处理器 III","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:enderPlanks":{"0":{"oreDict":["plankWood"],"name":"Ender Wood Planks","tr":"末影树木板","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseTantalumCarbide":{"0":{"oreDict":["plateDenseTantalumCarbide"],"name":"致密碳化钽板","tr":"致密碳化钽板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedcrushedPurified":{"1":{"oreDict":["crushedPurifiedBismutite"],"name":"洗净的泡铋矿石","tr":"洗净的泡铋矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["crushedPurifiedBismuthinite"],"name":"洗净的辉铋矿石","tr":"洗净的辉铋矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["crushedPurifiedFluor-Buergerite"],"name":"洗净的氟铁电气石矿石","tr":"洗净的氟铁电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["crushedPurifiedRarestMetalResidue"],"name":"洗净的稀有金属渣矿石","tr":"洗净的稀有金属渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["crushedPurifiedIridiumMetalResidue"],"name":"洗净的铱金属渣矿石","tr":"洗净的铱金属渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["crushedPurifiedNaquadahOxideMixture"],"name":"洗净的氧化硅岩混合物矿石","tr":"洗净的氧化硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["crushedPurifiedChromo-Alumino-Povondraite"],"name":"洗净的铬铝电气石矿石","tr":"洗净的铬铝电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["crushedPurifiedVanadio-Oxy-Dravite"],"name":"洗净的钒镁电气石矿石","tr":"洗净的钒镁电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["crushedPurifiedOlenite"],"name":"洗净的铝电气石矿石","tr":"洗净的铝电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["crushedPurifiedArsenopyrite"],"name":"洗净的砷黄铁矿石","tr":"洗净的砷黄铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["crushedPurifiedFerberite"],"name":"洗净的钨铁矿石","tr":"洗净的钨铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["crushedPurifiedLoellingite"],"name":"洗净的斜方砷铁矿石","tr":"洗净的斜方砷铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["crushedPurifiedRoquesite"],"name":"洗净的硫铟铜矿石","tr":"洗净的硫铟铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["crushedPurifiedBornite"],"name":"洗净的斑铜矿石","tr":"洗净的斑铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["crushedPurifiedWittichenite"],"name":"洗净的硫铋铜矿石","tr":"洗净的硫铋铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["crushedPurifiedCrudeRhodiumMetal"],"name":"洗净的粗制铑金属矿石","tr":"洗净的粗制铑金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["crushedPurifiedDjurleite"],"name":"洗净的久辉铜矿石","tr":"洗净的久辉铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["crushedPurifiedHuebnerite"],"name":"洗净的钨酸锰矿石","tr":"洗净的钨酸锰矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["crushedPurifiedThorianite"],"name":"洗净的方钍石矿石","tr":"洗净的方钍石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["crushedPurifiedRedZircon"],"name":"洗净的红锆石矿石","tr":"洗净的红锆石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["crushedPurifiedEnriched-NaquadahOxideMixture"],"name":"洗净的氧化富集硅岩混合物矿石","tr":"洗净的氧化富集硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["crushedPurifiedFayalite"],"name":"洗净的铁橄榄石矿石","tr":"洗净的铁橄榄石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["crushedPurifiedForsterite"],"name":"洗净的镁橄榄石矿石","tr":"洗净的镁橄榄石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["crushedPurifiedNaquadriaOxideMixture"],"name":"洗净的氧化超能硅岩混合物矿石","tr":"洗净的氧化超能硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["crushedPurifiedHedenbergite"],"name":"洗净的钙铁辉石矿石","tr":"洗净的钙铁辉石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["crushedPurifiedTiberium"],"name":"洗净的泰伯利亚矿石","tr":"洗净的泰伯利亚矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["crushedPurifiedRedDescloizite"],"name":"洗净的红钒铅锌矿石","tr":"洗净的红钒铅锌矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["crushedPurifiedOrangeDescloizite"],"name":"洗净的橙钒铅铜矿石","tr":"洗净的橙钒铅铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["crushedPurifiedFluorspar"],"name":"洗净的氟石矿石","tr":"洗净的氟石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["crushedPurifiedGreenFuchsite"],"name":"洗净的绿铬云母矿石","tr":"洗净的绿铬云母矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["crushedPurifiedRedFuchsite"],"name":"洗净的红铬云母矿石","tr":"洗净的红铬云母矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["crushedPurifiedAtheneite"],"name":"洗净的砷汞钯矿石","tr":"洗净的砷汞钯矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["crushedPurifiedTemagamite"],"name":"洗净的碲汞钯矿石","tr":"洗净的碲汞钯矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["crushedPurifiedTerlinguaite"],"name":"洗净的黄氯汞矿石","tr":"洗净的黄氯汞矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["crushedPurifiedPrasiolite"],"name":"洗净的堇云石矿石","tr":"洗净的堇云石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["crushedPurifiedOrundum"],"name":"洗净的合成玉矿石","tr":"洗净的合成玉矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["crushedPurifiedBArTiMaEuSNeK"],"name":"洗净的BArTiMaEuSNeK矿石","tr":"洗净的BArTiMaEuSNeK矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["crushedPurifiedPlatinumMetallicPowder"],"name":"洗净的铂金属矿石","tr":"洗净的铂金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["crushedPurifiedPalladiumMetallicPowder"],"name":"洗净的钯金属矿石","tr":"洗净的钯金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["crushedPurifiedLeachResidue"],"name":"洗净的浸出渣矿石","tr":"洗净的浸出渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaTechnetium":{"0":{"oreDict":["cellPlasmaTechnetium"],"name":"锝等离子体单元","tr":"锝等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pumpkinmuffinItem":{"0":{"name":"Pumpkin Muffin","tr":"南瓜松糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.rustyHandle":{"0":{"name":"Rusty Handle","tr":"生锈手轮","tab":"更多门","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.steel.shovel":{"0":{"name":"Steel Shovel","tr":"钢铲","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":501}},"miscutils:itemIngotHS188A":{"0":{"oreDict":["ingotHS188A"],"name":"HS188-A锭","tr":"HS188-A锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustPotin":{"0":{"oreDict":["dustPotin"],"name":"粗青铜合金粉","tr":"粗青铜合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemAmuletVis":{"0":{"name":"Vis Stone","tr":"魔力石","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Amulet of Vis Storage","tr":"魔力存储护身符","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Transport:filteredBufferBlock":{"0":{"name":"Filtered Buffer","tr":"过滤缓存器","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:lazullia":{"0":{"name":"Lazullia Crop","tr":"青金草","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:garlicItem":{"0":{"oreDict":["cropGarlic"," listAllherb"],"name":"Garlic","tr":"大蒜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotSelenium":{"0":{"oreDict":["ingotSelenium"],"name":"硒锭","tr":"硒锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetAbyssalAlloy":{"0":{"oreDict":["nuggetAbyssalAlloy"],"name":"深渊合金粒","tr":"深渊合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:bookGT":{"0":{"oreDict":["bookWritten"," craftingBook"],"name":"§o地热锅炉手册","tr":"§o地热锅炉手册","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"oreDict":["bookWritten"," craftingBook"],"name":"§o能源站手册","tr":"§o能源站手册","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"oreDict":["bookWritten"," craftingBook"],"name":"§o模块化饰品手册","tr":"§o模块化饰品手册","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"oreDict":["bookWritten"," craftingBook"],"name":"§o大型加工厂手册","tr":"§o大型加工厂手册","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"oreDict":["bookWritten"," craftingBook"],"name":"§o反应堆燃料加工厂手册","tr":"§o反应堆燃料加工厂手册","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"oreDict":["bookWritten"," craftingBook"],"name":"§o化工厂手册","tr":"§o化工厂手册","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:item.BasicAgrichemItem":{"0":{"name":"Algae Biomass","tr":"藻类生物质","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["biomassGreenAlgae"],"name":"Green Algae Biomass","tr":"绿藻生物质","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["biomassBrownAlgae"],"name":"Brown Algae Biomass","tr":"褐藻生物质","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["biomassGoldenBrownAlgae"],"name":"Golden-Brown Algae Biomass","tr":"金褐藻生物质","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["biomassRedAlgae"],"name":"Red Algae Biomass","tr":"红藻生物质","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["fiberCellulose"],"name":"Cellulose Fiber","tr":"纤维素纤维","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["fiberCellulose"," fiberGoldenBrownCellulose"],"name":"Golden-Brown Cellulose Fiber","tr":"金褐纤维素纤维","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["fiberCellulose"," fiberRedCellulose"],"name":"Red Cellulose Fiber","tr":"红色纤维素纤维","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Compost","tr":"堆肥","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["pelletWood"],"name":"Wood Pellet","tr":"木颗粒","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["brickWood"],"name":"Wood Brick","tr":"木砖","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["pulpCellulose"," dustCellulose"],"name":"Cellulose Pulp","tr":"纤维素浆","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Raw Bio Resin","tr":"粗制生物树脂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["catalystEmpty"],"name":"Catalyst Carrier","tr":"催化剂载体","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["catalystAluminiumSilver"],"name":"Green Metal Catalyst","tr":"绿色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["dustAlginicAcid"],"name":"Alginic Acid","tr":"藻酸","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["dustAlumina"],"name":"Alumina","tr":"氧化铝","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["pelletAluminium"],"name":"Aluminium Pellet","tr":"铝颗粒","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["dustSodiumAluminate"],"name":"Sodium Aluminate","tr":"铝酸钠","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["dustSodiumCarbonate"],"name":"Sodium Carbonate","tr":"碳酸钠","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["dustLithiumChloride"],"name":"Lithium Chloride","tr":"氯化锂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Mold (Pellet)","tr":"模具(颗粒)","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Clean Aluminium Mix","tr":"洁净铝混合物","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["pinecone"],"name":"Pinecone","tr":"松果","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["crushedPineMaterial"],"name":"Crushed Pine Materials","tr":"松树碎料","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Factory:refineryBlock":{"0":{"name":"Refinery","tr":"精炼厂","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.sensorGlasses":{"0":{"name":"Sensor Glasses","tr":"探测眼镜","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":2201}},"harvestcraft:mangojellysandwichItem":{"0":{"oreDict":["foodMangojellysandwich"],"name":"Mango Jelly Sandwich","tr":"芒果果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallUranium233":{"0":{"oreDict":["dustSmallUranium233"],"name":"小堆铀-233粉","tr":"小堆铀-233粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:pollen":{"0":{"oreDict":["itemPollen"],"name":"Pollen Cluster","tr":"花粉","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Crystalline Pollen Cluster","tr":"水晶花粉","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPersimmon":{"0":{"name":"Persimmon","tr":"柿子","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:chestSeal":{"0":{"name":"Dark Chest Binding Seal","tr":"黑色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Red Chest Binding Seal","tr":"红色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Chest Binding Seal","tr":"绿色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Brown Chest Binding Seal","tr":"棕色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Chest Binding Seal","tr":"蓝色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Purple Chest Binding Seal","tr":"紫色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Cyan Chest Binding Seal","tr":"青色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Light Gray Chest Binding Seal","tr":"淡灰色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Gray Chest Binding Seal","tr":"灰色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Chest Binding Seal","tr":"粉色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Chest Binding Seal","tr":"黄绿色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Yellow Chest Binding Seal","tr":"黄色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Light Blue Chest Binding Seal","tr":"淡蓝色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Chest Binding Seal","tr":"品红色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Orange Chest Binding Seal","tr":"橙色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Pale Chest Binding Seal","tr":"白色箱子封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:maplesausageItem":{"0":{"oreDict":["foodMaplesausage"],"name":"Maple Sausage","tr":"枫糖香肠","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"bq_standard:loot_chest":{"0":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"50":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"100":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"101":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"102":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"103":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"104":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1},"75":{"name":"Loot Chest","tr":"奖励箱","tab":"更好的任务","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallUranium232":{"0":{"oreDict":["dustSmallUranium232"],"name":"小堆铀-232粉","tr":"小堆铀-232粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTriniumNaquadahCarbonite":{"0":{"oreDict":["plateDoubleTriniumNaquadahCarbonite"],"name":"双重掺碳三元硅岩合金板","tr":"双重掺碳三元硅岩合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemRotorPikyonium64B":{"0":{"oreDict":["rotorPikyonium64B"],"name":"皮卡优合金64B转子","tr":"皮卡优合金64B转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement5SlabFull":{"0":{"name":"Green Portuguese Pavement Slab","tr":"绿色葡萄牙台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodBotmium":{"0":{"oreDict":["stickBotmium"],"name":"博特姆合金杆","tr":"博特姆合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:titaniumPlatedCylinder":{"0":{"name":"Titanium Plated Cylinder","tr":"镀钛气缸","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsAstroMiner":{"0":{"name":"Schematics Astro Miner Chip","tr":"太空采矿机设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongMaragingSteel250":{"0":{"oreDict":["stickLongMaragingSteel250"],"name":"长马氏体时效钢250杆","tr":"长马氏体时效钢250杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetRhodium":{"0":{"oreDict":["nuggetRhodium"],"name":"铑粒","tr":"铑粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaFermium":{"0":{"oreDict":["cellPlasmaFermium"],"name":"镄等离子体单元","tr":"镄等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureRadioactiveMineralMix":{"0":{"oreDict":["dustPureRadioactiveMineralMix"],"name":"Purified Strange Dust","tr":"纯净奇异粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.oxygenPipe":{"0":{"name":"Oxygen Pipe","tr":"氧气管道","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:churnon":{"0":{"name":"Churn","tr":"搅拌机","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:enhanced_ender_pearl":{"0":{"name":"Ender Pearl","tr":"末影珍珠","tab":"","type":"Item","maxStackSize":16,"maxDurability":1}},"Natura:natura.pickaxe.ghostwood":{"0":{"name":"Ghostwood Pickaxe","tr":"幽魂树镐","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":60}},"miscutils:itemIngotRadium":{"0":{"oreDict":["ingotRadium"],"name":"镭锭","tr":"镭锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:transparent_orb":{"0":{"name":"Transparent Orb","tr":"透明气血宝珠","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA9Stairs":{"0":{"name":"Metamorphic Plains Cobblestone Stairs","tr":"变质平原圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicAxe":{"0":{"name":"Draconic Axe","tr":"龙之斧","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"witchery:lilypad":{"0":{"name":"tile.lilypad.name","tr":"tile.lilypad.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTumbaga":{"0":{"oreDict":["frameGtTumbaga"],"name":"铜金合金框架","tr":"铜金合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.GoldCoreChip":{"0":{"name":"Item Circuit Tier I","tr":"物品电路 I","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.signal.tuner":{"0":{"name":"Signal Tuner","tr":"信号调谐器","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:witchlog":{"0":{"oreDict":["logWood"],"name":"Rowan Wood","tr":"山梨树原木","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Alder Wood","tr":"赤杨树原木","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Hawthorn Wood","tr":"山楂树原木","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodRuthenium":{"0":{"oreDict":["stickRuthenium"],"name":"钌杆","tr":"钌杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Builders:machineBlock":{"0":{"name":"Quarry","tr":"采石场","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolCutter":{"0":{"oreDict":["craftingToolWireCutter"],"name":"Cutter","tr":"板材切割剪刀","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":60}},"StorageDrawersNatura:fullDrawers4":{"0":{"oreDict":["drawerBasic"],"name":"Eucalyptus Drawers 2x2","tr":"桉树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Sakura Drawers 2x2","tr":"樱花树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Ghostwood Drawers 2x2","tr":"幽魂树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Redwood Drawers 2x2","tr":"红木树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Blood Drawers 2x2","tr":"血树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Hopseed Drawers 2x2","tr":"车桑子树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Maple Drawers 2x2","tr":"枫树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Silverbell Drawers 2x2","tr":"银铃树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Amaranth Drawers 2x2","tr":"紫檀树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Tigerwood Drawers 2x2","tr":"核桃树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Willow Drawers 2x2","tr":"柳树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Darkwood Drawers 2x2","tr":"黑暗树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Fusewood Drawers 2x2","tr":"熔融树抽屉(2x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetherQuartzSword":{"0":{"name":"Nether Quartz Sword","tr":"下界石英剑","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemNuggetNitinol60":{"0":{"oreDict":["nuggetNitinol60"],"name":"镍钛诺60粒","tr":"镍钛诺60粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartCrossbowBody":{"1536":{"name":"精金 Crossbow Body","tr":"精金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Crossbow Body","tr":"神秘蓝金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Crossbow Body","tr":"琥珀 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Crossbow Body","tr":"纯镃 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Crossbow Body","tr":"谐镃 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Crossbow Body","tr":"聚氯乙烯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Crossbow Body","tr":"永恒 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Crossbow Body","tr":"磁物质 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Crossbow Body","tr":"赛特斯石英 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Crossbow Body","tr":"暗影秘银 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Crossbow Body","tr":"玄铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Crossbow Body","tr":"戴斯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Crossbow Body","tr":"铿铀 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Crossbow Body","tr":"通流琥珀金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Crossbow Body","tr":"末影粗胚 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Crossbow Body","tr":"末影(te) 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Crossbow Body","tr":"炽热的钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Crossbow Body","tr":"火石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Crossbow Body","tr":"力量 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Crossbow Body","tr":"石墨 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Crossbow Body","tr":"石墨烯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Crossbow Body","tr":"注魔金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Crossbow Body","tr":"风之魔晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Crossbow Body","tr":"火之魔晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Crossbow Body","tr":"地之魔晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Crossbow Body","tr":"水之魔晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Crossbow Body","tr":"混沌魔晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Crossbow Body","tr":"秩序魔晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Crossbow Body","tr":"玉 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Crossbow Body","tr":"碧玉 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Crossbow Body","tr":"陨铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Crossbow Body","tr":"陨钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Crossbow Body","tr":"硅岩 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Crossbow Body","tr":"硅岩合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Crossbow Body","tr":"富集硅岩 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Crossbow Body","tr":"超能硅岩 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Crossbow Body","tr":"下界石英 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Crossbow Body","tr":"下界之星 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Crossbow Body","tr":"三钛 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Crossbow Body","tr":"虚空 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Crossbow Body","tr":"胶木 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Crossbow Body","tr":"幽冥剧毒结晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Crossbow Body","tr":"强化 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Crossbow Body","tr":"铱锇合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Crossbow Body","tr":"阳光化合物 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Crossbow Body","tr":"魂金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Crossbow Body","tr":"蓝黄玉 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Crossbow Body","tr":"黄铜 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Crossbow Body","tr":"白铜 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Crossbow Body","tr":"深渊铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Crossbow Body","tr":"钻石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Crossbow Body","tr":"琥珀金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Crossbow Body","tr":"绿宝石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Crossbow Body","tr":"强化混合晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Crossbow Body","tr":"混合晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Crossbow Body","tr":"绿色蓝宝石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Crossbow Body","tr":"殷钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Crossbow Body","tr":"坎塔尔合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Crossbow Body","tr":"镁铝合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Crossbow Body","tr":"镍铬合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Crossbow Body","tr":"玄钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Crossbow Body","tr":"生铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Crossbow Body","tr":"聚乙烯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Crossbow Body","tr":"环氧树脂 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Crossbow Body","tr":"硅橡胶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Crossbow Body","tr":"聚己内酰胺 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Crossbow Body","tr":"聚四氟乙烯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Crossbow Body","tr":"蓝宝石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Crossbow Body","tr":"不锈钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Crossbow Body","tr":"坦桑石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Crossbow Body","tr":"锡铁合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Crossbow Body","tr":"黄玉 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Crossbow Body","tr":"哈氏合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Crossbow Body","tr":"锻铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Crossbow Body","tr":"铁木 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Crossbow Body","tr":"橄榄石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Crossbow Body","tr":"蛋白石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Crossbow Body","tr":"紫水晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Crossbow Body","tr":"暗影金属 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Crossbow Body","tr":"暗影铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Crossbow Body","tr":"暗影钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Crossbow Body","tr":"钢叶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Crossbow Body","tr":"骑士金属 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Crossbow Body","tr":"标准纯银 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Crossbow Body","tr":"玫瑰金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Crossbow Body","tr":"黑青铜 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Crossbow Body","tr":"铋青铜 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Crossbow Body","tr":"黑钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Crossbow Body","tr":"红钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Crossbow Body","tr":"蓝钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Crossbow Body","tr":"大马士革钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Crossbow Body","tr":"充能合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Crossbow Body","tr":"脉冲合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Crossbow Body","tr":"星辰银 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Crossbow Body","tr":"钴黄铜 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Crossbow Body","tr":"红石榴石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Crossbow Body","tr":"黄石榴石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Crossbow Body","tr":"温特姆 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Crossbow Body","tr":"黑花岗岩 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Crossbow Body","tr":"红花岗岩 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Crossbow Body","tr":"白石棉 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Crossbow Body","tr":"雄黄 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Crossbow Body","tr":"磁化铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Crossbow Body","tr":"磁化钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Crossbow Body","tr":"磁化钕 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Crossbow Body","tr":"碳化钨 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Crossbow Body","tr":"钒钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Crossbow Body","tr":"高速钢-G 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Crossbow Body","tr":"高速钢-E 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Crossbow Body","tr":"高速钢-S 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Crossbow Body","tr":"深铅 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Crossbow Body","tr":"量子 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Crossbow Body","tr":"深空秘银 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Crossbow Body","tr":"黑钚 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Crossbow Body","tr":"木卫四冰 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Crossbow Body","tr":"硬铝 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Crossbow Body","tr":"奥利哈钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Crossbow Body","tr":"三元金属 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Crossbow Body","tr":"聚苯硫醚 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Crossbow Body","tr":"聚苯乙烯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Crossbow Body","tr":"丁苯橡胶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Crossbow Body","tr":"镍锌铁氧体 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Crossbow Body","tr":"纤维强化的环氧树脂 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Crossbow Body","tr":"磁化钐 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Crossbow Body","tr":"无尽催化剂 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Crossbow Body","tr":"聚苯并咪唑 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Crossbow Body","tr":" 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Crossbow Body","tr":"钛铂钒合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Crossbow Body","tr":"时空 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Crossbow Body","tr":"大理石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Crossbow Body","tr":"神秘水晶 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Crossbow Body","tr":"末影钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Crossbow Body","tr":"复合粘土 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Crossbow Body","tr":"晶化合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Crossbow Body","tr":"旋律合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Crossbow Body","tr":"恒星合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Crossbow Body","tr":"晶化粉红史莱姆 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Crossbow Body","tr":"充能银 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Crossbow Body","tr":"生动合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Crossbow Body","tr":"灵宝 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Crossbow Body","tr":"超时空金属 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Crossbow Body","tr":"活石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Crossbow Body","tr":"盖亚之魂 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Crossbow Body","tr":"活木 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Crossbow Body","tr":"梦之木 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Crossbow Body","tr":"泡铋 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Crossbow Body","tr":"立方氧化锆 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Crossbow Body","tr":"氟铁电气石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Crossbow Body","tr":"铬铝电气石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Crossbow Body","tr":"钒镁电气石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Crossbow Body","tr":"铝电气石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Crossbow Body","tr":"红锆石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Crossbow Body","tr":"铁橄榄石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Crossbow Body","tr":"镁橄榄石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Crossbow Body","tr":"钙铁辉石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Crossbow Body","tr":"钍-232 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Crossbow Body","tr":"堇云石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Crossbow Body","tr":"磁共振石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Crossbow Body","tr":"锎 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Crossbow Body","tr":"BArTiMaEuSNeK 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Crossbow Body","tr":"钌 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Crossbow Body","tr":"铑 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Crossbow Body","tr":"镀铑钯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Crossbow Body","tr":"泰伯利亚 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Crossbow Body","tr":"钌铱合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Crossbow Body","tr":"氟石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Crossbow Body","tr":"高耐久性复合钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Crossbow Body","tr":"硬钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Crossbow Body","tr":"合成玉 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Crossbow Body","tr":"原子分离催化剂 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Crossbow Body","tr":"极不稳定硅岩 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Crossbow Body","tr":"锌钍合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Crossbow Body","tr":"锆锡合金-4 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Crossbow Body","tr":"锆锡合金-2 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Crossbow Body","tr":"耐热铬铁合金-903 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Crossbow Body","tr":"精金合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Crossbow Body","tr":"MAR-M200特种钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Crossbow Body","tr":"MAR-Ce-M200特种钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Crossbow Body","tr":"氯化锂 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Crossbow Body","tr":"信素 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Crossbow Body","tr":"流明 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Crossbow Body","tr":"阿瑟锡 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Crossbow Body","tr":"钛钼合金β-C 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Crossbow Body","tr":"大力合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Crossbow Body","tr":"光素 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Crossbow Body","tr":"对立合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Crossbow Body","tr":"稀有金属合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Crossbow Body","tr":"富集硅岩合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Crossbow Body","tr":"亚稳态鿫 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Crossbow Body","tr":"调律源金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Crossbow Body","tr":"魔钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Crossbow Body","tr":"泰拉钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Crossbow Body","tr":"源质钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Crossbow Body","tr":"磁流体约束恒星物质 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Crossbow Body","tr":"白矮星物质 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Crossbow Body","tr":"黑矮星物质 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Crossbow Body","tr":"宇宙素 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Crossbow Body","tr":"铝 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Crossbow Body","tr":"铍 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Crossbow Body","tr":"铋 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Crossbow Body","tr":"碳 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Crossbow Body","tr":"铬 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Crossbow Body","tr":"金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Crossbow Body","tr":"铱 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Crossbow Body","tr":"铅 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Crossbow Body","tr":"锰 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Crossbow Body","tr":"钼 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Crossbow Body","tr":"钕 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Crossbow Body","tr":"中子 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Crossbow Body","tr":"镍 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Crossbow Body","tr":"锇 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Crossbow Body","tr":"钯 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Crossbow Body","tr":"铂 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Crossbow Body","tr":"钚-239 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Crossbow Body","tr":"钚-241 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Crossbow Body","tr":"银 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Crossbow Body","tr":"钍 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Crossbow Body","tr":"钛 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Crossbow Body","tr":"钨 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Crossbow Body","tr":"铀-238 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Crossbow Body","tr":"铀-235 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Crossbow Body","tr":"红宝石 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Crossbow Body","tr":"红石合金 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Crossbow Body","tr":"终末 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Crossbow Body","tr":"导电铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Crossbow Body","tr":"磁钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Crossbow Body","tr":"钨钢 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Crossbow Body","tr":"烈焰 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Crossbow Body","tr":"脉冲铁 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Crossbow Body","tr":"龙 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Crossbow Body","tr":"觉醒龙 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Crossbow Body","tr":"褐铜 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Crossbow Body","tr":"山铜 弩身","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HotNetherrackBrick":{"0":{"oreDict":["ingotHotBrickNether"],"name":"Hot Netherrack Brick","tr":"炙热的炼狱砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:networkLink":{"0":{"name":"ME Network Monitor","tr":"ME网络监视器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewIncoloy020":{"0":{"oreDict":["screwIncoloy020"],"name":"耐热铬铁合金-020螺丝","tr":"耐热铬铁合金-020螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtSelenium":{"0":{"oreDict":["frameGtSelenium"],"name":"硒框架","tr":"硒框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrapDoorSort":{"0":{"name":"Sortingwood Trapdoor","tr":"分类树活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:runeAltar":{"0":{"name":"Runic Altar","tr":"符文祭坛","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongArceusAlloy2B":{"0":{"oreDict":["stickLongArceusAlloy2B"],"name":"长阿尔宙斯合金2B杆","tr":"长阿尔宙斯合金2B杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cranberryseedItem":{"0":{"oreDict":["listAllseed"," seedCranberry"],"name":"Cranberry Seed","tr":"蔓越莓种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedGreenockite":{"0":{"oreDict":["crushedPurifiedGreenockite"],"name":"Purified Crushed Greenockite Ore","tr":"洗净的硫镉矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersNatura:fullDrawers2":{"0":{"oreDict":["drawerBasic"],"name":"Eucalyptus Drawers 1x2","tr":"桉树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Sakura Drawers 1x2","tr":"樱花树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Ghostwood Drawers 1x2","tr":"幽魂树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Redwood Drawers 1x2","tr":"红木树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Blood Drawers 1x2","tr":"血树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Hopseed Drawers 1x2","tr":"车桑子树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Maple Drawers 1x2","tr":"枫树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Silverbell Drawers 1x2","tr":"银铃树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Amaranth Drawers 1x2","tr":"紫檀树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Tigerwood Drawers 1x2","tr":"核桃树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Willow Drawers 1x2","tr":"柳树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Darkwood Drawers 1x2","tr":"黑暗树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Fusewood Drawers 1x2","tr":"熔融树抽屉(1x2)","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawersNatura:fullDrawers1":{"0":{"oreDict":["drawerBasic"],"name":"Eucalyptus Drawer","tr":"桉树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Sakura Drawer","tr":"樱花树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Ghostwood Drawer","tr":"幽魂树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Redwood Drawer","tr":"红木树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Blood Drawer","tr":"血树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Hopseed Drawer","tr":"车桑子树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Maple Drawer","tr":"枫树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Silverbell Drawer","tr":"银铃树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Amaranth Drawer","tr":"紫檀树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Tigerwood Drawer","tr":"核桃树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["drawerBasic"],"name":"Willow Drawer","tr":"柳树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Darkwood Drawer","tr":"黑暗树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Fusewood Drawer","tr":"熔融树抽屉","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:potatosoupItem":{"0":{"oreDict":["foodPotatosoup"],"name":"Potato Soup","tr":"土豆汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPaintedSlab":{"0":{"name":"Painted Slab","tr":"喷涂台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chilipoppersItem":{"0":{"oreDict":["foodChilipoppers"],"name":"Chili Poppers","tr":"辣椒卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Genetics:database":{"0":{"name":"Gene Database","tr":"基因数据库","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Master Gene Database","tr":"基因学大师数据库","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:custom_spawner":{"0":{"name":"Monster Spawner","tr":"刷怪箱","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_red":{"0":{"name":"Red Curtain","tr":"红色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:stair.maple":{"0":{"oreDict":["stairWood"],"name":"Maple Stairs","tr":"枫树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:vegemiteontoastItem":{"0":{"oreDict":["foodVegemiteontoast"],"name":"Vegemite on Toast","tr":"维吉米特黑酱土司","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesCarts:BlockCartAssembler":{"0":{"name":"Cart Assembler","tr":"矿车装配机","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:knights_armour.legs":{"0":{"name":"Knight\u0027s Leggings","tr":"骑士护腿","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":376}},"miscutils:itemHotIngotStaballoy":{"0":{"oreDict":["ingotHotStaballoy"],"name":"热贫铀合金锭","tr":"热贫铀合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:greenheartfishItem":{"0":{"oreDict":["listAllfishraw"," foodGreenheartfish"],"name":"Green Heart Fish","tr":"绿心鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:firestone.refined":{"0":{"name":"Refined Firestone","tr":"精炼火石","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":5001},"5000":{"name":"Refined Firestone","tr":"精炼火石","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":5001}},"GalacticraftMars:tile.creeperEgg":{"0":{"name":"Creeper Egg","tr":"爬行者蛋","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyStellite":{"0":{"oreDict":["dustTinyStellite"],"name":"小撮铬钴锰钛合金粉","tr":"小撮铬钴锰钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemContainmentbox":{"0":{"name":"Containment Box","tr":"防辐射容纳盒","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"TaintedMagic:ItemShadowFortressChestplate":{"0":{"name":"Shadow Fortress Cuirass","tr":"暗影要塞胸铠","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":40001}},"harvestcraft:starfruitjellysandwichItem":{"0":{"oreDict":["foodStarfruitjellysandwich"],"name":"Starfruit Jelly Sandwich","tr":"杨桃果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BW_GlasBlocks":{"0":{"oreDict":["blockGlassHV"," blockBorosilicateGlass"],"name":"Borosilicate Glass Block","tr":"硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassEV"],"name":"Titanium Reinforced Borosilicate Glass Block","tr":"钛强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassIV"],"name":"Tungstensteel Reinforced Borosilicate Glass Block","tr":"钨钢强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassLuV"],"name":"Rhodium-Plated Palladium Reinforced Borosilicate Glass Block","tr":"镀铑钯强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassZPM"],"name":"Iridium Reinforced Borosilicate Glass Block","tr":"铱强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassUV"],"name":"Osmium Reinforced Borosilicate Glass Block","tr":"锇强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Colored Borosilicate Glass Block (Red)","tr":"染色硼玻璃方块(红)","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Colored Borosilicate Glass Block (Green)","tr":"染色硼玻璃方块(绿)","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Colored Borosilicate Glass Block (Purple)","tr":"染色硼玻璃方块(紫)","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Colored Borosilicate Glass Block (Yellow)","tr":"染色硼玻璃方块(黄)","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Colored Borosilicate Glass Block (Light Green)","tr":"染色硼玻璃方块(淡绿)","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Colored Borosilicate Glass Block (Brown)","tr":"染色硼玻璃方块(棕)","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassIV"],"name":"Thorium Yttrium Glass Block","tr":"钍钇玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassUHV"],"name":"Neutronium Reinforced Borosilicate Glass Block","tr":"中子强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassUEV"],"name":"Cosmic Neutronium Reinforced Borosilicate Glass Block","tr":"宇宙中子强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassUIV"],"name":"Infinity Reinforced Borosilicate Glass Block","tr":"无尽强化硼玻璃方块","tab":"BartWorks生物工程","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabRedHalf":{"0":{"name":"Redquartz Slab","tr":"红色石英台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamoatsCrop":{"0":{"name":"Oats Crop","tr":"燕麦","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedYttrialite":{"0":{"oreDict":["crushedYttrialite"],"name":"Crushed Yttrialite Ore","tr":"粉碎的硅钍钇矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.cubeOfAnnihilation":{"0":{"name":"Cube of Annihilation","tr":"毁灭魔方","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"malisisdoors:item.door_spruce":{"0":{"name":"Spruce Door","tr":"云杉木门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraUtilities:temporalHoe":{"0":{"name":"Reversing Hoe","tr":"回溯之锄","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1562}},"harvestcraft:pamturnipCrop":{"0":{"name":"Turnip Crop","tr":"大头菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:steamedspinachItem":{"0":{"oreDict":["foodSteamedspinach"],"name":"Steamed Spinach","tr":"清蒸菠菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.iceSword":{"0":{"name":"Ice Sword","tr":"寒冰剑","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":33}},"gregtech:gt.blockreinforced":{"0":{"name":"青铜强化方块","tr":"青铜强化方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"铱强化方块","tr":"铱强化方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"塑料混凝土方块","tr":"塑料混凝土方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"钨钢强化方块","tr":"钨钢强化方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"易碎的木炭块","tr":"易碎的木炭块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"火药桶","tr":"火药桶","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"固体超级燃料","tr":"固体超级燃料","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"魔法超级燃料","tr":"魔法超级燃料","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"钢强化方块","tr":"钢强化方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"钛强化方块","tr":"钛强化方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"硅岩强化方块","tr":"硅岩强化方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"中子强化方块","tr":"中子强化方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"漆黑之门粗胚","tr":"漆黑之门粗胚","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bubblywaterItem":{"0":{"oreDict":["foodBubblywater"],"name":"Bubbly Water","tr":"苏打水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:baseTierWood":{"0":{"name":"Turret Base (Tier 1)","tr":"炮塔基座(一级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RuneOfDefenseFragment":{"0":{"name":"Rune of Defense Fragment","tr":"防御符文碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantinumDust":{"0":{"oreDict":["dustQuantium"],"name":"Quantium Dust","tr":"量子粉","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:hunterhatsilvered":{"0":{"name":"Witch Hunter Hat (Silvered)","tr":"狩巫帽(镀银)","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":166}},"BloodArsenal:glass_leggings":{"0":{"name":"Glass Leggings","tr":"玻璃护腿","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":43}},"miscutils:itemPlateDoubleIncoloyDS":{"0":{"oreDict":["plateDoubleIncoloyDS"],"name":"双重耐热铬铁合金-DS板","tr":"双重耐热铬铁合金-DS板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"gregtech:gt.GregTech_FluidDisplay":{"0":{"name":"","tr":"","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Water","tr":"水","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Lava","tr":"岩浆","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"UU-Matter","tr":"UU物质","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Construction Foam","tr":"建筑泡沫","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"IC2 Coolant","tr":"冷却液","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"IC2 Hot Coolant","tr":"热冷却液","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Pahoehoe Lava","tr":"熔岩岩浆","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Biomass","tr":"生物质","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Biogas","tr":"沼气","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Distilled Water","tr":"蒸馏水","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Superheated Steam","tr":"过热蒸汽","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Steam","tr":"蒸汽","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Heated Water","tr":"热水","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Milk","tr":"牛奶","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Melon Juice","tr":"西瓜汁","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.heavyPlating":{"0":{"name":"Heavy Duty Plate","tr":"重型装甲板","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:shinyFlower":{"0":{"name":"Glimmering White Flower","tr":"白色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Glimmering Orange Flower","tr":"橙色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Glimmering Magenta Flower","tr":"品红色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Glimmering Light Blue Flower","tr":"淡蓝色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Glimmering Yellow Flower","tr":"黄色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Glimmering Lime Flower","tr":"黄绿色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Glimmering Pink Flower","tr":"粉色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Glimmering Gray Flower","tr":"灰色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Glimmering Light Gray Flower","tr":"淡灰色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Glimmering Cyan Flower","tr":"青色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Glimmering Purple Flower","tr":"紫色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Glimmering Blue Flower","tr":"蓝色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Glimmering Brown Flower","tr":"棕色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Glimmering Green Flower","tr":"绿色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Glimmering Red Flower","tr":"红色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Glimmering Black Flower","tr":"黑色荧光花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:garlicgarland":{"0":{"name":"Garlic Garland","tr":"大蒜环","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorStellite":{"0":{"oreDict":["rotorStellite"],"name":"铬钴锰钛合金转子","tr":"铬钴锰钛合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:spike_base":{"0":{"name":"Iron Spike","tr":"铁锥","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:embermoss":{"0":{"oreDict":["cropEmberMoss"],"name":"Ember Moss","tr":"安博苔藓","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:baseTierFourBlock":{"0":{"name":"Turret Base (Tier 5)","tr":"炮塔基座(五级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantinumCompressedPlate":{"0":{"oreDict":["compressedQuantium"],"name":"Compressed Quantium Plate","tr":"航天量子板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.marsDungeonBricksStairs":{"0":{"name":"Mars Dungeon Brick Stairs","tr":"火星地牢砖楼梯","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"MCFrames:mcframes.frame":{"0":{"name":"Frame","tr":"框架","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:LongBow":{"0":{"name":"§f山铜 长弓","tr":"§f山铜 长弓","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:sparkUpgrade":{"0":{"name":"Spark Augment: Dispersive","tr":"火花升级:弥散","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spark Augment: Dominant","tr":"火花升级:聚集","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Spark Augment: Recessive","tr":"火花升级:扩散","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Spark Augment: Isolated","tr":"火花升级:隔绝","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.alphaFur":{"0":{"name":"Alpha Yeti Fur","tr":"雪人首领毛皮","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:slingshot":{"0":{"name":"Livingwood Slingshot","tr":"活木弹弓","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraUtilities:watering_can":{"0":{"name":"Watering Can","tr":"洒水壶","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Watering Can (Empty)","tr":"洒水壶(空)","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Watering Can (Broken)","tr":"洒水壶(损坏)","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Watering Can (Reinforced)","tr":"洒水壶(强化)","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedPropolis":{"0":{"name":"Crated Propolis","tr":"装箱的蜂胶","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:voidFAS":{"0":{"name":"Flint and Void Steel","tr":"虚空打火石","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":185}},"ExtraTrees:food":{"0":{"oreDict":["cropCrabapple"," cropApple"],"name":"Crabapple","tr":"海棠果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["cropOrange"],"name":"Orange","tr":"橙子","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cropKumquat"],"name":"Kumquat","tr":"金橘","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropLime"],"name":"Lime","tr":"酸橙","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["cropCherry"," cropWildCherry"],"name":"Wild Cherry","tr":"野樱桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["cropCherry"," cropSourCherry"],"name":"Sour Cherry","tr":"欧洲酸樱桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["cropCherry"," cropBlackCherry"],"name":"Black Cherry","tr":"黑樱桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["cropBlackthorn"],"name":"Blackthorn","tr":"黑刺李","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["cropPlum"," cropCherryPlum"],"name":"Cherry Plum","tr":"樱桃李","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["cropAlmond"],"name":"Almond","tr":"扁桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["cropApricot"],"name":"Apricot","tr":"杏子","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["cropGrapefruit"],"name":"Grapefruit","tr":"西柚","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["cropPeach"],"name":"Peach","tr":"桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["cropOrange"," cropSatsuma"],"name":"Satsuma","tr":"温州蜜柑","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["cropCitron"," cropBuddhaHand"],"name":"Buddhas Hand","tr":"佛手柑","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["cropCitron"],"name":"Citron","tr":"枸橼","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["cropFingerLime"," cropLime"],"name":"Finger Lime","tr":"指橙","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["cropKeyLime"," cropLime"],"name":"Key Lime","tr":"墨西哥莱檬","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["cropManderin"," cropOrange"],"name":"Manderin","tr":"橘子","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["cropNectarine"," cropPeach"],"name":"Nectarine","tr":"油桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["cropPomelo"],"name":"Pomelo","tr":"柚子","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["cropTangerine"," cropOrange"],"name":"Tangerine","tr":"瓯柑","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["cropPear"],"name":"Pear","tr":"梨","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["cropSandPear"],"name":"Sand Pear","tr":"沙梨","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["cropHazelnut"],"name":"Hazelnut","tr":"榛子","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["cropWalnut"," cropButternut"],"name":"Butternut","tr":"灰核桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["cropBeechnut"],"name":"Beechnut","tr":"山毛榉坚果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["cropPecan"],"name":"Pecan Nut","tr":"长山核桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["cropBanana"],"name":"Banana","tr":"香蕉","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["cropBanana"," cropRedBanana"],"name":"Red Banana","tr":"红香蕉","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["cropPlantain"],"name":"Plantain","tr":"大蕉","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["cropBrazilNut"],"name":"Brazil Nut","tr":"巴西栗","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["cropFig"],"name":"Fig","tr":"无花果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["cropAcorn"],"name":"Acorn","tr":"橡果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["cropElderberry"],"name":"Elderberry","tr":"接骨木浆果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["cropOlive"],"name":"Olive","tr":"橄榄","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["cropGingkoNut"],"name":"Gingko Nut","tr":"白果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["cropCoffee"],"name":"Coffee","tr":"咖啡","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["cropOsangeOrange"],"name":"Osange Orange","tr":"桑橙","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["cropClove"],"name":"Clove","tr":"丁香","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["cropPapayimar"],"name":"Papayimar","tr":"Pahimar牌木瓜","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["cropBlackcurrant"],"name":"Blackcurrant","tr":"黑加仑","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["cropRedcurrant"],"name":"Redcurrant","tr":"红加仑","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["cropBlackberry"," listAllberry"],"name":"Blackberry","tr":"黑莓","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["cropRaspberry"," listAllberry"],"name":"Raspberry","tr":"树莓","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["cropBlueberry"," listAllberry"],"name":"Blueberry","tr":"蓝莓","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"oreDict":["cropCranberry"],"name":"Cranberry","tr":"蔓越莓","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["cropJuniper"],"name":"Juniper","tr":"杜松子","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["cropGooseberry"," listAllberry"],"name":"Gooseberry","tr":"醋栗","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["cropGoldenRaspberry"],"name":"Golden Raspberry","tr":"金树莓","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"oreDict":["cropCoconut"],"name":"Coconut","tr":"椰子","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["cropCashew"],"name":"Cashew","tr":"腰果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["cropAvacado"],"name":"Avacado","tr":"鳄梨","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["cropNutmeg"],"name":"Nutmeg","tr":"肉豆蔻","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"Allspice","tr":"多香果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["cropChilli"],"name":"Chilli","tr":"辣椒","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["cropStarAnise"],"name":"Star Anise","tr":"八角","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["cropMango"],"name":"Mango","tr":"芒果","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["cropStarfruit"],"name":"Starfruit","tr":"杨桃","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["cropCandlenut"],"name":"Candlenut","tr":"石栗","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotMaragingSteel300":{"0":{"oreDict":["ingotMaragingSteel300"],"name":"马氏体时效钢300锭","tr":"马氏体时效钢300锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:missileRod":{"0":{"name":"Rod of the Unstable Reservoir","tr":"弹幕法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyFluorcaphite":{"0":{"oreDict":["dustTinyFluorcaphite"],"name":"小撮氟碳铈矿粉","tr":"小撮氟碳铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:purpleGlowshroom":{"0":{"name":"Purple Glowshroom","tr":"紫色荧光菇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:vampire_cape":{"0":{"name":"Vampire Cape","tr":"吸血鬼斗篷","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:combustionPromotor":{"0":{"name":"Combustion Promoter","tr":"助燃剂","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:itemDropper":{"0":{"name":"Item Dropper","tr":"物品投掷器","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone10Stairs":{"0":{"name":"Diorite Brick Stairs","tr":"闪长岩砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockreactorvessel":{"0":{"name":"Reactor Pressure Vessel","tr":"反应堆压力容器","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_lit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.treasureT2":{"0":{"name":"Tier 2 Treasure Chest","tr":"2阶宝箱","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:blowtorch":{"0":{"name":"Blowtorch","tr":"焊枪","tab":"栈桥","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestthenether:quartzbootsItem":{"0":{"name":"Quartz Boots","tr":"石英靴","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":196}},"harvestcraft:celerysoupItem":{"0":{"oreDict":["foodCelerysoup"],"name":"Celery Soup","tr":"芹菜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"supersolarpanel:enderquantumcomponent":{"0":{"name":"Ender-Quantum Component","tr":"末影量子组件","tab":"超级太阳能发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.battery":{"0":{"name":"Battery","tr":"电池","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Battery","tr":"电池","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":101}},"dreamcraft:item.ManyullynCrystal":{"0":{"name":"Manyullyn Crystal","tr":"玛玉灵晶体","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySodiumCyanide":{"0":{"oreDict":["dustTinySodiumCyanide"],"name":"小撮氰化钠粉","tr":"小撮氰化钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.darkSteel_boots":{"0":{"name":"Dark Boots","tr":"玄钢靴子","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":456}},"harvestcraft:beansontoastItem":{"0":{"oreDict":["foodBeansontoast"],"name":"Beans on Toast","tr":"茄汁豆吐司","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedMossyCombs":{"0":{"name":"Crated Mossy Comb","tr":"装箱的苔藓蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamdragonfruitSapling":{"0":{"name":"Dragonfruit Sapling","tr":"火龙果树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:hourglass":{"0":{"name":"Hovering Hourglass","tr":"悬浮沙漏","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:iron_bars":{"1":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Iron Bars","tr":"铁栅栏","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.amaranth":{"0":{"oreDict":["pressurePlateWood"],"name":"Amaranth Pressure Plate","tr":"紫檀树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MarshmallowFormMold":{"0":{"name":"Casting Form (Marshmallow Mold)","tr":"铸件(棉花糖)","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:dupgrenade":{"0":{"name":"Duplication Grenade","tr":"复制手雷","tab":"巫术","type":"Item","maxStackSize":16,"maxDurability":1}},"GoodGenerator:saltyRoot":{"0":{"name":"Salty Root","tr":"盐根","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:item.voidGrafter":{"0":{"name":"Void Grafter","tr":"虚空剪枝器","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":11}},"miscutils:itemArmorRubBootsEx":{"0":{"name":"Advanced Hazmat Boots","tr":"高级防化靴子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":257}},"miscutils:itemDustGypsum":{"0":{"oreDict":["dustGypsum"," dustCalciumSulfate"],"name":"硫酸钙(石膏)粉","tr":"硫酸钙(石膏)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Backpack:tannedLeather":{"0":{"name":"Tanned Leather","tr":"柔软的皮革","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:infusedSeeds":{"0":{"name":"Infused Seeds","tr":"蕴魔种子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:extremechiliItem":{"0":{"oreDict":["foodExtremechili"],"name":"Extreme Chili","tr":"至尊辣椒酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:ovenroastedcauliflowerItem":{"0":{"oreDict":["foodOvenroastedcauliflower"],"name":"Oven Roasted Cauliflower","tr":"烘烤花椰菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustIncoloyMA956":{"0":{"oreDict":["dustIncoloyMA956"],"name":"耐热铬铁合金-MA956粉","tr":"耐热铬铁合金-MA956粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:BeeReceptacle":{"0":{"name":"Bee Receptacle","tr":"蜜蜂插槽","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBucketPure":{"0":{"name":"Bucket of Purifying Fluid","tr":"桶装净化之水","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Avaritia:Crystal_Matrix":{"0":{"oreDict":["blockCrystalMatrix"],"name":"Crystal Matrix","tr":"水晶矩阵","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:spreader":{"0":{"name":"Mana Spreader","tr":"魔力发射器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Pulse Mana Spreader","tr":"魔力发射器(红石)","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Elven Mana Spreader","tr":"精灵魔力发射器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Gaia Mana Spreader","tr":"盖亚魔力发射器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTeflon":{"0":{"oreDict":["dustSmallTeflon"],"name":"小堆特氟龙粉","tr":"小堆特氟龙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureZircon":{"0":{"oreDict":["dustImpureZircon"],"name":"Impure Zircon Dust","tr":"含杂锆石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Tier2Booster":{"0":{"name":"Tier 2 Booster","tr":"2阶助推器","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pambeetCrop":{"0":{"name":"Beet Crop","tr":"甜菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"compactkineticgenerators:BlockCkg":{"0":{"name":"Low Kinetic Wind Generator","tr":"低阶风力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Medium Kinetic Wind Generator","tr":"中阶风力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"High Kinetic Wind Generator","tr":"高阶风力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Extreme Kinetic Wind Generator","tr":"超高阶风力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Low Kinetic Water Generator","tr":"低阶水力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Medium Kinetic Water Generator","tr":"中阶水力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"High Kinetic Water Generator","tr":"高阶水力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Extreme Kinetic Water Generator","tr":"超高阶水力动能发生机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Low Kinetic Generator","tr":"低阶动能发电机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Medium Kinetic Generator","tr":"中阶动能发电机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"High Kinetic Generator","tr":"高阶动能发电机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Extreme Kinetic Generator","tr":"超高阶动能发电机","tab":"压缩动能发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantinumDualCompressedPlates":{"0":{"name":"Compressed Dual Quantium Plates","tr":"航天双层量子板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.yetiPlate":{"0":{"name":"Yeti Jacket","tr":"雪人夹克","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":321}},"CarpentersBlocks:blockCarpentersFlowerPot":{"0":{"name":"Carpenter\u0027s Flower Pot","tr":"木匠花盆","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustBerylliumFluoride":{"0":{"oreDict":["dustBerylliumFluoride"],"name":"氟化铍粉","tr":"氟化铍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:cleanDirt":{"0":{"name":"Garden Soil","tr":"花土","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:item.chip.transfer":{"0":{"name":"Item Transfer Chip","tr":"物品转输芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Fluid Transfer Chip","tr":"流体转输芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Essentia Transfer Chip","tr":"源质转输芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"AE2 Network Transfer Chip","tr":"AE网络转输芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Redstone Transfer Chip","tr":"红石转输芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"EU Energy Transfer Chip","tr":"EU能量转输芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"RF Energy Transfer Chip","tr":"RF能量转输芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemBasicStorageCell.64k":{"0":{"name":"64k ME Storage Cell","tr":"64k-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:brusselsproutItem":{"0":{"oreDict":["cropBrusselsprout"," listAllveggie"," listAllgreenveggie"],"name":"Brussel Sprout","tr":"芽甘蓝","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormArrowHead":{"0":{"name":"Casting Form (Arrow Head Mold)","tr":"铸件(箭头)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.mazebreakerPick":{"0":{"name":"Mazebreaker","tr":"迷宫破坏者","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1562}},"Ztones:stoneTile":{"0":{"name":"Ztone Tile","tr":"Ztone块","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:whitemushroomseedItem":{"0":{"oreDict":["listAllseed"," seedWhitemushroom"],"name":"White Mushroom Spore","tr":"白蘑菇孢子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:genericUnstackable":{"0":{"name":"Pointer","tr":"指针","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:item.plasmashovel":{"0":{"name":"Plasma Shovel","tr":"等离子铲","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemCellSolidAcidCatalystMixture":{"0":{"oreDict":["cellSolidAcidCatalystMixture"],"name":"固体酸催化剂混合物单元","tr":"固体酸催化剂混合物单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedgearGtSmall":{"96":{"oreDict":["gearGtSmallAdemicSteel"],"name":"小型硬钢齿轮","tr":"小型硬钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["gearGtSmallShirabon"],"name":"小型调律源金齿轮","tr":"小型调律源金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["gearGtSmallZircaloy-4"],"name":"小型锆锡合金-4齿轮","tr":"小型锆锡合金-4齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["gearGtSmallZircaloy-2"],"name":"小型锆锡合金-2齿轮","tr":"小型锆锡合金-2齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["gearGtSmallIncoloy-903"],"name":"小型耐热铬铁合金-903齿轮","tr":"小型耐热铬铁合金-903齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["gearGtSmallAdamantiumAlloy"],"name":"小型精金合金齿轮","tr":"小型精金合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["gearGtSmallAtomicSeparationCatalyst"],"name":"小型原子分离催化剂齿轮","tr":"小型原子分离催化剂齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["gearGtSmallExtremelyUnstableNaquadah"],"name":"小型极不稳定硅岩齿轮","tr":"小型极不稳定硅岩齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["gearGtSmallMAR-M200Steel"],"name":"小型MAR-M200特种钢齿轮","tr":"小型MAR-M200特种钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["gearGtSmallMAR-Ce-M200Steel"],"name":"小型MAR-Ce-M200特种钢齿轮","tr":"小型MAR-Ce-M200特种钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["gearGtSmallSignalium"],"name":"小型信素齿轮","tr":"小型信素齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["gearGtSmallLumiium"],"name":"小型流明齿轮","tr":"小型流明齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["gearGtSmallArtherium-Sn"],"name":"小型阿瑟锡齿轮","tr":"小型阿瑟锡齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["gearGtSmallTanmolyiumBeta-C"],"name":"小型钛钼合金β-C齿轮","tr":"小型钛钼合金β-C齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["gearGtSmallRhodium-PlatedPalladium"],"name":"小型镀铑钯齿轮","tr":"小型镀铑钯齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["gearGtSmallDalisenite"],"name":"小型大力合金齿轮","tr":"小型大力合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["gearGtSmallTiberium"],"name":"小型泰伯利亚齿轮","tr":"小型泰伯利亚齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["gearGtSmallHikarium"],"name":"小型光素齿轮","tr":"小型光素齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["gearGtSmallRuridit"],"name":"小型钌铱合金齿轮","tr":"小型钌铱合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["gearGtSmallTairitsu"],"name":"小型对立合金齿轮","tr":"小型对立合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["gearGtSmallHighDurabilityCompoundSteel"],"name":"小型高耐久性复合钢齿轮","tr":"小型高耐久性复合钢齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["gearGtSmallPreciousMetalsAlloy"],"name":"小型稀有金属合金齿轮","tr":"小型稀有金属合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["gearGtSmallEnrichedNaquadahAlloy"],"name":"小型富集硅岩合金齿轮","tr":"小型富集硅岩合金齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["gearGtSmallMetastableOganesson"],"name":"小型亚稳态鿫齿轮","tr":"小型亚稳态鿫齿轮","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPromethium":{"0":{"oreDict":["dustSmallPromethium"],"name":"小堆钷粉","tr":"小堆钷粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Avaritia:Endest_Pearl":{"0":{"name":"Endest Pearl","tr":"终望珍珠","tab":"无尽贪婪","type":"Item","maxStackSize":16,"maxDurability":1}},"Natura:fenceGate.amaranth":{"0":{"oreDict":["fenceGateWood"],"name":"Amaranth Fence Gate","tr":"紫檀树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:spawner":{"0":{"name":"Tablet of Necromancy","tr":"死灵祭坛","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ForgeRelocation:relocation.blockmovingrow":{"0":{"name":"tile.relocation.blockmovingrow|0.name","tr":"tile.relocation.blockmovingrow|0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"irontank:diamondObsidianUpgrade":{"0":{"name":"Diamond to Obsidian Tank Upgrade","tr":"储罐升级:钻石\u003e黑曜石","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.ShapeBlock":{"0":{"name":"Casting Form (Block Shape)","tr":"铸形(块)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorVentCore":{"1":{"name":"Reactor Heat Vent","tr":"反应堆散热片","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"miscutils:itemGearHastelloyW":{"0":{"oreDict":["gearGtHastelloyW"," gearHastelloyW"],"name":"哈斯特洛依合金-W齿轮","tr":"哈斯特洛依合金-W齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:bucketCloud_seed_concentrated":{"0":{"name":"Concentrated Cloud Seed Bucket","tr":"桶装浓缩云之精华","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearHastelloyX":{"0":{"oreDict":["gearGtHastelloyX"," gearHastelloyX"],"name":"哈斯特洛依合金-X齿轮","tr":"哈斯特洛依合金-X齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_brown":{"0":{"name":"Brown Curtain","tr":"棕色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:fluid.molten.bronze":{"0":{"name":"Molten Bronze","tr":"熔融青铜","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearHastelloyN":{"0":{"oreDict":["gearGtHastelloyN"," gearHastelloyN"],"name":"哈斯特洛依合金-N齿轮","tr":"哈斯特洛依合金-N齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:spidereyesoupItem":{"0":{"oreDict":["foodSpidereyesoup"],"name":"Spider Eye Soup","tr":"蜘蛛眼汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellNitinol60":{"0":{"oreDict":["cellNitinol60"],"name":"镍钛诺60单元","tr":"镍钛诺60单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorCoolantSix":{"1":{"name":"60k Coolant Cell","tr":"60k冷却单元","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"ProjRed|Illumination:projectred.illumination.flightbutton":{"0":{"name":"White Illumar Feedback Button","tr":"白色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Illumar Feedback Button","tr":"橙色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Illumar Feedback Button","tr":"品红色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Illumar Feedback Button","tr":"淡蓝色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Illumar Feedback Button","tr":"黄色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Illumar Feedback Button","tr":"黄绿色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Illumar Feedback Button","tr":"粉色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Grey Illumar Feedback Button","tr":"灰色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Grey Illumar Feedback Button","tr":"淡灰色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Illumar Feedback Button","tr":"青色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Illumar Feedback Button","tr":"紫色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Illumar Feedback Button","tr":"蓝色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Illumar Feedback Button","tr":"棕色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Illumar Feedback Button","tr":"绿色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Illumar Feedback Button","tr":"红色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Illumar Feedback Button","tr":"黑色照明反馈按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:vanishing_block":{"0":{"name":"Wooden Vanishing Frame","tr":"消失的木框架","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Iron Vanishing Frame","tr":"消失的铁框架","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Gold Vanishing Frame","tr":"消失的金框架","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Diamond Vanishing Frame","tr":"消失的钻石框架","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"avaritiaddons:InfinityChest":{"0":{"name":"Infinity Chest","tr":"无尽箱子","tab":"无尽贪婪拓展","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraTrees:gate":{"128":{"name":"Larch Gate","tr":"落叶树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"129":{"name":"Teak Gate","tr":"柚树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Gate","tr":"云杉栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"130":{"name":"Desert Acacia Gate","tr":"金合欢树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Gate","tr":"白桦栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"131":{"name":"Lime Gate","tr":"酸橙树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Gate","tr":"丛林栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"132":{"name":"Chestnut Gate","tr":"栗树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Gate","tr":"金合欢栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"133":{"name":"Wenge Gate","tr":"崖豆树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Gate","tr":"深色橡树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"134":{"name":"Baobab Gate","tr":"猴面包树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"135":{"name":"Sequoia Gate","tr":"红杉树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"136":{"name":"Kapok Gate","tr":"木棉树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"137":{"name":"Ebony Gate","tr":"乌檀树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"138":{"name":"Mahogany Gate","tr":"桃心树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"139":{"name":"Balsa Gate","tr":"巴尔杉树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"140":{"name":"Willow Gate","tr":"柳树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"141":{"name":"Walnut Gate","tr":"核桃树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"142":{"name":"Greenheart Gate","tr":"绿樟树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"143":{"name":"Cherry Gate","tr":"樱树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"144":{"name":"Mahoe Gate","tr":"高槿树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"145":{"name":"Poplar Gate","tr":"白杨树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"146":{"name":"Palm Gate","tr":"棕榈树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"147":{"name":"Papaya Gate","tr":"木瓜树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"148":{"name":"Pine Gate","tr":"松树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"149":{"name":"Plum Gate","tr":"李子树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"150":{"name":"Maple Gate","tr":"枫树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"151":{"name":"Citrus Gate","tr":"柑橘树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"152":{"name":"Giant Sequoia Gate","tr":"巨杉树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"153":{"name":"Ipe Gate","tr":"重蚁树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"154":{"name":"Padauk Gate","tr":"紫檀树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"155":{"name":"Cocobolo Gate","tr":"黄檀树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"156":{"name":"Zebrawood Gate","tr":"斑木树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"Fir Gate","tr":"冷杉栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"Cedar Gate","tr":"雪松栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"Hemlock Gate","tr":"铁杉栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"name":"Cypress Gate","tr":"柏树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"name":"Fig Gate","tr":"无花果栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"name":"Beech Gate","tr":"山毛榉栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"name":"Alder Gate","tr":"桤木栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"name":"Hazel Gate","tr":"榛树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"name":"Hornbeam Gate","tr":"鹅耳枥栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"41":{"name":"Box Gate","tr":"黄杨栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"42":{"name":"Butternut Gate","tr":"灰核桃树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"name":"Hickory Gate","tr":"山核桃栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"44":{"name":"Whitebeam Gate","tr":"白面子树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"45":{"name":"Elm Gate","tr":"榆树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"46":{"name":"Apple Gate","tr":"苹果树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"name":"Yew Gate","tr":"红豆杉栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"48":{"name":"Pear Gate","tr":"梨树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"49":{"name":"Hawthorn Gate","tr":"山楂树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"50":{"name":"Rowan Gate","tr":"花楸栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"51":{"name":"Elder Gate","tr":"接骨木栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"52":{"name":"Maclura Gate","tr":"桑橙栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"53":{"name":"Syzgium Gate","tr":"蒲桃栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"54":{"name":"Brazilwood Gate","tr":"巴西红木栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"55":{"name":"Logwood Gate","tr":"墨水树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"56":{"name":"Iroko Gate","tr":"大绿柄桑木栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"57":{"name":"Locust Gate","tr":"刺槐栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"58":{"name":"Eucalyptus Gate","tr":"桉树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"59":{"name":"Purpleheart Gate","tr":"紫心檀木栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"60":{"name":"Ash Gate","tr":"梣树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"61":{"name":"Holly Gate","tr":"冬青栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"62":{"name":"Olive Gate","tr":"橄榄树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"63":{"name":"Sweetgum Gate","tr":"枫香树栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"64":{"name":"Rosewood Gate","tr":"蔷薇木栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"65":{"name":"Gingko Gate","tr":"银杏栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"66":{"name":"Pink Ivory Gate","tr":"象牙粉红木栅栏门","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.seekerBow":{"0":{"name":"Seeker Bow","tr":"追踪弓","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":385}},"witchery:hunterlegsgarlicked":{"0":{"name":"Witch Hunter Dawn Trousers","tr":"狩巫黎明之裤","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":226}},"chisel:bloodRune":{"0":{"name":"Blood Rune","tr":"血符文石","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Blood Rune","tr":"血符文石","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Blood Rune","tr":"血符文石","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Blood Rune","tr":"血符文石","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blood Rune","tr":"血符文石","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Blood Rune","tr":"血符文石","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:dimsumItem":{"0":{"oreDict":["foodDimsum"],"name":"Dim Sum","tr":"点心","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersButton":{"0":{"name":"Carpenter\u0027s Button","tr":"木匠按钮","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPlutonium238":{"0":{"oreDict":["dustSmallPlutonium238"],"name":"小堆钚-238粉","tr":"小堆钚-238粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:bloodStone":{"0":{"name":"Bloodstone","tr":"血石","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":401}},"miscutils:itemCellPlasmaSelenium":{"0":{"oreDict":["cellPlasmaSelenium"],"name":"硒等离子体单元","tr":"硒等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatesprinklecakeItem":{"0":{"oreDict":["foodChocolatesprinklecake"],"name":"Chocolate Sprinkles Cake","tr":"巧克力蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearBlackMetal":{"0":{"oreDict":["gearGtBlackMetal"," gearBlackMetal"],"name":"黑物质齿轮","tr":"黑物质齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.minotaurAxe":{"0":{"name":"Minotaur Axe","tr":"米诺陶战斧","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1562}},"HardcoreEnderExpansion:void_chest":{"0":{"name":"Void Saving Chest","tr":"虚空保存箱","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"lootgames:gol_activator":{"0":{"name":"Game of Light","tr":"游戏灯","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.treasureT3":{"0":{"name":"Tier 3 Treasure Chest","tr":"3阶宝箱","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTellurium":{"0":{"oreDict":["plateDoubleTellurium"],"name":"双重碲板","tr":"双重碲板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"AWWayofTime:demonPlacer":{"0":{"name":"Demon Crystal","tr":"恶魔水晶","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemHotIngotIncoloyMA956":{"0":{"oreDict":["ingotHotIncoloyMA956"],"name":"热耐热铬铁合金-MA956锭","tr":"热耐热铬铁合金-MA956锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongZirconiumCarbide":{"0":{"oreDict":["stickLongZirconiumCarbide"],"name":"长碳化锆杆","tr":"长碳化锆杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemPickaxeElemental":{"0":{"name":"Pickaxe of the Core","tr":"炽心镐","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1501}},"berriespp:itemSpade":{"0":{"name":"Spade","tr":"铲子","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDoubleIncoloy020":{"0":{"oreDict":["plateDoubleIncoloy020"],"name":"双重耐热铬铁合金-020板","tr":"双重耐热铬铁合金-020板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Thaumcraft:BlockJarNodeItem":{"0":{"name":"Node in a Jar","tr":"缸中节点","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraUtilities:decorativeBlock2":{"0":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Thickened Glass","tr":"增厚玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Edged Glass","tr":"镶边玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Glass Bricks","tr":"玻璃砖块","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Carved Glass","tr":"雕纹玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Golden Edged Glass","tr":"镶金玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Obsidian Glass","tr":"黑曜石玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Swirling Glass","tr":"漩涡玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Glowstone Glass","tr":"萤石玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Heart Glass","tr":"心之玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Square Glass","tr":"四方玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Dark Glass","tr":"暗色玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Reinforced Dark Glass","tr":"强化暗色玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NagaScaleChip":{"0":{"name":"Naga Scale Chip","tr":"娜迦碎屑","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:limestone":{"0":{"oreDict":["limestone"],"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Limestone","tr":"石灰岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:decorativeBlock1":{"0":{"name":"Edged Stone Bricks","tr":"镶边石砖","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockEnderObsidian"],"name":"Ender-infused Obsidian","tr":"末影黑曜石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["burntQuartz"],"name":"Burnt Quartz","tr":"焦黑石英","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockIcestone"],"name":"Frosted Stone","tr":"霜冻石头","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Border Stone","tr":"镶边石头","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockUnstable"],"name":"Unstable Ingot Block","tr":"不稳定金属方块","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["bricksGravel"],"name":"Gravel Bricks","tr":"沙砾砖块","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockMagicWood"],"name":"Border Stone (Alternate)","tr":"镶边石头(交替)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Magical Wood","tr":"魔法木头","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassSandy"," blockGlassHV"],"name":"Sandy Glass","tr":"沙化玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Gravel Road","tr":"沙砾路","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockEnderCore"],"name":"Ender Core","tr":"末影之核","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Diamond-Etched Computational Matrix","tr":"钻石蚀刻计算矩阵","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Ender-Sand Alloy","tr":"末地沙石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Carved \u0027Eminence\u0027 Stone","tr":"錾制显赫之石","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotTalonite":{"0":{"oreDict":["ingotTalonite"],"name":"铬钴磷酸盐合金锭","tr":"铬钴磷酸盐合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetBotmium":{"0":{"oreDict":["nuggetBotmium"],"name":"博特姆合金粒","tr":"博特姆合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mudfishrawItem":{"0":{"oreDict":["foodMudfishraw"," listAllfishraw"],"name":"Raw Mudfish","tr":"生泥鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockTaintFibres":{"0":{"name":"Fibrous Taint","tr":"腐化草丛","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["cropGrass"],"name":"Tainted Grass","tr":"腐化草地","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Tainted Plant","tr":"腐化植物","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Spore Stalk","tr":"孢子梗","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:oldworldveggiesoupItem":{"0":{"oreDict":["foodOldworldveggiesoup"],"name":"Old World Veggie Soup","tr":"旧味蔬菜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtIncoloy020":{"0":{"oreDict":["frameGtIncoloy020"],"name":"耐热铬铁合金-020框架","tr":"耐热铬铁合金-020框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CentauriAStoneDust":{"0":{"oreDict":["dustSpace"," dustCentauriAStone"," dustCentauriA"],"name":"α Centauri Bb Stone Dust","tr":"半人马Bb尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:thinkTankJar":{"0":{"name":"Think Tank","tr":"冥想之缸","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.logisticsParts":{"0":{"name":"Logistics HUD Bow","tr":"物流HUD眼镜镜架","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Logistics HUD Glass","tr":"物流HUD眼镜镜片","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Logistics HUD Nose Bridge","tr":"物流HUD眼镜镜框","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Nano Hopper","tr":"纳米漏斗","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Blank Upgrade","tr":"空白升级","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Gold Upgrade Chip","tr":"金升级芯片","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Diamond Upgrade Chip","tr":"钻石升级芯片","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Advanced Gold Crafting Chip","tr":"高级金合成芯片","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Advanced Diamond Crafting Chip","tr":"高级钻石合成芯片","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ThaumiumChainsaw":{"1":{"name":"Thaumium Chainsaw","tr":"神秘链锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Thaumium Chainsaw","tr":"神秘链锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemPlateDoubleCelestialTungsten":{"0":{"oreDict":["plateDoubleCelestialTungsten"],"name":"双重天体钨板","tr":"双重天体钨板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemScrewArcanite":{"0":{"oreDict":["screwArcanite"],"name":"奥金螺丝","tr":"奥金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:saplingGE":{"0":{"oreDict":["treeSapling"],"name":"Sapling","tr":"树苗","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:grafterProven":{"0":{"name":"Proven Grafter","tr":"标定剪枝器","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":150}},"GalaxySpace:item.Sulfur":{"0":{"oreDict":["dustSulfur"],"name":"Sulfur","tr":"硫粉","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamleekCrop":{"0":{"name":"Leek Crop","tr":"韭菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:raisincookiesItem":{"0":{"oreDict":["foodRaisincookies"],"name":"Raisin Cookies","tr":"葡萄干饼干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockSchemSaver":{"0":{"name":"Schematic Saver","tr":"图纸存储器","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockFluidMushroom":{"0":{"name":"Mushroom Soup","tr":"蘑菇汤","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.magCard":{"0":{"name":"Magnetic Strip Card","tr":"磁条卡","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:lambkebabItem":{"0":{"oreDict":["foodLambkebab"],"name":"Lamb Kebab","tr":"羊肉串","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSilkyCombs":{"0":{"name":"Crated Silky Comb","tr":"装箱的丝滑蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.pigiron":{"0":{"name":"Molten Pig Iron","tr":"熔融生铁","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemTimeCard":{"0":{"name":"Time Card","tr":"时间卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"ProjectBlue:miniatureLamp":{"0":{"name":"Miniature White Lamp","tr":"微型 白色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Miniature Orange Lamp","tr":"微型 橙色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Miniature Magenta Lamp","tr":"微型 品红色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Miniature Light Blue Lamp","tr":"微型 淡蓝色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Miniature Yellow Lamp","tr":"微型 黄色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Miniature Lime Lamp","tr":"微型 黄绿色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Miniature Pink Lamp","tr":"微型 粉红色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Miniature Grey Lamp","tr":"微型 灰色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Miniature Light Grey Lamp","tr":"微型 淡灰色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Miniature Cyan Lamp","tr":"微型 青色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Miniature Purple Lamp","tr":"微型 紫色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Miniature Blue Lamp","tr":"微型 蓝色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Miniature Brown Lamp","tr":"微型 棕色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Miniature Green Lamp","tr":"微型 绿色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Miniature Red Lamp","tr":"微型 红色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Miniature Black Lamp","tr":"微型 黑色 灯","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_encoded_pattern":{"0":{"name":"Encoded Pattern","tr":"编码样板","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:epicEraser":{"0":{"name":"Epic Eraser","tr":"史诗橡皮擦","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":16}},"OpenComputers:hoverBoots":{"0":{"oreDict":["oc:hoverBoots"],"name":"Hover Boots","tr":"悬浮靴子","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":15001}},"battlegear2:waraxe.wood":{"0":{"name":"Wooden Waraxe","tr":"木战斧","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":119}},"battlegear2:knights_armour.plate":{"0":{"name":"Knight\u0027s Plate","tr":"骑士胸甲","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":401}},"Automagy:blockMobLure":{"0":{"name":"Siren\u0027s Lure","tr":"塞壬之饵","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:WrathCage":{"0":{"name":"Wrath Cage","tr":"暴怒之笼","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemAdvBat":{"1":{"oreDict":["batteryAdvanced"],"name":"Advanced RE-Battery","tr":"强化充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"oreDict":["batteryAdvanced"],"name":"Advanced RE-Battery","tr":"强化充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"computronics:computronics.relaySensor":{"0":{"name":"Digital Relay Sensor","tr":"数字化中继器传感器","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:bucketHootch":{"0":{"name":"Hootch Bucket","tr":"桶装烈酒","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRotorErbium":{"0":{"oreDict":["rotorErbium"],"name":"铒转子","tr":"铒转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:travelSlab":{"0":{"name":"Paving Slab of Travel","tr":"旅行者台阶","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZimbabweite":{"0":{"oreDict":["dustSmallZimbabweite"],"name":"小堆钛铌铅钠石粉","tr":"小堆钛铌铅钠石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:honeyItem":{"0":{"oreDict":["foodHoneydrop"," dropHoney"," listAllsugar"],"name":"Honey","tr":"蜂蜜","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamBanana":{"0":{"name":"Banana","tr":"香蕉","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemFakeModIcon":{"0":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:soulforge":{"0":{"name":"Soulforge","tr":"灵魂熔炼炉","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustAdvancedNitinol":{"0":{"oreDict":["dustAdvancedNitinol"],"name":"高级镍钛诺粉","tr":"高级镍钛诺粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusShock":{"0":{"name":"Wand Focus: Shock","tr":"法杖核心:震击","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA12SlabFull":{"0":{"name":"Metamorphic Swamp Cobblestone Slab","tr":"变质沼泽圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseGermanium":{"0":{"oreDict":["plateDenseGermanium"],"name":"致密锗板","tr":"致密锗板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockRunedObsidian":{"0":{"name":"Runed Obsidian","tr":"符文黑曜石","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:sensorTierFourItem":{"0":{"name":"Sensor (Tier 4)","tr":"传感器(四级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:callistoblocks":{"0":{"oreDict":["rockSpace"," rockCallisto"],"name":"Callisto Surface Block","tr":"木卫四地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockCallisto"],"name":"Callisto Subsurface Block","tr":"木卫四地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:barkbelt":{"0":{"name":"Bark Belt","tr":"树皮腰带","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":76}},"miscutils:itemCellWatertightSteel":{"0":{"oreDict":["cellWatertightSteel"],"name":"防水钢单元","tr":"防水钢单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:jungleFenceGate":{"0":{"name":"Jungle Fence Gate","tr":"丛林木栅栏门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBeesII":{"0":{"name":"Coin \"The Beekeeper 100\"","tr":"养蜂员币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.QuartzStairBlock":{"0":{"name":"Certus Quartz Stairs","tr":"赛特斯石英楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:oldCobble":{"0":{"oreDict":["stoneCobble"," cobblestone"],"name":"Ancient Cobblestone","tr":"远古圆石","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedBariteRd":{"0":{"oreDict":["crushedBariteRd"],"name":"Crushed Barite (Rd) Ore","tr":"粉碎重晶石(Rd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureIrarsite":{"0":{"oreDict":["dustPureIrarsite"],"name":"Purified Irarsite Dust","tr":"纯净硫砷铱粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyBerylliumHydroxide":{"0":{"oreDict":["dustTinyBerylliumHydroxide"],"name":"小撮氢氧化铍粉","tr":"小撮氢氧化铍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBeesIV":{"0":{"name":"Coin \"The Beekeeper 10K\"","tr":"养蜂员币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustFluorcaphite":{"0":{"oreDict":["dustFluorcaphite"],"name":"氟碳铈矿粉","tr":"氟碳铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:hardWallTierThree":{"0":{"name":"Hard Wall (Tier 3)","tr":"坚固墙壁(三级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedKashinite":{"0":{"oreDict":["crushedPurifiedKashinite"],"name":"Purified Crushed Kashinite Ore","tr":"洗净的硫铑铱矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCast":{"0":{"name":"Wax Cast","tr":"打蜡工具","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":17}},"AWWayofTime:sigilOfHaste":{"0":{"name":"Sigil of Haste","tr":"急速印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:axeMud":{"0":{"name":"Muddy Axe","tr":"泥巴斧","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:itemCellPlasmaThallium":{"0":{"oreDict":["cellPlasmaThallium"],"name":"铊等离子体单元","tr":"铊等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodCelestialTungsten":{"0":{"oreDict":["stickCelestialTungsten"],"name":"天体钨杆","tr":"天体钨杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:prismarine1Slab":{"0":{"name":"Prismarine Brick Slab","tr":"海晶石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.printer":{"0":{"name":"Open Printer","tr":"开放式打印机","tab":"开放式打印机","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorclothHelmGem":{"0":{"name":"Cowl of the Abyssal Depths","tr":"无尽深渊之帽","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:liquid.glue":{"0":{"name":"Glue","tr":"凝胶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:pavement3Slab":{"0":{"name":"Red Portuguese Pavement Slab","tr":"红色葡萄牙台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPlum":{"0":{"name":"Plum","tr":"李子","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateLaurenium":{"0":{"oreDict":["plateLaurenium"],"name":"劳伦姆合金板","tr":"劳伦姆合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ironchestminecarts:minecart_chest_steel":{"0":{"name":"Minecart with Steel Chest","tr":"钢箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRingEglinSteel":{"0":{"oreDict":["ringEglinSteel"],"name":"埃格林钢环","tr":"埃格林钢环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chickenpotpieItem":{"0":{"oreDict":["foodChickenpotpie"],"name":"Chicken Pot Pie","tr":"鸡肉派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:perchrawItem":{"0":{"oreDict":["foodPerchraw"," listAllfishraw"],"name":"Raw Perch","tr":"生鲈鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_orange":{"0":{"name":"Orange Curtain","tr":"橙色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.ShapeGear":{"0":{"name":"Casting Form (Gear Shape)","tr":"铸形(齿轮)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolDDrill":{"1":{"name":"Diamond Drill","tr":"钻石钻头","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Diamond Drill","tr":"钻石钻头","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"cookingforblockheads:toolrack":{"0":{"name":"Tool Rack","tr":"厨具架","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDoorMangrove":{"0":{"name":"tile.TFDoorMangrove.0.name","tr":"tile.TFDoorMangrove.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CarbonPartBoots":{"0":{"name":"Carbon Parts \"Boots\"","tr":"纳米靴子外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ToxicEverglades:fluidSludge":{"0":{"name":"Stagnant Waste Water","tr":"不流动的废水","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterLime":{"0":{"name":"Lime Painter","tr":"柠檬色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"chisel:limestone_stairs.7":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:limestone_stairs.6":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:limestone_stairs.5":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cauliflowerseedItem":{"0":{"oreDict":["listAllseed"," seedCauliflower"],"name":"Cauliflower Seed","tr":"花椰菜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:limestone_stairs.4":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:limestone_stairs.3":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallSeleniumHexafluoride":{"0":{"oreDict":["dustSmallSeleniumHexafluoride"],"name":"小堆六氟化硒粉","tr":"小堆六氟化硒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:limestone_stairs.2":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtErbium":{"0":{"oreDict":["frameGtErbium"],"name":"铒框架","tr":"铒框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:glass":{"1":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Glass","tr":"玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:limestone_stairs.1":{"0":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Stairs","tr":"石灰岩楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:phobosblocks":{"0":{"oreDict":["rockSpace"," rockPhobos"],"name":"Phobos Surface Block","tr":"火卫一地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockPhobos"],"name":"Phobos Subsurface Block","tr":"火卫一地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockSpace"," rockPhobos"],"name":"Phobos Stone","tr":"火卫一石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreDesh"],"name":"Desh Ore","tr":"火卫一戴斯矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreCobalt"],"name":"Cobalt Ore","tr":"火卫一钴矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:FeatherWing":{"0":{"name":"Feather Duct-Taped Wings","tr":"粘合纸板羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":121}},"miscutils:itemDustTinyLepersonnite":{"0":{"oreDict":["dustTinyLepersonnite"],"name":"小撮绿泥石粉","tr":"小撮绿泥石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHelmetCultistPlate":{"0":{"name":"Crimson Cult Helm","tr":"血腥邪徒头盔","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":166}},"MagicBees:beeRing":{"0":{"name":"Collector\u0027s Bee Ring","tr":"蜜蜂收集者戒指","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyBabbitAlloy":{"0":{"oreDict":["dustTinyBabbitAlloy"],"name":"小撮巴氏合金粉","tr":"小撮巴氏合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHelmetCultistRobe":{"0":{"name":"Crimson Cult Hood","tr":"血腥邪徒兜帽","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":166}},"BiblioCraft:BiblioBorderlessPainting":{"0":{"name":"Oak Painting Frame","tr":"橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Painting Frame","tr":"云杉画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Painting Frame","tr":"桦木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Painting Frame","tr":"丛林木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Painting Frame","tr":"深色橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Painting Frame","tr":"镶框画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioCase":{"0":{"name":"Oak Case","tr":"橡木展示盒","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Case","tr":"云杉展示盒","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Case","tr":"桦木展示盒","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Case","tr":"丛林木展示盒","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Case","tr":"金合欢展示盒","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Case","tr":"深色橡木展示盒","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Case","tr":"镶框展示盒","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:goldHead":{"0":{"name":"Golden Head","tr":"黄金头颅","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemElectricComet":{"1":{"name":"Electric Boots of the Comet","tr":"电子彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Electric Boots of the Comet","tr":"电子彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"BiomesOPlenty:wadingBoots":{"0":{"name":"Wading Boots","tr":"雨靴","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:part.railbed":{"0":{"name":"Wooden Railbed","tr":"木质轨座","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Railbed","tr":"石质轨座","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:flugelEye":{"0":{"name":"Eye of the Flügel","tr":"天翼族之眼","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemScrewWhiteMetal":{"0":{"oreDict":["screwWhiteMetal"],"name":"白物质螺丝","tr":"白物质螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.RecipeBook":{"0":{"name":"Empty Recipe Book","tr":"空白合成手册","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemIngotTeflon":{"0":{"oreDict":["ingotTeflon"],"name":"特氟龙锭","tr":"特氟龙锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedGeikielite":{"0":{"oreDict":["crushedCentrifugedGeikielite"],"name":"Centrifuged Crushed Geikielite Ore","tr":"离心镁钛矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedYttriaite":{"0":{"oreDict":["crushedYttriaite"],"name":"Crushed Yttriaite Ore","tr":"粉碎的钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:beefwellingtonItem":{"0":{"oreDict":["foodBeefwellington"],"name":"Beef Wellington","tr":"威灵顿牛排","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:crayonGlasses":{"0":{"name":"Crayon Glasses","tr":"蜡笔眼镜","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":78}},"FloodLights:tilePhantomLight":{"0":{"name":"tile.floodlights:tilePhantomLight.name","tr":"tile.floodlights:tilePhantomLight.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedbolt":{"96":{"oreDict":["boltAdemicSteel"],"name":"硬钢螺栓","tr":"硬钢螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["boltShirabon"],"name":"调律源金螺栓","tr":"调律源金螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["boltZircaloy-4"],"name":"锆锡合金-4螺栓","tr":"锆锡合金-4螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["boltZircaloy-2"],"name":"锆锡合金-2螺栓","tr":"锆锡合金-2螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["boltIncoloy-903"],"name":"耐热铬铁合金-903螺栓","tr":"耐热铬铁合金-903螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["boltAdamantiumAlloy"],"name":"精金合金螺栓","tr":"精金合金螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["boltAtomicSeparationCatalyst"],"name":"原子分离催化剂螺栓","tr":"原子分离催化剂螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["boltExtremelyUnstableNaquadah"],"name":"极不稳定硅岩螺栓","tr":"极不稳定硅岩螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["boltMAR-M200Steel"],"name":"MAR-M200特种钢螺栓","tr":"MAR-M200特种钢螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["boltMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢螺栓","tr":"MAR-Ce-M200特种钢螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["boltSignalium"],"name":"信素螺栓","tr":"信素螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["boltLumiium"],"name":"流明螺栓","tr":"流明螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["boltArtherium-Sn"],"name":"阿瑟锡螺栓","tr":"阿瑟锡螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["boltTanmolyiumBeta-C"],"name":"钛钼合金β-C螺栓","tr":"钛钼合金β-C螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["boltRhodium-PlatedPalladium"],"name":"镀铑钯螺栓","tr":"镀铑钯螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["boltDalisenite"],"name":"大力合金螺栓","tr":"大力合金螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["boltTiberium"],"name":"泰伯利亚螺栓","tr":"泰伯利亚螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["boltHikarium"],"name":"光素螺栓","tr":"光素螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["boltRuridit"],"name":"钌铱合金螺栓","tr":"钌铱合金螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["boltTairitsu"],"name":"对立合金螺栓","tr":"对立合金螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["boltHighDurabilityCompoundSteel"],"name":"高耐久性复合钢螺栓","tr":"高耐久性复合钢螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["boltPreciousMetalsAlloy"],"name":"稀有金属合金螺栓","tr":"稀有金属合金螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["boltEnrichedNaquadahAlloy"],"name":"富集硅岩合金螺栓","tr":"富集硅岩合金螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["boltMetastableOganesson"],"name":"亚稳态鿫螺栓","tr":"亚稳态鿫螺栓","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:item.em.parametrizerMemoryCard":{"0":{"name":"Parametrizer Memory Card (Copy Mode)","tr":"参数存储卡(复制模式)","tab":"TecTech","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:supercriticalSteam":{"0":{"name":"Unnamed Block, report to mod author.","tr":"未命名方块,请报告给作者.","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallNiobiumCarbide":{"0":{"oreDict":["dustSmallNiobiumCarbide"],"name":"小堆碳化铌粉","tr":"小堆碳化铌粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:transport_beacon":{"0":{"name":"Transport Beacon","tr":"传送信标","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedXenotime":{"0":{"oreDict":["crushedXenotime"],"name":"Crushed Xenotime Ore","tr":"粉碎的磷钇矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorPraseodymium":{"0":{"oreDict":["rotorPraseodymium"],"name":"镨转子","tr":"镨转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseStellite":{"0":{"oreDict":["plateDenseStellite"],"name":"致密铬钴锰钛合金板","tr":"致密铬钴锰钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:goldenegg":{"0":{"name":"Golden Egg","tr":"金蛋","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallYttriaite":{"0":{"oreDict":["dustSmallYttriaite"],"name":"小堆钇矿粉","tr":"小堆钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.ironwoodHelm":{"0":{"name":"Ironwood Helm","tr":"铁木头盔","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":221}},"bartworks:bw.werkstoffblockscasing.01":{"10112":{"name":"调律源金机械方块","tr":"调律源金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32148":{"name":"阿迪特机械方块","tr":"阿迪特机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31895":{"name":"中子机械方块","tr":"中子机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31776":{"name":"碳机械方块","tr":"碳机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10022":{"name":"原子分离催化剂机械方块","tr":"原子分离催化剂机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10024":{"name":"极不稳定硅岩机械方块","tr":"极不稳定硅岩机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31785":{"name":"铝机械方块","tr":"铝机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31794":{"name":"钛机械方块","tr":"钛机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31796":{"name":"铬机械方块","tr":"铬机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31798":{"name":"铁机械方块","tr":"铁机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31799":{"name":"钴机械方块","tr":"钴机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31800":{"name":"镍机械方块","tr":"镍机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31801":{"name":"铜机械方块","tr":"铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32575":{"name":"木机械方块","tr":"木机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32066":{"name":"青铜机械方块","tr":"青铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32067":{"name":"黄铜机械方块","tr":"黄铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32070":{"name":"锻铁机械方块","tr":"锻铁机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32071":{"name":"钢机械方块","tr":"钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32072":{"name":"不锈钢机械方块","tr":"不锈钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31818":{"name":"钯机械方块","tr":"钯机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31820":{"name":"银机械方块","tr":"银机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31823":{"name":"锡机械方块","tr":"锡机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32083":{"name":"铱锇合金机械方块","tr":"铱锇合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"88":{"name":"镀铑钯机械方块","tr":"镀铑钯机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31833":{"name":"钕机械方块","tr":"钕机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"90":{"name":"钌铱合金机械方块","tr":"钌铱合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32090":{"name":"硅岩机械方块","tr":"硅岩机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32091":{"name":"硅岩合金机械方块","tr":"硅岩合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"92":{"name":"高耐久性复合钢机械方块","tr":"高耐久性复合钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"96":{"name":"硬钢机械方块","tr":"硬钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32100":{"name":"黑钢机械方块","tr":"黑钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32101":{"name":"大马士革钢机械方块","tr":"大马士革钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10085":{"name":"精金合金机械方块","tr":"精金合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31847":{"name":"钨机械方块","tr":"钨机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31849":{"name":"锇机械方块","tr":"锇机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31850":{"name":"铱机械方块","tr":"铱机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31851":{"name":"铂机械方块","tr":"铂机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31852":{"name":"金机械方块","tr":"金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32236":{"name":"环氧树脂机械方块","tr":"环氧树脂机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32110":{"name":"哈氏合金机械方块","tr":"哈氏合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31855":{"name":"铅机械方块","tr":"铅机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32111":{"name":"退火铜机械方块","tr":"退火铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32239":{"name":"聚四氟乙烯机械方块","tr":"聚四氟乙烯机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"31856":{"name":"铋机械方块","tr":"铋机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10096":{"name":"MAR-M200特种钢机械方块","tr":"MAR-M200特种钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10097":{"name":"MAR-Ce-M200特种钢机械方块","tr":"MAR-Ce-M200特种钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32114":{"name":"红钢机械方块","tr":"红钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32115":{"name":"蓝钢机械方块","tr":"蓝钢机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32116":{"name":"标准纯银机械方块","tr":"标准纯银机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32117":{"name":"玫瑰金机械方块","tr":"玫瑰金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32118":{"name":"黑青铜机械方块","tr":"黑青铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"32119":{"name":"铋青铜机械方块","tr":"铋青铜机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10109":{"name":"稀有金属合金机械方块","tr":"稀有金属合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10110":{"name":"富集硅岩合金机械方块","tr":"富集硅岩合金机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10111":{"name":"亚稳态鿫机械方块","tr":"亚稳态鿫机械方块","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlutonium238":{"0":{"oreDict":["cellPlutonium238"],"name":"钚-238单元","tr":"钚-238单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:almondbutterItem":{"0":{"oreDict":["foodAlmondbutter"," listAllnutbutter"],"name":"Almond Butter","tr":"杏仁酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSpaceIII":{"0":{"name":"Coin \"The Space Invaders 1000\"","tr":"太空币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockVapor_of_levity":{"0":{"name":"Vapor of Levity","tr":"轻盈之气","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreDemicheleiteBr":{"0":{"oreDict":["oreDemicheleiteBr"],"name":"Demicheleite (Br) Ore","tr":"溴硫铋(Br)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:fishlettucewrapItem":{"0":{"oreDict":["foodFishlettucewrap"],"name":"Fish Lettuce Wrap","tr":"鱼肉生菜卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinChemistI":{"0":{"name":"Coin \"The Chemist 10\"","tr":"化学家币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGenerateddust":{"1":{"oreDict":["dustBismutite"],"name":"泡铋粉","tr":"泡铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustBismuthinite"],"name":"辉铋粉","tr":"辉铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustZirconium"],"name":"锆粉","tr":"锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustCubicZirconia"],"name":"立方氧化锆粉","tr":"立方氧化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dustFluor-Buergerite"],"name":"氟铁电气石粉","tr":"氟铁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["dustYttriumOxide"],"name":"氧化钇粉","tr":"氧化钇粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustChromo-Alumino-Povondraite"],"name":"铬铝电气石粉","tr":"铬铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustVanadio-Oxy-Dravite"],"name":"钒镁电气石粉","tr":"钒镁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dustOlenite"],"name":"铝电气石粉","tr":"铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustArsenopyrite"],"name":"砷黄铁粉","tr":"砷黄铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustFerberite"],"name":"钨铁粉","tr":"钨铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustLoellingite"],"name":"斜方砷铁粉","tr":"斜方砷铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dustRoquesite"],"name":"硫铟铜粉","tr":"硫铟铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["dustBornite"],"name":"斑铜粉","tr":"斑铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["dustWittichenite"],"name":"硫铋铜粉","tr":"硫铋铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["dustDjurleite"],"name":"久辉铜粉","tr":"久辉铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["dustHuebnerite"],"name":"钨酸锰粉","tr":"钨酸锰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["dustThorianite"],"name":"方钍石粉","tr":"方钍石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["dustRedZircon"],"name":"红锆石粉","tr":"红锆石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["dustFayalite"],"name":"铁橄榄石粉","tr":"铁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["dustForsterite"],"name":"镁橄榄石粉","tr":"镁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["dustHedenbergite"],"name":"钙铁辉石粉","tr":"钙铁辉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["dustRedDescloizite"],"name":"红钒铅锌粉","tr":"红钒铅锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["dustOrangeDescloizite"],"name":"橙钒铅铜粉","tr":"橙钒铅铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["dustGreenFuchsite"],"name":"绿铬云母粉","tr":"绿铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["dustRedFuchsite"],"name":"红铬云母粉","tr":"红铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["dustThorium232"],"name":"钍-232粉","tr":"钍-232粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["dustBismuthTellurite"],"name":"碲化铋粉","tr":"碲化铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["dustDibismuthhydroborat"],"name":"硼氢二铋粉","tr":"硼氢二铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20001":{"oreDict":["dustHolmiumGarnet"],"name":"Holmium Garnet粉","tr":"Holmium Garnet粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["dustCircuitCompoundMK3"],"name":"电路化合物MK3粉","tr":"电路化合物MK3粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["dustPrasiolite"],"name":"堇云石粉","tr":"堇云石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["dustMagnetoResonatic"],"name":"磁共振石粉","tr":"磁共振石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["dustCalifornium"],"name":"锎粉","tr":"锎粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11303":{"oreDict":["dustTellurium-Molybdenum-OxideCatalyst"],"name":"钼碲氧化物催化剂粉","tr":"钼碲氧化物催化剂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11304":{"oreDict":["dustTellurium(IV)Oxide"],"name":"氧化碲(IV)粉","tr":"氧化碲(IV)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11305":{"oreDict":["dustMolybdenum(IV)Oxide"],"name":"氧化钼(IV)粉","tr":"氧化钼(IV)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11306":{"oreDict":["dustPolytetrahydrofuran"],"name":"聚四氢呋喃粉","tr":"聚四氢呋喃粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["dustBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK粉","tr":"BArTiMaEuSNeK粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["dustPlatinumSalt"],"name":"铂盐粉","tr":"铂盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"oreDict":["dustRefinedPlatinumSalt"],"name":"精炼铂盐粉","tr":"精炼铂盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["dustPlatinumMetallicPowder"],"name":"铂金属粉","tr":"铂金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["dustPTMEGElastomer"],"name":"PTMEG橡胶粉","tr":"PTMEG橡胶粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["dustPlatinumResidue"],"name":"铂渣粉","tr":"铂渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11314":{"oreDict":["dustPotassiumChlorate"],"name":"氯酸钾粉","tr":"氯酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["dustReprecipitatedPlatinum"],"name":"再沉淀铂粉","tr":"再沉淀铂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["dustPalladiumMetallicPowder"],"name":"钯金属粉","tr":"钯金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["dustReprecipitatedPalladium"],"name":"再沉淀钯粉","tr":"再沉淀钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["dustPalladiumSalt"],"name":"钯盐粉","tr":"钯盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["dustSodiumSulfate"],"name":"硫酸钠粉","tr":"硫酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["dustPotassiumDisulfate"],"name":"焦硫酸钾粉","tr":"焦硫酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["dustLeachResidue"],"name":"浸出渣粉","tr":"浸出渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["dustCalciumChloride"],"name":"氯化钙粉","tr":"氯化钙粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["dustRuthenium"],"name":"钌粉","tr":"钌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["dustSodiumRuthenate"],"name":"钌酸钠粉","tr":"钌酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["dustRutheniumTetroxide"],"name":"四氧化钌粉","tr":"四氧化钌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["dustRarestMetalResidue"],"name":"稀有金属渣粉","tr":"稀有金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["dustIridiumMetalResidue"],"name":"铱金属渣粉","tr":"铱金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["dustSludgeDustResidue"],"name":"泥渣粉","tr":"泥渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"oreDict":["dustIridiumDioxide"],"name":"二氧化铱粉","tr":"二氧化铱粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"oreDict":["dustIridiumChloride"],"name":"氯化铱粉","tr":"氯化铱粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["dustMetallicSludgeDustResidue"],"name":"金属泥渣粉","tr":"金属泥渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["dustRhodium"],"name":"铑粉","tr":"铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["dustCrudeRhodiumMetal"],"name":"粗制铑金属粉","tr":"粗制铑金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"oreDict":["dustRhodiumSalt"],"name":"铑盐粉","tr":"铑盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"oreDict":["dustSodiumNitrate"],"name":"硝酸钠粉","tr":"硝酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"oreDict":["dustRhodiumNitrate"],"name":"硝酸铑粉","tr":"硝酸铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"oreDict":["dustZincSulfate"],"name":"硫酸锌粉","tr":"硫酸锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["dustRhodiumFilterCake"],"name":"铑滤饼粉","tr":"铑滤饼粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"oreDict":["dustReprecipitatedRhodium"],"name":"再沉淀铑粉","tr":"再沉淀铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["dustRhodium-PlatedPalladium"],"name":"镀铑钯粉","tr":"镀铑钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["dustTiberium"],"name":"泰伯利亚粉","tr":"泰伯利亚粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["dustRuridit"],"name":"钌铱合金粉","tr":"钌铱合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["dustFluorspar"],"name":"氟石粉","tr":"氟石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["dustHighDurabilityCompoundSteel"],"name":"高耐久性复合钢粉","tr":"高耐久性复合钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["dustAtheneite"],"name":"砷汞钯粉","tr":"砷汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["dustTemagamite"],"name":"碲汞钯粉","tr":"碲汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["dustTerlinguaite"],"name":"黄氯汞粉","tr":"黄氯汞粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["dustAdemicSteel"],"name":"硬钢粉","tr":"硬钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"oreDict":["dustRawAdemicSteel"],"name":"粗制硬钢粉","tr":"粗制硬钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"99":{"oreDict":["dustPotassiumfluorosilicate"],"name":"氟硅酸钾粉","tr":"氟硅酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"oreDict":["dustPotassiumCarbonate"],"name":"碳酸钾粉","tr":"碳酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"102":{"oreDict":["dustRawFluorophlogopite"],"name":"粗制氟金云母粉","tr":"粗制氟金云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["dustFluorophlogopite"],"name":"氟金云母粉","tr":"氟金云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11446":{"oreDict":["dustLanthanumOreConcentrate"],"name":"镧精粉","tr":"镧精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11447":{"oreDict":["dustPraseodymiumOreConcentrate"],"name":"镨精粉","tr":"镨精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11449":{"oreDict":["dustNeodymiumOreConcentrate"],"name":"钕精粉","tr":"钕精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11450":{"oreDict":["dustPromethiumOreConcentrate"],"name":"钷精粉","tr":"钷精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11451":{"oreDict":["dustEuropiumOreConcentrate"],"name":"铕精粉","tr":"铕精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11452":{"oreDict":["dustGadoliniumOreConcentrate"],"name":"钆精粉","tr":"钆精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11453":{"oreDict":["dustTerbiumOreConcentrate"],"name":"铽精粉","tr":"铽精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11454":{"oreDict":["dustDysprosiumOreConcentrate"],"name":"镝精粉","tr":"镝精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11455":{"oreDict":["dustHolmiumOreConcentrate"],"name":"钬精粉","tr":"钬精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11456":{"oreDict":["dustErbiumOreConcentrate"],"name":"铒精粉","tr":"铒精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11457":{"oreDict":["dustThuliumOreConcentrate"],"name":"铥精粉","tr":"铥精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11458":{"oreDict":["dustYtterbiumOreConcentrate"],"name":"镱精粉","tr":"镱精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11459":{"oreDict":["dustLutetiumOreConcentrate"],"name":"镥精粉","tr":"镥精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11464":{"oreDict":["dustSamarium(III)Oxalate"],"name":"含杂草酸钐粉","tr":"含杂草酸钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11465":{"oreDict":["dustSamarium(III)-Chloride"],"name":"含杂氯化钐粉","tr":"含杂氯化钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11466":{"oreDict":["dustSamariumChloride-SodiumChlorideBlend"],"name":"氯化钐-氯化钠混合物粉","tr":"氯化钐-氯化钠混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11467":{"oreDict":["dustImpureLanthanumChloride"],"name":"含杂氯化镧粉","tr":"含杂氯化镧粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11468":{"oreDict":["dustSamariumOxide"],"name":"氧化钐粉","tr":"氧化钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29900":{"oreDict":["dustTungsticAcid"],"name":"钨酸粉","tr":"钨酸粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29901":{"oreDict":["dustTungstenTrioxide"],"name":"三氧化钨粉","tr":"三氧化钨粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29903":{"oreDict":["dustAmmoniumNitrate"],"name":"硝酸铵粉","tr":"硝酸铵粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11472":{"oreDict":["dustRarestEarthResidue"],"name":"罕见稀土渣粉","tr":"罕见稀土渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11498":{"oreDict":["dustCerium-dopedLutetiumAluminiumOxygenBlend"],"name":"掺铈镥铝氧混合物粉","tr":"掺铈镥铝氧混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11501":{"oreDict":["dustHafniumCarbide"],"name":"碳化铪粉","tr":"碳化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11502":{"oreDict":["dustTantalumCarbide/HafniumCarbideMixture"],"name":"碳化钽-碳化铪混合物粉","tr":"碳化钽-碳化铪混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["dustTantalumHafniumCarbide"],"name":"碳化钽铪粉","tr":"碳化钽铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["dustHafnium"],"name":"铪粉","tr":"铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11001":{"oreDict":["dustLow-PurityHafnium"],"name":"低纯铪粉","tr":"低纯铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11002":{"oreDict":["dustHafnia"],"name":"氧化铪粉","tr":"氧化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11003":{"oreDict":["dustHafniumTetrachloride"],"name":"四氯化铪粉","tr":"四氯化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11005":{"oreDict":["dustHafniumIodide"],"name":"碘化铪粉","tr":"碘化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11006":{"oreDict":["dustHafniumRunoff"],"name":"铪废料粉","tr":"铪废料粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["dustZirconium"],"name":"锆粉","tr":"锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11008":{"oreDict":["dustZirconia"],"name":"氧化锆粉","tr":"氧化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11009":{"oreDict":["dustZirconiumTetrachloride"],"name":"四氯化锆粉","tr":"四氯化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11011":{"oreDict":["dustHafnia-ZirconiaBlend"],"name":"氧化铪-氧化锆混合物粉","tr":"氧化铪-氧化锆混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11012":{"oreDict":["dustIodine"],"name":"碘粉","tr":"碘粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11019":{"oreDict":["dustMonaziteSulfate"],"name":"硫酸独居石粉","tr":"硫酸独居石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11020":{"oreDict":["dustAcidicMonazitePowder"],"name":"酸性独居石粉","tr":"酸性独居石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11021":{"oreDict":["dustMonaziteRareEarthFiltrate"],"name":"独居石稀土滤渣粉","tr":"独居石稀土滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11022":{"oreDict":["dustNeutralizedMonaziteRareEarthFiltrate"],"name":"中和独居石稀土滤渣粉","tr":"中和独居石稀土滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11023":{"oreDict":["dustMonaziteRareEarthHydroxideConcentrate"],"name":"浓缩独居石稀土氢氧化物粉","tr":"浓缩独居石稀土氢氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11024":{"oreDict":["dustDriedMonaziteRareEarthConcentrate"],"name":"干燥浓缩硝酸独居石稀土粉","tr":"干燥浓缩硝酸独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10001":{"oreDict":["dustGraphite-UraniumMixture"],"name":"石墨-铀混合物粉","tr":"石墨-铀混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11025":{"oreDict":["dustCeriumDioxide"],"name":"二氧化铈粉","tr":"二氧化铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11026":{"oreDict":["dustCeriumChloride"],"name":"氯化铈粉","tr":"氯化铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11027":{"oreDict":["dustCeriumOxalate"],"name":"草酸铈粉","tr":"草酸铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11028":{"oreDict":["dustCerium(III)Oxide"],"name":"氧化铈(III)粉","tr":"氧化铈(III)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10005":{"oreDict":["dustUraniumCarbide-ThoriumMixture"],"name":"碳化铀-钍混合物粉","tr":"碳化铀-钍混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11029":{"oreDict":["dustCerium-RichMixture"],"name":"富铈混合物粉","tr":"富铈混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11030":{"oreDict":["dustCooledMonaziteRareEarthConcentrate"],"name":"冷却浓缩硝酸独居石稀土粉","tr":"冷却浓缩硝酸独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11031":{"oreDict":["dustMonaziteRarerEarthSediment"],"name":"独居石罕土沉淀粉","tr":"独居石罕土沉淀粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11032":{"oreDict":["dustHeterogenousHalogenicMonaziteRareEarthMixture"],"name":"异质卤化独居石稀土混合物粉","tr":"异质卤化独居石稀土混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10009":{"oreDict":["dustPlutoniumOxide-UraniumMixture"],"name":"氧化钚-铀混合物粉","tr":"氧化钚-铀混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11033":{"oreDict":["dustSaturatedMonaziteRareEarth"],"name":"饱和独居石稀土粉","tr":"饱和独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11034":{"oreDict":["dustSamaricResidue"],"name":"钐沉淀粉","tr":"钐沉淀粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11037":{"oreDict":["dustThorium-PhosphateCake"],"name":"磷酸钍滤饼粉","tr":"磷酸钍滤饼粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10014":{"oreDict":["dustVanadiumPentoxide"],"name":"五氧化二钒粉","tr":"五氧化二钒粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11038":{"oreDict":["dustThorium-PhosphateConcentrate"],"name":"磷酸钍精粉","tr":"磷酸钍精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11039":{"oreDict":["dustUraniumFiltrate"],"name":"铀滤渣粉","tr":"铀滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10016":{"oreDict":["dustThoriumOxalate"],"name":"草酸钍粉","tr":"草酸钍粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11040":{"oreDict":["dustNeutralizedUraniumFiltrate"],"name":"中和铀滤渣粉","tr":"中和铀滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10017":{"oreDict":["dustThoriumHydroxide"],"name":"氢氧化钍粉","tr":"氢氧化钍粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11041":{"oreDict":["dustSeaweedAsh"],"name":"海藻灰粉","tr":"海藻灰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10018":{"oreDict":["dustSodiumOxalate"],"name":"草酸钠粉","tr":"草酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11043":{"oreDict":["dustPotassiumPermanganate"],"name":"高锰酸钾粉","tr":"高锰酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["dustAtomicSeparationCatalyst"],"name":"原子分离催化剂粉","tr":"原子分离催化剂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["dustOrundum"],"name":"合成玉粉","tr":"合成玉粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11047":{"oreDict":["dustEuropiumOxide"],"name":"氧化铕粉","tr":"氧化铕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["dustExtremelyUnstableNaquadah"],"name":"极不稳定硅岩粉","tr":"极不稳定硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11048":{"oreDict":["dustEuropiumSulfide"],"name":"硫化铕粉","tr":"硫化铕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11049":{"oreDict":["dustUnknownBlend"],"name":"未知混合物粉","tr":"未知混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11050":{"oreDict":["dustEuropiumIIIOxide"],"name":"氧化铕(III)粉","tr":"氧化铕(III)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10035":{"oreDict":["dustRadioactiveSludge"],"name":"放射性污泥粉","tr":"放射性污泥粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10052":{"oreDict":["dustZincChloride"],"name":"氯化锌粉","tr":"氯化锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["dustZn-ThAlloy"],"name":"锌钍合金粉","tr":"锌钍合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["dustNaquadahOxideMixture"],"name":"氧化硅岩混合物粉","tr":"氧化硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10055":{"oreDict":["dustTitaniumTrifluoride"],"name":"三氟化钛粉","tr":"三氟化钛粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10057":{"oreDict":["dustGalliumHydroxide"],"name":"氢氧化镓粉","tr":"氢氧化镓粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10063":{"oreDict":["dustNaquadahine"],"name":"氧化硅岩粉","tr":"氧化硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10066":{"oreDict":["dustAdamantine"],"name":"氧化精金粉","tr":"氧化精金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["dustEnriched-NaquadahOxideMixture"],"name":"氧化富集硅岩混合物粉","tr":"氧化富集硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10068":{"oreDict":["dustTriniumSulphate"],"name":"硫酸三元粉","tr":"硫酸三元粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10070":{"oreDict":["dustConcentratedEnriched-NaquadahSludge"],"name":"浓缩富集硅岩矿泥粉","tr":"浓缩富集硅岩矿泥粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10071":{"oreDict":["dustEnriched-NaquadahSulphate"],"name":"硫酸富集硅岩粉","tr":"硫酸富集硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["dustNaquadriaOxideMixture"],"name":"氧化超能硅岩混合物粉","tr":"氧化超能硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10073":{"oreDict":["dustIndiumPhosphate"],"name":"磷酸铟粉","tr":"磷酸铟粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10074":{"oreDict":["dustLowQualityNaquadriaPhosphate"],"name":"低纯磷酸超能硅岩粉","tr":"低纯磷酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10076":{"oreDict":["dustLowQualityNaquadriaSulphate"],"name":"低纯硫酸超能硅岩粉","tr":"低纯硫酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10078":{"oreDict":["dustNaquadriaSulphate"],"name":"硫酸超能硅岩粉","tr":"硫酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["dustZircaloy-4"],"name":"锆锡合金-4粉","tr":"锆锡合金-4粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["dustZircaloy-2"],"name":"锆锡合金-2粉","tr":"锆锡合金-2粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11107":{"oreDict":["dustBastnasiteRareEarthOxides"],"name":"氟碳镧铈稀土氧化物粉","tr":"氟碳镧铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["dustIncoloy-903"],"name":"耐热铬铁合金-903粉","tr":"耐热铬铁合金-903粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11108":{"oreDict":["dustAcid-LeachedBastnasiteRareEarthOxides"],"name":"酸浸氟碳镧铈稀土氧化物粉","tr":"酸浸氟碳镧铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["dustAdamantiumAlloy"],"name":"精金合金粉","tr":"精金合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11109":{"oreDict":["dustGangue"],"name":"脉石粉","tr":"脉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11110":{"oreDict":["dustRoastedRareEarthOxides"],"name":"焙烧稀土氧化物粉","tr":"焙烧稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11111":{"oreDict":["dustWetRareEarthOxides"],"name":"湿稀土氧化物粉","tr":"湿稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11112":{"oreDict":["dustCerium-OxidisedRareEarthOxides"],"name":"氧化铈稀土氧化物粉","tr":"氧化铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11113":{"oreDict":["dustBastnasiteRarerEarthOxides"],"name":"氟碳镧铈罕土氧化物粉","tr":"氟碳镧铈罕土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11116":{"oreDict":["dustSamaricRareEarthConcentrate"],"name":"钐稀土精粉","tr":"钐稀土精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10093":{"oreDict":["dustFerrocene"],"name":"二茂铁粉","tr":"二茂铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11117":{"oreDict":["dustNeodymiumRareEarthConcentrate"],"name":"钕稀土精粉","tr":"钕稀土精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["dustMAR-M200Steel"],"name":"MAR-M200特种钢粉","tr":"MAR-M200特种钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["dustMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢粉","tr":"MAR-Ce-M200特种钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11121":{"oreDict":["dustLanthaniumChloride"],"name":"氯化镧粉","tr":"氯化镧粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["dustLithiumChloride"],"name":"氯化锂粉","tr":"氯化锂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11122":{"oreDict":["dustNeodymiumOxide"],"name":"氧化钕粉","tr":"氧化钕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["dustSignalium"],"name":"信素粉","tr":"信素粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11123":{"oreDict":["dustFluorinatedSamaricConcentrate"],"name":"氟化钐精粉","tr":"氟化钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10100":{"oreDict":["dustLumiinessence"],"name":"流明精华粉","tr":"流明精华粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11124":{"oreDict":["dustCalciumFluoride"],"name":"氟化钙粉","tr":"氟化钙粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["dustLumiium"],"name":"流明粉","tr":"流明粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11125":{"oreDict":["dustSamarium-TerbiumMixture"],"name":"钐-铽混合物粉","tr":"钐-铽混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["dustArtherium-Sn"],"name":"阿瑟锡粉","tr":"阿瑟锡粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11126":{"oreDict":["dustNitrogenatedSamarium-TerbiumMixture"],"name":"氮化钐-铽混合物粉","tr":"氮化钐-铽混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["dustTanmolyiumBeta-C"],"name":"钛钼合金β-C粉","tr":"钛钼合金β-C粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11127":{"oreDict":["dustTerbiumNitrate"],"name":"硝酸铽粉","tr":"硝酸铽粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["dustDalisenite"],"name":"大力合金粉","tr":"大力合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11128":{"oreDict":["dustSamariumOreConcentrate"],"name":"钐精粉","tr":"钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["dustHikarium"],"name":"光素粉","tr":"光素粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11129":{"oreDict":["dustDephosphatedSamariumConcentrate"],"name":"脱磷钐精粉","tr":"脱磷钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["dustTairitsu"],"name":"对立合金粉","tr":"对立合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10108":{"oreDict":["dustMagnesiumSulphate"],"name":"硫酸镁粉","tr":"硫酸镁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["dustPreciousMetalsAlloy"],"name":"稀有金属合金粉","tr":"稀有金属合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["dustEnrichedNaquadahAlloy"],"name":"富集硅岩合金粉","tr":"富集硅岩合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["dustMetastableOganesson"],"name":"亚稳态鿫粉","tr":"亚稳态鿫粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["dustShirabon"],"name":"调律源金粉","tr":"调律源金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10113":{"oreDict":["dustInertNaquadah"],"name":"惰性硅岩粉","tr":"惰性硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10114":{"oreDict":["dustInertEnrichedNaquadah"],"name":"惰性富集硅岩粉","tr":"惰性富集硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10115":{"oreDict":["dustInertNaquadria"],"name":"惰性超能硅岩粉","tr":"惰性超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemVoidFortressChestplate":{"0":{"name":"Void Fortress Cuirass","tr":"虚空要塞胸铠","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":4801}},"battlegear2:shield.wood":{"0":{"name":"Wooden Shield","tr":"木盾","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":41}},"TwilightForest:item.carminite":{"0":{"name":"Carminite","tr":"砷铅铁","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:spicebunItem":{"0":{"oreDict":["foodSpicebun"],"name":"Spice Bun","tr":"香料圆面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolForgeHammer":{"0":{"oreDict":["craftingToolForgeHammer"],"name":"Forge Hammer","tr":"锻造锤","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":80}},"miscutils:cyclohexanone":{"0":{"oreDict":["cellCyclohexanone"],"name":"环己酮单元","tr":"环己酮单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTechnetiumHexafluoride":{"0":{"oreDict":["dustTinyTechnetiumHexafluoride"],"name":"小撮六氟化锝粉","tr":"小撮六氟化锝粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemAxeElemental":{"0":{"name":"Axe of the Stream","tr":"奔流斧","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1501}},"miscutils:itemRodOctiron":{"0":{"oreDict":["stickOctiron"],"name":"八角铁杆","tr":"八角铁杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.ModuleLander2":{"0":{"name":"Lander Tier 2","tr":"2阶登陆舱","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCoalCoke":{"0":{"oreDict":["fuelCoke"],"name":"Coking Coal","tr":"焦煤","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mintchocolatechipicemcreamItem":{"0":{"oreDict":["foodMintchocolatechipicecream"],"name":"Mint Chocolate Chip Ice Cream","tr":"碎薄荷巧克力冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.oldConcreteOre":{"0":{"oreDict":["oreSteel"],"name":"Steel-bearing Urbolite","tr":"含钢褐铁矿","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fossiliferous Urbolite","tr":"含磷褐铁矿","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:level_maintainer":{"0":{"name":"ME Level Maintainer","tr":"ME缓存指令器","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraBees:honeyComb":{"64":{"oreDict":["beeComb"],"name":"Certus Comb","tr":"赛特斯石英蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["beeComb"],"name":"Shimmering Comb","tr":"微光蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["beeComb"],"name":"Oily Comb","tr":"石油蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["beeComb"],"name":"Fossilised Comb","tr":"煤炭蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["beeComb"],"name":"Petroleum Comb","tr":"燃油蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["beeComb"],"name":"Damp Comb","tr":"潮湿蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["beeComb"],"name":"Milky Comb","tr":"牛奶蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["beeComb"],"name":"Fruity Comb","tr":"果汁蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["beeComb"],"name":"Seedy Comb","tr":"种子油蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["beeComb"],"name":"Alcoholic Comb","tr":"蜂蜜酒蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["beeComb"],"name":"Amber Comb","tr":"树脂蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["beeComb"],"name":"Iron Comb","tr":"铁蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["beeComb"],"name":"Golden Comb","tr":"金蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["beeComb"],"name":"Copper Comb","tr":"铜蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["beeComb"],"name":"Tin Comb","tr":"锡蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["beeComb"],"name":"Silver Comb","tr":"银蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["beeComb"],"name":"Radioactive Comb","tr":"铀蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["beeComb"],"name":"Tar Comb","tr":"杂酚蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["beeComb"],"name":"Latex Comb","tr":"橡胶蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["beeComb"],"name":"Brimstone Comb","tr":"酸化蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["beeComb"],"name":"Venomous Comb","tr":"剧毒蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["beeComb"],"name":"Caffeinated Comb","tr":"咖啡蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["beeComb"],"name":"Glacial Comb","tr":"冰河蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["beeComb"],"name":"Shadow Comb","tr":"暗影蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["beeComb"],"name":"Leaden Comb","tr":"铅蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["beeComb"],"name":"Zinc Comb","tr":"锌蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["beeComb"],"name":"Titanium Comb","tr":"钛蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["beeComb"],"name":"Tungsten Comb","tr":"钨蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["beeComb"],"name":"Platinum Comb","tr":"铂蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["beeComb"],"name":"Emerald Comb","tr":"绿宝石蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["beeComb"],"name":"Ruby Comb","tr":"红宝石蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["beeComb"],"name":"Sapphire Comb","tr":"蓝宝石蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["beeComb"],"name":"Diamond Comb","tr":"钻石蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["beeComb"],"name":"Nickel Comb","tr":"镍蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"oreDict":["beeComb"],"name":"Unstable Comb","tr":"硝石蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["beeComb"],"name":"Decomposed Comb","tr":"堆肥蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockMetalGlow":{"0":{"name":"Memory Block","tr":"记忆方块","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.redwood":{"0":{"oreDict":["fenceGateWood"],"name":"Redwood Fence Gate","tr":"红木树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:pink_kitchen_floor":{"0":{"name":"Pink Kitchen Floor","tr":"粉色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBlueprint":{"0":{"name":"Blueprint [I am useless]","tr":"蓝图[无用]","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:item.ModuleLander3":{"0":{"name":"Lander Tier 3","tr":"3阶登陆舱","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:muttoncookedItem":{"0":{"oreDict":["foodMuttoncooked"," listAllmuttoncooked"," listAllmeatcooked"],"name":"Cooked Mutton","tr":"熟羊肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraBees:honeyDrop":{"1":{"name":"Acidic Drop","tr":"酸液液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Venomous Drop","tr":"剧毒液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Juicy Drop","tr":"果汁液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Kelvin Drop","tr":"极寒液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Milkdew","tr":"牛奶滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Nutdew","tr":"种子油液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Tipsy Drop","tr":"酒精液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Red Tinted Honey","tr":"染色蜜汁(红)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Yellow Tinted Honey","tr":"染色蜜汁(黄)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Blue Tinted Honey","tr":"染色蜜汁(蓝)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Green Tinted Honey","tr":"染色蜜汁(绿)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Black Tinted Honey","tr":"染色蜜汁(黑)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"White Tinted Honey","tr":"染色蜜汁(白)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Brown Tinted Honey","tr":"染色蜜汁(棕)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Orange Tinted Honey","tr":"染色蜜汁(橙)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Cyan Tinted Honey","tr":"染色蜜汁(青)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Purple Tinted Honey","tr":"染色蜜汁(紫)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Gray Tinted Honey","tr":"染色蜜汁(灰)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Light Blue Tinted Honey","tr":"染色蜜汁(淡蓝)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Pink Tinted Honey","tr":"染色蜜汁(粉)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Lime Green Tinted Honey","tr":"染色蜜汁(黄绿)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Magenta Tinted Honey","tr":"染色蜜汁(品红)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Light Gray Tinted Honey","tr":"染色蜜汁(淡灰)","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureZircophyllite":{"0":{"oreDict":["dustPureZircophyllite"],"name":"Purified Zircophyllite Dust","tr":"洁净锆星叶石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleHoney":{"0":{"oreDict":["capsuleHoney"],"name":"Honey Capsule","tr":"蜂蜜胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.camera":{"0":{"name":"Camera","tr":"摄像头","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WeakOrb":{"0":{"name":"Weak Orb","tr":"虚弱宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:enderHand":{"0":{"name":"Hand of Ender","tr":"末影之手","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:barnardaFsubgrunt":{"0":{"oreDict":["rockBarnardaF"," rockSpace"],"name":"Barnarda F Subsurface Block","tr":"巴纳德F地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:naquadahMass":{"0":{"name":"Naquadah Mass","tr":"硅岩团","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_hellsand":{"0":{"oreDict":["soulsand"," soulsandBlack"],"name":"Colored Soul Sand (White Frequency)","tr":"染色 灵魂沙 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["soulsand"," soulsandRed"],"name":"Colored Soul Sand (Orange Frequency)","tr":"染色 灵魂沙 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["soulsand"," soulsandGreen"],"name":"Colored Soul Sand (Magenta Frequency)","tr":"染色 灵魂沙 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["soulsand"," soulsandBrown"],"name":"Colored Soul Sand (Light Blue Frequency)","tr":"染色 灵魂沙 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["soulsand"," soulsandBlue"],"name":"Colored Soul Sand (Yellow Frequency)","tr":"染色 灵魂沙 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["soulsand"," soulsandPurple"],"name":"Colored Soul Sand (Lime Frequency)","tr":"染色 灵魂沙 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["soulsand"," soulsandCyan"],"name":"Colored Soul Sand (Pink Frequency)","tr":"染色 灵魂沙 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["soulsand"," soulsandLightGray"],"name":"Colored Soul Sand (Gray Frequency)","tr":"染色 灵魂沙 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["soulsand"," soulsandGray"],"name":"Colored Soul Sand (Light Gray Frequency)","tr":"染色 灵魂沙 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["soulsand"," soulsandPink"],"name":"Colored Soul Sand (Cyan Frequency)","tr":"染色 灵魂沙 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["soulsand"," soulsandLime"],"name":"Colored Soul Sand (Purple Frequency)","tr":"染色 灵魂沙 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["soulsandYellow"," soulsand"],"name":"Colored Soul Sand (Blue Frequency)","tr":"染色 灵魂沙 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["soulsandLightBlue"," soulsand"],"name":"Colored Soul Sand (Brown Frequency)","tr":"染色 灵魂沙 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["soulsandMagenta"," soulsand"],"name":"Colored Soul Sand (Green Frequency)","tr":"染色 灵魂沙 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["soulsandOrange"," soulsand"],"name":"Colored Soul Sand (Red Frequency)","tr":"染色 灵魂沙 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["soulsand"," soulsandWhite"],"name":"Colored Soul Sand (Black Frequency)","tr":"染色 灵魂沙 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:wood_sliding_door":{"0":{"name":"Wooden Glass Door","tr":"木框玻璃门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:forcefieldDoor":{"0":{"name":"Forcefield","tr":"力场","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockRubber":{"0":{"name":"Rubber Sheet","tr":"橡胶垫","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockElectric":{"0":{"name":"BatBox","tr":"储电盒","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"1":{"name":"MFE","tr":"MFE","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"2":{"name":"MFSU","tr":"MFSU","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"3":{"name":"LV-Transformer","tr":"低压变压器","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"4":{"name":"MV-Transformer","tr":"中压变压器","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"5":{"name":"HV-Transformer","tr":"高压变压器","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"6":{"name":"EV-Transformer","tr":"超高压变压器","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1},"7":{"name":"CESU","tr":"CESU","tab":"工业2","type":"Block","maxStackSize":1,"maxDurability":1}},"cookingforblockheads:magenta_kitchen_floor":{"0":{"name":"Magenta Kitchen Floor","tr":"品红厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"tectech:gt.time_acceleration_field_generator":{"0":{"name":"§f粗制§r时间膨胀场发生器","tr":"§f粗制§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"§f原始§r时间膨胀场发生器","tr":"§f原始§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"§f稳定§r时间膨胀场发生器","tr":"§f稳定§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"§f先进§r时间膨胀场发生器","tr":"§f先进§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"§f卓越§r时间膨胀场发生器","tr":"§f卓越§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"§f异星§r时间膨胀场发生器","tr":"§f异星§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"§f完美§r时间膨胀场发生器","tr":"§f完美§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"§f太初§r时间膨胀场发生器","tr":"§f太初§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"§f§l鸿蒙§r时间膨胀场发生器","tr":"§f§l鸿蒙§r时间膨胀场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ExtruderShapeBoat":{"0":{"name":"Extruder Shape (Boat)","tr":"模头(船)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA0Wall":{"0":{"name":"Metamorphic Forest Cobblestone Wall","tr":"变质森林石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Metamorphic Plains Cobblestone Wall","tr":"变质平原石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Metamorphic Mountain Cobblestone Wall","tr":"变质高山石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Metamorphic Fungal Cobblestone Wall","tr":"变质菌丝石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Metamorphic Swamp Cobblestone Wall","tr":"变质沼泽石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Metamorphic Desert Cobblestone Wall","tr":"变质沙漠石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Metamorphic Taiga Cobblestone Wall","tr":"变质雪原石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Metamorphic Mesa Cobblestone Wall","tr":"变质高原石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:walrus":{"0":{"name":"Walrus","tr":"海象","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderStorage:enderPouch":{"0":{"name":"Ender Pouch","tr":"末影袋子","tab":"装饰性方块","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneBrickStairBlock":{"0":{"name":"Sky Stone Brick Stairs","tr":"陨石石砖楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:standardFillingAgent":{"0":{"name":"Standard Filling Agent","tr":"[标准的]填充剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearRuthenium":{"0":{"oreDict":["gearGtRuthenium"," gearRuthenium"],"name":"钌齿轮","tr":"钌齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnrichedXSunnariumAlloy":{"0":{"name":"Enriched X Sunnarium Alloy","tr":"富集X阳光合金","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustArceusAlloy2B":{"0":{"oreDict":["dustArceusAlloy2B"],"name":"阿尔宙斯合金2B粉","tr":"阿尔宙斯合金2B粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:HatchUpdateTool":{"0":{"name":"Hatch Update Tool","tr":"仓室升级工具","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:energyInfuser":{"0":{"name":"Energy Infuser","tr":"能量注入器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:BattleSignBlock":{"0":{"name":"Battlesign","tr":"战斗牌子","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:customBrick0Stairs":{"0":{"name":"Hellish Brick Stairs","tr":"炼狱砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cornseedItem":{"0":{"oreDict":["listAllseed"," seedCorn"],"name":"Corn Seed","tr":"玉米种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusSmelt":{"0":{"name":"Wand Focus: Efreet\u0027s Flame","tr":"法杖核心:伊夫利特之辉","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:kamiResource":{"0":{"name":"Ichor","tr":"灵液","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Ichorcloth","tr":"灵布","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotIchorium"],"name":"Ichorium","tr":"灵宝","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["nuggetIchorium"],"name":"Ichorium Nugget","tr":"灵宝粒","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Ichorium Cap","tr":"灵宝杖端","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ichor Woven Silverwood Wand Core","tr":"灵布包层银树杖柄","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Nether Shard","tr":"下界碎片","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Ender Shard","tr":"末影碎片","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ChargingFocus":{"0":{"name":"Wand Focus: Charging","tr":"法杖核心:充电","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2}},"miscutils:crushedCryoliteF":{"0":{"oreDict":["crushedCryoliteF"],"name":"Crushed Cryolite (F) Ore","tr":"粉碎的冰晶石(F)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:lambbarleysoupItem":{"0":{"oreDict":["foodLambbarleysoup"],"name":"Lamb Barley Soup","tr":"羊羔大麦汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:briar":{"0":{"name":"Briar","tr":"治愈草","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundAxe":{"0":{"name":"Bound Axe","tr":"约束之斧","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"Automagy:focusCrafting":{"0":{"name":"Wand Focus: Crafting","tr":"法杖核心:合成","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:kobolditehelm":{"0":{"name":"Twisting Band","tr":"扭曲头带","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":364}},"miscutils:itemPlateDoubleAncientGranite":{"0":{"oreDict":["plateDoubleAncientGranite"],"name":"双重古花岗岩板","tr":"双重古花岗岩板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"dreamcraft:item.HeavyDutyNoseConeTier4":{"0":{"name":"Heavy Duty Nose Cone Tier 4","tr":"4阶重型火箭鼻锥","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZirconiumCarbide":{"0":{"oreDict":["dustTinyZirconiumCarbide"],"name":"小撮碳化锆粉","tr":"小撮碳化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyNoseConeTier3":{"0":{"name":"Heavy Duty Nose Cone Tier 3","tr":"3阶重型火箭鼻锥","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleInconel792":{"0":{"oreDict":["plateDoubleInconel792"],"name":"双重镍铬基合金-792板","tr":"双重镍铬基合金-792板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemRodLongQuantum":{"0":{"oreDict":["stickLongQuantum"],"name":"长量子合金杆","tr":"长量子合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_EnrichedBacterialSludge_bucket":{"0":{"name":"Bucket of Radioactive Bacterial Sludge","tr":"桶装放射性细菌污泥","tab":"GTNH: 流体","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:manaweaveLegs":{"0":{"name":"Manaweave Robe Bottom","tr":"魔源长袍(下半身)","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":76}},"Botania:enderEyeBlock":{"0":{"name":"Ender Overseer","tr":"末影监视者","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:keypadLock":{"0":{"name":"Keypad","tr":"按键","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:jamrollItem":{"0":{"oreDict":["foodJamroll"],"name":"Jam Roll","tr":"果酱卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:energySword":{"0":{"name":"Bound Blade","tr":"约束之剑","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemCellIodine":{"0":{"oreDict":["cellIodine"],"name":"碘单元","tr":"碘单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingWillow":{"0":{"name":"Crated Willow Sapling","tr":"装箱的柳树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:lavaSigil":{"0":{"name":"Lava Sigil","tr":"熔岩印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallAgarditeCd":{"0":{"oreDict":["dustSmallAgarditeCd"],"name":"小堆钇砷铜矿(Cd)粉","tr":"小堆钇砷铜矿(Cd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolCertusQuartzSword":{"0":{"name":"Certus Quartz Sword","tr":"赛特斯石英剑","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"GalacticraftCore:item.engine":{"0":{"name":"Tier 1 Rocket Engine","tr":"1阶火箭引擎","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Tier 1 Booster","tr":"1阶助推器","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:hexLargePlating":{"0":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Large Hex Plating","tr":"大型六角金属镀层块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellDysprosium":{"0":{"oreDict":["cellDysprosium"],"name":"镝单元","tr":"镝单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:greenscreen":{"0":{"name":"Lapis Caelestis Albus (White)","tr":"苍雪之纯色光屏(白)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lapis Caelestis Aurantiacus (Orange)","tr":"橘夕之纯色光屏(橙)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lapis Caelestis Purpura Amethystinus (Magenta)","tr":"晶朱之纯色光屏(品红)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lapis Caelestis Caesicius (Light Blue)","tr":"碧空之纯色光屏(淡蓝)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Lapis Caelestis Flavus (Yellow)","tr":"金华之纯色光屏(黄)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lapis Caelestis Viridis (Green)","tr":"茂林之纯色光屏(绿)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Lapis Caelestis Roseus (Pink)","tr":"豆蔻之纯色光屏(粉)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Lapis Caelestis Cinereus (Gray)","tr":"烬余之纯色光屏(灰)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Lapis Caelestis Lux Cinereus (Light Gray)","tr":"辉铁之纯色光屏(淡灰)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Lapis Caelestis Callainus (Cyan)","tr":"阳春之纯色光屏(青)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lapis Caelestis Purpura (Purple)","tr":"黯霞之纯色光屏(紫)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Lapis Caelestis Caeruleus (Blue)","tr":"蔚水之纯色光屏(蓝)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Lapis Caelestis Fuscus (Brown)","tr":"陶野之纯色光屏(棕)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Lapis Caelestis Paphiae Myrti (Dark Green)","tr":"阴毒之纯色光屏(深绿)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Lapis Caelestis Rufus (Red)","tr":"赤梦之纯色光屏(红)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Lapis Caelestis Nox (Black)","tr":"永夜之纯色光屏(黑)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:gateCopier":{"0":{"name":"Gate Copier","tr":"门设拷贝器","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallLithium7":{"0":{"oreDict":["dustSmallLithium7"],"name":"小堆锂-7粉","tr":"小堆锂-7粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemNuggetPork":{"0":{"name":"Pork Nugget","tr":"猪肉粒","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"Avaritia:Cosmic_Meatballs":{"0":{"name":"Cosmic Meatballs","tr":"寰宇肉丸","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:enchanter":{"0":{"name":"Osmotic Enchanter","tr":"渗透附魔台","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pammangoSapling":{"0":{"name":"Mango Sapling","tr":"芒果树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioLantern":{"0":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.loco.creative":{"0":{"name":"Perpetuum Locomotive","tr":"永动机车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:spicymustardporkItem":{"0":{"oreDict":["foodSpicymustardpork"],"name":"Spicy Mustard Pork","tr":"辛辣芥末猪肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.GiantCobble":{"0":{"name":"Giant Cobblestone","tr":"巨型圆石","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewBlackMetal":{"0":{"oreDict":["screwBlackMetal"],"name":"黑物质螺丝","tr":"黑物质螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.crowbar.void":{"0":{"oreDict":["craftingToolCrowbar"],"name":"Void metal Crowbar","tr":"虚空金属撬棍","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":151}},"TMechworks:SignalBus":{"0":{"name":"Signal Bus","tr":"信号总线","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:diviningRod":{"0":{"name":"Rod of the Plentiful Mantle","tr":"占矿法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.NeutroniumIronPlate":{"0":{"name":"Neutronium-Iron Plate","tr":"中子铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA13SlabFull":{"0":{"name":"Metamorphic Desert Cobblestone Slab","tr":"变质沙漠圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:zucchinibakeItem":{"0":{"oreDict":["foodZucchinibake"],"name":"Zucchini Bake","tr":"烤西葫芦","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.schematic":{"0":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:prismarine1SlabFull":{"0":{"name":"Prismarine Brick Slab","tr":"海晶石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:frameBusy":{"0":{"name":"Working Frame","tr":"工作框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":2001}},"miscutils:itemHotIngotLaurenium":{"0":{"oreDict":["ingotHotLaurenium"],"name":"热劳伦姆合金锭","tr":"热劳伦姆合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPecan":{"0":{"name":"Pecan","tr":"山核桃","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blackberryjuiceItem":{"0":{"oreDict":["listAlljuice"," foodBlackberryjuice"],"name":"Blackberry Juice","tr":"黑莓汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotThorium232":{"0":{"oreDict":["ingotThorium232"],"name":"钍-232锭","tr":"钍-232锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedParchedCombs":{"0":{"name":"Crated Parched Comb","tr":"装箱的炎热蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:capsule.void":{"0":{"name":"Empty Void Capsule","tr":"空虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Water Void Capsule","tr":"水虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Lava Void Capsule","tr":"岩浆虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Biomass Void Capsule","tr":"生物质虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Bioethanol Void Capsule","tr":"乙醇虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Oil Void Capsule","tr":"石油虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Fuel Void Capsule","tr":"燃油虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Seed Oil Void Capsule","tr":"种子油虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Honey Void Capsule","tr":"蜂蜜虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Juice Void Capsule","tr":"果汁虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Ice Void Capsule","tr":"冰虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Milk Void Capsule","tr":"牛奶虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Acid Void Capsule","tr":"酸虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Poison Void Capsule","tr":"毒液虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Liquid Nitrogen Void Capsule","tr":"液氮虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Liquid DNA Void Capsule","tr":"液态DNA虚空胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:electricCloud":{"0":{"name":"§5§lElectric Cloud","tr":"§5§l雷云之光","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZirconiumCarbide":{"0":{"oreDict":["dustZirconiumCarbide"],"name":"碳化锆粉","tr":"碳化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemMachinePart":{"0":{"oreDict":["itemMachineChassi"],"name":"Machine Chassis","tr":"机器框架","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["itemBasicGear"],"name":"Basic Gear","tr":"基础齿轮","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["itemSoulMachineChassi"],"name":"Soul Machine Chassis","tr":"灵魂机器框架","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["itemEndSteelMachineChassi"],"name":"End Steel Chassis","tr":"末影钢机器底盘","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:divinerlava":{"0":{"name":"Lava Diviner","tr":"岩浆探测符","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":51}},"IronChest:diamondDarkSteelUpgrade":{"0":{"name":"Diamond to Dark Steel Chest Upgrade","tr":"升级:钻石\u003e玄钢","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:grilledmushroomItem":{"0":{"oreDict":["foodGrilledmushroom"],"name":"Grilled Mushroom","tr":"烤蘑菇","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:energydrinkItem":{"0":{"oreDict":["foodEnergydrink"],"name":"Energy Drink","tr":"能量饮料","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingPurpleheart":{"0":{"name":"Crated Amaranth Sapling","tr":"装箱的紫檀树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:flowGate":{"0":{"name":"Flux Gate","tr":"能量阀门","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fluid Gate","tr":"流体阀门","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipepoweremerald":{"0":{"name":"Emerald-Covered Kinesis Pipe","tr":"绿宝石能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockPlinth":{"0":{"name":"Arcane Plinth","tr":"奥术基柱","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustStellite":{"0":{"oreDict":["dustStellite"],"name":"铬钴锰钛合金粉","tr":"铬钴锰钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:distilleryidle":{"0":{"name":"Distillery","tr":"蒸馏塔","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:block_mixer":{"0":{"name":"Block Mixer","tr":"方块混合器","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Resource_Block":{"0":{"oreDict":["blockCosmicNeutronium"],"name":"Cosmic Neutronium Block","tr":"宇宙中子态素块","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockInfinity"],"name":"Infinity Block","tr":"无尽之块","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemLeggingsVoidFortress":{"0":{"name":"Void Thaumaturge Leggings","tr":"虚空神秘使护腿","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":151}},"Botania:stone8Slab":{"0":{"name":"Andesite Brick Slab","tr":"安山岩砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockFusedQuartz":{"0":{"oreDict":["blockGlassHardened"," blockGlassHV"],"name":"Fused Quartz","tr":"石英玻璃","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"," blockGlass"," glass"],"name":"Quite Clear Glass","tr":"纯净玻璃","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Enlightened Fused Quartz","tr":"萤光石英玻璃","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Enlightened Clear Glass","tr":"萤光纯净玻璃","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Dark Fused Quartz","tr":"黑暗石英玻璃","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Dark Clear Glass","tr":"黑暗纯净玻璃","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotHypogen":{"0":{"oreDict":["ingotHotHypogen"],"name":"热海珀珍锭","tr":"热海珀珍锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:imbuingStation":{"0":{"name":"Imbuing Station","tr":"激素药水酿造台","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryLava":{"0":{"oreDict":["capsuleLava"],"name":"Lava Capsule","tr":"耐火岩浆胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:rutabagaItem":{"0":{"oreDict":["cropRutabaga"," listAllrootveggie"," listAllveggie"],"name":"Rutabaga","tr":"芜菁甘蓝","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHypogen":{"0":{"oreDict":["dustHypogen"],"name":"海珀珍粉","tr":"海珀珍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:statueofworship":{"0":{"name":"Statue of Hobgoblin Patron","tr":"妖精主顾之雕像","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sigilOfElementalAffinity":{"0":{"name":"Sigil of Elemental Affinity","tr":"元素印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:flowerVine":{"0":{"oreDict":["cropFloweringVines"," cropVine"],"name":"Flowering Vines","tr":"开花藤蔓","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.endSteel_boots":{"0":{"name":"End Steel Boots","tr":"末影钢靴子","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":651}},"harvestcraft:whitemushroomItem":{"0":{"oreDict":["cropWhitemushroom"," listAllmushroom"," listAllveggie"],"name":"White Mushroom","tr":"白蘑菇","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pistachiobutterItem":{"0":{"oreDict":["foodPistachiobutter"," listAllnutbutter"],"name":"Pistachio Butter","tr":"开心果奶油","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureGeikielite":{"0":{"oreDict":["dustImpureGeikielite"],"name":"Impure Geikielite Dust","tr":"含杂镁钛矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.NaquadahPlatedReinforcedStone":{"0":{"name":"Naquadah Plated Reinforced Stone","tr":"硅岩镀层防爆石","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockArcaneFurnace":{"0":{"name":"Infernal Furnace","tr":"炼狱熔炉","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCerite":{"0":{"oreDict":["dustCerite"],"name":"铈硅石粉","tr":"铈硅石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:misc":{"0":{"name":"Mud Brick","tr":"泥块","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Pile of Ashes","tr":"一小堆灰烬","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Empty Honeycomb","tr":"空蜂巢","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Chunk of Flesh","tr":"肉块","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Celestial Crystal Shard","tr":"仙域水晶碎片","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dyeBlue"," dye"],"name":"Blue Dye","tr":"蓝色染料","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["dyeBrown"," dye"],"name":"Brown Dye","tr":"棕色染料","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dyeGreen"," dye"],"name":"Green Dye","tr":"绿色染料","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dyeWhite"," dye"],"name":"White Dye","tr":"白色染料","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dyeBlack"," dye"],"name":"Black Dye","tr":"黑色染料","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Ghastly Soul","tr":"可怕的灵魂","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Pixie Dust","tr":"妖精之尘","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Ichor","tr":"灵液","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["pinecone"],"name":"Pinecone","tr":"松果","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:ingredient_buffer":{"0":{"name":"Ingredient Buffer","tr":"原材料缓存仓","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockFluxGas":{"0":{"name":"Flux Gas","tr":"咒波瓦斯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:turnipItem":{"0":{"oreDict":["cropTurnip"," listAllrootveggie"," listAllveggie"],"name":"Turnip","tr":"大头菜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:sparkChanger":{"0":{"name":"Spark Tinkerer","tr":"火花工匠台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLithiumFluoride":{"0":{"oreDict":["dustTinyLithiumFluoride"],"name":"小撮氟化锂粉","tr":"小撮氟化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:BerryBush":{"12":{"name":"Raspberry Bush","tr":"覆盆子灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Blueberry Bush","tr":"蓝莓灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Blackberry Bush","tr":"黑莓灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Maloberry Bush","tr":"桑葚灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlatePraseodymium":{"0":{"oreDict":["platePraseodymium"],"name":"镨板","tr":"镨板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_pane_brown":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:sound_muffler":{"0":{"name":"Sound Muffler","tr":"消音器","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Rain Muffler","tr":"消音器(仿若无雨)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorQuantum":{"0":{"oreDict":["rotorQuantum"],"name":"量子合金转子","tr":"量子合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.eucalyptus":{"0":{"oreDict":["pressurePlateWood"],"name":"Eucalyptus Pressure Plate","tr":"桉树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:crystalball":{"0":{"name":"Crystal Ball","tr":"水晶球","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyEnergyCrystal":{"0":{"oreDict":["dustTinyEnergyCrystal"],"name":"小撮能量水晶粉","tr":"小撮能量水晶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:deluxechickencurryItem":{"0":{"oreDict":["foodDeluxechickencurry"],"name":"Deluxe Chicken Curry","tr":"豪华咖喱鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:waxItem":{"0":{"oreDict":["materialPressedwax"],"name":"Wax","tr":"蜡","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialSword":{"0":{"name":"Primordial Claymore","tr":"元始巨剑","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":1501}},"EnderIO:itemItemConduit":{"0":{"name":"Item Conduit","tr":"物品导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:roastedpumpkinseedsItem":{"0":{"oreDict":["foodRoastedpumpkinseeds"],"name":"Roasted Pumpkin Seeds","tr":"烤南瓜种子","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusPortableHole":{"0":{"name":"Wand Focus: Portable Hole","tr":"法杖核心:便携式洞穴","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodLongAbyssalAlloy":{"0":{"oreDict":["stickLongAbyssalAlloy"],"name":"长深渊合金杆","tr":"长深渊合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodMapFrame":{"0":{"name":"Bloodwood Map Frame","tr":"血树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Map Frame","tr":"黑暗树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Map Frame","tr":"桉树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Map Frame","tr":"熔融树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Map Frame","tr":"熔融树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Map Frame","tr":"车桑子树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Map Frame","tr":"枫树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Map Frame","tr":"紫檀树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Map Frame","tr":"红木地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Map Frame","tr":"银铃树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Map Frame","tr":"樱花树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Map Frame","tr":"核桃树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Map Frame","tr":"柳树地图框架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:mace.diamond":{"0":{"name":"Diamond Mace","tr":"钻石槌","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":3123}},"miscutils:itemDustZimbabweite":{"0":{"oreDict":["dustZimbabweite"],"name":"钛铌铅钠石粉","tr":"钛铌铅钠石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:schorching_pickaxe":{"0":{"name":"Scorching Pickaxe","tr":"灼热之镐","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":400}},"miscutils:crushedCentrifugedLafossaite":{"0":{"oreDict":["crushedCentrifugedLafossaite"],"name":"Centrifuged Crushed Lafossaite Ore","tr":"离心铊盐矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:crepitous":{"0":{"name":"Crepitous","tr":"爆破粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TungstenString":{"0":{"name":"Tungsten String","tr":"钨丝","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemCropSeed":{"0":{"name":"Pumpkin Seeds","tr":"南瓜种子","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemSpringNitinol60":{"0":{"oreDict":["springNitinol60"],"name":"镍钛诺60弹簧","tr":"镍钛诺60弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:alveary":{"0":{"name":"Alveary","tr":"蜂箱组","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Swarmer","tr":"Swarmer","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Alveary Fan","tr":"Alveary Fan","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Alveary Heater","tr":"Alveary Heater","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Alveary Hygroregulator","tr":"Alveary Hygroregulator","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Alveary Stabiliser","tr":"Alveary Stabiliser","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Alveary Sieve","tr":"Alveary Sieve","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernPickaxe":{"0":{"name":"Pickaxe of the Wyvern","tr":"双足飞龙镐","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"Automagy:crystalBrain":{"0":{"name":"Crystalline Brain: Air","tr":"水晶之脑:风","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Crystalline Brain: Fire","tr":"水晶之脑:火","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Crystalline Brain: Water","tr":"水晶之脑:水","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Crystalline Brain: Earth","tr":"水晶之脑:地","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Crystalline Brain: Order","tr":"水晶之脑:秩序","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Crystalline Brain: Entropy","tr":"水晶之脑:混沌","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:creativePlayerInterface":{"0":{"name":"Creative Player Interface","tr":"创造模式玩家接口","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleZirconium":{"0":{"oreDict":["plateDoubleZirconium"],"name":"双重锆板","tr":"双重锆板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:blockFrameGtEnergyCrystal":{"0":{"oreDict":["frameGtEnergyCrystal"],"name":"能量水晶框架","tr":"能量水晶框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockVisReader":{"0":{"name":"Vis Reader","tr":"要素读取器","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedcrushedCentrifuged":{"1":{"oreDict":["crushedCentrifugedBismutite"],"name":"离心泡铋矿石","tr":"离心泡铋矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["crushedCentrifugedBismuthinite"],"name":"离心辉铋矿石","tr":"离心辉铋矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["crushedCentrifugedFluor-Buergerite"],"name":"离心氟铁电气石矿石","tr":"离心氟铁电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["crushedCentrifugedRarestMetalResidue"],"name":"离心稀有金属渣矿石","tr":"离心稀有金属渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["crushedCentrifugedIridiumMetalResidue"],"name":"离心铱金属渣矿石","tr":"离心铱金属渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["crushedCentrifugedNaquadahOxideMixture"],"name":"离心氧化硅岩混合物矿石","tr":"离心氧化硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["crushedCentrifugedChromo-Alumino-Povondraite"],"name":"离心铬铝电气石矿石","tr":"离心铬铝电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["crushedCentrifugedVanadio-Oxy-Dravite"],"name":"离心钒镁电气石矿石","tr":"离心钒镁电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["crushedCentrifugedOlenite"],"name":"离心铝电气石矿石","tr":"离心铝电气石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["crushedCentrifugedArsenopyrite"],"name":"离心砷黄铁矿石","tr":"离心砷黄铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["crushedCentrifugedFerberite"],"name":"离心钨铁矿石","tr":"离心钨铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["crushedCentrifugedLoellingite"],"name":"离心斜方砷铁矿石","tr":"离心斜方砷铁矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["crushedCentrifugedRoquesite"],"name":"离心硫铟铜矿石","tr":"离心硫铟铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["crushedCentrifugedBornite"],"name":"离心斑铜矿石","tr":"离心斑铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["crushedCentrifugedWittichenite"],"name":"离心硫铋铜矿石","tr":"离心硫铋铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["crushedCentrifugedCrudeRhodiumMetal"],"name":"离心粗制铑金属矿石","tr":"离心粗制铑金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["crushedCentrifugedDjurleite"],"name":"离心久辉铜矿石","tr":"离心久辉铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["crushedCentrifugedHuebnerite"],"name":"离心钨酸锰矿石","tr":"离心钨酸锰矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["crushedCentrifugedThorianite"],"name":"离心方钍石矿石","tr":"离心方钍石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["crushedCentrifugedRedZircon"],"name":"离心红锆石矿石","tr":"离心红锆石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["crushedCentrifugedEnriched-NaquadahOxideMixture"],"name":"离心氧化富集硅岩混合物矿石","tr":"离心氧化富集硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["crushedCentrifugedFayalite"],"name":"离心铁橄榄石矿石","tr":"离心铁橄榄石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["crushedCentrifugedForsterite"],"name":"离心镁橄榄石矿石","tr":"离心镁橄榄石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["crushedCentrifugedNaquadriaOxideMixture"],"name":"离心氧化超能硅岩混合物矿石","tr":"离心氧化超能硅岩混合物矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["crushedCentrifugedHedenbergite"],"name":"离心钙铁辉石矿石","tr":"离心钙铁辉石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["crushedCentrifugedTiberium"],"name":"离心泰伯利亚矿石","tr":"离心泰伯利亚矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["crushedCentrifugedRedDescloizite"],"name":"离心红钒铅锌矿石","tr":"离心红钒铅锌矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["crushedCentrifugedOrangeDescloizite"],"name":"离心橙钒铅铜矿石","tr":"离心橙钒铅铜矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["crushedCentrifugedFluorspar"],"name":"离心氟石矿石","tr":"离心氟石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["crushedCentrifugedGreenFuchsite"],"name":"离心绿铬云母矿石","tr":"离心绿铬云母矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["crushedCentrifugedRedFuchsite"],"name":"离心红铬云母矿石","tr":"离心红铬云母矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["crushedCentrifugedAtheneite"],"name":"离心砷汞钯矿石","tr":"离心砷汞钯矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["crushedCentrifugedTemagamite"],"name":"离心碲汞钯矿石","tr":"离心碲汞钯矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["crushedCentrifugedTerlinguaite"],"name":"离心黄氯汞矿石","tr":"离心黄氯汞矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["crushedCentrifugedPrasiolite"],"name":"离心堇云石矿石","tr":"离心堇云石矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["crushedCentrifugedOrundum"],"name":"离心合成玉矿石","tr":"离心合成玉矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["crushedCentrifugedBArTiMaEuSNeK"],"name":"离心BArTiMaEuSNeK矿石","tr":"离心BArTiMaEuSNeK矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["crushedCentrifugedPlatinumMetallicPowder"],"name":"离心铂金属矿石","tr":"离心铂金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["crushedCentrifugedPalladiumMetallicPowder"],"name":"离心钯金属矿石","tr":"离心钯金属矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["crushedCentrifugedLeachResidue"],"name":"离心浸出渣矿石","tr":"离心浸出渣矿石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:steamedpeasItem":{"0":{"oreDict":["foodSteamedpeas"],"name":"Steamed Peas","tr":"清蒸豌豆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.chainBlock":{"0":{"name":"Block and Chain","tr":"链球","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":100}},"miscutils:itemDustBerylliumHydroxide":{"0":{"oreDict":["dustBerylliumHydroxide"],"name":"氢氧化铍粉","tr":"氢氧化铍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockLithium7":{"0":{"oreDict":["blockLithium7"],"name":"锂-7块","tr":"锂-7块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:controller":{"0":{"name":"Drawer Controller","tr":"抽屉管理器","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:Anthracene":{"0":{"oreDict":["cellAnthracene"],"name":"蒽单元","tr":"蒽单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewMaragingSteel350":{"0":{"oreDict":["screwMaragingSteel350"],"name":"马氏体时效钢350螺丝","tr":"马氏体时效钢350螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseHastelloyC276":{"0":{"oreDict":["plateDenseHastelloyC276"],"name":"致密哈斯特洛依合金-C276板","tr":"致密哈斯特洛依合金-C276板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:part_fluid_storage_monitor":{"0":{"name":"ME Fluid Storage Monitor","tr":"ME流体存储监控器","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorPlatingHeat":{"0":{"name":"Heat-Capacity Reactor Plating","tr":"高热容反应堆隔板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHG1223":{"0":{"oreDict":["nuggetHG1223"],"name":"HG-1223粒","tr":"HG-1223粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngineeringProcessorItemDiamondCore":{"0":{"name":"Item Processor Tier II","tr":"物品处理器 II","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockEnchanter":{"0":{"name":"Enchanter","tr":"附魔器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sweetpotatoseedItem":{"0":{"oreDict":["listAllseed"," seedSweetpotato"],"name":"Sweet Potato Seed","tr":"红薯种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockAlchemyFurnace":{"0":{"name":"Advanced Alchemical Furnace","tr":"荒古炼金炉","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.airLockFrame":{"0":{"name":"Air Lock Frame","tr":"气密框架","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Air Lock Controller","tr":"气闸控制器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.ChiseledQuartzStairBlock":{"0":{"name":"Chiseled Certus Quartz Stairs","tr":"錾制赛特斯石英楼梯","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeLogisticsChassiMk2":{"0":{"name":"Logistics Chassis Mk2","tr":"物流底盘Mk2","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaLogEucalyptus":{"0":{"name":"Crated Eucalyptus Wood","tr":"装箱的桉树原木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeLogisticsChassiMk1":{"0":{"name":"Logistics Chassis Mk1","tr":"物流底盘Mk1","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeLogisticsChassiMk4":{"0":{"name":"Logistics Chassis Mk4","tr":"物流底盘Mk4","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:factory2":{"0":{"name":"Thermionic Fabricator","tr":"热电子加工台","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Raintank","tr":"集雨蓄水槽","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Worktable","tr":"工作台","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeLogisticsChassiMk3":{"0":{"name":"Logistics Chassis Mk3","tr":"物流底盘Mk3","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockPromethium":{"0":{"oreDict":["blockPromethium"],"name":"钷块","tr":"钷块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LargeFuelCanister":{"0":{"name":"Large Fuel Canister","tr":"大型燃料罐","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTantalloy60":{"0":{"oreDict":["ringTantalloy60"],"name":"钽钨合金-60环","tr":"钽钨合金-60环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cautionTape":{"0":{"name":"Caution Tape","tr":"警示胶带","tab":"栈桥","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTantalloy61":{"0":{"oreDict":["ringTantalloy61"],"name":"钽钨合金-61环","tr":"钽钨合金-61环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeLogisticsChassiMk5":{"0":{"name":"Logistics Chassis Mk5","tr":"物流底盘Mk5","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:mundanePowerCatalyst":{"0":{"name":"Mundane Power Catalyst","tr":"[平凡的]功率催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:Replicator":{"0":{"name":"Genetic Replicator","tr":"基因复制机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:nutellaItem":{"0":{"oreDict":["foodNutella"],"name":"Nutella","tr":"能多益巧克力酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:buckethollowtears":{"0":{"name":"Hollow Tears Bucket","tr":"虚伪泪水桶","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:liquid.slime":{"0":{"name":"Liquified Slime","tr":"液态史莱姆","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.spaceStationBase":{"0":{"name":"Space Station arrival block","tr":"空间站到达方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:HoverHarness":{"0":{"name":"Thaumostatic Harness","tr":"奥法缰绳","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"dreamcraft:item.WetTofu":{"0":{"name":"Wet Tofu","tr":"湿豆腐","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioMapFrames":{"0":{"name":"Oak Map Frame","tr":"橡木地图框架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Map Frame","tr":"云杉地图框架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Map Frame","tr":"桦木地图框架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Map Frame","tr":"丛林木地图框架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Map Frame","tr":"金合欢地图框架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Map Frame","tr":"深色橡木地图框架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Map Frame","tr":"镶框地图框架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:Natura.netherfood":{"0":{"name":"Potash Apple","tr":"富钾苹果","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersHatch":{"0":{"name":"Carpenter\u0027s Hatch","tr":"木匠活板门","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:logisticsSolidBlock":{"0":{"name":"Soldering Station","tr":"物流焊接台","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Logistics Power Junction","tr":"物流能量中枢","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Logistics Security Station","tr":"物流安全站","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Logistics Crafting Table","tr":"物流合成桌","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Logistics Fuzzy Crafting Table","tr":"物流模糊合成桌","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Logistics Statistics Table","tr":"物流统计桌","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Logistics RF Power Provider","tr":"物流RF能量供应器","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Logistics EU Power Provider","tr":"物流EU能量供应器","tab":"物流管道","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:bellows":{"0":{"name":"Manatide Bellows","tr":"魔源风箱","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_part":{"0":{"name":"§61k§r ME Fluid Storage Component","tr":"§61k§r-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"§e4k§r ME Fluid Storage Component","tr":"§e4k§r-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"§a16k§r ME Fluid Storage Component","tr":"§a16k§r-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"§b64k§r ME Fluid Storage Component","tr":"§b64k§r-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"§9256k§r ME Fluid Storage Component","tr":"§9256k§r-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"§d1024k§r ME Fluid Storage Component","tr":"§d1024k§r-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"§c4096k§r ME Fluid Storage Component","tr":"§c4096k§r-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"§516384k§r ME Fluid Storage Component","tr":"16384k-ME流体存储组件","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongTantalumCarbide":{"0":{"oreDict":["stickLongTantalumCarbide"],"name":"长碳化钽杆","tr":"长碳化钽杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:tinyPotato":{"0":{"name":"Tiny Potato","tr":"小土豆","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoonStoneDust":{"0":{"oreDict":["dustSpace"," dustMoonStone"," dustMoon"],"name":"Moon Stone Dust","tr":"月尘","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.logisticsItemCard":{"0":{"name":"Logistics Item Card","tr":"物流物品卡片","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_brick":{"0":{"oreDict":["bricksClay"," bricksClayBlack"],"name":"Colored Bricks (White Frequency)","tr":"染色 砖块 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["bricksClay"," bricksClayRed"],"name":"Colored Bricks (Orange Frequency)","tr":"染色 砖块 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["bricksClay"," bricksClayGreen"],"name":"Colored Bricks (Magenta Frequency)","tr":"染色 砖块 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["bricksClay"," bricksClayBrown"],"name":"Colored Bricks (Light Blue Frequency)","tr":"染色 砖块 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["bricksClay"," bricksClayBlue"],"name":"Colored Bricks (Yellow Frequency)","tr":"染色 砖块 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["bricksClay"," bricksClayPurple"],"name":"Colored Bricks (Lime Frequency)","tr":"染色 砖块 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["bricksClay"," bricksClayCyan"],"name":"Colored Bricks (Pink Frequency)","tr":"染色 砖块 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["bricksClay"," bricksClayLightGray"],"name":"Colored Bricks (Gray Frequency)","tr":"染色 砖块 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["bricksClay"," bricksClayGray"],"name":"Colored Bricks (Light Gray Frequency)","tr":"染色 砖块 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["bricksClay"," bricksClayPink"],"name":"Colored Bricks (Cyan Frequency)","tr":"染色 砖块 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["bricksClayLime"," bricksClay"],"name":"Colored Bricks (Purple Frequency)","tr":"染色 砖块 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["bricksClayYellow"," bricksClay"],"name":"Colored Bricks (Blue Frequency)","tr":"染色 砖块 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["bricksClayLightBlue"," bricksClay"],"name":"Colored Bricks (Brown Frequency)","tr":"染色 砖块 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["bricksClayMagenta"," bricksClay"],"name":"Colored Bricks (Green Frequency)","tr":"染色 砖块 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["bricksClayOrange"," bricksClay"],"name":"Colored Bricks (Red Frequency)","tr":"染色 砖块 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["bricksClay"," bricksClayWhite"],"name":"Colored Bricks (Black Frequency)","tr":"染色 砖块 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedFluorcaphite":{"0":{"oreDict":["crushedFluorcaphite"],"name":"Crushed Fluorcaphite Ore","tr":"粉碎的氟碳铈矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:swordAmethyst":{"0":{"name":"Amethyst Sword","tr":"紫水晶剑","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":2014}},"DraconicEvolution:chaoticCore":{"0":{"name":"Chaotic Core","tr":"混沌核心","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rawAtomicSeparationCatalyst":{"0":{"name":"Raw Atomic Separation Catalyst","tr":"粗制原子分离催化剂","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNetherrack":{"0":{"name":"Crated Netherrack","tr":"装箱的地狱岩","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement0Stairs":{"0":{"name":"White Portuguese Pavement Stairs","tr":"白色葡萄牙楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPaperbark":{"0":{"oreDict":["logWood"],"name":"Paperbark Wood","tr":"白千层木","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockFluidPure":{"0":{"name":"Purifying Fluid","tr":"净化之水","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightlyAxe":{"0":{"name":"Knightly Axe","tr":"骑士斧","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"TConstruct:CraftedSoil":{"0":{"name":"Slimy Mud","tr":"黏滑泥泞","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Grout","tr":"水泥","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Slimy Mud","tr":"黏滑蓝泥泞","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Graveyard Soil","tr":"黄泉土","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Consecrated Soil","tr":"神圣土","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Blue Slimedirt","tr":"蓝史莱姆泥土","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Slime Soil","tr":"史莱姆土","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.SolarFlares":{"0":{"name":"Solar Flares Part","tr":"太阳风扇部件","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Solar Flares","tr":"太阳风扇","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersBop:fullDrawers4":{"0":{"oreDict":["drawerBasic"],"name":"Sacred Oak Drawers 2x2","tr":"神圣橡树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Cherry Drawers 2x2","tr":"樱花树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Dark Drawers 2x2","tr":"黑暗树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Fir Drawers 2x2","tr":"杉木抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Ethereal Drawers 2x2","tr":"天域树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Magic Drawers 2x2","tr":"魔法树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Mangrove Drawers 2x2","tr":"红树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Palm Drawers 2x2","tr":"棕榈树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Redwood Drawers 2x2","tr":"红木抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Willow Drawers 2x2","tr":"柳树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Pine Drawers 2x2","tr":"松树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Hell Bark Drawers 2x2","tr":"地狱皮树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Jacaranda Drawers 2x2","tr":"蓝花楹树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Mahogany Drawers 2x2","tr":"桃花心树抽屉(2x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockQuartzPillar":{"0":{"name":"Certus Quartz Pillar","tr":"赛特斯竖纹石英块","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:ElectricScribingTools":{"400":{"name":"Electric Scribing Tools","tr":"电子笔与墨","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":401},"1":{"name":"Electric Scribing Tools","tr":"电子笔与墨","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":401}},"StorageDrawersBop:fullDrawers1":{"0":{"oreDict":["drawerBasic"],"name":"Sacred Oak Drawer","tr":"神圣橡树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Cherry Drawer","tr":"樱花树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Dark Drawer","tr":"黑暗树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Fir Drawer","tr":"杉木抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Ethereal Drawer","tr":"天域树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Magic Drawer","tr":"魔法树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Mangrove Drawer","tr":"红树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Palm Drawer","tr":"棕榈树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Redwood Drawer","tr":"红木抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Willow Drawer","tr":"柳树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Pine Drawer","tr":"松树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Hell Bark Drawer","tr":"地狱皮树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Jacaranda Drawer","tr":"蓝花楹树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Mahogany Drawer","tr":"桃花心树抽屉","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableInputName":{"0":{"name":"Redstone Receiver","tr":"红石信号接收器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseIodine":{"0":{"oreDict":["plateDenseIodine"],"name":"致密碘板","tr":"致密碘板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersBop:fullDrawers2":{"0":{"oreDict":["drawerBasic"],"name":"Sacred Oak Drawers 1x2","tr":"神圣橡树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Cherry Drawers 1x2","tr":"樱花树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Dark Drawers 1x2","tr":"黑暗树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Fir Drawers 1x2","tr":"杉木抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Ethereal Drawers 1x2","tr":"天域树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Magic Drawers 1x2","tr":"魔法树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["drawerBasic"],"name":"Mangrove Drawers 1x2","tr":"红树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["drawerBasic"],"name":"Palm Drawers 1x2","tr":"棕榈树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["drawerBasic"],"name":"Redwood Drawers 1x2","tr":"红木抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["drawerBasic"],"name":"Willow Drawers 1x2","tr":"柳树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["drawerBasic"],"name":"Pine Drawers 1x2","tr":"松树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["drawerBasic"],"name":"Hell Bark Drawers 1x2","tr":"地狱皮树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["drawerBasic"],"name":"Jacaranda Drawers 1x2","tr":"蓝花楹树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["drawerBasic"],"name":"Mahogany Drawers 1x2","tr":"桃花心树抽屉(1x2)","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemBasicFilterUpgrade":{"0":{"name":"Basic Item Filter","tr":"基础物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Advanced Item Filter","tr":"高级物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.transformPowder":{"0":{"name":"Transformation Powder","tr":"转换粉","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalGemExquisite":{"0":{"name":"Exquisite Probable Crystal","tr":"精致的神秘水晶","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:customBrick3Slab":{"0":{"name":"Roof Tile Slab","tr":"瓦块台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:xpdrain":{"0":{"name":"XP Drain","tr":"经验地漏","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.plasmaaxe":{"0":{"name":"Plasma Axe","tr":"等离子斧","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101}},"Forestry:minerBagT2":{"0":{"name":"Miner\u0027s Woven Backpack","tr":"采矿者编织背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"malisisdoors:item.jail_door":{"0":{"name":"Jail Door","tr":"监狱门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"gendustry:MutatronAdv":{"0":{"name":"Advanced Mutatron","tr":"高级诱变机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAgarditeLa":{"0":{"oreDict":["dustSmallAgarditeLa"],"name":"小堆钇砷铜矿(La)粉","tr":"小堆钇砷铜矿(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:wireless_interface_terminal":{"0":{"name":"Wireless Interface Terminal","tr":"ME无线接口终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":33}},"GalacticraftAmunRa:item.raygun":{"0":{"name":"Blaster","tr":"爆破枪","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Blaster","tr":"爆破枪","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101}},"harvestcraft:potItem":{"0":{"oreDict":["toolPot"],"name":"Pot","tr":"罐","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:voidstone":{"0":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Voidstone","tr":"虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Energy:bucketOil":{"0":{"name":"Oil Bucket","tr":"石油桶","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:stone10Slab":{"0":{"name":"Diorite Brick Slab","tr":"闪长岩砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryMead":{"0":{"name":"Mead Capsule","tr":"蜂蜜陈酿胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotMaragingSteel250":{"0":{"oreDict":["ingotMaragingSteel250"],"name":"马氏体时效钢250锭","tr":"马氏体时效钢250锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellNaquadahFuel":{"0":{"oreDict":["cellNaquadahFuel"],"name":"硅岩燃料单元","tr":"硅岩燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:glass_shard":{"0":{"name":"Glass Shard","tr":"玻璃碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:snapperrawItem":{"0":{"oreDict":["listAllfishraw"," foodSnapperraw"],"name":"Raw Snapper","tr":"生鲷鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:queenbeeItem":{"0":{"oreDict":["beeQueen"],"name":"Queen Bee","tr":"蜂后","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":19},"18":{"name":"Queen Bee","tr":"蜂后","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":19}},"DraconicEvolution:teleporterStand":{"0":{"name":"Dislocator Pedestal","tr":"错位宝石底座","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:advancedItemCollector":{"0":{"name":"Advanced Item Collector","tr":"高级物品收集器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:preciseUnitCasing":{"0":{"name":"Precise Electronic Unit Casing MK-I","tr":"精密电子单元机械方块 MK-I","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Precise Electronic Unit Casing MK-II","tr":"精密电子单元机械方块 MK-II","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Precise Electronic Unit Casing MK-III","tr":"精密电子单元机械方块 MK-III","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:brightNitor":{"0":{"name":"Hyperenergetic Nitor","tr":"超能闪耀之光","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneB2Stairs":{"0":{"name":"Metamorphic Mountain Stone Brick Stairs","tr":"变质高山石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewMaragingSteel300":{"0":{"oreDict":["screwMaragingSteel300"],"name":"马氏体时效钢300螺丝","tr":"马氏体时效钢300螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TMechworks:MeshFilter":{"0":{"name":"Empty Mesh Filter","tr":"无网滤清器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Wide Mesh Filter","tr":"宽松滤清器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Slat Mesh Filter","tr":"条形滤清器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Mesh Filter","tr":"网式滤清器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fine Mesh Filter","tr":"精细网式滤清器","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Infinity_Chest":{"0":{"name":"Infinity Breastplate","tr":"无尽胸甲","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":159985}},"GalacticraftMars:item.titanium_shovel":{"0":{"name":"Titanium Shovel","tr":"钛铲","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":521}},"harvestcraft:orangesmoothieItem":{"0":{"oreDict":["foodOrangesmoothie"," listAllsmoothie"],"name":"Orange Smoothie","tr":"橙子冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellSeleniumHexafluoride":{"0":{"oreDict":["cellSeleniumHexafluoride"],"name":"六氟化硒单元","tr":"六氟化硒单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockEldritch":{"4":{"name":"Glowing Crusted Stone","tr":"发光荒古石头","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LedoxDust":{"0":{"oreDict":["dustLedox"],"name":"Ledox Dust","tr":"深铅粉","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartSignHead":{"1536":{"name":"精金 Sign Head","tr":"精金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Sign Head","tr":"神秘蓝金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Sign Head","tr":"琥珀 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Sign Head","tr":"纯镃 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Sign Head","tr":"谐镃 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Sign Head","tr":"聚氯乙烯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Sign Head","tr":"永恒 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Sign Head","tr":"磁物质 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Sign Head","tr":"赛特斯石英 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Sign Head","tr":"暗影秘银 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Sign Head","tr":"玄铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Sign Head","tr":"戴斯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Sign Head","tr":"铿铀 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Sign Head","tr":"通流琥珀金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Sign Head","tr":"末影粗胚 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Sign Head","tr":"末影(te) 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Sign Head","tr":"炽热的钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Sign Head","tr":"火石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Sign Head","tr":"力量 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Sign Head","tr":"石墨 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Sign Head","tr":"石墨烯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Sign Head","tr":"注魔金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Sign Head","tr":"风之魔晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Sign Head","tr":"火之魔晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Sign Head","tr":"地之魔晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Sign Head","tr":"水之魔晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Sign Head","tr":"混沌魔晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Sign Head","tr":"秩序魔晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Sign Head","tr":"玉 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Sign Head","tr":"碧玉 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Sign Head","tr":"陨铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Sign Head","tr":"陨钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Sign Head","tr":"硅岩 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Sign Head","tr":"硅岩合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Sign Head","tr":"富集硅岩 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Sign Head","tr":"超能硅岩 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Sign Head","tr":"下界石英 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Sign Head","tr":"下界之星 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Sign Head","tr":"三钛 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Sign Head","tr":"虚空 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Sign Head","tr":"胶木 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Sign Head","tr":"幽冥剧毒结晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Sign Head","tr":"强化 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Sign Head","tr":"铱锇合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Sign Head","tr":"阳光化合物 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Sign Head","tr":"魂金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Sign Head","tr":"蓝黄玉 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Sign Head","tr":"黄铜 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Sign Head","tr":"白铜 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Sign Head","tr":"深渊铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Sign Head","tr":"钻石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Sign Head","tr":"琥珀金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Sign Head","tr":"绿宝石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Sign Head","tr":"强化混合晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Sign Head","tr":"混合晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Sign Head","tr":"绿色蓝宝石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Sign Head","tr":"殷钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Sign Head","tr":"坎塔尔合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Sign Head","tr":"镁铝合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Sign Head","tr":"镍铬合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Sign Head","tr":"玄钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Sign Head","tr":"生铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Sign Head","tr":"聚乙烯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Sign Head","tr":"环氧树脂 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Sign Head","tr":"硅橡胶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Sign Head","tr":"聚己内酰胺 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Sign Head","tr":"聚四氟乙烯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Sign Head","tr":"蓝宝石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Sign Head","tr":"不锈钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Sign Head","tr":"坦桑石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Sign Head","tr":"锡铁合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Sign Head","tr":"黄玉 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Sign Head","tr":"哈氏合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Sign Head","tr":"锻铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Sign Head","tr":"铁木 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Sign Head","tr":"橄榄石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Sign Head","tr":"蛋白石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Sign Head","tr":"紫水晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Sign Head","tr":"暗影金属 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Sign Head","tr":"暗影铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Sign Head","tr":"暗影钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Sign Head","tr":"钢叶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Sign Head","tr":"骑士金属 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Sign Head","tr":"标准纯银 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Sign Head","tr":"玫瑰金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Sign Head","tr":"黑青铜 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Sign Head","tr":"铋青铜 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Sign Head","tr":"黑钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Sign Head","tr":"红钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Sign Head","tr":"蓝钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Sign Head","tr":"大马士革钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Sign Head","tr":"充能合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Sign Head","tr":"脉冲合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Sign Head","tr":"星辰银 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Sign Head","tr":"钴黄铜 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Sign Head","tr":"红石榴石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Sign Head","tr":"黄石榴石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Sign Head","tr":"温特姆 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Sign Head","tr":"黑花岗岩 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Sign Head","tr":"红花岗岩 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Sign Head","tr":"白石棉 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Sign Head","tr":"雄黄 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Sign Head","tr":"磁化铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Sign Head","tr":"磁化钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Sign Head","tr":"磁化钕 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Sign Head","tr":"碳化钨 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Sign Head","tr":"钒钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Sign Head","tr":"高速钢-G 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Sign Head","tr":"高速钢-E 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Sign Head","tr":"高速钢-S 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Sign Head","tr":"深铅 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Sign Head","tr":"量子 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Sign Head","tr":"深空秘银 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Sign Head","tr":"黑钚 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Sign Head","tr":"木卫四冰 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Sign Head","tr":"硬铝 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Sign Head","tr":"奥利哈钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Sign Head","tr":"三元金属 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Sign Head","tr":"聚苯硫醚 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Sign Head","tr":"聚苯乙烯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Sign Head","tr":"丁苯橡胶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Sign Head","tr":"镍锌铁氧体 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Sign Head","tr":"纤维强化的环氧树脂 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Sign Head","tr":"磁化钐 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Sign Head","tr":"无尽催化剂 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Sign Head","tr":"聚苯并咪唑 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Sign Head","tr":" 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Sign Head","tr":"钛铂钒合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Sign Head","tr":"时空 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Sign Head","tr":"大理石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Sign Head","tr":"神秘水晶 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Sign Head","tr":"末影钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Sign Head","tr":"复合粘土 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Sign Head","tr":"晶化合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Sign Head","tr":"旋律合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Sign Head","tr":"恒星合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Sign Head","tr":"晶化粉红史莱姆 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Sign Head","tr":"充能银 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Sign Head","tr":"生动合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Sign Head","tr":"灵宝 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Sign Head","tr":"超时空金属 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Sign Head","tr":"活石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Sign Head","tr":"盖亚之魂 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Sign Head","tr":"活木 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Sign Head","tr":"梦之木 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Sign Head","tr":"泡铋 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Sign Head","tr":"立方氧化锆 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Sign Head","tr":"氟铁电气石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Sign Head","tr":"铬铝电气石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Sign Head","tr":"钒镁电气石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Sign Head","tr":"铝电气石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Sign Head","tr":"红锆石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Sign Head","tr":"铁橄榄石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Sign Head","tr":"镁橄榄石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Sign Head","tr":"钙铁辉石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Sign Head","tr":"钍-232 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Sign Head","tr":"堇云石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Sign Head","tr":"磁共振石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Sign Head","tr":"锎 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Sign Head","tr":"BArTiMaEuSNeK 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Sign Head","tr":"钌 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Sign Head","tr":"铑 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Sign Head","tr":"镀铑钯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Sign Head","tr":"泰伯利亚 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Sign Head","tr":"钌铱合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Sign Head","tr":"氟石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Sign Head","tr":"高耐久性复合钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Sign Head","tr":"硬钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Sign Head","tr":"合成玉 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Sign Head","tr":"原子分离催化剂 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Sign Head","tr":"极不稳定硅岩 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Sign Head","tr":"锌钍合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Sign Head","tr":"锆锡合金-4 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Sign Head","tr":"锆锡合金-2 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Sign Head","tr":"耐热铬铁合金-903 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Sign Head","tr":"精金合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Sign Head","tr":"MAR-M200特种钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Sign Head","tr":"MAR-Ce-M200特种钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Sign Head","tr":"氯化锂 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Sign Head","tr":"信素 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Sign Head","tr":"流明 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Sign Head","tr":"阿瑟锡 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Sign Head","tr":"钛钼合金β-C 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Sign Head","tr":"大力合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Sign Head","tr":"光素 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Sign Head","tr":"对立合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Sign Head","tr":"稀有金属合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Sign Head","tr":"富集硅岩合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Sign Head","tr":"亚稳态鿫 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Sign Head","tr":"调律源金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Sign Head","tr":"魔钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Sign Head","tr":"泰拉钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Sign Head","tr":"源质钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Sign Head","tr":"磁流体约束恒星物质 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Sign Head","tr":"白矮星物质 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Sign Head","tr":"黑矮星物质 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Sign Head","tr":"宇宙素 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Sign Head","tr":"铝 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Sign Head","tr":"铍 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Sign Head","tr":"铋 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Sign Head","tr":"碳 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Sign Head","tr":"铬 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Sign Head","tr":"金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Sign Head","tr":"铱 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Sign Head","tr":"铅 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Sign Head","tr":"锰 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Sign Head","tr":"钼 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Sign Head","tr":"钕 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Sign Head","tr":"中子 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Sign Head","tr":"镍 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Sign Head","tr":"锇 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Sign Head","tr":"钯 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Sign Head","tr":"铂 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Sign Head","tr":"钚-239 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Sign Head","tr":"钚-241 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Sign Head","tr":"银 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Sign Head","tr":"钍 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Sign Head","tr":"钛 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Sign Head","tr":"钨 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Sign Head","tr":"铀-238 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Sign Head","tr":"铀-235 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Sign Head","tr":"红宝石 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Sign Head","tr":"红石合金 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Sign Head","tr":"终末 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Sign Head","tr":"导电铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Sign Head","tr":"磁钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Sign Head","tr":"钨钢 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Sign Head","tr":"烈焰 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Sign Head","tr":"脉冲铁 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Sign Head","tr":"龙 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Sign Head","tr":"觉醒龙 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Sign Head","tr":"褐铜 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Sign Head","tr":"山铜 牌板","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Avaritia:Infinity_Helm":{"0":{"name":"Infinity Helmet","tr":"无尽头盔","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":109990}},"miscutils:crushedCentrifugedFluoriteF":{"0":{"oreDict":["crushedCentrifugedFluoriteF"],"name":"Centrifuged Crushed Fluorite (F) Ore","tr":"离心氟石(F)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellOctiron":{"0":{"oreDict":["cellOctiron"],"name":"八角铁单元","tr":"八角铁单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawLapotronCrystal":{"0":{"name":"Raw Lapotron Crystal","tr":"兰波顿水晶粗胚","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTeflon":{"0":{"oreDict":["dustTinyTeflon"],"name":"小撮特氟龙粉","tr":"小撮特氟龙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockBloodSteel":{"0":{"oreDict":["blockBloodSteel"],"name":"血钢块","tr":"血钢块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:frypan":{"0":{"name":"§f猪的克星","tr":"§f猪的克星","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:biomeStoneB6Stairs":{"0":{"name":"Metamorphic Taiga Stone Brick Stairs","tr":"变质雪原石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.CompressedCoal":{"0":{"name":"Compressed Coal","tr":"致密煤炭板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:wireless_fluid_pattern_terminal":{"0":{"name":"Wireless Fluid Pattern Terminal","tr":"ME无线流体样板终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":33}},"TConstruct:fletching":{"0":{"name":"Feather Fletching","tr":"羽毛箭羽","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Leaf Fletching","tr":"树叶箭羽","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Slime Fletching","tr":"史莱姆箭羽","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Slime Fletching","tr":"蓝史莱姆箭羽","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Slimeleaf Fletching","tr":"史莱姆树叶箭羽","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.FieryBloodDrop":{"0":{"name":"Fiery Blood Drop","tr":"炽热的血液滴","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:pineoil":{"0":{"oreDict":["cellPineOil"],"name":"松油单元","tr":"松油单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.detector":{"0":{"name":"Detector - Digital","tr":"矿车传感器 - 数字化","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:limestone_slab_top":{"0":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.enderIO.singularity":{"0":{"name":"Conductive Iron Singularity","tr":"导电铁奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Electrical Steel Singularity","tr":"磁钢奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Energetic Alloy Singularity","tr":"充能合金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Dark Steel Singularity","tr":"玄钢奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Pulsating Iron Singularity","tr":"脉冲铁奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Redstone Alloy Singularity","tr":"红石合金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Soularium Singularity","tr":"魂金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Vibrant Alloy Singularity","tr":"脉冲合金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.aluminumWire":{"0":{"name":"Aluminum Wire","tr":"铝线","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Heavy Aluminum Wire","tr":"重质铝线","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:bucketJuice":{"0":{"name":"Juice Bucket","tr":"果汁桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:tile.BronzePlatedReinforcedStone":{"0":{"name":"Bronze Plated Reinforced Stone","tr":"青铜镀层防爆石","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.OreQuartz":{"0":{"oreDict":["oreCertusQuartz"],"name":"Certus Quartz Ore","tr":"赛特斯石英矿石","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBerrySky":{"0":{"name":"Crated Skyberry","tr":"装箱的天莓","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtBotmium":{"0":{"oreDict":["frameGtBotmium"],"name":"博特姆合金框架","tr":"博特姆合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:redStringFertilizer":{"0":{"name":"Red Stringed Nutrifier","tr":"红线施肥器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorMOXDual":{"1":{"name":"Dual Fuel Rod (MOX)","tr":"双联燃料棒(MOX)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":10001}},"BiblioCraft:BiblioSwordPedestal":{"0":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Sword Pedestal","tr":"剑座","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Translocator:craftingGrid":{"0":{"name":"Crafting Grid","tr":"合成格","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHypogen":{"0":{"oreDict":["plateDoubleHypogen"],"name":"双重海珀珍板","tr":"双重海珀珍板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"cb4bq:BlockHSB":{"0":{"name":"Hardcore Switch Block","tr":"极限模式开关","tab":"更好的任务","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTantalumCarbide":{"0":{"oreDict":["dustTantalumCarbide"],"name":"碳化钽粉","tr":"碳化钽粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAgarditeNd":{"0":{"oreDict":["dustSmallAgarditeNd"],"name":"小堆钇砷铜矿(Nd)粉","tr":"小堆钇砷铜矿(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"structurelib:blockhint":{"0":{"name":"Hint 1 dot","tr":"提示方块:1号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hint 2 dots","tr":"提示方块:2号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hint 3 dots","tr":"提示方块:3号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Hint 4 dots","tr":"提示方块:4号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hint 5 dots","tr":"提示方块:5号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hint 6 dots","tr":"提示方块:6号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Hint 7 dots","tr":"提示方块:7号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hint 8 dots","tr":"提示方块:8号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hint 9 dots","tr":"提示方块:9号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Hint 10 dots","tr":"提示方块:10号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Hint 11 dots","tr":"提示方块:11号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Hint 12 dots","tr":"提示方块:12号","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Hint general","tr":"提示方块:一般","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Hint air","tr":"提示方块:空气","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Hint no air","tr":"提示方块:非空气","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Hint error","tr":"提示方块:错误","tab":"结构库","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHypogen":{"0":{"oreDict":["ingotHypogen"],"name":"海珀珍锭","tr":"海珀珍锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockTorchInversion":{"0":{"name":"Redstone Inversion Torch","tr":"红石转换火把","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:infusedGrain":{"0":{"name":"Imbued Grain","tr":"蕴魔谷物","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Imbued Grain","tr":"蕴魔谷物","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Imbued Grain","tr":"蕴魔谷物","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Imbued Grain","tr":"蕴魔谷物","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.lairBlock":{"0":{"name":"Lair ⓪","tr":"Lair ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lair ①","tr":"Lair ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lair ②","tr":"Lair ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lair ③","tr":"Lair ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Lair ④","tr":"Lair ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lair ⑤","tr":"Lair ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Lair ⑥","tr":"Lair ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Lair ⑦","tr":"Lair ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Lair ⑧","tr":"Lair ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Lair ⑨","tr":"Lair ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lair ⑩","tr":"Lair ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Lair ⑪","tr":"Lair ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Lair ⑫","tr":"Lair ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Lair ⑬","tr":"Lair ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Lair ⑭","tr":"Lair ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Lair ⑮","tr":"Lair ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsstone":{"0":{"name":"Stone Fluid Pipe","tr":"石头流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:slab":{"0":{"name":"Sandy Brick Slab","tr":"沙岩砖台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Infernal Brick Slab","tr":"地狱砖台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Concrete Slab","tr":"混凝土台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Snow Slab","tr":"雪台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ice Slab","tr":"冰台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Packed Ice Slab","tr":"蓝冰台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Iron Slab","tr":"铁台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gold Slab","tr":"金台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Diamond Slab","tr":"钻石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Frost Bound Brick Slab","tr":"霜冻砖块台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Quarried Brick Slab","tr":"采掘砖台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Bleached Bone Brick Slab","tr":"白骨砖台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Blood Stained Brick Slab","tr":"污血砖台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Abyssal Brick Slab","tr":"深渊砖台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fitted Sandy Stone Slab","tr":"匀称沙岩台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fitted Infernal Stone Slab","tr":"匀称地狱砖台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Fitted Frost Bound Stone Slab","tr":"匀称霜冻台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Fitted Quarried Stone Slab","tr":"匀称采掘台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Fitted Bleached Bone Stone Slab","tr":"均称白骨台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Fitted Blood Stained Stone Slab","tr":"均称污血台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"Fitted Abyssal Stone Slab","tr":"均称深渊台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"Fitted Nether Stone Slab","tr":"匀称下界台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"Sandy Block Slab","tr":"沙岩台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"Infernal Block Slab","tr":"地狱台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"Frost Bound Block Slab","tr":"霜冻台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"Quarried Block Slab","tr":"采掘台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"Bleached Bone Block Slab","tr":"白骨台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"Blood Stained Block Slab","tr":"污血台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"Abyssal Block Slab","tr":"深渊台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"name":"Nether Block Slab","tr":"下界方块台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"Sandy Cobble Slab","tr":"沙岩圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"Infernal Cobble Slab","tr":"地狱圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"Frost Bound Cobble Slab","tr":"霜冻圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"Quarried Cobble Slab","tr":"采掘圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"Bleached Bone Cobble Slab","tr":"白骨圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"name":"Blood Stained Cobble Slab","tr":"污血圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"name":"Abyssal Cobble Slab","tr":"深渊圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"name":"Nether Cobble Slab","tr":"下界圆石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"name":"Creosote Block Slab","tr":"杂酚油方块台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"name":"Obsidian Slab","tr":"黑曜石台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"name":"Copper Slab","tr":"铜台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"41":{"name":"Tin Slab","tr":"锡台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"42":{"name":"Lead Slab","tr":"铅台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"name":"Steel Slab","tr":"钢台阶","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:slabsFireproof":{"0":{"oreDict":["LarchSlabs"," slabWood"],"name":"Larch Wood Slab (Fireproof)","tr":"抗燃落叶树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"," TeakSlab"],"name":"Teak Wood Slab (Fireproof)","tr":"抗燃柚树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabWood"," AcaciaSlab"],"name":"Desert Acacia Wood Slab (Fireproof)","tr":"抗燃沙漠刺槐台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabWood"," LimeSlabs"],"name":"Lime Wood Slab (Fireproof)","tr":"抗燃酸橙树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabWood"," ChestnutSlab"],"name":"Chestnut Wood Slab (Fireproof)","tr":"抗燃栗树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["slabWood"," WengeSlab"],"name":"Wenge Wood Slab (Fireproof)","tr":"抗燃崖豆台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["slabWood"," BaobabSlab"],"name":"Baobab Wood Slab (Fireproof)","tr":"抗燃猴面包树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["slabWood"," SequoiaSlab"],"name":"Sequoia Wood Slab (Fireproof)","tr":"抗燃红杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["slabWood"," KapokSlabs"],"name":"Kapok Wood Slab (Fireproof)","tr":"抗燃木棉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["slabWood"," EbonySlab"],"name":"Ebony Wood Slab (Fireproof)","tr":"抗燃乌檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["slabWood"," MahoganySlabs"],"name":"Mahogany Wood Slab (Fireproof)","tr":"抗燃桃心树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["BalsaSlab"," slabWood"],"name":"Balsa Wood Slab (Fireproof)","tr":"抗燃巴尔杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["slabWood"," WillowSlab"],"name":"Willow Wood Slab (Fireproof)","tr":"抗燃柳树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["slabWood"," WalnutSlab"],"name":"Walnut Wood Slab (Fireproof)","tr":"抗燃核桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["slabWood"," GreenheartSlabs"],"name":"Greenheart Wood Slab (Fireproof)","tr":"抗燃绿樟树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["slabWood"," CherrySlab"],"name":"Cherry Wood Slab (Fireproof)","tr":"抗燃樱桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["slabWood"," MahoeSlabs"],"name":"Mahoe Wood Slab (Fireproof)","tr":"抗燃高槿树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["slabWood"],"name":"Poplar Wood Slab (Fireproof)","tr":"抗燃白杨树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["slabWood"," PalmSlabs"],"name":"Palm Wood Slab (Fireproof)","tr":"抗燃棕榈树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["slabWood"," PapayaSlabs"],"name":"Papaya Wood Slab (Fireproof)","tr":"抗燃木瓜台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["PineSlab"," slabWood"],"name":"Pine Wood Slab (Fireproof)","tr":"抗燃松树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["slabWood"," PlumSlab"],"name":"Plum Wood Slab (Fireproof)","tr":"抗燃李子台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["slabWood"," PoplarSlab"," MappleSlabs"],"name":"Maple Wood Slab (Fireproof)","tr":"抗燃枫树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["slabWood"," CitrusSlab"],"name":"Citrus Wood Slab (Fireproof)","tr":"抗燃柑橘树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["slabWood"],"name":"Giant Sequoia Wood Slab (Fireproof)","tr":"抗燃巨杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["slabWood"],"name":"Ipe Wood Slab (Fireproof)","tr":"抗燃重蚁树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["slabWood"],"name":"Padauk Wood Slab (Fireproof)","tr":"抗燃紫檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["slabWood"],"name":"Cocobolo Wood Slab (Fireproof)","tr":"抗燃黄檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["slabWood"],"name":"Zebrawood Wood Slab (Fireproof)","tr":"抗燃斑木树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneBody":{"0":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.door_jungle":{"0":{"name":"Jungle Door","tr":"丛林木门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:circuitWrap":{"0":{"name":"Wrap of ULV Circuits","tr":"封装ULV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Wrap of LV Circuits","tr":"封装LV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Wrap of MV Circuits","tr":"封装MV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Wrap of HV Circuits","tr":"封装HV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Wrap of EV Circuits","tr":"封装EV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Wrap of IV Circuits","tr":"封装IV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Wrap of LuV Circuits","tr":"封装LuV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Wrap of ZPM Circuits","tr":"封装ZPM电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Wrap of UV Circuits","tr":"封装UV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Wrap of UHV Circuits","tr":"封装UHV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Wrap of UEV Circuits","tr":"封装UEV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Wrap of UIV Circuits","tr":"封装UIV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Wrap of UMV Circuits","tr":"封装UMV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Wrap of UXV Circuits","tr":"封装UXV电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Wrap of MAX Circuits","tr":"封装MAX电路板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormChestplate":{"0":{"name":"Casting Form (Chestplate Mold)","tr":"铸件(胸甲)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:infusedGrainBlock":{"0":{"name":"tile.infusedGrainBlock.name","tr":"tile.infusedGrainBlock.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:pickaxeMud":{"0":{"name":"Muddy Pickaxe","tr":"泥巴镐","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"TGregworks:tGregToolPartLargeGuard":{"1536":{"name":"精金 Wide Guard","tr":"精金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Wide Guard","tr":"神秘蓝金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Wide Guard","tr":"琥珀 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Wide Guard","tr":"纯镃 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Wide Guard","tr":"谐镃 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Wide Guard","tr":"聚氯乙烯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Wide Guard","tr":"永恒 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Wide Guard","tr":"磁物质 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Wide Guard","tr":"赛特斯石英 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Wide Guard","tr":"暗影秘银 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Wide Guard","tr":"玄铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Wide Guard","tr":"戴斯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Wide Guard","tr":"铿铀 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Wide Guard","tr":"通流琥珀金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Wide Guard","tr":"末影粗胚 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Wide Guard","tr":"末影(te) 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Wide Guard","tr":"炽热的钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Wide Guard","tr":"火石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Wide Guard","tr":"力量 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Wide Guard","tr":"石墨 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Wide Guard","tr":"石墨烯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Wide Guard","tr":"注魔金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Wide Guard","tr":"风之魔晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Wide Guard","tr":"火之魔晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Wide Guard","tr":"地之魔晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Wide Guard","tr":"水之魔晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Wide Guard","tr":"混沌魔晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Wide Guard","tr":"秩序魔晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Wide Guard","tr":"玉 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Wide Guard","tr":"碧玉 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Wide Guard","tr":"陨铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Wide Guard","tr":"陨钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Wide Guard","tr":"硅岩 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Wide Guard","tr":"硅岩合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Wide Guard","tr":"富集硅岩 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Wide Guard","tr":"超能硅岩 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Wide Guard","tr":"下界石英 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Wide Guard","tr":"下界之星 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Wide Guard","tr":"三钛 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Wide Guard","tr":"虚空 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Wide Guard","tr":"胶木 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Wide Guard","tr":"幽冥剧毒结晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Wide Guard","tr":"强化 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Wide Guard","tr":"铱锇合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Wide Guard","tr":"阳光化合物 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Wide Guard","tr":"魂金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Wide Guard","tr":"蓝黄玉 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Wide Guard","tr":"黄铜 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Wide Guard","tr":"白铜 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Wide Guard","tr":"深渊铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Wide Guard","tr":"钻石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Wide Guard","tr":"琥珀金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Wide Guard","tr":"绿宝石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Wide Guard","tr":"强化混合晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Wide Guard","tr":"混合晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Wide Guard","tr":"绿色蓝宝石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Wide Guard","tr":"殷钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Wide Guard","tr":"坎塔尔合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Wide Guard","tr":"镁铝合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Wide Guard","tr":"镍铬合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Wide Guard","tr":"玄钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Wide Guard","tr":"生铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Wide Guard","tr":"聚乙烯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Wide Guard","tr":"环氧树脂 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Wide Guard","tr":"硅橡胶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Wide Guard","tr":"聚己内酰胺 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Wide Guard","tr":"聚四氟乙烯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Wide Guard","tr":"蓝宝石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Wide Guard","tr":"不锈钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Wide Guard","tr":"坦桑石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Wide Guard","tr":"锡铁合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Wide Guard","tr":"黄玉 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Wide Guard","tr":"哈氏合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Wide Guard","tr":"锻铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Wide Guard","tr":"铁木 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Wide Guard","tr":"橄榄石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Wide Guard","tr":"蛋白石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Wide Guard","tr":"紫水晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Wide Guard","tr":"暗影金属 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Wide Guard","tr":"暗影铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Wide Guard","tr":"暗影钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Wide Guard","tr":"钢叶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Wide Guard","tr":"骑士金属 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Wide Guard","tr":"标准纯银 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Wide Guard","tr":"玫瑰金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Wide Guard","tr":"黑青铜 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Wide Guard","tr":"铋青铜 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Wide Guard","tr":"黑钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Wide Guard","tr":"红钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Wide Guard","tr":"蓝钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Wide Guard","tr":"大马士革钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Wide Guard","tr":"充能合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Wide Guard","tr":"脉冲合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Wide Guard","tr":"星辰银 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Wide Guard","tr":"钴黄铜 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Wide Guard","tr":"红石榴石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Wide Guard","tr":"黄石榴石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Wide Guard","tr":"温特姆 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Wide Guard","tr":"黑花岗岩 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Wide Guard","tr":"红花岗岩 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Wide Guard","tr":"白石棉 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Wide Guard","tr":"雄黄 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Wide Guard","tr":"磁化铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Wide Guard","tr":"磁化钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Wide Guard","tr":"磁化钕 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Wide Guard","tr":"碳化钨 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Wide Guard","tr":"钒钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Wide Guard","tr":"高速钢-G 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Wide Guard","tr":"高速钢-E 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Wide Guard","tr":"高速钢-S 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Wide Guard","tr":"深铅 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Wide Guard","tr":"量子 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Wide Guard","tr":"深空秘银 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Wide Guard","tr":"黑钚 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Wide Guard","tr":"木卫四冰 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Wide Guard","tr":"硬铝 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Wide Guard","tr":"奥利哈钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Wide Guard","tr":"三元金属 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Wide Guard","tr":"聚苯硫醚 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Wide Guard","tr":"聚苯乙烯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Wide Guard","tr":"丁苯橡胶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Wide Guard","tr":"镍锌铁氧体 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Wide Guard","tr":"纤维强化的环氧树脂 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Wide Guard","tr":"磁化钐 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Wide Guard","tr":"无尽催化剂 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Wide Guard","tr":"聚苯并咪唑 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Wide Guard","tr":" 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Wide Guard","tr":"钛铂钒合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Wide Guard","tr":"时空 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Wide Guard","tr":"大理石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Wide Guard","tr":"神秘水晶 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Wide Guard","tr":"末影钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Wide Guard","tr":"复合粘土 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Wide Guard","tr":"晶化合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Wide Guard","tr":"旋律合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Wide Guard","tr":"恒星合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Wide Guard","tr":"晶化粉红史莱姆 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Wide Guard","tr":"充能银 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Wide Guard","tr":"生动合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Wide Guard","tr":"灵宝 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Wide Guard","tr":"超时空金属 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Wide Guard","tr":"活石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Wide Guard","tr":"盖亚之魂 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Wide Guard","tr":"活木 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Wide Guard","tr":"梦之木 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Wide Guard","tr":"泡铋 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Wide Guard","tr":"立方氧化锆 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Wide Guard","tr":"氟铁电气石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Wide Guard","tr":"铬铝电气石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Wide Guard","tr":"钒镁电气石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Wide Guard","tr":"铝电气石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Wide Guard","tr":"红锆石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Wide Guard","tr":"铁橄榄石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Wide Guard","tr":"镁橄榄石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Wide Guard","tr":"钙铁辉石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Wide Guard","tr":"钍-232 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Wide Guard","tr":"堇云石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Wide Guard","tr":"磁共振石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Wide Guard","tr":"锎 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Wide Guard","tr":"BArTiMaEuSNeK 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Wide Guard","tr":"钌 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Wide Guard","tr":"铑 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Wide Guard","tr":"镀铑钯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Wide Guard","tr":"泰伯利亚 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Wide Guard","tr":"钌铱合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Wide Guard","tr":"氟石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Wide Guard","tr":"高耐久性复合钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Wide Guard","tr":"硬钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Wide Guard","tr":"合成玉 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Wide Guard","tr":"原子分离催化剂 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Wide Guard","tr":"极不稳定硅岩 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Wide Guard","tr":"锌钍合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Wide Guard","tr":"锆锡合金-4 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Wide Guard","tr":"锆锡合金-2 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Wide Guard","tr":"耐热铬铁合金-903 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Wide Guard","tr":"精金合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Wide Guard","tr":"MAR-M200特种钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Wide Guard","tr":"MAR-Ce-M200特种钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Wide Guard","tr":"氯化锂 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Wide Guard","tr":"信素 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Wide Guard","tr":"流明 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Wide Guard","tr":"阿瑟锡 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Wide Guard","tr":"钛钼合金β-C 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Wide Guard","tr":"大力合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Wide Guard","tr":"光素 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Wide Guard","tr":"对立合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Wide Guard","tr":"稀有金属合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Wide Guard","tr":"富集硅岩合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Wide Guard","tr":"亚稳态鿫 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Wide Guard","tr":"调律源金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Wide Guard","tr":"魔钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Wide Guard","tr":"泰拉钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Wide Guard","tr":"源质钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Wide Guard","tr":"磁流体约束恒星物质 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Wide Guard","tr":"白矮星物质 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Wide Guard","tr":"黑矮星物质 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Wide Guard","tr":"宇宙素 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Wide Guard","tr":"铝 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Wide Guard","tr":"铍 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Wide Guard","tr":"铋 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Wide Guard","tr":"碳 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Wide Guard","tr":"铬 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Wide Guard","tr":"金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Wide Guard","tr":"铱 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Wide Guard","tr":"铅 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Wide Guard","tr":"锰 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Wide Guard","tr":"钼 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Wide Guard","tr":"钕 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Wide Guard","tr":"中子 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Wide Guard","tr":"镍 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Wide Guard","tr":"锇 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Wide Guard","tr":"钯 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Wide Guard","tr":"铂 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Wide Guard","tr":"钚-239 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Wide Guard","tr":"钚-241 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Wide Guard","tr":"银 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Wide Guard","tr":"钍 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Wide Guard","tr":"钛 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Wide Guard","tr":"钨 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Wide Guard","tr":"铀-238 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Wide Guard","tr":"铀-235 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Wide Guard","tr":"红宝石 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Wide Guard","tr":"红石合金 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Wide Guard","tr":"终末 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Wide Guard","tr":"导电铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Wide Guard","tr":"磁钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Wide Guard","tr":"钨钢 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Wide Guard","tr":"烈焰 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Wide Guard","tr":"脉冲铁 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Wide Guard","tr":"龙 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Wide Guard","tr":"觉醒龙 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Wide Guard","tr":"褐铜 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Wide Guard","tr":"山铜 宽护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:vacuumhopper":{"0":{"name":"Vacuum Hopper","tr":"虚空漏斗","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:bloodMagicIncenseItem":{"0":{"name":"Wood Ash","tr":"木灰粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Byrrus","tr":"玫香粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Livens","tr":"晶香粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Viridis","tr":"翠香粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Purpura","tr":"紫香粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.StonePlate":{"0":{"oreDict":["plateStone"],"name":"Stone Plate","tr":"石板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChargedSojournerWandCap":{"0":{"name":"Charged Sojourner Cap","tr":"充能寄生杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearInconel792":{"0":{"oreDict":["gearGtInconel792"," gearInconel792"],"name":"镍铬基合金-792齿轮","tr":"镍铬基合金-792齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustKashinite":{"0":{"oreDict":["dustKashinite"],"name":"硫铑铱矿粉","tr":"硫铑铱矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemssandstone":{"0":{"name":"Sandstone-Covered Pipe","tr":"沙石管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:necromancerrobe":{"0":{"name":"Necromancer Robes","tr":"死灵法师袍","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":81}},"Botania:craftPattern":{"0":{"name":"Crafting Pattern #1: 1x1","tr":"合成模板#1: 1x1","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Crafting Pattern #2: 2x2","tr":"合成模板#2: 2x2","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Crafting Pattern #3: 1x2","tr":"合成模板#3: 1x2","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Crafting Pattern #4: 2x1","tr":"合成模板#4: 2x1","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Crafting Pattern #5: 1x3","tr":"合成模板#5: 1x3","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Crafting Pattern #6: 3x1","tr":"合成模板#6: 3x1","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Crafting Pattern #7: 2x3","tr":"合成模板#7: 2x3","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Crafting Pattern #8: 3x2","tr":"合成模板#8: 3x2","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Crafting Pattern #9: Donut","tr":"合成模板#9: 圈形","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:focusDisintegration":{"0":{"name":"Wand Focus: Disintegration","tr":"法杖核心:解离","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:manasteelHelm":{"0":{"name":"Manasteel Helmet","tr":"魔钢头盔","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":177}},"ThaumicExploration:talismanFood":{"0":{"name":"Talisman of Nourishment","tr":"补给之符","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1001}},"Botania:biomeStoneB6Slab":{"0":{"name":"Metamorphic Taiga Stone Brick Slab","tr":"变质雪原石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearQuantum":{"0":{"oreDict":["gearGtQuantum"," gearQuantum"],"name":"量子合金齿轮","tr":"量子合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockIncoloyDS":{"0":{"oreDict":["blockIncoloyDS"],"name":"耐热铬铁合金-DS块","tr":"耐热铬铁合金-DS块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:concentratedTaint":{"0":{"name":"Concentrated Taint Flask","tr":"浓缩腐化瓶","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodTantalumCarbide":{"0":{"oreDict":["stickTantalumCarbide"],"name":"碳化钽杆","tr":"碳化钽杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:frograwItem":{"0":{"oreDict":["foodFrograw"],"name":"Raw Frog","tr":"生青蛙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:oreBerries":{"0":{"oreDict":["nuggetIron"," oreberryIron"],"name":"Iron Oreberry","tr":"铁矿莓","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreberryGold"," nuggetGold"," oreberryEssence"],"name":"Gold Oreberry","tr":"金矿莓","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["nuggetCopper"," oreberryCopper"],"name":"Copper Oreberry","tr":"铜矿莓","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["nuggetTin"," oreberryTin"],"name":"Tin Oreberry","tr":"锡矿莓","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["nuggetAluminum"," oreberryAluminum"," oreberryAluminium"],"name":"Aluminum Oreberry","tr":"铝矿莓","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Concentrated Essence Berry","tr":"浓缩精华莓","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:babashat":{"0":{"name":"Baba Yaga\u0027s Hat","tr":"芭芭雅嘎之帽","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":56}},"miscutils:blockBlockDysprosium":{"0":{"oreDict":["blockDysprosium"],"name":"镝块","tr":"镝块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:shoji_door":{"0":{"name":"Shoji Door","tr":"障子门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:backpack.thaumaturgeT2":{"0":{"name":"神秘使背包","tr":"神秘使背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftAmunRa:tile.wood1":{"0":{"oreDict":["logWood"],"name":"Lumipod Bark","tr":"卢米坡德树皮","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lumipod Pulp","tr":"卢米坡德木髓","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"],"name":"Virilig Planks","tr":"维里格木板","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"],"name":"Lumipod Planks","tr":"卢米坡德木板","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorUraniumSimple":{"1":{"name":"Fuel Rod (Uranium)","tr":"燃料棒(铀)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":10001}},"MagicBees:backpack.thaumaturgeT1":{"0":{"name":"神秘使背包","tr":"神秘使背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemHarz":{"0":{"name":"Sticky Resin","tr":"粘性树脂","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorReflectorThick":{"1":{"name":"Thick Neutron Reflector","tr":"加厚中子反射板","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"miscutils:itemPlateCelestialTungsten":{"0":{"oreDict":["plateCelestialTungsten"],"name":"天体钨板","tr":"天体钨板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:biscuitItem":{"0":{"oreDict":["foodBiscuit"],"name":"Biscuit","tr":"烤软饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedPerroudite":{"0":{"oreDict":["crushedPurifiedPerroudite"],"name":"Purified Crushed Perroudite Ore","tr":"洗净的溴硫银汞矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCircuitLFTR":{"0":{"name":"§aControl Circuit","tr":"§a§a控制电路","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:scytheGold":{"0":{"name":"Golden Scythe","tr":"金镰刀","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"harvestcraft:pamonionCrop":{"0":{"name":"Onion Crop","tr":"洋葱","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_storage.quantum":{"0":{"name":"ME Fluid Quantum Storage Cell","tr":"ME量子流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:componentAssemblylineCasing":{"0":{"name":"Component Assembly Line Casing (LV)","tr":"部件装配线外壳(LV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Component Assembly Line Casing (MV)","tr":"部件装配线外壳(MV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Component Assembly Line Casing (HV)","tr":"部件装配线外壳(HV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Component Assembly Line Casing (EV)","tr":"部件装配线外壳(EV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Component Assembly Line Casing (IV)","tr":"部件装配线外壳(IV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Component Assembly Line Casing (LuV)","tr":"部件装配线外壳(LuV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Component Assembly Line Casing (ZPM)","tr":"部件装配线外壳(ZPM)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Component Assembly Line Casing (UV)","tr":"部件装配线外壳(UV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Component Assembly Line Casing (UHV)","tr":"部件装配线外壳(UHV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Component Assembly Line Casing (UEV)","tr":"部件装配线外壳(UEV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Component Assembly Line Casing (UIV)","tr":"部件装配线外壳(UIV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Component Assembly Line Casing (UMV)","tr":"部件装配线外壳(UMV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Component Assembly Line Casing (UXV)","tr":"部件装配线外壳(UXV)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Component Assembly Line Casing (MAX)","tr":"部件装配线外壳(MAX)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:flower":{"0":{"oreDict":["mysticFlowerWhite"],"name":"Mystical White Flower","tr":"白色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["mysticFlowerOrange"],"name":"Mystical Orange Flower","tr":"橙色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["mysticFlowerMagenta"],"name":"Mystical Magenta Flower","tr":"品红色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["mysticFlowerLightBlue"],"name":"Mystical Light Blue Flower","tr":"淡蓝色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["mysticFlowerYellow"],"name":"Mystical Yellow Flower","tr":"黄色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["mysticFlowerLime"],"name":"Mystical Lime Flower","tr":"黄绿色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["mysticFlowerPink"],"name":"Mystical Pink Flower","tr":"粉色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["mysticFlowerGray"],"name":"Mystical Gray Flower","tr":"灰色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["mysticFlowerLightGray"],"name":"Mystical Light Gray Flower","tr":"淡灰色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["mysticFlowerCyan"],"name":"Mystical Cyan Flower","tr":"青色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["mysticFlowerPurple"],"name":"Mystical Purple Flower","tr":"紫色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["mysticFlowerBlue"],"name":"Mystical Blue Flower","tr":"蓝色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["mysticFlowerBrown"],"name":"Mystical Brown Flower","tr":"棕色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["mysticFlowerGreen"],"name":"Mystical Green Flower","tr":"绿色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["mysticFlowerRed"],"name":"Mystical Red Flower","tr":"红色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["mysticFlowerBlack"],"name":"Mystical Black Flower","tr":"黑色神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongPikyonium64B":{"0":{"oreDict":["stickLongPikyonium64B"],"name":"长皮卡优合金64B杆","tr":"长皮卡优合金64B杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:peanutseedItem":{"0":{"oreDict":["seedPeanut"," listAllseed"],"name":"Peanut Seed","tr":"花生种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustInconel792":{"0":{"oreDict":["dustInconel792"],"name":"镍铬基合金-792粉","tr":"镍铬基合金-792粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:woodenDoubleSlab2":{"0":{"name":"Redwood Wood Slab","tr":"红杉台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Willow Wood Slab","tr":"柳树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pine Wood Slab","tr":"松树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Hellbark Wood Slab","tr":"地狱皮树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Jacaranda Wood Slab","tr":"蓝花楹树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:woodenDoubleSlab1":{"0":{"name":"Sacred Oak Wood Slab","tr":"神圣橡木台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Wood Slab","tr":"樱桃树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Wood Slab","tr":"黑暗树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Wood Slab","tr":"杉树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ethereal Wood Slab","tr":"空灵树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Magic Wood Slab","tr":"魔法树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mangrove Wood Slab","tr":"红树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Palm Wood Slab","tr":"棕榈树台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTantalumCarbide":{"0":{"oreDict":["plateDoubleTantalumCarbide"],"name":"双重碳化钽板","tr":"双重碳化钽板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemBoltZeron100":{"0":{"oreDict":["boltZeron100"],"name":"塞龙-100螺栓","tr":"塞龙-100螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetMaragingSteel300":{"0":{"oreDict":["nuggetMaragingSteel300"],"name":"马氏体时效钢300粒","tr":"马氏体时效钢300粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallSamarskiteYb":{"0":{"oreDict":["dustSmallSamarskiteYb"],"name":"小堆铌钇矿(Yb)粉","tr":"小堆铌钇矿(Yb)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockMolecularAssembler":{"0":{"name":"Molecular Assembler","tr":"分子装配室","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sausagerollItem":{"0":{"oreDict":["foodSausageroll"],"name":"Sausage Roll","tr":"香肠卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_brown":{"0":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:concrete":{"0":{"oreDict":["concrete"],"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Concrete","tr":"混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockSingularityCraftingStorage":{"0":{"name":"Singularity Crafting Storage","tr":"奇点合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockCosmeticOpaque":{"0":{"oreDict":["blockAmber"],"name":"Amber Block","tr":"琥珀方块","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Amber Bricks","tr":"琥珀砖块","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Warded Glass","tr":"守卫者玻璃","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_drop":{"0":{"name":"drop of ???","tr":"???液滴","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBloodSteel":{"0":{"oreDict":["cellBloodSteel"],"name":"血钢单元","tr":"血钢单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:baseTierTwoBlock":{"0":{"name":"Turret Base (Tier 3)","tr":"炮塔基座(三级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PulsatingIronBars":{"0":{"oreDict":["barsPulsatingIron"],"name":"Pulsating Iron Bars","tr":"脉冲铁栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:part.rail":{"0":{"name":"Standard Rail","tr":"标准导轨","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Advanced Rail","tr":"高级导轨","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Wooden Rail","tr":"木质导轨","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"H.S. Rail","tr":"高速导轨","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Reinforced Rail","tr":"强化导轨","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Electric Rail","tr":"电力导轨","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneStairsWeatheredRight":{"0":{"oreDict":["nagastoneStairsWeathered"],"name":"Weathered Nagastone Stairs (Right)","tr":"Weathered Nagastone Stairs (Right)","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureAlburnite":{"0":{"oreDict":["dustPureAlburnite"],"name":"Purified Alburnite Dust","tr":"纯净硫碲金锗矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellRhenium":{"0":{"oreDict":["cellRhenium"],"name":"铼单元","tr":"铼单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:spagettiItem":{"0":{"oreDict":["foodSpagetti"],"name":"Spagetti","tr":"意大利面","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateBlackTitanium":{"0":{"oreDict":["plateBlackTitanium"],"name":"黑钛板","tr":"黑钛板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:focus.aewrench":{"0":{"name":"Wand Focus: AE Wrench","tr":"法杖核心: AE扳手","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodLaurenium":{"0":{"oreDict":["stickLaurenium"],"name":"劳伦姆合金杆","tr":"劳伦姆合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_redstoneLight":{"0":{"name":"Colored Redstone Lamp (White Frequency)","tr":"染色 红石灯 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Colored Redstone Lamp (Orange Frequency)","tr":"染色 红石灯 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Colored Redstone Lamp (Magenta Frequency)","tr":"染色 红石灯 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Colored Redstone Lamp (Light Blue Frequency)","tr":"染色 红石灯 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Colored Redstone Lamp (Yellow Frequency)","tr":"染色 红石灯 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Colored Redstone Lamp (Lime Frequency)","tr":"染色 红石灯 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Colored Redstone Lamp (Pink Frequency)","tr":"染色 红石灯 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Colored Redstone Lamp (Gray Frequency)","tr":"染色 红石灯 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Colored Redstone Lamp (Light Gray Frequency)","tr":"染色 红石灯 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Colored Redstone Lamp (Cyan Frequency)","tr":"染色 红石灯 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Colored Redstone Lamp (Purple Frequency)","tr":"染色 红石灯 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Colored Redstone Lamp (Blue Frequency)","tr":"染色 红石灯 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Colored Redstone Lamp (Brown Frequency)","tr":"染色 红石灯 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Colored Redstone Lamp (Green Frequency)","tr":"染色 红石灯 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Colored Redstone Lamp (Red Frequency)","tr":"染色 红石灯 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Colored Redstone Lamp (Black Frequency)","tr":"染色 红石灯 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreZircon":{"0":{"oreDict":["oreZircon"],"name":"Zircon Ore","tr":"锆石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BinnieCore:genesis":{"0":{"name":"Genesis","tr":"Genesis","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:rodCompressedUranium4":{"0":{"name":"Quad Fuel Rod (High Density Uranium)","tr":"四联燃料棒(浓缩铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:personalHealingDevice":{"0":{"name":"§9Personal Healing NanoBooster§r","tr":"§9§9个人纳米治疗加速器§r","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:ritualStone":{"0":{"name":"Ritual Stone","tr":"仪式石","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockFenceIron":{"0":{"name":"Iron Fence","tr":"铁栅栏","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtBlackMetal":{"0":{"oreDict":["frameGtBlackMetal"],"name":"黑物质框架","tr":"黑物质框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:saltItem":{"0":{"oreDict":["dustSalt"," itemSalt"," foodSalt"],"name":"Salt","tr":"盐","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:brew.water":{"0":{"name":"Brew of Endless Water","tr":"无尽之水酿造","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":100}},"alchgrate:alchgrate":{"0":{"name":"Alchemical Grate","tr":"炼金格栅","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernCore":{"0":{"name":"Wyvern Core","tr":"双足飞龙核心","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedstickLong":{"10112":{"oreDict":["stickLongShirabon"],"name":"长调律源金杆","tr":"长调律源金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stickLongBismutite"],"name":"长泡铋杆","tr":"长泡铋杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stickLongZirconium"],"name":"长锆杆","tr":"长锆杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stickLongCubicZirconia"],"name":"长立方氧化锆杆","tr":"长立方氧化锆杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stickLongFluor-Buergerite"],"name":"长氟铁电气石杆","tr":"长氟铁电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stickLongChromo-Alumino-Povondraite"],"name":"长铬铝电气石杆","tr":"长铬铝电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stickLongVanadio-Oxy-Dravite"],"name":"长钒镁电气石杆","tr":"长钒镁电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stickLongOlenite"],"name":"长铝电气石杆","tr":"长铝电气石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["stickLongRedZircon"],"name":"长红锆石杆","tr":"长红锆石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["stickLongSalt"],"name":"长盐杆","tr":"长盐杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["stickLongSpodumene"],"name":"长锂辉石杆","tr":"长锂辉石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["stickLongRockSalt"],"name":"长岩盐杆","tr":"长岩盐杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["stickLongFayalite"],"name":"长铁橄榄石杆","tr":"长铁橄榄石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["stickLongForsterite"],"name":"长镁橄榄石杆","tr":"长镁橄榄石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["stickLongHedenbergite"],"name":"长钙铁辉石杆","tr":"长钙铁辉石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["stickLongThorium232"],"name":"长钍-232杆","tr":"长钍-232杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["stickLongPrasiolite"],"name":"长堇云石杆","tr":"长堇云石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["stickLongMagnetoResonatic"],"name":"长磁共振石杆","tr":"长磁共振石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["stickLongAtomicSeparationCatalyst"],"name":"长原子分离催化剂杆","tr":"长原子分离催化剂杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["stickLongCalifornium"],"name":"长锎杆","tr":"长锎杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["stickLongOrundum"],"name":"长合成玉杆","tr":"长合成玉杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["stickLongCalcium"],"name":"长钙杆","tr":"长钙杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["stickLongExtremelyUnstableNaquadah"],"name":"长极不稳定硅岩杆","tr":"长极不稳定硅岩杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["stickLongBArTiMaEuSNeK"],"name":"长BArTiMaEuSNeK杆","tr":"长BArTiMaEuSNeK杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["stickLongPTMEGElastomer"],"name":"长PTMEG橡胶杆","tr":"长PTMEG橡胶杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["stickLongRuthenium"],"name":"长钌杆","tr":"长钌杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["stickLongZn-ThAlloy"],"name":"长锌钍合金杆","tr":"长锌钍合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["stickLongRhodium"],"name":"长铑杆","tr":"长铑杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["stickLongRhodium-PlatedPalladium"],"name":"长镀铑钯杆","tr":"长镀铑钯杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["stickLongTiberium"],"name":"长泰伯利亚杆","tr":"长泰伯利亚杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["stickLongRuridit"],"name":"长钌铱合金杆","tr":"长钌铱合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["stickLongFluorspar"],"name":"长氟石杆","tr":"长氟石杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["stickLongHighDurabilityCompoundSteel"],"name":"长高耐久性复合钢杆","tr":"长高耐久性复合钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["stickLongAdemicSteel"],"name":"长硬钢杆","tr":"长硬钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["stickLongZircaloy-4"],"name":"长锆锡合金-4杆","tr":"长锆锡合金-4杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["stickLongZircaloy-2"],"name":"长锆锡合金-2杆","tr":"长锆锡合金-2杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["stickLongIncoloy-903"],"name":"长耐热铬铁合金-903杆","tr":"长耐热铬铁合金-903杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["stickLongAdamantiumAlloy"],"name":"长精金合金杆","tr":"长精金合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["stickLongFluorophlogopite"],"name":"长氟金云母杆","tr":"长氟金云母杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["stickLongCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"长掺铈镥铝石榴石 (Ce:LuAG)杆","tr":"长掺铈镥铝石榴石 (Ce:LuAG)杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["stickLongMagnesia"],"name":"长氧化镁杆","tr":"长氧化镁杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["stickLongMAR-M200Steel"],"name":"长MAR-M200特种钢杆","tr":"长MAR-M200特种钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["stickLongMAR-Ce-M200Steel"],"name":"长MAR-Ce-M200特种钢杆","tr":"长MAR-Ce-M200特种钢杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["stickLongLithiumChloride"],"name":"长氯化锂杆","tr":"长氯化锂杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["stickLongSignalium"],"name":"长信素杆","tr":"长信素杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["stickLongLumiium"],"name":"长流明杆","tr":"长流明杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["stickLongArtherium-Sn"],"name":"长阿瑟锡杆","tr":"长阿瑟锡杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["stickLongTanmolyiumBeta-C"],"name":"长钛钼合金β-C杆","tr":"长钛钼合金β-C杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["stickLongDalisenite"],"name":"长大力合金杆","tr":"长大力合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["stickLongHafnium"],"name":"长铪杆","tr":"长铪杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["stickLongHikarium"],"name":"长光素杆","tr":"长光素杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["stickLongTairitsu"],"name":"长对立合金杆","tr":"长对立合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["stickLongPreciousMetalsAlloy"],"name":"长稀有金属合金杆","tr":"长稀有金属合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["stickLongEnrichedNaquadahAlloy"],"name":"长富集硅岩合金杆","tr":"长富集硅岩合金杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["stickLongMetastableOganesson"],"name":"长亚稳态鿫杆","tr":"长亚稳态鿫杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["stickLongZirconium"],"name":"长锆杆","tr":"长锆杆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:pillarAlpha":{"0":{"name":"tile.pillarAlpha.name","tr":"tile.pillarAlpha.name","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorShovel":{"0":{"name":"Ichorium Shovel","tr":"灵宝铲","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"miscutils:GTPP.BattPack.09.name":{"1":{"name":"§9Charge Pack [MAX]§7","tr":"§9充电工具包[MAX]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [MAX]§7","tr":"§9充电工具包[MAX]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"AWWayofTime:energyBazookaThirdTier":{"0":{"name":"Energy Bazooka III","tr":"能量火箭筒 III","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":251}},"BuildCraft|Factory:tankBlock":{"0":{"oreDict":["craftingTank"],"name":"Tank","tr":"储罐","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:MorphPickaxe":{"0":{"name":"Chameleon Pickaxe","tr":"避役镐","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1501}},"harvestcraft:okrachipsItem":{"0":{"oreDict":["foodOkrachips"],"name":"Okra Chips","tr":"盐烤秋葵","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:sojournerCapUncharged":{"0":{"name":"Inert Sojourner\u0027s Cap","tr":"惰性寄生杖端","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:pyroBucket":{"0":{"name":"Bucket of Incendium","tr":"魔力熔岩桶","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:rodCompressedUranium2":{"0":{"name":"Dual Fuel Rod (High Density Uranium)","tr":"二联燃料棒(浓缩铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"chisel:torch5":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIridiumRotorBlade":{"0":{"name":"Iridium Rotor Blade","tr":"铱扇叶","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodSeat":{"0":{"name":"Acacia Seat","tr":"金合欢座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Seat","tr":"巴尔杉座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Seat","tr":"猴面包树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Seat","tr":"樱桃树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Seat","tr":"栗树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Seat","tr":"柑橘树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Seat","tr":"乌檀树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Seat","tr":"樟树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Seat","tr":"木棉座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Seat","tr":"落叶松座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Seat","tr":"菩提树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Seat","tr":"白皮树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Seat","tr":"桃花心木座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Seat","tr":"枫树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Seat","tr":"棕榈树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Seat","tr":"木瓜树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockmachines":{"1":{"name":"青铜外壳","tr":"青铜外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"砖砌青铜外壳","tr":"砖砌青铜外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"钢外壳","tr":"钢外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"砖砌锻铁外壳","tr":"砖砌锻铁外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4102":{"oreDict":["frameGtLithium"],"name":"锂框架","tr":"锂框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4104":{"oreDict":["frameGtBeryllium"],"name":"铍框架","tr":"铍框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"ULV机器外壳","tr":"ULV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4106":{"oreDict":["frameGtCarbon"],"name":"碳框架","tr":"碳框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"LV机器外壳","tr":"LV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"MV机器外壳","tr":"MV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"HV机器外壳","tr":"HV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"EV机器外壳","tr":"EV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"IV机器外壳","tr":"IV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"LuV机器外壳","tr":"LuV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"ZPM机器外壳","tr":"ZPM机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"UV机器外壳","tr":"UV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4114":{"oreDict":["frameGtMagnesium"],"name":"镁框架","tr":"镁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"UHV机器外壳","tr":"UHV机器外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4115":{"oreDict":["frameGtAluminium"],"name":"铝框架","tr":"铝框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"ULV变压器","tr":"ULV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4116":{"oreDict":["frameGtSilicon"],"name":"硅框架","tr":"硅框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"LV变压器","tr":"LV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"MV变压器","tr":"MV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"HV变压器","tr":"HV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"EV变压器","tr":"EV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"IV变压器","tr":"IV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4121":{"oreDict":["frameGtPotassium"],"name":"钾框架","tr":"钾框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"LuV变压器","tr":"LuV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"ZPM变压器","tr":"ZPM变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4123":{"oreDict":["frameGtScandium"],"name":"钪框架","tr":"钪框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"UV变压器","tr":"UV变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4124":{"oreDict":["frameGtTitanium"],"name":"钛框架","tr":"钛框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4125":{"oreDict":["frameGtVanadium"],"name":"钒框架","tr":"钒框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"ULV动力仓","tr":"ULV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4126":{"oreDict":["frameGtChrome"],"name":"铬框架","tr":"铬框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"LV动力仓","tr":"LV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4127":{"oreDict":["frameGtManganese"],"name":"锰框架","tr":"锰框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"MV动力仓","tr":"MV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4128":{"oreDict":["frameGtIron"," frameGtAnyIron"],"name":"铁框架","tr":"铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"HV动力仓","tr":"HV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4129":{"oreDict":["frameGtCobalt"],"name":"钴框架","tr":"钴框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"EV动力仓","tr":"EV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4130":{"oreDict":["frameGtNickel"],"name":"镍框架","tr":"镍框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"name":"IV动力仓","tr":"IV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4131":{"oreDict":["frameGtCopper"," frameGtAnyCopper"],"name":"铜框架","tr":"铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"name":"LuV动力仓","tr":"LuV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4132":{"oreDict":["frameGtZinc"],"name":"锌框架","tr":"锌框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"name":"ZPM动力仓","tr":"ZPM动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4133":{"oreDict":["frameGtGallium"],"name":"镓框架","tr":"镓框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"name":"UV动力仓","tr":"UV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"name":"UHV动力仓","tr":"UHV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4135":{"oreDict":["frameGtArsenic"],"name":"砷框架","tr":"砷框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"name":"ULV能源仓","tr":"ULV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"41":{"name":"LV能源仓","tr":"LV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"42":{"name":"MV能源仓","tr":"MV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"name":"HV能源仓","tr":"HV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4139":{"oreDict":["frameGtRubidium"],"name":"铷框架","tr":"铷框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"44":{"name":"EV能源仓","tr":"EV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"45":{"name":"IV能源仓","tr":"IV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4141":{"oreDict":["frameGtYttrium"],"name":"钇框架","tr":"钇框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"46":{"name":"LuV能源仓","tr":"LuV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"name":"ZPM能源仓","tr":"ZPM能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4143":{"oreDict":["frameGtNiobium"],"name":"铌框架","tr":"铌框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"48":{"name":"UV能源仓","tr":"UV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4144":{"oreDict":["frameGtMolybdenum"],"name":"钼框架","tr":"钼框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"49":{"name":"UHV能源仓","tr":"UHV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"50":{"name":"输入仓(ULV)","tr":"输入仓(ULV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"51":{"name":"输入仓(LV)","tr":"输入仓(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"52":{"name":"输入仓(MV)","tr":"输入仓(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4148":{"oreDict":["frameGtPalladium"],"name":"钯框架","tr":"钯框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"53":{"name":"输入仓(HV)","tr":"输入仓(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"54":{"name":"输入仓(EV)","tr":"输入仓(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4150":{"oreDict":["frameGtSilver"],"name":"银框架","tr":"银框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"55":{"name":"输入仓(IV)","tr":"输入仓(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"56":{"name":"输入仓(LuV)","tr":"输入仓(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4152":{"oreDict":["frameGtIndium"],"name":"铟框架","tr":"铟框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"57":{"name":"输入仓(ZPM)","tr":"输入仓(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4153":{"oreDict":["frameGtTin"],"name":"锡框架","tr":"锡框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"58":{"name":"输入仓(UV)","tr":"输入仓(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4154":{"oreDict":["frameGtAntimony"],"name":"锑框架","tr":"锑框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"59":{"name":"输入仓(UHV)","tr":"输入仓(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4155":{"oreDict":["frameGtTellurium"],"name":"碲框架","tr":"碲框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"60":{"name":"输出仓(ULV)","tr":"输出仓(ULV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"61":{"name":"输出仓(LV)","tr":"输出仓(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"62":{"name":"输出仓(MV)","tr":"输出仓(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4158":{"oreDict":["frameGtCaesium"],"name":"铯框架","tr":"铯框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"63":{"name":"输出仓(HV)","tr":"输出仓(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4159":{"oreDict":["frameGtBarium"],"name":"钡框架","tr":"钡框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"64":{"name":"输出仓(EV)","tr":"输出仓(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4160":{"oreDict":["frameGtLanthanum"],"name":"镧框架","tr":"镧框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"65":{"name":"输出仓(IV)","tr":"输出仓(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4161":{"oreDict":["frameGtCerium"],"name":"铈框架","tr":"铈框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"66":{"name":"输出仓(LuV)","tr":"输出仓(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4162":{"oreDict":["frameGtPraseodymium"],"name":"镨框架","tr":"镨框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"67":{"name":"输出仓(ZPM)","tr":"输出仓(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4163":{"oreDict":["frameGtNeodymium"],"name":"钕框架","tr":"钕框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"68":{"name":"输出仓(UV)","tr":"输出仓(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4164":{"oreDict":["frameGtPromethium"],"name":"钷框架","tr":"钷框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"69":{"name":"输出仓(UHV)","tr":"输出仓(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4165":{"oreDict":["frameGtSamarium"],"name":"钐框架","tr":"钐框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"70":{"name":"输入总线(ULV)","tr":"输入总线(ULV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4166":{"oreDict":["frameGtEuropium"],"name":"铕框架","tr":"铕框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"71":{"name":"输入总线(LV)","tr":"输入总线(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4167":{"oreDict":["frameGtGadolinium"],"name":"钆框架","tr":"钆框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"72":{"name":"输入总线(MV)","tr":"输入总线(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4168":{"oreDict":["frameGtTerbium"],"name":"铽框架","tr":"铽框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"73":{"name":"输入总线(HV)","tr":"输入总线(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4169":{"oreDict":["frameGtDysprosium"],"name":"镝框架","tr":"镝框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"74":{"name":"输入总线(EV)","tr":"输入总线(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4170":{"oreDict":["frameGtHolmium"],"name":"钬框架","tr":"钬框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"75":{"name":"输入总线(IV)","tr":"输入总线(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4171":{"oreDict":["frameGtErbium"],"name":"铒框架","tr":"铒框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"76":{"name":"输入总线(LuV)","tr":"输入总线(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4172":{"oreDict":["frameGtThulium"],"name":"铥框架","tr":"铥框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"77":{"name":"输入总线(ZPM)","tr":"输入总线(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4173":{"oreDict":["frameGtYtterbium"],"name":"镱框架","tr":"镱框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"78":{"name":"输入总线(UV)","tr":"输入总线(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4174":{"oreDict":["frameGtLutetium"],"name":"镥框架","tr":"镥框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"79":{"name":"输入总线(UHV)","tr":"输入总线(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"80":{"name":"输出总线(ULV)","tr":"输出总线(ULV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4176":{"oreDict":["frameGtTantalum"],"name":"钽框架","tr":"钽框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"81":{"name":"输出总线(LV)","tr":"输出总线(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4177":{"oreDict":["frameGtTungsten"],"name":"钨框架","tr":"钨框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"82":{"name":"输出总线(MV)","tr":"输出总线(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"83":{"name":"输出总线(HV)","tr":"输出总线(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4179":{"oreDict":["frameGtOsmium"],"name":"锇框架","tr":"锇框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"84":{"name":"输出总线(EV)","tr":"输出总线(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4180":{"oreDict":["frameGtIridium"],"name":"铱框架","tr":"铱框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"85":{"name":"输出总线(IV)","tr":"输出总线(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4181":{"oreDict":["frameGtPlatinum"],"name":"铂框架","tr":"铂框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"86":{"name":"输出总线(LuV)","tr":"输出总线(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4182":{"oreDict":["frameGtGold"],"name":"金框架","tr":"金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"87":{"name":"输出总线(ZPM)","tr":"输出总线(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"88":{"name":"输出总线(UV)","tr":"输出总线(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"89":{"name":"输出总线(UHV)","tr":"输出总线(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4185":{"oreDict":["frameGtLead"],"name":"铅框架","tr":"铅框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"90":{"name":"维护仓","tr":"维护仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4186":{"oreDict":["frameGtBismuth"],"name":"铋框架","tr":"铋框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"91":{"name":"消声仓(LV)","tr":"消声仓(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"92":{"name":"消声仓(MV)","tr":"消声仓(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"93":{"name":"消声仓(HV)","tr":"消声仓(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"94":{"name":"消声仓(EV)","tr":"消声仓(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"95":{"name":"消声仓(IV)","tr":"消声仓(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"96":{"name":"消声仓(LuV)","tr":"消声仓(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4192":{"oreDict":["frameGtThorium"],"name":"钍框架","tr":"钍框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"97":{"name":"消声仓(ZPM)","tr":"消声仓(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4193":{"oreDict":["frameGtUranium235"],"name":"铀-235框架","tr":"铀-235框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"98":{"name":"消声仓(UV)","tr":"消声仓(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4194":{"oreDict":["frameGtUranium"],"name":"铀-238框架","tr":"铀-238框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"99":{"name":"消声仓(UHV)","tr":"消声仓(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"100":{"name":"小型燃煤锅炉","tr":"小型燃煤锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4196":{"oreDict":["frameGtPlutonium"],"name":"钚-239框架","tr":"钚-239框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"101":{"name":"高压燃煤锅炉","tr":"高压燃煤锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4197":{"oreDict":["frameGtPlutonium241"],"name":"钚-241框架","tr":"钚-241框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"102":{"name":"高压岩浆锅炉","tr":"高压岩浆锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"103":{"name":"蒸汽熔炉","tr":"蒸汽熔炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4199":{"oreDict":["frameGtAmericium"],"name":"镅框架","tr":"镅框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"104":{"name":"高压蒸汽熔炉","tr":"高压蒸汽熔炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"105":{"name":"简易太阳能锅炉","tr":"简易太阳能锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"106":{"name":"蒸汽研磨机","tr":"蒸汽研磨机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"107":{"name":"高压研磨机","tr":"高压研磨机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"109":{"name":"蒸汽提取机","tr":"蒸汽提取机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"110":{"name":"高压提取机","tr":"高压提取机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"111":{"name":"自动维护仓","tr":"自动维护仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4207":{"oreDict":["frameGtTengamPurified"],"name":"纯镃框架","tr":"纯镃框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"112":{"name":"蒸汽锻造锤","tr":"蒸汽锻造锤","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4208":{"oreDict":["frameGtTengamAttuned"],"name":"谐镃框架","tr":"谐镃框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"113":{"name":"高压锻造锤","tr":"高压锻造锤","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"114":{"name":"高压太阳能锅炉","tr":"高压太阳能锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"115":{"name":"蒸汽压缩机","tr":"蒸汽压缩机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"116":{"name":"高压压缩机","tr":"高压压缩机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"118":{"name":"蒸汽合金炉","tr":"蒸汽合金炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"119":{"name":"高压合金炉","tr":"高压合金炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"120":{"name":"量子缸 I","tr":"量子缸 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"121":{"name":"量子缸 II","tr":"量子缸 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"122":{"name":"量子缸 III","tr":"量子缸 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"123":{"name":"量子缸 IV","tr":"量子缸 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"124":{"name":"量子缸 V","tr":"量子缸 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"125":{"name":"量子箱 I","tr":"量子箱 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"126":{"name":"量子箱 II","tr":"量子箱 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"127":{"name":"量子箱 III","tr":"量子箱 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"128":{"name":"量子箱 IV","tr":"量子箱 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"129":{"name":"量子箱 V","tr":"量子箱 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4225":{"oreDict":["frameGtNeutronium"],"name":"中子框架","tr":"中子框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"130":{"name":"超级缸 I","tr":"超级缸 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"131":{"name":"超级缸 II","tr":"超级缸 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4227":{"oreDict":["frameGtSuperconductorUIVBase"],"name":"UIV超导粗胚框架","tr":"UIV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"132":{"name":"超级缸 III","tr":"超级缸 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"133":{"name":"超级缸 IV","tr":"超级缸 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"134":{"name":"超级缸 V","tr":"超级缸 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4230":{"oreDict":["frameGtSuperconductorUMVBase"],"name":"UMV超导粗胚框架","tr":"UMV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"135":{"name":"超级箱 I","tr":"超级箱 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"136":{"name":"超级箱 II","tr":"超级箱 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"137":{"name":"超级箱 III","tr":"超级箱 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"138":{"name":"超级箱 IV","tr":"超级箱 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"139":{"name":"超级箱 V","tr":"超级箱 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4235":{"oreDict":["frameGtUniversium"],"name":"宇宙素框架","tr":"宇宙素框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"140":{"name":"砖高炉","tr":"砖高炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"141":{"name":"油气流体钻机 II","tr":"油气流体钻机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4237":{"oreDict":["frameGtEternity"],"name":"永恒框架","tr":"永恒框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"142":{"name":"油气流体钻机 III","tr":"油气流体钻机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"143":{"name":"混凝土回填机","tr":"混凝土回填机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4239":{"oreDict":["frameGtMagmatter"],"name":"磁物质框架","tr":"磁物质框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"144":{"name":"进阶混凝土回填机","tr":"进阶混凝土回填机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"145":{"name":"数据访问仓","tr":"数据访问仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"146":{"name":"进阶数据访问仓","tr":"进阶数据访问仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"147":{"name":"自动数据访问仓","tr":"自动数据访问仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"148":{"name":"无尽油气流体钻机","tr":"无尽油气流体钻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"149":{"name":"油气流体钻机 IV","tr":"油气流体钻机 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"150":{"name":"超低压充电箱","tr":"超低压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"151":{"name":"低压充电箱","tr":"低压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"152":{"name":"中压充电箱","tr":"中压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"153":{"name":"高压充电箱","tr":"高压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"154":{"name":"超高压充电箱","tr":"超高压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"155":{"name":"强导压充电箱","tr":"强导压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"156":{"name":"剧差压充电箱","tr":"剧差压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"157":{"name":"零点压充电箱","tr":"零点压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"158":{"name":"极限压充电箱","tr":"极限压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"159":{"name":"极高压充电箱","tr":"极高压充电箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"160":{"name":"超低压电池箱","tr":"超低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"161":{"name":"低压电池箱","tr":"低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"162":{"name":"中压电池箱","tr":"中压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"163":{"name":"高压电池箱","tr":"高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"164":{"name":"超高压电池箱","tr":"超高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"165":{"name":"强导压电池箱","tr":"强导压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"166":{"name":"剧差压电池箱","tr":"剧差压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"167":{"name":"零点压电池箱","tr":"零点压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"168":{"name":"极限压电池箱","tr":"极限压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"169":{"name":"极高压电池箱","tr":"极高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"170":{"name":"超低压电池箱","tr":"超低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"171":{"name":"低压电池箱","tr":"低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"172":{"name":"中压电池箱","tr":"中压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"173":{"name":"高压电池箱","tr":"高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"174":{"name":"超高压电池箱","tr":"超高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"175":{"name":"强导压电池箱","tr":"强导压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"176":{"name":"剧差压电池箱","tr":"剧差压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"177":{"name":"零点压电池箱","tr":"零点压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"178":{"name":"极限压电池箱","tr":"极限压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"179":{"name":"极高压电池箱","tr":"极高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"180":{"name":"超低压电池箱","tr":"超低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"181":{"name":"低压电池箱","tr":"低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"182":{"name":"中压电池箱","tr":"中压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"183":{"name":"高压电池箱","tr":"高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"184":{"name":"超高压电池箱","tr":"超高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"185":{"name":"强导压电池箱","tr":"强导压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"186":{"name":"剧差压电池箱","tr":"剧差压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"187":{"name":"零点压电池箱","tr":"零点压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"188":{"name":"极限压电池箱","tr":"极限压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"189":{"name":"极高压电池箱","tr":"极高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"190":{"name":"超低压电池箱","tr":"超低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"191":{"name":"低压电池箱","tr":"低压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"192":{"name":"中压电池箱","tr":"中压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"193":{"name":"高压电池箱","tr":"高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"194":{"name":"超高压电池箱","tr":"超高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"195":{"name":"强导压电池箱","tr":"强导压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"196":{"name":"剧差压电池箱","tr":"剧差压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"197":{"name":"零点压电池箱","tr":"零点压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"198":{"name":"极限压电池箱","tr":"极限压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"199":{"name":"极高压电池箱","tr":"极高压电池箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"200":{"name":"四重输入仓(EV)","tr":"四重输入仓(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4297":{"oreDict":["frameGtManasteel"],"name":"魔钢框架","tr":"魔钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4298":{"oreDict":["frameGtTerrasteel"],"name":"泰拉钢框架","tr":"泰拉钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4299":{"oreDict":["frameGtElvenElementium"],"name":"源质钢框架","tr":"源质钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4301":{"oreDict":["frameGtGaiaSpirit"],"name":"盖亚之魂框架","tr":"盖亚之魂框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"206":{"name":"ULV无线能源仓","tr":"ULV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4302":{"oreDict":["frameGtLivingwood"],"name":"活木框架","tr":"活木框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"207":{"name":"LV无线能源仓","tr":"LV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4303":{"oreDict":["frameGtDreamwood"],"name":"梦之木框架","tr":"梦之木框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"208":{"name":"MV无线能源仓","tr":"MV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"209":{"name":"HV无线能源仓","tr":"HV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12501":{"name":"基础作物基因提取机","tr":"基础作物基因提取机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12502":{"name":"进阶作物基因提取机 I","tr":"进阶作物基因提取机 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12503":{"name":"进阶作物基因提取机 II","tr":"进阶作物基因提取机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"216":{"name":"EV无线能源仓","tr":"EV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12504":{"name":"进阶作物基因提取机 III","tr":"进阶作物基因提取机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"217":{"name":"IV无线能源仓","tr":"IV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12505":{"name":"进阶作物基因提取机 IV","tr":"进阶作物基因提取机 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"218":{"name":"LuV无线能源仓","tr":"LuV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12506":{"name":"进阶作物基因提取机 V","tr":"进阶作物基因提取机 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"219":{"name":"ZPM无线能源仓","tr":"ZPM无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12507":{"name":"进阶作物基因提取机 VI","tr":"进阶作物基因提取机 VI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12508":{"name":"进阶作物基因提取机 VII","tr":"进阶作物基因提取机 VII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12509":{"name":"进阶作物基因提取机 VIII","tr":"进阶作物基因提取机 VIII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12510":{"name":"基础作物复制机","tr":"基础作物复制机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12511":{"name":"进阶作物复制机 I","tr":"进阶作物复制机 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12512":{"name":"进阶作物复制机 II","tr":"进阶作物复制机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12513":{"name":"进阶作物复制机 III","tr":"进阶作物复制机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12514":{"name":"进阶作物复制机 IV","tr":"进阶作物复制机 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"227":{"name":"UV无线能源仓","tr":"UV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12515":{"name":"进阶作物复制机 V","tr":"进阶作物复制机 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12516":{"name":"进阶作物复制机 VI","tr":"进阶作物复制机 VI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"229":{"name":"UHV无线能源仓","tr":"UHV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12517":{"name":"进阶作物复制机 VII","tr":"进阶作物复制机 VII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12518":{"name":"进阶作物复制机 VIII","tr":"进阶作物复制机 VIII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12519":{"name":"基础作物合成机","tr":"基础作物合成机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12520":{"name":"进阶作物合成机 I","tr":"进阶作物合成机 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12521":{"name":"进阶作物合成机 II","tr":"进阶作物合成机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12522":{"name":"进阶作物合成机 III","tr":"进阶作物合成机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12523":{"name":"进阶作物合成机 IV","tr":"进阶作物合成机 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12524":{"name":"进阶作物合成机 V","tr":"进阶作物合成机 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12525":{"name":"进阶作物合成机 VI","tr":"进阶作物合成机 VI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12526":{"name":"进阶作物合成机 VII","tr":"进阶作物合成机 VII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12527":{"name":"进阶作物合成机 VIII","tr":"进阶作物合成机 VIII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12528":{"name":"基础作物除草机","tr":"基础作物除草机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"266":{"name":"UEV无线能源仓","tr":"UEV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"267":{"name":"UIV无线能源仓","tr":"UIV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"268":{"name":"UMV无线能源仓","tr":"UMV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"269":{"name":"UXV无线能源仓","tr":"UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"286":{"name":"MAX无线能源仓","tr":"MAX无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"287":{"name":"ULV无线动力仓","tr":"ULV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"288":{"name":"LV无线动力仓","tr":"LV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"289":{"name":"MV无线动力仓","tr":"MV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"296":{"name":"HV无线动力仓","tr":"HV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"297":{"name":"EV无线动力仓","tr":"EV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"298":{"name":"IV无线动力仓","tr":"IV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"299":{"name":"LuV无线动力仓","tr":"LuV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4396":{"oreDict":["frameGtBronze"," frameGtAnyBronze"],"name":"青铜框架","tr":"青铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4397":{"oreDict":["frameGtBrass"],"name":"黄铜框架","tr":"黄铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4398":{"oreDict":["frameGtInvar"],"name":"殷钢框架","tr":"殷钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4399":{"oreDict":["frameGtElectrum"],"name":"琥珀金框架","tr":"琥珀金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4400":{"oreDict":["frameGtAnyIron"," frameGtWroughtIron"],"name":"锻铁框架","tr":"锻铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4401":{"oreDict":["frameGtSteel"],"name":"钢框架","tr":"钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4402":{"oreDict":["frameGtStainlessSteel"],"name":"不锈钢框架","tr":"不锈钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4403":{"oreDict":["frameGtAnyIron"," frameGtPigIron"],"name":"生铁框架","tr":"生铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4404":{"oreDict":["frameGtRedAlloy"],"name":"红色合金框架","tr":"红色合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4405":{"oreDict":["frameGtBlueAlloy"],"name":"蓝色合金框架","tr":"蓝色合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"310":{"name":"ZPM无线动力仓","tr":"ZPM无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4406":{"oreDict":["frameGtCupronickel"],"name":"白铜框架","tr":"白铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4407":{"oreDict":["frameGtNichrome"],"name":"镍铬合金框架","tr":"镍铬合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4408":{"oreDict":["frameGtKanthal"],"name":"坎塔尔合金框架","tr":"坎塔尔合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4409":{"oreDict":["frameGtMagnalium"],"name":"镁铝合金框架","tr":"镁铝合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12601":{"name":"能量分配器(ULV)","tr":"能量分配器(ULV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4410":{"oreDict":["frameGtSolderingAlloy"],"name":"焊锡框架","tr":"焊锡框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12602":{"name":"能量分配器(LV)","tr":"能量分配器(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4411":{"oreDict":["frameGtBatteryAlloy"],"name":"电池合金框架","tr":"电池合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12603":{"name":"能量分配器(MV)","tr":"能量分配器(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"316":{"name":"UV无线动力仓","tr":"UV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4412":{"oreDict":["frameGtTungstenSteel"],"name":"钨钢框架","tr":"钨钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12604":{"name":"能量分配器(HV)","tr":"能量分配器(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"317":{"name":"UHV无线动力仓","tr":"UHV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4413":{"oreDict":["frameGtOsmiridium"],"name":"铱锇合金框架","tr":"铱锇合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12605":{"name":"能量分配器(EV)","tr":"能量分配器(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"318":{"name":"UEV无线动力仓","tr":"UEV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4414":{"oreDict":["frameGtSunnarium"],"name":"阳光化合物框架","tr":"阳光化合物框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12606":{"name":"能量分配器(IV)","tr":"能量分配器(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"319":{"name":"UIV无线动力仓","tr":"UIV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4415":{"oreDict":["frameGtAdamantium"],"name":"精金框架","tr":"精金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12607":{"name":"能量分配器(LuV)","tr":"能量分配器(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4416":{"oreDict":["frameGtElectrumFlux"],"name":"通流琥珀金框架","tr":"通流琥珀金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12608":{"name":"能量分配器(ZPM)","tr":"能量分配器(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4417":{"oreDict":["frameGtEnderium"],"name":"末影(te)框架","tr":"末影(te)框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12609":{"name":"能量分配器(UV)","tr":"能量分配器(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12610":{"name":"能量分配器(UHV)","tr":"能量分配器(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4419":{"oreDict":["frameGtInfusedGold"],"name":"注魔金框架","tr":"注魔金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12611":{"name":"能量分配器(UEV)","tr":"能量分配器(UEV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4420":{"oreDict":["frameGtNaquadah"],"name":"硅岩框架","tr":"硅岩框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12612":{"name":"能量分配器(UIV)","tr":"能量分配器(UIV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4421":{"oreDict":["frameGtNaquadahAlloy"],"name":"硅岩合金框架","tr":"硅岩合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12613":{"name":"能量分配器(UMV)","tr":"能量分配器(UMV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4422":{"oreDict":["frameGtNaquadahEnriched"],"name":"富集硅岩框架","tr":"富集硅岩框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12614":{"name":"能量分配器(UXV)","tr":"能量分配器(UXV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4423":{"oreDict":["frameGtNaquadria"],"name":"超能硅岩框架","tr":"超能硅岩框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12615":{"name":"能量分配器(MAX)","tr":"能量分配器(MAX)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4424":{"oreDict":["frameGtDuranium"],"name":"铿铀框架","tr":"铿铀框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4425":{"oreDict":["frameGtTritanium"],"name":"三钛框架","tr":"三钛框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12617":{"name":"线缆二极管 2A ULV","tr":"线缆二极管 2A ULV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4426":{"oreDict":["frameGtThaumium"],"name":"神秘框架","tr":"神秘框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12618":{"name":"线缆二极管 2A LV","tr":"线缆二极管 2A LV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4427":{"oreDict":["frameGtMithril"],"name":"秘银框架","tr":"秘银框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12619":{"name":"线缆二极管 2A MV","tr":"线缆二极管 2A MV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12620":{"name":"线缆二极管 2A HV","tr":"线缆二极管 2A HV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4429":{"oreDict":["frameGtAstralSilver"],"name":"星辰银框架","tr":"星辰银框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12621":{"name":"线缆二极管 2A EV","tr":"线缆二极管 2A EV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4430":{"oreDict":["frameGtBlackSteel"],"name":"黑钢框架","tr":"黑钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12622":{"name":"线缆二极管 2A IV","tr":"线缆二极管 2A IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4431":{"oreDict":["frameGtDamascusSteel"],"name":"大马士革钢框架","tr":"大马士革钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12623":{"name":"线缆二极管 2A LuV","tr":"线缆二极管 2A LuV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4432":{"oreDict":["frameGtShadowIron"],"name":"暗影铁框架","tr":"暗影铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12624":{"name":"线缆二极管 2A ZPM","tr":"线缆二极管 2A ZPM","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4433":{"oreDict":["frameGtShadowSteel"],"name":"暗影钢框架","tr":"暗影钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12625":{"name":"线缆二极管 2A UV","tr":"线缆二极管 2A UV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4434":{"oreDict":["frameGtIronWood"],"name":"铁木框架","tr":"铁木框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12626":{"name":"线缆二极管 2A UHV","tr":"线缆二极管 2A UHV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4435":{"oreDict":["frameGtSteeleaf"],"name":"钢叶框架","tr":"钢叶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12627":{"name":"线缆二极管 2A UEV","tr":"线缆二极管 2A UEV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4436":{"oreDict":["frameGtMeteoricIron"],"name":"陨铁框架","tr":"陨铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12628":{"name":"线缆二极管 2A UIV","tr":"线缆二极管 2A UIV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"341":{"name":"基础扫描仪","tr":"基础扫描仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4437":{"oreDict":["frameGtMeteoricSteel"],"name":"陨钢框架","tr":"陨钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12629":{"name":"线缆二极管 2A UMV","tr":"线缆二极管 2A UMV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"342":{"name":"进阶扫描仪","tr":"进阶扫描仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4438":{"oreDict":["frameGtDarkIron"],"name":"玄铁框架","tr":"玄铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12630":{"name":"线缆二极管 2A UXV","tr":"线缆二极管 2A UXV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"343":{"name":"进阶扫描仪 II","tr":"进阶扫描仪 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4439":{"oreDict":["frameGtCobaltBrass"],"name":"钴黄铜框架","tr":"钴黄铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12631":{"name":"线缆二极管 2A MAX","tr":"线缆二极管 2A MAX","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"344":{"name":"进阶扫描仪 III","tr":"进阶扫描仪 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4440":{"oreDict":["frameGtUltimet"],"name":"哈氏合金框架","tr":"哈氏合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"345":{"name":"进阶扫描仪 IV","tr":"进阶扫描仪 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4441":{"oreDict":["frameGtAnnealedCopper"," frameGtAnyCopper"],"name":"退火铜框架","tr":"退火铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12633":{"name":"线缆二极管 4A ULV","tr":"线缆二极管 4A ULV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"346":{"name":"UMV无线动力仓","tr":"UMV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4442":{"oreDict":["frameGtFierySteel"],"name":"炽热的钢框架","tr":"炽热的钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12634":{"name":"线缆二极管 4A LV","tr":"线缆二极管 4A LV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"347":{"name":"UXV无线动力仓","tr":"UXV无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12635":{"name":"线缆二极管 4A MV","tr":"线缆二极管 4A MV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"348":{"name":"MAX无线动力仓","tr":"MAX无线动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4444":{"oreDict":["frameGtRedSteel"],"name":"红钢框架","tr":"红钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12636":{"name":"线缆二极管 4A HV","tr":"线缆二极管 4A HV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"349":{"name":"进阶Debug结构打印机","tr":"进阶Debug结构打印机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4445":{"oreDict":["frameGtBlueSteel"],"name":"蓝钢框架","tr":"蓝钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12637":{"name":"线缆二极管 4A EV","tr":"线缆二极管 4A EV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4446":{"oreDict":["frameGtSterlingSilver"],"name":"标准纯银框架","tr":"标准纯银框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12638":{"name":"线缆二极管 4A IV","tr":"线缆二极管 4A IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4447":{"oreDict":["frameGtRoseGold"],"name":"玫瑰金框架","tr":"玫瑰金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12639":{"name":"线缆二极管 4A LuV","tr":"线缆二极管 4A LuV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4448":{"oreDict":["frameGtBlackBronze"],"name":"黑青铜框架","tr":"黑青铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12640":{"name":"线缆二极管 4A ZPM","tr":"线缆二极管 4A ZPM","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4449":{"oreDict":["frameGtBismuthBronze"],"name":"铋青铜框架","tr":"铋青铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12641":{"name":"线缆二极管 4A UV","tr":"线缆二极管 4A UV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4450":{"oreDict":["frameGtIronMagnetic"],"name":"磁化铁框架","tr":"磁化铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12642":{"name":"线缆二极管 4A UHV","tr":"线缆二极管 4A UHV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4451":{"oreDict":["frameGtSteelMagnetic"],"name":"磁化钢框架","tr":"磁化钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12643":{"name":"线缆二极管 4A UEV","tr":"线缆二极管 4A UEV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"356":{"name":"PCB工厂","tr":"PCB工厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4452":{"oreDict":["frameGtNeodymiumMagnetic"],"name":"磁化钕框架","tr":"磁化钕框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12644":{"name":"线缆二极管 4A UIV","tr":"线缆二极管 4A UIV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"357":{"name":"纳米锻炉","tr":"纳米锻炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4453":{"oreDict":["frameGtVanadiumGallium"],"name":"钒镓合金框架","tr":"钒镓合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12645":{"name":"线缆二极管 4A UMV","tr":"线缆二极管 4A UMV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4454":{"oreDict":["frameGtYttriumBariumCuprate"],"name":"钇钡铜氧框架","tr":"钇钡铜氧框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12646":{"name":"线缆二极管 4A UXV","tr":"线缆二极管 4A UXV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4455":{"oreDict":["frameGtNiobiumNitride"],"name":"氮化铌框架","tr":"氮化铌框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12647":{"name":"线缆二极管 4A MAX","tr":"线缆二极管 4A MAX","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4456":{"oreDict":["frameGtNiobiumTitanium"],"name":"铌钛合金框架","tr":"铌钛合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4457":{"oreDict":["frameGtChromiumDioxide"],"name":"二氧化铬框架","tr":"二氧化铬框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12649":{"name":"线缆二极管 8A ULV","tr":"线缆二极管 8A ULV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4458":{"oreDict":["frameGtKnightmetal"],"name":"骑士金属框架","tr":"骑士金属框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12650":{"name":"线缆二极管 8A LV","tr":"线缆二极管 8A LV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4459":{"oreDict":["frameGtTinAlloy"],"name":"锡铁合金框架","tr":"锡铁合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12651":{"name":"线缆二极管 8A MV","tr":"线缆二极管 8A MV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4460":{"oreDict":["frameGtDarkSteel"],"name":"玄钢框架","tr":"玄钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12652":{"name":"线缆二极管 8A HV","tr":"线缆二极管 8A HV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4461":{"oreDict":["frameGtElectricalSteel"],"name":"磁钢框架","tr":"磁钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12653":{"name":"线缆二极管 8A EV","tr":"线缆二极管 8A EV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4462":{"oreDict":["frameGtEnergeticAlloy"],"name":"充能合金框架","tr":"充能合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12654":{"name":"线缆二极管 8A IV","tr":"线缆二极管 8A IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4463":{"oreDict":["frameGtVibrantAlloy"],"name":"脉冲合金框架","tr":"脉冲合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12655":{"name":"线缆二极管 8A LuV","tr":"线缆二极管 8A LuV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4464":{"oreDict":["frameGtShadow"],"name":"暗影金属框架","tr":"暗影金属框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12656":{"name":"线缆二极管 8A ZPM","tr":"线缆二极管 8A ZPM","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4465":{"oreDict":["frameGtConductiveIron"],"name":"导电铁框架","tr":"导电铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12657":{"name":"线缆二极管 8A UV","tr":"线缆二极管 8A UV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4466":{"oreDict":["frameGtTungstenCarbide"],"name":"碳化钨框架","tr":"碳化钨框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12658":{"name":"线缆二极管 8A UHV","tr":"线缆二极管 8A UHV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4467":{"oreDict":["frameGtVanadiumSteel"],"name":"钒钢框架","tr":"钒钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12659":{"name":"线缆二极管 8A UEV","tr":"线缆二极管 8A UEV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4468":{"oreDict":["frameGtHSSG"],"name":"高速钢-G框架","tr":"高速钢-G框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12660":{"name":"线缆二极管 8A UIV","tr":"线缆二极管 8A UIV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4469":{"oreDict":["frameGtHSSE"],"name":"高速钢-E框架","tr":"高速钢-E框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12661":{"name":"线缆二极管 8A UMV","tr":"线缆二极管 8A UMV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4470":{"oreDict":["frameGtHSSS"],"name":"高速钢-S框架","tr":"高速钢-S框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12662":{"name":"线缆二极管 8A UXV","tr":"线缆二极管 8A UXV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12663":{"name":"线缆二极管 8A MAX","tr":"线缆二极管 8A MAX","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12665":{"name":"线缆二极管 12A ULV","tr":"线缆二极管 12A ULV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4474":{"oreDict":["frameGtPulsatingIron"],"name":"脉冲铁框架","tr":"脉冲铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12666":{"name":"线缆二极管 12A LV","tr":"线缆二极管 12A LV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4475":{"oreDict":["frameGtSoularium"],"name":"魂金框架","tr":"魂金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12667":{"name":"线缆二极管 12A MV","tr":"线缆二极管 12A MV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4476":{"oreDict":["frameGtEnderiumBase"],"name":"末影粗胚框架","tr":"末影粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12668":{"name":"线缆二极管 12A HV","tr":"线缆二极管 12A HV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4477":{"oreDict":["frameGtRedstoneAlloy"],"name":"红石合金框架","tr":"红石合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12669":{"name":"线缆二极管 12A EV","tr":"线缆二极管 12A EV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4478":{"oreDict":["frameGtArdite"],"name":"阿迪特框架","tr":"阿迪特框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12670":{"name":"线缆二极管 12A IV","tr":"线缆二极管 12A IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4479":{"oreDict":["frameGtReinforced"],"name":"强化框架","tr":"强化框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12671":{"name":"线缆二极管 12A LuV","tr":"线缆二极管 12A LuV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4480":{"oreDict":["frameGtGalgadorian"],"name":"混合晶框架","tr":"混合晶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12672":{"name":"线缆二极管 12A ZPM","tr":"线缆二极管 12A ZPM","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4481":{"oreDict":["frameGtEnhancedGalgadorian"],"name":"强化混合晶框架","tr":"强化混合晶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12673":{"name":"线缆二极管 12A UV","tr":"线缆二极管 12A UV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4482":{"oreDict":["frameGtManyullyn"],"name":"玛玉灵框架","tr":"玛玉灵框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12674":{"name":"线缆二极管 12A UHV","tr":"线缆二极管 12A UHV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4483":{"oreDict":["frameGtMytryl"],"name":"深空秘银框架","tr":"深空秘银框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12675":{"name":"线缆二极管 12A UEV","tr":"线缆二极管 12A UEV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4484":{"oreDict":["frameGtBlackPlutonium"],"name":"黑钚框架","tr":"黑钚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12676":{"name":"线缆二极管 12A UIV","tr":"线缆二极管 12A UIV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4485":{"oreDict":["frameGtCallistoIce"],"name":"木卫四冰框架","tr":"木卫四冰框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12677":{"name":"线缆二极管 12A UMV","tr":"线缆二极管 12A UMV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4486":{"oreDict":["frameGtLedox"],"name":"深铅框架","tr":"深铅框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12678":{"name":"线缆二极管 12A UXV","tr":"线缆二极管 12A UXV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4487":{"oreDict":["frameGtQuantium"],"name":"量子框架","tr":"量子框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12679":{"name":"线缆二极管 12A MAX","tr":"线缆二极管 12A MAX","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4488":{"oreDict":["frameGtDuralumin"],"name":"硬铝框架","tr":"硬铝框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4489":{"oreDict":["frameGtOriharukon"],"name":"奥利哈钢框架","tr":"奥利哈钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12681":{"name":"线缆二极管 16A ULV","tr":"线缆二极管 16A ULV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4490":{"oreDict":["frameGtInfinityCatalyst"],"name":"无尽催化剂框架","tr":"无尽催化剂框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12682":{"name":"线缆二极管 16A LV","tr":"线缆二极管 16A LV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4491":{"oreDict":["frameGtBedrockium"],"name":"基岩框架","tr":"基岩框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12683":{"name":"线缆二极管 16A MV","tr":"线缆二极管 16A MV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12684":{"name":"线缆二极管 16A HV","tr":"线缆二极管 16A HV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4493":{"oreDict":["frameGtInfinity"],"name":"无尽框架","tr":"无尽框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12685":{"name":"线缆二极管 16A EV","tr":"线缆二极管 16A EV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4494":{"oreDict":["frameGtMysteriousCrystal"],"name":"神秘水晶框架","tr":"神秘水晶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12686":{"name":"线缆二极管 16A IV","tr":"线缆二极管 16A IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4495":{"oreDict":["frameGtSamariumMagnetic"],"name":"磁化钐框架","tr":"磁化钐框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12687":{"name":"线缆二极管 16A LuV","tr":"线缆二极管 16A LuV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4496":{"oreDict":["frameGtAlumite"],"name":"耐酸铝框架","tr":"耐酸铝框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12688":{"name":"线缆二极管 16A ZPM","tr":"线缆二极管 16A ZPM","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"401":{"name":"基础打包机","tr":"基础打包机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4497":{"oreDict":["frameGtEndSteel"],"name":"末影钢框架","tr":"末影钢框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12689":{"name":"线缆二极管 16A UV","tr":"线缆二极管 16A UV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"402":{"name":"进阶打包机","tr":"进阶打包机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4498":{"oreDict":["frameGtCrudeSteel"],"name":"复合粘土框架","tr":"复合粘土框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12690":{"name":"线缆二极管 16A UHV","tr":"线缆二极管 16A UHV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"403":{"name":"进阶打包机 II","tr":"进阶打包机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4499":{"oreDict":["frameGtCrystallineAlloy"],"name":"晶化合金框架","tr":"晶化合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12691":{"name":"线缆二极管 16A UEV","tr":"线缆二极管 16A UEV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"404":{"name":"进阶打包机 III","tr":"进阶打包机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4500":{"oreDict":["frameGtMelodicAlloy"],"name":"旋律合金框架","tr":"旋律合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12692":{"name":"线缆二极管 16A UIV","tr":"线缆二极管 16A UIV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"405":{"name":"进阶打包机 IV","tr":"进阶打包机 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4501":{"oreDict":["frameGtStellarAlloy"],"name":"恒星合金框架","tr":"恒星合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12693":{"name":"线缆二极管 16A UMV","tr":"线缆二极管 16A UMV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"406":{"name":"精英打包机 I","tr":"精英打包机 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4502":{"oreDict":["frameGtCrystallinePinkSlime"],"name":"晶化粉红史莱姆框架","tr":"晶化粉红史莱姆框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12694":{"name":"线缆二极管 16A UXV","tr":"线缆二极管 16A UXV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"407":{"name":"精英打包机 II","tr":"精英打包机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4503":{"oreDict":["frameGtEnergeticSilver"],"name":"充能银框架","tr":"充能银框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12695":{"name":"线缆二极管 16A MAX","tr":"线缆二极管 16A MAX","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"408":{"name":"终极装箱者","tr":"终极装箱者","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4504":{"oreDict":["frameGtVividAlloy"],"name":"生动合金框架","tr":"生动合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12726":{"name":"酸性发电机(MV)","tr":"酸性发电机(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12727":{"name":"酸性发电机(HV)","tr":"酸性发电机(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12728":{"name":"酸性发电机(EV)","tr":"酸性发电机(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"441":{"name":"基础碎石机","tr":"基础碎石机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12729":{"name":"深地热泵","tr":"深地热泵","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"442":{"name":"进阶碎石机","tr":"进阶碎石机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12730":{"name":"巨型工业高炉","tr":"巨型工业高炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"443":{"name":"进阶碎石机 II","tr":"进阶碎石机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12731":{"name":"巨型真空冷冻机","tr":"巨型真空冷冻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"444":{"name":"进阶碎石机 III","tr":"进阶碎石机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12732":{"name":"大型硅岩反应堆","tr":"大型硅岩反应堆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"445":{"name":"低温岩浆固化者R-8200","tr":"低温岩浆固化者R-8200","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12733":{"name":"钍高温反应堆","tr":"钍高温反应堆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12734":{"name":"电动聚爆压缩机","tr":"电动聚爆压缩机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12735":{"name":"电路装配线","tr":"电路装配线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12736":{"name":"液态空气仓","tr":"液态空气仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12737":{"name":"巨型输出仓","tr":"巨型输出仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12738":{"name":"巨型蒸馏塔","tr":"巨型蒸馏塔","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12739":{"name":"虚空采矿场 III","tr":"虚空采矿场 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12740":{"name":"虚空采矿场 II","tr":"虚空采矿场 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12741":{"name":"虚空采矿场 I","tr":"虚空采矿场 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12742":{"name":"低功率激光管","tr":"低功率激光管","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12743":{"name":"EV 32A/t 低功率激光转换器","tr":"EV 32A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12744":{"name":"IV 32A/t 低功率激光转换器","tr":"IV 32A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12745":{"name":"LuV 32A/t 低功率激光转换器","tr":"LuV 32A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12746":{"name":"ZPM 32A/t 低功率激光转换器","tr":"ZPM 32A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12747":{"name":"EV 64A/t 低功率激光转换器","tr":"EV 64A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12748":{"name":"IV 64A/t 低功率激光转换器","tr":"IV 64A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"461":{"name":"基础质量发生器","tr":"基础质量发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12749":{"name":"LuV 64A/t 低功率激光转换器","tr":"LuV 64A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"462":{"name":"进阶质量发生器","tr":"进阶质量发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12750":{"name":"ZPM 64A/t 低功率激光转换器","tr":"ZPM 64A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"463":{"name":"进阶质量发生器 II","tr":"进阶质量发生器 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12751":{"name":"EV 96A/t 低功率激光转换器","tr":"EV 96A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"464":{"name":"进阶质量发生器 III","tr":"进阶质量发生器 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12752":{"name":"IV 96A/t 低功率激光转换器","tr":"IV 96A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"465":{"name":"进阶质量发生器 IV","tr":"进阶质量发生器 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12753":{"name":"LuV 96A/t 低功率激光转换器","tr":"LuV 96A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12754":{"name":"ZPM 96A/t 低功率激光转换器","tr":"ZPM 96A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12755":{"name":"EV 128A/t 低功率激光转换器","tr":"EV 128A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12756":{"name":"IV 128A/t 低功率激光转换器","tr":"IV 128A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12757":{"name":"LuV 128A/t 低功率激光转换器","tr":"LuV 128A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4566":{"oreDict":["frameGtEpoxid"],"name":"环氧树脂框架","tr":"环氧树脂框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12758":{"name":"ZPM 128A/t 低功率激光转换器","tr":"ZPM 128A/t 低功率激光转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4567":{"oreDict":["frameGtSilicone"," frameGtAnyRubber"," frameGtAnySyntheticRubber"],"name":"硅橡胶框架","tr":"硅橡胶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12759":{"name":"EV 32A/t 低功率激光靶仓","tr":"EV 32A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4568":{"oreDict":["frameGtPolycaprolactam"],"name":"聚己内酰胺框架","tr":"聚己内酰胺框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12760":{"name":"IV 32A/t 低功率激光靶仓","tr":"IV 32A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4569":{"oreDict":["frameGtPolytetrafluoroethylene"],"name":"聚四氟乙烯框架","tr":"聚四氟乙烯框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12761":{"name":"LuV 32A/t 低功率激光靶仓","tr":"LuV 32A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12762":{"name":"ZPM 32A/t 低功率激光靶仓","tr":"ZPM 32A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12763":{"name":"EV 64A/t 低功率激光靶仓","tr":"EV 64A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12764":{"name":"IV 64A/t 低功率激光靶仓","tr":"IV 64A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12765":{"name":"LuV 64A/t 低功率激光靶仓","tr":"LuV 64A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12766":{"name":"ZPM 64A/t 低功率激光靶仓","tr":"ZPM 64A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12767":{"name":"EV 96A/t 低功率激光靶仓","tr":"EV 96A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12768":{"name":"IV 96A/t 低功率激光靶仓","tr":"IV 96A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"481":{"name":"基础复制机","tr":"基础复制机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12769":{"name":"LuV 96A/t 低功率激光靶仓","tr":"LuV 96A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"482":{"name":"进阶复制机","tr":"进阶复制机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12770":{"name":"ZPM 96A/t 低功率激光靶仓","tr":"ZPM 96A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"483":{"name":"进阶复制机 II","tr":"进阶复制机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12771":{"name":"EV 128A/t 低功率激光靶仓","tr":"EV 128A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"484":{"name":"进阶复制机 III","tr":"进阶复制机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12772":{"name":"IV 128A/t 低功率激光靶仓","tr":"IV 128A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"485":{"name":"进阶复制机 IV","tr":"进阶复制机 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4581":{"oreDict":["frameGtAlduorite"],"name":"神秘蓝金框架","tr":"神秘蓝金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12773":{"name":"LuV 128A/t 低功率激光靶仓","tr":"LuV 128A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12774":{"name":"ZPM 128A/t 低功率激光靶仓","tr":"ZPM 128A/t 低功率激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12775":{"name":"EV 32A/t 低功率激光源仓","tr":"EV 32A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4584":{"oreDict":["frameGtRubracium"],"name":"褐铜框架","tr":"褐铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12776":{"name":"IV 32A/t 低功率激光源仓","tr":"IV 32A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4585":{"oreDict":["frameGtVulcanite"],"name":"胶木框架","tr":"胶木框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12777":{"name":"LuV 32A/t 低功率激光源仓","tr":"LuV 32A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12778":{"name":"ZPM 32A/t 低功率激光源仓","tr":"ZPM 32A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"491":{"name":"基础酿造室","tr":"基础酿造室","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12779":{"name":"EV 64A/t 低功率激光源仓","tr":"EV 64A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"492":{"name":"进阶酿造室","tr":"进阶酿造室","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12780":{"name":"IV 64A/t 低功率激光源仓","tr":"IV 64A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"493":{"name":"进阶酿造室 II","tr":"进阶酿造室 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12781":{"name":"LuV 64A/t 低功率激光源仓","tr":"LuV 64A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"494":{"name":"进阶酿造室 III","tr":"进阶酿造室 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12782":{"name":"ZPM 64A/t 低功率激光源仓","tr":"ZPM 64A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"495":{"name":"进阶酿造室 IV","tr":"进阶酿造室 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12783":{"name":"EV 96A/t 低功率激光源仓","tr":"EV 96A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12784":{"name":"IV 96A/t 低功率激光源仓","tr":"IV 96A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12785":{"name":"LuV 96A/t 低功率激光源仓","tr":"LuV 96A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12786":{"name":"ZPM 96A/t 低功率激光源仓","tr":"ZPM 96A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12787":{"name":"EV 128A/t 低功率激光源仓","tr":"EV 128A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12788":{"name":"IV 128A/t 低功率激光源仓","tr":"IV 128A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12789":{"name":"LuV 128A/t 低功率激光源仓","tr":"LuV 128A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12790":{"name":"ZPM 128A/t 低功率激光源仓","tr":"ZPM 128A/t 低功率激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12791":{"name":"高温气冷反应堆","tr":"高温气冷反应堆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12793":{"name":"酸性发电机(LV)","tr":"酸性发电机(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12799":{"name":"巨型输入仓","tr":"巨型输入仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4617":{"oreDict":["frameGtForce"],"name":"力量框架","tr":"力量框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4625":{"oreDict":["frameGtVinteum"],"name":"温特姆框架","tr":"温特姆框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4672":{"oreDict":["frameGtTPVAlloy"],"name":"钛铂钒合金框架","tr":"钛铂钒合金框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4677":{"oreDict":["frameGtTranscendentMetal"],"name":"超时空金属框架","tr":"超时空金属框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4678":{"oreDict":["frameGtEnrichedHolmium"],"name":"富集钬框架","tr":"富集钬框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4679":{"oreDict":["frameGtMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质框架","tr":"磁流体约束恒星物质框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4681":{"oreDict":["frameGtWhiteDwarfMatter"],"name":"白矮星物质框架","tr":"白矮星物质框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4682":{"oreDict":["frameGtBlackDwarfMatter"],"name":"黑矮星物质框架","tr":"黑矮星物质框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4684":{"oreDict":["frameGtSpaceTime"],"name":"时空框架","tr":"时空框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4695":{"oreDict":["frameGtPolybenzimidazole"],"name":"聚苯并咪唑框架","tr":"聚苯并咪唑框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4706":{"oreDict":["frameGtEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂框架","tr":"纤维强化的环氧树脂框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4707":{"oreDict":["frameGtBorosilicateGlass"],"name":"硼玻璃框架","tr":"硼玻璃框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4709":{"oreDict":["frameGtNickelZincFerrite"],"name":"镍锌铁氧体框架","tr":"镍锌铁氧体框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16999":{"name":"硅岩燃料精炼厂","tr":"硅岩燃料精炼厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17000":{"name":"水库","tr":"水库","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17002":{"name":"水泵(LV)","tr":"水泵(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17003":{"name":"水泵(MV)","tr":"水泵(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17004":{"name":"水泵(HV)","tr":"水泵(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17005":{"name":"水泵(EV)","tr":"水泵(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17006":{"name":"水泵(IV)","tr":"水泵(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17007":{"name":"水泵(LuV)","tr":"水泵(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17008":{"name":"水泵(ZPM)","tr":"水泵(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17009":{"name":"水泵(UV)","tr":"水泵(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17010":{"name":"水泵(UHV)","tr":"水泵(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17011":{"name":"水泵(UEV)","tr":"水泵(UEV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17012":{"name":"水泵(UIV)","tr":"水泵(UIV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17013":{"name":"水泵(UMV)","tr":"水泵(UMV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17014":{"name":"水泵(UXV)","tr":"水泵(UXV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4727":{"oreDict":["frameGtPolyphenyleneSulfide"],"name":"聚苯硫醚框架","tr":"聚苯硫醚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17015":{"name":"水泵(MAX)","tr":"水泵(MAX)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17018":{"name":"水轮机(LV)","tr":"水轮机(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4731":{"oreDict":["frameGtStyreneButadieneRubber"," frameGtAnyRubber"," frameGtAnySyntheticRubber"],"name":"丁苯橡胶框架","tr":"丁苯橡胶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17019":{"name":"水轮机(MV)","tr":"水轮机(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4732":{"oreDict":["frameGtPolystyrene"],"name":"聚苯乙烯框架","tr":"聚苯乙烯框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17020":{"name":"水轮机(HV)","tr":"水轮机(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17021":{"name":"水轮机(EV)","tr":"水轮机(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17022":{"name":"水轮机(IV)","tr":"水轮机(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17023":{"name":"水轮机(LuV)","tr":"水轮机(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17024":{"name":"水轮机(ZPM)","tr":"水轮机(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17025":{"name":"水轮机(UV)","tr":"水轮机(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17026":{"name":"水轮机(UHV)","tr":"水轮机(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17027":{"name":"水轮机(UEV)","tr":"水轮机(UEV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17028":{"name":"水轮机(UIV)","tr":"水轮机(UIV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17029":{"name":"水轮机(UMV)","tr":"水轮机(UMV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17030":{"name":"水轮机(UXV)","tr":"水轮机(UXV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"17031":{"name":"水轮机(MAX)","tr":"水轮机(MAX)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4745":{"oreDict":["frameGtPolyvinylChloride"],"name":"聚氯乙烯框架","tr":"聚氯乙烯框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"679":{"name":"基础采矿机","tr":"基础采矿机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"680":{"name":"优良采矿机","tr":"优良采矿机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"681":{"name":"进阶采矿机","tr":"进阶采矿机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"690":{"name":"超低压电池充电器","tr":"超低压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"691":{"name":"低压电池充电器","tr":"低压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"692":{"name":"中压电池充电器","tr":"中压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"693":{"name":"高压电池充电器","tr":"高压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"694":{"name":"超高压电池充电器","tr":"超高压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"695":{"name":"强导压电池充电器","tr":"强导压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"696":{"name":"剧差压电池充电器","tr":"剧差压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"697":{"name":"零点压电池充电器","tr":"零点压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"698":{"name":"极限压电池充电器","tr":"极限压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"699":{"name":"极高压电池充电器","tr":"极高压电池充电器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"710":{"name":"四重输入仓(IV)","tr":"四重输入仓(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"711":{"name":"四重输入仓(LuV)","tr":"四重输入仓(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"712":{"name":"四重输入仓(ZPM)","tr":"四重输入仓(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"713":{"name":"四重输入仓(UV)","tr":"四重输入仓(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13001":{"name":"奥法研究阐释者","tr":"奥法研究阐释者","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"714":{"name":"四重输入仓(UHV)","tr":"四重输入仓(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"715":{"name":"四重输入仓(UEV)","tr":"四重输入仓(UEV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"716":{"name":"四重输入仓(UIV)","tr":"四重输入仓(UIV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"717":{"name":"四重输入仓(UMV)","tr":"四重输入仓(UMV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"718":{"name":"四重输入仓(UXV)","tr":"四重输入仓(UXV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"719":{"name":"巨型四重输入仓","tr":"巨型四重输入仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"749":{"name":"反应堆熔盐加工厂","tr":"反应堆熔盐加工厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"751":{"name":"液态氟钍反应堆","tr":"液态氟钍反应堆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"752":{"name":"树场结构方块","tr":"树场结构方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"753":{"name":"进阶锅炉[LV]","tr":"进阶锅炉[LV]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"754":{"name":"进阶锅炉[MV]","tr":"进阶锅炉[MV]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"755":{"name":"进阶锅炉[HV]","tr":"进阶锅炉[HV]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"756":{"name":"污染探测仪","tr":"污染探测仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"758":{"name":"中级污染清洗机","tr":"中级污染清洗机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"759":{"name":"进阶污染清洗机","tr":"进阶污染清洗机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"760":{"name":"精准污染清洗机","tr":"精准污染清洗机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"761":{"name":"空气回收器","tr":"空气回收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"762":{"name":"中级空气回收器","tr":"中级空气回收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"763":{"name":"进阶空气回收器","tr":"进阶空气回收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"764":{"name":"精准空气回收器","tr":"精准空气回收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"765":{"name":"大气圈净化者","tr":"大气圈净化者","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4861":{"oreDict":["frameGtKevlar"],"name":"凯芙拉框架","tr":"凯芙拉框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"766":{"name":"生物圈净化者","tr":"生物圈净化者","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"767":{"name":"[弃用]简易洗矿池 I","tr":"[弃用]简易洗矿池 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"770":{"name":"超低压能量缓冲器","tr":"超低压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4866":{"oreDict":["frameGtHeeEndium"],"name":"终末框架","tr":"终末框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"771":{"name":"低压能量缓冲器","tr":"低压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"772":{"name":"中压能量缓冲器","tr":"中压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4868":{"oreDict":["frameGtNickelAluminide"],"name":"铝化镍框架","tr":"铝化镍框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"773":{"name":"高压能量缓冲器","tr":"高压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"774":{"name":"超高压能量缓冲器","tr":"超高压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"775":{"name":"强导压能量缓冲器","tr":"强导压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"776":{"name":"剧差压能量缓冲器","tr":"剧差压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"777":{"name":"零点压能量缓冲器","tr":"零点压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"778":{"name":"极限压能量缓冲器","tr":"极限压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"779":{"name":"极高压能量缓冲器","tr":"极高压能量缓冲器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"790":{"name":"工业离心机","tr":"工业离心机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"791":{"name":"工业焦炉","tr":"工业焦炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"792":{"name":"工业辊压机","tr":"工业辊压机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"793":{"name":"基础火箭引擎","tr":"基础火箭引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"794":{"name":"进阶火箭引擎","tr":"进阶火箭引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"795":{"name":"涡轮火箭引擎","tr":"涡轮火箭引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"796":{"name":"工业电解机","tr":"工业电解机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"797":{"name":"工业粉碎机","tr":"工业粉碎机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"798":{"name":"工业线缆机","tr":"工业线缆机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"799":{"name":"质量发生器CPU","tr":"质量发生器CPU","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4900":{"oreDict":["frameGtObsidian"],"name":"黑曜石框架","tr":"黑曜石框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4905":{"oreDict":["frameGtWood"],"name":"木框架","tr":"木框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"810":{"name":"合金冶炼炉","tr":"合金冶炼炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"811":{"name":"工业搅拌机","tr":"工业搅拌机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"812":{"name":"能源站控制节点","tr":"能源站控制节点","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"813":{"name":"化学脱水机 I","tr":"化学脱水机 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"814":{"name":"化学脱水机 II","tr":"化学脱水机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"815":{"name":"化学脱水机 III","tr":"化学脱水机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"816":{"name":"化学脱水机 IV","tr":"化学脱水机 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"817":{"name":"超低压流体储罐","tr":"超低压流体储罐","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"818":{"name":"低压流体储罐","tr":"低压流体储罐","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"819":{"name":"中压流体储罐","tr":"中压流体储罐","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"820":{"name":"高压流体储罐","tr":"高压流体储罐","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"828":{"name":"COMET-紧凑式回旋加速器","tr":"COMET-紧凑式回旋加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"829":{"name":"珠海渔场","tr":"珠海渔场","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4925":{"oreDict":["frameGtDeepIron"],"name":"深渊铁框架","tr":"深渊铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"830":{"name":"基础地热引擎","tr":"基础地热引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"831":{"name":"涡轮地热引擎","tr":"涡轮地热引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"832":{"name":"火神地热引擎","tr":"火神地热引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"833":{"name":"超立方体发生器","tr":"超立方体发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"834":{"name":"超立方体终端","tr":"超立方体终端","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"835":{"name":"反应堆燃料加工厂","tr":"反应堆燃料加工厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"836":{"name":"原木拟生场","tr":"原木拟生场","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"837":{"name":"基础半流质发电机","tr":"基础半流质发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"838":{"name":"进阶半流质发电机","tr":"进阶半流质发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"839":{"name":"涡轮半流质发电机","tr":"涡轮半流质发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"840":{"name":"工业筛选机","tr":"工业筛选机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"849":{"name":"工业热力精炼厂","tr":"工业热力精炼厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"850":{"name":"工业洗矿厂","tr":"工业洗矿厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4952":{"oreDict":["frameGtSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)框架","tr":"太阳能级硅(多晶硅)框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"859":{"name":"工业压模机","tr":"工业压模机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"860":{"name":"大型加工厂","tr":"大型加工厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"861":{"name":"进气仓","tr":"进气仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"862":{"name":"工业电弧炉","tr":"工业电弧炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"863":{"name":"太阳能塔","tr":"太阳能塔","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"864":{"name":"太阳能反射器","tr":"太阳能反射器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"865":{"name":"特大蒸汽涡轮","tr":"特大蒸汽涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"866":{"name":"特大高压蒸汽涡轮","tr":"特大高压蒸汽涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4964":{"oreDict":["frameGtTrinium"],"name":"三元金属框架","tr":"三元金属框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"869":{"name":"放射性同位素温差发电机","tr":"放射性同位素温差发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4970":{"oreDict":["frameGtPlastic"],"name":"聚乙烯框架","tr":"聚乙烯框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"875":{"name":"地热锅炉","tr":"地热锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"876":{"name":"大规模自动装配机v1.01","tr":"大规模自动装配机v1.01","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"877":{"name":"ULV高电流变压器","tr":"ULV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"878":{"name":"LV高电流变压器","tr":"LV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"879":{"name":"MV高电流变压器","tr":"MV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"880":{"name":"HV高电流变压器","tr":"HV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4976":{"oreDict":["frameGtAnyRubber"," frameGtRubber"],"name":"橡胶框架","tr":"橡胶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"881":{"name":"EV高电流变压器","tr":"EV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"882":{"name":"IV高电流变压器","tr":"IV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"883":{"name":"LuV高电流变压器","tr":"LuV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"884":{"name":"ZPM高电流变压器","tr":"ZPM高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4980":{"oreDict":["frameGtDesh"],"name":"戴斯框架","tr":"戴斯框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"885":{"name":"UV高电流变压器","tr":"UV高电流变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"886":{"name":"电池输入总线(MV)","tr":"电池输入总线(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"887":{"name":"电池输入总线(EV)","tr":"电池输入总线(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"888":{"name":"电池输出总线(MV)","tr":"电池输出总线(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"889":{"name":"电池输出总线(EV)","tr":"电池输出总线(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4985":{"oreDict":["frameGtWoodSealed"],"name":"蜡封木框架","tr":"蜡封木框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"890":{"name":"无线充电器 MK I","tr":"无线充电器 MK I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"891":{"name":"无线充电器 MK II","tr":"无线充电器 MK II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"892":{"name":"无线充电器 MK III","tr":"无线充电器 MK III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"893":{"name":"无线充电器 MK IV","tr":"无线充电器 MK IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"894":{"name":"无线充电器 MK V","tr":"无线充电器 MK V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"895":{"name":"无线充电器 MK VI","tr":"无线充电器 MK VI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"896":{"name":"无线充电器 MK VII","tr":"无线充电器 MK VII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"897":{"name":"无线充电器 MK VIII","tr":"无线充电器 MK VIII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"898":{"name":"无线充电器 MK IX","tr":"无线充电器 MK IX","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"899":{"name":"ULV动力仓[缓冲]","tr":"ULV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"900":{"name":"LV动力仓[缓冲]","tr":"LV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"901":{"name":"MV动力仓[缓冲]","tr":"MV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"902":{"name":"HV动力仓[缓冲]","tr":"HV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"903":{"name":"EV动力仓[缓冲]","tr":"EV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"904":{"name":"IV动力仓[缓冲]","tr":"IV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"905":{"name":"LuV动力仓[缓冲]","tr":"LuV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"906":{"name":"ZPM动力仓[缓冲]","tr":"ZPM动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"907":{"name":"UV动力仓[缓冲]","tr":"UV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"908":{"name":"UHV动力仓[缓冲]","tr":"UHV动力仓[缓冲]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"910":{"name":"凛冰冷冻机","tr":"凛冰冷冻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"911":{"name":"基础脱水机 I","tr":"基础脱水机 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"912":{"name":"基础脱水机 II","tr":"基础脱水机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5008":{"oreDict":["frameGtChrysotile"],"name":"白石棉框架","tr":"白石棉框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5009":{"oreDict":["frameGtRealgar"],"name":"雄黄框架","tr":"雄黄框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"942":{"name":"亚马逊仓库","tr":"亚马逊仓库","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"946":{"name":"超级箱 I [禁用]","tr":"超级箱 I [禁用]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"947":{"name":"超级箱 II [禁用]","tr":"超级箱 II [禁用]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"948":{"name":"超级箱 III [禁用]","tr":"超级箱 III [禁用]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"949":{"name":"超级箱 IV [禁用]","tr":"超级箱 IV [禁用]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"950":{"name":"超级箱 V [禁用]","tr":"超级箱 V [禁用]","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"951":{"name":"雾霾生成仪","tr":"雾霾生成仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5047":{"oreDict":["frameGtVyroxeres"],"name":"幽冥剧毒结晶框架","tr":"幽冥剧毒结晶框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5048":{"oreDict":["frameGtCeruclase"],"name":"暗影秘银框架","tr":"暗影秘银框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"956":{"name":"污染研究者","tr":"污染研究者","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5052":{"oreDict":["frameGtTartarite"],"name":"溶火之石框架","tr":"溶火之石框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"963":{"name":"炽焱高炉","tr":"炽焱高炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"964":{"name":"进阶聚爆压缩机","tr":"进阶聚爆压缩机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"965":{"name":"核聚变反应堆控制电脑MK IV","tr":"核聚变反应堆控制电脑MK IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5062":{"oreDict":["frameGtOrichalcum"],"name":"山铜框架","tr":"山铜框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"967":{"name":"凛冰输入仓","tr":"凛冰输入仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"968":{"name":"炽焱输入仓","tr":"炽焱输入仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"969":{"name":"硅岩输入仓","tr":"硅岩输入仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5066":{"oreDict":["frameGtVoid"],"name":"虚空框架","tr":"虚空框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5070":{"oreDict":["frameGtSuperconductorUEVBase"],"name":"UEV超导粗胚框架","tr":"UEV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"975":{"name":"核聚变反应堆控制电脑MK V","tr":"核聚变反应堆控制电脑MK V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5071":{"oreDict":["frameGtDraconium"],"name":"龙框架","tr":"龙框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5072":{"oreDict":["frameGtDraconiumAwakened"],"name":"觉醒龙框架","tr":"觉醒龙框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5073":{"oreDict":["frameGtBloodInfusedIron"],"name":"注血铁框架","tr":"注血铁框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5074":{"oreDict":["frameGtIchorium"],"name":"灵宝框架","tr":"灵宝框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5075":{"oreDict":["frameGtRadoxPoly"],"name":"拉多X聚合物框架","tr":"拉多X聚合物框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5076":{"oreDict":["frameGtGalliumArsenide"],"name":"砷化镓框架","tr":"砷化镓框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5077":{"oreDict":["frameGtIndiumGalliumPhosphide"],"name":"磷化铟镓框架","tr":"磷化铟镓框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5078":{"oreDict":["frameGtCosmicNeutronium"],"name":"宇宙中子态素框架","tr":"宇宙中子态素框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5080":{"oreDict":["frameGtFlerovium_GT5U"],"name":"框架","tr":"框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5081":{"oreDict":["frameGtLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚框架","tr":"UHV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5082":{"oreDict":["frameGtLongasssuperconductornameforuvwire"],"name":"UV超导粗胚框架","tr":"UV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5083":{"oreDict":["frameGtPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚框架","tr":"MV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5084":{"oreDict":["frameGtTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚框架","tr":"HV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5085":{"oreDict":["frameGtUraniumtriplatinid"],"name":"EV超导粗胚框架","tr":"EV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5086":{"oreDict":["frameGtVanadiumtriindinid"],"name":"IV超导粗胚框架","tr":"IV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5087":{"oreDict":["frameGtTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚框架","tr":"LuV超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"992":{"name":"工业切割机","tr":"工业切割机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5088":{"oreDict":["frameGtTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚框架","tr":"ZPM超导粗胚框架","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"993":{"name":"涡轮半流质发电机 II","tr":"涡轮半流质发电机 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"994":{"name":"涡轮半流质发电机 III","tr":"涡轮半流质发电机 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"995":{"name":"真空干燥炉","tr":"真空干燥炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"996":{"name":"火箭引擎 F-1A","tr":"火箭引擎 F-1A","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"997":{"name":"藻类农场","tr":"藻类农场","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"998":{"name":"埃克森美孚化工厂","tr":"埃克森美孚化工厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1000":{"name":"工业高炉","tr":"工业高炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1001":{"name":"聚爆压缩机","tr":"聚爆压缩机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1002":{"name":"真空冷冻机","tr":"真空冷冻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1003":{"name":"工业熔炉","tr":"工业熔炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1004":{"name":"超维度等离子锻炉","tr":"超维度等离子锻炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1005":{"name":"大型进阶燃气涡轮","tr":"大型进阶燃气涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5101":{"oreDict":["pipeSmallWood"],"name":"小型木制流体管道","tr":"小型木制流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1006":{"name":"超维度等离子搅拌机","tr":"超维度等离子搅拌机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5102":{"oreDict":["pipeMediumWood"],"name":"木制流体管道","tr":"木制流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5103":{"oreDict":["pipeLargeWood"],"name":"大型木制流体管道","tr":"大型木制流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5110":{"oreDict":["pipeTinyCopper"," pipeTinyAnyCopper"],"name":"微型铜流体管道","tr":"微型铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5111":{"oreDict":["pipeSmallCopper"," pipeSmallAnyCopper"],"name":"小型铜流体管道","tr":"小型铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5112":{"oreDict":["pipeMediumAnyCopper"," pipeMediumCopper"],"name":"铜流体管道","tr":"铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5113":{"oreDict":["pipeLargeCopper"," pipeLargeAnyCopper"],"name":"大型铜流体管道","tr":"大型铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5114":{"oreDict":["pipeHugeCopper"," pipeHugeAnyCopper"],"name":"巨型铜流体管道","tr":"巨型铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5115":{"oreDict":["pipeQuadrupleCopper"," pipeQuadrupleAnyCopper"],"name":"四联铜流体管道","tr":"四联铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1020":{"name":"大型青铜锅炉","tr":"大型青铜锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5116":{"oreDict":["pipeNonupleCopper"," pipeNonupleAnyCopper"],"name":"九联铜流体管道","tr":"九联铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1021":{"name":"大型钢锅炉","tr":"大型钢锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1022":{"name":"大型钛锅炉","tr":"大型钛锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1023":{"name":"大型钨钢锅炉","tr":"大型钨钢锅炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5120":{"oreDict":["pipeTinyBronze"," pipeTinyAnyBronze"],"name":"微型青铜流体管道","tr":"微型青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5121":{"oreDict":["pipeSmallBronze"," pipeSmallAnyBronze"],"name":"小型青铜流体管道","tr":"小型青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5122":{"oreDict":["pipeMediumBronze"," pipeMediumAnyBronze"],"name":"青铜流体管道","tr":"青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5123":{"oreDict":["pipeLargeBronze"," pipeLargeAnyBronze"],"name":"大型青铜流体管道","tr":"大型青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5124":{"oreDict":["pipeHugeBronze"," pipeHugeAnyBronze"],"name":"巨型青铜流体管道","tr":"巨型青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5125":{"oreDict":["pipeQuadrupleBronze"," pipeQuadrupleAnyBronze"],"name":"四联青铜流体管道","tr":"四联青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5126":{"oreDict":["pipeNonupleBronze"," pipeNonupleAnyBronze"],"name":"九联青铜流体管道","tr":"九联青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5130":{"oreDict":["pipeTinySteel"],"name":"微型钢流体管道","tr":"微型钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5131":{"oreDict":["pipeSmallSteel"],"name":"小型钢流体管道","tr":"小型钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5132":{"oreDict":["pipeMediumSteel"],"name":"钢流体管道","tr":"钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5133":{"oreDict":["pipeLargeSteel"],"name":"大型钢流体管道","tr":"大型钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5134":{"oreDict":["pipeHugeSteel"],"name":"巨型钢流体管道","tr":"巨型钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9230":{"name":"超低压缓存器","tr":"超低压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5135":{"oreDict":["pipeQuadrupleSteel"],"name":"四联钢流体管道","tr":"四联钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9231":{"name":"低压缓存器","tr":"低压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5136":{"oreDict":["pipeNonupleSteel"],"name":"九联钢流体管道","tr":"九联钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9232":{"name":"中压缓存器","tr":"中压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9233":{"name":"高压缓存器","tr":"高压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9234":{"name":"超高压缓存器","tr":"超高压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9235":{"name":"强导压缓存器","tr":"强导压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5140":{"oreDict":["pipeTinyStainlessSteel"],"name":"微型不锈钢流体管道","tr":"微型不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9236":{"name":"剧差压缓存器","tr":"剧差压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5141":{"oreDict":["pipeSmallStainlessSteel"],"name":"小型不锈钢流体管道","tr":"小型不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9237":{"name":"零点压缓存器","tr":"零点压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5142":{"oreDict":["pipeMediumStainlessSteel"],"name":"不锈钢流体管道","tr":"不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9238":{"name":"极限压缓存器","tr":"极限压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5143":{"oreDict":["pipeLargeStainlessSteel"],"name":"大型不锈钢流体管道","tr":"大型不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9239":{"name":"极高压缓存器","tr":"极高压缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5144":{"oreDict":["pipeHugeStainlessSteel"],"name":"巨型不锈钢流体管道","tr":"巨型不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9240":{"name":"超低压物品过滤器","tr":"超低压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5145":{"oreDict":["pipeQuadrupleStainlessSteel"],"name":"四联不锈钢流体管道","tr":"四联不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9241":{"name":"低压物品过滤器","tr":"低压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5146":{"oreDict":["pipeNonupleStainlessSteel"],"name":"九联不锈钢流体管道","tr":"九联不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9242":{"name":"中压物品过滤器","tr":"中压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9243":{"name":"高压物品过滤器","tr":"高压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9244":{"name":"超高压物品过滤器","tr":"超高压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9245":{"name":"强导压物品过滤器","tr":"强导压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5150":{"oreDict":["pipeTinyTitanium"],"name":"微型钛流体管道","tr":"微型钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9246":{"name":"剧差压物品过滤器","tr":"剧差压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5151":{"oreDict":["pipeSmallTitanium"],"name":"小型钛流体管道","tr":"小型钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9247":{"name":"零点压物品过滤器","tr":"零点压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5152":{"oreDict":["pipeMediumTitanium"],"name":"钛流体管道","tr":"钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9248":{"name":"极限压物品过滤器","tr":"极限压物品过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5153":{"oreDict":["pipeLargeTitanium"],"name":"大型钛流体管道","tr":"大型钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9249":{"name":"极高压过滤器","tr":"极高压过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5154":{"oreDict":["pipeHugeTitanium"],"name":"巨型钛流体管道","tr":"巨型钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9250":{"name":"超低压类型过滤器","tr":"超低压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5155":{"oreDict":["pipeQuadrupleTitanium"],"name":"四联钛流体管道","tr":"四联钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9251":{"name":"低压类型过滤器","tr":"低压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5156":{"oreDict":["pipeNonupleTitanium"],"name":"九联钛流体管道","tr":"九联钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9252":{"name":"中压类型过滤器","tr":"中压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9253":{"name":"高压类型过滤器","tr":"高压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9254":{"name":"超高压类型过滤器","tr":"超高压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9255":{"name":"强导压类型过滤器","tr":"强导压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5160":{"oreDict":["pipeTinyTungstenSteel"],"name":"微型钨钢流体管道","tr":"微型钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9256":{"name":"剧差压类型过滤器","tr":"剧差压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5161":{"oreDict":["pipeSmallTungstenSteel"],"name":"小型钨钢流体管道","tr":"小型钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9257":{"name":"零点压类型过滤器","tr":"零点压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5162":{"oreDict":["pipeMediumTungstenSteel"],"name":"钨钢流体管道","tr":"钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9258":{"name":"极限压类型过滤器","tr":"极限压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5163":{"oreDict":["pipeLargeTungstenSteel"],"name":"大型钨钢流体管道","tr":"大型钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9259":{"name":"极高压类型过滤器","tr":"极高压类型过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5164":{"oreDict":["pipeHugeTungstenSteel"],"name":"巨型钨钢流体管道","tr":"巨型钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5165":{"oreDict":["pipeSmallUltimate"],"name":"小型高压流体管道","tr":"小型高压流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5166":{"oreDict":["pipeMediumUltimate"],"name":"高压流体管道","tr":"高压流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5167":{"oreDict":["pipeLargeUltimate"],"name":"大型高压流体管道","tr":"大型高压流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5170":{"oreDict":["pipeTinyPlastic"],"name":"微型聚乙烯流体管道","tr":"微型聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5171":{"oreDict":["pipeSmallPlastic"],"name":"小型聚乙烯流体管道","tr":"小型聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5172":{"oreDict":["pipeMediumPlastic"],"name":"聚乙烯流体管道","tr":"聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5173":{"oreDict":["pipeLargePlastic"],"name":"大型聚乙烯流体管道","tr":"大型聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5174":{"oreDict":["pipeHugePlastic"],"name":"巨型聚乙烯流体管道","tr":"巨型聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9270":{"name":"超低压校准器","tr":"超低压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13366":{"name":"巨型化学反应釜","tr":"巨型化学反应釜","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5175":{"oreDict":["pipeQuadruplePlastic"],"name":"四联聚乙烯流体管道","tr":"四联聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9271":{"name":"低压校准器","tr":"低压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13367":{"name":"巨型石油裂化机","tr":"巨型石油裂化机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5176":{"oreDict":["pipeNonuplePlastic"],"name":"九联聚乙烯流体管道","tr":"九联聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9272":{"name":"中压校准器","tr":"中压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9273":{"name":"高压校准器","tr":"高压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9274":{"name":"超高压校准器","tr":"超高压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9275":{"name":"强导压校准器","tr":"强导压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5180":{"oreDict":["pipeTinyNiobiumTitanium"],"name":"微型铌钛合金流体管道","tr":"微型铌钛合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9276":{"name":"剧差压校准器","tr":"剧差压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5181":{"oreDict":["pipeSmallNiobiumTitanium"],"name":"小型铌钛合金流体管道","tr":"小型铌钛合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9277":{"name":"零点压校准器","tr":"零点压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5182":{"oreDict":["pipeMediumNiobiumTitanium"],"name":"铌钛合金流体管道","tr":"铌钛合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9278":{"name":"极限压校准器","tr":"极限压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5183":{"oreDict":["pipeLargeNiobiumTitanium"],"name":"大型铌钛合金流体管道","tr":"大型铌钛合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9279":{"name":"极高压校准器","tr":"极高压校准器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5184":{"oreDict":["pipeHugeNiobiumTitanium"],"name":"巨型铌钛合金流体管道","tr":"巨型铌钛合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5185":{"oreDict":["pipeQuadrupleNiobiumTitanium"],"name":"四联铌钛合金流体管道","tr":"四联铌钛合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5186":{"oreDict":["pipeNonupleNiobiumTitanium"],"name":"九联铌钛合金流体管道","tr":"九联铌钛合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5190":{"oreDict":["pipeTinyEnderium"],"name":"微型末影锭流体管道","tr":"微型末影锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5191":{"oreDict":["pipeSmallEnderium"],"name":"小型末影锭流体管道","tr":"小型末影锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5192":{"oreDict":["pipeMediumEnderium"],"name":"末影锭流体管道","tr":"末影锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5193":{"oreDict":["pipeLargeEnderium"],"name":"大型末影锭流体管道","tr":"大型末影锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5194":{"oreDict":["pipeHugeEnderium"],"name":"巨型末影锭流体管道","tr":"巨型末影锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5195":{"oreDict":["pipeQuadrupleEnderium"],"name":"四联末影(te)流体管道","tr":"四联末影(te)流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5196":{"oreDict":["pipeNonupleEnderium"],"name":"九联末影(te)流体管道","tr":"九联末影(te)流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5200":{"oreDict":["pipeTinyNaquadah"],"name":"微型硅岩流体管道","tr":"微型硅岩流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5201":{"oreDict":["pipeSmallNaquadah"],"name":"小型硅岩流体管道","tr":"小型硅岩流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5202":{"oreDict":["pipeMediumNaquadah"],"name":"硅岩流体管道","tr":"硅岩流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5203":{"oreDict":["pipeLargeNaquadah"],"name":"大型硅岩流体管道","tr":"大型硅岩流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5204":{"oreDict":["pipeHugeNaquadah"],"name":"巨型硅岩流体管道","tr":"巨型硅岩流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9300":{"name":"超低压超级缓存器","tr":"超低压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5205":{"oreDict":["pipeQuadrupleNaquadah"],"name":"四联硅岩流体管道","tr":"四联硅岩流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9301":{"name":"低压超级缓存器","tr":"低压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1110":{"name":"基础内燃发电机","tr":"基础内燃发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5206":{"oreDict":["pipeNonupleNaquadah"],"name":"九联硅岩流体管道","tr":"九联硅岩流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9302":{"name":"中压超级缓存器","tr":"中压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1111":{"name":"进阶内燃发电机","tr":"进阶内燃发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9303":{"name":"高压超级缓存器","tr":"高压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1112":{"name":"涡轮内燃发电机","tr":"涡轮内燃发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9304":{"name":"超高压超级缓存器","tr":"超高压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1113":{"name":"涡轮增压内燃发电机","tr":"涡轮增压内燃发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9305":{"name":"强导压超级缓存器","tr":"强导压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1114":{"name":"终极化学能释放者","tr":"终极化学能释放者","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5210":{"oreDict":["pipeTinyNeutronium"],"name":"微型中子流体管道","tr":"微型中子流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9306":{"name":"剧差压超级缓存器","tr":"剧差压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1115":{"name":"基础燃气轮机","tr":"基础燃气轮机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5211":{"oreDict":["pipeSmallNeutronium"],"name":"小型中子流体管道","tr":"小型中子流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9307":{"name":"零点压超级缓存器","tr":"零点压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1116":{"name":"进阶燃气轮机","tr":"进阶燃气轮机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5212":{"oreDict":["pipeMediumNeutronium"],"name":"中子流体管道","tr":"中子流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9308":{"name":"极限压超级缓存器","tr":"极限压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1117":{"name":"涡轮燃气轮机","tr":"涡轮燃气轮机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5213":{"oreDict":["pipeLargeNeutronium"],"name":"大型中子流体管道","tr":"大型中子流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9309":{"name":"极高压超级缓存器","tr":"极高压超级缓存器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1118":{"name":"涡轮燃气轮机II","tr":"涡轮燃气轮机II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5214":{"oreDict":["pipeHugeNeutronium"],"name":"巨型中子流体管道","tr":"巨型中子流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1119":{"name":"涡轮燃气轮机III","tr":"涡轮燃气轮机III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5215":{"oreDict":["pipeQuadrupleNeutronium"],"name":"四联中子流体管道","tr":"四联中子流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1120":{"name":"基础蒸汽轮机","tr":"基础蒸汽轮机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5216":{"oreDict":["pipeNonupleNeutronium"],"name":"九联中子流体管道","tr":"九联中子流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1121":{"name":"进阶蒸汽轮机","tr":"进阶蒸汽轮机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1122":{"name":"涡轮蒸汽轮机","tr":"涡轮蒸汽轮机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1123":{"name":"新手魔法能源转换器","tr":"新手魔法能源转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1124":{"name":"学徒魔法能源转换器","tr":"学徒魔法能源转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5220":{"oreDict":["pipeTinyNetherStar"],"name":"微型下界之星流体管道","tr":"微型下界之星流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1125":{"name":"大师魔法能源转换器","tr":"大师魔法能源转换器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5221":{"oreDict":["pipeSmallNetherStar"],"name":"小型下界之星流体管道","tr":"小型下界之星流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1126":{"name":"蒸馏塔","tr":"蒸馏塔","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5222":{"oreDict":["pipeMediumNetherStar"],"name":"下界之星流体管道","tr":"下界之星流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1127":{"name":"新手魔法能源吸收器","tr":"新手魔法能源吸收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5223":{"oreDict":["pipeLargeNetherStar"],"name":"大型下界之星流体管道","tr":"大型下界之星流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1128":{"name":"学徒魔法能源吸收器","tr":"学徒魔法能源吸收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5224":{"oreDict":["pipeHugeNetherStar"],"name":"巨型下界之星流体管道","tr":"巨型下界之星流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9320":{"name":"超低压物品分配器","tr":"超低压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1129":{"name":"大师魔法能源吸收器","tr":"大师魔法能源吸收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5225":{"oreDict":["pipeQuadrupleNetherStar"],"name":"四联下界之星流体管道","tr":"四联下界之星流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9321":{"name":"低压物品分配器","tr":"低压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1130":{"name":"宗师魔法能源吸收器","tr":"宗师魔法能源吸收器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5226":{"oreDict":["pipeNonupleNetherStar"],"name":"九联下界之星流体管道","tr":"九联下界之星流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9322":{"name":"中压物品分配器","tr":"中压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1131":{"name":"大型蒸汽涡轮","tr":"大型蒸汽涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9323":{"name":"高压物品分配器","tr":"高压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1132":{"name":"集成矿石处理厂","tr":"集成矿石处理厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9324":{"name":"超高压物品分配器","tr":"超高压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9325":{"name":"强导压物品分配器","tr":"强导压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5230":{"oreDict":["pipeTinyMysteriousCrystal"],"name":"微型神秘水晶流体管道","tr":"微型神秘水晶流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9326":{"name":"剧差压物品分配器","tr":"剧差压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1135":{"name":"进阶敌对生物驱逐器 V","tr":"进阶敌对生物驱逐器 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5231":{"oreDict":["pipeSmallMysteriousCrystal"],"name":"小型神秘水晶流体管道","tr":"小型神秘水晶流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9327":{"name":"零点压物品分配器","tr":"零点压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1136":{"name":"进阶敌对生物驱逐器 VI","tr":"进阶敌对生物驱逐器 VI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5232":{"oreDict":["pipeMediumMysteriousCrystal"],"name":"神秘水晶流体管道","tr":"神秘水晶流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9328":{"name":"极限压物品分配器","tr":"极限压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1137":{"name":"进阶敌对生物驱逐器 VII","tr":"进阶敌对生物驱逐器 VII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5233":{"oreDict":["pipeLargeMysteriousCrystal"],"name":"大型神秘水晶流体管道","tr":"大型神秘水晶流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9329":{"name":"极高压物品分配器","tr":"极高压物品分配器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5234":{"oreDict":["pipeHugeMysteriousCrystal"],"name":"巨型神秘水晶流体管道","tr":"巨型神秘水晶流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9330":{"name":"超低压合成表过滤器","tr":"超低压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5235":{"oreDict":["pipeQuadrupleMysteriousCrystal"],"name":"四联神秘水晶流体管道","tr":"四联神秘水晶流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9331":{"name":"低压合成表过滤器","tr":"低压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1140":{"name":"基础泵","tr":"基础泵","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5236":{"oreDict":["pipeNonupleMysteriousCrystal"],"name":"九联神秘水晶流体管道","tr":"九联神秘水晶流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9332":{"name":"中压合成表过滤器","tr":"中压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1141":{"name":"进阶泵","tr":"进阶泵","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9333":{"name":"高压合成表过滤器","tr":"高压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1142":{"name":"进阶泵 II","tr":"进阶泵 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9334":{"name":"超高压合成表过滤器","tr":"超高压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1143":{"name":"进阶泵 III","tr":"进阶泵 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9335":{"name":"强导压合成表过滤器","tr":"强导压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1144":{"name":"进阶泵 IV","tr":"进阶泵 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5240":{"oreDict":["pipeTinyDraconiumAwakened"],"name":"微型觉醒龙流体管道","tr":"微型觉醒龙流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9336":{"name":"剧差压合成表过滤器","tr":"剧差压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1145":{"name":"传送机","tr":"传送机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5241":{"oreDict":["pipeSmallDraconiumAwakened"],"name":"小型觉醒龙流体管道","tr":"小型觉醒龙流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9337":{"name":"零点压合成表过滤器","tr":"零点压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1146":{"name":"基础敌对生物驱逐器","tr":"基础敌对生物驱逐器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5242":{"oreDict":["pipeMediumDraconiumAwakened"],"name":"觉醒龙流体管道","tr":"觉醒龙流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9338":{"name":"极限压合成表过滤器","tr":"极限压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1147":{"name":"进阶敌对生物驱逐器","tr":"进阶敌对生物驱逐器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5243":{"oreDict":["pipeLargeDraconiumAwakened"],"name":"大型觉醒龙流体管道","tr":"大型觉醒龙流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9339":{"name":"极高压合成表过滤器","tr":"极高压合成表过滤器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1148":{"name":"进阶敌对生物驱逐器 II","tr":"进阶敌对生物驱逐器 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5244":{"oreDict":["pipeHugeDraconiumAwakened"],"name":"巨型觉醒龙流体管道","tr":"巨型觉醒龙流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1149":{"name":"进阶敌对生物驱逐器 III","tr":"进阶敌对生物驱逐器 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5245":{"oreDict":["pipeQuadrupleDraconiumAwakened"],"name":"四联觉醒龙流体管道","tr":"四联觉醒龙流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1150":{"name":"进阶敌对生物驱逐器 IV","tr":"进阶敌对生物驱逐器 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5246":{"oreDict":["pipeNonupleDraconiumAwakened"],"name":"九联觉醒龙流体管道","tr":"九联觉醒龙流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1151":{"name":"大型燃气涡轮","tr":"大型燃气涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1152":{"name":"大型高压蒸汽涡轮","tr":"大型高压蒸汽涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1153":{"name":"大型等离子涡轮","tr":"大型等离子涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1154":{"name":"大型热交换机","tr":"大型热交换机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5250":{"oreDict":["pipeTinyInfinity"],"name":"微型无尽锭流体管道","tr":"微型无尽锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1155":{"name":"木炭堆点火器","tr":"木炭堆点火器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5251":{"oreDict":["pipeSmallInfinity"],"name":"小型无尽锭流体管道","tr":"小型无尽锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5252":{"oreDict":["pipeMediumInfinity"],"name":"无尽锭流体管道","tr":"无尽锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1157":{"name":"油气流体钻机","tr":"油气流体钻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5253":{"oreDict":["pipeLargeInfinity"],"name":"大型无尽锭流体管道","tr":"大型无尽锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1158":{"name":"采矿场","tr":"采矿场","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5254":{"oreDict":["pipeHugeInfinity"],"name":"巨型无尽锭流体管道","tr":"巨型无尽锭流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1159":{"name":"热解炉","tr":"热解炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5255":{"oreDict":["pipeQuadrupleInfinity"],"name":"四联无尽流体管道","tr":"四联无尽流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1160":{"name":"石油裂化机","tr":"石油裂化机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5256":{"oreDict":["pipeNonupleInfinity"],"name":"九联无尽流体管道","tr":"九联无尽流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1161":{"name":"HV微波能量发射机","tr":"HV微波能量发射机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1162":{"name":"EV微波能量发射机","tr":"EV微波能量发射机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1163":{"name":"IV微波能量发射机","tr":"IV微波能量发射机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1164":{"name":"LuV微波能量发射机","tr":"LuV微波能量发射机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5260":{"oreDict":["pipeTinyWroughtIron"," pipeTinyAnyIron"],"name":"微型锻铁流体管道","tr":"微型锻铁流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1165":{"name":"ZPM微波能量发射机","tr":"ZPM微波能量发射机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5261":{"oreDict":["pipeSmallWroughtIron"," pipeSmallAnyIron"],"name":"小型锻铁流体管道","tr":"小型锻铁流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1166":{"name":"UV微波能量发射机","tr":"UV微波能量发射机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5262":{"oreDict":["pipeMediumWroughtIron"," pipeMediumAnyIron"],"name":"锻铁流体管道","tr":"锻铁流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5263":{"oreDict":["pipeLargeWroughtIron"," pipeLargeAnyIron"],"name":"大型锻铁流体管道","tr":"大型锻铁流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5264":{"oreDict":["pipeHugeAnyIron"," pipeHugeWroughtIron"],"name":"巨型锻铁流体管道","tr":"巨型锻铁流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1169":{"name":"大型化学反应釜","tr":"大型化学反应釜","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5265":{"oreDict":["pipeQuadrupleWroughtIron"," pipeQuadrupleAnyIron"],"name":"四联锻铁流体管道","tr":"四联锻铁流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1170":{"name":"装配线","tr":"装配线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5266":{"oreDict":["pipeNonupleWroughtIron"," pipeNonupleAnyIron"],"name":"九联锻铁流体管道","tr":"九联锻铁流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1171":{"name":"大型内燃引擎","tr":"大型内燃引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1172":{"name":"超净间控制器","tr":"超净间控制器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1173":{"name":"进阶地震勘探者 EV","tr":"进阶地震勘探者 EV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1174":{"name":"避雷针","tr":"避雷针","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5270":{"oreDict":["pipeQuadrupleTungstenSteel"],"name":"四联钨钢流体管道","tr":"四联钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1175":{"name":"避雷针 II","tr":"避雷针 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5271":{"oreDict":["pipeNonupleTungstenSteel"],"name":"九联钨钢流体管道","tr":"九联钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1176":{"name":"避雷针 III","tr":"避雷针 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1177":{"name":"采矿场 II","tr":"采矿场 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1178":{"name":"采矿场 III","tr":"采矿场 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1179":{"name":"采矿场 IV","tr":"采矿场 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5280":{"oreDict":["pipeTinyPolybenzimidazole"],"name":"微型PBI流体管道","tr":"微型PBI流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5281":{"oreDict":["pipeSmallPolybenzimidazole"],"name":"小型PBI流体管道","tr":"小型PBI流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5282":{"oreDict":["pipeMediumPolybenzimidazole"],"name":"PBI流体管道","tr":"PBI流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5283":{"oreDict":["pipeLargePolybenzimidazole"],"name":"大型PBI流体管道","tr":"大型PBI流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1188":{"name":"硅岩反应堆Mk IV","tr":"硅岩反应堆Mk IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5284":{"oreDict":["pipeHugePolybenzimidazole"],"name":"巨型PBI流体管道","tr":"巨型PBI流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1189":{"name":"硅岩反应堆Mk V","tr":"硅岩反应堆Mk V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1190":{"name":"硅岩反应堆Mk I","tr":"硅岩反应堆Mk I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1191":{"name":"硅岩反应堆Mk II","tr":"硅岩反应堆Mk II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1192":{"name":"硅岩反应堆Mk III","tr":"硅岩反应堆Mk III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1193":{"name":"核聚变反应堆控制电脑Mk I","tr":"核聚变反应堆控制电脑Mk I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1194":{"name":"核聚变反应堆控制电脑Mk II","tr":"核聚变反应堆控制电脑Mk II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5290":{"oreDict":["pipeQuadruplePolybenzimidazole"],"name":"四联PBI流体管道","tr":"四联PBI流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1195":{"name":"核聚变反应堆控制电脑Mk III","tr":"核聚变反应堆控制电脑Mk III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5291":{"oreDict":["pipeNonuplePolybenzimidazole"],"name":"九联PBI流体管道","tr":"九联PBI流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1196":{"name":"等离子发电机Mk I","tr":"等离子发电机Mk I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1197":{"name":"等离子发电机Mk II","tr":"等离子发电机Mk II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1198":{"name":"等离子发电机Mk III","tr":"等离子发电机Mk III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1199":{"name":"处理阵列","tr":"处理阵列","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1200":{"oreDict":["wireGt01Cobalt"],"name":"1x钴导线","tr":"1x钴导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1201":{"oreDict":["wireGt02Cobalt"],"name":"2x钴导线","tr":"2x钴导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1202":{"oreDict":["wireGt04Cobalt"],"name":"4x钴导线","tr":"4x钴导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1203":{"oreDict":["wireGt08Cobalt"],"name":"8x钴导线","tr":"8x钴导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1204":{"oreDict":["wireGt12Cobalt"],"name":"12x钴导线","tr":"12x钴导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5300":{"oreDict":["pipeTinySpaceTime"],"name":"微型时空流体管道","tr":"微型时空流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1205":{"oreDict":["wireGt16Cobalt"],"name":"16x钴导线","tr":"16x钴导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5301":{"oreDict":["pipeSmallSpaceTime"],"name":"小型时空流体管道","tr":"小型时空流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1206":{"oreDict":["cableGt01Cobalt"],"name":"1x钴线缆","tr":"1x钴线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5302":{"oreDict":["pipeMediumSpaceTime"],"name":"时空流体管道","tr":"时空流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1207":{"oreDict":["cableGt02Cobalt"],"name":"2x钴线缆","tr":"2x钴线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5303":{"oreDict":["pipeLargeSpaceTime"],"name":"大型时空流体管道","tr":"大型时空流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9399":{"name":"工业蜂箱","tr":"工业蜂箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1208":{"oreDict":["cableGt04Cobalt"],"name":"4x钴线缆","tr":"4x钴线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5304":{"oreDict":["pipeHugeSpaceTime"],"name":"巨型时空流体管道","tr":"巨型时空流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9400":{"name":"Drone Centre","tr":"Drone Centre","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1209":{"oreDict":["cableGt08Cobalt"],"name":"8x钴线缆","tr":"8x钴线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5305":{"oreDict":["pipeQuadrupleSpaceTime"],"name":"四联时空流体管道","tr":"四联时空流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9401":{"name":"Drone DownLink Module","tr":"Drone DownLink Module","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1210":{"oreDict":["cableGt12Cobalt"],"name":"12x钴线缆","tr":"12x钴线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5306":{"oreDict":["pipeNonupleSpaceTime"],"name":"九联时空流体管道","tr":"九联时空流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1211":{"oreDict":["cableGt16Cobalt"],"name":"16x钴线缆","tr":"16x钴线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5310":{"oreDict":["pipeTinyTranscendentMetal"],"name":"微型超时空金属流体管道","tr":"微型超时空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5311":{"oreDict":["pipeSmallTranscendentMetal"],"name":"小型超时空金属流体管道","tr":"小型超时空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5312":{"oreDict":["pipeMediumTranscendentMetal"],"name":"超时空金属流体管道","tr":"超时空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5313":{"oreDict":["pipeLargeTranscendentMetal"],"name":"大型超时空金属流体管道","tr":"大型超时空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5314":{"oreDict":["pipeHugeTranscendentMetal"],"name":"巨型超时空金属流体管道","tr":"巨型超时空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5315":{"oreDict":["pipeQuadrupleTranscendentMetal"],"name":"四联超时空金属流体管道","tr":"四联超时空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1220":{"oreDict":["wireGt01Lead"],"name":"1x铅导线","tr":"1x铅导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5316":{"oreDict":["pipeNonupleTranscendentMetal"],"name":"九联超时空金属流体管道","tr":"九联超时空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1221":{"oreDict":["wireGt02Lead"],"name":"2x铅导线","tr":"2x铅导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1222":{"oreDict":["wireGt04Lead"],"name":"4x铅导线","tr":"4x铅导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1223":{"oreDict":["wireGt08Lead"],"name":"8x铅导线","tr":"8x铅导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1224":{"oreDict":["wireGt12Lead"],"name":"12x铅导线","tr":"12x铅导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1225":{"oreDict":["wireGt16Lead"],"name":"16x铅导线","tr":"16x铅导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1226":{"oreDict":["cableGt01Lead"],"name":"1x铅线缆","tr":"1x铅线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1227":{"oreDict":["cableGt02Lead"],"name":"2x铅线缆","tr":"2x铅线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1228":{"oreDict":["cableGt04Lead"],"name":"4x铅线缆","tr":"4x铅线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1229":{"oreDict":["cableGt08Lead"],"name":"8x铅线缆","tr":"8x铅线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1230":{"oreDict":["cableGt12Lead"],"name":"12x铅线缆","tr":"12x铅线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1231":{"oreDict":["cableGt16Lead"],"name":"16x铅线缆","tr":"16x铅线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1240":{"oreDict":["wireGt01Tin"],"name":"1x锡导线","tr":"1x锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1241":{"oreDict":["wireGt02Tin"],"name":"2x锡导线","tr":"2x锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1242":{"oreDict":["wireGt04Tin"],"name":"4x锡导线","tr":"4x锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1243":{"oreDict":["wireGt08Tin"],"name":"8x锡导线","tr":"8x锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1244":{"oreDict":["wireGt12Tin"],"name":"12x锡导线","tr":"12x锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13532":{"name":"进阶装配线","tr":"进阶装配线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1245":{"oreDict":["wireGt16Tin"],"name":"16x锡导线","tr":"16x锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13533":{"name":"共享输入总线","tr":"共享输入总线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1246":{"oreDict":["cableGt01Tin"," craftingWireTin"],"name":"1x锡线缆","tr":"1x锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13534":{"name":"基础工具铸造机","tr":"基础工具铸造机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1247":{"oreDict":["cableGt02Tin"],"name":"2x锡线缆","tr":"2x锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13535":{"name":"进阶工具铸造机","tr":"进阶工具铸造机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1248":{"oreDict":["cableGt04Tin"],"name":"4x锡线缆","tr":"4x锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13536":{"name":"大师工具铸造机","tr":"大师工具铸造机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1249":{"oreDict":["cableGt08Tin"],"name":"8x锡线缆","tr":"8x锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1250":{"oreDict":["cableGt12Tin"],"name":"12x锡线缆","tr":"12x锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1251":{"oreDict":["cableGt16Tin"],"name":"16x锡线缆","tr":"16x锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1260":{"oreDict":["wireGt01Zinc"],"name":"1x锌导线","tr":"1x锌导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1261":{"oreDict":["wireGt02Zinc"],"name":"2x锌导线","tr":"2x锌导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1262":{"oreDict":["wireGt04Zinc"],"name":"4x锌导线","tr":"4x锌导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1263":{"oreDict":["wireGt08Zinc"],"name":"8x锌导线","tr":"8x锌导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1264":{"oreDict":["wireGt12Zinc"],"name":"12x锌导线","tr":"12x锌导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1265":{"oreDict":["wireGt16Zinc"],"name":"16x锌导线","tr":"16x锌导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1266":{"oreDict":["cableGt01Zinc"],"name":"1x锌线缆","tr":"1x锌线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1267":{"oreDict":["cableGt02Zinc"],"name":"2x锌线缆","tr":"2x锌线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1268":{"oreDict":["cableGt04Zinc"],"name":"4x锌线缆","tr":"4x锌线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1269":{"oreDict":["cableGt08Zinc"],"name":"8x锌线缆","tr":"8x锌线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1270":{"oreDict":["cableGt12Zinc"],"name":"12x锌线缆","tr":"12x锌线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1271":{"oreDict":["cableGt16Zinc"],"name":"16x锌线缆","tr":"16x锌线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1280":{"oreDict":["wireGt01SolderingAlloy"],"name":"1x焊锡导线","tr":"1x焊锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1281":{"oreDict":["wireGt02SolderingAlloy"],"name":"2x焊锡导线","tr":"2x焊锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1282":{"oreDict":["wireGt04SolderingAlloy"],"name":"4x焊锡导线","tr":"4x焊锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1283":{"oreDict":["wireGt08SolderingAlloy"],"name":"8x焊锡导线","tr":"8x焊锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1284":{"oreDict":["wireGt12SolderingAlloy"],"name":"12x焊锡导线","tr":"12x焊锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1285":{"oreDict":["wireGt16SolderingAlloy"],"name":"16x焊锡导线","tr":"16x焊锡导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1286":{"oreDict":["cableGt01SolderingAlloy"],"name":"1x焊锡线缆","tr":"1x焊锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1287":{"oreDict":["cableGt02SolderingAlloy"],"name":"2x焊锡线缆","tr":"2x焊锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1288":{"oreDict":["cableGt04SolderingAlloy"],"name":"4x焊锡线缆","tr":"4x焊锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1289":{"oreDict":["cableGt08SolderingAlloy"],"name":"8x焊锡线缆","tr":"8x焊锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1290":{"oreDict":["cableGt12SolderingAlloy"],"name":"12x焊锡线缆","tr":"12x焊锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1291":{"oreDict":["cableGt16SolderingAlloy"],"name":"16x焊锡线缆","tr":"16x焊锡线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1300":{"oreDict":["wireGt01Iron"," wireGt01AnyIron"],"name":"1x铁导线","tr":"1x铁导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1301":{"oreDict":["wireGt02Iron"," wireGt02AnyIron"],"name":"2x铁导线","tr":"2x铁导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1302":{"oreDict":["wireGt04Iron"," wireGt04AnyIron"],"name":"4x铁导线","tr":"4x铁导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1303":{"oreDict":["wireGt08Iron"," wireGt08AnyIron"],"name":"8x铁导线","tr":"8x铁导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1304":{"oreDict":["wireGt12Iron"," wireGt12AnyIron"],"name":"12x铁导线","tr":"12x铁导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1305":{"oreDict":["wireGt16Iron"," wireGt16AnyIron"],"name":"16x铁导线","tr":"16x铁导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1306":{"oreDict":["craftingWireIron"," cableGt01Iron"," cableGt01AnyIron"],"name":"1x铁线缆","tr":"1x铁线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1307":{"oreDict":["cableGt02Iron"," cableGt02AnyIron"],"name":"2x铁线缆","tr":"2x铁线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1308":{"oreDict":["cableGt04Iron"," cableGt04AnyIron"],"name":"4x铁线缆","tr":"4x铁线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1309":{"oreDict":["cableGt08Iron"," cableGt08AnyIron"],"name":"8x铁线缆","tr":"8x铁线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1310":{"oreDict":["cableGt12Iron"," cableGt12AnyIron"],"name":"12x铁线缆","tr":"12x铁线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1311":{"oreDict":["cableGt16Iron"," cableGt16AnyIron"],"name":"16x铁线缆","tr":"16x铁线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1320":{"oreDict":["wireGt01Nickel"],"name":"1x镍导线","tr":"1x镍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1321":{"oreDict":["wireGt02Nickel"],"name":"2x镍导线","tr":"2x镍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1322":{"oreDict":["wireGt04Nickel"],"name":"4x镍导线","tr":"4x镍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1323":{"oreDict":["wireGt08Nickel"],"name":"8x镍导线","tr":"8x镍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1324":{"oreDict":["wireGt12Nickel"],"name":"12x镍导线","tr":"12x镍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1325":{"oreDict":["wireGt16Nickel"],"name":"16x镍导线","tr":"16x镍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1326":{"oreDict":["cableGt01Nickel"],"name":"1x镍线缆","tr":"1x镍线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1327":{"oreDict":["cableGt02Nickel"],"name":"2x镍线缆","tr":"2x镍线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1328":{"oreDict":["cableGt04Nickel"],"name":"4x镍线缆","tr":"4x镍线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1329":{"oreDict":["cableGt08Nickel"],"name":"8x镍线缆","tr":"8x镍线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30001":{"name":"进阶消声仓(LV)","tr":"进阶消声仓(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1330":{"oreDict":["cableGt12Nickel"],"name":"12x镍线缆","tr":"12x镍线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30002":{"name":"进阶消声仓(MV)","tr":"进阶消声仓(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1331":{"oreDict":["cableGt16Nickel"],"name":"16x镍线缆","tr":"16x镍线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30003":{"name":"进阶消声仓(HV)","tr":"进阶消声仓(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30004":{"name":"进阶消声仓(EV)","tr":"进阶消声仓(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30005":{"name":"进阶消声仓(IV)","tr":"进阶消声仓(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30006":{"name":"进阶消声仓(LuV)","tr":"进阶消声仓(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30007":{"name":"进阶消声仓(ZPM)","tr":"进阶消声仓(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30008":{"name":"进阶消声仓(UV)","tr":"进阶消声仓(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30009":{"name":"进阶消声仓(UHV)","tr":"进阶消声仓(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30010":{"name":"转子仓","tr":"转子仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1340":{"oreDict":["wireGt01Cupronickel"],"name":"1x白铜导线","tr":"1x白铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1341":{"oreDict":["wireGt02Cupronickel"],"name":"2x白铜导线","tr":"2x白铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1342":{"oreDict":["wireGt04Cupronickel"],"name":"4x白铜导线","tr":"4x白铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1343":{"oreDict":["wireGt08Cupronickel"],"name":"8x白铜导线","tr":"8x白铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1344":{"oreDict":["wireGt12Cupronickel"],"name":"12x白铜导线","tr":"12x白铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1345":{"oreDict":["wireGt16Cupronickel"],"name":"16x白铜导线","tr":"16x白铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1346":{"oreDict":["cableGt01Cupronickel"],"name":"1x白铜线缆","tr":"1x白铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1347":{"oreDict":["cableGt02Cupronickel"],"name":"2x白铜线缆","tr":"2x白铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1348":{"oreDict":["cableGt04Cupronickel"],"name":"4x白铜线缆","tr":"4x白铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1349":{"oreDict":["cableGt08Cupronickel"],"name":"8x白铜线缆","tr":"8x白铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1350":{"oreDict":["cableGt12Cupronickel"],"name":"12x白铜线缆","tr":"12x白铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30022":{"name":"超级输入总线(LV)","tr":"超级输入总线(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1351":{"oreDict":["cableGt16Cupronickel"],"name":"16x白铜线缆","tr":"16x白铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30023":{"name":"超级输入总线(MV)","tr":"超级输入总线(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30024":{"name":"超级输入总线(HV)","tr":"超级输入总线(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30025":{"name":"超级输入总线(EV)","tr":"超级输入总线(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30026":{"name":"超级输入总线(IV)","tr":"超级输入总线(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30027":{"name":"超级输入总线(LuV)","tr":"超级输入总线(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30028":{"name":"超级输入总线(ZPM)","tr":"超级输入总线(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30029":{"name":"超级输入总线(UV)","tr":"超级输入总线(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30030":{"name":"超级输入总线(UHV)","tr":"超级输入总线(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1360":{"oreDict":["wireGt01Copper"," wireGt01AnyCopper"],"name":"1x铜导线","tr":"1x铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30032":{"name":"超级输出总线(LV)","tr":"超级输出总线(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1361":{"oreDict":["wireGt02Copper"," wireGt02AnyCopper"],"name":"2x铜导线","tr":"2x铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30033":{"name":"超级输出总线(MV)","tr":"超级输出总线(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1362":{"oreDict":["wireGt04Copper"," wireGt04AnyCopper"],"name":"4x铜导线","tr":"4x铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30034":{"name":"超级输出总线(HV)","tr":"超级输出总线(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1363":{"oreDict":["wireGt08Copper"," wireGt08AnyCopper"],"name":"8x铜导线","tr":"8x铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30035":{"name":"超级输出总线(EV)","tr":"超级输出总线(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1364":{"oreDict":["wireGt12Copper"," wireGt12AnyCopper"],"name":"12x铜导线","tr":"12x铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30036":{"name":"超级输出总线(IV)","tr":"超级输出总线(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1365":{"oreDict":["wireGt16Copper"," wireGt16AnyCopper"],"name":"16x铜导线","tr":"16x铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30037":{"name":"超级输出总线(LuV)","tr":"超级输出总线(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1366":{"oreDict":["craftingWireCopper"," wireCopper"," cableGt01AnyCopper"," cableGt01Copper"],"name":"1x铜线缆","tr":"1x铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30038":{"name":"超级输出总线(ZPM)","tr":"超级输出总线(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1367":{"oreDict":["cableGt02Copper"," cableGt02AnyCopper"],"name":"2x铜线缆","tr":"2x铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30039":{"name":"超级输出总线(UV)","tr":"超级输出总线(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1368":{"oreDict":["cableGt04AnyCopper"," cableGt04Copper"],"name":"4x铜线缆","tr":"4x铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30040":{"name":"超级输出总线(UHV)","tr":"超级输出总线(UHV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1369":{"oreDict":["cableGt08Copper"," cableGt08AnyCopper"],"name":"8x铜线缆","tr":"8x铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1370":{"oreDict":["cableGt12Copper"," cableGt12AnyCopper"],"name":"12x铜线缆","tr":"12x铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1371":{"oreDict":["cableGt16Copper"," cableGt16AnyCopper"],"name":"16x铜线缆","tr":"16x铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1380":{"oreDict":["wireGt01AnyCopper"," wireGt01AnnealedCopper"],"name":"1x退火铜导线","tr":"1x退火铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1381":{"oreDict":["wireGt02AnyCopper"," wireGt02AnnealedCopper"],"name":"2x退火铜导线","tr":"2x退火铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1382":{"oreDict":["wireGt04AnyCopper"," wireGt04AnnealedCopper"],"name":"4x退火铜导线","tr":"4x退火铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1383":{"oreDict":["wireGt08AnyCopper"," wireGt08AnnealedCopper"],"name":"8x退火铜导线","tr":"8x退火铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1384":{"oreDict":["wireGt12AnyCopper"," wireGt12AnnealedCopper"],"name":"12x退火铜导线","tr":"12x退火铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1385":{"oreDict":["wireGt16AnyCopper"," wireGt16AnnealedCopper"],"name":"16x退火铜导线","tr":"16x退火铜导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1386":{"oreDict":["craftingWireCopper"," wireCopper"," cableGt01AnyCopper"," cableGt01AnnealedCopper"],"name":"1x退火铜线缆","tr":"1x退火铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1387":{"oreDict":["cableGt02AnyCopper"," cableGt02AnnealedCopper"],"name":"2x退火铜线缆","tr":"2x退火铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1388":{"oreDict":["cableGt04AnyCopper"," cableGt04AnnealedCopper"],"name":"4x退火铜线缆","tr":"4x退火铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1389":{"oreDict":["cableGt08AnnealedCopper"," cableGt08AnyCopper"],"name":"8x退火铜线缆","tr":"8x退火铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1390":{"oreDict":["cableGt12AnnealedCopper"," cableGt12AnyCopper"],"name":"12x退火铜线缆","tr":"12x退火铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1391":{"oreDict":["cableGt16AnnealedCopper"," cableGt16AnyCopper"],"name":"16x退火铜线缆","tr":"16x退火铜线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1400":{"oreDict":["wireGt01Kanthal"],"name":"1x坎塔尔合金导线","tr":"1x坎塔尔合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1401":{"oreDict":["wireGt02Kanthal"],"name":"2x坎塔尔合金导线","tr":"2x坎塔尔合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1402":{"oreDict":["wireGt04Kanthal"],"name":"4x坎塔尔合金导线","tr":"4x坎塔尔合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1403":{"oreDict":["wireGt08Kanthal"],"name":"8x坎塔尔合金导线","tr":"8x坎塔尔合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1404":{"oreDict":["wireGt12Kanthal"],"name":"12x坎塔尔合金导线","tr":"12x坎塔尔合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1405":{"oreDict":["wireGt16Kanthal"],"name":"16x坎塔尔合金导线","tr":"16x坎塔尔合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1406":{"oreDict":["cableGt01Kanthal"],"name":"1x坎塔尔合金线缆","tr":"1x坎塔尔合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1407":{"oreDict":["cableGt02Kanthal"],"name":"2x坎塔尔合金线缆","tr":"2x坎塔尔合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1408":{"oreDict":["cableGt04Kanthal"],"name":"4x坎塔尔合金线缆","tr":"4x坎塔尔合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1409":{"oreDict":["cableGt08Kanthal"],"name":"8x坎塔尔合金线缆","tr":"8x坎塔尔合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1410":{"oreDict":["cableGt12Kanthal"],"name":"12x坎塔尔合金线缆","tr":"12x坎塔尔合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1411":{"oreDict":["cableGt16Kanthal"],"name":"16x坎塔尔合金线缆","tr":"16x坎塔尔合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1420":{"oreDict":["wireGt01Gold"],"name":"1x金导线","tr":"1x金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1421":{"oreDict":["wireGt02Gold"],"name":"2x金导线","tr":"2x金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1422":{"oreDict":["wireGt04Gold"],"name":"4x金导线","tr":"4x金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1423":{"oreDict":["wireGt08Gold"],"name":"8x金导线","tr":"8x金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1424":{"oreDict":["wireGt12Gold"],"name":"12x金导线","tr":"12x金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1425":{"oreDict":["wireGt16Gold"],"name":"16x金导线","tr":"16x金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1426":{"oreDict":["cableGt01Gold"," craftingWireGold"],"name":"1x金线缆","tr":"1x金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1427":{"oreDict":["cableGt02Gold"],"name":"2x金线缆","tr":"2x金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1428":{"oreDict":["cableGt04Gold"],"name":"4x金线缆","tr":"4x金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30100":{"oreDict":["pipeHexadecupleCopper"],"name":"十六联铜流体管道","tr":"十六联铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1429":{"oreDict":["cableGt08Gold"],"name":"8x金线缆","tr":"8x金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30101":{"oreDict":["pipeHexadecupleBronze"],"name":"十六联青铜流体管道","tr":"十六联青铜流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1430":{"oreDict":["cableGt12Gold"],"name":"12x金线缆","tr":"12x金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30102":{"oreDict":["pipeHexadecupleSteel"],"name":"十六联钢流体管道","tr":"十六联钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1431":{"oreDict":["cableGt16Gold"],"name":"16x金线缆","tr":"16x金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30103":{"oreDict":["pipeHexadecupleStainlessSteel"],"name":"十六联不锈钢流体管道","tr":"十六联不锈钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30104":{"oreDict":["pipeHexadecupleTitanium"],"name":"十六联钛流体管道","tr":"十六联钛流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30105":{"oreDict":["pipeHexadecupleTungstenSteel"],"name":"十六联钨钢流体管道","tr":"十六联钨钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30106":{"oreDict":["pipeHexadecuplePlastic"],"name":"十六联聚乙烯流体管道","tr":"十六联聚乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30107":{"oreDict":["pipeHexadecuplePolytetrafluoroethylene"],"name":"十六联聚四氟乙烯流体管道","tr":"十六联聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1440":{"oreDict":["wireGt01Electrum"],"name":"1x琥珀金导线","tr":"1x琥珀金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1441":{"oreDict":["wireGt02Electrum"],"name":"2x琥珀金导线","tr":"2x琥珀金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1442":{"oreDict":["wireGt04Electrum"],"name":"4x琥珀金导线","tr":"4x琥珀金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1443":{"oreDict":["wireGt08Electrum"],"name":"8x琥珀金导线","tr":"8x琥珀金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1444":{"oreDict":["wireGt12Electrum"],"name":"12x琥珀金导线","tr":"12x琥珀金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1445":{"oreDict":["wireGt16Electrum"],"name":"16x琥珀金导线","tr":"16x琥珀金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1446":{"oreDict":["cableGt01Electrum"],"name":"1x琥珀金线缆","tr":"1x琥珀金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1447":{"oreDict":["cableGt02Electrum"],"name":"2x琥珀金线缆","tr":"2x琥珀金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1448":{"oreDict":["cableGt04Electrum"],"name":"4x琥珀金线缆","tr":"4x琥珀金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1449":{"oreDict":["cableGt08Electrum"],"name":"8x琥珀金线缆","tr":"8x琥珀金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1450":{"oreDict":["cableGt12Electrum"],"name":"12x琥珀金线缆","tr":"12x琥珀金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1451":{"oreDict":["cableGt16Electrum"],"name":"16x琥珀金线缆","tr":"16x琥珀金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1460":{"oreDict":["wireGt01Silver"],"name":"1x银导线","tr":"1x银导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1461":{"oreDict":["wireGt02Silver"],"name":"2x银导线","tr":"2x银导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1462":{"oreDict":["wireGt04Silver"],"name":"4x银导线","tr":"4x银导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1463":{"oreDict":["wireGt08Silver"],"name":"8x银导线","tr":"8x银导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1464":{"oreDict":["wireGt12Silver"],"name":"12x银导线","tr":"12x银导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1465":{"oreDict":["wireGt16Silver"],"name":"16x银导线","tr":"16x银导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1466":{"oreDict":["cableGt01Silver"],"name":"1x银线缆","tr":"1x银线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1467":{"oreDict":["cableGt02Silver"],"name":"2x银线缆","tr":"2x银线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1468":{"oreDict":["cableGt04Silver"],"name":"4x银线缆","tr":"4x银线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1469":{"oreDict":["cableGt08Silver"],"name":"8x银线缆","tr":"8x银线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1470":{"oreDict":["cableGt12Silver"],"name":"12x银线缆","tr":"12x银线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1471":{"oreDict":["cableGt16Silver"],"name":"16x银线缆","tr":"16x银线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1480":{"oreDict":["wireGt01BlueAlloy"],"name":"1x蓝色合金导线","tr":"1x蓝色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1481":{"oreDict":["wireGt02BlueAlloy"],"name":"2x蓝色合金导线","tr":"2x蓝色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1482":{"oreDict":["wireGt04BlueAlloy"],"name":"4x蓝色合金导线","tr":"4x蓝色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1483":{"oreDict":["wireGt08BlueAlloy"],"name":"8x蓝色合金导线","tr":"8x蓝色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1484":{"oreDict":["wireGt12BlueAlloy"],"name":"12x蓝色合金导线","tr":"12x蓝色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1485":{"oreDict":["wireGt16BlueAlloy"],"name":"16x蓝色合金导线","tr":"16x蓝色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1486":{"oreDict":["cableGt01BlueAlloy"],"name":"1x蓝色合金线缆","tr":"1x蓝色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1487":{"oreDict":["cableGt02BlueAlloy"],"name":"2x蓝色合金线缆","tr":"2x蓝色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1488":{"oreDict":["cableGt04BlueAlloy"],"name":"4x蓝色合金线缆","tr":"4x蓝色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1489":{"oreDict":["cableGt08BlueAlloy"],"name":"8x蓝色合金线缆","tr":"8x蓝色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1490":{"oreDict":["cableGt12BlueAlloy"],"name":"12x蓝色合金线缆","tr":"12x蓝色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1491":{"oreDict":["cableGt16BlueAlloy"],"name":"16x蓝色合金线缆","tr":"16x蓝色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1500":{"oreDict":["wireGt01Nichrome"],"name":"1x镍铬合金导线","tr":"1x镍铬合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1501":{"oreDict":["wireGt02Nichrome"],"name":"2x镍铬合金导线","tr":"2x镍铬合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1502":{"oreDict":["wireGt04Nichrome"],"name":"4x镍铬合金导线","tr":"4x镍铬合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1503":{"oreDict":["wireGt08Nichrome"],"name":"8x镍铬合金导线","tr":"8x镍铬合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1504":{"oreDict":["wireGt12Nichrome"],"name":"12x镍铬合金导线","tr":"12x镍铬合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1505":{"oreDict":["wireGt16Nichrome"],"name":"16x镍铬合金导线","tr":"16x镍铬合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1506":{"oreDict":["cableGt01Nichrome"],"name":"1x镍铬合金线缆","tr":"1x镍铬合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5602":{"oreDict":["pipeMediumBrass"],"name":"黄铜物品管道","tr":"黄铜物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1507":{"oreDict":["cableGt02Nichrome"],"name":"2x镍铬合金线缆","tr":"2x镍铬合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5603":{"oreDict":["pipeLargeBrass"],"name":"大型黄铜物品管道","tr":"大型黄铜物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1508":{"oreDict":["cableGt04Nichrome"],"name":"4x镍铬合金线缆","tr":"4x镍铬合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5604":{"oreDict":["pipeHugeBrass"],"name":"巨型黄铜物品管道","tr":"巨型黄铜物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1509":{"oreDict":["cableGt08Nichrome"],"name":"8x镍铬合金线缆","tr":"8x镍铬合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5605":{"oreDict":["pipeRestrictiveMediumBrass"],"name":"加固黄铜物品管道","tr":"加固黄铜物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1510":{"oreDict":["cableGt12Nichrome"],"name":"12x镍铬合金线缆","tr":"12x镍铬合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5606":{"oreDict":["pipeRestrictiveLargeBrass"],"name":"大型加固黄铜物品管道","tr":"大型加固黄铜物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1511":{"oreDict":["cableGt16Nichrome"],"name":"16x镍铬线缆","tr":"16x镍铬线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5607":{"oreDict":["pipeRestrictiveHugeBrass"],"name":"巨型加固黄铜物品管道","tr":"巨型加固黄铜物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5612":{"oreDict":["pipeMediumElectrum"],"name":"琥珀金物品管道","tr":"琥珀金物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5613":{"oreDict":["pipeLargeElectrum"],"name":"大型琥珀金物品管道","tr":"大型琥珀金物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5614":{"oreDict":["pipeHugeElectrum"],"name":"巨型琥珀金物品管道","tr":"巨型琥珀金物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5615":{"oreDict":["pipeRestrictiveMediumElectrum"],"name":"加固琥珀金物品管道","tr":"加固琥珀金物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1520":{"oreDict":["wireGt01Steel"],"name":"1x钢导线","tr":"1x钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5616":{"oreDict":["pipeRestrictiveLargeElectrum"],"name":"大型加固琥珀金物品管道","tr":"大型加固琥珀金物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1521":{"oreDict":["wireGt02Steel"],"name":"2x钢导线","tr":"2x钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5617":{"oreDict":["pipeRestrictiveHugeElectrum"],"name":"巨型加固琥珀金物品管道","tr":"巨型加固琥珀金物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1522":{"oreDict":["wireGt04Steel"],"name":"4x钢导线","tr":"4x钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1523":{"oreDict":["wireGt08Steel"],"name":"8x钢导线","tr":"8x钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1524":{"oreDict":["wireGt12Steel"],"name":"12x钢导线","tr":"12x钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1525":{"oreDict":["wireGt16Steel"],"name":"16x钢导线","tr":"16x钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1526":{"oreDict":["cableGt01Steel"],"name":"1x钢线缆","tr":"1x钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5622":{"oreDict":["pipeMediumPlatinum"],"name":"铂物品管道","tr":"铂物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1527":{"oreDict":["cableGt02Steel"],"name":"2x钢线缆","tr":"2x钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5623":{"oreDict":["pipeLargePlatinum"],"name":"大型铂物品管道","tr":"大型铂物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1528":{"oreDict":["cableGt04Steel"],"name":"4x钢线缆","tr":"4x钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5624":{"oreDict":["pipeHugePlatinum"],"name":"巨型铂物品管道","tr":"巨型铂物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1529":{"oreDict":["cableGt08Steel"],"name":"8x钢线缆","tr":"8x钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5625":{"oreDict":["pipeRestrictiveMediumPlatinum"],"name":"加固铂物品管道","tr":"加固铂物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1530":{"oreDict":["cableGt12Steel"],"name":"12x钢线缆","tr":"12x钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5626":{"oreDict":["pipeRestrictiveLargePlatinum"],"name":"大型加固铂物品管道","tr":"大型加固铂物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1531":{"oreDict":["cableGt16Steel"],"name":"16x钢线缆","tr":"16x钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5627":{"oreDict":["pipeRestrictiveHugePlatinum"],"name":"巨型加固铂物品管道","tr":"巨型加固铂物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5632":{"oreDict":["pipeMediumOsmium"],"name":"锇物品管道","tr":"锇物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5633":{"oreDict":["pipeLargeOsmium"],"name":"大型锇物品管道","tr":"大型锇物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5634":{"oreDict":["pipeHugeOsmium"],"name":"巨型锇物品管道","tr":"巨型锇物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5635":{"oreDict":["pipeRestrictiveMediumOsmium"],"name":"加固锇物品管道","tr":"加固锇物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1540":{"oreDict":["wireGt01BlackSteel"],"name":"1x黑钢导线","tr":"1x黑钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5636":{"oreDict":["pipeRestrictiveLargeOsmium"],"name":"大型加固锇物品管道","tr":"大型加固锇物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1541":{"oreDict":["wireGt02BlackSteel"],"name":"2x黑钢导线","tr":"2x黑钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5637":{"oreDict":["pipeRestrictiveHugeOsmium"],"name":"巨型加固锇物品管道","tr":"巨型加固锇物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1542":{"oreDict":["wireGt04BlackSteel"],"name":"4x黑钢导线","tr":"4x黑钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1543":{"oreDict":["wireGt08BlackSteel"],"name":"8x黑钢导线","tr":"8x黑钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1544":{"oreDict":["wireGt12BlackSteel"],"name":"12x黑钢导线","tr":"12x黑钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1545":{"oreDict":["wireGt16BlackSteel"],"name":"16x黑钢导线","tr":"16x黑钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1546":{"oreDict":["cableGt01BlackSteel"],"name":"1x黑钢线缆","tr":"1x黑钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1547":{"oreDict":["cableGt02BlackSteel"],"name":"2x黑钢线缆","tr":"2x黑钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1548":{"oreDict":["cableGt04BlackSteel"],"name":"4x黑钢线缆","tr":"4x黑钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1549":{"oreDict":["cableGt08BlackSteel"],"name":"8x黑钢线缆","tr":"8x黑钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1550":{"oreDict":["cableGt12BlackSteel"],"name":"12x黑钢线缆","tr":"12x黑钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1551":{"oreDict":["cableGt16BlackSteel"],"name":"16x黑钢线缆","tr":"16x黑钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1560":{"oreDict":["wireGt01Titanium"],"name":"1x钛导线","tr":"1x钛导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1561":{"oreDict":["wireGt02Titanium"],"name":"2x钛导线","tr":"2x钛导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1562":{"oreDict":["wireGt04Titanium"],"name":"4x钛导线","tr":"4x钛导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1563":{"oreDict":["wireGt08Titanium"],"name":"8x钛导线","tr":"8x钛导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1564":{"oreDict":["wireGt12Titanium"],"name":"12x钛导线","tr":"12x钛导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1565":{"oreDict":["wireGt16Titanium"],"name":"16x钛导线","tr":"16x钛导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1566":{"oreDict":["cableGt01Titanium"],"name":"1x钛线缆","tr":"1x钛线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1567":{"oreDict":["cableGt02Titanium"],"name":"2x钛线缆","tr":"2x钛线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1568":{"oreDict":["cableGt04Titanium"],"name":"4x钛线缆","tr":"4x钛线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1569":{"oreDict":["cableGt08Titanium"],"name":"8x钛线缆","tr":"8x钛线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1570":{"oreDict":["cableGt12Titanium"],"name":"12x钛线缆","tr":"12x钛线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1571":{"oreDict":["cableGt16Titanium"],"name":"16x钛线缆","tr":"16x钛线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1580":{"oreDict":["wireGt01Aluminium"],"name":"1x铝导线","tr":"1x铝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1581":{"oreDict":["wireGt02Aluminium"],"name":"2x铝导线","tr":"2x铝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1582":{"oreDict":["wireGt04Aluminium"],"name":"4x铝导线","tr":"4x铝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1583":{"oreDict":["wireGt08Aluminium"],"name":"8x铝导线","tr":"8x铝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1584":{"oreDict":["wireGt12Aluminium"],"name":"12x铝导线","tr":"12x铝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5680":{"oreDict":["pipeTinyPolytetrafluoroethylene"],"name":"微型聚四氟乙烯流体管道","tr":"微型聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1585":{"oreDict":["wireGt16Aluminium"],"name":"16x铝导线","tr":"16x铝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5681":{"oreDict":["pipeSmallPolytetrafluoroethylene"],"name":"小型聚四氟乙烯流体管道","tr":"小型聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1586":{"oreDict":["cableGt01Aluminium"],"name":"1x铝线缆","tr":"1x铝线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5682":{"oreDict":["pipeMediumPolytetrafluoroethylene"],"name":"聚四氟乙烯流体管道","tr":"聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1587":{"oreDict":["cableGt02Aluminium"],"name":"2x铝线缆","tr":"2x铝线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5683":{"oreDict":["pipeLargePolytetrafluoroethylene"],"name":"大型聚四氟乙烯流体管道","tr":"大型聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1588":{"oreDict":["cableGt04Aluminium"],"name":"4x铝线缆","tr":"4x铝线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5684":{"oreDict":["pipeHugePolytetrafluoroethylene"],"name":"巨型聚四氟乙烯流体管道","tr":"巨型聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1589":{"oreDict":["cableGt08Aluminium"],"name":"8x铝线缆","tr":"8x铝线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5685":{"oreDict":["pipeQuadruplePolytetrafluoroethylene"],"name":"四联聚四氟乙烯流体管道","tr":"四联聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1590":{"oreDict":["cableGt12Aluminium"],"name":"12x铝线缆","tr":"12x铝线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5686":{"oreDict":["pipeNonuplePolytetrafluoroethylene"],"name":"九联聚四氟乙烯流体管道","tr":"九联聚四氟乙烯流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1591":{"oreDict":["cableGt16Aluminium"],"name":"16x铝线缆","tr":"16x铝线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5690":{"oreDict":["pipeMediumPolyvinylChloride"],"name":"PVC物品管道","tr":"PVC物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5691":{"oreDict":["pipeLargePolyvinylChloride"],"name":"大型PVC物品管道","tr":"大型PVC物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5692":{"oreDict":["pipeHugePolyvinylChloride"],"name":"巨型PVC物品管道","tr":"巨型PVC物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5693":{"oreDict":["pipeRestrictiveMediumPolyvinylChloride"],"name":"加固PVC物品管道","tr":"加固PVC物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5694":{"oreDict":["pipeRestrictiveLargePolyvinylChloride"],"name":"大型加固PVC物品管道","tr":"大型加固PVC物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5695":{"oreDict":["pipeRestrictiveHugePolyvinylChloride"],"name":"巨型加固PVC物品管道","tr":"巨型加固PVC物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1600":{"oreDict":["wireGt01Graphene"],"name":"1x石墨烯导线","tr":"1x石墨烯导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1601":{"oreDict":["wireGt02Graphene"],"name":"2x石墨烯导线","tr":"2x石墨烯导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1602":{"oreDict":["wireGt04Graphene"],"name":"4x石墨烯导线","tr":"4x石墨烯导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1603":{"oreDict":["wireGt08Graphene"],"name":"8x石墨烯导线","tr":"8x石墨烯导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1604":{"oreDict":["wireGt12Graphene"],"name":"12x石墨烯导线","tr":"12x石墨烯导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5700":{"oreDict":["pipeMediumNickel"],"name":"镍物品管道","tr":"镍物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1605":{"oreDict":["wireGt16Graphene"],"name":"16x石墨烯导线","tr":"16x石墨烯导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5701":{"oreDict":["pipeLargeNickel"],"name":"大型镍物品管道","tr":"大型镍物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5702":{"oreDict":["pipeHugeNickel"],"name":"巨型镍物品管道","tr":"巨型镍物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5703":{"oreDict":["pipeRestrictiveMediumNickel"],"name":"加固镍物品管道","tr":"加固镍物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5704":{"oreDict":["pipeRestrictiveLargeNickel"],"name":"大型加固镍物品管道","tr":"大型加固镍物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5705":{"oreDict":["pipeRestrictiveHugeNickel"],"name":"巨型加固镍物品管道","tr":"巨型加固镍物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5710":{"oreDict":["pipeMediumCobalt"],"name":"钴物品管道","tr":"钴物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5711":{"oreDict":["pipeLargeCobalt"],"name":"大型钴物品管道","tr":"大型钴物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5712":{"oreDict":["pipeHugeCobalt"],"name":"巨型钴物品管道","tr":"巨型钴物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5713":{"oreDict":["pipeRestrictiveMediumCobalt"],"name":"加固钴物品管道","tr":"加固钴物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5714":{"oreDict":["pipeRestrictiveLargeCobalt"],"name":"大型加固钴物品管道","tr":"大型加固钴物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5715":{"oreDict":["pipeRestrictiveHugeCobalt"],"name":"巨型加固钴物品管道","tr":"巨型加固钴物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1620":{"oreDict":["wireGt01Osmium"],"name":"1x锇导线","tr":"1x锇导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1621":{"oreDict":["wireGt02Osmium"],"name":"2x锇导线","tr":"2x锇导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1622":{"oreDict":["wireGt04Osmium"],"name":"4x锇导线","tr":"4x锇导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1623":{"oreDict":["wireGt08Osmium"],"name":"8x锇导线","tr":"8x锇导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1624":{"oreDict":["wireGt12Osmium"],"name":"12x锇导线","tr":"12x锇导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5720":{"oreDict":["pipeMediumAluminium"],"name":"铝物品管道","tr":"铝物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1625":{"oreDict":["wireGt16Osmium"],"name":"16x锇导线","tr":"16x锇导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5721":{"oreDict":["pipeLargeAluminium"],"name":"大型铝物品管道","tr":"大型铝物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1626":{"oreDict":["cableGt01Osmium"],"name":"1x锇线缆","tr":"1x锇线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5722":{"oreDict":["pipeHugeAluminium"],"name":"巨型铝物品管道","tr":"巨型铝物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1627":{"oreDict":["cableGt02Osmium"],"name":"2x锇线缆","tr":"2x锇线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5723":{"oreDict":["pipeRestrictiveMediumAluminium"],"name":"加固铝物品管道","tr":"加固铝物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1628":{"oreDict":["cableGt04Osmium"],"name":"4x锇线缆","tr":"4x锇线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5724":{"oreDict":["pipeRestrictiveLargeAluminium"],"name":"大型加固铝物品管道","tr":"大型加固铝物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1629":{"oreDict":["cableGt08Osmium"],"name":"8x锇线缆","tr":"8x锇线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5725":{"oreDict":["pipeRestrictiveHugeAluminium"],"name":"巨型加固铝物品管道","tr":"巨型加固铝物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1630":{"oreDict":["cableGt12Osmium"],"name":"12x锇线缆","tr":"12x锇线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1631":{"oreDict":["cableGt16Osmium"],"name":"16x锇线缆","tr":"16x锇线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1640":{"oreDict":["wireGt01Platinum"],"name":"1x铂导线","tr":"1x铂导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1641":{"oreDict":["wireGt02Platinum"],"name":"2x铂导线","tr":"2x铂导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1642":{"oreDict":["wireGt04Platinum"],"name":"4x铂导线","tr":"4x铂导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1643":{"oreDict":["wireGt08Platinum"],"name":"8x铂导线","tr":"8x铂导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1644":{"oreDict":["wireGt12Platinum"],"name":"12x铂导线","tr":"12x铂导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1645":{"oreDict":["wireGt16Platinum"],"name":"16x铂导线","tr":"16x铂导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1646":{"oreDict":["cableGt01Platinum"],"name":"1x铂线缆","tr":"1x铂线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1647":{"oreDict":["cableGt02Platinum"],"name":"2x铂线缆","tr":"2x铂线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1648":{"oreDict":["cableGt04Platinum"],"name":"4x铂线缆","tr":"4x铂线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1649":{"oreDict":["cableGt08Platinum"],"name":"8x铂线缆","tr":"8x铂线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1650":{"oreDict":["cableGt12Platinum"],"name":"12x铂线缆","tr":"12x铂线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1651":{"oreDict":["cableGt16Platinum"],"name":"16x铂线缆","tr":"16x铂线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1660":{"oreDict":["wireGt01TungstenSteel"],"name":"1x钨钢导线","tr":"1x钨钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1661":{"oreDict":["wireGt02TungstenSteel"],"name":"2x钨钢导线","tr":"2x钨钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1662":{"oreDict":["wireGt04TungstenSteel"],"name":"4x钨钢导线","tr":"4x钨钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1663":{"oreDict":["wireGt08TungstenSteel"],"name":"8x钨钢导线","tr":"8x钨钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1664":{"oreDict":["wireGt12TungstenSteel"],"name":"12x钨钢导线","tr":"12x钨钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5760":{"oreDict":["pipeTinyRadoxPoly"],"name":"微型拉多X聚合物流体管道","tr":"微型拉多X聚合物流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1665":{"oreDict":["wireGt16TungstenSteel"],"name":"16x钨钢导线","tr":"16x钨钢导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5761":{"oreDict":["pipeSmallRadoxPoly"],"name":"小型拉多X聚合物流体管道","tr":"小型拉多X聚合物流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1666":{"oreDict":["cableGt01TungstenSteel"],"name":"1x钨钢线缆","tr":"1x钨钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5762":{"oreDict":["pipeMediumRadoxPoly"],"name":"拉多X聚合物流体管道","tr":"拉多X聚合物流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1667":{"oreDict":["cableGt02TungstenSteel"],"name":"2x钨钢线缆","tr":"2x钨钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5763":{"oreDict":["pipeLargeRadoxPoly"],"name":"大型拉多X聚合物流体管道","tr":"大型拉多X聚合物流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1668":{"oreDict":["cableGt04TungstenSteel"],"name":"4x钨钢线缆","tr":"4x钨钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5764":{"oreDict":["pipeHugeRadoxPoly"],"name":"巨型拉多X聚合物流体管道","tr":"巨型拉多X聚合物流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1669":{"oreDict":["cableGt08TungstenSteel"],"name":"8x钨钢线缆","tr":"8x钨钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1670":{"oreDict":["cableGt12TungstenSteel"],"name":"12x钨钢线缆","tr":"12x钨钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1671":{"oreDict":["cableGt16TungstenSteel"],"name":"16x钨钢线缆","tr":"16x钨钢线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1680":{"oreDict":["wireGt01Tungsten"],"name":"1x钨导线","tr":"1x钨导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1681":{"oreDict":["wireGt02Tungsten"],"name":"2x钨导线","tr":"2x钨导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1682":{"oreDict":["wireGt04Tungsten"],"name":"4x钨导线","tr":"4x钨导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1683":{"oreDict":["wireGt08Tungsten"],"name":"8x钨导线","tr":"8x钨导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1684":{"oreDict":["wireGt12Tungsten"],"name":"12x钨导线","tr":"12x钨导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1685":{"oreDict":["wireGt16Tungsten"],"name":"16x钨导线","tr":"16x钨导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1686":{"oreDict":["cableGt01Tungsten"],"name":"1x钨线缆","tr":"1x钨线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1687":{"oreDict":["cableGt02Tungsten"],"name":"2x钨线缆","tr":"2x钨线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1688":{"oreDict":["cableGt04Tungsten"],"name":"4x钨线缆","tr":"4x钨线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1689":{"oreDict":["cableGt08Tungsten"],"name":"8x钨线缆","tr":"8x钨线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1690":{"oreDict":["cableGt12Tungsten"],"name":"12x钨线缆","tr":"12x钨线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1691":{"oreDict":["cableGt16Tungsten"],"name":"16x钨线缆","tr":"16x钨线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1700":{"oreDict":["wireGt01HSSG"],"name":"1x高速钢-G导线","tr":"1x高速钢-G导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1701":{"oreDict":["wireGt02HSSG"],"name":"2x高速钢-G导线","tr":"2x高速钢-G导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1702":{"oreDict":["wireGt04HSSG"],"name":"4x高速钢-G导线","tr":"4x高速钢-G导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1703":{"oreDict":["wireGt08HSSG"],"name":"8x高速钢-G导线","tr":"8x高速钢-G导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1704":{"oreDict":["wireGt12HSSG"],"name":"12x高速钢-G导线","tr":"12x高速钢-G导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1705":{"oreDict":["wireGt16HSSG"],"name":"16x高速钢-G导线","tr":"16x高速钢-G导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1706":{"oreDict":["cableGt01HSSG"],"name":"1x高速钢-G线缆","tr":"1x高速钢-G线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1707":{"oreDict":["cableGt02HSSG"],"name":"2x高速钢-G线缆","tr":"2x高速钢-G线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1708":{"oreDict":["cableGt04HSSG"],"name":"4x高速钢-G线缆","tr":"4x高速钢-G线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1709":{"oreDict":["cableGt08HSSG"],"name":"8x高速钢-G线缆","tr":"8x高速钢-G线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1710":{"oreDict":["cableGt12HSSG"],"name":"12x高速钢-G线缆","tr":"12x高速钢-G线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1711":{"oreDict":["cableGt16HSSG"],"name":"16x高速钢-G线缆","tr":"16x高速钢-G线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14001":{"name":"戴森球地面单元","tr":"戴森球地面单元","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14002":{"name":"行星气体钻机","tr":"行星气体钻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14003":{"name":"太空电梯","tr":"太空电梯","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14004":{"name":"太空组装模块MK-I","tr":"太空组装模块MK-I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14005":{"name":"太空组装模块MK-II","tr":"太空组装模块MK-II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14006":{"name":"太空组装模块MK-III","tr":"太空组装模块MK-III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14007":{"name":"太空采矿模块MK-I","tr":"太空采矿模块MK-I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1720":{"oreDict":["wireGt01NiobiumTitanium"],"name":"1x铌钛合金导线","tr":"1x铌钛合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14008":{"name":"太空采矿模块MK-II","tr":"太空采矿模块MK-II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1721":{"oreDict":["wireGt02NiobiumTitanium"],"name":"2x铌钛合金导线","tr":"2x铌钛合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14009":{"name":"太空采矿模块MK-III","tr":"太空采矿模块MK-III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1722":{"oreDict":["wireGt04NiobiumTitanium"],"name":"4x铌钛合金导线","tr":"4x铌钛合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14010":{"name":"太空钻机模块MK-I","tr":"太空钻机模块MK-I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1723":{"oreDict":["wireGt08NiobiumTitanium"],"name":"8x铌钛合金导线","tr":"8x铌钛合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14011":{"name":"太空钻机模块MK-II","tr":"太空钻机模块MK-II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1724":{"oreDict":["wireGt12NiobiumTitanium"],"name":"12x铌钛合金导线","tr":"12x铌钛合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14012":{"name":"太空项目管理器","tr":"太空项目管理器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1725":{"oreDict":["wireGt16NiobiumTitanium"],"name":"16x铌钛合金导线","tr":"16x铌钛合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14013":{"name":"太空研究模块","tr":"太空研究模块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1726":{"oreDict":["cableGt01NiobiumTitanium"],"name":"1x铌钛合金线缆","tr":"1x铌钛合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14014":{"name":"太空钻机模块MK-III","tr":"太空钻机模块MK-III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1727":{"oreDict":["cableGt02NiobiumTitanium"],"name":"2x铌钛合金线缆","tr":"2x铌钛合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1728":{"oreDict":["cableGt04NiobiumTitanium"],"name":"4x铌钛合金线缆","tr":"4x铌钛合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1729":{"oreDict":["cableGt08NiobiumTitanium"],"name":"8x铌钛合金线缆","tr":"8x铌钛合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1730":{"oreDict":["cableGt12NiobiumTitanium"],"name":"12x铌钛合金线缆","tr":"12x铌钛合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1731":{"oreDict":["cableGt16NiobiumTitanium"],"name":"16x铌钛合金线缆","tr":"16x铌钛合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1740":{"oreDict":["wireGt01VanadiumGallium"],"name":"1x钒镓合金导线","tr":"1x钒镓合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1741":{"oreDict":["wireGt02VanadiumGallium"],"name":"2x钒镓合金导线","tr":"2x钒镓合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1742":{"oreDict":["wireGt04VanadiumGallium"],"name":"4x钒镓合金导线","tr":"4x钒镓合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1743":{"oreDict":["wireGt08VanadiumGallium"],"name":"8x钒镓合金导线","tr":"8x钒镓合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1744":{"oreDict":["wireGt12VanadiumGallium"],"name":"12x钒镓合金导线","tr":"12x钒镓合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1745":{"oreDict":["wireGt16VanadiumGallium"],"name":"16x钒镓合金导线","tr":"16x钒镓合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1746":{"oreDict":["cableGt01VanadiumGallium"],"name":"1x钒镓合金线缆","tr":"1x钒镓合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1747":{"oreDict":["cableGt02VanadiumGallium"],"name":"2x钒镓合金线缆","tr":"2x钒镓合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1748":{"oreDict":["cableGt04VanadiumGallium"],"name":"4x钒镓合金线缆","tr":"4x钒镓合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1749":{"oreDict":["cableGt08VanadiumGallium"],"name":"8x钒镓合金线缆","tr":"8x钒镓合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1750":{"oreDict":["cableGt12VanadiumGallium"],"name":"12x钒镓合金线缆","tr":"12x钒镓合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1751":{"oreDict":["cableGt16VanadiumGallium"],"name":"16x钒镓合金线缆","tr":"16x钒镓合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1760":{"oreDict":["wireGt01YttriumBariumCuprate"],"name":"1x钇钡铜氧导线","tr":"1x钇钡铜氧导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1761":{"oreDict":["wireGt02YttriumBariumCuprate"],"name":"2x钇钡铜氧导线","tr":"2x钇钡铜氧导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1762":{"oreDict":["wireGt04YttriumBariumCuprate"],"name":"4x钇钡铜氧导线","tr":"4x钇钡铜氧导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1763":{"oreDict":["wireGt08YttriumBariumCuprate"],"name":"8x钇钡铜氧导线","tr":"8x钇钡铜氧导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1764":{"oreDict":["wireGt12YttriumBariumCuprate"],"name":"12x钇钡铜氧导线","tr":"12x钇钡铜氧导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1765":{"oreDict":["wireGt16YttriumBariumCuprate"],"name":"16x钇钡铜氧导线","tr":"16x钇钡铜氧导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1766":{"oreDict":["cableGt01YttriumBariumCuprate"],"name":"1x钇钡铜氧合金线缆","tr":"1x钇钡铜氧合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1767":{"oreDict":["cableGt02YttriumBariumCuprate"],"name":"2x钇钡铜氧合金线缆","tr":"2x钇钡铜氧合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1768":{"oreDict":["cableGt04YttriumBariumCuprate"],"name":"4x钇钡铜氧合金线缆","tr":"4x钇钡铜氧合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1769":{"oreDict":["cableGt08YttriumBariumCuprate"],"name":"8x钇钡铜氧合金线缆","tr":"8x钇钡铜氧合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1770":{"oreDict":["cableGt12YttriumBariumCuprate"],"name":"12x钇钡铜氧合金线缆","tr":"12x钇钡铜氧合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1771":{"oreDict":["cableGt16YttriumBariumCuprate"],"name":"16x钇钡铜氧合金线缆","tr":"16x钇钡铜氧合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1780":{"oreDict":["wireGt01Naquadah"],"name":"1x硅岩导线","tr":"1x硅岩导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1781":{"oreDict":["wireGt02Naquadah"],"name":"2x硅岩导线","tr":"2x硅岩导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1782":{"oreDict":["wireGt04Naquadah"],"name":"4x硅岩导线","tr":"4x硅岩导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1783":{"oreDict":["wireGt08Naquadah"],"name":"8x硅岩导线","tr":"8x硅岩导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1784":{"oreDict":["wireGt12Naquadah"],"name":"12x硅岩导线","tr":"12x硅岩导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1785":{"oreDict":["wireGt16Naquadah"],"name":"16x硅岩导线","tr":"16x硅岩导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1786":{"oreDict":["cableGt01Naquadah"],"name":"1x硅岩线缆","tr":"1x硅岩线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1787":{"oreDict":["cableGt02Naquadah"],"name":"2x硅岩线缆","tr":"2x硅岩线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1788":{"oreDict":["cableGt04Naquadah"],"name":"4x硅岩线缆","tr":"4x硅岩线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1789":{"oreDict":["cableGt08Naquadah"],"name":"8x硅岩线缆","tr":"8x硅岩线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1790":{"oreDict":["cableGt12Naquadah"],"name":"12x硅岩线缆","tr":"12x硅岩线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1791":{"oreDict":["cableGt16Naquadah"],"name":"16x硅岩线缆","tr":"16x硅岩线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1800":{"oreDict":["wireGt01NaquadahAlloy"],"name":"1x硅岩合金导线","tr":"1x硅岩合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1801":{"oreDict":["wireGt02NaquadahAlloy"],"name":"2x硅岩合金导线","tr":"2x硅岩合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1802":{"oreDict":["wireGt04NaquadahAlloy"],"name":"4x硅岩合金导线","tr":"4x硅岩合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1803":{"oreDict":["wireGt08NaquadahAlloy"],"name":"8x硅岩合金导线","tr":"8x硅岩合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1804":{"oreDict":["wireGt12NaquadahAlloy"],"name":"12x硅岩合金导线","tr":"12x硅岩合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1805":{"oreDict":["wireGt16NaquadahAlloy"],"name":"16x硅岩合金导线","tr":"16x硅岩合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1806":{"oreDict":["cableGt01NaquadahAlloy"],"name":"1x硅岩合金线缆","tr":"1x硅岩合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1807":{"oreDict":["cableGt02NaquadahAlloy"],"name":"2x硅岩合金线缆","tr":"2x硅岩合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1808":{"oreDict":["cableGt04NaquadahAlloy"],"name":"4x硅岩合金线缆","tr":"4x硅岩合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1809":{"oreDict":["cableGt08NaquadahAlloy"],"name":"8x硅岩合金线缆","tr":"8x硅岩合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1810":{"oreDict":["cableGt12NaquadahAlloy"],"name":"12x硅岩合金线缆","tr":"12x硅岩合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1811":{"oreDict":["cableGt16NaquadahAlloy"],"name":"16x硅岩合金线缆","tr":"16x硅岩合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1820":{"oreDict":["wireGt01Duranium"],"name":"1x铿铀导线","tr":"1x铿铀导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1821":{"oreDict":["wireGt02Duranium"],"name":"2x铿铀导线","tr":"2x铿铀导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1822":{"oreDict":["wireGt04Duranium"],"name":"4x铿铀导线","tr":"4x铿铀导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1823":{"oreDict":["wireGt08Duranium"],"name":"8x铿铀导线","tr":"8x铿铀导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1824":{"oreDict":["wireGt12Duranium"],"name":"12x铿铀导线","tr":"12x铿铀导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1825":{"oreDict":["wireGt16Duranium"],"name":"16x铿铀导线","tr":"16x铿铀导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1826":{"oreDict":["cableGt01Duranium"],"name":"1x铿铀线缆","tr":"1x铿铀线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1827":{"oreDict":["cableGt02Duranium"],"name":"2x铿铀线缆","tr":"2x铿铀线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1828":{"oreDict":["cableGt04Duranium"],"name":"4x铿铀线缆","tr":"4x铿铀线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30500":{"oreDict":["pipeTinyTriniumNaquadahCarbonite"],"name":"微型掺碳三元硅岩合金流体管道","tr":"微型掺碳三元硅岩合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1829":{"oreDict":["cableGt08Duranium"],"name":"8x铿铀线缆","tr":"8x铿铀线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30501":{"oreDict":["pipeSmallTriniumNaquadahCarbonite"],"name":"小型掺碳三元硅岩合金流体管道","tr":"小型掺碳三元硅岩合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1830":{"oreDict":["cableGt12Duranium"],"name":"12x铿铀线缆","tr":"12x铿铀线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30502":{"oreDict":["pipeMediumTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金流体管道","tr":"掺碳三元硅岩合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1831":{"oreDict":["cableGt16Duranium"],"name":"16x铿铀线缆","tr":"16x铿铀线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30503":{"oreDict":["pipeLargeTriniumNaquadahCarbonite"],"name":"大型掺碳三元硅岩合金流体管道","tr":"大型掺碳三元硅岩合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30504":{"oreDict":["pipeHugeTriniumNaquadahCarbonite"],"name":"巨型掺碳三元硅岩合金流体管道","tr":"巨型掺碳三元硅岩合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1840":{"oreDict":["wireGt01TPVAlloy"],"name":"1x钛铂钒合金导线","tr":"1x钛铂钒合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1841":{"oreDict":["wireGt02TPVAlloy"],"name":"2x钛铂钒合金导线","tr":"2x钛铂钒合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1842":{"oreDict":["wireGt04TPVAlloy"],"name":"4x钛铂钒合金导线","tr":"4x钛铂钒合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1843":{"oreDict":["wireGt08TPVAlloy"],"name":"8x钛铂钒合金导线","tr":"8x钛铂钒合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1844":{"oreDict":["wireGt12TPVAlloy"],"name":"12x钛铂钒合金导线","tr":"12x钛铂钒合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1845":{"oreDict":["wireGt16TPVAlloy"],"name":"16x钛铂钒合金导线","tr":"16x钛铂钒合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1846":{"oreDict":["cableGt01TPVAlloy"],"name":"1x钛铂钒合金线缆","tr":"1x钛铂钒合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1847":{"oreDict":["cableGt02TPVAlloy"],"name":"2x钛铂钒合金线缆","tr":"2x钛铂钒合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1848":{"oreDict":["cableGt04TPVAlloy"],"name":"4x钛铂钒合金线缆","tr":"4x钛铂钒合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1849":{"oreDict":["cableGt08TPVAlloy"],"name":"8x钛铂钒合金线缆","tr":"8x钛铂钒合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1850":{"oreDict":["cableGt12TPVAlloy"],"name":"12x钛铂钒合金线缆","tr":"12x钛铂钒合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1851":{"oreDict":["cableGt16TPVAlloy"],"name":"16x钛铂钒合金线缆","tr":"16x钛铂钒合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30585":{"oreDict":["wireGt01Hypogen"],"name":"1x海珀珍导线","tr":"1x海珀珍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30586":{"oreDict":["wireGt02Hypogen"],"name":"2x海珀珍导线","tr":"2x海珀珍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30587":{"oreDict":["wireGt04Hypogen"],"name":"4x海珀珍导线","tr":"4x海珀珍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30588":{"oreDict":["wireGt08Hypogen"],"name":"8x海珀珍导线","tr":"8x海珀珍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30589":{"oreDict":["wireGt12Hypogen"],"name":"12x海珀珍导线","tr":"12x海珀珍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30590":{"oreDict":["wireGt16Hypogen"],"name":"16x海珀珍导线","tr":"16x海珀珍导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30645":{"oreDict":["wireGt01RedstoneAlloy"],"name":"1x红石合金导线","tr":"1x红石合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30646":{"oreDict":["wireGt02RedstoneAlloy"],"name":"2x红石合金导线","tr":"2x红石合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30647":{"oreDict":["wireGt04RedstoneAlloy"],"name":"4x红石合金导线","tr":"4x红石合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30648":{"oreDict":["wireGt08RedstoneAlloy"],"name":"8x红石合金导线","tr":"8x红石合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30649":{"oreDict":["wireGt12RedstoneAlloy"],"name":"12x红石合金导线","tr":"12x红石合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30650":{"oreDict":["wireGt16RedstoneAlloy"],"name":"16x红石合金导线","tr":"16x红石合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30651":{"oreDict":["cableGt01RedstoneAlloy"],"name":"1x红石合金线缆","tr":"1x红石合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30652":{"oreDict":["cableGt02RedstoneAlloy"],"name":"2x红石合金线缆","tr":"2x红石合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30653":{"oreDict":["cableGt04RedstoneAlloy"],"name":"4x红石合金线缆","tr":"4x红石合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30654":{"oreDict":["cableGt08RedstoneAlloy"],"name":"8x红石合金线缆","tr":"8x红石合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30655":{"oreDict":["cableGt12RedstoneAlloy"],"name":"12x红石合金线缆","tr":"12x红石合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30656":{"oreDict":["cableGt16RedstoneAlloy"],"name":"16x红石合金线缆","tr":"16x红石合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2000":{"oreDict":["wireGt01RedAlloy"],"name":"1x红色合金导线","tr":"1x红色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2001":{"oreDict":["wireGt02RedAlloy"],"name":"2x红色合金导线","tr":"2x红色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2002":{"oreDict":["wireGt04RedAlloy"],"name":"4x红色合金导线","tr":"4x红色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2003":{"oreDict":["wireGt08RedAlloy"],"name":"8x红色合金导线","tr":"8x红色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2004":{"oreDict":["wireGt12RedAlloy"],"name":"12x红色合金导线","tr":"12x红色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2005":{"oreDict":["wireGt16RedAlloy"],"name":"16x红色合金导线","tr":"16x红色合金导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2006":{"oreDict":["cableGt01RedAlloy"],"name":"1x红色合金线缆","tr":"1x红色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2007":{"oreDict":["cableGt02RedAlloy"],"name":"2x红色合金线缆","tr":"2x红色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2008":{"oreDict":["cableGt04RedAlloy"],"name":"4x红色合金线缆","tr":"4x红色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2009":{"oreDict":["cableGt08RedAlloy"],"name":"8x红色合金线缆","tr":"8x红色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2010":{"oreDict":["cableGt12RedAlloy"],"name":"12x红色合金线缆","tr":"12x红色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2011":{"oreDict":["cableGt16RedAlloy"],"name":"16x红色合金线缆","tr":"16x红色合金线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2020":{"oreDict":["wireGt01Superconductor"],"name":"1xUHV超导导线","tr":"1xUHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2021":{"oreDict":["wireGt02Superconductor"],"name":"2xUHV超导导线","tr":"2xUHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2022":{"oreDict":["wireGt04Superconductor"],"name":"4xUHV超导导线","tr":"4xUHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2023":{"oreDict":["wireGt08Superconductor"],"name":"8xUHV超导导线","tr":"8xUHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2024":{"oreDict":["wireGt12Superconductor"],"name":"12xUHV超导导线","tr":"12xUHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2025":{"oreDict":["wireGt16Superconductor"],"name":"16xUHV超导导线","tr":"16xUHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2026":{"oreDict":["wireGt01SuperconductorUEV"],"name":"1xUEV超导导线","tr":"1xUEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2027":{"oreDict":["wireGt02SuperconductorUEV"],"name":"2xUEV超导导线","tr":"2xUEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2028":{"oreDict":["wireGt04SuperconductorUEV"],"name":"4xUEV超导导线","tr":"4xUEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30700":{"oreDict":["pipeTinyStaballoy"],"name":"微型贫铀合金流体管道","tr":"微型贫铀合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2029":{"oreDict":["wireGt08SuperconductorUEV"],"name":"8xUEV超导导线","tr":"8xUEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30701":{"oreDict":["pipeSmallStaballoy"],"name":"小型贫铀合金流体管道","tr":"小型贫铀合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2030":{"oreDict":["wireGt12SuperconductorUEV"],"name":"12xUEV超导导线","tr":"12xUEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30702":{"oreDict":["pipeMediumStaballoy"],"name":"贫铀合金流体管道","tr":"贫铀合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2031":{"oreDict":["wireGt16SuperconductorUEV"],"name":"16xUEV超导导线","tr":"16xUEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30703":{"oreDict":["pipeLargeStaballoy"],"name":"大型贫铀合金流体管道","tr":"大型贫铀合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2032":{"oreDict":["wireGt01SuperconductorUEVBase"],"name":"1xUEV超导粗胚导线","tr":"1xUEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30704":{"oreDict":["pipeHugeStaballoy"],"name":"巨型贫铀合金流体管道","tr":"巨型贫铀合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2033":{"oreDict":["wireGt02SuperconductorUEVBase"],"name":"2xUEV超导粗胚导线","tr":"2xUEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30705":{"oreDict":["pipeTinyTantalloy60"],"name":"微型钽钨合金-60流体管道","tr":"微型钽钨合金-60流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2034":{"oreDict":["wireGt04SuperconductorUEVBase"],"name":"4xUEV超导粗胚导线","tr":"4xUEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30706":{"oreDict":["pipeSmallTantalloy60"],"name":"小型钽钨合金-60流体管道","tr":"小型钽钨合金-60流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2035":{"oreDict":["wireGt08SuperconductorUEVBase"],"name":"8xUEV超导粗胚导线","tr":"8xUEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30707":{"oreDict":["pipeMediumTantalloy60"],"name":"钽钨合金-60流体管道","tr":"钽钨合金-60流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2036":{"oreDict":["wireGt12SuperconductorUEVBase"],"name":"12xUEV超导粗胚导线","tr":"12xUEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30708":{"oreDict":["pipeLargeTantalloy60"],"name":"大型钽钨合金-60流体管道","tr":"大型钽钨合金-60流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2037":{"oreDict":["wireGt16SuperconductorUEVBase"],"name":"16xUEV超导粗胚导线","tr":"16xUEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30709":{"oreDict":["pipeHugeTantalloy60"],"name":"巨型钽钨合金-60流体管道","tr":"巨型钽钨合金-60流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30710":{"oreDict":["pipeTinyTantalloy61"],"name":"微型钽钨合金-61流体管道","tr":"微型钽钨合金-61流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30711":{"oreDict":["pipeSmallTantalloy61"],"name":"小型钽钨合金-61流体管道","tr":"小型钽钨合金-61流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30712":{"oreDict":["pipeMediumTantalloy61"],"name":"钽钨合金-61流体管道","tr":"钽钨合金-61流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30713":{"oreDict":["pipeLargeTantalloy61"],"name":"大型钽钨合金-61流体管道","tr":"大型钽钨合金-61流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30714":{"oreDict":["pipeHugeTantalloy61"],"name":"巨型钽钨合金-61流体管道","tr":"巨型钽钨合金-61流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30715":{"oreDict":["pipeTinyVoid"],"name":"微型虚空金属流体管道","tr":"微型虚空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30716":{"oreDict":["pipeSmallVoid"],"name":"小型虚空金属流体管道","tr":"小型虚空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30717":{"oreDict":["pipeMediumVoid"],"name":"虚空金属流体管道","tr":"虚空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30718":{"oreDict":["pipeLargeVoid"],"name":"大型虚空金属流体管道","tr":"大型虚空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30719":{"oreDict":["pipeHugeVoid"],"name":"巨型虚空金属流体管道","tr":"巨型虚空金属流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30720":{"oreDict":["pipeTinyEuropium"],"name":"微型铕流体管道","tr":"微型铕流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30721":{"oreDict":["pipeSmallEuropium"],"name":"小型铕流体管道","tr":"小型铕流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30722":{"oreDict":["pipeMediumEuropium"],"name":"铕流体管道","tr":"铕流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30723":{"oreDict":["pipeLargeEuropium"],"name":"大型铕流体管道","tr":"大型铕流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2052":{"oreDict":["wireGt01SuperconductorUIVBase"],"name":"1xUIV超导粗胚导线","tr":"1xUIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30724":{"oreDict":["pipeHugeEuropium"],"name":"巨型铕流体管道","tr":"巨型铕流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2053":{"oreDict":["wireGt02SuperconductorUIVBase"],"name":"2xUIV超导粗胚导线","tr":"2xUIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30725":{"oreDict":["pipeTinyPotin"],"name":"微型粗青铜合金流体管道","tr":"微型粗青铜合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2054":{"oreDict":["wireGt04SuperconductorUIVBase"],"name":"4xUIV超导粗胚导线","tr":"4xUIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30726":{"oreDict":["pipeSmallPotin"],"name":"小型粗青铜合金流体管道","tr":"小型粗青铜合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2055":{"oreDict":["wireGt08SuperconductorUIVBase"],"name":"8xUIV超导粗胚导线","tr":"8xUIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30727":{"oreDict":["pipeMediumPotin"],"name":"粗青铜合金流体管道","tr":"粗青铜合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2056":{"oreDict":["wireGt12SuperconductorUIVBase"],"name":"12xUIV超导粗胚导线","tr":"12xUIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30728":{"oreDict":["pipeLargePotin"],"name":"大型粗青铜合金流体管道","tr":"大型粗青铜合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2057":{"oreDict":["wireGt16SuperconductorUIVBase"],"name":"16xUIV超导粗胚导线","tr":"16xUIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30729":{"oreDict":["pipeHugePotin"],"name":"巨型粗青铜合金流体管道","tr":"巨型粗青铜合金流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30730":{"oreDict":["pipeTinyMaragingSteel300"],"name":"微型马氏体时效钢300流体管道","tr":"微型马氏体时效钢300流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30731":{"oreDict":["pipeSmallMaragingSteel300"],"name":"小型马氏体时效钢300流体管道","tr":"小型马氏体时效钢300流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30732":{"oreDict":["pipeMediumMaragingSteel300"],"name":"马氏体时效钢300流体管道","tr":"马氏体时效钢300流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30733":{"oreDict":["pipeLargeMaragingSteel300"],"name":"大型马氏体时效钢300流体管道","tr":"大型马氏体时效钢300流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30734":{"oreDict":["pipeHugeMaragingSteel300"],"name":"巨型马氏体时效钢300流体管道","tr":"巨型马氏体时效钢300流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30735":{"oreDict":["pipeTinyMaragingSteel350"],"name":"微型马氏体时效钢350流体管道","tr":"微型马氏体时效钢350流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30736":{"oreDict":["pipeSmallMaragingSteel350"],"name":"小型马氏体时效钢350流体管道","tr":"小型马氏体时效钢350流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30737":{"oreDict":["pipeMediumMaragingSteel350"],"name":"马氏体时效钢350流体管道","tr":"马氏体时效钢350流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30738":{"oreDict":["pipeLargeMaragingSteel350"],"name":"大型马氏体时效钢350流体管道","tr":"大型马氏体时效钢350流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30739":{"oreDict":["pipeHugeMaragingSteel350"],"name":"巨型马氏体时效钢350流体管道","tr":"巨型马氏体时效钢350流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30740":{"oreDict":["pipeTinyInconel690"],"name":"微型镍铬基合金-690流体管道","tr":"微型镍铬基合金-690流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30741":{"oreDict":["pipeSmallInconel690"],"name":"小型镍铬基合金-690流体管道","tr":"小型镍铬基合金-690流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30742":{"oreDict":["pipeMediumInconel690"],"name":"镍铬基合金-690流体管道","tr":"镍铬基合金-690流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30743":{"oreDict":["pipeLargeInconel690"],"name":"大型镍铬基合金-690流体管道","tr":"大型镍铬基合金-690流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2072":{"oreDict":["wireGt01SuperconductorUMVBase"],"name":"1xUMV超导粗胚导线","tr":"1xUMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30744":{"oreDict":["pipeHugeInconel690"],"name":"巨型镍铬基合金-690流体管道","tr":"巨型镍铬基合金-690流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2073":{"oreDict":["wireGt02SuperconductorUMVBase"],"name":"2xUMV超导粗胚导线","tr":"2xUMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30745":{"oreDict":["pipeTinyInconel792"],"name":"微型镍铬基合金-792流体管道","tr":"微型镍铬基合金-792流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2074":{"oreDict":["wireGt04SuperconductorUMVBase"],"name":"4xUMV超导粗胚导线","tr":"4xUMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30746":{"oreDict":["pipeSmallInconel792"],"name":"小型镍铬基合金-792流体管道","tr":"小型镍铬基合金-792流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2075":{"oreDict":["wireGt08SuperconductorUMVBase"],"name":"8xUMV超导粗胚导线","tr":"8xUMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30747":{"oreDict":["pipeMediumInconel792"],"name":"镍铬基合金-792流体管道","tr":"镍铬基合金-792流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2076":{"oreDict":["wireGt12SuperconductorUMVBase"],"name":"12xUMV超导粗胚导线","tr":"12xUMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30748":{"oreDict":["pipeLargeInconel792"],"name":"大型镍铬基合金-792流体管道","tr":"大型镍铬基合金-792流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2077":{"oreDict":["wireGt16SuperconductorUMVBase"],"name":"16xUMV超导粗胚导线","tr":"16xUMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30749":{"oreDict":["pipeHugeInconel792"],"name":"巨型镍铬基合金-792流体管道","tr":"巨型镍铬基合金-792流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30750":{"oreDict":["pipeTinyHastelloyX"],"name":"微型哈斯特洛依合金-X流体管道","tr":"微型哈斯特洛依合金-X流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30751":{"oreDict":["pipeSmallHastelloyX"],"name":"小型哈斯特洛依合金-X流体管道","tr":"小型哈斯特洛依合金-X流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30752":{"oreDict":["pipeMediumHastelloyX"],"name":"哈斯特洛依合金-X流体管道","tr":"哈斯特洛依合金-X流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2081":{"oreDict":["wireGt01SuperconductorUIV"],"name":"1xUIV超导导线","tr":"1xUIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30753":{"oreDict":["pipeLargeHastelloyX"],"name":"大型哈斯特洛依合金-X流体管道","tr":"大型哈斯特洛依合金-X流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2082":{"oreDict":["wireGt02SuperconductorUIV"],"name":"2xUIV超导导线","tr":"2xUIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30754":{"oreDict":["pipeHugeHastelloyX"],"name":"巨型哈斯特洛依合金-X流体管道","tr":"巨型哈斯特洛依合金-X流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2083":{"oreDict":["wireGt04SuperconductorUIV"],"name":"4xUIV超导导线","tr":"4xUIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30755":{"oreDict":["pipeTinyTungsten"],"name":"微型钨流体管道","tr":"微型钨流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2084":{"oreDict":["wireGt08SuperconductorUIV"],"name":"8xUIV超导导线","tr":"8xUIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30756":{"oreDict":["pipeSmallTungsten"],"name":"小型钨流体管道","tr":"小型钨流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2085":{"oreDict":["wireGt12SuperconductorUIV"],"name":"12xUIV超导导线","tr":"12xUIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30757":{"oreDict":["pipeMediumTungsten"],"name":"钨流体管道","tr":"钨流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2086":{"oreDict":["wireGt16SuperconductorUIV"],"name":"16xUIV超导导线","tr":"16xUIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30758":{"oreDict":["pipeLargeTungsten"],"name":"大型钨流体管道","tr":"大型钨流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30759":{"oreDict":["pipeHugeTungsten"],"name":"巨型钨流体管道","tr":"巨型钨流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30760":{"oreDict":["pipeTinyDarkSteel"],"name":"微型玄钢流体管道","tr":"微型玄钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2089":{"oreDict":["wireGt01SuperconductorUMV"],"name":"1xUMV超导导线","tr":"1xUMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30761":{"oreDict":["pipeSmallDarkSteel"],"name":"小型玄钢流体管道","tr":"小型玄钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2090":{"oreDict":["wireGt02SuperconductorUMV"],"name":"2xUMV超导导线","tr":"2xUMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30762":{"oreDict":["pipeMediumDarkSteel"],"name":"玄钢流体管道","tr":"玄钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2091":{"oreDict":["wireGt04SuperconductorUMV"],"name":"4xUMV超导导线","tr":"4xUMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30763":{"oreDict":["pipeLargeDarkSteel"],"name":"大型玄钢流体管道","tr":"大型玄钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2092":{"oreDict":["wireGt08SuperconductorUMV"],"name":"8xUMV超导导线","tr":"8xUMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30764":{"oreDict":["pipeHugeDarkSteel"],"name":"巨型玄钢流体管道","tr":"巨型玄钢流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2093":{"oreDict":["wireGt12SuperconductorUMV"],"name":"12xUMV超导导线","tr":"12xUMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30765":{"oreDict":["pipeTinyClay"],"name":"微型粘土流体管道","tr":"微型粘土流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2094":{"oreDict":["wireGt16SuperconductorUMV"],"name":"16xUMV超导导线","tr":"16xUMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30766":{"oreDict":["pipeSmallClay"],"name":"小型粘土流体管道","tr":"小型粘土流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30767":{"oreDict":["pipeMediumClay"],"name":"粘土流体管道","tr":"粘土流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30768":{"oreDict":["pipeLargeClay"],"name":"大型粘土流体管道","tr":"大型粘土流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30769":{"oreDict":["pipeHugeClay"],"name":"巨型粘土流体管道","tr":"巨型粘土流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30770":{"oreDict":["pipeTinyLead"],"name":"微型铅流体管道","tr":"微型铅流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30771":{"oreDict":["pipeSmallLead"],"name":"小型铅流体管道","tr":"小型铅流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30772":{"oreDict":["pipeMediumLead"],"name":"铅流体管道","tr":"铅流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30773":{"oreDict":["pipeLargeLead"],"name":"大型铅流体管道","tr":"大型铅流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2102":{"name":"进阶地震勘探者 LV","tr":"进阶地震勘探者 LV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30774":{"oreDict":["pipeHugeLead"],"name":"巨型铅流体管道","tr":"巨型铅流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2103":{"name":"进阶地震勘探者 MV","tr":"进阶地震勘探者 MV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2104":{"name":"进阶地震勘探者 HV","tr":"进阶地震勘探者 HV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2105":{"name":"极限内燃引擎","tr":"极限内燃引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2200":{"oreDict":["wireGt01Pentacadmiummagnesiumhexaoxid"],"name":"1xMV超导粗胚导线","tr":"1xMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2201":{"oreDict":["wireGt02Pentacadmiummagnesiumhexaoxid"],"name":"2xMV超导粗胚导线","tr":"2xMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2202":{"oreDict":["wireGt04Pentacadmiummagnesiumhexaoxid"],"name":"4xMV超导粗胚导线","tr":"4xMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2203":{"oreDict":["wireGt08Pentacadmiummagnesiumhexaoxid"],"name":"8xMV超导粗胚导线","tr":"8xMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2204":{"oreDict":["wireGt12Pentacadmiummagnesiumhexaoxid"],"name":"12xMV超导粗胚导线","tr":"12xMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2205":{"oreDict":["wireGt16Pentacadmiummagnesiumhexaoxid"],"name":"16xMV超导粗胚导线","tr":"16xMV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2220":{"oreDict":["wireGt01Titaniumonabariumdecacoppereikosaoxid"],"name":"1xHV超导粗胚导线","tr":"1xHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2221":{"oreDict":["wireGt02Titaniumonabariumdecacoppereikosaoxid"],"name":"2xHV超导粗胚导线","tr":"2xHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2222":{"oreDict":["wireGt04Titaniumonabariumdecacoppereikosaoxid"],"name":"4xHV超导粗胚导线","tr":"4xHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2223":{"oreDict":["wireGt08Titaniumonabariumdecacoppereikosaoxid"],"name":"8xHV超导粗胚导线","tr":"8xHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2224":{"oreDict":["wireGt12Titaniumonabariumdecacoppereikosaoxid"],"name":"12xHV超导粗胚导线","tr":"12xHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2225":{"oreDict":["wireGt16Titaniumonabariumdecacoppereikosaoxid"],"name":"16xHV超导粗胚导线","tr":"16xHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2240":{"oreDict":["wireGt01Uraniumtriplatinid"],"name":"1xEV超导粗胚导线","tr":"1xEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2241":{"oreDict":["wireGt02Uraniumtriplatinid"],"name":"2xEV超导粗胚导线","tr":"2xEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2242":{"oreDict":["wireGt04Uraniumtriplatinid"],"name":"4xEV超导粗胚导线","tr":"4xEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2243":{"oreDict":["wireGt08Uraniumtriplatinid"],"name":"8xEV超导粗胚导线","tr":"8xEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2244":{"oreDict":["wireGt12Uraniumtriplatinid"],"name":"12xEV超导粗胚导线","tr":"12xEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2245":{"oreDict":["wireGt16Uraniumtriplatinid"],"name":"16xEV超导粗胚导线","tr":"16xEV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2260":{"oreDict":["wireGt01Vanadiumtriindinid"],"name":"1xIV超导粗胚导线","tr":"1xIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2261":{"oreDict":["wireGt02Vanadiumtriindinid"],"name":"2xIV超导粗胚导线","tr":"2xIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2262":{"oreDict":["wireGt04Vanadiumtriindinid"],"name":"4xIV超导粗胚导线","tr":"4xIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2263":{"oreDict":["wireGt08Vanadiumtriindinid"],"name":"8xIV超导粗胚导线","tr":"8xIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2264":{"oreDict":["wireGt12Vanadiumtriindinid"],"name":"12xIV超导粗胚导线","tr":"12xIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2265":{"oreDict":["wireGt16Vanadiumtriindinid"],"name":"16xIV超导粗胚导线","tr":"16xIV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2280":{"oreDict":["wireGt01Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"1xLuV超导粗胚导线","tr":"1xLuV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2281":{"oreDict":["wireGt02Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"2xLuV超导粗胚导线","tr":"2xLuV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2282":{"oreDict":["wireGt04Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"4xLuV超导粗胚导线","tr":"4xLuV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2283":{"oreDict":["wireGt08Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"8xLuV超导粗胚导线","tr":"8xLuV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2284":{"oreDict":["wireGt12Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"12xLuV超导粗胚导线","tr":"12xLuV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2285":{"oreDict":["wireGt16Tetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"16xLuV超导粗胚导线","tr":"16xLuV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2300":{"oreDict":["wireGt01Tetranaquadahdiindiumhexaplatiumosminid"],"name":"1xZPM超导粗胚导线","tr":"1xZPM超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2301":{"oreDict":["wireGt02Tetranaquadahdiindiumhexaplatiumosminid"],"name":"2xZPM超导粗胚导线","tr":"2xZPM超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2302":{"oreDict":["wireGt04Tetranaquadahdiindiumhexaplatiumosminid"],"name":"4xZPM超导粗胚导线","tr":"4xZPM超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2303":{"oreDict":["wireGt08Tetranaquadahdiindiumhexaplatiumosminid"],"name":"8xZPM超导粗胚导线","tr":"8xZPM超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2304":{"oreDict":["wireGt12Tetranaquadahdiindiumhexaplatiumosminid"],"name":"12xZPM超导粗胚导线","tr":"12xZPM超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2305":{"oreDict":["wireGt16Tetranaquadahdiindiumhexaplatiumosminid"],"name":"16xZPM超导粗胚导线","tr":"16xZPM超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10500":{"name":"煮解池","tr":"煮解池","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10501":{"name":"溶解罐","tr":"溶解罐","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2320":{"oreDict":["wireGt01SuperconductorMV"],"name":"1xMV超导导线","tr":"1xMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2321":{"oreDict":["wireGt02SuperconductorMV"],"name":"2xMV超导导线","tr":"2xMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2322":{"oreDict":["wireGt04SuperconductorMV"],"name":"4xMV超导导线","tr":"4xMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2323":{"oreDict":["wireGt08SuperconductorMV"],"name":"8xMV超导导线","tr":"8xMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30995":{"oreDict":["pipeTinyIncoloy-903"],"name":"微型耐热铬铁合金-903流体管道","tr":"微型耐热铬铁合金-903流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2324":{"oreDict":["wireGt12SuperconductorMV"],"name":"12xMV超导导线","tr":"12xMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30996":{"oreDict":["pipeSmallIncoloy-903"],"name":"小型耐热铬铁合金-903流体管道","tr":"小型耐热铬铁合金-903流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2325":{"oreDict":["wireGt16SuperconductorMV"],"name":"16xMV超导导线","tr":"16xMV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30997":{"oreDict":["pipeMediumIncoloy-903"],"name":"耐热铬铁合金-903流体管道","tr":"耐热铬铁合金-903流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30998":{"oreDict":["pipeLargeIncoloy-903"],"name":"大型耐热铬铁合金-903流体管道","tr":"大型耐热铬铁合金-903流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"30999":{"oreDict":["pipeHugeIncoloy-903"],"name":"巨型耐热铬铁合金-903流体管道","tr":"巨型耐热铬铁合金-903流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31010":{"name":"无限物品箱(乱讲明明有限...)","tr":"无限物品箱(乱讲明明有限...)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2340":{"oreDict":["wireGt01SuperconductorHV"],"name":"1xHV超导导线","tr":"1xHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2341":{"oreDict":["wireGt02SuperconductorHV"],"name":"2xHV超导导线","tr":"2xHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2342":{"oreDict":["wireGt04SuperconductorHV"],"name":"4xHV超导导线","tr":"4xHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2343":{"oreDict":["wireGt08SuperconductorHV"],"name":"8xHV超导导线","tr":"8xHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2344":{"oreDict":["wireGt12SuperconductorHV"],"name":"12xHV超导导线","tr":"12xHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2345":{"oreDict":["wireGt16SuperconductorHV"],"name":"16xHV超导导线","tr":"16xHV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31017":{"name":"简易洗矿池 II","tr":"简易洗矿池 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31018":{"name":"简易洗矿池 IV","tr":"简易洗矿池 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31019":{"name":"简易洗矿池 VI","tr":"简易洗矿池 VI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31020":{"name":"简易洗矿池 VIII","tr":"简易洗矿池 VIII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31021":{"name":"丹格特蒸馏厂","tr":"丹格特蒸馏厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31023":{"name":"工业合金炉","tr":"工业合金炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31025":{"name":"涡轮仓","tr":"涡轮仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31026":{"name":"大型半流质发电机","tr":"大型半流质发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31027":{"name":"艾萨研磨机","tr":"艾萨研磨机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31028":{"name":"工业浮选机","tr":"工业浮选机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31029":{"name":"研磨球仓","tr":"研磨球仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31030":{"name":"催化剂仓","tr":"催化剂仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31031":{"name":"反应堆处理单元 I","tr":"反应堆处理单元 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2360":{"oreDict":["wireGt01SuperconductorEV"],"name":"1xEV超导导线","tr":"1xEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31032":{"name":"反应堆处理单元 II","tr":"反应堆处理单元 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2361":{"oreDict":["wireGt02SuperconductorEV"],"name":"2xEV超导导线","tr":"2xEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31033":{"name":"冷阱 I","tr":"冷阱 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2362":{"oreDict":["wireGt04SuperconductorEV"],"name":"4xEV超导导线","tr":"4xEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31034":{"name":"冷阱 II","tr":"冷阱 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2363":{"oreDict":["wireGt08SuperconductorEV"],"name":"8xEV超导导线","tr":"8xEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31035":{"name":"气涤塔","tr":"气涤塔","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2364":{"oreDict":["wireGt12SuperconductorEV"],"name":"12xEV超导导线","tr":"12xEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2365":{"oreDict":["wireGt16SuperconductorEV"],"name":"16xEV超导导线","tr":"16xEV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31040":{"name":"蒸汽仓","tr":"蒸汽仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31041":{"name":"大型蒸汽研磨机","tr":"大型蒸汽研磨机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31046":{"name":"输入总线(蒸汽)","tr":"输入总线(蒸汽)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31047":{"name":"输出总线(蒸汽)","tr":"输出总线(蒸汽)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31050":{"name":"大型元素复制机","tr":"大型元素复制机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31051":{"name":"数据球仓","tr":"数据球仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2380":{"oreDict":["wireGt01SuperconductorIV"],"name":"1xIV超导导线","tr":"1xIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2381":{"oreDict":["wireGt02SuperconductorIV"],"name":"2xIV超导导线","tr":"2xIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2382":{"oreDict":["wireGt04SuperconductorIV"],"name":"4xIV超导导线","tr":"4xIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2383":{"oreDict":["wireGt08SuperconductorIV"],"name":"8xIV超导导线","tr":"8xIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2384":{"oreDict":["wireGt12SuperconductorIV"],"name":"12xIV超导导线","tr":"12xIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2385":{"oreDict":["wireGt16SuperconductorIV"],"name":"16xIV超导导线","tr":"16xIV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31065":{"name":"工业碎石机","tr":"工业碎石机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31066":{"name":"基础自动雕刻机","tr":"基础自动雕刻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31067":{"name":"进阶自动雕刻机","tr":"进阶自动雕刻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31068":{"name":"精密自动雕刻机","tr":"精密自动雕刻机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31069":{"name":"工业3D打印机","tr":"工业3D打印机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31070":{"name":"超级进气仓","tr":"超级进气仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31071":{"name":"蓄水仓","tr":"蓄水仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2400":{"oreDict":["wireGt01SuperconductorLuV"],"name":"1xLuV超导导线","tr":"1xLuV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31072":{"name":"大型分子重组仪","tr":"大型分子重组仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2401":{"oreDict":["wireGt02SuperconductorLuV"],"name":"2xLuV超导导线","tr":"2xLuV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31073":{"name":"特大燃气涡轮","tr":"特大燃气涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2402":{"oreDict":["wireGt04SuperconductorLuV"],"name":"4xLuV超导导线","tr":"4xLuV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31074":{"name":"特大等离子涡轮","tr":"特大等离子涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2403":{"oreDict":["wireGt08SuperconductorLuV"],"name":"8xLuV超导导线","tr":"8xLuV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31075":{"name":"工业锻造锤","tr":"工业锻造锤","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2404":{"oreDict":["wireGt12SuperconductorLuV"],"name":"12xLuV超导导线","tr":"12xLuV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31076":{"name":"特大超临界蒸汽涡轮","tr":"特大超临界蒸汽涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2405":{"oreDict":["wireGt16SuperconductorLuV"],"name":"16xLuV超导导线","tr":"16xLuV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31077":{"name":"工业流体加热器","tr":"工业流体加热器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31078":{"name":"大型蒸汽压缩机","tr":"大型蒸汽压缩机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31079":{"name":"超大热交换机","tr":"超大热交换机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31091":{"name":"自动工作台(LV)","tr":"自动工作台(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2420":{"oreDict":["wireGt01SuperconductorZPM"],"name":"1xZPM超导导线","tr":"1xZPM超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31092":{"name":"自动工作台(MV)","tr":"自动工作台(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2421":{"oreDict":["wireGt02SuperconductorZPM"],"name":"2xZPM超导导线","tr":"2xZPM超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31093":{"name":"自动工作台(HV)","tr":"自动工作台(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2422":{"oreDict":["wireGt04SuperconductorZPM"],"name":"4xZPM超导导线","tr":"4xZPM超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31094":{"name":"自动工作台(EV)","tr":"自动工作台(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2423":{"oreDict":["wireGt08SuperconductorZPM"],"name":"8xZPM超导导线","tr":"8xZPM超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31095":{"name":"自动工作台(IV)","tr":"自动工作台(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2424":{"oreDict":["wireGt12SuperconductorZPM"],"name":"12xZPM超导导线","tr":"12xZPM超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31096":{"name":"自动工作台(LuV)","tr":"自动工作台(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2425":{"oreDict":["wireGt16SuperconductorZPM"],"name":"16xZPM超导导线","tr":"16xZPM超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31097":{"name":"自动工作台(ZPM)","tr":"自动工作台(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31098":{"name":"自动工作台(UV)","tr":"自动工作台(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31111":{"name":"作物管理器(LV)","tr":"作物管理器(LV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2440":{"oreDict":["wireGt01SuperconductorUV"],"name":"1xUV超导导线","tr":"1xUV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31112":{"name":"作物管理器(MV)","tr":"作物管理器(MV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2441":{"oreDict":["wireGt02SuperconductorUV"],"name":"2xUV超导导线","tr":"2xUV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31113":{"name":"作物管理器(HV)","tr":"作物管理器(HV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2442":{"oreDict":["wireGt04SuperconductorUV"],"name":"4xUV超导导线","tr":"4xUV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31114":{"name":"作物管理器(EV)","tr":"作物管理器(EV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2443":{"oreDict":["wireGt08SuperconductorUV"],"name":"8xUV超导导线","tr":"8xUV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31115":{"name":"作物管理器(IV)","tr":"作物管理器(IV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2444":{"oreDict":["wireGt12SuperconductorUV"],"name":"12xUV超导导线","tr":"12xUV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31116":{"name":"作物管理器(LuV)","tr":"作物管理器(LuV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2445":{"oreDict":["wireGt16SuperconductorUV"],"name":"16xUV超导导线","tr":"16xUV超导导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31117":{"name":"作物管理器(ZPM)","tr":"作物管理器(ZPM)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31118":{"name":"作物管理器(UV)","tr":"作物管理器(UV)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31150":{"name":"巨型合金冶炼炉","tr":"巨型合金冶炼炉","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31151":{"name":"量子操纵者","tr":"量子操纵者","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2500":{"oreDict":["wireGt01Longasssuperconductornameforuvwire"],"name":"1xUV超导粗胚导线","tr":"1xUV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2501":{"oreDict":["wireGt02Longasssuperconductornameforuvwire"],"name":"2xUV超导粗胚导线","tr":"2xUV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2502":{"oreDict":["wireGt04Longasssuperconductornameforuvwire"],"name":"4xUV超导粗胚导线","tr":"4xUV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2503":{"oreDict":["wireGt08Longasssuperconductornameforuvwire"],"name":"8xUV超导粗胚导线","tr":"8xUV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2504":{"oreDict":["wireGt12Longasssuperconductornameforuvwire"],"name":"12xUV超导粗胚导线","tr":"12xUV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2505":{"oreDict":["wireGt16Longasssuperconductornameforuvwire"],"name":"16xUV超导粗胚导线","tr":"16xUV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2520":{"oreDict":["wireGt01Longasssuperconductornameforuhvwire"],"name":"1xUHV超导粗胚导线","tr":"1xUHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2521":{"oreDict":["wireGt02Longasssuperconductornameforuhvwire"],"name":"2xUHV超导粗胚导线","tr":"2xUHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2522":{"oreDict":["wireGt04Longasssuperconductornameforuhvwire"],"name":"4xUHV超导粗胚导线","tr":"4xUHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2523":{"oreDict":["wireGt08Longasssuperconductornameforuhvwire"],"name":"8xUHV超导粗胚导线","tr":"8xUHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2524":{"oreDict":["wireGt12Longasssuperconductornameforuhvwire"],"name":"12xUHV超导粗胚导线","tr":"12xUHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2525":{"oreDict":["wireGt16Longasssuperconductornameforuhvwire"],"name":"16xUHV超导粗胚导线","tr":"16xUHV超导粗胚导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2600":{"oreDict":["wireGt01Ichorium"],"name":"1x灵宝导线","tr":"1x灵宝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2601":{"oreDict":["wireGt02Ichorium"],"name":"2x灵宝导线","tr":"2x灵宝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2602":{"oreDict":["wireGt04Ichorium"],"name":"4x灵宝导线","tr":"4x灵宝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2603":{"oreDict":["wireGt08Ichorium"],"name":"8x灵宝导线","tr":"8x灵宝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2604":{"oreDict":["wireGt12Ichorium"],"name":"12x灵宝导线","tr":"12x灵宝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2605":{"oreDict":["wireGt16Ichorium"],"name":"16x灵宝导线","tr":"16x灵宝导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2606":{"oreDict":["wireGt01SpaceTime"],"name":"1x时空导线","tr":"1x时空导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2607":{"oreDict":["wireGt02SpaceTime"],"name":"2x时空导线","tr":"2x时空导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2608":{"oreDict":["wireGt04SpaceTime"],"name":"4x时空导线","tr":"4x时空导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2609":{"oreDict":["wireGt08SpaceTime"],"name":"8x时空导线","tr":"8x时空导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2610":{"oreDict":["wireGt12SpaceTime"],"name":"12x时空导线","tr":"12x时空导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2611":{"oreDict":["wireGt16SpaceTime"],"name":"16x时空导线","tr":"16x时空导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2700":{"name":"长距离流体管道控制方块","tr":"长距离流体管道控制方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2701":{"name":"长距离物品管道控制方块","tr":"长距离物品管道控制方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2710":{"name":"输出总线(ME)","tr":"输出总线(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2711":{"name":"进阶存储输入总线(ME)","tr":"进阶存储输入总线(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2712":{"name":"进阶存储输入仓(ME)","tr":"进阶存储输入仓(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2713":{"name":"输出仓(ME)","tr":"输出仓(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2714":{"name":"样板输入总成(ME)","tr":"样板输入总成(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2715":{"name":"样板输入总线(ME)","tr":"样板输入总线(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2716":{"name":"样板输入镜像","tr":"样板输入镜像","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2717":{"name":"存储输入仓(ME)","tr":"存储输入仓(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2718":{"name":"存储输入总线(ME)","tr":"存储输入总线(ME)","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15065":{"name":"4安EV无线能源仓","tr":"4安EV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15066":{"name":"16安EV无线能源仓","tr":"16安EV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15067":{"name":"64安EV无线能源仓","tr":"64安EV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15068":{"name":"4安IV无线能源仓","tr":"4安IV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15069":{"name":"16安IV无线能源仓","tr":"16安IV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15070":{"name":"64安IV无线能源仓","tr":"64安IV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15071":{"name":"4安LuV无线能源仓","tr":"4安LuV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15072":{"name":"16安LuV无线能源仓","tr":"16安LuV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15073":{"name":"64安LuV无线能源仓","tr":"64安LuV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15074":{"name":"4安ZPM无线能源仓","tr":"4安ZPM无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15075":{"name":"16安ZPM无线能源仓","tr":"16安ZPM无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15076":{"name":"64安ZPM无线能源仓","tr":"64安ZPM无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15077":{"name":"4安UV无线能源仓","tr":"4安UV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15078":{"name":"16安UV无线能源仓","tr":"16安UV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15079":{"name":"64安UV无线能源仓","tr":"64安UV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15080":{"name":"4安UHV无线能源仓","tr":"4安UHV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15081":{"name":"16安UHV无线能源仓","tr":"16安UHV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15082":{"name":"64安UHV无线能源仓","tr":"64安UHV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15083":{"name":"4安UEV无线能源仓","tr":"4安UEV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15084":{"name":"16安UEV无线能源仓","tr":"16安UEV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15085":{"name":"64安UEV无线能源仓","tr":"64安UEV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15086":{"name":"4安UIV无线能源仓","tr":"4安UIV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15087":{"name":"16安UIV无线能源仓","tr":"16安UIV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15088":{"name":"64安UIV无线能源仓","tr":"64安UIV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15089":{"name":"4安UMV无线能源仓","tr":"4安UMV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15090":{"name":"16安UMV无线能源仓","tr":"16安UMV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15091":{"name":"64安UMV无线能源仓","tr":"64安UMV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15092":{"name":"4安UXV无线能源仓","tr":"4安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15093":{"name":"16安UXV无线能源仓","tr":"16安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15094":{"name":"64安UXV无线能源仓","tr":"64安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15095":{"name":"4安MAX无线能源仓","tr":"4安MAX无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15096":{"name":"16安MAX无线能源仓","tr":"16安MAX无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15097":{"name":"64安MAX无线能源仓","tr":"64安MAX无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15100":{"name":"IV 4A Energy Hatch","tr":"4安IV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15101":{"name":"LuV 4A Energy Hatch","tr":"4安LuV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15102":{"name":"ZPM 4A Energy Hatch","tr":"4安ZPM能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15103":{"name":"UV 4A Energy Hatch","tr":"4安UV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15104":{"name":"UHV 4A Energy Hatch","tr":"4安UHV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15105":{"name":"UEV 4A Energy Hatch","tr":"4安UEV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15106":{"name":"UIV 4A Energy Hatch","tr":"4安UIV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15107":{"name":"UMV 4A Energy Hatch","tr":"4安UMV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15108":{"name":"UXV 4A Energy Hatch","tr":"4安UXV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15109":{"name":"4安EV能源仓","tr":"4安EV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15110":{"name":"IV 16A Energy Hatch","tr":"16安IV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15111":{"name":"LuV 16A Energy Hatch","tr":"16安LuV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15112":{"name":"ZPM 16A Energy Hatch","tr":"16安ZPM能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15113":{"name":"UV 16A Energy Hatch","tr":"16安UV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15114":{"name":"UHV 16A Energy Hatch","tr":"16安UHV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15115":{"name":"UEV 16A Energy Hatch","tr":"16安UEV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15116":{"name":"UIV 16A Energy Hatch","tr":"16安UIV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15117":{"name":"UMV 16A Energy Hatch","tr":"16安UMV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15118":{"name":"UXV 16A Energy Hatch","tr":"16安UXV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15119":{"name":"16安EV能源仓","tr":"16安EV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15120":{"name":"IV 64A Energy Hatch","tr":"64安IV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15121":{"name":"LuV 64A Energy Hatch","tr":"64安LuV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15122":{"name":"ZPM 64A Energy Hatch","tr":"64安ZPM能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15123":{"name":"UV 64A Energy Hatch","tr":"64安UV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15124":{"name":"UHV 64A Energy Hatch","tr":"64安UHV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15125":{"name":"UEV 64A Energy Hatch","tr":"64安UEV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15126":{"name":"UIV 64A Energy Hatch","tr":"64安UIV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15127":{"name":"UMV 64A Energy Hatch","tr":"64安UMV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15128":{"name":"UXV 64A Energy Hatch","tr":"64安UXV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15129":{"name":"64安EV能源仓","tr":"64安EV能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15130":{"name":"IV 256A/t Laser Target Hatch","tr":"IV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15131":{"name":"LuV 256A/t Laser Target Hatch","tr":"LuV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15132":{"name":"ZPM 256A/t Laser Target Hatch","tr":"ZPM 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15133":{"name":"UV 256A/t Laser Target Hatch","tr":"UV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15134":{"name":"UHV 256A/t Laser Target Hatch","tr":"UHV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15135":{"name":"UEV 256A/t Laser Target Hatch","tr":"UEV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15136":{"name":"UIV 256A/t Laser Target Hatch","tr":"UIV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15137":{"name":"UMV 256A/t Laser Target Hatch","tr":"UMV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15138":{"name":"UXV 256A/t Laser Target Hatch","tr":"UXV 256A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15140":{"name":"IV 1,024A/t Laser Target Hatch","tr":"IV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15141":{"name":"LuV 1,024A/t Laser Target Hatch","tr":"LuV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15142":{"name":"ZPM 1,024A/t Laser Target Hatch","tr":"ZPM 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15143":{"name":"UV 1,024A/t Laser Target Hatch","tr":"UV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15144":{"name":"UHV 1,024A/t Laser Target Hatch","tr":"UHV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15145":{"name":"UEV 1,024A/t Laser Target Hatch","tr":"UEV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15146":{"name":"UIV 1,024A/t Laser Target Hatch","tr":"UIV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15147":{"name":"UMV 1,024A/t Laser Target Hatch","tr":"UMV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15148":{"name":"UXV 1,024A/t Laser Target Hatch","tr":"UXV 1,024A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15150":{"name":"IV 4,096A/t Laser Target Hatch","tr":"IV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15151":{"name":"LuV 4,096A/t Laser Target Hatch","tr":"LuV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15152":{"name":"ZPM 4,096A/t Laser Target Hatch","tr":"ZPM 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15153":{"name":"UV 4,096A/t Laser Target Hatch","tr":"UV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15154":{"name":"UHV 4,096A/t Laser Target Hatch","tr":"UHV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15155":{"name":"UEV 4,096A/t Laser Target Hatch","tr":"UEV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15156":{"name":"UIV 4,096A/t Laser Target Hatch","tr":"UIV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15157":{"name":"UMV 4,096A/t Laser Target Hatch","tr":"UMV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15158":{"name":"UXV 4,096A/t Laser Target Hatch","tr":"UXV 4,096A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15160":{"name":"IV 16,384A/t Laser Target Hatch","tr":"IV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15161":{"name":"LuV 16,384A/t Laser Target Hatch","tr":"LuV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15162":{"name":"ZPM 16,384A/t Laser Target Hatch","tr":"ZPM 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15163":{"name":"UV 16,384A/t Laser Target Hatch","tr":"UV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15164":{"name":"UHV 16,384A/t Laser Target Hatch","tr":"UHV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15165":{"name":"UEV 16,384A/t Laser Target Hatch","tr":"UEV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15166":{"name":"UIV 16,384A/t Laser Target Hatch","tr":"UIV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15167":{"name":"UMV 16,384A/t Laser Target Hatch","tr":"UMV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15168":{"name":"UXV 16,384A/t Laser Target Hatch","tr":"UXV 16,384A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15170":{"name":"IV 65,536A/t Laser Target Hatch","tr":"IV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15171":{"name":"LuV 65,536A/t Laser Target Hatch","tr":"LuV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15172":{"name":"ZPM 65,536A/t Laser Target Hatch","tr":"ZPM 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15173":{"name":"UV 65,536A/t Laser Target Hatch","tr":"UV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15174":{"name":"UHV 65,536A/t Laser Target Hatch","tr":"UHV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15175":{"name":"UEV 65,536A/t Laser Target Hatch","tr":"UEV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15176":{"name":"UIV 65,536A/t Laser Target Hatch","tr":"UIV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15177":{"name":"UMV 65,536A/t Laser Target Hatch","tr":"UMV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15178":{"name":"UXV 65,536A/t Laser Target Hatch","tr":"UXV 65,536A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15180":{"name":"IV 262,144A/t Laser Target Hatch","tr":"IV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15181":{"name":"LuV 262,144A/t Laser Target Hatch","tr":"LuV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15182":{"name":"ZPM 262,144A/t Laser Target Hatch","tr":"ZPM 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15183":{"name":"UV 262,144A/t Laser Target Hatch","tr":"UV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15184":{"name":"UHV 262,144A/t Laser Target Hatch","tr":"UHV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15185":{"name":"UEV 262,144A/t Laser Target Hatch","tr":"UEV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15186":{"name":"UIV 262,144A/t Laser Target Hatch","tr":"UIV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15187":{"name":"UMV 262,144A/t Laser Target Hatch","tr":"UMV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15188":{"name":"UXV 262,144A/t Laser Target Hatch","tr":"UXV 262,144A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15190":{"name":"IV 1,048,576A/t Laser Target Hatch","tr":"IV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15191":{"name":"LuV 1,048,576A/t Laser Target Hatch","tr":"LuV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15192":{"name":"ZPM 1,048,576A/t Laser Target Hatch","tr":"ZPM 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15193":{"name":"UV 1,048,576A/t Laser Target Hatch","tr":"UV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15194":{"name":"UHV 1,048,576A/t Laser Target Hatch","tr":"UHV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15195":{"name":"UEV 1,048,576A/t Laser Target Hatch","tr":"UEV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15196":{"name":"UIV 1,048,576A/t Laser Target Hatch","tr":"UIV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15197":{"name":"UMV 1,048,576A/t Laser Target Hatch","tr":"UMV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15198":{"name":"UXV 1,048,576A/t Laser Target Hatch","tr":"UXV 1,048,576A/t 激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15199":{"name":"Legendary Laser Target Hatch","tr":"传奇激光靶仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15200":{"name":"IV 4A Dynamo Hatch","tr":"4安IV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15201":{"name":"LuV 4A Dynamo Hatch","tr":"4安LuV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15202":{"name":"ZPM 4A Dynamo Hatch","tr":"4安ZPM动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15203":{"name":"UV 4A Dynamo Hatch","tr":"4安UV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15204":{"name":"UHV 4A Dynamo Hatch","tr":"4安UHV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15205":{"name":"UEV 4A Dynamo Hatch","tr":"4安UEV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15206":{"name":"UIV 4A Dynamo Hatch","tr":"4安UIV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15207":{"name":"UMV 4A Dynamo Hatch","tr":"4安UMV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15208":{"name":"UXV 4A Dynamo Hatch","tr":"4安UXV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15209":{"name":"4安EV动力仓","tr":"4安EV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15210":{"name":"IV 16A Dynamo Hatch","tr":"16安IV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15211":{"name":"LuV 16A Dynamo Hatch","tr":"16安LuV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15212":{"name":"ZPM 16A Dynamo Hatch","tr":"16安ZPM动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15213":{"name":"UV 16A Dynamo Hatch","tr":"16安UV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15214":{"name":"UHV 16A Dynamo Hatch","tr":"16安UHV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15215":{"name":"UEV 16A Dynamo Hatch","tr":"16安UEV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15216":{"name":"UIV 16A Dynamo Hatch","tr":"16安UIV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15217":{"name":"UMV 16A Dynamo Hatch","tr":"16安UMV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15218":{"name":"UXV 16A Dynamo Hatch","tr":"16安UXV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15219":{"name":"16安EV动力仓","tr":"16安EV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15220":{"name":"IV 64A Dynamo Hatch","tr":"64安IV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15221":{"name":"LuV 64A Dynamo Hatch","tr":"64安LuV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15222":{"name":"ZPM 64A Dynamo Hatch","tr":"64安ZPM动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15223":{"name":"UV 64A Dynamo Hatch","tr":"64安UV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15224":{"name":"UHV 64A Dynamo Hatch","tr":"64安UHV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15225":{"name":"UEV 64A Dynamo Hatch","tr":"64安UEV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15226":{"name":"UIV 64A Dynamo Hatch","tr":"64安UIV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15227":{"name":"UMV 64A Dynamo Hatch","tr":"64安UMV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15228":{"name":"UXV 64A Dynamo Hatch","tr":"64安UXV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15229":{"name":"64安EV动力仓","tr":"64安EV动力仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15230":{"name":"IV 256A/t Laser Source Hatch","tr":"IV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15231":{"name":"LuV 256A/t Laser Source Hatch","tr":"LuV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15232":{"name":"ZPM 256A/t Laser Source Hatch","tr":"ZPM 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15233":{"name":"UV 256A/t Laser Source Hatch","tr":"UV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15234":{"name":"UHV 256A/t Laser Source Hatch","tr":"UHV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15235":{"name":"UEV 256A/t Laser Source Hatch","tr":"UEV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15236":{"name":"UIV 256A/t Laser Source Hatch","tr":"UIV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15237":{"name":"UMV 256A/t Laser Source Hatch","tr":"UMV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15238":{"name":"UXV 256A/t Laser Source Hatch","tr":"UXV 256A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15240":{"name":"IV 1,024A/t Laser Source Hatch","tr":"IV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15241":{"name":"LuV 1,024A/t Laser Source Hatch","tr":"LuV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15242":{"name":"ZPM 1,024A/t Laser Source Hatch","tr":"ZPM 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15243":{"name":"UV 1,024A/t Laser Source Hatch","tr":"UV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15244":{"name":"UHV 1,024A/t Laser Source Hatch","tr":"UHV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15245":{"name":"UEV 1,024A/t Laser Source Hatch","tr":"UEV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15246":{"name":"UIV 1,024A/t Laser Source Hatch","tr":"UIV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15247":{"name":"UMV 1,024A/t Laser Source Hatch","tr":"UMV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15248":{"name":"UXV 1,024A/t Laser Source Hatch","tr":"UXV 1,024A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15250":{"name":"IV 4,096A/t Laser Source Hatch","tr":"IV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15251":{"name":"LuV 4,096A/t Laser Source Hatch","tr":"LuV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15252":{"name":"ZPM 4,096A/t Laser Source Hatch","tr":"ZPM 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15253":{"name":"UV 4,096A/t Laser Source Hatch","tr":"UV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15254":{"name":"UHV 4,096A/t Laser Source Hatch","tr":"UHV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15255":{"name":"UEV 4,096A/t Laser Source Hatch","tr":"UEV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15256":{"name":"UIV 4,096A/t Laser Source Hatch","tr":"UIV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15257":{"name":"UMV 4,096A/t Laser Source Hatch","tr":"UMV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15258":{"name":"UXV 4,096A/t Laser Source Hatch","tr":"UXV 4,096A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15260":{"name":"IV 16,384A/t Laser Source Hatch","tr":"IV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15261":{"name":"LuV 16,384A/t Laser Source Hatch","tr":"LuV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15262":{"name":"ZPM 16,384A/t Laser Source Hatch","tr":"ZPM 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15263":{"name":"UV 16,384A/t Laser Source Hatch","tr":"UV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15264":{"name":"UHV 16,384A/t Laser Source Hatch","tr":"UHV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15265":{"name":"UEV 16,384A/t Laser Source Hatch","tr":"UEV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15266":{"name":"UIV 16,384A/t Laser Source Hatch","tr":"UIV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15267":{"name":"UMV 16,384A/t Laser Source Hatch","tr":"UMV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15268":{"name":"UXV 16,384A/t Laser Source Hatch","tr":"UXV 16,384A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15270":{"name":"IV 65,536A/t Laser Source Hatch","tr":"IV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15271":{"name":"LuV 65,536A/t Laser Source Hatch","tr":"LuV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15272":{"name":"ZPM 65,536A/t Laser Source Hatch","tr":"ZPM 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15273":{"name":"UV 65,536A/t Laser Source Hatch","tr":"UV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15274":{"name":"UHV 65,536A/t Laser Source Hatch","tr":"UHV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15275":{"name":"UEV 65,536A/t Laser Source Hatch","tr":"UEV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15276":{"name":"UIV 65,536A/t Laser Source Hatch","tr":"UIV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15277":{"name":"UMV 65,536A/t Laser Source Hatch","tr":"UMV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15278":{"name":"UXV 65,536A/t Laser Source Hatch","tr":"UXV 65,536A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15280":{"name":"IV 262,144A/t Laser Source Hatch","tr":"IV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15281":{"name":"LuV 262,144A/t Laser Source Hatch","tr":"LuV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15282":{"name":"ZPM 262,144A/t Laser Source Hatch","tr":"ZPM 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15283":{"name":"UV 262,144A/t Laser Source Hatch","tr":"UV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15284":{"name":"UHV 262,144A/t Laser Source Hatch","tr":"UHV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15285":{"name":"UEV 262,144A/t Laser Source Hatch","tr":"UEV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15286":{"name":"UIV 262,144A/t Laser Source Hatch","tr":"UIV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15287":{"name":"UMV 262,144A/t Laser Source Hatch","tr":"UMV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15288":{"name":"UXV 262,144A/t Laser Source Hatch","tr":"UXV 262,144A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15290":{"name":"IV 1,048,576A/t Laser Source Hatch","tr":"IV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15291":{"name":"LuV 1,048,576A/t Laser Source Hatch","tr":"LuV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15292":{"name":"ZPM 1,048,576A/t Laser Source Hatch","tr":"ZPM 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15293":{"name":"UV 1,048,576A/t Laser Source Hatch","tr":"UV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15294":{"name":"UHV 1,048,576A/t Laser Source Hatch","tr":"UHV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15295":{"name":"UEV 1,048,576A/t Laser Source Hatch","tr":"UEV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15296":{"name":"UIV 1,048,576A/t Laser Source Hatch","tr":"UIV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15297":{"name":"UMV 1,048,576A/t Laser Source Hatch","tr":"UMV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15298":{"name":"UXV 1,048,576A/t Laser Source Hatch","tr":"UXV 1,048,576A/t 激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15299":{"name":"Legendary Laser Source Hatch","tr":"传奇激光源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15300":{"name":"Active Transformer","tr":"有源变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15310":{"name":"Network Switch With QoS","tr":"QoS网络交换机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15311":{"name":"Quantum Computer","tr":"量子计算机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15312":{"name":"Microwave Grinder","tr":"微波发生仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15313":{"name":"Data Bank","tr":"数据库","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15314":{"name":"特斯拉电塔","tr":"特斯拉电塔","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15331":{"name":"Research Station","tr":"研究站","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15350":{"name":"Energy Infuser","tr":"能量注入仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31778":{"name":"输入总线(凿子) I","tr":"输入总线(凿子) I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31779":{"name":"输入总线(凿子) II","tr":"输入总线(凿子) II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31780":{"name":"输入总线(凿子) III","tr":"输入总线(凿子) III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31781":{"name":"固化仓 I","tr":"固化仓 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31782":{"name":"固化仓 II","tr":"固化仓 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31783":{"name":"固化仓 III","tr":"固化仓 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31784":{"name":"固化仓 IV","tr":"固化仓 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31790":{"name":"简易洗矿池 I","tr":"简易洗矿池 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31791":{"name":"简易洗矿池 III","tr":"简易洗矿池 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31792":{"name":"简易洗矿池 V","tr":"简易洗矿池 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"31793":{"name":"简易洗矿池 VII","tr":"简易洗矿池 VII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15410":{"name":"鸿蒙之眼","tr":"鸿蒙之眼","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15420":{"name":"Parametrizer","tr":"参数仪","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15421":{"name":"Parametrizer X","tr":"参数仪 X","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15422":{"name":"Parametrizer tXt","tr":"参数仪 tXt","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15430":{"name":"Uncertainty Resolver","tr":"未定元解析器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15431":{"name":"Uncertainty Resolver X","tr":"未定元解析器 X","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15440":{"name":"Optical Slave Connector","tr":"副光学接口","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15441":{"name":"Optical Master Connector","tr":"主光学接口","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15442":{"name":"Assembly line Slave Connector","tr":"装配线数据库接口","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15443":{"name":"Data Bank Master Connector","tr":"数据库主接口","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15450":{"name":"Computer Rack","tr":"计算机箱","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15451":{"name":"Object Holder","tr":"物品固定容器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15452":{"name":"Capacitor Hatch","tr":"电容仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15465":{"name":"Laser Vacuum Pipe","tr":"激光真空管","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15470":{"name":"Optical Fiber Cable","tr":"光缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15472":{"name":"激光真空管机械方块","tr":"激光真空管机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15473":{"name":"光缆机械方块","tr":"光缆机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15480":{"name":"Owner detector","tr":"所有者检测机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15485":{"name":"Insane Buck Converter","tr":"IV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15486":{"name":"Ludicrous Buck Converter","tr":"LuV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15487":{"name":"ZPM Voltage Buck Converter","tr":"ZPM降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15488":{"name":"Ultimate Power Buck Converter","tr":"UV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15489":{"name":"Highly Ultimate Buck Converter","tr":"UHV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15490":{"name":"Extremely Ultimate Buck Converter","tr":"UEV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15491":{"name":"Insanely Ultimate Buck Converter","tr":"UIV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15492":{"name":"Mega Ultimate Buck Converter","tr":"UMV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15493":{"name":"Extended Mega Ultimate Buck Converter","tr":"UXV降压变压器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15495":{"name":"Debug Pollution Generator","tr":"Debug污染生成机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15496":{"name":"Debug Data Hatch","tr":"Debug数据仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15497":{"name":"Auto-Taping Maintenance Hatch","tr":"Debug维护仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15498":{"name":"Debug Power Generator","tr":"Debug发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15499":{"name":"Debug Structure Writer","tr":"Debug结构打印机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15500":{"name":"UXV 256A Wireless Energy Hatch","tr":"256安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15501":{"name":"UXV 1,024A Wireless Energy Hatch","tr":"1,024安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15502":{"name":"UXV 4,096A Wireless Energy Hatch","tr":"4,096安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15503":{"name":"UXV 16,384A Wireless Energy Hatch","tr":"16,384安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15504":{"name":"UXV 65,536A Wireless Energy Hatch","tr":"65,536安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15505":{"name":"UXV 262,144A Wireless Energy Hatch","tr":"262,144安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15506":{"name":"UXV 1,048,576A Wireless Energy Hatch","tr":"1,048,576安UXV无线能源仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15510":{"name":"Uncertainty Resolution","tr":"Uncertainty Resolution","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32001":{"name":"通用化学燃料引擎","tr":"通用化学燃料引擎","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32002":{"name":"大型源质发电机","tr":"大型源质发电机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32003":{"name":"ULV中子加速器","tr":"ULV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32004":{"name":"LV中子加速器","tr":"LV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32005":{"name":"MV中子加速器","tr":"MV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32006":{"name":"HV中子加速器","tr":"HV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32007":{"name":"EV中子加速器","tr":"EV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32008":{"name":"IV中子加速器","tr":"IV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32009":{"name":"LuV中子加速器","tr":"LuV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32010":{"name":"ZPM中子加速器","tr":"ZPM中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32011":{"name":"UV中子加速器","tr":"UV中子加速器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32012":{"name":"中子传感器","tr":"中子传感器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32013":{"name":"中子活化器","tr":"中子活化器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32014":{"name":"YOT储罐","tr":"YOT储罐","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32015":{"name":"YOT仓","tr":"YOT仓","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32016":{"name":"超临界蒸汽涡轮","tr":"超临界蒸汽涡轮","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32017":{"name":"超级热交换机","tr":"超级热交换机","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32018":{"name":"精密自动组装机MT-3662","tr":"精密自动组装机MT-3662","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32019":{"name":"压缩核聚变反应堆控制电脑MK-I","tr":"压缩核聚变反应堆控制电脑MK-I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32020":{"name":"压缩核聚变反应堆控制电脑MK-II","tr":"压缩核聚变反应堆控制电脑MK-II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32021":{"name":"压缩核聚变反应堆控制电脑MK-III","tr":"压缩核聚变反应堆控制电脑MK-III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32022":{"name":"压缩核聚变反应堆控制电脑MK-IV","tr":"压缩核聚变反应堆控制电脑MK-IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32023":{"name":"压缩核聚变反应堆控制电脑MK-V","tr":"压缩核聚变反应堆控制电脑MK-V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32024":{"name":"大型源质冶炼厂","tr":"大型源质冶炼厂","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32025":{"name":"冷却塔","tr":"冷却塔","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32026":{"name":"部件装配线","tr":"部件装配线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16000":{"name":"Basic Tesla Transceiver","tr":"基础特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16001":{"name":"Advanced Tesla Transceiver","tr":"进阶特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16002":{"name":"Epyc Tesla Transceiver","tr":"霄龙特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16003":{"name":"Ultimate Power Tesla Transceiver","tr":"极限特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16004":{"name":"Insane Tesla Transceiver","tr":"疯狂特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16005":{"name":"Basic Tesla Transceiver","tr":"基础特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16006":{"name":"Advanced Tesla Transceiver","tr":"进阶特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16007":{"name":"Epyc Tesla Transceiver","tr":"霄龙特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16008":{"name":"Ultimate Power Tesla Transceiver","tr":"极限特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16009":{"name":"Insane Tesla Transceiver","tr":"疯狂特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16010":{"name":"Basic Tesla Transceiver","tr":"基础特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16011":{"name":"Advanced Tesla Transceiver","tr":"进阶特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16012":{"name":"Epyc Tesla Transceiver","tr":"霄龙特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16013":{"name":"Ultimate Power Tesla Transceiver","tr":"极限特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16014":{"name":"Insane Tesla Transceiver","tr":"疯狂特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16015":{"name":"Basic Tesla Transceiver","tr":"基础特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16016":{"name":"Advanced Tesla Transceiver","tr":"进阶特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16017":{"name":"Epyc Tesla Transceiver","tr":"霄龙特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16018":{"name":"Ultimate Power Tesla Transceiver","tr":"极限特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"16019":{"name":"Insane Tesla Transceiver","tr":"疯狂特斯拉收发器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32737":{"oreDict":["wireGt01Lumiium"],"name":"1x流明导线","tr":"1x流明导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32738":{"oreDict":["wireGt02Lumiium"],"name":"2x流明导线","tr":"2x流明导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32739":{"oreDict":["wireGt04Lumiium"],"name":"4x流明导线","tr":"4x流明导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32740":{"oreDict":["wireGt08Lumiium"],"name":"8x流明导线","tr":"8x流明导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32741":{"oreDict":["wireGt12Lumiium"],"name":"12x流明导线","tr":"12x流明导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32742":{"oreDict":["wireGt16Lumiium"],"name":"16x流明导线","tr":"16x流明导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32743":{"oreDict":["cableGt01Lumiium"],"name":"1x流明线缆","tr":"1x流明线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32744":{"oreDict":["cableGt02Lumiium"],"name":"2x流明线缆","tr":"2x流明线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32745":{"oreDict":["cableGt04Lumiium"],"name":"4x流明线缆","tr":"4x流明线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32746":{"oreDict":["cableGt08Lumiium"],"name":"8x流明线缆","tr":"8x流明线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32747":{"oreDict":["cableGt12Lumiium"],"name":"12x流明线缆","tr":"12x流明线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32748":{"oreDict":["cableGt16Lumiium"],"name":"16x流明线缆","tr":"16x流明线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32749":{"oreDict":["wireGt01Signalium"],"name":"1x信素导线","tr":"1x信素导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32750":{"oreDict":["wireGt02Signalium"],"name":"2x信素导线","tr":"2x信素导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32751":{"oreDict":["wireGt04Signalium"],"name":"4x信素导线","tr":"4x信素导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32752":{"oreDict":["wireGt08Signalium"],"name":"8x信素导线","tr":"8x信素导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32753":{"oreDict":["wireGt12Signalium"],"name":"12x信素导线","tr":"12x信素导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32754":{"oreDict":["wireGt16Signalium"],"name":"16x信素导线","tr":"16x信素导线","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32755":{"oreDict":["cableGt01Signalium"],"name":"1x信素线缆","tr":"1x信素线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32756":{"oreDict":["cableGt02Signalium"],"name":"2x信素线缆","tr":"2x信素线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32757":{"oreDict":["cableGt04Signalium"],"name":"4x信素线缆","tr":"4x信素线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32758":{"oreDict":["cableGt08Signalium"],"name":"8x信素线缆","tr":"8x信素线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32759":{"oreDict":["cableGt12Signalium"],"name":"12x信素线缆","tr":"12x信素线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"32760":{"oreDict":["cableGt16Signalium"],"name":"16x信素线缆","tr":"16x信素线缆","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:torch4":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:torch7":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:torch6":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:torch1":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:infinityegg":{"0":{"name":"Infinity Egg","tr":"无限之蛋","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:torch3":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoublePotin":{"0":{"oreDict":["plateDoublePotin"],"name":"双重粗青铜合金板","tr":"双重粗青铜合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"chisel:torch2":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:CardAppeng":{"0":{"name":"Applied Energistics Card","tr":"应用能源卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:rutabagaseedItem":{"0":{"oreDict":["listAllseed"," seedRutabaga"],"name":"Rutabaga Seed","tr":"芜菁甘蓝种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:riceItem":{"0":{"oreDict":["cropRice"],"name":"Rice","tr":"水稻","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.tape":{"0":{"name":"Tape Measure Reel","tr":"卷尺卷筒","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LightPickaxeHead":{"0":{"name":"Light Pickaxe Head","tr":"荧光镐头","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.eucalyptus":{"0":{"oreDict":["trapdoorWood"],"name":"Eucalyptus Trapdoor","tr":"桉树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:fireRateUpgradeItem":{"0":{"name":"Upgrade - Fire Rate","tr":"升级组件-射速","tab":"模块化炮塔","type":"Item","maxStackSize":4,"maxDurability":1}},"Botania:dirtPath0SlabFull":{"0":{"name":"Trodden Dirt Slab","tr":"沙土台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamLemon":{"0":{"name":"Lemon","tr":"柠檬","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:item.itemBufferCore10":{"0":{"oreDict":["bufferCore_UHV"],"name":"Energy Core [MAX].","tr":"能量核心 [MAX]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"betterquesting:guide_book":{"0":{"name":"Better Questing Starter Guide","tr":"入门指南","tab":"更好的任务","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaCplanks":{"0":{"oreDict":["plankWood"],"name":"Barnarda C Wood Planks","tr":"巴纳德C树木木板","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallIndalloy140":{"0":{"oreDict":["dustSmallIndalloy140"],"name":"小堆铋铅合金140粉","tr":"小堆铋铅合金140粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:silkentofuItem":{"0":{"oreDict":["foodSilkentofu"," listAllheavycream"," listAllicecream"],"name":"Silken Tofu","tr":"绢豆腐","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:reinforcedSlate":{"0":{"name":"Reinforced Slate","tr":"加强的石板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:torch9":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AluminiumBars":{"0":{"oreDict":["barsAluminium"],"name":"Aluminium Bars","tr":"铝栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:torch8":{"0":{"name":"Torch","tr":"火把","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodcase":{"0":{"name":"Sacred Oak Case","tr":"天域树橡树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Case","tr":"樱桃树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Case","tr":"黑暗树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Case","tr":"杉树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Case","tr":"Hellbark Case","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Case","tr":"阁楼树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Case","tr":"蓝花楹展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Case","tr":"魔法树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Case","tr":"红杉展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Case","tr":"棕榈树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Case","tr":"松树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Case","tr":"红木展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Case","tr":"柳树展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Case","tr":"桃花心木展示盒","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockReagentConduit":{"0":{"name":"Alchemy Relay","tr":"炼金中续器","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:armor.steel.boots":{"0":{"name":"Steel Boots","tr":"钢靴子","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:particleBase":{"0":{"name":"Graviton","tr":"引力子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Up Quark","tr":"上(u)夸克","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Down Quark","tr":"下(d)夸克","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Charm Quark","tr":"粲(c)夸克","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Strange Quark","tr":"奇(s)夸克","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Top Quark","tr":"顶(t)夸克","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Bottom Quark","tr":"底(b)夸克","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Electron","tr":"电子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Electron Neutrino","tr":"电子中微子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Muon","tr":"μ子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Muon Neutrino","tr":"μ子中微子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Tau","tr":"τ子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Tau Neutrino","tr":"τ子中微子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Gluon","tr":"胶子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Photon","tr":"光子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Z Boson","tr":"Z玻色子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"W Boson","tr":"W玻色子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Higgs Boson","tr":"希格斯玻色子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Proton","tr":"质子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Neutron","tr":"中子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Lambda","tr":"λ粒子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Omega","tr":"Ω粒子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Pion","tr":"介子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"ETA Meson","tr":"η介子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Unknown Particle","tr":"未知粒子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedHoneycombs":{"0":{"name":"Crated Honey Comb","tr":"装箱的蜜蜂蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorHeatSwitchSpread":{"1":{"name":"Component Heat Exchanger","tr":"元件热交换器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"GalacticraftMars:tile.denseIce":{"0":{"name":"Dense Ice","tr":"坚冰","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:AAA_Broken":{"0":{"name":"Errors - Tell Alkalus Ingot","tr":"Errors - Tell Alkalus Ingot","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mapleoatmealItem":{"0":{"oreDict":["foodMapleoatmeal"],"name":"Maple Oatmeal","tr":"枫糖燕麦片","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemCrystalDagger":{"0":{"name":"Crystal Dagger","tr":"结晶匕首","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":2001}},"BiblioWoodsBoP:BiblioWoodFancySign":{"0":{"name":"Sacred Oak Fancy Sign","tr":"天域树橡树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Fancy Sign","tr":"樱桃树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Fancy Sign","tr":"黑暗树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Fancy Sign","tr":"杉树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Fancy Sign","tr":"地狱皮树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Fancy Sign","tr":"天域树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Fancy Sign","tr":"蓝花楹精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Fancy Sign","tr":"魔法树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Fancy Sign","tr":"红杉精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Fancy Sign","tr":"棕榈树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Fancy Sign","tr":"松树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Fancy Sign","tr":"红木精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Fancy Sign","tr":"柳树精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Fancy Sign","tr":"桃花心木精致木牌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundBootsWater":{"0":{"name":"Water Omega Boots","tr":"水`欧米伽之靴","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:dustPureSamarskiteY":{"0":{"oreDict":["dustPureSamarskiteY"],"name":"Purified Samarskite (Y) Dust","tr":"洁净铌钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Silicon:laserTableBlock":{"0":{"name":"Assembly Table","tr":"装配台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Advanced Crafting Table","tr":"高级工作台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Integration Table","tr":"集成台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Charging Table","tr":"充能台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Programming Table","tr":"编程台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stamping Table","tr":"压印台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:voidBlock":{"0":{"oreDict":["blockVoidMetal"," blockVoidmetal"," blockVoid"," voidBlock"],"name":"Void metal Block","tr":"虚空金属块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotQuantum":{"0":{"oreDict":["ingotQuantum"],"name":"量子合金锭","tr":"量子合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedTin":{"0":{"name":"Crated Tin Ingot","tr":"装箱的锡锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:WG_CustomAir":{"0":{"name":"Glimmer of Light","tr":"微光","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:craftingParts":{"0":{"name":"Grindstone Top Piece","tr":"磨石顶部件","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Grindstone Bottom Piece","tr":"磨石底部件","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Grindstone","tr":"磨石","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Leather Covered Wood Frame","tr":"皮革包层木框架","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Wool Covered Wood Frame","tr":"羊毛包层木框架","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Paper Covered Wood Frame","tr":"纸包层木框架","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Multiple Material Covered Wood Frame","tr":"复合材料包层木框架","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockRedcrystalMerc":{"0":{"name":"Mercurial Redcrystal","tr":"镜像红晶","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateIodine":{"0":{"oreDict":["plateIodine"],"name":"碘板","tr":"碘板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleBloodSteel":{"0":{"oreDict":["plateDoubleBloodSteel"],"name":"双重血钢板","tr":"双重血钢板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Natura:willow":{"0":{"oreDict":["logWood"],"name":"Willow Wood","tr":"柳树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:BlockShadowOre":{"0":{"oreDict":["oreShadow"],"name":"Shadow Ore","tr":"暗影矿石","tab":"污秽魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings4":{"0":{"name":"强化钨钢机械方块","tr":"强化钨钢机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"洁净不锈钢机械方块","tr":"洁净不锈钢机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"加强钛机械方块","tr":"加强钛机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"钛燃烧室","tr":"钛燃烧室","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"聚变机械方块","tr":"聚变机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"聚变线圈方块","tr":"聚变线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"聚变机械方块MK II","tr":"聚变机械方块MK II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"涡轮机械方块","tr":"涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"不锈钢涡轮机械方块","tr":"不锈钢涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"钛涡轮机械方块","tr":"钛涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"钨钢涡轮机械方块","tr":"钨钢涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"引擎进气机械方块","tr":"引擎进气机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"坚实铱锇机械方块","tr":"坚实铱锇机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"耐火砖","tr":"耐火砖","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA0SlabFull":{"0":{"name":"Metamorphic Forest Stone Slab","tr":"变质森林石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings3":{"0":{"name":"黄色路障方块","tr":"黄色路障方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"黄色路障方块","tr":"黄色路障方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"辐射危险警示方块","tr":"辐射危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"生化危险警示方块","tr":"生化危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"爆炸危险警示方块","tr":"爆炸危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"易燃危险警示方块","tr":"易燃危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"强酸危险警示方块","tr":"强酸危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"魔力危险警示方块","tr":"魔力危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"低温危险警示方块","tr":"低温危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"噪声危险警示方块","tr":"噪声危险警示方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"格栅机械方块","tr":"格栅机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"过滤器机械方块","tr":"过滤器机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"防辐射机械方块","tr":"防辐射机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"青铜燃烧室","tr":"青铜燃烧室","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"钢燃烧室","tr":"钢燃烧室","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"钨钢燃烧室","tr":"钨钢燃烧室","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseEglinSteel":{"0":{"oreDict":["plateDenseEglinSteel"],"name":"致密埃格林钢板","tr":"致密埃格林钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings6":{"0":{"name":"密封机械方块","tr":"密封机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"密封机械方块 I","tr":"密封机械方块 I","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"密封机械方块 II","tr":"密封机械方块 II","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"密封机械方块 III","tr":"密封机械方块 III","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"密封机械方块 IV","tr":"密封机械方块 IV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"密封机械方块 V","tr":"密封机械方块 V","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"密封机械方块 VI","tr":"密封机械方块 VI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"密封机械方块 VII","tr":"密封机械方块 VII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"密封机械方块 VIII","tr":"密封机械方块 VIII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"密封机械方块 IX","tr":"密封机械方块 IX","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"密封机械方块 X","tr":"密封机械方块 X","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"密封机械方块 XI","tr":"密封机械方块 XI","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"密封机械方块 XII","tr":"密封机械方块 XII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"密封机械方块 XIII","tr":"密封机械方块 XIII","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"密封机械方块 XIV","tr":"密封机械方块 XIV","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings5":{"0":{"name":"白铜线圈方块","tr":"白铜线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"坎塔尔合金线圈方块","tr":"坎塔尔合金线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"镍铬合金线圈方块","tr":"镍铬合金线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"钛铂钒合金线圈方块","tr":"钛铂钒合金线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"高速钢-G线圈方块","tr":"高速钢-G线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"硅岩线圈方块","tr":"硅岩线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"硅岩合金线圈方块","tr":"硅岩合金线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"通流琥珀金线圈方块","tr":"通流琥珀金线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"觉醒龙锭线圈方块","tr":"觉醒龙锭线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"高速钢-S线圈方块","tr":"高速钢-S线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"三元金属线圈方块","tr":"三元金属线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"无尽线圈方块","tr":"无尽线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"海珀珍线圈方块","tr":"海珀珍线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"永恒线圈方块","tr":"永恒线圈方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings8":{"0":{"name":"化学惰性机械方块","tr":"化学惰性机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"聚四氟乙烯管道方块","tr":"聚四氟乙烯管道方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"中子采矿机械方块","tr":"中子采矿机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"黑钚采矿机械方块","tr":"黑钚采矿机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"极限引擎进气机械方块","tr":"极限引擎进气机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"铕强化防辐射机械方块","tr":"铕强化防辐射机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"强化镀铑钯机械方块","tr":"强化镀铑钯机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"强化镀铱机械方块","tr":"强化镀铱机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"魔法机械方块","tr":"魔法机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"高速钢-S涡轮机械方块","tr":"高速钢-S涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"放射硅岩合金机械方块","tr":"放射硅岩合金机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"基础光刻框架方块","tr":"基础光刻框架方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"强化光刻框架方块","tr":"强化光刻框架方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"防辐射光刻框架方块","tr":"防辐射光刻框架方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"无尽冷却机械方块","tr":"无尽冷却机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetNeptunium":{"0":{"oreDict":["nuggetNeptunium"],"name":"镎粒","tr":"镎粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings9":{"0":{"name":"PBI管道方块","tr":"PBI管道方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"进阶过滤器机械方块","tr":"进阶过滤器机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraBees:misc":{"0":{"name":"Scented Gear","tr":"飘香齿轮","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Diamond Fragment","tr":"钻石碎片","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Emerald Fragment","tr":"绿宝石碎片","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Ruby Fragment","tr":"红宝石碎片","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Sapphire Fragment","tr":"蓝宝石碎片","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lapis Fragment","tr":"青金石碎片","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Iron Grains","tr":"铁砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Gold Grains","tr":"金砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Silver Grains","tr":"银砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Platinum Grains","tr":"铂砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Copper Grains","tr":"铜砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Tin Grains","tr":"锡砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Nickel Grains","tr":"镍砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Lead Grains","tr":"铅砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Zinc Grains","tr":"锌砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Titanium Grains","tr":"钛砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Tungsten Grains","tr":"钨砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Radioactive Fragments","tr":"放射性碎片","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Coal Grains","tr":"煤砂","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["dyeRed"," dye"],"name":"Red Dye","tr":"红色颜料","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["dyeYellow"," dye"],"name":"Yellow Dye","tr":"黄色颜料","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["dyeBlue"," dye"],"name":"Blue Dye","tr":"蓝色颜料","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["dyeGreen"," dye"],"name":"Green Dye","tr":"绿色颜料","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["dyeWhite"," dye"],"name":"White Dye","tr":"白色颜料","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["dyeBlack"," dye"],"name":"Black Dye","tr":"黑色颜料","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["dyeBrown"," dye"],"name":"Brown Dye","tr":"棕色颜料","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Clay Dust","tr":"粘土粉","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureYttrialite":{"0":{"oreDict":["dustPureYttrialite"],"name":"Purified Yttrialite Dust","tr":"洁净硅钍钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallUN18Fertiliser":{"0":{"oreDict":["dustSmallUN18Fertiliser"],"name":"小堆流体肥料UN-18粉","tr":"小堆流体肥料UN-18粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.wood_sliding_door":{"0":{"name":"Wooden Glass Door","tr":"木框玻璃门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDenseRuthenium":{"0":{"oreDict":["plateDenseRuthenium"],"name":"致密钌板","tr":"致密钌板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPolycrase":{"0":{"oreDict":["crushedPolycrase"],"name":"Crushed Polycrase Ore","tr":"粉碎的锗铀钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedZircophyllite":{"0":{"oreDict":["crushedZircophyllite"],"name":"Crushed Zircophyllite Ore","tr":"粉碎的锆星叶石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsDarkwood":{"0":{"name":"Darkwood Stairs","tr":"黑暗树楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"ToxicEverglades:blockDarkWorldGround":{"0":{"name":"Unstable Earth","tr":"不稳定的土壤","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockcasings2":{"0":{"name":"脱氧钢机械方块","tr":"脱氧钢机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"防冻机械方块","tr":"防冻机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"青铜齿轮机械方块","tr":"青铜齿轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"钢齿轮机械方块","tr":"钢齿轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"钛齿轮机械方块","tr":"钛齿轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"装配线方块","tr":"装配线方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"处理器机械方块","tr":"处理器机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"数据驱动机械方块","tr":"数据驱动机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"力场控制机械方块","tr":"力场控制机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"装配线外壳","tr":"装配线外壳","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"泵机械方块","tr":"泵机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"马达机械方块","tr":"马达机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"青铜管道方块","tr":"青铜管道方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"钢管道方块","tr":"钢管道方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"钛管道方块","tr":"钛管道方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"钨钢管道方块","tr":"钨钢管道方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleOil":{"0":{"oreDict":["capsuleOil"],"name":"Oil Capsule","tr":"石油胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:amberStaffCore":{"0":{"name":"Amber Staff Core","tr":"琥珀杖芯","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallStrontiumOxide":{"0":{"oreDict":["dustSmallStrontiumOxide"],"name":"小堆氧化锶粉","tr":"小堆氧化锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:blackberryjellyItem":{"0":{"oreDict":["foodBlackberryjelly"],"name":"Blackberry Jelly","tr":"黑莓果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedYttrocerite":{"0":{"oreDict":["crushedPurifiedYttrocerite"],"name":"Purified Crushed Yttrocerite Ore","tr":"洗净的铈钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:FrothPyropeflotation":{"0":{"oreDict":["cellPyropeFroth"],"name":"镁铝榴石泡沫单元","tr":"镁铝榴石泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedGlassPlate":{"0":{"oreDict":["plateReinforcedGlass"],"name":"Reinforced Glass Plate","tr":"防爆玻璃板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeDrillHead":{"0":{"name":"Casting Form (Drill Head Shape)","tr":"铸形(钻头)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTechnetium":{"0":{"oreDict":["cellTechnetium"],"name":"锝单元","tr":"锝单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_Pollution_bucket":{"0":{"name":"Bucket of Pollution","tr":"桶装污染物","tab":"GTNH: 流体","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellAstralTitanium":{"0":{"oreDict":["cellAstralTitanium"],"name":"星体钛单元","tr":"星体钛单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemShadowFortressLeggings":{"0":{"name":"Shadow Fortress Thigh Guards","tr":"暗影要塞护胫","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":37501}},"Railcraft:tool.notepad":{"0":{"name":"Trackman\u0027s Notepad","tr":"铁路工笔记本","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":51}},"ExtraBees:ectoplasm":{"0":{"name":"Ectoplasm","tr":"胶质网","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:laboratory_door":{"0":{"name":"Laboratory Door","tr":"实验室门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:signalFlare":{"0":{"name":"Signal Flare","tr":"信号弹","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":201}},"IC2:itemToolBronzeAxe":{"0":{"name":"Bronze Axe","tr":"青铜斧","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":251}},"BiblioWoodsForestry:BiblioWoodPaintingT0":{"0":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Painting Frame","tr":"巴尔杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Painting Frame","tr":"猴面包树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Painting Frame","tr":"栗树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Painting Frame","tr":"柑橘树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Painting Frame","tr":"乌檀树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Painting Frame","tr":"樟树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Painting Frame","tr":"木棉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Painting Frame","tr":"落叶松画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Painting Frame","tr":"菩提树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Painting Frame","tr":"白皮树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Painting Frame","tr":"木瓜树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT2":{"0":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Painting Frame","tr":"巴尔杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Painting Frame","tr":"猴面包树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Painting Frame","tr":"栗树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Painting Frame","tr":"柑橘树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Painting Frame","tr":"乌檀树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Painting Frame","tr":"樟树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Painting Frame","tr":"木棉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Painting Frame","tr":"落叶松画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Painting Frame","tr":"菩提树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Painting Frame","tr":"白皮树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Painting Frame","tr":"木瓜树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT1":{"0":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Painting Frame","tr":"巴尔杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Painting Frame","tr":"猴面包树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Painting Frame","tr":"栗树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Painting Frame","tr":"柑橘树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Painting Frame","tr":"乌檀树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Painting Frame","tr":"樟树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Painting Frame","tr":"木棉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Painting Frame","tr":"落叶松画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Painting Frame","tr":"菩提树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Painting Frame","tr":"白皮树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Painting Frame","tr":"木瓜树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:flaxium":{"0":{"name":"Fluxium","tr":"咒波花","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2stuff:Grower":{"0":{"name":"Crystal Growth Chamber","tr":"晶体催生仓","tab":"应用能源附加机器","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT4":{"0":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Painting Frame","tr":"巴尔杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Painting Frame","tr":"猴面包树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Painting Frame","tr":"栗树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Painting Frame","tr":"柑橘树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Painting Frame","tr":"乌檀树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Painting Frame","tr":"樟树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Painting Frame","tr":"木棉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Painting Frame","tr":"落叶松画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Painting Frame","tr":"菩提树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Painting Frame","tr":"白皮树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Painting Frame","tr":"木瓜树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:ashroom":{"0":{"name":"Primal Shroom","tr":"始源蘑菇","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT3":{"0":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Painting Frame","tr":"巴尔杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Painting Frame","tr":"猴面包树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Painting Frame","tr":"樱桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Painting Frame","tr":"栗树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Painting Frame","tr":"柑橘树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Painting Frame","tr":"乌檀树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Painting Frame","tr":"樟树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Painting Frame","tr":"木棉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Painting Frame","tr":"落叶松画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Painting Frame","tr":"菩提树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Painting Frame","tr":"白皮树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Painting Frame","tr":"桃花心木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Painting Frame","tr":"棕榈树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Painting Frame","tr":"木瓜树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_purple":{"0":{"name":"Purple Curtain","tr":"紫色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:database":{"0":{"name":"Botanist Database","tr":"园丁数据库","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Master Botanist Database","tr":"园艺大师数据库","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:chocolate":{"0":{"name":"Block of Chocolate","tr":"巧克力块","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:chaosShardAtmos":{"0":{"name":"tile.draconicevolution:chaosShardAtmos.name","tr":"tile.draconicevolution:chaosShardAtmos.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCalifornium":{"0":{"oreDict":["dustCalifornium"],"name":"锎粉","tr":"锎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:post.metal":{"0":{"name":"Black Metal Post","tr":"黑色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Red Metal Post","tr":"红色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Metal Post","tr":"绿色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Brown Metal Post","tr":"棕色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Metal Post","tr":"蓝色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Purple Metal Post","tr":"紫色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Cyan Metal Post","tr":"青色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Light Gray Metal Post","tr":"淡灰色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Gray Metal Post","tr":"灰色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Metal Post","tr":"粉色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Metal Post","tr":"黄绿色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Yellow Metal Post","tr":"黄色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Light Blue Metal Post","tr":"淡蓝色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Metal Post","tr":"品红色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Orange Metal Post","tr":"橙色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"White Metal Post","tr":"白色金属桩","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.forcefieldItem":{"0":{"name":"Forcefield Controller","tr":"力场控制器","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"WitchingGadgets:item.WG_InfusedGem":{"0":{"name":"Infused Gem (Terra)","tr":"蕴魔宝石 (Terra)","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":33}},"BloodArsenal:glass_sacrificial_dagger":{"0":{"name":"Glass Sacrificial Dagger","tr":"玻璃牺牲匕首","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:bound_shears":{"0":{"name":"Bound Shears","tr":"约束剪刀","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":239}},"dreamcraft:item.BowStringCast":{"0":{"name":"Bow String Cast","tr":"弓弦铸模","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:silverblock":{"0":{"name":"Block of Silver","tr":"银块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Silver","tr":"银块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Silver","tr":"银块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Silver","tr":"银块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Silver","tr":"银块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Silver","tr":"银块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:silverfish_blood":{"0":{"name":"Silverfish Blood","tr":"蠹虫之血","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:corporeaInterceptor":{"0":{"name":"Corporea Interceptor","tr":"多媒体拦截器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:miniIsland":{"0":{"name":"Floating White Flower","tr":"白色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Floating Orange Flower","tr":"橙色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Floating Magenta Flower","tr":"品红色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Floating Light Blue Flower","tr":"淡蓝色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Floating Yellow Flower","tr":"黄色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Floating Lime Flower","tr":"黄绿色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Floating Pink Flower","tr":"粉色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Floating Gray Flower","tr":"灰色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Floating Light Gray Flower","tr":"淡灰色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Floating Cyan Flower","tr":"青色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Floating Purple Flower","tr":"紫色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Floating Blue Flower","tr":"蓝色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Floating Brown Flower","tr":"棕色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Floating Green Flower","tr":"绿色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Floating Red Flower","tr":"红色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Floating Black Flower","tr":"黑色浮空花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHafnium":{"0":{"oreDict":["plateDoubleHafnium"],"name":"双重铪板","tr":"双重铪板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemNuggetBlackMetal":{"0":{"oreDict":["nuggetBlackMetal"],"name":"黑物质粒","tr":"黑物质粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBathSalts":{"0":{"name":"Purifying Bath Salts","tr":"净化浴盐","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LichBoneFragment":{"0":{"name":"Lich Bone Fragment","tr":"巫之妖骨碎片","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA6Slab":{"0":{"name":"Metamorphic Taiga Stone Slab","tr":"变质雪原石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:goldenLaurel":{"0":{"name":"Golden Laurel Crown","tr":"黄金桂冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"EMT:Omnitool":{"1":{"name":"Iron Omnitool","tr":"铁制钻锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Iron Omnitool","tr":"铁制钻锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"catwalks:cagedLadder_north_lit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonsmoothieItem":{"0":{"oreDict":["foodLemonsmoothie"," listAllsmoothie"],"name":"Lemon Smoothie","tr":"柠檬冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:terraPlate":{"0":{"name":"Terrestrial Agglomeration Plate","tr":"泰拉凝聚板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.sludge":{"0":{"name":"Bacterial Sludge","tr":"菌泥","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockAlloy":{"0":{"name":"Reinforced Stone","tr":"防爆石","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidPlutoniumDepleted":{"0":{"name":"Fuel Rod (Depleted Excited Plutonium)","tr":"枯竭燃料棒(激发钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedcapsuleMolten":{"64":{"oreDict":["capsuleMoltenRuthenium"],"name":"熔融钌胶囊","tr":"熔融钌胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["capsuleMoltenShirabon"],"name":"熔融调律源金胶囊","tr":"熔融调律源金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["capsuleMoltenZn-ThAlloy"],"name":"熔融锌钍合金胶囊","tr":"熔融锌钍合金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11465":{"oreDict":["capsuleMoltenSamarium(III)-Chloride"],"name":"熔融含杂氯化钐胶囊","tr":"熔融含杂氯化钐胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["capsuleMoltenRhodium"],"name":"熔融铑胶囊","tr":"熔融铑胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["capsuleMoltenRhodium-PlatedPalladium"],"name":"熔融镀铑钯胶囊","tr":"熔融镀铑钯胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["capsuleMoltenRuridit"],"name":"熔融钌铱合金胶囊","tr":"熔融钌铱合金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["capsuleMoltenHighDurabilityCompoundSteel"],"name":"熔融高耐久性复合钢胶囊","tr":"熔融高耐久性复合钢胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["capsuleMoltenAdemicSteel"],"name":"熔融硬钢胶囊","tr":"熔融硬钢胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20001":{"oreDict":["capsuleMoltenHolmiumGarnet"],"name":"熔融Holmium Garnet胶囊","tr":"熔融Holmium Garnet胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["capsuleMoltenZircaloy-4"],"name":"熔融锆锡合金-4胶囊","tr":"熔融锆锡合金-4胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["capsuleMoltenZircaloy-2"],"name":"熔融锆锡合金-2胶囊","tr":"熔融锆锡合金-2胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["capsuleMoltenIncoloy-903"],"name":"熔融耐热铬铁合金-903胶囊","tr":"熔融耐热铬铁合金-903胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["capsuleMoltenAdamantiumAlloy"],"name":"熔融精金合金胶囊","tr":"熔融精金合金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["capsuleMoltenAtomicSeparationCatalyst"],"name":"熔融原子分离催化剂胶囊","tr":"熔融原子分离催化剂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["capsuleMoltenCalifornium"],"name":"熔融锎胶囊","tr":"熔融锎胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["capsuleMoltenOrundum"],"name":"熔融合成玉胶囊","tr":"熔融合成玉胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["capsuleMoltenCalcium"],"name":"熔融钙胶囊","tr":"熔融钙胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["capsuleMoltenExtremelyUnstableNaquadah"],"name":"熔融极不稳定硅岩胶囊","tr":"熔融极不稳定硅岩胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11498":{"oreDict":["capsuleMoltenCerium-dopedLutetiumAluminiumOxygenBlend"],"name":"熔融掺铈镥铝氧混合物胶囊","tr":"熔融掺铈镥铝氧混合物胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["capsuleMoltenBArTiMaEuSNeK"],"name":"熔融BArTiMaEuSNeK胶囊","tr":"熔融BArTiMaEuSNeK胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["capsuleMoltenMagnesia"],"name":"熔融氧化镁胶囊","tr":"熔融氧化镁胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["capsuleMoltenTantalumHafniumCarbide"],"name":"熔融碳化钽铪胶囊","tr":"熔融碳化钽铪胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["capsuleMoltenMAR-M200Steel"],"name":"熔融MAR-M200特种钢胶囊","tr":"熔融MAR-M200特种钢胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["capsuleMoltenPTMEGElastomer"],"name":"熔融PTMEG橡胶胶囊","tr":"熔融PTMEG橡胶胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["capsuleMoltenMAR-Ce-M200Steel"],"name":"熔融MAR-Ce-M200特种钢胶囊","tr":"熔融MAR-Ce-M200特种钢胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["capsuleMoltenLithiumChloride"],"name":"熔融氯化锂胶囊","tr":"熔融氯化锂胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11314":{"oreDict":["capsuleMoltenPotassiumChlorate"],"name":"熔融氯酸钾胶囊","tr":"熔融氯酸钾胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["capsuleMoltenSignalium"],"name":"熔融信素胶囊","tr":"熔融信素胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11124":{"oreDict":["capsuleMoltenCalciumFluoride"],"name":"熔融氟化钙胶囊","tr":"熔融氟化钙胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["capsuleMoltenLumiium"],"name":"熔融流明胶囊","tr":"熔融流明胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["capsuleMoltenArtherium-Sn"],"name":"熔融阿瑟锡胶囊","tr":"熔融阿瑟锡胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["capsuleMoltenTanmolyiumBeta-C"],"name":"熔融钛钼合金β-C胶囊","tr":"熔融钛钼合金β-C胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["capsuleMoltenDalisenite"],"name":"熔融大力合金胶囊","tr":"熔融大力合金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["capsuleMoltenHikarium"],"name":"熔融光素胶囊","tr":"熔融光素胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["capsuleMoltenTairitsu"],"name":"熔融对立合金胶囊","tr":"熔融对立合金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["capsuleMoltenPotassiumDisulfate"],"name":"熔融焦硫酸钾胶囊","tr":"熔融焦硫酸钾胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["capsuleMoltenPreciousMetalsAlloy"],"name":"熔融稀有金属合金胶囊","tr":"熔融稀有金属合金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["capsuleMoltenEnrichedNaquadahAlloy"],"name":"熔融富集硅岩合金胶囊","tr":"熔融富集硅岩合金胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["capsuleMoltenMetastableOganesson"],"name":"熔融亚稳态鿫胶囊","tr":"熔融亚稳态鿫胶囊","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockStairsGreatwood":{"0":{"oreDict":["stairWood"],"name":"Greatwood Stairs","tr":"宏伟之木楼梯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.CinderLog":{"0":{"name":"tile.CinderLog.0.name","tr":"余烬原木 [NYI]","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:apiary":{"0":{"name":"Apiary","tr":"蜂房","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockWarded":{"0":{"name":"tile.blockWarded.name","tr":"tile.blockWarded.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotAbyssalAlloy":{"0":{"oreDict":["ingotHotAbyssalAlloy"],"name":"热深渊合金锭","tr":"热深渊合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:tentacleRing":{"0":{"name":"Taintacle Ring","tr":"腐化指环","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1}},"RandomThings:energyDistributor":{"0":{"name":"Energy Distributor","tr":"能量分配器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshHoe":{"0":{"name":"Desh Hoe","tr":"戴斯锄","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1025}},"opensecurity:entitydetector":{"0":{"name":"Entity Detector","tr":"实体探测器","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"ProjectBlue:controlPanel":{"0":{"name":"Control Panel","tr":"控制板","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:incenseStick":{"0":{"name":"Incense Stick","tr":"熏香","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Core:markerBlock":{"0":{"name":"Land Mark","tr":"地标","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodBloodSteel":{"0":{"oreDict":["stickBloodSteel"],"name":"血钢杆","tr":"血钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemComplexSpellCrystal":{"0":{"name":"Complex Spell Crystal","tr":"复杂的法术水晶","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemIngotDragonblood":{"0":{"oreDict":["ingotDragonblood"],"name":"龙血锭","tr":"龙血锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockCreativeJar":{"3":{"name":"Infinity Jar","tr":"无尽之罐","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemQuantumVoid":{"1":{"name":"Quantum Boots of the Voidwalker","tr":"量子虚空旅行者之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Quantum Boots of the Voidwalker","tr":"量子虚空旅行者之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"BuildCraft|Transport:item.buildcraftPipe.pipepowerwood":{"0":{"name":"Wood-CoveredKinesisPipe","tr":"木质能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleRunite":{"0":{"oreDict":["plateDoubleRunite"],"name":"双重虚恩板","tr":"双重虚恩板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"gendustry:MutagenBucket":{"0":{"name":"Mutagen Bucket","tr":"诱变剂桶","tab":"基因工业","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.EdibleSalt":{"0":{"oreDict":["foodSalt"],"name":"Edible Salt","tr":"食用盐","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongUranium232":{"0":{"oreDict":["stickLongUranium232"],"name":"长铀-232杆","tr":"长铀-232杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongUranium233":{"0":{"oreDict":["stickLongUranium233"],"name":"长铀-233杆","tr":"长铀-233杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:vatSolid":{"0":{"name":"Curative Vat","tr":"治愈之缸","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtGrisium":{"0":{"oreDict":["frameGtGrisium"],"name":"灰钛合金框架","tr":"灰钛合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:spellCloth":{"0":{"name":"Spellbinding Cloth","tr":"封印之布","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":36}},"dreamcraft:item.IoStoneDust":{"0":{"oreDict":["dustSpace"," dustIoStone"," dustIo"],"name":"Io Stone Dust","tr":"木卫一尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorJetpack":{"1":{"name":"Jetpack","tr":"喷气背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Jetpack","tr":"喷气背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"chisel:netherStarChisel":{"0":{"name":"Bedrockium Chisel","tr":"基岩凿子","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":32768}},"irontank:emeraldTank":{"0":{"name":"Aluminium Tank","tr":"铝储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamlamingtonCake":{"0":{"name":"Lamington","tr":"拉明顿蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sesameballItem":{"0":{"oreDict":["foodSesameball"],"name":"Sesame Ball","tr":"芝麻球","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:end_powder":{"0":{"name":"End Powder","tr":"末影粉末","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongStrontium":{"0":{"oreDict":["stickLongStrontium"],"name":"长锶杆","tr":"长锶杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:stargateController":{"0":{"name":"Stargate Controller","tr":"星门控制器","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSmithI":{"0":{"name":"Coin \"Blacksmith 10\"","tr":"匠师币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstrack":{"0":{"name":"Acacia Tool Rack","tr":"金合欢工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Tool Rack","tr":"巴尔杉工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Tool Rack","tr":"猴面包树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Tool Rack","tr":"樱桃树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Tool Rack","tr":"栗树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Tool Rack","tr":"柑橘树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Tool Rack","tr":"乌檀树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Tool Rack","tr":"樟树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"KapokTool Rack","tr":"木棉Tool Rack","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Tool Rack","tr":"落叶松工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Tool Rack","tr":"菩提树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Tool Rack","tr":"白皮树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Tool Rack","tr":"桃花心木工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Tool Rack","tr":"枫树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Tool Rack","tr":"棕榈树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Tool Rack","tr":"木瓜树工具架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraTrees:stainedglass":{"16387":{"name":"Blank Stained Glass","tr":"空白染色玻璃","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pavlovaItem":{"0":{"oreDict":["foodPavlova"],"name":"Pavlova","tr":"巴甫洛娃蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.speaker":{"0":{"name":"Speaker","tr":"扬声器","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:eggnogItem":{"0":{"oreDict":["foodEggnog"],"name":"Egg Nog","tr":"蛋酒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:insulatedTube":{"0":{"name":"Copper Insulated Tube","tr":"铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"128":{"name":"Copper Insulated Tube","tr":"铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"256":{"name":"Copper Insulated Tube","tr":"铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"384":{"name":"Copper Insulated Tube","tr":"铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"512":{"name":"Copper Insulated Tube","tr":"铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"640":{"name":"Copper Insulated Tube","tr":"铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Tin Insulated Tube","tr":"锡 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"129":{"name":"Tin Insulated Tube","tr":"锡 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"257":{"name":"Tin Insulated Tube","tr":"锡 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"385":{"name":"Tin Insulated Tube","tr":"锡 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"513":{"name":"Tin Insulated Tube","tr":"锡 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"641":{"name":"Tin Insulated Tube","tr":"锡 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Bronze Insulated Tube","tr":"青铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"130":{"name":"Bronze Insulated Tube","tr":"青铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"258":{"name":"Bronze Insulated Tube","tr":"青铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"386":{"name":"Bronze Insulated Tube","tr":"青铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"514":{"name":"Bronze Insulated Tube","tr":"青铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"642":{"name":"Bronze Insulated Tube","tr":"青铜 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Iron Insulated Tube","tr":"铁 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"131":{"name":"Iron Insulated Tube","tr":"铁 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"259":{"name":"Iron Insulated Tube","tr":"铁 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"387":{"name":"Iron Insulated Tube","tr":"铁 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"515":{"name":"Iron Insulated Tube","tr":"铁 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"643":{"name":"Iron Insulated Tube","tr":"铁 恒温管","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:garlicplant":{"0":{"name":"Garlic","tr":"大蒜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:rune":{"0":{"oreDict":["runeWaterB"],"name":"Rune of Water","tr":"水之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["runeFireB"],"name":"Rune of Fire","tr":"火之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["runeEarthB"],"name":"Rune of Earth","tr":"地之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["runeAirB"],"name":"Rune of Air","tr":"风之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["runeSpringB"],"name":"Rune of Spring","tr":"春之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["runeSummerB"],"name":"Rune of Summer","tr":"夏之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["runeAutumnB"],"name":"Rune of Autumn","tr":"秋之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["runeWinterB"],"name":"Rune of Winter","tr":"冬之符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["runeManaB"],"name":"Rune of Mana","tr":"魔力符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["runeLustB"],"name":"Rune of Lust","tr":"欲望符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["runeGluttonyB"],"name":"Rune of Gluttony","tr":"暴食符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["runeGreedB"],"name":"Rune of Greed","tr":"贪婪符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["runeSlothB"],"name":"Rune of Sloth","tr":"懒惰符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["runeWrathB"],"name":"Rune of Wrath","tr":"暴怒符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["runeEnvyB"],"name":"Rune of Envy","tr":"嫉妒符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["runePrideB"],"name":"Rune of Pride","tr":"傲慢符文","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:stair.eucalyptus":{"0":{"oreDict":["stairWood"],"name":"Eucalyptus Stairs","tr":"桉树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:itemCarpentersTile":{"0":{"name":"Carpenter\u0027s Tile","tr":"木匠瓷砖","tab":"木匠方块","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustMiessiite":{"0":{"oreDict":["dustMiessiite"],"name":"硅灰石粉","tr":"硅灰石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockAstralTitanium":{"0":{"oreDict":["blockAstralTitanium"],"name":"星体钛块","tr":"星体钛块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearMaragingSteel250":{"0":{"oreDict":["gearGtMaragingSteel250"," gearMaragingSteel250"],"name":"马氏体时效钢250齿轮","tr":"马氏体时效钢250齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamGrapefruit":{"0":{"name":"Grapefruit","tr":"葡萄柚","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:item.remoteAccessor":{"0":{"name":"Remote Accessor","tr":"远程访问器","tab":"远程接口","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:efficiencyRune":{"0":{"name":"Efficiency Rune","tr":"效率符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blackberrysmoothieItem":{"0":{"oreDict":["foodBlackberrysmoothie"," listAllsmoothie"],"name":"Blackberry Smoothie","tr":"黑莓冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderZoo:itemSpawnEggEnderZoo":{"0":{"name":"Spawn Enderminy","tr":"生成 迷你末影人","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn Concussion Creeper","tr":"生成 震荡爬行者","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Spawn Fallen Knight","tr":"生成 堕落骑士","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Spawn Fallen Steed","tr":"生成 堕落战马","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Spawn Wither Witch","tr":"生成 凋零女巫","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Spawn Wither Cat","tr":"生成 凋零猫","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Spawn Dire Wolf","tr":"生成 冰原狼","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Spawn Khndrel Keght","tr":"生成 史莱姆骑士","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:paintbrush":{"0":{"name":"Paintbrush","tr":"画笔","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustEglinSteelBaseCompound":{"0":{"oreDict":["dustEglinSteelBaseCompound"],"name":"埃格林钢粗胚粉","tr":"埃格林钢粗胚粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateNitinol60":{"0":{"oreDict":["plateNitinol60"],"name":"镍钛诺60板","tr":"镍钛诺60板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodshelf":{"0":{"name":"Bloodwood Shelf","tr":"血树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Shelf","tr":"黑暗树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Shelf","tr":"桉树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Shelf","tr":"熔融树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Shelf","tr":"幽魂树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Shelf","tr":"车桑子树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Shelf","tr":"枫树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Shelf","tr":"紫檀树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Shelf","tr":"红木架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Shelf","tr":"银铃树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Shelf","tr":"樱花树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Shelf","tr":"核桃树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Shelf","tr":"柳树架子","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.flag":{"0":{"name":"Flag","tr":"旗","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamgarlicCrop":{"0":{"name":"Garlic Crop","tr":"大蒜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.itemShuttle":{"0":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Shuttle Rocket","tr":"穿梭机火箭","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRingMaragingSteel300":{"0":{"oreDict":["ringMaragingSteel300"],"name":"马氏体时效钢300环","tr":"马氏体时效钢300环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForgeMicroblock:sawStone":{"0":{"name":"Stone Saw","tr":"石手锯","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":513}},"miscutils:itemCellPlasmaDragonblood":{"0":{"oreDict":["cellPlasmaDragonblood"],"name":"龙血等离子体单元","tr":"龙血等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastone":{"0":{"name":"Nagastone Head","tr":"娜迦头方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Nagastone Head","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Nagastone Head","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Nagastone Head","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Nagastone","tr":"娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.nanotool":{"0":{"name":"Nanite Multitool","tr":"纳米机器人多用途工具","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Nanite Multitool","tr":"纳米机器人多用途工具","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101}},"dreamcraft:item.TungstenBars":{"0":{"oreDict":["barsTungsten"],"name":"Tungsten Bars","tr":"钨栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:packedice_stairs.7":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:packedice_stairs.6":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:packedice_stairs.5":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantinumHotIngot":{"0":{"name":"Hot Quantium Ingot","tr":"炙热的量子锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:packedice_stairs.4":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:roastchickenItem":{"0":{"oreDict":["foodRoastchicken"],"name":"Roast Chicken","tr":"烤鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:tinblock":{"0":{"name":"Block of Tin","tr":"锡块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Tin","tr":"锡块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Tin","tr":"锡块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Tin","tr":"锡块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Tin","tr":"锡块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Tin","tr":"锡块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafLegs":{"0":{"name":"Steeleaf Legs","tr":"钢叶护腿","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":301}},"RandomThings:voidStone":{"0":{"name":"Void Stone","tr":"虚空石","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedApatite":{"0":{"name":"Crated Apatite","tr":"装箱的磷灰石","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_pane_yellow":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:superTravelBelt":{"0":{"name":"Globetrotter\u0027s Sash","tr":"环游者腰带","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamspinachCrop":{"0":{"name":"Spinach Crop","tr":"菠菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Backpack:boundLeather":{"0":{"name":"Bound Leather","tr":"钉紧的皮革","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ArcaneSlate":{"0":{"name":"Arcane Slate","tr":"神秘石板","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:colasodaItem":{"0":{"oreDict":["foodColasoda"],"name":"Cola Soda","tr":"可乐汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:dust":{"0":{"oreDict":["dustObsidian"],"name":"Obsidian Dust","tr":"黑曜石粉","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dustSulfur"],"name":"Sulfur","tr":"硫磺","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustSaltpeter"],"name":"Saltpeter","tr":"硝石","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustCharcoal"],"name":"Charcoal Dust","tr":"木炭粉","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.ItemBioFuelCanister":{"1":{"name":"Biofuel Canister","tr":"生物燃料罐","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1002}},"BloodArsenal:life_imbued_leggings":{"0":{"name":"Life Imbued Leggings","tr":"生命灌输护腿","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":100001}},"HardcoreEnderExpansion:arcane_shard":{"0":{"name":"Arcane Shard","tr":"奥术碎片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:honeycombchocolatebarItem":{"0":{"oreDict":["foodHoneycombchocolatebar"],"name":"Honeycomb Chocolate Bar","tr":"蜂蜜巧克力棒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_Baubles":{"0":{"name":"Seraph\u0027s Shoulders","tr":"炽天使肩铠","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Steadfast Spaulders","tr":"磐石肩铠","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Berserker\u0027s Bracers","tr":"狂战士护腕","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Vambraces of Steady Progression","tr":"迅捷护腕","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Ring of the Covetous Coin","tr":"贪婪指环","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Title: Crimson Cult","tr":"称号:血腥教徒","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Band of the Sniper","tr":"狙击指环","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockRemoteComparator":{"0":{"name":"Remote Comparator","tr":"远程比较器","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedLepersonnite":{"0":{"oreDict":["crushedPurifiedLepersonnite"],"name":"Purified Crushed Lepersonnite Ore","tr":"洗净的绿泥石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:altGrass":{"0":{"name":"Dry Grass","tr":"干草地","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Golden Grass","tr":"黄金草地","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Vivid Grass","tr":"鲜草草地","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Scorched Grass","tr":"焦草草地","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Infused Grass","tr":"注魔草地","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Mutated Grass","tr":"异变草地","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellZirconium":{"0":{"oreDict":["cellZirconium"],"name":"锆单元","tr":"锆单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:autocraftingHalo":{"0":{"name":"Manufactory Halo","tr":"工厂环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:leaves4":{"0":{"oreDict":["treeLeaves"],"name":"Hellbark Leaves","tr":"地狱皮树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Jacaranda Leaves","tr":"蓝花楹树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:beacon":{"0":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Beacon","tr":"信标","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaNeptunium":{"0":{"oreDict":["cellPlasmaNeptunium"],"name":"镎等离子体单元","tr":"镎等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeFluidSatellite":{"0":{"name":"Logistics Fluid Satellite Pipe","tr":"物流流体卫星管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:earthScribeTool":{"0":{"name":"Elemental Inscription Tool: Earth","tr":"元素铭文:地","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":11}},"BiomesOPlenty:leaves1":{"0":{"oreDict":["treeLeaves"],"name":"Yellow Autumn Leaves","tr":"黄色秋天树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Bamboo Leaves","tr":"竹叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Magic Leaves","tr":"魔法树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Dark Leaves","tr":"黑暗树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesCarts:BlockActivator":{"0":{"name":"Module Toggler","tr":"模块切换器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:leaves2":{"0":{"oreDict":["treeLeaves"],"name":"Dying Leaves","tr":"垂死树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Fir Leaves","tr":"杉树树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Ethereal Leaves","tr":"空灵树树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Orange Autumn Leaves","tr":"橙色秋天树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:leaves3":{"0":{"oreDict":["treeLeaves"],"name":"Origin Leaves","tr":"起源树树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Pink Cherry Leaves","tr":"粉樱桃树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Maple Leaves","tr":"枫树树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"White Cherry Leaves","tr":"白樱桃树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSurvivorI":{"0":{"name":"Coin \"The Survivor 10\"","tr":"幸存者币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:glass_pane":{"1":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Glass Pane","tr":"玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:barnardaCreed":{"0":{"name":"Barnarda C Dandelion","tr":"巴纳德C蒲公英","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemSanityChecker":{"0":{"name":"Sanity Checker","tr":"神智检测仪","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:heavilyCrackedNaquadahGas":{"0":{"name":"Severely Cracked Naquadah Gas","tr":"重度裂化硅岩气","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:alchemyFlask":{"0":{"name":"Potion Flask","tr":"药瓶","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":9}},"DraconicEvolution:draconicBlock":{"0":{"oreDict":["blockDraconiumAwakened"],"name":"Awakened Draconium Block","tr":"觉醒龙块","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.ModuleSmallFuelCanister":{"0":{"name":"Small Fuel Canister","tr":"小型燃料罐","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bambooshootItem":{"0":{"oreDict":["listAllveggie"," cropBambooshoot"],"name":"Bamboo Shoot","tr":"竹笋","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:presser":{"0":{"name":"Presser","tr":"压榨机","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedPlutoniumDepleted2":{"0":{"name":"Dual Fuel Rod (Depleted High Density Plutonium)","tr":"枯竭二联燃料棒(浓缩钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedPlutoniumDepleted4":{"0":{"name":"Quad Fuel Rod (Depleted High Density Plutonium)","tr":"枯竭四联燃料棒(浓缩钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:item.ItemBIGSHOT":{"0":{"name":"[Hyperlink Blocked]","tr":"[[链接已失效]]","tab":"神秘革命","type":"Item","maxStackSize":1,"maxDurability":351}},"Forestry:apiaristLegs":{"0":{"name":"Apiarist\u0027s Pants","tr":"养蜂员裤子","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":101}},"thaumicbases:sweedSeeds":{"0":{"name":"Sweed Seeds","tr":"芦苇种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:mysticbranch":{"0":{"name":"Mystic Branch","tr":"神秘枝条","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRotorTantalumCarbide":{"0":{"oreDict":["rotorTantalumCarbide"],"name":"碳化钽转子","tr":"碳化钽转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"questbook:ItemQuestBook":{"0":{"name":"Quest Book","tr":"任务书","tab":"更好的任务","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:tyrian":{"0":{"oreDict":["tyrian"],"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Tyrian","tr":"未来风格金属块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"JABBA:upgradeSide":{"0":{"name":"Sticker","tr":"贴面","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Hopper facade","tr":"漏斗贴面","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Redstone facade","tr":"红石贴面","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1}},"BiblioCraft:item.BiblioWayPointCompass":{"0":{"name":"Waypoint Compass","tr":"路标盘","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:CraftingSlab":{"0":{"name":"Crafting Station","tr":"合成站","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tool Station","tr":"工具组装台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Part Builder","tr":"部件加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stencil Table","tr":"模具加工台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Pattern Chest","tr":"模具箱","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Tool Forge","tr":"工具装配台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableCamouflageName":{"0":{"name":"Cable Camouflage","tr":"伪装方块","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Double Sided Cable Camouflage","tr":"伪装方块-双面","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Transforming Cable Camouflage","tr":"伪装方块-变换","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongCinobiteA243":{"0":{"oreDict":["stickLongCinobiteA243"],"name":"长西诺柏A243杆","tr":"长西诺柏A243杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.hopseed":{"0":{"oreDict":["trapdoorWood"],"name":"Hopseed Trapdoor","tr":"车桑子树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:teruTeruBozu":{"0":{"name":"Teru Teru Bozu","tr":"晴天娃娃","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.thermalSuit":{"0":{"name":"Thermoregulation Helmet","tr":"温度调节靴子","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Thermoregulation Chest","tr":"温度调节胸甲","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Thermoregulation Leggings","tr":"温度调节护腿","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Thermoregulation Boots","tr":"温度调节靴子","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:saucepanItem":{"0":{"oreDict":["toolSaucepan"],"name":"Saucepan","tr":"炖锅","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedLepersonnite":{"0":{"oreDict":["crushedLepersonnite"],"name":"Crushed Lepersonnite Ore","tr":"粉碎的绿泥石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.HugeStalk":{"0":{"name":"Huge Stalk","tr":"巨大的茎","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.advancedsensorcard":{"0":{"name":"GregTech Advanced Sensor Card","tr":"高级传感器卡片[GT]","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:travelBelt":{"0":{"name":"Soujourner\u0027s Sash","tr":"旅居者腰带","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedCentrifugedPolycrase":{"0":{"oreDict":["crushedCentrifugedPolycrase"],"name":"Centrifuged Crushed Polycrase Ore","tr":"离心锗铀钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:part_fluid_export":{"0":{"name":"ME Fluid Export Bus","tr":"ME流体输出总线","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.GanymedeStoneDust":{"0":{"oreDict":["dustSpace"," dustGanymedeStone"," dustGanymede"],"name":"Ganymede Stone Dust","tr":"木卫三尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:bucketVishroom":{"0":{"name":"Bucket of Vishroom Soup","tr":"桶装毒菇汤","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:blood_orange":{"0":{"name":"Blood Orange","tr":"血橙","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_pickaxe_wood":{"0":{"name":"Blood Infused Wooden Pickaxe","tr":"注血木镐","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:item.steeleafShovel":{"0":{"name":"Steeleaf Shovel","tr":"钢叶铲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":132}},"chisel:stained_glass_pane_red":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraTrees:database":{"0":{"name":"Arborist Database","tr":"林业员数据库","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Master Arborist Database","tr":"林业员大师数据库","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:fluid.glass":{"0":{"name":"Liquid Glass","tr":"液态玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseIncoloy020":{"0":{"oreDict":["plateDenseIncoloy020"],"name":"致密耐热铬铁合金-020板","tr":"致密耐热铬铁合金-020板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.essentia.cell.workbench":{"0":{"name":"Essentia Cell Workbench","tr":"源质元件工作台","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.axe.darkwood":{"0":{"name":"Darkwood Hatchet","tr":"黑暗树手斧","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"witchery:huntercoatgarlicked":{"0":{"name":"Witch Hunter Dawn Coat","tr":"狩巫黎明之衣","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:itemRingMaragingSteel350":{"0":{"oreDict":["ringMaragingSteel350"],"name":"马氏体时效钢350环","tr":"马氏体时效钢350环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedRubber":{"0":{"name":"Crated Rubber","tr":"装箱的橡胶","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:scaffolding":{"0":{"name":"Scaffolding","tr":"脚手架","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:glowstone":{"1":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Glowstone","tr":"萤石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingNiobiumCarbide":{"0":{"oreDict":["ringNiobiumCarbide"],"name":"碳化铌环","tr":"碳化铌环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB5SlabFull":{"0":{"name":"Metamorphic Desert Stone Brick Slab","tr":"变质沙漠石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLi2BeF4":{"0":{"oreDict":["dustLi2BeF4"],"name":"Li2BeF4燃料复合物粉","tr":"Li2BeF4燃料复合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Backpack:backpack":{"0":{"oreDict":["SmallBackpacks"],"name":"Backpack","tr":"小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"oreDict":["SmallBackpacks"],"name":"Black Backpack","tr":"黑色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"oreDict":["SmallBackpacks"],"name":"Red Backpack","tr":"红色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"oreDict":["SmallBackpacks"],"name":"Green Backpack","tr":"绿色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"oreDict":["SmallBackpacks"],"name":"Brown Backpack","tr":"棕色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"oreDict":["SmallBackpacks"],"name":"Blue Backpack","tr":"蓝色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"oreDict":["SmallBackpacks"],"name":"Purple Backpack","tr":"紫色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"oreDict":["SmallBackpacks"],"name":"Cyan Backpack","tr":"青色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"oreDict":["SmallBackpacks"],"name":"Light Gray Backpack","tr":"淡灰色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"oreDict":["SmallBackpacks"],"name":"Gray Backpack","tr":"灰色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"oreDict":["SmallBackpacks"],"name":"Pink Backpack","tr":"粉红色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"oreDict":["SmallBackpacks"],"name":"Lime Backpack","tr":"黄绿色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"oreDict":["SmallBackpacks"],"name":"Yellow Backpack","tr":"黄色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"oreDict":["SmallBackpacks"],"name":"Light Blue Backpack","tr":"淡蓝色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"oreDict":["SmallBackpacks"],"name":"Magenta Backpack","tr":"品红色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"oreDict":["SmallBackpacks"],"name":"Orange Backpack","tr":"橙色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"oreDict":["SmallBackpacks"],"name":"White Backpack","tr":"白色小背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"200":{"oreDict":["BigBackpacks"],"name":"Big Backpack","tr":"大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"201":{"oreDict":["BigBackpacks"],"name":"Big Black Backpack","tr":"黑色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"202":{"oreDict":["BigBackpacks"],"name":"Big Red Backpack","tr":"红色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"203":{"oreDict":["BigBackpacks"],"name":"Big Green Backpack","tr":"绿色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"204":{"oreDict":["BigBackpacks"],"name":"Big Brown Backpack","tr":"棕色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"205":{"oreDict":["BigBackpacks"],"name":"Big Blue Backpack","tr":"蓝色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"206":{"oreDict":["BigBackpacks"],"name":"Big Purple Backpack","tr":"紫色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"207":{"oreDict":["BigBackpacks"],"name":"Big Cyan Backpack","tr":"青色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"208":{"oreDict":["BigBackpacks"],"name":"Big Light Gray Backpack","tr":"淡灰色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"209":{"oreDict":["BigBackpacks"],"name":"Big Gray Backpack","tr":"灰色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"210":{"oreDict":["BigBackpacks"],"name":"Big Pink Backpack","tr":"粉红色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"211":{"oreDict":["BigBackpacks"],"name":"Big Lime Backpack","tr":"黄绿色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"212":{"oreDict":["BigBackpacks"],"name":"Big Yellow Backpack","tr":"黄色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"213":{"oreDict":["BigBackpacks"],"name":"Big Light Blue Backpack","tr":"淡蓝色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"214":{"oreDict":["BigBackpacks"],"name":"Big Magenta Backpack","tr":"品红色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"215":{"oreDict":["BigBackpacks"],"name":"Big Orange Backpack","tr":"橙色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"216":{"oreDict":["BigBackpacks"],"name":"Big White Backpack","tr":"白色大背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"100":{"oreDict":["MediumBackpacks"],"name":"Middle Backpack","tr":"中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"101":{"oreDict":["MediumBackpacks"],"name":"Middle Black Backpack","tr":"黑色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"102":{"oreDict":["MediumBackpacks"],"name":"Middle Red Backpack","tr":"红色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"103":{"oreDict":["MediumBackpacks"],"name":"Middle Green Backpack","tr":"绿色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"104":{"oreDict":["MediumBackpacks"],"name":"Middle Brown Backpack","tr":"棕色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"105":{"oreDict":["MediumBackpacks"],"name":"Middle Blue Backpack","tr":"蓝色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"106":{"oreDict":["MediumBackpacks"],"name":"Middle Purple Backpack","tr":"紫色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"107":{"oreDict":["MediumBackpacks"],"name":"Middle Cyan Backpack","tr":"青色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"108":{"oreDict":["MediumBackpacks"],"name":"Middle Light Gray Backpack","tr":"淡灰色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"109":{"oreDict":["MediumBackpacks"],"name":"Middle Gray Backpack","tr":"灰色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"110":{"oreDict":["MediumBackpacks"],"name":"Middle Pink Backpack","tr":"粉红色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"111":{"oreDict":["MediumBackpacks"],"name":"Middle Lime Backpack","tr":"黄绿色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"112":{"oreDict":["MediumBackpacks"],"name":"Middle Yellow Backpack","tr":"黄色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"113":{"oreDict":["MediumBackpacks"],"name":"Middle Light Blue Backpack","tr":"淡蓝色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"114":{"oreDict":["MediumBackpacks"],"name":"Middle Magenta Backpack","tr":"品红色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"115":{"oreDict":["MediumBackpacks"],"name":"Middle Orange Backpack","tr":"橙色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"116":{"oreDict":["MediumBackpacks"],"name":"Middle White Backpack","tr":"白色中背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"31999":{"name":"Ender Backpack","tr":"末影背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1}},"thaumicbases:nodeLinker":{"0":{"name":"Node Linking Device","tr":"节点链接器","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:gearBronze":{"0":{"oreDict":["gearBronze"],"name":"Bronze Gear","tr":"青铜齿轮","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:diggerBag":{"0":{"name":"Digger\u0027s Backpack","tr":"挖掘者背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearMaragingSteel350":{"0":{"oreDict":["gearGtMaragingSteel350"," gearMaragingSteel350"],"name":"马氏体时效钢350齿轮","tr":"马氏体时效钢350齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:ingredient":{"0":{"name":"Player Core","tr":"玩家核心","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["obsidianRod"," stickObsidian"," obsidianStick"],"name":"Obsidian Stick","tr":"黑曜石手柄","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Ender Fragment","tr":"末影碎片","tab":"随意作品","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Ectoplasm","tr":"灵气","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Spectre Iron","tr":"灵魂之铁","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Transformation Core","tr":"转换核心","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Ender Diamond","tr":"末影钻石","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Energized Water","tr":"充能水","tab":"随意作品","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:crushedCentrifugedLepersonnite":{"0":{"oreDict":["crushedCentrifugedLepersonnite"],"name":"Centrifuged Crushed Lepersonnite Ore","tr":"离心绿泥石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hushpuppiesItem":{"0":{"oreDict":["foodHushpuppies"],"name":"Hushpuppies","tr":"黄金玉米球","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyThoriumHexafluoride":{"0":{"oreDict":["dustTinyThoriumHexafluoride"],"name":"小撮六氟化钍粉","tr":"小撮六氟化钍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"adventurebackpack:backpackComponent":{"1":{"name":"Sleeping Bag","tr":"睡袋","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Backpack Tank","tr":"背包储罐","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Hose Nozzle","tr":"软管喷嘴","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"4":{"name":"Machete Handle","tr":"弯刀手柄","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"5":{"name":"Two-Cylinder Diesel Engine","tr":"双缸柴油机","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"6":{"name":"Copter Blades","tr":"直升机桨叶","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"7":{"name":"Inflatable Boat","tr":"充气艇","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"8":{"name":"Inflatable Boat (Motorized)","tr":"充气艇(机动化)","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1},"9":{"name":"Hydro Blades","tr":"水力发电桨叶","tab":"探险背包","type":"Item","maxStackSize":16,"maxDurability":1}},"IC2:itemPurifiedCrushedOre":{"0":{"oreDict":["crushedPurifiedAnyIron"," crushedPurifiedIron"],"name":"Purified Crushed Iron Ore","tr":"纯净的粉碎铁矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["crushedPurifiedCopper"," crushedPurifiedAnyCopper"],"name":"Purified Crushed Copper Ore","tr":"纯净的粉碎铜矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["crushedPurifiedGold"],"name":"Purified Crushed Gold Ore","tr":"纯净的粉碎金矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["crushedPurifiedTin"],"name":"Purified Crushed Tin Ore","tr":"纯净的粉碎锡矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["crushedPurifiedUranium"],"name":"Purified Crushed Uranium Ore","tr":"纯净的粉碎铀矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["crushedPurifiedSilver"],"name":"Purified Crushed Silver Ore","tr":"纯净的粉碎银矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["crushedPurifiedLead"],"name":"Purified Crushed Lead Ore","tr":"纯净的粉碎铅矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorHafnium":{"0":{"oreDict":["rotorHafnium"],"name":"铪转子","tr":"铪转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseLafiumCompound":{"0":{"oreDict":["plateDenseLafiumCompound"],"name":"致密路菲恩化合物板","tr":"致密路菲恩化合物板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:PhotonControllerUpgrades":{"0":{"name":"Photonic Intensifier Low Tier","tr":"光量子增幅器LV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Photonic Intensifier Middle Tier","tr":"光量子增幅器MV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Photonic Intensifier HV Tier","tr":"光量子增幅器HV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Photonic Intensifier EV Tier","tr":"光量子增幅器EV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Photonic Intensifier IV Tier","tr":"光量子增幅器IV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Photonic Intensifier LuV Tier","tr":"光量子增幅器LuV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Photonic Intensifier ZPM Tier","tr":"光量子增幅器ZPM Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Photonic Intensifier UV Tier","tr":"光量子增幅器UV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Photonic Intensifier UHV Tier","tr":"光量子增幅器UHV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Photonic Intensifier UEV Tier","tr":"光量子增幅器UEV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Photonic Intensifier UIV Tier","tr":"光量子增幅器UIV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Photonic Intensifier UMV Tier","tr":"光量子增幅器UMV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Photonic Intensifier UXV Tier","tr":"光量子增幅器UXV Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Photonic Intensifier MAX Tier","tr":"光量子增幅器MAX Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1}},"betterquesting:extra_life":{"0":{"name":"Extra Life","tr":"1颗心","tab":"更好的任务","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Half Heart","tr":"1/2颗心","tab":"更好的任务","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Quarter Heart","tr":"1/4颗心","tab":"更好的任务","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:tacoItem":{"0":{"oreDict":["foodTaco"],"name":"Taco","tr":"塔可饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearAstralTitanium":{"0":{"oreDict":["gearGtAstralTitanium"," gearAstralTitanium"],"name":"星体钛齿轮","tr":"星体钛齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:apatite":{"0":{"oreDict":["gemApatite"],"name":"Apatite","tr":"磷灰石","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemLathingTool":{"0":{"name":"Lathing Tool","tr":"车床工具","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":51}},"dreamcraft:item.EctoplasmaChip":{"0":{"name":"Ectoplasma Chip","tr":"外质碎屑","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:packedice_stairs.3":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:packedice_stairs.2":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:EldritchOrb":{"0":{"name":"Eldritch Blood Orb","tr":"邪术气血宝珠","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:packedice_stairs.1":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:packedice_stairs.0":{"0":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Packed Ice Stairs","tr":"浮冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongLafiumCompound":{"0":{"oreDict":["stickLongLafiumCompound"],"name":"长路菲恩化合物杆","tr":"长路菲恩化合物杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pomegranatejellyItem":{"0":{"oreDict":["foodPomegranatejelly"],"name":"Pomegranate Jelly","tr":"石榴果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:AlchemicalWizardrybloodRune":{"0":{"name":"Blood Rune","tr":"气血符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Rune of Augmented Capacity","tr":"增容符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Rune of Dislocation","tr":"转位符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Rune of the Orb","tr":"宝珠符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Rune of Superior Capacity","tr":"超容符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Rune of Acceleration","tr":"促进符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Rune of Quickness","tr":"Rune of Quickness","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:blankSeal":{"0":{"name":"Dark Blank Seal","tr":"黑色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Red Blank Seal","tr":"红色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Blank Seal","tr":"绿色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Brown Blank Seal","tr":"棕色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Blank Seal","tr":"蓝色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Purple Blank Seal","tr":"紫色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Cyan Blank Seal","tr":"青色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Light Gray Blank Seal","tr":"淡灰色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Gray Blank Seal","tr":"灰色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Blank Seal","tr":"粉色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Blank Seal","tr":"黄绿色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Yellow Blank Seal","tr":"黄色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Light Blue Blank Seal","tr":"淡蓝色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Blank Seal","tr":"品红色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Orange Blank Seal","tr":"橙色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Pale Blank Seal","tr":"白色空封蜡","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:skilletItem":{"0":{"oreDict":["toolSkillet"],"name":"Skillet","tr":"平底锅","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellPlasmaIodine":{"0":{"oreDict":["cellPlasmaIodine"],"name":"碘等离子体单元","tr":"碘等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:NetherButton":{"0":{"name":"Button","tr":"按钮","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernBow":{"0":{"name":"Bow of the Wyvern","tr":"双足飞龙弓","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"RandomThings:playerinterface":{"0":{"name":"Player Interface","tr":"玩家接口","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"tectech:item.tm.teslaCover":{"0":{"name":"Tesla Coil Cover","tr":"特斯拉线圈帽","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Tesla Coil Cover Rich Edition","tr":"豪华特斯拉线圈帽","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.filecabinet":{"0":{"name":"Open File Cabinet","tr":"开放式文件柜","tab":"开放式打印机","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:louse":{"0":{"name":"Parasytic Louse","tr":"寄生虱","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearHastelloyC276":{"0":{"oreDict":["gearGtHastelloyC276"," gearHastelloyC276"],"name":"哈斯特洛依合金-C276齿轮","tr":"哈斯特洛依合金-C276齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodrack":{"0":{"name":"Bloodwood Tool Rack","tr":"血树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Tool Rack","tr":"黑暗树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Tool Rack","tr":"桉树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Tool Rack","tr":"熔融树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Tool Rack","tr":"幽魂树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Tool Rack","tr":"车桑子树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Tool Rack","tr":"枫树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Tool Rack","tr":"紫檀树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Tool Rack","tr":"红木树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Tool Rack","tr":"银铃树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Tool Rack","tr":"樱花树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Tool Rack","tr":"核桃树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Tool Rack","tr":"柳树工具架","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pearjuiceItem":{"0":{"oreDict":["listAlljuice"," foodPearjuice"],"name":"Pear Juice","tr":"梨汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemTungstenSteelShaft":{"0":{"name":"TungstenSteel Shaft","tr":"钨钢轴","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"dreamcraft:item.CallistoIceCompressedPlate":{"0":{"oreDict":["compressedCallistoIce"],"name":"Compressed Callisto Ice Plate","tr":"航天木卫四冰板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:stainlesssteelTank":{"0":{"name":"Stainless Steel Tank","tr":"不锈钢储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTantalloy60":{"0":{"oreDict":["cellTantalloy60"],"name":"钽钨合金-60单元","tr":"钽钨合金-60单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTriniumTitaniumAlloy":{"0":{"oreDict":["boltTriniumTitaniumAlloy"],"name":"三元钛合金螺栓","tr":"三元钛合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bananajuiceItem":{"0":{"oreDict":["foodBananajuice"],"name":"Banana Juice","tr":"香蕉汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTantalloy61":{"0":{"oreDict":["cellTantalloy61"],"name":"钽钨合金-61单元","tr":"钽钨合金-61单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.tfspawnegg":{"0":{"name":"Spawn Roving Cube [NYI]","tr":"生成 悬浮立方体 [NYI]","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"177":{"name":"Spawn Wild Boar","tr":"生成 野猪","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"178":{"name":"Spawn Bighorn Sheep","tr":"生成 大角山羊","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"179":{"name":"Spawn Wild Deer","tr":"生成 野鹿","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"180":{"name":"Spawn Redcap","tr":"生成 红帽地精","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"181":{"name":"Spawn Swarm Spider","tr":"生成 集群蜘蛛","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"182":{"name":"Spawn Naga","tr":"生成 娜迦","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"184":{"name":"Spawn Skeleton Druid","tr":"生成 骷髅德鲁伊","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"185":{"name":"Spawn Hostile Wolf","tr":"生成 愤怒的狼","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"186":{"name":"Spawn Twilight Wraith","tr":"生成 幽灵","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"187":{"name":"Spawn Hedge Spider","tr":"生成 树篱蜘蛛","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"189":{"name":"Spawn Hydra","tr":"生成 九头蛇","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"190":{"name":"Spawn Twilight Lich","tr":"生成 巫妖","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"191":{"name":"Spawn Penguin","tr":"生成 企鹅","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"194":{"name":"Spawn Tiny Bird","tr":"生成 小鸟","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"195":{"name":"Spawn Forest Squirrel","tr":"生成 松鼠","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"196":{"name":"Spawn Forest Bunny","tr":"生成 兔子","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"197":{"name":"Spawn Forest Raven","tr":"生成 乌鸦","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"199":{"name":"Spawn Kobold","tr":"生成 地精","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"202":{"name":"Spawn Mosquito Swarm","tr":"生成 成群的蚊子","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"203":{"name":"Spawn Death Tome","tr":"生成 死亡之书","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"204":{"name":"Spawn Minotaur","tr":"生成 牛头人","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"205":{"name":"Spawn Minoshroom","tr":"生成 米诺陶","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"206":{"name":"Spawn Fire Beetle","tr":"生成 喷火甲虫","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"207":{"name":"Spawn Slime Beetle","tr":"生成 粘液甲虫","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"208":{"name":"Spawn Pinch Beetle","tr":"生成 枯萎甲虫","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"209":{"name":"Spawn Maze Slime","tr":"生成 迷宫史莱姆","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"210":{"name":"Spawn Redcap Sapper","tr":"生成 红帽工兵","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"211":{"name":"Spawn Mist Wolf","tr":"生成 迷雾狼","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"212":{"name":"Spawn King Spider","tr":"生成 国王蜘蛛","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"213":{"name":"Spawn Firefly","tr":"生成 萤火虫","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"214":{"name":"Spawn Carminite Ghastling","tr":"生成 迷你幽灵","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"215":{"name":"Spawn Carminite Ghastguard","tr":"生成 高塔幽灵","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"216":{"name":"Spawn Carminite Golem","tr":"生成 高塔铁傀儡","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"217":{"name":"Spawn Ur-ghast","tr":"生成 暮色恶魂","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"218":{"name":"Spawn Towerwood Borer","tr":"生成 高塔蠹虫","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"219":{"name":"Spawn Carminite Broodling","tr":"生成 寄生虫","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"220":{"name":"Spawn Block and Chain Goblin","tr":"生成 链球地精","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"222":{"name":"Spawn Lower Goblin Knight","tr":"生成 地精骑士(下身)","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"223":{"name":"Spawn Helmet Crab","tr":"生成 寄居蟹","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"224":{"name":"Spawn Knight Phantom","tr":"生成 幻影骑士","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"225":{"name":"Spawn Yeti","tr":"生成 雪人","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"226":{"name":"Spawn Alpha Yeti","tr":"生成 雪人首领","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"227":{"name":"Spawn Winter Wolf","tr":"生成 寒冬狼","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"228":{"name":"Spawn Snow Guardian","tr":"生成 冰雪守护者","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"229":{"name":"Spawn Stable Ice Core","tr":"生成 冰精灵","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"230":{"name":"Spawn Unstable Ice Core","tr":"生成 破碎的冰精灵","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"231":{"name":"Spawn Snow Queen","tr":"生成 冰雪女王","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"232":{"name":"Spawn Cave Troll","tr":"生成 洞穴巨魔","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"233":{"name":"Spawn Giant Miner","tr":"生成 巨人矿工","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"234":{"name":"Spawn Armored Giant","tr":"生成 装甲巨人","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"235":{"name":"Spawn Ice Crystal","tr":"生成 冰晶体","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"236":{"name":"Spawn Harbinger Cube [NYI]","tr":"生成 先驱立方体 [NYI]","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1},"237":{"name":"Spawn Adherent [NYI]","tr":"生成 追随者","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:drum":{"0":{"name":"迅捷药水 Drum","tr":"迅捷药水 筒","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"迅捷药水 Bedrockium Drum","tr":"迅捷药水 基岩筒","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBabbitAlloy":{"0":{"oreDict":["cellBabbitAlloy"],"name":"巴氏合金单元","tr":"巴氏合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:ambrosia":{"0":{"name":"Ambrosia","tr":"仙馔密酒","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:witchwood":{"0":{"oreDict":["plankWood"],"name":"Rowan Planks","tr":"山梨树木板","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"],"name":"Alder Planks","tr":"赤杨树木板","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"],"name":"Hawthorn Planks","tr":"山楂树木板","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gingerItem":{"0":{"oreDict":["listAllspice"," cropGinger"],"name":"Ginger","tr":"姜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:oldIron":{"0":{"oreDict":["blockIron"," blockAnyIron"],"name":"Ancient Iron Block","tr":"远古铁块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:life_infuser":{"0":{"name":"Life Infuser","tr":"生命注入器","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongNiobiumCarbide":{"0":{"oreDict":["stickLongNiobiumCarbide"],"name":"长碳化铌杆","tr":"长碳化铌杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedFlorencite":{"0":{"oreDict":["crushedFlorencite"],"name":"Crushed Florencite Ore","tr":"粉碎的磷铝铈矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:backpack.iceman.t2":{"0":{"name":"Woven Iceman\u0027s Backpack","tr":"编织的冰原旅者背包","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:backpack.iceman.t1":{"0":{"name":"Iceman\u0027s Backpack","tr":"冰原旅者背包","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedMysteriousCombs":{"0":{"name":"Crated Mysterious Comb","tr":"装箱的神秘蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:ignisFruit":{"0":{"name":"Ignis Fruit","tr":"炙炎果","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemRTGPellet":{"0":{"name":"Pellets of RTG Fuel","tr":"放射性同位素燃料靶丸","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:snowpressureplate":{"0":{"name":"Snow Pressure Plate","tr":"雪压力板","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:NanoBootsTraveller":{"1":{"name":"Nanosuit Boots of the Traveller","tr":"纳米旅行者之靴","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Nanosuit Boots of the Traveller","tr":"纳米旅行者之靴","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"GalaxySpace:oxstoragemoduleT2":{"0":{"name":"Advanced Oxygen Module","tr":"改良的储氧模块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafSword":{"0":{"name":"Steeleaf Sword","tr":"钢叶剑","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":132}},"ae2fc:fluid_storage4":{"0":{"name":"§e4k§r ME Fluid Storage Cell","tr":"§e4k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallDysprosium":{"0":{"oreDict":["dustSmallDysprosium"],"name":"小堆镝粉","tr":"小堆镝粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:frogcookedItem":{"0":{"oreDict":["foodFrogcooked"],"name":"Cooked Frog Legs","tr":"熟蛙腿","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_storage1":{"0":{"name":"§61k§r ME Fluid Storage Cell","tr":"§61k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicExploration:boundChest":{"0":{"name":"Bound Chest","tr":"绑定箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrapDoorMangrove":{"0":{"name":"Mangrove Trapdoor","tr":"红树木活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolCertusQuartzHoe":{"0":{"name":"Certus Quartz Hoe","tr":"赛特斯石英锄","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"Automagy:blockXPStone":{"0":{"name":"Soul Stone","tr":"灵魂之石","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaLogWillow":{"0":{"name":"Crated Willow Wood","tr":"装箱的柳树原木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.InfernalBrick":{"0":{"name":"Infernal Brick","tr":"炼狱砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.DoubleCompressedCoal":{"0":{"name":"Block of Double Compressed Coal","tr":"双重压缩煤炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorJetpackElectric":{"1":{"name":"Electric Jetpack","tr":"电力喷气背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Electric Jetpack","tr":"电力喷气背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemGearMaragingSteel300":{"0":{"oreDict":["gearMaragingSteel300"," gearGtMaragingSteel300"],"name":"马氏体时效钢300齿轮","tr":"马氏体时效钢300齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinAdventure":{"0":{"name":"Coin \"The Explorer 1\"","tr":"探险家币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockAlloyGlass":{"0":{"oreDict":["blockGlassEV"," glassReinforced"],"name":"Reinforced Glass","tr":"防爆玻璃","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleAdvancedNitinol":{"0":{"oreDict":["plateDoubleAdvancedNitinol"],"name":"双重高级镍钛诺板","tr":"双重高级镍钛诺板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"BloodArsenal:item_blood_cake":{"0":{"name":"Blood Cake","tr":"血之蛋糕","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IrradiantReinforcedTungstenSteelPlate":{"0":{"name":"Irradiant Reinforced Tungsten-Steel Plate","tr":"光辉强化钨钢板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingIncoloy020":{"0":{"oreDict":["ringIncoloy020"],"name":"耐热铬铁合金-020环","tr":"耐热铬铁合金-020环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:bloodleafCrop":{"0":{"name":"Blood Leaf Crop","tr":"血腥叶片","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltMaragingSteel250":{"0":{"oreDict":["boltMaragingSteel250"],"name":"马氏体时效钢250螺栓","tr":"马氏体时效钢250螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemDust2":{"0":{"oreDict":["dustSiliconDioxide"],"name":"Silicon dioxide","tr":"二氧化硅粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dustDiamond"],"name":"Diamond Dust","tr":"钻石粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Energium Dust","tr":"能量水晶粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustAshes"],"name":"Ashes","tr":"灰烬","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chaiteaItem":{"0":{"oreDict":["foodChaitea"],"name":"Chai Tea","tr":"印度香茶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:GeneSampleBlank":{"0":{"name":"Blank Gene Sample","tr":"空白基因样本","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:experience_table":{"0":{"name":"Experience Table","tr":"经验台","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBerryBlight":{"0":{"name":"Crated Blightberry","tr":"装箱的枯萎莓","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"ggfab:gt.ggfab.d1":{"0":{"oreDict":["craftingToolFile"],"name":"一次性锉","tr":"一次性锉","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"工具铸件 (撬棍)","tr":"工具铸件 (撬棍)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["craftingToolWrench"],"name":"一次性扳手","tr":"一次性扳手","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"工具铸件 (剪线钳)","tr":"工具铸件 (剪线钳)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["craftingToolCrowbar"],"name":"一次性撬棍","tr":"一次性撬棍","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"工具铸件 (锻造锤)","tr":"工具铸件 (锻造锤)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["craftingToolWireCutter"],"name":"一次性剪线钳","tr":"一次性剪线钳","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"工具铸件 (软锤)","tr":"工具铸件 (软锤)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["craftingToolHardHammer"],"name":"一次性锻造锤","tr":"一次性锻造锤","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"工具铸件 (螺丝刀)","tr":"工具铸件 (螺丝刀)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["craftingToolSoftHammer"],"name":"一次性软锤","tr":"一次性软锤","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["craftingToolScrewdriver"],"name":"一次性螺丝刀","tr":"一次性螺丝刀","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"工具铸件 (锉)","tr":"工具铸件 (锉)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"工具铸件 (扳手)","tr":"工具铸件 (扳手)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hardIce":{"0":{"name":"Hardened Ice","tr":"硬化冰块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBlock":{"0":{"name":"Casting Form (Block Mold)","tr":"铸件(块)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreMiessiite":{"0":{"oreDict":["oreMiessiite"],"name":"Miessiite Ore","tr":"硅灰石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_south_lit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:expanderInvTierTwo":{"0":{"name":"Base Inventory Expander (Tier 2)","tr":"基座存储扩容(二级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:starfruityogurtItem":{"0":{"oreDict":["foodStarfruityogurt"],"name":"Starfruit Yogurt","tr":"杨桃酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedZimbabweite":{"0":{"oreDict":["crushedPurifiedZimbabweite"],"name":"Purified Crushed Zimbabweite Ore","tr":"洗净的钛铌铅钠石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:lettuceseedItem":{"0":{"oreDict":["listAllseed"," seedLettuce"],"name":"Lettuce Seed","tr":"生菜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.flintandblaze":{"0":{"name":"Flint and Blaze","tr":"烈焰打火石","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":257}},"GalacticraftMars:tile.marsMachineT2":{"0":{"name":"Gas Liquefier","tr":"气体液化器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Methane Synthesizer","tr":"甲烷合成器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Water Electrolyzer","tr":"水电解器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:sojournerCap":{"0":{"name":"Sojourner\u0027s Cap","tr":"寄生杖端","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:carton":{"0":{"name":"Carton","tr":"纸板箱","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:vampirechaincoat":{"0":{"name":"Vampire Chain Coat","tr":"吸血鬼链甲","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"bartworks:coloredFluidBlock":{"0":{"name":"Bio Fluid Block","tr":"生物流质方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedPlutonium":{"0":{"name":"Fuel Rod (High Density Plutonium)","tr":"燃料棒(浓缩钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:itemPlateDoubleHastelloyC276":{"0":{"oreDict":["plateDoubleHastelloyC276"],"name":"双重哈斯特洛依合金-C276板","tr":"双重哈斯特洛依合金-C276板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Botania:customBrick1SlabFull":{"0":{"name":"Soul Brick Slab","tr":"灵魂砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:eyeTH":{"0":{"name":"Eye Cluster","tr":"眼簇","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:holystone":{"0":{"oreDict":["holystone"],"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Holystone","tr":"神圣石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemFluidCell":{"0":{"name":"Universal Fluid Cell","tr":"通用流体单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:baconmushroomburgerItem":{"0":{"oreDict":["foodBaconmushroomburger"],"name":"Bacon Mushroom Burger","tr":"培根蘑菇堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemWeedEx":{"0":{"name":"Weed-EX","tr":"除草剂","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":65}},"miscutils:itemDustSmallThoriumHexafluoride":{"0":{"oreDict":["dustSmallThoriumHexafluoride"],"name":"小堆六氟化钍粉","tr":"小堆六氟化钍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pool":{"0":{"name":"Mana Pool","tr":"魔力池","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"The Everlasting Guilty Pool","tr":"永恒魔力池","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Diluted Mana Pool","tr":"稀释魔力池","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fabulous Mana Pool","tr":"神话魔力池","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:blockNuclearControlMain":{"0":{"name":"Thermal Monitor","tr":"温度监控器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Industrial Alarm","tr":"工业警报器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Howler Alarm","tr":"蜂鸣报警器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Remote Thermal Monitor","tr":"远程温度监控器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Industrial Information Panel","tr":"工业信息屏","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Information Panel Extender","tr":"工业信息屏扩展","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Energy Counter","tr":"电力计数器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Average Counter","tr":"平均电力计数器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Range Trigger","tr":"范围触发器","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Advanced Information Panel","tr":"高级工业信息屏","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Advanced Panel Extender","tr":"高级工业信息屏扩展","tab":"核电控制2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHypogen":{"0":{"oreDict":["ringHypogen"],"name":"海珀珍环","tr":"海珀珍环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:spike_base_diamond":{"0":{"name":"Diamond Spike","tr":"钻石锥刺","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:Dark Tree":{"0":{"oreDict":["logWood"],"name":"Darkwood","tr":"黑暗树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Fusewood","tr":"熔融树原木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHS188A":{"0":{"oreDict":["plateDoubleHS188A"],"name":"双重HS188-A板","tr":"双重HS188-A板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"dreamcraft:item.ReinforcedTungstenSteelIronPlate":{"0":{"name":"Reinforced Tungsten-Steel-Iron Plate","tr":"强化钨钢铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPerroudite":{"0":{"oreDict":["dustSmallPerroudite"],"name":"小堆溴硫银汞粉","tr":"小堆溴硫银汞粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzStairsMana":{"0":{"name":"Mana Quartz Stairs","tr":"魔力石英楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.BloodyIchorium":{"0":{"name":"Blood-Soaked Ichorium Block","tr":"血腥灵宝块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterBlue":{"0":{"name":"Blue Painter","tr":"蓝色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"gendustry:Extractor":{"0":{"name":"DNA Extractor","tr":"基因提取机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBotmium":{"0":{"oreDict":["dustSmallBotmium"],"name":"小堆博特姆合金粉","tr":"小堆博特姆合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHS188A":{"0":{"oreDict":["ringHS188A"],"name":"HS188-A环","tr":"HS188-A环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:potion":{"0":{"name":"Universal Antidote","tr":"万能解毒药","tab":"巫术","type":"Item","maxStackSize":4,"maxDurability":1}},"miscutils:itemGearTriniumNaquadahCarbonite":{"0":{"oreDict":["gearGtTriniumNaquadahCarbonite"," gearTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金齿轮","tr":"掺碳三元硅岩合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AluminiumIronPlate":{"0":{"name":"Aluminium-Iron Plate","tr":"铝铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:crafting.aspect":{"0":{"name":"Unknown Aspect","tr":"未知要素","tab":"神秘能源","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBlankII":{"0":{"name":"Coin \"Blank 100\"","tr":"空白硬币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemGirdleHover":{"0":{"name":"Thaumostatic Girdle","tr":"奥法腰带","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:inverter":{"0":{"name":"Inverter","tr":"逆变器","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"tinkersdefense:Block_JewelersBench":{"0":{"name":"Jeweler\u0027s Bench","tr":"珠宝商席","tab":"工匠之盾","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:iodualstone":{"0":{"name":"Io Dual Surface Block","tr":"木卫一灰烬石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockXPJar":{"0":{"name":"Jar of Enchanter\u0027s Concentrate","tr":"罐装附魔精华液","tab":"自动化魔法","type":"Block","maxStackSize":1,"maxDurability":1}},"AWWayofTime:blockEnchantmentGlyph":{"0":{"name":"Glyph of the Adept Enchanter","tr":"图符: 魔咒专家","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Glyph of Arcane Potential","tr":"图符: 神秘潜能","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBlankIV":{"0":{"name":"Coin \"Blank 10K\"","tr":"空白硬币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyBloodSteel":{"0":{"oreDict":["dustTinyBloodSteel"],"name":"小撮血钢粉","tr":"小撮血钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAlburnite":{"0":{"oreDict":["dustTinyAlburnite"],"name":"小撮硫碲金锗矿粉","tr":"小撮硫碲金锗矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTalonite":{"0":{"oreDict":["frameGtTalonite"],"name":"铬钴磷酸盐合金框架","tr":"铬钴磷酸盐合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:acacia_planks":{"1":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Acacia Wood Planks","tr":"金合欢木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_slab":{"0":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnchantedClothCap":{"0":{"name":"Enchanted Cloth Cap","tr":"纠缠缎带杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"RIO:item.chip.upgrade":{"0":{"name":"Remote Camouflage Upgrade","tr":"远程伪装升级","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Remote Access Upgrade","tr":"远程访问升级","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Simple Camouflage Upgrade","tr":"简易伪装升级","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockLiquid_sunshine":{"0":{"name":"Liquid Sunshine","tr":"液态阳光","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeHugePipe":{"0":{"name":"Casting Form (Huge Pipe Shape)","tr":"铸形(巨型管道)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingDarkwood":{"0":{"name":"Crated Darkwood Sapling","tr":"装箱的黑暗树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:flowers2":{"0":{"oreDict":["flowerPink"," flowerHibiscusPink"],"name":"Pink Hibiscus","tr":"粉木槿","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["flowerWhite"," flowerLilyValley"],"name":"Lily of the Valley","tr":"谷百合","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["flowerOrange"," flowerBurningBlossom"],"name":"Burning Blossom","tr":"火焰花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["flowerPurple"," flowerLavender"],"name":"Lavender","tr":"薰衣草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["flowerGoldenrod"," flowerYellow"],"name":"Goldenrod","tr":"麒麟草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["flowerBluebell"," flowerBlue"],"name":"Bluebells","tr":"蓝铃花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["flowerMinersDelight"," flowerBrown"],"name":"Miner\u0027s Delight","tr":"乐矿花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["flowerLightBlue"," flowerIcyIris"],"name":"Icy Iris","tr":"冰红膜花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["flowerRed"," flowerRose"],"name":"Rose","tr":"蔷薇","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:decoration.stoneladder":{"0":{"name":"Ladder","tr":"石头梯子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockHastelloyW":{"0":{"oreDict":["blockHastelloyW"],"name":"哈斯特洛依合金-W块","tr":"哈斯特洛依合金-W块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconiumIngot":{"0":{"oreDict":["ingotDraconium"],"name":"Draconium Ingot","tr":"龙锭","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:auraRing":{"0":{"name":"Band of Aura","tr":"光环之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockHastelloyX":{"0":{"oreDict":["blockHastelloyX"],"name":"哈斯特洛依合金-X块","tr":"哈斯特洛依合金-X块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallSodiumNitrate":{"0":{"oreDict":["dustSmallSodiumNitrate"],"name":"小堆硝酸钠粉","tr":"小堆硝酸钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AdvancedSolarPanel:BlockAdvSolarPanel":{"0":{"name":"Advanced Solar Panel","tr":"高级太阳能发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hybrid Solar Panel","tr":"混合太阳能发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["craftingSolarPanelHV"],"name":"Ultimate Hybrid Solar Panel","tr":"终极混合太阳能发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Quantum Solar Panel","tr":"量子太阳能发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Quantum Generator","tr":"量子发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.kama.darkwood":{"0":{"name":"Darkwood Kama","tr":"黑暗树镰刀","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"miscutils:itemNuggetTantalloy60":{"0":{"oreDict":["nuggetTantalloy60"],"name":"钽钨合金-60粒","tr":"钽钨合金-60粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseBotmium":{"0":{"oreDict":["plateDenseBotmium"],"name":"致密博特姆合金板","tr":"致密博特姆合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTantalloy61":{"0":{"oreDict":["nuggetTantalloy61"],"name":"钽钨合金-61粒","tr":"钽钨合金-61粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:persimmonjellysandwichItem":{"0":{"oreDict":["foodPersimmonjellysanwich"],"name":"Persimmon Jelly Sandwich","tr":"柿子果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:brokenBronzeShovel":{"0":{"name":"Broken Shovel","tr":"损坏的铲","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_lamp":{"0":{"name":"Blood Lamp","tr":"注血灯","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingIncoloyMA956":{"0":{"oreDict":["ringIncoloyMA956"],"name":"耐热铬铁合金-MA956环","tr":"耐热铬铁合金-MA956环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockHastelloyN":{"0":{"oreDict":["blockHastelloyN"],"name":"哈斯特洛依合金-N块","tr":"哈斯特洛依合金-N块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongHastelloyC276":{"0":{"oreDict":["stickLongHastelloyC276"],"name":"长哈斯特洛依合金-C276杆","tr":"长哈斯特洛依合金-C276杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.experiment115":{"0":{"name":"Experiment 115","tr":"高塔蛋糕","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockgem1":{"0":{"oreDict":["blockInfusedAir"],"name":"风之魔晶块","tr":"风之魔晶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockAmber"],"name":"琥珀块","tr":"琥珀块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockAmethyst"],"name":"紫水晶块","tr":"紫水晶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockInfusedWater"],"name":"水之魔晶块","tr":"水之魔晶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockBlueTopaz"],"name":"蓝黄玉块","tr":"蓝黄玉块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockCertusQuartz"],"name":"赛特斯石英块","tr":"赛特斯石英块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockDilithium"],"name":"双锂块","tr":"双锂块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockEnderEye"],"name":"末影之眼块","tr":"末影之眼块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockEnderPearl"],"name":"末影珍珠块","tr":"末影珍珠块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockFoolsRuby"],"name":"尖晶石块","tr":"尖晶石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockForce"],"name":"力量块","tr":"力量块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockForcicium"],"name":"力之宝石块","tr":"力之宝石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockForcillium"],"name":"力场宝石块","tr":"力场宝石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGreenSapphire"],"name":"绿色蓝宝石块","tr":"绿色蓝宝石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockInfusedFire"],"name":"火之魔晶块","tr":"火之魔晶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockJasper"],"name":"碧玉块","tr":"碧玉块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.korpBlock":{"0":{"name":"Korp ⓪","tr":"Korp ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Korp ①","tr":"Korp ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Korp ②","tr":"Korp ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Korp ③","tr":"Korp ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Korp ④","tr":"Korp ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Korp ⑤","tr":"Korp ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Korp ⑥","tr":"Korp ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Korp ⑦","tr":"Korp ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Korp ⑧","tr":"Korp ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Korp ⑨","tr":"Korp ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Korp ⑩","tr":"Korp ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Korp ⑪","tr":"Korp ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Korp ⑫","tr":"Korp ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Korp ⑬","tr":"Korp ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Korp ⑭","tr":"Korp ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Korp ⑮","tr":"Korp ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:leekItem":{"0":{"oreDict":["cropLeek"," listAllveggie"],"name":"Leek","tr":"韭葱","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockgem3":{"0":{"oreDict":["blockTopaz"],"name":"黄玉块","tr":"黄玉块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockVinteum"],"name":"温特姆块","tr":"温特姆块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGarnetYellow"],"name":"黄石榴石块","tr":"黄石榴石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockNetherStar"],"name":"下界之星块","tr":"下界之星块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockCharcoal"],"name":"木炭块","tr":"木炭块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockBlaze"],"name":"烈焰块","tr":"烈焰块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGenerateddustImpure":{"1":{"oreDict":["dustImpureBismutite"],"name":"含杂泡铋粉","tr":"含杂泡铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustImpureBismuthinite"],"name":"含杂辉铋粉","tr":"含杂辉铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dustImpureFluor-Buergerite"],"name":"含杂氟铁电气石粉","tr":"含杂氟铁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["dustImpureRarestMetalResidue"],"name":"含杂稀有金属渣粉","tr":"含杂稀有金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["dustImpureIridiumMetalResidue"],"name":"含杂铱金属渣粉","tr":"含杂铱金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["dustImpureNaquadahOxideMixture"],"name":"含杂氧化硅岩混合物粉","tr":"含杂氧化硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustImpureChromo-Alumino-Povondraite"],"name":"含杂铬铝电气石粉","tr":"含杂铬铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustImpureVanadio-Oxy-Dravite"],"name":"含杂钒镁电气石粉","tr":"含杂钒镁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dustImpureOlenite"],"name":"含杂铝电气石粉","tr":"含杂铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustImpureArsenopyrite"],"name":"含杂砷黄铁粉","tr":"含杂砷黄铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustImpureFerberite"],"name":"含杂钨铁粉","tr":"含杂钨铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustImpureLoellingite"],"name":"含杂斜方砷铁粉","tr":"含杂斜方砷铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dustImpureRoquesite"],"name":"含杂硫铟铜粉","tr":"含杂硫铟铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["dustImpureBornite"],"name":"含杂斑铜粉","tr":"含杂斑铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["dustImpureWittichenite"],"name":"含杂硫铋铜粉","tr":"含杂硫铋铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["dustImpureCrudeRhodiumMetal"],"name":"含杂粗制铑金属粉","tr":"含杂粗制铑金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["dustImpureDjurleite"],"name":"含杂久辉铜粉","tr":"含杂久辉铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["dustImpureHuebnerite"],"name":"含杂钨酸锰粉","tr":"含杂钨酸锰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["dustImpureThorianite"],"name":"含杂方钍石粉","tr":"含杂方钍石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["dustImpureRedZircon"],"name":"含杂红锆石粉","tr":"含杂红锆石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["dustImpureEnriched-NaquadahOxideMixture"],"name":"含杂氧化富集硅岩混合物粉","tr":"含杂氧化富集硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["dustImpureFayalite"],"name":"含杂铁橄榄石粉","tr":"含杂铁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["dustImpureForsterite"],"name":"含杂镁橄榄石粉","tr":"含杂镁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["dustImpureNaquadriaOxideMixture"],"name":"含杂氧化超能硅岩混合物粉","tr":"含杂氧化超能硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["dustImpureHedenbergite"],"name":"含杂钙铁辉石粉","tr":"含杂钙铁辉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["dustImpureTiberium"],"name":"含杂泰伯利亚粉","tr":"含杂泰伯利亚粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["dustImpureRedDescloizite"],"name":"含杂红钒铅锌粉","tr":"含杂红钒铅锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["dustImpureOrangeDescloizite"],"name":"含杂橙钒铅铜粉","tr":"含杂橙钒铅铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["dustImpureFluorspar"],"name":"含杂氟石粉","tr":"含杂氟石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["dustImpureGreenFuchsite"],"name":"含杂绿铬云母粉","tr":"含杂绿铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["dustImpureRedFuchsite"],"name":"含杂红铬云母粉","tr":"含杂红铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["dustImpureAtheneite"],"name":"含杂砷汞钯粉","tr":"含杂砷汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["dustImpureTemagamite"],"name":"含杂碲汞钯粉","tr":"含杂碲汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["dustImpureTerlinguaite"],"name":"含杂黄氯汞粉","tr":"含杂黄氯汞粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["dustImpurePrasiolite"],"name":"含杂堇云石粉","tr":"含杂堇云石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["dustImpureOrundum"],"name":"含杂合成玉粉","tr":"含杂合成玉粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["dustImpureBArTiMaEuSNeK"],"name":"含杂BArTiMaEuSNeK粉","tr":"含杂BArTiMaEuSNeK粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["dustImpurePlatinumMetallicPowder"],"name":"含杂铂金属粉","tr":"含杂铂金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["dustImpurePalladiumMetallicPowder"],"name":"含杂钯金属粉","tr":"含杂钯金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["dustImpureLeachResidue"],"name":"含杂浸出渣粉","tr":"含杂浸出渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:excavatorHead":{"0":{"name":"Wooden Excavator Head","tr":"木开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Excavator Head","tr":"石开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Excavator Head","tr":"铁开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Excavator Head","tr":"燧石开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Excavator Head","tr":"仙人掌开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Excavator Head","tr":"骨头开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Excavator Head","tr":"黑曜石开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Excavator Head","tr":"地狱岩开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Excavator Head","tr":"史莱姆开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Excavator Head","tr":"纸开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Excavator Head","tr":"钴开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Excavator Head","tr":"阿迪特开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Excavator Head","tr":"玛玉灵开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Excavator Head","tr":"铜开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Excavator Head","tr":"青铜开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Excavator Head","tr":"耐酸铝开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Excavator Head","tr":"钢开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Excavator Head","tr":"史莱姆开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Excavator Head","tr":"生铁开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Excavator Head","tr":"不稳定感应开掘铲头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockgem2":{"0":{"oreDict":["blockLazurite"],"name":"蓝金石块","tr":"蓝金石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockLignite"],"name":"褐煤块","tr":"褐煤块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockMonazite"],"name":"独居石块","tr":"独居石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockNiter"],"name":"硝石块","tr":"硝石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockOlivine"," blockPeridot"],"name":"橄榄石块","tr":"橄榄石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockOpal"],"name":"蛋白石块","tr":"蛋白石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockInfusedOrder"],"name":"秩序魔晶块","tr":"秩序魔晶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockInfusedEntropy"],"name":"混沌魔晶块","tr":"混沌魔晶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockTricalciumPhosphate"],"name":"磷酸三钙块","tr":"磷酸三钙块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockQuartzite"],"name":"石英岩块","tr":"石英岩块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGarnetRed"],"name":"红石榴石块","tr":"红石榴石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockRuby"],"name":"红宝石块","tr":"红宝石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockSapphire"],"name":"蓝宝石块","tr":"蓝宝石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockSodalite"],"name":"方钠石块","tr":"方钠石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockTanzanite"],"name":"坦桑石块","tr":"坦桑石块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockInfusedEarth"],"name":"地之魔晶块","tr":"地之魔晶块","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:kitPickaxe":{"0":{"name":"Pickaxe Kit","tr":"镐子应急袋","tab":"林业","type":"Item","maxStackSize":24,"maxDurability":1}},"Thaumcraft:blockStairsSilverwood":{"0":{"oreDict":["stairWood"],"name":"Silverwood Stairs","tr":"银树楼梯","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MarsStoneDust":{"0":{"oreDict":["dustMarsStone"," dustMars"," dustSpace"],"name":"Mars Stone Dust","tr":"火星尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.vanilla.singularity":{"0":{"name":"Coal Singularity","tr":"煤炭奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Emerald Singularity","tr":"绿宝石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Diamond Singularity","tr":"钻石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:fociFlux":{"0":{"name":"Wand Focus: Flux Scrubber","tr":"法杖核心:咒波净化","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicExploration:mechanistCap":{"0":{"name":"Mechanist\u0027s Cap","tr":"机械杖端","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongNitinol60":{"0":{"oreDict":["stickLongNitinol60"],"name":"长镍钛诺60杆","tr":"长镍钛诺60杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.unlitTorchLit":{"0":{"name":"Torch","tr":"火把","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.Charcoal":{"0":{"name":"Block of Charcoal","tr":"木炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockReactorChamber":{"0":{"name":"Reactor Chamber","tr":"核反应仓","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:mapLocation":{"0":{"name":"Map Location","tr":"定位图纸","tab":"建筑","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:itemPlateDoubleOctiron":{"0":{"oreDict":["plateDoubleOctiron"],"name":"双重八角铁板","tr":"双重八角铁板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"ExtraUtilities:budoff":{"0":{"name":"Block Update Detector","tr":"方块更新检测器","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block Update Detector (Advanced)","tr":"方块更新检测器(高级)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fieryIngot":{"0":{"oreDict":["ingotFiery"," ingotFierySteel"," fieryIngot"],"name":"Fiery Ingot","tr":"炽热的铁锭","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:ghostRail":{"0":{"name":"Spectral Rail","tr":"幻影轨道","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA15Slab":{"0":{"name":"Metamorphic Mesa Cobblestone Slab","tr":"变质高原圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.stellar_helmet":{"0":{"name":"Stellar Helm","tr":"恒星合金头盔","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":826}},"thaumicbases:oldGravel":{"0":{"name":"Ancient Gravel","tr":"远古沙砾","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellCinobiteA243":{"0":{"oreDict":["cellCinobiteA243"],"name":"西诺柏A243单元","tr":"西诺柏A243单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:magicApiary":{"0":{"name":"Magic Apiary","tr":"魔法蜂箱","tab":"魔法蜜蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:spatial_dash_gem":{"0":{"name":"Spatial Dash Gem","tr":"空间碰撞宝石","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":301}},"Forestry:frameUntreated":{"0":{"name":"Untreated Frame","tr":"未处理框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":81}},"TConstruct:cutlass":{"0":{"name":"§f山铜 弯刀","tr":"§f山铜 弯刀","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"AdvancedSolarPanel:ultimate_solar_helmet":{"1":{"name":"Ultimate Solar Helmet","tr":"终极太阳能头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Ultimate Solar Helmet","tr":"终极太阳能头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemDustPlutonium238":{"0":{"oreDict":["dustPlutonium238"],"name":"钚-238粉","tr":"钚-238粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:FrothAlmandineflotation":{"0":{"oreDict":["cellAlmandineFroth"],"name":"铁铝榴石泡沫单元","tr":"铁铝榴石泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:cactus":{"0":{"name":"Cactus","tr":"仙人掌","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateAncientGranite":{"0":{"oreDict":["plateAncientGranite"],"name":"古花岗岩板","tr":"古花岗岩板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCalciumChloride":{"0":{"oreDict":["dustCalciumChloride"],"name":"氯化钙粉","tr":"氯化钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureKashinite":{"0":{"oreDict":["dustPureKashinite"],"name":"Purified Kashinite Dust","tr":"纯净硫铑铱矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:starfruitItem":{"0":{"oreDict":["cropStarfruit"," listAllfruit"],"name":"Starfruit","tr":"杨桃","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:SecurityDoorPrivate":{"0":{"name":"tile.securityDoor.name","tr":"tile.securityDoor.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotTantalumCarbide":{"0":{"oreDict":["ingotTantalumCarbide"],"name":"碳化钽锭","tr":"碳化钽锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotUranium233":{"0":{"oreDict":["ingotUranium233"],"name":"铀-233锭","tr":"铀-233锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampineappleupsidedownCake":{"0":{"name":"Pineapple Upside Down Cake","tr":"菠萝蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:reactorCraftingPart":{"0":{"name":"Reactor Stabilizer Frame","tr":"反应堆稳定器支架","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Reactor Stabilizer Inner Rotor","tr":"反应堆稳定器转子","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Reactor Stabilizer Outer Rotor","tr":"反应堆稳定器外转子","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Reactor Stabilizer Rotor Assembly","tr":"反应堆稳定器转子总成","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Reactor Stabilizer Focus Ring","tr":"反应堆稳定器聚能环","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotUranium232":{"0":{"oreDict":["ingotUranium232"],"name":"铀-232锭","tr":"铀-232锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:fluid.creosote.bucket":{"0":{"name":"Creosote Bucket","tr":"杂酚油桶","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:tile.BlockQuartz":{"0":{"name":"Certus Quartz Block","tr":"赛特斯石英块","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:metalPattern":{"0":{"name":"Ingot Cast","tr":"锭铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tool Rod Cast","tr":"手柄铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Pickaxe Head Cast","tr":"镐头铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Shovel Head Cast","tr":"铲头铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Axe Head Cast","tr":"斧刃铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Sword Blade Cast","tr":"剑刃铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Wide Guard Cast","tr":"宽护手铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Hand Guard Cast","tr":"护手铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Crossbar Cast","tr":"十字柄铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Tool Binding Cast","tr":"绑定结铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Pan Cast","tr":"盘铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Wide Board Cast","tr":"牌板铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Knife Blade Cast","tr":"刀刃铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Chisel Head Cast","tr":"凿刃铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Tough Rod Cast","tr":"坚韧手柄铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Tough Binding Cast","tr":"坚韧绑定结铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"name":"Large Plate Cast","tr":"大板铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Broadaxe Head Cast","tr":"宽斧刃铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Scythe Head Cast","tr":"镰刀刀刃铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Excavator Head Cast","tr":"开掘铲头铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Large Blade Cast","tr":"宽剑刃铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Hammer Head Cast","tr":"锤头铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Full Guard Cast","tr":"大型护手铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Arrowhead Cast","tr":"箭头铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"name":"Gem Cast","tr":"宝石铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"27":{"name":"Nugget Cast","tr":"粒铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemScrewQuantum":{"0":{"oreDict":["screwQuantum"],"name":"量子合金螺丝","tr":"量子合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:roastedrootveggiemedleyItem":{"0":{"oreDict":["foodRoastedrootveggiemedley"],"name":"Roasted Root Veggie Medley","tr":"蔬菜拼盘","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemAssassinSigil":{"0":{"name":"Sigil of the Assassin","tr":"刺客印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"thaumicbases:eldritchArk":{"0":{"name":"Gold Etched Obsidian","tr":"镶金黑曜石","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonyogurtItem":{"0":{"oreDict":["foodLemonyogurt"],"name":"Lemon Yogurt","tr":"柠檬酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:BabyChest":{"0":{"name":"Baby Chest","tr":"微型箱","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:scallionseedItem":{"0":{"oreDict":["listAllseed"," seedScallion"],"name":"Scallion Seed","tr":"青葱种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:beverage":{"0":{"name":"Short Mead","tr":"蜂蜜酒","tab":"林业","type":"Item","maxStackSize":8,"maxDurability":1},"1":{"name":"Curative Mead","tr":"蜂蜜药酒","tab":"林业","type":"Item","maxStackSize":8,"maxDurability":1},"2":{"name":"Mead","tr":"蜂蜜陈酿","tab":"林业","type":"Item","maxStackSize":8,"maxDurability":1}},"TwilightForest:tile.TFPlant":{"3":{"name":"Moss Patch","tr":"苔藓","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Mayapple","tr":"鬼臼果","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fiddlehead","tr":"暮色森林蕨类","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Mushgloom","tr":"暮色森林蘑菇","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Forest Grass","tr":"森林草","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Dried Bush","tr":"枯死的灌木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Torchberry Plant","tr":"火炬浆果植物","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Root Strands","tr":"须根","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtThallium":{"0":{"oreDict":["frameGtThallium"],"name":"铊框架","tr":"铊框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:icepressureplate":{"0":{"name":"Ice Pressure Plate","tr":"冰压力板","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:quartzingotItem":{"0":{"oreDict":["ingotQuartz"],"name":"Quartz Ingot","tr":"石英锭","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallEglinSteelBaseCompound":{"0":{"oreDict":["dustSmallEglinSteelBaseCompound"],"name":"小堆埃格林钢粗胚粉","tr":"小堆埃格林钢粗胚粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:lightlyCrackedLightNaquadahFuel":{"0":{"name":"Lightly Cracked Light Naquadah Fuel","tr":"轻度裂化轻质硅岩燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockAdvancedCraftingStorage":{"0":{"name":"256k Crafting Storage","tr":"256k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"1024k Crafting Storage","tr":"1024k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"4096k Crafting Storage","tr":"4096k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"16384k Crafting Storage","tr":"16384k合成存储器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:freshwaterItem":{"0":{"oreDict":["listAllwater"],"name":"Fresh Water","tr":"淡水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_cyan":{"0":{"name":"Cyan Curtain","tr":"青色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pastaItem":{"0":{"oreDict":["foodPasta"],"name":"Pasta","tr":"意粉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.DiamondDrillTip":{"0":{"name":"Diamond Drill Tip","tr":"钻石钻头","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedFluoriteF":{"0":{"oreDict":["crushedPurifiedFluoriteF"],"name":"Purified Crushed Fluorite (F) Ore","tr":"洗净的氟石(F)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemArcaniumInterfacer":{"0":{"name":"Arcanium Lens","tr":"奥法棱镜","tab":"神秘之靴","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPikyonium64B":{"0":{"oreDict":["cellPikyonium64B"],"name":"皮卡优合金64B单元","tr":"皮卡优合金64B单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:oak_planks":{"1":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Oak Wood Planks","tr":"橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTantalloy60":{"0":{"oreDict":["ingotHotTantalloy60"],"name":"热钽钨合金-60锭","tr":"热钽钨合金-60锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTantalloy61":{"0":{"oreDict":["ingotHotTantalloy61"],"name":"热钽钨合金-61锭","tr":"热钽钨合金-61锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.draconicEvolution.singularity":{"0":{"name":"Draconium Singularity","tr":"龙奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Awakened Draconium Singularity","tr":"觉醒龙奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemMeteoricComet":{"0":{"name":"Meteoric Boots of the Comet","tr":"流星之彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:blockBlockIncoloyMA956":{"0":{"oreDict":["blockIncoloyMA956"],"name":"耐热铬铁合金-MA956块","tr":"耐热铬铁合金-MA956块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"tinkersdefense:moltenQueensGold":{"0":{"name":"Molten Queen\u0027s Gold","tr":"熔融女王之金","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:quartzStairsRed":{"0":{"name":"Redquartz Stairs","tr":"红色石英楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:bucketEnder_distillation":{"0":{"name":"Dew of the Void Bucket","tr":"桶装深渊露水","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:swapRing":{"0":{"name":"Ring of Correction","tr":"修正指环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:prismarine2SlabFull":{"0":{"name":"Dark Prismarine Slab","tr":"深色海晶石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamwaterchestnutCrop":{"0":{"name":"Water Chestnut Crop","tr":"荸荠","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:rune":{"0":{"name":"Rune of Power","tr":"力量符文","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Rune of Agility","tr":"敏捷符文","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Rune of Vigor","tr":"活力符文","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Rune of Defense","tr":"防御符文","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":16,"maxDurability":1},"4":{"name":"Rune of Magic","tr":"魔法符文","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":16,"maxDurability":1},"5":{"name":"Rune of Void","tr":"虚空符文","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":16,"maxDurability":1}},"GalaxySpace:europageyser":{"0":{"oreDict":["rockSpace"," rockEuropa"],"name":"Europa Geyser","tr":"木卫二间歇泉","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetMaragingSteel350":{"0":{"oreDict":["nuggetMaragingSteel350"],"name":"马氏体时效钢350粒","tr":"马氏体时效钢350粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpurePolycrase":{"0":{"oreDict":["dustImpurePolycrase"],"name":"Impure Polycrase Dust","tr":"含杂锗铀钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ironchestminecarts:minecart_chest_copper":{"0":{"name":"Minecart with Copper Chest","tr":"铜箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestthenether:Quartz Shovel":{"0":{"name":"Quartz Shovel","tr":"石英锹","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":251}},"BiblioCraft:item.FramingSheet":{"0":{"name":"Framing Sheet","tr":"镶框片","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VinteumThread":{"0":{"name":"Vinteum Thread","tr":"温特姆丝","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusRecall":{"0":{"name":"Wand Focus: Celestial Recall","tr":"法杖核心:仙域召唤","tab":"","type":"Item","maxStackSize":1,"maxDurability":2}},"thaumicbases:lazulliaSeeds":{"0":{"name":"Lazullia Seeds","tr":"青金种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:candiedlemonItem":{"0":{"oreDict":["foodCandiedlemon"],"name":"Candied Lemon","tr":"柠檬干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cranberryjuiceItem":{"0":{"oreDict":["listAlljuice"," foodCranberryjuice"],"name":"Cranberry Juice","tr":"蔓越莓汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:Printing Press":{"0":{"name":"Printing Press","tr":"拓印机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:pavement0SlabFull":{"0":{"name":"White Portuguese Pavement Slab","tr":"白色葡萄牙台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TeleposerFrame":{"0":{"name":"Teleposer Frame","tr":"传送方位框架","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorCFPack":{"1":{"name":"CF Backpack","tr":"建筑泡沫背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"CF Backpack","tr":"建筑泡沫背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"TwilightForest:tile.ForceField":{"0":{"name":"Violet Force Field","tr":"紫色力场","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Pink Force Field","tr":"粉色力场","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Orange Force Field","tr":"橙色力场","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Green Force Field","tr":"绿色力场","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Force Field","tr":"蓝色力场","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"ForgeMicroblock:stoneRod":{"0":{"oreDict":["rodStone"],"name":"Stone Rod","tr":"石棍","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:FluidCryotheum":{"0":{"name":"Gelid Cryotheum","tr":"极寒之凛冰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:lettuceItem":{"0":{"oreDict":["cropLettuce"," listAllveggie"," listAllgreenveggie"],"name":"Lettuce","tr":"生菜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:terraPick":{"0":{"name":"Terra Shatterer","tr":"泰拉粉碎者","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":2301}},"TConstruct:Redstone.Landmine":{"0":{"name":"Landmine","tr":"地雷","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Landmine","tr":"地雷","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Landmine","tr":"地雷","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Landmine","tr":"地雷","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:bloodBrick":{"0":{"name":"tile.chisel.bloodBrick.name","tr":"tile.chisel.bloodBrick.name","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.AtlasBook":{"0":{"name":"Atlas","tr":"地图册","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:dreamcraft_EnrichedBacterialSludge":{"0":{"name":"Radioactive Bacterial Sludge","tr":"放射性细菌污泥","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemRedstoneConduit":{"0":{"name":"Redstone Conduit","tr":"红石导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Conduit Switch","tr":"导管开关","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Insulated Redstone Conduit","tr":"绝缘红石导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilChromaticGlass":{"0":{"oreDict":["foilChromaticGlass"],"name":"彩色玻璃箔","tr":"彩色玻璃箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemTextCard":{"0":{"name":"Text Card","tr":"文本卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:fluid_pattern_encoder":{"0":{"name":"Fluid Pattern Encoder","tr":"流体样板编码台","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peachesandcreamoatmealItem":{"0":{"oreDict":["foodPeachesandcreamoatmeal"],"name":"Peaches and Cream Oatmeal","tr":"桃子味奶油燕麦片","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustQuantum":{"0":{"oreDict":["dustQuantum"],"name":"量子合金粉","tr":"量子合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterOrange":{"0":{"name":"Orange Painter","tr":"橙色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"ProjRed|Core:projectred.core.wiredebugger":{"0":{"name":"Multimeter","tr":"调线工具","tab":"红石计划:核心","type":"Item","maxStackSize":1,"maxDurability":257}},"miscutils:itemDustTinyFormaldehydeCatalyst":{"0":{"oreDict":["dustTinyFormaldehydeCatalyst"],"name":"小撮甲醛催化剂粉","tr":"小撮甲醛催化剂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzStairsBlaze":{"0":{"name":"Blaze Quartz Stairs","tr":"烈焰石英楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.JetPack":{"0":{"name":"Electric Jetpack","tr":"电动喷气背包","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Electric Jetpack","tr":"电动喷气背包","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101}},"battlegear2:shield.diamond":{"0":{"name":"Diamond Shield","tr":"钻石盾","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":264}},"harvestcraft:freshmilkItem":{"0":{"oreDict":["listAllmilk"],"name":"Fresh Milk","tr":"新鲜牛奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustDysprosium":{"0":{"oreDict":["dustDysprosium"],"name":"镝粉","tr":"镝粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedZircon":{"0":{"oreDict":["crushedZircon"],"name":"Crushed Zircon Ore","tr":"粉碎的锆石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IguanaTweaksTConstruct:clayBucketUnfired":{"0":{"name":"Unfired Clay Bucket","tr":"未烧制的粘土桶","tab":"杂项","type":"Item","maxStackSize":16,"maxDurability":1}},"Thaumcraft:ItemZombieBrain":{"0":{"name":"Zombie Brain","tr":"僵尸之脑","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemChestplateCultistRobe":{"0":{"name":"Crimson Cult Robe","tr":"血腥邪徒法袍","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":241}},"GalaxySpace:item.ThermalClothT2":{"0":{"name":"Thermal Cloth","tr":"热力布匹","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hoeAmethyst":{"0":{"name":"Amethyst Hoe","tr":"紫水晶锄","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":2014}},"Forestry:craftingMaterial":{"0":{"name":"Pulsating Dust","tr":"脉动之尘","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Pulsating Mesh","tr":"脉动网格","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Silk Wisp","tr":"丝缕","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Woven Silk","tr":"丝绸","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Dissipation Charge","tr":"驱云电荷","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ice Shard","tr":"碎冰","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Scented Paneling","tr":"飘香镶板","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:biofuel":{"0":{"name":"Biofuel","tr":"生物燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:cellBlock":{"0":{"name":"Cellular Block","tr":"细胞方块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:customBrick":{"0":{"name":"Hellish Brick","tr":"炼狱砖块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Soul Brick","tr":"灵魂砖块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Frosty Brick","tr":"霜冻砖块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Roof Tile","tr":"瓦块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Azulejo","tr":"阿兹勒赫瓷砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyDemicheleiteBr":{"0":{"oreDict":["dustTinyDemicheleiteBr"],"name":"小撮溴硫铋矿(Br)粉","tr":"小撮溴硫铋矿(Br)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:mangroveStairs":{"0":{"oreDict":["stairWood"],"name":"Mangrove Wood Stairs","tr":"红树木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gt.Volumetric_Flask_32k":{"0":{"name":"巨型容量瓶","tr":"巨型容量瓶","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BedrockiumPlate":{"0":{"oreDict":["plateBedrockium"],"name":"Bedrockium Plate","tr":"基岩板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolChargedStaff":{"0":{"name":"Charged Staff","tr":"充能手杖","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":33}},"ForbiddenMagic:GluttonyShard":{"0":{"name":"Gluttony Shard","tr":"饕餮碎片","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltSelenium":{"0":{"oreDict":["boltSelenium"],"name":"硒螺栓","tr":"硒螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:coalTar":{"0":{"name":"Unnamed Block, report to mod author.","tr":"未命名方块,请报告给作者.","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PrimordialPearlFragment":{"0":{"name":"Inert Pearl Fragment","tr":"惰性元始珍珠碎片","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallStrontium":{"0":{"oreDict":["dustSmallStrontium"],"name":"小堆锶粉","tr":"小堆锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:sandstone_scribbles":{"0":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Sandstone Scribbles","tr":"刻文沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellUraniumTetrafluoride":{"0":{"oreDict":["cellUraniumTetrafluoride"],"name":"四氟化铀单元","tr":"四氟化铀单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:replicator":{"0":{"name":"Thaumic Replicator","tr":"神秘复制器","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:dislocatorReceptacle":{"0":{"name":"Dislocator Receptacle","tr":"错位容器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingStellite":{"0":{"oreDict":["ringStellite"],"name":"铬钴锰钛合金环","tr":"铬钴锰钛合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:miningRing":{"0":{"name":"Ring of the Mantle","tr":"地幔指环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsiron":{"0":{"name":"Iron Fluid Pipe","tr":"铁质流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedRoyalJelly":{"0":{"name":"Crated Royal Jelly","tr":"装箱的蜂王浆","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:shield.hide":{"0":{"name":"Hide Shield","tr":"皮盾","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":41}},"dreamcraft:item.IrradiantReinforcedAluminiumPlate":{"0":{"name":"Irradiant Reinforced Aluminium Plate","tr":"光辉强化铝板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:obsidian_stairs":{"0":{"name":"Obsidian Stairs","tr":"黑曜石楼梯","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:hempcrete":{"0":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Hempcrete","tr":"汉麻混凝土","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"supersolarpanel:PhotonicSolarPanel":{"0":{"name":"Photonic Solar Panel","tr":"光子太阳能发电机(UV)","tab":"超级太阳能发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.minerBaseFull":{"0":{"name":"tile.minerBaseFull.name","tr":"tile.minerBaseFull.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.arclamp":{"0":{"name":"Arc Lamp","tr":"弧光灯","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateAstralTitanium":{"0":{"oreDict":["plateAstralTitanium"],"name":"星体钛板","tr":"星体钛板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantumBoard":{"0":{"name":"Empty Quantum Processor Board","tr":"量子电路基板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTalonite":{"0":{"oreDict":["plateTalonite"],"name":"铬钴磷酸盐合金板","tr":"铬钴磷酸盐合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:teaItem":{"0":{"oreDict":["foodTea"],"name":"Cup of Tea","tr":"一杯茶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LedoxPlate":{"0":{"oreDict":["plateLedox"],"name":"Ledox Plate","tr":"深铅板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafPlate":{"0":{"name":"Steeleaf Plate","tr":"钢叶胸甲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":321}},"AWWayofTime:runeOfSelfSacrifice":{"0":{"name":"Rune of Self-Sacrifice","tr":"牺牲符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemKeyOfDiablo":{"0":{"name":"Key of Binding","tr":"约束钥匙","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellPlasmaForce":{"0":{"oreDict":["cellPlasmaForce"],"name":"力量等离子体单元","tr":"力量等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolPriorityCard":{"0":{"name":"Priority Card","tr":"Priority Card","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallCyanoaceticAcid":{"0":{"oreDict":["dustSmallCyanoaceticAcid"],"name":"小堆氰乙酸粉","tr":"小堆氰乙酸粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:beanItem":{"0":{"oreDict":["cropBean"," listAllveggie"],"name":"Beans","tr":"大豆","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:soulBrazier":{"0":{"name":"Soul Brazier","tr":"灵魂火盆","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:fluid.steam.bottle":{"0":{"name":"Steam Bottle","tr":"蒸汽瓶","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustOctiron":{"0":{"oreDict":["dustOctiron"],"name":"八角铁粉","tr":"八角铁粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:eggplantseedItem":{"0":{"oreDict":["listAllseed"," seedEggplant"],"name":"Eggplant Seed","tr":"茄子种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB0SlabFull":{"0":{"name":"Metamorphic Forest Stone Brick Slab","tr":"变质森林石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearHS188A":{"0":{"oreDict":["gearGtHS188A"," gearHS188A"],"name":"HS188-A齿轮","tr":"HS188-A齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:SecurityDoor":{"0":{"name":"tile.securityDoor.name","tr":"tile.securityDoor.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:injector":{"0":{"name":"Injector","tr":"针筒发射器","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1001}},"SGCraft:ocInterface":{"0":{"name":"OpenComputers Stargate Interface","tr":"星门OC接口","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockAdvancedNitinol":{"0":{"oreDict":["blockAdvancedNitinol"],"name":"高级镍钛诺块","tr":"高级镍钛诺块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:spruceFenceGate":{"0":{"name":"Spruce Fence Gate","tr":"云杉木栅栏门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemFocusTaintedBlast":{"0":{"name":"Wand Focus: Tainted Shockwave","tr":"法杖核心:腐化激波","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA1Stairs":{"0":{"name":"Metamorphic Plains Stone Stairs","tr":"变质平原石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitUMV":{"0":{"oreDict":["circuitExotic"],"name":"Any UMV Circuit","tr":"任意UMV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinWitch":{"0":{"name":"Coin \"Spirit 1\"","tr":"巫师币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:sink":{"0":{"name":"Water Barrel","tr":"提水筒","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Basin","tr":"石水池","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Clay Jug","tr":"粘土罐","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Brick Well","tr":"砖井","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IchoriumCap":{"0":{"name":"Ichorium Cap","tr":"灵宝杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.venaBlock":{"0":{"name":"Vena ⓪","tr":"Vena ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Vena ①","tr":"Vena ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Vena ②","tr":"Vena ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Vena ③","tr":"Vena ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Vena ④","tr":"Vena ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Vena ⑤","tr":"Vena ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Vena ⑥","tr":"Vena ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Vena ⑦","tr":"Vena ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Vena ⑧","tr":"Vena ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Vena ⑨","tr":"Vena ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Vena ⑩","tr":"Vena ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Vena ⑪","tr":"Vena ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Vena ⑫","tr":"Vena ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Vena ⑬","tr":"Vena ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Vena ⑭","tr":"Vena ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Vena ⑮","tr":"Vena ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"visualprospecting:item.visualprospecting.prospectorslog":{"0":{"name":"Prospector\u0027s Log","tr":"探矿记录","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockAncientGranite":{"0":{"oreDict":["blockAncientGranite"],"name":"古花岗岩块","tr":"古花岗岩块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChargedVoidWandCap":{"0":{"name":"Charged Void Cap","tr":"充能虚空杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodRhodium":{"0":{"oreDict":["stickRhodium"],"name":"铑杆","tr":"铑杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabDarkHalf":{"0":{"name":"Smokey Quartz Slab","tr":"烟熏石英台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"gtnhintergalactic:gt.blockcasingsSE":{"0":{"name":"太空电梯基座机械方块","tr":"太空电梯基座机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"太空电梯支持结构方块","tr":"太空电梯支持结构方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"太空电梯内部结构方块","tr":"太空电梯内部结构方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2wct:magnetCard":{"0":{"name":"Magnet Card","tr":"磁场增幅卡","tab":"§9AE2无线合成终端","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicExploration:stabilizerBelt":{"0":{"name":"Thaumostatic Stabilizer","tr":"奥法加护腰带","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:canShortMead":{"0":{"name":"Short Mead Can","tr":"蜂蜜酒罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.emptyMazeMap":{"0":{"name":"Blank Maze Map","tr":"空白的迷宫地图","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone2SlabFull":{"0":{"name":"Diorite Slab","tr":"闪长岩台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.ThermalPaddingT2":{"0":{"name":"Thermal Helmet","tr":"热力充能头盔","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Thermal Chestplate","tr":"热力充能胸甲","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Thermal Leggings","tr":"热力充能护腿","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Thermal Boots","tr":"热力充能靴","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:stockItem":{"0":{"oreDict":["foodStock"],"name":"Stock","tr":"底汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellMutatedLivingSolder":{"0":{"oreDict":["cellMutatedLivingSolder"],"name":"突变活性焊料单元","tr":"突变活性焊料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:lamingtonItem":{"0":{"oreDict":["foodLamington"],"name":"Lamington","tr":"拉明顿蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:jerky":{"0":{"name":"Beef Jerky","tr":"牛肉干","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Chicken Jerky","tr":"鸡肉干","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Bacon Jerky","tr":"猪肉干","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Mutton Jerky","tr":"羊肉干","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Fish Jerky","tr":"鱼干","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Monster Jerky","tr":"僵尸肉干","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Gelatinous Slime Drop","tr":"黏胶液滴","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Coagulated Blood Drop","tr":"凝固血滴","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.06.name":{"1":{"name":"§9Charge Pack [LuV]§7","tr":"§9充电工具包[LuV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [LuV]§7","tr":"§9充电工具包[LuV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"TwilightForest:item.ironwoodIngot":{"0":{"oreDict":["ingotIronwood"," ingotIronWood"," ironwood"],"name":"Ironwood Ingot","tr":"铁木锭","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.venisonCooked":{"0":{"name":"Venison Steak","tr":"鹿肉排","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:lucriteSeeds":{"0":{"name":"Lucrite Seeds","tr":"炼金种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"supersolarpanel:solarsplitter":{"0":{"name":"Solar Light Splitter","tr":"阳光分离器","tab":"超级太阳能发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHatTinFoil":{"0":{"name":"Tin Foil Hat","tr":"锡薄帽","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":56}},"miscutils:itemDustInconel690":{"0":{"oreDict":["dustInconel690"],"name":"镍铬基合金-690粉","tr":"镍铬基合金-690粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseDysprosium":{"0":{"oreDict":["plateDenseDysprosium"],"name":"致密镝板","tr":"致密镝板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VoidRing":{"0":{"oreDict":["ringVoid"],"name":"Void Ring","tr":"虚空环","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Naquadahcell":{"0":{"name":"燃料棒(硅岩)","tr":"燃料棒(硅岩)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"OpenBlocks:ladder":{"0":{"name":"Jaded Ladder","tr":"梯子活板门","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:frypanHead":{"0":{"name":"Wooden Pan","tr":"木盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Pan","tr":"石盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Pan","tr":"铁盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Pan","tr":"燧石盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Pan","tr":"仙人掌盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Pan","tr":"骨头盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Pan","tr":"黑曜石盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Pan","tr":"地狱岩盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Pan","tr":"史莱姆盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Pan","tr":"纸盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Pan","tr":"钴盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Pan","tr":"阿迪特盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Pan","tr":"玛玉灵盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Pan","tr":"铜盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Pan","tr":"青铜盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Pan","tr":"耐酸铝盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Pan","tr":"钢盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Pan","tr":"史莱姆盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Pan","tr":"生铁盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Pan","tr":"不稳定感应盘","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabSunnyFull":{"0":{"name":"Sunny Quartz Slab","tr":"金黄石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedTitanite":{"0":{"oreDict":["crushedPurifiedTitanite"],"name":"Purified Crushed Titanite Ore","tr":"洗净的榍石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.UberousSoil":{"0":{"name":"Uberous Soil","tr":"培养土","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.alubrass":{"0":{"name":"Molten Aluminum Brass","tr":"熔融铝黄铜","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_packet":{"0":{"name":"Fluid Packet","tr":"流体封包","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.MercuryStoneDust":{"0":{"oreDict":["dustMercuryStone"," dustPlanetMercury"," dustSpace"],"name":"Mercury Stone Dust","tr":"水星尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.BlackPlutonium":{"0":{"oreDict":["blockBlackPlutonium"],"name":"Block of Black Plutonium","tr":"黑钚块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedIrarsite":{"0":{"oreDict":["crushedCentrifugedIrarsite"],"name":"Centrifuged Crushed Irarsite Ore","tr":"离心硫砷铱矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemYetaWrench":{"0":{"name":"Yeta Wrench","tr":"以太扳手","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemBoltChromaticGlass":{"0":{"oreDict":["boltChromaticGlass"],"name":"彩色玻璃螺栓","tr":"彩色玻璃螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.shoji_door":{"0":{"name":"Shoji Door","tr":"障子门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:rhubarbseedItem":{"0":{"oreDict":["seedRhubarb"," listAllseed"],"name":"Rhubarb Seed","tr":"大黄种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:stencil":{"0":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Stencil","tr":"模板","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:mahoganyStairs":{"0":{"oreDict":["stairWood"],"name":"Mahogany Wood Stairs","tr":"桃花心木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamfigSapling":{"0":{"name":"Fig Sapling","tr":"无花果树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:ironGreatwood":{"0":{"name":"Iron Framed Greatwood","tr":"复合框架宏伟之木","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:enhanced_tnt":{"0":{"name":"TNT","tr":"TNT","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:magicales":{"0":{"name":"Magicales","tr":"魔法粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.SteeleafBlock":{"0":{"name":"Block of Steeleaf","tr":"Block of Steeleaf","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartExcavatorHead":{"1536":{"name":"精金 Excavator Head","tr":"精金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Excavator Head","tr":"神秘蓝金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Excavator Head","tr":"琥珀 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Excavator Head","tr":"纯镃 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Excavator Head","tr":"谐镃 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Excavator Head","tr":"聚氯乙烯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Excavator Head","tr":"永恒 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Excavator Head","tr":"磁物质 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Excavator Head","tr":"赛特斯石英 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Excavator Head","tr":"暗影秘银 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Excavator Head","tr":"玄铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Excavator Head","tr":"戴斯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Excavator Head","tr":"铿铀 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Excavator Head","tr":"通流琥珀金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Excavator Head","tr":"末影粗胚 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Excavator Head","tr":"末影(te) 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Excavator Head","tr":"炽热的钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Excavator Head","tr":"火石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Excavator Head","tr":"力量 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Excavator Head","tr":"石墨 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Excavator Head","tr":"石墨烯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Excavator Head","tr":"注魔金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Excavator Head","tr":"风之魔晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Excavator Head","tr":"火之魔晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Excavator Head","tr":"地之魔晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Excavator Head","tr":"水之魔晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Excavator Head","tr":"混沌魔晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Excavator Head","tr":"秩序魔晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Excavator Head","tr":"玉 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Excavator Head","tr":"碧玉 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Excavator Head","tr":"陨铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Excavator Head","tr":"陨钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Excavator Head","tr":"硅岩 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Excavator Head","tr":"硅岩合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Excavator Head","tr":"富集硅岩 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Excavator Head","tr":"超能硅岩 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Excavator Head","tr":"下界石英 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Excavator Head","tr":"下界之星 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Excavator Head","tr":"三钛 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Excavator Head","tr":"虚空 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Excavator Head","tr":"胶木 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Excavator Head","tr":"幽冥剧毒结晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Excavator Head","tr":"强化 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Excavator Head","tr":"铱锇合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Excavator Head","tr":"阳光化合物 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Excavator Head","tr":"魂金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Excavator Head","tr":"蓝黄玉 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Excavator Head","tr":"黄铜 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Excavator Head","tr":"白铜 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Excavator Head","tr":"深渊铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Excavator Head","tr":"钻石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Excavator Head","tr":"琥珀金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Excavator Head","tr":"绿宝石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Excavator Head","tr":"强化混合晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Excavator Head","tr":"混合晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Excavator Head","tr":"绿色蓝宝石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Excavator Head","tr":"殷钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Excavator Head","tr":"坎塔尔合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Excavator Head","tr":"镁铝合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Excavator Head","tr":"镍铬合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Excavator Head","tr":"玄钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Excavator Head","tr":"生铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Excavator Head","tr":"聚乙烯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Excavator Head","tr":"环氧树脂 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Excavator Head","tr":"硅橡胶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Excavator Head","tr":"聚己内酰胺 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Excavator Head","tr":"聚四氟乙烯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Excavator Head","tr":"蓝宝石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Excavator Head","tr":"不锈钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Excavator Head","tr":"坦桑石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Excavator Head","tr":"锡铁合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Excavator Head","tr":"黄玉 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Excavator Head","tr":"哈氏合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Excavator Head","tr":"锻铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Excavator Head","tr":"铁木 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Excavator Head","tr":"橄榄石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Excavator Head","tr":"蛋白石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Excavator Head","tr":"紫水晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Excavator Head","tr":"暗影金属 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Excavator Head","tr":"暗影铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Excavator Head","tr":"暗影钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Excavator Head","tr":"钢叶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Excavator Head","tr":"骑士金属 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Excavator Head","tr":"标准纯银 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Excavator Head","tr":"玫瑰金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Excavator Head","tr":"黑青铜 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Excavator Head","tr":"铋青铜 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Excavator Head","tr":"黑钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Excavator Head","tr":"红钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Excavator Head","tr":"蓝钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Excavator Head","tr":"大马士革钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Excavator Head","tr":"充能合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Excavator Head","tr":"脉冲合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Excavator Head","tr":"星辰银 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Excavator Head","tr":"钴黄铜 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Excavator Head","tr":"红石榴石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Excavator Head","tr":"黄石榴石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Excavator Head","tr":"温特姆 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Excavator Head","tr":"黑花岗岩 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Excavator Head","tr":"红花岗岩 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Excavator Head","tr":"白石棉 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Excavator Head","tr":"雄黄 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Excavator Head","tr":"磁化铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Excavator Head","tr":"磁化钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Excavator Head","tr":"磁化钕 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Excavator Head","tr":"碳化钨 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Excavator Head","tr":"钒钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Excavator Head","tr":"高速钢-G 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Excavator Head","tr":"高速钢-E 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Excavator Head","tr":"高速钢-S 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Excavator Head","tr":"深铅 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Excavator Head","tr":"量子 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Excavator Head","tr":"深空秘银 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Excavator Head","tr":"黑钚 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Excavator Head","tr":"木卫四冰 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Excavator Head","tr":"硬铝 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Excavator Head","tr":"奥利哈钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Excavator Head","tr":"三元金属 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Excavator Head","tr":"聚苯硫醚 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Excavator Head","tr":"聚苯乙烯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Excavator Head","tr":"丁苯橡胶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Excavator Head","tr":"镍锌铁氧体 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Excavator Head","tr":"纤维强化的环氧树脂 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Excavator Head","tr":"磁化钐 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Excavator Head","tr":"无尽催化剂 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Excavator Head","tr":"聚苯并咪唑 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Excavator Head","tr":" 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Excavator Head","tr":"钛铂钒合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Excavator Head","tr":"时空 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Excavator Head","tr":"大理石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Excavator Head","tr":"神秘水晶 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Excavator Head","tr":"末影钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Excavator Head","tr":"复合粘土 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Excavator Head","tr":"晶化合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Excavator Head","tr":"旋律合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Excavator Head","tr":"恒星合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Excavator Head","tr":"晶化粉红史莱姆 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Excavator Head","tr":"充能银 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Excavator Head","tr":"生动合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Excavator Head","tr":"灵宝 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Excavator Head","tr":"超时空金属 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Excavator Head","tr":"活石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Excavator Head","tr":"盖亚之魂 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Excavator Head","tr":"活木 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Excavator Head","tr":"梦之木 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Excavator Head","tr":"泡铋 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Excavator Head","tr":"立方氧化锆 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Excavator Head","tr":"氟铁电气石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Excavator Head","tr":"铬铝电气石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Excavator Head","tr":"钒镁电气石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Excavator Head","tr":"铝电气石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Excavator Head","tr":"红锆石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Excavator Head","tr":"铁橄榄石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Excavator Head","tr":"镁橄榄石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Excavator Head","tr":"钙铁辉石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Excavator Head","tr":"钍-232 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Excavator Head","tr":"堇云石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Excavator Head","tr":"磁共振石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Excavator Head","tr":"锎 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Excavator Head","tr":"BArTiMaEuSNeK 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Excavator Head","tr":"钌 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Excavator Head","tr":"铑 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Excavator Head","tr":"镀铑钯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Excavator Head","tr":"泰伯利亚 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Excavator Head","tr":"钌铱合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Excavator Head","tr":"氟石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Excavator Head","tr":"高耐久性复合钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Excavator Head","tr":"硬钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Excavator Head","tr":"合成玉 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Excavator Head","tr":"原子分离催化剂 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Excavator Head","tr":"极不稳定硅岩 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Excavator Head","tr":"锌钍合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Excavator Head","tr":"锆锡合金-4 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Excavator Head","tr":"锆锡合金-2 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Excavator Head","tr":"耐热铬铁合金-903 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Excavator Head","tr":"精金合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Excavator Head","tr":"MAR-M200特种钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Excavator Head","tr":"MAR-Ce-M200特种钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Excavator Head","tr":"氯化锂 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Excavator Head","tr":"信素 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Excavator Head","tr":"流明 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Excavator Head","tr":"阿瑟锡 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Excavator Head","tr":"钛钼合金β-C 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Excavator Head","tr":"大力合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Excavator Head","tr":"光素 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Excavator Head","tr":"对立合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Excavator Head","tr":"稀有金属合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Excavator Head","tr":"富集硅岩合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Excavator Head","tr":"亚稳态鿫 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Excavator Head","tr":"调律源金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Excavator Head","tr":"魔钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Excavator Head","tr":"泰拉钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Excavator Head","tr":"源质钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Excavator Head","tr":"磁流体约束恒星物质 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Excavator Head","tr":"白矮星物质 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Excavator Head","tr":"黑矮星物质 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Excavator Head","tr":"宇宙素 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Excavator Head","tr":"铝 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Excavator Head","tr":"铍 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Excavator Head","tr":"铋 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Excavator Head","tr":"碳 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Excavator Head","tr":"铬 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Excavator Head","tr":"金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Excavator Head","tr":"铱 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Excavator Head","tr":"铅 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Excavator Head","tr":"锰 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Excavator Head","tr":"钼 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Excavator Head","tr":"钕 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Excavator Head","tr":"中子 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Excavator Head","tr":"镍 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Excavator Head","tr":"锇 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Excavator Head","tr":"钯 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Excavator Head","tr":"铂 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Excavator Head","tr":"钚-239 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Excavator Head","tr":"钚-241 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Excavator Head","tr":"银 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Excavator Head","tr":"钍 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Excavator Head","tr":"钛 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Excavator Head","tr":"钨 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Excavator Head","tr":"铀-238 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Excavator Head","tr":"铀-235 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Excavator Head","tr":"红宝石 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Excavator Head","tr":"红石合金 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Excavator Head","tr":"终末 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Excavator Head","tr":"导电铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Excavator Head","tr":"磁钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Excavator Head","tr":"钨钢 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Excavator Head","tr":"烈焰 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Excavator Head","tr":"脉冲铁 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Excavator Head","tr":"龙 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Excavator Head","tr":"觉醒龙 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Excavator Head","tr":"褐铜 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Excavator Head","tr":"山铜 开掘铲头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockEssentiaCompressor":{"0":{"name":"Essentia Condenser","tr":"源质冷凝器","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IridiumItemCasing":{"0":{"oreDict":["itemCasingIridium"],"name":"Iridium Item Casing","tr":"铱外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:warpGate":{"0":{"name":"Celestial Gateway","tr":"仙域之门","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:item.ae":{"0":{"oreDict":["oc:me_upgrade1"],"name":"ME Upgrade","tr":"ME升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oc:me_upgrade2"],"name":"ME Upgrade","tr":"ME升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oc:me_upgrade3"],"name":"ME Upgrade","tr":"ME升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:openBucket":{"0":{"name":"Extrapolated Bucket","tr":"无底桶","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamvanillabeanSapling":{"0":{"name":"Vanilla Sapling","tr":"香草树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingWatertightSteel":{"0":{"oreDict":["ringWatertightSteel"],"name":"防水钢环","tr":"防水钢环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:infusedObsidian":{"0":{"name":"Draconium Infused Obsidian","tr":"注入龙力的黑曜石","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:serumGE":{"0":{"name":"Speckled Wood","tr":"斑木蝶","tab":"林业|蝴蝶","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamalmondSapling":{"0":{"name":"Almond Sapling","tr":"杏仁树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:specialCeramicsPlate":{"0":{"name":"Special Ceramics Plate","tr":"特种陶瓷板","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"eternalsingularity:eternal_singularity":{"0":{"name":"Eternal Singularity","tr":"永恒奇点","tab":"永恒奇点","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitULV":{"0":{"oreDict":["circuitPrimitive"],"name":"Any ULV Circuit","tr":"任意ULV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.darkSteel_shears":{"0":{"name":"Dark Shears","tr":"玄钢剪","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1191}},"miscutils:itemFoilRhugnor":{"0":{"oreDict":["foilRhugnor"],"name":"鲁格诺箔","tr":"鲁格诺箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrapDoorTrans":{"0":{"name":"Transwood Trapdoor","tr":"变化树活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:RawWaste":{"0":{"oreDict":["cellRawAnimalWaste"],"name":"动物粪便单元","tr":"动物粪便单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHalfCompleteCasings":{"0":{"name":"Half Complete Casing I","tr":"半成品机械方块 I","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1},"1":{"name":"Half Complete Casing II","tr":"半成品机械方块 II","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1},"2":{"name":"Half Complete Casing III","tr":"半成品机械方块 III","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1},"3":{"name":"Half Complete Casing IV","tr":"半成品机械方块 IV","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"TConstruct:ore.berries.one":{"8":{"name":"Iron Oreberry Bush","tr":"铁矿莓丛","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Gold Oreberry Bush","tr":"金矿莓丛","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Copper Oreberry Bush","tr":"铜矿莓丛","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tin Oreberry Bush","tr":"锡矿莓丛","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinForestry":{"0":{"name":"Coin \"The Forest Ranger 1\"","tr":"护林员币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:ivy":{"0":{"oreDict":["cropVine"," cropIvy"],"name":"Ivy","tr":"藤蔓","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:beehives":{"1":{"name":"Forest Hive","tr":"森林蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Meadows Hive","tr":"草地蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Modest Hive","tr":"温和蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Tropical Hive","tr":"热带蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wintry Hive","tr":"凛冬蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Marshy Hive","tr":"沼泽蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pickledbeetsItem":{"0":{"oreDict":["foodPickledbeets"],"name":"Pickled Beets","tr":"腌制甜菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ArcaneShardChip":{"0":{"name":"Arcane Shard Chip","tr":"奥术碎片芯片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHypogen":{"0":{"oreDict":["screwHypogen"],"name":"海珀珍螺丝","tr":"海珀珍螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:slime.grass":{"0":{"oreDict":["cropGrass"],"name":"Slimy Grass","tr":"史莱姆草方块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconiumEnergyCore":{"0":{"name":"Wyvern Energy Core","tr":"双足飞龙能量核心","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Draconic Energy Core","tr":"龙之能量核心","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallWatertightSteel":{"0":{"oreDict":["dustSmallWatertightSteel"],"name":"小堆防水钢粉","tr":"小堆防水钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:factoryblock":{"0":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshLeggings":{"0":{"name":"Desh Leggings","tr":"戴斯护腿","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":631}},"miscutils:itemDustStaballoy":{"0":{"oreDict":["dustStaballoy"],"name":"贫铀合金粉","tr":"贫铀合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.lamp":{"0":{"name":"White Lamp","tr":"白色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Lamp","tr":"橙色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Lamp","tr":"品红色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Lamp","tr":"淡蓝色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Lamp","tr":"黄色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Lamp","tr":"黄绿色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Lamp","tr":"粉色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Grey Lamp","tr":"灰色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Grey Lamp","tr":"淡灰色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Lamp","tr":"青色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Lamp","tr":"紫色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Lamp","tr":"蓝色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Lamp","tr":"棕色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Lamp","tr":"绿色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Lamp","tr":"红色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Lamp","tr":"黑色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Inverted White Lamp","tr":"反相白色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Inverted Orange Lamp","tr":"反相橙色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Inverted Magenta Lamp","tr":"反相品红色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Inverted Light Blue Lamp","tr":"反相淡蓝色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"Inverted Yellow Lamp","tr":"反相黄色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"Inverted Lime Lamp","tr":"反相黄绿色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"Inverted Pink Lamp","tr":"反相粉色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"Inverted Grey Lamp","tr":"反相灰色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"Inverted Light Grey Lamp","tr":"反相淡灰色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"Inverted Cyan Lamp","tr":"反相青色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"Inverted Purple Lamp","tr":"反相紫色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"Inverted Blue Lamp","tr":"反相蓝色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"Inverted Brown Lamp","tr":"反相棕色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"name":"Inverted Green Lamp","tr":"反相绿色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"Inverted Red Lamp","tr":"反相红色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"Inverted Black Lamp","tr":"反相黑色灯","tab":"红石计划:照明","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitUIV":{"0":{"oreDict":["circuitOptical"],"name":"Any UIV Circuit","tr":"任意UIV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:ProteinBucket":{"0":{"name":"Protein Bucket","tr":"蛋白质桶","tab":"基因工业","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedCentrifugedYttrialite":{"0":{"oreDict":["crushedCentrifugedYttrialite"],"name":"Centrifuged Crushed Yttrialite Ore","tr":"离心硅钍钇矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:ingredient":{"0":{"name":"Candelabra","tr":"枝状大烛台","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Chalice","tr":"圣餐杯","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Chalice (Filled)","tr":"圣餐杯(填满的)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Dream Weaver of Fleet Foot","tr":"疾行之织梦者","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Dream Weaver of Iron Arm","tr":"铁臂之织梦者","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Dream Weaver of Fasting","tr":"斋戒之织梦者","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Dream Weaver of Nightmares","tr":"夜魇之织梦者","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Bone Needle","tr":"骨针","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Broom","tr":"扫帚","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Enchanted Broom","tr":"魔法扫帚","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Attuned Stone","tr":"调谐之石","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Attuned Stone (Charged)","tr":"调谐之石(充能)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Waystone","tr":"寻路石","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["itemMutandis"],"name":"Mutandis","tr":"转生粉","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Mutandis Extremis","tr":"超级转生粉","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Quicklime","tr":"生石灰","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Gypsum","tr":"石膏","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Wood Ash","tr":"木灰","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["itemBelladonna"],"name":"Belladonna Flower","tr":"颠茄花","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["itemMandrake"],"name":"Mandrake Root","tr":"曼德拉草根","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Demon Heart","tr":"恶魔之心","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Wool of Bat","tr":"蝙蝠之毛","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Tongue of Dog","tr":"狗之舌","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Soft Clay Jar","tr":"软粘土罐","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Clay Jar","tr":"粘土罐","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Foul Fume","tr":"邪恶熏气","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Diamond Vapor","tr":"钻石熏气","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Oil of Vitriol","tr":"浓硫酸","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Exhale of the Horned One","tr":"角魔之息","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Breath of the Goddess","tr":"女神之息","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Hint of Rebirth","tr":"重生之息","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Whiff of Magic","tr":"魔力之息","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Reek of Misfortune","tr":"厄运之息","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"Odour of Purity","tr":"纯净之息","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"Tear of the Goddess","tr":"女神之泪","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"Refined Evil","tr":"精炼邪恶","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"Drop of Luck","tr":"幸运液滴","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"Redstone Soup","tr":"红石汤","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Flying Ointment","tr":"飞天软膏","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Ghost of the Light","tr":"光之幽灵","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Soul of the World","tr":"世界之魄","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Spirit of Otherwhere","tr":"他处之灵","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"Infernal Animus","tr":"炼狱敌意","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"name":"Witchcraft: Collecting Fumes","tr":"巫术: 收集熏气","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"Witchcraft: Distilling","tr":"巫术: 蒸馏","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"Witchcraft: Circle Magic","tr":"巫术: 圆环法阵","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"Witchcraft: Brews \u0026 Infusions","tr":"巫术: 酿造\u0026注魔","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"name":"Raw Porkchop?","tr":"生猪肉片?","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"Cooked Porkchop?","tr":"烤猪肉片?","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"name":"Rowan Wood Door","tr":"山梨树木门","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"Alder Wood Door","tr":"赤杨树木门","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"Rowan Door Key","tr":"山梨树木门钥匙","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"name":"Rock","tr":"岩石","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"Dense Web","tr":"密网","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"Brew of Vines","tr":"藤蔓之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"Brew of Webs","tr":"蛛网之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"name":"Brew of Thorns","tr":"荆棘之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"name":"Brew of Ink","tr":"墨囊之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"name":"Brew of Sprouting","tr":"萌芽之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"name":"Brew of Erosion","tr":"侵蚀之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"name":"Rowan Berries","tr":"山梨树浆果","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"name":"Necromantic Stone","tr":"死灵石","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"name":"Brew of Raising","tr":"腾升之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"name":"Spectral Dust","tr":"幽灵粉末","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"name":"Ender Dew","tr":"末影之露","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["cropArtichoke"," listAllveggie"],"name":"Water Artichoke Globe","tr":"水洋蓟球茎","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"name":"Treefyd Seed","tr":"行路花种子","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"name":"Brew of the Grotesque","tr":"怪诞之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"name":"Impregnated Leather","tr":"浸渍皮革","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"name":"Fume Filter","tr":"熏气过滤器","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"name":"Creeper Heart","tr":"爬行者之心","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"name":"Brew of Love","tr":"爱之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"name":"Brew of Frost","tr":"寒霜之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"name":"Brew of the Depths","tr":"深渊之酿药水","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["itemSnowbell"],"name":"Icy Needle","tr":"冰针","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"name":"Frozen Heart","tr":"冷冻之心","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"name":"Demonic Blood","tr":"恶魔之血","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"name":"Witchcraft: Herbology","tr":"巫术: 草药学","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"name":"Ent Twig","tr":"树人嫩芽","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"name":"Mystic Unguent","tr":"神秘药膏","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"name":"Rowan Keyring","tr":"山梨木钥匙环","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"name":"Brew of Frogs Tongue","tr":"青蛙舌头之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"name":"Brew of Cursed Leaping","tr":"诅咒跳跃之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"name":"Brew of Bodega","tr":"鹰击之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"name":"Brew of Infection","tr":"感染之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"name":"Owlet\u0027s Wing","tr":"小猫头鹰之翼","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"name":"Toe of Frog","tr":"青蛙趾","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"name":"Wormy Apple","tr":"虫蛀苹果","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"name":"Quartz Sphere","tr":"球状石英","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"name":"Happenstance Oil","tr":"巧合油","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"name":"Seer Stone","tr":"先知之石","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"name":"Brew of Sleeping","tr":"沉睡之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"name":"Brew of Flowing Spirit","tr":"水心之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"name":"Brew of Wasting","tr":"浪费之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"98":{"name":"Apple","tr":"沉睡苹果","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"99":{"name":"Disturbed Cotton","tr":"扰乱棉花","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"name":"Fanciful Thread","tr":"幻想线团","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"name":"Tormented Twine","tr":"折磨线团","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"102":{"name":"Golden Thread","tr":"黄金线团","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"103":{"name":"Mellifluous Hunger","tr":"甜蜜饥饿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"name":"Dream Weaver of Intensity","tr":"炽烈之织梦者","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"105":{"name":"Purified Milk","tr":"纯牛奶","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"106":{"name":"Book of Biomes","tr":"生态之书","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"107":{"name":"Witchcraft: Symbology","tr":"巫术:魔符学","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"108":{"name":"Concentrated Bat Ball","tr":"浓缩蝙蝠球","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"109":{"name":"Brew of Bats","tr":"蝙蝠之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"110":{"name":"Charm of Fanciful Thinking","tr":"奇思妙想符咒","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"111":{"name":"Wormwood","tr":"苦艾","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"112":{"name":"Subdued Spirit","tr":"抑制之精神","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"113":{"name":"Focused Will","tr":"汇聚之意志","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"114":{"name":"Condensed Fear","tr":"凝集之恐惧","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"115":{"name":"Brew of Hollow Tears","tr":"虚伪泪水之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"116":{"name":"Solidifying Brew (Stone)","tr":"固化酿造 (石头)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"117":{"name":"Solidifying Brew (Dirt)","tr":"固化酿造 (泥土)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"118":{"name":"Solidifying Brew (Sand)","tr":"固化酿造 (沙子)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"119":{"name":"Solidifying Brew (Sandstone)","tr":"固化酿造 (沙石)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"120":{"name":"Solidifying Brew (Erosion)","tr":"固化酿造 (侵蚀)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"121":{"name":"Infused Brew Base","tr":"注魔基础之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"122":{"name":"Infused Brew of Soaring","tr":"注魔翱翔之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"123":{"name":"Infused Brew of the Grave","tr":"注魔墓穴之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"124":{"name":"Brew of Revealing","tr":"揭示之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"125":{"name":"Brew of Substitution","tr":"置换之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"126":{"name":"Congealed Spirit","tr":"冻结之精神","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"127":{"name":"Witchcraft: Conjuration \u0026 Fetishes","tr":"巫术: 祈祷与灵物","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"128":{"name":"Graveyard Dust","tr":"墓园土","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"129":{"name":"Binky\u0027s Skull","tr":"冰奇头骨","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"130":{"name":"Null Catalyst","tr":"枯竭水晶","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"131":{"name":"Nullified Leather","tr":"废弃皮革","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"132":{"name":"Wooden Bolt","tr":"木制弩箭","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"133":{"name":"Nullifying Bolt","tr":"废弃弩箭","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"134":{"name":"Bone Bolt","tr":"骨制弩箭","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"135":{"name":"Splitting Bolt","tr":"爆裂弩箭","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"136":{"name":"Soul of Hunger Demon","tr":"饿鬼之魂","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"137":{"name":"Soul of Anguish Demon","tr":"凄鬼之魂","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"138":{"name":"Soul of Fear Demon","tr":"懦鬼之魂","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"139":{"name":"Soul of Torment Demon","tr":"苦鬼之魂","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"140":{"name":"Demonic Contract","tr":"恶魔契约","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"141":{"name":"Torment","tr":"痛苦","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"142":{"name":"Living Flame","tr":"活焰","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"143":{"name":"Fiery Tolerance","tr":"灰烬魔体(抗火)","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"144":{"name":"Evaporation","tr":"幻灭","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"145":{"name":"Fiery Touch","tr":"炽烈之触","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"146":{"name":"Melting Touch","tr":"熔炼之触","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"148":{"oreDict":["dustKoboldite"],"name":"Koboldite Dust","tr":"妖金粉末","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"149":{"oreDict":["nuggetKoboldite"],"name":"Koboldite Nugget","tr":"妖金粒","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"150":{"oreDict":["ingotKoboldite"],"name":"Koboldite Ingot","tr":"妖金锭","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"151":{"name":"Pentacle","tr":"五芒星阵","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"152":{"name":"Ice Door","tr":"冰门","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"153":{"name":"Anointing Paste","tr":"受魔之膏","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"154":{"name":"Subdued Village Spirit","tr":"抑制村庄之灵魂","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"155":{"name":"Silver Bolt","tr":"银质弩箭","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"156":{"oreDict":["itemWolfsBane"],"name":"Wolfsbane","tr":"狼毒草","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"157":{"name":"Silver Deposits","tr":"沉积银","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"158":{"name":"Raw Lambchop","tr":"生羊排","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"159":{"name":"Cooked Lambchop","tr":"熟羊排","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"160":{"name":"Torn Page","tr":"被撕掉的残页","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"161":{"name":"Woven Cruor","tr":"凝血之织","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"162":{"name":"Wooden Stake","tr":"木桩","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"163":{"name":"Warm Blood","tr":"温暖的血液","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"164":{"name":"Lilith\u0027s Blood","tr":"莉莉丝之血","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"165":{"name":"Heart of Gold","tr":"黄金之心","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinChunkloaderTierV":{"0":{"name":"Chunkloader Coin Tier V","tr":"区块加载器硬币Tier V","tab":"GTNH: 物品","type":"Item","maxStackSize":4,"maxDurability":1}},"miscutils:itemDustSmallAbyssalAlloy":{"0":{"oreDict":["dustSmallAbyssalAlloy"],"name":"小堆深渊合金粉","tr":"小堆深渊合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BarnardaEStoneDust":{"0":{"oreDict":["dustSpace"," dustBarnardaEStone"," dustBarnardaE"],"name":"Barnarda E Stone Dust","tr":"巴纳德E尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.titanium_chestplate":{"0":{"name":"Titanium Chestplate","tr":"钛胸甲","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":417}},"harvestcraft:quernon":{"0":{"name":"Quern","tr":"石磨","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:bound_igniter":{"0":{"name":"Bound Igniter","tr":"约束打火石","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:arcane":{"0":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.krypBlock":{"0":{"name":"Kryp ⓪","tr":"Kryp ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Kryp ①","tr":"Kryp ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Kryp ②","tr":"Kryp ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Kryp ③","tr":"Kryp ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Kryp ④","tr":"Kryp ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Kryp ⑤","tr":"Kryp ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Kryp ⑥","tr":"Kryp ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Kryp ⑦","tr":"Kryp ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kryp ⑧","tr":"Kryp ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Kryp ⑨","tr":"Kryp ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Kryp ⑩","tr":"Kryp ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Kryp ⑪","tr":"Kryp ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Kryp ⑫","tr":"Kryp ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Kryp ⑬","tr":"Kryp ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Kryp ⑭","tr":"Kryp ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Kryp ⑮","tr":"Kryp ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:veggiestripsItem":{"0":{"oreDict":["foodVeggiestrips"],"name":"Veggie Strips","tr":"蔬菜条","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"avaritiaddons:ExtremeAutoCrafter":{"0":{"name":"Dire Autocrafting Table","tr":"梦魇工作台","tab":"无尽贪婪拓展","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrapDoorTwilight":{"0":{"name":"Twilight Oak Trapdoor","tr":"暮色橡树活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewTellurium":{"0":{"oreDict":["screwTellurium"],"name":"碲螺丝","tr":"碲螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleEthanol":{"0":{"oreDict":["capsuleEthanol"],"name":"Ethanol Capsule","tr":"耐火乙醇胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotIndalloy140":{"0":{"oreDict":["ingotIndalloy140"],"name":"铋铅合金140锭","tr":"铋铅合金140锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleLaurenium":{"0":{"oreDict":["plateDoubleLaurenium"],"name":"双重劳伦姆合金板","tr":"双重劳伦姆合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Thaumcraft:blockAiry":{"0":{"name":"Aura Node","tr":"灵气节点","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedDrippingCombs":{"0":{"name":"Crated Dripping Comb","tr":"装箱的滴水蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyGadoliniteCe":{"0":{"oreDict":["dustTinyGadoliniteCe"],"name":"小撮硅铍钇矿(Ce)粉","tr":"小撮硅铍钇矿(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtGermanium":{"0":{"oreDict":["frameGtGermanium"],"name":"锗框架","tr":"锗框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseErbium":{"0":{"oreDict":["plateDenseErbium"],"name":"致密铒板","tr":"致密铒板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement4Slab":{"0":{"name":"Yellow Portuguese Pavement Slab","tr":"黄色葡萄牙台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTellurium":{"0":{"oreDict":["dustTellurium"],"name":"碲粉","tr":"碲粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:lensAir":{"0":{"name":"Kirlian Lens","tr":"气之魂灵之镜","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:brewery":{"0":{"name":"Botanical Brewery","tr":"植物酿造台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTriniumNaquadahCarbonite":{"0":{"oreDict":["dustTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金粉","tr":"掺碳三元硅岩合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHibonite":{"0":{"oreDict":["dustHibonite"],"name":"黑铝钙石粉","tr":"黑铝钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:darkQuartz":{"0":{"name":"Block of Smokey Quartz","tr":"烟黑石英块","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Smokey Quartz Block","tr":"雕琢烟黑石英块","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Smokey Quartz Block","tr":"柱状烟黑石英块","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:CrossbowBodyPart":{"0":{"name":"Wooden Crossbow Body","tr":"木弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Crossbow Body","tr":"石弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Crossbow Body","tr":"铁弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Crossbow Body","tr":"燧石弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Crossbow Body","tr":"仙人掌弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Crossbow Body","tr":"骨头弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Crossbow Body","tr":"黑曜石弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Crossbow Body","tr":"地狱岩弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Crossbow Body","tr":"史莱姆弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Crossbow Body","tr":"纸弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Crossbow Body","tr":"钴弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Crossbow Body","tr":"阿迪特弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Crossbow Body","tr":"玛玉灵弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Crossbow Body","tr":"铜弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Crossbow Body","tr":"青铜弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Crossbow Body","tr":"耐酸铝弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Crossbow Body","tr":"钢弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Crossbow Body","tr":"史莱姆弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Crossbow Body","tr":"生铁弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Crossbow Body","tr":"不稳定感应弩身","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHastelloyN":{"0":{"oreDict":["ringHastelloyN"],"name":"哈斯特洛依合金-N环","tr":"哈斯特洛依合金-N环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.axe.ghostwood":{"0":{"name":"Ghostwood Hatchet","tr":"幽魂树手斧","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":60}},"BuildCraft|Transport:item.buildcraftPipe.pipepowergold":{"0":{"name":"Gold-Covered Kinesis Pipe","tr":"金质能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDoorSort":{"0":{"name":"tile.TFDoorSort.0.name","tr":"tile.TFDoorSort.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHastelloyW":{"0":{"oreDict":["ringHastelloyW"],"name":"哈斯特洛依合金-W环","tr":"哈斯特洛依合金-W环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingHastelloyX":{"0":{"oreDict":["ringHastelloyX"],"name":"哈斯特洛依合金-X环","tr":"哈斯特洛依合金-X环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockRedcrystalAmp":{"0":{"name":"Amplified Redcrystal","tr":"增幅红晶","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:hammer":{"0":{"name":"§f矿工","tr":"§f矿工","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:manaRingGreater":{"1000":{"name":"Greater Band of Mana","tr":"高级魔力之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"dreamcraft:item.QuantumPartHelmetEmpty":{"0":{"name":"Quantum Parts \"Helmet Empty\"","tr":"量子头盔后外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinChunkloaderTierI":{"0":{"name":"Chunkloader Coin Tier I","tr":"区块加载器硬币Tier I","tab":"GTNH: 物品","type":"Item","maxStackSize":4,"maxDurability":1}},"TConstruct:trap.barricade.oak":{"0":{"name":"Oak Barricade","tr":"橡木篱笆","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatecaramelfudgeItem":{"0":{"oreDict":["foodChocolatecaramelfudge"],"name":"Chocolate Caramel Fudge","tr":"巧克力焦糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:tinyPlanet":{"0":{"name":"Tiny Planet","tr":"行星项链","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedCentrifugedCerite":{"0":{"oreDict":["crushedCentrifugedCerite"],"name":"Centrifuged Crushed Cerite Ore","tr":"离心铈硅石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockCrystal":{"0":{"name":"Crystal Cluster","tr":"碎片集晶","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Crystal Cluster Brick","tr":"碎片集晶砖","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:projector":{"0":{"name":"Height Map Projector","tr":"高度图投影仪","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedLautarite":{"0":{"oreDict":["crushedPurifiedLautarite"],"name":"Purified Crushed Lautarite Ore","tr":"洗净的碘钙石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:blazingClayCraftable":{"0":{"name":"Ammo - Blazing Clay","tr":"弹药-燃烧弹","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteSword":{"0":{"name":"Thauminite Sword","tr":"秘晶剑","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":975}},"dreamcraft:tile.BloodyThaumium":{"0":{"name":"Blood-Soaked Thaumium Block","tr":"血腥神秘块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:stair.amaranth":{"0":{"oreDict":["stairWood"],"name":"Amaranth Stairs","tr":"紫檀树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pbandjItem":{"0":{"oreDict":["foodPbandj"],"name":"PB\u0026J","tr":"花生酱果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockCosmeticSolid":{"0":{"oreDict":["stoneObsidian"],"name":"Obsidian Totem","tr":"黑曜石图腾","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneObsidian"],"name":"Obsidian Tile","tr":"黑曜石瓦块","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Paving Stone of Travel","tr":"旅行者铺路石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Paving Stone of Warding","tr":"守卫者铺路石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockThaumium"],"name":"Thaumium Block","tr":"神秘方块","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Tallow Block","tr":"油脂方块","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Arcane Stone Block","tr":"奥术石块","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Arcane Stone Bricks","tr":"奥术石砖","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Charged Obsidian Totem","tr":"蕴灵黑曜石图腾","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Golem Fetter","tr":"傀儡脚镣","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Ancient Stone","tr":"荒古石头","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Ancient Rock","tr":"荒古岩石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Crusted Stone","tr":"陈年石头","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Ancient Stone Pedestal","tr":"荒古石座","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:bloodyLeggings":{"0":{"name":"Bloodstained Thaumaturge\u0027s Leggings","tr":"血腥神秘使护腿","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":316}},"harvestcraft:jellybeansItem":{"0":{"oreDict":["foodJellybeans"],"name":"Jellybeans","tr":"软心豆粒糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormScrew":{"0":{"name":"Casting Form (Screw Mold)","tr":"铸件(螺丝)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyIncoloyMA956":{"0":{"oreDict":["dustTinyIncoloyMA956"],"name":"小撮耐热铬铁合金-MA956粉","tr":"小撮耐热铬铁合金-MA956粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolIridiumDrill":{"1":{"name":"Iridium Drill","tr":"铱钻头","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Iridium Drill","tr":"铱钻头","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:animaltrap":{"0":{"name":"Animal Trap","tr":"捕兽笼","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:papayajellyItem":{"0":{"oreDict":["foodPapayajelly"],"name":"Papaya Jelly","tr":"木瓜果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:pipeBlock":{"0":{"name":"Pipe","tr":"管道","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:PollenKit":{"0":{"name":"Pollen Collection Kit","tr":"花粉收集装备","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemNanoVoid":{"1":{"name":"Nano Boots of the Voidwalker","tr":"纳米虚空旅行者之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Nano Boots of the Voidwalker","tr":"纳米虚空旅行者之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:itemDustTinyStrontium":{"0":{"oreDict":["dustTinyStrontium"],"name":"小撮锶粉","tr":"小撮锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioPaneler":{"0":{"name":"Oak Furniture Paneler","tr":"橡木家具板材机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Furniture Paneler","tr":"云杉家具板材机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Furniture Paneler","tr":"桦木家具板材机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Furniture Paneler","tr":"丛林木家具板材机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Furniture Paneler","tr":"金合欢家具板材机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Furniture Paneler","tr":"深色橡木家具板材机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Furniture Paneler","tr":"镶框家具板材机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_lightgem":{"0":{"oreDict":["glowstoneBlack"," glowstone"],"name":"Colored Glowstone (White Frequency)","tr":"染色 萤石 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["glowstoneRed"," glowstone"],"name":"Colored Glowstone (Orange Frequency)","tr":"染色 萤石 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["glowstoneGreen"," glowstone"],"name":"Colored Glowstone (Magenta Frequency)","tr":"染色 萤石 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["glowstone"," glowstoneBrown"],"name":"Colored Glowstone (Light Blue Frequency)","tr":"染色 萤石 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["glowstone"," glowstoneBlue"],"name":"Colored Glowstone (Yellow Frequency)","tr":"染色 萤石 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["glowstone"," glowstonePurple"],"name":"Colored Glowstone (Lime Frequency)","tr":"染色 萤石 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["glowstone"," glowstoneCyan"],"name":"Colored Glowstone (Pink Frequency)","tr":"染色 萤石 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["glowstone"," glowstoneLightGray"],"name":"Colored Glowstone (Gray Frequency)","tr":"染色 萤石 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["glowstone"," glowstoneGray"],"name":"Colored Glowstone (Light Gray Frequency)","tr":"染色 萤石 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["glowstone"," glowstonePink"],"name":"Colored Glowstone (Cyan Frequency)","tr":"染色 萤石 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["glowstone"," glowstoneLime"],"name":"Colored Glowstone (Purple Frequency)","tr":"染色 萤石 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["glowstone"," glowstoneYellow"],"name":"Colored Glowstone (Blue Frequency)","tr":"染色 萤石 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["glowstoneLightBlue"," glowstone"],"name":"Colored Glowstone (Brown Frequency)","tr":"染色 萤石 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["glowstoneMagenta"," glowstone"],"name":"Colored Glowstone (Green Frequency)","tr":"染色 萤石 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["glowstoneOrange"," glowstone"],"name":"Colored Glowstone (Red Frequency)","tr":"染色 萤石 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["glowstoneWhite"," glowstone"],"name":"Colored Glowstone (Black Frequency)","tr":"染色 萤石 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"adventurebackpack:adventureHat":{"0":{"name":"Adventurer\u0027s Fedora","tr":"探险者软呢帽","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":101}},"irontank:tungstensteelTank":{"0":{"name":"Tungstensteel Tank","tr":"钨钢储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemVibrantShaft":{"0":{"name":"Vibrant Alloy Shaft","tr":"脉冲合金轴","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:itemIngotZirconiumCarbide":{"0":{"oreDict":["ingotZirconiumCarbide"],"name":"碳化锆锭","tr":"碳化锆锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_wood":{"0":{"name":"Blood Infused Wood","tr":"注血原木","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:seedsartichoke":{"0":{"oreDict":["listAllseed"," seedWaterArtichoke"],"name":"Water Artichoke Seeds","tr":"水洋蓟种子","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLithiumCarbonate":{"0":{"oreDict":["dustLithiumCarbonate"],"name":"碳酸锂粉","tr":"碳酸锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:uraniumblock":{"0":{"name":"Block of Uranium","tr":"铀块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Uranium","tr":"铀块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Uranium","tr":"铀块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Uranium","tr":"铀块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Uranium","tr":"铀块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Uranium","tr":"铀块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:filledbucket":{"0":{"name":"XP Bucket","tr":"液态经验桶","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicExploration:taintBerry":{"0":{"name":"Taintberry","tr":"腐化浆果","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:item.BasicGenericChemItem":{"0":{"oreDict":["catalystIronCopper"],"name":"Red Metal Catalyst","tr":"红色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["catalystTungstenNickel"],"name":"Yellow Metal Catalyst","tr":"黄色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["catalystCobaltTitanium"],"name":"Blue Metal Catalyst","tr":"蓝色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["catalystVanadiumPalladium"],"name":"Orange Metal Catalyst","tr":"橙色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["catalystIridiumRuthenium"],"name":"Purple Metal Catalyst","tr":"紫色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["catalystNickelAluminium"],"name":"Brown Metal Catalyst","tr":"棕色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["catalystPlatinumRhodium"],"name":"Pink Metal Catalyst","tr":"粉色金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["millingballAlumina"],"name":"Alumina Milling Ball","tr":"铝研磨球","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"8":{"oreDict":["millingballSoapstone"],"name":"Soapstone Milling Ball","tr":"皂石研磨球","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"9":{"oreDict":["dustSodiumEthoxide"],"name":"Sodium Ethoxide Dust","tr":"乙醇钠粉","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustSodiumEthylXanthate"],"name":"Sodium Ethyl Xanthate Dust","tr":"乙基黄原酸钠粉","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustPotassiumEthylXanthate"],"name":"Potassium Ethyl Xanthate Dust","tr":"乙基黄原酸钾粉","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustPotassiumHydroxide"],"name":"Potassium Hydroxide Dust","tr":"氢氧化钾粉","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["catalystFormaldehyde"],"name":"Formaldehyde Catalyst","tr":"甲醛催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["catalystSolidAcid"],"name":"Solid-Acid Catalyst","tr":"固体酸催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["catalystInfiniteMutation"],"name":"Infinite Mutation Catalyst","tr":"无尽突变催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["catalystPlatinumGroup"],"name":"Platinum Group Catalyst","tr":"铂系金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["catalystPlasticPolymer"],"name":"Plastic Polymer Catalyst","tr":"塑料聚合物催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["catalystRubberPolymer"],"name":"Rubber Polymer Catalyst","tr":"橡胶聚合物催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["catalystAdhesionPromoter"],"name":"Adhesion Promoter Catalyst","tr":"粘合促进催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["catalystTitaTungstenIndium"],"name":"Tita-Tungsten Indium Catalyst","tr":"钛钨铟催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["catalystRadioactivity"],"name":"Radioactivity Catalyst","tr":"放射催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["catalystRareEarthGroup"],"name":"Rare-Earth Group Catalyst","tr":"稀土金属催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["catalystSimpleNaquadah"],"name":"Simple Naquadah Catalyst","tr":"普通硅岩催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["catalystAdvancedNaquadah"],"name":"Advanced Naquadah Catalyst","tr":"高级硅岩催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["catalystRawIntelligence"],"name":"Raw Intelligence Catalyst","tr":"原生智能催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["catalystUltimatePlastic"],"name":"Ultimate Plasticizer Catalyst","tr":"终极增塑催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["catalystBiologicalIntelligence"],"name":"Biological Intelligence Catalyst","tr":"生物智能催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["catalystTemporalHarmony"],"name":"Temporal Harmonizer Catalyst","tr":"时间谐波催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["catalystLimpidWater"],"name":"Limpid Water Catalyst","tr":"净水催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["catalystFlawlessWater"],"name":"Flawless Water Catalyst","tr":"超净水催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["catalystParticleAcceleration"],"name":"Particle Acceleration Catalyst","tr":"粒子加速催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"oreDict":["catalystSynchrotronCapable"],"name":"Synchrotron-Capable Catalyst","tr":"同步加速催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["catalystAlgagenicGrowthPromoter"],"name":"Algagenic Growth Promoter Catalyst","tr":"海藻基质催化剂","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:hunterlegssilvered":{"0":{"name":"Witch Hunter Trousers (Silvered)","tr":"狩巫裤(镀银)","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":226}},"TwilightForest:item.legsNaga":{"0":{"name":"Naga Scale Leggings","tr":"娜迦护腿","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":316}},"harvestthenether:bloodleafItem":{"0":{"oreDict":["cropBloodleaf"," listAllveggie"," listAllgreenveggie"],"name":"Blood Leaf","tr":"血型叶片","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:scallionbakedpotatoItem":{"0":{"oreDict":["foodScallionbakedpotato"],"name":"Scallion Baked Potato","tr":"青葱烤土豆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedYttrialite":{"0":{"oreDict":["crushedPurifiedYttrialite"],"name":"Purified Crushed Yttrialite Ore","tr":"洗净的硅钍钇矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:pipeWire":{"0":{"name":"Red Pipe Wire","tr":"红色管线","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Blue Pipe Wire","tr":"蓝色管线","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Pipe Wire","tr":"绿色管线","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Yellow Pipe Wire","tr":"黄色管线","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:inkEgg":{"0":{"oreDict":["dyeBlack"," dye"],"name":"Tenebrous Egg","tr":"暗黑鸡蛋","tab":"神秘视界","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:itemDustTinyManureByproducts":{"0":{"oreDict":["dustTinyManureByproducts"],"name":"小撮粪肥副产粉","tr":"小撮粪肥副产粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitUXV":{"0":{"oreDict":["circuitCosmic"],"name":"Any UXV Circuit","tr":"任意UXV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTungstenTitaniumCarbide":{"0":{"oreDict":["dustTinyTungstenTitaniumCarbide"],"name":"小撮碳化钨钛合金粉","tr":"小撮碳化钨钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WarpTheory:item.warptheory.paper":{"0":{"name":"Arcane Litmus Paper","tr":"奥术石蕊试纸","tab":"神秘扭曲学","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:music_disk":{"0":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Music Disc","tr":"音乐唱片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearZirconium":{"0":{"oreDict":["gearGtZirconium"," gearZirconium"],"name":"锆齿轮","tr":"锆齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hamsweetpicklesandwichItem":{"0":{"oreDict":["foodHamsweetpicklesandwich"],"name":"Ham \u0026 Sweet Pickle Sandwich","tr":"火腿甜三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.OsmiumBars":{"0":{"oreDict":["barsOsmium"],"name":"Osmium Bars","tr":"锇栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockKineticGenerator":{"0":{"name":"Kinetic Wind Generator","tr":"风力动能发生机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Kinetic Steam Generator","tr":"蒸汽动能发生机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Electric Kinetic Generator","tr":"电力动能发生机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Manual Kinetic Generator","tr":"手动动能发生机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Kinetic Water Generator","tr":"水力动能发生机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stirling Kinetic Generator","tr":"Stirling Kinetic Generator","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:RingNutrition":{"0":{"name":"Ring of Nutrition","tr":"滋养指环","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:laboratory_glass":{"0":{"oreDict":["blockGlassHV"],"name":"Laboratory Glass","tr":"实验玻璃","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_unlit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:enrichedNaquadahMass":{"0":{"name":"Enriched Naquadah Mass","tr":"富集硅岩团","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:canvas":{"0":{"name":"Canvas","tr":"画布","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.machines2":{"0":{"name":"Rocket Engine Jet","tr":"火箭引擎喷口","tab":"阿蒙·拉","type":"Block","maxStackSize":1,"maxDurability":1},"1":{"name":"Ion Thruster Jet","tr":"离子推进器喷口","tab":"阿蒙·拉","type":"Block","maxStackSize":1,"maxDurability":1}},"GalacticraftAmunRa:tile.machines1":{"0":{"name":"Radioisotope Generator","tr":"放射性同位素发电机","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Advanced Radioisotope Generator","tr":"进阶放射性同位素发电机","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mothership Navigation Console","tr":"母舰导航控制台","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Mothership Configuration Terminal","tr":"母舰配置终端","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.machines4":{"0":{"name":"Shuttle Dock","tr":"穿梭机接驳舱","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Hydroponics Unit","tr":"水培单元","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.machines3":{"0":{"name":"Block Scale","tr":"方块质量","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Artificial Gravity Generator","tr":"人工重力发生器","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:item.endSteel_pickaxe":{"0":{"name":"End Steel Pick","tr":"末影钢镐","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":2001}},"chisel:ice_stairs.1":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:europagrunt":{"0":{"oreDict":["rockSpace"," rockEuropa"],"name":"Europa Surface Block","tr":"木卫二表面方块","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockEuropa"],"name":"Europa Ice","tr":"木卫二冰","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:ice_stairs.0":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:ice_stairs.3":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:rootbeersodaItem":{"0":{"oreDict":["foodRootbeersoda"],"name":"Root Beer","tr":"根汁汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:ice_stairs.2":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormStickLong":{"0":{"name":"Casting Form (Long Stick Mold)","tr":"铸件(长杆)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zoneBlock":{"0":{"name":"Zone ⓪","tr":"Zone ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zone ①","tr":"Zone ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zone ②","tr":"Zone ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zone ③","tr":"Zone ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zone ④","tr":"Zone ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zone ⑤","tr":"Zone ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zone ⑥","tr":"Zone ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zone ⑦","tr":"Zone ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zone ⑧","tr":"Zone ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zone ⑨","tr":"Zone ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zone ⑩","tr":"Zone ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zone ⑪","tr":"Zone ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zone ⑫","tr":"Zone ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zone ⑬","tr":"Zone ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zone ⑭","tr":"Zone ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zone ⑮","tr":"Zone ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:chameliumBlock":{"0":{"oreDict":["oc:chameliumBlock"],"name":"Block of Chamelium","tr":"变色材料块","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:ice_stairs.5":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:ice_stairs.4":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:item.Yamato":{"0":{"name":"Yamato(Unsheathed)","tr":"阎魔刀(未开鞘)","tab":"TST Meta Items 1","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:witchwooddoubleslab":{"0":{"name":"Rowan Slab","tr":"山梨树台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Alder Slab","tr":"赤杨树台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hawthorn Slab","tr":"山楂树台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:ice_stairs.7":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MytrylCrystal":{"0":{"name":"Mytryl Crystal","tr":"深空秘银结晶","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:ice_stairs.6":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice Stairs","tr":"冰楼梯","tab":"凿工艺|楼梯方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:shrimpokrahushpuppiesItem":{"0":{"oreDict":["foodShrimpokrahushpuppies"],"name":"Shrimp Pork Okra Hushpuppies","tr":"虾肉秋葵玉米饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA0Stairs":{"0":{"name":"Metamorphic Forest Stone Stairs","tr":"变质森林石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:SearedSlab":{"0":{"name":"Seared Brick Slab","tr":"焦黑石砖台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Seared Stone Slab","tr":"焦黑石头台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Seared Cobblestone Slab","tr":"焦黑圆石台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Seared Paver Slab","tr":"焦黑盖板石台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Seared Road Slab","tr":"焦黑铺路石台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Seared Slab","tr":"平滑焦黑石台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Chiseled Seared Slab","tr":"方纹焦黑石台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Chiseled Seared Slab","tr":"雕琢焦黑石台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:buckets":{"0":{"name":"Molten Iron Bucket","tr":"桶装熔融铁","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Molten Gold Bucket","tr":"桶装熔融金","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Molten Copper Bucket","tr":"桶装熔融铜","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Molten Tin Bucket","tr":"桶装熔融锡","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Molten Aluminum Bucket","tr":"桶装熔融铝","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Molten Cobalt Bucket","tr":"桶装熔融钴","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Molten Ardite Bucket","tr":"桶装熔融阿迪特","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Molten Bronze Bucket","tr":"桶装熔融青铜","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Molten Aluminum Brass Bucket","tr":"桶装熔融铝黄铜","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Molten Manyullyn Bucket","tr":"桶装熔融玛玉灵","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Molten Alumite Bucket","tr":"桶装熔融耐酸铝","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Molten Obsidian Bucket","tr":"桶装熔融黑曜石","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Molten Steel Bucket","tr":"桶装熔融钢","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Molten Glass Bucket","tr":"桶装熔融玻璃","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Seared Stone Bucket","tr":"桶装熔融石头","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Liquified Emerald Bucket","tr":"桶装熔融绿宝石","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"name":"Bucket o\u0027 Blood","tr":"血桶","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Molten Nickel Bucket","tr":"桶装熔融镍","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Molten Lead Bucket","tr":"桶装熔融铅","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Molten Silver Bucket","tr":"桶装熔融银","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Molten Shiny Bucket","tr":"桶装熔融铂金","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Molten Invar Bucket","tr":"桶装熔融殷钢","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Molten Electrum Bucket","tr":"桶装熔融琥珀金","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"23":{"oreDict":["bucketEnder"],"name":"Liquified Ender Bucket","tr":"桶装熔融末影珍珠","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"24":{"name":"Liquid Slime Bucket","tr":"桶装史莱姆粘液","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Sticky Glue Bucket","tr":"桶装粘性凝胶","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"name":"Molten Pig Iron Bucket","tr":"桶装熔融生铁","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"27":{"name":"Molten Lumium Bucket","tr":"桶装熔融流明","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"28":{"name":"Molten Signalum Bucket","tr":"桶装熔融信素","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"29":{"name":"Molten Mana Infused Metal Bucket","tr":"桶装熔融蕴魔金属","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"30":{"name":"Molten Enderium Bucket","tr":"桶装熔融末影","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"31":{"name":"Molten Nether Quartz Bucket","tr":"熔融下界石英桶","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallIncoloyDS":{"0":{"oreDict":["dustSmallIncoloyDS"],"name":"小堆耐热铬铁合金-DS粉","tr":"小堆耐热铬铁合金-DS粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersPressurePlate":{"0":{"name":"Carpenter\u0027s Pressure Plate","tr":"木匠压力盘","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"WarpTheory:item.warptheory.something":{"0":{"name":"Hunk of Something","tr":"块状物","tab":"神秘扭曲学","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotAdvancedNitinol":{"0":{"oreDict":["ingotAdvancedNitinol"],"name":"高级镍钛诺锭","tr":"高级镍钛诺锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:perpetualice":{"0":{"name":"Perpetual Ice","tr":"永冻之冰","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chestnutbutterItem":{"0":{"oreDict":["foodChestnutbutter"," listAllnutbutter"],"name":"Chestnut Butter","tr":"板栗酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:part_level_terminal":{"0":{"name":"ME Level Terminal","tr":"ME库存维持终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemEnderFood":{"0":{"name":"\"Enderios\"","tr":"\"末影麦片\"","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:shovelAmethyst":{"0":{"name":"Amethyst Shovel","tr":"紫水晶铲","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":2014}},"harvestcraft:gingerbreadItem":{"0":{"oreDict":["foodGingerbread"],"name":"Ginger Bread","tr":"生姜面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:knoseSeed":{"0":{"name":"Rosa Mysteria Sprout","tr":"神秘玫瑰芽","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorOctiron":{"0":{"oreDict":["rotorOctiron"],"name":"八角铁转子","tr":"八角铁转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:stuffedpepperItem":{"0":{"oreDict":["foodStuffedpepper"],"name":"Stuffed Pepper","tr":"瓤柿子椒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.SchematicTier8":{"0":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockPhenomenon":{"0":{"name":"Phenomenon","tr":"奇迹","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockPineLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Pine Leaves","tr":"松树叶","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:crystal":{"0":{"name":"Celestial Crystal","tr":"仙域水晶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemswood":{"0":{"name":"Wooden Transport Pipe","tr":"木质管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:ropeLight":{"0":{"name":"Rope Light","tr":"霓虹灯","tab":"栈桥","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hotchocolateItem":{"0":{"oreDict":["foodHotchocolate"],"name":"Hot Chocolate","tr":"热巧克力","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateRuthenium":{"0":{"oreDict":["plateRuthenium"],"name":"钌板","tr":"钌板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockInhibitorObelisk":{"0":{"name":"Inhibitor Obelisk","tr":"传送抑制方尖碑","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:andesite":{"0":{"oreDict":["blockAndesite"," stoneAndesite"],"name":"Andesite","tr":"安山岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Andesite","tr":"安山岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Andesite","tr":"安山岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Andesite","tr":"安山岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Andesite","tr":"安山岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Andesite","tr":"安山岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Andesite","tr":"安山岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:mangoyogurtItem":{"0":{"oreDict":["foodMangoyogurt"],"name":"Mango Yogurt","tr":"芒果酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:voidstonePillar":{"0":{"name":"Voidstone Pillar","tr":"虚空石柱","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"personalspace:personalPortal":{"0":{"name":"Personal Dimension Portal","tr":"私人维度传送门","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemPowerItemFilter":{"0":{"name":"Chargeable Item Filter","tr":"充能物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:RP1Fuel":{"0":{"oreDict":["cellRP1"],"name":"RP-1火箭燃料单元","tr":"RP-1火箭燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAmmoniumNitrate":{"0":{"oreDict":["dustTinyAmmoniumNitrate"],"name":"小撮硝酸铵粉","tr":"小撮硝酸铵粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustBariteRd":{"0":{"oreDict":["dustBariteRd"],"name":"重晶石(Rd)粉","tr":"重晶石(Rd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Double_NaquadahcellDep":{"0":{"name":"枯竭二联燃料棒(硅岩)","tr":"枯竭二联燃料棒(硅岩)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"dreamcraft:tile.TungstensteelPlatedReinforcedStone":{"0":{"name":"Tungstensteel Plated Reinforced Stone","tr":"钨钢镀层防爆石","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:crystalEye":{"0":{"name":"Crystalline Eye","tr":"水晶之眼","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundLeggingsWind":{"0":{"name":"Wind Omega Leggings","tr":"风`欧米伽护腿","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"dreamcraft:item.DeimosStoneDust":{"0":{"oreDict":["dustDeimosStone"," dustDeimos"," dustSpace"],"name":"Deimos Stone Dust","tr":"火卫二尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.SchematicTier7":{"0":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemArmorNanoChestplate":{"1":{"name":"NanoSuit Bodyarmor","tr":"纳米护甲","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"NanoSuit Bodyarmor","tr":"纳米护甲","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"GalaxySpace:item.SchematicTier6":{"0":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:item.SchematicTier5":{"0":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA7SlabFull":{"0":{"name":"Metamorphic Mesa Stone Slab","tr":"变质雪原石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.DiamondCoreChip":{"0":{"name":"Item Circuit Tier II","tr":"物品电路 II","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.SchematicTier4":{"0":{"name":"NASA Workbench Schematic","tr":"NASA工作台图纸","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateArcanite":{"0":{"oreDict":["plateArcanite"],"name":"奥金板","tr":"奥金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:gearCast":{"0":{"name":"Gear Cast","tr":"齿轮铸模","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.plasmapickaxe":{"0":{"name":"Plasma Pickaxe","tr":"等离子镐","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemDustSmallLithiumFluoride":{"0":{"oreDict":["dustSmallLithiumFluoride"],"name":"小堆氟化锂粉","tr":"小堆氟化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartLargeSwordBlade":{"1536":{"name":"精金 Large Sword Blade","tr":"精金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Large Sword Blade","tr":"神秘蓝金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Large Sword Blade","tr":"琥珀 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Large Sword Blade","tr":"纯镃 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Large Sword Blade","tr":"谐镃 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Large Sword Blade","tr":"聚氯乙烯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Large Sword Blade","tr":"永恒 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Large Sword Blade","tr":"磁物质 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Large Sword Blade","tr":"赛特斯石英 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Large Sword Blade","tr":"暗影秘银 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Large Sword Blade","tr":"玄铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Large Sword Blade","tr":"戴斯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Large Sword Blade","tr":"铿铀 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Large Sword Blade","tr":"通流琥珀金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Large Sword Blade","tr":"末影粗胚 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Large Sword Blade","tr":"末影(te) 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Large Sword Blade","tr":"炽热的钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Large Sword Blade","tr":"火石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Large Sword Blade","tr":"力量 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Large Sword Blade","tr":"石墨 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Large Sword Blade","tr":"石墨烯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Large Sword Blade","tr":"注魔金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Large Sword Blade","tr":"风之魔晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Large Sword Blade","tr":"火之魔晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Large Sword Blade","tr":"地之魔晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Large Sword Blade","tr":"水之魔晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Large Sword Blade","tr":"混沌魔晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Large Sword Blade","tr":"秩序魔晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Large Sword Blade","tr":"玉 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Large Sword Blade","tr":"碧玉 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Large Sword Blade","tr":"陨铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Large Sword Blade","tr":"陨钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Large Sword Blade","tr":"硅岩 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Large Sword Blade","tr":"硅岩合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Large Sword Blade","tr":"富集硅岩 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Large Sword Blade","tr":"超能硅岩 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Large Sword Blade","tr":"下界石英 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Large Sword Blade","tr":"下界之星 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Large Sword Blade","tr":"三钛 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Large Sword Blade","tr":"虚空 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Large Sword Blade","tr":"胶木 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Large Sword Blade","tr":"幽冥剧毒结晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Large Sword Blade","tr":"强化 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Large Sword Blade","tr":"铱锇合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Large Sword Blade","tr":"阳光化合物 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Large Sword Blade","tr":"魂金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Large Sword Blade","tr":"蓝黄玉 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Large Sword Blade","tr":"黄铜 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Large Sword Blade","tr":"白铜 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Large Sword Blade","tr":"深渊铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Large Sword Blade","tr":"钻石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Large Sword Blade","tr":"琥珀金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Large Sword Blade","tr":"绿宝石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Large Sword Blade","tr":"强化混合晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Large Sword Blade","tr":"混合晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Large Sword Blade","tr":"绿色蓝宝石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Large Sword Blade","tr":"殷钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Large Sword Blade","tr":"坎塔尔合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Large Sword Blade","tr":"镁铝合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Large Sword Blade","tr":"镍铬合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Large Sword Blade","tr":"玄钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Large Sword Blade","tr":"生铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Large Sword Blade","tr":"聚乙烯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Large Sword Blade","tr":"环氧树脂 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Large Sword Blade","tr":"硅橡胶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Large Sword Blade","tr":"聚己内酰胺 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Large Sword Blade","tr":"聚四氟乙烯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Large Sword Blade","tr":"蓝宝石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Large Sword Blade","tr":"不锈钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Large Sword Blade","tr":"坦桑石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Large Sword Blade","tr":"锡铁合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Large Sword Blade","tr":"黄玉 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Large Sword Blade","tr":"哈氏合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Large Sword Blade","tr":"锻铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Large Sword Blade","tr":"铁木 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Large Sword Blade","tr":"橄榄石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Large Sword Blade","tr":"蛋白石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Large Sword Blade","tr":"紫水晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Large Sword Blade","tr":"暗影金属 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Large Sword Blade","tr":"暗影铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Large Sword Blade","tr":"暗影钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Large Sword Blade","tr":"钢叶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Large Sword Blade","tr":"骑士金属 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Large Sword Blade","tr":"标准纯银 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Large Sword Blade","tr":"玫瑰金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Large Sword Blade","tr":"黑青铜 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Large Sword Blade","tr":"铋青铜 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Large Sword Blade","tr":"黑钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Large Sword Blade","tr":"红钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Large Sword Blade","tr":"蓝钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Large Sword Blade","tr":"大马士革钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Large Sword Blade","tr":"充能合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Large Sword Blade","tr":"脉冲合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Large Sword Blade","tr":"星辰银 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Large Sword Blade","tr":"钴黄铜 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Large Sword Blade","tr":"红石榴石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Large Sword Blade","tr":"黄石榴石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Large Sword Blade","tr":"温特姆 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Large Sword Blade","tr":"黑花岗岩 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Large Sword Blade","tr":"红花岗岩 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Large Sword Blade","tr":"白石棉 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Large Sword Blade","tr":"雄黄 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Large Sword Blade","tr":"磁化铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Large Sword Blade","tr":"磁化钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Large Sword Blade","tr":"磁化钕 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Large Sword Blade","tr":"碳化钨 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Large Sword Blade","tr":"钒钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Large Sword Blade","tr":"高速钢-G 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Large Sword Blade","tr":"高速钢-E 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Large Sword Blade","tr":"高速钢-S 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Large Sword Blade","tr":"深铅 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Large Sword Blade","tr":"量子 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Large Sword Blade","tr":"深空秘银 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Large Sword Blade","tr":"黑钚 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Large Sword Blade","tr":"木卫四冰 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Large Sword Blade","tr":"硬铝 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Large Sword Blade","tr":"奥利哈钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Large Sword Blade","tr":"三元金属 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Large Sword Blade","tr":"聚苯硫醚 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Large Sword Blade","tr":"聚苯乙烯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Large Sword Blade","tr":"丁苯橡胶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Large Sword Blade","tr":"镍锌铁氧体 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Large Sword Blade","tr":"纤维强化的环氧树脂 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Large Sword Blade","tr":"磁化钐 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Large Sword Blade","tr":"无尽催化剂 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Large Sword Blade","tr":"聚苯并咪唑 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Large Sword Blade","tr":" 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Large Sword Blade","tr":"钛铂钒合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Large Sword Blade","tr":"时空 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Large Sword Blade","tr":"大理石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Large Sword Blade","tr":"神秘水晶 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Large Sword Blade","tr":"末影钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Large Sword Blade","tr":"复合粘土 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Large Sword Blade","tr":"晶化合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Large Sword Blade","tr":"旋律合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Large Sword Blade","tr":"恒星合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Large Sword Blade","tr":"晶化粉红史莱姆 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Large Sword Blade","tr":"充能银 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Large Sword Blade","tr":"生动合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Large Sword Blade","tr":"灵宝 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Large Sword Blade","tr":"超时空金属 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Large Sword Blade","tr":"活石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Large Sword Blade","tr":"盖亚之魂 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Large Sword Blade","tr":"活木 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Large Sword Blade","tr":"梦之木 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Large Sword Blade","tr":"泡铋 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Large Sword Blade","tr":"立方氧化锆 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Large Sword Blade","tr":"氟铁电气石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Large Sword Blade","tr":"铬铝电气石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Large Sword Blade","tr":"钒镁电气石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Large Sword Blade","tr":"铝电气石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Large Sword Blade","tr":"红锆石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Large Sword Blade","tr":"铁橄榄石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Large Sword Blade","tr":"镁橄榄石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Large Sword Blade","tr":"钙铁辉石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Large Sword Blade","tr":"钍-232 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Large Sword Blade","tr":"堇云石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Large Sword Blade","tr":"磁共振石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Large Sword Blade","tr":"锎 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Large Sword Blade","tr":"BArTiMaEuSNeK 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Large Sword Blade","tr":"钌 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Large Sword Blade","tr":"铑 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Large Sword Blade","tr":"镀铑钯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Large Sword Blade","tr":"泰伯利亚 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Large Sword Blade","tr":"钌铱合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Large Sword Blade","tr":"氟石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Large Sword Blade","tr":"高耐久性复合钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Large Sword Blade","tr":"硬钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Large Sword Blade","tr":"合成玉 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Large Sword Blade","tr":"原子分离催化剂 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Large Sword Blade","tr":"极不稳定硅岩 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Large Sword Blade","tr":"锌钍合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Large Sword Blade","tr":"锆锡合金-4 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Large Sword Blade","tr":"锆锡合金-2 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Large Sword Blade","tr":"耐热铬铁合金-903 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Large Sword Blade","tr":"精金合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Large Sword Blade","tr":"MAR-M200特种钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Large Sword Blade","tr":"MAR-Ce-M200特种钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Large Sword Blade","tr":"氯化锂 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Large Sword Blade","tr":"信素 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Large Sword Blade","tr":"流明 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Large Sword Blade","tr":"阿瑟锡 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Large Sword Blade","tr":"钛钼合金β-C 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Large Sword Blade","tr":"大力合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Large Sword Blade","tr":"光素 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Large Sword Blade","tr":"对立合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Large Sword Blade","tr":"稀有金属合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Large Sword Blade","tr":"富集硅岩合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Large Sword Blade","tr":"亚稳态鿫 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Large Sword Blade","tr":"调律源金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Large Sword Blade","tr":"魔钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Large Sword Blade","tr":"泰拉钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Large Sword Blade","tr":"源质钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Large Sword Blade","tr":"磁流体约束恒星物质 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Large Sword Blade","tr":"白矮星物质 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Large Sword Blade","tr":"黑矮星物质 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Large Sword Blade","tr":"宇宙素 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Large Sword Blade","tr":"铝 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Large Sword Blade","tr":"铍 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Large Sword Blade","tr":"铋 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Large Sword Blade","tr":"碳 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Large Sword Blade","tr":"铬 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Large Sword Blade","tr":"金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Large Sword Blade","tr":"铱 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Large Sword Blade","tr":"铅 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Large Sword Blade","tr":"锰 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Large Sword Blade","tr":"钼 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Large Sword Blade","tr":"钕 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Large Sword Blade","tr":"中子 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Large Sword Blade","tr":"镍 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Large Sword Blade","tr":"锇 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Large Sword Blade","tr":"钯 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Large Sword Blade","tr":"铂 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Large Sword Blade","tr":"钚-239 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Large Sword Blade","tr":"钚-241 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Large Sword Blade","tr":"银 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Large Sword Blade","tr":"钍 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Large Sword Blade","tr":"钛 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Large Sword Blade","tr":"钨 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Large Sword Blade","tr":"铀-238 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Large Sword Blade","tr":"铀-235 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Large Sword Blade","tr":"红宝石 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Large Sword Blade","tr":"红石合金 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Large Sword Blade","tr":"终末 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Large Sword Blade","tr":"导电铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Large Sword Blade","tr":"磁钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Large Sword Blade","tr":"钨钢 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Large Sword Blade","tr":"烈焰 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Large Sword Blade","tr":"脉冲铁 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Large Sword Blade","tr":"龙 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Large Sword Blade","tr":"觉醒龙 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Large Sword Blade","tr":"褐铜 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Large Sword Blade","tr":"山铜 宽剑刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateErbium":{"0":{"oreDict":["plateErbium"],"name":"铒板","tr":"铒板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingStaballoy":{"0":{"oreDict":["ringStaballoy"],"name":"贫铀合金环","tr":"贫铀合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseQuantum":{"0":{"oreDict":["plateDenseQuantum"],"name":"致密量子合金板","tr":"致密量子合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyFermium":{"0":{"oreDict":["dustTinyFermium"],"name":"小撮镄粉","tr":"小撮镄粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:WG_WoodenDevice":{"0":{"name":"Spinning Wheel","tr":"纺车","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Thaumic Snowballer","tr":"神秘造雪机","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Thaumic Stone Extruder","tr":"神秘造石机","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cutting Table","tr":"切割台","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Thaumic Sauna Stove","tr":"神秘桑拿炉","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Aspect Library","tr":"要素标记库","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Thaumic Ice Solidifier","tr":"神秘制冰机","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorPlating":{"0":{"name":"Reactor Plating","tr":"反应堆隔板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:turnipSeeds":{"0":{"oreDict":["listAllseed"," seedTurnip"],"name":"Turnip Seeds","tr":"芜青种子","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.360k_Space_Coolantcell":{"0":{"name":"360k空间冷却单元","tr":"360k空间冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"BloodArsenal:blood_cookie":{"0":{"name":"Blood Cookie","tr":"染血曲奇","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IrradiantReinforcedBedrockiumPlate":{"0":{"name":"Irradiant Reinforced Bedrockium Plate","tr":"光辉强化基岩铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:dreamwood0Slab":{"0":{"name":"Dreamwood Slab","tr":"梦之木台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_north_unlit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA15Stairs":{"0":{"name":"Metamorphic Mesa Cobblestone Stairs","tr":"变质高原圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemStaticBoots":{"0":{"name":"Static Boots","tr":"静电靴","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":430}},"harvestcraft:leafygarden":{"0":{"name":"Leafy Garden","tr":"多叶菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:transference_gem":{"0":{"name":"Transference Gem","tr":"传送宝石","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":205}},"BiblioCraft:BiblioIronLamp":{"0":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fancy Lamp","tr":"精致灯具","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundPlateWater":{"0":{"name":"Water Omega Plate","tr":"水`欧米伽胸甲","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"appliedenergistics2:item.ItemAdvancedStorageCell.256k":{"0":{"name":"256k ME Storage Cell","tr":"256k-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemHotIngotBotmium":{"0":{"oreDict":["ingotHotBotmium"],"name":"热博特姆合金锭","tr":"热博特姆合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltWhiteMetal":{"0":{"oreDict":["boltWhiteMetal"],"name":"白物质螺栓","tr":"白物质螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:californiarollItem":{"0":{"oreDict":["foodCaliforniaroll"],"name":"California Roll","tr":"加州卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:dry_splinter":{"0":{"name":"Dry Splinter","tr":"干燥碎片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:waraxe.diamond":{"0":{"name":"Diamond Waraxe","tr":"钻石战斧","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":3123}},"berriespp:itemLens":{"0":{"name":"Plant Lens","tr":"植物透镜","tab":"更多作物","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:oreFlorencite":{"0":{"oreDict":["oreFlorencite"],"name":"Florencite Ore","tr":"磷铝铈矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:iceCream":{"0":{"name":"Chocolate Ice Cream","tr":"巧克力冰淇淋","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_magenta":{"0":{"name":"Magenta Curtain","tr":"品红色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:carriage_door":{"0":{"name":"Carriage Door","tr":"宅门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.energyUpgrade":{"0":{"name":"Energy Upgrade","tr":"能量升级","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseZirconium":{"0":{"oreDict":["plateDenseZirconium"],"name":"致密锆板","tr":"致密锆板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAlburnite":{"0":{"oreDict":["dustSmallAlburnite"],"name":"小堆硫碲金锗矿粉","tr":"小堆硫碲金锗矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledGrossular":{"0":{"oreDict":["milledGrossular"],"name":"Milled Grossular","tr":"研磨钙铝榴石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemDestinationClearer":{"0":{"name":"Alchemic Cleanser","tr":"炼金清通器","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"EMT:ThaumiumWing":{"0":{"name":"Thaumium Reinforced Wings","tr":"神秘强化羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":251}},"GalaxySpace:ioTChestT5":{"0":{"name":"Treasure Chest Tier 4","tr":"4阶宝箱","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:railGunTurret":{"0":{"name":"Rail Gun Turret","tr":"磁轨炮炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:potatosaladItem":{"0":{"oreDict":["foodPotatosalad"],"name":"Potato Salad","tr":"土豆沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockEntitySignal":{"0":{"name":"Signum Entia","tr":"生物感应器","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:item.itemBufferCore8":{"0":{"oreDict":["bufferCore_ZPM"],"name":"Energy Core [ZPM].","tr":"能量核心 [ZPM]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"BloodArsenal:blood_infused_diamond_bound":{"0":{"name":"Bound Diamond","tr":"约束钻石","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:item.itemBufferCore9":{"0":{"oreDict":["bufferCore_UV"],"name":"Energy Core [UV].","tr":"能量核心 [UV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"Botany:flowerbed":{"0":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:machineframes":{"0":{"name":"Advanced Machine Frame","tr":"改良的机械框架","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedUranium":{"0":{"name":"Fuel Rod (High Density Uranium)","tr":"燃料棒(浓缩铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:dustPureLepersonnite":{"0":{"oreDict":["dustPureLepersonnite"],"name":"Purified Lepersonnite Dust","tr":"洁净绿泥石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.detrav.metatool.01":{"0":{"oreDict":["craftingToolProspector"],"name":"探矿仪(ULV)","tr":"探矿仪(ULV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"oreDict":["craftingToolProspector"],"name":"探矿仪(LV)","tr":"探矿仪(LV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"oreDict":["craftingToolProspector"],"name":"探矿仪(MV)","tr":"探矿仪(MV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"100":{"oreDict":["craftingToolElectricProspector"],"name":"电子探矿仪(LuV)","tr":"电子探矿仪(LuV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"oreDict":["craftingToolProspector"],"name":"探矿仪(HV)","tr":"探矿仪(HV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"102":{"oreDict":["craftingToolElectricProspector"],"name":"电子探矿仪(ZPM)","tr":"电子探矿仪(ZPM)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"oreDict":["craftingToolProspector"],"name":"探矿仪(EV)","tr":"探矿仪(EV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"104":{"oreDict":["craftingToolElectricProspector"],"name":"电子探矿仪(UV)","tr":"电子探矿仪(UV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"oreDict":["craftingToolProspector"],"name":"探矿仪(IV)","tr":"探矿仪(IV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"106":{"oreDict":["craftingToolElectricProspector"],"name":"电子探矿仪(UHV)","tr":"电子探矿仪(UHV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"oreDict":["craftingToolProspector"],"name":"探矿仪(LuV)","tr":"探矿仪(LuV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"oreDict":["craftingToolProspector"],"name":"探矿仪(ZPM)","tr":"探矿仪(ZPM)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"oreDict":["craftingToolProspector"],"name":"探矿仪(UV)","tr":"探矿仪(UV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"oreDict":["craftingToolProspector"],"name":"探矿仪(UHV)","tr":"探矿仪(UHV)","tab":"itemGroup.Detrav Scanner","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:sunflowerwheatrollsItem":{"0":{"oreDict":["foodSunflowerwheatrolls"],"name":"Sunflower Wheat Rolls","tr":"瓜子蛋糕卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallDirt":{"0":{"oreDict":["dustSmallDirt"],"name":"小堆干土粉","tr":"小堆干土粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_AdvancedScribingTools":{"0":{"oreDict":["scribingTools"],"name":"Illuminated Scribing Tools","tr":"发光笔与墨","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1001}},"dreamcraft:item.MoldFormCasing":{"0":{"name":"Casting Form (Casing Mold)","tr":"铸件(外壳)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockCrafter":{"0":{"name":"Crafter","tr":"装配器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:terrasteelHelmReveal":{"0":{"name":"Terrasteel Helmet of Revealing","tr":"泰拉钢揭示头盔","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":375}},"harvestcraft:pamcucumberCrop":{"0":{"name":"Cucumber Crop","tr":"黄瓜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:autoHandMirror":{"0":{"name":"Hungry Hand Mirror","tr":"饕餮手镜","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:mustardseedsItem":{"0":{"oreDict":["listAllspice"," cropMustard"],"name":"Mustard Seeds","tr":"芥末种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:fluidPahoehoeLava":{"0":{"name":"Pahoehoe Lava","tr":"熔岩岩浆","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:fishtrapbaitItem":{"0":{"oreDict":["fishtrapBait"],"name":"Fish Trap Bait","tr":"鱼饵","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"JABBA:tuningFork":{"0":{"name":"B-Space tuning fork","tr":"B空间音叉","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":31}},"TConstruct:ShortBow":{"0":{"name":"§f山铜 短弓","tr":"§f山铜 短弓","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"Natura:fenceGate.fusewood":{"0":{"oreDict":["fenceGateWood"],"name":"Fusewood Fence Gate","tr":"熔融树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.gift":{"0":{"name":"Gift Cart","tr":"礼物车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"thaumicbases:advAlchFurnace":{"0":{"name":"Thaumium Alchemical Furnace","tr":"神秘炼金炉","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:corporeaSpark":{"0":{"name":"Corporea Spark","tr":"多媒体火花","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Master Corporea Spark","tr":"主媒体火花","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinTechnicianIII":{"0":{"name":"Coin \"The Technician 1000\"","tr":"技术员币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.droneStation":{"0":{"name":"Drone Docking Station","tr":"无人机停靠站","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHastelloyX":{"0":{"oreDict":["nuggetHastelloyX"],"name":"哈斯特洛依合金-X粒","tr":"哈斯特洛依合金-X粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHastelloyW":{"0":{"oreDict":["nuggetHastelloyW"],"name":"哈斯特洛依合金-W粒","tr":"哈斯特洛依合金-W粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.tinStairs2":{"0":{"name":"Tin Decoration Stairs","tr":"装饰锡制楼梯","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockEnderIo":{"0":{"name":"Ender IO","tr":"末影接口","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.tinStairs1":{"0":{"name":"Tin Decoration Stairs","tr":"装饰锡制楼梯","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockHyperCube":{"0":{"name":"Dimensional Transceiver (Deprecated)","tr":"空间传送器(弃用)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:heraldric":{"0":{"name":"Heraldic Icon","tr":"纹章图标","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedCentrifugedRadioactiveMineralMix":{"0":{"oreDict":["crushedCentrifugedRadioactiveMineralMix"],"name":"Centrifuged Crushed Strange Ore","tr":"离心奇异矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHG1223":{"0":{"oreDict":["dustTinyHG1223"],"name":"小撮HG-1223粉","tr":"小撮HG-1223粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLafossaite":{"0":{"oreDict":["dustTinyLafossaite"],"name":"小撮铊盐粉","tr":"小撮铊盐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedClay":{"0":{"name":"Crated Clay","tr":"装箱的粘土","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorSiliconCarbide":{"0":{"oreDict":["rotorSiliconCarbide"],"name":"碳化硅转子","tr":"碳化硅转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHastelloyN":{"0":{"oreDict":["nuggetHastelloyN"],"name":"哈斯特洛依合金-N粒","tr":"哈斯特洛依合金-N粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockVat":{"0":{"name":"The Vat","tr":"酿液桶","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreYttrocerite":{"0":{"oreDict":["oreYttrocerite"],"name":"Yttrocerite Ore","tr":"铈钇矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.OberonStoneDust":{"0":{"oreDict":["dustSpace"," dustOberonStone"," dustOberon"],"name":"Oberon Stone Dust","tr":"天卫四尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilAdvancedNitinol":{"0":{"oreDict":["foilAdvancedNitinol"],"name":"高级镍钛诺箔","tr":"高级镍钛诺箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MytrylDust":{"0":{"oreDict":["dustMytryl"],"name":"Mytryl Dust","tr":"深空秘银粉","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorclothLegs":{"0":{"name":"Ichorcloth Leggings","tr":"灵布护腿","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pampaperbarkSapling":{"0":{"name":"Paperbark Sapling","tr":"白千层树树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GraviSuite:itemSimpleItem":{"0":{"name":"Superconductor Cover","tr":"Superconductor Cover","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["itemSuperconductor"],"name":"Superconductor","tr":"Superconductor","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Cooling Core","tr":"Cooling Core","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Gravitation Engine","tr":"Gravitation Engine","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Magnetron","tr":"Magnetron","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Vajra Core","tr":"Vajra Core","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Engine Booster","tr":"Engine Booster","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Antidote Nanobots [WIP]","tr":"解毒纳米机器人 [WIP]","tab":"重力护甲","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:gt.blockcasingsTT":{"0":{"name":"High Power Casing","tr":"超能机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Computer Casing","tr":"电子计算机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"计算机散热风扇","tr":"计算机散热风扇","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Advanced Computer Casing","tr":"进阶电子计算机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Molecular Casing","tr":"分子机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Advanced Molecular Casing","tr":"进阶分子机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Containment Field Generator","tr":"遏制场发生器","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Molecular Coil","tr":"分子线圈","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hollow Casing","tr":"中空机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Spacetime Altering Casing","tr":"时空扭曲机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Teleportation Casing","tr":"传输机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Dimensional Bridge Generator","tr":"维度联络机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Ultimate Molecular Casing","tr":"终极分子机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Ultimate Advanced Molecular Casing","tr":"究极分子机械方块","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Ultimate Containment Field Generator","tr":"终极遏制场发生器","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Debug Sides","tr":"[调试方块]","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetBabbitAlloy":{"0":{"oreDict":["nuggetBabbitAlloy"],"name":"巴氏合金粒","tr":"巴氏合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TravellersGear:armorstand":{"0":{"name":"Armor Stand","tr":"衣架","tab":"旅行者的装备栏","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:cartographer":{"0":{"name":"Cartographer","tr":"制图机器人","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:vegetablesoupItem":{"0":{"oreDict":["foodVegetablesoup"],"name":"Vegetable Soup","tr":"蔬菜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapePlate":{"0":{"name":"Casting Form (Plate Shape)","tr":"铸形(板)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingBlackMetal":{"0":{"oreDict":["ringBlackMetal"],"name":"黑物质环","tr":"黑物质环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:obsidian_special_glow":{"0":{"name":"Smooth Glowing Obsidian","tr":"平滑发光黑曜石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Glowing Obsidian","tr":"錾制发光黑曜石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Glowing Obsidian Pillar","tr":"发光黑曜石柱","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Factory:blockHopper":{"0":{"name":"Chute","tr":"料斗","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"kekztech:kekztech_ichorjar_block":{"0":{"name":"Ichor Jar","tr":"灵液源质罐子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ichor Void Jar","tr":"灵液虚空罐子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTriniumTitaniumAlloy":{"0":{"oreDict":["dustSmallTriniumTitaniumAlloy"],"name":"小堆三元钛合金粉","tr":"小堆三元钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockKnowledgeBook":{"0":{"name":"Book of Knowledge","tr":"知识之书","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:orangechickenItem":{"0":{"oreDict":["foodOrangechicken"],"name":"Orange Chicken","tr":"陈皮鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:holyCloak":{"0":{"name":"Cloak of Virtue","tr":"神圣斗篷","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BiblioCraft:BiblioFlatPainting":{"0":{"name":"Oak Painting Frame","tr":"橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Painting Frame","tr":"云杉画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Painting Frame","tr":"桦木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Painting Frame","tr":"丛林木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Painting Frame","tr":"深色橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Painting Frame","tr":"镶框画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chickennoodlesoupItem":{"0":{"oreDict":["foodChickennoodlesoup"],"name":"Chicken Noodle Soup","tr":"鸡肉面条汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:Mutatron":{"0":{"name":"Mutatron","tr":"诱变机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryShortMead":{"0":{"name":"Short Mead Capsule","tr":"蜂蜜酒胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:item.itemBufferCore6":{"0":{"oreDict":["bufferCore_IV"],"name":"Energy Core [IV].","tr":"能量核心 [IV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"computronics:computronics.tape":{"0":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Cassette Tape","tr":"盒式磁带","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Intergalactical CDVR","tr":"泛银河系CDVR","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1}},"OpenBlocks:craneBackpack":{"0":{"name":"Crane Backpack","tr":"起重机背包","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:item.itemBufferCore7":{"0":{"oreDict":["bufferCore_LuV"],"name":"Energy Core [LuV].","tr":"能量核心 [LuV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"miscutils:itemSpringEglinSteel":{"0":{"oreDict":["springEglinSteel"],"name":"埃格林钢弹簧","tr":"埃格林钢弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:item.itemBufferCore4":{"0":{"oreDict":["bufferCore_HV"],"name":"Energy Core [HV].","tr":"能量核心 [HV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"miscutils:item.itemBufferCore5":{"0":{"oreDict":["bufferCore_EV"],"name":"Energy Core [EV].","tr":"能量核心 [EV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"miscutils:itemDustLithiumHydroxide":{"0":{"oreDict":["dustLithiumHydroxide"],"name":"氢氧化锂粉","tr":"氢氧化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:item.itemBufferCore2":{"0":{"oreDict":["bufferCore_LV"],"name":"Energy Core [LV].","tr":"能量核心 [LV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"Automagy:blockBoiler":{"0":{"name":"Alchemical Boiler","tr":"炼金锅炉","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FrothPentlanditeflotation":{"0":{"oreDict":["cellPentlanditeFroth"],"name":"镍黄铁泡沫单元","tr":"镍黄铁泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:item.itemBufferCore3":{"0":{"oreDict":["bufferCore_MV"],"name":"Energy Core [MV].","tr":"能量核心 [MV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"miscutils:item.itemBufferCore1":{"0":{"oreDict":["bufferCore_ULV"],"name":"Energy Core [ULV].","tr":"能量核心 [ULV]","tab":"GT++机器","type":"Item","maxStackSize":32,"maxDurability":101}},"ExtraUtilities:divisionSigil":{"0":{"name":"Pseudo-Inversion Sigil","tr":"伪逆徽章","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockFishTrap":{"0":{"name":"Fish Catcher","tr":"捕鱼者","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellAbyssalAlloy":{"0":{"oreDict":["cellAbyssalAlloy"],"name":"深渊合金单元","tr":"深渊合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolHoe":{"1":{"name":"Electric Hoe","tr":"电动锄","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Electric Hoe","tr":"电动锄","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"Forestry:ingotBronze":{"0":{"oreDict":["ingotBronze"," ingotAnyBronze"],"name":"Bronze Ingot","tr":"青铜锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:goldGearItem":{"0":{"oreDict":["gearGold"],"name":"Gold Gear","tr":"金齿轮","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:broadsword":{"0":{"name":"§f山铜 大剑","tr":"§f山铜 大剑","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"TConstruct:leggingsWood":{"0":{"name":"Wooden Leggings","tr":"木护腿","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":31}},"chisel:obsidian_snakestone":{"1":{"name":"Obsidian Snakestone","tr":"蛇纹黑曜石","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Obsidian Snakestone","tr":"蛇纹黑曜石","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemKatana":{"0":{"name":"Thaumium Fortress Blade","tr":"神秘要塞之刃","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Voidmetal Fortress Blade","tr":"虚空要塞之刃","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Shadowmetal Fortress Blade","tr":"暗影要塞之刃","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:item.oxygenTankUltraHeavyFull":{"0":{"name":"Ultra Heavy Oxygen Tank","tr":"极大型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":16001},"16000":{"name":"Ultra Heavy Oxygen Tank","tr":"极大型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":16001}},"miscutils:itemNuggetStrontium":{"0":{"oreDict":["nuggetStrontium"],"name":"锶粒","tr":"锶粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:misc":{"0":{"name":"Ash Powder","tr":"灰烬粉","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Pulp Powder","tr":"木浆粉","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Mulch Powder","tr":"覆盖物粉","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Sulphur Powder","tr":"硫磺粉","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Fertilizer Powder","tr":"肥料粉","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Compost Powder","tr":"堆肥粉","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Mortar","tr":"研钵","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Weedkiller","tr":"除草剂","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SteelBars":{"0":{"oreDict":["barsSteel"],"name":"Steel Bars","tr":"钢栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodPotin":{"0":{"oreDict":["stickPotin"],"name":"粗青铜合金杆","tr":"粗青铜合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:breadedporkchopItem":{"0":{"oreDict":["foodBreadedporkchop"],"name":"Breaded Porkchop","tr":"猪排面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.fixture.inv":{"0":{"name":"Inverted White Fixture","tr":"反相白色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Inverted Orange Fixture","tr":"反相橙色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Inverted Magenta Fixture","tr":"反相品红色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Inverted Light Blue Fixture","tr":"反相淡蓝色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Inverted Yellow Fixture","tr":"反相黄色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Inverted Lime Fixture","tr":"反相黄绿色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Inverted Pink Fixture","tr":"反相粉色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Inverted Grey Fixture","tr":"反相灰色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Inverted Light Grey Fixture","tr":"反相淡灰色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Inverted Cyan Fixture","tr":"反相青色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Inverted Purple Fixture","tr":"反相紫色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Inverted Blue Fixture","tr":"反相蓝色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Inverted Brown Fixture","tr":"反相棕色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Inverted Green Fixture","tr":"反相绿色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Inverted Red Fixture","tr":"反相红色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Inverted Black Fixture","tr":"反相黑色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemNuggetChicken":{"0":{"name":"Chicken Nugget","tr":"鸡肉粒","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseTriniumTitaniumAlloy":{"0":{"oreDict":["plateDenseTriniumTitaniumAlloy"],"name":"致密三元钛合金板","tr":"致密三元钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedGreenockite":{"0":{"oreDict":["crushedGreenockite"],"name":"Crushed Greenockite Ore","tr":"粉碎的硫镉矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.silverbell":{"0":{"oreDict":["buttonWood"],"name":"Silverbell Button","tr":"银铃树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:paneerItem":{"0":{"oreDict":["foodPaneer"],"name":"Paneer","tr":"印度干酪","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemNugget":{"0":{"oreDict":["nuggetAnyIron"," nuggetIron"],"name":"Iron Nugget","tr":"铁粒","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["clusterIron"],"name":"Native Iron Cluster","tr":"铁原矿簇","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["nuggetMercury"],"name":"Quicksilver Drop","tr":"水银液滴","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["clusterCinnabar"],"name":"Native Cinnabar Cluster","tr":"朱砂原矿簇","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["nuggetThaumium"],"name":"Thaumium Nugget","tr":"神秘粒","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["nuggetVoid"],"name":"Void metal Nugget","tr":"虚空金属粒","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["clusterGold"],"name":"Native Gold Cluster","tr":"金原矿簇","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongGrisium":{"0":{"oreDict":["stickLongGrisium"],"name":"长灰钛合金杆","tr":"长灰钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"berriespp:Modifier":{"0":{"name":"Space Flower","tr":"空间之花(产出uum)","tab":"更多作物","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Magic Essence","tr":"源质","tab":"更多作物","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Certificate of not being a noob anymore","tr":"不再是菜鸟的证明","tab":"更多作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.redwood":{"0":{"oreDict":["pressurePlateWood"],"name":"Redwood Pressure Plate","tr":"红木树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:plumsmoothieItem":{"0":{"oreDict":["foodPlumsmoothie"," listAllsmoothie"],"name":"Plum Smoothie","tr":"李子冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockThaumostaticPylon":{"0":{"name":"Thaumostatic Pylon","tr":"奥法能量柱","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Thaumostatic Controller","tr":"奥法控制器","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:fluid.creosote.can":{"0":{"name":"Creosote Can","tr":"杂酚油罐","tab":"","type":"Item","maxStackSize":16,"maxDurability":1}},"dreamcraft:dreamcraft_Ammonia":{"0":{"name":"Ammonia","tr":"氨气","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateThorium232":{"0":{"oreDict":["plateThorium232"],"name":"钍-232板","tr":"钍-232板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:BootsTraveller":{"0":{"name":"Boots of the Traveler","tr":"旅行者之靴","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":351}},"TConstruct:slime.channel":{"0":{"name":"Slime Channel","tr":"史莱姆通道","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:quiverofmog":{"0":{"name":"Mog\u0027s Quiver","tr":"莫哥箭囊","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"IC2:plasmaLauncher":{"1":{"name":"ic2.plasmaLauncher","tr":"ic2.plasmaLauncher","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"ic2.plasmaLauncher","tr":"ic2.plasmaLauncher","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemRingOctiron":{"0":{"oreDict":["ringOctiron"],"name":"八角铁环","tr":"八角铁环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:herbbutterparsnipsItem":{"0":{"oreDict":["foodHerbbutterparsnips"],"name":"Herb Butter Parsnips","tr":"香草黄油防风草","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAstralTitanium":{"0":{"oreDict":["dustTinyAstralTitanium"],"name":"小撮星体钛粉","tr":"小撮星体钛粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFarmerII":{"0":{"name":"Coin \"The Farmer 100\"","tr":"农民币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.factory_door":{"0":{"name":"Factory Door","tr":"工厂门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:springsaladItem":{"0":{"oreDict":["foodSpringsalad"],"name":"Spring Salad","tr":"蔬菜沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFarmerIV":{"0":{"name":"Coin \"The Farmer 10K\"","tr":"农民币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:iceslippers":{"0":{"name":"Icy Slippers","tr":"冰鞋","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":66}},"miscutils:blockBlockTantalumCarbide":{"0":{"oreDict":["blockTantalumCarbide"],"name":"碳化钽块","tr":"碳化钽块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampearSapling":{"0":{"name":"Pear Sapling","tr":"梨树树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zestBlock":{"0":{"name":"Zest ⓪","tr":"Zest ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zest ①","tr":"Zest ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zest ②","tr":"Zest ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zest ③","tr":"Zest ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zest ④","tr":"Zest ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zest ⑤","tr":"Zest ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zest ⑥","tr":"Zest ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zest ⑦","tr":"Zest ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zest ⑧","tr":"Zest ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zest ⑨","tr":"Zest ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zest ⑩","tr":"Zest ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zest ⑪","tr":"Zest ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zest ⑫","tr":"Zest ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zest ⑬","tr":"Zest ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zest ⑭","tr":"Zest ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zest ⑮","tr":"Zest ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Double_Thoriumcell":{"0":{"name":"二联燃料棒(钍)","tr":"二联燃料棒(钍)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"harvestcraft:peppercornItem":{"0":{"oreDict":["cropPeppercorn"],"name":"Peppercorn","tr":"胡椒","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockMiningExplosives":{"0":{"name":"Mining Explosives","tr":"矿用炸药","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateHG1223":{"0":{"oreDict":["plateHG1223"],"name":"HG-1223板","tr":"HG-1223板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:item.frenziedFrame":{"0":{"name":"Maddening Frame of Frenzy","tr":"狂热框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":2}},"TwilightForest:item.plateNaga":{"0":{"name":"Naga Scale Tunic","tr":"娜迦胸甲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":337}},"harvestcraft:pamceleryCrop":{"0":{"name":"Celery Crop","tr":"芹菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AdsorptionFilter":{"0":{"name":"Absorption Filter","tr":"吸附过滤器","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:part.turbine.blade":{"0":{"name":"Turbine Blade","tr":"涡轮机轮叶","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemFocusMeteorology":{"0":{"name":"Wand Focus: Meteorology","tr":"法杖核心:天气","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:slime_boots":{"0":{"name":"Slime Boots","tr":"史莱姆靴子","tab":"匠魂小工具","type":"Item","maxStackSize":1,"maxDurability":101}},"harvestcraft:pampersimmonSapling":{"0":{"name":"Persimmon Sapling","tr":"柿子树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaChromaticGlass":{"0":{"oreDict":["cellPlasmaChromaticGlass"],"name":"彩色玻璃等离子体单元","tr":"彩色玻璃等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedplate":{"10112":{"oreDict":["plateShirabon"],"name":"调律源金板","tr":"调律源金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plateBismutite"],"name":"泡铋板","tr":"泡铋板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plateZirconium"],"name":"锆板","tr":"锆板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plateCubicZirconia"],"name":"立方氧化锆板","tr":"立方氧化锆板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plateFluor-Buergerite"],"name":"氟铁电气石板","tr":"氟铁电气石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plateChromo-Alumino-Povondraite"],"name":"铬铝电气石板","tr":"铬铝电气石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plateVanadio-Oxy-Dravite"],"name":"钒镁电气石板","tr":"钒镁电气石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["plateOlenite"],"name":"铝电气石板","tr":"铝电气石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["plateRedZircon"],"name":"红锆石板","tr":"红锆石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["plateSalt"],"name":"盐板","tr":"盐板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["plateSpodumene"],"name":"锂辉石板","tr":"锂辉石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["plateRockSalt"],"name":"岩盐板","tr":"岩盐板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["plateFayalite"],"name":"铁橄榄石板","tr":"铁橄榄石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["plateForsterite"],"name":"镁橄榄石板","tr":"镁橄榄石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["plateHedenbergite"],"name":"钙铁辉石板","tr":"钙铁辉石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["plateThorium232"],"name":"钍-232板","tr":"钍-232板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["platePrasiolite"],"name":"堇云石板","tr":"堇云石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["plateMagnetoResonatic"],"name":"磁共振石板","tr":"磁共振石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["plateAtomicSeparationCatalyst"],"name":"原子分离催化剂板","tr":"原子分离催化剂板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["plateCalifornium"],"name":"锎板","tr":"锎板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["plateOrundum"],"name":"合成玉板","tr":"合成玉板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["plateCalcium"],"name":"钙板","tr":"钙板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["plateExtremelyUnstableNaquadah"],"name":"极不稳定硅岩板","tr":"极不稳定硅岩板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["plateBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK板","tr":"BArTiMaEuSNeK板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["platePTMEGElastomer"],"name":"PTMEG橡胶板","tr":"PTMEG橡胶板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["plateRuthenium"],"name":"钌板","tr":"钌板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["plateZn-ThAlloy"],"name":"锌钍合金板","tr":"锌钍合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["plateRhodium"],"name":"铑板","tr":"铑板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["plateRhodium-PlatedPalladium"],"name":"镀铑钯板","tr":"镀铑钯板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["plateTiberium"],"name":"泰伯利亚板","tr":"泰伯利亚板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["plateRuridit"],"name":"钌铱合金板","tr":"钌铱合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["plateFluorspar"],"name":"氟石板","tr":"氟石板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["plateHighDurabilityCompoundSteel"],"name":"高耐久性复合钢板","tr":"高耐久性复合钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["plateAdemicSteel"],"name":"硬钢板","tr":"硬钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["plateZircaloy-4"],"name":"锆锡合金-4板","tr":"锆锡合金-4板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["plateZircaloy-2"],"name":"锆锡合金-2板","tr":"锆锡合金-2板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["plateIncoloy-903"],"name":"耐热铬铁合金-903板","tr":"耐热铬铁合金-903板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["plateAdamantiumAlloy"],"name":"精金合金板","tr":"精金合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["plateFluorophlogopite"],"name":"氟金云母板","tr":"氟金云母板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["plateCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)板","tr":"掺铈镥铝石榴石 (Ce:LuAG)板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["plateMagnesia"],"name":"氧化镁板","tr":"氧化镁板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["plateMAR-M200Steel"],"name":"MAR-M200特种钢板","tr":"MAR-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["plateMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢板","tr":"MAR-Ce-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["plateLithiumChloride"],"name":"氯化锂板","tr":"氯化锂板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["plateSignalium"],"name":"信素板","tr":"信素板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["plateLumiium"],"name":"流明板","tr":"流明板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["plateArtherium-Sn"],"name":"阿瑟锡板","tr":"阿瑟锡板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["plateTanmolyiumBeta-C"],"name":"钛钼合金β-C板","tr":"钛钼合金β-C板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["plateDalisenite"],"name":"大力合金板","tr":"大力合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["plateHafnium"],"name":"铪板","tr":"铪板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["plateHikarium"],"name":"光素板","tr":"光素板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["plateTairitsu"],"name":"对立合金板","tr":"对立合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["platePreciousMetalsAlloy"],"name":"稀有金属合金板","tr":"稀有金属合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["plateEnrichedNaquadahAlloy"],"name":"富集硅岩合金板","tr":"富集硅岩合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["plateMetastableOganesson"],"name":"亚稳态鿫板","tr":"亚稳态鿫板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["plateZirconium"],"name":"锆板","tr":"锆板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolateicecreamItem":{"0":{"oreDict":["foodChocolateicecream"],"name":"Chocolate Ice Cream","tr":"巧克力冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:item":{"0":{"oreDict":["oc:analyzer"],"name":"Analyzer","tr":"分析器","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oc:ram1"],"name":"Memory (Tier 1)","tr":"T1内存","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oc:ram3"],"name":"Memory (Tier 2)","tr":"T2内存","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oc:ram4"],"name":"Memory (Tier 2.5)","tr":"T2.5内存","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oc:floppy"],"name":"Floppy Disk","tr":"软盘","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oc:hdd1"],"name":"Hard Disk Drive (Tier 1) (1MB)","tr":"T1硬盘 (1MB)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oc:hdd2"],"name":"Hard Disk Drive (Tier 2) (2MB)","tr":"T2硬盘 (2MB)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["oc:hdd3"],"name":"Hard Disk Drive (Tier 3) (4MB)","tr":"T3硬盘 (4MB)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oc:graphicsCard1"],"name":"Graphics Card (Tier 1)","tr":"T1显卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["oc:graphicsCard2"],"name":"Graphics Card (Tier 2)","tr":"T2显卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["oc:graphicsCard3"],"name":"Graphics Card (Tier 3)","tr":"T3显卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["oc:lanCard"],"name":"Network Card","tr":"网卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["oc:redstoneCard2"],"name":"Redstone Card (Tier 2)","tr":"T2红石卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["oc:wlanCard"," oc:wlanCard2"],"name":"Wireless Network Card (Tier 2)","tr":"T2无线网卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["oc:craftingUpgrade"],"name":"Crafting Upgrade","tr":"合成升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["oc:generatorUpgrade"],"name":"Generator Upgrade","tr":"发电机升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["oc:materialAcid"],"name":"Grog","tr":"蚀刻药水","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["oc:materialDisk"],"name":"Disk Platter","tr":"盘片","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["oc:circuitChip1"],"name":"Microchip (Tier 1)","tr":"T1微芯片","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["oc:circuitChip2"],"name":"Microchip (Tier 2)","tr":"T2微芯片","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["oc:circuitChip3"],"name":"Microchip (Tier 3)","tr":"T3微芯片","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["oc:materialALU"],"name":"Arithmetic Logic Unit (ALU)","tr":"算术逻辑单元(ALU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["oc:materialCU"],"name":"Control Unit (CU)","tr":"控制单元(CU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["oc:cpu1"],"name":"Central Processing Unit (CPU) (Tier 1)","tr":"T1中央处理器(CPU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["oc:materialCard"],"name":"Card Base","tr":"扩展卡基板","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["oc:solarGeneratorUpgrade"],"name":"Solar Generator Upgrade","tr":"太阳能发电机升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["oc:signUpgrade"],"name":"Sign I/O Upgrade","tr":"告示牌读写升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["oc:navigationUpgrade"],"name":"Navigation Upgrade","tr":"导航升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["oc:ram5"],"name":"Memory (Tier 3)","tr":"T3内存","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["oc:ram6"],"name":"Memory (Tier 3.5)","tr":"T3.5内存","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["oc:server3"],"name":"Server (Tier 3)","tr":"T3服务器","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"41":{"oreDict":["oc:terminal"],"name":"Remote Terminal","tr":"远程终端","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"42":{"oreDict":["oc:cpu2"],"name":"Central Processing Unit (CPU) (Tier 2)","tr":"T2中央处理器(CPU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["oc:cpu3"],"name":"Central Processing Unit (CPU) (Tier 3)","tr":"T3中央处理器(CPU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["oc:internetCard"],"name":"Internet Card","tr":"因特网卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["oc:server1"],"name":"Server (Tier 1)","tr":"T1服务器","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"46":{"oreDict":["oc:server2"],"name":"Server (Tier 2)","tr":"T2服务器","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"48":{"oreDict":["oc:materialInterweb"],"name":"Interweb","tr":"因特网","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["oc:angelUpgrade"],"name":"Angel Upgrade","tr":"天使方块升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"oreDict":["oc:ram2"],"name":"Memory (Tier 1.5)","tr":"T1.5内存","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["oc:linkedCard"],"name":"Linked Card","tr":"连接卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["oc:experienceUpgrade"],"name":"Experience Upgrade","tr":"经验升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["oc:inventoryUpgrade"],"name":"Inventory Upgrade","tr":"物品栏升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["oc:upgradeContainer1"],"name":"Upgrade Container (Tier 1)","tr":"T1升级组件插槽","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["oc:upgradeContainer2"],"name":"Upgrade Container (Tier 2)","tr":"T2升级组件插槽","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["oc:upgradeContainer3"],"name":"Upgrade Container (Tier 3)","tr":"T3升级组件插槽","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["oc:cardContainer1"],"name":"Card Container (Tier 1)","tr":"T1扩展卡插槽","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["oc:cardContainer2"],"name":"Card Container (Tier 2)","tr":"T2扩展卡插槽","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["oc:cardContainer3"],"name":"Card Container (Tier 3)","tr":"T3扩展卡插槽","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"oreDict":["oc:inventoryControllerUpgrade"],"name":"Inventory Controller Upgrade","tr":"物品栏交互升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["oc:chunkloaderUpgrade"],"name":"Chunkloader Upgrade","tr":"区块加载升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["oc:batteryUpgrade1"],"name":"Battery Upgrade (Tier 1)","tr":"T1电池升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":101},"64":{"oreDict":["oc:batteryUpgrade2"],"name":"Battery Upgrade (Tier 2)","tr":"T2电池升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":101},"65":{"oreDict":["oc:batteryUpgrade3"],"name":"Battery Upgrade (Tier 3)","tr":"T3电池升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":101},"66":{"oreDict":["oc:redstoneCard1"],"name":"Redstone Card (Tier 1)","tr":"T1红石卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"oreDict":["oc:tractorBeamUpgrade"],"name":"Tractor Beam Upgrade","tr":"牵引光束升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"name":"Tablet","tr":"平板电脑","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":10001},"69":{"name":"Server (Tier 4)","tr":"T4服务器","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"70":{"oreDict":["oc:componentBus1"],"name":"Component Bus (Tier 1)","tr":"T1组件总线","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["oc:componentBus2"],"name":"Component Bus (Tier 2)","tr":"T2组件总线","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"oreDict":["oc:componentBus3"],"name":"Component Bus (Tier 3)","tr":"T3组件总线","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"name":"Debug Card","tr":"调试卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"oreDict":["oc:tabletCase1"],"name":"Tablet Case (Tier 1)","tr":"T1平板电脑外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"oreDict":["oc:pistonUpgrade"],"name":"Piston Upgrade","tr":"活塞升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"oreDict":["oc:tankUpgrade"],"name":"Tank Upgrade","tr":"储罐升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["oc:tankControllerUpgrade"],"name":"Tank Controller Upgrade","tr":"储罐交互升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["oc:databaseUpgrade1"],"name":"Database Upgrade (Tier 1)","tr":"T1数据库升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["oc:databaseUpgrade2"],"name":"Database Upgrade (Tier 2)","tr":"T2数据库升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"oreDict":["oc:databaseUpgrade3"],"name":"Database Upgrade (Tier 3)","tr":"T3数据库升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"name":"Network Debugger","tr":"网络调试器","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"oreDict":["oc:microcontrollerCase1"],"name":"Microcontroller Case (Tier 1)","tr":"T1微控制器外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"oreDict":["oc:droneCase1"],"name":"Drone Case (Tier 1)","tr":"T1机器人外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"name":"Crecopter","tr":"Crecopter","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["oc:leashUpgrade"],"name":"Leash Upgrade","tr":"拴绳升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"oreDict":["oc:microcontrollerCase2"],"name":"Microcontroller Case (Tier 2)","tr":"T2微控制器外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"oreDict":["oc:droneCase2"],"name":"Drone Case (Tier 2)","tr":"T2机器人外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["oc:worldSensorCard"],"name":"World Sensor Card","tr":"世界传感器卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"name":"Microcontroller Case (Tier 3)","tr":"T3微控制器外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"name":"Drone Case (Tier 3)","tr":"T3机器人外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["oc:tabletCase2"],"name":"Tablet Case (Tier 2)","tr":"T2平板电脑外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"name":"Tablet Case (Tier 3)","tr":"T3平板电脑外壳","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["oc:inkCartridgeEmpty"],"name":"Ink Cartridge (Empty)","tr":"墨盒(空)","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"95":{"oreDict":["oc:inkCartridge"],"name":"Ink Cartridge","tr":"墨盒","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"96":{"oreDict":["oc:chamelium"],"name":"Chamelium","tr":"变色材料","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"oreDict":["oc:texturePicker"],"name":"Texture Picker","tr":"材质获取器","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"98":{"oreDict":["oc:manual"," craftingBook"],"name":"OpenComputers Manual","tr":"开放式电脑使用手册","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"99":{"oreDict":["oc:hoverUpgrade1"],"name":"Hover Upgrade (Tier 1)","tr":"T1悬浮升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"100":{"oreDict":["oc:hoverUpgrade2"],"name":"Hover Upgrade (Tier 2)","tr":"T2悬浮升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"oreDict":["oc:apu1"],"name":"Accelerated Processing Unit (APU) (Tier 2)","tr":"T2加速处理器(APU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"102":{"oreDict":["oc:apu2"],"name":"Accelerated Processing Unit (APU) (Tier 3)","tr":"T3加速处理器(APU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"103":{"name":"Accelerated Processing Unit (APU) (Tier 3)","tr":"T3加速处理器(APU)","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["oc:dataCard1"],"name":"Data Card (Tier 1)","tr":"T1数据卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"105":{"oreDict":["oc:dataCard2"],"name":"Data Card (Tier 2)","tr":"T2数据卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"106":{"oreDict":["oc:dataCard3"],"name":"Data Card (Tier 3)","tr":"T3数据卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"107":{"oreDict":["oc:nanomachines"],"name":"Nanomachines","tr":"纳米机器","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"108":{"oreDict":["oc:terminalServer"],"name":"Terminal Server","tr":"终端服务器","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"109":{"oreDict":["oc:diskDriveMountable"],"name":"Disk Drive","tr":"机架式软盘驱动器","tab":"OpenComputers","type":"Item","maxStackSize":1,"maxDurability":1},"110":{"oreDict":["oc:tradingUpgrade"],"name":"Trading Upgrade","tr":"交易升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"112":{"oreDict":["oc:mfu"],"name":"MFU","tr":"MFU","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"113":{"oreDict":["oc:wlanCard1"],"name":"Wireless Network Card (Tier 1)","tr":"T1无线网卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"114":{"name":"Component Bus (Creative)","tr":"创造模式组件总线","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"115":{"oreDict":["oc:configuratorUpgrade"],"name":"Configurator Upgrade","tr":"配置器升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"116":{"oreDict":["oc:rtgUpgrade"],"name":"RITEG Upgrade","tr":"放射性同位素温差发电机升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1},"117":{"oreDict":["oc:tpsCard"],"name":"TPS card","tr":"TPS卡","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingRedwood":{"0":{"name":"Crated Redwood Sapling","tr":"装箱的红木树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallRhodium":{"0":{"oreDict":["dustSmallRhodium"],"name":"小堆铑粉","tr":"小堆铑粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraBees:hiveFrame.soul":{"0":{"name":"Soul Frame","tr":"灵魂框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":81}},"Natura:pressureplate.ghostwood":{"0":{"oreDict":["pressurePlateWood"],"name":"Ghostwood Pressure Plate","tr":"幽魂树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier7Key":{"0":{"name":"Tier 6 Dungeon Key","tr":"6阶宝箱钥匙","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:livingrock1Slab":{"0":{"name":"Livingrock Brick Slab","tr":"活石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:essentiaCell":{"0":{"name":"Novice Essentia Diffusion Cell","tr":"新手源质扩散单元","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Adept Essentia Diffusion Cell","tr":"学徒源质扩散单元","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Master Essentia Diffusion Cell","tr":"大师源质扩散单元","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Grandmaster Essentia Diffusion Cell","tr":"宗师源质扩散单元","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:jellyfishrawItem":{"0":{"oreDict":["foodJellyfishraw"],"name":"Raw Jellyfish","tr":"生海蜇","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.basaltbrick.stairs":{"0":{"name":"Basalt Brick Stairs","tr":"玄武岩砖楼梯","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBall":{"0":{"name":"Casting Form (Ball Mold)","tr":"铸件(球)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockTorchInversion_off":{"0":{"name":"Redstone Inversion Torch","tr":"红石转换火把","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:incendium":{"0":{"name":"Incendium","tr":"火焰粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:seaweedseedItem":{"0":{"oreDict":["seedSeaweed"," listAllseed"],"name":"Seaweed Seed","tr":"海带种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.spaceship":{"0":{"name":"Tier 1 Rocket","tr":"1阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 1 Rocket","tr":"1阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 1 Rocket","tr":"1阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 1 Rocket","tr":"1阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 1 Rocket","tr":"1阶火箭","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"StevesCarts:CartModule":{"0":{"name":"Coal Engine","tr":"煤炭引擎","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Solar Engine","tr":"太阳能引擎","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Side Chests","tr":"侧面箱子","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Top Chest","tr":"顶部箱子","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Front Chest","tr":"前部箱子","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Internal Storage","tr":"内置存储箱","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Extracting Chests","tr":"提取箱子中","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Torch Placer","tr":"火把放置器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Basic Drill","tr":"基础钻头","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Galgadorian Drill","tr":"混合晶化金属钻头","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Railer","tr":"铺轨器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Large Railer","tr":"大型铺轨器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Bridge Builder","tr":"架桥器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Track Remover","tr":"轨道拆除器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Basic Farmer","tr":"基础种植器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Basic Wood Cutter","tr":"基础伐木器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Hydrator","tr":"水合器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Fertilizer","tr":"施肥器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Height Controller","tr":"高度控制器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Liquid Sensors","tr":"流体传感器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Entity Detector: Animal","tr":"实体探测器:动物","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Entity Detector: Player","tr":"实体探测器:玩家","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Entity Detector: Villager","tr":"实体探测器:村民","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Entity Detector: Monster","tr":"实体探测器:怪物","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Seat","tr":"座位","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Brake Handle","tr":"制动手柄","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Advanced Control System","tr":"高级控制系统","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Shooter","tr":"发射器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Advanced Shooter","tr":"高级发射器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Cleaning Machine","tr":"清除器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Dynamite Carrier","tr":"炸药载运器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Divine Shield","tr":"神圣护盾","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Melter","tr":"熔化器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Extreme Melter","tr":"至尊熔化器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"Invisibility Core","tr":"隐形核心","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"Wooden Minecart Hull","tr":"Wooden Minecart Hull","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"Standard Minecart Hull","tr":"Standard Minecart Hull","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"Reinforced Minecart Hull","tr":"Reinforced Minecart Hull","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"Note Sequencer","tr":"音符编曲器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Colorizer","tr":"着色器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Iron Drill","tr":"铁制钻头","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Hardened Drill","tr":"强化钻头","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Tiny Coal Engine","tr":"小型煤炭引擎","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"Basic Solar Engine","tr":"基础太阳能引擎","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"Chunk Loader","tr":"区块加载器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"Projectile: Potion","tr":"投掷物:药水","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"Projectile: Egg","tr":"投掷物:鸡蛋","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"Compact Solar Engine","tr":"太阳能列阵引擎","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"Cage","tr":"兽笼","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"Crop: Nether Wart","tr":"作物:地狱疣","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"name":"Firework display","tr":"烟花发射器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"name":"Infinity Engine","tr":"Infinity Engine","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"name":"Mechanical Pig","tr":"机械猪车壳","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"name":"Internal Tank","tr":"内置水箱","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"name":"Side Tanks","tr":"侧面水槽","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"name":"Top Tank","tr":"顶置水箱","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"name":"Advanced Tank","tr":"高级水箱","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"name":"Front Tank","tr":"前置水箱","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"name":"Incinerator","tr":"焚化炉","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"name":"Thermal Engine","tr":"热能引擎","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"name":"Advanced Thermal Engine","tr":"高级热能引擎","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"name":"Liquid Cleaner","tr":"流体清理器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"name":"Creative Tank","tr":"创造模式水箱","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"name":"Open Tank","tr":"开放式水箱","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"name":"Drill Intelligence","tr":"钻头智能","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"name":"Quantum Minecart Hull","tr":"Quantum Minecart Hull","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"name":"Power Observer","tr":"能量观测器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"name":"Steve\u0027s Arcade","tr":"史蒂夫游乐场","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"name":"Hardened Wood Cutter","tr":"硬化伐木器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"name":"Galgadorian Wood Cutter","tr":"混合晶化金属伐木器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"name":"Galgadorian Minecart Hull","tr":"Galgadorian Minecart Hull","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"name":"Enchanter","tr":"附魔器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"name":"Ore Extractor","tr":"矿物提取器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"name":"Galgadorian Farmer","tr":"混合晶化金属种植器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"name":"Lawn Mower","tr":"割草器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"name":"Milker","tr":"混合器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"name":"Crafter","tr":"合成器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"name":"Tree: Exotic","tr":"树木:异域","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"name":"Planter Range Extender","tr":"种植范围拓展器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"name":"Smelter","tr":"熔炉","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"name":"Advanced Crafter","tr":"高级合成器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"name":"Advanced Smelter","tr":"高级熔炉","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"name":"Information Provider","tr":"信息供应器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"name":"Experience Bank","tr":"经验储库","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"name":"Creative Incinerator","tr":"创造模式焚化炉","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"name":"Creative Supplies","tr":"创造模式供应","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"99":{"name":"Cake Server","tr":"蛋糕服务器","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"name":"Color Randomizer","tr":"颜色定制组件","tab":"史蒂夫的矿车 2丨模块","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:futura":{"0":{"name":"Futura Block","tr":"未来科技方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Futura Block","tr":"未来科技方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Futura Block","tr":"未来科技方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Futura Block","tr":"未来科技方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Futura Block","tr":"未来科技方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Futura Block","tr":"未来科技方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtIodine":{"0":{"oreDict":["frameGtIodine"],"name":"碘框架","tr":"碘框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockStabilityGlyph":{"0":{"name":"Glyph of Rigid Stability","tr":"图符: 刚硬稳定","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongArcanite":{"0":{"oreDict":["stickLongArcanite"],"name":"长奥金杆","tr":"长奥金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:woolen_clay":{"0":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Woolen Clay","tr":"羊毛粘土","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:essence":{"0":{"name":"Dragon Essence","tr":"龙之精华","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Fiery Essence","tr":"炎之精华","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Spectral Essence","tr":"魂之精华","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:Fertiliser":{"0":{"oreDict":["cellFertiliser"],"name":"流体肥料单元","tr":"流体肥料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustEnergyCrystal":{"0":{"oreDict":["dustEnergyCrystal"],"name":"能量水晶粉","tr":"能量水晶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier8Rocket":{"0":{"name":"Tier 8 Rocket","tr":"8阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 8 Rocket","tr":"8阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 8 Rocket","tr":"8阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 8 Rocket","tr":"8阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 8 Rocket","tr":"8阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"amazingtrophies:trophy":{"0":{"name":"Unknown Trophy","tr":"未知奖杯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:beePrincessGE":{"0":{"name":"Dreaming Princess","tr":"梦境公主蜂","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockFrameGtHastelloyN":{"0":{"oreDict":["frameGtHastelloyN"],"name":"哈斯特洛依合金-N框架","tr":"哈斯特洛依合金-N框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Builders:builderBlock":{"0":{"name":"Builder","tr":"建筑机","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotHS188A":{"0":{"oreDict":["ingotHotHS188A"],"name":"热HS188-A锭","tr":"热HS188-A锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:miscResources":{"0":{"name":"Lore Fragment","tr":"卷章碎片","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Aromatic Lump","tr":"芬芳块","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Concentrated Compound","tr":"浓缩复合物","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Wither Skeleton Bone Chip","tr":"凋灵骷髅骨片","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Wither Skeleton Skull Fragment","tr":"凋灵骷髅头骨碎片","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Draconic Dust","tr":"龙之尘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Draconic Chunk","tr":"龙之块","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Essence of False Life","tr":"虚假之命源质","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Essence of a Shallow Grave","tr":"暗影之墓源质","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Essence of Lost Time","tr":"迷失之时源质","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Essence of Everlasting Durability","tr":"恒久不灭源质","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Essence of Scornful Oblivion","tr":"无尽漠视源质","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Essence of Fickle Permanence","tr":"变换不定源质","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Dimensional Singularity","tr":"奇异维度","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Air Infused Dust","tr":"风之尘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Water Infused Dust","tr":"水之尘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Fire Infused Dust","tr":"火之尘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Earth Infused Dust","tr":"地之尘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Order Infused Dust","tr":"秩序之尘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Chaos Infused Dust","tr":"混沌之尘","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"AdvancedSolarPanel:advanced_solar_helmet":{"1":{"name":"Advanced Solar Helmet","tr":"高级太阳能头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Advanced Solar Helmet","tr":"高级太阳能头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"TConstruct:GlassBlock":{"0":{"oreDict":["blockGlassHV"," blockGlass"],"name":"Clear Glass","tr":"通透玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:poolMinecart":{"0":{"name":"Minecart with Mana Pool","tr":"魔力池矿车","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:food":{"0":{"oreDict":["listAllberry"," cropBerry"],"name":"Berry","tr":"浆果","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["foodMushroompowder"],"name":"Shroom Powder","tr":"蘑菇粉","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cropWildcarrots"," cropCarrot"],"name":"Wild Carrots","tr":"野萝卜","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropPeach"," listAllfruit"],"name":"Peach","tr":"桃子","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["foodFruitsalad"],"name":"Fruit Salad","tr":"水果沙拉","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"oreDict":["foodVeggiesalad"],"name":"Veggie Salad","tr":"蔬菜沙拉","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"oreDict":["foodMushroomsalad"],"name":"Shroom Salad","tr":"蘑菇沙拉","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"oreDict":["listAllfruit"," cropPersimmon"],"name":"Persimmon","tr":"柿子","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["foodFilledhoneycomb"],"name":"Filled Honeycomb","tr":"满的蜂蜜窝","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["foodAmbrosia"],"name":"Ambrosia","tr":"仙馔密酒","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"oreDict":["cropTurnip"," listAllrootveggie"," listAllveggie"],"name":"Turnip","tr":"芜青","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["listAllfruit"," cropPear"],"name":"Pear","tr":"雪梨","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["foodBowlofrice"],"name":"Bowl of Rice","tr":"碗饭","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"gregtech:gt.blockgranites":{"0":{"oreDict":["stoneGraniteBlack"],"name":"黑花岗岩","tr":"黑花岗岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneGraniteBlack"],"name":"黑花岗岩圆石","tr":"黑花岗岩圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneGraniteBlack"],"name":"苔藓黑花岗岩圆石","tr":"苔藓黑花岗岩圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneGraniteBlack"],"name":"黑花岗岩砖","tr":"黑花岗岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneGraniteBlack"],"name":"裂纹黑花岗岩砖","tr":"裂纹黑花岗岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneGraniteBlack"],"name":"苔藓黑花岗岩砖","tr":"苔藓黑花岗岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stoneGraniteBlack"],"name":"錾制黑花岗岩","tr":"錾制黑花岗岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stoneGraniteBlack"],"name":"平滑黑花岗岩","tr":"平滑黑花岗岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stoneGraniteRed"],"name":"红花岗岩","tr":"红花岗岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stoneGraniteRed"],"name":"红花岗岩圆石","tr":"红花岗岩圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stoneGraniteRed"],"name":"苔藓红花岗岩圆石","tr":"苔藓红花岗岩圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stoneGraniteRed"],"name":"红花岗岩砖","tr":"红花岗岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stoneGraniteRed"],"name":"裂纹红花岗岩砖","tr":"裂纹红花岗岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["stoneGraniteRed"],"name":"苔藓红花岗岩砖","tr":"苔藓红花岗岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["stoneGraniteRed"],"name":"錾制红花岗岩","tr":"錾制红花岗岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["stoneGraniteRed"],"name":"平滑红花岗岩","tr":"平滑红花岗岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTitanite":{"0":{"oreDict":["dustTinyTitanite"],"name":"小撮榍石粉","tr":"小撮榍石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.bloodwood":{"0":{"oreDict":["pressurePlateWood"],"name":"Blood Pressure Plate","tr":"血树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:customBrick0Slab":{"0":{"name":"Hellish Brick Slab","tr":"炼狱砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedHumus":{"0":{"name":"Crated Humus","tr":"装箱的腐殖土","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coconutcreamItem":{"0":{"oreDict":["foodCoconutcream"],"name":"Coconut Cream","tr":"椰奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:defoliageAxe":{"0":{"name":"Healing Axe","tr":"治愈之斧","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1562}},"Natura:Cloud":{"0":{"name":"Cloud","tr":"云","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dark Cloud","tr":"黑云","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ash Cloud","tr":"灰云","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sulfur Cloud","tr":"硫云","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:dirtPath0Slab":{"0":{"name":"Trodden Dirt Slab","tr":"沙土台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtHastelloyW":{"0":{"oreDict":["frameGtHastelloyW"],"name":"哈斯特洛依合金-W框架","tr":"哈斯特洛依合金-W框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtHastelloyX":{"0":{"oreDict":["frameGtHastelloyX"],"name":"哈斯特洛依合金-X框架","tr":"哈斯特洛依合金-X框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TrollBer":{"0":{"name":"Trollber","tr":"巨魔浆果","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_glowstone":{"0":{"name":"Blood Infused Glowstone","tr":"注血萤石","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:friedriceItem":{"0":{"oreDict":["foodFriedrice"],"name":"Fried Rice","tr":"炒饭","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:Formaldehyde":{"0":{"oreDict":["cellFormaldehyde"],"name":"甲醛单元","tr":"甲醛单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemTransformationFocus":{"0":{"name":"[WIP] Wand Focus: Transformation","tr":"[WIP]法杖核心:变形","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:gtpp.debug.scanner":{"0":{"name":"GT++ Debug Scanner","tr":"GT++Debug扫描器","tab":"GT++工具","type":"Item","maxStackSize":1,"maxDurability":1}},"Botany:trowelIron":{"0":{"name":"Iron Trowel","tr":"铁质泥铲","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":251}},"dreamcraft:item.CallistoIcePlate":{"0":{"oreDict":["plateColdCallistoIce"],"name":"Callisto Cold Ice Plate","tr":"木卫四玄冰板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"FloodLights:glowingFilament":{"0":{"name":"Glowing Filament","tr":"白炽灯丝","tab":"泛光灯","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cashewchickenItem":{"0":{"oreDict":["foodCashewchicken"],"name":"Cashew Chicken","tr":"腰果鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:caramelappleItem":{"0":{"oreDict":["foodCaramelapple"],"name":"Caramel Apple","tr":"焦糖苹果","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:ForgeOfGodsRenderBlock":{"0":{"name":"tile.Forge of the Gods Renderer.name","tr":"tile.Forge of the Gods Renderer.name","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockBarrel":{"0":{"name":"Barrel","tr":"酒桶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDoorTrans":{"0":{"name":"tile.TFDoorTrans.0.name","tr":"tile.TFDoorTrans.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetEnergyCrystal":{"0":{"oreDict":["nuggetEnergyCrystal"],"name":"能量水晶粒","tr":"能量水晶粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersBop:trim":{"0":{"name":"Sacred Oak Trim","tr":"神圣橡树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Trim","tr":"樱花树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Trim","tr":"黑暗树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Trim","tr":"杉木桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ethereal Trim","tr":"天域树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Magic Trim","tr":"魔法树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mangrove Trim","tr":"红树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Palm Trim","tr":"棕榈树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Trim","tr":"红木桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Willow Trim","tr":"柳树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Pine Trim","tr":"松树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Hell Bark Trim","tr":"地狱皮树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Jacaranda Trim","tr":"蓝花楹树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Mahogany Trim","tr":"桃花心树桥接方块","tab":"储物抽屉|BOP","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_unlit_tape":{"0":{"name":"Catwalk","tr":"栈桥","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:fluidHotCoolant":{"0":{"name":"IC2 Hot Coolant","tr":"热冷却液","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorMOXQuad":{"1":{"name":"Quad Fuel Rod (MOX)","tr":"四联燃料棒(MOX)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":10001}},"Botania:biomeStoneB5Slab":{"0":{"name":"Metamorphic Desert Stone Brick Slab","tr":"变质沙漠石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDoorCanopy":{"0":{"name":"tile.TFDoorCanopy.0.name","tr":"tile.TFDoorCanopy.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.SlottedBook":{"0":{"name":"Slotted Book","tr":"中空书","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemBoltIncoloyMA956":{"0":{"oreDict":["boltIncoloyMA956"],"name":"耐热铬铁合金-MA956螺栓","tr":"耐热铬铁合金-MA956螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraTrees:panel":{"0":{"name":"Blank Wooden Panel","tr":"空白镶板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Blank Wooden Panel","tr":"空白镶板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Blank Wooden Panel","tr":"空白镶板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Blank Wooden Panel","tr":"空白镶板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blank Wooden Panel","tr":"空白镶板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Blank Wooden Panel","tr":"空白镶板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Blank Wooden Panel","tr":"空白镶板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseArceusAlloy2B":{"0":{"oreDict":["plateDenseArceusAlloy2B"],"name":"致密阿尔宙斯合金2B板","tr":"致密阿尔宙斯合金2B板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAncientGranite":{"0":{"oreDict":["dustTinyAncientGranite"],"name":"小撮古花岗岩粉","tr":"小撮古花岗岩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseHastelloyX":{"0":{"oreDict":["plateDenseHastelloyX"],"name":"致密哈斯特洛依合金-X板","tr":"致密哈斯特洛依合金-X板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseHastelloyW":{"0":{"oreDict":["plateDenseHastelloyW"],"name":"致密哈斯特洛依合金-W板","tr":"致密哈斯特洛依合金-W板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grainbaitItem":{"0":{"oreDict":["grainBait"],"name":"Grain Bait","tr":"谷物诱饵","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedAsh":{"0":{"name":"Crated Ash","tr":"装箱的灰烬","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:seedsmindrake":{"0":{"name":"Minedrake Bulb","tr":"矿德拉花蕾","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:Bibliotheca":{"0":{"name":"Oak Bookcase","tr":"橡木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Bookcase","tr":"云杉木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Bookcase","tr":"白桦木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Bookcase","tr":"丛林木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Bookcase","tr":"金合欢书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Bookcase","tr":"深色橡木书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Bookcase","tr":"镶框书架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:fleshrootItem":{"0":{"oreDict":["listAllmeatraw"," cropFleshroot"],"name":"Flesh Root","tr":"血肉之根","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:creativeDagger":{"0":{"name":"Creative Sacrificial Knife","tr":"[创造模式]牺牲匕首","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallNichromite":{"0":{"oreDict":["dustSmallNichromite"],"name":"小堆镍铬矿粉","tr":"小堆镍铬矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreXenotime":{"0":{"oreDict":["oreXenotime"],"name":"Xenotime Ore","tr":"磷钇矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseHastelloyN":{"0":{"oreDict":["plateDenseHastelloyN"],"name":"致密哈斯特洛依合金-N板","tr":"致密哈斯特洛依合金-N板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemDensePlates":{"0":{"oreDict":["plateDenseCopper"," plateDenseAnyCopper"],"name":"Dense Copper Plate","tr":"致密铜板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plateDenseTin"],"name":"Dense Tin Plate","tr":"致密锡板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plateDenseBronze"," plateDenseAnyBronze"],"name":"Dense Bronze Plate","tr":"致密青铜板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plateDenseGold"],"name":"Dense Gold Plate","tr":"致密金板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plateDenseIron"," plateDenseAnyIron"],"name":"Dense Iron Plate","tr":"致密铁板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plateDenseSteel"],"name":"Dense Steel Plate","tr":"致密精炼铁板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plateDenseLead"],"name":"Dense Lead Plate","tr":"致密铅板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plateDenseObsidian"],"name":"Dense Obsidian Plate","tr":"致密黑曜石板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plateDenseLapis"],"name":"Dense Lapis Lazuli Plate","tr":"致密青金石板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockCapBank":{"0":{"name":"Chaotic Capacitor Bank","tr":"Chaotic Capacitor Bank","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Basic Capacitor Bank","tr":"基础电容库","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Capacitor Bank","tr":"电容库","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Vibrant Capacitor Bank","tr":"谐振电容库","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"FloodLights:electricFloodlight":{"0":{"name":"Electric Floodlight","tr":"电力泛光灯","tab":"泛光灯","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustInfusedEarth":{"0":{"oreDict":["dustInfusedEarth"],"name":"地之魔晶粉","tr":"地之魔晶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:ThrowingKnife":{"0":{"name":"§f山铜 飞刀","tr":"§f山铜 飞刀","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemIngotNeptunium":{"0":{"oreDict":["ingotNeptunium"],"name":"镎锭","tr":"镎锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZirconolite":{"0":{"oreDict":["dustSmallZirconolite"],"name":"小堆钛锆酸钙粉","tr":"小堆钛锆酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bamboosteamedriceItem":{"0":{"oreDict":["foodBamboosteamedrice"],"name":"Bamboo Steamed Rice","tr":"竹筒蒸米","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyIncoloyDS":{"0":{"oreDict":["dustTinyIncoloyDS"],"name":"小撮耐热铬铁合金-DS粉","tr":"小撮耐热铬铁合金-DS粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:gingeredrhubarbtartItem":{"0":{"oreDict":["foodGingeredrhubarbtart"],"name":"Gingered Rhubarb Tart","tr":"大黄生姜挞","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemLiquidConduit":{"0":{"name":"Fluid Conduit","tr":"流体导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Pressurized Fluid Conduit","tr":"高压流体导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Ender Fluid Conduit","tr":"末影流体导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Crystalline Ender Fluid Conduit","tr":"晶化合金末影流体导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Crystalline Pink Slime Ender Fluid Conduit","tr":"晶化粉红史莱姆末影流体导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Melodic Ender Fluid Conduit","tr":"旋律合金末影流体导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Stellar Ender Fluid Conduit","tr":"恒星合金末影流体导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:wardSlab":{"0":{"name":"Paving Slab of Warding","tr":"守卫者台阶","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:incensePlate":{"0":{"name":"Incense Plate","tr":"香盘","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.PaintingCanvas":{"0":{"name":"Painting Canvas","tr":"画布","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingEucalyptus":{"0":{"name":"Crated Eucalyptus Sapling","tr":"装箱的桉树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:elementiumHelmReveal":{"0":{"name":"Elementium Helmet of Revealing","tr":"源质钢揭示头盔","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":199}},"ThaumicTinkerer:ichorShovelGem":{"0":{"name":"Awakened Ichorium Shovel","tr":"觉醒灵宝铲","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"harvestcraft:peachsmoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodPeachsmoothie"],"name":"Peach Smoothie","tr":"桃子冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateThallium":{"0":{"oreDict":["plateThallium"],"name":"铊板","tr":"铊板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodTumbaga":{"0":{"oreDict":["stickTumbaga"],"name":"铜金合金杆","tr":"铜金合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemPartCoalBall":{"0":{"name":"Coal Ball","tr":"煤球","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.titanium_hoe":{"0":{"name":"Titanium Hoe","tr":"钛锄","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":521}},"IC2:itemScannerAdv":{"1":{"name":"OV Scanner","tr":"OV扫描器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"OV Scanner","tr":"OV扫描器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"IC2:itemTFBPMushroom":{"0":{"name":"TFBP - Mushroom","tr":"地形转换模板-蘑菇","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:neutronSource":{"0":{"name":"Neutron Source","tr":"中子源","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mixingbowlItem":{"0":{"oreDict":["toolMixingbowl"],"name":"Mixing Bowl","tr":"搅拌钵","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA10SlabFull":{"0":{"name":"Metamorphic Mountain Cobblestone Slab","tr":"变质高山圆石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorHeatSwitch":{"1":{"name":"Heat Exchanger","tr":"热交换器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"bartworks:gt.bwMetaGeneratedingotDouble":{"96":{"oreDict":["ingotDoubleAdemicSteel"],"name":"双重硬钢锭","tr":"双重硬钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["ingotDoubleShirabon"],"name":"双重调律源金锭","tr":"双重调律源金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["ingotDoubleAdamantiumAlloy"],"name":"双重精金合金锭","tr":"双重精金合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["ingotDoubleAtomicSeparationCatalyst"],"name":"双重原子分离催化剂锭","tr":"双重原子分离催化剂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["ingotDoubleExtremelyUnstableNaquadah"],"name":"双重极不稳定硅岩锭","tr":"双重极不稳定硅岩锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["ingotDoubleMAR-M200Steel"],"name":"双重MAR-M200特种钢锭","tr":"双重MAR-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["ingotDoubleMAR-Ce-M200Steel"],"name":"双重MAR-Ce-M200特种钢锭","tr":"双重MAR-Ce-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["ingotDoubleRhodium-PlatedPalladium"],"name":"双重镀铑钯锭","tr":"双重镀铑钯锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["ingotDoubleRuridit"],"name":"双重钌铱合金锭","tr":"双重钌铱合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["ingotDoubleHighDurabilityCompoundSteel"],"name":"双重高耐久性复合钢锭","tr":"双重高耐久性复合钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["ingotDoublePreciousMetalsAlloy"],"name":"双重稀有金属合金锭","tr":"双重稀有金属合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["ingotDoubleEnrichedNaquadahAlloy"],"name":"双重富集硅岩合金锭","tr":"双重富集硅岩合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["ingotDoubleMetastableOganesson"],"name":"双重亚稳态鿫锭","tr":"双重亚稳态鿫锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamlimeSapling":{"0":{"name":"Lime Sapling","tr":"酸橙树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemFocusVisShard":{"0":{"name":"Wand Focus: Vis Shard","tr":"法杖核心:魔力碎片","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"StorageDrawersNatura:trim":{"0":{"name":"Eucalyptus Trim","tr":"桉树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sakura Trim","tr":"樱花树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ghostwood Trim","tr":"幽魂树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Redwood Trim","tr":"红木树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blood Trim","tr":"血树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Trim","tr":"车桑子树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Trim","tr":"枫树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Silverbell Trim","tr":"银铃树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Amaranth Trim","tr":"紫檀树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Tigerwood Trim","tr":"核桃树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Willow Trim","tr":"柳树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Darkwood Trim","tr":"黑暗树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fusewood Trim","tr":"熔融树桥接方块","tab":"储物抽屉|Natura","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustNiobiumCarbide":{"0":{"oreDict":["dustNiobiumCarbide"],"name":"碳化铌粉","tr":"碳化铌粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTungstenTitaniumCarbide":{"0":{"oreDict":["dustSmallTungstenTitaniumCarbide"],"name":"小堆碳化钨钛合金粉","tr":"小堆碳化钨钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedYttriaite":{"0":{"oreDict":["crushedPurifiedYttriaite"],"name":"Purified Crushed Yttriaite Ore","tr":"洗净的钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemPartCircuit":{"0":{"oreDict":["circuitBasic"],"name":"Electronic Circuit","tr":"电路板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:tritonblocks":{"0":{"oreDict":["rockTriton"," rockSpace"],"name":"Triton Surface Block","tr":"海卫一地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockTriton"," rockSpace"],"name":"Triton Subsurface Block","tr":"海卫一地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockTriton"," rockSpace"],"name":"Triton Stone","tr":"海卫一石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreMithril"],"name":"Mithril Ore","tr":"海卫一秘银矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapejuiceItem":{"0":{"oreDict":["listAlljuice"," foodGrapejuice"],"name":"Grape Juice","tr":"葡萄汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:sandstone2":{"0":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sandstone","tr":"沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTitansteel":{"0":{"oreDict":["plateTitansteel"],"name":"泰坦精钢板","tr":"泰坦精钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseBlackMetal":{"0":{"oreDict":["plateDenseBlackMetal"],"name":"致密黑物质板","tr":"致密黑物质板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngravedGoldChip":{"0":{"name":"Engraved Gold Chip","tr":"雕刻金芯片","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:TaintLog":{"0":{"oreDict":["logWood"],"name":"Tainted Log","tr":"腐化木头","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:magnumTorch":{"0":{"name":"Magnum Torch","tr":"卓越火炬","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCobblestone":{"0":{"name":"Crated Cobblestone","tr":"装箱的圆石","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SimpleCircuitBoard":{"0":{"name":"Simple Circuit Board","tr":"简单电路基板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZircophyllite":{"0":{"oreDict":["dustZircophyllite"],"name":"锆星叶石粉","tr":"锆星叶石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Rare Leaves":{"0":{"oreDict":["treeLeaves"],"name":"Maple Leaves","tr":"枫树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Silverbell Leaves","tr":"银铃树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Amaranth Leaves","tr":"紫檀树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Tiger Leaves","tr":"核桃树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockDarkIronBars":{"0":{"oreDict":["barsIron"],"name":"Dark Iron Bars","tr":"玄铁栅栏","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockEglinSteel":{"0":{"oreDict":["blockEglinSteel"],"name":"埃格林钢块","tr":"埃格林钢块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_shovel_wood":{"0":{"name":"Blood Infused Wooden Shovel","tr":"注血木铲","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"gendustry:MutagenProducer":{"0":{"name":"Mutagen Producer","tr":"诱变剂制造机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleFuel":{"0":{"oreDict":["capsuleFuel"],"name":"Fuel Capsule","tr":"耐火燃料胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water12":{"0":{"name":"tile.water12.name","tr":"tile.water12.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water13":{"0":{"name":"tile.water13.name","tr":"tile.water13.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water10":{"0":{"name":"tile.water10.name","tr":"tile.water10.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water11":{"0":{"name":"tile.water11.name","tr":"tile.water11.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockRedcrystalRes":{"0":{"name":"Resonating Redcrystal","tr":"共鸣红晶","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPurePerroudite":{"0":{"oreDict":["dustPurePerroudite"],"name":"Purified Perroudite Dust","tr":"纯净溴硫银汞粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:bucket":{"1":{"oreDict":["bucketPyrotheum"],"name":"Blazing Pyrotheum Bucket","tr":"烈焰之炽焱桶","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"oreDict":["bucketCryotheum"],"name":"Gelid Cryotheum Bucket","tr":"极寒之凛冰桶","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"oreDict":["bucketEnder"],"name":"Resonant Ender Bucket","tr":"谐振熔融末影珍珠桶","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"hydroenergy:tile.water14":{"0":{"name":"tile.water14.name","tr":"tile.water14.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"hydroenergy:tile.water15":{"0":{"name":"tile.water15.name","tr":"tile.water15.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CarminiteFragment":{"0":{"name":"Carminite Fragment","tr":"砷铅铁矿碎片","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTumbaga":{"0":{"oreDict":["dustSmallTumbaga"],"name":"小堆铜金合金粉","tr":"小堆铜金合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusShadowbeam":{"0":{"name":"Wand Focus: Shadowbeam","tr":"法杖核心:阴影之束","tab":"","type":"Item","maxStackSize":1,"maxDurability":2}},"dreamcraft:tile.TripleCompressedCoal":{"0":{"name":"Block of Triple Compressed Coal","tr":"三重压缩煤炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstlabel2":{"0":{"name":"Pine Label","tr":"松树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Label","tr":"李子树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Label","tr":"杨树木标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Label","tr":"红杉标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Label","tr":"柚木标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Label","tr":"核桃树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Label","tr":"崖豆树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Label","tr":"柳树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cottonseedItem":{"0":{"oreDict":["seedCotton"," listAllseed"],"name":"Cotton Seed","tr":"棉花种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockWoodenDevice":{"0":{"name":"Arcane Bellows","tr":"奥术风箱","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Arcane Ear","tr":"奥术之耳","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Arcane Pressure Plate","tr":"奥术压力盘","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Arcane Bore Base","tr":"奥术钻探机基座","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Arcane Bore","tr":"奥术钻探机","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"],"name":"Greatwood Planks","tr":"宏伟之树木板","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"],"name":"Silverwood Planks","tr":"银树木板","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Black Banner","tr":"黑色旗帜","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:fleshrootCrop":{"0":{"name":"Flesh Root Crop","tr":"血肉之根","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:hunterBag":{"0":{"name":"Hunter\u0027s Backpack","tr":"狩猎者背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTungstenTitaniumCarbide":{"0":{"oreDict":["dustTungstenTitaniumCarbide"],"name":"碳化钨钛合金粉","tr":"碳化钨钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetMaragingSteel250":{"0":{"oreDict":["nuggetMaragingSteel250"],"name":"马氏体时效钢250粒","tr":"马氏体时效钢250粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:hive":{"0":{"name":"Curious Hive","tr":"好奇蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Unusual Hive","tr":"非凡蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Resonating Hive","tr":"共鸣蜂巢","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamblueberryCrop":{"0":{"name":"Blueberry Crop","tr":"蓝莓","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewTitansteel":{"0":{"oreDict":["screwTitansteel"],"name":"泰坦精钢螺丝","tr":"泰坦精钢螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fluid.short.mead":{"0":{"name":"Short Mead","tr":"蜂蜜酒","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SawBladePeridot":{"0":{"name":"Peridot Saw Blade","tr":"橄榄石锯刃","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewZirconiumCarbide":{"0":{"oreDict":["screwZirconiumCarbide"],"name":"碳化锆螺丝","tr":"碳化锆螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:rainSensor":{"0":{"name":"Rain Sensor","tr":"雨水传感器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:dustTH":{"0":{"name":"Dust","tr":"尘埃","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltCelestialTungsten":{"0":{"oreDict":["boltCelestialTungsten"],"name":"天体钨螺栓","tr":"天体钨螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pambambooshootCrop":{"0":{"name":"Bamboo Crop","tr":"竹子","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blankSpell":{"0":{"name":"Unbound Crystal","tr":"未绑定的水晶","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"catwalks:sturdy_rail_powered":{"0":{"name":"Sturdy Powered Rail","tr":"坚实动力铁轨","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCerite":{"0":{"oreDict":["dustSmallCerite"],"name":"小堆铈硅石粉","tr":"小堆铈硅石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.steelChest":{"0":{"name":"Steel Chest","tr":"钢制箱子","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MaceratedPlantmass":{"0":{"name":"Plant Mass","tr":"植物团块","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedPolycrase":{"0":{"oreDict":["crushedPurifiedPolycrase"],"name":"Purified Crushed Polycrase Ore","tr":"洗净的锗铀钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coffeeconlecheItem":{"0":{"oreDict":["foodCoffeeconleche"],"name":"Coffee con Leche","tr":"牛奶咖啡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:citrussaladItem":{"0":{"oreDict":["foodCitrussalad"],"name":"Citrus Salad","tr":"橘味沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:upgradeEssentia":{"0":{"name":"Essentia Generator: Empty","tr":"源质发电机:Empty","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"§eEssentia Generator: Air§r","tr":"§e源质发电机:Air§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"§cEssentia Generator: Thermal§r","tr":"§c源质发电机:Thermal§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"§8Essentia Generator: Unstable§r","tr":"§8源质发电机:Unstable§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"§dEssentia Generator: Victus§r","tr":"§d源质发电机:Victus§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"§5Essentia Generator: Tainted§r","tr":"§5源质发电机:Tainted§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"§bEssentia Generator: Mechanics§r","tr":"§b源质发电机:Mechanics§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"§6Essentia Generator: Spirit§r","tr":"§6源质发电机:Spirit§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"§aEssentia Generator: Radiation§r","tr":"§a源质发电机:Radiation§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"§3Essentia Generator: Electric§r","tr":"§3源质发电机:Electric§r","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPaintedDoubleSlab":{"0":{"name":"Painted Slab","tr":"喷涂台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:fertilizedDirt_tilled":{"0":{"name":"Fertilized Dirt","tr":"沃土","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:bound_diamond_shard":{"0":{"name":"Bound Diamond Shard","tr":"约束钻石碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Bound Diamond Air Shard","tr":"约束钻石空气碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Bound Diamond Earth Shard","tr":"约束钻石大地碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Bound Diamond Fire Shard","tr":"约束钻石火之碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Bound Diamond Water Shard","tr":"约束钻石水之碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bound Diamond Dusk Shard","tr":"约束钻石黄昏碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Bound Diamond Dawn Shard","tr":"约束钻石黎明碎片","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Factory:miningWellBlock":{"0":{"name":"Mining Well","tr":"矿井","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalDensePlate":{"0":{"oreDict":["plateDenseMysteriousCrystal"],"name":"Dense Mysterious Crystal Plate","tr":"致密神秘水晶板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHafnium":{"0":{"oreDict":["ingotHafnium"],"name":"铪锭","tr":"铪锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingDysprosium":{"0":{"oreDict":["ringDysprosium"],"name":"镝环","tr":"镝环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamscallionCrop":{"0":{"name":"Scallion Crop","tr":"大葱","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:airSigil":{"0":{"name":"Air Sigil","tr":"空气印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:itemXpTransfer":{"0":{"name":"Experience Rod","tr":"经验棒","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyCopperIISulfatePentahydrate":{"0":{"oreDict":["dustTinyCopperIISulfatePentahydrate"],"name":"小撮五水合硫酸铜(II)粉","tr":"小撮五水合硫酸铜(II)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableSignName":{"0":{"name":"Sign Updater","tr":"告示牌更新器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:onionseedItem":{"0":{"oreDict":["seedOnion"," listAllseed"],"name":"Onion Seed","tr":"洋葱种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:royaljellyItem":{"0":{"name":"Royal Jelly","tr":"蜂王浆","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingPotin":{"0":{"oreDict":["ringPotin"],"name":"粗青铜合金环","tr":"粗青铜合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAgarditeY":{"0":{"oreDict":["dustTinyAgarditeY"],"name":"小撮钇砷铜矿(Y)粉","tr":"小撮钇砷铜矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:erosionShovel":{"0":{"name":"Erosion Shovel","tr":"侵蚀之铲","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":6245}},"miscutils:itemFoilLaurenium":{"0":{"oreDict":["foilLaurenium"],"name":"劳伦姆合金箔","tr":"劳伦姆合金箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:BlockWarpwoodSapling":{"0":{"oreDict":["treeSapling"],"name":"Warpwood Sapling","tr":"扭曲树苗","tab":"污秽魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:bloodwood":{"0":{"oreDict":["logWood"],"name":"Bloodwood","tr":"血树","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["logWood"],"name":"Bloodwood","tr":"血树","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:exp_bottle_consistent":{"0":{"name":"Bottle o\u0027 Enchanting","tr":"附魔之瓶","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaKrypton":{"0":{"oreDict":["cellPlasmaKrypton"],"name":"氪等离子体单元","tr":"氪等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureTitanite":{"0":{"oreDict":["dustImpureTitanite"],"name":"Impure Titanite Dust","tr":"含杂榍石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleBlackTitanium":{"0":{"oreDict":["plateDoubleBlackTitanium"],"name":"双重黑钛板","tr":"双重黑钛板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Botania:redStringRelay":{"0":{"name":"Red Stringed Spoofer","tr":"红线继电器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"computronics:computronics.dockingUpgrade":{"0":{"name":"Drone Docking Upgrade","tr":"无人机停靠升级","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.lead_helmet":{"0":{"name":"Lead Helmet","tr":"铅盔","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":331}},"miscutils:itemCellHafnium":{"0":{"oreDict":["cellHafnium"],"name":"铪单元","tr":"铪单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamMango":{"0":{"name":"Mango","tr":"芒果","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cornishpastyItem":{"0":{"oreDict":["foodCornishpasty"],"name":"Cornish Pasty","tr":"康沃尔菜肉馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:DrillRockbreaker":{"1":{"name":"Drill of the Rockbreaker","tr":"岩石粉碎者","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Drill of the Rockbreaker","tr":"岩石粉碎者","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"Avaritia:Infinity_Shovel":{"0":{"name":"Planet Eater","tr":"星球吞噬之铲","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":10000}},"Forestry:refractoryJuice":{"0":{"name":"Juice Capsule","tr":"耐火果汁胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NanoCircuit":{"0":{"oreDict":["circuitNano"],"name":"Nano Circuit","tr":"纳米电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFMazestone":{"0":{"name":"Mazestone","tr":"迷宫石头","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Mazestone Brick","tr":"迷宫石砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Chiseled Mazestone","tr":"迷宫雕刻石砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Decorative Mazestone Brick","tr":"迷宫装饰石砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cracked Mazestone Brick","tr":"迷宫碎裂石砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Mossy Mazestone Brick","tr":"迷宫青苔石砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mazestone Mosaic","tr":"迷宫镶嵌石砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Mazestone Border","tr":"迷宫边缘石砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSmith":{"0":{"name":"Coin \"Blacksmith 1\"","tr":"匠师币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChargedThaumiumWandCap":{"0":{"name":"Charged Thaumium Cap","tr":"充能神秘杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseInconel792":{"0":{"oreDict":["plateDenseInconel792"],"name":"致密镍铬基合金-792板","tr":"致密镍铬基合金-792板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemBoat":{"0":{"name":"Carbon Fiber Canoe","tr":"碳纤维轻艇","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Rubber Dinghy","tr":"橡皮艇","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Damaged Rubber Dinghy","tr":"损坏的橡皮艇","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Electric Boat","tr":"电动船","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetherQuartzWrench":{"0":{"name":"Nether Quartz Wrench","tr":"下界石英扳手","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"EMT:MaintenanceFocus":{"0":{"name":"Wand Focus: Maintenance","tr":"法杖核心:维护","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2}},"OpenComputers:caseCreative":{"0":{"name":"Computer Case (Creative)","tr":"创造模式机箱","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:detector":{"0":{"name":"Detector - Item","tr":"传感器-物品","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Detector - Any","tr":"传感器-任意","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Detector - Empty","tr":"传感器-空","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Detector - Mob","tr":"传感器-生物","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Detector - Powered","tr":"传感器-动力","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Detector - Player","tr":"传感器-玩家","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Detector - Explosive","tr":"传感器-爆炸","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Detector - Animal","tr":"传感器-动物","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Detector - Tank","tr":"传感器-蓄水槽","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Detector - Advanced","tr":"传感器-高级","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Detector - Energy","tr":"传感器-能量","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Detector - Age","tr":"传感器-年龄","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Detector - Train","tr":"传感器-列车","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Detector - Sheep","tr":"传感器-羊","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Detector - Villager","tr":"传感器-村民","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Detector - Locomotive","tr":"传感器-火车头","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Detector - Routing","tr":"传感器-路由","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockMFEffect":{"0":{"name":"Special","tr":"特殊","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:tile.remote_interface":{"0":{"name":"Remote Interface","tr":"远程接口","tab":"远程接口","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockInconel690":{"0":{"oreDict":["blockInconel690"],"name":"镍铬基合金-690块","tr":"镍铬基合金-690块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyRadioactiveMineralMix":{"0":{"oreDict":["dustTinyRadioactiveMineralMix"],"name":"小撮放射性矿物混合物粉","tr":"小撮放射性矿物混合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:frenchtoastItem":{"0":{"oreDict":["foodFrenchtoast"],"name":"French Toast","tr":"法式吐司","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatebaconItem":{"0":{"oreDict":["foodChocolatecookie"],"name":"Chocolate Bacon","tr":"巧克力培根","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaRhodium":{"0":{"oreDict":["cellPlasmaRhodium"],"name":"铑等离子体单元","tr":"铑等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:trap.barricade.spruce":{"0":{"name":"Spruce Barricade","tr":"云杉木篱笆","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.reactorUraniumQuad":{"0":{"name":"四联燃料棒(铀)","tr":"四联燃料棒(铀)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"IC2NuclearControl:ItemToolDigitalThermometer":{"1":{"name":"Digital Thermometer","tr":"数码温度计","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":102},"101":{"name":"Digital Thermometer","tr":"数码温度计","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":102}},"Forestry:ingotCopper":{"0":{"oreDict":["ingotCopper"," ingotAnyCopper"],"name":"Copper Ingot","tr":"铜锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockVibrationChamber":{"0":{"name":"Vibration Chamber","tr":"谐振仓","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLanthaniteCe":{"0":{"oreDict":["dustTinyLanthaniteCe"],"name":"小撮镧石(Ce)粉","tr":"小撮镧石(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:heatingElement":{"0":{"name":"Heating Coil","tr":"加热线圈","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.ProteusStoneDust":{"0":{"oreDict":["dustProteusStone"," dustProteus"," dustSpace"],"name":"Proteus Stone Dust","tr":"海卫八尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureLautarite":{"0":{"oreDict":["dustImpureLautarite"],"name":"Impure Lautarite Dust","tr":"含杂碘钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.CompressedGraphite":{"0":{"name":"Compressed Graphite","tr":"压缩石墨","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:concealerAddon":{"0":{"name":"Addon - Turret Concealer","tr":"附件-炮塔隐形","tab":"模块化炮塔","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyZircon":{"0":{"oreDict":["dustTinyZircon"],"name":"小撮锆石粉","tr":"小撮锆石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.bucketSludge":{"0":{"name":"Bacterial Sludge Bucket","tr":"菌泥桶","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDoubleAstralTitanium":{"0":{"oreDict":["plateDoubleAstralTitanium"],"name":"双重星体钛板","tr":"双重星体钛板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:pamApple":{"0":{"name":"Apple","tr":"苹果","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemInventoryScannerCard":{"0":{"name":"Inventory Tracking Card","tr":"库存跟踪卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:blank_gem":{"0":{"name":"Blank Gem","tr":"空白宝石","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustPolonium":{"0":{"oreDict":["dustPolonium"],"name":"钋粉","tr":"钋粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:BlockWarpwoodLog":{"0":{"oreDict":["logWood"],"name":"Warpwood","tr":"扭曲之木","tab":"污秽魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioWorkbench":{"0":{"name":"Oak Fancy Workbench","tr":"橡木精致工作台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Fancy Workbench","tr":"云杉精致工作台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Fancy Workbench","tr":"桦木精致工作台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Fancy Workbench","tr":"丛林精致工作台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Fancy Workbench","tr":"金合欢精致工作台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Fancy Workbench","tr":"深色橡木精致工作台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Fancy Workbench","tr":"镶框精致工作台","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:Smeltery":{"0":{"name":"Smeltery Controller","tr":"冶炼炉控制器","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Smeltery Drain","tr":"冶炼炉排液口","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Seared Bricks","tr":"冶炼炉砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Seared Stone","tr":"焦黑石头","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Seared Cobblestone","tr":"焦黑圆石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Seared Paver","tr":"焦黑盖板石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Cracked Seared Bricks","tr":"裂纹焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Seared Road","tr":"焦黑铺路石","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fancy Seared Bricks","tr":"平滑焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Chiseled Seared Bricks","tr":"方纹焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Chiseled Seared Bricks","tr":"方纹焦黑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FrothRedstoneflotation":{"0":{"oreDict":["cellRedstoneFroth"],"name":"红石泡沫单元","tr":"红石泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseCelestialTungsten":{"0":{"oreDict":["plateDenseCelestialTungsten"],"name":"致密天体钨板","tr":"致密天体钨板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Double_Naquadahcell":{"0":{"name":"二联燃料棒(硅岩)","tr":"二联燃料棒(硅岩)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Natura:barleyFood":{"0":{"oreDict":["cropBarley"," listAllgrain"],"name":"Barley","tr":"大麦","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["foodFlour"],"name":"Barley Flour","tr":"大麦面粉","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["foodFlour"," foodEqualswheat"],"name":"Wheat Flour","tr":"小麦面粉","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropCotton"],"name":"Cotton","tr":"棉花","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustSulphur"," dustSulfur"],"name":"Sulfur","tr":"硫磺","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ghostwood Fletching","tr":"幽魂木箭羽","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Imp Leather","tr":"恶魔皮","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Flamestring","tr":"火线","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dyeBlue"],"name":"Blue Dye","tr":"蓝色颜料","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureHoneaite":{"0":{"oreDict":["dustPureHoneaite"],"name":"Purified Honeaite Dust","tr":"纯净碲化金铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:scytheBlade":{"0":{"name":"Wooden Scythe Head","tr":"木镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Scythe Head","tr":"石镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Scythe Head","tr":"铁镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Scythe Head","tr":"燧石镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Scythe Head","tr":"仙人掌镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Scythe Head","tr":"骨头镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Scythe Head","tr":"黑曜石镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Scythe Head","tr":"地狱岩镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Scythe Head","tr":"史莱姆镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Scythe Head","tr":"纸镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Scythe Head","tr":"钴镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Scythe Head","tr":"阿迪特镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Scythe Head","tr":"玛玉灵镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Scythe Head","tr":"铜镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Scythe Head","tr":"青铜镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Scythe Head","tr":"耐酸铝镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Scythe Head","tr":"钢镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Scythe Head","tr":"史莱姆镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Scythe Head","tr":"生铁镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Scythe Head","tr":"不稳定感应镰刀刀刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatebarItem":{"0":{"oreDict":["foodChocolatebar"],"name":"Chocolate Bar","tr":"巧克力棒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaVoid":{"0":{"name":"Mana Void","tr":"魔力销毁器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"tinkersdefense:QueensGoldblock":{"0":{"name":"Queen\u0027s Gold Block","tr":"女王之金块","tab":"工匠之盾","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:jacarandaStairs":{"0":{"oreDict":["stairWood"],"name":"Jacaranda Wood Stairs","tr":"蓝花楹木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:witchhand":{"0":{"name":"Witches Hand","tr":"女巫之爪","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:endStoneBrick0Slab":{"0":{"name":"End Stone Brick Slab","tr":"末地石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBeesI":{"0":{"name":"Coin \"The Beekeeper 10\"","tr":"养蜂员币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cherrycoconutchocolatebarItem":{"0":{"oreDict":["foodCherrycoconutchocolatebar"],"name":"Cherry Coconut Chocolate Bar","tr":"樱桃椰子巧克力棒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:TaintPlank":{"0":{"oreDict":["plankWood"],"name":"Tainted Planks","tr":"腐化木板","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:temperanceStone":{"0":{"name":"Stone of Temperance","tr":"节制之石","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:end_Stone":{"0":{"oreDict":["blockEndstone"],"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"End Stone","tr":"末地石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemTravelStaff":{"0":{"name":"Staff of Traveling","tr":"旅行权杖","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":17},"16":{"name":"Staff of Traveling","tr":"旅行权杖","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":17}},"miscutils:blockBlockInconel625":{"0":{"oreDict":["blockInconel625"],"name":"镍铬基合金-625块","tr":"镍铬基合金-625块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotNitinol60":{"0":{"oreDict":["ingotNitinol60"],"name":"镍钛诺60锭","tr":"镍钛诺60锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:barrelTierOne":{"0":{"name":"Barrel (Tier 1)","tr":"炮管(一级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Bluebells":{"0":{"name":"Bluebells","tr":"蓝铃草","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:life_imbued_boots":{"0":{"name":"Life Imbued Boots","tr":"生命灌输靴子","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":100001}},"Thaumcraft:ItemHoeVoid":{"0":{"name":"Void Hoe","tr":"虚空锄","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":151}},"Forestry:cratedNaturaSaplingTiger":{"0":{"name":"Crated Tigerwood Sapling","tr":"装箱的核桃树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:gems":{"0":{"name":"Ender Amethyst","tr":"紫水晶","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["gemRuby"],"name":"Ruby","tr":"红宝石","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["gemPeridot"],"name":"Peridot","tr":"橄榄石","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["gemTopaz"],"name":"Topaz","tr":"黄玉","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["gemTanzanite"],"name":"Tanzanite","tr":"坦桑石","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["gemMalachite"],"name":"Malachite","tr":"孔雀石","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["gemSapphire"],"name":"Sapphire","tr":"蓝宝石","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["gemAmber"],"name":"Amber","tr":"琥珀","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_silver":{"0":{"name":"SilverCurtain","tr":"银色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolBronzeSword":{"0":{"name":"Bronze Sword","tr":"青铜剑","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemCellMaragingSteel250":{"0":{"oreDict":["cellMaragingSteel250"],"name":"马氏体时效钢250单元","tr":"马氏体时效钢250单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:nitorGas":{"0":{"name":"tile.nitorGas.name","tr":"tile.nitorGas.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemFocusTime":{"0":{"name":"Wand Focus: Time","tr":"法杖核心:时间","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodLongIncoloyDS":{"0":{"oreDict":["stickLongIncoloyDS"],"name":"长耐热铬铁合金-DS杆","tr":"长耐热铬铁合金-DS杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockLifter":{"0":{"name":"Arcane Levitator","tr":"奥术悬浮台","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WandCapTerraSteel":{"0":{"name":"Terrasteel Cap","tr":"泰拉钢杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Marshmallow":{"0":{"name":"Semi-stable Marshmallow","tr":"不稳定棉花糖","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemScrapbox":{"0":{"name":"Scrap Box","tr":"废料盒","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureKashinite":{"0":{"oreDict":["dustImpureKashinite"],"name":"Impure Kashinite Dust","tr":"含杂硫铑铱矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:venisonrawItem":{"0":{"oreDict":["listAllmeatraw"," listAllvenisonraw"," foodVenisonraw"],"name":"Raw Venison","tr":"生鹿肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.spacesuit_gravityboots":{"0":{"name":"SpaceSuit Gravity Boots","tr":"宇航服重力靴子","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":391}},"miscutils:itemHotIngotCinobiteA243":{"0":{"oreDict":["ingotHotCinobiteA243"],"name":"热西诺柏A243锭","tr":"热西诺柏A243锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorPouch":{"0":{"name":"Bottomless Pouch","tr":"无底袋","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:beanburritoItem":{"0":{"oreDict":["foodBeanburrito"],"name":"Bean Burrito","tr":"豆玉米煎饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:masterBloodOrb":{"0":{"name":"Master Blood Orb","tr":"导师气血宝珠","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.DarkLeaves":{"0":{"name":"Darkwood Leaves","tr":"黑树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTumbaga":{"0":{"oreDict":["boltTumbaga"],"name":"铜金合金螺栓","tr":"铜金合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialChest":{"0":{"name":"Primordial Cuirass","tr":"元始胸甲","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":48001}},"GoodGenerator:yottaFluidTankCasing":{"0":{"name":"YOTTank Casing","tr":"YOT机械方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:decoration.multibrickmetal":{"0":{"name":"Alumite Brick","tr":"耐酸铝砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ardite Brick","tr":"阿迪特砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Cobalt Brick","tr":"钴砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Manyullyn Brick","tr":"玛玉灵砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fancy Alumite Brick","tr":"平滑耐酸铝砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Ardite Brick","tr":"平滑阿迪特砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fancy Cobalt Brick","tr":"平滑钴砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fancy Manyullyn Brick","tr":"平滑玛玉灵砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallInconel625":{"0":{"oreDict":["dustSmallInconel625"],"name":"小堆镍铬基合金-625粉","tr":"小堆镍铬基合金-625粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustRadioactiveMineralMix":{"0":{"oreDict":["dustRadioactiveMineralMix"],"name":"放射性矿物混合物粉","tr":"放射性矿物混合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreGadoliniteY":{"0":{"oreDict":["oreGadoliniteY"],"name":"Gadolinite (Y) Ore","tr":"硅铍钇矿(Y)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:broccoliseedItem":{"0":{"oreDict":["seedBroccoli"," listAllseed"],"name":"Broccoli Seed","tr":"西兰花种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:laputaShard":{"0":{"name":"Shard of Laputa","tr":"拉普达碎片","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Shard of Laputa","tr":"拉普达碎片","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Shard of Laputa","tr":"拉普达碎片","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Shard of Laputa","tr":"拉普达碎片","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Shard of Laputa","tr":"拉普达碎片","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Factory:plainPipeBlock":{"0":{"name":"Mining Pipe","tr":"采矿管道","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemOreIridium":{"0":{"oreDict":["gemIridium"],"name":"Iridium Ore","tr":"铱矿","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:soybeanseedItem":{"0":{"oreDict":["listAllseed"," seedSoybean"],"name":"Soybean Seed","tr":"黄豆种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:armor.steel.plate":{"0":{"name":"Steel Chestplate","tr":"钢胸甲","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":401}},"EnderZoo:enderFragment":{"0":{"name":"Ender Fragment","tr":"末影碎片","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHeLiCoPtEr":{"0":{"oreDict":["dustHeLiCoPtEr"],"name":"HeLiCoPtEr粉","tr":"HeLiCoPtEr粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLanthaniteCe":{"0":{"oreDict":["dustSmallLanthaniteCe"],"name":"小堆镧石(Ce)粉","tr":"小堆镧石(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:soil":{"0":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Soil","tr":"普通花土","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:Quartz Pickaxe":{"0":{"name":"Quartz Pickaxe","tr":"石英镐","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":251}},"battlegear2:chain":{"0":{"name":"Chain","tr":"铁链","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLFTRFuel1":{"0":{"oreDict":["dustTinyLFTRFuel1"],"name":"小撮液态氟钍反应堆燃料1粉","tr":"小撮液态氟钍反应堆燃料1粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLFTRFuel2":{"0":{"oreDict":["dustTinyLFTRFuel2"],"name":"小撮液态氟钍反应堆燃料2粉","tr":"小撮液态氟钍反应堆燃料2粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLFTRFuel3":{"0":{"oreDict":["dustTinyLFTRFuel3"],"name":"小撮液态氟钍反应堆燃料3粉","tr":"小撮液态氟钍反应堆燃料3粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA12Slab":{"0":{"name":"Metamorphic Swamp Cobblestone Slab","tr":"变质沼泽圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedRadioactiveMineralMix":{"0":{"oreDict":["crushedPurifiedRadioactiveMineralMix"],"name":"Purified Crushed Strange Ore","tr":"洗净的奇异矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:trim_1":{"0":{"name":"Yellow Trim","tr":"黄色木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"White Trim","tr":"白色木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Red Trim","tr":"红色木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Grey Trim","tr":"灰色木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Greatwood Trim","tr":"宏伟之木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Silverwood Trim","tr":"银木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Rowan Trim","tr":"山梨木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Alder Trim","tr":"赤杨木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hawthorn Trim","tr":"山楂木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Treated Wood Trim","tr":"防腐木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Livingwood Trim","tr":"活木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Dreamwood Trim","tr":"梦之木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.rfidCard":{"0":{"name":"RFID Card","tr":"RFID卡","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawersMisc:trim_0":{"0":{"name":"Redwood Trim","tr":"红木桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fir Trim","tr":"冷杉桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Acacia Trim","tr":"刺槐桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cypress Trim","tr":"柏树桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Japanese Maple Trim","tr":"日本枫树桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Rainbow Eucalyptus Trim","tr":"彩虹桉树桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Autumn Trim","tr":"秋树桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Bald Cypress Trim","tr":"落羽松桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sakura Trim","tr":"樱花树桥接方块","tab":"储物抽屉|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicPickaxe":{"0":{"name":"Draconic Pickaxe","tr":"龙之镐","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"IC2:blockLuminator":{"0":{"name":"Luminator","tr":"日光灯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peppermintItem":{"0":{"oreDict":["foodPeppermint"],"name":"Peppermint","tr":"薄荷糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:extractor_base_remote":{"0":{"name":"Retrieval Node (Items)","tr":"检索节点(物品)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Retrieval Node (Liquids)","tr":"检索节点(流体)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyNitinol60":{"0":{"oreDict":["dustTinyNitinol60"],"name":"小撮镍钛诺60粉","tr":"小撮镍钛诺60粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellThorium":{"0":{"oreDict":["cellThorium"],"name":"钍单元","tr":"钍单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:dirtPath":{"0":{"name":"Trodden Dirt","tr":"沙土","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:platform":{"0":{"name":"Abstruse Platform","tr":"奥秘平台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spectral Platform","tr":"幻影平台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Infrangible Platform","tr":"不破平台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedHibonite":{"0":{"oreDict":["crushedCentrifugedHibonite"],"name":"Centrifuged Crushed Hibonite Ore","tr":"离心黑铝钙石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:zeppoleItem":{"0":{"oreDict":["foodZeppole"],"name":"Zeppole","tr":"炸面饼圈","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDehydratorCoil":{"0":{"name":"Dehydrator Coil [EV]","tr":"脱水线圈 [EV]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Dehydrator Coil [IV]","tr":"脱水线圈 [IV]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Dehydrator Coil [LuV]","tr":"脱水线圈 [LuV]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Dehydrator Coil [ZPM]","tr":"脱水线圈 [ZPM]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:crystalBow":{"0":{"name":"Crystal Bow","tr":"水晶弓","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":501}},"Natura:natura.sword.bloodwood":{"0":{"name":"Bloodwood Sword","tr":"血树剑","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":351}},"witchery:earmuffs":{"0":{"name":"Earmuffs","tr":"静音耳罩","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":56}},"miscutils:itemDustXenotime":{"0":{"oreDict":["dustXenotime"],"name":"磷钇矿粉","tr":"磷钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicShovel":{"0":{"name":"Draconic Shovel","tr":"龙之铲","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"Forestry:fluid.bioethanol":{"0":{"name":"Ethanol","tr":"乙醇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLithiumHydroxide":{"0":{"oreDict":["dustSmallLithiumHydroxide"],"name":"小堆氢氧化锂粉","tr":"小堆氢氧化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjectBlue:sprayCan":{"0":{"name":"Paint Remover","tr":"脱漆剂","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":257}},"GalaxySpace:tcetieblocks":{"0":{"oreDict":["rockTcetiE"," rockSpace"],"name":"T Ceti E Surface Block","tr":"鲸鱼座T星E地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockTcetiE"," rockSpace"],"name":"T Ceti E Subsurface Block","tr":"鲸鱼座T星E地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockTcetiE"," rockSpace"],"name":"T Ceti E Stone Block","tr":"鲸鱼座T星E岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemMugBooze":{"0":{"name":"Zero","tr":"Zero","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:deimosblocks":{"0":{"oreDict":["rockDeimos"," rockSpace"],"name":"Deimos Surface Block","tr":"火卫二地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockDeimos"," rockSpace"],"name":"Deimos Subsurface Block","tr":"火卫二地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreOriharukon"],"name":"Oriharukon Ore","tr":"火卫二奥利哈钢矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"火卫二锡矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.blockstones":{"0":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"大理石","tr":"大理石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"大理石圆石","tr":"大理石圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"苔藓大理石圆石","tr":"苔藓大理石圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"大理石砖","tr":"大理石砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"裂纹大理石砖","tr":"裂纹大理石砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"苔藓大理石砖","tr":"苔藓大理石砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"錾制大理石","tr":"錾制大理石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stoneMarble"," marble"," blockMarble"],"name":"平滑大理石","tr":"平滑大理石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"玄武岩","tr":"玄武岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"玄武岩圆石","tr":"玄武岩圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"苔藓玄武岩圆石","tr":"苔藓玄武岩圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"玄武岩砖","tr":"玄武岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"裂纹玄武岩砖","tr":"裂纹玄武岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"苔藓玄武岩砖","tr":"苔藓玄武岩砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"錾制玄武岩","tr":"錾制玄武岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["stoneBasalt"," blockBasalt"," basalt"],"name":"平滑玄武岩","tr":"平滑玄武岩","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPikyonium64B":{"0":{"oreDict":["dustSmallPikyonium64B"],"name":"小堆皮卡优合金64B粉","tr":"小堆皮卡优合金64B粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:broccolimacItem":{"0":{"oreDict":["foodBroccolimac"],"name":"Broccoli Mac","tr":"西兰花意粉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseTungstenTitaniumCarbide":{"0":{"oreDict":["plateDenseTungstenTitaniumCarbide"],"name":"致密碳化钨钛合金板","tr":"致密碳化钨钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:dreamwood0SlabFull":{"0":{"name":"Dreamwood Slab","tr":"梦之木台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsProviderLogistics":{"0":{"name":"Provider Logistics Pipe","tr":"供应物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:netherHeart":{"0":{"name":"Ember Heart","tr":"灰烬之心","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"OpenBlocks:spongeonastick":{"0":{"name":"Sponge","tr":"海绵棒","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":257}},"miscutils:blockFrameGtEglinSteel":{"0":{"oreDict":["frameGtEglinSteel"],"name":"埃格林钢框架","tr":"埃格林钢框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemFocusEldritch":{"0":{"name":"Wand Focus: Dark Matter","tr":"法杖核心:邪术","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:flowerBag":{"0":{"name":"Flower Pouch","tr":"采花袋","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"gendustry:LiquidDNACan":{"0":{"name":"Liquid DNA Can","tr":"液态DNA罐","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:NitrogenTetroxide":{"0":{"oreDict":["cellNitrogenTetroxide"],"name":"四氧化二氮单元","tr":"四氧化二氮单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLanthaniteLa":{"0":{"oreDict":["dustTinyLanthaniteLa"],"name":"小撮镧石(La)粉","tr":"小撮镧石(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:dungeon_puzzle":{"0":{"name":"Dungeon Puzzle (Triggerable - Unlit)","tr":"地牢谜题(无光)(可触发)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Dungeon Puzzle (Triggerable - Lit)","tr":"地牢谜题(发光)(可触发)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dungeon Puzzle (Non-triggerable - Unlit)","tr":"地牢谜题(无光)(不可触发)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Dungeon Puzzle (Non-triggerable - Lit)","tr":"地牢谜题(发光)(不可触发)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Dungeon Puzzle (Distributor - Spread - Unlit)","tr":"地牢谜题(无光)(传播分散)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dungeon Puzzle (Distributor - Spread - Lit)","tr":"地牢谜题(发光)(传播分散)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Dungeon Puzzle (Distributor - Square - Unlit)","tr":"地牢谜题(无光)(方形分散)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Dungeon Puzzle (Distributor - Square - Lit)","tr":"地牢谜题(有光)(方形分散)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Dungeon Puzzle (Disabled)","tr":"地牢谜题(关闭)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Dungeon Puzzle (Wall)","tr":"地牢谜题(墙壁)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Dungeon Puzzle (Rock)","tr":"地牢谜题(岩石)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Dungeon Puzzle (Ceiling)","tr":"地牢谜题(顶棚)","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:impmeat":{"0":{"name":"Raw Imphide","tr":"生恶魔皮","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Cooked Imphide","tr":"鞣质恶魔皮","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPeppercorn":{"0":{"name":"Peppercorn","tr":"胡椒","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconiumDust":{"0":{"oreDict":["dustDraconium"],"name":"Draconium Dust","tr":"龙尘","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:butanol":{"0":{"oreDict":["cellButanol"],"name":"丁醇单元","tr":"丁醇单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockDemonChest":{"0":{"name":"Demon\u0027s Chest","tr":"恶魔的箱子","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderZoo:confusingDust":{"0":{"name":"Confusing Powder","tr":"混乱粉末","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedRunite":{"0":{"oreDict":["crushedCentrifugedRunite"],"name":"Centrifuged Crushed Runite Ore","tr":"离心的虚恩矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:meatpieItem":{"0":{"oreDict":["foodMeatpie"],"name":"Meat Pie","tr":"肉饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyDragonblood":{"0":{"oreDict":["dustTinyDragonblood"],"name":"小撮龙血粉","tr":"小撮龙血粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingwood0SlabFull":{"0":{"name":"Livingwood Slab","tr":"活木台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetDysprosium":{"0":{"oreDict":["nuggetDysprosium"],"name":"镝粒","tr":"镝粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinDarkWizardII":{"0":{"name":"Coin \"The Dark Wizard 100\"","tr":"魔法师币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemBloodPack":{"0":{"name":"Blood Letter\u0027s Pack","tr":"血液背包","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":241}},"dreamcraft:item.BarnardaFStoneDust":{"0":{"oreDict":["dustSpace"," dustBarnardaFStone"," dustBarnardaF"],"name":"Barnarda F Stone Dust","tr":"巴纳德F尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockCurium":{"0":{"oreDict":["blockCurium"],"name":"锔块","tr":"锔块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.brightAir":{"0":{"name":"tile.brightAir.name","tr":"tile.brightAir.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:pollen":{"0":{"name":"Hollyhock Pollen","tr":"蜀葵 花粉","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinDarkWizardIV":{"0":{"name":"Coin \"The Dark Wizard 10K\"","tr":"魔法师币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.arcticBoots":{"0":{"name":"Arctic Boots","tr":"极地靴子","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":131}},"ThaumicTinkerer:gaseousLightItem":{"0":{"name":"Gaseous Illuminae","tr":"光明气瓶","tab":"神秘工匠","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallIrarsite":{"0":{"oreDict":["dustSmallIrarsite"],"name":"小堆硫砷铱粉","tr":"小堆硫砷铱粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:reedBlock0SlabFull":{"0":{"name":"Reed Slab","tr":"甘蔗台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_north_lit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_lit_tape":{"0":{"name":"Catwalk","tr":"栈桥","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:grassSeeds":{"0":{"name":"Pasture Seeds","tr":"草地之种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Boreal Seeds","tr":"寒地之种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Infestation Spores","tr":"菌丝孢子","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Dry Pasture Seeds","tr":"干草之种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Golden Pasture Seeds","tr":"黄金草种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Vivid Pasture Seeds","tr":"鲜草之种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Scorched Pasture Seeds","tr":"焦土草种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Infused Pasture Seeds","tr":"注魔草种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Mutated Pasture Seeds","tr":"异变草种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:redlonStem":{"0":{"name":"Redlon Stem","tr":"红石瓜","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:glazedcarrotsItem":{"0":{"oreDict":["foodGlazedcarrots"],"name":"Glazed Carrots","tr":"糖水胡萝卜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemViewCell":{"0":{"name":"View Cell","tr":"显示元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellLFTRFuelBase":{"0":{"oreDict":["cellLFTRFuelBase"],"name":"液态氟钍反应堆基燃料单元","tr":"液态氟钍反应堆基燃料单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_stained_glass":{"0":{"oreDict":["blockGlassHV"],"name":"Blood Stained Glass","tr":"染血玻璃","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CeresStoneDust":{"0":{"oreDict":["dustCeres"," dustSpace"," dustCeresStone"],"name":"Ceres Stone Dust","tr":"谷神星尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemwcarbonrotor":{"1":{"name":"Kinetic Gearbox Rotor (Carbon)","tr":"碳转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":604801}},"miscutils:itemDustTinyKashinite":{"0":{"oreDict":["dustTinyKashinite"],"name":"小撮硫铑铱矿粉","tr":"小撮硫铑铱矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorHeatSwitchCore":{"1":{"name":"Reactor Heat Exchanger","tr":"反应堆热交换器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"lootgames:ms_activator":{"0":{"name":"Minesweeper","tr":"扫雷","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.AuroraSlab":{"0":{"name":"Aurora Slab","tr":"极光半砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:marblePedestal":{"0":{"name":"Marble Pedestal","tr":"大理石基座","tab":"神秘革命","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:glieonia":{"0":{"name":"Glieonia Crop","tr":"荧光花","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewBloodSteel":{"0":{"oreDict":["screwBloodSteel"],"name":"血钢螺丝","tr":"血钢螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusPrimal":{"0":{"name":"Wand Focus: Primal","tr":"法杖核心:元始","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:cart.track.layer":{"0":{"name":"Track Layer Cart","tr":"轨道铺设车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"miscutils:itemGearPotin":{"0":{"oreDict":["gearGtPotin"," gearPotin"],"name":"粗青铜合金齿轮","tr":"粗青铜合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:mobessence":{"0":{"oreDict":["cellmobessence"],"name":"怪物精华液单元","tr":"怪物精华液单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:plutoblocks":{"0":{"oreDict":["rockPluto"," rockSpace"],"name":"Pluto Surface Ice","tr":"冥王星地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockPluto"," rockSpace"],"name":"Pluto Surface Ice","tr":"冥王星石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockPluto"," rockSpace"],"name":"Pluto Surface Ice","tr":"冥王星石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["rockPluto"," rockSpace"],"name":"Pluto Surface Ice","tr":"冥王星石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["rockPluto"," rockSpace"],"name":"Pluto Subsurface Ice","tr":"冥王星地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["rockPluto"," rockSpace"],"name":"Pluto Stone","tr":"冥王星石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pluto Dungeon Bricks","tr":"冥王星地牢砖","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockNethermind":{"0":{"name":"Nethermind","tr":"下界之核","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:trapdoor_jungle":{"0":{"name":"Jungle Trapdoor","tr":"丛林木活板门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLanthaniteNd":{"0":{"oreDict":["dustTinyLanthaniteNd"],"name":"小撮镧石(Nd)粉","tr":"小撮镧石(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsquartz":{"0":{"name":"Quartz-Covered Pipe","tr":"石英管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorArceusAlloy2B":{"0":{"oreDict":["rotorArceusAlloy2B"],"name":"阿尔宙斯合金2B转子","tr":"阿尔宙斯合金2B转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BlackPlutoniumDensePlate":{"0":{"oreDict":["plateDenseBlackPlutonium"],"name":"Dense Black Plutonium Plate","tr":"致密黑钚板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steel_sword":{"0":{"name":"Heavy Duty Sword","tr":"重剑","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":769}},"miscutils:itemDustSmallInconel690":{"0":{"oreDict":["dustSmallInconel690"],"name":"小堆镍铬基合金-690粉","tr":"小堆镍铬基合金-690粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pambananaSapling":{"0":{"name":"Banana Sapling","tr":"香蕉树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormLeggings":{"0":{"name":"Casting Form (Leggings Mold)","tr":"铸件(护腿)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantumPartHelmet":{"0":{"name":"Quantum Parts \"Helmet\"","tr":"量子头盔外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleZeron100":{"0":{"oreDict":["plateDoubleZeron100"],"name":"双重塞龙-100板","tr":"双重塞龙-100板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"thaumicbases:overchanter":{"0":{"name":"Overchanting Table","tr":"超吟附魔台","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.canister":{"0":{"name":"Tin Canister","tr":"锡罐","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Copper Canister","tr":"铜罐","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:fan":{"0":{"name":"Fan","tr":"风扇","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallIncoloy020":{"0":{"oreDict":["dustSmallIncoloy020"],"name":"小堆耐热铬铁合金-020粉","tr":"小堆耐热铬铁合金-020粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:wardSlabFull":{"0":{"name":"Paving Slab of Warding","tr":"守卫者台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.sakura":{"0":{"oreDict":["trapdoorWood"],"name":"Sakura Trapdoor","tr":"樱花树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:item.thaumiumScoop":{"0":{"name":"Thaumium Scoop","tr":"奥法捕虫网","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":31}},"GalaxySpace:ioglowstone":{"0":{"oreDict":["glowstone"," rockSpace"," rockIo"],"name":"Io Glowstone","tr":"木卫一萤石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:part.rebar":{"0":{"name":"Rebar","tr":"钢筋","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:nether_brick":{"1":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Nether Brick","tr":"地狱砖","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewSelenium":{"0":{"oreDict":["screwSelenium"],"name":"硒螺丝","tr":"硒螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.woodDoubleslab":{"0":{"name":"Lumipod Slab","tr":"卢米坡德台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Virilig Slab","tr":"维里格台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockLuminatorDark":{"0":{"name":"Luminator","tr":"日光灯","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peasseedItem":{"0":{"oreDict":["seedPeas"," listAllseed"],"name":"Peas Seed","tr":"豌豆种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldLeggings":{"0":{"name":"Mold (Leggings)","tr":"模具(护腿)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:veggiebaitItem":{"0":{"oreDict":["veggieBait"],"name":"Veggie Bait","tr":"蔬菜诱饵","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyIodine":{"0":{"oreDict":["dustTinyIodine"],"name":"小撮碘粉","tr":"小撮碘粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedPerroudite":{"0":{"oreDict":["crushedCentrifugedPerroudite"],"name":"Centrifuged Crushed Perroudite Ore","tr":"离心溴硫银汞矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:kiwijellysandwichItem":{"0":{"oreDict":["foodKiwijellysandwich"],"name":"Kiwi Jelly Sandwich","tr":"猕猴桃果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:terraSword":{"0":{"name":"Terra Blade","tr":"泰拉之刃","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":2301}},"miscutils:crushedPurifiedRunite":{"0":{"oreDict":["crushedPurifiedRunite"],"name":"Purified Crushed Runite Ore","tr":"洗净的虚恩矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:kimchiItem":{"0":{"oreDict":["foodKimchi"],"name":"Kimchi","tr":"泡菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:fieldRestrictingGlass":{"0":{"name":"Field Restriction Glass","tr":"力场约束玻璃","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnceladusStoneDust":{"0":{"oreDict":["dustEnceladusStone"," dustEnceladus"," dustSpace"],"name":"Enceladus Stone Dust","tr":"土卫二尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTantalumCarbide":{"0":{"oreDict":["boltTantalumCarbide"],"name":"碳化钽螺栓","tr":"碳化钽螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:flourItem":{"0":{"oreDict":["foodFlour"," flourEqualswheat"," dustWheat"],"name":"Flour","tr":"面粉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltBloodSteel":{"0":{"oreDict":["boltBloodSteel"],"name":"血钢螺栓","tr":"血钢螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersLadder":{"0":{"name":"Carpenter\u0027s Ladder","tr":"木匠梯子","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongSelenium":{"0":{"oreDict":["stickLongSelenium"],"name":"长硒杆","tr":"长硒杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemNanoComet":{"1":{"name":"Nano Boots of the Comet","tr":"纳米彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Nano Boots of the Comet","tr":"纳米彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"appliedenergistics2:item.ItemExtremeStorageCell.Singularity":{"0":{"name":"ME Digital Singularity Cell","tr":"ME数字奇点元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:fireFire":{"0":{"name":"Ignis Imbued Fire","tr":"离火之焰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:itemCollector":{"0":{"name":"Item Collector","tr":"物品收集器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"BinnieCore:containerCylinder":{"768":{"name":"Growth Medium Cylinder","tr":"培养基玻璃罐","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"769":{"name":"Bacteria Cylinder","tr":"细菌玻璃罐","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"770":{"name":"Polymerized Bacteria Cylinder","tr":"聚合菌玻璃罐","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"771":{"name":"Raw DNA Cylinder","tr":"DNA 液体玻璃罐","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"772":{"name":"Bacteria Vector Cylinder","tr":"细菌质粒玻璃罐","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1}},"TwistSpaceTechnology:nuclear":{"0":{"name":"nuclear.0.name","tr":"nuclear.0.name","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPowerMonitor":{"0":{"name":"Power Monitor","tr":"能量监控器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetGrisium":{"0":{"oreDict":["nuggetGrisium"],"name":"灰钛合金粒","tr":"灰钛合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedXenotime":{"0":{"oreDict":["crushedPurifiedXenotime"],"name":"Purified Crushed Xenotime Ore","tr":"洗净的磷钇矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZirkelite":{"0":{"oreDict":["dustSmallZirkelite"],"name":"小堆钛锆钍矿粉","tr":"小堆钛锆钍矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:infusionCheat":{"1":{"name":"Quicksilver Limbs","tr":"水银之肢","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Thaumium Claws","tr":"神秘之爪","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Awakened Blood","tr":"苏醒之血","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Diamondflesh","tr":"金刚之躯","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Enderheart","tr":"末影之心","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Shock Skin","tr":"电击之肤","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Instilled Loyalty","tr":"蛊惑人心","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Runic Hide","tr":"符文皮毛","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Eldritch Fangs","tr":"邪术毒牙","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Portability","tr":"便携虚空","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaweaveBoots":{"0":{"name":"Manaweave Boots","tr":"魔源长靴","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":66}},"dreamcraft:tile.BloodyVoid":{"0":{"name":"Blood-Soaked Void Block","tr":"血腥虚空块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHeLiCoPtEr":{"0":{"oreDict":["screwHeLiCoPtEr"],"name":"HeLiCoPtEr螺丝","tr":"HeLiCoPtEr螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcactusfruitCrop":{"0":{"name":"Cactus Fruit Crop","tr":"仙人掌果","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.noseCone":{"0":{"name":"Nose Cone","tr":"鼻锥","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:fireWater":{"0":{"name":"Aqua Imbued Fire","tr":"坎水之焰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPhthalicAnhydride":{"0":{"oreDict":["dustSmallPhthalicAnhydride"],"name":"小堆邻苯二甲酸酐粉","tr":"小堆邻苯二甲酸酐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:radishItem":{"0":{"oreDict":["cropRadish"," listAllrootveggie"," listAllveggie"],"name":"Radish","tr":"小红萝卜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockAdditionalEldritchPortal":{"0":{"name":"Eldritch Portal","tr":"邪术传送门","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZeron100":{"0":{"oreDict":["dustTinyZeron100"],"name":"小撮塞龙-100粉","tr":"小撮塞龙-100粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockIncoloy020":{"0":{"oreDict":["blockIncoloy020"],"name":"耐热铬铁合金-020块","tr":"耐热铬铁合金-020块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:witchrobe":{"0":{"name":"Witches Robes","tr":"巫师袍","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":81}},"AWWayofTime:simpleCatalyst":{"0":{"name":"Simple Catalyst","tr":"简单的催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:scattershotUpgradeItem":{"0":{"name":"Upgrade - Scattershot","tr":"升级组件-散射","tab":"模块化炮塔","type":"Item","maxStackSize":2,"maxDurability":1}},"harvestcraft:lambwithmintsauceItem":{"0":{"oreDict":["foodLambwithmintsauce"],"name":"Lamb with Mint Sauce","tr":"薄荷羊肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"adventurebackpack:clockworkCrossbow":{"0":{"name":"Clockwork Crossbow","tr":"发条弩","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:dustPureBariteRd":{"0":{"oreDict":["dustPureBariteRd"],"name":"Purified Barite (Rd) Dust","tr":"纯净 重晶石(Rd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodlabel":{"0":{"name":"Sacred Oak Label","tr":"天域树橡树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Label","tr":"樱桃树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Label","tr":"黑暗树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Label","tr":"杉树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Label","tr":"地狱皮树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Label","tr":"阁楼树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Label","tr":"蓝花楹标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Label","tr":"魔法树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Label","tr":"红杉标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Label","tr":"棕榈树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Label","tr":"松树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Label","tr":"红木标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Label","tr":"柳树标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Label","tr":"桃花心木标签","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBootsThaumium":{"0":{"name":"Thaumium Boots","tr":"神秘靴子","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":326}},"supersolarpanel:AdminSolarPanel":{"0":{"name":"Light-Absorbing Solar Panel","tr":"吸光太阳能发电机(ZPM)","tab":"超级太阳能发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PhobosStoneDust":{"0":{"oreDict":["dustSpace"," dustPhobosStone"," dustPhobos"],"name":"Phobos Stone Dust","tr":"火卫一尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallQuantum":{"0":{"oreDict":["dustSmallQuantum"],"name":"小堆量子合金粉","tr":"小堆量子合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:asparagusItem":{"0":{"oreDict":["cropAsparagus"," listAllveggie"," listAllgreenveggie"],"name":"Asparagus","tr":"芦笋","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberryicecreamItem":{"0":{"oreDict":["foodStrawberryicecream"],"name":"Strawberry Ice Cream","tr":"草莓冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.woodSlab":{"0":{"oreDict":["slabWood"],"name":"Lumipod Slab","tr":"卢米坡德台阶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"],"name":"Virilig Slab","tr":"维里格台阶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"supersolarpanel:bluecomponent":{"0":{"name":"Blue Spectral Component","tr":"蓝色光谱组件","tab":"超级太阳能发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chickencelerycasseroleItem":{"0":{"oreDict":["foodChickencelerycasserole"],"name":"Chicken Celery Casserole","tr":"芹菜鸡肉砂锅菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodWhiteMetal":{"0":{"oreDict":["stickWhiteMetal"],"name":"白物质杆","tr":"白物质杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:redStringComparator":{"0":{"name":"Red Stringed Comparator","tr":"红线比较器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:BlockShadowmetal":{"0":{"oreDict":["blockShadow"],"name":"Block of Shadowmetal","tr":"暗影方块","tab":"污秽魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireChromaticGlass":{"0":{"oreDict":["wireFineChromaticGlass"],"name":"细彩色玻璃导线","tr":"细彩色玻璃导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:CrossbowLimbPart":{"0":{"name":"Wooden Crossbow Limb","tr":"木弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Crossbow Limb","tr":"石弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Crossbow Limb","tr":"铁弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Crossbow Limb","tr":"燧石弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Crossbow Limb","tr":"仙人掌弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Crossbow Limb","tr":"骨头弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Crossbow Limb","tr":"黑曜石弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Crossbow Limb","tr":"地狱岩弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Crossbow Limb","tr":"史莱姆弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Crossbow Limb","tr":"纸弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Crossbow Limb","tr":"钴弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Crossbow Limb","tr":"阿迪特弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Crossbow Limb","tr":"玛玉灵弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Crossbow Limb","tr":"铜弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Crossbow Limb","tr":"青铜弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Crossbow Limb","tr":"耐酸铝弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Crossbow Limb","tr":"钢弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Crossbow Limb","tr":"史莱姆弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Crossbow Limb","tr":"生铁弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Crossbow Limb","tr":"不稳定感应弩臂","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:pedometer":{"0":{"name":"Pedometer","tr":"计步器","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":1}},"LogisticsPipes:item.brokenItem":{"0":{"name":"Logistics Broken Item","tr":"已损坏物品","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_burned_string":{"0":{"name":"Blood Burned String","tr":"血灼之线","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetIncoloyDS":{"0":{"oreDict":["nuggetIncoloyDS"],"name":"耐热铬铁合金-DS粒","tr":"耐热铬铁合金-DS粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_green":{"0":{"name":"Green Curtain","tr":"绿色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:garlicmashedpotatoesItem":{"0":{"oreDict":["foodGarlicmashedpotatoes"],"name":"Garlic Mashed Potatoes","tr":"蒜蓉土豆泥","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:BoltAmmo":{"0":{"name":"item.InfiTool.name","tr":"item.InfiTool.name","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"BiomesOPlenty:flowers":{"0":{"oreDict":["flowerWhite"," flowerClover"],"name":"Clover","tr":"苜蓿","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["flowerSwamp"," flowerCyan"],"name":"Swampflower","tr":"沼泽花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["flowerGray"," flowerDeathbloom"],"name":"Deathbloom","tr":"死亡花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["flowerWhite"," flowerGlowflower"],"name":"Glowflower","tr":"闪光花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["flowerLightBlue"," flowerHydrangeaBlue"],"name":"Blue Hydrangea","tr":"绣球花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["flowerCosmosOrange"," flowerOrange"],"name":"Orange Cosmos","tr":"黄波斯菊","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["flowerDaffodil"," flowerPink"],"name":"Pink Daffodil","tr":"粉水仙","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["flowerWildflower"," flowerPurple"],"name":"Wildflower","tr":"野花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["flowerViolet"," flowerPurple"],"name":"Violet","tr":"紫罗兰","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["flowerWhite"," flowerAnemoneWhite"],"name":"White Anemone","tr":"银莲花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["flowerLightGray"," flowerWaterlily"],"name":"Waterlily","tr":"水百合","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["flowerBlack"," flowerEnderlotus"],"name":"Enderlotus","tr":"末影莲","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["flowerOrange"," flowerBromeliad"],"name":"Bromeliad","tr":"凤梨花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["flowerEyebulb"," cropEyebulb"," flowerBrown"],"name":"Eyebulb","tr":"眼球花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["flowerLightGray"," flowerDandelionPuff"],"name":"Dandelion Puff","tr":"蒲公英","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA2Stairs":{"0":{"name":"Metamorphic Mountain Stone Stairs","tr":"变质高山石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:pavement2SlabFull":{"0":{"name":"Blue Portuguese Pavement Slab","tr":"蓝色葡萄牙台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier8Key":{"0":{"name":"Tier 7 Dungeon Key","tr":"7阶宝箱钥匙","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:highDensityPlutoniumNugget":{"0":{"name":"High Density Plutonium Nugget","tr":"浓缩钚粒","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:thatch":{"0":{"name":"Thatch","tr":"茅草块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:stump":{"0":{"name":"Candle Stump","tr":"蜡烛","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:tilapiarawItem":{"0":{"oreDict":["listAllfishraw"," foodTilapiaraw"],"name":"Raw Tilapia","tr":"生罗非鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcottonCrop":{"0":{"name":"Cotton Crop","tr":"棉花","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.unlitTorch":{"0":{"name":"Torch","tr":"火把","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorQuantumChestplate":{"1":{"name":"QuantumSuit Bodyarmor","tr":"量子护甲","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"QuantumSuit Bodyarmor","tr":"量子护甲","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:blockBlockBlackMetal":{"0":{"oreDict":["blockBlackMetal"],"name":"黑物质块","tr":"黑物质块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorRhenium":{"0":{"oreDict":["rotorRhenium"],"name":"铼转子","tr":"铼转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHG1223":{"0":{"oreDict":["ingotHG1223"],"name":"HG-1223锭","tr":"HG-1223锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:dezilsMarshmallow":{"0":{"name":"Dezil\u0027s Marshmallow","tr":"Dezil的棉花糖","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:curse":{"0":{"name":"Curse of Teleportation","tr":"传送诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"256":{"name":"Curse of Teleportation","tr":"传送诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"1":{"name":"Curse of Confusion","tr":"混乱诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"257":{"name":"Curse of Confusion","tr":"混乱诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"2":{"name":"Curse of Tranquility","tr":"平静诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"258":{"name":"Curse of Tranquility","tr":"平静诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"3":{"name":"Curse of Slowness","tr":"缓慢诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"259":{"name":"Curse of Slowness","tr":"缓慢诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"4":{"name":"Curse of Weakness","tr":"虚弱诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"260":{"name":"Curse of Weakness","tr":"虚弱诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"5":{"name":"Curse of Blindness","tr":"失明诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"261":{"name":"Curse of Blindness","tr":"失明诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"6":{"name":"Curse of Death","tr":"死亡诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"262":{"name":"Curse of Death","tr":"死亡诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"7":{"name":"Curse of Decay","tr":"衰变诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"263":{"name":"Curse of Decay","tr":"衰变诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"8":{"name":"Curse of Vampire","tr":"吸血鬼诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"264":{"name":"Curse of Vampire","tr":"吸血鬼诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"9":{"name":"Curse of Rebound","tr":"荆棘诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"265":{"name":"Curse of Rebound","tr":"荆棘诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"10":{"name":"Curse of Loss","tr":"湮灭诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1},"266":{"name":"Curse of Loss","tr":"湮灭诅咒","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemDustSmallPraseodymium":{"0":{"oreDict":["dustSmallPraseodymium"],"name":"小堆镨粉","tr":"小堆镨粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:peanutbuttercookiesItem":{"0":{"oreDict":["foodPeanutbuttercookies"],"name":"Peanut Butter Cookies","tr":"花生酱饼干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:gold_block":{"1":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Gold Block","tr":"金块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:compactFusionCoil":{"0":{"name":"Ameliorated Superconduct Coil","tr":"改良型超导线圈方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Compact Fusion Coil","tr":"压缩聚变线圈方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Advanced Compact Fusion Coil","tr":"进阶压缩聚变线圈方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Compact Fusion Coil MK-II Prototype","tr":"压缩聚变线圈方块MK-II原型","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Compact Fusion Coil MK-II Finaltype","tr":"压缩聚变线圈方块MK-II","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemVoidwalkerSash":{"0":{"name":"Voidwalker\u0027s Sash of Runic Shielding","tr":"虚空旅行者符文腰带","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":0}},"TwistSpaceTechnology:SpaceTimeMerger":{"0":{"name":"SpaceTime Merger T1","tr":"时空归并器T1","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"SpaceTime Merger T2","tr":"时空归并器T2","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"SpaceTime Merger T3","tr":"时空归并器T3","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Builders:blueprintItem":{"0":{"oreDict":["paperBlueprint"],"name":"Blueprint","tr":"蓝图","tab":"建筑","type":"Item","maxStackSize":16,"maxDurability":1}},"Railcraft:fluid.steam":{"0":{"name":"Steam","tr":"蒸汽","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_gray":{"0":{"name":"Gray Curtain","tr":"灰色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:spectral_tear":{"0":{"name":"Spectral Tear","tr":"魂之泪","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:propolis":{"0":{"name":"Unstable Propolis","tr":"不稳定蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Breezey Propolis","tr":"和风蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Burning Propolis","tr":"炽热蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flowing Propolis","tr":"奔流蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Stony Propolis","tr":"石化蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ordered Propolis","tr":"秩序蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Chaotic Propolis","tr":"混沌蜂胶","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsCraftingLogistics":{"0":{"name":"Crafting Logistics Pipe","tr":"合成物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:tile.quantumGlass":{"0":{"oreDict":["blockGlassUV"],"name":"Quantum Glass","tr":"量子玻璃","tab":"TecTech","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemArmorHazmatHelmetEx":{"0":{"name":"Advanced Hazmat Helmet","tr":"高级防化头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":257}},"AWWayofTime:energyBlasterSecondTier":{"0":{"name":"Energy Blaster II","tr":"能量爆破枪 II","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":251}},"IC2:fluidCoolant":{"0":{"name":"IC2 Coolant","tr":"冷却液","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rawCylinder":{"0":{"name":"Raw Cylinder","tr":"粗制气缸","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTumbaga":{"0":{"oreDict":["dustTinyTumbaga"],"name":"小撮铜金合金粉","tr":"小撮铜金合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotPikyonium64B":{"0":{"oreDict":["ingotHotPikyonium64B"],"name":"热皮卡优合金64B锭","tr":"热皮卡优合金64B锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.shovel.bloodwood":{"0":{"name":"Bloodwood Shovel","tr":"血树铲","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":351}},"ExtraUtilities:etherealglass":{"0":{"oreDict":["blockGlassHV"],"name":"Ethereal Glass","tr":"天域玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Ineffable Glass","tr":"超凡玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Dark Ethereal Glass","tr":"深色天域玻璃","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Ethereal Glass (Inverted)","tr":"天域玻璃(反向)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Ineffable Glass (Inverted)","tr":"超凡玻璃(反向)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Dark Ethereal Glass (Inverted)","tr":"暗色天域玻璃(反向)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:vampirecoat_female":{"0":{"name":"Vampire Dress Jacket (Ladies)","tr":"吸血鬼礼服 (女装)","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:itemCellHydroxide":{"0":{"oreDict":["cellHydroxide"],"name":"氢氧化物单元","tr":"氢氧化物单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemVoidFortressLeggings":{"0":{"name":"Void Fortress Thigh Guards","tr":"虚空要塞护胫","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":4501}},"miscutils:itemGearArceusAlloy2B":{"0":{"oreDict":["gearGtArceusAlloy2B"," gearArceusAlloy2B"],"name":"阿尔宙斯合金2B齿轮","tr":"阿尔宙斯合金2B齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TMechworks:SpoolWire":{"0":{"name":"Spool of Wire","tr":"线轴","tab":"匠魂|机关","type":"Item","maxStackSize":1,"maxDurability":257}},"witchery:pitdirt":{"0":{"name":"Dirt","tr":"泥土","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"TMechworks:LengthWire":{"0":{"name":"Length of Wire","tr":"长线","tab":"匠魂|机关","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:witchsapling":{"0":{"oreDict":["treeSapling"],"name":"Rowan Sapling","tr":"山梨树树苗","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Alder Sapling","tr":"赤杨树树苗","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeSapling"],"name":"Hawthorn Sapling","tr":"山楂树树苗","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemModItemFilter":{"0":{"name":"Mod Item Filter","tr":"模组物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_white":{"0":{"name":"White Curtain","tr":"白色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2NuclearControl:ItemVanilliaKit":{"0":{"name":"Vanilla Kit","tr":"IC原版工具","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFTrapDoorMine":{"0":{"name":"Minewood Trapdoor","tr":"矿工树活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:sigil_of_divinity":{"0":{"name":"Sigil of Divinity","tr":"神灵印记","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"Genetics:labMachine":{"0":{"name":"Lab Stand","tr":"实验台","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Analyzer","tr":"分析仪","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Incubator","tr":"恒温箱","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Genepool","tr":"基因池","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acclimatiser","tr":"适应性调整器","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:tile.remote_inventory":{"0":{"name":"Remote Inventory","tr":"远程背包接口","tab":"远程接口","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peachjellysandwichItem":{"0":{"oreDict":["foodPeachjellysandwich"],"name":"Peach Jelly Sandwich","tr":"桃子果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingwood0Wall":{"0":{"name":"Livingwood Wall","tr":"活木墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChargedCertusQuartzPlate":{"0":{"oreDict":["plateChargedCertusQuartz"],"name":"Charged Certus Quartz Plate","tr":"充能赛特斯石英板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemExtractSpeedUpgrade":{"0":{"name":"Item Conduit Speed Upgrade","tr":"物品导管速度升级","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Item Conduit Speed Downgrade","tr":"物品导管速度降级","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:Armor Stand":{"0":{"name":"Armor Stand","tr":"衣架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:heartCanister":{"0":{"name":"Empty Canister","tr":"心之容器外壳","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1},"1":{"name":"Miniature Red Heart","tr":"微型红心","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1},"2":{"name":"Red Heart Canister","tr":"红心容器","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1},"3":{"name":"Miniature Yellow Heart","tr":"微型黄心","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1},"4":{"name":"Yellow Heart Canister","tr":"黄心容器","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1},"5":{"name":"Miniature Green Heart","tr":"微型绿心","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1},"6":{"name":"Green Heart Canister","tr":"绿心容器","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1}},"dreamcraft:item.RawOrbTier6":{"0":{"name":"Raw Orb Tier VI","tr":"六阶宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawOrbTier5":{"0":{"name":"Raw Orb Tier V","tr":"五阶宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawOrbTier4":{"0":{"name":"Raw Orb Tier IV","tr":"四阶宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawOrbTier3":{"0":{"name":"Raw Orb Tier III","tr":"三阶宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawOrbTier2":{"0":{"name":"Raw Orb Tier II","tr":"二阶宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawOrbTier1":{"0":{"name":"Raw Orb Tier I","tr":"一阶宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.custom_door":{"0":{"name":"Custom Door","tr":"自定义门","tab":"","type":"Item","maxStackSize":16,"maxDurability":1}},"Thaumcraft:blockCosmeticSlabStone":{"0":{"name":"Arcane Stone Slab","tr":"奥术台阶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ancient Stone Slab","tr":"荒古台阶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:tile.BiblioFramedChest":{"0":{"name":"Framed Chest","tr":"镶框箱子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedgemFlawed":{"1":{"oreDict":["gemFlawedBismutite"],"name":"有瑕的泡铋","tr":"有瑕的泡铋","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["gemFlawedPrasiolite"],"name":"有瑕的堇云石","tr":"有瑕的堇云石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["gemFlawedCubicZirconia"],"name":"有瑕的立方氧化锆","tr":"有瑕的立方氧化锆","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["gemFlawedMagnetoResonatic"],"name":"有瑕的磁共振石","tr":"有瑕的磁共振石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["gemFlawedFluor-Buergerite"],"name":"有瑕的氟铁电气石","tr":"有瑕的氟铁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["gemFlawedChromo-Alumino-Povondraite"],"name":"有瑕的铬铝电气石","tr":"有瑕的铬铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["gemFlawedOrundum"],"name":"有瑕的合成玉","tr":"有瑕的合成玉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["gemFlawedVanadio-Oxy-Dravite"],"name":"有瑕的钒镁电气石","tr":"有瑕的钒镁电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["gemFlawedOlenite"],"name":"有瑕的铝电气石","tr":"有瑕的铝电气石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["gemFlawedBArTiMaEuSNeK"],"name":"有瑕的BArTiMaEuSNeK","tr":"有瑕的BArTiMaEuSNeK","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["gemFlawedCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"有瑕的掺铈镥铝石榴石 (Ce:LuAG)","tr":"有瑕的掺铈镥铝石榴石 (Ce:LuAG)","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["gemFlawedRedZircon"],"name":"有瑕的红锆石","tr":"有瑕的红锆石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["gemFlawedSalt"],"name":"有瑕的盐","tr":"有瑕的盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["gemFlawedSpodumene"],"name":"有瑕的锂辉石","tr":"有瑕的锂辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["gemFlawedRockSalt"],"name":"有瑕的岩盐","tr":"有瑕的岩盐","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["gemFlawedFayalite"],"name":"有瑕的铁橄榄石","tr":"有瑕的铁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["gemFlawedForsterite"],"name":"有瑕的镁橄榄石","tr":"有瑕的镁橄榄石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["gemFlawedHedenbergite"],"name":"有瑕的钙铁辉石","tr":"有瑕的钙铁辉石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["gemFlawedTiberium"],"name":"有瑕的泰伯利亚","tr":"有瑕的泰伯利亚","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["gemFlawedFluorspar"],"name":"有瑕的氟石","tr":"有瑕的氟石","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VoidPlate":{"0":{"oreDict":["plateVoid"],"name":"Void Plate","tr":"虚空板","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"IronChest:copperIronUpgrade":{"0":{"name":"Copper to Iron Chest Upgrade","tr":"升级:铜\u003e铁","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:coleslawburgerItem":{"0":{"oreDict":["foodColeslawburger"],"name":"Coleslaw Burger","tr":"包菜汉堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:key":{"0":{"name":"Key","tr":"钥匙","tab":"龙之研究方块和物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Key","tr":"钥匙","tab":"龙之研究方块和物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemZirconiumPellet":{"0":{"oreDict":["pelletZirconium"],"name":"Zirconium Pellet [ZrCl₄]","tr":"锆燃料丸[ZrCl₄]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockCircuitProgrammer":{"0":{"name":"Circuit Programmer","tr":"电路编程器","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:item.io_tool":{"0":{"name":"IO Tool","tr":"接口工具","tab":"远程接口","type":"Item","maxStackSize":1,"maxDurability":1}},"Ztones:tile.mystBlock":{"0":{"name":"Myst ⓪","tr":"Myst ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Myst ①","tr":"Myst ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Myst ②","tr":"Myst ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Myst ③","tr":"Myst ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Myst ④","tr":"Myst ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Myst ⑤","tr":"Myst ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Myst ⑥","tr":"Myst ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Myst ⑦","tr":"Myst ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Myst ⑧","tr":"Myst ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Myst ⑨","tr":"Myst ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Myst ⑩","tr":"Myst ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Myst ⑪","tr":"Myst ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Myst ⑫","tr":"Myst ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Myst ⑬","tr":"Myst ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Myst ⑭","tr":"Myst ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Myst ⑮","tr":"Myst ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steel_chestplate":{"0":{"name":"Heavy Duty Chestplate","tr":"重型胸甲","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":481}},"Railcraft:lantern.stone":{"0":{"name":"Abyssal Stone Lantern","tr":"深渊灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Bleached Bone Stone Lantern","tr":"白骨灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Blood Stained Stone Lantern","tr":"污血灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Frostbound Stone Lantern","tr":"霜冻灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Infernal Stone Lantern","tr":"地狱灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Nether Stone Lantern","tr":"下界灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Quarried Stone Lantern","tr":"采掘灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sandy Stone Lantern","tr":"沙岩灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sandstone Lantern","tr":"沙石灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stone Lantern","tr":"石灯笼","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.BlockKVM":{"0":{"name":"KVM Switch","tr":"KVM切换器","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemDust":{"0":{"oreDict":["dustBronze"," dustAnyBronze"],"name":"Bronze Dust","tr":"青铜粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dustClay"],"name":"Clay Dust","tr":"粘土粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustCoal"],"name":"Coal Dust","tr":"煤粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustCopper"," dustAnyCopper"],"name":"Copper Dust","tr":"铜粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustGold"],"name":"Gold Dust","tr":"金粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dustIron"," dustAnyIron"],"name":"Iron Dust","tr":"铁粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["dustSilver"],"name":"Silver Dust","tr":"银粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustTin"],"name":"Tin Dust","tr":"锡粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustHydratedCoal"],"name":"Hydrated Coal Dust","tr":"湿润煤粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dustStone"],"name":"Stone Dust","tr":"石粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustLead"],"name":"Lead Dust","tr":"铅粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustObsidian"],"name":"Obsidian Dust","tr":"黑曜石粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustLapis"," dyeBlue"," dye"],"name":"Lapis Lazuli Dust","tr":"青金石粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dustSulfur"],"name":"Sulfur Dust","tr":"硫粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["dustLithium"],"name":"Lithium Dust","tr":"锂粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorLaurenium":{"0":{"oreDict":["rotorLaurenium"],"name":"劳伦姆合金转子","tr":"劳伦姆合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:tormentstone":{"0":{"name":"Torment Stone","tr":"痛苦之石","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:originGrass":{"0":{"name":"Origin Grass Block","tr":"草苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:magnet":{"0":{"name":"Kinetic Attractor","tr":"奥术念力磁铁","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Corporeal Attractor","tr":"奥术生物磁铁","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:mochiItem":{"0":{"oreDict":["foodMochi"],"name":"Mochi","tr":"麻薯","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtNiobiumCarbide":{"0":{"oreDict":["frameGtNiobiumCarbide"],"name":"碳化铌框架","tr":"碳化铌框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustIncoloy020":{"0":{"oreDict":["dustIncoloy020"],"name":"耐热铬铁合金-020粉","tr":"耐热铬铁合金-020粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioTypewriter":{"0":{"name":"White Typewriter","tr":"白色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Light Gray Typewriter","tr":"浅蓝色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Gray Typewriter","tr":"灰色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Black Typewriter","tr":"黑色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Red Typewriter","tr":"红色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Orange Typewriter","tr":"橙色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Yellow Typewriter","tr":"黄色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Lime Typewriter","tr":"黄绿色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Green Typewriter","tr":"绿色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Typewriter","tr":"青色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Light Blue Typewriter","tr":"浅蓝色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Typewriter","tr":"蓝色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Purple Typewriter","tr":"紫色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Typewriter","tr":"品红色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Pink Typewriter","tr":"粉色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Brown Typewriter","tr":"棕色打字机","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.signalum":{"0":{"name":"Molten Signalum","tr":"熔融信素","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:chaosShard":{"0":{"name":"Chaos Shard","tr":"混沌碎片","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustWood\u0027sGlass":{"0":{"oreDict":["dustWood\u0027sGlass"],"name":"伍德玻璃粉","tr":"伍德玻璃粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemEnergySensorLocationCard":{"0":{"name":"Energy Sensor Location Card","tr":"电力传感定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:chamberTierOne":{"0":{"name":"Chamber (Tier 1)","tr":"弹膛(一级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sigilOfEnderSeverance":{"0":{"name":"Sigil of Ender Severance","tr":"绝影印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraBees:hiveFrame.cage":{"0":{"name":"Restraint Frame","tr":"约束框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":241}},"TwilightForest:tile.TFFirefly":{"0":{"name":"Firefly","tr":"萤火虫","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_axe_diamond":{"0":{"name":"Blood Infused Diamond Axe [WIP]","tr":"注血钻石斧 [WIP]","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:tile.oxygenDetector":{"0":{"name":"Oxygen Detector","tr":"氧气探测器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFLog":{"0":{"oreDict":["logWood"],"name":"Twilight Oak Wood","tr":"暮色橡树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Canopy Tree Wood","tr":"苍穹树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Mangrove Wood","tr":"红树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Darkwood Wood","tr":"黑树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneStairsMossyRight":{"0":{"oreDict":["nagastoneStairsMossy"],"name":"Mossy Nagastone Stairs (Right)","tr":"苔藓娜迦石台阶(右)","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:dupstaff":{"0":{"name":"Staff of Duplication","tr":"拷贝手杖","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:bucket_ender_goo":{"0":{"name":"Ender Goo Bucket","tr":"末影粘浆桶","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallXenotime":{"0":{"oreDict":["dustSmallXenotime"],"name":"小堆磷钇矿粉","tr":"小堆磷钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockCloud_seed":{"0":{"name":"Cloud Seed","tr":"云之精华","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_unlit":{"0":{"name":"Catwalk","tr":"栈桥","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberryjuiceItem":{"0":{"oreDict":["listAlljuice"," foodBlueberryjuice"],"name":"Blueberry Juice","tr":"蓝莓汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TungstenIronPlate":{"0":{"name":"Tungsten-Iron Plate","tr":"钨铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:Bloodwell":{"0":{"name":"Bloody Scrivener\u0027s Tools","tr":"血腥之笔与墨","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":6}},"harvestcraft:cinnamonsugardonutItem":{"0":{"oreDict":["foodCinnamonsugardonut"],"name":"Cinnamon Sugar Donut","tr":"肉桂糖炸面圈","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyRocketFinsTier4":{"0":{"name":"Heavy Duty Rocket Fins Tier 4","tr":"深空火箭鳍","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:redvelvetcakeItem":{"0":{"oreDict":["foodRedvelvetcake"],"name":"Red Velvet Cake","tr":"红丝绒蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HeavyDutyRocketFinsTier3":{"0":{"name":"Heavy Duty Rocket Fins Tier 3","tr":"高能火箭鳍","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLithiumCarbonate":{"0":{"oreDict":["dustTinyLithiumCarbonate"],"name":"小撮碳酸锂粉","tr":"小撮碳酸锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LightAxeHead":{"0":{"name":"Light Axe Head","tr":"荧光斧头","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.HugeWaterLily":{"0":{"name":"Huge Water Lily","tr":"巨型荷花","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneHead":{"0":{"name":"Nagastone Head","tr":"娜迦头方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_stone":{"0":{"name":"Blank Blood Stone","tr":"空白血石块","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Reinforced Blood Stone","tr":"加强血石块","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Imbued Blood Stone","tr":"灌输血石块","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Demonic Blood Stone","tr":"恶魔血石块","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ethereal Blood Stone","tr":"悬幽血石板","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.tierdDrone2":{"0":{"name":"Drone (Level 3)","tr":"Drone (Level 3)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.tierdDrone1":{"0":{"name":"Drone (Level 2)","tr":"Drone (Level 2)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.tierdDrone0":{"0":{"name":"Drone (Level 1)","tr":"Drone (Level 1)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemLeggingsRobe":{"0":{"name":"Thaumaturge\u0027s Leggings","tr":"神秘使护腿","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":376}},"Botania:elementiumSword":{"0":{"name":"Elementium Sword","tr":"源质钢剑","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":721}},"chisel:stained_glass_pane_white":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cherrypieItem":{"0":{"oreDict":["foodCherrypie"],"name":"Cherry Pie","tr":"樱桃派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyRhodium":{"0":{"oreDict":["dustTinyRhodium"],"name":"小撮铑粉","tr":"小撮铑粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:Altar":{"0":{"name":"Altar of GregoriusT\u0027s Blood","tr":"血之祭坛","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChargedSilverWandCap":{"0":{"name":"Charged Silver Cap","tr":"充能银杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:animationTablet":{"0":{"name":"Dynamism Tablet","tr":"活化工具台","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedLautarite":{"0":{"oreDict":["crushedLautarite"],"name":"Crushed Lautarite Ore","tr":"粉碎碘钙石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:leaves":{"0":{"oreDict":["treeLeaves"],"name":"White Poplar Leaves","tr":"白杨树叶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:okraseedItem":{"0":{"oreDict":["seedOkra"," listAllseed"],"name":"Okra Seed","tr":"秋葵种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bangersandmashItem":{"0":{"oreDict":["foodBangersandmash"],"name":"Bangers and Mash","tr":"香肠土豆泥","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:rangeUpgradeItem":{"0":{"name":"Upgrade - Range","tr":"升级组件-范围","tab":"模块化炮塔","type":"Item","maxStackSize":4,"maxDurability":1}},"BloodArsenal:wolf_hide":{"0":{"name":"Wolf Hide","tr":"狼皮","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitUHV":{"0":{"oreDict":["circuitInfinite"],"name":"Any UHV Circuit","tr":"任意UHV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.FluixSlabBlock.double":{"0":{"name":"Fluix Slabs","tr":"福鲁伊克斯台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:toastedsesameseedsItem":{"0":{"name":"Toasted Sesame Seeds","tr":"烘芝麻","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:leonardsurn":{"0":{"name":"Leonard\u0027s Urn","tr":"半羊人之罐","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Leonard\u0027s Urn","tr":"半羊人之罐","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Leonard\u0027s Urn","tr":"半羊人之罐","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Leonard\u0027s Urn","tr":"半羊人之罐","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:blockDarkSteelAnvil":{"0":{"name":"Dark Steel Anvil","tr":"玄钢砧","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Slightly Damaged Dark Steel Anvil","tr":"轻微破损的玄钢砧","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Very Damaged Dark Steel Anvil","tr":"严重破损的玄钢砧","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chorizoItem":{"0":{"oreDict":["foodchorizo"],"name":"Chorizo","tr":"西班牙香肠","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EmeraldAdvancedFluidCoreChip":{"0":{"name":"Fluid Circuit Tier II","tr":"流体电路 II","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.infusion.provider":{"0":{"name":"Infusion Provider","tr":"注魔供应器","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"lootgames:LootGamesDungeonLight":{"0":{"name":"Dungeon Lamp","tr":"地牢灯","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Broken Dungeon Lamp","tr":"坏掉的地牢灯","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:walnutItem":{"0":{"oreDict":["cropWalnut"," listAllnut"],"name":"Walnut","tr":"核桃","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartKnifeBlade":{"1536":{"name":"精金 Knife Blade","tr":"精金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Knife Blade","tr":"神秘蓝金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Knife Blade","tr":"琥珀 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Knife Blade","tr":"纯镃 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Knife Blade","tr":"谐镃 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Knife Blade","tr":"聚氯乙烯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Knife Blade","tr":"永恒 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Knife Blade","tr":"磁物质 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Knife Blade","tr":"赛特斯石英 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Knife Blade","tr":"暗影秘银 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Knife Blade","tr":"玄铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Knife Blade","tr":"戴斯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Knife Blade","tr":"铿铀 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Knife Blade","tr":"通流琥珀金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Knife Blade","tr":"末影粗胚 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Knife Blade","tr":"末影(te) 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Knife Blade","tr":"炽热的钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Knife Blade","tr":"火石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Knife Blade","tr":"力量 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Knife Blade","tr":"石墨 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Knife Blade","tr":"石墨烯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Knife Blade","tr":"注魔金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Knife Blade","tr":"风之魔晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Knife Blade","tr":"火之魔晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Knife Blade","tr":"地之魔晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Knife Blade","tr":"水之魔晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Knife Blade","tr":"混沌魔晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Knife Blade","tr":"秩序魔晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Knife Blade","tr":"玉 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Knife Blade","tr":"碧玉 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Knife Blade","tr":"陨铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Knife Blade","tr":"陨钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Knife Blade","tr":"硅岩 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Knife Blade","tr":"硅岩合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Knife Blade","tr":"富集硅岩 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Knife Blade","tr":"超能硅岩 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Knife Blade","tr":"下界石英 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Knife Blade","tr":"下界之星 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Knife Blade","tr":"三钛 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Knife Blade","tr":"虚空 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Knife Blade","tr":"胶木 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Knife Blade","tr":"幽冥剧毒结晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Knife Blade","tr":"强化 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Knife Blade","tr":"铱锇合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Knife Blade","tr":"阳光化合物 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Knife Blade","tr":"魂金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Knife Blade","tr":"蓝黄玉 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Knife Blade","tr":"黄铜 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Knife Blade","tr":"白铜 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Knife Blade","tr":"深渊铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Knife Blade","tr":"钻石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Knife Blade","tr":"琥珀金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Knife Blade","tr":"绿宝石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Knife Blade","tr":"强化混合晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Knife Blade","tr":"混合晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Knife Blade","tr":"绿色蓝宝石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Knife Blade","tr":"殷钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Knife Blade","tr":"坎塔尔合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Knife Blade","tr":"镁铝合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Knife Blade","tr":"镍铬合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Knife Blade","tr":"玄钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Knife Blade","tr":"生铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Knife Blade","tr":"聚乙烯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Knife Blade","tr":"环氧树脂 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Knife Blade","tr":"硅橡胶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Knife Blade","tr":"聚己内酰胺 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Knife Blade","tr":"聚四氟乙烯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Knife Blade","tr":"蓝宝石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Knife Blade","tr":"不锈钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Knife Blade","tr":"坦桑石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Knife Blade","tr":"锡铁合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Knife Blade","tr":"黄玉 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Knife Blade","tr":"哈氏合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Knife Blade","tr":"锻铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Knife Blade","tr":"铁木 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Knife Blade","tr":"橄榄石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Knife Blade","tr":"蛋白石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Knife Blade","tr":"紫水晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Knife Blade","tr":"暗影金属 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Knife Blade","tr":"暗影铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Knife Blade","tr":"暗影钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Knife Blade","tr":"钢叶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Knife Blade","tr":"骑士金属 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Knife Blade","tr":"标准纯银 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Knife Blade","tr":"玫瑰金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Knife Blade","tr":"黑青铜 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Knife Blade","tr":"铋青铜 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Knife Blade","tr":"黑钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Knife Blade","tr":"红钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Knife Blade","tr":"蓝钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Knife Blade","tr":"大马士革钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Knife Blade","tr":"充能合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Knife Blade","tr":"脉冲合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Knife Blade","tr":"星辰银 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Knife Blade","tr":"钴黄铜 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Knife Blade","tr":"红石榴石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Knife Blade","tr":"黄石榴石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Knife Blade","tr":"温特姆 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Knife Blade","tr":"黑花岗岩 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Knife Blade","tr":"红花岗岩 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Knife Blade","tr":"白石棉 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Knife Blade","tr":"雄黄 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Knife Blade","tr":"磁化铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Knife Blade","tr":"磁化钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Knife Blade","tr":"磁化钕 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Knife Blade","tr":"碳化钨 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Knife Blade","tr":"钒钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Knife Blade","tr":"高速钢-G 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Knife Blade","tr":"高速钢-E 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Knife Blade","tr":"高速钢-S 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Knife Blade","tr":"深铅 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Knife Blade","tr":"量子 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Knife Blade","tr":"深空秘银 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Knife Blade","tr":"黑钚 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Knife Blade","tr":"木卫四冰 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Knife Blade","tr":"硬铝 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Knife Blade","tr":"奥利哈钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Knife Blade","tr":"三元金属 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Knife Blade","tr":"聚苯硫醚 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Knife Blade","tr":"聚苯乙烯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Knife Blade","tr":"丁苯橡胶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Knife Blade","tr":"镍锌铁氧体 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Knife Blade","tr":"纤维强化的环氧树脂 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Knife Blade","tr":"磁化钐 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Knife Blade","tr":"无尽催化剂 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Knife Blade","tr":"聚苯并咪唑 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Knife Blade","tr":" 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Knife Blade","tr":"钛铂钒合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Knife Blade","tr":"时空 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Knife Blade","tr":"大理石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Knife Blade","tr":"神秘水晶 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Knife Blade","tr":"末影钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Knife Blade","tr":"复合粘土 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Knife Blade","tr":"晶化合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Knife Blade","tr":"旋律合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Knife Blade","tr":"恒星合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Knife Blade","tr":"晶化粉红史莱姆 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Knife Blade","tr":"充能银 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Knife Blade","tr":"生动合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Knife Blade","tr":"灵宝 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Knife Blade","tr":"超时空金属 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Knife Blade","tr":"活石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Knife Blade","tr":"盖亚之魂 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Knife Blade","tr":"活木 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Knife Blade","tr":"梦之木 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Knife Blade","tr":"泡铋 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Knife Blade","tr":"立方氧化锆 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Knife Blade","tr":"氟铁电气石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Knife Blade","tr":"铬铝电气石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Knife Blade","tr":"钒镁电气石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Knife Blade","tr":"铝电气石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Knife Blade","tr":"红锆石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Knife Blade","tr":"铁橄榄石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Knife Blade","tr":"镁橄榄石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Knife Blade","tr":"钙铁辉石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Knife Blade","tr":"钍-232 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Knife Blade","tr":"堇云石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Knife Blade","tr":"磁共振石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Knife Blade","tr":"锎 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Knife Blade","tr":"BArTiMaEuSNeK 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Knife Blade","tr":"钌 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Knife Blade","tr":"铑 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Knife Blade","tr":"镀铑钯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Knife Blade","tr":"泰伯利亚 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Knife Blade","tr":"钌铱合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Knife Blade","tr":"氟石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Knife Blade","tr":"高耐久性复合钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Knife Blade","tr":"硬钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Knife Blade","tr":"合成玉 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Knife Blade","tr":"原子分离催化剂 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Knife Blade","tr":"极不稳定硅岩 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Knife Blade","tr":"锌钍合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Knife Blade","tr":"锆锡合金-4 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Knife Blade","tr":"锆锡合金-2 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Knife Blade","tr":"耐热铬铁合金-903 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Knife Blade","tr":"精金合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Knife Blade","tr":"MAR-M200特种钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Knife Blade","tr":"MAR-Ce-M200特种钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Knife Blade","tr":"氯化锂 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Knife Blade","tr":"信素 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Knife Blade","tr":"流明 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Knife Blade","tr":"阿瑟锡 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Knife Blade","tr":"钛钼合金β-C 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Knife Blade","tr":"大力合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Knife Blade","tr":"光素 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Knife Blade","tr":"对立合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Knife Blade","tr":"稀有金属合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Knife Blade","tr":"富集硅岩合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Knife Blade","tr":"亚稳态鿫 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Knife Blade","tr":"调律源金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Knife Blade","tr":"魔钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Knife Blade","tr":"泰拉钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Knife Blade","tr":"源质钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Knife Blade","tr":"磁流体约束恒星物质 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Knife Blade","tr":"白矮星物质 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Knife Blade","tr":"黑矮星物质 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Knife Blade","tr":"宇宙素 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Knife Blade","tr":"铝 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Knife Blade","tr":"铍 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Knife Blade","tr":"铋 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Knife Blade","tr":"碳 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Knife Blade","tr":"铬 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Knife Blade","tr":"金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Knife Blade","tr":"铱 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Knife Blade","tr":"铅 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Knife Blade","tr":"锰 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Knife Blade","tr":"钼 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Knife Blade","tr":"钕 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Knife Blade","tr":"中子 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Knife Blade","tr":"镍 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Knife Blade","tr":"锇 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Knife Blade","tr":"钯 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Knife Blade","tr":"铂 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Knife Blade","tr":"钚-239 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Knife Blade","tr":"钚-241 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Knife Blade","tr":"银 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Knife Blade","tr":"钍 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Knife Blade","tr":"钛 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Knife Blade","tr":"钨 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Knife Blade","tr":"铀-238 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Knife Blade","tr":"铀-235 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Knife Blade","tr":"红宝石 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Knife Blade","tr":"红石合金 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Knife Blade","tr":"终末 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Knife Blade","tr":"导电铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Knife Blade","tr":"磁钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Knife Blade","tr":"钨钢 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Knife Blade","tr":"烈焰 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Knife Blade","tr":"脉冲铁 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Knife Blade","tr":"龙 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Knife Blade","tr":"觉醒龙 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Knife Blade","tr":"褐铜 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Knife Blade","tr":"山铜 刀刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolColorApplicator":{"0":{"name":"Color Applicator - Empty","tr":"染色器 - 空","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":33}},"Forestry:planksFireproof":{"0":{"oreDict":["LarchPlanks"," plankWood"],"name":"Larch Wood Planks (Fireproof)","tr":"抗燃落叶树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"," TeakPlanks"],"name":"Teak Wood Planks (Fireproof)","tr":"抗燃柚树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"," AcaciaPlanks"],"name":"Desert Acacia Wood Planks (Fireproof)","tr":"抗燃沙漠刺槐木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"," LimePlanks"],"name":"Lime Wood Planks (Fireproof)","tr":"抗燃酸橙树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"," ChestnutPlanks"],"name":"Chestnut Wood Planks (Fireproof)","tr":"抗燃栗树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plankWood"," WengePlanks"],"name":"Wenge Wood Planks (Fireproof)","tr":"抗燃崖豆木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"," BaobabPlanks"],"name":"Baobab Wood Planks (Fireproof)","tr":"抗燃猴面包树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"," SequoiaPlanks"],"name":"Sequoia Wood Planks (Fireproof)","tr":"抗燃红杉树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plankWood"," KapokPlanks"],"name":"Kapok Wood Planks (Fireproof)","tr":"抗燃木棉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["plankWood"," EbonyPlanks"],"name":"Ebony Wood Planks (Fireproof)","tr":"抗燃乌檀树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["plankWood"," MahoganyPlanks"],"name":"Mahogany Wood Planks (Fireproof)","tr":"抗燃桃心树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["BalsaPlanks"," plankWood"],"name":"Balsa Wood Planks (Fireproof)","tr":"抗燃巴尔杉树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["plankWood"," WillowPlanks"],"name":"Willow Wood Planks (Fireproof)","tr":"抗燃柳树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["plankWood"," WalnutPlanks"],"name":"Walnut Wood Planks (Fireproof)","tr":"抗燃核桃木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["plankWood"," GreenheartPlanks"],"name":"Greenheart Wood Planks (Fireproof)","tr":"抗燃绿樟树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["plankWood"," CherryPlanks"],"name":"Cherry Wood Planks (Fireproof)","tr":"抗燃樱桃木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["plankWood"," MahoePlanks"],"name":"Mahoe Wood Planks (Fireproof)","tr":"抗燃高槿树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["plankWood"],"name":"Poplar Wood Planks (Fireproof)","tr":"抗燃白杨树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["plankWood"," PalmPlanks"],"name":"Palm Wood Planks (Fireproof)","tr":"抗燃棕榈树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["plankWood"," PapayaPlanks"],"name":"Papaya Wood Planks (Fireproof)","tr":"抗燃木瓜木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["PinePlanks"," plankWood"],"name":"Pine Wood Planks (Fireproof)","tr":"抗燃松树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["plankWood"," PlumPlanks"],"name":"Plum Wood Planks (Fireproof)","tr":"抗燃李子木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["plankWood"," PoplarPlanks"," MapplePlanks"],"name":"Maple Wood Planks (Fireproof)","tr":"抗燃枫树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["plankWood"," CitrusPlanks"],"name":"Citrus Wood Planks (Fireproof)","tr":"抗燃柑橘树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["plankWood"],"name":"Giant Sequoia Wood Planks (Fireproof)","tr":"抗燃巨杉木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["plankWood"],"name":"Ipe Wood Planks (Fireproof)","tr":"抗燃重蚁树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["plankWood"],"name":"Padauk Wood Planks (Fireproof)","tr":"抗燃紫檀树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["plankWood"],"name":"Cocobolo Wood Planks (Fireproof)","tr":"抗燃黄檀树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["plankWood"],"name":"Zebrawood Wood Planks (Fireproof)","tr":"抗燃斑木树木板","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:lime_kitchen_floor":{"0":{"name":"Lime Kitchen Floor","tr":"黄绿厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"RIO:item.chip.location":{"0":{"name":"Location Chip","tr":"定位芯片","tab":"远程接口","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:mutator":{"0":{"name":"Mutating Sprig","tr":"变异枝条","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":16}},"harvestcraft:raspberryyogurtItem":{"0":{"oreDict":["foodRaspberryyogurt"],"name":"Raspberry Yogurt","tr":"树莓酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.axe.bloodwood":{"0":{"name":"Bloodwood Hatchet","tr":"血树手斧","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":351}},"TwilightForest:tile.TrollVidr":{"0":{"name":"Trollvidr","tr":"巨魔藤蔓","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:fluid.creosote.wax":{"0":{"name":"Creosote Capsule","tr":"杂酚油蜡胶囊","tab":"","type":"Item","maxStackSize":16,"maxDurability":1}},"harvestcraft:mincepieItem":{"0":{"oreDict":["foodMincepie"],"name":"Mince Pie","tr":"水果馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pylon":{"0":{"name":"Mana Pylon","tr":"魔法水晶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Natura Pylon","tr":"自然水晶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Gaia Pylon","tr":"盖亚水晶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstcase0":{"0":{"name":"Acacia Case","tr":"金合欢展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Case","tr":"巴尔杉展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Case","tr":"猴面包树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Case","tr":"樱桃树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Case","tr":"栗树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Case","tr":"柑橘树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Case","tr":"乌檀树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Case","tr":"樟树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Case","tr":"木棉展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Case","tr":"落叶松展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Case","tr":"菩提树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Case","tr":"白皮树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Case","tr":"桃花心木展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Case","tr":"枫树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Case","tr":"棕榈树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Case","tr":"木瓜树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFExperiment115":{"0":{"name":"tile.TFExperiment115.0.name","tr":"tile.TFExperiment115.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSpace":{"0":{"name":"Coin \"The Space Invaders 1\"","tr":"太空币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstcase1":{"0":{"name":"Pine Case","tr":"松树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Case","tr":"李子树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Case","tr":"杨树木展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Case","tr":"红杉展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Case","tr":"柚木展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Case","tr":"核桃树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Case","tr":"崖豆树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Case","tr":"柳树展示盒","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorVentSpread":{"0":{"name":"Component Heat Vent","tr":"元件散热片","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CircuitUEV":{"0":{"oreDict":["circuitBio"],"name":"Any UEV Circuit","tr":"任意UEV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemSmallSpringBlackTitanium":{"0":{"oreDict":["springSmallBlackTitanium"],"name":"小型黑钛弹簧","tr":"小型黑钛弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:spawn_eggs":{"0":{"name":"Spawn Angry Enderman","tr":"生成 愤怒的末影人","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn Baby Enderman","tr":"生成 小末影人","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Spawn Ender Guardian","tr":"生成 末影守卫","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Spawn Vampire Bat","tr":"生成 吸血蝙蝠","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Spawn Infested Bat","tr":"生成 腐化蝙蝠","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Spawn Fire Golem","tr":"生成 火傀儡","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Spawn Scorching Lens","tr":"生成 灼热之眼","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Spawn Ender Eye","tr":"生成 末影之眼","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Spawn Fire Fiend","tr":"生成 烈焰魔","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Spawn Ender Demon","tr":"生成 末影魔","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Spawn Paralyzed Enderman","tr":"生成 麻痹的末影人","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Spawn Louse","tr":"生成 虱","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Spawn Haunted Miner","tr":"生成 幽魂矿工","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Spawn Homeland Enderman","tr":"生成 故土末影人","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Spawn Endermage","tr":"生成 末影法师","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreZimbabweite":{"0":{"oreDict":["oreZimbabweite"],"name":"Zimbabweite Ore","tr":"钛铌铅钠石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:prismarine0Wall":{"0":{"name":"Prismarine Wall","tr":"海晶石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyErbium":{"0":{"oreDict":["dustTinyErbium"],"name":"小撮铒粉","tr":"小撮铒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallSodiumCyanide":{"0":{"oreDict":["dustSmallSodiumCyanide"],"name":"小堆氰化钠粉","tr":"小堆氰化钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.pickaxe.fusewood":{"0":{"name":"Fusewood Pickaxe","tr":"熔融树镐","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemDustPerroudite":{"0":{"oreDict":["dustPerroudite"],"name":"溴硫银汞粉","tr":"溴硫银汞粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:chisel":{"0":{"name":"Chisel","tr":"凿子","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":257}},"miscutils:itemCellSeleniousAcid":{"0":{"oreDict":["cellSeleniousAcid"],"name":"亚硒酸单元","tr":"亚硒酸单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:chipsets":{"0":{"name":"Basic Circuit Board","tr":"小型电子板","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Enhanced Circuit Board","tr":"中型电子板","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Refined Circuit Board","tr":"大型电子板","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Intricate Circuit Board","tr":"先进电子板","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:poppet":{"0":{"name":"Poppet","tr":"娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"1":{"name":"Earth Protection Poppet","tr":"地之守护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"2":{"name":"Water Protection Poppet","tr":"水之守护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"3":{"name":"Fire Protection Poppet","tr":"火焰守护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"4":{"name":"Hunger Protection Poppet","tr":"饥饿守护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"5":{"name":"Tool Protection Poppet","tr":"工具防护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"6":{"name":"Death Protection Poppet","tr":"死亡守护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"7":{"name":"Voodoo Protection Poppet","tr":"巫蛊防护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"8":{"name":"Voodoo Poppet","tr":"巫蛊娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"9":{"name":"Vampiric Poppet","tr":"吸血鬼娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"10":{"name":"Poppet Protection Poppet","tr":"娃娃防护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001},"11":{"name":"Armor Protection Poppet","tr":"护甲保护娃娃","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1001}},"harvestcraft:spiceleafItem":{"0":{"oreDict":["listAllspice"," cropSpiceleaf"," listAllgreenveggie"],"name":"Spice Leaf","tr":"香料叶","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:futuraCircuit":{"0":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Futura Circuit","tr":"未来科技电路","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:phosphor":{"0":{"name":"Phosphor","tr":"荧光粉","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleMaragingSteel250":{"0":{"oreDict":["plateDoubleMaragingSteel250"],"name":"双重马氏体时效钢250板","tr":"双重马氏体时效钢250板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemDustSmallCelestialTungsten":{"0":{"oreDict":["dustSmallCelestialTungsten"],"name":"小堆天体钨粉","tr":"小堆天体钨粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"JABBA:hammer":{"0":{"name":"Barrel Hammer","tr":"桶锤","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Barrel Hammer(Resonating)","tr":"桶锤(谐振)","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Barrel Hammer(Redstone)","tr":"桶锤(红石)","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Barrel Hammer(Hopping)","tr":"桶锤(漏斗)","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Barrel Hammer(Storage)","tr":"桶锤(储存)","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Barrel Hammer(Structural)","tr":"桶锤(结构)","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Barrel Hammer(Void)","tr":"桶锤(虚空)","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Barrel Hammer(Creative)","tr":"桶锤(创造)","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:biome_core":{"0":{"name":"Biome Island Core","tr":"生态岛屿核心","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.movementUpgrade":{"0":{"name":"Movement Upgrade","tr":"移动升级","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:fireOrder":{"0":{"name":"Ordo Imbued Fire","tr":"秩序之焰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Robotics:robot":{"0":{"name":"Robot","tr":"机器人","tab":"建筑|机器人","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:blockOreCopper":{"0":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.ironwoodAxe":{"0":{"name":"Ironwood Axe","tr":"铁木斧","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":513}},"thaumicboots:item.ItemVoidMeteor":{"0":{"name":"Meteoric Boots of the Voidwalker","tr":"流星之虚空旅行者之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"GalacticraftCore:item.null":{"0":{"name":"Throwable Meteor Chunk","tr":"可投掷流星碎片","tab":"星系|物品","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Throwable Meteor Chunk","tr":"可投掷流星碎片","tab":"星系|物品","type":"Item","maxStackSize":16,"maxDurability":1}},"Thaumcraft:ItemGolemDecoration":{"0":{"name":"Accessory: Top Hat","tr":"饰件: 礼帽","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Accessory: Spectacles","tr":"饰件: 眼镜","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Accessory: Bowtie","tr":"饰件: 蝴蝶结","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Accessory: Fez","tr":"饰件: 毡帽","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Accessory: Dart Launcher","tr":"饰件: 飞镖发射器","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Accessory: Visor","tr":"饰件: 面甲","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Accessory: Iron Plating","tr":"饰件: 铁甲","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Accessory: Mace Arm","tr":"饰件: 锏臂","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA9Slab":{"0":{"name":"Metamorphic Plains Cobblestone Slab","tr":"变质平原圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyProtactinium":{"0":{"oreDict":["dustTinyProtactinium"],"name":"小撮镤粉","tr":"小撮镤粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightlyLegs":{"0":{"name":"Knightly Greaves","tr":"骑士护腿","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":301}},"AWWayofTime:sigilOfSupression":{"0":{"name":"Sigil of Supression","tr":"抑液印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:quartzSlabLavenderFull":{"0":{"name":"Lavender Quartz Slab","tr":"熏香石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormName":{"0":{"name":"Casting Form (Name Mold)","tr":"铸件(名字)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:creamcookieItem":{"0":{"oreDict":["foodCreamcookie"],"name":"Cream Cookie","tr":"奶油饼干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Genetics:analyst":{"0":{"name":"Analyst","tr":"品种分析仪","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:ItemHelmetVoid":{"0":{"name":"Void Helm","tr":"虚空头盔","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":111}},"miscutils:itemPlateDoubleRhenium":{"0":{"oreDict":["plateDoubleRhenium"],"name":"双重铼板","tr":"双重铼板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"ae2fc:creative_fluid_storage":{"0":{"name":"Creative ME Fluid Storage Cell","tr":"创造ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pambarleyCrop":{"0":{"name":"Barley Crop","tr":"大麦","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:trapdoor_dark_oak":{"0":{"name":"Dark Oak Trapdoor","tr":"深色橡木活板门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBolt":{"0":{"name":"Casting Form (Bolt Mold)","tr":"铸件(螺栓)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.DoubleCompressedCharcoal":{"0":{"name":"Block of Double Compressed Charcoal","tr":"双重压缩木炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:demonheart":{"0":{"name":"Demon Heart","tr":"恶魔之心","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLi2BeF4":{"0":{"oreDict":["dustSmallLi2BeF4"],"name":"小堆Li2BeF4燃料复合物粉","tr":"小堆Li2BeF4燃料复合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mangosmoothieItem":{"0":{"oreDict":["foodMangosmoothie"," listAllsmoothie"],"name":"Mango Smoothie","tr":"芒果冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:fenceTierFive":{"0":{"name":"Fence (Tier 5)","tr":"护栏(五级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLanthaniteNd":{"0":{"oreDict":["dustSmallLanthaniteNd"],"name":"小堆镧石(Nd)粉","tr":"小堆镧石(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:turtlerawItem":{"0":{"oreDict":["foodTurtleraw"],"name":"Raw Turtle","tr":"生海龟","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemNanoMeteor":{"1":{"name":"Nano Boots of the Meteor","tr":"纳米流星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326},"325":{"name":"Nano Boots of the Meteor","tr":"纳米流星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:itemIridiumShaft":{"0":{"name":"Iridium Shaft","tr":"铱轴","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"Botania:worldSeed":{"0":{"name":"World Seed","tr":"世界之种","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingSiliconCarbide":{"0":{"oreDict":["ringSiliconCarbide"],"name":"碳化硅环","tr":"碳化硅环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:crystalTH":{"0":{"name":"White Crystal","tr":"白色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Crystal","tr":"橙色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Crystal","tr":"品红水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Crystal","tr":"淡蓝水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Crystal","tr":"黄色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Crystal","tr":"黄绿水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Crystal","tr":"粉色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Crystal","tr":"灰色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Gray Crystal","tr":"淡灰水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Crystal","tr":"青色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Crystal","tr":"紫色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Crystal","tr":"蓝色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Crystal","tr":"棕色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Crystal","tr":"绿色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Crystal","tr":"红色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Crystal","tr":"黑色水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:GeneticMutagen":{"0":{"oreDict":["cellGeneticMutagen"],"name":"遗传诱变剂单元","tr":"遗传诱变剂单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireQuantum":{"0":{"oreDict":["wireFineQuantum"],"name":"细量子合金导线","tr":"细量子合金导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cuttingboard":{"0":{"name":"Cutting Board","tr":"砧板","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamasparagusCrop":{"0":{"name":"Asparagus Crop","tr":"芦笋","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedZircophyllite":{"0":{"oreDict":["crushedCentrifugedZircophyllite"],"name":"Centrifuged Crushed Zircophyllite Ore","tr":"离心锆星叶石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:Armor.DryingRack":{"0":{"name":"Drying Rack","tr":"晾干架","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:recipebook":{"0":{"name":"Cooking for Blockheads I","tr":"傻瓜烹饪手册I","tab":"懒人厨房","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Cooking for Blockheads II","tr":"傻瓜烹饪手册II","tab":"懒人厨房","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Cooking for Blockheads","tr":"傻瓜烹饪手册","tab":"懒人厨房","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:spinningwheel":{"0":{"name":"Spinning Wheel","tr":"转轮","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gt.plusplus.metatool.01":{"7834":{"oreDict":["craftingToolFile"," craftingToolAngleGrinder"],"name":"角磨机","tr":"角磨机","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"7934":{"oreDict":["craftingToolElectricSnips"," craftingToolWireCutter"],"name":"自动剪线钳","tr":"自动剪线钳","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:natura.sword.fusewood":{"0":{"name":"Fusewood Sword","tr":"熔融树剑","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":251}},"catwalks:cagedLadder_south_unlit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCookedZrCl4":{"0":{"oreDict":["dustCookedZrCl4"],"name":"焙烧过的氯化锆粉","tr":"焙烧过的氯化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureSamarskiteY":{"0":{"oreDict":["dustImpureSamarskiteY"],"name":"Impure Samarskite (Y) Dust","tr":"含杂铌钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockIOPort":{"0":{"name":"ME IO Port","tr":"ME-IO端口","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"SGCraft:sgControllerCrystal":{"0":{"name":"Stargate Controller Crystal","tr":"星门控制水晶","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedComancheite":{"0":{"oreDict":["crushedPurifiedComancheite"],"name":"Purified Crushed Comancheite Ore","tr":"洗净的溴汞石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:letters":{"0":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Letter","tr":"信件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeFluidProvider":{"0":{"name":"Logistics Fluid Provider Pipe","tr":"物流流体供应管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodSeat":{"0":{"name":"Bloodwood Seat","tr":"血树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Seat","tr":"黑暗树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Seat","tr":"桉树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Seat","tr":"熔融树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Seat","tr":"幽魂树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Seat","tr":"车桑子树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Seat","tr":"枫树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Seat","tr":"紫檀树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Seat","tr":"红木座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Seat","tr":"银铃树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Seat","tr":"樱花树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Seat","tr":"核桃树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat","tr":"柳树座椅","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:genLeaves":{"0":{"name":"Golden Oak Leaves","tr":"黄金橡树树叶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Peaceful Leaves","tr":"和平树叶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Nether Leaves","tr":"地狱树叶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Leaves","tr":"末影树叶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.ChiseledQuartzSlabBlock":{"0":{"name":"Chiseled Certus Quartz Slabs","tr":"錾制赛特斯石英台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:CoalTarOil":{"0":{"oreDict":["cellCoalTarOil"],"name":"煤焦油单元","tr":"煤焦油单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLanthaniteLa":{"0":{"oreDict":["dustSmallLanthaniteLa"],"name":"小堆镧石(La)粉","tr":"小堆镧石(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:essentiaOutputHatch":{"0":{"name":"Essentia Output Hatch","tr":"源质输出仓","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstshelf2":{"0":{"name":"Pine Shelf","tr":"松树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Shelf","tr":"李子树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Shelf","tr":"杨树木架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Shelf","tr":"红杉架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Shelf","tr":"柚木架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Shelf","tr":"核桃树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Shelf","tr":"崖豆树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Shelf","tr":"柳树架子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.battery-lithium":{"0":{"name":"Lithium Battery","tr":"锂电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Lithium Battery","tr":"锂电池","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemFoilNitinol60":{"0":{"oreDict":["foilNitinol60"],"name":"镍钛诺60箔","tr":"镍钛诺60箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"SpiceOfLife:bookfoodjournal":{"0":{"name":"Food Journal","tr":"膳食记录","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:milledSphalerite":{"0":{"oreDict":["milledSphalerite"],"name":"Milled Sphalerite","tr":"研磨闪锌矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockMaragingSteel250":{"0":{"oreDict":["blockMaragingSteel250"],"name":"马氏体时效钢250块","tr":"马氏体时效钢250块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallEglinSteel":{"0":{"oreDict":["dustSmallEglinSteel"],"name":"小堆埃格林钢粉","tr":"小堆埃格林钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.roenBlock":{"0":{"name":"Roen ⓪","tr":"Roen ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Roen ①","tr":"Roen ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Roen ②","tr":"Roen ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Roen ③","tr":"Roen ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Roen ④","tr":"Roen ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Roen ⑤","tr":"Roen ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Roen ⑥","tr":"Roen ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Roen ⑦","tr":"Roen ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Roen ⑧","tr":"Roen ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Roen ⑨","tr":"Roen ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Roen ⑩","tr":"Roen ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Roen ⑪","tr":"Roen ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Roen ⑫","tr":"Roen ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Roen ⑬","tr":"Roen ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Roen ⑭","tr":"Roen ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Roen ⑮","tr":"Roen ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltRhodium":{"0":{"oreDict":["boltRhodium"],"name":"铑螺栓","tr":"铑螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorTungstenTitaniumCarbide":{"0":{"oreDict":["rotorTungstenTitaniumCarbide"],"name":"碳化钨钛合金转子","tr":"碳化钨钛合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseChromaticGlass":{"0":{"oreDict":["plateDenseChromaticGlass"],"name":"致密彩色玻璃板","tr":"致密彩色玻璃板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTriniumNaquadahCarbonite":{"0":{"oreDict":["ingotHotTriniumNaquadahCarbonite"],"name":"热掺碳三元硅岩合金锭","tr":"热掺碳三元硅岩合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:vampirebook":{"0":{"name":"Observations of an Immortal","tr":"观察日记:永生者","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Observations of an Immortal","tr":"观察日记:永生者","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.willow":{"0":{"oreDict":["pressurePlateWood"],"name":"Willow Pressure Plate","tr":"柳树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2wct:infinityBoosterCard":{"0":{"name":"Infinity Booster Card","tr":"量子无限增幅器","tab":"§9AE2无线合成终端","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:oreLepersonnite":{"0":{"oreDict":["oreLepersonnite"],"name":"Lepersonnite Ore","tr":"绿泥石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:enderCollector":{"0":{"name":"Ender Collector","tr":"末影收集器","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:firStairs":{"0":{"oreDict":["stairWood"],"name":"Fir Wood Stairs","tr":"杉木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:heart":{"0":{"name":"Heart","tr":"心脏","tab":"血之兵工厂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetDragonblood":{"0":{"oreDict":["nuggetDragonblood"],"name":"龙血粒","tr":"龙血粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.itemModule":{"0":{"name":"Blank Module","tr":"空白模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"ItemSink module","tr":"物品收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Passive Supplier module","tr":"被动补给模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Extractor module","tr":"提取模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"131":{"name":"Enchantment Sink module MK2","tr":"附魔收纳模块MK2","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Polymorphic ItemSink module","tr":"同类物品收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"QuickSort module","tr":"快速分拣模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Terminus module","tr":"终端模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Advanced Extractor module","tr":"高级提取模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Bee Analyzer module","tr":"蜜蜂分析模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"BeeSink module","tr":"蜜蜂收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Apiary Refiller module","tr":"养蜂装填模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"203":{"name":"Extractor MK3 module","tr":"提取模块MK3","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Drone Terminus module","tr":"雄峰终端模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Mod Based ItemSink module","tr":"基于物品所属模组的收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"OreDict ItemSink module","tr":"矿物辞典收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"CC Based QuickSort module","tr":"基于CC的快速分拣模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"207":{"name":"Advanced Extractor MK3","tr":"高级提取模块MK3","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"CC Based ItemSink module","tr":"基于CC的物品收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Creative Tab Based ItemSink module","tr":"基于创造模式标签的物品收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Type Filter ItemSink module","tr":"矿物辞典前缀过滤收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"600":{"name":"Crafting module","tr":"合成模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"601":{"name":"Crafting module MK2","tr":"合成模块MK2","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"602":{"name":"Crafting module MK3","tr":"合成模块MK3","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Thaumic AspectSink module","tr":"神秘要素收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Enchantment Sink module","tr":"附魔收纳模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"103":{"name":"Extractor MK2 module","tr":"提取模块MK2","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"107":{"name":"Advanced Extractor MK2","tr":"高级提取模块MK2","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"300":{"name":"Electric Manager module","tr":"电力管理模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"301":{"name":"Electric Buffer module","tr":"电力缓冲模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"500":{"name":"Provider module","tr":"供应模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"501":{"name":"Provider module MK2","tr":"供应模块MK2","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1},"502":{"name":"Active Supplier Module","tr":"主动补给模块","tab":"红石","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearBloodSteel":{"0":{"oreDict":["gearGtBloodSteel"," gearBloodSteel"],"name":"血钢齿轮","tr":"血钢齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDoorDarkwood":{"0":{"name":"tile.TFDoorDarkwood.0.name","tr":"tile.TFDoorDarkwood.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockLootCrate":{"0":{"name":"Abandoned Crate","tr":"废弃箱子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Abandoned Crate","tr":"废弃箱子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Abandoned Crate","tr":"废弃箱子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedHibonite":{"0":{"oreDict":["crushedPurifiedHibonite"],"name":"Purified Crushed Hibonite Ore","tr":"洗净的黑铝钙石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockInconel792":{"0":{"oreDict":["blockInconel792"],"name":"镍铬基合金-792块","tr":"镍铬基合金-792块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:tomatosoupItem":{"0":{"oreDict":["foodTomatosoup"],"name":"Tomato Soup","tr":"番茄汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgradeStatus":{"1":{"name":"Status Upgrade (I)","tr":"状态显示升级(I)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Status Upgrade (II)","tr":"状态显示升级(II)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyNeptunium":{"0":{"oreDict":["dustTinyNeptunium"],"name":"小撮镎粉","tr":"小撮镎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:travelWings":{"0":{"name":"Traveller\u0027s Wings","tr":"旅行者之翼","tab":"匠魂|装备","type":"Item","maxStackSize":1,"maxDurability":1036}},"dreamcraft:item.MedalWarp":{"0":{"name":"Medal - Nanananananananana... WarpMan!","tr":"勋章-呐呐呐呐呐呐………扭曲者!","tab":"GTNH: 物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA1Slab":{"0":{"name":"Metamorphic Plains Stone Slab","tr":"变质平原石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chikorollItem":{"0":{"oreDict":["foodChikoroll"],"name":"Chiko Roll","tr":"澳式春卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesCarts:BlockMetalStorage":{"0":{"oreDict":["blockReinforced"],"name":"Reinforced Metal Block","tr":"强化金属块","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGalgadorian"],"name":"Galgadorian Block","tr":"混合晶化金属块","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockEnhancedGalgadorian"],"name":"Enhanced Galgadorian Block","tr":"强化混合晶化金属块","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cornbreadItem":{"0":{"oreDict":["foodCornbread"],"name":"Cornbread","tr":"玉米面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:shadedglass":{"0":{"oreDict":["blockGlassHV"],"name":"White Shaded Glass","tr":"白色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Orange Shaded Glass","tr":"橘色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Magenta Shaded Glass","tr":"品红遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Light Blue Shaded Glass","tr":"淡蓝遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Yellow Shaded Glass","tr":"黄色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Lime Shaded Glass","tr":"黄绿遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Pink Shaded Glass","tr":"粉色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Gray Shaded Glass","tr":"灰色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Silver Shaded Glass","tr":"银色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Cyan Shaded Glass","tr":"青色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Purple Shaded Glass","tr":"紫色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Blue Shaded Glass","tr":"蓝色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Brown Shaded Glass","tr":"棕色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Green Shaded Glass","tr":"绿色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Red Shaded Glass","tr":"红色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Black Shaded Glass","tr":"黑色遮光玻璃","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.venisonRaw":{"0":{"name":"Raw Venison","tr":"生鹿肉","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellUraniumHexafluoride":{"0":{"oreDict":["cellUraniumHexafluoride"],"name":"六氟化铀单元","tr":"六氟化铀单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:sensorTierOneItem":{"0":{"name":"Sensor (Tier 1)","tr":"传感器(一级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.magicMap":{"0":{"name":"Magic Map #0","tr":"魔法地图 #0","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyIndalloy140":{"0":{"oreDict":["dustTinyIndalloy140"],"name":"小撮铋铅合金140粉","tr":"小撮铋铅合金140粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.walkwayWire":{"0":{"name":"Walkway","tr":"通道","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShadowImbuedClothCap":{"0":{"name":"Shadow-Imbued Cloth Cap","tr":"暗影布匹杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:generator":{"0":{"name":"Survivalist Generator","tr":"生存者发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Furnace Generator","tr":"熔炉发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lava Generator","tr":"岩浆发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Generator","tr":"末影发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Heated Redstone Generator","tr":"高热红石发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Culinary Generator","tr":"厨用发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Potions Generator","tr":"药水发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Solar Generator","tr":"太阳能发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"TNT Generator","tr":"TNT发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Generator","tr":"粉之发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"High-temperature Furnace Generator","tr":"高温熔炉发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Nether Star Generator","tr":"下界之星发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:routing.ticket":{"0":{"name":"Railway Ticket","tr":"火车票","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:witchwoodslab":{"0":{"oreDict":["slabWood"],"name":"Rowan Slab","tr":"山梨树台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"],"name":"Alder Slab","tr":"赤杨树台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabWood"],"name":"Hawthorn Slab","tr":"山楂树台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:doubleFlower2":{"0":{"oreDict":["mysticFlowerLightGrayDouble"],"name":"Tall Mystical Light Gray Flower","tr":"淡灰色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["mysticFlowerCyanDouble"],"name":"Tall Mystical Cyan Flower","tr":"青色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["mysticFlowerPurpleDouble"],"name":"Tall Mystical Purple Flower","tr":"紫色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["mysticFlowerBlueDouble"],"name":"Tall Mystical Blue Flower","tr":"蓝色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["mysticFlowerBrownDouble"],"name":"Tall Mystical Brown Flower","tr":"褐色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["mysticFlowerGreenDouble"],"name":"Tall Mystical Green Flower","tr":"绿色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["mysticFlowerRedDouble"],"name":"Tall Mystical Red Flower","tr":"红色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["mysticFlowerBlackDouble"],"name":"Tall Mystical Black Flower","tr":"黑色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBerylliumFluoride":{"0":{"oreDict":["dustSmallBerylliumFluoride"],"name":"小堆氟化铍粉","tr":"小堆氟化铍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureSamarskiteYb":{"0":{"oreDict":["dustPureSamarskiteYb"],"name":"Purified Samarskite (Yb) Dust","tr":"洁净铌钇矿(Yb)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamrhubarbCrop":{"0":{"name":"Rhubarb Crop","tr":"大黄","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustUraniumTetrafluoride":{"0":{"oreDict":["dustUraniumTetrafluoride"],"name":"四氟化铀粉","tr":"四氟化铀粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:relocator":{"0":{"name":"Thaumic Relocator","tr":"扩展奥术悬浮台","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Thaumic Relocator","tr":"扩展奥术悬浮台","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateWhiteMetal":{"0":{"oreDict":["plateWhiteMetal"],"name":"白物质板","tr":"白物质板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:doubleFlower1":{"0":{"oreDict":["mysticFlowerWhiteDouble"],"name":"Tall Mystical White Flower","tr":"白色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["mysticFlowerOrangeDouble"],"name":"Tall Mystical Orange Flower","tr":"橙色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["mysticFlowerMagentaDouble"],"name":"Tall Mystical Magenta Flower","tr":"品红色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["mysticFlowerLightBlueDouble"],"name":"Tall Mystical Light Blue Flower","tr":"淡蓝色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["mysticFlowerYellowDouble"],"name":"Tall Mystical Yellow Flower","tr":"黄色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["mysticFlowerLimeDouble"],"name":"Tall Mystical Lime Flower","tr":"黄绿色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["mysticFlowerPinkDouble"],"name":"Tall Mystical Pink Flower","tr":"粉色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["mysticFlowerGrayDouble"],"name":"Tall Mystical Gray Flower","tr":"灰色高神秘花","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseIncoloyMA956":{"0":{"oreDict":["plateDenseIncoloyMA956"],"name":"致密耐热铬铁合金-MA956板","tr":"致密耐热铬铁合金-MA956板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fluid.juice":{"0":{"name":"Fruit Juice","tr":"果汁","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreZircophyllite":{"0":{"oreDict":["oreZircophyllite"],"name":"Zircophyllite Ore","tr":"锆星叶石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:redlonSeeds":{"0":{"name":"Redlon Seed","tr":"红石瓜种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustRadium226":{"0":{"oreDict":["dustRadium226"],"name":"Radium 226 Dust","tr":"镭-226粉","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1000000000}},"Botania:spawnerMover":{"0":{"name":"Life Aggregator","tr":"生命聚合器","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"kekztech:kekztech_error_item":{"0":{"name":"KekzTech Error Coin","tr":"KekzTech错误硬币","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorNanoHelmet":{"1":{"name":"NanoSuit Helmet","tr":"纳米头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"NanoSuit Helmet","tr":"纳米头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemCellMaragingSteel300":{"0":{"oreDict":["cellMaragingSteel300"],"name":"马氏体时效钢300单元","tr":"马氏体时效钢300单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:obsidian_end":{"0":{"name":"Falling Obsidian","tr":"黑曜石","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawMytryl":{"0":{"name":"Raw Mytryl Crystal","tr":"未加工的深空秘银结晶","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:conjurationCatalyst":{"0":{"name":"Conjuration Catalyst","tr":"炼造催化器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:mixed_block":{"0":{"name":"Mixed Block","tr":"混合方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:gravityRod":{"0":{"name":"Rod of the Shaded Mesa","tr":"黑山法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateStrontium":{"0":{"oreDict":["plateStrontium"],"name":"锶板","tr":"锶板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:crystalSlab_full":{"0":{"name":"Air Crystal Slab","tr":"风之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fire Crystal Slab","tr":"火之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Water Crystal Slab","tr":"水之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Earth Crystal Slab","tr":"地之魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Order Crystal Slab","tr":"秩序魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Entropy Crystal Slab","tr":"混沌魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Mixed Crystal Slab","tr":"复相魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Tainted Crystal Slab","tr":"污染魔晶台阶","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:bronzePickaxe":{"0":{"name":"Survivalist\u0027s Pickaxe","tr":"幸存者之镐","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":201}},"OpenBlocks:grave":{"0":{"name":"Grave","tr":"墓碑","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:haumeablocks":{"0":{"oreDict":["rockSpace"," rockHaumea"],"name":"Haumea Surface Block","tr":"妊神星地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewLaurenium":{"0":{"oreDict":["screwLaurenium"],"name":"劳伦姆合金螺丝","tr":"劳伦姆合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockEndSteelBars":{"0":{"oreDict":["barsIron"],"name":"End Steel Bars","tr":"末影钢栅栏","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_lit":{"0":{"name":"Catwalk","tr":"栈桥","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallNeptuniumHexafluoride":{"0":{"oreDict":["dustSmallNeptuniumHexafluoride"],"name":"小堆六氟化镎粉","tr":"小堆六氟化镎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallProtactinium":{"0":{"oreDict":["dustSmallProtactinium"],"name":"小堆镤粉","tr":"小堆镤粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCryoliteF":{"0":{"oreDict":["dustTinyCryoliteF"],"name":"小撮冰晶石(F)粉","tr":"小撮冰晶石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:item.GT_Rockcutter_Item_MV":{"1":{"name":"Rockcutter MV","tr":"岩石切割机MV","tab":"GT2兼容","type":"Item","maxStackSize":1,"maxDurability":128},"127":{"name":"Rockcutter MV","tr":"岩石切割机MV","tab":"GT2兼容","type":"Item","maxStackSize":1,"maxDurability":128}},"IC2:itemHops":{"0":{"name":"Hops","tr":"啤酒花","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:notificationInterface":{"0":{"name":"Notification Interface","tr":"通知接口","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:frameImpregnated":{"0":{"name":"Impregnated Frame","tr":"浸渍框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":241}},"TwilightForest:tile.TFRoots":{"0":{"name":"Roots","tr":"根茎","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Liveroots","tr":"鲜活根茎","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peanutbutterItem":{"0":{"oreDict":["listAllnutbutter"," foodPeanutbutter"],"name":"Peanut Butter","tr":"花生酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:pressureplate.hopseed":{"0":{"oreDict":["pressurePlateWood"],"name":"Hopseed Pressure Plate","tr":"车桑子树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinDonation":{"0":{"name":"Donation Coin","tr":"捐赠币","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAmmoniumBifluoride":{"0":{"oreDict":["dustSmallAmmoniumBifluoride"],"name":"小堆氟化氢铵粉","tr":"小堆氟化氢铵粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureZirkelite":{"0":{"oreDict":["dustPureZirkelite"],"name":"Purified Zirkelite Dust","tr":"洁净钛锆钍矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockQuartzLamp":{"0":{"name":"Vibrant Quartz Glass","tr":"聚能石英玻璃","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:placedItem":{"0":{"name":"tile.draconicevolution:placedItem.name","tr":"tile.draconicevolution:placedItem.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:GrassSlab":{"0":{"name":"Topiary Grass Slab","tr":"修饰草地台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Bluegrass Slab","tr":"蓝色草地台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Autumnal Grass Slab","tr":"秋光草地台阶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBariteRd":{"0":{"oreDict":["dustSmallBariteRd"],"name":"小堆重晶石(Rd)粉","tr":"小堆重晶石(Rd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotPraseodymium":{"0":{"oreDict":["ingotPraseodymium"],"name":"镨锭","tr":"镨锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BWPumpParts":{"0":{"name":"Elongated Glass Tube","tr":"加长玻璃管","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Simple Stirling Motor","tr":"简易斯特林马达","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:valentines":{"0":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Valentines Block","tr":"少女心方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetLafiumCompound":{"0":{"oreDict":["nuggetLafiumCompound"],"name":"路菲恩化合物粒","tr":"路菲恩化合物粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.tapeReader":{"0":{"name":"Tape Drive","tr":"磁带驱动器","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotLaurenium":{"0":{"oreDict":["ingotLaurenium"],"name":"劳伦姆合金锭","tr":"劳伦姆合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:BaseBaubles":{"0":{"name":"§2The One Ring","tr":"§2魔戒","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:glass_boots":{"0":{"name":"Glass Boots","tr":"玻璃靴子","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":43}},"witchery:circleglyphotherwhere":{"0":{"name":"Otherwhere Glyph","tr":"他处符形","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustRadium":{"0":{"oreDict":["dustRadium"],"name":"镭粉","tr":"镭粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:crystallos":{"0":{"name":"Crystallos","tr":"冰晶粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureLanthaniteLa":{"0":{"oreDict":["dustImpureLanthaniteLa"],"name":"Impure Lanthanite (La) Dust","tr":"含杂镧石(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2stuff:Wireless":{"0":{"name":"Wireless Connector","tr":"无线接入器","tab":"应用能源附加机器","type":"Block","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersDoor":{"0":{"name":"Carpenter\u0027s Door","tr":"木匠门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedMellowCombs":{"0":{"name":"Crated Mellow Comb","tr":"装箱的醇厚蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:figItem":{"0":{"oreDict":["cropFig"," listAllfruit"],"name":"Fig","tr":"无花果","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockGermanium":{"0":{"oreDict":["blockGermanium"],"name":"锗块","tr":"锗块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureSamarskiteYb":{"0":{"oreDict":["dustImpureSamarskiteYb"],"name":"Impure Samarskite (Yb) Dust","tr":"含杂铌钇矿(Yb)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:calamarirawItem":{"0":{"oreDict":["foodCalamariraw"," listAllfishraw"," rawCalamari"],"name":"Raw Calamari","tr":"生鱿鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:paintmixer":{"0":{"name":"Paint Mixer","tr":"调色器","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetRadium":{"0":{"oreDict":["nuggetRadium"],"name":"镭粒","tr":"镭粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneBlockSlabBlock":{"0":{"name":"Sky Stone Block Slabs","tr":"陨石块台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:tealeafItem":{"0":{"oreDict":["cropTea"],"name":"Tea Leaf","tr":"茶叶","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZircophyllite":{"0":{"oreDict":["dustTinyZircophyllite"],"name":"小撮锆星叶石粉","tr":"小撮锆星叶石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:porksausageItem":{"0":{"oreDict":["foodPorksausage"],"name":"Pork Sausage","tr":"猪肉香肠","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellAmmonium":{"0":{"oreDict":["cellAmmonium"],"name":"铵单元","tr":"铵单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltSiliconCarbide":{"0":{"oreDict":["boltSiliconCarbide"],"name":"碳化硅螺栓","tr":"碳化硅螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.crowbar":{"0":{"oreDict":["craftingToolCrowbar"],"name":"Crowbar","tr":"撬棍","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":251}},"HardcoreEnderExpansion:energy_extraction_table":{"0":{"name":"Extraction Table","tr":"释能台","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotRuthenium":{"0":{"oreDict":["ingotRuthenium"],"name":"钌锭","tr":"钌锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"JABBA:barrel":{"0":{"name":"Better Barrel","tr":"更好的桶","tab":"更好的桶","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:ropeladder":{"0":{"name":"Rope Ladder","tr":"绳梯","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemTeleportStaff":{"0":{"name":"Staff of Teleportation","tr":"传送权杖","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":17}},"miscutils:Kerosene":{"0":{"oreDict":["cellKerosene"],"name":"煤油单元","tr":"煤油单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorHeatSwitchDiamond":{"1":{"name":"Advanced Heat Exchanger","tr":"高级热交换器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"miscutils:item.BasicAlgaeItem":{"0":{"name":"§nBreedable Algae","tr":"§n可培植藻类","tab":"","type":"Item","maxStackSize":32,"maxDurability":128},"1":{"name":"§nBreedable Algae","tr":"§n可培植藻类","tab":"","type":"Item","maxStackSize":32,"maxDurability":128},"2":{"name":"§nBreedable Algae","tr":"§n可培植藻类","tab":"","type":"Item","maxStackSize":32,"maxDurability":128},"3":{"name":"§nBreedable Algae","tr":"§n可培植藻类","tab":"","type":"Item","maxStackSize":32,"maxDurability":128},"4":{"name":"§nBreedable Algae","tr":"§n可培植藻类","tab":"","type":"Item","maxStackSize":32,"maxDurability":128},"5":{"name":"§nBreedable Algae","tr":"§n可培植藻类","tab":"","type":"Item","maxStackSize":32,"maxDurability":128},"6":{"name":"§nBreedable Algae","tr":"§n可培植藻类","tab":"","type":"Item","maxStackSize":32,"maxDurability":128}},"OpenBlocks:village_highlighter":{"0":{"name":"Village Highlighter","tr":"村庄高亮仪","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLaurenium":{"0":{"oreDict":["dustLaurenium"],"name":"劳伦姆合金粉","tr":"劳伦姆合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.sword.ghostwood":{"0":{"name":"Ghostwood Sword","tr":"幽魂树剑","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":60}},"Botania:manaFlame":{"0":{"name":"Mana Flash","tr":"魔力闪光","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseNitinol60":{"0":{"oreDict":["plateDenseNitinol60"],"name":"致密镍钛诺60板","tr":"致密镍钛诺60板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyKoboldite":{"0":{"oreDict":["dustTinyKoboldite"],"name":"小撮妖金粉","tr":"小撮妖金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:spectreBoots":{"0":{"name":"Spectre Boots","tr":"灵魂靴子","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":456}},"bartworks:gt.bwMetaGeneratedfoil":{"10112":{"oreDict":["foilShirabon"],"name":"调律源金箔","tr":"调律源金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["foilBismutite"],"name":"泡铋箔","tr":"泡铋箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["foilZirconium"],"name":"锆箔","tr":"锆箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["foilCubicZirconia"],"name":"立方氧化锆箔","tr":"立方氧化锆箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["foilFluor-Buergerite"],"name":"氟铁电气石箔","tr":"氟铁电气石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["foilChromo-Alumino-Povondraite"],"name":"铬铝电气石箔","tr":"铬铝电气石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["foilVanadio-Oxy-Dravite"],"name":"钒镁电气石箔","tr":"钒镁电气石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["foilOlenite"],"name":"铝电气石箔","tr":"铝电气石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["foilRedZircon"],"name":"红锆石箔","tr":"红锆石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["foilSalt"],"name":"盐箔","tr":"盐箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["foilSpodumene"],"name":"锂辉石箔","tr":"锂辉石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["foilRockSalt"],"name":"岩盐箔","tr":"岩盐箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["foilFayalite"],"name":"铁橄榄石箔","tr":"铁橄榄石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["foilForsterite"],"name":"镁橄榄石箔","tr":"镁橄榄石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["foilHedenbergite"],"name":"钙铁辉石箔","tr":"钙铁辉石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["foilThorium232"],"name":"钍-232箔","tr":"钍-232箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["foilPrasiolite"],"name":"堇云石箔","tr":"堇云石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["foilMagnetoResonatic"],"name":"磁共振石箔","tr":"磁共振石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["foilAtomicSeparationCatalyst"],"name":"原子分离催化剂箔","tr":"原子分离催化剂箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["foilCalifornium"],"name":"锎箔","tr":"锎箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["foilOrundum"],"name":"合成玉箔","tr":"合成玉箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["foilCalcium"],"name":"钙箔","tr":"钙箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["foilExtremelyUnstableNaquadah"],"name":"极不稳定硅岩箔","tr":"极不稳定硅岩箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["foilBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK箔","tr":"BArTiMaEuSNeK箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["foilPTMEGElastomer"],"name":"PTMEG橡胶箔","tr":"PTMEG橡胶箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["foilRuthenium"],"name":"钌箔","tr":"钌箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["foilZn-ThAlloy"],"name":"锌钍合金箔","tr":"锌钍合金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["foilRhodium"],"name":"铑箔","tr":"铑箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["foilRhodium-PlatedPalladium"],"name":"镀铑钯箔","tr":"镀铑钯箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["foilTiberium"],"name":"泰伯利亚箔","tr":"泰伯利亚箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["foilRuridit"],"name":"钌铱合金箔","tr":"钌铱合金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["foilFluorspar"],"name":"氟石箔","tr":"氟石箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["foilHighDurabilityCompoundSteel"],"name":"高耐久性复合钢箔","tr":"高耐久性复合钢箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["foilAdemicSteel"],"name":"硬钢箔","tr":"硬钢箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["foilZircaloy-4"],"name":"锆锡合金-4箔","tr":"锆锡合金-4箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["foilZircaloy-2"],"name":"锆锡合金-2箔","tr":"锆锡合金-2箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["foilIncoloy-903"],"name":"耐热铬铁合金-903箔","tr":"耐热铬铁合金-903箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["foilAdamantiumAlloy"],"name":"精金合金箔","tr":"精金合金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["foilFluorophlogopite"],"name":"氟金云母箔","tr":"氟金云母箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["foilCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)箔","tr":"掺铈镥铝石榴石 (Ce:LuAG)箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["foilMagnesia"],"name":"氧化镁箔","tr":"氧化镁箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["foilMAR-M200Steel"],"name":"MAR-M200特种钢箔","tr":"MAR-M200特种钢箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["foilMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢箔","tr":"MAR-Ce-M200特种钢箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["foilLithiumChloride"],"name":"氯化锂箔","tr":"氯化锂箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["foilSignalium"],"name":"信素箔","tr":"信素箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["foilLumiium"],"name":"流明箔","tr":"流明箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["foilArtherium-Sn"],"name":"阿瑟锡箔","tr":"阿瑟锡箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["foilTanmolyiumBeta-C"],"name":"钛钼合金β-C箔","tr":"钛钼合金β-C箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["foilDalisenite"],"name":"大力合金箔","tr":"大力合金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["foilHafnium"],"name":"铪箔","tr":"铪箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["foilHikarium"],"name":"光素箔","tr":"光素箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["foilTairitsu"],"name":"对立合金箔","tr":"对立合金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["foilPreciousMetalsAlloy"],"name":"稀有金属合金箔","tr":"稀有金属合金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["foilEnrichedNaquadahAlloy"],"name":"富集硅岩合金箔","tr":"富集硅岩合金箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["foilMetastableOganesson"],"name":"亚稳态鿫箔","tr":"亚稳态鿫箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["foilZirconium"],"name":"锆箔","tr":"锆箔","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.SwitchableHub":{"0":{"name":"Switchable Hub","tr":"可切换集线器","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemEtherealFamiliar":{"0":{"name":"Ethereal Familiar","tr":"天域使魔","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyPraseodymium":{"0":{"oreDict":["dustTinyPraseodymium"],"name":"小撮镨粉","tr":"小撮镨粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:proteusglowstone":{"0":{"oreDict":["rockProteus"," glowstone"," rockSpace"],"name":"Proteus Glowstone","tr":"海卫八萤石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaRhugnor":{"0":{"oreDict":["cellPlasmaRhugnor"],"name":"鲁格诺等离子体单元","tr":"鲁格诺等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:keepIvy":{"0":{"name":"Resolute Ivy","tr":"坚毅之藤","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:pickaxe":{"0":{"name":"§f山铜 镐","tr":"§f山铜 镐","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:dustImpureLanthaniteNd":{"0":{"oreDict":["dustImpureLanthaniteNd"],"name":"Impure Lanthanite (Nd) Dust","tr":"含杂镧石(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzTypeDark":{"0":{"name":"Block of Smokey Quartz","tr":"烟熏石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Smokey Quartz Block","tr":"錾制烟熏石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Smokey Quartz Block","tr":"竖纹烟熏石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grilledeggplantItem":{"0":{"oreDict":["foodGrilledeggplant"],"name":"Grilled Eggplant","tr":"烤茄子","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesCarts:ModuleComponents":{"0":{"name":"Wooden Wheels","tr":"木轮","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Iron Wheels","tr":"铁轮","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Red Pigment","tr":"红色颜料","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Green Pigment","tr":"绿色颜料","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Pigment","tr":"蓝色颜料","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Glass o\u0027Magic","tr":"魔法玻璃","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Dynamite","tr":"炸药","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Simple PCB","tr":"简单印刷电路板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Graphical Interface","tr":"图形界面","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Raw Handle","tr":"未加工手柄","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Refined Handle","tr":"强化手柄","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Speed Handle","tr":"速度手柄","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Wheel","tr":"车轮","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Saw Blade","tr":"锯齿","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Advanced PCB","tr":"高级印刷电路板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Wood Cutting Core","tr":"伐木核心","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Raw Hardener","tr":"未加工硬化剂","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Refined Hardener","tr":"强化硬化剂","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Hardened Mesh","tr":"硬化丝网","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Stabilized Metal","tr":"稳定金属","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Reinforced Metal","tr":"强化金属","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Reinforced Wheels","tr":"强化车轮","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Pipe","tr":"管道","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Shooting Station","tr":"发射站","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Entity Scanner","tr":"实体扫描器","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Entity Analyzer","tr":"实体分析器","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Empty Disk","tr":"空白磁盘","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Tri-torch","tr":"三重火把","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Chest Pane","tr":"箱子面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Large Chest Pane","tr":"大型箱子面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Huge Chest Pane","tr":"巨型箱子面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Chest Lock","tr":"箱子锁","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Iron Pane","tr":"铁制面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Large Iron Pane","tr":"大型铁制面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"Huge Iron Pane","tr":"巨型铁制面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"Dynamic Pane","tr":"动态面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"Large Dynamic Pane","tr":"大型动态面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"Huge Dynamic Pane","tr":"巨型动态面板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"Cleaning Fan","tr":"清理风扇","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Cleaning Core","tr":"清理核心","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Cleaning Tube","tr":"清理管道","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Fuse","tr":"引信","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Solar Panel","tr":"太阳能板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"Eye of Galgador","tr":"混合晶化眼","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"name":"Lump of Galgador","tr":"混合晶化团","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"Galgadorian Metal","tr":"混合晶化锭","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"Large Lump of Galgador","tr":"大型混合晶化块","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"Enhanced Galgadorian Metal","tr":"强化混合晶化金属锭","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"Advanced Solar Panel","tr":"高级太阳能板","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"name":"Blank Upgrade","tr":"空白升级","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"name":"Tank Valve","tr":"水箱阀","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"name":"Tank Pane","tr":"水箱格","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"name":"Large Tank Pane","tr":"大型水箱格","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"name":"Huge Tank Pane","tr":"巨型水箱格","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"name":"Liquid Cleaning Core","tr":"流体清理核心","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"name":"Liquid Cleaning Tube","tr":"流体清理管道","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"name":"Hardened Saw Blade","tr":"硬化锯片","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"name":"Galgadorian Saw Blade","tr":"混合晶化金属锯片","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"name":"Galgadorian Wheels","tr":"混合晶化金属车轮","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"name":"Iron Blade","tr":"铁制刀片","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"name":"Blade Arm","tr":"刀片武器","tab":"史蒂夫的矿车 2丨组件","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:track":{"2144":{"name":"Wye Track","tr":"Y型轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"0":{"name":"Launcher Track","tr":"发射轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"736":{"name":"Wooden Track","tr":"木质轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"30946":{"name":"One-Way Track","tr":"单向轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"19746":{"name":"Gated Track","tr":"门控轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"8103":{"name":"Priming Track","tr":"引爆轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"32363":{"name":"Buffer Stop Track","tr":"缓停轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"7916":{"name":"H.S. Switch Track","tr":"高速转辙轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"20176":{"name":"Locking Track","tr":"封锁轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"816":{"name":"H.S. Track","tr":"高速轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"26865":{"name":"H.S. Transition Track","tr":"高速过渡轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"19986":{"name":"Wooden Switch Track","tr":"木质转辙轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"30516":{"name":"Locomotive Track","tr":"机车调整轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"23575":{"name":"Disembarking Track","tr":"驻车轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"2264":{"name":"Disposal Track","tr":"倾倒轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"10488":{"name":"Electric Switch Track","tr":"电力转辙轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"764":{"name":"Reinforced Junction Track","tr":"强化交接轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"16093":{"name":"Limiter Track","tr":"机车限速轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"4767":{"name":"Switch Track","tr":"转辙轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grilledskewersItem":{"0":{"oreDict":["foodGrilledskewers"],"name":"Grilled Skewer","tr":"串烧","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.enderium":{"0":{"name":"Molten Enderium","tr":"熔融末影","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:gaiaHead":{"0":{"name":"Gaia Guardian\u0027s Head","tr":"盖亚守护者的头","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBlackMetal":{"0":{"oreDict":["dustSmallBlackMetal"],"name":"小堆黑物质粉","tr":"小堆黑物质粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetIodine":{"0":{"oreDict":["nuggetIodine"],"name":"碘粒","tr":"碘粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EtchedLowVoltageWiring":{"0":{"name":"Etched Low Voltage Wiring","tr":"刻蚀LV电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedXenotime":{"0":{"oreDict":["crushedCentrifugedXenotime"],"name":"Centrifuged Crushed Xenotime Ore","tr":"离心磷钇矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:gingerchickenItem":{"0":{"oreDict":["foodGingerchicken"],"name":"Ginger Chicken","tr":"老姜鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemLavaFilter":{"0":{"name":"Lava Filter","tr":"岩浆过滤器","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":100}},"Forestry:cratedBrick":{"0":{"name":"Crated Bricks","tr":"装箱的砖块","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewStaballoy":{"0":{"oreDict":["screwStaballoy"],"name":"贫铀合金螺丝","tr":"贫铀合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.steel.pickaxe":{"0":{"name":"Steel Pickaxe","tr":"钢镐","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":501}},"Forestry:cratedNaturaBlueGlowshroom":{"0":{"name":"Crated Blue Glowshroom","tr":"装箱的蓝色荧光菇","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltInconel625":{"0":{"oreDict":["boltInconel625"],"name":"镍铬基合金-625螺栓","tr":"镍铬基合金-625螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTungstenTitaniumCarbide":{"0":{"oreDict":["cellTungstenTitaniumCarbide"],"name":"碳化钨钛合金单元","tr":"碳化钨钛合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTriniumNaquadahAlloy":{"0":{"oreDict":["nuggetTriniumNaquadahAlloy"],"name":"三元硅岩合金粒","tr":"三元硅岩合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableClusterName":{"0":{"name":"Cable Cluster","tr":"集线器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Advanced Cable Cluster","tr":"高级集线器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_unlit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotIncoloyDS":{"0":{"oreDict":["ingotIncoloyDS"],"name":"耐热铬铁合金-DS锭","tr":"耐热铬铁合金-DS锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryEmpty":{"0":{"name":"Refractory Capsule","tr":"耐火胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorNiobiumCarbide":{"0":{"oreDict":["rotorNiobiumCarbide"],"name":"碳化铌转子","tr":"碳化铌转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:technicolorGlasses":{"0":{"name":"Amazing Technicolor Glasses","tr":"惊艳科幻色调眼镜","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":78}},"Natura:berry":{"0":{"oreDict":["cropRaspberry"," listAllfruit"," listAllberry"],"name":"Raspberry","tr":"覆盆子","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["cropBlueberry"," listAllfruit"," listAllberry"],"name":"Blueberry","tr":"蓝莓","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cropBlackberry"," listAllfruit"," listAllberry"],"name":"Blackberry","tr":"黑莓","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropGooseberry"," cropMaloberry"," listAllfruit"," listAllberry"],"name":"Maloberry","tr":"桑椹","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:sturdy_rail":{"0":{"name":"Sturdy Rail","tr":"坚实铁轨","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LeadNickelPlate":{"0":{"name":"Compressed Lead-Nickel Plate","tr":"压缩镍铅板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:marrowberryItem":{"0":{"oreDict":["listAllfruit"," cropMarrowberry"],"name":"Marrow Berry","tr":"骨髓浆果","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellMaragingSteel350":{"0":{"oreDict":["cellMaragingSteel350"],"name":"马氏体时效钢350单元","tr":"马氏体时效钢350单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreCryoliteF":{"0":{"oreDict":["oreCryoliteF"],"name":"Cryolite (F) Ore","tr":"冰晶石(F)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:turnip":{"0":{"name":"Turnip","tr":"芜青","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:meatCookedTH":{"0":{"name":"Unidentifiable Cooked Meat","tr":"无法辨认的熟肉","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.methanePlanks.stairs":{"0":{"name":"Virilig Stairs","tr":"维里格楼梯","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:Mjolnir":{"0":{"name":"Mjolnir","tr":"雷神之锤","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2001}},"miscutils:itemDustLafiumCompound":{"0":{"oreDict":["dustLafiumCompound"],"name":"路菲恩化合物粉","tr":"路菲恩化合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedLautarite":{"0":{"oreDict":["crushedCentrifugedLautarite"],"name":"Centrifuged Crushed Lautarite Ore","tr":"离心碘钙石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:wallgen":{"0":{"name":"tile.witchery:wallgen.name","tr":"tile.witchery:wallgen.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:dateItem":{"0":{"oreDict":["cropDate"," listAllfruit"],"name":"Date","tr":"枣椰","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.TripleCompressedCoalCoke":{"0":{"name":"Block of Triple Compressed Coal Coke","tr":"三重压缩焦煤块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemSwordCrimson":{"0":{"name":"Crimson Blade","tr":"血腥之刃","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":201}},"Automagy:blockBookshelfEnchanted":{"0":{"name":"Enchanting Bookshelf","tr":"附魔书架","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ensorcelled Bookshelf","tr":"蕴魔书架","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:biome_compass":{"0":{"name":"Biome Compass","tr":"群系指南针","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialBoots":{"0":{"name":"Primordial Boots","tr":"元始靴子","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":39001}},"DraconicEvolution:draconicHelm":{"0":{"name":"Draconic Helm","tr":"龙之头盔","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-10}},"gregtech:gt.blockconcretes":{"0":{"oreDict":["stoneConcrete"],"name":"深色混凝土","tr":"深色混凝土","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneConcrete"],"name":"深色混凝土圆石","tr":"深色混凝土圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneConcrete"],"name":"苔藓深色混凝土圆石","tr":"苔藓深色混凝土圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneConcrete"],"name":"深色混凝土砖","tr":"深色混凝土砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneConcrete"],"name":"裂纹深色混凝土砖","tr":"裂纹深色混凝土砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneConcrete"],"name":"苔藓深色混凝土砖","tr":"苔藓深色混凝土砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stoneConcrete"],"name":"錾制深色混凝土","tr":"錾制深色混凝土","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stoneConcrete"],"name":"平滑深色混凝土","tr":"平滑深色混凝土","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stoneConcrete"],"name":"浅色混凝土","tr":"浅色混凝土","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stoneConcrete"],"name":"浅色混凝土圆石","tr":"浅色混凝土圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stoneConcrete"],"name":"苔藓浅色混凝土圆石","tr":"苔藓浅色混凝土圆石","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stoneConcrete"],"name":"浅色混凝土砖","tr":"浅色混凝土砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stoneConcrete"],"name":"裂纹浅色混凝土砖","tr":"裂纹浅色混凝土砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["stoneConcrete"],"name":"苔藓浅色混凝土砖","tr":"苔藓浅色混凝土砖","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["stoneConcrete"],"name":"錾制浅色混凝土","tr":"錾制浅色混凝土","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["stoneConcrete"],"name":"平滑浅色混凝土","tr":"平滑浅色混凝土","tab":"材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBromine":{"0":{"oreDict":["cellBromine"],"name":"溴单元","tr":"溴单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolCertusQuartzPickaxe":{"0":{"name":"Certus Quartz Pickaxe","tr":"赛特斯石英镐","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemPlateGrisium":{"0":{"oreDict":["plateGrisium"],"name":"灰钛合金板","tr":"灰钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.anchor":{"0":{"name":"Anchor Cart","tr":"世界锚车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"Automagy:blockUnseenScribe":{"0":{"name":"Unseen Scribe","tr":"容器记录桌","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioClock":{"0":{"name":"Oak Clock","tr":"橡木时钟","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Clock","tr":"云杉时钟","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Clock","tr":"桦木时钟","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Clock","tr":"丛林木时钟","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Clock","tr":"金合欢时钟","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Clock","tr":"深色橡木时钟","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Clock","tr":"镶框钟","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockFluidMilk":{"0":{"name":"Milk","tr":"牛奶","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockGolemInhibitor":{"0":{"name":"Golemic Inhibitor","tr":"傀儡抑制器","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Display":{"0":{"name":"Display","tr":"屏幕","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsdiamond":{"0":{"name":"Diamond Transport Pipe","tr":"钻石管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fencesFireproof":{"0":{"oreDict":["fenceWood"],"name":"Larch Fence (Fireproof)","tr":"抗燃落叶树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["fenceWood"],"name":"Teak Fence (Fireproof)","tr":"抗燃柚树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["fenceWood"],"name":"Desert Acacia Fence (Fireproof)","tr":"抗燃沙漠刺槐栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["fenceWood"],"name":"Lime Fence (Fireproof)","tr":"抗燃酸橙树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["fenceWood"],"name":"Chestnut Fence (Fireproof)","tr":"抗燃栗树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["fenceWood"],"name":"Wenge Fence (Fireproof)","tr":"抗燃崖豆栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["fenceWood"],"name":"Baobab Fence (Fireproof)","tr":"抗燃猴面包树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["fenceWood"],"name":"Sequoia Fence (Fireproof)","tr":"抗燃红杉树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["fenceWood"],"name":"Kapok Fence (Fireproof)","tr":"抗燃木棉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["fenceWood"],"name":"Ebony Fence (Fireproof)","tr":"抗燃乌檀树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["fenceWood"],"name":"Mahogany Fence (Fireproof)","tr":"抗燃桃心树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["fenceWood"],"name":"Balsa Fence (Fireproof)","tr":"抗燃巴尔杉树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["fenceWood"],"name":"Willow Fence (Fireproof)","tr":"抗燃柳树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["fenceWood"],"name":"Walnut Fence (Fireproof)","tr":"抗燃核桃栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["fenceWood"],"name":"Greenheart Fence (Fireproof)","tr":"抗燃绿樟树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["fenceWood"],"name":"Cherry Fence (Fireproof)","tr":"抗燃樱桃栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["fenceWood"],"name":"Mahoe Fence (Fireproof)","tr":"抗燃高槿树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["fenceWood"],"name":"Poplar Fence (Fireproof)","tr":"抗燃白杨树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["fenceWood"],"name":"Palm Fence (Fireproof)","tr":"抗燃棕榈树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["fenceWood"],"name":"Papaya Fence (Fireproof)","tr":"抗燃木瓜栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["fenceWood"],"name":"Pine Fence (Fireproof)","tr":"抗燃松树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["fenceWood"],"name":"Plum Fence (Fireproof)","tr":"抗燃李子栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["fenceWood"],"name":"Maple Fence (Fireproof)","tr":"抗燃枫树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["fenceWood"],"name":"Citrus Fence (Fireproof)","tr":"抗燃柑橘树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["fenceWood"],"name":"Giant Sequoia Fence (Fireproof)","tr":"抗燃巨杉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["fenceWood"],"name":"Ipe Fence (Fireproof)","tr":"抗燃重蚁树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["fenceWood"],"name":"Padauk Fence (Fireproof)","tr":"抗燃紫檀树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["fenceWood"],"name":"Cocobolo Fence (Fireproof)","tr":"抗燃黄檀树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["fenceWood"],"name":"Zebrawood Fence (Fireproof)","tr":"抗燃斑木树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_lime":{"0":{"name":"Lime Curtain","tr":"黄绿色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHydrogenChlorideMix":{"0":{"oreDict":["cellHydrogenChlorideMix"],"name":"氯化氢混合物单元","tr":"氯化氢混合物单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:spawnerClaw":{"0":{"name":"Life Imbuer","tr":"生命灌注器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.paperShreds":{"0":{"name":"Paper Shreds","tr":"碎纸","tab":"开放式打印机","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleSelenium":{"0":{"oreDict":["plateDoubleSelenium"],"name":"双重硒板","tr":"双重硒板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemPlateTriniumNaquadahCarbonite":{"0":{"oreDict":["plateTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金板","tr":"掺碳三元硅岩合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTriniumNaquadahCarbonite":{"0":{"oreDict":["nuggetTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金粒","tr":"掺碳三元硅岩合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:chestplateWood":{"0":{"name":"Wooden Chestplate","tr":"木胸甲","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":33}},"witchery:shadedglass_active":{"0":{"name":"White Shaded Glass","tr":"白色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Shaded Glass","tr":"橘色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Shaded Glass","tr":"品红遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Shaded Glass","tr":"淡蓝遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Shaded Glass","tr":"黄色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Shaded Glass","tr":"黄绿遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Shaded Glass","tr":"粉色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Shaded Glass","tr":"灰色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Silver Shaded Glass","tr":"银色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Shaded Glass","tr":"青色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Shaded Glass","tr":"紫色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Shaded Glass","tr":"蓝色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Shaded Glass","tr":"棕色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Shaded Glass","tr":"绿色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Shaded Glass","tr":"红色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Shaded Glass","tr":"黑色遮光玻璃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:factoryblock2":{"0":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Factory Block","tr":"工厂方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatemilkItem":{"0":{"oreDict":["foodChocolatemilk"],"name":"Chocolate Milk","tr":"巧克力牛奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngineeringProcessorItemAdvEmeraldCore":{"0":{"name":"Item Processor Tier IV","tr":"物品处理器 IV","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellWhiteMetal":{"0":{"oreDict":["cellWhiteMetal"],"name":"白物质单元","tr":"白物质单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:item.GT_Rockcutter_Item_HV":{"1":{"name":"Rockcutter HV","tr":"岩石切割机HV","tab":"GT2兼容","type":"Item","maxStackSize":1,"maxDurability":1028},"1027":{"name":"Rockcutter HV","tr":"岩石切割机HV","tab":"GT2兼容","type":"Item","maxStackSize":1,"maxDurability":1028}},"GalacticraftCore:item.airVent":{"0":{"name":"Oxygen Vent","tr":"排气孔","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:batteredsausageItem":{"0":{"oreDict":["foodBatteredsausage"],"name":"Battered Sausage","tr":"炸香肠","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryWater":{"0":{"name":"Water Capsule","tr":"耐火水胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:chestplateMud":{"0":{"name":"Muddy Chestplate","tr":"泥巴胸甲","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"BiblioWoodsForestry:BiblioWoodClock2":{"0":{"name":"Pine Clock","tr":"松树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Clock","tr":"李子树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Clock","tr":"杨树木时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Clock","tr":"红杉时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Clock","tr":"柚木时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Clock","tr":"核桃树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Clock","tr":"崖豆树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Clock","tr":"柳树时钟","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedPodzol":{"0":{"name":"Crated Podzol","tr":"装箱的灰化土","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:mandrake":{"0":{"name":"Mandrake","tr":"曼德拉草","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafBoots":{"0":{"name":"Steeleaf Boots","tr":"钢叶靴子","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":261}},"dreamcraft:tile.TitaniumPlatedReinforcedStone":{"0":{"name":"Titanium Plated Reinforced Stone","tr":"钛镀层防爆石","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.phantomHelm":{"0":{"name":"Phantom Helm","tr":"幻影头盔","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":331}},"miscutils:itemScrewTalonite":{"0":{"oreDict":["screwTalonite"],"name":"铬钴磷酸盐合金螺丝","tr":"铬钴磷酸盐合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:terraAxe":{"0":{"name":"Terra Truncator","tr":"泰拉断裂者","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":2301}},"harvestcraft:butterItem":{"0":{"oreDict":["foodButter"],"name":"Butter","tr":"黄油","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBerryBlack":{"0":{"name":"Crated Blackberry","tr":"装箱的黑莓","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB0Slab":{"0":{"name":"Metamorphic Forest Stone Brick Slab","tr":"变质森林石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.ironwoodLegs":{"0":{"name":"Ironwood Legs","tr":"铁木护腿","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":301}},"miscutils:itemCellGrisium":{"0":{"oreDict":["cellGrisium"],"name":"灰钛合金单元","tr":"灰钛合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pameggplantCrop":{"0":{"name":"Eggplant Crop","tr":"茄子","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ReinforcedNaquadriaIronPlate":{"0":{"name":"Reinforced Naquadria-Iron Plate","tr":"强化超能硅岩铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.cobaltum_leg":{"0":{"name":"Cobalt Leggins","tr":"钴护腿","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":526}},"miscutils:itemRodLongBloodSteel":{"0":{"oreDict":["stickLongBloodSteel"],"name":"长血钢杆","tr":"长血钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeCell":{"0":{"name":"Casting Form (Cell Shape)","tr":"铸形(单元)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHibonite":{"0":{"oreDict":["dustTinyHibonite"],"name":"小撮黑铝钙石粉","tr":"小撮黑铝钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZrCl4":{"0":{"oreDict":["dustTinyZrCl4"],"name":"小撮氯化锆粉","tr":"小撮氯化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormBaguette":{"0":{"name":"Casting Form (Baguette Mold)","tr":"铸件(法棍)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetIncoloy020":{"0":{"oreDict":["nuggetIncoloy020"],"name":"耐热铬铁合金-020粒","tr":"耐热铬铁合金-020粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustMolybdenum99":{"0":{"oreDict":["dustMolybdenum99"],"name":"Molybdenum 99 Dust","tr":"钼-99粉","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1000000000}},"TwilightForest:item.ironwoodRaw":{"0":{"oreDict":["oreIronwood"],"name":"Raw Ironwood Materials","tr":"未加工的铁木原料","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantumPartChestplate":{"0":{"name":"Quantum Parts \"Chestplate\"","tr":"量子胸甲外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ElectricBootsTraveller":{"1":{"name":"Electric Boots of the Traveller","tr":"电子旅行者之靴","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Electric Boots of the Traveller","tr":"电子旅行者之靴","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"StevesCarts:BlockDetector":{"0":{"name":"Detector Manager","tr":"探测管理器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Detector Unit","tr":"探测装置","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Detector Station","tr":"探测站","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Detector Junction","tr":"探测结点","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Detector Redstone Unit","tr":"探测红石装置","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"JABBA:upgradeStructural":{"0":{"name":"Structural MK I (Oak Wood Planks)","tr":"结构等级-MK I (橡木木板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Structural MK II (Copper Plate)","tr":"结构等级-MK II (铜板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Structural MK III (Iron Plate)","tr":"结构等级-MK III (铁板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Structural MK IV (Bronze Plate)","tr":"结构等级-MK IV (青铜板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"4":{"name":"Structural MK V (钢板)","tr":"结构等级-MK V (钢板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"5":{"name":"Structural MK VI (铝板)","tr":"结构等级-MK VI (铝板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"6":{"name":"Structural MK VII (不锈钢板)","tr":"结构等级-MK VII (不锈钢板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"7":{"name":"Structural MK VIII (钛板)","tr":"结构等级-MK VIII (钛板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"8":{"name":"Structural MK IX (钨钢板)","tr":"结构等级-MK IX (钨钢板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"9":{"name":"Structural MK X (铬板)","tr":"结构等级-MK X (铬板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"10":{"name":"Structural MK XI (铱板)","tr":"结构等级-MK XI (铱板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"11":{"name":"Structural MK XII (锇板)","tr":"结构等级-MK XII (锇板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"12":{"name":"Structural MK XIII (中子板)","tr":"结构等级-MK XIII (中子板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1},"13":{"name":"Structural MK XIV (黑钚板)","tr":"结构等级-MK XIV (黑钚板)","tab":"更好的桶","type":"Item","maxStackSize":16,"maxDurability":1}},"GalaxySpace:enceladuscrystal":{"0":{"name":"Unknown Crystal","tr":"未知水晶","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallInconel792":{"0":{"oreDict":["dustSmallInconel792"],"name":"小堆镍铬基合金-792粉","tr":"小堆镍铬基合金-792粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallThallium":{"0":{"oreDict":["dustSmallThallium"],"name":"小堆铊粉","tr":"小堆铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAmmoniumBifluoride":{"0":{"oreDict":["dustTinyAmmoniumBifluoride"],"name":"小撮氟化氢铵粉","tr":"小撮氟化氢铵粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:weakFillingAgent":{"0":{"name":"Weak Filling Agent","tr":"[虚弱的]填充剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.FluixSlabBlock":{"0":{"name":"Fluix Slabs","tr":"福鲁伊克斯台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:seaLamp":{"0":{"name":"Sea Lantern","tr":"海灯笼","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgrade":{"2":{"name":"Storage Upgrade (II)","tr":"抽屉容量升级(II)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Storage Upgrade (III)","tr":"抽屉容量升级(III)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Storage Upgrade (IV)","tr":"抽屉容量升级(IV)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Storage Upgrade (V)","tr":"抽屉容量升级(V)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Storage Upgrade (VI)","tr":"抽屉容量升级(VI)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Storage Upgrade (VII)","tr":"抽屉容量升级(VII)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Storage Upgrade (VIII)","tr":"抽屉容量升级(VIII)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:BlockPowerChair":{"0":{"name":"PowerChair","tr":"抛瓦椅","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:fishtrap":{"0":{"name":"Fish Trap","tr":"渔栅","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gooseberryyogurtItem":{"0":{"oreDict":["foodGooseberryyogurt"],"name":"Gooseberry Yogurt","tr":"醋栗酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.endSteel_chestplate":{"0":{"name":"End Steel Plate","tr":"末影钢胸甲","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":801}},"dreamcraft:item.SawBladeStone":{"0":{"name":"Stone Saw Blade","tr":"石锯刃","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:stargateBase":{"0":{"name":"Stargate Base","tr":"星门底座方块","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:livingrock0Stairs":{"0":{"name":"Livingrock Stairs","tr":"活石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone0Wall":{"0":{"name":"Andesite Wall","tr":"安山岩石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Basalt Wall","tr":"玄武岩石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Diorite Wall","tr":"闪长岩石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Granite Wall","tr":"花岗岩石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearPikyonium64B":{"0":{"oreDict":["gearGtPikyonium64B"," gearPikyonium64B"],"name":"皮卡优合金64B齿轮","tr":"皮卡优合金64B齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:boatGreatwood":{"0":{"name":"Greatwood Boat","tr":"宏伟之木船","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearTumbaga":{"0":{"oreDict":["gearGtTumbaga"," gearTumbaga"],"name":"铜金合金齿轮","tr":"铜金合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetWatertightSteel":{"0":{"oreDict":["nuggetWatertightSteel"],"name":"防水钢粒","tr":"防水钢粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:deluxecheeseburgerItem":{"0":{"oreDict":["foodDeluxecheeseburger"],"name":"Deluxe Cheeseburger","tr":"豪华芝士堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFThorns":{"0":{"name":"Thorns","tr":"荆棘","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Green Thorns","tr":"绿色荆棘","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IridiumBars":{"0":{"oreDict":["barsIridium"],"name":"Iridium Bars","tr":"铱栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsSort":{"0":{"name":"Sortingwood Stairs","tr":"分类树楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:machine.alpha":{"0":{"name":"World Anchor","tr":"世界锚","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Steam Turbine Housing","tr":"蒸汽涡轮机壳","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Personal Anchor","tr":"个人锚","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Steam Oven","tr":"蒸汽炉","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Admin Anchor","tr":"管理员锚","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Smoker","tr":"发烟器","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Trade Station","tr":"贸易站","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Coke Oven Brick","tr":"焦炉砖块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Rolling Machine","tr":"辊压机","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Manual Steam Trap","tr":"手动蒸汽陷阱","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Automated Steam Trap","tr":"自动蒸汽陷阱","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Feed Station","tr":"饲育站","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Advanced Coke Oven Brick","tr":"高级焦炉砖块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Passive Anchor","tr":"被动锚","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Water Tank Siding","tr":"集水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystal":{"0":{"name":"Mysterious Crystal","tr":"神秘水晶","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockReactorFluidPort":{"0":{"name":"Reactor Fluid Port","tr":"反应堆流体接口","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustNichromite":{"0":{"oreDict":["dustNichromite"],"name":"镍铬矿粉","tr":"镍铬矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.shovel.darkwood":{"0":{"name":"Darkwood Shovel","tr":"黑暗树铲","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"ExtraUtilities:color_stone":{"0":{"oreDict":["stoneBlack"," stoneSmooth"," stone"],"name":"Colored Stone (White Frequency)","tr":"染色 石头 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneRed"," stoneSmooth"," stone"],"name":"Colored Stone (Orange Frequency)","tr":"染色 石头 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneSmooth"," stoneGreen"," stone"],"name":"Colored Stone (Magenta Frequency)","tr":"染色 石头 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneSmooth"," stoneBrown"," stone"],"name":"Colored Stone (Light Blue Frequency)","tr":"染色 石头 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneSmooth"," stoneBlue"," stone"],"name":"Colored Stone (Yellow Frequency)","tr":"染色 石头 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneSmooth"," stonePurple"," stone"],"name":"Colored Stone (Lime Frequency)","tr":"染色 石头 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stoneSmooth"," stoneCyan"," stone"],"name":"Colored Stone (Pink Frequency)","tr":"染色 石头 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stoneSmooth"," stone"," stoneLightGray"],"name":"Colored Stone (Gray Frequency)","tr":"染色 石头 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stoneSmooth"," stone"," stoneGray"],"name":"Colored Stone (Light Gray Frequency)","tr":"染色 石头 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stoneSmooth"," stone"," stonePink"],"name":"Colored Stone (Cyan Frequency)","tr":"染色 石头 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stoneSmooth"," stone"," stoneLime"],"name":"Colored Stone (Purple Frequency)","tr":"染色 石头 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stoneSmooth"," stone"," stoneYellow"],"name":"Colored Stone (Blue Frequency)","tr":"染色 石头 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stoneLightBlue"," stoneSmooth"," stone"],"name":"Colored Stone (Brown Frequency)","tr":"染色 石头 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["stoneMagenta"," stoneSmooth"," stone"],"name":"Colored Stone (Green Frequency)","tr":"染色 石头 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["stoneOrange"," stoneSmooth"," stone"],"name":"Colored Stone (Red Frequency)","tr":"染色 石头 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["stoneWhite"," stoneSmooth"," stone"],"name":"Colored Stone (Black Frequency)","tr":"染色 石头 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Quad_ThoriumcellDep":{"0":{"name":"枯竭四联燃料棒(钍)","tr":"枯竭四联燃料棒(钍)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:crushedCentrifugedGadoliniteY":{"0":{"oreDict":["crushedCentrifugedGadoliniteY"],"name":"Centrifuged Crushed Gadolinite (Y) Ore","tr":"离心硅铍钇矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinTechnicianII":{"0":{"name":"Coin \"The Technician 100\"","tr":"技术员币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:platform":{"0":{"name":"Ethereal Platform","tr":"仙域平台","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gingersodaItem":{"0":{"oreDict":["foodGingersoda"],"name":"Ginger Ale","tr":"姜汁汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_pane_lightgray":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterDarkGrey":{"0":{"name":"Dark Grey Painter","tr":"灰色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:dustImpureLanthaniteCe":{"0":{"oreDict":["dustImpureLanthaniteCe"],"name":"Impure Lanthanite (Ce) Dust","tr":"含杂镧石(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapeItem":{"0":{"oreDict":["cropGrape"," listAllfruit"],"name":"Grape","tr":"葡萄","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:kitShovel":{"0":{"name":"Shovel Kit","tr":"铲子应急袋","tab":"林业","type":"Item","maxStackSize":24,"maxDurability":1}},"Forestry:cratedReeds":{"0":{"name":"Crated Sugar Canes","tr":"装箱的甘蔗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:fluid.LiquidDNA":{"0":{"name":"Liquid DNA","tr":"液态DNA","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinTechnicianIV":{"0":{"name":"Coin \"The Technician 10K\"","tr":"技术员币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IronChest:obsidianDarkSteelUpgrade":{"0":{"name":"Obsidian to Dark Steel Chest Upgrade","tr":"Obsidian to Dark Steel Chest Upgrade","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFTowerTranslucent":{"0":{"name":"Reappearing Block","tr":"消失的重现方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Active Reappearing Block","tr":"激活的重现方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Built Carminite Block","tr":"高塔建设者方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Active Built Carminite Block","tr":"消失的高塔建设者方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Anti-built Block","tr":"反建方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Carminite Reactor Debris","tr":"砷铅铁反应堆碎片","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"False Gold","tr":"假金块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"False Diamond","tr":"假钻石块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewZeron100":{"0":{"oreDict":["screwZeron100"],"name":"塞龙-100螺丝","tr":"塞龙-100螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallHibonite":{"0":{"oreDict":["dustSmallHibonite"],"name":"小堆黑铝钙石粉","tr":"小堆黑铝钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_blue":{"0":{"name":"Blue Curtain","tr":"蓝色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cherrysmoothieItem":{"0":{"oreDict":["foodCherrysmoothie"," listAllsmoothie"],"name":"Cherry Smoothie","tr":"樱桃冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:peasandceleryItem":{"0":{"oreDict":["foodPeasandcelery"],"name":"Peas and Celery","tr":"豌豆炒芹菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockTranslucent":{"0":{"name":"Glowing Amber","tr":"闪耀琥珀方块","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Glowing Amber Bricks","tr":"闪耀琥珀砖块","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"betterbuilderswands:wandUnbreakable":{"4":{"name":"Unbreakable Wand","tr":"永恒建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Unbreakable Wand","tr":"永恒建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Unbreakable Wand","tr":"永恒建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Unbreakable Wand","tr":"永恒建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Unbreakable Wand","tr":"永恒建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Unbreakable Wand","tr":"永恒建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1}},"bartworks:item.GT_Rockcutter_Item_LV":{"1":{"name":"Rockcutter LV","tr":"岩石切割机LV","tab":"GT2兼容","type":"Item","maxStackSize":1,"maxDurability":38},"37":{"name":"Rockcutter LV","tr":"岩石切割机LV","tab":"GT2兼容","type":"Item","maxStackSize":1,"maxDurability":38}},"dreamcraft:item.NetherStarFragment":{"0":{"name":"Nether Star Fragment","tr":"下界之星碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:voidbramble":{"0":{"name":"Void Bramble","tr":"虚空荆棘","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTellurium":{"0":{"oreDict":["ringTellurium"],"name":"碲环","tr":"碲环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:kiwiItem":{"0":{"oreDict":["cropKiwi"," listAllfruit"],"name":"Kiwi","tr":"猕猴桃","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHelmetThaumium":{"0":{"name":"Thaumium Helm","tr":"神秘头盔","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":276}},"Thaumcraft:ItemArcaneDoor":{"0":{"name":"Arcane Door","tr":"奥能之扉","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"thaumicbases:thauminiteBoots":{"0":{"name":"Thauminite Boots","tr":"秘晶靴","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":352}},"BiblioWoodsBoP:BiblioWoodFancyWorkbench":{"0":{"name":"Sacred Oak Fancy Workbench","tr":"天域树橡树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Fancy Workbench","tr":"樱桃树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Fancy Workbench","tr":"黑暗树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Fancy Workbench","tr":"杉树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Fancy Workbench","tr":"地狱皮树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Fancy Workbench","tr":"天域树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Fancy Workbench","tr":"蓝花楹精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Fancy Workbench","tr":"魔法树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Fancy Workbench","tr":"红杉精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Fancy Workbench","tr":"棕榈树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Fancy Workbench","tr":"松树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Fancy Workbench","tr":"红木精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Fancy Workbench","tr":"柳树精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Fancy Workbench","tr":"桃花心木精致工作台","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:decoration.stonetorch":{"0":{"oreDict":["torchStone"],"name":"Torch","tr":"石柄火把","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:glotek":{"0":{"oreDict":["glotek"],"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"GloTek","tr":"GloTek","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.emptybowl":{"0":{"oreDict":["bowlWood"],"name":"Bowl","tr":"碗","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.shovel.ghostwood":{"0":{"name":"Ghostwood Shovel","tr":"幽魂树铲","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":60}},"GoodGenerator:plasticCase":{"0":{"name":"Plastic Case","tr":"塑料外壳","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB3SlabFull":{"0":{"name":"Metamorphic Fungal Stone Brick Slab","tr":"变质菌丝石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peachcobblerItem":{"0":{"oreDict":["foodPeachcobbler"],"name":"Peach Cobbler","tr":"桃子馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleGrisium":{"0":{"oreDict":["plateDoubleGrisium"],"name":"双重灰钛合金板","tr":"双重灰钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:peanutItem":{"0":{"oreDict":["listAllnut"," cropPeanut"],"name":"Peanut","tr":"花生","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Builders:frameBlock":{"0":{"name":"Frame","tr":"框架","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellLithiumFluoride":{"0":{"oreDict":["cellLithiumFluoride"],"name":"氟化锂单元","tr":"氟化锂单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapefruitItem":{"0":{"oreDict":["cropGrapefruit"," listAllfruit"," listAllcitrus"],"name":"Grapefruit","tr":"葡萄柚","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:endConstructor":{"0":{"name":"QED (Quadratic Equation Device)","tr":"QED(量子纠缠测算仪Quantum Entanglement Diviner)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ender-Flux Crystal","tr":"末影潮汐水晶","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:chiselHead":{"0":{"name":"Wooden Chisel Head","tr":"木凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Chisel Head","tr":"石凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Chisel Head","tr":"铁凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Chisel Head","tr":"燧石凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Chisel Head","tr":"仙人掌凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Chisel Head","tr":"骨头凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Chisel Head","tr":"黑曜石凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Chisel Head","tr":"地狱岩凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Chisel Head","tr":"史莱姆凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Chisel Head","tr":"纸凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Chisel Head","tr":"钴凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Chisel Head","tr":"阿迪特凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Chisel Head","tr":"玛玉灵凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Chisel Head","tr":"铜凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Chisel Head","tr":"青铜凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Chisel Head","tr":"耐酸铝凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Chisel Head","tr":"钢凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Chisel Head","tr":"史莱姆凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Chisel Head","tr":"生铁凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Chisel Head","tr":"不稳定感应凿刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemPartCoalBlock":{"0":{"name":"Compressed Coal Ball","tr":"压缩煤球","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:gearTin":{"0":{"oreDict":["gearTin"],"name":"Tin Gear","tr":"锡齿轮","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:odinRing":{"0":{"name":"Ring of Odin","tr":"奥丁之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.DraconiumEgg":{"0":{"name":"Enriched Draconium Egg","tr":"富集龙蛋","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearCinobiteA243":{"0":{"oreDict":["gearGtCinobiteA243"," gearCinobiteA243"],"name":"西诺柏A243齿轮","tr":"西诺柏A243齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockPedestal":{"0":{"name":"Arcane Pedestal","tr":"奥术基座","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"tinkersdefense:Block_CrestMount":{"0":{"name":"Crest Mount","tr":"纹章坐骑","tab":"工匠之盾","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallYttrialite":{"0":{"oreDict":["dustSmallYttrialite"],"name":"小堆硅钍钇矿粉","tr":"小堆硅钍钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:builderBag":{"0":{"name":"Builder\u0027s Backpack","tr":"建筑师背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.MoldHelmet":{"0":{"name":"Mold (Helmet)","tr":"模具(头盔)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Energy:blockRedPlasma":{"0":{"name":"Red Plasma Block","tr":"红色等离子体方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EssentiaCircuit":{"0":{"name":"Essentia Circuit","tr":"源质电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"Avaritia:Dire_Crafting":{"0":{"name":"Dire Crafting Table","tr":"终极工作台","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.mithril":{"0":{"name":"Molten Mana Infused Metal","tr":"熔融蕴魔金属","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LaserEmitter":{"0":{"name":"Laser Emitter","tr":"激光发射器","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:diamondTank":{"0":{"name":"Diamond Tank","tr":"钻石储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockMiningPipe":{"0":{"name":"Mining Pipe","tr":"采矿管道","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Infinity_Bow":{"0":{"name":"Longbow of the Heavens","tr":"天堂陨落长弓","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":10000}},"ThaumicTinkerer:ichorclothBoots":{"0":{"name":"Ichorcloth Boots","tr":"灵布靴子","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:steelblock":{"0":{"name":"Block of Steel","tr":"钢块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Steel","tr":"钢块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Steel","tr":"钢块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Steel","tr":"钢块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Steel","tr":"钢块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Steel","tr":"钢块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:BurntLiFBeF2ZrF4U235":{"0":{"oreDict":["cellBurntLiFBeF2ZrF4U235Salt"],"name":"枯竭铀235复合氟化物熔盐单元","tr":"枯竭铀235复合氟化物熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySelenium":{"0":{"oreDict":["dustTinySelenium"],"name":"小撮硒粉","tr":"小撮硒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFlower":{"0":{"name":"Coin \"The Gardener 1\"","tr":"园艺家币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:stuffedeggplantItem":{"0":{"oreDict":["foodStuffedeggplant"],"name":"Stuffed Eggplant","tr":"香酥茄盒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingLafiumCompound":{"0":{"oreDict":["ringLafiumCompound"],"name":"路菲恩化合物环","tr":"路菲恩化合物环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesCarts:BlockAdvDetector":{"0":{"name":"Advanced Detector Rail","tr":"高级探测轨道","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:discountRing":{"0":{"name":"Ring of Aer","tr":"风之指环","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Ring of Terra","tr":"地之指环","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Ring of Ignis","tr":"火之指环","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Ring of Aqua","tr":"水之指环","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Ring of Ordo","tr":"秩序指环","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Ring of Perditio","tr":"混沌指环","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:ender_goo":{"0":{"name":"Ender Goo","tr":"末影粘浆","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:item.ItemAlastorsWand":{"0":{"name":"Alastor\u0027s First Wand","tr":"愤怒魔鬼的第一支权杖","tab":"神秘革命","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesCarts:ModularCart":{"0":{"name":"Modular cart","tr":"组装矿车","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:blockDynamite":{"0":{"name":"ic2.blockDynamite","tr":"ic2.blockDynamite","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_black":{"0":{"name":"Black Curtain","tr":"黑色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemwcarbonrotor":{"0":{"name":"Kinetic Gearbox Rotor (Iridium)","tr":"铱转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":3200001}},"dreamcraft:item.ShapeSwordBlade":{"0":{"name":"Casting Form (Sword Blade Shape)","tr":"铸形(剑刃)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:meltyIce":{"0":{"name":"Ice","tr":"冰","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockTinyTNT":{"0":{"name":"Tiny TNT","tr":"迷你TNT","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:endStoneBrick0Stairs":{"0":{"name":"End Stone Brick Stairs","tr":"末地石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPaintedFence":{"0":{"name":"Painted Fence","tr":"喷涂栅栏","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.QuintupleCompressedCoalCoke":{"0":{"name":"Block of Quintuple Compressed Coal Coke","tr":"五重压缩焦煤块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockPersonal":{"0":{"oreDict":["craftingSafe"],"name":"Personal Safe","tr":"保险箱","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Trade-O-Mat","tr":"贸易箱","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Energy-O-Mat","tr":"电力贸易箱","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:donationStation":{"0":{"name":"Donation Station","tr":"捐助站","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:part.gear":{"0":{"name":"Gold-Plate Gear","tr":"金板齿轮","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["gearIron"],"name":"Iron Gear","tr":"铁齿轮","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Steel Gear","tr":"钢齿轮","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Tin Gear Bushing","tr":"锡齿轮轴套","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockEnderRail":{"0":{"name":"Ender Rail","tr":"末影轨道","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:coral1":{"11":{"name":"Kelp","tr":"巨藻","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Pink Coral","tr":"粉珊瑚","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Orange Coral","tr":"橙珊瑚","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Blue Coral","tr":"蓝珊瑚","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Glowing Coral","tr":"夜光珊瑚","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:coral2":{"8":{"name":"Algae","tr":"海藻","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:longsword":{"0":{"name":"§f山铜 长剑","tr":"§f山铜 长剑","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"harvestcraft:cranberryjellysandwichItem":{"0":{"oreDict":["foodCranberryjellysandwich"],"name":"Cranberry Jelly Sandwich","tr":"蔓越莓果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:redwoodStairs":{"0":{"oreDict":["stairWood"],"name":"Redwood Wood Stairs","tr":"红杉木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:zombiejerkyItem":{"0":{"oreDict":["foodZombiejerky"],"name":"Zombie Jerky","tr":"僵尸肉干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.ardite":{"0":{"name":"Molten Ardite","tr":"熔融阿迪特","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapefruitjellysandwichItem":{"0":{"oreDict":["foodGrapefruitjellysandwich"],"name":"Grapefruit Jelly Sandwich","tr":"葡萄柚果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedFertilizer":{"0":{"name":"Crated Fertilizer","tr":"装箱的肥料","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:counter":{"0":{"name":"Counter","tr":"厨柜","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"Avaritia:Infinity_Axe":{"0":{"name":"Nature\u0027s Ruin","tr":"自然荒芜之斧","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":10000}},"harvestcraft:spagettiandmeatballsItem":{"0":{"oreDict":["foodSpagettiandmeatballs"],"name":"Spagetti and Meatballs","tr":"肉丸意大利面","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.steeleafHoe":{"0":{"name":"Steeleaf Hoe","tr":"钢叶锄","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":132}},"BiblioCraft:BiblioShelf":{"0":{"name":"Oak Shelf","tr":"橡木架子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Shelf","tr":"云杉木架子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Shelf","tr":"白桦木架子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Shelf","tr":"丛林木架子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Shelf","tr":"金合欢架子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Shelf","tr":"深色橡木架子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Shelf","tr":"镶框架子","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"FloodLights:electricIncandescentLightBulb":{"0":{"name":"Electric Incandescent Light Bulb","tr":"电力白炽灯泡","tab":"泛光灯","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyWhiteMetal":{"0":{"oreDict":["dustTinyWhiteMetal"],"name":"小撮白物质粉","tr":"小撮白物质粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:fruitsaladItem":{"0":{"oreDict":["foodFruitsalad"],"name":"Fruit Salad","tr":"水果沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:sigil_of_ender":{"0":{"name":"Ender Sigil","tr":"末影印记","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemSmallSpringMaragingSteel250":{"0":{"oreDict":["springSmallMaragingSteel250"],"name":"小型马氏体时效钢250弹簧","tr":"小型马氏体时效钢250弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ElectricalSteelBars":{"0":{"oreDict":["barsElectricalSteel"],"name":"Electrical Steel Bars","tr":"磁钢栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:candiedwalnutsItem":{"0":{"oreDict":["foodCandiedwalnuts"],"name":"Candied Walnuts","tr":"蜜汁核桃","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.04.name":{"1":{"name":"§9Charge Pack [EV]§7","tr":"§9充电工具包[EV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [EV]§7","tr":"§9充电工具包[EV]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:melonsmoothieItem":{"0":{"oreDict":["listAllsmoothie"," foodMelonsmoothie"],"name":"Melon Smoothie","tr":"西瓜冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:extractor_base":{"0":{"name":"Transfer Node (Items)","tr":"传输节点(物品)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Transfer Node (Liquids)","tr":"传输节点(流体)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Transfer Node (Energy)","tr":"传输节点(能量)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Transfer Node (Hyper Energy)","tr":"传输节点(高能)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_lit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:hamburgerItem":{"0":{"oreDict":["foodHamburger"],"name":"Hamburger","tr":"汉堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:rowanwooddoor":{"0":{"name":"Rowan Wood Door","tr":"山梨树木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:peachItem":{"0":{"oreDict":["cropPeach"," listAllfruit"],"name":"Peach","tr":"桃子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement1Slab":{"0":{"name":"Black Portuguese Pavement Slab","tr":"黑色葡萄牙台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.lead_plate":{"0":{"name":"Lead Chestplate","tr":"铅铠","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":481}},"ThaumicTinkerer:travelStairs":{"0":{"name":"Paving Stair of Travel","tr":"旅行者楼梯","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotProtactinium":{"0":{"oreDict":["ingotProtactinium"],"name":"镤锭","tr":"镤锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:multi_fluid_storage16384":{"0":{"name":"§516384k§r ME Multi-Fluid Storage Cell","tr":"§516384k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"Ztones:tile.syncBlock":{"0":{"name":"Sync ⓪","tr":"Sync ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sync ①","tr":"Sync ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sync ②","tr":"Sync ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sync ③","tr":"Sync ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Sync ④","tr":"Sync ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Sync ⑤","tr":"Sync ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Sync ⑥","tr":"Sync ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sync ⑦","tr":"Sync ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sync ⑧","tr":"Sync ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Sync ⑨","tr":"Sync ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sync ⑩","tr":"Sync ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Sync ⑪","tr":"Sync ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Sync ⑫","tr":"Sync ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Sync ⑬","tr":"Sync ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Sync ⑭","tr":"Sync ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Sync ⑮","tr":"Sync ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZircon":{"0":{"oreDict":["dustSmallZircon"],"name":"小堆锆石粉","tr":"小堆锆石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:ImportCover":{"0":{"name":"Item Import Cover","tr":"物品输入盖板","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RadoxPolymerLens":{"0":{"name":"Radox Polymer Lens","tr":"拉多X聚合物透镜","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:honeysandwichItem":{"0":{"oreDict":["foodHoneysandwich"],"name":"Honey Sandwich","tr":"蜂蜜三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltStellite":{"0":{"oreDict":["boltStellite"],"name":"铬钴锰钛合金螺栓","tr":"铬钴锰钛合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearTriniumTitaniumAlloy":{"0":{"oreDict":["gearGtTriniumTitaniumAlloy"," gearTriniumTitaniumAlloy"],"name":"三元钛合金齿轮","tr":"三元钛合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:wireless_ultra_terminal":{"0":{"name":"Universal Wireless Terminal - Crafting","tr":"无线通用终端 - 合成","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":33}},"bartworks:gt.bwMetaGeneratednugget":{"64":{"oreDict":["nuggetRuthenium"],"name":"钌粒","tr":"钌粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["nuggetShirabon"],"name":"调律源金粒","tr":"调律源金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["nuggetZirconium"],"name":"锆粒","tr":"锆粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["nuggetZn-ThAlloy"],"name":"锌钍合金粒","tr":"锌钍合金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["nuggetRhodium"],"name":"铑粒","tr":"铑粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["nuggetRhodium-PlatedPalladium"],"name":"镀铑钯粒","tr":"镀铑钯粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["nuggetRuridit"],"name":"钌铱合金粒","tr":"钌铱合金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["nuggetHighDurabilityCompoundSteel"],"name":"高耐久性复合钢粒","tr":"高耐久性复合钢粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["nuggetThorium232"],"name":"钍-232粒","tr":"钍-232粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["nuggetAdemicSteel"],"name":"硬钢粒","tr":"硬钢粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["nuggetZircaloy-4"],"name":"锆锡合金-4粒","tr":"锆锡合金-4粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["nuggetZircaloy-2"],"name":"锆锡合金-2粒","tr":"锆锡合金-2粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["nuggetIncoloy-903"],"name":"耐热铬铁合金-903粒","tr":"耐热铬铁合金-903粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["nuggetAdamantiumAlloy"],"name":"精金合金粒","tr":"精金合金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["nuggetAtomicSeparationCatalyst"],"name":"原子分离催化剂粒","tr":"原子分离催化剂粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["nuggetCalifornium"],"name":"锎粒","tr":"锎粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["nuggetCalcium"],"name":"钙粒","tr":"钙粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["nuggetFluorophlogopite"],"name":"氟金云母粒","tr":"氟金云母粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["nuggetExtremelyUnstableNaquadah"],"name":"极不稳定硅岩粒","tr":"极不稳定硅岩粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["nuggetBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK粒","tr":"BArTiMaEuSNeK粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["nuggetMagnesia"],"name":"氧化镁粒","tr":"氧化镁粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["nuggetTantalumHafniumCarbide"],"name":"碳化钽铪粒","tr":"碳化钽铪粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["nuggetMAR-M200Steel"],"name":"MAR-M200特种钢粒","tr":"MAR-M200特种钢粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["nuggetPTMEGElastomer"],"name":"PTMEG橡胶粒","tr":"PTMEG橡胶粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["nuggetMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢粒","tr":"MAR-Ce-M200特种钢粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["nuggetLithiumChloride"],"name":"氯化锂粒","tr":"氯化锂粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["nuggetSignalium"],"name":"信素粒","tr":"信素粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["nuggetLumiium"],"name":"流明粒","tr":"流明粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["nuggetArtherium-Sn"],"name":"阿瑟锡粒","tr":"阿瑟锡粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["nuggetTanmolyiumBeta-C"],"name":"钛钼合金β-C粒","tr":"钛钼合金β-C粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["nuggetDalisenite"],"name":"大力合金粒","tr":"大力合金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["nuggetHafnium"],"name":"铪粒","tr":"铪粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["nuggetHikarium"],"name":"光素粒","tr":"光素粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["nuggetTairitsu"],"name":"对立合金粒","tr":"对立合金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["nuggetPreciousMetalsAlloy"],"name":"稀有金属合金粒","tr":"稀有金属合金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["nuggetEnrichedNaquadahAlloy"],"name":"富集硅岩合金粒","tr":"富集硅岩合金粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["nuggetMetastableOganesson"],"name":"亚稳态鿫粒","tr":"亚稳态鿫粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["nuggetZirconium"],"name":"锆粒","tr":"锆粒","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartHammerHead":{"1536":{"name":"精金 Hammer Head","tr":"精金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Hammer Head","tr":"神秘蓝金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Hammer Head","tr":"琥珀 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Hammer Head","tr":"纯镃 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Hammer Head","tr":"谐镃 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Hammer Head","tr":"聚氯乙烯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Hammer Head","tr":"永恒 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Hammer Head","tr":"磁物质 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Hammer Head","tr":"赛特斯石英 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Hammer Head","tr":"暗影秘银 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Hammer Head","tr":"玄铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Hammer Head","tr":"戴斯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Hammer Head","tr":"铿铀 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Hammer Head","tr":"通流琥珀金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Hammer Head","tr":"末影粗胚 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Hammer Head","tr":"末影(te) 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Hammer Head","tr":"炽热的钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Hammer Head","tr":"火石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Hammer Head","tr":"力量 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Hammer Head","tr":"石墨 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Hammer Head","tr":"石墨烯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Hammer Head","tr":"注魔金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Hammer Head","tr":"风之魔晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Hammer Head","tr":"火之魔晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Hammer Head","tr":"地之魔晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Hammer Head","tr":"水之魔晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Hammer Head","tr":"混沌魔晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Hammer Head","tr":"秩序魔晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Hammer Head","tr":"玉 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Hammer Head","tr":"碧玉 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Hammer Head","tr":"陨铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Hammer Head","tr":"陨钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Hammer Head","tr":"硅岩 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Hammer Head","tr":"硅岩合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Hammer Head","tr":"富集硅岩 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Hammer Head","tr":"超能硅岩 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Hammer Head","tr":"下界石英 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Hammer Head","tr":"下界之星 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Hammer Head","tr":"三钛 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Hammer Head","tr":"虚空 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Hammer Head","tr":"胶木 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Hammer Head","tr":"幽冥剧毒结晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Hammer Head","tr":"强化 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Hammer Head","tr":"铱锇合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Hammer Head","tr":"阳光化合物 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Hammer Head","tr":"魂金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Hammer Head","tr":"蓝黄玉 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Hammer Head","tr":"黄铜 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Hammer Head","tr":"白铜 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Hammer Head","tr":"深渊铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Hammer Head","tr":"钻石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Hammer Head","tr":"琥珀金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Hammer Head","tr":"绿宝石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Hammer Head","tr":"强化混合晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Hammer Head","tr":"混合晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Hammer Head","tr":"绿色蓝宝石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Hammer Head","tr":"殷钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Hammer Head","tr":"坎塔尔合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Hammer Head","tr":"镁铝合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Hammer Head","tr":"镍铬合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Hammer Head","tr":"玄钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Hammer Head","tr":"生铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Hammer Head","tr":"聚乙烯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Hammer Head","tr":"环氧树脂 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Hammer Head","tr":"硅橡胶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Hammer Head","tr":"聚己内酰胺 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Hammer Head","tr":"聚四氟乙烯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Hammer Head","tr":"蓝宝石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Hammer Head","tr":"不锈钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Hammer Head","tr":"坦桑石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Hammer Head","tr":"锡铁合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Hammer Head","tr":"黄玉 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Hammer Head","tr":"哈氏合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Hammer Head","tr":"锻铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Hammer Head","tr":"铁木 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Hammer Head","tr":"橄榄石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Hammer Head","tr":"蛋白石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Hammer Head","tr":"紫水晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Hammer Head","tr":"暗影金属 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Hammer Head","tr":"暗影铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Hammer Head","tr":"暗影钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Hammer Head","tr":"钢叶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Hammer Head","tr":"骑士金属 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Hammer Head","tr":"标准纯银 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Hammer Head","tr":"玫瑰金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Hammer Head","tr":"黑青铜 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Hammer Head","tr":"铋青铜 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Hammer Head","tr":"黑钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Hammer Head","tr":"红钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Hammer Head","tr":"蓝钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Hammer Head","tr":"大马士革钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Hammer Head","tr":"充能合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Hammer Head","tr":"脉冲合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Hammer Head","tr":"星辰银 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Hammer Head","tr":"钴黄铜 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Hammer Head","tr":"红石榴石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Hammer Head","tr":"黄石榴石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Hammer Head","tr":"温特姆 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Hammer Head","tr":"黑花岗岩 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Hammer Head","tr":"红花岗岩 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Hammer Head","tr":"白石棉 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Hammer Head","tr":"雄黄 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Hammer Head","tr":"磁化铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Hammer Head","tr":"磁化钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Hammer Head","tr":"磁化钕 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Hammer Head","tr":"碳化钨 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Hammer Head","tr":"钒钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Hammer Head","tr":"高速钢-G 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Hammer Head","tr":"高速钢-E 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Hammer Head","tr":"高速钢-S 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Hammer Head","tr":"深铅 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Hammer Head","tr":"量子 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Hammer Head","tr":"深空秘银 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Hammer Head","tr":"黑钚 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Hammer Head","tr":"木卫四冰 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Hammer Head","tr":"硬铝 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Hammer Head","tr":"奥利哈钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Hammer Head","tr":"三元金属 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Hammer Head","tr":"聚苯硫醚 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Hammer Head","tr":"聚苯乙烯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Hammer Head","tr":"丁苯橡胶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Hammer Head","tr":"镍锌铁氧体 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Hammer Head","tr":"纤维强化的环氧树脂 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Hammer Head","tr":"磁化钐 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Hammer Head","tr":"无尽催化剂 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Hammer Head","tr":"聚苯并咪唑 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Hammer Head","tr":" 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Hammer Head","tr":"钛铂钒合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Hammer Head","tr":"时空 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Hammer Head","tr":"大理石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Hammer Head","tr":"神秘水晶 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Hammer Head","tr":"末影钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Hammer Head","tr":"复合粘土 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Hammer Head","tr":"晶化合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Hammer Head","tr":"旋律合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Hammer Head","tr":"恒星合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Hammer Head","tr":"晶化粉红史莱姆 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Hammer Head","tr":"充能银 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Hammer Head","tr":"生动合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Hammer Head","tr":"灵宝 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Hammer Head","tr":"超时空金属 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Hammer Head","tr":"活石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Hammer Head","tr":"盖亚之魂 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Hammer Head","tr":"活木 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Hammer Head","tr":"梦之木 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Hammer Head","tr":"泡铋 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Hammer Head","tr":"立方氧化锆 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Hammer Head","tr":"氟铁电气石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Hammer Head","tr":"铬铝电气石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Hammer Head","tr":"钒镁电气石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Hammer Head","tr":"铝电气石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Hammer Head","tr":"红锆石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Hammer Head","tr":"铁橄榄石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Hammer Head","tr":"镁橄榄石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Hammer Head","tr":"钙铁辉石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Hammer Head","tr":"钍-232 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Hammer Head","tr":"堇云石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Hammer Head","tr":"磁共振石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Hammer Head","tr":"锎 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Hammer Head","tr":"BArTiMaEuSNeK 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Hammer Head","tr":"钌 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Hammer Head","tr":"铑 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Hammer Head","tr":"镀铑钯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Hammer Head","tr":"泰伯利亚 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Hammer Head","tr":"钌铱合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Hammer Head","tr":"氟石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Hammer Head","tr":"高耐久性复合钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Hammer Head","tr":"硬钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Hammer Head","tr":"合成玉 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Hammer Head","tr":"原子分离催化剂 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Hammer Head","tr":"极不稳定硅岩 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Hammer Head","tr":"锌钍合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Hammer Head","tr":"锆锡合金-4 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Hammer Head","tr":"锆锡合金-2 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Hammer Head","tr":"耐热铬铁合金-903 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Hammer Head","tr":"精金合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Hammer Head","tr":"MAR-M200特种钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Hammer Head","tr":"MAR-Ce-M200特种钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Hammer Head","tr":"氯化锂 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Hammer Head","tr":"信素 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Hammer Head","tr":"流明 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Hammer Head","tr":"阿瑟锡 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Hammer Head","tr":"钛钼合金β-C 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Hammer Head","tr":"大力合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Hammer Head","tr":"光素 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Hammer Head","tr":"对立合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Hammer Head","tr":"稀有金属合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Hammer Head","tr":"富集硅岩合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Hammer Head","tr":"亚稳态鿫 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Hammer Head","tr":"调律源金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Hammer Head","tr":"魔钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Hammer Head","tr":"泰拉钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Hammer Head","tr":"源质钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Hammer Head","tr":"磁流体约束恒星物质 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Hammer Head","tr":"白矮星物质 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Hammer Head","tr":"黑矮星物质 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Hammer Head","tr":"宇宙素 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Hammer Head","tr":"铝 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Hammer Head","tr":"铍 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Hammer Head","tr":"铋 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Hammer Head","tr":"碳 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Hammer Head","tr":"铬 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Hammer Head","tr":"金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Hammer Head","tr":"铱 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Hammer Head","tr":"铅 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Hammer Head","tr":"锰 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Hammer Head","tr":"钼 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Hammer Head","tr":"钕 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Hammer Head","tr":"中子 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Hammer Head","tr":"镍 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Hammer Head","tr":"锇 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Hammer Head","tr":"钯 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Hammer Head","tr":"铂 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Hammer Head","tr":"钚-239 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Hammer Head","tr":"钚-241 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Hammer Head","tr":"银 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Hammer Head","tr":"钍 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Hammer Head","tr":"钛 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Hammer Head","tr":"钨 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Hammer Head","tr":"铀-238 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Hammer Head","tr":"铀-235 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Hammer Head","tr":"红宝石 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Hammer Head","tr":"红石合金 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Hammer Head","tr":"终末 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Hammer Head","tr":"导电铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Hammer Head","tr":"磁钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Hammer Head","tr":"钨钢 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Hammer Head","tr":"烈焰 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Hammer Head","tr":"脉冲铁 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Hammer Head","tr":"龙 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Hammer Head","tr":"觉醒龙 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Hammer Head","tr":"褐铜 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Hammer Head","tr":"山铜 锤头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSurvivor":{"0":{"name":"Coin \"The Survivor 1\"","tr":"幸存者币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyRuthenium":{"0":{"oreDict":["dustTinyRuthenium"],"name":"小撮钌粉","tr":"小撮钌粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemGolemCoreBreak":{"0":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Golem Animation Core","tr":"傀儡运转核心","tab":"魔像密经","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFBossSpawner":{"0":{"name":"Naga Spawner","tr":"生成 娜迦","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lich Spawner","tr":"生成 巫妖","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hydra Spawner","tr":"生成 九头蛇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ur-ghast Spawner","tr":"生成 暮色恶魂","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Knight Phantoms Spawner","tr":"生成 幻影骑士","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"tile.TFBossSpawner.5.name","tr":"tile.TFBossSpawner.5.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearRhodium":{"0":{"oreDict":["gearGtRhodium"," gearRhodium"],"name":"铑齿轮","tr":"铑齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:halfDrawers4":{"0":{"oreDict":["drawerBasic"],"name":"Compact Oak Drawers 2x2","tr":"小型橡木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Spruce Drawers 2x2","tr":"小型云杉木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Birch Drawers 2x2","tr":"小型白桦木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Jungle Drawers 2x2","tr":"小型丛林木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Acacia Drawers 2x2","tr":"小型金合欢木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Dark Oak Drawers 2x2","tr":"小型深色橡木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberrymilkshakeItem":{"0":{"oreDict":["foodStrawberrymilkshake"],"name":"Strawberry Milkshake","tr":"草莓奶昔","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:halfDrawers2":{"0":{"oreDict":["drawerBasic"],"name":"Compact Oak Drawers 1x2","tr":"小型橡木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Compact Spruce Drawers 1x2","tr":"小型云杉木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Compact Birch Drawers 1x2","tr":"小型白桦木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Compact Jungle Drawers 1x2","tr":"小型丛林木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Compact Acacia Drawers 1x2","tr":"小型金合欢木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Compact Dark Oak Drawers 1x2","tr":"小型深色橡木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:dislocator":{"0":{"name":"Transvector Dislocator","tr":"矢量转位仪","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustGadoliniteCe":{"0":{"oreDict":["dustGadoliniteCe"],"name":"硅铍钇矿(Ce)粉","tr":"硅铍钇矿(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pestleAndMortar":{"0":{"oreDict":["pestleAndMortar"],"name":"Pestle and Mortar","tr":"杵和臼","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:mulch":{"0":{"name":"Mulch","tr":"覆盖物","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:orangeyogurtItem":{"0":{"oreDict":["foodOrangeyogurt"],"name":"Orange Yogurt","tr":"橙子酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pavement1Stairs":{"0":{"name":"Black Portuguese Pavement Stairs","tr":"黑色葡萄牙楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:stone_snakestone":{"1":{"name":"Stone Snakestone","tr":"蛇纹石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stone Snakestone","tr":"蛇纹石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:bananamilkshakeItem":{"0":{"oreDict":["foodBananamilkshake"],"name":"Banana Milkshake","tr":"香蕉奶昔","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorIncoloyDS":{"0":{"oreDict":["rotorIncoloyDS"],"name":"耐热铬铁合金-DS转子","tr":"耐热铬铁合金-DS转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedcell":{"11010":{"oreDict":["cellZirconiumTetrachlorideSolution"],"name":"四氯化锆溶液单元","tr":"四氯化锆溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11012":{"oreDict":["cellIodine"],"name":"碘单元","tr":"碘单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11014":{"oreDict":["cellMuddyMonaziteRareEarthSolution"],"name":"独居石稀土浊溶液单元","tr":"独居石稀土浊溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11015":{"oreDict":["cellDilutedMonaziteRareEarthMud"],"name":"稀释独居石稀土泥浆单元","tr":"稀释独居石稀土泥浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11016":{"oreDict":["cellDilutedMonaziteSulfate"],"name":"稀释硫酸独居石溶液单元","tr":"稀释硫酸独居石溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11017":{"oreDict":["cellNitrogenatedMonaziteRareEarthConcentrate"],"name":"浓缩氮化独居石稀土溶液单元","tr":"浓缩氮化独居石稀土溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11018":{"oreDict":["cellNitricMonaziteLeachedConcentrate"],"name":"浓缩硝酸独居石浸出溶液单元","tr":"浓缩硝酸独居石浸出溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10002":{"oreDict":["cellUraniumBasedLiquidFuel"],"name":"铀基流体燃料单元","tr":"铀基流体燃料单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10003":{"oreDict":["cellUraniumBasedLiquidFuel(ExcitedState)"],"name":"铀基流体燃料(激发态)单元","tr":"铀基流体燃料(激发态)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10004":{"oreDict":["cellUraniumBasedLiquidFuel(Depleted)"],"name":"铀基流体燃料(枯竭的)单元","tr":"铀基流体燃料(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10006":{"oreDict":["cellThoriumBasedLiquidFuel"],"name":"钍基流体燃料单元","tr":"钍基流体燃料单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10007":{"oreDict":["cellThoriumBasedLiquidFuel(ExcitedState)"],"name":"钍基流体燃料(激发态)单元","tr":"钍基流体燃料(激发态)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10008":{"oreDict":["cellThoriumBasedLiquidFuel(Depleted)"],"name":"钍基流体燃料(枯竭的)单元","tr":"钍基流体燃料(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10010":{"oreDict":["cellPlutoniumBasedLiquidFuel"],"name":"钚基流体燃料单元","tr":"钚基流体燃料单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10011":{"oreDict":["cellPlutoniumBasedLiquidFuel(ExcitedState)"],"name":"钚基流体燃料(激发态)单元","tr":"钚基流体燃料(激发态)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10012":{"oreDict":["cellPlutoniumBasedLiquidFuel(Depleted)"],"name":"钚基流体燃料(枯竭的)单元","tr":"钚基流体燃料(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11036":{"oreDict":["cellAmmoniumNitrateSolution"],"name":"硝酸铵溶液单元","tr":"硝酸铵溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10013":{"oreDict":["cellOxalate"],"name":"草酸单元","tr":"草酸单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10015":{"oreDict":["cellThoriumNitrate"],"name":"硝酸钍单元","tr":"硝酸钍单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11042":{"oreDict":["cellSeaweedConcentrate"],"name":"浓缩海藻溶液单元","tr":"浓缩海藻溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10019":{"oreDict":["cellThoriumTetrachloride"],"name":"四氯化钍单元","tr":"四氯化钍单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10020":{"oreDict":["cellThoriumTetrafluoride"],"name":"四氟化钍单元","tr":"四氟化钍单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11044":{"oreDict":["cellPotassiumPermanganateSolution"],"name":"高锰酸钾溶液单元","tr":"高锰酸钾溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11300":{"oreDict":["cellTetrahydrofuran"],"name":"四氢呋喃单元","tr":"四氢呋喃单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"oreDict":["cellXenon"],"name":"氙单元","tr":"氙单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10021":{"oreDict":["cellThorium-232Tetrafluoride"],"name":"四氟化钍-232单元","tr":"四氟化钍-232单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11045":{"oreDict":["cellSeaweedByproducts"],"name":"海藻副产单元","tr":"海藻副产单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11301":{"oreDict":["cell1","4-Butanediol"],"name":"1,4-丁二醇单元","tr":"1,4-丁二醇单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20005":{"oreDict":["cellPureMana"],"name":"Pure Mana单元","tr":"Pure Mana单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"oreDict":["cellOganesson"],"name":"鿫单元","tr":"鿫单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11046":{"oreDict":["cellNitric-LeachedMonaziteMixture"],"name":"硝酸独居石浸出混合物单元","tr":"硝酸独居石浸出混合物单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11302":{"oreDict":["cellAcidicised1","4-Butanediol"],"name":"酸化1,4-丁二醇单元","tr":"酸化1,4-丁二醇单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20006":{"oreDict":["cellLiquidMana"],"name":"Liquid Mana单元","tr":"Liquid Mana单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20007":{"oreDict":["cellPurifiedMana"],"name":"Purified Mana单元","tr":"Purified Mana单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"oreDict":["cellNeon"],"name":"氖单元","tr":"氖单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10025":{"oreDict":["cellLightNaquadahFuel"],"name":"轻质硅岩燃料单元","tr":"轻质硅岩燃料单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["cellKrypton"],"name":"氪单元","tr":"氪单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10026":{"oreDict":["cellHeavyNaquadahFuel"],"name":"重质硅岩燃料单元","tr":"重质硅岩燃料单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11306":{"oreDict":["cellPolytetrahydrofuran"],"name":"聚四氢呋喃单元","tr":"聚四氢呋喃单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10027":{"oreDict":["cellNaquadahGas"],"name":"硅岩气单元","tr":"硅岩气单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11307":{"oreDict":["cellTungstophosphoricAcid"],"name":"磷钨酸单元","tr":"磷钨酸单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"oreDict":["cellPlatinumConcentrate"],"name":"浓缩铂单元","tr":"浓缩铂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10028":{"oreDict":["cellNaquadahAsphalt"],"name":"硅岩沥青单元","tr":"硅岩沥青单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11308":{"oreDict":["cellTolueneDiisocyanate"],"name":"甲苯二异氰酸酯单元","tr":"甲苯二异氰酸酯单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10029":{"oreDict":["cellEther"],"name":"乙醚单元","tr":"乙醚单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11309":{"oreDict":["cellDinitrotoluene"],"name":"二硝基甲苯单元","tr":"二硝基甲苯单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10030":{"oreDict":["cellAntimonyTrichlorideSolution"],"name":"三氯化锑溶液单元","tr":"三氯化锑溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11310":{"oreDict":["cellDiaminotoluene"],"name":"二氨基甲苯单元","tr":"二氨基甲苯单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10031":{"oreDict":["cellAntimonyPentachlorideSolution"],"name":"五氯化锑溶液单元","tr":"五氯化锑溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11311":{"oreDict":["cellTolueneTetramethylDiisocyanate"],"name":"PTMEG橡胶粗胚单元","tr":"PTMEG橡胶粗胚单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["cellAquaRegia"],"name":"王水单元","tr":"王水单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10032":{"oreDict":["cellAntimonyPentachloride"],"name":"五氯化锑单元","tr":"五氯化锑单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10033":{"oreDict":["cellAntimonyPentafluoride"],"name":"五氟化锑单元","tr":"五氟化锑单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"oreDict":["cellAmmoniumChloride"],"name":"氯化铵单元","tr":"氯化铵单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10034":{"oreDict":["cellFluoroantimonicAcid"],"name":"氟锑酸单元","tr":"氟锑酸单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"oreDict":["cellPalladiumEnrichedAmmonia"],"name":"富钯氨单元","tr":"富钯氨单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10036":{"oreDict":["cellAcidNaquadahEmulsion"],"name":"酸性硅岩乳液单元","tr":"酸性硅岩乳液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11316":{"oreDict":["cellDilutedAcetone"],"name":"稀释丙酮单元","tr":"稀释丙酮单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10037":{"oreDict":["cellNaquadahEmulsion"],"name":"硅岩乳液单元","tr":"硅岩乳液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10038":{"oreDict":["cellNaquadahSolution"],"name":"硅岩溶液单元","tr":"硅岩溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10039":{"oreDict":["cellNaquadahBasedLiquidFuelMkI"],"name":"硅岩基流体燃料-MkI单元","tr":"硅岩基流体燃料-MkI单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"oreDict":["cellSodiumFormate"],"name":"甲酸钠单元","tr":"甲酸钠单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10040":{"oreDict":["cellNaquadahBasedLiquidFuelMkI(Depleted)"],"name":"硅岩基流体燃料-MkI(枯竭的)单元","tr":"硅岩基流体燃料-MkI(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10041":{"oreDict":["cellNaquadahBasedLiquidFuelMkII"],"name":"硅岩基流体燃料-MkII单元","tr":"硅岩基流体燃料-MkII单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"oreDict":["cellFormicAcid"],"name":"甲酸单元","tr":"甲酸单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10042":{"oreDict":["cellNaquadahBasedLiquidFuelMkII(Depleted)"],"name":"硅岩基流体燃料-MkII(枯竭的)单元","tr":"硅岩基流体燃料-MkII(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"oreDict":["cellRhodiumSulfate"],"name":"硫酸铑单元","tr":"硫酸铑单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"oreDict":["cellRhodiumSulfateSolution"],"name":"硫酸铑溶液单元","tr":"硫酸铑溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10046":{"oreDict":["cellNaquadahBasedLiquidFuelMkIII"],"name":"硅岩基流体燃料-MkIII单元","tr":"硅岩基流体燃料-MkIII单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["cellCalciumChloride"],"name":"氯化钙单元","tr":"氯化钙单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10047":{"oreDict":["cellNaquadahBasedLiquidFuelMkIII(Depleted)"],"name":"硅岩基流体燃料-MkIII(枯竭的)单元","tr":"硅岩基流体燃料-MkIII(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10048":{"oreDict":["cellNaquadahBasedLiquidFuelMkIV"],"name":"硅岩基流体燃料-MkIV单元","tr":"硅岩基流体燃料-MkIV单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10049":{"oreDict":["cellNaquadahBasedLiquidFuelMkIV(Depleted)"],"name":"硅岩基流体燃料-MkIV(枯竭的)单元","tr":"硅岩基流体燃料-MkIV(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["cellRutheniumTetroxide"],"name":"四氧化钌单元","tr":"四氧化钌单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10050":{"oreDict":["cellNaquadahBasedLiquidFuelMkV"],"name":"硅岩基流体燃料-MkV单元","tr":"硅岩基流体燃料-MkV单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"oreDict":["cellHotRutheniumTetroxideSolution"],"name":"热四氧化钌溶液单元","tr":"热四氧化钌溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10051":{"oreDict":["cellNaquadahBasedLiquidFuelMkV(Depleted)"],"name":"硅岩基流体燃料-MkV(枯竭的)单元","tr":"硅岩基流体燃料-MkV(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"oreDict":["cellRutheniumTetroxideSolution"],"name":"四氧化钌溶液单元","tr":"四氧化钌溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"oreDict":["cellAcidicOsmiumSolution"],"name":"酸性锇溶液单元","tr":"酸性锇溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10056":{"oreDict":["cellLowQualityNaquadahEmulsion"],"name":"低纯硅岩乳液单元","tr":"低纯硅岩乳液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"oreDict":["cellOsmiumSolution"],"name":"锇溶液单元","tr":"锇溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10058":{"oreDict":["cellLowQualityNaquadahSolution"],"name":"低纯硅岩溶液单元","tr":"低纯硅岩溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"oreDict":["cellAcidicIridiumSolution"],"name":"酸性铱溶液单元","tr":"酸性铱溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10059":{"oreDict":["cell2-Ethyl-1-Hexanol"],"name":"2-乙基己醇单元","tr":"2-乙基己醇单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10060":{"oreDict":["cellP-507"],"name":"P-507单元","tr":"P-507单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10061":{"oreDict":["cellNaquadah-AdamantiumSolution"],"name":"硅岩-精金溶液单元","tr":"硅岩-精金溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10062":{"oreDict":["cellNaquadah-RichSolution"],"name":"高纯硅岩溶液单元","tr":"高纯硅岩溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10064":{"oreDict":["cellFluorine-RichWasteLiquid"],"name":"富氟废液单元","tr":"富氟废液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"81":{"oreDict":["cellRhodiumSaltSolution"],"name":"铑盐溶液单元","tr":"铑盐溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10065":{"oreDict":["cellWasteLiquid"],"name":"废液单元","tr":"废液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10069":{"oreDict":["cellEnriched-Naquadah-RichSolution"],"name":"高纯富集硅岩溶液单元","tr":"高纯富集硅岩溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"oreDict":["cellRhodiumFilterCakeSolution"],"name":"铑滤饼溶液单元","tr":"铑滤饼溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10075":{"oreDict":["cellNaquadria-RichSolution"],"name":"高纯超能硅岩溶液单元","tr":"高纯超能硅岩溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11100":{"oreDict":["cellMuddyBastnasiteRareEarthSolution"],"name":"氟碳镧铈稀土浊溶液单元","tr":"氟碳镧铈稀土浊溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10077":{"oreDict":["cellLowQualityNaquadriaSulphate"],"name":"低纯硫酸超能硅岩单元","tr":"低纯硫酸超能硅岩单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11102":{"oreDict":["cellSodiumfluorosilicate"],"name":"氟硅酸钠单元","tr":"氟硅酸钠单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10079":{"oreDict":["cellNaquadahGoo"],"name":"硅岩粘浆单元","tr":"硅岩粘浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11103":{"oreDict":["cellSteam-CrackedBastnasiteMud"],"name":"蒸汽裂化氟碳镧铈泥浆单元","tr":"蒸汽裂化氟碳镧铈泥浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10080":{"oreDict":["cellEnrichedNaquadahGoo"],"name":"富集硅岩粘浆单元","tr":"富集硅岩粘浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11104":{"oreDict":["cellConditionedBastnasiteMud"],"name":"调制氟碳镧铈泥浆单元","tr":"调制氟碳镧铈泥浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10081":{"oreDict":["cellNaquadriaGoo"],"name":"超能硅岩粘浆单元","tr":"超能硅岩粘浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11105":{"oreDict":["cellDilutedBastnasiteMud"],"name":"稀释氟碳镧铈泥浆单元","tr":"稀释氟碳镧铈泥浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"98":{"oreDict":["cellHexafluorosilicicAcid"],"name":"氟硅酸单元","tr":"氟硅酸单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11106":{"oreDict":["cellFilteredBastnasiteMud"],"name":"过滤氟碳镧铈泥浆单元","tr":"过滤氟碳镧铈泥浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10086":{"oreDict":["cellEthanolGasoline"],"name":"乙醇汽油单元","tr":"乙醇汽油单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"103":{"oreDict":["cellUnformedFluorophlogopite"],"name":"未定型氟金云母单元","tr":"未定型氟金云母单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10087":{"oreDict":["cellCyclopentadiene"],"name":"环戊二烯单元","tr":"环戊二烯单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10088":{"oreDict":["cellIronIIChloride"],"name":"氯化亚铁单元","tr":"氯化亚铁单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10089":{"oreDict":["cellDiethylamine"],"name":"二乙胺单元","tr":"二乙胺单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10090":{"oreDict":["cellImpureFerroceneMixture"],"name":"含杂二茂铁混合物单元","tr":"含杂二茂铁混合物单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11114":{"oreDict":["cellNitrogenatedBastnasiteRarerEarthOxides"],"name":"氮化氟碳镧铈罕土氧化物单元","tr":"氮化氟碳镧铈罕土氧化物单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10091":{"oreDict":["cellFerroceneSolution"],"name":"二茂铁溶液单元","tr":"二茂铁溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11115":{"oreDict":["cellBastnasiteRarerEarthOxideSuspension"],"name":"氟碳镧铈罕土氧化物悬浊液单元","tr":"氟碳镧铈罕土氧化物悬浊液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10092":{"oreDict":["cellFerroceneWaste"],"name":"二茂铁废水单元","tr":"二茂铁废水单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10094":{"oreDict":["cellJetFuelNo.3"],"name":"航空煤油#3单元","tr":"航空煤油#3单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10095":{"oreDict":["cellJetFuelA"],"name":"航空煤油A单元","tr":"航空煤油A单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11124":{"oreDict":["cellCalciumFluoride"],"name":"氟化钙单元","tr":"氟化钙单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10107":{"oreDict":["cellAntimonyPentafluorideSolution"],"name":"五氟化锑溶液单元","tr":"五氟化锑溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10116":{"oreDict":["cellNaquadahBasedLiquidFuelMkVI"],"name":"硅岩基流体燃料-MkVI单元","tr":"硅岩基流体燃料-MkVI单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10117":{"oreDict":["cellNaquadahBasedLiquidFuelMkVI(Depleted)"],"name":"硅岩基流体燃料-MkVI(枯竭的)单元","tr":"硅岩基流体燃料-MkVI(枯竭的)单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11401":{"oreDict":["cellLanthanumExtractingNanoResin"],"name":"镧萃取纳米树脂单元","tr":"镧萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11402":{"oreDict":["cellFilledLanthanumExtractingNanoResin"],"name":"满溢的镧萃取纳米树脂单元","tr":"满溢的镧萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11403":{"oreDict":["cellPraseodymiumExtractingNanoResin"],"name":"镨萃取纳米树脂单元","tr":"镨萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11404":{"oreDict":["cellFilledPraseodymiumExtractingNanoResin"],"name":"满溢的镨萃取纳米树脂单元","tr":"满溢的镨萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11405":{"oreDict":["cellCeriumExtractingNanoResin"],"name":"铈萃取纳米树脂单元","tr":"铈萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11406":{"oreDict":["cellFilledCeriumExtractingNanoResin"],"name":"满溢的铈萃取纳米树脂单元","tr":"满溢的铈萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11407":{"oreDict":["cellNeodymiumExtractingNanoResin"],"name":"钕萃取纳米树脂单元","tr":"钕萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11408":{"oreDict":["cellFilledNeodymiumExtractingNanoResin"],"name":"满溢的钕萃取纳米树脂单元","tr":"满溢的钕萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11409":{"oreDict":["cellPromethiumExtractingNanoResin"],"name":"钷萃取纳米树脂单元","tr":"钷萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11410":{"oreDict":["cellFilledPromethiumExtractingNanoResin"],"name":"满溢的钷萃取纳米树脂单元","tr":"满溢的钷萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11411":{"oreDict":["cellSamariumExtractingNanoResin"],"name":"钐萃取纳米树脂单元","tr":"钐萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11412":{"oreDict":["cellFilledSamariumExtractingNanoResin"],"name":"满溢的钐萃取纳米树脂单元","tr":"满溢的钐萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11413":{"oreDict":["cellEuropiumExtractingNanoResin"],"name":"铕萃取纳米树脂单元","tr":"铕萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11414":{"oreDict":["cellFilledEuropiumExtractingNanoResin"],"name":"满溢的铕萃取纳米树脂单元","tr":"满溢的铕萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11415":{"oreDict":["cellGadoliniumExtractingNanoResin"],"name":"钆萃取纳米树脂单元","tr":"钆萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11416":{"oreDict":["cellFilledGadoliniumExtractingNanoResin"],"name":"满溢的钆萃取纳米树脂单元","tr":"满溢的钆萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11417":{"oreDict":["cellTerbiumExtractingNanoResin"],"name":"铽萃取纳米树脂单元","tr":"铽萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11418":{"oreDict":["cellFilledTerbiumExtractingNanoResin"],"name":"满溢的铽萃取纳米树脂单元","tr":"满溢的铽萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11419":{"oreDict":["cellDysprosiumExtractingNanoResin"],"name":"镝萃取纳米树脂单元","tr":"镝萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11420":{"oreDict":["cellFilledDysprosiumExtractingNanoResin"],"name":"满溢的镝萃取纳米树脂单元","tr":"满溢的镝萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11421":{"oreDict":["cellHolmiumExtractingNanoResin"],"name":"钬萃取纳米树脂单元","tr":"钬萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11422":{"oreDict":["cellFilledHolmiumExtractingNanoResin"],"name":"满溢的钬萃取纳米树脂单元","tr":"满溢的钬萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11423":{"oreDict":["cellErbiumExtractingNanoResin"],"name":"铒萃取纳米树脂单元","tr":"铒萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11424":{"oreDict":["cellFilledErbiumExtractingNanoResin"],"name":"满溢的铒萃取纳米树脂单元","tr":"满溢的铒萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11425":{"oreDict":["cellThuliumExtractingNanoResin"],"name":"铥萃取纳米树脂单元","tr":"铥萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11426":{"oreDict":["cellFilledThuliumExtractingNanoResin"],"name":"满溢的铥萃取纳米树脂单元","tr":"满溢的铥萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11427":{"oreDict":["cellYtterbiumExtractingNanoResin"],"name":"镱萃取纳米树脂单元","tr":"镱萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11428":{"oreDict":["cellFilledYtterbiumExtractingNanoResin"],"name":"满溢的镱萃取纳米树脂单元","tr":"满溢的镱萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11429":{"oreDict":["cellLutetiumExtractingNanoResin"],"name":"镥萃取纳米树脂单元","tr":"镥萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11430":{"oreDict":["cellFilledLutetiumExtractingNanoResin"],"name":"满溢的镥萃取纳米树脂单元","tr":"满溢的镥萃取纳米树脂单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11431":{"oreDict":["cellLanthanumChlorideConcentrate"],"name":"氯化镧浓缩液单元","tr":"氯化镧浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11432":{"oreDict":["cellPraseodymiumChlorideConcentrate"],"name":"氯化镨浓缩液单元","tr":"氯化镨浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11433":{"oreDict":["cellCeriumChlorideConcentrate"],"name":"氯化铈浓缩液单元","tr":"氯化铈浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11434":{"oreDict":["cellNeodymiumChlorideConcentrate"],"name":"氯化钕浓缩液单元","tr":"氯化钕浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11435":{"oreDict":["cellPromethiumChlorideConcentrate"],"name":"氯化钷浓缩液单元","tr":"氯化钷浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11436":{"oreDict":["cellSamariumChlorideConcentrate"],"name":"氯化钐浓缩液单元","tr":"氯化钐浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11437":{"oreDict":["cellEuropiumChlorideConcentrate"],"name":"氯化铕浓缩液单元","tr":"氯化铕浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11438":{"oreDict":["cellGadoliniumChlorideConcentrate"],"name":"氯化钆浓缩液单元","tr":"氯化钆浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11439":{"oreDict":["cellTerbiumChlorideConcentrate"],"name":"氯化铽浓缩液单元","tr":"氯化铽浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11440":{"oreDict":["cellDysprosiumChlorideConcentrate"],"name":"氯化镝浓缩液单元","tr":"氯化镝浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11441":{"oreDict":["cellHolmiumChlorideConcentrate"],"name":"氯化钬浓缩液单元","tr":"氯化钬浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11442":{"oreDict":["cellErbiumChlorideConcentrate"],"name":"氯化铒浓缩液单元","tr":"氯化铒浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11443":{"oreDict":["cellThuliumChlorideConcentrate"],"name":"氯化铥浓缩液单元","tr":"氯化铥浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11444":{"oreDict":["cellYtterbiumChlorideConcentrate"],"name":"氯化镱浓缩液单元","tr":"氯化镱浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11445":{"oreDict":["cellLutetiumChlorideConcentrate"],"name":"氯化镥浓缩液单元","tr":"氯化镥浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11461":{"oreDict":["cellMuddySamariumRareEarthSolution"],"name":"钐稀土浊液单元","tr":"钐稀土浊液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11462":{"oreDict":["cellSamariumRareEarthMud"],"name":"钐稀土泥浆单元","tr":"钐稀土泥浆单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11463":{"oreDict":["cellDilutedSamariumRareEarthSolution"],"name":"钐稀土稀释液单元","tr":"钐稀土稀释液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11469":{"oreDict":["cellChlorinatedRareEarthConcentrate"],"name":"氯化稀土浓缩液单元","tr":"氯化稀土浓缩液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11470":{"oreDict":["cellChlorinatedRareEarthEnrichedSolution"],"name":"氯化稀土富集液单元","tr":"氯化稀土富集液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11471":{"oreDict":["cellChlorinatedRareEarthDilutedSolution"],"name":"氯化稀土稀释液单元","tr":"氯化稀土稀释液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29904":{"oreDict":["cellSodiumTungstate"],"name":"钨酸钠单元","tr":"钨酸钠单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29905":{"oreDict":["cellPhosgene"],"name":"碳酰氯单元","tr":"碳酰氯单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29914":{"oreDict":["cellNitromethane"],"name":"硝基甲烷单元","tr":"硝基甲烷单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29915":{"oreDict":["cellO-Xylene"],"name":"1,2-二甲苯单元","tr":"1,2-二甲苯单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11500":{"oreDict":["cellLiquidHelium"],"name":"液氦单元","tr":"液氦单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11004":{"oreDict":["cellHafniumTetrachlorideSolution"],"name":"四氯化铪溶液单元","tr":"四氯化铪溶液单元","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:FluidEnder":{"0":{"name":"Resonant Ender","tr":"谐振熔融末影珍珠","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:celeryandpeanutbutterItem":{"0":{"oreDict":["foodCeleryandpeanutbutter"],"name":"Celery and Peanut Butter","tr":"花生酱芹菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.darkSteel_sword":{"0":{"name":"The Ender","tr":"终结之剑","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1562}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsvoid":{"0":{"name":"Void Transport Pipe","tr":"虚空管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemBatLamaCrystal":{"1":{"oreDict":["batteryMaster"],"name":"Lapotron Crystal","tr":"兰波顿水晶","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"oreDict":["batteryMaster"],"name":"Lapotron Crystal","tr":"兰波顿水晶","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemDustHafnium":{"0":{"oreDict":["dustHafnium"],"name":"铪粉","tr":"铪粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:infusedPotion":{"0":{"name":"Potion of Aer","tr":"风元药水","tab":"酿造","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Potion of Ignis","tr":"火元药水","tab":"酿造","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Potion of Terra","tr":"地元药水","tab":"酿造","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Potion of Aqua","tr":"水元药水","tab":"酿造","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Silicon:redstoneChipset":{"0":{"oreDict":["chipsetRed"],"name":"Redstone Chipset","tr":"红石芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["chipsetIron"," chipsetAnyIron"],"name":"Iron Chipset","tr":"铁质芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["chipsetGold"],"name":"Golden Chipset","tr":"金质芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["chipsetDiamond"],"name":"Diamond Chipset","tr":"钻石芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["chipsetPulsating"],"name":"Pulsating Chipset","tr":"脉冲芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["chipsetQuartz"],"name":"Quartz Chipset","tr":"石英芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["chipsetComp"],"name":"Redstone Comp Chipset","tr":"红石比较芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["chipsetEmerald"],"name":"Emerald Chipset","tr":"绿宝石芯片","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:GlueBlock":{"0":{"oreDict":["blockRubber"],"name":"Glue Block","tr":"凝胶方块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireHypogen":{"0":{"oreDict":["wireFineHypogen"],"name":"细海珀珍导线","tr":"细海珀珍导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:ore":{"2":{"oreDict":["oreDiamond"],"name":"Dark Diamond Ore","tr":"暗黑钻石矿石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreEmerald"],"name":"Dark Emerald Ore","tr":"暗黑绿宝石矿石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreLapis"],"name":"Dark Lapis Lazuli Ore","tr":"暗黑青金石矿石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreFirestone"],"name":"Firestone Ore","tr":"火石矿石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:fluid.creosote.cell":{"0":{"oreDict":["cellCreosote"],"name":"Creosote Cell","tr":"杂酚油单元","tab":"Railcraft","type":"Item","maxStackSize":16,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodSeat2":{"0":{"name":"Pine Seat","tr":"松树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Seat","tr":"李子树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Seat","tr":"杨树木座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Seat","tr":"红杉座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Seat","tr":"柚木座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Seat","tr":"核桃树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"WengeSeat","tr":"崖豆树Seat","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Seat","tr":"柳树座椅","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetTalonite":{"0":{"oreDict":["nuggetTalonite"],"name":"铬钴磷酸盐合金粒","tr":"铬钴磷酸盐合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.arcticPlate":{"0":{"name":"Arctic Jacket","tr":"极地夹克","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":161}},"dreamcraft:item.WaferTier3":{"0":{"name":"Wafer Tier 3","tr":"高能晶圆","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateHastelloyC276":{"0":{"oreDict":["plateHastelloyC276"],"name":"哈斯特洛依合金-C276板","tr":"哈斯特洛依合金-C276板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:applesauceItem":{"0":{"oreDict":["foodApplesauce"],"name":"Apple Sauce","tr":"苹果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamGooseberry":{"0":{"name":"Goosberry","tr":"醋栗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorPotin":{"0":{"oreDict":["rotorPotin"],"name":"粗青铜合金转子","tr":"粗青铜合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockCosmeticDoubleSlabWood":{"0":{"name":"Wood Slab","tr":"木台阶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:mb.arrow":{"0":{"name":"Holy Torch Arrow","tr":"圣火箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Ice Packed Arrow","tr":"寒冰箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Explosive Arrow","tr":"爆裂箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Arrow","tr":"末影箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Flaming Arrow","tr":"烈焰箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Piercing Arrow","tr":"穿刺箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Poison Arrow","tr":"剧毒箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Mystery Arrow","tr":"奥秘箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Leech Arrow","tr":"水蛭箭","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.CompressedCoalCoke":{"0":{"name":"Block of Compressed Coal Coke","tr":"压缩焦煤块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFancyWorkbench":{"0":{"name":"Acacia Fancy Workbench","tr":"金合欢精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Fancy Workbench","tr":"巴尔杉精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Fancy Workbench","tr":"猴面包树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Fancy Workbench","tr":"樱桃树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Fancy Workbench","tr":"栗树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Fancy Workbench","tr":"柑橘树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Fancy Workbench","tr":"乌檀树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Fancy Workbench","tr":"樟树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Fancy Workbench","tr":"木棉精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Fancy Workbench","tr":"落叶松精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Fancy Workbench","tr":"菩提树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Fancy Workbench","tr":"白皮树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Fancy Workbench","tr":"桃花心木精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Fancy Workbench","tr":"枫树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Fancy Workbench","tr":"棕榈树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Fancy Workbench","tr":"木瓜树精致工作台","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedComancheite":{"0":{"oreDict":["crushedComancheite"],"name":"Crushed Comancheite Ore","tr":"粉碎溴汞石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyUN32Fertiliser":{"0":{"oreDict":["dustTinyUN32Fertiliser"],"name":"小撮流体肥料UN-32粉","tr":"小撮流体肥料UN-32粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:enderArrow":{"0":{"name":"Ender Arrow","tr":"末影箭","tab":"龙之研究工具和武器","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.darkwood":{"0":{"oreDict":["trapdoorWood"],"name":"Darkwood Trapdoor","tr":"黑暗树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemBasicCapacitor":{"0":{"oreDict":["capacitorBasic"],"name":"Basic Capacitor","tr":"基础电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["capacitorAdvanced"],"name":"Double-Layer Capacitor","tr":"双层电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["capacitorEnder"],"name":"Octadic Capacitor","tr":"八位电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["capacitorCrystalline"],"name":"Crystalline Capacitor","tr":"晶化合金电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["capacitorMelodic"],"name":"Melodic Capacitor","tr":"旋律合金电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["capacitorStellar"],"name":"Stellar Capacitor","tr":"恒星合金电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["capacitorTotemic"],"name":"Totemic Capacitor","tr":"不死图腾电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["capacitorBasic"],"name":"Silver Capacitor","tr":"银制电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["capacitorAdvanced"],"name":"Endergetic Capacitor","tr":"充能银电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["capacitorEnder"],"name":"Endergised Capacitor","tr":"生动合金电容","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.GiantObsidian":{"0":{"name":"Giant Obsidian","tr":"巨型黑曜石","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBeesIII":{"0":{"name":"Coin \"The Beekeeper 1000\"","tr":"养蜂员币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleMaragingSteel300":{"0":{"oreDict":["plateDoubleMaragingSteel300"],"name":"双重马氏体时效钢300板","tr":"双重马氏体时效钢300板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Botania:pavement3Stairs":{"0":{"name":"Red Portuguese Pavement Stairs","tr":"红色葡萄牙楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSiliconCarbide":{"0":{"oreDict":["dustSiliconCarbide"],"name":"碳化硅粉","tr":"碳化硅粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockLightNode":{"0":{"name":"tile.blockLightNode.name","tr":"tile.blockLightNode.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:endStoneBrick2Stairs":{"0":{"name":"Ender Brick Stairs","tr":"末影石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:bootsAmethyst":{"0":{"name":"Amethyst Boots","tr":"紫水晶靴子","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":521}},"ThaumicHorizons:crystalDeep":{"0":{"name":"Deep Crystal","tr":"深度水晶","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockMirror":{"0":{"name":"Magic Mirror","tr":"魔镜","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Essentia Mirror","tr":"源质之镜","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleClay":{"0":{"oreDict":["plateDoubleClay"],"name":"双重粘土板","tr":"双重粘土板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Railcraft:machine.zeta":{"0":{"name":"Aluminium Tank Wall","tr":"铝质蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Aluminium Tank Gauge","tr":"铝质蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Aluminium Tank Valve","tr":"铝质蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stainless Steel Tank Wall","tr":"不锈钢蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stainless Steel Tank Gauge","tr":"不锈钢蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stainless Steel Tank Valve","tr":"不锈钢蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Titanium Tank Wall","tr":"钛质蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Titanium Tank Gauge","tr":"钛质蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Titanium Tank Valve","tr":"钛质蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Tungstensteel Tank Wall","tr":"钨钢蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Tungstensteel Tank Gauge","tr":"钨钢蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tungstensteel Tank Valve","tr":"钨钢蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Palladium Tank Wall","tr":"钯质蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Palladium Tank Gauge","tr":"钯质蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palladium Tank Valve","tr":"钯质蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"WarpTheory:item.warptheory.cleanserminor":{"0":{"name":"Impure Tear","tr":"污秽泪水","tab":"神秘扭曲学","type":"Item","maxStackSize":16,"maxDurability":1}},"gadomancy:itemSilverwoodGolemPlacer":{"8":{"name":"Silverwood Golem","tr":"银木傀儡","tab":"魔像密经","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinCookIII":{"0":{"name":"Coin \"The Cook 1000\"","tr":"厨师币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:pickaxeAmethyst":{"0":{"name":"Amethyst Pickaxe","tr":"紫水晶镐","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":2014}},"ThaumicTinkerer:ichorclothChest":{"0":{"name":"Ichorcloth Robe","tr":"灵布法袍","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"LogisticsPipes:item.PipeFluidSupplierMk2":{"0":{"name":"Logistics Fluid Supplier","tr":"物流流体补给管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTalonite":{"0":{"oreDict":["dustSmallTalonite"],"name":"小堆铬钴磷酸盐合金粉","tr":"小堆铬钴磷酸盐合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyXenotime":{"0":{"oreDict":["dustTinyXenotime"],"name":"小撮磷钇矿粉","tr":"小撮磷钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemExtremeStorageCell.Quantum":{"0":{"name":"ME Quantum Storage Cell","tr":"ME量子存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:scarecrow":{"0":{"name":"Scarecrow (幽灵漫步者)","tr":"稻草人 (幽灵漫步者)","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:resourceStorage":{"0":{"oreDict":["blockApatite"],"name":"Block of Apatite","tr":"磷灰石块","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockCopper"," blockAnyCopper"],"name":"Block of Copper","tr":"铜块","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockTin"],"name":"Block of Tin","tr":"锡块","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockBronze"," blockAnyBronze"],"name":"Block of Bronze","tr":"青铜块","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.stewbowl":{"14":{"name":"Glowshroom Stew","tr":"荧光蘑菇茎","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:lexicon":{"0":{"oreDict":["lexicaBotania"],"name":"Lexica Botania","tr":"植物魔法辞典","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodLongRhenium":{"0":{"oreDict":["stickLongRhenium"],"name":"长铼杆","tr":"长铼杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:advancedFluidDisplay":{"0":{"name":"Advanced Fluid Display","tr":"高级液体伪装方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTantalloy61":{"0":{"oreDict":["plateDoubleTantalloy61"],"name":"双重钽钨合金-61板","tr":"双重钽钨合金-61板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Forestry:slabsDouble":{"0":{"name":"Larch Wood Slab","tr":"落叶树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Teak Wood Slab","tr":"柚树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Desert Acacia Wood Slab","tr":"沙漠刺槐台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lime Wood Slab","tr":"酸橙树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Wood Slab","tr":"栗树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Wenge Wood Slab","tr":"崖豆台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Baobab Wood Slab","tr":"猴面包树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sequoia Wood Slab","tr":"红杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Wood Slab","tr":"木棉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ebony Wood Slab","tr":"乌檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Mahogany Wood Slab","tr":"桃心树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Balsa Wood Slab","tr":"巴尔杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Wood Slab","tr":"柳树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Walnut Wood Slab","tr":"核桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Greenheart Wood Slab","tr":"绿樟树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Cherry Wood Slab","tr":"樱桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:MetalBlock":{"0":{"oreDict":["blockCobalt"],"name":"Block of Cobalt","tr":"钴块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockArdite"],"name":"Block of Ardite","tr":"阿迪特块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockManyullyn"],"name":"Block of Manyullyn","tr":"玛玉灵块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockCopper"],"name":"Block of Copper","tr":"铜方块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockBronze"],"name":"Block of Bronze","tr":"青铜块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockTin"],"name":"Block of Tin","tr":"锡块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockAluminum"," blockAluminium"],"name":"Block of Aluminum","tr":"铝块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockAluminumBrass"," blockAluminiumBrass"],"name":"Block of Aluminum Brass","tr":"铝黄铜块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockAlumite"],"name":"Block of Alumite","tr":"耐酸铝块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockSteel"],"name":"Block of Steel","tr":"钢块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockEnder"],"name":"Block of Solid Ender","tr":"末影块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleTantalloy60":{"0":{"oreDict":["plateDoubleTantalloy60"],"name":"双重钽钨合金-60板","tr":"双重钽钨合金-60板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"witchery:circleglyphritual":{"0":{"name":"Ritual Glyph","tr":"仪式符形","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockMaragingSteel300":{"0":{"oreDict":["blockMaragingSteel300"],"name":"马氏体时效钢300块","tr":"马氏体时效钢300块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EmeraldAdvancedCoreChip":{"0":{"name":"Item Circuit Tier III","tr":"物品电路 III","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:stoneGearItem":{"0":{"oreDict":["gearStone"],"name":"Stone Gear","tr":"石齿轮","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:orangejellyItem":{"0":{"oreDict":["foodOrangejelly"],"name":"Orange Jelly","tr":"橙子果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBucketDeath":{"0":{"name":"Bucket of Liquid Death","tr":"桶装死亡之水","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:manasteelLegs":{"0":{"name":"Manasteel Leggings","tr":"魔钢护腿","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":241}},"openmodularturrets:hardWallTierFour":{"0":{"name":"Hard Wall (Tier 4)","tr":"坚固墙壁(四级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedplateQuintuple":{"96":{"oreDict":["plateQuintupleAdemicSteel"],"name":"五重硬钢板","tr":"五重硬钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["plateQuintupleShirabon"],"name":"五重调律源金板","tr":"五重调律源金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["plateQuintupleAdamantiumAlloy"],"name":"五重精金合金板","tr":"五重精金合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["plateQuintupleAtomicSeparationCatalyst"],"name":"五重原子分离催化剂板","tr":"五重原子分离催化剂板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["plateQuintupleExtremelyUnstableNaquadah"],"name":"五重极不稳定硅岩板","tr":"五重极不稳定硅岩板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["plateQuintupleMAR-M200Steel"],"name":"五重MAR-M200特种钢板","tr":"五重MAR-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["plateQuintupleMAR-Ce-M200Steel"],"name":"五重MAR-Ce-M200特种钢板","tr":"五重MAR-Ce-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["plateQuintupleRhodium-PlatedPalladium"],"name":"五重镀铑钯板","tr":"五重镀铑钯板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["plateQuintupleRuridit"],"name":"五重钌铱合金板","tr":"五重钌铱合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["plateQuintupleHighDurabilityCompoundSteel"],"name":"五重高耐久性复合钢板","tr":"五重高耐久性复合钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["plateQuintuplePreciousMetalsAlloy"],"name":"五重稀有金属合金板","tr":"五重稀有金属合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["plateQuintupleEnrichedNaquadahAlloy"],"name":"五重富集硅岩合金板","tr":"五重富集硅岩合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["plateQuintupleMetastableOganesson"],"name":"五重亚稳态鿫板","tr":"五重亚稳态鿫板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:rustyHatch":{"0":{"name":"Rusty Hatch","tr":"生锈舱门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:part_fluid_level_emitter":{"0":{"name":"ME Fluid Level Emitter","tr":"ME流体发信器","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:energyBlaster":{"0":{"name":"Energy Blaster","tr":"能量爆破枪","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemPlateTeflon":{"0":{"oreDict":["plateTeflon"],"name":"特氟龙板","tr":"特氟龙板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:scytheWood":{"0":{"name":"Wooden Scythe","tr":"木镰刀","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":60}},"miscutils:dustImpureHoneaite":{"0":{"oreDict":["dustImpureHoneaite"],"name":"Impure Honeaite Dust","tr":"含杂碲化金铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetAstralTitanium":{"0":{"oreDict":["nuggetAstralTitanium"],"name":"星体钛粒","tr":"星体钛粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireZirconium":{"0":{"oreDict":["wireFineZirconium"],"name":"细锆导线","tr":"细锆导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fruits":{"0":{"oreDict":["cropCherry"],"name":"Cherry","tr":"樱桃","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["cropWalnut"],"name":"Walnut","tr":"核桃","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cropChestnut"],"name":"Chestnut","tr":"栗树","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropLemon"],"name":"Lemon","tr":"柠檬","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["cropPlum"],"name":"Plum","tr":"李子","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["cropDate"],"name":"Date","tr":"枣椰","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["cropPapaya"],"name":"Papaya","tr":"木瓜","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZirkelite":{"0":{"oreDict":["dustZirkelite"],"name":"钛锆钍矿粉","tr":"钛锆钍矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hardenedleatherItem":{"0":{"oreDict":["materialHardenedleather"],"name":"Hardened Leather","tr":"硬化皮革","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.willow":{"0":{"oreDict":["buttonWood"],"name":"Willow Button","tr":"柳树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingMaragingSteel250":{"0":{"oreDict":["ringMaragingSteel250"],"name":"马氏体时效钢250环","tr":"马氏体时效钢250环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaLogHopseed":{"0":{"name":"Crated Hopseed Wood","tr":"装箱的车桑子树原木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:sveltstone":{"0":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Svelstone block","tr":"精致石头","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:bulletThrowable":{"0":{"name":"Throwable Bullet","tr":"投射型子弹","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:fertilizer":{"0":{"name":"Floral Fertilizer","tr":"花肥","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetThallium":{"0":{"oreDict":["nuggetThallium"],"name":"铊粒","tr":"铊粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureAgarditeY":{"0":{"oreDict":["dustPureAgarditeY"],"name":"Purified Agardite (Y) Dust","tr":"洁净菱铁矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconium":{"0":{"oreDict":["blockDraconium"],"name":"Draconium Block","tr":"龙块","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Resurrection Stone","tr":"复活石","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Charged Draconium Block","tr":"充能龙块","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.steel.axe":{"0":{"name":"Steel Axe","tr":"钢斧","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":501}},"dreamcraft:item.SchematicsTier4":{"0":{"name":"Schematics Rocket Tier 4 Chip","tr":"4阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsTier5":{"0":{"name":"Schematics Rocket Tier 5 Chip","tr":"5阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:juice_and_cookies":{"0":{"name":"Juice and Cookies","tr":"橙汁和曲奇","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.SchematicsTier2":{"0":{"name":"Schematics Rocket Tier 2 Chip","tr":"2阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTalonite":{"0":{"oreDict":["ingotHotTalonite"],"name":"热铬钴磷酸盐合金锭","tr":"热铬钴磷酸盐合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsTier3":{"0":{"name":"Schematics Rocket Tier 3 Chip","tr":"3阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamchocolatesprinkleCake":{"0":{"name":"Chocolate Sprinkles Cake","tr":"巧克力蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsTier1":{"0":{"name":"Schematics Rocket Tier 1 Chip","tr":"1阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:creativebuilderswand":{"0":{"name":"Super Builder\u0027s Wand","tr":"创造模式建筑之杖","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockPraseodymium":{"0":{"oreDict":["blockPraseodymium"],"name":"镨块","tr":"镨块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Empty360SpCell":{"0":{"name":"360K Space Cell","tr":"360K空间冷却单元外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsTier8":{"0":{"name":"Schematics Rocket Tier 8 Chip","tr":"8阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:instability_orb":{"0":{"name":"Instability Orb","tr":"震荡球","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:omeletItem":{"0":{"oreDict":["foodOmelet"],"name":"Omelet","tr":"煎蛋饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSpruceWood":{"0":{"name":"Crated Spruce Wood","tr":"装箱的云杉木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsTier6":{"0":{"name":"Schematics Rocket Tier 6 Chip","tr":"6阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsTier7":{"0":{"name":"Schematics Rocket Tier 7 Chip","tr":"7阶火箭设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltGermanium":{"0":{"oreDict":["boltGermanium"],"name":"锗螺栓","tr":"锗螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.agonBlock":{"0":{"name":"Agon ⓪","tr":"Agon ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Agon ①","tr":"Agon ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Agon ②","tr":"Agon ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Agon ③","tr":"Agon ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Agon ④","tr":"Agon ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Agon ⑤","tr":"Agon ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Agon ⑥","tr":"Agon ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Agon ⑦","tr":"Agon ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Agon ⑧","tr":"Agon ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Agon ⑨","tr":"Agon ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Agon ⑩","tr":"Agon ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Agon ⑪","tr":"Agon ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Agon ⑫","tr":"Agon ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Agon ⑬","tr":"Agon ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Agon ⑭","tr":"Agon ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Agon ⑮","tr":"Agon ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:bw.blockores.01":{"1":{"oreDict":["oreBismutite"],"name":"泡铋矿石","tr":"泡铋矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreBismuthinite"],"name":"辉铋矿石","tr":"辉铋矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreFluor-Buergerite"],"name":"氟铁电气石矿石","tr":"氟铁电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["oreRarestMetalResidue"],"name":"稀有金属渣矿石","tr":"稀有金属渣矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["oreIridiumMetalResidue"],"name":"铱金属渣矿石","tr":"铱金属渣矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["oreNaquadahOxideMixture"],"name":"氧化硅岩混合物矿石","tr":"氧化硅岩混合物矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["oreChromo-Alumino-Povondraite"],"name":"铬铝电气石矿石","tr":"铬铝电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oreVanadio-Oxy-Dravite"],"name":"钒镁电气石矿石","tr":"钒镁电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["oreOlenite"],"name":"铝电气石矿石","tr":"铝电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["oreArsenopyrite"],"name":"砷黄铁矿石","tr":"砷黄铁矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["oreFerberite"],"name":"钨铁矿石","tr":"钨铁矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["oreLoellingite"],"name":"斜方砷铁矿石","tr":"斜方砷铁矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["oreRoquesite"],"name":"硫铟铜矿石","tr":"硫铟铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["oreBornite"],"name":"斑铜矿石","tr":"斑铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["oreWittichenite"],"name":"硫铋铜矿石","tr":"硫铋铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["oreCrudeRhodiumMetal"],"name":"粗制铑金属矿石","tr":"粗制铑金属矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["oreDjurleite"],"name":"久辉铜矿石","tr":"久辉铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["oreHuebnerite"],"name":"钨酸锰矿石","tr":"钨酸锰矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["oreThorianite"],"name":"方钍石矿石","tr":"方钍石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["oreRedZircon"],"name":"红锆石矿石","tr":"红锆石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["oreEnriched-NaquadahOxideMixture"],"name":"氧化富集硅岩混合物矿石","tr":"氧化富集硅岩混合物矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["oreFayalite"],"name":"铁橄榄石矿石","tr":"铁橄榄石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["oreForsterite"],"name":"镁橄榄石矿石","tr":"镁橄榄石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["oreNaquadriaOxideMixture"],"name":"氧化超能硅岩混合物矿石","tr":"氧化超能硅岩混合物矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["oreHedenbergite"],"name":"钙铁辉石矿石","tr":"钙铁辉石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["oreTiberium"],"name":"泰伯利亚矿石","tr":"泰伯利亚矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["oreRedDescloizite"],"name":"红钒铅锌矿石","tr":"红钒铅锌矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["oreOrangeDescloizite"],"name":"橙钒铅铜矿石","tr":"橙钒铅铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["oreFluorspar"],"name":"氟石矿石","tr":"氟石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["oreGreenFuchsite"],"name":"绿铬云母矿石","tr":"绿铬云母矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["oreRedFuchsite"],"name":"红铬云母矿石","tr":"红铬云母矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["oreAtheneite"],"name":"砷汞钯矿石","tr":"砷汞钯矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["oreTemagamite"],"name":"碲汞钯矿石","tr":"碲汞钯矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["oreTerlinguaite"],"name":"黄氯汞矿石","tr":"黄氯汞矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["orePrasiolite"],"name":"堇云石矿石","tr":"堇云石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["oreOrundum"],"name":"合成玉矿石","tr":"合成玉矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["oreBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK矿石","tr":"BArTiMaEuSNeK矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["orePlatinumMetallicPowder"],"name":"铂金属矿石","tr":"铂金属矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["orePalladiumMetallicPowder"],"name":"钯金属矿石","tr":"钯金属矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["oreLeachResidue"],"name":"浸出渣矿石","tr":"浸出渣矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallFormaldehydeCatalyst":{"0":{"oreDict":["dustSmallFormaldehydeCatalyst"],"name":"小堆甲醛催化剂粉","tr":"小堆甲醛催化剂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:bw.blockores.02":{"1":{"oreDict":["oreSmallBismutite"],"name":"贫瘠泡铋矿石","tr":"贫瘠泡铋矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreSmallBismuthinite"],"name":"贫瘠辉铋矿石","tr":"贫瘠辉铋矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreSmallFluor-Buergerite"],"name":"贫瘠氟铁电气石矿石","tr":"贫瘠氟铁电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["oreSmallRarestMetalResidue"],"name":"贫瘠稀有金属渣矿石","tr":"贫瘠稀有金属渣矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["oreSmallIridiumMetalResidue"],"name":"贫瘠铱金属渣矿石","tr":"贫瘠铱金属渣矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["oreSmallNaquadahOxideMixture"],"name":"贫瘠氧化硅岩混合物矿石","tr":"贫瘠氧化硅岩混合物矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["oreSmallChromo-Alumino-Povondraite"],"name":"贫瘠铬铝电气石矿石","tr":"贫瘠铬铝电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oreSmallVanadio-Oxy-Dravite"],"name":"贫瘠钒镁电气石矿石","tr":"贫瘠钒镁电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["oreSmallOlenite"],"name":"贫瘠铝电气石矿石","tr":"贫瘠铝电气石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["oreSmallArsenopyrite"],"name":"贫瘠砷黄铁矿石","tr":"贫瘠砷黄铁矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["oreSmallFerberite"],"name":"贫瘠钨铁矿石","tr":"贫瘠钨铁矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["oreSmallLoellingite"],"name":"贫瘠斜方砷铁矿石","tr":"贫瘠斜方砷铁矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["oreSmallRoquesite"],"name":"贫瘠硫铟铜矿石","tr":"贫瘠硫铟铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["oreSmallBornite"],"name":"贫瘠斑铜矿石","tr":"贫瘠斑铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["oreSmallWittichenite"],"name":"贫瘠硫铋铜矿石","tr":"贫瘠硫铋铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["oreSmallCrudeRhodiumMetal"],"name":"贫瘠粗制铑金属矿石","tr":"贫瘠粗制铑金属矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["oreSmallDjurleite"],"name":"贫瘠久辉铜矿石","tr":"贫瘠久辉铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["oreSmallHuebnerite"],"name":"贫瘠钨酸锰矿石","tr":"贫瘠钨酸锰矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["oreSmallThorianite"],"name":"贫瘠方钍石矿石","tr":"贫瘠方钍石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["oreSmallRedZircon"],"name":"贫瘠红锆石矿石","tr":"贫瘠红锆石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["oreSmallEnriched-NaquadahOxideMixture"],"name":"贫瘠氧化富集硅岩混合物矿石","tr":"贫瘠氧化富集硅岩混合物矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["oreSmallFayalite"],"name":"贫瘠铁橄榄石矿石","tr":"贫瘠铁橄榄石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["oreSmallForsterite"],"name":"贫瘠镁橄榄石矿石","tr":"贫瘠镁橄榄石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["oreSmallNaquadriaOxideMixture"],"name":"贫瘠氧化超能硅岩混合物矿石","tr":"贫瘠氧化超能硅岩混合物矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["oreSmallHedenbergite"],"name":"贫瘠钙铁辉石矿石","tr":"贫瘠钙铁辉石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["oreSmallTiberium"],"name":"贫瘠泰伯利亚矿石","tr":"贫瘠泰伯利亚矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["oreSmallRedDescloizite"],"name":"贫瘠红钒铅锌矿石","tr":"贫瘠红钒铅锌矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["oreSmallOrangeDescloizite"],"name":"贫瘠橙钒铅铜矿石","tr":"贫瘠橙钒铅铜矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["oreSmallFluorspar"],"name":"贫瘠氟石矿石","tr":"贫瘠氟石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["oreSmallGreenFuchsite"],"name":"贫瘠绿铬云母矿石","tr":"贫瘠绿铬云母矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["oreSmallRedFuchsite"],"name":"贫瘠红铬云母矿石","tr":"贫瘠红铬云母矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["oreSmallAtheneite"],"name":"贫瘠砷汞钯矿石","tr":"贫瘠砷汞钯矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["oreSmallTemagamite"],"name":"贫瘠碲汞钯矿石","tr":"贫瘠碲汞钯矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["oreSmallTerlinguaite"],"name":"贫瘠黄氯汞矿石","tr":"贫瘠黄氯汞矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["oreSmallPrasiolite"],"name":"贫瘠堇云石矿石","tr":"贫瘠堇云石矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["oreSmallOrundum"],"name":"贫瘠合成玉矿石","tr":"贫瘠合成玉矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["oreSmallBArTiMaEuSNeK"],"name":"贫瘠BArTiMaEuSNeK矿石","tr":"贫瘠BArTiMaEuSNeK矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["oreSmallPlatinumMetallicPowder"],"name":"贫瘠铂金属矿石","tr":"贫瘠铂金属矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["oreSmallPalladiumMetallicPowder"],"name":"贫瘠钯金属矿石","tr":"贫瘠钯金属矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["oreSmallLeachResidue"],"name":"贫瘠浸出渣矿石","tr":"贫瘠浸出渣矿石","tab":"BartWorks超材料","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockCrystalBelljar":{"0":{"name":"Crystal Belljar","tr":"玻璃钟罩","tab":"血魔法","type":"Block","maxStackSize":16,"maxDurability":1}},"LogisticsPipes:item.PipeItemsFirewall":{"0":{"name":"Logistics Firewall Pipe","tr":"物流防火墙管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cashewItem":{"0":{"oreDict":["cropCashew"," listAllnut"],"name":"Cashew","tr":"腰果","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodChromaticGlass":{"0":{"oreDict":["stickChromaticGlass"],"name":"彩色玻璃杆","tr":"彩色玻璃杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:candle":{"0":{"name":"Unlit Candle","tr":"蜡烛(熄灭)","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:certus_quartz_tank":{"0":{"name":"Certus Quartz Tank","tr":"赛特斯石英水槽","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.GiantLog":{"0":{"name":"Giant Log","tr":"巨型原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustThorium232":{"0":{"oreDict":["dustThorium232"],"name":"钍-232粉","tr":"钍-232粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA5SlabFull":{"0":{"name":"Metamorphic Desert Stone Slab","tr":"变质沙漠石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockMaragingSteel350":{"0":{"oreDict":["blockMaragingSteel350"],"name":"马氏体时效钢350块","tr":"马氏体时效钢350块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SilveredFleece":{"0":{"name":"Silvered Fleece","tr":"镀银绒毛","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA":{"0":{"name":"Metamorphic Forest Stone","tr":"变质森林石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Metamorphic Plains Stone","tr":"变质平原石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Metamorphic Mountain Stone","tr":"变质高山石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Metamorphic Fungal Stone","tr":"变质菌丝石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Metamorphic Swamp Stone","tr":"变质沼泽石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Metamorphic Desert Stone","tr":"变质沙漠石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Metamorphic Taiga Stone","tr":"变质雪原石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Metamorphic Mesa Stone","tr":"变质高原石头","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Metamorphic Forest Cobblestone","tr":"变质森林圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Metamorphic Plains Cobblestone","tr":"变质平原圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Metamorphic Mountain Cobblestone","tr":"变质高山圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Metamorphic Fungal Cobblestone","tr":"变质菌丝圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Metamorphic Swamp Cobblestone","tr":"变质沼泽圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Metamorphic Desert Cobblestone","tr":"变质沙漠圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Metamorphic Taiga Cobblestone","tr":"变质雪原圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Metamorphic Mesa Cobblestone","tr":"变质高原圆石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB":{"0":{"name":"Metamorphic Forest Stone Bricks","tr":"变质森林石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Metamorphic Plains Stone Bricks","tr":"变质平原石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Metamorphic Mountain Stone Bricks","tr":"变质高山石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Metamorphic Fungal Stone Bricks","tr":"变质菌丝石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Metamorphic Swamp Stone Bricks","tr":"变质沼泽石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Metamorphic Desert Stone Bricks","tr":"变质沙漠石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Metamorphic Taiga Stone Bricks","tr":"变质雪原石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Metamorphic Mesa Stone Bricks","tr":"变质高原石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Chiseled Metamorphic Forest Stone Brick","tr":"錾制变质森林石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Chiseled Metamorphic Plains Stone Brick","tr":"錾制变质平原石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Chiseled Metamorphic Mountain Stone Brick","tr":"錾制变质高山石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Chiseled Metamorphic Fungal Stone Brick","tr":"錾制变质菌丝石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Chiseled Metamorphic Swamp Stone Brick","tr":"錾制变质沼泽石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Chiseled Metamorphic Desert Stone Brick","tr":"錾制变质沙漠石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Chiseled Metamorphic Taiga Stone Brick","tr":"錾制变质雪原石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Chiseled Metamorphic Mesa Stone Brick","tr":"錾制变质高原石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedGadoliniteY":{"0":{"oreDict":["crushedPurifiedGadoliniteY"],"name":"Purified Crushed Gadolinite (Y) Ore","tr":"洗净的硅铍钇矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamgrapeCrop":{"0":{"name":"Grape Crop","tr":"葡萄","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotAstralTitanium":{"0":{"oreDict":["ingotAstralTitanium"],"name":"星体钛锭","tr":"星体钛锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberryItem":{"0":{"oreDict":["cropBlueberry"," listAllfruit"," listAllberry"],"name":"Blueberry","tr":"蓝莓","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:bifrostPerm":{"0":{"name":"Bifrost Block","tr":"彩虹桥方块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleMaragingSteel350":{"0":{"oreDict":["plateDoubleMaragingSteel350"],"name":"双重马氏体时效钢350板","tr":"双重马氏体时效钢350板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"StevesFactoryManager:BlockCableBreakerName":{"0":{"name":"Block Gate","tr":"方块交互器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:sigilOfTheFastMiner":{"0":{"name":"Sigil of the Fast Miner","tr":"速掘印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderZoo:enderZooIcon":{"0":{"name":"item.enderZooIcon.name","tr":"item.enderZooIcon.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:flag":{"0":{"name":"Flag","tr":"旗子","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB1Stairs":{"0":{"name":"Metamorphic Plains Stone Brick Stairs","tr":"变质平原石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:teleporterMKI":{"0":{"name":"Charm of Dislocation","tr":"错位宝石","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":20}},"Forestry:cratedStringyCombs":{"0":{"name":"Crated Stringy Comb","tr":"装箱的纤维蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorMOXSimpledepleted":{"0":{"name":"Fuel Rod (Depleted MOX)","tr":"燃料棒(枯竭MOX)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:dark_oak_planks":{"1":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Dark Oak Wood Planks","tr":"深色橡木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Blaster":{"0":{"name":"Raw Blaster","tr":"能源爆裂枪粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellAceticAnhydride":{"0":{"oreDict":["cellAceticAnhydride"],"name":"乙酸酐单元","tr":"乙酸酐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockPineLogLog":{"0":{"oreDict":["logWood"," logPineLog"],"name":"Pine Log","tr":"松树原木","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedBariteRd":{"0":{"oreDict":["crushedCentrifugedBariteRd"],"name":"Centrifuged Crushed Barite (Rd) Ore","tr":"离心 重晶石(Rd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemWispEssence":{"0":{"name":"Ethereal Essence","tr":"天域之华","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotZeron100":{"0":{"oreDict":["ingotHotZeron100"],"name":"热塞龙-100锭","tr":"热塞龙-100锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.tripleBow":{"0":{"name":"Tri-bow","tr":"三发弓","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":385}},"miscutils:itemDustSmallHastelloyW":{"0":{"oreDict":["dustSmallHastelloyW"],"name":"小堆哈斯特洛依合金-W粉","tr":"小堆哈斯特洛依合金-W粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.silverbell":{"0":{"oreDict":["fenceGateWood"],"name":"Silverbell Fence Gate","tr":"银铃树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:fluidDisplay":{"0":{"name":"Fluid Display","tr":"液体伪装方块","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallHastelloyN":{"0":{"oreDict":["dustSmallHastelloyN"],"name":"小堆哈斯特洛依合金-N粉","tr":"小堆哈斯特洛依合金-N粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:reactorStabilizer":{"0":{"name":"Reactor Stabilizer","tr":"反应堆稳定器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IrradiantReinforcedNaquadriaPlate":{"0":{"name":"Irradiant Reinforced Naquadria Plate","tr":"光辉强化超能硅岩板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:multi_fluid_storage4":{"0":{"name":"§e4k§r ME Multi-Fluid Storage Cell","tr":"§e4k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:bucketNutrient_distillation":{"0":{"name":"Nutrient Distillation Bucket","tr":"桶装营养精华液","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:multi_fluid_storage1":{"0":{"name":"§61k§r ME Multi-Fluid Storage Cell","tr":"§61k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:pavement":{"0":{"name":"White Portuguese Pavement","tr":"白色葡萄牙路面","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Black Portuguese Pavement","tr":"黑色葡萄牙路面","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Blue Portuguese Pavement","tr":"蓝色葡萄牙路面","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Red Portuguese Pavement","tr":"红色葡萄牙路面","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Portuguese Pavement","tr":"黄色葡萄牙路面","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Green Portuguese Pavement","tr":"绿色葡萄牙路面","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPotin":{"0":{"oreDict":["cellPotin"],"name":"粗青铜合金单元","tr":"粗青铜合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodStrontium":{"0":{"oreDict":["stickStrontium"],"name":"锶杆","tr":"锶杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWooddesk":{"0":{"name":"Bloodwood Desk","tr":"血树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Desk","tr":"黑暗树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Desk","tr":"桉树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Desk","tr":"熔融树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Desk","tr":"幽魂树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Desk","tr":"车桑子树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Desk","tr":"枫树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Desk","tr":"紫檀树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Desk","tr":"红木台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Desk","tr":"银铃树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Desk","tr":"樱花树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Desk","tr":"核桃树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Desk","tr":"柳树台桌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:marrowberryCrop":{"0":{"name":"Marrow Berry Crop","tr":"骨髓浆果","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallHastelloyX":{"0":{"oreDict":["dustSmallHastelloyX"],"name":"小堆哈斯特洛依合金-X粉","tr":"小堆哈斯特洛依合金-X粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:machine.gamma":{"0":{"name":"Item Loader","tr":"物品装载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Item Unloader","tr":"物品卸载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Adv. Item Loader","tr":"高级物品装载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Adv. Item Unloader","tr":"高级物品卸载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fluid Loader","tr":"流体装载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fluid Unloader","tr":"流体卸载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Energy Loader","tr":"能量装载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Energy Unloader","tr":"能量卸载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Cart Dispenser","tr":"矿车分车站","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Train Dispenser","tr":"列车分车站","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Redstone Flux Loader","tr":"RF能量装载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redstone Flux Unloader","tr":"RF能量卸载机","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreYttriaite":{"0":{"oreDict":["oreYttriaite"],"name":"Yttriaite Ore","tr":"钇矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:MorphShovel":{"0":{"name":"Chameleon Shovel","tr":"避役铲","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1501}},"harvestcraft:raspberrysmoothieItem":{"0":{"oreDict":["foodRaspberrysmoothie"," listAllsmoothie"],"name":"Raspberry Smoothie","tr":"树莓冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockVolumetricFlaskSetter":{"0":{"name":"Volumetric Flask Configurator","tr":"容量瓶配置器","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedPlutonium4":{"0":{"name":"Quad Fuel Rod (High Density Plutonium)","tr":"四联燃料棒(浓缩钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:itemVibrantRotorBlade":{"0":{"name":"Vibrant Alloy Rotor Blade","tr":"脉冲合金扇叶","tab":"GT++机器","type":"Item","maxStackSize":16,"maxDurability":1}},"BuildCraft|Silicon:redstoneCrystal":{"0":{"oreDict":["redstoneCrystal"," crystalRedstone"],"name":"Firestone Crystal","tr":"火石晶体","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:expanderPowerTierFive":{"0":{"name":"Base Power Expander (Tier 5)","tr":"基座能量扩容(五级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamlemonSapling":{"0":{"name":"Lemon Sapling","tr":"柠檬树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedPlutonium2":{"0":{"name":"Dual Fuel Rod (High Density Plutonium)","tr":"二联燃料棒(浓缩钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"BiblioWoodsBoP:BiblioWoodtable":{"0":{"name":"Sacred Oak Table","tr":"天域树橡树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Table","tr":"樱桃树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Table","tr":"黑暗树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Table","tr":"杉树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Table","tr":"地狱皮树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Table","tr":"阁楼树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Table","tr":"蓝花楹桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Table","tr":"魔法树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Table","tr":"红杉桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Table","tr":"棕榈树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Table","tr":"松树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Table","tr":"红木桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Table","tr":"柳树桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Table","tr":"桃花心木桌子","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyBotmium":{"0":{"oreDict":["dustTinyBotmium"],"name":"小撮博特姆合金粉","tr":"小撮博特姆合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:chisel":{"0":{"name":"Architect\u0027s Chisel","tr":"建筑师凿","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:stone11Stairs":{"0":{"name":"Granite Brick Stairs","tr":"花岗岩砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"cb4bq:BlockDLB":{"0":{"name":"Default Load Block","tr":"默认加载方块","tab":"更好的任务","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolatecherryItem":{"0":{"oreDict":["foodChocolatecherry"],"name":"Chocolate Cherry","tr":"巧克力樱桃","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pambroccoliCrop":{"0":{"name":"Broccoli Crop","tr":"西兰花","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgradeCreative":{"0":{"name":"Creative Storage Upgrade","tr":"创造模式容量升级","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Creative Vending Upgrade","tr":"创造模式取出升级","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:mindrake":{"0":{"name":"Minedrake","tr":"矿德拉草","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:cherryStairs":{"0":{"oreDict":["stairWood"],"name":"Cherry Wood Stairs","tr":"樱桃木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockWirelessCharger":{"0":{"name":"Wireless Charger","tr":"无线充能器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorCelestialTungsten":{"0":{"oreDict":["rotorCelestialTungsten"],"name":"天体钨转子","tr":"天体钨转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.oilExtractor":{"0":{"name":"Portable Oil Extractor","tr":"便携抽油器","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestthenether:glowFlower":{"0":{"name":"Glow Flower","tr":"辉光花","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraTrees:doubleSlab":{"0":{"name":"Fir Wood Slab","tr":"冷杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cedar Wood Slab","tr":"雪松台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hemlock Wood Slab","tr":"铁杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cypress Wood Slab","tr":"柏树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fig Wood Slab","tr":"无花果台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Beech Wood Slab","tr":"山毛榉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Alder Wood Slab","tr":"桤木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hazel Wood Slab","tr":"榛树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hornbeam Wood Slab","tr":"鹅耳枥台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Box Wood Slab","tr":"黄杨台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Butternut Wood Slab","tr":"灰核桃树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Hickory Wood Slab","tr":"山核桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Whitebeam Wood Slab","tr":"白面子树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Elm Wood Slab","tr":"榆树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Apple Wood Slab","tr":"苹果树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Yew Wood Slab","tr":"红豆杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemTreetap":{"0":{"name":"Treetap","tr":"木龙头","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":17}},"miscutils:itemIngotTriniumTitaniumAlloy":{"0":{"oreDict":["ingotTriniumTitaniumAlloy"],"name":"三元钛合金锭","tr":"三元钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BinnieCore:containerBucket":{"128":{"name":"Sap Bucket","tr":"树液桶","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"64":{"name":"Acid Bucket","tr":"酸液桶","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"129":{"name":"Resin Bucket","tr":"树脂桶","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"65":{"name":"Poison Bucket","tr":"毒液桶","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"130":{"name":"Latex Bucket","tr":"乳胶桶","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"66":{"name":"Nitrogen Bucket","tr":"液氮桶","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"131":{"name":"Turpentine Bucket","tr":"松节油桶","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:eelrawItem":{"0":{"oreDict":["listAllfishraw"," foodEelraw"],"name":"Raw Eel","tr":"生鳗鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:brewbottle":{"0":{"name":"Brew","tr":"酿造","tab":"","type":"Item","maxStackSize":8,"maxDurability":1}},"harvestcraft:potatocakesItem":{"0":{"oreDict":["foodPotatocakes"],"name":"Potato Cakes","tr":"薯泥饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemCreativeStorageCell":{"0":{"name":"Creative ME Storage Cell","tr":"创造ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:archmageBloodOrb":{"0":{"name":"Archmage\u0027s Blood Orb","tr":"贤者气血宝珠","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFWoodSlabDouble":{"0":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Canopy Tree Slab","tr":"苍穹树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mangrove Slab","tr":"红树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Darkwood Slab","tr":"黑暗树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Timewood Slab","tr":"时光树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Transwood Slab","tr":"变化树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Minewood Slab","tr":"矿工树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sortingwood Slab","tr":"分类树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonItem":{"0":{"oreDict":["cropLemon"," listAllfruit"," listAllcitrus"],"name":"Lemon","tr":"柠檬","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.basePlant":{"0":{"name":"Tall Redgrass","tr":"高红草","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.buggymat":{"0":{"name":"Buggy Wheel","tr":"星球车车轮","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Buggy Seat","tr":"星球车座椅","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Buggy Storage Box","tr":"星球车存储箱","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellPolonium":{"0":{"oreDict":["cellPolonium"],"name":"钋单元","tr":"钋单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:frameStabilizing":{"0":{"name":"Stabilizing Frame","tr":"稳定框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":61}},"Ztones:tile.redsBlock":{"0":{"name":"Reds ⓪","tr":"Reds ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Reds ①","tr":"Reds ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Reds ②","tr":"Reds ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Reds ③","tr":"Reds ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Reds ④","tr":"Reds ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Reds ⑤","tr":"Reds ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Reds ⑥","tr":"Reds ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Reds ⑦","tr":"Reds ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Reds ⑧","tr":"Reds ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Reds ⑨","tr":"Reds ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Reds ⑩","tr":"Reds ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Reds ⑪","tr":"Reds ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Reds ⑫","tr":"Reds ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Reds ⑬","tr":"Reds ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Reds ⑭","tr":"Reds ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Reds ⑮","tr":"Reds ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTalonite":{"0":{"oreDict":["blockTalonite"],"name":"铬钴磷酸盐合金块","tr":"铬钴磷酸盐合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartToughBind":{"1536":{"name":"精金 Tough Binding","tr":"精金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Tough Binding","tr":"神秘蓝金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Tough Binding","tr":"琥珀 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Tough Binding","tr":"纯镃 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Tough Binding","tr":"谐镃 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Tough Binding","tr":"聚氯乙烯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Tough Binding","tr":"永恒 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Tough Binding","tr":"磁物质 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Tough Binding","tr":"赛特斯石英 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Tough Binding","tr":"暗影秘银 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Tough Binding","tr":"玄铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Tough Binding","tr":"戴斯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Tough Binding","tr":"铿铀 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Tough Binding","tr":"通流琥珀金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Tough Binding","tr":"末影粗胚 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Tough Binding","tr":"末影(te) 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Tough Binding","tr":"炽热的钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Tough Binding","tr":"火石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Tough Binding","tr":"力量 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Tough Binding","tr":"石墨 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Tough Binding","tr":"石墨烯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Tough Binding","tr":"注魔金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Tough Binding","tr":"风之魔晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Tough Binding","tr":"火之魔晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Tough Binding","tr":"地之魔晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Tough Binding","tr":"水之魔晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Tough Binding","tr":"混沌魔晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Tough Binding","tr":"秩序魔晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Tough Binding","tr":"玉 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Tough Binding","tr":"碧玉 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Tough Binding","tr":"陨铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Tough Binding","tr":"陨钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Tough Binding","tr":"硅岩 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Tough Binding","tr":"硅岩合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Tough Binding","tr":"富集硅岩 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Tough Binding","tr":"超能硅岩 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Tough Binding","tr":"下界石英 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Tough Binding","tr":"下界之星 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Tough Binding","tr":"三钛 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Tough Binding","tr":"虚空 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Tough Binding","tr":"胶木 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Tough Binding","tr":"幽冥剧毒结晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Tough Binding","tr":"强化 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Tough Binding","tr":"铱锇合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Tough Binding","tr":"阳光化合物 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Tough Binding","tr":"魂金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Tough Binding","tr":"蓝黄玉 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Tough Binding","tr":"黄铜 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Tough Binding","tr":"白铜 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Tough Binding","tr":"深渊铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Tough Binding","tr":"钻石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Tough Binding","tr":"琥珀金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Tough Binding","tr":"绿宝石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Tough Binding","tr":"强化混合晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Tough Binding","tr":"混合晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Tough Binding","tr":"绿色蓝宝石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Tough Binding","tr":"殷钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Tough Binding","tr":"坎塔尔合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Tough Binding","tr":"镁铝合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Tough Binding","tr":"镍铬合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Tough Binding","tr":"玄钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Tough Binding","tr":"生铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Tough Binding","tr":"聚乙烯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Tough Binding","tr":"环氧树脂 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Tough Binding","tr":"硅橡胶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Tough Binding","tr":"聚己内酰胺 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Tough Binding","tr":"聚四氟乙烯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Tough Binding","tr":"蓝宝石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Tough Binding","tr":"不锈钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Tough Binding","tr":"坦桑石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Tough Binding","tr":"锡铁合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Tough Binding","tr":"黄玉 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Tough Binding","tr":"哈氏合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Tough Binding","tr":"锻铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Tough Binding","tr":"铁木 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Tough Binding","tr":"橄榄石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Tough Binding","tr":"蛋白石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Tough Binding","tr":"紫水晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Tough Binding","tr":"暗影金属 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Tough Binding","tr":"暗影铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Tough Binding","tr":"暗影钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Tough Binding","tr":"钢叶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Tough Binding","tr":"骑士金属 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Tough Binding","tr":"标准纯银 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Tough Binding","tr":"玫瑰金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Tough Binding","tr":"黑青铜 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Tough Binding","tr":"铋青铜 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Tough Binding","tr":"黑钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Tough Binding","tr":"红钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Tough Binding","tr":"蓝钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Tough Binding","tr":"大马士革钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Tough Binding","tr":"充能合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Tough Binding","tr":"脉冲合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Tough Binding","tr":"星辰银 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Tough Binding","tr":"钴黄铜 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Tough Binding","tr":"红石榴石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Tough Binding","tr":"黄石榴石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Tough Binding","tr":"温特姆 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Tough Binding","tr":"黑花岗岩 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Tough Binding","tr":"红花岗岩 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Tough Binding","tr":"白石棉 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Tough Binding","tr":"雄黄 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Tough Binding","tr":"磁化铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Tough Binding","tr":"磁化钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Tough Binding","tr":"磁化钕 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Tough Binding","tr":"碳化钨 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Tough Binding","tr":"钒钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Tough Binding","tr":"高速钢-G 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Tough Binding","tr":"高速钢-E 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Tough Binding","tr":"高速钢-S 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Tough Binding","tr":"深铅 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Tough Binding","tr":"量子 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Tough Binding","tr":"深空秘银 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Tough Binding","tr":"黑钚 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Tough Binding","tr":"木卫四冰 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Tough Binding","tr":"硬铝 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Tough Binding","tr":"奥利哈钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Tough Binding","tr":"三元金属 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Tough Binding","tr":"聚苯硫醚 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Tough Binding","tr":"聚苯乙烯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Tough Binding","tr":"丁苯橡胶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Tough Binding","tr":"镍锌铁氧体 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Tough Binding","tr":"纤维强化的环氧树脂 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Tough Binding","tr":"磁化钐 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Tough Binding","tr":"无尽催化剂 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Tough Binding","tr":"聚苯并咪唑 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Tough Binding","tr":" 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Tough Binding","tr":"钛铂钒合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Tough Binding","tr":"时空 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Tough Binding","tr":"大理石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Tough Binding","tr":"神秘水晶 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Tough Binding","tr":"末影钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Tough Binding","tr":"复合粘土 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Tough Binding","tr":"晶化合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Tough Binding","tr":"旋律合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Tough Binding","tr":"恒星合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Tough Binding","tr":"晶化粉红史莱姆 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Tough Binding","tr":"充能银 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Tough Binding","tr":"生动合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Tough Binding","tr":"灵宝 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Tough Binding","tr":"超时空金属 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Tough Binding","tr":"活石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Tough Binding","tr":"盖亚之魂 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Tough Binding","tr":"活木 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Tough Binding","tr":"梦之木 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Tough Binding","tr":"泡铋 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Tough Binding","tr":"立方氧化锆 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Tough Binding","tr":"氟铁电气石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Tough Binding","tr":"铬铝电气石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Tough Binding","tr":"钒镁电气石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Tough Binding","tr":"铝电气石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Tough Binding","tr":"红锆石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Tough Binding","tr":"铁橄榄石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Tough Binding","tr":"镁橄榄石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Tough Binding","tr":"钙铁辉石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Tough Binding","tr":"钍-232 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Tough Binding","tr":"堇云石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Tough Binding","tr":"磁共振石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Tough Binding","tr":"锎 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Tough Binding","tr":"BArTiMaEuSNeK 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Tough Binding","tr":"钌 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Tough Binding","tr":"铑 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Tough Binding","tr":"镀铑钯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Tough Binding","tr":"泰伯利亚 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Tough Binding","tr":"钌铱合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Tough Binding","tr":"氟石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Tough Binding","tr":"高耐久性复合钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Tough Binding","tr":"硬钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Tough Binding","tr":"合成玉 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Tough Binding","tr":"原子分离催化剂 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Tough Binding","tr":"极不稳定硅岩 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Tough Binding","tr":"锌钍合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Tough Binding","tr":"锆锡合金-4 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Tough Binding","tr":"锆锡合金-2 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Tough Binding","tr":"耐热铬铁合金-903 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Tough Binding","tr":"精金合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Tough Binding","tr":"MAR-M200特种钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Tough Binding","tr":"MAR-Ce-M200特种钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Tough Binding","tr":"氯化锂 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Tough Binding","tr":"信素 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Tough Binding","tr":"流明 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Tough Binding","tr":"阿瑟锡 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Tough Binding","tr":"钛钼合金β-C 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Tough Binding","tr":"大力合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Tough Binding","tr":"光素 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Tough Binding","tr":"对立合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Tough Binding","tr":"稀有金属合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Tough Binding","tr":"富集硅岩合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Tough Binding","tr":"亚稳态鿫 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Tough Binding","tr":"调律源金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Tough Binding","tr":"魔钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Tough Binding","tr":"泰拉钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Tough Binding","tr":"源质钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Tough Binding","tr":"磁流体约束恒星物质 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Tough Binding","tr":"白矮星物质 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Tough Binding","tr":"黑矮星物质 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Tough Binding","tr":"宇宙素 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Tough Binding","tr":"铝 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Tough Binding","tr":"铍 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Tough Binding","tr":"铋 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Tough Binding","tr":"碳 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Tough Binding","tr":"铬 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Tough Binding","tr":"金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Tough Binding","tr":"铱 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Tough Binding","tr":"铅 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Tough Binding","tr":"锰 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Tough Binding","tr":"钼 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Tough Binding","tr":"钕 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Tough Binding","tr":"中子 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Tough Binding","tr":"镍 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Tough Binding","tr":"锇 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Tough Binding","tr":"钯 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Tough Binding","tr":"铂 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Tough Binding","tr":"钚-239 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Tough Binding","tr":"钚-241 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Tough Binding","tr":"银 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Tough Binding","tr":"钍 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Tough Binding","tr":"钛 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Tough Binding","tr":"钨 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Tough Binding","tr":"铀-238 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Tough Binding","tr":"铀-235 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Tough Binding","tr":"红宝石 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Tough Binding","tr":"红石合金 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Tough Binding","tr":"终末 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Tough Binding","tr":"导电铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Tough Binding","tr":"磁钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Tough Binding","tr":"钨钢 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Tough Binding","tr":"烈焰 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Tough Binding","tr":"脉冲铁 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Tough Binding","tr":"龙 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Tough Binding","tr":"觉醒龙 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Tough Binding","tr":"褐铜 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Tough Binding","tr":"山铜 坚韧绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:thatch0SlabFull":{"0":{"name":"Thatch Slab","tr":"茅草台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldBoots":{"0":{"name":"Mold (Boots)","tr":"模具(靴)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:part_fluid_storage_bus":{"0":{"name":"ME Fluid Storage Bus","tr":"ME流体存储总线","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemRitualDiviner":{"0":{"name":"Ritual Diviner","tr":"仪式推测杖","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Ritual Diviner","tr":"仪式推测杖","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Ritual Diviner","tr":"仪式推测杖","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:blood_infused_sword_iron":{"0":{"name":"Blood Infused Iron Sword","tr":"注血铁剑","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"tectech:tile.reactorSim":{"0":{"name":"Reactor Simulator","tr":"反应堆模拟器","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemAlloy":{"0":{"oreDict":["ingotElectricalSteel"],"name":"Electrical Steel","tr":"磁钢锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["ingotEnergeticAlloy"],"name":"Energetic Alloy","tr":"充能合金锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotVibrantAlloy"," ingotPhasedGold"],"name":"Vibrant Alloy","tr":"脉冲合金锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotRedstoneAlloy"],"name":"Redstone Alloy","tr":"红石合金锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["ingotConductiveIron"],"name":"Conductive Iron","tr":"导电铁锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["ingotPulsatingIron"," ingotPhasedIron"],"name":"Pulsating Iron","tr":"脉冲铁锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["ingotDarkSteel"],"name":"Dark Steel","tr":"玄钢锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["ingotSoularium"],"name":"Soularium","tr":"魂金锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["ingotEndSteel"],"name":"End Steel","tr":"末影钢锭","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleShortMead":{"0":{"oreDict":["capsuleShortMead"],"name":"Short Mead Capsule","tr":"蜂蜜酒胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockPineSapling":{"0":{"oreDict":["treeSapling"],"name":"Pine Sapling","tr":"松树树苗","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:autoanvil":{"0":{"name":"Auto Anvil","tr":"自动铁砧","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLithiumPeroxide":{"0":{"oreDict":["dustSmallLithiumPeroxide"],"name":"小堆过氧化锂粉","tr":"小堆过氧化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.parachest":{"0":{"name":"Parachest","tr":"伞降箱","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockThallium":{"0":{"oreDict":["blockThallium"],"name":"铊块","tr":"铊块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:pureZombieBrain":{"0":{"name":"Cured Zombie Brain","tr":"净化僵尸之脑","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedFlorencite":{"0":{"oreDict":["crushedCentrifugedFlorencite"],"name":"Centrifuged Crushed Florencite Ore","tr":"离心磷铝铈矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureAlburnite":{"0":{"oreDict":["dustImpureAlburnite"],"name":"Impure Alburnite Dust","tr":"含杂硫碲金锗矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTungstenTitaniumCarbide":{"0":{"oreDict":["blockTungstenTitaniumCarbide"],"name":"碳化钨钛合金块","tr":"碳化钨钛合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.plasmasword":{"0":{"name":"Plasma Sword","tr":"等离子剑","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101}},"Genetics:sequence":{"5":{"name":"Apiarist DNA Sequence","tr":"养蜂员 DNA 序列","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":6}},"thaumicinsurgence:item.ItemThaumicInterfacer":{"0":{"name":"Madman\u0027s Lens","tr":"狂人透镜","tab":"神秘革命","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:decoration.multibrick":{"0":{"name":"Obsidian Brick","tr":"黑曜石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sandstone Brick","tr":"沙石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Netherrack Brick","tr":"平滑地狱岩砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Polished Stone Brick","tr":"抛光石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Iron Brick","tr":"铁砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Gold Brick","tr":"金砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Lapis Brick","tr":"青金石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Diamond Brick","tr":"钻石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redstone Brick","tr":"红石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Bone Brick","tr":"白骨砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Slime Brick","tr":"史莱姆砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Slime Brick","tr":"蓝色史莱姆砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Endstone Brick","tr":"末地石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Obsidian Brick","tr":"黑曜石锭砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:portalTH":{"0":{"name":"Unnamed Block, report to mod author.","tr":"未命名方块,请报告给作者.","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotCelestialTungsten":{"0":{"oreDict":["ingotHotCelestialTungsten"],"name":"热天体钨锭","tr":"热天体钨锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingQuantum":{"0":{"oreDict":["ringQuantum"],"name":"量子合金环","tr":"量子合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawPicoWafer":{"0":{"name":"Raw Pico Wafer","tr":"皮米晶圆原料","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:huiCircuit":{"0":{"name":"Hi-Computation Station MK-I","tr":"高算力工作站 MK-I","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Hi-Computation Station MK-II","tr":"高算力工作站 MK-II","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Hi-Computation Station MK-III","tr":"高算力工作站 MK-III","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Hi-Computation Station MK-IV Prototype","tr":"高算力工作站 MK-IV","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Hi-Computation Station MK-V Finaltype","tr":"高算力工作站 MK-V","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:gaseousShadow":{"0":{"name":"tile.gaseousShadow.name","tr":"tile.gaseousShadow.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:brewliquid":{"0":{"name":"tile.witchery:brewliquid.name","tr":"tile.witchery:brewliquid.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:hatchetHead":{"0":{"name":"Wooden Axe Head","tr":"木斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Axe Head","tr":"石斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Axe Head","tr":"铁斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Axe Head","tr":"燧石斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Axe Head","tr":"仙人掌斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Axe Head","tr":"骨头斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Axe Head","tr":"黑曜石斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Axe Head","tr":"地狱岩斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Axe Head","tr":"史莱姆斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Axe Head","tr":"纸斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Axe Head","tr":"钴斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Axe Head","tr":"阿迪特斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Axe Head","tr":"玛玉灵斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Axe Head","tr":"铜斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Axe Head","tr":"青铜斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Axe Head","tr":"耐酸铝斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Axe Head","tr":"钢斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Axe Head","tr":"史莱姆斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Axe Head","tr":"生铁斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Axe Head","tr":"不稳定感应斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coconutItem":{"0":{"oreDict":["cropCoconut"],"name":"Coconut","tr":"椰子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:petalBlock":{"0":{"name":"White Petal Block","tr":"白色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Petal Block","tr":"橙色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Petal Block","tr":"品红色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Petal Block","tr":"淡蓝色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Petal Block","tr":"黄色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Petal Block","tr":"黄绿色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Petal Block","tr":"粉色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Petal Block","tr":"灰色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Gray Petal Block","tr":"淡灰色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Petal Block","tr":"青色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Petal Block","tr":"紫色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Petal Block","tr":"蓝色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Petal Block","tr":"棕色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Petal Block","tr":"绿色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Petal Block","tr":"红色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Petal Block","tr":"黑色花瓣块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:cauldron":{"0":{"name":"Witch\u0027s Cauldron","tr":"巫师炼药锅","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:brew.fuel":{"0":{"name":"Brew of Combustion","tr":"燃烧之酿","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_pickaxe_iron":{"0":{"name":"Blood Infused Iron Pickaxe","tr":"注血铁镐","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"GoodGenerator:MAR_Casing":{"0":{"name":"Field Restriction Casing","tr":"力场约束机械方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewSiliconCarbide":{"0":{"oreDict":["screwSiliconCarbide"],"name":"碳化硅螺丝","tr":"碳化硅螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:turntable":{"0":{"name":"Spreader Turntable","tr":"发射器旋转台","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreBariteRd":{"0":{"oreDict":["oreBariteRd"],"name":"Barite (Rd) Ore","tr":"重晶石(Rd)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraTrees:slab":{"0":{"name":"Fir Wood Slab","tr":"冷杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cedar Wood Slab","tr":"雪松台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Hemlock Wood Slab","tr":"铁杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cypress Wood Slab","tr":"柏树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fig Wood Slab","tr":"无花果台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Beech Wood Slab","tr":"山毛榉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Alder Wood Slab","tr":"桤木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Hazel Wood Slab","tr":"榛树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Hornbeam Wood Slab","tr":"鹅耳枥台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Box Wood Slab","tr":"黄杨台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Butternut Wood Slab","tr":"灰核桃树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Hickory Wood Slab","tr":"山核桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Whitebeam Wood Slab","tr":"白面子树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Elm Wood Slab","tr":"榆树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Apple Wood Slab","tr":"苹果树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Yew Wood Slab","tr":"红豆杉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Pear Wood Slab","tr":"梨树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Hawthorn Wood Slab","tr":"山楂树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Rowan Wood Slab","tr":"花楸台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Elder Wood Slab","tr":"接骨木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"Maclura Wood Slab","tr":"桑橙台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"Syzgium Wood Slab","tr":"蒲桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"Brazilwood Wood Slab","tr":"巴西红木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"Logwood Wood Slab","tr":"墨水树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"Iroko Wood Slab","tr":"大绿柄桑木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"Locust Wood Slab","tr":"刺槐台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"Eucalyptus Wood Slab","tr":"桉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"Purpleheart Wood Slab","tr":"紫心檀木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"Ash Wood Slab","tr":"梣树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"name":"Holly Wood Slab","tr":"冬青台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"Olive Wood Slab","tr":"橄榄树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"Sweetgum Wood Slab","tr":"枫香树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"Rosewood Wood Slab","tr":"蔷薇木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"Gingko Wood Slab","tr":"银杏台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"Pink Ivory Wood Slab","tr":"象牙粉红木台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureAncientGranite":{"0":{"oreDict":["dustImpureAncientGranite"],"name":"Impure Ancient Granite Dust","tr":"含杂古花岗岩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedSamarskiteYb":{"0":{"oreDict":["crushedSamarskiteYb"],"name":"Crushed Samarskite (Yb) Ore","tr":"粉碎的铌钇矿(Yb)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorAbyssalAlloy":{"0":{"oreDict":["rotorAbyssalAlloy"],"name":"深渊合金转子","tr":"深渊合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:blueGlowshroom":{"0":{"name":"Blue Glowshroom","tr":"蓝色荧光菇","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:zucchinifriesItem":{"0":{"oreDict":["foodZucchinifries"],"name":"Zucchini Fries","tr":"西葫芦条","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:treeMoss":{"0":{"name":"Tree Moss","tr":"树藓","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.extraUtilities.singularity":{"0":{"name":"Unstable Ingot Singularity","tr":"不稳定金属奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingrock":{"0":{"oreDict":["livingrock"," blockLivingrock"],"name":"Livingrock","tr":"活石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Livingrock Brick","tr":"活石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mossy Livingrock Brick","tr":"苔活石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cracked Livingrock Brick","tr":"裂活石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chiseled Livingrock Brick","tr":"框边活石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sweetpotatosouffleItem":{"0":{"oreDict":["foodSweetpotatosouffle"],"name":"Sweet Potato Souffle","tr":"红薯派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:ArcaneCakeItem":{"0":{"name":"Thaumic Cake","tr":"奥法蛋糕","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:splitpeasoupItem":{"0":{"oreDict":["foodSplitpeasoup"],"name":"Split Pea Soup","tr":"豌豆汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pepperoniItem":{"0":{"oreDict":["foodPepperoni"],"name":"Pepperoni","tr":"意大利香肠","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockTaint":{"0":{"name":"Crusted Taint","tr":"陈年污点","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tainted Soil","tr":"腐化泥土","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Flesh","tr":"血肉方块","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:averagePowerCatalyst":{"0":{"name":"Average Power Catalyst","tr":"[普通的]功率催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearGermanium":{"0":{"oreDict":["gearGtGermanium"," gearGermanium"],"name":"锗齿轮","tr":"锗齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:petal":{"0":{"oreDict":["petalWhite"," flowerIngredientWhite"],"name":"Mystical White Petal","tr":"白色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["flowerIngredientOrange"," petalOrange"],"name":"Mystical Orange Petal","tr":"橙色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["petalMagenta"," flowerIngredientMagenta"],"name":"Mystical Magenta Petal","tr":"品红色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["petalLightBlue"," flowerIngredientLightBlue"],"name":"Mystical Light Blue Petal","tr":"淡蓝色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["flowerIngredientYellow"," petalYellow"],"name":"Mystical Yellow Petal","tr":"黄色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["flowerIngredientLime"," petalLime"],"name":"Mystical Lime Petal","tr":"黄绿色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["flowerIngredientPink"," petalPink"],"name":"Mystical Pink Petal","tr":"粉色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["flowerIngredientGray"," petalGray"],"name":"Mystical Gray Petal","tr":"灰色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["flowerIngredientLightGray"," petalLightGray"],"name":"Mystical Light Gray Petal","tr":"淡灰色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["flowerIngredientCyan"," petalCyan"],"name":"Mystical Cyan Petal","tr":"青色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["petalPurple"," flowerIngredientPurple"],"name":"Mystical Purple Petal","tr":"紫色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["petalBlue"," flowerIngredientBlue"],"name":"Mystical Blue Petal","tr":"蓝色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["petalBrown"," flowerIngredientBrown"],"name":"Mystical Brown Petal","tr":"棕色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["petalGreen"," flowerIngredientGreen"],"name":"Mystical Green Petal","tr":"绿色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["petalRed"," flowerIngredientRed"],"name":"Mystical Red Petal","tr":"红色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["petalBlack"," flowerIngredientBlack"],"name":"Mystical Black Petal","tr":"黑色神秘花瓣","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTungstenTitaniumCarbide":{"0":{"oreDict":["boltTungstenTitaniumCarbide"],"name":"碳化钨钛合金螺栓","tr":"碳化钨钛合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotIodine":{"0":{"oreDict":["ingotIodine"],"name":"碘锭","tr":"碘锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ironchestminecarts:minecart_chest_iron":{"0":{"name":"Minecart with Iron Chest","tr":"铁箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"DraconicEvolution:weatherController":{"0":{"name":"Weather Controller","tr":"气象控制器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.key":{"0":{"name":"Tier 2 Dungeon Key","tr":"2阶地牢钥匙","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"StorageDrawers:trimCustom":{"0":{"name":"Framed Trim","tr":"自定义桥接方块","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:specialFlower":{"0":{"name":"Hibeescus","tr":"蜂木槿","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA8Slab":{"0":{"name":"Metamorphic Forest Cobblestone Slab","tr":"变质森林圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallDecayedRadium226":{"0":{"oreDict":["dustSmallDecayedRadium226"],"name":"小堆衰变镭-226粉","tr":"小堆衰变镭-226粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.energy.batbox":{"0":{"name":"Batbox Cart","tr":"储电车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"miscutils:itemIngotPromethium":{"0":{"oreDict":["ingotPromethium"],"name":"钷锭","tr":"钷锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockNutrient_distillation":{"0":{"name":"Nutrient Distillation","tr":"营养精华液","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:darkQuartzStairs":{"0":{"name":"Smokey Quartz Stairs","tr":"烟黑石英楼梯","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.oreMagnet":{"0":{"name":"Ore Magnet","tr":"矿石磁铁","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":13}},"bartworks:gt.bwMetaGeneratedscrew":{"96":{"oreDict":["screwAdemicSteel"],"name":"硬钢螺丝","tr":"硬钢螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["screwShirabon"],"name":"调律源金螺丝","tr":"调律源金螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["screwZircaloy-4"],"name":"锆锡合金-4螺丝","tr":"锆锡合金-4螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["screwZircaloy-2"],"name":"锆锡合金-2螺丝","tr":"锆锡合金-2螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["screwIncoloy-903"],"name":"耐热铬铁合金-903螺丝","tr":"耐热铬铁合金-903螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["screwAdamantiumAlloy"],"name":"精金合金螺丝","tr":"精金合金螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["screwAtomicSeparationCatalyst"],"name":"原子分离催化剂螺丝","tr":"原子分离催化剂螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["screwExtremelyUnstableNaquadah"],"name":"极不稳定硅岩螺丝","tr":"极不稳定硅岩螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["screwMAR-M200Steel"],"name":"MAR-M200特种钢螺丝","tr":"MAR-M200特种钢螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["screwMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢螺丝","tr":"MAR-Ce-M200特种钢螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["screwSignalium"],"name":"信素螺丝","tr":"信素螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["screwLumiium"],"name":"流明螺丝","tr":"流明螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["screwArtherium-Sn"],"name":"阿瑟锡螺丝","tr":"阿瑟锡螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["screwTanmolyiumBeta-C"],"name":"钛钼合金β-C螺丝","tr":"钛钼合金β-C螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["screwRhodium-PlatedPalladium"],"name":"镀铑钯螺丝","tr":"镀铑钯螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["screwDalisenite"],"name":"大力合金螺丝","tr":"大力合金螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["screwTiberium"],"name":"泰伯利亚螺丝","tr":"泰伯利亚螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["screwHikarium"],"name":"光素螺丝","tr":"光素螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["screwRuridit"],"name":"钌铱合金螺丝","tr":"钌铱合金螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["screwTairitsu"],"name":"对立合金螺丝","tr":"对立合金螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["screwHighDurabilityCompoundSteel"],"name":"高耐久性复合钢螺丝","tr":"高耐久性复合钢螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["screwPreciousMetalsAlloy"],"name":"稀有金属合金螺丝","tr":"稀有金属合金螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["screwEnrichedNaquadahAlloy"],"name":"富集硅岩合金螺丝","tr":"富集硅岩合金螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["screwMetastableOganesson"],"name":"亚稳态鿫螺丝","tr":"亚稳态鿫螺丝","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemFoamSprayer":{"0":{"name":"CF Sprayer","tr":"建筑泡沫喷枪","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:ItemInkwell":{"0":{"oreDict":["scribingTools"],"name":"Scribing Tools","tr":"笔与墨","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemRingInconel690":{"0":{"oreDict":["ringInconel690"],"name":"镍铬基合金-690环","tr":"镍铬基合金-690环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:GeneTemplate":{"0":{"name":"Genetic Template","tr":"基因模板","tab":"基因工业|模板","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRotorWatertightSteel":{"0":{"oreDict":["rotorWatertightSteel"],"name":"防水钢转子","tr":"防水钢转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manasteelHelmReveal":{"0":{"name":"Manasteel Helmet of Revealing","tr":"魔钢揭示头盔","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":177}},"Botania:quartzTypeRed":{"0":{"name":"Block of Redquartz","tr":"红色石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Redquartz Block","tr":"錾制红色石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Redquartz Block","tr":"竖纹红色石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.block.longdistancepipe":{"0":{"name":"长距离流体管道","tr":"长距离流体管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"长距离物品管道","tr":"长距离物品管道","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamMaple":{"0":{"oreDict":["logWood"],"name":"Maple Wood","tr":"枫木","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_storage256":{"0":{"name":"§9256k§r ME Fluid Storage Cell","tr":"§9256k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"universalsingularities:universal.general.singularity":{"0":{"name":"Aluminum Singularity","tr":"铝奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Brass Singularity","tr":"黄铜奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Bronze Singularity","tr":"青铜奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Charcoal Singularity","tr":"木炭奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Electrum Singularity","tr":"琥珀金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Invar Singularity","tr":"殷钢奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Magnesium Singularity","tr":"镁奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Osmium Singularity","tr":"锇奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Peridot Singularity","tr":"橄榄石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Ruby Singularity","tr":"红宝石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Sapphire Singularity","tr":"蓝宝石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Steel Singularity","tr":"钢奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Titanium Singularity","tr":"钛奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Tungsten Singularity","tr":"钨奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Uranium Singularity","tr":"铀奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Zinc Singularity","tr":"锌奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Tricalcium Phosphate Singularity","tr":"磷酸三钙奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Palladium Singularity","tr":"钯奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Damascus Steel Singularity","tr":"大马士革钢奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Black Steel Singularity","tr":"黑钢奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Fluxed Electrum Singularity","tr":"通流琥珀金奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Quicksilver Singularity","tr":"水银奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Shadow Steel Singularity","tr":"暗影钢奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Iridium Singularity","tr":"铱奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Nether Star Singularity","tr":"下界之星奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Platinum Singularity","tr":"铂奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Naquadria Singularity","tr":"超能硅岩奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Plutonium Singularity","tr":"钚奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Meteoric Iron Singularity","tr":"陨铁奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Desh Singularity","tr":"戴斯奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Europium Singularity","tr":"铕奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjectBlue:miniatureButton":{"0":{"name":"Miniature White Button","tr":"微型 白色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Miniature Orange Button","tr":"微型 橙色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Miniature Magenta Button","tr":"微型 品红色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Miniature Light Blue Button","tr":"微型 淡蓝色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Miniature Yellow Button","tr":"微型 黄色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Miniature Lime Button","tr":"微型 黄绿色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Miniature Pink Button","tr":"微型 粉红色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Miniature Grey Button","tr":"微型 灰色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Miniature Light Grey Button","tr":"微型 淡灰色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Miniature Cyan Button","tr":"微型 青色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Miniature Purple Button","tr":"微型 紫色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Miniature Blue Button","tr":"微型 蓝色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Miniature Brown Button","tr":"微型 棕色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Miniature Green Button","tr":"微型 绿色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Miniature Red Button","tr":"微型 红色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Miniature Black Button","tr":"微型 黑色 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Miniature Stone Button","tr":"微型 石头 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Miniature Wooden Button","tr":"微型 木质 按钮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:demonPortalMain":{"0":{"name":"Demon Portal","tr":"恶魔传送站","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:ingot":{"0":{"oreDict":["ingotSteel"],"name":"Steel Ingot","tr":"钢锭","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["ingotCopper"," ingotAnyCopper"],"name":"Copper Ingot","tr":"铜锭","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotTin"],"name":"Tin Ingot","tr":"锡锭","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotLead"],"name":"Lead Ingot","tr":"铅锭","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.TripleCompressedCharcoal":{"0":{"name":"Block of Triple Compressed Charcoal","tr":"三重压缩木炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotStellite":{"0":{"oreDict":["ingotStellite"],"name":"铬钴锰钛合金锭","tr":"铬钴锰钛合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:edible":{"0":{"name":"Mercatus Amalgam","tr":"莫卡特斯汞剂","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemBootsVoid":{"0":{"name":"Void Boots","tr":"虚空靴","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":131}},"IC2:itemPartCarbonFibre":{"0":{"name":"Raw Carbon Fibre","tr":"生碳纤维","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyHafnium":{"0":{"oreDict":["dustTinyHafnium"],"name":"小撮铪粉","tr":"小撮铪粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHS188A":{"0":{"oreDict":["screwHS188A"],"name":"HS188-A螺丝","tr":"HS188-A螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GraviSuite:graviChestPlate":{"1":{"name":"GraviChestPlate","tr":"重力胸甲","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"GraviChestPlate","tr":"重力胸甲","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"IC2:itemUran238":{"0":{"name":"Uranium 238","tr":"铀-238","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:heavycreamItem":{"0":{"oreDict":["foodHeavycream"," listAllheavycream"],"name":"Heavy Cream","tr":"多脂奶油","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MagicianOrb":{"0":{"name":"Magician Orb","tr":"法师宝珠粗胚","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemShovelThaumium":{"0":{"name":"Thaumium Shovel","tr":"神秘铲","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"BiblioWoodsBoP:seatBack1":{"0":{"name":"Sacred Oak Seat Back","tr":"天域树橡树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Seat Back","tr":"黑暗树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Seat Back","tr":"杉树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Seat Back","tr":"地狱皮树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Seat Back","tr":"天域树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Seat Back","tr":"蓝花楹座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Seat Back","tr":"魔法树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Seat Back","tr":"红杉座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemUran235":{"0":{"name":"Uranium 235","tr":"铀-235","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseIncoloyDS":{"0":{"oreDict":["plateDenseIncoloyDS"],"name":"致密耐热铬铁合金-DS板","tr":"致密耐热铬铁合金-DS板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.portableTapeDrive":{"0":{"name":"Portable Tape Drive","tr":"便携式磁带驱动器","tab":"计算机电子学","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:item.stellar_leggings":{"0":{"name":"Stellar Leggings","tr":"恒星合金护腿","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1126}},"miscutils:itemPlateCinobiteA243":{"0":{"oreDict":["plateCinobiteA243"],"name":"西诺柏A243板","tr":"西诺柏A243板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamoliveSapling":{"0":{"name":"Olive Sapling","tr":"橄榄树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"computronics:computronics.digitalControllerBox":{"0":{"name":"Digital Signal Controller Box","tr":"数字化信号控制器","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:seatBack5":{"0":{"name":"Sacred Oak Seat Back","tr":"天域树橡树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Seat Back","tr":"黑暗树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Seat Back","tr":"杉树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Seat Back","tr":"地狱皮树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Seat Back","tr":"天域树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Seat Back","tr":"蓝花楹座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Seat Back","tr":"魔法树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Seat Back","tr":"红杉座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:seatBack4":{"0":{"name":"Sacred Oak Seat Back","tr":"天域树橡树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Seat Back","tr":"黑暗树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Seat Back","tr":"杉树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Seat Back","tr":"地狱皮树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Seat Back","tr":"天域树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Seat Back","tr":"蓝花楹座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Seat Back","tr":"魔法树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Seat Back","tr":"红杉座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:seatBack3":{"0":{"name":"Sacred Oak Seat Back","tr":"天域树橡树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Seat Back","tr":"黑暗树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Seat Back","tr":"杉树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Seat Back","tr":"地狱皮树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Seat Back","tr":"天域树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Seat Back","tr":"蓝花楹座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Seat Back","tr":"魔法树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Seat Back","tr":"红杉座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:seatBack2":{"0":{"name":"Sacred Oak Seat Back","tr":"天域树橡树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Seat Back","tr":"樱桃树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Seat Back","tr":"黑暗树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Seat Back","tr":"杉树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Seat Back","tr":"地狱皮树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Seat Back","tr":"天域树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Seat Back","tr":"蓝花楹座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Seat Back","tr":"魔法树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Seat Back","tr":"红杉座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Seat Back","tr":"棕榈树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Seat Back","tr":"松树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Seat Back","tr":"红木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat Back","tr":"柳树座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Seat Back","tr":"桃花心木座椅背","tab":"收藏馆(BoP组件)","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleBotmium":{"0":{"oreDict":["plateDoubleBotmium"],"name":"双重博特姆合金板","tr":"双重博特姆合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"BloodArsenal:blood_torch":{"0":{"name":"Blood Torch","tr":"血之火把","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:quartzWafer":{"0":{"name":"Quartz Wafer","tr":"石英晶圆","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HighEnergyFlowCircuit":{"0":{"name":"High Energy Flow Circuit","tr":"高能量流电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingrock1SlabFull":{"0":{"name":"Livingrock Brick Slab","tr":"活石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:icedoubleslab":{"0":{"name":"Ice Slab","tr":"冰台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockspecialcasings.1":{"0":{"name":"涡轮轴方块","tr":"涡轮轴方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"加强蒸汽涡轮机械方块","tr":"加强蒸汽涡轮机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"加强高压蒸汽涡轮机械方块","tr":"加强高压蒸汽涡轮机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"加强燃气涡轮机械方块","tr":"加强燃气涡轮机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"加强等离子涡轮机械方块","tr":"加强等离子涡轮机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"特斯拉抑制机械方块","tr":"特斯拉抑制机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"太阳能塔机械方块","tr":"太阳能塔机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"盐抑制机械方块","tr":"盐抑制机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"热力隔绝机械方块","tr":"热力隔绝机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"浮选机机械方块","tr":"浮选机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"加强引擎机械方块","tr":"加强引擎机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"分子抑制机械方块","tr":"分子抑制机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"高压流电容方块","tr":"高压流电容方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"粒子抑制机械方块","tr":"粒子抑制机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"强化热交换机械方块","tr":"强化热交换机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"加强超临界蒸汽涡轮机械方块","tr":"加强超临界蒸汽涡轮机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallMaragingSteel300":{"0":{"oreDict":["dustSmallMaragingSteel300"],"name":"小堆马氏体时效钢300粉","tr":"小堆马氏体时效钢300粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioSimplePainting":{"0":{"name":"Oak Painting Frame","tr":"橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Painting Frame","tr":"云杉画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Painting Frame","tr":"桦木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Painting Frame","tr":"丛林木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Painting Frame","tr":"深色橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Painting Frame","tr":"镶框画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA3SlabFull":{"0":{"name":"Metamorphic Fungal Stone Slab","tr":"变质菌丝石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockspecialcasings.3":{"0":{"name":"谐振腔 I","tr":"谐振腔 I","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"谐振腔 II","tr":"谐振腔 II","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"谐振腔 III","tr":"谐振腔 III","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"谐振腔 IV","tr":"谐振腔 IV","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"调制腔 I","tr":"调制腔 I","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"调制腔 II","tr":"调制腔 II","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"调制腔 III","tr":"调制腔 III","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"调制腔 IV","tr":"调制腔 IV","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAdvancedNitinol":{"0":{"oreDict":["dustSmallAdvancedNitinol"],"name":"小堆高级镍钛诺粉","tr":"小堆高级镍钛诺粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockspecialcasings.2":{"0":{"name":"强化青铜机械方块","tr":"强化青铜机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"强化铝机械方块","tr":"强化铝机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"强化劳伦姆合金机械方块","tr":"强化劳伦姆合金机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"强化博特姆合金机械方块","tr":"强化博特姆合金机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA3Stairs":{"0":{"name":"Metamorphic Fungal Stone Stairs","tr":"变质菌丝石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TungstenSteelItemCasing":{"0":{"oreDict":["itemCasingTungstenSteel"],"name":"Tungstensteel Item Casing","tr":"钨钢外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:bloodcrucible":{"0":{"name":"Blood Crucible","tr":"血液坩埚","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:ExplosionFocus":{"0":{"name":"Wand Focus: Explosion","tr":"法杖核心:爆炸","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2}},"gregtech:gt.360k_Helium_Coolantcell":{"0":{"name":"360k氦冷却单元","tr":"360k氦冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:stone11SlabFull":{"0":{"name":"Granite Brick Slab","tr":"花岗岩砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodTellurium":{"0":{"oreDict":["stickTellurium"],"name":"碲杆","tr":"碲杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:fociActivation":{"0":{"name":"Wand Focus: Activation","tr":"法杖核心:激活","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockFrameGtMaragingSteel300":{"0":{"oreDict":["frameGtMaragingSteel300"],"name":"马氏体时效钢300框架","tr":"马氏体时效钢300框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:garammasalaItem":{"0":{"oreDict":["foodGarammasala"],"name":"Garam Masala","tr":"咖喱粉","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.colorfulLamp":{"0":{"name":"Colorful Lamp","tr":"变色灯","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockHarz":{"0":{"name":"ic2.blockHarz","tr":"ic2.blockHarz","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemBatCrystal":{"1":{"oreDict":["batteryElite"],"name":"Energy Crystal","tr":"能量水晶","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"oreDict":["batteryElite"],"name":"Energy Crystal","tr":"能量水晶","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"appliedenergistics2:tile.SkyStoneSlabBlock.double":{"0":{"name":"Sky Stone Slabs","tr":"陨石台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemSpawnerEgg":{"0":{"name":"Spawn Angry Zombie","tr":"生成 红眼僵尸","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn Furious Zombie","tr":"生成 红眼僵尸巨人","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Spawn Wisp","tr":"生成 精灵","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Spawn Firebat","tr":"生成 九狱焱蝠","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Spawn Pech Forager","tr":"生成 岩精强盗","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Spawn Mind Spider","tr":"生成 心魔蜘蛛","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Spawn Eldritch Guardian","tr":"生成 邪术守卫","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Spawn %s the %s","tr":"生成 %s典狱官%s","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Spawn Crimson Knight","tr":"生成 血腥骑士","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Spawn Crimson Cleric","tr":"生成 血腥教徒","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Spawn Praetor %s the %s","tr":"生成 %s血腥主教%s","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Spawn Crimson Portal","tr":"生成 血腥传送门","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Spawn %s Eldritch Construct","tr":"生成 邪术构装体%s","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Spawn Eldritch Crab","tr":"生成 邪术爪牙","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Spawn Shambling Husk","tr":"生成 行尸走肉","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Spawn Thaumic Slime","tr":"生成 神秘史莱姆","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Spawn Tainted Crawler","tr":"生成 腐化魔蛛","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Spawn Taintacle","tr":"生成 腐化触手怪","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Spawn Taint Tendril","tr":"生成 腐化触手","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Spawn Taint Spore","tr":"生成 腐化孢子","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Spawn Taint Spore Swarmer","tr":"生成 腐化孢子巢穴","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Spawn Taint Swarm","tr":"生成 腐化孢子群","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Spawn Tainted Chicken","tr":"生成 腐化鸡","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Spawn Tainted Cow","tr":"生成 腐化牛","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Spawn Tainted Creeper","tr":"生成 腐化爬行者","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Spawn Tainted Pig","tr":"生成 腐化猪","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Spawn Tainted Sheep","tr":"生成 腐化羊","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Spawn Tainted Villager","tr":"生成 腐化村民","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Spawn Giant Taintacle","tr":"生成 巨型腐化触手","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusFrost":{"0":{"name":"Wand Focus: Frost","tr":"法杖核心:寒霜","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftMars:item.titanium_leggings":{"0":{"name":"Titanium Leggings","tr":"钛护腿","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":391}},"harvestcraft:fruitcrumbleItem":{"0":{"oreDict":["foodFruitcrumble"],"name":"Fruit Crumble","tr":"水果松脆饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.cargo":{"0":{"name":"Cargo Loader","tr":"货物加载器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cargo Unloader","tr":"货物卸载器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCurium":{"0":{"oreDict":["dustSmallCurium"],"name":"小堆锔粉","tr":"小堆锔粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"adventurebackpack:adventureSuit":{"0":{"name":"Adventurer\u0027s Suit","tr":"探险者外套","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":151}},"Forestry:cratedLapis":{"0":{"name":"Crated Lapis Lazuli","tr":"装箱的青金石","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:cocoon":{"0":{"name":"Cocoon of Caprice","tr":"随想之茧","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.AuroraDoubleSlab":{"0":{"name":"Aurora Slab","tr":"极光半砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberrypieItem":{"0":{"oreDict":["foodStrawberrypie"],"name":"Strawberry Pie","tr":"草莓派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockOreLead":{"0":{"oreDict":["oreLead"],"name":"Lead Ore","tr":"铅矿石","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersBarrier":{"0":{"name":"Carpenter\u0027s Barrier","tr":"木匠栅栏","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreGreenockite":{"0":{"oreDict":["oreGreenockite"],"name":"Greenockite Ore","tr":"硫镉矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:GolemBell":{"0":{"name":"Golemancer\u0027s Bell","tr":"傀儡使铃铛","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFMoonworm":{"0":{"name":"Moonworm","tr":"月光蠕虫","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:brazier":{"0":{"name":"Brazier","tr":"火盆","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemNightvisionGoggles":{"1":{"name":"Nightvision Goggles","tr":"夜视镜","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Nightvision Goggles","tr":"夜视镜","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"GalaxySpace:barnardaFgrunt":{"0":{"oreDict":["rockBarnardaF"," rockSpace"],"name":"Barnarda F Surface Block","tr":"巴纳德F地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemGoggles":{"0":{"name":"Goggles of Revealing","tr":"揭示之护目镜","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":351}},"miscutils:oreAgarditeY":{"0":{"oreDict":["oreAgarditeY"],"name":"Agardite (Y) Ore","tr":"菱铁矿(Y)矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundBoots":{"0":{"name":"Bound Boots","tr":"约束靴子","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:itemGearIodine":{"0":{"oreDict":["gearGtIodine"," gearIodine"],"name":"碘齿轮","tr":"碘齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemArmorHazmatLeggingsEx":{"0":{"name":"Advanced Hazmat Leggings","tr":"高级防化护腿","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":257}},"catwalks:cagedLadder_south_unlit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:mercuryblocks":{"0":{"oreDict":["rockSpace"," rockPlanetMercury"],"name":"Mercury Surface Block","tr":"水星地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockPlanetMercury"],"name":"Mercury Subsurface Block","tr":"水星地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockSpace"," rockPlanetMercury"],"name":"Mercury Core","tr":"水星石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreLead"],"name":"Lead Ore","tr":"水星铅矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreAnyIron"," oreIron"],"name":"Iron Ore","tr":"水星铁矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreNickel"],"name":"Nickel Ore","tr":"水星镍矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallFlorencite":{"0":{"oreDict":["dustSmallFlorencite"],"name":"小堆磷铝铈矿粉","tr":"小堆磷铝铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:bucketEthanol":{"0":{"name":"Ethanol Bucket","tr":"乙醇桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFMagicLog":{"0":{"oreDict":["logWood"],"name":"Timewood","tr":"时光树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Transwood","tr":"变化树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Minewood","tr":"矿工树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["logWood"],"name":"Sortingwood","tr":"分类树原木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:soil.tainted":{"0":{"oreDict":["taintedSoil"],"name":"Tainted Soil","tr":"腐沙","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tainted Soil","tr":"腐沙","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Tainted Soil","tr":"腐沙","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreLafossaite":{"0":{"oreDict":["oreLafossaite"],"name":"Lafossaite Ore","tr":"铊盐矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:silverwoodPipe":{"0":{"name":"Silverwood Smoking Pipe","tr":"银树烟斗","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:biomeBlock":{"0":{"name":"Biome Essence Ore","tr":"生态群系源质矿石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:foodstuff":{"0":{"name":"Vishroom Stew","tr":"毒菇汤","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:fluid.creosote.bottle":{"0":{"name":"Creosote Bottle","tr":"杂酚油瓶","tab":"Railcraft","type":"Item","maxStackSize":16,"maxDurability":1}},"TConstruct:LavaTank":{"0":{"name":"Seared Tank","tr":"焦黑储罐","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Seared Glass","tr":"焦黑玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Seared Window","tr":"焦黑视窗","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:dagger":{"0":{"name":"§f山铜 匕首","tr":"§f山铜 匕首","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"TConstruct:arrowhead":{"0":{"name":"Wooden Arrowhead","tr":"木箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Arrowhead","tr":"石箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Arrowhead","tr":"铁箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Arrowhead","tr":"燧石箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Arrowhead","tr":"仙人掌箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Arrowhead","tr":"骨头箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Arrowhead","tr":"黑曜石箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Arrowhead","tr":"地狱岩箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Arrowhead","tr":"史莱姆箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Arrowhead","tr":"纸箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Arrowhead","tr":"钴箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Arrowhead","tr":"阿迪特箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Arrowhead","tr":"玛玉灵箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Arrowhead","tr":"铜箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Arrowhead","tr":"青铜箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Arrowhead","tr":"耐酸铝箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Arrowhead","tr":"钢箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Arrowhead","tr":"史莱姆箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Arrowhead","tr":"生铁箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Arrowhead","tr":"不稳定感应箭头","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtHypogen":{"0":{"oreDict":["frameGtHypogen"],"name":"海珀珍框架","tr":"海珀珍框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedZimbabweite":{"0":{"oreDict":["crushedCentrifugedZimbabweite"],"name":"Centrifuged Crushed Zimbabweite Ore","tr":"离心钛铌铅钠石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHeLiCoPtEr":{"0":{"oreDict":["plateDoubleHeLiCoPtEr"],"name":"双重HeLiCoPtEr板","tr":"双重HeLiCoPtEr板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"dreamcraft:item.RuneOfAgilityFragment":{"0":{"name":"Rune of Agility Fragment","tr":"敏捷符文碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:armor.steel.legs":{"0":{"name":"Steel Leggings","tr":"钢护腿","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":376}},"openmodularturrets:fenceTierTwo":{"0":{"name":"Fence (Tier 2)","tr":"护栏(二级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustAgarditeCd":{"0":{"oreDict":["dustAgarditeCd"],"name":"钇砷铜矿(Cd)粉","tr":"钇砷铜矿(Cd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grouperrawItem":{"0":{"oreDict":["foodGrouperraw"," listAllfishraw"],"name":"Raw Grouper","tr":"生石斑鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamlettuceCrop":{"0":{"name":"Lettuce Crop","tr":"生菜","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"betterbuilderswands:wandDiamond":{"0":{"name":"Diamond Wand","tr":"钻石建筑之杖","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":10001}},"miscutils:itemIngotPikyonium64B":{"0":{"oreDict":["ingotPikyonium64B"],"name":"皮卡优合金64B锭","tr":"皮卡优合金64B锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:shroomBag":{"0":{"name":"Mushroom Pouch","tr":"采菇袋","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:dustPureComancheite":{"0":{"oreDict":["dustPureComancheite"],"name":"Purified Comancheite Dust","tr":"纯净溴汞石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:nation":{"0":{"name":"Imperialistic Block","tr":"盟军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Imperialistic Block","tr":"盟军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Imperialistic Block","tr":"盟军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Imperialistic Block","tr":"盟军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Imperialistic Block","tr":"盟军方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:limeyogurtItem":{"0":{"oreDict":["foodLimeyogurt"],"name":"Lime Yogurt","tr":"酸橙酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltRuthenium":{"0":{"oreDict":["boltRuthenium"],"name":"钌螺栓","tr":"钌螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotEnergyCrystal":{"0":{"oreDict":["ingotEnergyCrystal"],"name":"能量水晶锭","tr":"能量水晶锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:makemakegrunt":{"0":{"oreDict":["rockSpace"," rockMakeMake"],"name":"Makemake Surface Block","tr":"鸟神星地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockMakeMake"],"name":"Makemake Subsurface Block","tr":"鸟神星地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodClock":{"0":{"name":"Bloodwood Clock","tr":"血树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Clock","tr":"黑暗树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Clock","tr":"桉树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Clock","tr":"熔融树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Clock","tr":"幽魂树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Clock","tr":"车桑子树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Clock","tr":"枫树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Clock","tr":"紫檀树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Clock","tr":"红木时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Clock","tr":"银铃树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Clock","tr":"樱花树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Clock","tr":"核桃树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Clock","tr":"柳树时钟","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"BinnieCore:containerRefractory":{"64":{"name":"Acid Capsule","tr":"酸液耐火胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"65":{"name":"Poison Capsule","tr":"毒液耐火胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"66":{"name":"Nitrogen Capsule","tr":"液氮耐火胶囊","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1}},"TwilightForest:item.doorCanopy":{"0":{"name":"Canopy Tree Door","tr":"Canopy Tree Door","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:kiwijellyItem":{"0":{"oreDict":["foodKiwijelly"],"name":"Kiwi Jelly","tr":"猕猴桃果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellStaballoy":{"0":{"oreDict":["cellStaballoy"],"name":"贫铀合金单元","tr":"贫铀合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:Monomethylhydrazine":{"0":{"oreDict":["cellMonomethylhydrazine"],"name":"一甲基肼单元","tr":"一甲基肼单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersStairs":{"0":{"name":"Carpenter\u0027s Stairs","tr":"木匠楼梯","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:oakStick":{"0":{"name":"Impregnated Stick","tr":"浸渍木棍","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:spike":{"0":{"name":"Iron Spikes","tr":"铁钉","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Thaumic Spikes","tr":"神秘钉","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Void Spikes","tr":"虚空钉","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:zucchiniseedItem":{"0":{"oreDict":["listAllseed"," seedZucchini"],"name":"Zucchini Seed","tr":"西葫芦种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.MNqCellDep":{"0":{"name":"枯竭燃料棒(Nq*)","tr":"枯竭燃料棒(Nq*)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"TwilightForest:item.hydraChop":{"0":{"name":"Hydra Chop","tr":"九头蛇肉排","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeSmallGear":{"0":{"name":"Casting Form (Small Gear Shape)","tr":"铸形(小型齿轮)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotCurium":{"0":{"oreDict":["ingotCurium"],"name":"锔锭","tr":"锔锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongCelestialTungsten":{"0":{"oreDict":["stickLongCelestialTungsten"],"name":"长天体钨杆","tr":"长天体钨杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetZirconiumCarbide":{"0":{"oreDict":["nuggetZirconiumCarbide"],"name":"碳化锆粒","tr":"碳化锆粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:factory":{"0":{"name":"Bottler","tr":"装瓶机","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Carpenter","tr":"木工机","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Centrifuge","tr":"离心机","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fermenter","tr":"发酵机","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Moistener","tr":"加湿器","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Squeezer","tr":"榨汁机","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Still","tr":"蒸馏器","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Rainmaker","tr":"造雨机","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:vampirelegs":{"0":{"name":"Vampire Trousers","tr":"吸血鬼之裤","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":226}},"TwilightForest:item.phantomPlate":{"0":{"name":"Phantom Plate","tr":"幻影胸甲","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":481}},"harvestcraft:vanillayogurtItem":{"0":{"oreDict":["foodVanillayogurt"],"name":"Vanilla Yogurt","tr":"香草酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockSkyChest":{"0":{"name":"Sky Stone Chest","tr":"陨石箱子","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sky Stone Block Chest","tr":"陨石块箱子","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotPotin":{"0":{"oreDict":["ingotPotin"],"name":"粗青铜合金锭","tr":"粗青铜合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:auricion":{"0":{"name":"Auricion","tr":"能量碎片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedAlburnite":{"0":{"oreDict":["crushedCentrifugedAlburnite"],"name":"Centrifuged Crushed Alburnite Ore","tr":"离心硫碲金锗矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TritonStoneDust":{"0":{"oreDict":["dustSpace"," dustTritonStone"," dustTriton"],"name":"Triton Stone Dust","tr":"海卫一尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetherQuartzPickaxe":{"0":{"name":"Nether Quartz Pickaxe","tr":"下界石英镐","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"harvestcraft:sesamesnapsItem":{"0":{"oreDict":["foodSesamesnaps"],"name":"Sesame Snaps","tr":"芝麻糖片","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.oreMeter":{"0":{"name":"Ore Meter [WIP]","tr":"矿石感应仪","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:item.fieryTears":{"0":{"name":"Fiery Tears","tr":"炽热的泪","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:berryMedley":{"0":{"name":"Berry Medley","tr":"什锦莓","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockReqTome":{"0":{"name":"Requisition Tome","tr":"申请台","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cherryjuiceItem":{"0":{"oreDict":["listAlljuice"," foodCherryjuice"],"name":"Cherry Juice","tr":"樱桃汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamCherry":{"0":{"name":"Cherry","tr":"樱桃","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:waterRod":{"0":{"name":"Rod of the Seas","tr":"海洋法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"malisisdoors:item.curtain_pink":{"0":{"name":"Pink Curtain","tr":"粉色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemBatREDischarged":{"0":{"oreDict":["batteryBasic"],"name":"RE-Battery","tr":"充电电池","tab":"工业2","type":"Item","maxStackSize":16,"maxDurability":1}},"Forestry:ffarm":{"0":{"name":"Farm Block","tr":"农场方块","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Farm Gearbox","tr":"农场齿轮箱","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Farm Hatch","tr":"农场出货箱","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Farm Valve","tr":"农场水阀","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Farm Control","tr":"农场控制盒","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.printedPage":{"0":{"name":"Printed Page","tr":"打印页","tab":"开放式打印机","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CarbonPartLeggings":{"0":{"name":"Carbon Parts \"Leggings\"","tr":"纳米护腿外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodrack":{"0":{"name":"Sacred Oak Tool Rack","tr":"天域树橡树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Tool Rack","tr":"樱桃树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Tool Rack","tr":"黑暗树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Tool Rack","tr":"杉树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Tool Rack","tr":"地狱皮树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Tool Rack","tr":"阁楼树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Tool Rack","tr":"蓝花楹工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Tool Rack","tr":"魔法树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Tool Rack","tr":"红杉工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Tool Rack","tr":"棕榈树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Tool Rack","tr":"松树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Tool Rack","tr":"红木工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Tool Rack","tr":"柳树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Tool Rack","tr":"桃花心树工具架","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemPartIridium":{"0":{"oreDict":["plateAlloyIridium"],"name":"Iridium Reinforced Plate","tr":"强化铱板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingRhodium":{"0":{"oreDict":["ringRhodium"],"name":"铑环","tr":"铑环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pineappleupsidedowncakeItem":{"0":{"oreDict":["foodPineappleupsidedowncake"],"name":"Pineapple Upsidedown Cake","tr":"菠萝翻转蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:speedRune":{"0":{"name":"Speed Rune","tr":"速度符文","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySamarskiteYb":{"0":{"oreDict":["dustTinySamarskiteYb"],"name":"小撮铌钇矿(Yb)粉","tr":"小撮铌钇矿(Yb)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TCetiEStoneDust":{"0":{"oreDict":["dustTCetiEStone"," dustTcetiE"," dustSpace"],"name":"Tceti E Stone Dust","tr":"鲸鱼座T星E尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemFrankenSkull":{"0":{"name":"Zombie Electrode","tr":"僵尸电极","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Z-Logic Controller","tr":"Z-逻辑控制器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Frank\u0027N\u0027Zombie","tr":"人造僵尸","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Resonator","tr":"末影谐振器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Sentient Ender","tr":"意识末影谐振器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Skeletal Contractor","tr":"骷髅契约板","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Guardian Diode","tr":"守卫者二极管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:beetsoupItem":{"0":{"oreDict":["foodBeetsoup"],"name":"Beet Soup","tr":"甜菜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorThallium":{"0":{"oreDict":["rotorThallium"],"name":"铊转子","tr":"铊转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconiumOre":{"0":{"oreDict":["oreDraconium"],"name":"Draconium Ore","tr":"龙矿","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:corporeaIndex":{"0":{"name":"Corporea Index","tr":"多媒体索引","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFThornRose":{"0":{"name":"Thorn Rose","tr":"荆棘玫瑰","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.GeneticCircuit":{"0":{"name":"Genetic Circuit","tr":"基因加工电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockBuffer":{"0":{"name":"Item Buffer","tr":"物品缓存器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Power Buffer","tr":"能量缓存器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Omni Buffer","tr":"多功能缓存器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Creative Buffer","tr":"创造缓存器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steel_pickaxe":{"0":{"name":"Heavy Duty Pickaxe","tr":"重镐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":769}},"TConstruct:battlesign":{"0":{"name":"§f山铜 战斗牌子","tr":"§f山铜 战斗牌子","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"chisel:voidstone2":{"0":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Energised Voidstone","tr":"充能虚空石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.iceBow":{"0":{"name":"Ice Bow","tr":"寒冰弓","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":385}},"ThaumicHorizons:lensEarth":{"0":{"name":"Evanescent Lens","tr":"地之遗忘之镜","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemDiamondBlockCuttingBlade":{"0":{"name":"Block Cutting Blade (Diamond)","tr":"钻石切割锯片","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:bucketMead":{"0":{"name":"Mead Bucket","tr":"蜂蜜陈酿桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"TaintedMagic:ItemShadowmetalSword":{"0":{"name":"Shadowmetal Sword","tr":"暗影之剑","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":2201}},"IC2:itemSolarHelmet":{"0":{"name":"Solar Helmet","tr":"太阳能头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:strawberryjellyItem":{"0":{"oreDict":["foodStrawberryjelly"],"name":"Strawberry Jelly","tr":"草莓果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:trowelWood":{"0":{"name":"Wooden Trowel","tr":"木质泥铲","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":60}},"miscutils:itemPlateDoubleTungstenTitaniumCarbide":{"0":{"oreDict":["plateDoubleTungstenTitaniumCarbide"],"name":"双重碳化钨钛合金板","tr":"双重碳化钨钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"GalacticraftAmunRa:tile.podPlanks.stairs":{"0":{"name":"Lumipod Stairs","tr":"卢米坡德楼梯","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorZirconiumCarbide":{"0":{"oreDict":["rotorZirconiumCarbide"],"name":"碳化锆转子","tr":"碳化锆转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockHeatGenerator":{"0":{"name":"Solid Heat Generator","tr":"固体加热机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fluid Heat Generator","tr":"流体加热机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Radioisotope Heat Generator","tr":"放射性同位素温差加热机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Electric Heat Generator","tr":"电力加热机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustErbium":{"0":{"oreDict":["dustErbium"],"name":"铒粉","tr":"铒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFUncraftingTable":{"0":{"name":"Uncrafting Table","tr":"多功能工作台","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:onionsoupItem":{"0":{"oreDict":["foodOnionsoup"],"name":"Onion Soup","tr":"洋葱汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotPolonium":{"0":{"oreDict":["ingotPolonium"],"name":"钋锭","tr":"钋锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:crystalWand":{"0":{"name":"Inert Crystal Wand","tr":"惰性水晶杖芯","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:infiniteFruit":{"0":{"name":"The Fruit of Grisaia","tr":"禁忌之果","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.CoinForestryI":{"0":{"name":"Coin \"The Forest Ranger 10\"","tr":"护林员币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:trading_post":{"0":{"name":"Trading Post","tr":"贸易站","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:slabsDoubleFireproof":{"0":{"name":"Larch Wood Slab (Fireproof)","tr":"抗燃落叶树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Teak Wood Slab (Fireproof)","tr":"抗燃柚树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Desert Acacia Wood Slab (Fireproof)","tr":"抗燃沙漠刺槐台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lime Wood Slab (Fireproof)","tr":"抗燃酸橙树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Wood Slab (Fireproof)","tr":"抗燃栗树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Wenge Wood Slab (Fireproof)","tr":"抗燃崖豆台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Baobab Wood Slab (Fireproof)","tr":"抗燃猴面包树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sequoia Wood Slab (Fireproof)","tr":"抗燃红杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Wood Slab (Fireproof)","tr":"抗燃木棉台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ebony Wood Slab (Fireproof)","tr":"抗燃乌檀树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Mahogany Wood Slab (Fireproof)","tr":"抗燃桃心树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Balsa Wood Slab (Fireproof)","tr":"抗燃巴尔杉树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Wood Slab (Fireproof)","tr":"抗燃柳树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Walnut Wood Slab (Fireproof)","tr":"抗燃核桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Greenheart Wood Slab (Fireproof)","tr":"抗燃绿樟树台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Cherry Wood Slab (Fireproof)","tr":"抗燃樱桃台阶","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WandCapBloodIron":{"0":{"name":"Blood Iron Wand Cap","tr":"血铁杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipepowercobblestone":{"0":{"name":"Cobblestone-Covered Kinesis Pipe","tr":"圆石能量管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"openprinter:openprinter.printerInkBlack":{"0":{"name":"Black Ink","tr":"黑色墨水","tab":"开放式打印机","type":"Item","maxStackSize":1,"maxDurability":4001}},"gadomancy:BlockInfusionClaw":{"0":{"name":"Infusion Claw","tr":"注魔爪","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderZoo:guardiansBow":{"0":{"name":"Guardians Bow","tr":"守卫者之弓","tab":"EnderZoo","type":"Item","maxStackSize":1,"maxDurability":801}},"Thaumcraft:ItemResonator":{"0":{"name":"Essentia Resonator","tr":"源质谐振器","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:fluid_packet_decoder":{"0":{"name":"ME Fluid Packet Decoder","tr":"ME流体封包解码器","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cactusfruitseedItem":{"0":{"oreDict":["seedCactusfruit"," listAllseed"],"name":"Cactus Fruit Seed","tr":"仙人掌果种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:demonicSlate":{"0":{"name":"Demonic Slate","tr":"恶魔石板","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantumCrystal":{"0":{"name":"Quantum Crystal","tr":"量子晶体","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledMonazite":{"0":{"oreDict":["milledMonazite"],"name":"Milled Monazite","tr":"研磨独居石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Quad_Naquadahcell":{"0":{"name":"四联燃料棒(硅岩)","tr":"四联燃料棒(硅岩)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Thaumcraft:ItemThaumometer":{"0":{"name":"Thaumometer","tr":"魔导透镜","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:nutmegItem":{"0":{"oreDict":["cropNutmeg"],"name":"Nutmeg","tr":"肉豆蔻","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleChromaticGlass":{"0":{"oreDict":["plateDoubleChromaticGlass"],"name":"双重彩色玻璃板","tr":"双重彩色玻璃板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"BiblioCraft:BiblioIronLantern":{"0":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fancy Lantern","tr":"精致灯笼","tab":"BiblioCraft|灯具","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyChromaticGlass":{"0":{"oreDict":["dustTinyChromaticGlass"],"name":"小撮彩色玻璃粉","tr":"小撮彩色玻璃粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:figjellysandwichItem":{"0":{"oreDict":["foodFigjellysandwich"],"name":"Fig Jelly Sandwich","tr":"无花果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:eggplantparmItem":{"0":{"oreDict":["foodEggplantparm"],"name":"Eggplant Parm","tr":"茄子帕尔马意面","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemSwordThaumium":{"0":{"name":"Thaumium Sword","tr":"神秘剑","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"miscutils:itemRotorTalonite":{"0":{"oreDict":["rotorTalonite"],"name":"铬钴磷酸盐合金转子","tr":"铬钴磷酸盐合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:living_matter":{"0":{"name":"Living Matter","tr":"活跃物质","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:bootsMud":{"0":{"name":"Muddy Boots","tr":"泥巴靴子","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":27}},"Forestry:beeLarvaeGE":{"0":{"name":"Dreaming Larvae","tr":"梦境幼体","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:grapefruitjuiceItem":{"0":{"oreDict":["listAlljuice"," foodGrapefruitjuice"],"name":"Grapefruit Juice","tr":"葡萄柚汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.magnifying.glass":{"0":{"name":"Magnifying Glass","tr":"放大镜","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.NanoProcessorBoard":{"0":{"name":"Nano Processor Board","tr":"纳米处理器基板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:Crossbow":{"0":{"name":"§f山铜 十字弓","tr":"§f山铜 十字弓","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"dreamcraft:item.MoldFormHelmet":{"0":{"name":"Casting Form (Helmet Mold)","tr":"铸件(头盔)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:infestation_remedy":{"0":{"name":"Infestation Remedy","tr":"祛腐药","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:ceresweb":{"0":{"name":"Ceres Web","tr":"谷神星网","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:spear.gold":{"0":{"name":"Golden Spear","tr":"金标枪","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":33}},"witchery:hollowtears":{"0":{"name":"Flowing Spirit","tr":"虚伪泪水","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustFluoriteF":{"0":{"oreDict":["dustFluoriteF"],"name":"氟石(F)粉","tr":"氟石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ShieldFocus":{"0":{"name":"Wand Focus: Shield","tr":"法杖核心:护盾","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2}},"ThaumicHorizons:transductionAmplifier":{"0":{"name":"Transduction Amplifier","tr":"传导增幅器","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetArceusAlloy2B":{"0":{"oreDict":["nuggetArceusAlloy2B"],"name":"阿尔宙斯合金2B粒","tr":"阿尔宙斯合金2B粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodcase0":{"0":{"name":"Bloodwood Case","tr":"血树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Case","tr":"黑暗树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Case","tr":"桉树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Case","tr":"熔融树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Case","tr":"幽魂树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Case","tr":"车桑子树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Case","tr":"枫树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Amaranth Case","tr":"紫檀树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Case","tr":"红木展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Case","tr":"银铃树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Case","tr":"樱花树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Case","tr":"核桃树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Case","tr":"柳树展示盒","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChromeBars":{"0":{"oreDict":["barsChrome"],"name":"Chrome Bars","tr":"铬栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:toadintheholeItem":{"0":{"oreDict":["foodToadinthehole"],"name":"Toad in the Hole","tr":"布丁香肠","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCarrots":{"0":{"name":"Crated Carrot","tr":"装箱的胡萝卜","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:helmetWood":{"0":{"name":"Wooden Helmet","tr":"木头盔","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":23}},"ThaumicHorizons:vatInterior":{"0":{"name":"tile.ThaumicHorizons_vatInterior.name","tr":"tile.ThaumicHorizons_vatInterior.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustAgarditeLa":{"0":{"oreDict":["dustAgarditeLa"],"name":"钇砷铜矿(La)粉","tr":"钇砷铜矿(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:chamberTierFour":{"0":{"name":"Chamber (Tier 4)","tr":"弹膛(四级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorQuantumHelmet":{"1":{"name":"QuantumSuit Helmet","tr":"量子头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"QuantumSuit Helmet","tr":"量子头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"dreamcraft:item.CopperWandCap":{"0":{"name":"Copper Wand Cap","tr":"铜杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:WandCasting":{"0":{"name":"Iron Capped Wooden Wand","tr":"铁杖端木质法杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"128":{"name":"Thaumium Bossed Silverwood Scepter","tr":"神秘杖端银树权杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"2000":{"name":"Orichalcum Studded Cosmic Neutronium Staff","tr":"镶嵌山铜杖端宇宙中子手杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"144":{"name":"Elementium Kissed Dreamwood Staff","tr":"元素钢亲吻杖端梦之木手杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Terrasteel Nerfed Wooden Wand","tr":"泰拉钢杖端木质法杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"36":{"name":"Iron Capped Profane Wand","tr":"铁杖端渎神木法杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"84":{"name":"Void Aspected §kAlchemical§r Wand","tr":"虚空杖端§k炼金§r法杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"54":{"name":"Thaumium Bossed Silverwood Wand","tr":"神秘杖端银树法杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"72":{"name":"Thaumium Bossed Infernal Wand","tr":"神秘杖端炼狱法杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"168":{"name":"Alchemically Crowned Blood Staff","tr":"炼金纹饰杖端血腥手杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Gold Banded Greatwood Wand","tr":"金杖端宏伟之木法杖","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockProtactinium":{"0":{"oreDict":["blockProtactinium"],"name":"镤块","tr":"镤块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:friedchickenItem":{"0":{"oreDict":["foodFriedchicken"],"name":"Fried Chicken","tr":"炸鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockCustomOre":{"0":{"oreDict":["oreCinnabar"],"name":"Cinnabar Ore","tr":"朱砂矿石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreInfusedAir"],"name":"Air Infused Stone","tr":"风之蕴魔石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreInfusedFire"],"name":"Fire Infused Stone","tr":"火之蕴魔石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreInfusedWater"],"name":"Water Infused Stone","tr":"水之蕴魔石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreInfusedEarth"],"name":"Earth Infused Stone","tr":"地之蕴魔石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreInfusedOrder"],"name":"Order Infused Stone","tr":"秩序蕴魔石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oreInfusedEntropy"],"name":"Entropy Infused Stone","tr":"混沌蕴魔石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["oreAmber"],"name":"Amber Bearing Stone","tr":"琥珀矿石","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pumpkinyogurtItem":{"0":{"oreDict":["foodPumpkinyogurt"],"name":"Pumpkin Yogurt","tr":"南瓜酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:door_birch":{"0":{"name":"Birch Door","tr":"白桦木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:QuantumBootsTraveller":{"1":{"name":"Quantum Boots of the Traveller","tr":"量子旅行者之靴","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Quantum Boots of the Traveller","tr":"量子旅行者之靴","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemNuggetInconel690":{"0":{"oreDict":["nuggetInconel690"],"name":"镍铬基合金-690粒","tr":"镍铬基合金-690粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_white":{"0":{"name":"White Curtain","tr":"白色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemSwordVoid":{"0":{"name":"Void Sword","tr":"虚空剑","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":151}},"GalacticraftMars:tile.marsCobblestoneStairs":{"0":{"name":"Mars Cobblestone Stairs","tr":"火星圆石楼梯","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberryItem":{"0":{"oreDict":["cropStrawberry"," listAllfruit"," listAllberry"],"name":"Strawberry","tr":"草莓","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:elementiumLegs":{"0":{"name":"Elementium Leggings","tr":"源质钢护腿","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":271}},"AWWayofTime:waterSigil":{"0":{"name":"Water Sigil","tr":"水之印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:rocketCraftable":{"0":{"name":"Ammo - Rocket","tr":"弹药-制导火箭","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingTumbaga":{"0":{"oreDict":["ringTumbaga"],"name":"铜金合金环","tr":"铜金合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearAbyssalAlloy":{"0":{"oreDict":["gearGtAbyssalAlloy"," gearAbyssalAlloy"],"name":"深渊合金齿轮","tr":"深渊合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinWitchIV":{"0":{"name":"Coin \"Spirit 10K\"","tr":"巫师币$10K","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:carrotBag":{"0":{"name":"Carrot Bag","tr":"胡萝卜袋","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:autoenchantmenttable":{"0":{"name":"Auto Enchantment Table","tr":"自动附魔台","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtRuthenium":{"0":{"oreDict":["frameGtRuthenium"],"name":"钌框架","tr":"钌框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureCerite":{"0":{"oreDict":["dustPureCerite"],"name":"Purified Cerite Dust","tr":"洁净铈硅石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:berrygarden":{"0":{"name":"Berry Garden","tr":"草莓果园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaZirconium":{"0":{"oreDict":["cellPlasmaZirconium"],"name":"锆等离子体单元","tr":"锆等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetInconel625":{"0":{"oreDict":["nuggetInconel625"],"name":"镍铬基合金-625粒","tr":"镍铬基合金-625粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:prismarine0Stairs":{"0":{"name":"Prismarine Stairs","tr":"海晶石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:coffin":{"0":{"name":"Coffin","tr":"棺材","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CallistoIceColdIngot":{"0":{"oreDict":["ingotColdCallistoIce"],"name":"Callisto Cold Ice Ingot","tr":"木卫四玄冰锭","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Thornvines":{"0":{"oreDict":["cropVine"," cropThornVines"],"name":"Thornvines","tr":"荊藤","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:caramelicecreamItem":{"0":{"oreDict":["foodCaramelicecream"],"name":"Caramel Ice Cream","tr":"焦糖冰淇淋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.enderBow":{"0":{"name":"Ender Bow","tr":"末影弓","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":385}},"ThaumicTinkerer:cleansingTalisman":{"0":{"name":"Talisman of Remedium","tr":"防身护身符","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:oreLautarite":{"0":{"oreDict":["oreLautarite"],"name":"Lautarite Ore","tr":"碘钙石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustAgarditeY":{"0":{"oreDict":["dustAgarditeY"],"name":"钇砷铜矿(Y)粉","tr":"钇砷铜矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedingotQuadruple":{"96":{"oreDict":["ingotQuadrupleAdemicSteel"],"name":"四重硬钢锭","tr":"四重硬钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["ingotQuadrupleShirabon"],"name":"四重调律源金锭","tr":"四重调律源金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["ingotQuadrupleAdamantiumAlloy"],"name":"四重精金合金锭","tr":"四重精金合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["ingotQuadrupleAtomicSeparationCatalyst"],"name":"四重原子分离催化剂锭","tr":"四重原子分离催化剂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["ingotQuadrupleExtremelyUnstableNaquadah"],"name":"四重极不稳定硅岩锭","tr":"四重极不稳定硅岩锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["ingotQuadrupleMAR-M200Steel"],"name":"四重MAR-M200特种钢锭","tr":"四重MAR-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["ingotQuadrupleMAR-Ce-M200Steel"],"name":"四重MAR-Ce-M200特种钢锭","tr":"四重MAR-Ce-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["ingotQuadrupleRhodium-PlatedPalladium"],"name":"四重镀铑钯锭","tr":"四重镀铑钯锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["ingotQuadrupleRuridit"],"name":"四重钌铱合金锭","tr":"四重钌铱合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["ingotQuadrupleHighDurabilityCompoundSteel"],"name":"四重高耐久性复合钢锭","tr":"四重高耐久性复合钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["ingotQuadruplePreciousMetalsAlloy"],"name":"四重稀有金属合金锭","tr":"四重稀有金属合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["ingotQuadrupleEnrichedNaquadahAlloy"],"name":"四重富集硅岩合金锭","tr":"四重富集硅岩合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["ingotQuadrupleMetastableOganesson"],"name":"四重亚稳态鿫锭","tr":"四重亚稳态鿫锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:infusedFarmland":{"0":{"name":"Infused Farmland","tr":"蕴魔耕地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:livingwood1Stairs":{"0":{"name":"Livingwood Plank Stairs","tr":"活木板楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotMaragingSteel250":{"0":{"oreDict":["ingotHotMaragingSteel250"],"name":"热马氏体时效钢250锭","tr":"热马氏体时效钢250锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NagaScaleFragment":{"0":{"name":"Naga Scale Fragment","tr":"娜迦碎片","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BWHeatedWaterPumpBlock":{"0":{"name":"Simple Stirling Water Pump","tr":"简易斯特林水泵","tab":"BartWorks跨时代","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.GlowingMarshmallow":{"0":{"name":"Glowing Marshmallow","tr":"热棉花糖","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:Levitational Locomotive Relay":{"0":{"name":"Levitational Locomotive Relay","tr":"悬浮平台中继","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:coconutmilkItem":{"0":{"oreDict":["foodCoconutmilk"],"name":"Coconut Milk","tr":"椰奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VoidRod":{"0":{"oreDict":["stickVoid"],"name":"Void Rod","tr":"虚空杆","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedMiessiite":{"0":{"oreDict":["crushedPurifiedMiessiite"],"name":"Purified Crushed Miessiite Ore","tr":"洗净的硅灰石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:essentiaFilterCasing":{"0":{"name":"Essentia Filter Casing","tr":"源质过滤机械方块","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:plutoTChestT8":{"0":{"name":"Treasure Chest Tier 7","tr":"7阶宝箱","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:keyboard":{"0":{"oreDict":["oc:keyboard"],"name":"Keyboard","tr":"键盘","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleArceusAlloy2B":{"0":{"oreDict":["plateDoubleArceusAlloy2B"],"name":"双重阿尔宙斯合金2B板","tr":"双重阿尔宙斯合金2B板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:fishdinnerItem":{"0":{"oreDict":["foodFishdinner"],"name":"Fish Dinner","tr":"鲜鱼晚宴","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockRedcrystalDim":{"0":{"name":"Dim Redcrystal","tr":"弱化红晶","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallIodine":{"0":{"oreDict":["dustSmallIodine"],"name":"小堆碘粉","tr":"小堆碘粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:brown_kitchen_floor":{"0":{"name":"Brown Kitchen Floor","tr":"棕色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellArcanite":{"0":{"oreDict":["cellArcanite"],"name":"奥金单元","tr":"奥金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.maple":{"0":{"oreDict":["buttonWood"],"name":"Maple Button","tr":"枫树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCerite":{"0":{"oreDict":["dustTinyCerite"],"name":"小撮铈硅石粉","tr":"小撮铈硅石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialAxe":{"0":{"name":"Primordial Greataxe","tr":"元始巨斧","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1501}},"miscutils:itemDustSmallTitansteel":{"0":{"oreDict":["dustSmallTitansteel"],"name":"小堆泰坦精钢粉","tr":"小堆泰坦精钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.amaranth":{"0":{"oreDict":["trapdoorWood"],"name":"Amaranth Trapdoor","tr":"紫檀树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsBasicLogistics":{"0":{"name":"Basic Logistics Pipe","tr":"基础物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fieryPick":{"0":{"name":"Fiery Pick","tr":"炽热的铁镐","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1025}},"ThaumicHorizons:meatTH":{"0":{"name":"Unidentifiable Meat","tr":"无法辨认的肉","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeWire":{"0":{"name":"Casting Form (Wire Shape)","tr":"铸形(导线)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:ProofOfHeroes":{"0":{"name":"英雄の証","tr":"英雄の証","tab":"TST Meta Items 1","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.azurBlock":{"0":{"name":"Azur ⓪","tr":"Azur ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Azur ①","tr":"Azur ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Azur ②","tr":"Azur ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Azur ③","tr":"Azur ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Azur ④","tr":"Azur ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Azur ⑤","tr":"Azur ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Azur ⑥","tr":"Azur ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Azur ⑦","tr":"Azur ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Azur ⑧","tr":"Azur ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Azur ⑨","tr":"Azur ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Azur ⑩","tr":"Azur ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Azur ⑪","tr":"Azur ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Azur ⑫","tr":"Azur ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Azur ⑬","tr":"Azur ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Azur ⑭","tr":"Azur ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Azur ⑮","tr":"Azur ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:magicfeather":{"0":{"name":"Magical Feather","tr":"魔法羽毛","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":101}},"harvestcraft:orangesodaItem":{"0":{"oreDict":["foodOrangesoda"],"name":"Orange Soda","tr":"橙子汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallHypogen":{"0":{"oreDict":["dustSmallHypogen"],"name":"小堆海珀珍粉","tr":"小堆海珀珍粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTantalumCarbide":{"0":{"oreDict":["dustSmallTantalumCarbide"],"name":"小堆碳化钽粉","tr":"小堆碳化钽粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.knowledge.inscriber":{"0":{"name":"Knowledge Inscriber","tr":"知识记录仪","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongThallium":{"0":{"oreDict":["stickLongThallium"],"name":"长铊杆","tr":"长铊杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:ElectricGogglesRevealing":{"1":{"name":"Electric Goggles of Revealing","tr":"电子揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":166},"165":{"name":"Electric Goggles of Revealing","tr":"电子揭示护目镜","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":166}},"miscutils:itemIngotTumbaga":{"0":{"oreDict":["ingotTumbaga"],"name":"铜金合金锭","tr":"铜金合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pumpkinoatsconesItem":{"0":{"oreDict":["foodPumpkinoatscones"],"name":"Pumpkin Oat Scones","tr":"南瓜燕麦馅饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.steel.shears":{"0":{"oreDict":["craftingToolShears"],"name":"Steel Shears","tr":"钢剪刀","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":501}},"miscutils:itemRodLongZirconium":{"0":{"oreDict":["stickLongZirconium"],"name":"长锆杆","tr":"长锆杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_iron_block":{"0":{"oreDict":["blockBloodInfusedIron"],"name":"Blood Infused Iron Block","tr":"注血铁块","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:bifrost":{"0":{"name":"Temporary Bifrost Block","tr":"临时彩虹桥方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Volumetric_Flask":{"0":{"name":"容量瓶","tr":"容量瓶","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.door_birch":{"0":{"name":"Birch Door","tr":"白桦木门","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"Ztones:tile.iszmBlock":{"0":{"name":"Iszm ⓪","tr":"Iszm ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Iszm ①","tr":"Iszm ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Iszm ②","tr":"Iszm ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Iszm ③","tr":"Iszm ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Iszm ④","tr":"Iszm ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Iszm ⑤","tr":"Iszm ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Iszm ⑥","tr":"Iszm ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Iszm ⑦","tr":"Iszm ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Iszm ⑧","tr":"Iszm ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Iszm ⑨","tr":"Iszm ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Iszm ⑩","tr":"Iszm ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Iszm ⑪","tr":"Iszm ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Iszm ⑫","tr":"Iszm ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Iszm ⑬","tr":"Iszm ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Iszm ⑭","tr":"Iszm ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Iszm ⑮","tr":"Iszm ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockDarkSteelLadder":{"0":{"name":"Dark Steel Ladder","tr":"玄钢梯子","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:light":{"0":{"name":"tile.witchery:light.name","tr":"tile.witchery:light.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IronChest:diamondObsidianUpgrade":{"0":{"name":"Diamond to Obsidian Chest Upgrade","tr":"升级:钻石\u003e黑曜石","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:fakeAir":{"0":{"name":"tile.botania:fakeAir.name","tr":"tile.botania:fakeAir.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:Cast":{"0":{"name":"Shuriken Cast","tr":"手里剑铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Crossbow Limb Cast","tr":"弩臂铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Crossbow Body Cast","tr":"弩身铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Bow Limb Cast","tr":"弓臂铸模","tab":"匠魂|材料","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:okracreoleItem":{"0":{"oreDict":["foodOkracreole"],"name":"Okra Creole","tr":"克里奥尔秋葵","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinWitchII":{"0":{"name":"Coin \"Spirit 100\"","tr":"巫师币$100","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cart.beehouse":{"0":{"name":"Minecart with Bee House","tr":"蜂房车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Minecart with Apiary","tr":"蜂箱车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:boundPlateWind":{"0":{"name":"Wind Omega Plate","tr":"风`欧米伽胸甲","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"Botania:aesirRing":{"0":{"name":"Ring of the Aesir","tr":"诸神之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockFrameGtLafiumCompound":{"0":{"oreDict":["frameGtLafiumCompound"],"name":"路菲恩化合物框架","tr":"路菲恩化合物框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedRadioactiveMineralMix":{"0":{"oreDict":["crushedRadioactiveMineralMix"],"name":"Crushed Strange Ore","tr":"粉碎奇异矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:auraRingGreater":{"0":{"name":"Greater Band of Aura","tr":"高级光环之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"IronChest:BlockIronChest":{"0":{"oreDict":["chestIron"],"name":"Iron Chest","tr":"铁箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["chestGold"],"name":"Gold Chest","tr":"金箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["chestDiamond"],"name":"Diamond Chest","tr":"钻石箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["chestCopper"],"name":"Copper Chest","tr":"铜箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["chestSteel"],"name":"Steel Chest","tr":"钢箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["chestCrystal"],"name":"Crystal Chest","tr":"水晶箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["chestObsidian"],"name":"Obsidian Chest","tr":"黑曜石箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["chestDirt"],"name":"DirtChest 9000!","tr":"泥箱子9000!","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Dark Steel Chest","tr":"玄钢箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:kobolditepickaxe":{"0":{"name":"Koboldite Pickaxe","tr":"妖金镐","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1562}},"appliedenergistics2:item.ToolCertusQuartzSpade":{"0":{"name":"Certus Quartz Shovel","tr":"赛特斯石英锹","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"Natura:stair.bloodwood":{"0":{"oreDict":["stairWood"],"name":"Blood Stairs","tr":"血树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:coconutsmoothieItem":{"0":{"oreDict":["foodCoconutsmoothie"," listAllsmoothie"],"name":"Coconut Smoothie","tr":"椰奶冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:bramble":{"0":{"name":"Ender Bramble","tr":"末影荆棘","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Wild Bramble","tr":"野荆棘","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewRhenium":{"0":{"oreDict":["screwRhenium"],"name":"铼螺丝","tr":"铼螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botany:soilMeter":{"0":{"name":"Soil Meter","tr":"土壤检测计","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:knapsack":{"0":{"name":"Knapsack","tr":"背包","tab":"匠魂|材料","type":"Item","maxStackSize":10,"maxDurability":1}},"TaintedMagic:ItemShadowmetalPick":{"0":{"name":"Shadowmetal Pickaxe","tr":"暗影之镐","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":2201}},"Forestry:cratedPlum":{"0":{"name":"Crated Plum","tr":"装箱的李子","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2wct:infinityBoosterIcon":{"0":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"WitchingGadgets:item.WG_Bag":{"0":{"name":"Bag of Tricks","tr":"奇术口袋","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Voidlinked Bag","tr":"虚空口袋","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Enderlinked Bag","tr":"末影口袋","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Hungry Bag","tr":"饕餮口袋","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:biomeStoneA13Slab":{"0":{"name":"Metamorphic Desert Cobblestone Slab","tr":"变质沙漠圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MedalEngineer":{"0":{"name":"Medal - Engineer Supreme","tr":"顶尖工程师勋章","tab":"GTNH: 物品","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:pressureplate.maple":{"0":{"oreDict":["pressurePlateWood"],"name":"Maple Pressure Plate","tr":"枫树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyOctiron":{"0":{"oreDict":["dustTinyOctiron"],"name":"小撮八角铁粉","tr":"小撮八角铁粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:broccolindipItem":{"0":{"oreDict":["foodBroccolindip"],"name":"Broccoli n Dip","tr":"蘸酱西兰花","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDeadrock":{"0":{"name":"Weathered Deadrock","tr":"风化废石","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cracked Deadrock","tr":"碎裂废石","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Deadrock","tr":"废石","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedDirt":{"0":{"name":"Crated Dirt","tr":"装箱的泥土","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemPartCarbonMesh":{"0":{"name":"Raw Carbon Mesh","tr":"生碳网","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustNeptunium238":{"0":{"oreDict":["dustNeptunium238"],"name":"Neptunium 238 Dust","tr":"镎-238粉","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1000000000}},"appliedenergistics2:item.ItemAdvancedStorageCell.1024k":{"0":{"name":"1024k ME Storage Cell","tr":"1024k-ME存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"catwalks:cagedLadder_north_lit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongHypogen":{"0":{"oreDict":["stickLongHypogen"],"name":"长海珀珍杆","tr":"长海珀珍杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockDrive":{"0":{"name":"ME Drive","tr":"ME驱动器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedturbineBlade":{"10112":{"oreDict":["turbineBladeShirabon"],"name":"调律源金涡轮扇叶","tr":"调律源金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["turbineBladeBismutite"],"name":"泡铋涡轮扇叶","tr":"泡铋涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["turbineBladeZirconium"],"name":"锆涡轮扇叶","tr":"锆涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["turbineBladeCubicZirconia"],"name":"立方氧化锆涡轮扇叶","tr":"立方氧化锆涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["turbineBladeFluor-Buergerite"],"name":"氟铁电气石涡轮扇叶","tr":"氟铁电气石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["turbineBladeChromo-Alumino-Povondraite"],"name":"铬铝电气石涡轮扇叶","tr":"铬铝电气石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["turbineBladeVanadio-Oxy-Dravite"],"name":"钒镁电气石涡轮扇叶","tr":"钒镁电气石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["turbineBladeOlenite"],"name":"铝电气石涡轮扇叶","tr":"铝电气石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["turbineBladeRedZircon"],"name":"红锆石涡轮扇叶","tr":"红锆石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["turbineBladeSalt"],"name":"盐涡轮扇叶","tr":"盐涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["turbineBladeSpodumene"],"name":"锂辉石涡轮扇叶","tr":"锂辉石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["turbineBladeRockSalt"],"name":"岩盐涡轮扇叶","tr":"岩盐涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["turbineBladeFayalite"],"name":"铁橄榄石涡轮扇叶","tr":"铁橄榄石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["turbineBladeForsterite"],"name":"镁橄榄石涡轮扇叶","tr":"镁橄榄石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["turbineBladeHedenbergite"],"name":"钙铁辉石涡轮扇叶","tr":"钙铁辉石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["turbineBladeThorium232"],"name":"钍-232涡轮扇叶","tr":"钍-232涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["turbineBladePrasiolite"],"name":"堇云石涡轮扇叶","tr":"堇云石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["turbineBladeMagnetoResonatic"],"name":"磁共振石涡轮扇叶","tr":"磁共振石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["turbineBladeAtomicSeparationCatalyst"],"name":"原子分离催化剂涡轮扇叶","tr":"原子分离催化剂涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["turbineBladeCalifornium"],"name":"锎涡轮扇叶","tr":"锎涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["turbineBladeOrundum"],"name":"合成玉涡轮扇叶","tr":"合成玉涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"oreDict":["turbineBladeCalcium"],"name":"钙涡轮扇叶","tr":"钙涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["turbineBladeExtremelyUnstableNaquadah"],"name":"极不稳定硅岩涡轮扇叶","tr":"极不稳定硅岩涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["turbineBladeBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK涡轮扇叶","tr":"BArTiMaEuSNeK涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["turbineBladePTMEGElastomer"],"name":"PTMEG橡胶涡轮扇叶","tr":"PTMEG橡胶涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["turbineBladeRuthenium"],"name":"钌涡轮扇叶","tr":"钌涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["turbineBladeZn-ThAlloy"],"name":"锌钍合金涡轮扇叶","tr":"锌钍合金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["turbineBladeRhodium"],"name":"铑涡轮扇叶","tr":"铑涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["turbineBladeRhodium-PlatedPalladium"],"name":"镀铑钯涡轮扇叶","tr":"镀铑钯涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["turbineBladeTiberium"],"name":"泰伯利亚涡轮扇叶","tr":"泰伯利亚涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["turbineBladeRuridit"],"name":"钌铱合金涡轮扇叶","tr":"钌铱合金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["turbineBladeFluorspar"],"name":"氟石涡轮扇叶","tr":"氟石涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["turbineBladeHighDurabilityCompoundSteel"],"name":"高耐久性复合钢涡轮扇叶","tr":"高耐久性复合钢涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["turbineBladeAdemicSteel"],"name":"硬钢涡轮扇叶","tr":"硬钢涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["turbineBladeZircaloy-4"],"name":"锆锡合金-4涡轮扇叶","tr":"锆锡合金-4涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["turbineBladeZircaloy-2"],"name":"锆锡合金-2涡轮扇叶","tr":"锆锡合金-2涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["turbineBladeIncoloy-903"],"name":"耐热铬铁合金-903涡轮扇叶","tr":"耐热铬铁合金-903涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["turbineBladeAdamantiumAlloy"],"name":"精金合金涡轮扇叶","tr":"精金合金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["turbineBladeFluorophlogopite"],"name":"氟金云母涡轮扇叶","tr":"氟金云母涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["turbineBladeCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)涡轮扇叶","tr":"掺铈镥铝石榴石 (Ce:LuAG)涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"32237":{"oreDict":["turbineBladeMagnesia"],"name":"氧化镁涡轮扇叶","tr":"氧化镁涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["turbineBladeMAR-M200Steel"],"name":"MAR-M200特种钢涡轮扇叶","tr":"MAR-M200特种钢涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["turbineBladeMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢涡轮扇叶","tr":"MAR-Ce-M200特种钢涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["turbineBladeLithiumChloride"],"name":"氯化锂涡轮扇叶","tr":"氯化锂涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["turbineBladeSignalium"],"name":"信素涡轮扇叶","tr":"信素涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["turbineBladeLumiium"],"name":"流明涡轮扇叶","tr":"流明涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["turbineBladeArtherium-Sn"],"name":"阿瑟锡涡轮扇叶","tr":"阿瑟锡涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["turbineBladeTanmolyiumBeta-C"],"name":"钛钼合金β-C涡轮扇叶","tr":"钛钼合金β-C涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["turbineBladeDalisenite"],"name":"大力合金涡轮扇叶","tr":"大力合金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["turbineBladeHafnium"],"name":"铪涡轮扇叶","tr":"铪涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["turbineBladeHikarium"],"name":"光素涡轮扇叶","tr":"光素涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["turbineBladeTairitsu"],"name":"对立合金涡轮扇叶","tr":"对立合金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["turbineBladePreciousMetalsAlloy"],"name":"稀有金属合金涡轮扇叶","tr":"稀有金属合金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["turbineBladeEnrichedNaquadahAlloy"],"name":"富集硅岩合金涡轮扇叶","tr":"富集硅岩合金涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["turbineBladeMetastableOganesson"],"name":"亚稳态鿫涡轮扇叶","tr":"亚稳态鿫涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["turbineBladeZirconium"],"name":"锆涡轮扇叶","tr":"锆涡轮扇叶","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:radioactiveWaste":{"0":{"name":"Radioactive Waste","tr":"放射性废料","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPainter":{"0":{"name":"Painting Machine","tr":"喷涂机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustPhthalicAnhydride":{"0":{"oreDict":["dustPhthalicAnhydride"],"name":"邻苯二甲酸酐粉","tr":"邻苯二甲酸酐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:gourdgarden":{"0":{"name":"Gourd Garden","tr":"葫芦菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.sword.netherquartz":{"0":{"name":"Quartz Sword","tr":"石英剑","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"harvestcraft:appleciderItem":{"0":{"oreDict":["foodApplecider"],"name":"Apple Cider","tr":"苹果酒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"lootgames:LootGamesMasterBlock":{"0":{"name":"Puzzle Master","tr":"谜题大师","tab":"奖励游戏","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleGermanium":{"0":{"oreDict":["plateDoubleGermanium"],"name":"双重锗板","tr":"双重锗板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"dreamcraft:item.BowFletchingCast":{"0":{"name":"Bow Fletching Cast","tr":"箭羽铸模","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:voidTH":{"0":{"name":"Planar Boundary","tr":"异界边境","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustKoboldite":{"0":{"oreDict":["dustKoboldite"],"name":"妖金粉","tr":"妖金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampomegranateSapling":{"0":{"name":"Pomegranate Sapling","tr":"石榴树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyUN18Fertiliser":{"0":{"oreDict":["dustTinyUN18Fertiliser"],"name":"小撮流体肥料UN-18粉","tr":"小撮流体肥料UN-18粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:slime.pad":{"0":{"name":"Bounce Pad","tr":"弹跳板","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartAxeHead":{"1536":{"name":"精金 Axe Head","tr":"精金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Axe Head","tr":"神秘蓝金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Axe Head","tr":"琥珀 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Axe Head","tr":"纯镃 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Axe Head","tr":"谐镃 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Axe Head","tr":"聚氯乙烯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Axe Head","tr":"永恒 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Axe Head","tr":"磁物质 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Axe Head","tr":"赛特斯石英 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Axe Head","tr":"暗影秘银 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Axe Head","tr":"玄铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Axe Head","tr":"戴斯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Axe Head","tr":"铿铀 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Axe Head","tr":"通流琥珀金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Axe Head","tr":"末影粗胚 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Axe Head","tr":"末影(te) 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Axe Head","tr":"炽热的钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Axe Head","tr":"火石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Axe Head","tr":"力量 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Axe Head","tr":"石墨 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Axe Head","tr":"石墨烯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Axe Head","tr":"注魔金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Axe Head","tr":"风之魔晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Axe Head","tr":"火之魔晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Axe Head","tr":"地之魔晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Axe Head","tr":"水之魔晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Axe Head","tr":"混沌魔晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Axe Head","tr":"秩序魔晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Axe Head","tr":"玉 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Axe Head","tr":"碧玉 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Axe Head","tr":"陨铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Axe Head","tr":"陨钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Axe Head","tr":"硅岩 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Axe Head","tr":"硅岩合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Axe Head","tr":"富集硅岩 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Axe Head","tr":"超能硅岩 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Axe Head","tr":"下界石英 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Axe Head","tr":"下界之星 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Axe Head","tr":"三钛 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Axe Head","tr":"虚空 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Axe Head","tr":"胶木 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Axe Head","tr":"幽冥剧毒结晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Axe Head","tr":"强化 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Axe Head","tr":"铱锇合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Axe Head","tr":"阳光化合物 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Axe Head","tr":"魂金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Axe Head","tr":"蓝黄玉 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Axe Head","tr":"黄铜 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Axe Head","tr":"白铜 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Axe Head","tr":"深渊铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Axe Head","tr":"钻石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Axe Head","tr":"琥珀金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Axe Head","tr":"绿宝石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Axe Head","tr":"强化混合晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Axe Head","tr":"混合晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Axe Head","tr":"绿色蓝宝石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Axe Head","tr":"殷钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Axe Head","tr":"坎塔尔合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Axe Head","tr":"镁铝合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Axe Head","tr":"镍铬合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Axe Head","tr":"玄钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Axe Head","tr":"生铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Axe Head","tr":"聚乙烯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Axe Head","tr":"环氧树脂 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Axe Head","tr":"硅橡胶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Axe Head","tr":"聚己内酰胺 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Axe Head","tr":"聚四氟乙烯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Axe Head","tr":"蓝宝石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Axe Head","tr":"不锈钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Axe Head","tr":"坦桑石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Axe Head","tr":"锡铁合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Axe Head","tr":"黄玉 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Axe Head","tr":"哈氏合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Axe Head","tr":"锻铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Axe Head","tr":"铁木 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Axe Head","tr":"橄榄石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Axe Head","tr":"蛋白石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Axe Head","tr":"紫水晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Axe Head","tr":"暗影金属 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Axe Head","tr":"暗影铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Axe Head","tr":"暗影钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Axe Head","tr":"钢叶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Axe Head","tr":"骑士金属 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Axe Head","tr":"标准纯银 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Axe Head","tr":"玫瑰金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Axe Head","tr":"黑青铜 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Axe Head","tr":"铋青铜 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Axe Head","tr":"黑钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Axe Head","tr":"红钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Axe Head","tr":"蓝钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Axe Head","tr":"大马士革钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Axe Head","tr":"充能合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Axe Head","tr":"脉冲合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Axe Head","tr":"星辰银 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Axe Head","tr":"钴黄铜 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Axe Head","tr":"红石榴石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Axe Head","tr":"黄石榴石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Axe Head","tr":"温特姆 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Axe Head","tr":"黑花岗岩 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Axe Head","tr":"红花岗岩 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Axe Head","tr":"白石棉 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Axe Head","tr":"雄黄 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Axe Head","tr":"磁化铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Axe Head","tr":"磁化钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Axe Head","tr":"磁化钕 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Axe Head","tr":"碳化钨 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Axe Head","tr":"钒钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Axe Head","tr":"高速钢-G 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Axe Head","tr":"高速钢-E 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Axe Head","tr":"高速钢-S 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Axe Head","tr":"深铅 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Axe Head","tr":"量子 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Axe Head","tr":"深空秘银 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Axe Head","tr":"黑钚 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Axe Head","tr":"木卫四冰 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Axe Head","tr":"硬铝 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Axe Head","tr":"奥利哈钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Axe Head","tr":"三元金属 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Axe Head","tr":"聚苯硫醚 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Axe Head","tr":"聚苯乙烯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Axe Head","tr":"丁苯橡胶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Axe Head","tr":"镍锌铁氧体 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Axe Head","tr":"纤维强化的环氧树脂 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Axe Head","tr":"磁化钐 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Axe Head","tr":"无尽催化剂 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Axe Head","tr":"聚苯并咪唑 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Axe Head","tr":" 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Axe Head","tr":"钛铂钒合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Axe Head","tr":"时空 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Axe Head","tr":"大理石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Axe Head","tr":"神秘水晶 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Axe Head","tr":"末影钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Axe Head","tr":"复合粘土 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Axe Head","tr":"晶化合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Axe Head","tr":"旋律合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Axe Head","tr":"恒星合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Axe Head","tr":"晶化粉红史莱姆 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Axe Head","tr":"充能银 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Axe Head","tr":"生动合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Axe Head","tr":"灵宝 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Axe Head","tr":"超时空金属 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Axe Head","tr":"活石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Axe Head","tr":"盖亚之魂 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Axe Head","tr":"活木 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Axe Head","tr":"梦之木 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Axe Head","tr":"泡铋 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Axe Head","tr":"立方氧化锆 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Axe Head","tr":"氟铁电气石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Axe Head","tr":"铬铝电气石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Axe Head","tr":"钒镁电气石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Axe Head","tr":"铝电气石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Axe Head","tr":"红锆石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Axe Head","tr":"铁橄榄石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Axe Head","tr":"镁橄榄石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Axe Head","tr":"钙铁辉石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Axe Head","tr":"钍-232 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Axe Head","tr":"堇云石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Axe Head","tr":"磁共振石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Axe Head","tr":"锎 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Axe Head","tr":"BArTiMaEuSNeK 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Axe Head","tr":"钌 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Axe Head","tr":"铑 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Axe Head","tr":"镀铑钯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Axe Head","tr":"泰伯利亚 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Axe Head","tr":"钌铱合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Axe Head","tr":"氟石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Axe Head","tr":"高耐久性复合钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Axe Head","tr":"硬钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Axe Head","tr":"合成玉 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Axe Head","tr":"原子分离催化剂 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Axe Head","tr":"极不稳定硅岩 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Axe Head","tr":"锌钍合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Axe Head","tr":"锆锡合金-4 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Axe Head","tr":"锆锡合金-2 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Axe Head","tr":"耐热铬铁合金-903 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Axe Head","tr":"精金合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Axe Head","tr":"MAR-M200特种钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Axe Head","tr":"MAR-Ce-M200特种钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Axe Head","tr":"氯化锂 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Axe Head","tr":"信素 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Axe Head","tr":"流明 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Axe Head","tr":"阿瑟锡 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Axe Head","tr":"钛钼合金β-C 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Axe Head","tr":"大力合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Axe Head","tr":"光素 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Axe Head","tr":"对立合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Axe Head","tr":"稀有金属合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Axe Head","tr":"富集硅岩合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Axe Head","tr":"亚稳态鿫 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Axe Head","tr":"调律源金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Axe Head","tr":"魔钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Axe Head","tr":"泰拉钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Axe Head","tr":"源质钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Axe Head","tr":"磁流体约束恒星物质 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Axe Head","tr":"白矮星物质 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Axe Head","tr":"黑矮星物质 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Axe Head","tr":"宇宙素 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Axe Head","tr":"铝 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Axe Head","tr":"铍 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Axe Head","tr":"铋 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Axe Head","tr":"碳 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Axe Head","tr":"铬 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Axe Head","tr":"金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Axe Head","tr":"铱 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Axe Head","tr":"铅 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Axe Head","tr":"锰 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Axe Head","tr":"钼 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Axe Head","tr":"钕 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Axe Head","tr":"中子 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Axe Head","tr":"镍 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Axe Head","tr":"锇 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Axe Head","tr":"钯 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Axe Head","tr":"铂 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Axe Head","tr":"钚-239 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Axe Head","tr":"钚-241 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Axe Head","tr":"银 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Axe Head","tr":"钍 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Axe Head","tr":"钛 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Axe Head","tr":"钨 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Axe Head","tr":"铀-238 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Axe Head","tr":"铀-235 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Axe Head","tr":"红宝石 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Axe Head","tr":"红石合金 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Axe Head","tr":"终末 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Axe Head","tr":"导电铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Axe Head","tr":"磁钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Axe Head","tr":"钨钢 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Axe Head","tr":"烈焰 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Axe Head","tr":"脉冲铁 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Axe Head","tr":"龙 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Axe Head","tr":"觉醒龙 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Axe Head","tr":"褐铜 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Axe Head","tr":"山铜 斧刃","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:spark":{"0":{"name":"Spark","tr":"火花","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:icestockade":{"0":{"name":"Ice Stockade","tr":"冰围栏","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemSteamTurbineBlade":{"0":{"name":"Steam Turbine Blade","tr":"蒸汽涡轮扇叶","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamspiceleafCrop":{"0":{"name":"Spice Leaf Crop","tr":"香叶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellProtactinium":{"0":{"oreDict":["cellProtactinium"],"name":"镤单元","tr":"镤单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:chiliItem":{"0":{"oreDict":["foodChili"],"name":"Chili","tr":"辣椒酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:clever":{"0":{"name":"Lever","tr":"拉杆","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:endium_ingot":{"0":{"oreDict":["ingotHeeEndium"],"name":"Endium Ingot","tr":"终末锭","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormRound":{"0":{"name":"Casting Form (Round Mold)","tr":"铸件(滚珠)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingFusewood":{"0":{"name":"Crated Fusewood Sapling","tr":"装箱的熔融树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemDynamiteSticky":{"0":{"name":"Sticky Dynamite","tr":"粘性炸药","tab":"工业2","type":"Item","maxStackSize":16,"maxDurability":1}},"AWWayofTime:boundBootsFire":{"0":{"name":"Fire Omega Boots","tr":"火`欧米伽之靴","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"harvestcraft:mangojuiceItem":{"0":{"oreDict":["listAlljuice"," foodMangojuice"],"name":"Mango Juice","tr":"芒果汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TMechworks:SignalTerminal":{"0":{"name":"Signal Terminal","tr":"信号终端","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetherQuartzAxe":{"0":{"name":"Nether Quartz Axe","tr":"下界石英斧","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"harvestcraft:curryleafItem":{"0":{"oreDict":["cropCurryleaf"],"name":"Curry Leaf","tr":"咖哩叶","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:prism":{"0":{"name":"Mana Prism","tr":"魔力棱镜","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Tier4Booster":{"0":{"name":"Tier 4 Booster","tr":"4阶助推器","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:gt.blockcasingsNH":{"0":{"name":"空气过滤涡轮机械方块","tr":"空气过滤涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"空气过滤排气机械方块","tr":"空气过滤排气机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"热解炉机械方块","tr":"热解炉机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"进阶空气过滤涡轮机械方块","tr":"进阶空气过滤涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"进阶空气过滤排气机械方块","tr":"进阶空气过滤排气机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"超级空气过滤涡轮机械方块","tr":"超级空气过滤涡轮机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"超级空气过滤排气机械方块","tr":"超级空气过滤排气机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"UEV Machine Casing","tr":"UEV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"UIV Machine Casing","tr":"UIV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"UMV Machine Casing","tr":"UMV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"UXV Machine Casing","tr":"UXV机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"MAX Machine Casing","tr":"MAX机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemSensorLocationCard":{"0":{"name":"Reactor Sensor Location Card","tr":"反应堆传感定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:gurdleofgulg":{"0":{"name":"Gulg\u0027s Gurdle","tr":"瓜哥妖带","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":226}},"bartworks:BW_ItemBlocks":{"0":{"name":"Etched Lapis Cell","tr":"刻蚀青金石单元","tab":"GT2兼容","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plated Lapis Cell","tr":"镀层青金石单元","tab":"GT2兼容","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFFireflyJar":{"0":{"name":"Firefly Jar","tr":"萤火虫罐","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.GT2Destructopack":{"0":{"name":"毁灭者","tr":"毁灭者","tab":"GT2兼容","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:death_flower":{"0":{"name":"Death Flower","tr":"死亡之花","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Death Flower","tr":"死亡之花","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:stained_glass_pane_purple":{"0":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Stained Glass Pane","tr":"染色玻璃板","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:spear.stone":{"0":{"name":"Stone Spear","tr":"石头标枪","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":132}},"harvestcraft:strawberryseedItem":{"0":{"oreDict":["listAllseed"," seedStrawberry"],"name":"Strawberry Seed","tr":"草莓种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongIncoloy020":{"0":{"oreDict":["stickLongIncoloy020"],"name":"长耐热铬铁合金-020杆","tr":"长耐热铬铁合金-020杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingIncoloyDS":{"0":{"oreDict":["ringIncoloyDS"],"name":"耐热铬铁合金-DS环","tr":"耐热铬铁合金-DS环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:lifeEssence":{"0":{"name":"Life Essence","tr":"生命本质","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PicoWafer":{"0":{"name":"Pico Wafer","tr":"皮米晶圆","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinAdventureI":{"0":{"name":"Coin \"The Explorer 10\"","tr":"探险家币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:excavator":{"0":{"name":"§f山铜 开掘铲","tr":"§f山铜 开掘铲","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"dreamcraft:item.EngineeringProcessorEssentiaPulsatingCore":{"0":{"name":"Essentia Processor Tier I","tr":"源质处理器 I","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockSagMill":{"0":{"name":"SAG Mill","tr":"SAG磨粉机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaXenon":{"0":{"oreDict":["cellPlasmaXenon"],"name":"氙等离子体单元","tr":"氙等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:multi_fluid_storage4096":{"0":{"name":"§c4096k§r ME Multi-Fluid Storage Cell","tr":"§c4096k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellDichloroaceticAcid":{"0":{"oreDict":["cellDichloroaceticAcid"],"name":"二氯乙酸单元","tr":"二氯乙酸单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockThorium232":{"0":{"oreDict":["blockThorium232"],"name":"钍-232块","tr":"钍-232块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreGeikielite":{"0":{"oreDict":["oreGeikielite"],"name":"Geikielite Ore","tr":"镁钛矿矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleIndalloy140":{"0":{"oreDict":["plateDoubleIndalloy140"],"name":"双重铋铅合金140板","tr":"双重铋铅合金140板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"BloodArsenal:blood_infused_diamond_block":{"0":{"name":"Blood Infused Diamond Block","tr":"注血钻石块","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyStrontiumOxide":{"0":{"oreDict":["dustTinyStrontiumOxide"],"name":"小撮氧化锶粉","tr":"小撮氧化锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedplateDouble":{"96":{"oreDict":["plateDoubleAdemicSteel"],"name":"双重硬钢板","tr":"双重硬钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["plateDoubleShirabon"],"name":"双重调律源金板","tr":"双重调律源金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["plateDoubleAdamantiumAlloy"],"name":"双重精金合金板","tr":"双重精金合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["plateDoubleAtomicSeparationCatalyst"],"name":"双重原子分离催化剂板","tr":"双重原子分离催化剂板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["plateDoubleExtremelyUnstableNaquadah"],"name":"双重极不稳定硅岩板","tr":"双重极不稳定硅岩板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["plateDoubleMAR-M200Steel"],"name":"双重MAR-M200特种钢板","tr":"双重MAR-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["plateDoubleMAR-Ce-M200Steel"],"name":"双重MAR-Ce-M200特种钢板","tr":"双重MAR-Ce-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["plateDoubleRhodium-PlatedPalladium"],"name":"双重镀铑钯板","tr":"双重镀铑钯板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["plateDoubleRuridit"],"name":"双重钌铱合金板","tr":"双重钌铱合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["plateDoubleHighDurabilityCompoundSteel"],"name":"双重高耐久性复合钢板","tr":"双重高耐久性复合钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["plateDoublePreciousMetalsAlloy"],"name":"双重稀有金属合金板","tr":"双重稀有金属合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["plateDoubleEnrichedNaquadahAlloy"],"name":"双重富集硅岩合金板","tr":"双重富集硅岩合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["plateDoubleMetastableOganesson"],"name":"双重亚稳态鿫板","tr":"双重亚稳态鿫板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellHypogen":{"0":{"oreDict":["cellHypogen"],"name":"海珀珍单元","tr":"海珀珍单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraBees:alveary":{"0":{"name":"Mutator","tr":"基因突变器","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Frame Housing","tr":"框架栏","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Rain Shield","tr":"挡雨方块","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Alveary Lighting","tr":"蜂箱组日光灯","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Electrical Stimulator","tr":"电刺激器","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hatchery","tr":"孵化间","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Alveary Transmission","tr":"蜂箱组能量接口","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Alveary Unlighting","tr":"蜂箱组遮光器","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.cobaltum_plate":{"0":{"name":"Cobalt Chestplate","tr":"钴铠","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":561}},"TwilightForest:item.glassSword":{"0":{"name":"Glass Sword","tr":"玻璃剑","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":2}},"miscutils:itemDustDragonblood":{"0":{"oreDict":["dustDragonblood"],"name":"龙血粉","tr":"龙血粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallUraniumHexafluoride":{"0":{"oreDict":["dustSmallUraniumHexafluoride"],"name":"小堆六氟化铀粉","tr":"小堆六氟化铀粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicSword":{"0":{"name":"Draconic Sword","tr":"龙之剑","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"harvestcraft:porklettucewrapItem":{"0":{"oreDict":["foodPorklettucewrap"],"name":"Pork Lettuce Wrap","tr":"猪肉生菜卷","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.oxygenTankSuperHeavyFull":{"0":{"name":"Super Heavy Oxygen Tank","tr":"超大型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":8001},"8000":{"name":"Super Heavy Oxygen Tank","tr":"超大型氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":8001}},"miscutils:itemRodLongErbium":{"0":{"oreDict":["stickLongErbium"],"name":"长铒杆","tr":"长铒杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongPraseodymium":{"0":{"oreDict":["stickLongPraseodymium"],"name":"长镨杆","tr":"长镨杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTriniumTitaniumAlloy":{"0":{"oreDict":["dustTinyTriniumTitaniumAlloy"],"name":"小撮三元钛合金粉","tr":"小撮三元钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:planks":{"0":{"oreDict":["plankWood"],"name":"Eucalyptus Planks","tr":"桉树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"],"name":"Sakura Planks","tr":"樱花树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"],"name":"Ghostwood Planks","tr":"幽魂树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"],"name":"Redwood Planks","tr":"红木树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"],"name":"Bloodwood Planks","tr":"血树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plankWood"],"name":"Hopseed Planks","tr":"车桑子树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"],"name":"Maple Planks","tr":"枫树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"],"name":"Silverbell Planks","tr":"银铃树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["plankWood"],"name":"Amaranth Planks","tr":"紫檀树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["plankWood"],"name":"Tigerwood Planks","tr":"核桃树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["plankWood"],"name":"Willow Planks","tr":"柳树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["plankWood"],"name":"Darkwood Planks","tr":"黑暗树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["plankWood"],"name":"Fusewood Planks","tr":"熔融树木板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:soulBeacon":{"0":{"name":"Soul Beacon","tr":"灵魂信标","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:BWExpReversePumpBlock":{"0":{"name":"tile.ExpReversePump.0.name","tr":"tile.ExpReversePump.0.name","tab":"BartWorks跨时代","type":"Block","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:SpaceStationAntiGravityBlock":{"0":{"name":"Space station anti-gravity block LV Tier","tr":"空间站反重力方块 Low Tier","tab":"TST","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearZirconiumCarbide":{"0":{"oreDict":["gearGtZirconiumCarbide"," gearZirconiumCarbide"],"name":"碳化锆齿轮","tr":"碳化锆齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:brusselsproutseedItem":{"0":{"oreDict":["seedBrusselsprout"," listAllseed"],"name":"Brussel Sprout Seed","tr":"芽甘蓝种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyRunite":{"0":{"oreDict":["dustTinyRunite"],"name":"小撮虚恩粉","tr":"小撮虚恩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotTitansteel":{"0":{"oreDict":["ingotHotTitansteel"],"name":"热泰坦精钢锭","tr":"热泰坦精钢锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.quarried":{"0":{"oreDict":["stoneMarble"],"name":"Quarried Brick","tr":"采掘砖","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneMarble"],"name":"Fitted Quarried Stone","tr":"匀称采掘方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneMarble"],"name":"Quarried Block","tr":"采掘方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneMarble"],"name":"Ornate Quarried Stone","tr":"雕琢采掘方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneMarble"],"name":"Etched Quarried Stone","tr":"蚀刻采掘方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneMarble"],"name":"Quarried Cobblestone","tr":"采掘圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:Hydrazine":{"0":{"oreDict":["cellHydrazine"],"name":"肼单元","tr":"肼单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockHellFire":{"0":{"name":"Hellish Fire","tr":"地狱之火","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedYttrocerite":{"0":{"oreDict":["crushedYttrocerite"],"name":"Crushed Yttrocerite Ore","tr":"粉碎的铈钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:recordGaia1":{"0":{"name":"Scathed Music Disc","tr":"破损的唱片","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:part_fluid_conversion_monitor":{"0":{"name":"ME Fluid Conversion Monitor","tr":"ME流体交互监控器","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:recordGaia2":{"0":{"name":"Scathed Music Disc","tr":"破损的唱片","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:blockEnderGenerator":{"0":{"name":"Ender Generator","tr":"末影人发电机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingInconel625":{"0":{"oreDict":["ringInconel625"],"name":"镍铬基合金-625环","tr":"镍铬基合金-625环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:WandChargingFocus":{"0":{"name":"Wand Focus: Wand Charging","tr":"法杖核心:化魔","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":2}},"dreamcraft:item.CoinChunkloaderTierIII":{"0":{"name":"Chunkloader Coin Tier III","tr":"区块加载器硬币Tier III","tab":"GTNH: 物品","type":"Item","maxStackSize":4,"maxDurability":1}},"HardcoreEnderExpansion:obsidian_rod":{"0":{"name":"Obsidian Rod","tr":"黑曜石棍","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallMaragingSteel250":{"0":{"oreDict":["dustSmallMaragingSteel250"],"name":"小堆马氏体时效钢250粉","tr":"小堆马氏体时效钢250粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinCookI":{"0":{"name":"Coin \"The Cook 10\"","tr":"厨师币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedPlutoniumDepleted":{"0":{"name":"Fuel Rod (Depleted High Density Plutonium)","tr":"枯竭燃料棒(浓缩钚)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:woodenSingleSlab1":{"0":{"oreDict":["slabWood"],"name":"Sacred Oak Wood Slab","tr":"神圣橡木台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"],"name":"Cherry Wood Slab","tr":"樱桃树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabWood"],"name":"Dark Wood Slab","tr":"黑暗树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabWood"],"name":"Fir Wood Slab","tr":"杉树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabWood"],"name":"Ethereal Wood Slab","tr":"空灵树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["slabWood"],"name":"Magic Wood Slab","tr":"魔法树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["slabWood"],"name":"Mangrove Wood Slab","tr":"红树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["slabWood"],"name":"Palm Wood Slab","tr":"棕榈树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:woodenSingleSlab2":{"0":{"oreDict":["slabWood"],"name":"Redwood Wood Slab","tr":"红杉台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"],"name":"Willow Wood Slab","tr":"柳树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabWood"],"name":"Pine Wood Slab","tr":"松树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabWood"],"name":"Hellbark Wood Slab","tr":"地狱皮树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabWood"],"name":"Jacaranda Wood Slab","tr":"蓝花楹树台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.baseBlockCrystal":{"0":{"name":"Glowing Coral","tr":"发光珊瑚","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TitaniumIronPlate":{"0":{"name":"Titanium-Iron Plate","tr":"钛铁板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:apricotjuiceItem":{"0":{"oreDict":["listAlljuice"," foodApricotjuice"],"name":"Apricot Juice","tr":"杏子汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:zucchiniItem":{"0":{"oreDict":["listAllveggie"," cropZucchini"," listAllgreenveggie"],"name":"Zucchini","tr":"西葫芦","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.carbonFragments":{"0":{"name":"Fragmented Carbon","tr":"碳片","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.laveBlock":{"0":{"name":"Lave ⓪","tr":"Lave ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lave ①","tr":"Lave ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lave ②","tr":"Lave ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lave ③","tr":"Lave ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Lave ④","tr":"Lave ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lave ⑤","tr":"Lave ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Lave ⑥","tr":"Lave ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Lave ⑦","tr":"Lave ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Lave ⑧","tr":"Lave ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Lave ⑨","tr":"Lave ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lave ⑩","tr":"Lave ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Lave ⑪","tr":"Lave ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Lave ⑫","tr":"Lave ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Lave ⑬","tr":"Lave ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Lave ⑭","tr":"Lave ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Lave ⑮","tr":"Lave ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:waterstone":{"0":{"oreDict":["blockWaterstone"],"name":"Waterstone","tr":"流水石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Waterstone","tr":"流水石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Waterstone","tr":"流水石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Waterstone","tr":"流水石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Waterstone","tr":"流水石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Waterstone","tr":"流水石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Waterstone","tr":"流水石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotBloodSteel":{"0":{"oreDict":["ingotBloodSteel"],"name":"血钢锭","tr":"血钢锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotOctiron":{"0":{"oreDict":["ingotHotOctiron"],"name":"热八角铁锭","tr":"热八角铁锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotRhodium":{"0":{"oreDict":["ingotRhodium"],"name":"铑锭","tr":"铑锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderStorage:enderChest":{"0":{"oreDict":["enderChest"," transdimBlock"],"name":"Ender Chest","tr":"高级末影箱子","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"4096":{"oreDict":["enderChest"," transdimBlock"],"name":"Ender Tank","tr":"高级末影储罐","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.machine":{"0":{"name":"Coal Generator","tr":"燃煤发电机","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Compressor","tr":"压缩机","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.surveyor":{"0":{"name":"Signal Block Surveyor","tr":"信号域监测仪","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:MudRedSlurry":{"0":{"oreDict":["cellRedMudSlurry"],"name":"赤泥浆单元","tr":"赤泥浆单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZirconium":{"0":{"oreDict":["dustSmallZirconium"],"name":"小堆锆粉","tr":"小堆锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.glass":{"0":{"name":"Molten Glass","tr":"熔融玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaCalifornium":{"0":{"oreDict":["cellPlasmaCalifornium"],"name":"锎等离子体单元","tr":"锎等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBerryRasp":{"0":{"name":"Crated Raspberry","tr":"装箱的覆盆子","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewStellite":{"0":{"oreDict":["screwStellite"],"name":"铬钴锰钛合金螺丝","tr":"铬钴锰钛合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureFlorencite":{"0":{"oreDict":["dustImpureFlorencite"],"name":"Impure Florencite Dust","tr":"含杂磷铝铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:cKeyStone":{"0":{"name":"Creative Key Stone","tr":"创造锁","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Creative Key Stone","tr":"创造锁","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Creative Key Stone","tr":"创造锁","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Creative Key Stone","tr":"创造锁","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.solar":{"0":{"name":"Basic Solar Panel","tr":"基础太阳能板","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Advanced Solar Panel","tr":"高级太阳能板","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolBronzeSpade":{"0":{"name":"Bronze Shovel","tr":"青铜铲","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":251}},"miscutils:itemIngotTantalloy60":{"0":{"oreDict":["ingotTantalloy60"],"name":"钽钨合金-60锭","tr":"钽钨合金-60锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjRed|Illumination:projectred.illumination.lightbutton":{"0":{"name":"White Illumar Button","tr":"白色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Illumar Button","tr":"橙色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Illumar Button","tr":"品红色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Illumar Button","tr":"淡蓝色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Illumar Button","tr":"黄色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Illumar Button","tr":"黄绿色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Illumar Button","tr":"粉色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Grey Illumar Button","tr":"灰色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Grey Illumar Button","tr":"淡灰色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Illumar Button","tr":"青色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Illumar Button","tr":"紫色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Illumar Button","tr":"蓝色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Illumar Button","tr":"棕色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Illumar Button","tr":"绿色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Illumar Button","tr":"红色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Illumar Button","tr":"黑色照明按钮","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewAstralTitanium":{"0":{"oreDict":["screwAstralTitanium"],"name":"星体钛螺丝","tr":"星体钛螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotTantalloy61":{"0":{"oreDict":["ingotTantalloy61"],"name":"钽钨合金-61锭","tr":"钽钨合金-61锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyOrganicFertilizer":{"0":{"oreDict":["dustTinyOrganicFertilizer"],"name":"小撮生物肥料粉","tr":"小撮生物肥料粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:powerDistributor":{"0":{"oreDict":["oc:powerDistributor"],"name":"Power Distributor","tr":"能量分配器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongStellite":{"0":{"oreDict":["stickLongStellite"],"name":"长铬钴锰钛合金杆","tr":"长铬钴锰钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:tool.electric.meter":{"0":{"name":"Electric Meter","tr":"电表","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2stuff:Visualiser":{"0":{"name":"Network Visualisation Tool","tr":"网络可视化工具","tab":"应用能源附加机器","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyCyanoaceticAcid":{"0":{"oreDict":["dustTinyCyanoaceticAcid"],"name":"小撮氰乙酸粉","tr":"小撮氰乙酸粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodNitinol60":{"0":{"oreDict":["stickNitinol60"],"name":"镍钛诺60杆","tr":"镍钛诺60杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsApiaristSink":{"0":{"name":"BeeSink Logistics Pipe","tr":"蜜蜂收纳物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedingotTriple":{"96":{"oreDict":["ingotTripleAdemicSteel"],"name":"三重硬钢锭","tr":"三重硬钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["ingotTripleShirabon"],"name":"三重调律源金锭","tr":"三重调律源金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["ingotTripleAdamantiumAlloy"],"name":"三重精金合金锭","tr":"三重精金合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["ingotTripleAtomicSeparationCatalyst"],"name":"三重原子分离催化剂锭","tr":"三重原子分离催化剂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["ingotTripleExtremelyUnstableNaquadah"],"name":"三重极不稳定硅岩锭","tr":"三重极不稳定硅岩锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["ingotTripleMAR-M200Steel"],"name":"三重MAR-M200特种钢锭","tr":"三重MAR-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["ingotTripleMAR-Ce-M200Steel"],"name":"三重MAR-Ce-M200特种钢锭","tr":"三重MAR-Ce-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["ingotTripleRhodium-PlatedPalladium"],"name":"三重镀铑钯锭","tr":"三重镀铑钯锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["ingotTripleRuridit"],"name":"三重钌铱合金锭","tr":"三重钌铱合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["ingotTripleHighDurabilityCompoundSteel"],"name":"三重高耐久性复合钢锭","tr":"三重高耐久性复合钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["ingotTriplePreciousMetalsAlloy"],"name":"三重稀有金属合金锭","tr":"三重稀有金属合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["ingotTripleEnrichedNaquadahAlloy"],"name":"三重富集硅岩合金锭","tr":"三重富集硅岩合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["ingotTripleMetastableOganesson"],"name":"三重亚稳态鿫锭","tr":"三重亚稳态鿫锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:technical2":{"0":{"name":"Transparent Technical Block","tr":"简易工艺方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Transparent Technical Block","tr":"简易工艺方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Transparent Technical Block","tr":"简易工艺方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Transparent Technical Block","tr":"简易工艺方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:technical4":{"0":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Technical Block","tr":"工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:technical3":{"0":{"name":"Industrial Technical Block","tr":"工业工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Industrial Technical Block","tr":"工业工艺方块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstBookcase":{"0":{"name":"Acacia Bookcase","tr":"金合欢书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Bookcase","tr":"巴尔杉书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Bookcase","tr":"猴面包树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Bookcase","tr":"樱桃树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Bookcase","tr":"栗树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Bookcase","tr":"柑橘树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Bookcase","tr":"乌檀树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Bookcase","tr":"樟树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Bookcase","tr":"木棉书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Bookcase","tr":"落叶松书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Bookcase","tr":"菩提树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Bookcase","tr":"白皮树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Bookcase","tr":"桃花心木书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Bookcase","tr":"枫树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Bookcase","tr":"棕榈树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Bookcase","tr":"木瓜树书架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:explosive.slime":{"0":{"name":"SDX","tr":"SDX粘性炸药","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"SDX","tr":"SDX粘性炸药","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:plax":{"0":{"name":"Plax Crop","tr":"纤化麦","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_gray":{"0":{"name":"Gray Curtain","tr":"灰色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:charm_pouch":{"0":{"name":"Charm Pouch","tr":"护符袋","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:item.steel_axe":{"0":{"name":"Heavy Duty Axe","tr":"重斧","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":769}},"harvestthenether:netherLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Nether Leaves","tr":"下界树叶","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"Genetics:misc":{"0":{"name":"Reinforced Casing","tr":"硬化部件","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"DNA Dye","tr":"DNA 染料","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Fluorescent Dye","tr":"荧光染料","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Enzyme","tr":"酶","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Growth Medium","tr":"培养基","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Blank Sequence","tr":"空白序列","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Empty Serum Vial","tr":"空血清瓶","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Empty Serum Array","tr":"空血清阵列","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Glass Cylinder","tr":"玻璃罐","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Integrated Circuit Board","tr":"集成电路板","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Integrated CPU","tr":"集成 CPU","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Integrated Casing","tr":"集成部件","tab":"基因","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:plantmine":{"0":{"name":"Poppy of Webs","tr":"网玫瑰","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Poppy of Ink","tr":"墨玫瑰","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poppy of Thorns","tr":"荆棘玫瑰","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Poppy of Sprouting","tr":"发芽玫瑰","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Dandelion of Webs","tr":"网蒲公英","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dandelion of Ink","tr":"墨蒲公英","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Dandelion of Thorns","tr":"荆棘蒲公英","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Dandelion of Sprouting","tr":"发芽蒲公英","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Shrub of Webs","tr":"网灌木","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Shrub of Ink","tr":"墨灌木","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Shrub of Thorns","tr":"荆棘灌木","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Shrub of Sprouting","tr":"发芽灌木","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemcrystalmemory":{"0":{"name":"Crystal Memory","tr":"模式存储水晶","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:refractorySeedOil":{"0":{"name":"Seed Oil Capsule","tr":"种子油胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:GeneSample":{"0":{"name":"Gene Sample","tr":"基因样本","tab":"基因工业|样本","type":"Item","maxStackSize":1,"maxDurability":1}},"gravisuiteneo:epicLappack":{"1":{"name":"Epic Lappack","tr":"史诗电池背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Epic Lappack","tr":"史诗电池背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:aniline":{"0":{"oreDict":["cellAniline"],"name":"苯胺单元","tr":"苯胺单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtMaragingSteel350":{"0":{"oreDict":["frameGtMaragingSteel350"],"name":"马氏体时效钢350框架","tr":"马氏体时效钢350框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fieryBlood":{"0":{"name":"Fiery Blood","tr":"炽热的血液","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:coffeebeanItem":{"0":{"oreDict":["cropCoffee"],"name":"Coffee Beans","tr":"咖啡豆","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:eggplantItem":{"0":{"oreDict":["cropEggplant"," listAllveggie"],"name":"Eggplant","tr":"茄子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyUraniumHexafluoride":{"0":{"oreDict":["dustTinyUraniumHexafluoride"],"name":"小撮六氟化铀粉","tr":"小撮六氟化铀粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotCalifornium":{"0":{"oreDict":["ingotCalifornium"],"name":"锎锭","tr":"锎锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:starfruitjellyItem":{"0":{"oreDict":["foodStarfruitjelly"],"name":"Starfruit Jelly","tr":"杨桃果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.540k_Space_Coolantcell":{"0":{"name":"540k空间冷却单元","tr":"540k空间冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"harvestcraft:pamcherrycheeseCake":{"0":{"name":"Cherry Cheese Cake","tr":"樱桃芝士蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:yorkshirepuddingItem":{"0":{"oreDict":["foodYorkshirepudding"],"name":"Yorkshire Pudding","tr":"约克郡布丁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterPink":{"0":{"name":"Pink Painter","tr":"粉色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"dreamcraft:item.LongObsidianRod":{"0":{"oreDict":["stickLongObsidian"],"name":"Long Obsidian Rod","tr":"黑曜石长杆","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:gooseberryjellysandwichItem":{"0":{"oreDict":["foodGooseberryjellysandwich"],"name":"Gooseberry Jelly Sandwich","tr":"醋栗果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustPraseodymium":{"0":{"oreDict":["dustPraseodymium"],"name":"镨粉","tr":"镨粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTriniumTitaniumAlloy":{"0":{"oreDict":["plateTriniumTitaniumAlloy"],"name":"三元钛合金板","tr":"三元钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:chestSealLinked":{"0":{"name":"Dark Chest Binding Seal","tr":"黑色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Red Chest Binding Seal","tr":"红色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Chest Binding Seal","tr":"绿色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Brown Chest Binding Seal","tr":"棕色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Chest Binding Seal","tr":"蓝色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Purple Chest Binding Seal","tr":"紫色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Cyan Chest Binding Seal","tr":"青色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Light Gray Chest Binding Seal","tr":"淡灰色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Gray Chest Binding Seal","tr":"灰色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Chest Binding Seal","tr":"粉色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Chest Binding Seal","tr":"黄绿色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Yellow Chest Binding Seal","tr":"黄色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Light Blue Chest Binding Seal","tr":"淡蓝色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Chest Binding Seal","tr":"品红色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Orange Chest Binding Seal","tr":"橙色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Pale Chest Binding Seal","tr":"白色箱子封蜡","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateMeatRaw":{"0":{"oreDict":["plateMeatRaw"],"name":"生肉板","tr":"生肉板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaCookie":{"0":{"name":"Biscuit of Totality","tr":"魔力曲奇","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.doorSort":{"0":{"name":"Sortingwood Door","tr":"Sortingwood Door","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:golemLinker":{"0":{"name":"Golem Linking Bell","tr":"傀儡绑定铃铛","tab":"自动化魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"AdvancedSolarPanel:hybrid_solar_helmet":{"1":{"name":"Hybrid Solar Helmet","tr":"混合太阳能头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Hybrid Solar Helmet","tr":"混合太阳能头盔","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:orePerroudite":{"0":{"oreDict":["orePerroudite"],"name":"Perroudite Ore","tr":"溴硫银汞矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockStoneDevice":{"0":{"name":"Alchemical Furnace","tr":"炼金炉","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Arcane Pedestal","tr":"奥术基座","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Runic Matrix","tr":"符文矩阵","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Wand Recharge Pedestal","tr":"法杖充能基座","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Compound Recharge Focus","tr":"复合充能核心","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Node Stabilizer","tr":"节点稳定器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Advanced Node Stabilizer","tr":"高级节点稳定器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Node Transducer","tr":"节点换能器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Arcane Spa","tr":"奥术浴场","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Focal Manipulator","tr":"核心镶饰台","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Flux Scrubber","tr":"咒波洗涤器","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:redStringDispenser":{"0":{"name":"Red Stringed Dispenser","tr":"红线发射器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BlackPlutoniumCompressedPlate":{"0":{"name":"Compressed Black Plutonium Plate","tr":"航天黑钚板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedGTEnhancementcapsule":{"512":{"oreDict":["capsuleEthylene"],"name":"乙烯胶囊","tr":"乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"513":{"oreDict":["capsulePropene"],"name":"丙烯胶囊","tr":"丙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"514":{"oreDict":["capsuleVinylAcetate"],"name":"乙酸乙烯酯胶囊","tr":"乙酸乙烯酯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"515":{"oreDict":["capsulePolyvinylAcetate"],"name":"聚乙酸乙烯酯胶囊","tr":"聚乙酸乙烯酯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["capsuleArgon"],"name":"氩胶囊","tr":"氩胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"516":{"oreDict":["capsuleMethylAcetate"],"name":"乙酸甲酯胶囊","tr":"乙酸甲酯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"517":{"oreDict":["capsuleAllylChloride"],"name":"烯丙基氯胶囊","tr":"烯丙基氯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"518":{"oreDict":["capsuleHydrochloricAcid"],"name":"氢氯酸胶囊","tr":"氢氯酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"519":{"oreDict":["capsuleHypochlorousAcid"],"name":"次氯酸胶囊","tr":"次氯酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"522":{"oreDict":["capsuleBenzene"],"name":"苯胶囊","tr":"苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"523":{"oreDict":["capsulePhenol"],"name":"苯酚胶囊","tr":"苯酚胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"524":{"oreDict":["capsuleIsopropylbenzene"],"name":"异丙苯胶囊","tr":"异丙苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"525":{"oreDict":["capsulePhosphoricAcid"],"name":"磷酸胶囊","tr":"磷酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"526":{"oreDict":["capsuleSaltWater"],"name":"盐水胶囊","tr":"盐水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["capsuleChlorine"],"name":"氯胶囊","tr":"氯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"527":{"oreDict":["capsuleIronIIIChloride"],"name":"三氯化铁胶囊","tr":"三氯化铁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"528":{"oreDict":["capsuleLife"],"name":"生命本质胶囊","tr":"生命本质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["capsuleDeuterium"],"name":"氘胶囊","tr":"氘胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["capsuleFluorine"],"name":"氟胶囊","tr":"氟胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"539":{"oreDict":["capsuleSiliconTetrafluoride"],"name":"四氟化硅胶囊","tr":"四氟化硅胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"540":{"oreDict":["capsuleSiliconTetrachloride"],"name":"四氯化硅胶囊","tr":"四氯化硅胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["capsuleHydrogen"],"name":"氢胶囊","tr":"氢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"541":{"oreDict":["capsuleTrichlorosilane"],"name":"三氯硅烷胶囊","tr":"三氯硅烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["capsuleHelium"],"name":"氦胶囊","tr":"氦胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"542":{"oreDict":["capsuleHexachlorodisilane"],"name":"六氯乙硅烷胶囊","tr":"六氯乙硅烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["capsuleHelium-3"],"name":"氦-3胶囊","tr":"氦-3胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"543":{"oreDict":["capsuleDichlorosilane"],"name":"二氯硅烷胶囊","tr":"二氯硅烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"544":{"oreDict":["capsuleSilane"],"name":"硅烷胶囊","tr":"硅烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"oreDict":["capsuleMercury"],"name":"汞胶囊","tr":"汞胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"555":{"oreDict":["capsuleSulfuricAcid"],"name":"硫酸胶囊","tr":"硫酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"oreDict":["capsuleNitrogen"],"name":"氮胶囊","tr":"氮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"oreDict":["capsuleOxygen"],"name":"氧胶囊","tr":"氧胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["capsuleRadon"],"name":"氡胶囊","tr":"氡胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"oreDict":["capsuleGrade1PurifiedWater"],"name":"1级净化水胶囊","tr":"1级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["capsuleGrade2PurifiedWater"],"name":"2级净化水胶囊","tr":"2级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"86":{"oreDict":["capsuleGrade3PurifiedWater"],"name":"3级净化水胶囊","tr":"3级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"oreDict":["capsuleGrade4PurifiedWater"],"name":"4级净化水胶囊","tr":"4级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["capsuleGrade5PurifiedWater"],"name":"5级净化水胶囊","tr":"5级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["capsuleGrade6PurifiedWater"],"name":"6级净化水胶囊","tr":"6级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["capsuleGrade7PurifiedWater"],"name":"7级净化水胶囊","tr":"7级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["capsuleGrade8PurifiedWater"],"name":"8级净化水胶囊","tr":"8级净化水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"608":{"oreDict":["capsuleCetane-BoostedDiesel"],"name":"高十六烷值柴油胶囊","tr":"高十六烷值柴油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"153":{"oreDict":["capsuleConstructionFoam"],"name":"建筑泡沫胶囊","tr":"建筑泡沫胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"670":{"oreDict":["capsuleDilutedSulfuricAcid"],"name":"稀硫酸胶囊","tr":"稀硫酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"677":{"oreDict":["capsuleRedMud"],"name":"赤泥胶囊","tr":"赤泥胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"682":{"oreDict":["capsule2-Nitrochlorobenzene"],"name":"2-硝基氯苯胶囊","tr":"2-硝基氯苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"683":{"oreDict":["capsule1","2-Dimethylbenzene"],"name":"邻二甲苯胶囊","tr":"邻二甲苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"685":{"oreDict":["capsulePhthalicAcid"],"name":"邻苯二甲酸胶囊","tr":"邻苯二甲酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"686":{"oreDict":["capsule3","3-Dichlorobenzidine"],"name":"3,3\u0027-二氯联苯胺胶囊","tr":"3,3\u0027-二氯联苯胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"687":{"oreDict":["capsule3","3-Diaminobenzidine"],"name":"3,3\u0027-二氨基联苯胺胶囊","tr":"3,3\u0027-二氨基联苯胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"688":{"oreDict":["capsuleDiphenylIsophtalate"],"name":"间苯二甲酸二苯酯胶囊","tr":"间苯二甲酸二苯酯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"690":{"oreDict":["capsuleMTBEReactionMixture"],"name":"MTBE反应混合物胶囊","tr":"MTBE反应混合物胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"691":{"oreDict":["capsuleNitrousOxide"],"name":"一氧化二氮胶囊","tr":"一氧化二氮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"692":{"oreDict":["capsuleAnti-KnockAgent"],"name":"抗爆剂胶囊","tr":"抗爆剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"693":{"oreDict":["capsuleOctane"],"name":"辛烷胶囊","tr":"辛烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"694":{"oreDict":["capsuleRawGasoline"],"name":"粗汽油胶囊","tr":"粗汽油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"695":{"oreDict":["capsuleGasoline"],"name":"汽油胶囊","tr":"汽油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"696":{"oreDict":["capsuleHighOctaneGasoline"],"name":"高辛烷值汽油胶囊","tr":"高辛烷值汽油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"760":{"oreDict":["capsuleSuperCoolant"],"name":"超级冷却液胶囊","tr":"超级冷却液胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"257":{"oreDict":["capsuleUU-Amplifier"],"name":"UU增幅液体胶囊","tr":"UU增幅液体胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"258":{"oreDict":["capsuleUU-Matter"],"name":"UU物质胶囊","tr":"UU物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"775":{"oreDict":["capsuleDiaminodiphenylmethaneMixture"],"name":"二氨基二苯甲烷混合物胶囊","tr":"二氨基二苯甲烷混合物胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"776":{"oreDict":["capsuleDiphenylmethaneDiisocyanateMixture"],"name":"二苯基甲烷二异氰酸酯混合物胶囊","tr":"二苯基甲烷二异氰酸酯混合物胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"777":{"oreDict":["capsuleButyraldehyde"],"name":"丁醛胶囊","tr":"丁醛胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"778":{"oreDict":["capsuleIsobutyraldehyde"],"name":"异丁醛胶囊","tr":"异丁醛胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"779":{"oreDict":["capsuleNickelTetracarbonyl"],"name":"四羰基镍胶囊","tr":"四羰基镍胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"781":{"oreDict":["capsuleEthyleneOxide"],"name":"环氧乙烷胶囊","tr":"环氧乙烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"782":{"oreDict":["capsuleSiliconOil"],"name":"硅油胶囊","tr":"硅油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"783":{"oreDict":["capsuleEthyleneGlycol"],"name":"乙二醇胶囊","tr":"乙二醇胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"784":{"oreDict":["capsuleAcetaldehyde"],"name":"乙醛胶囊","tr":"乙醛胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"786":{"oreDict":["capsulePolyurethaneResin"],"name":"聚氨酯树脂胶囊","tr":"聚氨酯树脂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"787":{"oreDict":["capsuleN-Methyl-2-pyrrolidone"],"name":"N-甲基吡咯烷酮胶囊","tr":"N-甲基吡咯烷酮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"789":{"oreDict":["capsuleAcetylene"],"name":"乙炔胶囊","tr":"乙炔胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"790":{"oreDict":["capsule4-Nitroaniline"],"name":"4-硝基苯胺胶囊","tr":"4-硝基苯胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"792":{"oreDict":["capsuleMethylamine"],"name":"甲胺胶囊","tr":"甲胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"793":{"oreDict":["capsuleTrimethylamine"],"name":"三甲胺胶囊","tr":"三甲胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"794":{"oreDict":["capsulegamma-Butyrolactone"],"name":"γ-丁内酯胶囊","tr":"γ-丁内酯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"796":{"oreDict":["capsuleLiquidCrystalKevlar"],"name":"液晶凯芙拉胶囊","tr":"液晶凯芙拉胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"288":{"oreDict":["capsuleAdvancedGlue"],"name":"高级胶水胶囊","tr":"高级胶水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"801":{"oreDict":["capsuleThionylChloride"],"name":"氯化亚砜胶囊","tr":"氯化亚砜胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"290":{"oreDict":["capsuleForestryBiomass"],"name":"生物质胶囊","tr":"生物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"802":{"oreDict":["capsuleSulfurDichloride"],"name":"二氯化硫胶囊","tr":"二氯化硫胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"291":{"oreDict":["capsuleCharcoalByproducts"],"name":"木炭副产胶囊","tr":"木炭副产胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"803":{"oreDict":["capsuleDimethylTerephthalate"],"name":"对苯二甲酸二甲酯胶囊","tr":"对苯二甲酸二甲酯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"805":{"oreDict":["capsuleTerephthalicAcid"],"name":"对苯二甲酸胶囊","tr":"对苯二甲酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"806":{"oreDict":["capsule1","3-Dimethylbenzene"],"name":"间二甲苯胶囊","tr":"间二甲苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"807":{"oreDict":["capsule1","4-Dimethylbenzene"],"name":"对二甲苯胶囊","tr":"对二甲苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"809":{"oreDict":["capsuleNaphthenicAcid"],"name":"环烷酸胶囊","tr":"环烷酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"299":{"oreDict":["capsuleCreosote"],"name":"杂酚油胶囊","tr":"杂酚油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"301":{"oreDict":["capsuleFishOil"],"name":"鱼油胶囊","tr":"鱼油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"302":{"oreDict":["capsuleFermentedBiomass"],"name":"发酵生物质胶囊","tr":"发酵生物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"303":{"oreDict":["capsuleDiesel"],"name":"柴油胶囊","tr":"柴油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"304":{"oreDict":["capsuleRefinedGlue"],"name":"精制胶水胶囊","tr":"精制胶水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"817":{"oreDict":["capsulePhosphorusTrichloride"],"name":"三氯化磷胶囊","tr":"三氯化磷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"306":{"oreDict":["capsuleHotFryingOil"],"name":"热煎炸油胶囊","tr":"热煎炸油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"819":{"oreDict":["capsuleTrimethylBorate"],"name":"硼酸三甲酯胶囊","tr":"硼酸三甲酯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"309":{"oreDict":["capsuleLubricant"],"name":"润滑油胶囊","tr":"润滑油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"821":{"oreDict":["capsuleBauxiteSlurry"],"name":"铝土泥浆胶囊","tr":"铝土泥浆胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"310":{"oreDict":["capsuleMcGuffium239"],"name":"麦高芬239胶囊","tr":"麦高芬239胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"822":{"oreDict":["capsuleHeatedBauxiteSlurry"],"name":"热铝土泥浆胶囊","tr":"热铝土泥浆胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"823":{"oreDict":["capsuleSluiceJuice"],"name":"废液胶囊","tr":"废液胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"313":{"oreDict":["capsuleMilk"],"name":"牛奶胶囊","tr":"牛奶胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"827":{"oreDict":["capsuleGreenSapphireJuice"],"name":"绿色蓝宝石汁胶囊","tr":"绿色蓝宝石汁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"828":{"oreDict":["capsuleSapphireJuice"],"name":"蓝宝石汁胶囊","tr":"蓝宝石汁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"829":{"oreDict":["capsuleRubyJuice"],"name":"红宝石汁胶囊","tr":"红宝石汁胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"830":{"oreDict":["capsuleDimensionallyTranscendentCrudeCatalyst"],"name":"粗制超维度催化剂胶囊","tr":"粗制超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"831":{"oreDict":["capsuleDimensionallyTranscendentProsaicCatalyst"],"name":"平凡超维度催化剂胶囊","tr":"平凡超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"832":{"oreDict":["capsuleDimensionallyTranscendentResplendentCatalyst"],"name":"光辉超维度催化剂胶囊","tr":"光辉超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"833":{"oreDict":["capsuleDimensionallyTranscendentExoticCatalyst"],"name":"异星超维度催化剂胶囊","tr":"异星超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"834":{"oreDict":["capsuleDimensionallyTranscendentStellarCatalyst"],"name":"恒星超维度催化剂胶囊","tr":"恒星超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"835":{"oreDict":["capsuleExcitedDimensionallyTranscendentCrudeCatalyst"],"name":"激发的粗制超维度催化剂胶囊","tr":"激发的粗制超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"836":{"oreDict":["capsuleExcitedDimensionallyTranscendentProsaicCatalyst"],"name":"激发的平凡超维度催化剂胶囊","tr":"激发的平凡超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"837":{"oreDict":["capsuleExcitedDimensionallyTranscendentResplendentCatalyst"],"name":"激发的光辉超维度催化剂胶囊","tr":"激发的光辉超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"838":{"oreDict":["capsuleExcitedDimensionallyTranscendentExoticCatalyst"],"name":"激发的异星超维度催化剂胶囊","tr":"激发的异星超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"839":{"oreDict":["capsuleExcitedDimensionallyTranscendentStellarCatalyst"],"name":"激发的恒星超维度催化剂胶囊","tr":"激发的恒星超维度催化剂胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"840":{"oreDict":["capsuleDimensionallyTranscendentResidue"],"name":"超维度残留胶囊","tr":"超维度残留胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"330":{"oreDict":["capsuleWoodGas"],"name":"木炭气胶囊","tr":"木炭气胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"331":{"oreDict":["capsuleWoodTar"],"name":"木焦油胶囊","tr":"木焦油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"332":{"oreDict":["capsuleWoodVinegar"],"name":"木醋酸胶囊","tr":"木醋酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"844":{"oreDict":["capsuleCondensedRawStellarPlasmaMixture"],"name":"浓缩原始恒星等离子体混合物胶囊","tr":"浓缩原始恒星等离子体混合物胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"851":{"oreDict":["capsuleLiquidPrimordialMatter"],"name":"流体本源物质胶囊","tr":"流体本源物质胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"340":{"oreDict":["capsuleMethane"],"name":"甲烷胶囊","tr":"甲烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"341":{"oreDict":["capsuleCarbonDioxide"],"name":"二氧化碳胶囊","tr":"二氧化碳胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"853":{"oreDict":["capsuleDegenerateQuarkGluonPlasma"],"name":"简并夸克胶子等离子体胶囊","tr":"简并夸克胶子等离子体胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"342":{"oreDict":["capsuleNobleGases"],"name":"稀有气体胶囊","tr":"稀有气体胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"343":{"oreDict":["capsuleAir"],"name":"空气胶囊","tr":"空气胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"344":{"oreDict":["capsuleLiquidAir"],"name":"液态空气胶囊","tr":"液态空气胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"345":{"oreDict":["capsuleLiquidNitrogen"],"name":"液氮胶囊","tr":"液氮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"346":{"oreDict":["capsuleLiquidOxygen"],"name":"液氧胶囊","tr":"液氧胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"863":{"oreDict":["capsuleRadoxPolymer"],"name":"拉多X聚合物胶囊","tr":"拉多X聚合物胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"383":{"oreDict":["capsuleGlycerylTrinitrate"],"name":"硝化甘油胶囊","tr":"硝化甘油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"386":{"oreDict":["capsuleHolyWater"],"name":"圣水胶囊","tr":"圣水胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"391":{"oreDict":["capsuleTitaniumtetrachloride"],"name":"四氯化钛胶囊","tr":"四氯化钛胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"404":{"oreDict":["capsuleNitrogenDioxide"],"name":"二氧化氮胶囊","tr":"二氧化氮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"429":{"oreDict":["capsuleSodiumPersulfate"],"name":"过硫酸钠胶囊","tr":"过硫酸钠胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"431":{"oreDict":["capsuleHydrogenSulfide"],"name":"硫化氢胶囊","tr":"硫化氢胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"432":{"oreDict":["capsuleHeavyOil"],"name":"重油胶囊","tr":"重油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"433":{"oreDict":["capsuleRawOil"],"name":"原油胶囊","tr":"原油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"434":{"oreDict":["capsuleLightOil"],"name":"轻油胶囊","tr":"轻油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"435":{"oreDict":["capsuleNaturalGas"],"name":"天然气胶囊","tr":"天然气胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"436":{"oreDict":["capsuleSulfuricGas"],"name":"含硫炼油气胶囊","tr":"含硫炼油气胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"437":{"oreDict":["capsuleRefineryGas"],"name":"炼油气胶囊","tr":"炼油气胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"438":{"oreDict":["capsuleSulfuricNaphtha"],"name":"含硫石脑油胶囊","tr":"含硫石脑油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"439":{"oreDict":["capsuleSulfuricLightFuel"],"name":"含硫轻燃油胶囊","tr":"含硫轻燃油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"440":{"oreDict":["capsuleSulfuricHeavyFuel"],"name":"含硫重燃油胶囊","tr":"含硫重燃油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"441":{"oreDict":["capsuleNaphtha"],"name":"石脑油胶囊","tr":"石脑油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"442":{"oreDict":["capsuleLightFuel"],"name":"轻燃油胶囊","tr":"轻燃油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"443":{"oreDict":["capsuleHeavyFuel"],"name":"重燃油胶囊","tr":"重燃油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"444":{"oreDict":["capsuleLPG"],"name":"液化石油气胶囊","tr":"液化石油气胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"445":{"oreDict":["capsuleNaquadahFuel"],"name":"硅岩燃料胶囊","tr":"硅岩燃料胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"446":{"oreDict":["capsuleEnrichedNaquadria"],"name":"富集超能硅岩胶囊","tr":"富集超能硅岩胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"448":{"oreDict":["capsuleRawBioCatalystMedium"],"name":"生物培养基原液胶囊","tr":"生物培养基原液胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"449":{"oreDict":["capsuleSterilizedBioCatalystMedium"],"name":"灭菌生物培养基胶囊","tr":"灭菌生物培养基胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"450":{"oreDict":["capsuleChlorobenzene"],"name":"氯苯胶囊","tr":"氯苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"451":{"oreDict":["capsuleDilutedHydrochloricAcid"],"name":"稀盐酸胶囊","tr":"稀盐酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"453":{"oreDict":["capsuleRawGrowthCatalystMedium"],"name":"培养基原液胶囊","tr":"培养基原液胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"454":{"oreDict":["capsuleGrowthCatalystMedium"],"name":"无菌培养基胶囊","tr":"无菌培养基胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"468":{"oreDict":["capsuleBioDiesel"],"name":"生物柴油胶囊","tr":"生物柴油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"469":{"oreDict":["capsuleNitrationMixture"],"name":"硝酸混酸胶囊","tr":"硝酸混酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"470":{"oreDict":["capsuleGlycerol"],"name":"甘油胶囊","tr":"甘油胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"473":{"oreDict":["capsuleDichlorobenzene"],"name":"对二氯苯胶囊","tr":"对二氯苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"475":{"oreDict":["capsuleStyrene"],"name":"苯乙烯胶囊","tr":"苯乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"476":{"oreDict":["capsuleIsoprene"],"name":"异戊二烯胶囊","tr":"异戊二烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"477":{"oreDict":["capsuleTetranitromethane"],"name":"四硝基甲烷胶囊","tr":"四硝基甲烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"478":{"oreDict":["capsuleEthenone"],"name":"乙烯酮胶囊","tr":"乙烯酮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"479":{"oreDict":["capsuleEthane"],"name":"乙烷胶囊","tr":"乙烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"480":{"oreDict":["capsulePropane"],"name":"丙烷胶囊","tr":"丙烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"481":{"oreDict":["capsuleButane"],"name":"丁烷胶囊","tr":"丁烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"482":{"oreDict":["capsuleButene"],"name":"丁烯胶囊","tr":"丁烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"483":{"oreDict":["capsuleButadiene"],"name":"丁二烯胶囊","tr":"丁二烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"486":{"oreDict":["capsuleToluene"],"name":"甲苯胶囊","tr":"甲苯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"487":{"oreDict":["capsuleEpichlorohydrin"],"name":"环氧氯丙烷胶囊","tr":"环氧氯丙烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"489":{"oreDict":["capsuleVinylChloride"],"name":"氯乙烯胶囊","tr":"氯乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"490":{"oreDict":["capsuleSulfurDioxide"],"name":"二氧化硫胶囊","tr":"二氧化硫胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"491":{"oreDict":["capsuleSulfurTrioxide"],"name":"三氧化硫胶囊","tr":"三氧化硫胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"492":{"oreDict":["capsuleNitricAcid"],"name":"硝酸胶囊","tr":"硝酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"493":{"oreDict":["capsule1","1-Dimethylhydrazine"],"name":"偏二甲肼胶囊","tr":"偏二甲肼胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"494":{"oreDict":["capsuleChloramine"],"name":"氯胺胶囊","tr":"氯胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"495":{"oreDict":["capsuleDimethylamine"],"name":"二甲胺胶囊","tr":"二甲胺胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"496":{"oreDict":["capsuleDinitrogenTetroxide"],"name":"四氧化二氮胶囊","tr":"四氧化二氮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"497":{"oreDict":["capsuleNitricOxide"],"name":"一氧化氮胶囊","tr":"一氧化氮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"498":{"oreDict":["capsuleAmmonia"],"name":"氨胶囊","tr":"氨胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"499":{"oreDict":["capsuleDimethyldichlorosilane"],"name":"二甲基氯硅烷胶囊","tr":"二甲基氯硅烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"500":{"oreDict":["capsuleChloromethane"],"name":"氯甲烷胶囊","tr":"氯甲烷胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"502":{"oreDict":["capsuleTetrafluoroethylene"],"name":"四氟乙烯胶囊","tr":"四氟乙烯胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"503":{"oreDict":["capsuleHydrofluoricAcid"],"name":"氢氟酸胶囊","tr":"氢氟酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"504":{"oreDict":["capsuleChloroform"],"name":"氯仿胶囊","tr":"氯仿胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"505":{"oreDict":["capsuleBisphenolA"],"name":"双酚A胶囊","tr":"双酚A胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"506":{"oreDict":["capsuleAceticAcid"],"name":"乙酸胶囊","tr":"乙酸胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"507":{"oreDict":["capsuleCalciumAcetateSolution"],"name":"乙酸钙溶液胶囊","tr":"乙酸钙溶液胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"508":{"oreDict":["capsuleAcetone"],"name":"丙酮胶囊","tr":"丙酮胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"509":{"oreDict":["capsuleMethanol"],"name":"甲醇胶囊","tr":"甲醇胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"510":{"oreDict":["capsuleCarbonMonoxide"],"name":"一氧化碳胶囊","tr":"一氧化碳胶囊","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoilerChassis":{"0":{"name":"Advanced Boiler Chassis [Tier 0]","tr":"高级锅炉外壳 [0级]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Advanced Boiler Chassis [Tier 1]","tr":"高级锅炉外壳 [1级]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Advanced Boiler Chassis [Tier 2]","tr":"高级锅炉外壳 [2级]","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:expanderPowerTierThree":{"0":{"name":"Base Power Expander (Tier 3)","tr":"基座能量扩容(三级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:salmonpattiesItem":{"0":{"oreDict":["foodSalmonpatties"],"name":"Salmon Patties","tr":"三文鱼饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fluid.seedoil":{"0":{"name":"Seed Oil","tr":"种子油","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:unstableBlock":{"0":{"name":"White Unstable Cube","tr":"白色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Unstable Cube","tr":"橙色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Unstable Cube","tr":"品红色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Unstable Cube","tr":"淡蓝色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Unstable Cube","tr":"黄色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Unstable Cube","tr":"黄绿色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Unstable Cube","tr":"粉色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Unstable Cube","tr":"灰色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Gray Unstable Cube","tr":"淡灰色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Unstable Cube","tr":"青色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Unstable Cube","tr":"紫色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Unstable Cube","tr":"蓝色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Unstable Cube","tr":"棕色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Unstable Cube","tr":"绿色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Unstable Cube","tr":"红色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Unstable Cube","tr":"黑色不稳定立方","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCherry":{"0":{"name":"Crated Cherry","tr":"装箱的樱桃","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:stardust":{"0":{"name":"Stardust","tr":"星尘","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockAdvancedCraftingUnit":{"0":{"name":"64 Core Co-Processing Unit","tr":"64核并行处理单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"256 Core Co-Processing Unit","tr":"256核并行处理单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"1024 Core Co-Processing Unit","tr":"1024核并行处理单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"4096 Core Co-Processing Unit","tr":"4096核并行处理单元","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:hardenedMachine":{"0":{"name":"Hardened Casing","tr":"强化部件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemBatChargeLamaCrystal":{"1":{"name":"Charging Lapotron Crystal","tr":"兰波顿充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Charging Lapotron Crystal","tr":"兰波顿充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"ThaumicTinkerer:ichorPick":{"0":{"name":"Ichorium Pickaxe","tr":"灵宝镐","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"miscutils:itemRingInconel792":{"0":{"oreDict":["ringInconel792"],"name":"镍铬基合金-792环","tr":"镍铬基合金-792环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_MM":{"0":{"name":"T7: 鸟神星","tr":"T7: 鸟神星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotWhiteMetal":{"0":{"oreDict":["ingotWhiteMetal"],"name":"白物质锭","tr":"白物质锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:vampirehat":{"0":{"name":"Vampire Top Hat","tr":"吸血鬼礼帽","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":166}},"gtneioreplugin:blockDimensionDisplay_Mi":{"0":{"name":"T5: 天卫五","tr":"T5: 天卫五","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Mh":{"0":{"name":"T9: 马赫斯","tr":"T9: 马赫斯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"betterquesting:submit_station":{"0":{"name":"Object Submission Station (OSS)","tr":"提交站(OSS)","tab":"更好的任务","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Me":{"0":{"name":"T4: 水星","tr":"T4: 水星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureZimbabweite":{"0":{"oreDict":["dustPureZimbabweite"],"name":"Purified Zimbabweite Dust","tr":"洁净钛铌铅钠石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ma":{"0":{"name":"T2: 火星","tr":"T2: 火星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsSupplierLogistics":{"0":{"name":"Supplier Logistics Pipe","tr":"补给物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewCinobiteA243":{"0":{"oreDict":["screwCinobiteA243"],"name":"西诺柏A243螺丝","tr":"西诺柏A243螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:FocusExcavation":{"0":{"name":"Wand Focus: Excavation","tr":"法杖核心:采掘","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:enceladusglowstone":{"0":{"oreDict":["glowstone"," rockSpace"," rockEnceladus"],"name":"Enceladus Glowstone","tr":"土卫二萤石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CarbonPartHelmet":{"0":{"name":"Carbon Parts \"Helmet\"","tr":"纳米头盔后外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryEthanol":{"0":{"name":"Ethanol Capsule","tr":"耐火乙醇胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:gt.spacetime_compression_field_generator":{"0":{"name":"§f粗制§r压缩时空场发生器","tr":"§f粗制§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"§f原始§r压缩时空场发生器","tr":"§f原始§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"§f稳定§r压缩时空场发生器","tr":"§f稳定§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"§f先进§r压缩时空场发生器","tr":"§f先进§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"§f卓越§r压缩时空场发生器","tr":"§f卓越§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"§f异星§r压缩时空场发生器","tr":"§f异星§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"§f完美§r压缩时空场发生器","tr":"§f完美§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"§f太初§r压缩时空场发生器","tr":"§f太初§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"§f§l鸿蒙§r压缩时空场发生器","tr":"§f§l鸿蒙§r压缩时空场发生器","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"JABBA:moverDiamond":{"0":{"name":"Diamond Dolly","tr":"钻石手推车","tab":"更好的桶","type":"Item","maxStackSize":1,"maxDurability":7}},"miscutils:itemNuggetIncoloyMA956":{"0":{"oreDict":["nuggetIncoloyMA956"],"name":"耐热铬铁合金-MA956粒","tr":"耐热铬铁合金-MA956粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Mo":{"0":{"name":"T1: 月球","tr":"T1: 月球","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemHarvestSigil":{"0":{"name":"Harvest Goddess Sigil","tr":"丰收印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:barnardaClog":{"0":{"oreDict":["logWood"],"name":"Barnarda C Wood","tr":"巴纳德C树木","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteAxe":{"0":{"name":"Thauminite Axe","tr":"秘晶斧","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":975}},"GalaxySpace:item.plasmahoe":{"0":{"name":"Plasma Hoe","tr":"等离子锄","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101}},"TGregworks:tGregToolPartPickaxeHead":{"1536":{"name":"精金 Pickaxe Head","tr":"精金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Pickaxe Head","tr":"神秘蓝金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Pickaxe Head","tr":"琥珀 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Pickaxe Head","tr":"纯镃 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Pickaxe Head","tr":"谐镃 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Pickaxe Head","tr":"聚氯乙烯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Pickaxe Head","tr":"永恒 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Pickaxe Head","tr":"磁物质 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Pickaxe Head","tr":"赛特斯石英 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Pickaxe Head","tr":"暗影秘银 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Pickaxe Head","tr":"玄铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Pickaxe Head","tr":"戴斯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Pickaxe Head","tr":"铿铀 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Pickaxe Head","tr":"通流琥珀金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Pickaxe Head","tr":"末影粗胚 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Pickaxe Head","tr":"末影(te) 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Pickaxe Head","tr":"炽热的钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Pickaxe Head","tr":"火石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Pickaxe Head","tr":"力量 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Pickaxe Head","tr":"石墨 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Pickaxe Head","tr":"石墨烯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Pickaxe Head","tr":"注魔金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Pickaxe Head","tr":"风之魔晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Pickaxe Head","tr":"火之魔晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Pickaxe Head","tr":"地之魔晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Pickaxe Head","tr":"水之魔晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Pickaxe Head","tr":"混沌魔晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Pickaxe Head","tr":"秩序魔晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Pickaxe Head","tr":"玉 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Pickaxe Head","tr":"碧玉 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Pickaxe Head","tr":"陨铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Pickaxe Head","tr":"陨钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Pickaxe Head","tr":"硅岩 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Pickaxe Head","tr":"硅岩合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Pickaxe Head","tr":"富集硅岩 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Pickaxe Head","tr":"超能硅岩 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Pickaxe Head","tr":"下界石英 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Pickaxe Head","tr":"下界之星 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Pickaxe Head","tr":"三钛 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Pickaxe Head","tr":"虚空 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Pickaxe Head","tr":"胶木 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Pickaxe Head","tr":"幽冥剧毒结晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Pickaxe Head","tr":"强化 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Pickaxe Head","tr":"铱锇合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Pickaxe Head","tr":"阳光化合物 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Pickaxe Head","tr":"魂金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Pickaxe Head","tr":"蓝黄玉 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Pickaxe Head","tr":"黄铜 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Pickaxe Head","tr":"白铜 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Pickaxe Head","tr":"深渊铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Pickaxe Head","tr":"钻石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Pickaxe Head","tr":"琥珀金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Pickaxe Head","tr":"绿宝石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Pickaxe Head","tr":"强化混合晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Pickaxe Head","tr":"混合晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Pickaxe Head","tr":"绿色蓝宝石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Pickaxe Head","tr":"殷钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Pickaxe Head","tr":"坎塔尔合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Pickaxe Head","tr":"镁铝合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Pickaxe Head","tr":"镍铬合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Pickaxe Head","tr":"玄钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Pickaxe Head","tr":"生铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Pickaxe Head","tr":"聚乙烯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Pickaxe Head","tr":"环氧树脂 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Pickaxe Head","tr":"硅橡胶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Pickaxe Head","tr":"聚己内酰胺 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Pickaxe Head","tr":"聚四氟乙烯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Pickaxe Head","tr":"蓝宝石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Pickaxe Head","tr":"不锈钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Pickaxe Head","tr":"坦桑石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Pickaxe Head","tr":"锡铁合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Pickaxe Head","tr":"黄玉 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Pickaxe Head","tr":"哈氏合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Pickaxe Head","tr":"锻铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Pickaxe Head","tr":"铁木 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Pickaxe Head","tr":"橄榄石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Pickaxe Head","tr":"蛋白石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Pickaxe Head","tr":"紫水晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Pickaxe Head","tr":"暗影金属 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Pickaxe Head","tr":"暗影铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Pickaxe Head","tr":"暗影钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Pickaxe Head","tr":"钢叶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Pickaxe Head","tr":"骑士金属 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Pickaxe Head","tr":"标准纯银 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Pickaxe Head","tr":"玫瑰金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Pickaxe Head","tr":"黑青铜 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Pickaxe Head","tr":"铋青铜 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Pickaxe Head","tr":"黑钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Pickaxe Head","tr":"红钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Pickaxe Head","tr":"蓝钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Pickaxe Head","tr":"大马士革钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Pickaxe Head","tr":"充能合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Pickaxe Head","tr":"脉冲合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Pickaxe Head","tr":"星辰银 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Pickaxe Head","tr":"钴黄铜 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Pickaxe Head","tr":"红石榴石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Pickaxe Head","tr":"黄石榴石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Pickaxe Head","tr":"温特姆 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Pickaxe Head","tr":"黑花岗岩 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Pickaxe Head","tr":"红花岗岩 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Pickaxe Head","tr":"白石棉 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Pickaxe Head","tr":"雄黄 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Pickaxe Head","tr":"磁化铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Pickaxe Head","tr":"磁化钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Pickaxe Head","tr":"磁化钕 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Pickaxe Head","tr":"碳化钨 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Pickaxe Head","tr":"钒钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Pickaxe Head","tr":"高速钢-G 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Pickaxe Head","tr":"高速钢-E 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Pickaxe Head","tr":"高速钢-S 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Pickaxe Head","tr":"深铅 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Pickaxe Head","tr":"量子 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Pickaxe Head","tr":"深空秘银 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Pickaxe Head","tr":"黑钚 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Pickaxe Head","tr":"木卫四冰 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Pickaxe Head","tr":"硬铝 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Pickaxe Head","tr":"奥利哈钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Pickaxe Head","tr":"三元金属 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Pickaxe Head","tr":"聚苯硫醚 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Pickaxe Head","tr":"聚苯乙烯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Pickaxe Head","tr":"丁苯橡胶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Pickaxe Head","tr":"镍锌铁氧体 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Pickaxe Head","tr":"纤维强化的环氧树脂 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Pickaxe Head","tr":"磁化钐 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Pickaxe Head","tr":"无尽催化剂 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Pickaxe Head","tr":"聚苯并咪唑 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Pickaxe Head","tr":" 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Pickaxe Head","tr":"钛铂钒合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Pickaxe Head","tr":"时空 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Pickaxe Head","tr":"大理石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Pickaxe Head","tr":"神秘水晶 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Pickaxe Head","tr":"末影钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Pickaxe Head","tr":"复合粘土 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Pickaxe Head","tr":"晶化合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Pickaxe Head","tr":"旋律合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Pickaxe Head","tr":"恒星合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Pickaxe Head","tr":"晶化粉红史莱姆 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Pickaxe Head","tr":"充能银 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Pickaxe Head","tr":"生动合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Pickaxe Head","tr":"灵宝 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Pickaxe Head","tr":"超时空金属 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Pickaxe Head","tr":"活石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Pickaxe Head","tr":"盖亚之魂 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Pickaxe Head","tr":"活木 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Pickaxe Head","tr":"梦之木 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Pickaxe Head","tr":"泡铋 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Pickaxe Head","tr":"立方氧化锆 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Pickaxe Head","tr":"氟铁电气石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Pickaxe Head","tr":"铬铝电气石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Pickaxe Head","tr":"钒镁电气石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Pickaxe Head","tr":"铝电气石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Pickaxe Head","tr":"红锆石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Pickaxe Head","tr":"铁橄榄石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Pickaxe Head","tr":"镁橄榄石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Pickaxe Head","tr":"钙铁辉石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Pickaxe Head","tr":"钍-232 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Pickaxe Head","tr":"堇云石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Pickaxe Head","tr":"磁共振石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Pickaxe Head","tr":"锎 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Pickaxe Head","tr":"BArTiMaEuSNeK 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Pickaxe Head","tr":"钌 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Pickaxe Head","tr":"铑 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Pickaxe Head","tr":"镀铑钯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Pickaxe Head","tr":"泰伯利亚 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Pickaxe Head","tr":"钌铱合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Pickaxe Head","tr":"氟石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Pickaxe Head","tr":"高耐久性复合钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Pickaxe Head","tr":"硬钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Pickaxe Head","tr":"合成玉 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Pickaxe Head","tr":"原子分离催化剂 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Pickaxe Head","tr":"极不稳定硅岩 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Pickaxe Head","tr":"锌钍合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Pickaxe Head","tr":"锆锡合金-4 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Pickaxe Head","tr":"锆锡合金-2 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Pickaxe Head","tr":"耐热铬铁合金-903 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Pickaxe Head","tr":"精金合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Pickaxe Head","tr":"MAR-M200特种钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Pickaxe Head","tr":"MAR-Ce-M200特种钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Pickaxe Head","tr":"氯化锂 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Pickaxe Head","tr":"信素 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Pickaxe Head","tr":"流明 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Pickaxe Head","tr":"阿瑟锡 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Pickaxe Head","tr":"钛钼合金β-C 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Pickaxe Head","tr":"大力合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Pickaxe Head","tr":"光素 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Pickaxe Head","tr":"对立合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Pickaxe Head","tr":"稀有金属合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Pickaxe Head","tr":"富集硅岩合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Pickaxe Head","tr":"亚稳态鿫 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Pickaxe Head","tr":"调律源金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Pickaxe Head","tr":"魔钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Pickaxe Head","tr":"泰拉钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Pickaxe Head","tr":"源质钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Pickaxe Head","tr":"磁流体约束恒星物质 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Pickaxe Head","tr":"白矮星物质 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Pickaxe Head","tr":"黑矮星物质 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Pickaxe Head","tr":"宇宙素 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Pickaxe Head","tr":"铝 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Pickaxe Head","tr":"铍 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Pickaxe Head","tr":"铋 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Pickaxe Head","tr":"碳 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Pickaxe Head","tr":"铬 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Pickaxe Head","tr":"金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Pickaxe Head","tr":"铱 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Pickaxe Head","tr":"铅 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Pickaxe Head","tr":"锰 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Pickaxe Head","tr":"钼 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Pickaxe Head","tr":"钕 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Pickaxe Head","tr":"中子 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Pickaxe Head","tr":"镍 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Pickaxe Head","tr":"锇 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Pickaxe Head","tr":"钯 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Pickaxe Head","tr":"铂 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Pickaxe Head","tr":"钚-239 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Pickaxe Head","tr":"钚-241 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Pickaxe Head","tr":"银 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Pickaxe Head","tr":"钍 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Pickaxe Head","tr":"钛 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Pickaxe Head","tr":"钨 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Pickaxe Head","tr":"铀-238 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Pickaxe Head","tr":"铀-235 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Pickaxe Head","tr":"红宝石 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Pickaxe Head","tr":"红石合金 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Pickaxe Head","tr":"终末 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Pickaxe Head","tr":"导电铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Pickaxe Head","tr":"磁钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Pickaxe Head","tr":"钨钢 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Pickaxe Head","tr":"烈焰 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Pickaxe Head","tr":"脉冲铁 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Pickaxe Head","tr":"龙 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Pickaxe Head","tr":"觉醒龙 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Pickaxe Head","tr":"褐铜 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Pickaxe Head","tr":"山铜 镐头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.airFan":{"0":{"name":"Oxygen Fan","tr":"排气扇","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeFluidBasic":{"0":{"name":"Logistics Fluid Basic Pipe","tr":"物流流体基础管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallSiliconCarbide":{"0":{"oreDict":["dustSmallSiliconCarbide"],"name":"小堆碳化硅粉","tr":"小堆碳化硅粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ne":{"0":{"name":"下界","tr":"下界","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:interface":{"0":{"name":"Transvector Interface","tr":"矢量变换接口","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTeflon":{"0":{"oreDict":["cellTeflon"],"name":"特氟龙单元","tr":"特氟龙单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:steakandchipsItem":{"0":{"oreDict":["foodSteakandchips"],"name":"Steak and Chips","tr":"薯条牛排","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongTalonite":{"0":{"oreDict":["stickLongTalonite"],"name":"长铬钴磷酸盐合金杆","tr":"长铬钴磷酸盐合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallRadioactiveMineralMix":{"0":{"oreDict":["dustSmallRadioactiveMineralMix"],"name":"小堆放射性矿物混合物粉","tr":"小堆放射性矿物混合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsSatelliteLogistics":{"0":{"name":"Satellite Logistics Pipe","tr":"卫星物流管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:persimmonItem":{"0":{"oreDict":["listAllfruit"," cropPersimmon"],"name":"Persimmon","tr":"柿子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CopperDualCompressedPlates":{"0":{"name":"Compressed Dual Copper Plates","tr":"航天双层铜板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:turkeycookedItem":{"0":{"oreDict":["foodTurkeycooked"," listAllmeatcooked"," listAllturkeycooked"],"name":"Cooked Turkey","tr":"熟火鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"WarpTheory:blockVanish":{"0":{"name":"Unnamed Block, report to mod author.","tr":"未命名方块,请报告给作者.","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:toolShard":{"1":{"name":"Stone Shard","tr":"石碎片","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Shard","tr":"史莱姆碎片","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Shard","tr":"燧石碎片","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Shard","tr":"仙人掌碎片","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Shard","tr":"黑曜石碎片","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Shard","tr":"地狱岩碎片","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Shard","tr":"史莱姆碎片","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:trashcan":{"0":{"name":"Trash Can","tr":"垃圾桶","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Trash Can (Fluids)","tr":"垃圾桶(流体)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Trash Can (Energy)","tr":"垃圾桶(能量)","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Np":{"0":{"name":"T9: 奈佩里","tr":"T9: 奈佩里","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamnutmegSapling":{"0":{"name":"Nutmeg Sapling","tr":"肉豆蔻树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustThallium":{"0":{"oreDict":["dustThallium"],"name":"铊粉","tr":"铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:cadaverine":{"0":{"oreDict":["cellCadaverine"],"name":"尸胺单元","tr":"尸胺单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:frameAccelerated":{"0":{"name":"Accelerated Frame","tr":"加速框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":176}},"ThaumicHorizons:keystoneTH":{"0":{"name":"Blank Planar Keystone","tr":"空白异界要石","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestthenether:Quartz Axe":{"0":{"name":"Quartz Axe","tr":"石英斧","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":251}},"FloodLights:tileUVLight":{"0":{"name":"tile.floodlights:tileUVLight.name","tr":"tile.floodlights:tileUVLight.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockHafnium":{"0":{"oreDict":["blockHafnium"],"name":"铪块","tr":"铪块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockRhenium":{"0":{"oreDict":["blockRhenium"],"name":"铼块","tr":"铼块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:quartzhelmItem":{"0":{"name":"Quartz Helm","tr":"石英头盔","tab":"下界丰收","type":"Item","maxStackSize":1,"maxDurability":166}},"miscutils:itemPlateDoubleStaballoy":{"0":{"oreDict":["plateDoubleStaballoy"],"name":"双重贫铀合金板","tr":"双重贫铀合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:blockFrameGtHafnium":{"0":{"oreDict":["frameGtHafnium"],"name":"铪框架","tr":"铪框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldChestplate":{"0":{"name":"Mold (Chestplate)","tr":"模具(胸甲)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.cubeTalisman":{"0":{"name":"Talisman of the Cube","tr":"魔方护符","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockScaffold":{"0":{"name":"Scaffold","tr":"脚手架","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ob":{"0":{"name":"T5: 天卫四","tr":"T5: 天卫四","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:GeneticsProcessor":{"0":{"name":"Genetics Processor","tr":"基因加工仪","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaGlass":{"0":{"oreDict":["blockGlassEV"],"name":"Managlass","tr":"魔力玻璃","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:bloodrose":{"0":{"name":"Blood Poppy","tr":"血玫瑰","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ow":{"0":{"name":"主世界","tr":"主世界","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:mortarandpestleItem":{"0":{"oreDict":["toolMortarandpestle"],"name":"Mortar and Pestle","tr":"研钵及研杵","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"MagicBees:comb":{"0":{"oreDict":["beeComb"],"name":"Mundane Comb","tr":"平凡蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["beeComb"],"name":"Molten Comb","tr":"熔融蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["beeComb"],"name":"Occult Comb","tr":"神秘蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["beeComb"],"name":"Otherworldy Comb","tr":"异域蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["beeComb"],"name":"Transmuting Comb","tr":"蜕变蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["beeComb"],"name":"Papery Comb","tr":"纸质蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["beeComb"],"name":"Soul Comb","tr":"灵魂蜂窝","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"ironchestminecarts:minecart_chest_dirtchest9000":{"0":{"name":"Minecart with DirtChest9000","tr":"泥土箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"GraviSuite:BlockRelocatorPortal":{"0":{"name":"RelocatorPortal.name","tr":"重新定位入口.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:armor.steel.helmet":{"0":{"name":"Steel Helmet","tr":"钢头盔","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":276}},"witchery:shelfcompass":{"0":{"name":"Poppet Shelf Compass","tr":"娃娃架罗盘","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Pl":{"0":{"name":"T7: 冥王星","tr":"T7: 冥王星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ph":{"0":{"name":"T2: 火卫一","tr":"T2: 火卫一","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:nachoesItem":{"0":{"oreDict":["foodNachoes"],"name":"Nachoes","tr":"烤辣味干酪玉米片","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:somniancotton":{"0":{"name":"Wispy Cotton","tr":"纤细棉花","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinWitchIII":{"0":{"name":"Coin \"Spirit 1000\"","tr":"巫师币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:drop":{"0":{"name":"Enchanting Drop","tr":"蕴魔液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Intellect Drop","tr":"智慧液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Destabilized Drop","tr":"不稳定液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Carbon Drop","tr":"煤炭液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Lux Drop","tr":"流明液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Endearing Drop","tr":"可爱液滴","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:flightTiara":{"0":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Flügel Tiara","tr":"天翼族之冠","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:chalice":{"0":{"name":"Chalice","tr":"圣餐杯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernChest":{"0":{"name":"Wyvern Chestplate","tr":"双足飞龙胸甲","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-15}},"Botania:quartzSlabBlazeFull":{"0":{"name":"Blaze Quartz Slab","tr":"烈焰石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:loadedbakedpotatoItem":{"0":{"oreDict":["foodLoadedbakedpotato"],"name":"Loaded Baked Potato","tr":"奶油培根土豆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"neenergistics:tile.pattern_interface":{"0":{"name":"Pattern Interface","tr":"样板接口","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Pr":{"0":{"name":"T6: 海卫八","tr":"T6: 海卫八","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAstralTitanium":{"0":{"oreDict":["dustSmallAstralTitanium"],"name":"小堆星体钛粉","tr":"小堆星体钛粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockQuartzChiseled":{"0":{"name":"Chiseled Certus Quartz Block","tr":"錾制赛特斯石英块","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureRunite":{"0":{"oreDict":["dustPureRunite"],"name":"Purified Runite Dust","tr":"纯净虚恩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:cyclohexane":{"0":{"oreDict":["cellCyclohexane"],"name":"环己烷单元","tr":"环己烷单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateHS188A":{"0":{"oreDict":["plateHS188A"],"name":"HS188-A板","tr":"HS188-A板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:wintersquashItem":{"0":{"oreDict":["listAllveggie"," cropWintersquash"],"name":"Winter Squash","tr":"笋瓜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewTriniumTitaniumAlloy":{"0":{"oreDict":["screwTriniumTitaniumAlloy"],"name":"三元钛合金螺丝","tr":"三元钛合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamrutabagaCrop":{"0":{"name":"Rutabaga Crop","tr":"芜菁甘蓝","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2wct:wirelessCraftingTerminal":{"0":{"name":"Wireless Crafting Terminal","tr":"无线合成终端","tab":"§9AE2无线合成终端","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:blackberryItem":{"0":{"oreDict":["cropBlackberry"," listAllfruit"," listAllberry"],"name":"Blackberry","tr":"黑莓","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_lit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:spooky_log":{"0":{"name":"Spooky Log","tr":"幽灵树原木","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ra":{"0":{"name":"T5: 罗斯128ba","tr":"T5: 罗斯128ba","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:BW_CombinedRotor":{"0":{"name":"Combined Primitive Rotor (Wind only)","tr":"原始复合转子(风车专用)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":30001}},"dreamcraft:item.BlackPlutoniumPlate":{"0":{"oreDict":["plateBlackPlutonium"],"name":"Black Plutonium Plate","tr":"黑钚板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorSwordGem":{"0":{"name":"Awakened Ichorium Sword","tr":"觉醒灵宝剑","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"BiblioWoodsForestry:BiblioWoodFstpotshelf2":{"0":{"name":"Pine Potion Shelf","tr":"松树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Potion Shelf","tr":"李子树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Potion Shelf","tr":"杨树木药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Potion Shelf","tr":"红杉药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Potion Shelf","tr":"柚木药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Potion Shelf","tr":"核桃树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Potion Shelf","tr":"崖豆树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Potion Shelf","tr":"柳树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BloodVial":{"0":{"name":"Blood Vial","tr":"采血瓶","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BWRotorBlock":{"0":{"name":"Primitive Kinetic Shaftbox","tr":"原始动力轴箱","tab":"BartWorks跨时代","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTitanite":{"0":{"oreDict":["dustSmallTitanite"],"name":"小堆榍石粉","tr":"小堆榍石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:tile.tst.star":{"0":{"name":"tile.tst.star.name","tr":"tile.tst.star.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:spiritflowing":{"0":{"name":"Flowing Spirit","tr":"水心","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:leaves":{"6":{"name":"Leaves","tr":"树叶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Leaves","tr":"树叶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Leaves","tr":"树叶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Leaves","tr":"树叶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Leaves","tr":"树叶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Leaves","tr":"树叶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Leaves","tr":"树叶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockAttractor":{"0":{"name":"Attractor Obelisk","tr":"生物诱引方尖碑","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:wolftoken":{"0":{"name":"Creative Bat/Wolf Token","tr":"创造模式-蝙蝠/狼变身代币","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRingTantalumCarbide":{"0":{"oreDict":["ringTantalumCarbide"],"name":"碳化钽环","tr":"碳化钽环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:leggingsMud":{"0":{"name":"Muddy Leggings","tr":"泥巴护腿","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":31}},"OpenComputers:case3":{"0":{"oreDict":["oc:case3"],"name":"Computer Case (Tier 3)","tr":"T3机箱","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:case2":{"0":{"oreDict":["oc:case2"],"name":"Computer Case (Tier 2)","tr":"T2机箱","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBasicTurbine":{"0":{"name":"Basic Iron Turbine","tr":"基础铁涡轮","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Basic Bronze Turbine","tr":"基础青铜涡轮","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Basic Steel Turbine","tr":"基础钢涡轮","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"OpenComputers:case1":{"0":{"oreDict":["oc:case1"],"name":"Computer Case (Tier 1)","tr":"T1机箱","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Rb":{"0":{"name":"T3: 罗斯128b","tr":"T3: 罗斯128b","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gadomancy:ItemArcanePackage":{"0":{"name":"Arcane Package","tr":"奥法包裹","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Arcane Package","tr":"奥法包裹","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Arcane Package","tr":"奥法包裹","tab":"","type":"Item","maxStackSize":16,"maxDurability":1},"3":{"name":"Arcane Package","tr":"奥法包裹","tab":"","type":"Item","maxStackSize":16,"maxDurability":1}},"gendustry:EjectCover":{"0":{"name":"Item Eject Cover","tr":"物品输出盖板","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.cipher_advanced":{"0":{"name":"Advanced Cipher Block","tr":"高级加密机","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemToolPainterLightGrey":{"0":{"name":"Light Grey Painter","tr":"浅灰色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"miscutils:crushedPerroudite":{"0":{"oreDict":["crushedPerroudite"],"name":"Crushed Perroudite Ore","tr":"粉碎溴硫银汞矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallGadoliniteY":{"0":{"oreDict":["dustSmallGadoliniteY"],"name":"小堆硅铍钇矿(Y)粉","tr":"小堆硅铍钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstdesk":{"0":{"name":"Acacia Desk","tr":"金合欢台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Desk","tr":"巴尔杉台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Desk","tr":"猴面包树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Desk","tr":"樱桃树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Desk","tr":"栗树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Desk","tr":"柑橘树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Desk","tr":"乌檀树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Desk","tr":"樟树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Desk","tr":"木棉台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Desk","tr":"落叶松台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Desk","tr":"菩提树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Desk","tr":"白皮树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Desk","tr":"桃花心木台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Desk","tr":"枫树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Desk","tr":"棕榈树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Desk","tr":"木瓜树台桌","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:garlic":{"0":{"oreDict":["cropGarlic"," listAllherb"],"name":"Garlic","tr":"大蒜","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:sundayroastItem":{"0":{"oreDict":["foodSundayroast"],"name":"Sunday Roast","tr":"周日烤肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:WoolSlab2":{"0":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["slabCloth"],"name":"Gray Wool Slab","tr":"灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockNuke":{"0":{"name":"Nuke","tr":"核弹","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemFacade":{"0":{"name":"Cable Facade - 太空电梯加速轨道MK-V","tr":"线缆伪装板 - 太空电梯加速轨道MK-V","tab":"应用能源2-伪装板","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:WoolSlab1":{"0":{"oreDict":["slabCloth"],"name":"Light Gray Wool Slab","tr":"淡灰色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabCloth"],"name":"Cyan Wool Slab","tr":"青色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["slabCloth"],"name":"Purple Wool Slab","tr":"紫色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["slabCloth"],"name":"Blue Wool Slab","tr":"蓝色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["slabCloth"],"name":"Brown Wool Slab","tr":"棕色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["slabCloth"],"name":"Green Wool Slab","tr":"绿色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["slabCloth"],"name":"Red Wool Slab","tr":"红色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["slabCloth"],"name":"Black Wool Slab","tr":"黑色羊毛台阶","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.FramingBoard":{"0":{"name":"Framing Board","tr":"镶框板","tab":"BiblioCraft","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreComancheite":{"0":{"oreDict":["oreComancheite"],"name":"Comancheite Ore","tr":"溴汞石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:stewraw":{"0":{"name":"Raw Meaty Stew","tr":"生炖肉","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.BioOrganicMesh":{"0":{"name":"Bio Organic Mesh","tr":"植物网","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleStrontium":{"0":{"oreDict":["plateDoubleStrontium"],"name":"双重锶板","tr":"双重锶板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"GalaxySpace:item.CompressedSDHD120":{"0":{"name":"Compressed Alloy \"SDHC-120\"","tr":"致密SDHC-120合金","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLi2CO3CaOH2":{"0":{"oreDict":["dustSmallLi2CO3CaOH2"],"name":"小堆碳酸锂+氢氧化钙复合物粉","tr":"小堆碳酸锂+氢氧化钙复合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:microcontroller":{"0":{"name":"Microcontroller","tr":"微控制器","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCocoaComb":{"0":{"name":"Crated Cocoa Comb","tr":"装箱的可可蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:chestplateAmethyst":{"0":{"name":"Amethyst Chestplate","tr":"紫水晶胸甲","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":641}},"GalacticraftMars:item.titanium_helmet":{"0":{"name":"Titanium Helmet","tr":"钛头盔","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":287}},"gtneioreplugin:blockDimensionDisplay_TF":{"0":{"name":"暮色森林","tr":"暮色森林","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Se":{"0":{"name":"T9: 赛特","tr":"T9: 赛特","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraTrees:misc":{"1":{"oreDict":["dustWood"," pulpWood"],"name":"Sawdust","tr":"锯末","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Bark","tr":"树皮","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Proven Gear","tr":"标定齿轮","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Wood Polish","tr":"光泽剂","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Glass Fittings","tr":"玻璃配件","tab":"林业|植树","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_TE":{"0":{"name":"T8: 鲸鱼座T星E","tr":"T8: 鲸鱼座T星E","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidscobblestone":{"0":{"name":"Cobblestone Fluid Pipe","tr":"圆石流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:roastedchestnutItem":{"0":{"oreDict":["foodRoastedchestnut"],"name":"Roasted Chestnut","tr":"烤板栗","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:overgrownNetherrack":{"0":{"name":"Overgrown Netherrack","tr":"地狱苔石","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorCoolantTriple":{"1":{"name":"30k Coolant Cell","tr":"30k冷却单元","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"gregtech:gt.MNqCell":{"0":{"name":"燃料棒(Nq*-热量与发电同MOX)","tr":"燃料棒(Nq*-热量与发电同MOX)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"thaumicbases:voidSeed":{"0":{"name":"Void Plant Seed","tr":"虚空植物种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.armorShards":{"0":{"name":"Armor Shard","tr":"装甲碎片","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Tr":{"0":{"name":"T6: 海卫一","tr":"T6: 海卫一","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:wireless_level_terminal":{"0":{"name":"Wireless Level Terminal","tr":"无线库存维持终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":33}},"thaumicbases:tobaccoPowder":{"0":{"name":"Tobacco Pile","tr":"烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Eldritch Tobacco Pile","tr":"邪术烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Angry Tobacco Pile","tr":"愤怒烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Saturating Tobacco Pile","tr":"饱和烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Wisdom Tobacco Pile","tr":"睿智烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Miner\u0027s Tobacco Pile","tr":"矿工烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Relaxing Tobacco Pile","tr":"休闲烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Tainted Tobacco Pile","tr":"污染烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Wispy Tobacco Pile","tr":"精灵烟草堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:part.tie":{"0":{"name":"Wooden Tie","tr":"枕木","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Tie","tr":"枕石","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:GlassBlock.StainedClear":{"0":{"oreDict":["blockGlassHV"," glassWhite"],"name":"White Stained Glass","tr":"白色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"," glassOrange"],"name":"Orange Stained Glass","tr":"橙色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"," glassMagenta"],"name":"Magenta Stained Glass","tr":"品红玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["glassLightBlue"," blockGlassHV"],"name":"Light Blue Stained Glass","tr":"淡蓝玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["glassYellow"," blockGlassHV"],"name":"Yellow Stained Glass","tr":"黄色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["glassLime"," blockGlassHV"],"name":"Lime Stained Glass","tr":"黄绿玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"," glassPink"],"name":"Pink Stained Glass","tr":"粉色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"," glassGray"],"name":"Gray Stained Glass","tr":"灰色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"," glassLightGray"],"name":"Light Gray Stained Glass","tr":"淡灰玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"," glassCyan"],"name":"Cyan Stained Glass","tr":"青色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"," glassPurple"],"name":"Purple Stained Glass","tr":"紫色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"," glassBlue"],"name":"Blue Stained Glass","tr":"蓝色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"," glassBrown"],"name":"Brown Stained Glass","tr":"棕色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"," glassGreen"],"name":"Green Stained Glass","tr":"绿色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"," glassRed"],"name":"Red Stained Glass","tr":"红色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"," glassBlack"],"name":"Black Stained Glass","tr":"黑色玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewDysprosium":{"0":{"oreDict":["screwDysprosium"],"name":"镝螺丝","tr":"镝螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BioLabModules":{"0":{"name":"DNA Extraction Module","tr":"DNA提取模块","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"PCR Thermocycle Module","tr":"基因扩增模块","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Plasmid Synthesis Module","tr":"质粒合成模块","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Transformation Module","tr":"基因转化模块","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Clonal Cellular Synthesis Module","tr":"细胞克隆模块","tab":"BartWorks生物工程","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.bloodstained":{"0":{"name":"Blood Stained Brick","tr":"污血砖","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fitted Blood Stained Stone","tr":"匀称污血方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Blood Stained Block","tr":"污血方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ornate Blood Stained Stone","tr":"雕琢污血方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Etched Blood Stained Stone","tr":"蚀刻污血方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Blood Stained Cobblestone","tr":"污血圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.QuadrupleCompressedCharcoal":{"0":{"name":"Block of Quadruple Compressed Charcoal","tr":"四重压缩木炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:blockbreaker":{"0":{"name":"Block Breaker","tr":"方块采掘器","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewAbyssalAlloy":{"0":{"oreDict":["screwAbyssalAlloy"],"name":"深渊合金螺丝","tr":"深渊合金螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:laserTurret":{"0":{"name":"Laser Turret","tr":"激光炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ti":{"0":{"name":"T5: 土卫六","tr":"T5: 土卫六","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellAmmoniumTetrafluoroberyllate":{"0":{"oreDict":["cellAmmoniumTetrafluoroberyllate"],"name":"氟铍酸铵单元","tr":"氟铍酸铵单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:icePendant":{"0":{"name":"Snowflake Pendant","tr":"雪花项链","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:tile.dish":{"0":{"name":"Communications Dish","tr":"通讯雷达","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_VB":{"0":{"name":"T8: 织女一B","tr":"T8: 织女一B","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_VA":{"0":{"name":"原版末地小行星","tr":"原版末地小行星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.meefSteak":{"0":{"name":"Meef Steak","tr":"牛头人肉排","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockRunite":{"0":{"oreDict":["blockRunite"],"name":"虚恩块","tr":"虚恩块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderZoo:witheringDust":{"0":{"name":"Withering Dust","tr":"凋零粉末","tab":"EnderZoo","type":"Item","maxStackSize":64,"maxDurability":1}},"IguanaTweaksTConstruct:clayBucketFired":{"0":{"oreDict":["bucketClayEmpty"],"name":"Fired Clay Bucket","tr":"粘土桶(烤制)","tab":"杂项","type":"Item","maxStackSize":16,"maxDurability":1}},"EnderIO:bucketCloud_seed":{"0":{"name":"Cloud Seed Bucket","tr":"桶装云之精华","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateIncoloyMA956":{"0":{"oreDict":["plateIncoloyMA956"],"name":"耐热铬铁合金-MA956板","tr":"耐热铬铁合金-MA956板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamkiwiCrop":{"0":{"name":"Kiwi Crop","tr":"猕猴桃","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureGreenockite":{"0":{"oreDict":["dustPureGreenockite"],"name":"Purified Greenockite Dust","tr":"洁净硫镉矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureFluoriteF":{"0":{"oreDict":["dustImpureFluoriteF"],"name":"Impure Fluorite (F) Dust","tr":"含杂氟石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:plumjellysandwichItem":{"0":{"oreDict":["foodPlumjellysandwich"],"name":"Plum Jelly Sandwich","tr":"李子果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"adventurebackpack:adventureBackpack":{"0":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"23":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"24":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"27":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"28":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"29":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"30":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"31":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"32":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"33":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"34":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"35":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"36":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"37":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"38":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"39":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"40":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"41":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"42":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"43":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"44":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"45":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"46":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"47":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"48":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"49":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"50":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"51":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"52":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"53":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"54":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"55":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"56":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"57":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"58":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"59":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"60":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"61":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"62":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"63":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"64":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"65":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"66":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"67":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"68":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"69":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"70":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"71":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"72":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"73":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"74":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"75":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1},"76":{"name":"Adventure Backpack","tr":"探险背包","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:stained_glass_lightgray":{"0":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Stained Glass","tr":"染色玻璃","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:bloodInfuser":{"0":{"name":"Seroconverter","tr":"血液转化器","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemMEConduit":{"0":{"name":"ME Conduit","tr":"ME导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Dense ME Conduit","tr":"致密ME导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Ultra Dense ME Conduit","tr":"超密ME导管","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:scytheAmethyst":{"0":{"name":"Amethyst Scythe","tr":"紫水晶镰刀","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":2014}},"miscutils:itemFoilCelestialTungsten":{"0":{"oreDict":["foilCelestialTungsten"],"name":"天体钨箔","tr":"天体钨箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.damageUpgrade":{"0":{"name":"Damage Upgrade","tr":"伤害升级","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockPooCollector":{"0":{"name":"Agricultural Sewer","tr":"农业下水道","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Biocomposite Collector","tr":"生物复合收集器","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.projectRed.singularity":{"0":{"name":"Electrotine Singularity","tr":"蓝石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtPikyonium64B":{"0":{"oreDict":["frameGtPikyonium64B"],"name":"皮卡优合金64B框架","tr":"皮卡优合金64B框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFPlanks":{"0":{"oreDict":["plankWood"],"name":"Twilight Oak Planks","tr":"暮色橡树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"],"name":"Canopy Tree Planks","tr":"苍穹树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"],"name":"Mangrove Planks","tr":"红树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"],"name":"Darkwood Planks","tr":"黑树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"],"name":"Timewood Planks","tr":"时光树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["plankWood"],"name":"Transwood Planks","tr":"变化树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["plankWood"],"name":"Minewood Planks","tr":"矿工树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["plankWood"],"name":"Sortingwood Planks","tr":"分类树木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTantalloy61":{"0":{"oreDict":["dustSmallTantalloy61"],"name":"小堆钽钨合金-61粉","tr":"小堆钽钨合金-61粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ve":{"0":{"name":"T4: 金星","tr":"T4: 金星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFDoorMine":{"0":{"name":"tile.TFDoorMine.0.name","tr":"tile.TFDoorMine.0.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTantalloy60":{"0":{"oreDict":["dustSmallTantalloy60"],"name":"小堆钽钨合金-60粉","tr":"小堆钽钨合金-60粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorclothHelm":{"0":{"name":"Ichorcloth Cowl","tr":"灵布头巾","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:tropicalgarden":{"0":{"name":"Tropical Garden","tr":"热带菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:hardWallTierFive":{"0":{"name":"Hard Wall (Tier 5)","tr":"坚固墙壁(五级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:waraxe.stone":{"0":{"name":"Stone Waraxe","tr":"石头战斧","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":263}},"harvestcraft:gingersnapsItem":{"0":{"oreDict":["foodGingersnaps"],"name":"Ginger Snaps","tr":"姜饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:bootsMeteor":{"0":{"name":"Boots of the Meteor","tr":"流星之靴","tab":"神秘探险","type":"Item","maxStackSize":1,"maxDurability":326}},"Forestry:cratedCacti":{"0":{"name":"Crated Cactus","tr":"装箱的仙人掌","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:templeblock":{"0":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Temple Block","tr":"神庙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.tiger":{"0":{"oreDict":["trapdoorWood"],"name":"Tigerwood Trapdoor","tr":"核桃树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleThorium232":{"0":{"oreDict":["plateDoubleThorium232"],"name":"双重钍-232板","tr":"双重钍-232板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"GalacticraftMars:item.orionDrive":{"0":{"name":"Orion Drive","tr":"离子推进器","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.HaumeaStoneDust":{"0":{"oreDict":["dustSpace"," dustHaumeaStone"," dustHaumea"],"name":"Haumea Stone Dust","tr":"妊神星尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MicaInsulatorFoil":{"0":{"name":"Mica Insulator Foil","tr":"绝缘云母箔","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearStrontium":{"0":{"oreDict":["gearGtStrontium"," gearStrontium"],"name":"锶齿轮","tr":"锶齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:kiwiseedItem":{"0":{"oreDict":["seedKiwi"," listAllseed"],"name":"Kiwi Seed","tr":"猕猴桃种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:polynesiacharm":{"0":{"name":"Polynesia Charm","tr":"波利尼西亚之咒","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":51}},"miscutils:itemRodUranium233":{"0":{"oreDict":["stickUranium233"],"name":"铀-233杆","tr":"铀-233杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodUranium232":{"0":{"oreDict":["stickUranium232"],"name":"铀-232杆","tr":"铀-232杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bakedsweetpotatoItem":{"0":{"name":"Baked Sweet Potato","tr":"烤红薯","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"tinkersdefense:aeonsteelblock":{"0":{"name":"Aeon Steel Block","tr":"伊恩钢块","tab":"工匠之盾","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:greaterPowerCatalyst":{"0":{"name":"Greater Power Catalyst","tr":"[更好的]功率催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:zestyzucchiniItem":{"0":{"oreDict":["foodZestyzucchini"],"name":"Zesty Zucchini","tr":"西葫芦意面","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.spacesuit_plate":{"0":{"name":"SpaceSuit Chestplate","tr":"宇航服","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":481}},"miscutils:itemDustAmmoniumNitrate":{"0":{"oreDict":["dustAmmoniumNitrate"],"name":"硝酸铵粉","tr":"硝酸铵粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:essentiaOutputHatch_ME":{"0":{"name":"Essentia Output Hatch (ME)","tr":"源质输出仓(ME)","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:genLogs":{"0":{"oreDict":["logWood"],"name":"Peaceful Wood","tr":"和平树原木","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Nether Wood","tr":"地狱树原木","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["logWood"],"name":"Ender Wood","tr":"末影树原木","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustBotmium":{"0":{"oreDict":["dustBotmium"],"name":"博特姆合金粉","tr":"博特姆合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:Obelisk":{"0":{"name":"Obelisk","tr":"方尖碑","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:raid":{"0":{"oreDict":["oc:raid"],"name":"Raid","tr":"硬盘阵列柜","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA2SlabFull":{"0":{"name":"Metamorphic Mountain Stone Slab","tr":"变质高山石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearEglinSteel":{"0":{"oreDict":["gearGtEglinSteel"," gearEglinSteel"],"name":"埃格林钢齿轮","tr":"埃格林钢齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockTravelAnchor":{"0":{"name":"Travel Anchor","tr":"旅行锚","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:broccoliItem":{"0":{"oreDict":["cropBroccoli"," listAllveggie"," listAllgreenveggie"],"name":"Broccoli","tr":"西兰花","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:barleyItem":{"0":{"oreDict":["cropBarley"," listAllgrain"],"name":"Barley","tr":"大麦","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeRotor":{"0":{"name":"Casting Form (Rotor Shape)","tr":"铸形(转子)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:shimmerrock":{"0":{"name":"Shimmerrock","tr":"微光石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorBronzeChestplate":{"0":{"name":"Bronze Chestplate","tr":"青铜胸甲","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:itemDustTinyZirconium":{"0":{"oreDict":["dustTinyZirconium"],"name":"小撮锆粉","tr":"小撮锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:amber":{"0":{"name":"tile.chisel.amber.name","tr":"tile.chisel.amber.name","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:focusLiquefaction":{"0":{"name":"Wand Focus: Liquefaction","tr":"法杖核心:熔析","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:blockCustomPlant":{"0":{"oreDict":["treeSapling"],"name":"Greatwood Sapling","tr":"宏伟之木树苗","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Silverwood Sapling","tr":"银树树苗","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cropShimmerleaf"],"name":"Shimmerleaf","tr":"水银花","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cropCinderpearl"],"name":"Cinderpearl","tr":"火焰草","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ethereal Bloom","tr":"天域花","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Vishroom","tr":"纤毛菇","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:aquasalus":{"0":{"name":"Aquasalus","tr":"液之粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotHeLiCoPtEr":{"0":{"oreDict":["ingotHotHeLiCoPtEr"],"name":"热HeLiCoPtEr锭","tr":"热HeLiCoPtEr锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoublePikyonium64B":{"0":{"oreDict":["plateDoublePikyonium64B"],"name":"双重皮卡优合金64B板","tr":"双重皮卡优合金64B板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"Thaumcraft:blockEssentiaReservoir":{"0":{"name":"Essentia Reservoir","tr":"源质库","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WirelessTransmitter":{"0":{"name":"Wireless Transmitter","tr":"无线变送器","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_PrimordialGlove":{"0":{"name":"Primordial Gauntlet","tr":"元始手套","tab":"巫师宝具","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.IrradiantReinforcedTitaniumPlate":{"0":{"name":"Irradiant Reinforced Titanium Plate","tr":"光辉强化钛板","tab":"GTNH: 太阳能","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:kettle":{"0":{"name":"Kettle","tr":"水壶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SawBladeDiamond":{"0":{"name":"Diamond Saw Blade","tr":"钻石锯刃","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateUranium232":{"0":{"oreDict":["plateUranium232"],"name":"铀-232板","tr":"铀-232板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureNichromite":{"0":{"oreDict":["dustPureNichromite"],"name":"Purified Nichromite Dust","tr":"洁净镍铬矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateUranium233":{"0":{"oreDict":["plateUranium233"],"name":"铀-233板","tr":"铀-233板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreAncientGranite":{"0":{"oreDict":["oreAncientGranite"],"name":"Ancient Granite Ore","tr":"古花岗岩矿","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.baseItem":{"0":{"name":"Ender Wafer","tr":"末影晶圆","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Porcodon Meat","tr":"帕克顿肉","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Dust","tr":"粉","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Chionite","tr":"锥冰晶石","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Laser Diode","tr":"激光二极管","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Cryo Diode","tr":"低温二极管","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["gemRuby"],"name":"Ruby","tr":"红宝石","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Spodumene","tr":"锂辉石","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Lithium Mesh","tr":"锂网","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Alien Book","tr":"外星人的书","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["ingotLead"],"name":"Lead Ingot","tr":"铅锭","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["ingotUranium"],"name":"Uranium Ingot","tr":"铀锭","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["ingotSteel"],"name":"Steel Ingot","tr":"钢锭","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Ancient Rebar","tr":"古钢筋","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Shuttle Legs","tr":"穿梭机支腿","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Lightweight Plate","tr":"轻质合金板","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Shuttle Nose Cone","tr":"穿梭机鼻锥","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Portable Thermal Regulator","tr":"便携式温度调节器","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Multi-Sensor","tr":"多功能传感器","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["compressedGold"],"name":"Compressed Gold","tr":"致密金板","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Gold Foil","tr":"金箔","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Transformer","tr":"变压器","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Uranium-Lithium Mesh","tr":"铀-锂网","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Shuttle Fuel Tank","tr":"穿梭机燃料箱","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Dock Gangway","tr":"接驳舱舷梯","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Dock Door","tr":"接驳舱门","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Dark Matter Shard","tr":"暗物质碎片","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Nanite Cluster","tr":"纳米蜂团","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Nanite Control Module","tr":"纳米蜂群控制模块","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["dyeBrown"," dye"],"name":"Mummy Dust","tr":"木乃伊粉","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Artificial Gravity Disruptor","tr":"人工重力干扰器","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormIngot":{"0":{"name":"Casting Form (Ingot Mold)","tr":"铸件(锭)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:golemWorkbenchUpgrade":{"0":{"name":"Workbench Upgrade: Air","tr":"工作台升级:风","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Workbench Upgrade: Fire","tr":"工作台升级:火","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Workbench Upgrade: Earth","tr":"工作台升级:地","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Workbench Upgrade: Entropy","tr":"工作台升级:混沌","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockCosmeticSlabWood":{"0":{"oreDict":["slabWood"],"name":"Greatwood Slab","tr":"宏伟之木台阶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["slabWood"],"name":"Silverwood Slab","tr":"银树台阶","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemGrindingBallEndergy":{"0":{"name":"Clay Compound Grinding Ball","tr":"复合粘土磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Crystalline Alloy Grinding Ball","tr":"晶化合金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Melodic Alloy Grinding Ball","tr":"旋律合金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Stellar Alloy Grinding Ball","tr":"恒星合金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Crystalline Pink Slime Grinding Ball","tr":"晶化粉红史莱姆磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Energetic Silver Grinding Ball","tr":"充能银磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Vivid Alloy Grinding Ball","tr":"生动合金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartBowLimb":{"1536":{"name":"精金 Bow Limb","tr":"精金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Bow Limb","tr":"神秘蓝金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Bow Limb","tr":"琥珀 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Bow Limb","tr":"纯镃 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Bow Limb","tr":"谐镃 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Bow Limb","tr":"聚氯乙烯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Bow Limb","tr":"永恒 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Bow Limb","tr":"磁物质 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Bow Limb","tr":"赛特斯石英 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Bow Limb","tr":"暗影秘银 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Bow Limb","tr":"玄铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Bow Limb","tr":"戴斯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Bow Limb","tr":"铿铀 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Bow Limb","tr":"通流琥珀金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Bow Limb","tr":"末影粗胚 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Bow Limb","tr":"末影(te) 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Bow Limb","tr":"炽热的钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Bow Limb","tr":"火石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Bow Limb","tr":"力量 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Bow Limb","tr":"石墨 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Bow Limb","tr":"石墨烯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Bow Limb","tr":"注魔金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Bow Limb","tr":"风之魔晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Bow Limb","tr":"火之魔晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Bow Limb","tr":"地之魔晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Bow Limb","tr":"水之魔晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Bow Limb","tr":"混沌魔晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Bow Limb","tr":"秩序魔晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Bow Limb","tr":"玉 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Bow Limb","tr":"碧玉 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Bow Limb","tr":"陨铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Bow Limb","tr":"陨钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Bow Limb","tr":"硅岩 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Bow Limb","tr":"硅岩合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Bow Limb","tr":"富集硅岩 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Bow Limb","tr":"超能硅岩 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Bow Limb","tr":"下界石英 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Bow Limb","tr":"下界之星 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Bow Limb","tr":"三钛 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Bow Limb","tr":"虚空 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Bow Limb","tr":"胶木 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Bow Limb","tr":"幽冥剧毒结晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Bow Limb","tr":"强化 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Bow Limb","tr":"铱锇合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Bow Limb","tr":"阳光化合物 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Bow Limb","tr":"魂金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Bow Limb","tr":"蓝黄玉 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Bow Limb","tr":"黄铜 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Bow Limb","tr":"白铜 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Bow Limb","tr":"深渊铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Bow Limb","tr":"钻石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Bow Limb","tr":"琥珀金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Bow Limb","tr":"绿宝石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Bow Limb","tr":"强化混合晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Bow Limb","tr":"混合晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Bow Limb","tr":"绿色蓝宝石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Bow Limb","tr":"殷钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Bow Limb","tr":"坎塔尔合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Bow Limb","tr":"镁铝合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Bow Limb","tr":"镍铬合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Bow Limb","tr":"玄钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Bow Limb","tr":"生铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Bow Limb","tr":"聚乙烯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Bow Limb","tr":"环氧树脂 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Bow Limb","tr":"硅橡胶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Bow Limb","tr":"聚己内酰胺 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Bow Limb","tr":"聚四氟乙烯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Bow Limb","tr":"蓝宝石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Bow Limb","tr":"不锈钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Bow Limb","tr":"坦桑石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Bow Limb","tr":"锡铁合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Bow Limb","tr":"黄玉 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Bow Limb","tr":"哈氏合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Bow Limb","tr":"锻铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Bow Limb","tr":"铁木 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Bow Limb","tr":"橄榄石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Bow Limb","tr":"蛋白石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Bow Limb","tr":"紫水晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Bow Limb","tr":"暗影金属 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Bow Limb","tr":"暗影铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Bow Limb","tr":"暗影钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Bow Limb","tr":"钢叶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Bow Limb","tr":"骑士金属 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Bow Limb","tr":"标准纯银 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Bow Limb","tr":"玫瑰金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Bow Limb","tr":"黑青铜 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Bow Limb","tr":"铋青铜 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Bow Limb","tr":"黑钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Bow Limb","tr":"红钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Bow Limb","tr":"蓝钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Bow Limb","tr":"大马士革钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Bow Limb","tr":"充能合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Bow Limb","tr":"脉冲合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Bow Limb","tr":"星辰银 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Bow Limb","tr":"钴黄铜 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Bow Limb","tr":"红石榴石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Bow Limb","tr":"黄石榴石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Bow Limb","tr":"温特姆 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Bow Limb","tr":"黑花岗岩 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Bow Limb","tr":"红花岗岩 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Bow Limb","tr":"白石棉 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Bow Limb","tr":"雄黄 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Bow Limb","tr":"磁化铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Bow Limb","tr":"磁化钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Bow Limb","tr":"磁化钕 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Bow Limb","tr":"碳化钨 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Bow Limb","tr":"钒钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Bow Limb","tr":"高速钢-G 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Bow Limb","tr":"高速钢-E 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Bow Limb","tr":"高速钢-S 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Bow Limb","tr":"深铅 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Bow Limb","tr":"量子 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Bow Limb","tr":"深空秘银 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Bow Limb","tr":"黑钚 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Bow Limb","tr":"木卫四冰 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Bow Limb","tr":"硬铝 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Bow Limb","tr":"奥利哈钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Bow Limb","tr":"三元金属 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Bow Limb","tr":"聚苯硫醚 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Bow Limb","tr":"聚苯乙烯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Bow Limb","tr":"丁苯橡胶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Bow Limb","tr":"镍锌铁氧体 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Bow Limb","tr":"纤维强化的环氧树脂 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Bow Limb","tr":"磁化钐 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Bow Limb","tr":"无尽催化剂 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Bow Limb","tr":"聚苯并咪唑 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Bow Limb","tr":" 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Bow Limb","tr":"钛铂钒合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Bow Limb","tr":"时空 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Bow Limb","tr":"大理石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Bow Limb","tr":"神秘水晶 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Bow Limb","tr":"末影钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Bow Limb","tr":"复合粘土 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Bow Limb","tr":"晶化合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Bow Limb","tr":"旋律合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Bow Limb","tr":"恒星合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Bow Limb","tr":"晶化粉红史莱姆 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Bow Limb","tr":"充能银 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Bow Limb","tr":"生动合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Bow Limb","tr":"灵宝 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Bow Limb","tr":"超时空金属 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Bow Limb","tr":"活石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Bow Limb","tr":"盖亚之魂 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Bow Limb","tr":"活木 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Bow Limb","tr":"梦之木 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Bow Limb","tr":"泡铋 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Bow Limb","tr":"立方氧化锆 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Bow Limb","tr":"氟铁电气石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Bow Limb","tr":"铬铝电气石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Bow Limb","tr":"钒镁电气石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Bow Limb","tr":"铝电气石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Bow Limb","tr":"红锆石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Bow Limb","tr":"铁橄榄石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Bow Limb","tr":"镁橄榄石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Bow Limb","tr":"钙铁辉石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Bow Limb","tr":"钍-232 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Bow Limb","tr":"堇云石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Bow Limb","tr":"磁共振石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Bow Limb","tr":"锎 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Bow Limb","tr":"BArTiMaEuSNeK 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Bow Limb","tr":"钌 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Bow Limb","tr":"铑 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Bow Limb","tr":"镀铑钯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Bow Limb","tr":"泰伯利亚 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Bow Limb","tr":"钌铱合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Bow Limb","tr":"氟石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Bow Limb","tr":"高耐久性复合钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Bow Limb","tr":"硬钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Bow Limb","tr":"合成玉 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Bow Limb","tr":"原子分离催化剂 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Bow Limb","tr":"极不稳定硅岩 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Bow Limb","tr":"锌钍合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Bow Limb","tr":"锆锡合金-4 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Bow Limb","tr":"锆锡合金-2 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Bow Limb","tr":"耐热铬铁合金-903 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Bow Limb","tr":"精金合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Bow Limb","tr":"MAR-M200特种钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Bow Limb","tr":"MAR-Ce-M200特种钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Bow Limb","tr":"氯化锂 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Bow Limb","tr":"信素 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Bow Limb","tr":"流明 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Bow Limb","tr":"阿瑟锡 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Bow Limb","tr":"钛钼合金β-C 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Bow Limb","tr":"大力合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Bow Limb","tr":"光素 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Bow Limb","tr":"对立合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Bow Limb","tr":"稀有金属合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Bow Limb","tr":"富集硅岩合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Bow Limb","tr":"亚稳态鿫 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Bow Limb","tr":"调律源金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Bow Limb","tr":"魔钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Bow Limb","tr":"泰拉钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Bow Limb","tr":"源质钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Bow Limb","tr":"磁流体约束恒星物质 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Bow Limb","tr":"白矮星物质 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Bow Limb","tr":"黑矮星物质 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Bow Limb","tr":"宇宙素 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Bow Limb","tr":"铝 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Bow Limb","tr":"铍 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Bow Limb","tr":"铋 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Bow Limb","tr":"碳 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Bow Limb","tr":"铬 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Bow Limb","tr":"金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Bow Limb","tr":"铱 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Bow Limb","tr":"铅 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Bow Limb","tr":"锰 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Bow Limb","tr":"钼 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Bow Limb","tr":"钕 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Bow Limb","tr":"中子 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Bow Limb","tr":"镍 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Bow Limb","tr":"锇 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Bow Limb","tr":"钯 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Bow Limb","tr":"铂 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Bow Limb","tr":"钚-239 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Bow Limb","tr":"钚-241 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Bow Limb","tr":"银 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Bow Limb","tr":"钍 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Bow Limb","tr":"钛 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Bow Limb","tr":"钨 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Bow Limb","tr":"铀-238 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Bow Limb","tr":"铀-235 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Bow Limb","tr":"红宝石 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Bow Limb","tr":"红石合金 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Bow Limb","tr":"终末 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Bow Limb","tr":"导电铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Bow Limb","tr":"磁钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Bow Limb","tr":"钨钢 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Bow Limb","tr":"烈焰 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Bow Limb","tr":"脉冲铁 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Bow Limb","tr":"龙 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Bow Limb","tr":"觉醒龙 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Bow Limb","tr":"褐铜 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Bow Limb","tr":"山铜 弓臂","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongZeron100":{"0":{"oreDict":["stickLongZeron100"],"name":"长塞龙-100杆","tr":"长塞龙-100杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:ravaged_brick":{"0":{"name":"Ravaged Brick","tr":"毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ravaged Brick","tr":"毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ravaged Brick","tr":"毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ravaged Brick","tr":"毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ravaged Brick","tr":"毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ravaged Brick","tr":"毁灭砖块","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:colorizedSaplings":{"0":{"oreDict":["treeSapling"],"name":"Sacred Oak Sapling","tr":"神圣橡树树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Mangrove Sapling","tr":"红树树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeSapling"],"name":"Palm Sapling","tr":"棕榈树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeSapling"],"name":"Redwood Sapling","tr":"红杉树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["treeSapling"],"name":"Willow Sapling","tr":"柳树树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["treeSapling"],"name":"Pine Sapling","tr":"松树树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["treeSapling"],"name":"Mahogany Sapling","tr":"桃花心木树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["treeSapling"],"name":"Flowering Oak Sapling","tr":"开花橡木树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureFlorencite":{"0":{"oreDict":["dustPureFlorencite"],"name":"Purified Florencite Dust","tr":"洁净磷铝铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockRuthenium":{"0":{"oreDict":["blockRuthenium"],"name":"钌块","tr":"钌块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:exchangeRod":{"0":{"name":"Rod of the Shifting Crust","tr":"移壳杆","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:reactorUraniumDualdepleted":{"0":{"name":"Dual Fuel Rod (Depleted Uranium)","tr":"双联燃料棒(枯竭铀)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:doughItem":{"0":{"oreDict":["foodDough"],"name":"Dough","tr":"生面团","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:biomenote":{"0":{"name":"Biome Beach","tr":"生态 Beach","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemCrystalEssence":{"0":{"name":"Crystallized Essence","tr":"晶化源质","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.darkSteel_pickaxe":{"0":{"name":"Dark Pick","tr":"玄钢镐","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1562}},"BiomesOPlenty:mudBricksStairs":{"0":{"name":"Mud Bricks Stairs","tr":"泥巴砖块楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_shovel_iron":{"0":{"name":"Blood Infused Iron Shovel","tr":"注血铁铲","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Transport:pipeLens":{"0":{"name":"Lens (Black)","tr":"透镜 (黑色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Lens (Red)","tr":"透镜 (红色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Lens (Green)","tr":"透镜 (绿色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Lens (Brown)","tr":"透镜 (棕色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Lens (Blue)","tr":"透镜 (蓝色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lens (Purple)","tr":"透镜 (紫色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Lens (Cyan)","tr":"透镜 (青色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Lens (Light Gray)","tr":"透镜 (淡灰色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Lens (Gray)","tr":"透镜 (灰色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Lens (Pink)","tr":"透镜 (粉色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Lens (Lime)","tr":"透镜 (黄绿色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Lens (Yellow)","tr":"透镜 (黄色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Lens (Light Blue)","tr":"透镜 (淡蓝色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Lens (Magenta)","tr":"透镜 (品红色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Lens (Orange)","tr":"透镜 (橙色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Lens (White)","tr":"透镜 (白色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Filter (Black)","tr":"滤镜 (黑色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Filter (Red)","tr":"滤镜 (红色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Filter (Green)","tr":"滤镜 (绿色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Filter (Brown)","tr":"滤镜 (棕色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Filter (Blue)","tr":"滤镜 (蓝色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Filter (Purple)","tr":"滤镜 (紫色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Filter (Cyan)","tr":"滤镜 (青色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Filter (Light Gray)","tr":"滤镜 (淡灰色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Filter (Gray)","tr":"滤镜 (灰色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Filter (Pink)","tr":"滤镜 (粉色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Filter (Lime)","tr":"滤镜 (黄绿色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Filter (Yellow)","tr":"滤镜 (黄色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Filter (Light Blue)","tr":"滤镜 (淡蓝色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Filter (Magenta)","tr":"滤镜 (品红色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Filter (Orange)","tr":"滤镜 (橙色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Filter (White)","tr":"滤镜 (白色)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Lens (Clear)","tr":"透镜 (清除)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Filter (Clear)","tr":"滤镜 (清除)","tab":"建筑","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:bowstring":{"0":{"name":"Bowstring","tr":"弓弦","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Fiery Bowstring","tr":"火焰弓弦","tab":"匠魂|材料","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:starSword":{"0":{"name":"Starcaller","tr":"召星者","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":2301}},"GalacticraftAmunRa:item.cryogun":{"0":{"name":"Freeze Ray","tr":"冻结射线","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Freeze Ray","tr":"冻结射线","tab":"阿蒙·拉","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemNuggetInconel792":{"0":{"oreDict":["nuggetInconel792"],"name":"镍铬基合金-792粒","tr":"镍铬基合金-792粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:item.BioRecipeSelector":{"0":{"name":"Programmed Bio Circuit","tr":"编程生物电路","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:rainbowcurryItem":{"0":{"oreDict":["foodRainbowcurry"],"name":"Rainbow Curry","tr":"彩虹咖喱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:brickCustom":{"1":{"name":"Brick Block","tr":"砖块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Brick Block","tr":"砖块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Brick Block","tr":"砖块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Brick Block","tr":"砖块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Brick Block","tr":"砖块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pistachioItem":{"0":{"oreDict":["listAllnut"," cropPistachio"],"name":"Pistachio","tr":"开心果","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pinkinator":{"0":{"name":"The Pinkinator","tr":"粉色手炮","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ae2fc:fluid_storage1024":{"0":{"name":"§d1024k§r ME Fluid Storage Cell","tr":"§d1024k§r-ME流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:blockBlockTitansteel":{"0":{"oreDict":["blockTitansteel"],"name":"泰坦精钢块","tr":"泰坦精钢块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHafnium":{"0":{"oreDict":["nuggetHafnium"],"name":"铪粒","tr":"铪粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:suaderoItem":{"0":{"name":"Suadero","tr":"过油肉条","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_lit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemGrindingBall":{"0":{"name":"Electrical Steel Ball","tr":"磁钢磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Energetic Alloy Ball","tr":"充能合金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Vibrant Alloy Ball","tr":"脉冲合金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Redstone Alloy Ball","tr":"红石合金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Conductive Iron Ball","tr":"导电铁磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Pulsating Iron Ball","tr":"脉冲铁磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Dark Steel Ball","tr":"玄钢磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Soularium Ball","tr":"魂金磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"End Steel Ball","tr":"末影钢磨球","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manasteelAxe":{"0":{"name":"Manasteel Axe","tr":"魔钢斧","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":301}},"ForbiddenMagic:SkullAxe":{"0":{"name":"Axe of the Skulltaker","tr":"啄颅斧","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1501}},"BiomesOPlenty:cragRock":{"0":{"name":"Crag Rock","tr":"碎岩","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockcasings.pipesgears":{"0":{"name":"埃格林钢齿轮箱机械方块","tr":"埃格林钢齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"镍铬基合金-792齿轮箱机械方块","tr":"镍铬基合金-792齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"耐热铬铁合金-MA956齿轮箱机械方块","tr":"耐热铬铁合金-MA956齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"镍钛诺60齿轮箱机械方块","tr":"镍钛诺60齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"塞龙-100齿轮箱机械方块","tr":"塞龙-100齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"皮卡优合金齿轮箱机械方块","tr":"皮卡优合金齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"泰坦精钢齿轮箱机械方块","tr":"泰坦精钢齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"深渊合金齿轮箱机械方块","tr":"深渊合金齿轮箱机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"巴氏合金管道方块","tr":"巴氏合金管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"镍铬基合金-690管道方块","tr":"镍铬基合金-690管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"铬钴锰钛合金管道方块","tr":"铬钴锰钛合金管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"镍钛诺60管道方块","tr":"镍钛诺60管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"路菲恩管道方块","tr":"路菲恩管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"西诺柏管道方块","tr":"西诺柏管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"泰坦精钢管道方块","tr":"泰坦精钢管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"深渊合金管道方块","tr":"深渊合金管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:pavement2Slab":{"0":{"name":"Blue Portuguese Pavement Slab","tr":"蓝色葡萄牙台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:hammer":{"0":{"name":"Architect\u0027s Hammer","tr":"建筑师锤","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:blockIngotStorageEndergy":{"0":{"oreDict":["blockCrudeSteel"],"name":"Clay Compound Block","tr":"复合粘土块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockCrystallineAlloy"],"name":"Crystalline Alloy Block","tr":"晶化合金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockMelodicAlloy"],"name":"Melodic Alloy Block","tr":"旋律合金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockStellarAlloy"],"name":"Stellar Alloy Block","tr":"恒星合金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockCrystallinePinkSlime"],"name":"Crystalline Pink Slime Block","tr":"晶化粉红史莱姆块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockEnergeticSilver"],"name":"Energetic Silver Block","tr":"充能银块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockVividAlloy"],"name":"Vivid Alloy Block","tr":"生动合金块","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:quicksilverBrick":{"0":{"oreDict":["blockQuicksilver"],"name":"Quicksilver Brick","tr":"水银砖块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZircon":{"0":{"oreDict":["dustZircon"],"name":"锆石粉","tr":"锆石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:AlchemicalWizardrytile.blockSpellEnhancement":{"0":{"name":"Unstable Spell Empowerer","tr":"[不稳定]法术附属:力量","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Standard Spell Empowerer","tr":"[标准]法术附属:力量","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Reinforced Spell Empowerer","tr":"[加强]法术附属:力量","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Imbued Spell Empowerer","tr":"[灌输]法术附属:力量","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Demonic Spell Empowerer","tr":"[恶魔]法术附属:力量","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Unstable Spell Dampener","tr":"[不稳定]法术附属:代价","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Standard Spell Dampener","tr":"[标准]法术附属:代价","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Reinforced Spell Dampener","tr":"[加强]法术附属:代价","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Imbued Spell Dampener","tr":"[灌输]法术附属:代价","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Demonic Spell Dampener","tr":"[恶魔]法术附属:代价","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Unstable Spell Augmentor","tr":"[不稳定]法术附属:效能","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Standard Spell Augmentor","tr":"[标准]法术附属:效能","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Reinforced Spell Augmentor","tr":"[加强]法术附属:效能","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Imbued Spell Augmentor","tr":"[灌输]法术附属:效能","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Demonic Spell Augmentor","tr":"[恶魔]法术附属:效能","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Translocator:translocator":{"0":{"name":"Item Translocator","tr":"物品转运器","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Liquid Translocator","tr":"液体转运器","tab":"红石","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.60k_NaK_Coolantcell":{"0":{"name":"60k钠钾冷却单元","tr":"60k钠钾冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"BloodArsenal:vampire_boots":{"0":{"name":"Vampire Boots","tr":"吸血鬼长靴","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:strawberryjuiceItem":{"0":{"oreDict":["listAlljuice"," foodStrawberryjuice"],"name":"Strawberry Juice","tr":"草莓汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone3Stairs":{"0":{"name":"Granite Stairs","tr":"花岗岩楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_south_unlit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneEtchedMossy":{"0":{"name":"Mossy Etched Nagastone","tr":"Mossy Etched Nagastone","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MedalBuilder":{"0":{"name":"Medal - Excellent Builder","tr":"优秀的建设者勋章","tab":"GTNH: 物品","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:fleshTH":{"0":{"name":"Lump of Flesh","tr":"肉疙瘩","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingGermanium":{"0":{"oreDict":["ringGermanium"],"name":"锗环","tr":"锗环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:vampireboots":{"0":{"name":"Vampire Oxford Boots","tr":"吸血鬼之靴","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":196}},"Botania:biomeStoneA14Stairs":{"0":{"name":"Metamorphic Taiga Cobblestone Stairs","tr":"变质雪原圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemWandCap":{"0":{"name":"Shadowmetal Cap","tr":"暗影杖端","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Enchanted Cloth Cap","tr":"魔力布匹杖端","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Crimson-Stained Cloth Cap","tr":"血腥布匹杖端","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Shadow-Imbued Cloth Cap","tr":"暗影布匹杖端","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.pipeController":{"0":{"name":"Logistics Pipe Controller","tr":"管道控制器","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.maple":{"0":{"oreDict":["fenceGateWood"],"name":"Maple Fence Gate","tr":"枫树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleDragonblood":{"0":{"oreDict":["plateDoubleDragonblood"],"name":"双重龙血板","tr":"双重龙血板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:futomakiItem":{"0":{"oreDict":["foodFutomaki"],"name":"Futo Maki","tr":"大卷寿司","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCopperIISulfate":{"0":{"oreDict":["dustSmallCopperIISulfate"],"name":"小堆硫酸铜(II)粉","tr":"小堆硫酸铜(II)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:logisticsPipeBlock":{"0":{"name":"LogisticsPipes Pipe Block.name","tr":"LogisticsPipes Pipe Block.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:spanishmoss":{"0":{"oreDict":["cropSpanishMoss"],"name":"Spanish Moss","tr":"寄生藤","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"kekztech:kekztech_lapotronicenergyunit_block":{"0":{"name":"Lapotronic Super Capacitor Casing","tr":"兰波顿超级电容机械方块","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lapotronic Capacitor (IV)","tr":"兰波顿电容(IV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lapotronic Capacitor (LuV)","tr":"兰波顿电容(LuV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lapotronic Capacitor (ZPM)","tr":"兰波顿电容(ZPM)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Lapotronic Capacitor (UV)","tr":"兰波顿电容(UV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ultimate Capacitor (UHV)","tr":"终极电容(UHV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Empty Capacitor (-)","tr":"空电容(-)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Lapotron Capacitor (EV)","tr":"兰波顿电容(EV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Extremely Ultimate Capacitor (UEV)","tr":"极·终极电容(UEV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Insanely Ultimate Capacitor (UIV)","tr":"狂·终极电容(UIV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Mega Ultimate Capacitor (UMV)","tr":"太·终极电容(UMV)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:dreamwood1Stairs":{"0":{"name":"Dreamwood Plank Stairs","tr":"梦之木楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:enchantedSoil":{"0":{"name":"Enchanted Soil","tr":"蕴魔土","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.spacesuit_helmetglasses":{"0":{"name":"SpaceSuit Sensor Glasses","tr":"宇航服传感器眼镜","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":2201}},"harvestcraft:currypowderItem":{"0":{"oreDict":["listAllspice"," foodCurrypowder"],"name":"Curry Powder","tr":"咖喱粉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ironchestminecarts:minecart_chest_obsidian":{"0":{"name":"Minecart with Obsidian Chest","tr":"黑曜石箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyAbyssalAlloy":{"0":{"oreDict":["dustTinyAbyssalAlloy"],"name":"小撮深渊合金粉","tr":"小撮深渊合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:stair.tiger":{"0":{"oreDict":["stairWood"],"name":"Tigerwood Stairs","tr":"核桃树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:datenutbreadItem":{"0":{"oreDict":["foodDatenutbread"],"name":"Date Nut Bread","tr":"椰枣坚果面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsobsidian":{"0":{"name":"Obsidian Transport Pipe","tr":"黑曜石管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:herbgarden":{"0":{"name":"Herb Garden","tr":"草本菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:beansandriceItem":{"0":{"oreDict":["foodBeansandrice"],"name":"Beans and Rice","tr":"大豆饭","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:door_jungle":{"0":{"name":"Jungle Door","tr":"丛林木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.enclosed":{"1":{"name":"Sealable Oxygen Pipe","tr":"可密封氧气管道","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Sealable Aluminum Wire","tr":"可密封铝线","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Sealable Heavy Aluminum Wire","tr":"可密封重质铝线","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:reachRing":{"0":{"name":"Ring of Far Reach","tr":"触物指环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:waxCapsuleJuice":{"0":{"oreDict":["capsuleJuice"],"name":"Juice Capsule","tr":"耐火果汁胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA13Stairs":{"0":{"name":"Metamorphic Desert Cobblestone Stairs","tr":"变质沙漠圆石楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetLaurenium":{"0":{"oreDict":["nuggetLaurenium"],"name":"劳伦姆合金粒","tr":"劳伦姆合金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzTypeLavender":{"0":{"name":"Block of Lavender Quartz","tr":"熏香石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Lavender Quartz Block","tr":"錾制熏香石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Lavender Quartz Block","tr":"竖纹熏香石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:rack":{"0":{"oreDict":["oc:rack"," oc:serverRack"],"name":"Rack","tr":"机架","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VenusStoneDust":{"0":{"oreDict":["dustSpace"," dustVenusStone"," dustVenus"],"name":"Venus Stone Dust","tr":"金星尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BW_LeatherRotor":{"0":{"name":"Primitive Leather Rotor (Wind only)","tr":"原始皮革转子(风车专用)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":30001}},"miscutils:itemDustAgarditeNd":{"0":{"oreDict":["dustAgarditeNd"],"name":"钇砷铜矿(Nd)粉","tr":"钇砷铜矿(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallStellite":{"0":{"oreDict":["dustSmallStellite"],"name":"小堆铬钴锰钛合金粉","tr":"小堆铬钴锰钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshPick":{"0":{"name":"Desh Pickaxe","tr":"戴斯镐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1025}},"IC2:itemToolBronzePickaxe":{"0":{"name":"Bronze Pickaxe","tr":"青铜镐","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":251}},"LogisticsPipes:item.PipeItemsBasicTransport":{"0":{"name":"Unrouted Transport Pipe","tr":"无路由运输管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedCrocoite":{"0":{"oreDict":["crushedCentrifugedCrocoite"],"name":"Centrifuged Crushed Crocoite Ore","tr":"离心赤铅矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.hydrogenPipe":{"0":{"name":"Hydrogen Pipe","tr":"氢气管道","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemShardIridium":{"0":{"name":"Iridium Shard","tr":"Iridium Shard","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallIncoloyMA956":{"0":{"oreDict":["dustSmallIncoloyMA956"],"name":"小堆耐热铬铁合金-MA956粉","tr":"小堆耐热铬铁合金-MA956粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:witchesovenidle":{"0":{"name":"Witches Oven","tr":"巫师烤炉","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:wintersquashseedItem":{"0":{"oreDict":["listAllseed"," seedWintersquash"],"name":"Winter Squash Seed","tr":"笋瓜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:amberCore":{"0":{"name":"Amber Rod","tr":"琥珀杖柄","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cinnamonappleoatmealItem":{"0":{"oreDict":["foodCinnamonappleoatmeal"],"name":"Cinnamon Apple Oatmeal","tr":"苹果味肉桂燕麦片","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:Diamond Omnitool":{"1":{"name":"Diamond Omnitool","tr":"钻石钻锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Diamond Omnitool","tr":"钻石钻锯","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"Ztones:tile.zechBlock":{"0":{"name":"Zech ⓪","tr":"Zech ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zech ①","tr":"Zech ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zech ②","tr":"Zech ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zech ③","tr":"Zech ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zech ④","tr":"Zech ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zech ⑤","tr":"Zech ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zech ⑥","tr":"Zech ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zech ⑦","tr":"Zech ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zech ⑧","tr":"Zech ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zech ⑨","tr":"Zech ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zech ⑩","tr":"Zech ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zech ⑪","tr":"Zech ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zech ⑫","tr":"Zech ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zech ⑬","tr":"Zech ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zech ⑭","tr":"Zech ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zech ⑮","tr":"Zech ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NanoScubaHelmet":{"0":{"name":"Nano Scuba Helmet","tr":"纳米潜水头盔","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:forestEye":{"0":{"name":"Eye of the Ancients","tr":"远古之眼","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTriniumNaquadahCarbonite":{"0":{"oreDict":["boltTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金螺栓","tr":"掺碳三元硅岩合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearTitansteel":{"0":{"oreDict":["gearGtTitansteel"," gearTitansteel"],"name":"泰坦精钢齿轮","tr":"泰坦精钢齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateRhenium":{"0":{"oreDict":["plateRhenium"],"name":"铼板","tr":"铼板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_black":{"0":{"name":"Black Curtain","tr":"黑色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedApples":{"0":{"name":"Crated Apple","tr":"装箱的苹果","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicMachina:metaphysicalRose":{"0":{"name":"tile.metaphysicalRose.name","tr":"tile.metaphysicalRose.name","tab":"神秘力学","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:sausageItem":{"0":{"oreDict":["foodSausage"],"name":"Sausage","tr":"香肠","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderZoo:blockEnderCharge":{"0":{"name":"Ender Charge","tr":"末影炸药","tab":"EnderZoo","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:netherGarden":{"0":{"name":"Nether Garden","tr":"下界菜园","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTowerStone":{"0":{"oreDict":["plankWood"],"name":"Towerwood Planks","tr":"塔的木板","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plankWood"],"name":"Encased Towerwood","tr":"塔木板箱","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plankWood"],"name":"Cracked Towerwood","tr":"破裂塔木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plankWood"],"name":"Mossy Towerwood","tr":"青苔塔木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plankWood"],"name":"Infested Towerwood","tr":"蛀虫塔木","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:poppetshelf":{"0":{"name":"Poppet Shelf","tr":"娃娃台子","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsule":{"0":{"name":"Wax Capsule","tr":"蜂蜡胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MediumFuelCanister":{"0":{"name":"Medium Fuel Canister","tr":"中型燃料罐","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockExperienceObelisk":{"0":{"name":"Experience Obelisk","tr":"经验交换方尖碑","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.CarminiteBlock":{"0":{"name":"Block of Carminite","tr":"Block of Carminite","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_slab_top":{"0":{"name":"Marble Slab","tr":"大理石台阶","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:hologram2":{"0":{"oreDict":["oc:hologram2"],"name":"Hologram Projector (Tier 2)","tr":"T2全息投影仪","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:hologram1":{"0":{"oreDict":["oc:hologram1"],"name":"Hologram Projector (Tier 1)","tr":"T1全息投影仪","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminitePickaxe":{"0":{"name":"Thauminite Pickaxe","tr":"秘晶镐","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":975}},"Botania:reedBlock":{"0":{"name":"Reed Block","tr":"甘蔗块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamchestnutSapling":{"0":{"name":"Chestnut Sapling","tr":"板栗树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.telepadFake":{"0":{"name":"tile.telepadFake.name","tr":"tile.telepadFake.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:WG_MetalDevice":{"0":{"name":"Essentia Pump","tr":"源质泵","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["voidblock"," blockVoidMetal"," blockVoidmetal"," blockVoid"],"name":"Void metal Block","tr":"虚空金属块","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Arcane Terrestrial Reformer","tr":"奥术群系转化器","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Terrestrial Focus: Plains","tr":"群系核心:平原","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Terrestrial Focus: Cold Taiga","tr":"群系核心:冻原","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Terrestrial Focus: Desert","tr":"群系核心:沙漠","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Terrestrial Focus: Jungle","tr":"群系核心:雨林","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Terrestrial Focus: Hell","tr":"群系核心:地狱","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Terrestrial Focus: Tainted Lands","tr":"群系核心:腐化之地","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Terrestrial Focus: Mushroom Island","tr":"群系核心:蘑菇岛","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Terrestrial Focus: River","tr":"群系核心:河流","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Terrestrial Focus: Ocean","tr":"群系核心:海洋","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Terrestrial Focus: End","tr":"群系核心:末地","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Terrestrial Focus: Magical Forest","tr":"群系核心:魔法森林","tab":"巫师宝具","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:tclogo":{"0":{"name":"TCLogo","tr":"TCLogo","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTriniumNaquadahCarbonite":{"0":{"oreDict":["frameGtTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金框架","tr":"掺碳三元硅岩合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltZirconiumCarbide":{"0":{"oreDict":["boltZirconiumCarbide"],"name":"碳化锆螺栓","tr":"碳化锆螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.cavernVines":{"0":{"name":"Cavernous Vines","tr":"岩穴藤蔓","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:playerDetectorAdvanced":{"0":{"name":"Advanced Player Detector","tr":"高级玩家探测器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.BiblioClipboard":{"0":{"name":"Clipboard","tr":"写字板","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:walnutraisinbreadItem":{"0":{"oreDict":["foodWalnutraisinbread"],"name":"Walnut Raisin Bread","tr":"核桃葡萄干面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodFancySign":{"0":{"name":"Bloodwood Fancy Sign","tr":"血树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Fancy Sign","tr":"黑暗树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Fancy Sign","tr":"桉树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Fancy Sign","tr":"熔融树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Fancy Sign","tr":"熔融树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Fancy Sign","tr":"车桑子树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Fancy Sign","tr":"枫树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Fancy Sign","tr":"紫檀树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Fancy Sign","tr":"红木精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Fancy Sign","tr":"银铃树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Fancy Sign","tr":"樱花树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Fancy Sign","tr":"核桃树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Fancy Sign","tr":"柳树精致木牌","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHastelloyC276":{"0":{"oreDict":["dustHastelloyC276"],"name":"哈斯特洛依合金-C276粉","tr":"哈斯特洛依合金-C276粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearGrisium":{"0":{"oreDict":["gearGtGrisium"," gearGrisium"],"name":"灰钛合金齿轮","tr":"灰钛合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockMatrixFrame":{"0":{"name":"Matrix Frame","tr":"矩阵框架","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:hunterhatgarlicked":{"0":{"name":"Witch Hunter Dawn Hat","tr":"狩巫黎明之帽","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":166}},"OpenComputers:cable":{"0":{"oreDict":["oc:cable"],"name":"Cable","tr":"线缆","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:playercompass":{"0":{"name":"Player Compass","tr":"玩家指南针","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemIngotBotmium":{"0":{"oreDict":["ingotBotmium"],"name":"博特姆合金锭","tr":"博特姆合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:customTool":{"0":{"name":"Dynamic Mace","tr":"法术权杖","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:efficiencyUpgradeItem":{"0":{"name":"Upgrade - Efficiency","tr":"升级组件-效率","tab":"模块化炮塔","type":"Item","maxStackSize":4,"maxDurability":1}},"harvestcraft:cheeseontoastItem":{"0":{"oreDict":["foodCheeseontoast"],"name":"Cheese on Toast","tr":"干酪土司","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseRhodium":{"0":{"oreDict":["plateDenseRhodium"],"name":"致密铑板","tr":"致密铑板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLithiumPeroxide":{"0":{"oreDict":["dustTinyLithiumPeroxide"],"name":"小撮过氧化锂粉","tr":"小撮过氧化锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cactusfruitItem":{"0":{"oreDict":["cropCactusfruit"," listAllfruit"],"name":"Cactus Fruit","tr":"仙人掌果","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.DysonSwarmParts":{"0":{"name":"Dyson Swarm Module","tr":"戴森球模块","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Tantalum Hafnium Carbide Nanofibers","tr":"碳化钽铪纳米纤维","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Neutronium Nanofibers","tr":"中子纳米纤维","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Ultra High Temperature Resistant Mesh","tr":"耐超高温网","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Tantalum Hafnium Carbide Nanoparticles","tr":"碳化钽铪纳米颗粒","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Neutronium Nanoparticles","tr":"中子纳米颗粒","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"Genetics:machine":{"0":{"name":"Isolator","tr":"基因分离器","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sequencer","tr":"测序仪","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Polymeriser","tr":"PCR 仪","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Inoculator","tr":"基因注射器","tab":"基因","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotTriniumNaquadahCarbonite":{"0":{"oreDict":["ingotTriniumNaquadahCarbonite"],"name":"掺碳三元硅岩合金锭","tr":"掺碳三元硅岩合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:BlockWarpwoodLeaves":{"0":{"name":"Warped Leaves","tr":"扭曲树叶","tab":"污秽魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockCombustionGenerator":{"0":{"name":"Combustion Generator","tr":"燃烧发电机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:octopuscookedItem":{"0":{"oreDict":["foodOctopuscooked"],"name":"Cooked Octopus","tr":"熟章鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:manaweaveChest":{"0":{"name":"Manaweave Robe Top","tr":"魔源长袍","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":81}},"HardcoreEnderExpansion:temple_caller":{"0":{"name":"Temple Caller","tr":"神庙召唤物","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":51},"50":{"name":"Temple Caller","tr":"神庙召唤物","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":51}},"GalacticraftAmunRa:tile.asteroidMultiOre1":{"0":{"oreDict":["oreRuby"],"name":"Ruby Ore","tr":"红宝石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["oreEmerald"],"name":"Emerald Ore","tr":"绿宝石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreDiamond"],"name":"Diamond Ore","tr":"钻石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreSpodumene"],"name":"Spodumene Ore","tr":"锂辉石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["oreGold"],"name":"Gold Ore","tr":"金矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreLapis"],"name":"Lapis Lazuli Ore","tr":"青金石矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oreLead"],"name":"Lead Ore","tr":"铅矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["oreUranium"],"name":"Uranium Ore","tr":"铀矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:transposer":{"0":{"oreDict":["oc:transposer"],"name":"Transposer","tr":"转运器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:metalleatSeeds":{"0":{"name":"Metalleat Seeds","tr":"金属种子","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemBigFilterUpgrade":{"0":{"name":"Big Item Filter","tr":"大型物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Big Advanced Item Filter","tr":"高级大型物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pot":{"0":{"name":"Pot","tr":"锅","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:crystalEntityEye":{"0":{"name":"Oculo Anima","tr":"兽灵之眼","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemCoin":{"0":{"name":"Industrial Credit","tr":"工业铁币","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemLootBag":{"0":{"name":"Common Treasure","tr":"寻常藏宝袋","tab":"神秘时代4","type":"Item","maxStackSize":16,"maxDurability":1},"1":{"name":"Uncommon Treasure","tr":"非凡藏宝袋","tab":"神秘时代4","type":"Item","maxStackSize":16,"maxDurability":1},"2":{"name":"Rare Treasure","tr":"稀有藏宝袋","tab":"神秘时代4","type":"Item","maxStackSize":16,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_An":{"0":{"name":"T9: 阿努比斯","tr":"T9: 阿努比斯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:tile.arcaneMarbleBrick":{"0":{"name":"Arcane Marble Brick","tr":"奥术大理石砖","tab":"神秘革命","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:onlineDetector":{"0":{"name":"Online Detector","tr":"在线侦测器","tab":"随意作品","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:elementiumBoots":{"0":{"name":"Elementium Boots","tr":"源质钢靴子","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":235}},"dreamcraft:item.MicaBasedSheet":{"0":{"name":"Mica Based Sheet","tr":"云母板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:spikeWoodTH":{"0":{"name":"Wooden Spike","tr":"木钉","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blackberryjellysandwichItem":{"0":{"oreDict":["foodBlackberryjellysandwich"],"name":"Blackberry Jelly Sandwich","tr":"黑莓果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:obsidianTank":{"0":{"name":"Obsidian Tank","tr":"黑曜石储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_BF":{"0":{"name":"T8: 巴纳德F","tr":"T8: 巴纳德F","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:artichokeItem":{"0":{"oreDict":["cropArtichoke"," listAllveggie"," listAllgreenveggie"],"name":"Artichoke","tr":"朝鲜蓟","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZircophyllite":{"0":{"oreDict":["dustSmallZircophyllite"],"name":"小堆锆星叶石粉","tr":"小堆锆星叶石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngineeringProcessorFluidDiamondCore":{"0":{"name":"Fluid Processor Tier I","tr":"流体处理器 I","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtStaballoy":{"0":{"oreDict":["frameGtStaballoy"],"name":"贫铀合金框架","tr":"贫铀合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_BE":{"0":{"name":"T8: 巴纳德E","tr":"T8: 巴纳德E","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_BC":{"0":{"name":"T8: 巴纳德C","tr":"T8: 巴纳德C","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamdurianSapling":{"0":{"name":"Durian Sapling","tr":"榴莲树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Automagy:blockScribePointer":{"0":{"name":"Scrivener\u0027s Oculus","tr":"记录之眼","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetherQuartzCuttingKnife":{"0":{"name":"Nether Quartz Cutting Knife","tr":"下界石英切割刀","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":51}},"gtneioreplugin:blockDimensionDisplay_CB":{"0":{"name":"T8: 半人马Bb","tr":"T8: 半人马Bb","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLithium7":{"0":{"oreDict":["dustLithium7"],"name":"锂-7粉","tr":"锂-7粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.silver":{"0":{"name":"Molten Silver","tr":"熔融银","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCookedZrCl4":{"0":{"oreDict":["dustSmallCookedZrCl4"],"name":"小堆焙烧过的氯化锆粉","tr":"小堆焙烧过的氯化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.shardCluster":{"0":{"oreDict":["oreKnightmetal"],"name":"Armor Shard Cluster","tr":"装甲碎片堆","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LongStoneRod":{"0":{"name":"Long Stone Rod","tr":"石头长杆","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipefluidsclay":{"0":{"name":"Clay Fluid Pipe","tr":"粘土流体管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:catwalk_unlit_nobottom_tape":{"0":{"name":"Catwalk","tr":"栈桥","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTriniumNaquadahAlloy":{"0":{"oreDict":["dustTinyTriniumNaquadahAlloy"],"name":"小撮三元硅岩合金粉","tr":"小撮三元硅岩合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_As":{"0":{"name":"T3: 小行星带","tr":"T3: 小行星带","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemSmallSpringStaballoy":{"0":{"oreDict":["springSmallStaballoy"],"name":"小型贫铀合金弹簧","tr":"小型贫铀合金弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicinsurgence:infusionIntercepter":{"0":{"name":"Infusion Intercepter","tr":"注魔截流者","tab":"神秘革命","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.log1":{"0":{"oreDict":["logWood"],"name":"Virilig Log","tr":"维里格原木","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleHG1223":{"0":{"oreDict":["plateDoubleHG1223"],"name":"双重HG-1223板","tr":"双重HG-1223板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"dreamcraft:item.MoldFormPipeLarge":{"0":{"name":"Casting Form (Large Pipe Mold)","tr":"铸件(大型管道)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:item.manasteelGrafter":{"0":{"name":"Manasteel Grafter","tr":"魔钢剪枝器","tab":"林业|植树","type":"Item","maxStackSize":1,"maxDurability":16}},"Botania:corporeaFunnel":{"0":{"name":"Corporea Funnel","tr":"多媒体漏斗","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:MetaBlock01":{"0":{"name":"TestMetaBlock01_0","tr":"测试方块","tab":"TST Meta Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ca":{"0":{"name":"T3: 木卫四","tr":"T3: 木卫四","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestthenether:glowflowerseedItem":{"0":{"oreDict":["listAllseed"],"name":"Glow Flower Seed","tr":"辉光花种子","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_unlit_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:adapter":{"0":{"oreDict":["oc:adapter"],"name":"Adapter","tr":"适配器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:troutrawItem":{"0":{"oreDict":["listAllfishraw"," foodTroutraw"],"name":"Raw Trout","tr":"生鲑鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"betterquesting:placeholder":{"0":{"name":"Item Placeholder","tr":"物品 占位符","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.null":{"0":{"name":"Virilig Leaf","tr":"维里格树叶","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCelestialTungsten":{"0":{"oreDict":["dustCelestialTungsten"],"name":"天体钨粉","tr":"天体钨粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedZircophyllite":{"0":{"oreDict":["crushedPurifiedZircophyllite"],"name":"Purified Crushed Zircophyllite Ore","tr":"洗净的锆星叶石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"berriespp:foodGoldfish":{"0":{"oreDict":["listAllfishraw"],"name":"Goldfish","tr":"金鱼草","tab":"更多作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cuttingboardItem":{"0":{"oreDict":["toolCuttingboard"],"name":"Cutting Board","tr":"切肉板","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:expanderInvTierOne":{"0":{"name":"Base Inventory Expander (Tier 1)","tr":"基座存储扩容(一级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.arcticLegs":{"0":{"name":"Arctic Leggings","tr":"极地护腿","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":151}},"miscutils:itemDustSmallThorium232":{"0":{"oreDict":["dustSmallThorium232"],"name":"小堆钍-232粉","tr":"小堆钍-232粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ce":{"0":{"name":"T3: 谷神星","tr":"T3: 谷神星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:machine.eta":{"0":{"name":"Iridium Tank Wall","tr":"铱质蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Iridium Tank Gauge","tr":"铱质蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Iridium Tank Valve","tr":"铱质蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Osmium Tank Wall","tr":"锇质蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Osmium Tank Gauge","tr":"锇质蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Osmium Tank Valve","tr":"锇质蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Neutronium Tank Wall","tr":"中子蓄水器壁板","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Neutronium Tank Gauge","tr":"中子蓄水器量计","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Neutronium Tank Valve","tr":"中子蓄水器阀门","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_DD":{"0":{"name":"T10: 漆黑世界","tr":"T10: 漆黑世界","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureLepersonnite":{"0":{"oreDict":["dustImpureLepersonnite"],"name":"Impure Lepersonnite Dust","tr":"含杂绿泥石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:angelBlock":{"0":{"name":"Angel Block","tr":"天使方块","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:prismarine2Slab":{"0":{"name":"Dark Prismarine Slab","tr":"深色海晶石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshHelmet":{"0":{"name":"Desh Helmet","tr":"戴斯头盔","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":463}},"BiomesOPlenty:scytheStone":{"0":{"name":"Stone Scythe","tr":"石镰刀","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":132}},"Railcraft:tool.whistle.tuner":{"0":{"name":"Whistle Tuner","tr":"鸣笛调谐器","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":251}},"gtneioreplugin:blockDimensionDisplay_ED":{"0":{"name":"末地","tr":"末地","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedUraniumDepleted4":{"0":{"name":"Quad Fuel Rod (Depleted High Density Uranium)","tr":"枯竭四联燃料棒(浓缩铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_EA":{"0":{"name":"末地小行星","tr":"末地小行星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedUraniumDepleted2":{"0":{"name":"Dual Fuel Rod (Depleted High Density Uranium)","tr":"枯竭二联燃料棒(浓缩铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"IronChest:goldDiamondUpgrade":{"0":{"name":"Gold to Diamond Chest Upgrade","tr":"升级:金\u003e钻石","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDoubleTitansteel":{"0":{"oreDict":["plateDoubleTitansteel"],"name":"双重泰坦精钢板","tr":"双重泰坦精钢板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"TConstruct:trap.barricade.birch":{"0":{"name":"Birch Barricade","tr":"白桦木篱笆","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallHafnium":{"0":{"oreDict":["dustSmallHafnium"],"name":"小堆铪粉","tr":"小堆铪粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTeflon":{"0":{"oreDict":["dustTeflon"],"name":"特氟龙粉","tr":"特氟龙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:focusHeal":{"0":{"name":"Wand Focus: Mending","tr":"法杖核心:愈合","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemIngotBlackMetal":{"0":{"oreDict":["ingotBlackMetal"],"name":"黑物质锭","tr":"黑物质锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:spear.wood":{"0":{"name":"Wooden Spear","tr":"木标枪","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":60}},"Botania:stone9Slab":{"0":{"name":"Basalt Brick Slab","tr":"玄武岩砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:terrasteelChest":{"0":{"name":"Terrasteel Chestplate","tr":"泰拉钢胸甲","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":545}},"miscutils:blockBlockHeLiCoPtEr":{"0":{"oreDict":["blockHeLiCoPtEr"],"name":"HeLiCoPtEr块","tr":"HeLiCoPtEr块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.LichBone":{"0":{"name":"Lich Bone","tr":"巫妖之骨","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:honeyBlock":{"0":{"name":"Honey Block","tr":"蜂蜜块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.golem.gear.box":{"0":{"name":"Thaumium Gear Box","tr":"神秘齿轮箱","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:quartzTypeMana":{"0":{"name":"Block of Mana Quartz","tr":"魔力石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Mana Quartz Block","tr":"錾制魔力石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Mana Quartz Block","tr":"竖纹魔力石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryWax":{"0":{"name":"Refractory Wax","tr":"耐火蜂蜡","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:oc_pattern_editor":{"0":{"name":"OC Pattern Editor","tr":"OC样板编辑器","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewHafnium":{"0":{"oreDict":["screwHafnium"],"name":"铪螺丝","tr":"铪螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:igneous_rock":{"0":{"name":"Igneous Rock","tr":"火成岩","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_De":{"0":{"name":"T2: 火卫二","tr":"T2: 火卫二","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.marsMachine":{"0":{"name":"Terraformer","tr":"地形改造机","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Cryogenic Chamber","tr":"冬眠舱","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Launch Controller","tr":"发射控制器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorGrisium":{"0":{"oreDict":["rotorGrisium"],"name":"灰钛合金转子","tr":"灰钛合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotNiobiumCarbide":{"0":{"oreDict":["ingotNiobiumCarbide"],"name":"碳化铌锭","tr":"碳化铌锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.CallistoColdIce":{"0":{"oreDict":["blockCallistoIce"],"name":"Callisto Cold Ice Block","tr":"木卫四玄冰块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTantalumCarbide":{"0":{"oreDict":["frameGtTantalumCarbide"],"name":"碳化钽框架","tr":"碳化钽框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.QuintupleCompressedCharcoal":{"0":{"name":"Block of Quintuple Compressed Charcoal","tr":"五重压缩木炭块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureXenotime":{"0":{"oreDict":["dustImpureXenotime"],"name":"Impure Xenotime Dust","tr":"含杂磷钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.methaneCanisterPartial":{"1":{"name":"Filled Methane Gas Canister","tr":"甲烷气体罐(满)","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1002}},"chisel:ice":{"1":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Ice","tr":"冰","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:pencilGlasses":{"0":{"name":"Pencil Glasses","tr":"铅笔眼镜","tab":"开放式方块","type":"Item","maxStackSize":1,"maxDurability":78}},"Forestry:fences":{"0":{"oreDict":["fenceWood"],"name":"Larch Fence","tr":"落叶树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["fenceWood"],"name":"Teak Fence","tr":"柚树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["fenceWood"],"name":"Desert Acacia Fence","tr":"沙漠刺槐栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["fenceWood"],"name":"Lime Fence","tr":"酸橙树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["fenceWood"],"name":"Chestnut Fence","tr":"栗树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["fenceWood"],"name":"Wenge Fence","tr":"崖豆栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["fenceWood"],"name":"Baobab Fence","tr":"猴面包树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["fenceWood"],"name":"Sequoia Fence","tr":"红杉树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["fenceWood"],"name":"Kapok Fence","tr":"木棉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["fenceWood"],"name":"Ebony Fence","tr":"乌檀树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["fenceWood"],"name":"Mahogany Fence","tr":"桃心树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["fenceWood"],"name":"Balsa Fence","tr":"巴尔杉树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["fenceWood"],"name":"Willow Fence","tr":"柳树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["fenceWood"],"name":"Walnut Fence","tr":"核桃栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["fenceWood"],"name":"Greenheart Fence","tr":"绿樟树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["fenceWood"],"name":"Cherry Fence","tr":"樱桃栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["fenceWood"],"name":"Mahoe Fence","tr":"高槿树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["fenceWood"],"name":"Poplar Fence","tr":"白杨树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["fenceWood"],"name":"Palm Fence","tr":"棕榈树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["fenceWood"],"name":"Papaya Fence","tr":"木瓜栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["fenceWood"],"name":"Pine Fence","tr":"松树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["fenceWood"],"name":"Plum Fence","tr":"李子栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["fenceWood"],"name":"Maple Fence","tr":"枫树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["fenceWood"],"name":"Citrus Fence","tr":"柑橘树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["fenceWood"],"name":"Giant Sequoia Fence","tr":"巨杉栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["fenceWood"],"name":"Ipe Fence","tr":"重蚁树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["fenceWood"],"name":"Padauk Fence","tr":"紫檀树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["fenceWood"],"name":"Cocobolo Fence","tr":"黄檀树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["fenceWood"],"name":"Zebrawood Fence","tr":"斑木树栅栏","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:axeAmethyst":{"0":{"name":"Amethyst Axe","tr":"紫水晶斧","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":2014}},"gtneioreplugin:blockDimensionDisplay_En":{"0":{"name":"T5: 土卫二","tr":"T5: 土卫二","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:waterRing":{"0":{"name":"Ring of Chordata","tr":"鱼泳指环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:trapdoor.fusewood":{"0":{"oreDict":["trapdoorWood"],"name":"Fusewood Trapdoor","tr":"熔融树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:riceseedItem":{"0":{"oreDict":["seedRice"," listAllseed"],"name":"Rice Seed","tr":"水稻种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:groundnutmegItem":{"0":{"oreDict":["foodGroundnutmeg"],"name":"Ground Nutmeg","tr":"豆蔻粉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.Tier3Booster":{"0":{"name":"Tier 3 Booster","tr":"3阶助推器","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:largePulley":{"0":{"name":"Large Pulley","tr":"大轮","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.titanium_boots":{"0":{"name":"Titanium Boots","tr":"钛靴","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":339}},"AWWayofTime:bucketLife":{"0":{"name":"Bucket of Life","tr":"生命之桶","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:focusDislocation":{"0":{"name":"Wand Focus: Dislocation","tr":"法杖核心:转移","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicHorizons:suicidePill":{"0":{"name":"Suicide Injection","tr":"自尽注射剂","tab":"神秘视界","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallStrontiumHydroxide":{"0":{"oreDict":["dustSmallStrontiumHydroxide"],"name":"小堆氢氧化锶粉","tr":"小堆氢氧化锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Builders:templateItem":{"0":{"name":"Template","tr":"模版","tab":"建筑","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:itemPlateDenseTalonite":{"0":{"oreDict":["plateDenseTalonite"],"name":"致密铬钴磷酸盐合金板","tr":"致密铬钴磷酸盐合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Eu":{"0":{"name":"T3: 木卫二","tr":"T3: 木卫二","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallAgarditeY":{"0":{"oreDict":["dustSmallAgarditeY"],"name":"小堆钇砷铜矿(Y)粉","tr":"小堆钇砷铜矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedplateQuadruple":{"96":{"oreDict":["plateQuadrupleAdemicSteel"],"name":"四重硬钢板","tr":"四重硬钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["plateQuadrupleShirabon"],"name":"四重调律源金板","tr":"四重调律源金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["plateQuadrupleAdamantiumAlloy"],"name":"四重精金合金板","tr":"四重精金合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["plateQuadrupleAtomicSeparationCatalyst"],"name":"四重原子分离催化剂板","tr":"四重原子分离催化剂板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["plateQuadrupleExtremelyUnstableNaquadah"],"name":"四重极不稳定硅岩板","tr":"四重极不稳定硅岩板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["plateQuadrupleMAR-M200Steel"],"name":"四重MAR-M200特种钢板","tr":"四重MAR-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["plateQuadrupleMAR-Ce-M200Steel"],"name":"四重MAR-Ce-M200特种钢板","tr":"四重MAR-Ce-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["plateQuadrupleRhodium-PlatedPalladium"],"name":"四重镀铑钯板","tr":"四重镀铑钯板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["plateQuadrupleRuridit"],"name":"四重钌铱合金板","tr":"四重钌铱合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["plateQuadrupleHighDurabilityCompoundSteel"],"name":"四重高耐久性复合钢板","tr":"四重高耐久性复合钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["plateQuadruplePreciousMetalsAlloy"],"name":"四重稀有金属合金板","tr":"四重稀有金属合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["plateQuadrupleEnrichedNaquadahAlloy"],"name":"四重富集硅岩合金板","tr":"四重富集硅岩合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["plateQuadrupleMetastableOganesson"],"name":"四重亚稳态鿫板","tr":"四重亚稳态鿫板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:builderswand":{"0":{"name":"Builder\u0027s Wand","tr":"建筑之杖","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:blockHomHeart":{"0":{"name":"Spell Table","tr":"符咒桌","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallEnergyCrystal":{"0":{"oreDict":["dustSmallEnergyCrystal"],"name":"小堆能量水晶粉","tr":"小堆能量水晶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.towerKey":{"0":{"name":"Tower Key","tr":"塔钥匙","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseZeron100":{"0":{"oreDict":["plateDenseZeron100"],"name":"致密塞龙-100板","tr":"致密塞龙-100板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemLimitedItemFilter":{"0":{"name":"Limited Item Filter","tr":"限制物品过滤器","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotPraseodymium":{"0":{"oreDict":["ingotHotPraseodymium"],"name":"热镨锭","tr":"热镨锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:pipeFacade":{"0":{"name":"Facade: CORRUPT","tr":"伪装板: CORRUPT","tab":"建筑|伪装板","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:stone":{"0":{"oreDict":["stoneAndesite"],"name":"Andesite","tr":"安山岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneBasalt"],"name":"Basalt","tr":"玄武岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneDiorite"],"name":"Diorite","tr":"闪长岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneGranite"],"name":"Granite","tr":"花岗岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneAndesitePolished"],"name":"Polished Andesite","tr":"抛光安山岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneBasaltPolished"],"name":"Polished Basalt","tr":"抛光玄武岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stoneDioritePolished"],"name":"Polished Diorite","tr":"抛光闪长岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stoneGranitePolished"],"name":"Polished Granite","tr":"抛光花岗岩","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stoneAndesiteBricks"],"name":"Andesite Bricks","tr":"安山岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stoneBasaltBricks"],"name":"Basalt Bricks","tr":"玄武岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["stoneDioriteBricks"],"name":"Diorite Bricks","tr":"闪长岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["stoneGraniteBricks"],"name":"Granite Bricks","tr":"花岗岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["stoneAndesiteChiseled"],"name":"Chiseled Andesite Brick","tr":"錾制安山岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["stoneBasaltChiseled"],"name":"Chiseled Basalt Brick","tr":"錾制玄武岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["stoneDioriteChiseled"],"name":"Chiseled Diorite Brick","tr":"錾制闪长岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["stoneGraniteChiseled"],"name":"Chiseled Granite Brick","tr":"錾制花岗岩砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLafiumCompound":{"0":{"oreDict":["stickLafiumCompound"],"name":"路菲恩化合物杆","tr":"路菲恩化合物杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:voidPlant":{"0":{"name":"Void Crop","tr":"虚空植物","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ga":{"0":{"name":"T3: 木卫三","tr":"T3: 木卫三","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"compactkineticgenerators:IridiumRotor":{"0":{"name":"Kinetic Gearbox Rotor (Iridium)","tr":"铱转子","tab":"压缩动能发电机","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateWatertightSteel":{"0":{"oreDict":["plateWatertightSteel"],"name":"防水钢板","tr":"防水钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemTFBPCultivation":{"0":{"name":"TFBP - Cultivation","tr":"地形转换模板-耕地","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"gadomancy:ItemFakeGolemPlacer":{"0":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Null Item report it on github","tr":"无效物品,请到github反馈","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"gendustry:ClimateModule":{"0":{"name":"Climate Control Module","tr":"气候控制模块","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockCreativeEnergyCell":{"0":{"name":"Neutronium Energy Cell","tr":"Neutronium Energy Cell","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"gravisuiteneo:sonicLauncher":{"0":{"name":"Plasma Cannon [WIP]","tr":"等离子加农炮 [WIP]","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:FertileManureSlurry":{"0":{"oreDict":["cellFertileManureSlurry"],"name":"肥沃的粪浆单元","tr":"肥沃的粪浆单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:spectreChestplate":{"0":{"name":"Spectre Chestplate","tr":"灵魂胸甲","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":561}},"Botania:slimeBottle":{"0":{"name":"Slime in a Bottle","tr":"史莱姆罐子","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:vine":{"0":{"name":"Vine","tr":"荆棘","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetHypogen":{"0":{"oreDict":["nuggetHypogen"],"name":"海珀珍粒","tr":"海珀珍粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedZircon":{"0":{"oreDict":["crushedPurifiedZircon"],"name":"Purified Crushed Zircon Ore","tr":"洗净的锆石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier7Rocket":{"0":{"name":"Tier 7 Rocket","tr":"7阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Tier 7 Rocket","tr":"7阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Tier 7 Rocket","tr":"7阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Tier 7 Rocket","tr":"7阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Tier 7 Rocket","tr":"7阶火箭","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.Nothing":{"0":{"name":"You Got Nothing","tr":"你什么都没得到","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:spiceleafseedItem":{"0":{"oreDict":["listAllseed"," seedSpiceleaf"],"name":"Spice Leaf Seed","tr":"香料叶种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseThallium":{"0":{"oreDict":["plateDenseThallium"],"name":"致密铊板","tr":"致密铊板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZirkelite":{"0":{"oreDict":["dustTinyZirkelite"],"name":"小撮钛锆钍矿粉","tr":"小撮钛锆钍矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:ironGoldUpgrade":{"0":{"name":"Iron to Gold Tank Upgrade","tr":"储罐升级:铁\u003e金","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:item.stellar_sword":{"0":{"name":"The Ender MKIV","tr":"终结之剑 MK4","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":5001}},"ae2fc:fluid_interface":{"0":{"name":"ME Dual Interface","tr":"ME二合一接口","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockSpatialIOPort":{"0":{"name":"Spatial IO Port","tr":"空间IO端口","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ha":{"0":{"name":"T7: 妊神星","tr":"T7: 妊神星","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitZPM":{"0":{"oreDict":["circuitUltimate"],"name":"Any ZPM Circuit","tr":"任意ZPM电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingGrisium":{"0":{"oreDict":["ringGrisium"],"name":"灰钛合金环","tr":"灰钛合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCactusCharcoal":{"0":{"oreDict":["itemCharcoalCactus"," fuelCactusCharcoal"],"name":"Cactus Charcoal","tr":"仙人掌炭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:robot":{"0":{"name":"Creatix","tr":"Creatix","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:aether":{"0":{"name":"Aether","tr":"以太元素","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockInventoryPanel":{"0":{"name":"Inventory Panel","tr":"存储控制面板","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB7Slab":{"0":{"name":"Metamorphic Mesa Stone Bricks Slab","tr":"变质高原石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:brewgas":{"0":{"name":"tile.witchery:brewgas.name","tr":"tile.witchery:brewgas.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:diamondChisel":{"0":{"name":"Diamond Chisel","tr":"钻石凿子","tab":"凿工艺|物品","type":"Item","maxStackSize":1,"maxDurability":2561}},"miscutils:itemDustSmallCopperIISulfatePentahydrate":{"0":{"oreDict":["dustSmallCopperIISulfatePentahydrate"],"name":"小堆五水合硫酸铜(II)粉","tr":"小堆五水合硫酸铜(II)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:golem.wifi.backpack":{"0":{"name":"Wireless Golem Backpack","tr":"无线傀儡背包","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsdaizuli":{"0":{"name":"Daizuli Transport Pipe","tr":"靛金刚管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Ho":{"0":{"name":"T9: 荷鲁斯","tr":"T9: 荷鲁斯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockConduit":{"0":{"name":"Spell Conduit","tr":"法术管道","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalPlate":{"0":{"oreDict":["plateMysteriousCrystal"],"name":"Mysterious Crystal Plate","tr":"神秘水晶板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetPikyonium64B":{"0":{"oreDict":["nuggetPikyonium64B"],"name":"皮卡优合金64B粒","tr":"皮卡优合金64B粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockTank":{"0":{"name":"Fluid Tank","tr":"流体箱","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Pressurized Fluid Tank","tr":"高压流体箱","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedJungleWood":{"0":{"name":"Crated Jungle Wood","tr":"装箱的丛林木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemTurningBlanks":{"349525":{"name":"Iron Turning Blank","tr":"铁空转换模板","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedZimbabweite":{"0":{"oreDict":["crushedZimbabweite"],"name":"Crushed Zimbabweite Ore","tr":"粉碎的钛铌铅钠石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:sunflowerbroccolisaladItem":{"0":{"oreDict":["foodSunflowerbroccolisalad"],"name":"Sunflower Broccoli Salad","tr":"瓜子椰菜沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgradeRedstone":{"0":{"name":"Redstone Upgrade","tr":"红石升级","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Redstone Max Upgrade","tr":"红石升级(最大)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Redstone Min Upgrade","tr":"红石升级(最小)","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearIncoloyDS":{"0":{"oreDict":["gearGtIncoloyDS"," gearIncoloyDS"],"name":"耐热铬铁合金-DS齿轮","tr":"耐热铬铁合金-DS齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:NetherBerryBush":{"12":{"name":"Blightberry Bush","tr":"枯萎莓灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Duskberry Bush","tr":"黄昏莓灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Skyberry Bush","tr":"天莓灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Stingberry Bush","tr":"刺莓灌木","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorNitinol60":{"0":{"oreDict":["rotorNitinol60"],"name":"镍钛诺60转子","tr":"镍钛诺60转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"MagicBees:capsule.magic":{"0":{"name":"Empty Magic Capsule","tr":"空魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Water Magic Capsule","tr":"水魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Lava Magic Capsule","tr":"岩浆魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Biomass Magic Capsule","tr":"生物质魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Bioethanol Magic Capsule","tr":"乙醇魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Oil Magic Capsule","tr":"石油魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Fuel Magic Capsule","tr":"燃油魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Seed Oil Magic Capsule","tr":"种子油魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Honey Magic Capsule","tr":"蜂蜜魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Juice Magic Capsule","tr":"果汁魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Ice Magic Capsule","tr":"冰魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Milk Magic Capsule","tr":"牛奶魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Acid Magic Capsule","tr":"酸魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Poison Magic Capsule","tr":"毒液魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Liquid Nitrogen Magic Capsule","tr":"液氮魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Liquid DNA Magic Capsule","tr":"液态DNA魔力胶囊","tab":"魔法蜜蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockQuartzTorch":{"0":{"name":"Charged Quartz Fixture","tr":"充能石英火把","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_Io":{"0":{"name":"T4: 木卫一","tr":"T4: 木卫一","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:controllerSlave":{"0":{"name":"Controller Slave","tr":"附属管理器","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:boneTH":{"0":{"name":"Bone","tr":"骨头","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:bootsWood":{"0":{"name":"Wooden Boots","tr":"木靴子","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":27}},"miscutils:itemPlateDoubleStellite":{"0":{"oreDict":["plateDoubleStellite"],"name":"双重铬钴锰钛合金板","tr":"双重铬钴锰钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"miscutils:itemPlateDenseTumbaga":{"0":{"oreDict":["plateDenseTumbaga"],"name":"致密铜金合金板","tr":"致密铜金合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:part.plate":{"0":{"oreDict":["plateIron"," plateAnyIron"],"name":"Iron Plate","tr":"铁板","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["plateSteel"],"name":"Steel Plate","tr":"钢板","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["plateTinAlloy"],"name":"Tin Plate","tr":"锡板","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["plateCopper"," plateAnyCopper"],"name":"Copper Plate","tr":"铜板","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["plateLead"],"name":"Lead Plate","tr":"铅板","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:alfheimPortal":{"0":{"name":"Elven Gateway Core","tr":"精灵门核心","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:slimesling":{"0":{"name":"Slimesling","tr":"史莱姆弹弓","tab":"匠魂小工具","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:biomeStoneA0Slab":{"0":{"name":"Metamorphic Forest Stone Slab","tr":"变质森林石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:guacamoleItem":{"0":{"oreDict":["foodGuacamole"],"name":"Guacamole","tr":"鳄梨沙拉酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_KB":{"0":{"name":"T7: 柯伊伯带","tr":"T7: 柯伊伯带","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreHibonite":{"0":{"oreDict":["oreHibonite"],"name":"Hibonite Ore","tr":"黑铝钙石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:plumyogurtItem":{"0":{"oreDict":["foodPlumyogurt"],"name":"Plum Yogurt","tr":"李子酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureGreenockite":{"0":{"oreDict":["dustImpureGreenockite"],"name":"Impure Greenockite Dust","tr":"含杂硫镉矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolMemoryCard":{"0":{"name":"Memory Card","tr":"内存卡","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftCore:item.oxygenMask":{"0":{"name":"Oxygen Mask","tr":"氧气面罩","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedlens":{"1":{"oreDict":["lensBismutite"," craftingLensYellow"],"name":"泡铋透镜","tr":"泡铋透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["lensPrasiolite"," craftingLensYellow"],"name":"堇云石透镜","tr":"堇云石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["craftingLensWhite"," lensCubicZirconia"],"name":"立方氧化锆透镜","tr":"立方氧化锆透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["craftingLensPink"," lensMagnetoResonatic"],"name":"磁共振石透镜","tr":"磁共振石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["craftingLensBlack"," lensFluor-Buergerite"],"name":"氟铁电气石透镜","tr":"氟铁电气石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["craftingLensCyan"," lensChromo-Alumino-Povondraite"],"name":"铬铝电气石透镜","tr":"铬铝电气石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["craftingLensRed"," lensOrundum"],"name":"合成玉透镜","tr":"合成玉透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["craftingLensCyan"," lensVanadio-Oxy-Dravite"],"name":"钒镁电气石透镜","tr":"钒镁电气石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["craftingLensLightGray"," lensOlenite"],"name":"铝电气石透镜","tr":"铝电气石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["craftingLensGreen"," lensBArTiMaEuSNeK"],"name":"BArTiMaEuSNeK透镜","tr":"BArTiMaEuSNeK透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11499":{"oreDict":["craftingLensGreen"," lensCerium-dopedLutetiumAluminiumGarnet(Ce:LuAG)"],"name":"掺铈镥铝石榴石 (Ce:LuAG)透镜","tr":"掺铈镥铝石榴石 (Ce:LuAG)透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["craftingLensRed"," lensRedZircon"],"name":"红锆石透镜","tr":"红锆石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["craftingLensWhite"," lensSalt"],"name":"盐透镜","tr":"盐透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"oreDict":["lensSpodumene"," craftingLensBrown"],"name":"锂辉石透镜","tr":"锂辉石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"oreDict":["craftingLensPink"," lensRockSalt"],"name":"岩盐透镜","tr":"岩盐透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["lensFayalite"," craftingLensBlack"],"name":"铁橄榄石透镜","tr":"铁橄榄石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["craftingLensWhite"," lensForsterite"],"name":"镁橄榄石透镜","tr":"镁橄榄石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["lensHedenbergite"," craftingLensGreen"],"name":"钙铁辉石透镜","tr":"钙铁辉石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["craftingLensGreen"," lensTiberium"],"name":"泰伯利亚透镜","tr":"泰伯利亚透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["craftingLensRed"," lensFluorspar"],"name":"氟石透镜","tr":"氟石透镜","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CokeOvenBrickDust":{"0":{"oreDict":["dustCokeOvenBrick"],"name":"Coke Oven Brick Dust","tr":"焦炉砖粉","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:modMatrix":{"0":{"name":"Modified Runic Matrix","tr":"改版符文矩阵","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemScanner":{"1":{"name":"OD Scanner","tr":"OD扫描器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"OD Scanner","tr":"OD扫描器","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"BiomesOPlenty:driedDirt":{"0":{"name":"Dried Dirt","tr":"干燥泥土","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHastelloyN":{"0":{"oreDict":["ingotHastelloyN"],"name":"哈斯特洛依合金-N锭","tr":"哈斯特洛依合金-N锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:TaintFruit":{"0":{"name":"Tainted Fruit","tr":"腐化果实","tab":"禁忌魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBabbitAlloy":{"0":{"oreDict":["dustSmallBabbitAlloy"],"name":"小堆巴氏合金粉","tr":"小堆巴氏合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:_null_":{"0":{"name":"item._null_.name","tr":"item._null_.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.tin":{"0":{"name":"Liquid Tin","tr":"熔融锡","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotIncoloyMA956":{"0":{"oreDict":["ingotIncoloyMA956"],"name":"耐热铬铁合金-MA956锭","tr":"耐热铬铁合金-MA956锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.ticketMachine":{"0":{"name":"Ticket Machine","tr":"火车票打印机","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTalonite":{"0":{"oreDict":["dustTalonite"],"name":"铬钴磷酸盐合金粉","tr":"铬钴磷酸盐合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorBatpack":{"1":{"name":"BatPack","tr":"储电背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"BatPack","tr":"储电背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"CarpentersBlocks:blockCarpentersGate":{"0":{"name":"Carpenter\u0027s Gate","tr":"木匠栅栏门","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"kekztech:kekztech_thaumiumreinforcedjar_block":{"0":{"name":"Thaumium Reinforced Jar","tr":"神秘源质罐子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Thaumium Reinforced Void Jar","tr":"神秘虚空罐子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:capacitor":{"0":{"oreDict":["oc:capacitor"],"name":"Capacitor","tr":"电容","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHastelloyW":{"0":{"oreDict":["ingotHastelloyW"],"name":"哈斯特洛依合金-W锭","tr":"哈斯特洛依合金-W锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:iron_trapdoor":{"0":{"name":"Iron Trapdoor","tr":"铁制活板门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingPraseodymium":{"0":{"oreDict":["ringPraseodymium"],"name":"镨环","tr":"镨环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotHastelloyX":{"0":{"oreDict":["ingotHastelloyX"],"name":"哈斯特洛依合金-X锭","tr":"哈斯特洛依合金-X锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:alchemite":{"0":{"name":"Alchemite","tr":"炼金炸药","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:spinachItem":{"0":{"oreDict":["cropSpinach"," listAllveggie"," listAllgreenveggie"],"name":"Spinach","tr":"菠菜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BW_SimpleWindMeter":{"0":{"name":"Simple Wind Meter","tr":"简易风速计","tab":"BartWorks跨时代","type":"Item","maxStackSize":1,"maxDurability":16}},"appliedenergistics2:tile.BlockCraftingMonitor":{"0":{"name":"Crafting Monitor","tr":"合成监控器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraBees:hiveFrame.debug":{"0":{"name":"Nova Frame","tr":"新星框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":241}},"malisisdoors:curtain_green":{"0":{"name":"Green Curtain","tr":"绿色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockExtendedNodeJar":{"0":{"name":"Node in a Jar","tr":"缸中节点","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwistSpaceTechnology:MetaItemRune":{"0":{"name":"Rune of Vigilance","tr":"恂戒符文","tab":"TST Meta Items 1","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Rune of Erelong","tr":"须臾符文","tab":"TST Meta Items 1","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Rune of Ether","tr":"以太符文","tab":"TST Meta Items 1","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Rune of Perdition","tr":"永劫符文","tab":"TST Meta Items 1","type":"Item","maxStackSize":1,"maxDurability":1}},"Botany:stained":{"0":{"oreDict":["blockGlassHV"],"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"41":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"42":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"44":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"45":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"46":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"47":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"48":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"49":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"50":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"51":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"52":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"53":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"54":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"55":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"56":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"57":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"58":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"59":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"60":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"61":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"62":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"63":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"64":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"65":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"66":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"67":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"68":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"69":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"70":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"71":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"72":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"73":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"74":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"75":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"76":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"77":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"78":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"79":{"name":"Pigmented Glass","tr":"染色玻璃","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureKoboldite":{"0":{"oreDict":["dustImpureKoboldite"],"name":"Impure Koboldite Dust","tr":"含杂妖金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtneioreplugin:blockDimensionDisplay_MB":{"0":{"name":"T9: 迈罕带","tr":"T9: 迈罕带","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:thaumicAnvil":{"0":{"name":"Thaumium Anvil","tr":"神秘铁砧","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Slightly Damaged Thaumium Anvil","tr":"轻微损坏的神秘铁砧","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Very Damaged Thaumium Anvil","tr":"严重损坏的神秘铁砧","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:sturdyMachine":{"0":{"name":"Sturdy Casing","tr":"坚固部件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:oreZirkelite":{"0":{"oreDict":["oreZirkelite"],"name":"Zirkelite Ore","tr":"钛锆钍矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemSugarCharcoal":{"0":{"oreDict":["itemCharcoalSugar"," fuelSugarCharcoal"],"name":"Sugar Charcoal","tr":"糖炭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstlabel":{"0":{"name":"Acacia Label","tr":"金合欢标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Label","tr":"巴尔杉标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Label","tr":"猴面包树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Label","tr":"樱桃树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Label","tr":"栗树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Label","tr":"柑橘树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Label","tr":"乌檀树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Label","tr":"樟树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Label","tr":"木棉标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Label","tr":"落叶松标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Label","tr":"菩提树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Label","tr":"白皮树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Label","tr":"桃花心木标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Label","tr":"枫树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Label","tr":"棕榈树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Label","tr":"木瓜树标签","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallBlackTitanium":{"0":{"oreDict":["dustSmallBlackTitanium"],"name":"小堆黑钛粉","tr":"小堆黑钛粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPapaya":{"0":{"name":"Papaya","tr":"木瓜","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.walkway":{"0":{"name":"Walkway","tr":"通道","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockQuartzGrowthAccelerator":{"0":{"name":"Crystal Growth Accelerator","tr":"晶体催生器","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodErbium":{"0":{"oreDict":["stickErbium"],"name":"铒杆","tr":"铒杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseWatertightSteel":{"0":{"oreDict":["plateDenseWatertightSteel"],"name":"致密防水钢板","tr":"致密防水钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFTrapDoorTime":{"0":{"name":"Timewood Trapdoor","tr":"时光树活板门","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLi2BeF4":{"0":{"oreDict":["dustTinyLi2BeF4"],"name":"小撮Li2BeF4燃料复合物粉","tr":"小撮Li2BeF4燃料复合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:item_special_effects":{"0":{"name":"item.itemNumber.name","tr":"item.itemNumber.name","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaCelestialTungsten":{"0":{"oreDict":["cellPlasmaCelestialTungsten"],"name":"天体钨等离子体单元","tr":"天体钨等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetNiobiumCarbide":{"0":{"oreDict":["nuggetNiobiumCarbide"],"name":"碳化铌粒","tr":"碳化铌粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Robotics:redstone_board":{"0":{"name":"Redstone Board","tr":"红石板","tab":"建筑|机器人","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicExploration:boundJar":{"0":{"name":"Bound Jar","tr":"绑定罐子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.sword.darkwood":{"0":{"name":"Darkwood Sword","tr":"黑暗树剑","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":132}},"openmodularturrets:sensorTierThreeItem":{"0":{"name":"Sensor (Tier 3)","tr":"传感器(三级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.VegaBStoneDust":{"0":{"oreDict":["dustSpace"," dustVegaBStone"," dustVegaB"],"name":"Vega B Stone Dust","tr":"织女一B尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:paperwall_block":{"0":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Paperwall Block","tr":"障子方块","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:geothermalgenerator":{"0":{"name":"Geothermal Generator","tr":"岩浆发电机","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureHibonite":{"0":{"oreDict":["dustImpureHibonite"],"name":"Impure Hibonite Dust","tr":"含杂黑铝钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.reactorUraniumSimple":{"0":{"name":"燃料棒(铀)","tr":"燃料棒(铀)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"GalaxySpace:ceresblocks":{"0":{"oreDict":["rockCeres"," rockSpace"],"name":"Ceres Surface Block","tr":"谷神星地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockCeres"," rockSpace"],"name":"Ceres Subsurface Block","tr":"谷神星地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ceres Dungeon Bricks","tr":"谷神星地牢砖","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreMeteoricIron"],"name":"Meteoric Iron Ore","tr":"谷神星陨铁矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ceres Dungeon Floor","tr":"谷神星地牢地面","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ceres Dungeon Top","tr":"谷神星地牢天花板","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:duskScribeTool":{"0":{"name":"Elemental Inscription Tool: Dusk","tr":"元素铭文: 幽暗","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":11}},"EnderZoo:blockConcussionCharge":{"0":{"name":"Concussion Charge","tr":"震荡炸药","tab":"EnderZoo","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:manasteelShovel":{"0":{"name":"Manasteel Shovel","tr":"魔钢铲","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":301}},"miscutils:itemRodTalonite":{"0":{"oreDict":["stickTalonite"],"name":"铬钴磷酸盐合金杆","tr":"铬钴磷酸盐合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_unlit":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:scytheDiamond":{"0":{"name":"Diamond Scythe","tr":"钻石镰刀","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1562}},"miscutils:itemPlateDoubleIodine":{"0":{"oreDict":["plateDoubleIodine"],"name":"双重碘板","tr":"双重碘板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"dreamcraft:item.QuantumPartBoots":{"0":{"name":"Quantum Parts \"Boots\"","tr":"量子靴外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedLanthaniteNd":{"0":{"oreDict":["crushedLanthaniteNd"],"name":"Crushed Lanthanite (Nd) Ore","tr":"粉碎的镧石(Nd)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA10Slab":{"0":{"name":"Metamorphic Mountain Cobblestone Slab","tr":"变质高山圆石台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallNitinol60":{"0":{"oreDict":["dustSmallNitinol60"],"name":"小堆镍钛诺60粉","tr":"小堆镍钛诺60粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:bloodLight":{"0":{"name":"Blood Light","tr":"血之光源","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemVoidComet":{"0":{"name":"Tainted Boots of the Eldritch Comet","tr":"邪术彗星之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"chisel:obsidian":{"1":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Obsidian","tr":"黑曜石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:Imprinter":{"0":{"name":"Genetic Imprinter","tr":"基因压印机","tab":"基因工业","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemNuggetFish":{"0":{"name":"Fish Nugget","tr":"鱼肉粒","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:Shuriken":{"0":{"name":"§f山铜 手里剑","tr":"§f山铜 手里剑","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"IC2:itemToolPainterRed":{"0":{"name":"Red Painter","tr":"红色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"witchery:tormentportal":{"0":{"name":"Torment Portal","tr":"痛苦之扉","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetArcanite":{"0":{"oreDict":["nuggetArcanite"],"name":"奥金粒","tr":"奥金粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseTellurium":{"0":{"oreDict":["plateDenseTellurium"],"name":"致密碲板","tr":"致密碲板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateLithium7":{"0":{"oreDict":["plateLithium7"],"name":"锂-7板","tr":"锂-7板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:okraItem":{"0":{"oreDict":["cropOkra"," listAllveggie"," listAllgreenveggie"],"name":"Okra","tr":"秋葵","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.WispyCloud":{"0":{"name":"Wispy Cloud","tr":"飘渺的云","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:iron2":{"0":{"name":"Block of Iron","tr":"铁块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Iron","tr":"铁块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Block of Iron","tr":"铁块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Block of Iron","tr":"铁块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Block of Iron","tr":"铁块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Block of Iron","tr":"铁块","tab":"凿工艺|其它模组","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureKoboldite":{"0":{"oreDict":["dustPureKoboldite"],"name":"Purified Koboldite Dust","tr":"纯净妖金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:item.schematic":{"0":{"name":"Shuttle Schematic","tr":"穿梭机图纸","tab":"阿蒙·拉","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotBlackTitanium":{"0":{"oreDict":["ingotBlackTitanium"],"name":"黑钛锭","tr":"黑钛锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:dagger.stone":{"0":{"name":"Stone Dagger","tr":"石头匕首","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":132}},"BiomesOPlenty:biomeFinder":{"0":{"name":"Biome Radar","tr":"生物雷达","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":1}},"thaumicbases:lucrite":{"0":{"name":"Lucrite Crop","tr":"炼金草","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltHeLiCoPtEr":{"0":{"oreDict":["boltHeLiCoPtEr"],"name":"HeLiCoPtEr螺栓","tr":"HeLiCoPtEr螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesAddons:cable_ae":{"0":{"name":"Energistics Connector","tr":"AE连接器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:fishsandwichItem":{"0":{"oreDict":["foodFishsandwich"],"name":"Fish Sandwich","tr":"鲜鱼三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.itemAstroMiner":{"0":{"name":"Astro Miner","tr":"太空采矿机","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:decursedirected":{"0":{"name":"Statue of Broken Curses","tr":"破损诅咒之雕像","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockStirlingGenerator":{"0":{"name":"Stirling Generator","tr":"斯特林发电机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLafossaite":{"0":{"oreDict":["dustLafossaite"],"name":"铊盐粉","tr":"铊盐粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:walleyerawItem":{"0":{"oreDict":["listAllfishraw"," foodWalleyraw"],"name":"Raw Walleye","tr":"生碧古鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:leviathanTH":{"0":{"name":"Primordial Fossil","tr":"原始化石","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotAncientGranite":{"0":{"oreDict":["ingotAncientGranite"],"name":"古花岗岩锭","tr":"古花岗岩锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:flesh":{"0":{"oreDict":["blockMeatRaw"],"name":"Flesh","tr":"肉块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:powerConverter":{"0":{"oreDict":["oc:powerConverter"],"name":"Power Converter","tr":"能量转换器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedLanthaniteLa":{"0":{"oreDict":["crushedLanthaniteLa"],"name":"Crushed Lanthanite (La) Ore","tr":"粉碎的镧石(La)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:spectralContainer":{"0":{"name":"Spectral Container","tr":"光谱容器","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:endStoneBrick":{"0":{"name":"End Stone Bricks","tr":"末地石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled End Stone Brick","tr":"錾制末地石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ender Bricks","tr":"末影石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Pillar Ender Bricks","tr":"竖纹末影石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:doorcontroller":{"0":{"name":"Door Controller","tr":"门控器","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodEnergyCrystal":{"0":{"oreDict":["stickEnergyCrystal"],"name":"能量水晶杆","tr":"能量水晶杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pomegranateItem":{"0":{"oreDict":["listAllfruit"," cropPomegranate"],"name":"Pomegranate","tr":"石榴","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:item.WG_Kama":{"0":{"name":"Kama","tr":"卡玛短袍","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spectral Kama","tr":"幽灵短袍","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Kama of Voluminous Pockets","tr":"奇术短袍","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Wolven Kama","tr":"野狼短袍","tab":"巫师宝具","type":"Item","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:sawblade":{"0":{"name":"Circular Saw Blade","tr":"圆锯片","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:handbow":{"0":{"name":"Witch Hunter Pistol Crossbow","tr":"狩巫手弩","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":769}},"dreamcraft:item.MytrylCompressedPlate":{"0":{"oreDict":["compressedMytryl"],"name":"Compressed Mytryl Plate","tr":"航天深空秘银板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustStrontiumHydroxide":{"0":{"oreDict":["dustStrontiumHydroxide"],"name":"氢氧化锶粉","tr":"氢氧化锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemSpatialStorageCell.16Cubed":{"0":{"name":"16³ Spatial Storage Cell","tr":"16³-空间存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemBoltStaballoy":{"0":{"oreDict":["boltStaballoy"],"name":"贫铀合金螺栓","tr":"贫铀合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:lp_materializer":{"0":{"name":"Life Essence Materializer","tr":"生命能量具现器","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallFluoriteF":{"0":{"oreDict":["dustSmallFluoriteF"],"name":"小堆氟石(F)粉","tr":"小堆氟石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitLV":{"0":{"name":"Any LV Circuit","tr":"任意LV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustIrarsite":{"0":{"oreDict":["dustIrarsite"],"name":"硫砷铱粉","tr":"硫砷铱粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:floraleaves":{"0":{"oreDict":["treeLeaves"],"name":"Redwood Leaves","tr":"红木树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Eucalyptus Leaves","tr":"桉树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Hopseed Leaves","tr":"车桑子树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.sandy":{"0":{"name":"Sandy Brick","tr":"沙岩砖","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fitted Sandy Stone","tr":"匀称沙岩方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sandy Block","tr":"沙岩方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ornate Sandy Stone","tr":"雕琢沙岩方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Etched Sandy Stone","tr":"蚀刻沙岩方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Sandy Cobblestone","tr":"沙岩圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockNiobiumCarbide":{"0":{"oreDict":["blockNiobiumCarbide"],"name":"碳化铌块","tr":"碳化铌块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneBrickSlabBlock.double":{"0":{"name":"Sky Stone Brick Slabs","tr":"陨石石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.energy.mfe":{"0":{"name":"MFE Cart","tr":"MFE储电车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"Botania:livingwood1Slab":{"0":{"name":"Livingwood Plank Slab","tr":"活木板台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamparsnipCrop":{"0":{"name":"Parsnip Crop","tr":"防风草","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pinacoladaItem":{"0":{"oreDict":["foodPinacolada"],"name":"Pinacolada","tr":"冰镇果汁朗姆酒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellThallium":{"0":{"oreDict":["cellThallium"],"name":"铊单元","tr":"铊单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:fluidBiogas":{"0":{"name":"Biogas","tr":"沼气","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ManyullynPlate":{"0":{"oreDict":["plateManyullyn"],"name":"Manyullyn Plate","tr":"玛玉灵板","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFsttable":{"0":{"name":"Acacia Table","tr":"金合欢桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Table","tr":"巴尔杉桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Table","tr":"猴面包树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Table","tr":"樱桃树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Table","tr":"栗树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Table","tr":"柑橘树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Table","tr":"乌檀树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Table","tr":"樟树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Table","tr":"木棉桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Table","tr":"落叶松桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Table","tr":"菩提树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Table","tr":"白皮树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Table","tr":"桃花心木桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Table","tr":"枫树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Table","tr":"棕榈树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Table","tr":"木瓜树桌子","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:trowelGold":{"0":{"name":"Gold Trowel","tr":"金质泥铲","tab":"Binnie|花卉","type":"Item","maxStackSize":1,"maxDurability":33}},"GraviSuite:ultimateLappack":{"1":{"name":"Ultimate Lappack","tr":"终极兰波顿电池背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Ultimate Lappack","tr":"终极兰波顿电池背包","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"BuildCraft|Builders:architectBlock":{"0":{"name":"Architect Table","tr":"建筑工作台","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:darkStairs":{"0":{"oreDict":["stairWood"],"name":"Dark Wood Stairs","tr":"黑暗木楼梯","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedCharcoal":{"0":{"name":"Crated Charcoal","tr":"装箱的木炭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:stoneDoubleSlab":{"0":{"name":"Mud Bricks Slab","tr":"泥砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:bow.diamond":{"0":{"name":"Diamond Bow","tr":"钻石弓","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":769}},"thaumicbases:voidShears":{"0":{"name":"Void Shears","tr":"虚空剪刀","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":185}},"harvestcraft:marshmellowsItem":{"0":{"oreDict":["foodMarshmellows"],"name":"Marshmellows","tr":"棉花糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledRedstone":{"0":{"oreDict":["milledRedstone"],"name":"Milled Redstone","tr":"研磨红石矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:limeItem":{"0":{"oreDict":["cropLime"," listAllfruit"," listAllcitrus"],"name":"Lime","tr":"酸橙","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitMV":{"0":{"oreDict":["circuitGood"],"name":"Any MV Circuit","tr":"任意MV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"EMT:PortableNode":{"0":{"name":"Portable Node","tr":"便携式节点","tab":"电子魔法工具","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleQuantum":{"0":{"oreDict":["plateDoubleQuantum"],"name":"双重量子合金板","tr":"双重量子合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"AWWayofTime:boundHelmetEarth":{"0":{"name":"Earth Omega Helmet","tr":"土`欧米伽头盔","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"harvestcraft:starfruitjuiceItem":{"0":{"oreDict":["listAlljuice"," foodStarfruitjuice"],"name":"Starfruit Juice","tr":"杨桃汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Energy:blockFuel":{"0":{"name":"Fuel","tr":"燃油","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:calamaricookedItem":{"0":{"oreDict":["foodCalamaricooked"," listAllfishcooked"],"name":"Cooked Calamari","tr":"熟鱿鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:item.stellar_boots":{"0":{"name":"Stellar Boots","tr":"恒星合金靴子","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":976}},"naturescompass:NaturesCompass":{"0":{"name":"Nature\u0027s Compass","tr":"生物群系指南针","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB7SlabFull":{"0":{"name":"Metamorphic Mesa Stone Bricks Slab","tr":"变质高原石砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"irontank:diamondEmeraldUpgrade":{"0":{"name":"Diamond to Aluminium Tank Upgrade","tr":"储罐升级:钻石\u003e铝","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRotorCinobiteA243":{"0":{"oreDict":["rotorCinobiteA243"],"name":"西诺柏A243转子","tr":"西诺柏A243转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.iceBomb":{"0":{"name":"Ice Bomb","tr":"寒冰炸弹","tab":"暮色森林","type":"Item","maxStackSize":16,"maxDurability":1}},"miscutils:itemDustTinyArcanite":{"0":{"oreDict":["dustTinyArcanite"],"name":"小撮奥金粉","tr":"小撮奥金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltLaurenium":{"0":{"oreDict":["boltLaurenium"],"name":"劳伦姆合金螺栓","tr":"劳伦姆合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:sunflowerseedsItem":{"0":{"oreDict":["cropSunflower"," listAllseed"],"name":"Sunflower Seeds","tr":"瓜子","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.metatool.01":{"0":{"oreDict":["craftingToolSword"," craftingToolBlade"],"name":"剑","tr":"剑","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"oreDict":["craftingToolPickaxe"],"name":"镐子","tr":"镐子","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"130":{"oreDict":["craftingToolJackHammer"],"name":"气锤(HV)","tr":"气锤(HV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"oreDict":["craftingToolShovel"],"name":"铲子","tr":"铲子","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"oreDict":["craftingToolAxe"],"name":"斧子","tr":"斧子","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"oreDict":["craftingToolHoe"],"name":"锄头","tr":"锄头","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"oreDict":["craftingToolSaw"],"name":"锯子","tr":"锯子","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"oreDict":["craftingToolHardHammer"],"name":"锻造锤","tr":"锻造锤","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"140":{"oreDict":["craftingToolSaw"],"name":"圆锯(LV)","tr":"圆锯(LV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"oreDict":["toolJuicer"," craftingToolSoftHammer"],"name":"软锤","tr":"软锤","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"142":{"oreDict":["craftingToolSaw"],"name":"圆锯(MV)","tr":"圆锯(MV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"oreDict":["craftingToolWrench"],"name":"扳手","tr":"扳手","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"144":{"oreDict":["craftingToolSaw"],"name":"圆锯(HV)","tr":"圆锯(HV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"oreDict":["craftingToolFile"],"name":"锉","tr":"锉","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"oreDict":["craftingToolCrowbar"],"name":"撬棍","tr":"撬棍","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"oreDict":["craftingToolScrewdriver"],"name":"螺丝刀","tr":"螺丝刀","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"150":{"oreDict":["craftingToolScrewdriver"],"name":"螺丝刀(LV)","tr":"螺丝刀(LV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"24":{"oreDict":["craftingToolMortar"," toolMortarandpestle"],"name":"研钵","tr":"研钵","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"152":{"oreDict":["craftingToolScrewdriver"],"name":"螺丝刀(MV)","tr":"螺丝刀(MV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"oreDict":["craftingToolWireCutter"],"name":"剪线钳","tr":"剪线钳","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"154":{"oreDict":["craftingToolScrewdriver"],"name":"螺丝刀(HV)","tr":"螺丝刀(HV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"28":{"oreDict":["craftingToolScoop"],"name":"捕虫网","tr":"捕虫网","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"30":{"oreDict":["craftingToolBranchCutter"],"name":"剪枝器","tr":"剪枝器","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"32":{"oreDict":["craftingToolSaw"," craftingToolBlade"," craftingToolCrowbar"," craftingToolShovel"],"name":"万用铲","tr":"万用铲","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"160":{"oreDict":["craftingToolSolderingIron"],"name":"电烙铁(LV)","tr":"电烙铁(LV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"34":{"oreDict":["toolCuttingboard"," craftingToolKnife"," craftingToolBlade"],"name":"小刀","tr":"小刀","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"162":{"oreDict":["craftingToolSolderingIron"],"name":"电烙铁(MV)","tr":"电烙铁(MV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"36":{"oreDict":["craftingToolBlade"],"name":"屠刀","tr":"屠刀","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"164":{"oreDict":["craftingToolSolderingIron"],"name":"电烙铁(HV)","tr":"电烙铁(HV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"40":{"oreDict":["craftingToolBlade"],"name":"镰刀","tr":"镰刀","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"42":{"oreDict":["craftingToolPlow"],"name":"犁","tr":"犁","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"170":{"name":"小型涡轮","tr":"小型涡轮","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"44":{"oreDict":["craftingToolPlunger"],"name":"搋子","tr":"搋子","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"172":{"name":"涡轮","tr":"涡轮","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"46":{"oreDict":["craftingToolRollingPin"," toolBakeware"],"name":"擀面杖","tr":"擀面杖","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"174":{"name":"大型涡轮","tr":"大型涡轮","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"176":{"name":"巨型涡轮","tr":"巨型涡轮","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"180":{"name":"万能工具","tr":"万能工具","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"182":{"oreDict":["craftingToolBranchCutter"],"name":"万能工具(剪枝器)","tr":"万能工具(剪枝器)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"184":{"oreDict":["craftingToolFile"],"name":"万能工具(锉)","tr":"万能工具(锉)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"186":{"oreDict":["craftingToolKnife"," craftingToolBlade"],"name":"万能工具(小刀)","tr":"万能工具(小刀)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"188":{"oreDict":["craftingToolSaw"],"name":"万能工具(锯)","tr":"万能工具(锯)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"190":{"oreDict":["craftingToolScrewdriver"],"name":"万能工具(螺丝刀)","tr":"万能工具(螺丝刀)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"192":{"oreDict":["craftingToolWireCutter"],"name":"万能工具(剪线钳)","tr":"万能工具(剪线钳)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"100":{"oreDict":["craftingToolMiningDrill"],"name":"电钻(LV)","tr":"电钻(LV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"102":{"oreDict":["craftingToolMiningDrill"],"name":"电钻(MV)","tr":"电钻(MV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"104":{"oreDict":["craftingToolMiningDrill"],"name":"电钻(HV)","tr":"电钻(HV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"110":{"oreDict":["craftingToolSaw"],"name":"链锯(LV)","tr":"链锯(LV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"112":{"oreDict":["craftingToolSaw"],"name":"链锯(MV)","tr":"链锯(MV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"114":{"oreDict":["craftingToolSaw"],"name":"链锯(HV)","tr":"链锯(HV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"120":{"oreDict":["craftingToolWrench"],"name":"扳手(LV)","tr":"扳手(LV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"122":{"oreDict":["craftingToolWrench"],"name":"扳手(MV)","tr":"扳手(MV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1},"124":{"oreDict":["craftingToolWrench"],"name":"扳手(HV)","tr":"扳手(HV)","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.GiantLeaves":{"0":{"name":"Giant Leaves","tr":"巨型树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.tapeMeasure":{"0":{"name":"Tape Measure","tr":"卷尺","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"GalaxySpace:item.cobaltum_helmet":{"0":{"name":"Cobalt Helmet","tr":"钴盔","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":386}},"HardcoreEnderExpansion:enderman_head_block":{"0":{"name":"Enderman Head","tr":"末影人的头","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemFoilArceusAlloy2B":{"0":{"oreDict":["foilArceusAlloy2B"],"name":"阿尔宙斯合金2B箔","tr":"阿尔宙斯合金2B箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:gaiaHeadBlock":{"0":{"name":"Gaia Guardian\u0027s Head","tr":"盖亚守护者的头","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableBUDName":{"0":{"name":"Block Detector","tr":"方块更新检测器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:diamondApple":{"0":{"name":"Jeweled Apple","tr":"钻石苹果","tab":"食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastonePillar":{"0":{"name":"Nagastone Pillar","tr":"Nagastone Pillar","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreTitanite":{"0":{"oreDict":["oreTitanite"],"name":"Titanite Ore","tr":"榍石矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:saguaro.fruit":{"0":{"oreDict":["cropCactusfruit"," listAllberry"," cropSaguaroBerry"],"name":"Saguaro Fruit","tr":"仙人掌果","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:revolver":{"0":{"name":"Thaumaturge\u0027s Revolver","tr":"奥术左轮枪","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1562}},"openmodularturrets:potentiaAddon":{"0":{"name":"Addon - Potentia Converter","tr":"附件-能量vis转换","tab":"模块化炮塔","type":"Item","maxStackSize":1,"maxDurability":1}},"chisel:pumpkin15":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin16":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:cookingoven":{"0":{"name":"Cooking Oven","tr":"烤箱","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:awakenedCore":{"0":{"name":"Awakened Core","tr":"觉醒核心","tab":"龙之研究方块和物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustManureByproducts":{"0":{"oreDict":["dustManureByproducts"],"name":"粪肥副产粉","tr":"粪肥副产粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin10":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolEntropyManipulator":{"0":{"name":"Entropy Manipulator","tr":"熵变机械臂","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":33}},"chisel:pumpkin13":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin14":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin11":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:mangochutneyItem":{"0":{"oreDict":["foodMangochutney"],"name":"Mango Chutney","tr":"芒果酸辣酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:pumpkin12":{"0":{"name":"Pumpkin","tr":"南瓜","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotRunite":{"0":{"oreDict":["ingotRunite"],"name":"虚恩锭","tr":"虚恩锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:fruitBop":{"0":{"name":"Apple","tr":"苹果","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Persimmon","tr":"柿子","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Peach","tr":"桃子","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Pear","tr":"雪梨","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Pinecone","tr":"松果","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:caramelItem":{"0":{"oreDict":["foodCaramel"],"name":"Caramel","tr":"焦糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorAdvBatpack":{"1":{"name":"Adv.Batpack","tr":"强化储电背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Adv.Batpack","tr":"强化储电背包","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:chestnutItem":{"0":{"oreDict":["cropChestnut"," listAllnut"],"name":"Chestnut","tr":"栗子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtHeLiCoPtEr":{"0":{"oreDict":["frameGtHeLiCoPtEr"],"name":"HeLiCoPtEr框架","tr":"HeLiCoPtEr框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:frameUseless":{"0":{"name":"Useless Frame","tr":"无用框架","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":101}},"GalaxySpace:ganymedeblocks":{"0":{"oreDict":["rockSpace"," rockGanymede"],"name":"Ganymede Surface Block","tr":"木卫三地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockSpace"," rockGanymede"],"name":"Ganymede Subsurface Block","tr":"木卫三地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["oreMagnesium"],"name":"Magnesium Ore","tr":"木卫三镁矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["oreIlmenite"],"name":"Ilmenite Ore","tr":"木卫三钛铁矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.baseBlockGround":{"0":{"name":"Dirt","tr":"泥土","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Crusted Dust","tr":"结壳灰","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotInconel792":{"0":{"oreDict":["ingotInconel792"],"name":"镍铬基合金-792锭","tr":"镍铬基合金-792锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:travelGlove":{"0":{"name":"Traveller\u0027s Gloves","tr":"旅行者手套","tab":"匠魂|装备","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:livingrock0Wall":{"0":{"name":"Livingrock Wall","tr":"活石墙","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampeasCrop":{"0":{"name":"Peas Crop","tr":"豌豆","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:part_fluid_pattern_terminal":{"0":{"name":"ME Fluid Pattern Terminal","tr":"ME流体样板终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemupgradekit":{"0":{"name":"MFSU Upgrade Kit","tr":"MFSU升级组件","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Energy:bucketFuel":{"0":{"name":"Fuel Bucket","tr":"燃油桶","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1}},"GalacticraftMars:item.thermalPadding":{"0":{"name":"Thermal Padding Helm","tr":"隔热充能头盔","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Thermal Padding Chestpiece","tr":"隔热充能胸甲","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Thermal Padding Leggings","tr":"隔热充能护腿","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Thermal Padding Boots","tr":"隔热充能靴","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:propionicacid":{"0":{"oreDict":["cellPropionicAcid"],"name":"丙酸单元","tr":"丙酸单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustArcanite":{"0":{"oreDict":["dustArcanite"],"name":"奥金粉","tr":"奥金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeFluidExtractor":{"0":{"name":"Logistics Fluid Extractor Pipe","tr":"物流流体抽取管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:apiaristHelmet":{"0":{"name":"Apiarist\u0027s Hat","tr":"养蜂员帽子","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":101}},"malisisdoors:curtain_brown":{"0":{"name":"Brown Curtain","tr":"棕色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapefruitjellyItem":{"0":{"oreDict":["foodGrapefruitjelly"],"name":"Grapefruit Jelly","tr":"葡萄柚果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamryeCrop":{"0":{"name":"Rye Crop","tr":"黑麦","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:reedBlock0Slab":{"0":{"name":"Reed Slab","tr":"甘蔗台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:creamofavocadosoupItem":{"0":{"oreDict":["foodCreamofavocadosoup"],"name":"Cream of Avocado Soup","tr":"鳄梨奶油汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitHV":{"0":{"name":"Any HV Circuit","tr":"任意HV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemBatChargeCrystal":{"1":{"name":"Charging Energy Crystal","tr":"能量充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Charging Energy Crystal","tr":"能量充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"tectech:item.tm.itemAstralArrayFabricator":{"0":{"name":"Astral Array Fabricator","tr":"星阵","tab":"TecTech","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.spacesuit_jetplate":{"0":{"name":"SpaceSuit Jetpack","tr":"宇航服喷气背包","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":101}},"tinkersdefense:moltenaeonsteel":{"0":{"name":"Molten Aeon Steel","tr":"熔融伊恩钢","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:door.eucalyptus":{"0":{"name":"Eucalyptus Door","tr":"桉树门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:playerDetector":{"0":{"name":"Player Detector","tr":"玩家探测器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustInfusedWater":{"0":{"oreDict":["dustInfusedWater"],"name":"水之魔晶粉","tr":"水之魔晶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:blazeBlock":{"0":{"oreDict":["blockBlaze"],"name":"Blaze Lamp","tr":"烈焰灯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLithiumHydroperoxide":{"0":{"oreDict":["dustLithiumHydroperoxide"],"name":"过氧化氢锂粉","tr":"过氧化氢锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:obsidian_fragment":{"0":{"name":"Obsidian Fragment","tr":"黑曜石碎片","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:spellCloth":{"0":{"name":"Spellbinding Cloth","tr":"魅惑之布","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":36}},"miscutils:itemPlateBloodSteel":{"0":{"oreDict":["plateBloodSteel"],"name":"血钢板","tr":"血钢板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeAxeHead":{"0":{"name":"Casting Form (Axe Head Shape)","tr":"铸形(斧头)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabRedFull":{"0":{"name":"Redquartz Slab","tr":"红色石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:divinationSigil":{"0":{"name":"Divination Sigil","tr":"占卜印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRotorHypogen":{"0":{"oreDict":["rotorHypogen"],"name":"海珀珍转子","tr":"海珀珍转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:creativeFiller":{"0":{"name":"Orb of Testing","tr":"测试宝珠","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:blood_infused_sword_diamond":{"0":{"name":"Blood Infused Diamond Sword [WIP]","tr":"注血钻石剑 [WIP]","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedingotQuintuple":{"96":{"oreDict":["ingotQuintupleAdemicSteel"],"name":"五重硬钢锭","tr":"五重硬钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["ingotQuintupleShirabon"],"name":"五重调律源金锭","tr":"五重调律源金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["ingotQuintupleAdamantiumAlloy"],"name":"五重精金合金锭","tr":"五重精金合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["ingotQuintupleAtomicSeparationCatalyst"],"name":"五重原子分离催化剂锭","tr":"五重原子分离催化剂锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["ingotQuintupleExtremelyUnstableNaquadah"],"name":"五重极不稳定硅岩锭","tr":"五重极不稳定硅岩锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["ingotQuintupleMAR-M200Steel"],"name":"五重MAR-M200特种钢锭","tr":"五重MAR-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["ingotQuintupleMAR-Ce-M200Steel"],"name":"五重MAR-Ce-M200特种钢锭","tr":"五重MAR-Ce-M200特种钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["ingotQuintupleRhodium-PlatedPalladium"],"name":"五重镀铑钯锭","tr":"五重镀铑钯锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["ingotQuintupleRuridit"],"name":"五重钌铱合金锭","tr":"五重钌铱合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["ingotQuintupleHighDurabilityCompoundSteel"],"name":"五重高耐久性复合钢锭","tr":"五重高耐久性复合钢锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["ingotQuintuplePreciousMetalsAlloy"],"name":"五重稀有金属合金锭","tr":"五重稀有金属合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["ingotQuintupleEnrichedNaquadahAlloy"],"name":"五重富集硅岩合金锭","tr":"五重富集硅岩合金锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["ingotQuintupleMetastableOganesson"],"name":"五重亚稳态鿫锭","tr":"五重亚稳态鿫锭","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcurryleafCrop":{"0":{"name":"Curry Leaf Crop","tr":"咖喱叶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitIV":{"0":{"oreDict":["circuitElite"],"name":"Any IV Circuit","tr":"任意IV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:jungle_planks":{"1":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Jungle Wood Planks","tr":"丛林木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:ore.berries.two":{"8":{"name":"Aluminum Oreberry Bush","tr":"铝矿莓丛","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Essence Berry Bush","tr":"精华莓丛","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:recombinator":{"0":{"name":"Teleological Recombinator","tr":"因果重组器","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:sliding_trapdoor":{"0":{"name":"Sliding Trapdoor","tr":"滑动活板门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:FermentationBase":{"0":{"oreDict":["cellFermentationBase"],"name":"发酵基单元","tr":"发酵基单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pralinesItem":{"0":{"oreDict":["foodPralines"],"name":"Pralines","tr":"胡桃糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.magicBeans":{"0":{"name":"Magic Beans","tr":"魔豆","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseAbyssalAlloy":{"0":{"oreDict":["plateDenseAbyssalAlloy"],"name":"致密深渊合金板","tr":"致密深渊合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:hardenedleatherchestItem":{"0":{"name":"Hardened Leather Chest","tr":"硬化皮革胸甲","tab":"潘马斯农场|杂项","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:itemDustSmallHoneaite":{"0":{"oreDict":["dustSmallHoneaite"],"name":"小堆碲化金铊粉","tr":"小堆碲化金铊粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinBloodI":{"0":{"name":"Coin \"The Vampire 10\"","tr":"吸血鬼币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BW_WoolRotor":{"0":{"name":"Primitive Wool Rotor (Wind only)","tr":"原始羊毛转子(风车专用)","tab":"BartWorks跨时代","type":"Item","maxStackSize":64,"maxDurability":30001}},"Forestry:cratedNetherbrick":{"0":{"name":"Crated Nether Brick","tr":"装箱的地狱砖块","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:paintcan":{"0":{"name":"Paint Can","tr":"颜料罐","tab":"开放式方块","type":"Block","maxStackSize":1,"maxDurability":31}},"miscutils:itemDustCrocoite":{"0":{"oreDict":["dustCrocoite"],"name":"赤铅矿粉","tr":"赤铅矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.OsmiumItemCasing":{"0":{"oreDict":["itemCasingOsmium"],"name":"Osmium Item Casing","tr":"锇外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustEglinSteel":{"0":{"oreDict":["dustEglinSteel"],"name":"埃格林钢粉","tr":"埃格林钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyArceusAlloy2B":{"0":{"oreDict":["dustTinyArceusAlloy2B"],"name":"小撮阿尔宙斯合金2B粉","tr":"小撮阿尔宙斯合金2B粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemSlag":{"0":{"name":"Slag","tr":"炉渣","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:cornflakesItem":{"0":{"oreDict":["foodCornflakes"],"name":"Cornflakes","tr":"玉米片","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:carrotjuiceItem":{"0":{"oreDict":["listAlljuice"," foodCarrotjuice"],"name":"Carrot Juice","tr":"胡萝卜汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedGeikielite":{"0":{"oreDict":["crushedGeikielite"],"name":"Crushed Geikielite Ore","tr":"粉碎的镁钛矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:datablock":{"0":{"name":"tile.extrautils:datablock.name","tr":"tile.extrautils:datablock.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:fenceTierThree":{"0":{"name":"Fence (Tier 3)","tr":"护栏(三级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:nodeMonitor":{"0":{"name":"Node Monitor","tr":"节点透视之镜","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:tastyClay":{"0":{"name":"Tasty Clay","tr":"美味粘土","tab":"开放式方块","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearNitinol60":{"0":{"oreDict":["gearGtNitinol60"," gearNitinol60"],"name":"镍钛诺60齿轮","tr":"镍钛诺60齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTantalloy60":{"0":{"oreDict":["boltTantalloy60"],"name":"钽钨合金-60螺栓","tr":"钽钨合金-60螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTantalloy61":{"0":{"oreDict":["boltTantalloy61"],"name":"钽钨合金-61螺栓","tr":"钽钨合金-61螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodCompressedUraniumDepleted":{"0":{"name":"Fuel Rod (Depleted High Density Uranium)","tr":"枯竭燃料棒(浓缩铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingwood":{"0":{"oreDict":["livingwood"," blockLivingwood"],"name":"Livingwood","tr":"活木","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Livingwood Planks","tr":"活木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mossy Livingwood Planks","tr":"苔活木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Framed Livingwood","tr":"框边活木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Pattern Framed Livingwood","tr":"框纹活木板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Glimmering Livingwood","tr":"微光活木","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:expanderInvTierFive":{"0":{"name":"Base Inventory Expander (Tier 5)","tr":"基座存储扩容(五级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingEnergyCrystal":{"0":{"oreDict":["ringEnergyCrystal"],"name":"能量水晶环","tr":"能量水晶环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.reactorMOXQuad":{"0":{"name":"四联燃料棒(MOX)","tr":"四联燃料棒(MOX)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:crushedLanthaniteCe":{"0":{"oreDict":["crushedLanthaniteCe"],"name":"Crushed Lanthanite (Ce) Ore","tr":"粉碎的镧石(Ce)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:wireless_fluid_terminal":{"0":{"name":"Wireless Fluid Terminal","tr":"ME无线流体终端","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":33}},"Botania:shimmerwoodPlanks0Stairs":{"0":{"name":"Shimmerwood Plank Stairs","tr":"微光木板楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"opensecurity:alarm":{"0":{"name":"Alarm","tr":"警铃","tab":"开放式保安","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFarmer":{"0":{"name":"Coin \"The Farmer 1\"","tr":"农民币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco2":{"0":{"oreDict":["blockTorch"],"name":"Orange Candle","tr":"橙色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco1":{"0":{"oreDict":["blockTorch"],"name":"White Candle","tr":"白色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.BiblioCreativeLock":{"0":{"name":"Lock and Key","tr":"钥匙与锁","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"TwilightForest:tile.TFNagastoneEtched":{"0":{"name":"Etched Nagastone","tr":"腐蚀的娜迦石方块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorEglinSteel":{"0":{"oreDict":["rotorEglinSteel"],"name":"埃格林钢转子","tr":"埃格林钢转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForgeMicroblock:sawDiamond":{"0":{"name":"Diamond Saw","tr":"钻石手锯","tab":"工具","type":"Item","maxStackSize":1,"maxDurability":2049}},"miscutils:itemScrewIncoloyMA956":{"0":{"oreDict":["screwIncoloyMA956"],"name":"耐热铬铁合金-MA956螺丝","tr":"耐热铬铁合金-MA956螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco4":{"0":{"oreDict":["blockTorch"],"name":"Light Blue Candle","tr":"淡蓝色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco3":{"0":{"oreDict":["blockTorch"],"name":"Magenta Candle","tr":"品红色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco6":{"0":{"oreDict":["blockTorch"],"name":"Lime Candle","tr":"黄绿色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorTriniumTitaniumAlloy":{"0":{"oreDict":["rotorTriniumTitaniumAlloy"],"name":"三元钛合金转子","tr":"三元钛合金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco5":{"0":{"oreDict":["blockTorch"],"name":"Yellow Candle","tr":"黄色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWoodSeat":{"0":{"name":"Sacred Oak Seat","tr":"天域树橡树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Seat","tr":"樱桃树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Seat","tr":"黑暗树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Seat","tr":"杉树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Seat","tr":"地狱皮树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Seat","tr":"天域树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Seat","tr":"蓝花楹座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Seat","tr":"魔法树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Seat","tr":"红杉座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Seat","tr":"棕榈树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Seat","tr":"松树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Seat","tr":"红木座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Seat","tr":"柳树座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Seat","tr":"桃花心木座椅","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco8":{"0":{"oreDict":["blockTorch"],"name":"Dark Grey Candle","tr":"深灰色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:scallopcookedItem":{"0":{"oreDict":["foodScallopcooked"],"name":"Cooked Scallop","tr":"熟扇贝","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Quad_MNqCell":{"0":{"name":"四联燃料棒(Nq*-热量与发电同MOX)","tr":"四联燃料棒(Nq*-热量与发电同MOX)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"harvestcraft:pamcandleDeco7":{"0":{"oreDict":["blockTorch"],"name":"Pink Candle","tr":"粉色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamcandleDeco9":{"0":{"oreDict":["blockTorch"],"name":"Light Grey Candle","tr":"淡灰色蜡烛","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:plainyogurtItem":{"0":{"oreDict":["foodPlainyogurt"],"name":"Plain Yogurt","tr":"原味酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTriniumNaquadahAlloy":{"0":{"oreDict":["blockTriniumNaquadahAlloy"],"name":"三元硅岩合金块","tr":"三元硅岩合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:itemPowderIngot":{"0":{"oreDict":["dustCoal"],"name":"Coal Powder","tr":"煤粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dustIron"," dustAnyIron"],"name":"Iron Powder","tr":"铁粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustGold"],"name":"Gold Powder","tr":"金粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustCopper"," dustAnyCopper"],"name":"Copper Powder","tr":"铜粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustTin"],"name":"Tin Powder","tr":"锡粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["ingotEnderiumBase"],"name":"Enderium Base","tr":"末影锭粗胚","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustObsidian"],"name":"Obsidian Powder","tr":"黑曜石粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["foodFlour"," dustWheat"],"name":"Flour","tr":"面粉","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemUran":{"0":{"name":"Enriched Uranium Nuclear Fuel","tr":"浓缩铀核燃料","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemSpatialStorageCell.128Cubed":{"0":{"name":"128³ Spatial Storage Cell","tr":"128³-空间存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellTechnetiumHexafluoride":{"0":{"oreDict":["cellTechnetiumHexafluoride"],"name":"六氟化锝单元","tr":"六氟化锝单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:braisedonionsItem":{"0":{"oreDict":["foodBraisedonions"],"name":"Braised Onions","tr":"炖洋葱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellEglinSteelBaseCompound":{"0":{"oreDict":["cellEglinSteelBaseCompound"],"name":"埃格林钢粗胚单元","tr":"埃格林钢粗胚单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:saltedsunflowerseedsItem":{"0":{"oreDict":["foodSaltedsunflowerseeds"],"name":"Salted Sunflower Seeds","tr":"腌制瓜子","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorLafiumCompound":{"0":{"oreDict":["rotorLafiumCompound"],"name":"路菲恩化合物转子","tr":"路菲恩化合物转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtArceusAlloy2B":{"0":{"oreDict":["frameGtArceusAlloy2B"],"name":"阿尔宙斯合金2B框架","tr":"阿尔宙斯合金2B框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellChloroaceticMixture":{"0":{"oreDict":["cellChloroaceticMixture"],"name":"氯乙酸混合物单元","tr":"氯乙酸混合物单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.oxygenCompressor":{"0":{"name":"Oxygen Compressor","tr":"氧气压缩机","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Oxygen Decompressor","tr":"氧气解压机","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedspring":{"96":{"oreDict":["springAdemicSteel"],"name":"硬钢弹簧","tr":"硬钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["springShirabon"],"name":"调律源金弹簧","tr":"调律源金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["springZircaloy-4"],"name":"锆锡合金-4弹簧","tr":"锆锡合金-4弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["springZircaloy-2"],"name":"锆锡合金-2弹簧","tr":"锆锡合金-2弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["springIncoloy-903"],"name":"耐热铬铁合金-903弹簧","tr":"耐热铬铁合金-903弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["springAdamantiumAlloy"],"name":"精金合金弹簧","tr":"精金合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["springAtomicSeparationCatalyst"],"name":"原子分离催化剂弹簧","tr":"原子分离催化剂弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["springExtremelyUnstableNaquadah"],"name":"极不稳定硅岩弹簧","tr":"极不稳定硅岩弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["springMAR-M200Steel"],"name":"MAR-M200特种钢弹簧","tr":"MAR-M200特种钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["springMAR-Ce-M200Steel"],"name":"MAR-Ce-M200特种钢弹簧","tr":"MAR-Ce-M200特种钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["springSignalium"],"name":"信素弹簧","tr":"信素弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["springLumiium"],"name":"流明弹簧","tr":"流明弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["springArtherium-Sn"],"name":"阿瑟锡弹簧","tr":"阿瑟锡弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["springTanmolyiumBeta-C"],"name":"钛钼合金β-C弹簧","tr":"钛钼合金β-C弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["springRhodium-PlatedPalladium"],"name":"镀铑钯弹簧","tr":"镀铑钯弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["springDalisenite"],"name":"大力合金弹簧","tr":"大力合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["springTiberium"],"name":"泰伯利亚弹簧","tr":"泰伯利亚弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["springHikarium"],"name":"光素弹簧","tr":"光素弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["springRuridit"],"name":"钌铱合金弹簧","tr":"钌铱合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["springTairitsu"],"name":"对立合金弹簧","tr":"对立合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["springHighDurabilityCompoundSteel"],"name":"高耐久性复合钢弹簧","tr":"高耐久性复合钢弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["springPreciousMetalsAlloy"],"name":"稀有金属合金弹簧","tr":"稀有金属合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["springEnrichedNaquadahAlloy"],"name":"富集硅岩合金弹簧","tr":"富集硅岩合金弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["springMetastableOganesson"],"name":"亚稳态鿫弹簧","tr":"亚稳态鿫弹簧","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewEglinSteel":{"0":{"oreDict":["screwEglinSteel"],"name":"埃格林钢螺丝","tr":"埃格林钢螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:yottaFluidTankCells":{"0":{"name":"Fluid Cell Block T1","tr":"流体单元方块T1","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fluid Cell Block T2","tr":"流体单元方块T2","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fluid Cell Block T3","tr":"流体单元方块T3","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fluid Cell Block T4","tr":"流体单元方块T4","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fluid Cell Block T5","tr":"流体单元方块T5","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fluid Cell Block T6","tr":"流体单元方块T6","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fluid Cell Block T7","tr":"流体单元方块T7","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fluid Cell Block T8","tr":"流体单元方块T8","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fluid Cell Block T9","tr":"流体单元方块T9","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fluid Cell Block T10","tr":"流体单元方块T10","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemBatSU":{"0":{"name":"Single-Use Battery","tr":"一次性电池","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:bloodSword":{"0":{"name":"Cursed Spirit\u0027s Blade","tr":"咒灵之剑","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":951}},"miscutils:itemRodHypogen":{"0":{"oreDict":["stickHypogen"],"name":"海珀珍杆","tr":"海珀珍杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:carpetedCapacitor":{"0":{"oreDict":["oc:carpetedCapacitor"],"name":"Carpeted Capacitor","tr":"地毯式电容","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedFluoriteF":{"0":{"oreDict":["crushedFluoriteF"],"name":"Crushed Fluorite (F) Ore","tr":"粉碎的氟石(F)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.oxygenCollector":{"0":{"name":"Oxygen Collector","tr":"氧气收集器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Twilight Oak Leaves","tr":"暮色橡树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Canopy Tree Leaves","tr":"苍穹树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Mangrove Leaves","tr":"红树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Rainbow Oak Leaves","tr":"彩虹橡树树叶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPotin":{"0":{"oreDict":["dustSmallPotin"],"name":"小堆粗青铜合金粉","tr":"小堆粗青铜合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:wrenchItem":{"0":{"name":"Wrench","tr":"扳手","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:pressureplate.silverbell":{"0":{"oreDict":["pressurePlateWood"],"name":"Silverbell Pressure Plate","tr":"银铃树压力板","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:proteusblocks":{"0":{"oreDict":["rockProteus"," rockSpace"],"name":"Proteus Surface Block","tr":"海卫八地表岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["rockProteus"," rockSpace"],"name":"Proteus Subsurface Block","tr":"海卫八地底岩石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["rockProteus"," rockSpace"],"name":"Proteus Stone","tr":"海卫八石头","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Proteus Dungeon Bricks","tr":"海卫八地牢砖","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["orePlatinum"],"name":"Platinum Ore","tr":"海卫八铂矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreTungsten"],"name":"Tungsten Ore","tr":"海卫八钨矿石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitEV":{"0":{"oreDict":["circuitData"],"name":"Any EV Circuit","tr":"任意EV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.armor.impleggings":{"0":{"name":"Impskin Leggings","tr":"恶魔皮护腿","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":496}},"harvestcraft:sausageinbreadItem":{"0":{"oreDict":["foodSausageinbread"],"name":"Sausage in Bread","tr":"香肠面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mashedsweetpotatoesItem":{"0":{"oreDict":["foodMashedsweetpotatoes"],"name":"Mashed Sweet Potatoes","tr":"红薯泥","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.LeadBattery":{"0":{"name":"Lead Battery","tr":"铅电池","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":101},"100":{"name":"Lead Battery","tr":"铅电池","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":101}},"StevesCarts:upgrade":{"0":{"name":"Upgrade: Batteries","tr":"升级:电池","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Upgrade: Power Crystal","tr":"升级:能量水晶","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Upgrade: Module knowledge","tr":"升级:模块知识","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Upgrade: Industrial espionage","tr":"升级:工业间谍","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Upgrade: Experienced assembler","tr":"升级:熟练装配工","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Upgrade: New Era","tr":"升级:新纪元","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Upgrade: CO2 friendly","tr":"升级:环保","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Upgrade: Generic engine","tr":"升级:通用引擎","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Upgrade: Module input","tr":"升级:模块输出","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Upgrade: Production line","tr":"升级:生产线","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Upgrade: Cart Deployer","tr":"升级:矿车部署器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Upgrade: Cart Modifier","tr":"升级:矿车调节器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Upgrade: Cart Crane","tr":"升级:吊车","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Upgrade: Redstone Control","tr":"升级:红石控制","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Upgrade: Integrated Infinity Reactor","tr":"Upgrade: Integrated Infinity Reactor","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Upgrade: Quick Demolisher","tr":"升级:快速拆卸器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Upgrade: Entropy","tr":"升级:熵","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Upgrade: Manager Bridge","tr":"升级:管理器桥梁","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Upgrade: Thermal Engine","tr":"升级:热能引擎","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Upgrade: Solar Panel","tr":"升级:太阳能板","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotInconel625":{"0":{"oreDict":["ingotHotInconel625"],"name":"热镍铬基合金-625锭","tr":"热镍铬基合金-625锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSamarskiteY":{"0":{"oreDict":["dustSamarskiteY"],"name":"铌钇矿(Y)粉","tr":"铌钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MysteriousCrystalDust":{"0":{"oreDict":["dustMysteriousCrystal"],"name":"Mysterious Crystal Dust","tr":"神秘水晶粉","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:neonite":{"0":{"oreDict":["neonite"],"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Neonite","tr":"霓虹石","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:apiaristBoots":{"0":{"name":"Apiarist\u0027s Shoes","tr":"养蜂员靴子","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:itemBoltPikyonium64B":{"0":{"oreDict":["boltPikyonium64B"],"name":"皮卡优合金64B螺栓","tr":"皮卡优合金64B螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_planks":{"0":{"name":"Blood Infused Wooden Plank","tr":"注血木板","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:handGuard":{"0":{"name":"Wooden Hand Guard","tr":"木护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Hand Guard","tr":"石护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Hand Guard","tr":"铁护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Hand Guard","tr":"燧石护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Hand Guard","tr":"仙人掌护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Hand Guard","tr":"骨头护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Hand Guard","tr":"黑曜石护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Hand Guard","tr":"地狱岩护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Hand Guard","tr":"史莱姆护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Hand Guard","tr":"纸护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Hand Guard","tr":"钴护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Hand Guard","tr":"阿迪特护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Hand Guard","tr":"玛玉灵护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Hand Guard","tr":"铜护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Hand Guard","tr":"青铜护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Hand Guard","tr":"耐酸铝护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Hand Guard","tr":"钢护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Hand Guard","tr":"史莱姆护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Hand Guard","tr":"生铁护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Hand Guard","tr":"不稳定感应护手","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateAbyssalAlloy":{"0":{"oreDict":["plateAbyssalAlloy"],"name":"深渊合金板","tr":"深渊合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:transcendentBloodOrb":{"0":{"name":"Transcendent Blood Orb","tr":"卓越气血宝珠","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemTFBPIrrigation":{"0":{"name":"TFBP - Irrigation","tr":"地形转换模板-灌溉","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyLautarite":{"0":{"oreDict":["dustTinyLautarite"],"name":"小撮碘钙石粉","tr":"小撮碘钙石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.FluffyCloud":{"0":{"name":"Fluffy Cloud","tr":"蓬松的云","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:visDynamo":{"0":{"name":"Vis Dynamo","tr":"魔力反应炉","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorBloodSteel":{"0":{"oreDict":["rotorBloodSteel"],"name":"血钢转子","tr":"血钢转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemFuelPlantBall":{"0":{"name":"Plantball","tr":"植物球","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockTallyLensWorld":{"0":{"name":"Tally Box (Lens: Unbound)","tr":"计数盒(透镜:零散)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingSelenium":{"0":{"oreDict":["ringSelenium"],"name":"硒环","tr":"硒环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:RidingCrop":{"0":{"name":"Riding Crop","tr":"马鞭","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":60}},"avaritiaddons:CompressedChest":{"0":{"name":"Compressed Chest","tr":"压缩箱子","tab":"无尽贪婪拓展","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemShovelElemental":{"0":{"name":"Shovel of the Earthmover","tr":"后土铲","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1501}},"miscutils:itemRodIncoloyDS":{"0":{"oreDict":["stickIncoloyDS"],"name":"耐热铬铁合金-DS杆","tr":"耐热铬铁合金-DS杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:vampire_greaves":{"0":{"name":"Vampire Greaves","tr":"吸血鬼护胫","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustTinyLithiumHydroperoxide":{"0":{"oreDict":["dustTinyLithiumHydroperoxide"],"name":"小撮过氧化氢锂粉","tr":"小撮过氧化氢锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:tallyLens":{"0":{"name":"Tally Box Lens: Clear","tr":"计数盒透镜:透明","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Tally Box Lens: Unbound","tr":"计数盒透镜:零散","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Tally Box Lens: Yield","tr":"计数盒透镜:产物","tab":"自动化魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:door.bloodwood":{"0":{"name":"Bloodwood Door","tr":"血树门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ChromaticLens":{"0":{"name":"Chromatic Lens","tr":"彩色玻璃透镜","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyQuantum":{"0":{"oreDict":["dustTinyQuantum"],"name":"小撮量子合金粉","tr":"小撮量子合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"betterp2p:advanced_memory_card":{"0":{"name":"Advanced Memory Card","tr":"高级内存卡","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:beehive":{"0":{"name":"Beehive","tr":"蜂巢","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:fairybreadItem":{"0":{"oreDict":["foodFairybread"],"name":"Fairy Bread","tr":"仙女面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:wolftrap":{"0":{"name":"Wolftrap","tr":"捕狼陷阱","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cactussoupItem":{"0":{"oreDict":["foodCactussoup"],"name":"Cactus Soup","tr":"仙人掌汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonjellysandwichItem":{"0":{"oreDict":["foodLemonjellysandwich"],"name":"Lemon Jelly Sandwich","tr":"柠檬果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustPromethium":{"0":{"oreDict":["dustPromethium"],"name":"钷粉","tr":"钷粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:fireScribeTool":{"0":{"name":"Elemental Inscription Tool: Fire","tr":"元素铭文:火","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":11}},"Botania:livingwoodBow":{"0":{"name":"Livingwood Bow","tr":"活木弓","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":501}},"GoodGenerator:highDensityThorium":{"0":{"name":"High Density Thorium","tr":"浓缩钍","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemBatRE":{"1":{"oreDict":["batteryBasic"],"name":"RE-Battery","tr":"充电电池","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"computronics:computronics.radar":{"0":{"name":"Radar","tr":"雷达","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:potion_of_purity":{"0":{"name":"Potion of Purity","tr":"净化药水","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Splash Potion of Purity","tr":"喷溅型 净化药水","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:boricacid":{"0":{"oreDict":["cellBoricAcid"],"name":"硼酸单元","tr":"硼酸单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA1SlabFull":{"0":{"name":"Metamorphic Plains Stone Slab","tr":"变质平原石头台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:charger":{"0":{"oreDict":["oc:charger"],"name":"Charger","tr":"充电器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTriniumNaquadahAlloy":{"0":{"oreDict":["cellTriniumNaquadahAlloy"],"name":"三元硅岩合金单元","tr":"三元硅岩合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:groundcinnamonItem":{"0":{"oreDict":["foodGroundcinnamon"],"name":"Ground Cinnamon","tr":"肉桂粉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:apiaristChest":{"0":{"name":"Apiarist\u0027s Shirt","tr":"养蜂员衬衣","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":101}},"AWWayofTime:reinforcedTelepositionFocus":{"0":{"name":"Reinforced Teleposition Focus","tr":"[强化]传送方位核心","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:salt":{"0":{"oreDict":["oreSalt"],"name":"Salt Ore","tr":"盐矿","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:bucketShortMead":{"0":{"name":"Short Mead Bucket","tr":"蜂蜜酒桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemCellEmpty":{"0":{"oreDict":["cellEmpty"],"name":"Empty Cell","tr":"空单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["cellWater"],"name":"Water Cell","tr":"水单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["cellLava"],"name":"Lava Cell","tr":"岩浆单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["cellUUMatter"],"name":"UuMatter Cell","tr":"UU物质单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["cellConstructionFoam"],"name":"Construction Foam Cell","tr":"建筑泡沫单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Compressed Air Cell","tr":"压缩空气单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Biomass Cell","tr":"生物质单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Biogas Cell","tr":"沼气单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Electrolyzed Water Cell","tr":"电解水单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Coolant Cell","tr":"冷却液单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Hot Coolant Cell","tr":"热冷却液单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Pahoehoe Lava Cell","tr":"熔岩岩浆单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Distilled Water Cell","tr":"蒸馏水单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Superheated Steam Cell","tr":"过热蒸汽单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["cellMoltenWater"],"name":"Steam Cell","tr":"蒸汽单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["cellHydrofluoricAcid"],"name":"Industrial Strength Hydrofluoric Acid Cell","tr":"工业氢氟酸单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["cellSulfurousAcid"],"name":"Sulfurous Acid Cell","tr":"亚硫酸单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["cellSulfuricApatite"],"name":"Sulfuric Apatite Cell","tr":"硫酸磷灰石单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["cellHydrogenChloride"],"name":"Industrial Strength Hydrogen Chloride Cell","tr":"工业氯化氢单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["cellSulfuricLithium"],"name":"Sulfuric Lithium Cell","tr":"硫酸锂单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"oreDict":["cellLithiumHydroxide"],"name":"Lithium Hydroxide Cell","tr":"氢氧化锂单元","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustNeptunium":{"0":{"oreDict":["dustNeptunium"],"name":"镎粉","tr":"镎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:present":{"0":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Present","tr":"礼物","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:icedoor":{"0":{"name":"Ice Door","tr":"冰门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"EMT:QuantumWing":{"1":{"name":"Quantum Wings","tr":"量子羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Quantum Wings","tr":"量子羽翼","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":28}},"IC2:blockGenerator":{"0":{"oreDict":["craftingGenerator"],"name":"RTG POWARZ","tr":"放射性同位素温差发电机之力","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["craftingGeothermalGenerator"],"name":"Geothermal Generator","tr":"地热发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Water Mill","tr":"水力发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Solar Panel","tr":"太阳能发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Wind Mill","tr":"风力发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Nuclear Reactor","tr":"核反应堆","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Radioisotope Thermoelectric Generator","tr":"放射性同位素温差发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Semifluid Generator","tr":"半流质发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Stirling Generator","tr":"斯特林发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Kinetic Generator","tr":"动能发电机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:carrotcakeItem":{"0":{"oreDict":["foodCarrotcake"],"name":"Carrot Cake","tr":"胡萝卜蛋糕","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampapayaSapling":{"0":{"name":"Papaya Sapling","tr":"木瓜树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockKillerJoe":{"0":{"name":"Killer Joe","tr":"杀手乔","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:fridge":{"0":{"name":"Fridge","tr":"冰箱","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockCellWorkbench":{"0":{"name":"Cell Workbench","tr":"元件工作台","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:warningSign":{"0":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Warning Sign","tr":"警告标志","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinySodiumNitrate":{"0":{"oreDict":["dustTinySodiumNitrate"],"name":"小撮硝酸钠粉","tr":"小撮硝酸钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberryyogurtItem":{"0":{"oreDict":["foodStrawberryyogurt"],"name":"Strawberry Yogurt","tr":"草莓酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinSurvivorIII":{"0":{"name":"Coin \"The Survivor 1000\"","tr":"幸存者币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:waterScribeTool":{"0":{"name":"Elemental Inscription Tool: Water","tr":"元素铭文:水","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":11}},"dreamcraft:dreamcraft_SodiumPotassium":{"0":{"name":"Sodium Potassium","tr":"钠钾共晶合金","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.PlutoStoneDust":{"0":{"oreDict":["dustPlutoStone"," dustSpace"," dustPluto"],"name":"Pluto Stone Dust","tr":"冥王星尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:airScribeTool":{"0":{"name":"Elemental Inscription Tool: Air","tr":"元素铭文:风","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":11}},"GalacticraftCore:item.infiniteOxygen":{"0":{"name":"Infinite Oxygen Supply","tr":"无限氧气罐","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":-2147483648}},"ProjRed|Illumination:projectred.illumination.fixture":{"0":{"name":"White Fixture","tr":"白色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Fixture","tr":"橙色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Fixture","tr":"品红色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Fixture","tr":"淡蓝色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Fixture","tr":"黄色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Fixture","tr":"黄绿色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Fixture","tr":"粉色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Grey Fixture","tr":"灰色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Grey Fixture","tr":"淡灰色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Fixture","tr":"青色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Fixture","tr":"紫色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Fixture","tr":"蓝色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Fixture","tr":"棕色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Fixture","tr":"绿色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Fixture","tr":"红色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Fixture","tr":"黑色灯具","tab":"红石计划:照明","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabElfFull":{"0":{"name":"Elven Quartz Slab","tr":"精灵石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreAlburnite":{"0":{"oreDict":["oreAlburnite"],"name":"Alburnite Ore","tr":"硫碲金锗矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cheeseItem":{"0":{"oreDict":["foodCheese"],"name":"Cheese","tr":"芝士","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.logisticsHUDGlasses":{"0":{"name":"Logistics HUD Glasses","tr":"物流HUD眼镜","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":166}},"IC2:itemToolWrench":{"0":{"name":"Wrench","tr":"扳手","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":161}},"thaumicbases:brazier":{"0":{"name":"Brazier of Warding","tr":"奥术火盆","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"RandomThings:spectreKey":{"0":{"name":"Spectre Key","tr":"灵魂之匙","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:blockCrop":{"0":{"name":"Crop","tr":"作物架","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:thatch0Slab":{"0":{"name":"Thatch Slab","tr":"茅草台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormRing":{"0":{"name":"Casting Form (Ring Mold)","tr":"铸件(环)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.doorTrans":{"0":{"name":"Transwood Door","tr":"变化树门","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:reactorCondensator":{"1":{"name":"RSH-Condensator","tr":"红石冷却单元","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"witchery:canesword":{"0":{"name":"Cane Sword","tr":"手杖剑","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1562}},"miscutils:itemBoltTalonite":{"0":{"oreDict":["boltTalonite"],"name":"铬钴磷酸盐合金螺栓","tr":"铬钴磷酸盐合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberrypieItem":{"0":{"oreDict":["foodRaspberrypie"],"name":"Raspberry Pie","tr":"树莓派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetRhenium":{"0":{"oreDict":["nuggetRhenium"],"name":"铼粒","tr":"铼粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockCapacitorBank":{"0":{"name":"Capacitor Bank (Deprecated)","tr":"电容储能库","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Creative Capacitor Bank (Deprecated)","tr":"创造模式电容储能库","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:UN18Fertiliser":{"0":{"oreDict":["cellUN18Fertiliser"],"name":"流体肥料UN-18单元","tr":"流体肥料UN-18单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:reactorUraniumQuad":{"1":{"name":"Quad Fuel Rod (Uranium)","tr":"四联燃料棒(铀)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":10001}},"GoodGenerator:aluminumNitride":{"0":{"oreDict":["dustAluminumNitride"],"name":"Aluminium Nitride Dust","tr":"氮化铝粉","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemSpatialStorageCell.2Cubed":{"0":{"name":"2³ Spatial Storage Cell","tr":"2³-空间存储元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemCropnalyzer":{"1":{"name":"Cropnalyzer","tr":"作物分析仪","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"Cropnalyzer","tr":"作物分析仪","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"AWWayofTime:sigilOfHolding":{"0":{"name":"Sigil of Holding","tr":"集持印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:firestone.recharge":{"0":{"name":"Recharging Firestone","tr":"再充能火石","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.ArcticFurBlock":{"0":{"name":"Block of Arctic Fur","tr":"Block of Arctic Fur","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:greaterLengtheningCatalyst":{"0":{"name":"Greater Lengthening Catalyst","tr":"[更好的]延时催化剂","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:supremepizzaItem":{"0":{"oreDict":["foodSupremepizza"],"name":"Supreme Pizza","tr":"至尊披萨","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:starfield":{"0":{"name":"Starfield Creator","tr":"星空制造器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemsteelrotor":{"0":{"name":"Kinetic Gearbox Rotor (Vibrant Alloy)","tr":"脉冲合金转子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":1600001}},"miscutils:itemRotorMaragingSteel250":{"0":{"oreDict":["rotorMaragingSteel250"],"name":"马氏体时效钢250转子","tr":"马氏体时效钢250转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MicaBasedPulp":{"0":{"name":"Mica Based Pulp","tr":"胶质云母","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"ToxicEverglades:dimensionDarkWorld_portal":{"0":{"name":"A Glimpse of the Future","tr":"未来的掠影","tab":"建筑方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:storagemoduleT3":{"0":{"name":"Advanced Energy Cluster","tr":"改良的储能簇","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:fireChaos":{"0":{"name":"Perditio Imbued Fire","tr":"混沌之焰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellForce":{"0":{"oreDict":["cellForce"],"name":"力量单元","tr":"力量单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"cb4bq:BlockREB":{"0":{"name":"Reset Quest Block","tr":"重置任务方块","tab":"更好的任务","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA7Stairs":{"0":{"name":"Metamorphic Mesa Stone Stairs","tr":"变质高原石头楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodThallium":{"0":{"oreDict":["stickThallium"],"name":"铊杆","tr":"铊杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:carrotsoupItem":{"0":{"oreDict":["foodCarrotsoup"],"name":"Carrot Soup","tr":"胡萝卜汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.IronDualCompressedPlates":{"0":{"name":"Compressed Dual Iron Plates","tr":"航天双层铁板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetCurium":{"0":{"oreDict":["nuggetCurium"],"name":"锔粒","tr":"锔粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsstripes":{"0":{"name":"Stripes Transport Pipe","tr":"条纹管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockConduitFacade":{"0":{"name":"tile.blockConduitFacade.name","tr":"tile.blockConduitFacade.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBerrySting":{"0":{"name":"Crated Stingberry","tr":"装箱的刺莓","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:itemAttunedCrystal":{"0":{"name":"Alchemic Router","tr":"炼金通递杖","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.BioBall":{"0":{"name":"Bio Ball","tr":"植物球","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:naquadahOre":{"0":{"oreDict":["oreNaquadah"],"name":"Naquadah Ore","tr":"硅岩矿石","tab":"星际之门","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesAddons:cable_rf":{"0":{"name":"RF Node","tr":"RF节点","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateClay":{"0":{"oreDict":["plateClay"],"name":"粘土板","tr":"粘土板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureFluoriteF":{"0":{"oreDict":["dustPureFluoriteF"],"name":"Purified Fluorite (F) Dust","tr":"洁净氟石(F)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:molten.stone":{"0":{"name":"Seared Stone","tr":"熔融石头","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"bartworks:BW_FakeGlasBlock":{"0":{"name":"BW_GlasBlocks.name","tr":"BW_GlasBlocks.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:fireRod":{"0":{"name":"Rod of the Hells","tr":"地狱法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1201}},"Natura:fenceGate.sakura":{"0":{"oreDict":["fenceGateWood"],"name":"Sakura Fence Gate","tr":"樱花树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.kama.fusewood":{"0":{"name":"Fusewood Kama","tr":"熔融树镰刀","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":251}},"Avaritia:Infinity_Shoes":{"0":{"name":"Infinity Boots","tr":"无尽靴子","tab":"无尽贪婪","type":"Item","maxStackSize":1,"maxDurability":129988}},"IC2:blockRubWood":{"0":{"oreDict":["logRubber"," logWood"," woodRubber"],"name":"Rubber Wood","tr":"橡胶树原木","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_east_lit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWireGrisium":{"0":{"oreDict":["wireFineGrisium"],"name":"细灰钛合金导线","tr":"细灰钛合金导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.silverbell":{"0":{"oreDict":["trapdoorWood"],"name":"Silverbell Trapdoor","tr":"银铃树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:peat":{"0":{"oreDict":["brickPeat"],"name":"Peat","tr":"泥炭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"kubatech:kubablocks":{"0":{"name":"§4§lTea Acceptor","tr":"§4§l茶接收器","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"§4§lTea Storage Extender","tr":"§4§l茶叶存储扩展器","tab":"KubaTech","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RawNeutronium":{"0":{"name":"Raw Neutronium Dust","tr":"粗制中子素粉","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinForestryIII":{"0":{"name":"Coin \"The Forest Ranger 1000\"","tr":"护林员币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockDragonblood":{"0":{"oreDict":["blockDragonblood"],"name":"龙血块","tr":"龙血块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:item.BasicMetaSpawnEgg":{"0":{"name":"Spawn Staballoy Construct","tr":"生成贫铀合金结构","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn Infected Zealot","tr":"生成被感染的狂热者","tab":"杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:nitrobenzene":{"0":{"oreDict":["cellNitrobenzene"],"name":"硝基苯单元","tr":"硝基苯单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:color_blockRedstone":{"0":{"oreDict":["blockRedstone"," blockRedstoneBlack"],"name":"Colored Block of Redstone (White Frequency)","tr":"染色 红石块 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockRedstone"," blockRedstoneRed"],"name":"Colored Block of Redstone (Orange Frequency)","tr":"染色 红石块 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockRedstone"," blockRedstoneGreen"],"name":"Colored Block of Redstone (Magenta Frequency)","tr":"染色 红石块 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockRedstone"," blockRedstoneBrown"],"name":"Colored Block of Redstone (Light Blue Frequency)","tr":"染色 红石块 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockRedstone"," blockRedstoneBlue"],"name":"Colored Block of Redstone (Yellow Frequency)","tr":"染色 红石块 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockRedstone"," blockRedstonePurple"],"name":"Colored Block of Redstone (Lime Frequency)","tr":"染色 红石块 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockRedstone"," blockRedstoneCyan"],"name":"Colored Block of Redstone (Pink Frequency)","tr":"染色 红石块 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockRedstone"," blockRedstoneLightGray"],"name":"Colored Block of Redstone (Gray Frequency)","tr":"染色 红石块 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockRedstone"," blockRedstoneGray"],"name":"Colored Block of Redstone (Light Gray Frequency)","tr":"染色 红石块 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockRedstonePink"," blockRedstone"],"name":"Colored Block of Redstone (Cyan Frequency)","tr":"染色 红石块 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockRedstoneLime"," blockRedstone"],"name":"Colored Block of Redstone (Purple Frequency)","tr":"染色 红石块 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockRedstoneYellow"," blockRedstone"],"name":"Colored Block of Redstone (Blue Frequency)","tr":"染色 红石块 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockRedstone"," blockRedstoneLightBlue"],"name":"Colored Block of Redstone (Brown Frequency)","tr":"染色 红石块 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockRedstone"," blockRedstoneMagenta"],"name":"Colored Block of Redstone (Green Frequency)","tr":"染色 红石块 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockRedstone"," blockRedstoneOrange"],"name":"Colored Block of Redstone (Red Frequency)","tr":"染色 红石块 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockRedstone"," blockRedstoneWhite"],"name":"Colored Block of Redstone (Black Frequency)","tr":"染色 红石块 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedYttriaite":{"0":{"oreDict":["crushedCentrifugedYttriaite"],"name":"Centrifuged Crushed Yttriaite Ore","tr":"离心钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:BrailDetector":{"0":{"name":"Detector Blaze Rail","tr":"探测烈焰轨道","tab":"交通运输","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:dummy":{"0":{"name":"Cow","tr":"牛","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustBloodSteel":{"0":{"oreDict":["dustBloodSteel"],"name":"血钢粉","tr":"血钢粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:spear.diamond":{"0":{"name":"Diamond Spear","tr":"钻石标枪","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":1562}},"adventurebackpack:machete":{"0":{"name":"Machete","tr":"弯刀","tab":"探险背包","type":"Item","maxStackSize":1,"maxDurability":501}},"dreamcraft:item.LeadOriharukonPlate":{"0":{"name":"Compressed Lead-Oriharukon Plate","tr":"压缩奥利哈钢铅板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:fociDrain":{"0":{"name":"Wand Focus: Liquid Drain","tr":"法杖核心:蒸发","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:crushedKoboldite":{"0":{"oreDict":["crushedKoboldite"],"name":"Crushed Koboldite Ore","tr":"粉碎妖金矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:raspberryseedItem":{"0":{"oreDict":["seedRaspberry"," listAllseed"],"name":"Raspberry Seed","tr":"树莓种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:death_flower_pot":{"0":{"name":"Flower Pot","tr":"花盆","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:energy_wand":{"0":{"name":"Energy Wand","tr":"能量法杖","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:carprawItem":{"0":{"oreDict":["listAllfishraw"," foodCarpraw"],"name":"Raw Carp","tr":"生鲤鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.knightlyHelm":{"0":{"name":"Knightly Helm","tr":"骑士头盔","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":221}},"BiomesOPlenty:newBopGrass":{"0":{"name":"Loamy Grass Block","tr":"肥沃草块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sandy Grass Block","tr":"沙草块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Silty Grass Block","tr":"粉草块","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:reactorPlatingExplosive":{"0":{"name":"Containment Reactor Plating","tr":"密封反应堆隔板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyLithium7":{"0":{"oreDict":["dustTinyLithium7"],"name":"小撮锂-7粉","tr":"小撮锂-7粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:golden_lasso":{"0":{"name":"Golden Lasso","tr":"黄金套索","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:damperItem":{"0":{"oreDict":["foodDamper"],"name":"Damper","tr":"丹波面包","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockVacuumChest":{"0":{"name":"Vacuum Chest","tr":"虚空箱子","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotNitinol60":{"0":{"oreDict":["ingotHotNitinol60"],"name":"热镍钛诺60锭","tr":"热镍钛诺60锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneStairsRight":{"0":{"oreDict":["nagastoneStairs"],"name":"Nagastone Stairs (Right)","tr":"娜迦石台阶(右)","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustGeikielite":{"0":{"oreDict":["dustGeikielite"],"name":"镁钛矿粉","tr":"镁钛矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltQuantum":{"0":{"oreDict":["boltQuantum"],"name":"量子合金螺栓","tr":"量子合金螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellSolarSaltHot":{"0":{"oreDict":["cellSolarSaltHot"],"name":"太阳能盐(热)单元","tr":"太阳能盐(热)单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtLaurenium":{"0":{"oreDict":["frameGtLaurenium"],"name":"劳伦姆合金框架","tr":"劳伦姆合金框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:wandCastingDisposable":{"0":{"name":"Disposable Crystalline Wand","tr":"一次性水晶质法杖","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:bakedbeetsItem":{"0":{"oreDict":["foodBakedbeets"],"name":"Baked Beets","tr":"烤甜菜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaBerryMalo":{"0":{"name":"Crated Maloberry","tr":"装箱的桑椹","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustStrontium":{"0":{"oreDict":["dustStrontium"],"name":"锶粉","tr":"锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:terrasteelBoots":{"0":{"name":"Terrasteel Boots","tr":"泰拉钢靴子","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":443}},"miscutils:itemGearTantalloy61":{"0":{"oreDict":["gearGtTantalloy61"," gearTantalloy61"],"name":"钽钨合金-61齿轮","tr":"钽钨合金-61齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallSamarskiteY":{"0":{"oreDict":["dustSmallSamarskiteY"],"name":"小堆铌钇矿(Y)粉","tr":"小堆铌钇矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearTantalloy60":{"0":{"oreDict":["gearGtTantalloy60"," gearTantalloy60"],"name":"钽钨合金-60齿轮","tr":"钽钨合金-60齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSeleniumHexafluoride":{"0":{"oreDict":["dustSeleniumHexafluoride"],"name":"六氟化硒粉","tr":"六氟化硒粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemToolWrenchElectric":{"1":{"name":"Electric Wrench","tr":"电动扳手","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Electric Wrench","tr":"电动扳手","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"MagicBees:frameResilient":{"0":{"name":"Resilient Frame","tr":"弹力框架","tab":"魔法蜜蜂","type":"Item","maxStackSize":1,"maxDurability":801}},"OpenBlocks:builder_guide":{"0":{"name":"Enhanced Building Guide","tr":"强化建筑指导仪","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicbases:thauminiteShears":{"0":{"name":"Thauminite Shears","tr":"秘晶剪刀","tab":"Thaumic Bases Items","type":"Item","maxStackSize":1,"maxDurability":975}},"Forestry:cratedNaturaPotashApple":{"0":{"name":"Crated Potash Apple","tr":"装箱的富钾苹果","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustGermanium":{"0":{"oreDict":["dustGermanium"],"name":"锗粉","tr":"锗粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLanthaniteCe":{"0":{"oreDict":["dustLanthaniteCe"],"name":"镧石(Ce)粉","tr":"镧石(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorStrontium":{"0":{"oreDict":["rotorStrontium"],"name":"锶转子","tr":"锶转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:stair.darkwood":{"0":{"oreDict":["stairWood"],"name":"Darkwood Stairs","tr":"黑暗树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartArrowHead":{"1536":{"name":"精金 Arrow Head","tr":"精金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Arrow Head","tr":"神秘蓝金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Arrow Head","tr":"琥珀 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Arrow Head","tr":"纯镃 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Arrow Head","tr":"谐镃 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Arrow Head","tr":"聚氯乙烯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Arrow Head","tr":"永恒 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Arrow Head","tr":"磁物质 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Arrow Head","tr":"赛特斯石英 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Arrow Head","tr":"暗影秘银 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Arrow Head","tr":"玄铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Arrow Head","tr":"戴斯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Arrow Head","tr":"铿铀 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Arrow Head","tr":"通流琥珀金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Arrow Head","tr":"末影粗胚 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Arrow Head","tr":"末影(te) 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Arrow Head","tr":"炽热的钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Arrow Head","tr":"火石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Arrow Head","tr":"力量 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Arrow Head","tr":"石墨 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Arrow Head","tr":"石墨烯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Arrow Head","tr":"注魔金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Arrow Head","tr":"风之魔晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Arrow Head","tr":"火之魔晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Arrow Head","tr":"地之魔晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Arrow Head","tr":"水之魔晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Arrow Head","tr":"混沌魔晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Arrow Head","tr":"秩序魔晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Arrow Head","tr":"玉 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Arrow Head","tr":"碧玉 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Arrow Head","tr":"陨铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Arrow Head","tr":"陨钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Arrow Head","tr":"硅岩 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Arrow Head","tr":"硅岩合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Arrow Head","tr":"富集硅岩 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Arrow Head","tr":"超能硅岩 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Arrow Head","tr":"下界石英 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Arrow Head","tr":"下界之星 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Arrow Head","tr":"三钛 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Arrow Head","tr":"虚空 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Arrow Head","tr":"胶木 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Arrow Head","tr":"幽冥剧毒结晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Arrow Head","tr":"强化 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Arrow Head","tr":"铱锇合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Arrow Head","tr":"阳光化合物 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Arrow Head","tr":"魂金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Arrow Head","tr":"蓝黄玉 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Arrow Head","tr":"黄铜 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Arrow Head","tr":"白铜 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Arrow Head","tr":"深渊铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Arrow Head","tr":"钻石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Arrow Head","tr":"琥珀金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Arrow Head","tr":"绿宝石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Arrow Head","tr":"强化混合晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Arrow Head","tr":"混合晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Arrow Head","tr":"绿色蓝宝石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Arrow Head","tr":"殷钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Arrow Head","tr":"坎塔尔合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Arrow Head","tr":"镁铝合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Arrow Head","tr":"镍铬合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Arrow Head","tr":"玄钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Arrow Head","tr":"生铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Arrow Head","tr":"聚乙烯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Arrow Head","tr":"环氧树脂 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Arrow Head","tr":"硅橡胶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Arrow Head","tr":"聚己内酰胺 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Arrow Head","tr":"聚四氟乙烯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Arrow Head","tr":"蓝宝石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Arrow Head","tr":"不锈钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Arrow Head","tr":"坦桑石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Arrow Head","tr":"锡铁合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Arrow Head","tr":"黄玉 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Arrow Head","tr":"哈氏合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Arrow Head","tr":"锻铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Arrow Head","tr":"铁木 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Arrow Head","tr":"橄榄石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Arrow Head","tr":"蛋白石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Arrow Head","tr":"紫水晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Arrow Head","tr":"暗影金属 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Arrow Head","tr":"暗影铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Arrow Head","tr":"暗影钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Arrow Head","tr":"钢叶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Arrow Head","tr":"骑士金属 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Arrow Head","tr":"标准纯银 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Arrow Head","tr":"玫瑰金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Arrow Head","tr":"黑青铜 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Arrow Head","tr":"铋青铜 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Arrow Head","tr":"黑钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Arrow Head","tr":"红钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Arrow Head","tr":"蓝钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Arrow Head","tr":"大马士革钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Arrow Head","tr":"充能合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Arrow Head","tr":"脉冲合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Arrow Head","tr":"星辰银 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Arrow Head","tr":"钴黄铜 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Arrow Head","tr":"红石榴石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Arrow Head","tr":"黄石榴石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Arrow Head","tr":"温特姆 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Arrow Head","tr":"黑花岗岩 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Arrow Head","tr":"红花岗岩 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Arrow Head","tr":"白石棉 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Arrow Head","tr":"雄黄 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Arrow Head","tr":"磁化铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Arrow Head","tr":"磁化钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Arrow Head","tr":"磁化钕 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Arrow Head","tr":"碳化钨 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Arrow Head","tr":"钒钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Arrow Head","tr":"高速钢-G 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Arrow Head","tr":"高速钢-E 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Arrow Head","tr":"高速钢-S 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Arrow Head","tr":"深铅 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Arrow Head","tr":"量子 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Arrow Head","tr":"深空秘银 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Arrow Head","tr":"黑钚 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Arrow Head","tr":"木卫四冰 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Arrow Head","tr":"硬铝 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Arrow Head","tr":"奥利哈钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Arrow Head","tr":"三元金属 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Arrow Head","tr":"聚苯硫醚 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Arrow Head","tr":"聚苯乙烯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Arrow Head","tr":"丁苯橡胶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Arrow Head","tr":"镍锌铁氧体 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Arrow Head","tr":"纤维强化的环氧树脂 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Arrow Head","tr":"磁化钐 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Arrow Head","tr":"无尽催化剂 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Arrow Head","tr":"聚苯并咪唑 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Arrow Head","tr":" 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Arrow Head","tr":"钛铂钒合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Arrow Head","tr":"时空 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Arrow Head","tr":"大理石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Arrow Head","tr":"神秘水晶 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Arrow Head","tr":"末影钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Arrow Head","tr":"复合粘土 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Arrow Head","tr":"晶化合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Arrow Head","tr":"旋律合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Arrow Head","tr":"恒星合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Arrow Head","tr":"晶化粉红史莱姆 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Arrow Head","tr":"充能银 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Arrow Head","tr":"生动合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Arrow Head","tr":"灵宝 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Arrow Head","tr":"超时空金属 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Arrow Head","tr":"活石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Arrow Head","tr":"盖亚之魂 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Arrow Head","tr":"活木 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Arrow Head","tr":"梦之木 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Arrow Head","tr":"泡铋 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Arrow Head","tr":"立方氧化锆 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Arrow Head","tr":"氟铁电气石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Arrow Head","tr":"铬铝电气石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Arrow Head","tr":"钒镁电气石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Arrow Head","tr":"铝电气石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Arrow Head","tr":"红锆石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Arrow Head","tr":"铁橄榄石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Arrow Head","tr":"镁橄榄石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Arrow Head","tr":"钙铁辉石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Arrow Head","tr":"钍-232 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Arrow Head","tr":"堇云石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Arrow Head","tr":"磁共振石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Arrow Head","tr":"锎 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Arrow Head","tr":"BArTiMaEuSNeK 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Arrow Head","tr":"钌 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Arrow Head","tr":"铑 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Arrow Head","tr":"镀铑钯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Arrow Head","tr":"泰伯利亚 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Arrow Head","tr":"钌铱合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Arrow Head","tr":"氟石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Arrow Head","tr":"高耐久性复合钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Arrow Head","tr":"硬钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Arrow Head","tr":"合成玉 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Arrow Head","tr":"原子分离催化剂 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Arrow Head","tr":"极不稳定硅岩 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Arrow Head","tr":"锌钍合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Arrow Head","tr":"锆锡合金-4 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Arrow Head","tr":"锆锡合金-2 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Arrow Head","tr":"耐热铬铁合金-903 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Arrow Head","tr":"精金合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Arrow Head","tr":"MAR-M200特种钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Arrow Head","tr":"MAR-Ce-M200特种钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Arrow Head","tr":"氯化锂 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Arrow Head","tr":"信素 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Arrow Head","tr":"流明 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Arrow Head","tr":"阿瑟锡 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Arrow Head","tr":"钛钼合金β-C 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Arrow Head","tr":"大力合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Arrow Head","tr":"光素 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Arrow Head","tr":"对立合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Arrow Head","tr":"稀有金属合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Arrow Head","tr":"富集硅岩合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Arrow Head","tr":"亚稳态鿫 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Arrow Head","tr":"调律源金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Arrow Head","tr":"魔钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Arrow Head","tr":"泰拉钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Arrow Head","tr":"源质钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Arrow Head","tr":"磁流体约束恒星物质 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Arrow Head","tr":"白矮星物质 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Arrow Head","tr":"黑矮星物质 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Arrow Head","tr":"宇宙素 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Arrow Head","tr":"铝 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Arrow Head","tr":"铍 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Arrow Head","tr":"铋 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Arrow Head","tr":"碳 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Arrow Head","tr":"铬 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Arrow Head","tr":"金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Arrow Head","tr":"铱 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Arrow Head","tr":"铅 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Arrow Head","tr":"锰 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Arrow Head","tr":"钼 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Arrow Head","tr":"钕 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Arrow Head","tr":"中子 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Arrow Head","tr":"镍 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Arrow Head","tr":"锇 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Arrow Head","tr":"钯 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Arrow Head","tr":"铂 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Arrow Head","tr":"钚-239 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Arrow Head","tr":"钚-241 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Arrow Head","tr":"银 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Arrow Head","tr":"钍 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Arrow Head","tr":"钛 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Arrow Head","tr":"钨 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Arrow Head","tr":"铀-238 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Arrow Head","tr":"铀-235 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Arrow Head","tr":"红宝石 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Arrow Head","tr":"红石合金 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Arrow Head","tr":"终末 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Arrow Head","tr":"导电铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Arrow Head","tr":"磁钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Arrow Head","tr":"钨钢 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Arrow Head","tr":"烈焰 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Arrow Head","tr":"脉冲铁 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Arrow Head","tr":"龙 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Arrow Head","tr":"觉醒龙 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Arrow Head","tr":"褐铜 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Arrow Head","tr":"山铜 箭头","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongEnergyCrystal":{"0":{"oreDict":["stickLongEnergyCrystal"],"name":"长能量水晶杆","tr":"长能量水晶杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:aureliaPetal":{"0":{"name":"Aurelia Petal","tr":"灵气花瓣","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTriniumNaquadahAlloy":{"0":{"oreDict":["dustSmallTriniumNaquadahAlloy"],"name":"小堆三元硅岩合金粉","tr":"小堆三元硅岩合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:prismarine":{"0":{"oreDict":["blockPrismarine"],"name":"Prismarine","tr":"海晶石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockPrismarine"],"name":"Prismarine Bricks","tr":"海晶石砖","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockPrismarine"],"name":"Dark Prismarine","tr":"深色海晶石","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorNanoBoots":{"1":{"name":"NanoSuit Boots","tr":"纳米靴子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"NanoSuit Boots","tr":"纳米靴子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemCellHS188A":{"0":{"oreDict":["cellHS188A"],"name":"HS188-A单元","tr":"HS188-A单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:ferroSlug":{"0":{"name":"Ammo - Ferro-Magnetic Slug","tr":"弹药-铁磁弹","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:cacophoniumBlock":{"0":{"name":"Cacophonium Block","tr":"不和谐之音方块","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:earth":{"0":{"name":"Earth","tr":"地","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyGeikielite":{"0":{"oreDict":["dustTinyGeikielite"],"name":"小撮镁钛矿粉","tr":"小撮镁钛矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:kiwiyogurtItem":{"0":{"oreDict":["foodKiwiyogurt"],"name":"Kiwi Yogurt","tr":"猕猴桃酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.UnknowWaterBucket":{"0":{"name":"Bucket of Unknown Liquid","tr":"不明液体桶","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.ShapeSawBlade":{"0":{"name":"Casting Form (Saw Blade Shape)","tr":"铸形(锯刃)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabDarkFull":{"0":{"name":"Smokey Quartz Slab","tr":"烟熏石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockStaballoy":{"0":{"oreDict":["blockStaballoy"],"name":"贫铀合金块","tr":"贫铀合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockMagicBox":{"0":{"name":"Magic Box","tr":"奥法之盒","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallFluorcaphite":{"0":{"oreDict":["dustSmallFluorcaphite"],"name":"小堆氟碳铈矿粉","tr":"小堆氟碳铈矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:shears":{"0":{"oreDict":["craftingToolShears"],"name":"Precision Shears","tr":"精密剪刀","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1025}},"harvestcraft:watergarden":{"0":{"name":"Water Garden","tr":"海域菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:fluidSteam":{"0":{"name":"Steam","tr":"蒸汽","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:snickersbarItem":{"0":{"oreDict":["foodSnickersbar"],"name":"Snickers Bar","tr":"士力架","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:textilegarden":{"0":{"name":"Textile Garden","tr":"纺织菜园","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:turtlecookedItem":{"0":{"oreDict":["foodTurtlecooked"],"name":"Cooked Turtle","tr":"熟海龟","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"opensecurity:opensecurity.rfidReaderCard":{"0":{"name":"RFID Reader Card","tr":"RFID读写器卡","tab":"开放式保安","type":"Item","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableCreativeName":{"0":{"name":"Creative Supplier","tr":"创造物品供应器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:arboriculture":{"0":{"name":"Arborist\u0027s Chest","tr":"林业员箱子","tab":"林业|植树","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:safetyFlame":{"0":{"name":"tile.draconicevolution:safetyFlame.name","tr":"tile.draconicevolution:safetyFlame.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureZirkelite":{"0":{"oreDict":["dustImpureZirkelite"],"name":"Impure Zirkelite Dust","tr":"含杂钛锆钍矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:melonjuiceItem":{"0":{"oreDict":["listAlljuice"," foodMelonjuice"],"name":"Melon Juice","tr":"西瓜汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustCopperIISulfatePentahydrate":{"0":{"oreDict":["dustCopperIISulfatePentahydrate"],"name":"五水合硫酸铜(II)粉","tr":"五水合硫酸铜(II)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:energy_wand_core":{"0":{"name":"Energy Wand Core","tr":"能量法杖核心","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:tennebrae":{"0":{"name":"Tenebrae","tr":"暗黑粉末","tab":"血魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:repairer":{"0":{"name":"Thaumic Restorer","tr":"奥法修复台","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:Labware":{"0":{"name":"Genetics Labware","tr":"基因药皿","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:mayoItem":{"0":{"oreDict":["foodMayo"],"name":"Mayo","tr":"蛋黄酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ExtraTrees:databaseMoth":{"0":{"name":"Lepidopterist Database","tr":"鳞翅目昆虫学家数据库","tab":"林业|蝴蝶","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Master Lepidopterist Database","tr":"鳞翅目昆虫学大师数据库","tab":"林业|蝴蝶","type":"Item","maxStackSize":1,"maxDurability":1}},"EMT:ElectricHoeGrowth":{"1":{"name":"Electric Hoe of Growth","tr":"电子句芒锄","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":1562},"1561":{"name":"Electric Hoe of Growth","tr":"电子句芒锄","tab":"电子魔法工具","type":"Item","maxStackSize":1,"maxDurability":1562}},"ThaumicHorizons:vortexStabilizer":{"0":{"name":"Vortex Attenuator","tr":"漩涡弱化设备","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pearjellyItem":{"0":{"oreDict":["foodPearjelly"],"name":"Pear Jelly","tr":"秋梨枇杷冻","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CrimsonStainedClothCap":{"0":{"name":"Crimson-Stained Cloth Cap","tr":"血腥布匹杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyCurium":{"0":{"oreDict":["dustTinyCurium"],"name":"小撮锔粉","tr":"小撮锔粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:waxCapsuleWater":{"0":{"oreDict":["capsuleWater"],"name":"Water Capsule","tr":"耐火水胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:item.EnchantedPlate":{"0":{"name":"Enchanted Plate","tr":"附魔片","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":4}},"Backpack:workbenchbackpack":{"17":{"name":"Workbench Backpack","tr":"小工作台背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1},"217":{"name":"Big Workbench Backpack","tr":"大工作台背包","tab":"更多背包","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:milledChalcopyrite":{"0":{"oreDict":["milledChalcopyrite"],"name":"Milled Chalcopyrite","tr":"研磨黄铜矿","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinFlowerIII":{"0":{"name":"Coin \"The Gardener 1000\"","tr":"园艺家币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:ItemLiquidArrayLocationCard":{"0":{"name":"Liquid Array Location Card","tr":"流体阵列定位卡片","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:grilledcheeseItem":{"0":{"oreDict":["foodGrilledcheese"],"name":"Grilled Cheese","tr":"烤芝士","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:wrench":{"0":{"name":"Wrench","tr":"扳手","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:N Crops":{"0":{"name":"Crops","tr":"作物","tab":"装饰性方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:natura.armor.impboots":{"0":{"name":"Impskin Boots","tr":"恶魔皮靴子","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":430}},"harvestcraft:turkeyrawItem":{"0":{"oreDict":["listAllmeatraw"," foodTurkeyraw"," listAllturkeyraw"],"name":"Raw Turkey","tr":"生火鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.neutronreflector":{"0":{"name":"铱中子反射板","tr":"铱中子反射板","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormTurbineBlade":{"0":{"name":"Casting Form (Turbine Blade Mold)","tr":"铸件(涡轮扇叶)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearCelestialTungsten":{"0":{"oreDict":["gearGtCelestialTungsten"," gearCelestialTungsten"],"name":"天体钨齿轮","tr":"天体钨齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemPickThaumium":{"0":{"name":"Thaumium Pickaxe","tr":"神秘镐","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"SGCraft:sgChevronUpgrade":{"0":{"name":"Stargate Chevron Upgrade","tr":"星门导标升级","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongSiliconCarbide":{"0":{"oreDict":["stickLongSiliconCarbide"],"name":"长碳化硅杆","tr":"长碳化硅杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bassrawItem":{"0":{"oreDict":["listAllfishraw"," foodBassraw"],"name":"Raw Bass","tr":"生鲈鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.Tier4Key":{"0":{"name":"Tier 3 Dungeon Key","tr":"3阶宝箱钥匙","tab":"星空|物品","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:fireEarth":{"0":{"name":"Terra Imbued Fire","tr":"坤地之焰","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltDysprosium":{"0":{"oreDict":["boltDysprosium"],"name":"镝螺栓","tr":"镝螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedPapaya":{"0":{"name":"Crated Papaya","tr":"装箱的木瓜","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemCellHydrant":{"1":{"name":"Hydration Cell","tr":"水化单元","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":10001}},"miscutils:blockFrameGtChromaticGlass":{"0":{"oreDict":["frameGtChromaticGlass"],"name":"彩色玻璃框架","tr":"彩色玻璃框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:canJuice":{"0":{"name":"Juice Can","tr":"果汁罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallSodiumFluoride":{"0":{"oreDict":["dustSmallSodiumFluoride"],"name":"小堆氟化钠粉","tr":"小堆氟化钠粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_pink":{"0":{"name":"Pink Curtain","tr":"粉色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:mangojellyItem":{"0":{"oreDict":["foodMangojelly"],"name":"Mango Jelly","tr":"芒果果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.hopseed":{"0":{"oreDict":["buttonWood"],"name":"Hopseed Button","tr":"车桑子树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:manaBeacon":{"0":{"name":"White Unstable Beacon","tr":"白色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Orange Unstable Beacon","tr":"橙色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Magenta Unstable Beacon","tr":"品红色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light Blue Unstable Beacon","tr":"淡蓝色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Yellow Unstable Beacon","tr":"黄色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lime Unstable Beacon","tr":"黄绿色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Pink Unstable Beacon","tr":"粉色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gray Unstable Beacon","tr":"灰色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Light Gray Unstable Beacon","tr":"淡灰色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Cyan Unstable Beacon","tr":"青色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purple Unstable Beacon","tr":"紫色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Blue Unstable Beacon","tr":"蓝色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Brown Unstable Beacon","tr":"棕色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Green Unstable Beacon","tr":"绿色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Red Unstable Beacon","tr":"红色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Black Unstable Beacon","tr":"黑色不稳定信标","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pammustardseedsCrop":{"0":{"name":"Mustard Seeds Crop","tr":"芥菜籽","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:decoration.multibrickfancy":{"0":{"name":"Fancy Obsidian Brick","tr":"平滑黑曜石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Fancy Sandstone Brick","tr":"平滑沙石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Fancy Netherrack Brick","tr":"平滑地狱岩砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fancy Polished Stone Brick","tr":"平滑抛光石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Fancy Iron Brick","tr":"平滑铁砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Gold Brick","tr":"平滑金砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fancy Lapis Brick","tr":"平滑青金石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Fancy Diamond Brick","tr":"平滑钻石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Fancy Redstone Brick","tr":"平滑红石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Fancy Bone Brick","tr":"平滑白骨砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Fancy Slime Brick","tr":"平滑史莱姆砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Fancy Slime Brick","tr":"平滑蓝史莱姆砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Fancy Endstone Brick","tr":"平滑末地石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Fancy Obsidian Brick","tr":"平滑黑曜石锭砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fancy Stone Brick","tr":"平滑石砖块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Stone Road","tr":"铺路石块","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockcasings.3":{"0":{"name":"水产机械方块","tr":"水产机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"强化镍铬机械方块","tr":"强化镍铬机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"多功能机械方块","tr":"多功能机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"三元金属机械方块","tr":"三元金属机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"钒氧化还原能量单元(IV)","tr":"钒氧化还原能量单元(IV)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"钒氧化还原能量单元(LuV)","tr":"钒氧化还原能量单元(LuV)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"钒氧化还原能量单元(ZPM)","tr":"钒氧化还原能量单元(ZPM)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"钒氧化还原能量单元(UV)","tr":"钒氧化还原能量单元(UV)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"钒氧化还原能量单元(UHV)","tr":"钒氧化还原能量单元(UHV)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"仓库机械方块","tr":"仓库机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"凛冰冷冻机机械方块","tr":"凛冰冷冻机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"炽焱高炉机械方块","tr":"炽焱高炉机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"聚变机械方块MK III","tr":"聚变机械方块MK III","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"进阶聚变线圈","tr":"进阶聚变线圈","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"未命名","tr":"未命名","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"抑制机械方块","tr":"抑制机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockcasings.4":{"0":{"name":"硅岩反应堆机械方块","tr":"硅岩反应堆机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"反应堆管道方块","tr":"反应堆管道方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"硅岩抑制室","tr":"硅岩抑制室","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"电弧炉机械方块","tr":"电弧炉机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"量子操纵者线圈方块","tr":"量子操纵者线圈方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"真空机械方块","tr":"真空机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"涡轮引擎机械方块","tr":"涡轮引擎机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:ImpureLiFBeF2":{"0":{"oreDict":["cellImpureMoltenSaltBase"],"name":"含杂熔盐基单元","tr":"含杂熔盐基单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockcasings.2":{"0":{"name":"热处理机械方块","tr":"热处理机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"哈斯特洛伊合金-N密封机械方块","tr":"哈斯特洛伊合金-N密封机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"哈斯特洛伊合金-X结构方块","tr":"哈斯特洛伊合金-X结构方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"耐热铬铁合金-DS流体容器方块","tr":"耐热铬铁合金-DS流体容器方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"洗矿厂机械方块","tr":"洗矿厂机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"筛选机机械方块","tr":"筛选机机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"筛选格栅机械方块","tr":"筛选格栅机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"钒氧化还原能量单元(EV)","tr":"钒氧化还原能量单元(EV)","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"能源站外围机械方块","tr":"能源站外围机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"回旋加速器线圈","tr":"回旋加速器线圈","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"回旋加速器机械方块","tr":"回旋加速器机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"热抑制机械方块","tr":"热抑制机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"批量生产框架","tr":"批量生产框架","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"切割机框架","tr":"切割机框架","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"无菌农场机械方块","tr":"无菌农场机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewErbium":{"0":{"oreDict":["screwErbium"],"name":"铒螺丝","tr":"铒螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockcasings.5":{"0":{"name":"艾萨研磨外围机械方块","tr":"艾萨研磨外围机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"艾萨研磨管道机械方块","tr":"艾萨研磨管道机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"艾萨研磨齿轮机械方块","tr":"艾萨研磨齿轮机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"元素约束机械方块","tr":"元素约束机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"气涤塔外围机械方块","tr":"气涤塔外围机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"加强打印机械方块","tr":"加强打印机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"锻造机械方块","tr":"锻造机械方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"中子脉冲控制方块","tr":"中子脉冲控制方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"寰宇强化脉冲控制方块","tr":"寰宇强化脉冲控制方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"无尽强化脉冲控制方块","tr":"无尽强化脉冲控制方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"时空连续体撕裂方块","tr":"时空连续体撕裂方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"中子屏蔽核心方块","tr":"中子屏蔽核心方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"寰宇强化屏蔽核心方块","tr":"寰宇强化屏蔽核心方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"无尽强化屏蔽核心方块","tr":"无尽强化屏蔽核心方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"时空扭曲核心方块","tr":"时空扭曲核心方块","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"力场玻璃","tr":"力场玻璃","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:gtplusplus.blockcasings.6":{"0":{"name":"聚变机械方块MK IV","tr":"聚变机械方块MK IV","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"进阶聚变线圈 II","tr":"进阶聚变线圈 II","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"未命名","tr":"未命名","tab":"GT++机器","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.distributor":{"0":{"name":"Oxygen Bubble Distributor","tr":"氧气分配器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:clamcookedItem":{"0":{"oreDict":["foodClamcooked"],"name":"Cooked Clam","tr":"熟蛤蜊","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.TungstenSteelBars":{"0":{"oreDict":["barsTungstenSteel"],"name":"Tungstensteel Bars","tr":"钨钢栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"gtnhintergalactic:item.SpaceElevatorParts":{"0":{"name":"Nanotube Spool","tr":"纳米管卷轴","tab":"GTNH-银河","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:spruce_planks":{"1":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Spruce Wood Planks","tr":"云杉木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellRadium":{"0":{"oreDict":["cellRadium"],"name":"镭单元","tr":"镭单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateHypogen":{"0":{"oreDict":["plateHypogen"],"name":"海珀珍板","tr":"海珀珍板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockFrankenzombieGenerator":{"0":{"name":"Frank\u0027N\u0027Zombie Generator","tr":"人造僵尸发电机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cranberryjellyItem":{"0":{"oreDict":["foodCranberryjelly"],"name":"Cranberry Jelly","tr":"蔓越莓酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:sand_snakestone":{"1":{"name":"Sand Snakestone","tr":"蛇纹沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Sand Snakestone","tr":"蛇纹沙石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLanthaniteNd":{"0":{"oreDict":["dustLanthaniteNd"],"name":"镧石(Nd)粉","tr":"镧石(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:FRF_Coil_2":{"0":{"name":"Advanced Field Restriction Coil","tr":"进阶力场约束线圈","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:FRF_Coil_1":{"0":{"name":"Field Restriction Coil","tr":"力场约束线圈","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemGearStellite":{"0":{"oreDict":["gearGtStellite"," gearStellite"],"name":"铬钴锰钛合金齿轮","tr":"铬钴锰钛合金齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:FRF_Coil_4":{"0":{"name":"Temporal Field Restriction Coil","tr":"时空力场约束线圈","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:FRF_Coil_3":{"0":{"name":"Ultimate Field Restriction Coil","tr":"终极力场约束线圈","tab":"更多发电机","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.gcBlockCore":{"3":{"name":"Tin Decoration Block","tr":"装饰锡块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Tin Decoration Block","tr":"装饰锡块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["oreCopper"," oreAnyCopper"],"name":"Copper Ore","tr":"铜矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["oreTin"],"name":"Tin Ore","tr":"锡矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["oreAluminum"," oreAluminium"," oreNaturalAluminum"],"name":"Aluminum Ore","tr":"铝矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["oreSilicon"],"name":"Silicon Ore","tr":"硅矿石","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockCopper"," blockAnyCopper"],"name":"Copper Block","tr":"铜块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockTin"],"name":"Tin Block","tr":"锡块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockAluminum"," blockAluminium"],"name":"Aluminum Block","tr":"铝块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockMeteoricIron"],"name":"Solid Meteoric Iron","tr":"陨铁块","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:pigment":{"0":{"oreDict":["pigment"],"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"20":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"21":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"22":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"32":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"37":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"38":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"40":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"41":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"42":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"44":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"48":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"50":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"52":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"56":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"58":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"61":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"62":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"67":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"68":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"72":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"74":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"75":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"name":"Pigment","tr":"颜料","tab":"Binnie|花卉","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallHeLiCoPtEr":{"0":{"oreDict":["dustSmallHeLiCoPtEr"],"name":"小堆HeLiCoPtEr粉","tr":"小堆HeLiCoPtEr粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyUranium233":{"0":{"oreDict":["dustTinyUranium233"],"name":"小撮铀-233粉","tr":"小撮铀-233粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyUranium232":{"0":{"oreDict":["dustTinyUranium232"],"name":"小撮铀-232粉","tr":"小撮铀-232粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:endStoneBrick2Slab":{"0":{"name":"Ender Brick Slab","tr":"末影石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernLeggs":{"0":{"name":"Wyvern Leggings","tr":"双足飞龙护腿","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-14}},"Botania:elfGlassPane":{"0":{"name":"Alfglass Pane","tr":"精灵玻璃板","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemPrimalCrusher":{"0":{"name":"Primal Crusher","tr":"元始杵","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":501}},"miscutils:itemCellPlasmaRunite":{"0":{"oreDict":["cellPlasmaRunite"],"name":"虚恩等离子体单元","tr":"虚恩等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.StainlessSteelItemCasing":{"0":{"oreDict":["itemCasingStainlessSteel"],"name":"Stainless Steel Item Casing","tr":"不锈钢外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:fullDrawers4":{"0":{"oreDict":["drawerBasic"],"name":"Oak Drawers 2x2","tr":"橡木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Spruce Drawers 2x2","tr":"云杉木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Birch Drawers 2x2","tr":"白桦木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Jungle Drawers 2x2","tr":"丛林木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Acacia Drawers 2x2","tr":"金合欢木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Dark Oak Drawers 2x2","tr":"深色橡木抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorNanoLegs":{"1":{"name":"NanoSuit Leggings","tr":"纳米护腿","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"NanoSuit Leggings","tr":"纳米护腿","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":28}},"ThaumicTinkerer:shareBook":{"0":{"name":"Tome of Knowledge Sharing","tr":"知识共享之书","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:cbuttonstone":{"0":{"name":"Button","tr":"按钮","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:magicbees.enchantedEarth":{"0":{"name":"Enchanted Earth","tr":"魔法泥土","tab":"魔法蜜蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:fullDrawers1":{"0":{"oreDict":["drawerBasic"],"name":"Oak Drawer","tr":"橡木抽屉","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Spruce Drawer","tr":"云杉木抽屉","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Birch Drawer","tr":"白桦木抽屉","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Jungle Drawer","tr":"丛林木抽屉","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Acacia Drawer","tr":"金合欢木抽屉","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Dark Oak Drawer","tr":"深色橡木抽屉","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:fullDrawers2":{"0":{"oreDict":["drawerBasic"],"name":"Oak Drawers 1x2","tr":"橡木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["drawerBasic"],"name":"Spruce Drawers 1x2","tr":"云杉木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["drawerBasic"],"name":"Birch Drawers 1x2","tr":"白桦木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["drawerBasic"],"name":"Jungle Drawers 1x2","tr":"丛林木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["drawerBasic"],"name":"Acacia Drawers 1x2","tr":"金合欢木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["drawerBasic"],"name":"Dark Oak Drawers 1x2","tr":"深色橡木抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:spinachseedItem":{"0":{"oreDict":["listAllseed"," seedSpinach"],"name":"Spinach Seed","tr":"菠菜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellBerylliumFluoride":{"0":{"oreDict":["cellBerylliumFluoride"],"name":"氟化铍单元","tr":"氟化铍单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.cobaltum_boots":{"0":{"name":"Cobalt Boots","tr":"钴靴","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":456}},"TwilightForest:tile.Slider":{"0":{"name":"Slide Trap","tr":"移动陷阱","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Slide Trap 1","tr":"移动陷阱1","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Slide Trap 2","tr":"移动陷阱2","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Slide Trap 3","tr":"移动陷阱3","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersBed":{"0":{"name":"Carpenter\u0027s Bed","tr":"木匠床","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:beeNugget":{"0":{"oreDict":["nuggetAnyIron"," nuggetIron"],"name":"Iron Nugget","tr":"铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["nuggetCopper"," nuggetAnyCopper"],"name":"Copper Nugget","tr":"铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["nuggetTin"],"name":"Tin Nugget","tr":"锡粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["nuggetSilver"],"name":"Silver Nugget","tr":"银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["nuggetLead"],"name":"Lead Nugget","tr":"铅粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:sky":{"0":{"name":"Sky Block","tr":"天空方块","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sky Block","tr":"天空方块","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLanthaniteLa":{"0":{"oreDict":["dustLanthaniteLa"],"name":"镧石(La)粉","tr":"镧石(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockCalifornium":{"0":{"oreDict":["blockCalifornium"],"name":"锎块","tr":"锎块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:part.signal.lamp":{"0":{"name":"Signal Lamp","tr":"信号灯","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:impregnatedCasing":{"0":{"name":"Impregnated Casing","tr":"浸渍部件","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:tile.gt.dronerender":{"0":{"name":"tile.gt.dronerender.name","tr":"tile.gt.dronerender.name","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:terrasteelHelm":{"0":{"name":"Terrasteel Helmet","tr":"泰拉钢头盔","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":375}},"miscutils:crushedLafossaite":{"0":{"oreDict":["crushedLafossaite"],"name":"Crushed Lafossaite Ore","tr":"粉碎铊盐矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:petals":{"0":{"name":"Giant Red Flower","tr":"巨大红色花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Giant Yellow Flower","tr":"巨大黄色花","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cranberrysauceItem":{"0":{"oreDict":["foodCranberrysauce"],"name":"Cranberry Sauce","tr":"蔓越莓酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:opSpectreKey":{"0":{"name":"Op Spectre Key","tr":"管理者灵魂之匙","tab":"随意作品","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:door.hopseed":{"0":{"name":"Hopseed Door","tr":"车桑子树门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone1Slab":{"0":{"name":"Basalt Slab","tr":"玄武岩台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorArcanite":{"0":{"oreDict":["rotorArcanite"],"name":"奥金转子","tr":"奥金转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SchematicsMoonBuggy":{"0":{"name":"Schematics Moon Buggy Chip","tr":"月球车设计图芯片","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockPaintedStair":{"0":{"name":"Painted Stairs","tr":"喷涂楼梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemPartCarbonPlate":{"0":{"oreDict":["plateAlloyCarbon"],"name":"Carbon Plate","tr":"碳板","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:reedBlock0Stairs":{"0":{"name":"Reed Stairs","tr":"甘蔗楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:flowerbedNoWeed":{"0":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Flowerbed","tr":"花床","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTantalloy60":{"0":{"oreDict":["blockTantalloy60"],"name":"钽钨合金-60块","tr":"钽钨合金-60块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:spiritportal":{"0":{"name":"Spirit Portal","tr":"精神之门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.solsBlock":{"0":{"name":"Sols ⓪","tr":"Sols ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Sols ①","tr":"Sols ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Sols ②","tr":"Sols ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sols ③","tr":"Sols ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Sols ④","tr":"Sols ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Sols ⑤","tr":"Sols ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Sols ⑥","tr":"Sols ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sols ⑦","tr":"Sols ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Sols ⑧","tr":"Sols ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Sols ⑨","tr":"Sols ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sols ⑩","tr":"Sols ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Sols ⑪","tr":"Sols ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Sols ⑫","tr":"Sols ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Sols ⑬","tr":"Sols ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Sols ⑭","tr":"Sols ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Sols ⑮","tr":"Sols ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:portable_altar":{"0":{"name":"Portable Altar","tr":"可携式祭坛","tab":"血之兵工厂","type":"Block","maxStackSize":1,"maxDurability":1}},"Forestry:core":{"0":{"name":"Analyzer","tr":"分析仪","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Escritoire","tr":"写字台","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockTantalloy61":{"0":{"oreDict":["blockTantalloy61"],"name":"钽钨合金-61块","tr":"钽钨合金-61块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemSpringCelestialTungsten":{"0":{"oreDict":["springCelestialTungsten"],"name":"天体钨弹簧","tr":"天体钨弹簧","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:wyvernBoots":{"0":{"name":"Wyvern Boots","tr":"双足飞龙靴","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":-12}},"Botania:lens":{"0":{"name":"Mana Lens","tr":"魔力透镜","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Mana Lens: Velocity","tr":"魔力透镜:速度","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Mana Lens: Potency","tr":"魔力透镜:强度","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Mana Lens: Resistance","tr":"魔力透镜:阻力","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Mana Lens: Efficiency","tr":"魔力透镜:效率","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Mana Lens: Bounce","tr":"魔力透镜:反射","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Mana Lens: Gravity","tr":"魔力透镜:引力","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Mana Lens: Bore","tr":"魔力透镜:挖掘","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Mana Lens: Damaging","tr":"魔力透镜:伤害","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Mana Lens: Phantom","tr":"魔力透镜:虚化","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Mana Lens: Magnetizing","tr":"魔力透镜:磁化","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Mana Lens: Entropic","tr":"魔力透镜:爆炸","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Mana Lens: Influence","tr":"魔力透镜:推力","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Mana Lens: Weight","tr":"魔力透镜:重力","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Mana Lens: Paintslinger","tr":"魔力透镜:涂色","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Mana Lens: Kindle","tr":"魔力透镜:引燃","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"name":"Mana Lens: Force","tr":"魔力透镜:力量","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Mana Lens: Flash","tr":"魔力透镜:闪光","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Mana Lens: Warp","tr":"魔力透镜:传送","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Mana Lens: Redirective","tr":"魔力透镜:变向","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Mana Lens: Celebratory","tr":"魔力透镜:喜庆","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Mana Lens: Flare","tr":"魔力透镜:闪耀","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:cube":{"0":{"name":"Block of Coal Coke","tr":"焦煤块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Block of Concrete","tr":"混凝土块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockSteel"],"name":"Block of Steel","tr":"钢块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Crushed Obsidian","tr":"碎黑曜石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stoneBasalt"],"name":"Abyssal Stone","tr":"深渊砖块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stoneMarble"],"name":"Quarried Stone","tr":"采掘砖块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Creosote Wood Block","tr":"杂酚油木方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockCopper"," blockAnyCopper"],"name":"Block of Copper","tr":"铜块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockTin"],"name":"Block of Tin","tr":"锡块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockLead"],"name":"Block of Lead","tr":"铅块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotQuantum":{"0":{"oreDict":["ingotHotQuantum"],"name":"热量子合金锭","tr":"热量子合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedAgarditeY":{"0":{"oreDict":["crushedAgarditeY"],"name":"Crushed Agardite (Y) Ore","tr":"粉碎的菱铁矿(Y)矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:lokiRing":{"0":{"name":"Ring of Loki","tr":"洛基之戒","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemGearTantalumCarbide":{"0":{"oreDict":["gearGtTantalumCarbide"," gearTantalumCarbide"],"name":"碳化钽齿轮","tr":"碳化钽齿轮","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.wallGC":{"0":{"name":"Tin Decoration Wall","tr":"装饰锡制墙","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tin Decoration Wall","tr":"装饰锡制墙","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Moon Rock Wall","tr":"月岩半墙","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Moon Dungeon Brick Wall","tr":"月球地牢砖块墙","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Mars Cobblestone Wall","tr":"火星圆石墙","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Mars Dungeon Brick Wall","tr":"火星地牢砖墙","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemHelmetCultistLeaderPlate":{"0":{"name":"Crimson Praetor Helm","tr":"血腥主教头盔","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":441}},"dreamcraft:item.CobbleStoneRod":{"0":{"oreDict":["stickStone"],"name":"Cobblestone Rod","tr":"圆石杆","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:item.em.EuMeterGT":{"0":{"name":"GT EU meter","tr":"GT EU电表","tab":"TecTech","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemPlateDoubleErbium":{"0":{"oreDict":["plateDoubleErbium"],"name":"双重铒板","tr":"双重铒板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:pamwalnutSapling":{"0":{"name":"Walnut Sapling","tr":"核桃树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:quartzStairsDark":{"0":{"name":"Smokey Quartz Stairs","tr":"烟熏石英楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:scoop":{"0":{"name":"Scoop","tr":"捕虫网","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":11}},"ThaumicTinkerer:focusDeflect":{"0":{"name":"Wand Focus: Distortion","tr":"法杖核心:扭曲","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:ItemResearchNotes":{"0":{"name":"Research Notes","tr":"研究笔记","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemIngotOctiron":{"0":{"oreDict":["ingotOctiron"],"name":"八角铁锭","tr":"八角铁锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:garlicseedItem":{"0":{"oreDict":["listAllseed"," seedGarlic"],"name":"Garlic Seed","tr":"大蒜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:mattock":{"0":{"name":"§f山铜 鹤嘴锄","tr":"§f山铜 鹤嘴锄","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"miscutils:blockFrameGtDysprosium":{"0":{"oreDict":["frameGtDysprosium"],"name":"镝框架","tr":"镝框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltPraseodymium":{"0":{"oreDict":["boltPraseodymium"],"name":"镨螺栓","tr":"镨螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLFTRFuel3":{"0":{"oreDict":["dustSmallLFTRFuel3"],"name":"小堆液态氟钍反应堆燃料3粉","tr":"小堆液态氟钍反应堆燃料3粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseHS188A":{"0":{"oreDict":["plateDenseHS188A"],"name":"致密HS188-A板","tr":"致密HS188-A板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:gaseousLight":{"0":{"name":"tile.gaseousLight.name","tr":"tile.gaseousLight.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"computronics:computronics.ironNoteBlock":{"0":{"name":"Iron Note Block","tr":"铁音符盒","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongAstralTitanium":{"0":{"oreDict":["stickLongAstralTitanium"],"name":"长星体钛杆","tr":"长星体钛杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodTungstenTitaniumCarbide":{"0":{"oreDict":["stickTungstenTitaniumCarbide"],"name":"碳化钨钛合金杆","tr":"碳化钨钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_cake":{"0":{"name":"Blood Cake","tr":"血之蛋糕","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:octopusrawItem":{"0":{"oreDict":["foodOctopusraw"," listAllfishraw"],"name":"Raw Octopus","tr":"生章鱼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetRuthenium":{"0":{"oreDict":["nuggetRuthenium"],"name":"钌粒","tr":"钌粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:natura.pickaxe.bloodwood":{"0":{"name":"Bloodwood Pickaxe","tr":"血树镐","tab":"自然","type":"Item","maxStackSize":1,"maxDurability":351}},"miscutils:itemDustSmallLFTRFuel1":{"0":{"oreDict":["dustSmallLFTRFuel1"],"name":"小堆液态氟钍反应堆燃料1粉","tr":"小堆液态氟钍反应堆燃料1粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLFTRFuel2":{"0":{"oreDict":["dustSmallLFTRFuel2"],"name":"小堆液态氟钍反应堆燃料2粉","tr":"小堆液态氟钍反应堆燃料2粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:portal":{"0":{"name":"Portal","tr":"门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:MU-metatool.01":{"1000":{"name":"简易手泵","tr":"简易手泵","tab":"GT++工具","type":"Item","maxStackSize":1,"maxDurability":1},"1001":{"name":"进阶手泵","tr":"进阶手泵","tab":"GT++工具","type":"Item","maxStackSize":1,"maxDurability":1},"1002":{"name":"超级手泵","tr":"超级手泵","tab":"GT++工具","type":"Item","maxStackSize":1,"maxDurability":1},"1003":{"name":"终极手泵","tr":"终极手泵","tab":"GT++工具","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:taffyItem":{"0":{"oreDict":["foodTaffy"],"name":"Taffy","tr":"太妃糖","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:mace.stone":{"0":{"name":"Stone Mace","tr":"石头槌","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":263}},"Natura:button.darkwood":{"0":{"oreDict":["buttonWood"],"name":"Darkwood Button","tr":"黑暗树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreRunite":{"0":{"oreDict":["oreRunite"],"name":"Runite Ore","tr":"虚恩矿","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallRunite":{"0":{"oreDict":["dustSmallRunite"],"name":"小堆虚恩粉","tr":"小堆虚恩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Builders:constructionMarkerBlock":{"0":{"name":"Construction Mark","tr":"建设标","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"MagicBees:effectJar":{"0":{"name":"Bee Collector\u0027s Jar","tr":"蜜蜂收集者的罐子","tab":"魔法蜜蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:elementiumChest":{"0":{"name":"Elementium Chestplate","tr":"源质钢胸甲","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":289}},"ironchestminecarts:minecart_chest_diamond":{"0":{"name":"Minecart with Diamond Chest","tr":"钻石箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"thaumicbases:knose":{"0":{"name":"Rosa Mysteria","tr":"神秘玫瑰","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:lilyBop":{"0":{"name":"Medium Lily Pad","tr":"大型睡莲","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Small Lily Pad","tr":"中型睡莲","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Tiny Lily Pad","tr":"小型睡莲","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:maplesyrupItem":{"0":{"oreDict":["cropMaplesyrup"],"name":"Maple Syrup","tr":"枫树糖浆","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallMixTumbaga":{"0":{"oreDict":["dustSmallMixTumbaga"],"name":"小堆铜金混合物粉","tr":"小堆铜金混合物粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RIO:intelligentWorkbench":{"0":{"name":"Intelligent Workbench","tr":"智能工作台","tab":"远程接口","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:pavement2Stairs":{"0":{"name":"Blue Portuguese Pavement Stairs","tr":"蓝色葡萄牙楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseOctiron":{"0":{"oreDict":["plateDenseOctiron"],"name":"致密八角铁板","tr":"致密八角铁板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:apicultureChest":{"0":{"name":"Apiarist\u0027s Chest","tr":"养蜂员箱子","tab":"林业|养蜂","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateChromaticGlass":{"0":{"oreDict":["plateChromaticGlass"],"name":"彩色玻璃板","tr":"彩色玻璃板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapeseedItem":{"0":{"oreDict":["listAllseed"," seedGrape"],"name":"Grape Seed","tr":"葡萄种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellPlasmaHypogen":{"0":{"oreDict":["cellPlasmaHypogen"],"name":"海珀珍等离子体单元","tr":"海珀珍等离子体单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.SandStoneRod":{"0":{"oreDict":["stickSandstone"],"name":"Sandstone Rod","tr":"沙石杆","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zorgBlock":{"0":{"name":"Zorg ⓪","tr":"Zorg ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zorg ①","tr":"Zorg ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zorg ②","tr":"Zorg ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zorg ③","tr":"Zorg ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zorg ④","tr":"Zorg ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zorg ⑤","tr":"Zorg ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zorg ⑥","tr":"Zorg ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zorg ⑦","tr":"Zorg ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zorg ⑧","tr":"Zorg ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zorg ⑨","tr":"Zorg ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zorg ⑩","tr":"Zorg ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zorg ⑪","tr":"Zorg ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zorg ⑫","tr":"Zorg ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zorg ⑬","tr":"Zorg ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zorg ⑭","tr":"Zorg ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zorg ⑮","tr":"Zorg ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundPlateFire":{"0":{"name":"Fire Omega Plate","tr":"火`欧米伽胸甲","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"TaintedMagic:ItemWandRod":{"0":{"name":"Warpwood Rod","tr":"扭曲之木杖柄","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Warpwood Staff Core","tr":"扭曲之木杖芯","tab":"污秽魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:BW_Machinery_Casings":{"0":{"oreDict":["blockNickelZincFerrite"],"name":"Nickel-Zinc Ferrite Block","tr":"镍锌铁氧体块","tab":"BartWorks跨时代","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Transformer-Winding Block","tr":"变压器线圈块","tab":"BartWorks跨时代","type":"Block","maxStackSize":64,"maxDurability":1}},"irontank:stainlesssteelTitaniumUpgrade":{"0":{"name":"Stainless Steel to Titanium Tank Upgrade","tr":"储罐升级:不锈钢\u003e钛","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"IC2:itemToolPainterCloud":{"0":{"name":"Light Blue Painter","tr":"浅蓝色刷子","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":33}},"ThaumicExploration:charmNoTaint":{"0":{"name":"Wispy Dreamcatcher","tr":"辟邪符","tab":"神秘探险","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:tinyPlanetBlock":{"0":{"name":"Tiny Planet","tr":"魔力环绕器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:MU-metaitem.01":{"32066":{"name":"质子电池","tr":"质子电池","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32068":{"name":"电子电池","tr":"电子电池","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32070":{"name":"夸克纠缠电池","tr":"夸克纠缠电池","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32072":{"name":"溢流阀(LV)","tr":"溢流阀(LV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32073":{"name":"溢流阀(MV)","tr":"溢流阀(MV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32074":{"name":"溢流阀(HV)","tr":"溢流阀(HV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32075":{"name":"溢流阀(EV)","tr":"溢流阀(EV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32076":{"name":"溢流阀(IV)","tr":"溢流阀(IV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32140":{"name":"伍德玻璃透镜","tr":"伍德玻璃透镜","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32142":{"name":"传动部件(LV)","tr":"传动部件(LV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32143":{"name":"传动部件(MV)","tr":"传动部件(MV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32144":{"name":"传动部件(HV)","tr":"传动部件(HV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32145":{"name":"传动部件(EV)","tr":"传动部件(EV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32146":{"name":"传动部件(IV)","tr":"传动部件(IV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32147":{"name":"传动部件(LuV)","tr":"传动部件(LuV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32148":{"name":"传动部件(ZPM)","tr":"传动部件(ZPM)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32149":{"name":"传动部件(UV)","tr":"传动部件(UV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32150":{"name":"传动部件(UHV)","tr":"传动部件(UHV)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32151":{"name":"丹格特升级芯片","tr":"丹格特升级芯片","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32152":{"name":"粉碎升级芯片","tr":"粉碎升级芯片","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32100":{"name":"控制矩阵(聚变)","tr":"控制矩阵(聚变)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32040":{"name":"模头(转轴)","tr":"模头(转轴)","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32041":{"name":"钚-238靶丸","tr":"钚-238靶丸","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32105":{"name":"量子反常","tr":"量子反常","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32042":{"name":"锶-90靶丸","tr":"锶-90靶丸","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32106":{"name":"抑制单元I","tr":"抑制单元I","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32043":{"name":"钋-210靶丸","tr":"钋-210靶丸","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32107":{"name":"抑制单元II","tr":"抑制单元II","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32044":{"name":"镅-241靶丸","tr":"镅-241靶丸","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32108":{"name":"先进抑制单元","tr":"先进抑制单元","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32109":{"name":"异星抑制单元","tr":"异星抑制单元","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32110":{"name":"重力异常","tr":"重力异常","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32050":{"name":"四联钠电池","tr":"四联钠电池","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32052":{"name":"四联镉电池","tr":"四联镉电池","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32054":{"name":"四联锂电池","tr":"四联锂电池","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1},"32055":{"name":"GT电脑主机","tr":"GT电脑主机","tab":"GT++机器","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotFermium":{"0":{"oreDict":["ingotFermium"],"name":"镄锭","tr":"镄锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:purpur":{"0":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Purpur Block","tr":"紫珀块","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.ztylBlock":{"0":{"name":"Ztyl ⓪","tr":"Ztyl ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Ztyl ①","tr":"Ztyl ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Ztyl ②","tr":"Ztyl ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ztyl ③","tr":"Ztyl ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ztyl ④","tr":"Ztyl ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ztyl ⑤","tr":"Ztyl ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ztyl ⑥","tr":"Ztyl ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Ztyl ⑦","tr":"Ztyl ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Ztyl ⑧","tr":"Ztyl ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Ztyl ⑨","tr":"Ztyl ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Ztyl ⑩","tr":"Ztyl ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Ztyl ⑪","tr":"Ztyl ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Ztyl ⑫","tr":"Ztyl ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Ztyl ⑬","tr":"Ztyl ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Ztyl ⑭","tr":"Ztyl ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Ztyl ⑮","tr":"Ztyl ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"BinnieCore:containerGlass":{"0":{"name":"Missed Fluid","tr":"丢失液体","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1}},"thaumicbases:resource":{"0":{"oreDict":["nuggetThauminite"],"name":"Thauminite Nugget","tr":"秘晶粒","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["ingotThauminite"],"name":"Thauminite Ingot","tr":"秘晶锭","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Thauminite Cap","tr":"秘晶杖端","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Thaumium Wand Core","tr":"神秘杖芯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Void Wand Core","tr":"虚空杖芯","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Aurelia Petal","tr":"灵气花瓣","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Briar Seed Bag","tr":"治愈花种子囊","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Tobacco Leaves Pile","tr":"烟草叶堆","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Bloody Enchanted Fabric","tr":"血腥布匹","tab":"Thaumic Bases Items","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ItemCrystalSeed":{"0":{"name":"Certus Quartz Seed","tr":"赛特斯石英种子","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1801},"1200":{"name":"Fluix Seed","tr":"福鲁伊克斯种子","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1801},"600":{"name":"Nether Quartz Seed","tr":"下界石英种子","tab":"应用能源2","type":"Item","maxStackSize":64,"maxDurability":1801}},"Botania:biomeStoneB4Stairs":{"0":{"name":"Metamorphic Swamp Stone Brick Stairs","tr":"变质沼泽石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:chaosFragment":{"0":{"name":"Tiny Chaos Fragment","tr":"微小混沌片段","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Small Chaos Fragment","tr":"小混沌片段","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Large Chaos Fragment","tr":"大混乱片段","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:gt.Volumetric_Flask_8k":{"0":{"name":"大型容量瓶","tr":"大型容量瓶","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:TrunkSpawner":{"0":{"name":"Traveling Trunk","tr":"箱子宝宝","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"ThaumicTinkerer:skyPearl":{"0":{"name":"Celestial Pearl","tr":"仙域珍珠","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:ryeseedItem":{"0":{"oreDict":["listAllseed"," seedRye"],"name":"Rye Seed","tr":"黑麦种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:marinatedcucumbersItem":{"0":{"oreDict":["foodMarinatedcucumbers"],"name":"Marinated Cucumbers","tr":"炝黄瓜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:paneertikkamasalaItem":{"0":{"oreDict":["foodPaneertikkamasala"],"name":"Paneer Tikka Masala","tr":"香料烤鸡咖哩","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:curtain_red":{"0":{"name":"Red Curtain","tr":"红色幕布","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:incendiaryTurret":{"0":{"name":"Incendiary Turret","tr":"燃烧弹炮塔","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:LavaTankNether":{"0":{"name":"Seared Tank","tr":"焦黑储罐","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Seared Glass","tr":"焦黑玻璃","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Seared Window","tr":"焦黑视窗","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodFstpotshelf":{"0":{"name":"Acacia Potion Shelf","tr":"金合欢药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Balsa Potion Shelf","tr":"巴尔杉药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Baobab Potion Shelf","tr":"猴面包树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Cherry Potion Shelf","tr":"樱桃树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Chestnut Potion Shelf","tr":"栗树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Citrus Potion Shelf","tr":"柑橘树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Ebony Potion Shelf","tr":"乌檀树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Greenheart Potion Shelf","tr":"樟树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Kapok Potion Shelf","tr":"木棉药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Larch Potion Shelf","tr":"落叶松药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Potion Shelf","tr":"菩提树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Mahoe Potion Shelf","tr":"白皮树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Mahogany Potion Shelf","tr":"桃花心木药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Maple Potion Shelf","tr":"枫树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Palm Potion Shelf","tr":"棕榈树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Papaya Potion Shelf","tr":"木瓜树药水架","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:smeltRod":{"0":{"name":"Rod of the Molten Core","tr":"炽心法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.UnfiredSlimeSoulBrick":{"0":{"name":"Unfired Slime Soul Brick","tr":"未烧制的史莱姆砖","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:cryingObsidian":{"0":{"name":"Crying Obsidian","tr":"尖叫黑曜石","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedZirconolite":{"0":{"oreDict":["crushedPurifiedZirconolite"],"name":"Purified Crushed Zirconolite Ore","tr":"洗净的钛锆酸钙矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:bucketRocket_fuel":{"0":{"name":"Rocket Fuel Bucket","tr":"桶装火箭燃料","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellUranium233":{"0":{"oreDict":["cellUranium233"],"name":"铀-233单元","tr":"铀-233单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:cottonBag":{"0":{"name":"Cotton Seed Bag","tr":"棉花种子袋","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellUranium232":{"0":{"oreDict":["cellUranium232"],"name":"铀-232单元","tr":"铀-232单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:fertilizerCompound":{"0":{"name":"Fertilizer","tr":"肥料","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:rainbowCactus":{"0":{"name":"Rainbow Cacti","tr":"彩虹仙人掌","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.willow":{"0":{"oreDict":["fenceGateWood"],"name":"Willow Fence Gate","tr":"柳树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:beetburgerItem":{"0":{"oreDict":["foodBeetburger"],"name":"Beet Burger","tr":"甜菜汉堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDenseSiliconCarbide":{"0":{"oreDict":["plateDenseSiliconCarbide"],"name":"致密碳化硅板","tr":"致密碳化硅板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:strawberryjellysandwichItem":{"0":{"oreDict":["foodStrawberryjellysandwich"],"name":"Strawberry Jelly Sandwich","tr":"草莓果酱三明治","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGeneratedplateDense":{"96":{"oreDict":["plateDenseAdemicSteel"],"name":"致密硬钢板","tr":"致密硬钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["plateDenseShirabon"],"name":"致密调律源金板","tr":"致密调律源金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["plateDenseAdamantiumAlloy"],"name":"致密精金合金板","tr":"致密精金合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["plateDenseAtomicSeparationCatalyst"],"name":"致密原子分离催化剂板","tr":"致密原子分离催化剂板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["plateDenseExtremelyUnstableNaquadah"],"name":"致密极不稳定硅岩板","tr":"致密极不稳定硅岩板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["plateDenseMAR-M200Steel"],"name":"致密MAR-M200特种钢板","tr":"致密MAR-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["plateDenseMAR-Ce-M200Steel"],"name":"致密MAR-Ce-M200特种钢板","tr":"致密MAR-Ce-M200特种钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["plateDenseRhodium-PlatedPalladium"],"name":"致密镀铑钯板","tr":"致密镀铑钯板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["plateDenseRuridit"],"name":"致密钌铱合金板","tr":"致密钌铱合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["plateDenseHighDurabilityCompoundSteel"],"name":"致密高耐久性复合钢板","tr":"致密高耐久性复合钢板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["plateDensePreciousMetalsAlloy"],"name":"致密稀有金属合金板","tr":"致密稀有金属合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["plateDenseEnrichedNaquadahAlloy"],"name":"致密富集硅岩合金板","tr":"致密富集硅岩合金板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["plateDenseMetastableOganesson"],"name":"致密亚稳态鿫板","tr":"致密亚稳态鿫板","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:stairswoodrowan":{"0":{"oreDict":["stairWood"],"name":"Rowan Stairs","tr":"山梨树楼梯","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeBolt":{"0":{"name":"Casting Form (Bolt Shape)","tr":"铸形(螺栓)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:energyCrystal":{"0":{"name":"Energy Relay","tr":"能量中继器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Advanced Energy Relay","tr":"高级能量中继器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Energy Transceiver","tr":"能量收发器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Advanced Energy Transceiver","tr":"高级能量收发器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Wireless Energy Transceiver","tr":"无线能量收发器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Advanced Wireless Transceiver","tr":"高级无线收发器","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.Double_ThoriumcellDep":{"0":{"name":"枯竭二联燃料棒(钍)","tr":"枯竭二联燃料棒(钍)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Forestry:adventurerBag":{"0":{"name":"Adventurer\u0027s Backpack","tr":"冒险家背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pampecanSapling":{"0":{"name":"Pecan Sapling","tr":"山核桃树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:oatsItem":{"0":{"oreDict":["listAllgrain"," cropOats"],"name":"Oats","tr":"燕麦","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:target":{"0":{"name":"Target","tr":"靶子","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:bulletCraftable":{"0":{"name":"Ammo - Bullet","tr":"弹药-子弹","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:parsnipseedItem":{"0":{"oreDict":["seedParsnip"," listAllseed"],"name":"Parsnip Seed","tr":"防风草种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:bucketSeedOil":{"0":{"name":"Seed Oil Bucket","tr":"种子油桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedObsidian":{"0":{"name":"Crated Obsidian","tr":"装箱的黑曜石","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:draconicHoe":{"0":{"name":"Draconic Hoe","tr":"龙之锄","tab":"龙之研究工具和武器","type":"Item","maxStackSize":1,"maxDurability":0}},"GalacticraftCore:tile.breatheableAir":{"0":{"name":"tile.breatheableAir.name","tr":"tile.breatheableAir.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:foresterBag":{"0":{"name":"Forester\u0027s Backpack","tr":"林业员背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:scytheIron":{"0":{"name":"Iron Scythe","tr":"铁镰刀","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":251}},"harvestcraft:poachedpearItem":{"0":{"oreDict":["foodPoachedpear"],"name":"Poached Pear","tr":"水煮梨","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolPortableCell":{"0":{"name":"Portable Cell","tr":"便携元件","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":33}},"tinkersdefense:moltenDogbearium":{"0":{"name":"Molten Dogbearium","tr":"熔融多格比合金","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:toolRod":{"0":{"oreDict":["nagascaleRod"," rodNagaScale"," woodRod"," rodWood"],"name":"Wooden Tool Rod","tr":"木手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["steeleafRod"," rodSteeleaf"," stoneRod"," rodStone"],"name":"Stone Tool Rod","tr":"石手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ironRod"," rodIron"],"name":"Iron Tool Rod","tr":"铁手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["flintRod"," rodFlint"],"name":"Flint Tool Rod","tr":"燧石手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["rodCactus"," cactusRod"],"name":"Cactus Tool Rod","tr":"仙人掌手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["boneRod"," rodBone"],"name":"Bone Tool Rod","tr":"骨头手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["obsidianRod"," rodObsidian"," stickObsidian"],"name":"Obsidian Tool Rod","tr":"黑曜石手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["netherrackRod"," rodNetherrack"],"name":"Netherrack Tool Rod","tr":"地狱岩手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["slimeRod"," rodSlime"],"name":"Slime Tool Rod","tr":"史莱姆手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["paperRod"," rodPaper"],"name":"Paper Tool Rod","tr":"纸手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["cobaltRod"," rodCobalt"],"name":"Cobalt Tool Rod","tr":"钴手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["arditeRod"," rodArdite"],"name":"Ardite Tool Rod","tr":"阿迪特手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["rodManyullyn"," manyullynRod"],"name":"Manyullyn Tool Rod","tr":"玛玉灵手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["copperRod"," rodCopper"],"name":"Copper Tool Rod","tr":"铜手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["bronzeRod"," rodBronze"],"name":"Bronze Tool Rod","tr":"青铜手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["alumiteRod"," rodAlumite"],"name":"Alumite Tool Rod","tr":"耐酸铝手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["steelRod"," rodSteel"],"name":"Steel Tool Rod","tr":"钢手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["blueslimeRod"," rodBlueslime"],"name":"Slime Tool Rod","tr":"史莱姆手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Tool Rod","tr":"生铁手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Tool Rod","tr":"不稳定感应手柄","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamartichokeCrop":{"0":{"name":"Artichoke Crop","tr":"洋蓟","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:butteredpotatoItem":{"0":{"oreDict":["foodButteredpotato"],"name":"Buttered Potato","tr":"奶油土豆","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioFancyPainting":{"0":{"name":"Oak Painting Frame","tr":"橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Spruce Painting Frame","tr":"云杉画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Painting Frame","tr":"桦木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Jungle Painting Frame","tr":"丛林木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Acacia Painting Frame","tr":"金合欢画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Dark Oak Painting Frame","tr":"深色橡木画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Framed Painting Frame","tr":"镶框画框","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"irontank:copperSilverUpgrade":{"0":{"name":"Copper to Steel Tank Upgrade","tr":"储罐升级:铜\u003e钢","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:item.darkSteel_chestplate":{"0":{"name":"Dark Plate","tr":"玄钢胸甲","tab":"EnderIO","type":"Item","maxStackSize":1,"maxDurability":561}},"Forestry:cratedChestnut":{"0":{"name":"Crated Chestnut","tr":"装箱的栗树","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:barrelTierTwo":{"0":{"name":"Barrel (Tier 2)","tr":"炮管(二级)","tab":"模块化炮塔","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:seedsoupItem":{"0":{"oreDict":["foodSeedsoup"],"name":"Seed Soup","tr":"种子汤","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:brick.nether":{"1":{"name":"Fitted Nether Stone","tr":"匀称下界方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Nether Block","tr":"下界方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ornate Nether Stone","tr":"雕琢下界方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Etched Nether Stone","tr":"蚀刻下界方块","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Nether Cobblestone","tr":"下界圆石","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaLogBloodwood":{"0":{"name":"Crated Bloodwood","tr":"装箱的血树","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:speedUpBelt":{"0":{"name":"Planestrider\u0027s Sash","tr":"平原旅带","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneSlabBlock":{"0":{"name":"Sky Stone Slabs","tr":"陨石台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.unlitTorchLit_Stone":{"0":{"name":"Stone Torch","tr":"石柄火把","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:SearedBlock":{"0":{"name":"Casting Table","tr":"浇铸台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Seared Faucet","tr":"浇注口","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Casting Basin","tr":"铸造盆","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:summerradishsaladItem":{"0":{"oreDict":["foodSummerradishsalad"],"name":"Summer Radish Salad","tr":"水萝卜沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"AWWayofTime:imperfectRitualStone":{"0":{"name":"Imperfect Ritual Stone","tr":"不完善的仪式石","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemArmorAlloyChestplate":{"0":{"name":"Composite Vest","tr":"复合背心","tab":"工业2","type":"Item","maxStackSize":1,"maxDurability":801}},"miscutils:itemCustomMetaCover.miscutils.GtMachineCasings":{"0":{"name":"§dUltra Low Voltage Machine Plate Cover","tr":"§dUltra Low Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"§dLow Voltage Machine Plate Cover","tr":"§dLow Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"§dMedium Voltage Machine Plate Cover","tr":"§dMedium Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"§dHigh Voltage Machine Plate Cover","tr":"§dHigh Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"§dExtreme Voltage Machine Plate Cover","tr":"§dExtreme Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"§dInsane Voltage Machine Plate Cover","tr":"§dInsane Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"§dLudicrous Voltage Machine Plate Cover","tr":"§dLudicrous Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"§dZPM Voltage Machine Plate Cover","tr":"§dZPM Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"§dUltimate Voltage Machine Plate Cover","tr":"§dUltimate Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"§dUltimate High Voltage Machine Plate Cover","tr":"§dUltimate High Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"§dUltimate Extreme Voltage Machine Plate Cover","tr":"§dUltimate Extreme Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"§dUltimate Insane Voltage Machine Plate Cover","tr":"§dUltimate Insane Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"§dUltimate Mega Voltage Machine Plate Cover","tr":"§dUltimate Mega Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"§dUltimate Extended Mega Voltage Machine Plate Cover","tr":"§dUltimate Extended Mega Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"§dMaximum Voltage Machine Plate Cover","tr":"§dMaximum Voltage机器覆盖板","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:tile.Mytryl":{"0":{"oreDict":["blockMytryl"],"name":"Block of Mytryl","tr":"深空秘银块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallDragonblood":{"0":{"oreDict":["dustSmallDragonblood"],"name":"小堆龙血粉","tr":"小堆龙血粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:gt.blockcasingsBA0":{"0":{"name":"Redstone Alloy Primary Tesla Windings","tr":"红石合金初级特斯拉绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"MV Superconductor Primary Tesla Windings","tr":"MV超导初级特斯拉绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"HV Superconductor Primary Tesla Windings","tr":"HV超导初级特斯拉绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"EV Superconductor Primary Tesla Windings","tr":"EV超导初级特斯拉绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"IV Superconductor Primary Tesla Windings","tr":"IV超导初级特斯拉绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"LuV Superconductor Primary Tesla Windings","tr":"LuV超导初级特斯拉绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Tesla Base Casing","tr":"特斯拉基座机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Tesla Toroid Casing","tr":"特斯拉线圈机械方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Tesla Secondary Windings","tr":"特斯拉次级绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"ZPM Superconductor Primary Tesla Windings","tr":"ZPM超导初级特斯拉绕组","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"强化时间结构方块","tr":"强化时间结构方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"强化空间结构方块","tr":"强化空间结构方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"无尽时空能量边界方块","tr":"无尽时空能量边界方块","tab":"主体","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.WandCapThauminite":{"0":{"name":"Thauminite Cap","tr":"秘晶杖端","tab":"GTNH: 神秘","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.QuartzPillarSlabBlock.double":{"0":{"name":"Certus Quartz Pillar Slabs","tr":"竖纹赛特斯石英台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.fuelLoader":{"0":{"name":"Fuel Loader","tr":"燃料注入器","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorGermanium":{"0":{"oreDict":["rotorGermanium"],"name":"锗转子","tr":"锗转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:connector":{"0":{"name":"Transvector Binder","tr":"矢量变换绑定器","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.StargateFramePart":{"0":{"name":"Stargate Frame Part","tr":"星门框架部件","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemDustSmall":{"0":{"oreDict":["dustTinyIron"," dustTinyAnyIron"],"name":"Tiny Pile of Iron Dust","tr":"小撮铁粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["dustTinyCopper"," dustTinyAnyCopper"],"name":"Tiny Pile of Copper Dust","tr":"小撮铜粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustTinyGold"],"name":"Tiny Pile of Gold Dust","tr":"小撮金粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustTinyTin"],"name":"Tiny Pile of Tin Dust","tr":"小撮锡粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustTinySilver"],"name":"Tiny Pile of Silver Dust","tr":"小撮银粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dustTinyLead"],"name":"Tiny Pile of Lead DustA","tr":"小撮铅粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["dustTinySulfur"],"name":"Tiny Pile of Sulfur Dust","tr":"小撮硫粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustTinyLithium"],"name":"Tiny Pile of Lithium Dust","tr":"小撮锂粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustTinyAnyBronze"," dustTinyBronze"],"name":"Tiny Pile of Bronze Dust","tr":"小撮青铜粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dustTinyLapis"],"name":"Tiny Pile of Lapis Dust","tr":"小撮青金石粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustTinyObsidian"],"name":"Tiny Pile of Obsidian Dust","tr":"小撮黑曜石粉","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:life_imbued_helmet":{"0":{"name":"Life Imbued Helmet","tr":"生命灌输头盔","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":100001}},"IC2:itemCasing":{"0":{"oreDict":["itemCasingCopper"," itemCasingAnyCopper"],"name":"Copper Item Casing","tr":"铜质外壳","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["itemCasingTin"],"name":"Tin Item Casing","tr":"锡质外壳","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["itemCasingBronze"," itemCasingAnyBronze"],"name":"Bronze Item Casing","tr":"青铜外壳","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["itemCasingGold"],"name":"Gold Item Casing","tr":"黄金外壳","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["itemCasingIron"," itemCasingAnyIron"],"name":"Iron Item Casing","tr":"铁质外壳","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["itemCasingSteel"],"name":"Steel Item Casing","tr":"精炼铁外壳","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["itemCasingLead"],"name":"Lead Item Casing","tr":"铅外壳","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemUran235small":{"0":{"name":"Tiny Pile of Uranium 235","tr":"小撮铀-235","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicboots:item.ItemSeasonBoots":{"0":{"name":"Boots of the Seasons","tr":"四季之靴","tab":"神秘之靴","type":"Item","maxStackSize":1,"maxDurability":326}},"miscutils:itemDustTinyAgarditeCd":{"0":{"oreDict":["dustTinyAgarditeCd"],"name":"小撮钇砷铜矿(Cd)粉","tr":"小撮钇砷铜矿(Cd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:saplings":{"0":{"oreDict":["treeSapling"],"name":"Apple Sapling","tr":"苹果树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Yellow Autumn Sapling","tr":"黄色秋天树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeSapling"],"name":"Bamboo Sapling","tr":"竹苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeSapling"],"name":"Magic Sapling","tr":"魔法树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["treeSapling"],"name":"Dark Sapling","tr":"黑暗树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["treeSapling"],"name":"Dying Sapling","tr":"垂死树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["treeSapling"],"name":"Fir Sapling","tr":"杉树树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["treeSapling"],"name":"Ethereal Sapling","tr":"空灵树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["treeSapling"],"name":"Orange Autumn Sapling","tr":"橙色秋天树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["treeSapling"],"name":"Origin Sapling","tr":"起源树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["treeSapling"],"name":"Pink Cherry Sapling","tr":"粉红樱桃树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["treeSapling"],"name":"Maple Sapling","tr":"枫树树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["treeSapling"],"name":"White Cherry Sapling","tr":"白色樱桃树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["treeSapling"],"name":"Hellbark Sapling","tr":"地狱皮树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["treeSapling"],"name":"Jacaranda Sapling","tr":"蓝花楹树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["treeSapling"],"name":"Persimmon Sapling","tr":"柿子树苗","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellNeon":{"0":{"oreDict":["cellNeon"],"name":"氖单元","tr":"氖单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFSapling":{"0":{"oreDict":["treeSapling"],"name":"Sickly Twilight Oak Sapling","tr":"暮色橡树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeSapling"],"name":"Canopy Tree Sapling","tr":"苍穹树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeSapling"],"name":"Twilight Mangrove Sapling","tr":"红树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeSapling"],"name":"Darkwood Sapling","tr":"黑树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["treeSapling"],"name":"Robust Twilight Oak Sapling","tr":"高大暮色橡树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["treeSapling"],"name":"Tree of Time Sapling","tr":"时光树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["treeSapling"],"name":"Tree of Transformation Sapling","tr":"变化树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["treeSapling"],"name":"Miner\u0027s Tree Sapling","tr":"矿工树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["treeSapling"],"name":"Sorting Tree Sapling","tr":"分类树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["treeSapling"],"name":"Rainbow Oak Sapling","tr":"彩虹橡树树苗","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:thaumicenergistics.block.arcane.assembler":{"0":{"name":"Arcane Assembler","tr":"奥术装配室","tab":"神秘能源","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateDoubleBabbitAlloy":{"0":{"oreDict":["plateDoubleBabbitAlloy"],"name":"双重巴氏合金板","tr":"双重巴氏合金板","tab":"GT++杂项","type":"Item","maxStackSize":32,"maxDurability":1}},"harvestcraft:cashewbutterItem":{"0":{"oreDict":["foodCashewbutter"," listAllnutbutter"],"name":"Cashew Butter","tr":"腰果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NanoCrystal":{"0":{"name":"Nano Crystal","tr":"纳米晶体","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemFineWirePalladium":{"0":{"oreDict":["wireFinePalladium"],"name":"细钯导线","tr":"细钯导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:birch_planks":{"1":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Birch Wood Planks","tr":"白桦木板","tab":"凿工艺|木质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:cloudTH":{"0":{"name":"Cloud","tr":"云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Thundercloud","tr":"雷云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Acid Cloud","tr":"酸云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Tumorous Cloud","tr":"肿胀云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Spore Cloud","tr":"孢子云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:iodineCapsule":{"0":{"name":"Iodine Capsule","tr":"碘酒胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetAncientGranite":{"0":{"oreDict":["nuggetAncientGranite"],"name":"古花岗岩粒","tr":"古花岗岩粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:canWater":{"0":{"name":"Water Can","tr":"水罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:fluid.molten.steel":{"0":{"name":"Molten Steel","tr":"熔融钢","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:granite":{"0":{"oreDict":["blockGranite"," stoneGranite"],"name":"Granite","tr":"花岗岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Granite","tr":"花岗岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Granite","tr":"花岗岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Granite","tr":"花岗岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Granite","tr":"花岗岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Granite","tr":"花岗岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Granite","tr":"花岗岩","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:borehead.steel":{"0":{"name":"Steel Bore Head","tr":"钢钻头","tab":"Railcraft","type":"Item","maxStackSize":1,"maxDurability":3001}},"witchery:arthana":{"0":{"name":"Arthana","tr":"仪祭匕首","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":251}},"GalaxySpace:item.CompressedDualBronze":{"0":{"name":"Compressed Dual Bronze","tr":"航天双层青铜板","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:lepidopterology":{"0":{"name":"Lepidopterist\u0027s Chest","tr":"鳞翅目昆虫学家箱子","tab":"林业|蝴蝶","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:celeryseedItem":{"0":{"oreDict":["listAllseed"," seedCelery"],"name":"Celery Seed","tr":"芹菜种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodPaintingT1":{"0":{"name":"Bloodwood Painting Frame","tr":"血树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Painting Frame","tr":"黑暗树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Painting Frame","tr":"桉树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Painting Frame","tr":"熔融树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Painting Frame","tr":"幽魂树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Painting Frame","tr":"车桑子树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Painting Frame","tr":"紫檀树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Painting Frame","tr":"银铃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Painting Frame","tr":"樱花树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Painting Frame","tr":"核桃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodPaintingT0":{"0":{"name":"Bloodwood Painting Frame","tr":"血树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Painting Frame","tr":"黑暗树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Painting Frame","tr":"桉树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Painting Frame","tr":"熔融树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Painting Frame","tr":"幽魂树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Painting Frame","tr":"车桑子树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Painting Frame","tr":"紫檀树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Painting Frame","tr":"银铃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Painting Frame","tr":"樱花树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Painting Frame","tr":"核桃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodPaintingT3":{"0":{"name":"Bloodwood Painting Frame","tr":"血树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Painting Frame","tr":"黑暗树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Painting Frame","tr":"桉树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Painting Frame","tr":"熔融树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Painting Frame","tr":"幽魂树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Painting Frame","tr":"车桑子树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Painting Frame","tr":"紫檀树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Painting Frame","tr":"银铃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Painting Frame","tr":"樱花树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Painting Frame","tr":"核桃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedYttrocerite":{"0":{"oreDict":["crushedCentrifugedYttrocerite"],"name":"Centrifuged Crushed Yttrocerite Ore","tr":"离心铈钇矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodPaintingT2":{"0":{"name":"Bloodwood Painting Frame","tr":"血树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Painting Frame","tr":"黑暗树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Painting Frame","tr":"桉树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Painting Frame","tr":"熔融树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Painting Frame","tr":"幽魂树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Painting Frame","tr":"车桑子树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Painting Frame","tr":"紫檀树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Painting Frame","tr":"银铃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Painting Frame","tr":"樱花树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Painting Frame","tr":"核桃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTantalumCarbide":{"0":{"oreDict":["cellTantalumCarbide"],"name":"碳化钽单元","tr":"碳化钽单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinDarkWizardIII":{"0":{"name":"Coin \"The Dark Wizard 1000\"","tr":"魔法师币$1000","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:FrothPlatinumflotation":{"0":{"oreDict":["cellPlatinumFroth"],"name":"铂泡沫单元","tr":"铂泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:itemAlloyEndergy":{"0":{"oreDict":["ingotCrudeSteel"],"name":"Clay Compound","tr":"复合粘土","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["ingotCrystallineAlloy"],"name":"Crystalline Alloy","tr":"晶化合金","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["ingotMelodicAlloy"],"name":"Melodic Alloy","tr":"旋律合金","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["ingotStellarAlloy"],"name":"Stellar Alloy","tr":"恒星合金","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["ingotCrystallinePinkSlime"],"name":"Crystalline Pink Slime","tr":"晶化粉红史莱姆","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["ingotEnergeticSilver"],"name":"Energetic Silver","tr":"充能银","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["ingotVividAlloy"],"name":"Vivid Alloy","tr":"生动合金","tab":"EnderIO","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:huntsmanspear":{"0":{"name":"Spear of the Huntsman","tr":"猎手之矛","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":1562}},"miscutils:itemDustLFTRFuel1":{"0":{"oreDict":["dustLFTRFuel1"],"name":"液态氟钍反应堆燃料1粉","tr":"液态氟钍反应堆燃料1粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:baconcheeseburgerItem":{"0":{"oreDict":["foodBaconcheeseburger"],"name":"Bacon Cheeseburger","tr":"培根芝士汉堡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLFTRFuel3":{"0":{"oreDict":["dustLFTRFuel3"],"name":"液态氟钍反应堆燃料3粉","tr":"液态氟钍反应堆燃料3粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustLFTRFuel2":{"0":{"oreDict":["dustLFTRFuel2"],"name":"液态氟钍反应堆燃料2粉","tr":"液态氟钍反应堆燃料2粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:itemCrushedOre":{"0":{"oreDict":["crushedIron"," crushedAnyIron"],"name":"Crushed Iron Ore","tr":"粉碎铁矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["crushedCopper"," crushedAnyCopper"],"name":"Crushed Copper Ore","tr":"粉碎铜矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["crushedGold"],"name":"Crushed Gold Ore","tr":"粉碎金矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["crushedTin"],"name":"Crushed Tin Ore","tr":"粉碎锡矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["crushedUranium"],"name":"Crushed Uranium Ore","tr":"粉碎铀矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["crushedSilver"],"name":"Crushed Silver Ore","tr":"粉碎银矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["crushedLead"],"name":"Crushed Lead Ore","tr":"粉碎铅矿石","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtRhenium":{"0":{"oreDict":["frameGtRhenium"],"name":"铼框架","tr":"铼框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureIrarsite":{"0":{"oreDict":["dustImpureIrarsite"],"name":"Impure Irarsite Dust","tr":"含杂硫砷铱粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormPipeMedium":{"0":{"name":"Casting Form (Normal Pipe Mold)","tr":"铸件(管道)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:bopGrass":{"0":{"name":"Spectral Moss","tr":"幽灵苔藓","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Smoldering Grass Block","tr":"阴燃草","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:placementMirror":{"0":{"name":"Worldshaper\u0027s Looking Glass","tr":"世界塑造者的观察镜","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"StevesCarts:BlockCargoManager":{"0":{"name":"Cargo Manager","tr":"货物管理器","tab":"史蒂夫的矿车 2丨方块","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:endoplasm":{"0":{"name":"Ectoplasm","tr":"外质","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsNatura:BiblioWoodPaintingT4":{"0":{"name":"Bloodwood Painting Frame","tr":"血树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Darkwood Painting Frame","tr":"黑暗树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Eucalyptus Painting Frame","tr":"桉树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fusewood Painting Frame","tr":"熔融树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ghostwood Painting Frame","tr":"幽魂树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Hopseed Painting Frame","tr":"车桑子树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Maple Painting Frame","tr":"枫树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Purpleheart Painting Frame","tr":"紫檀树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Redwood Painting Frame","tr":"红木画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Silverbell Painting Frame","tr":"银铃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Sakura Painting Frame","tr":"樱花树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Tiger Painting Frame","tr":"核桃树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:Natura版","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone8SlabFull":{"0":{"name":"Andesite Brick Slab","tr":"安山岩砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"BloodArsenal:compacted_mrs":{"0":{"name":"Compacted Master Ritual Stone","tr":"压缩的主仪式石","tab":"血之兵工厂","type":"Block","maxStackSize":1,"maxDurability":1}},"BiomesOPlenty:persimmonLeaves":{"0":{"oreDict":["treeLeaves"],"name":"Persimmon Leaves","tr":"柿子树叶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngravedDiamondCrystalChip":{"0":{"name":"Engraved Diamond Crystal Chip","tr":"雕刻钻石晶体芯片","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsBoP:BiblioWooddesk":{"0":{"name":"Sacred Oak Desk","tr":"天域树橡树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Cherry Desk","tr":"樱桃树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dark Desk","tr":"黑暗树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Fir Desk","tr":"杉树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Hellbark Desk","tr":"地狱皮树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Ethereal Desk","tr":"阁楼树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Jacaranda Desk","tr":"蓝花楹台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Magic Desk","tr":"魔法树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Mangrove Desk","tr":"红杉台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Palm Desk","tr":"棕榈树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Pine Desk","tr":"松树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Redwood Desk","tr":"红木台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Willow Desk","tr":"柳树台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Mahogany Desk","tr":"桃花心木台桌","tab":"收藏馆(BoP组件)","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetworkTool":{"0":{"name":"Network Tool","tr":"网络工具","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":1}},"gregtech:gt.sunnariumCell":{"0":{"name":"阳光化合物燃料棒","tr":"阳光化合物燃料棒","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"dreamcraft:item.NanoBoard":{"0":{"name":"Empty Nano Processor Board","tr":"纳米电路基板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT2b":{"0":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Painting Frame","tr":"李子树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Painting Frame","tr":"杨树木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Painting Frame","tr":"红杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Painting Frame","tr":"柚木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Painting Frame","tr":"核桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Painting Frame","tr":"崖豆树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.torchberries":{"0":{"name":"Torchberries","tr":"火炬浆果","tab":"暮色森林","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotIncoloy020":{"0":{"oreDict":["ingotIncoloy020"],"name":"耐热铬铁合金-020锭","tr":"耐热铬铁合金-020锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RIO:tile.machine":{"0":{"name":"Water Reservoir","tr":"蓄水箱","tab":"远程接口","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lava Heater","tr":"岩浆加热器","tab":"远程接口","type":"Block","maxStackSize":64,"maxDurability":1}},"computronics:computronics.ocSpecialParts":{"0":{"name":"Magical Memory (Creative)","tr":"创造模式内存","tab":"计算机电子学","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:creativeStructureSpawner":{"0":{"name":"Spawn Comet","tr":"生成彗星","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Spawn Ender Island","tr":"生成末影岛","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:brokenBronzePickaxe":{"0":{"name":"Broken Pickaxe","tr":"损坏的镐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.lead_leg":{"0":{"name":"Lead Leggins","tr":"铅护腿","tab":"星空|装备","type":"Item","maxStackSize":1,"maxDurability":451}},"Avaritia:Double_Craft":{"0":{"name":"Compressed Crafting Table","tr":"压缩工作台","tab":"无尽贪婪","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:marble_pillar_slab":{"0":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Marble Pillar Slab","tr":"大理石柱板","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"WitchingGadgets:WG_VoidWalkway":{"0":{"name":"Void Walkway","tr":"虚空走道","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongPotin":{"0":{"oreDict":["stickLongPotin"],"name":"长粗青铜合金杆","tr":"长粗青铜合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IguanaTweaksTConstruct:clayBucketsTinkers":{"0":{"name":"Molten Iron Clay Bucket","tr":"粘土桶(熔融铁)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Molten Gold Clay Bucket","tr":"粘土桶(熔融金)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Molten Copper Clay Bucket","tr":"粘土桶(熔融铜)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Molten Tin Clay Bucket","tr":"粘土桶(熔融锡)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Molten Aluminum Clay Bucket","tr":"粘土桶(熔融铝)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"5":{"name":"Molten Cobalt Clay Bucket","tr":"粘土桶(熔融钴)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"6":{"name":"Molten Ardite Clay Bucket","tr":"粘土桶(熔融阿迪特)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"7":{"name":"Molten Bronze Clay Bucket","tr":"粘土桶(熔融青铜)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"8":{"name":"Molten Aluminum Brass Clay Bucket","tr":"粘土桶(熔融黄铜)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"9":{"name":"Molten Manyullyn Clay Bucket","tr":"粘土桶(熔融玛玉灵)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"10":{"name":"Molten Alumite Clay Bucket","tr":"粘土桶(熔融耐酸铝)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"11":{"name":"Molten Obsidian Clay Bucket","tr":"粘土桶(熔融黑曜石)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"12":{"name":"Molten Steel Clay Bucket","tr":"粘土桶(熔融钢)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"13":{"name":"Molten Glass Clay Bucket","tr":"粘土桶(熔融玻璃)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"14":{"name":"Seared Stone Clay Bucket","tr":"粘土桶(熔融焦石)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"15":{"name":"Liquified Emerald Clay Bucket","tr":"粘土桶(熔融绿宝石)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"16":{"name":"Clay Bucket o\u0027 Blood","tr":"粘土桶(血)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"17":{"name":"Molten Nickel Clay Bucket","tr":"粘土桶(熔融镍)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"18":{"name":"Molten Lead Clay Bucket","tr":"粘土桶(熔融铅)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"19":{"name":"Molten Silver Clay Bucket","tr":"粘土桶(熔融银)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"20":{"name":"Molten Shiny Clay Bucket","tr":"粘土桶(熔融铂)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"21":{"name":"Molten Invar Clay Bucket","tr":"粘土桶(熔融殷钢)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"22":{"name":"Molten Electrum Clay Bucket","tr":"粘土桶(熔融琥珀金)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"23":{"name":"Liquified Ender Clay Bucket","tr":"粘土桶(液态末影)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"24":{"name":"Liquid Slime Clay Bucket","tr":"粘土桶(史莱姆粘液)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"25":{"name":"Sticky Glue Clay Bucket","tr":"粘土桶(凝胶)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"26":{"name":"Molten Pig Iron Clay Bucket","tr":"粘土桶(熔融生铁)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"27":{"name":"Molten Lumium Clay Bucket","tr":"粘土桶(熔融流明)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"28":{"name":"Molten Signalum Clay Bucket","tr":"粘土桶(熔融信素)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"29":{"name":"Molten Mana Infused Metal Clay Bucket","tr":"粘土桶(熔融蕴魔金属)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"30":{"name":"Molten Enderium Clay Bucket","tr":"粘土桶(熔融末影金属)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1},"31":{"name":"Molten Quartz Clay Bucket","tr":"粘土桶(熔融石英)","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"AWWayofTime:boundLeggingsWater":{"0":{"name":"Water Omega Leggings","tr":"水`欧米伽护腿","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"DraconicEvolution:longRangeDislocator":{"1":{"name":"Admin Dislocator","tr":"创造错位宝石","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.Ledox":{"0":{"oreDict":["blockLedox"],"name":"Block of Ledox","tr":"深铅块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPotin":{"0":{"oreDict":["dustTinyPotin"],"name":"小撮粗青铜合金粉","tr":"小撮粗青铜合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedAcaciaWood":{"0":{"name":"Crated Acacia Wood","tr":"装箱的金合欢木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinCook":{"0":{"name":"Coin \"The Cook 1\"","tr":"厨师币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT3b":{"0":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Painting Frame","tr":"李子树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Painting Frame","tr":"杨树木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Painting Frame","tr":"红杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Painting Frame","tr":"柚木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Painting Frame","tr":"核桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Painting Frame","tr":"崖豆树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:UmbralBush":{"0":{"name":"Umbral Rose Bush","tr":"暗影玫瑰丛","tab":"禁忌魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:statuegoddess":{"0":{"name":"Statue of The Goddess","tr":"女神像","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:slurp":{"0":{"name":"tile.witchery:slurp.name","tr":"tile.witchery:slurp.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyStrontiumHydroxide":{"0":{"oreDict":["dustTinyStrontiumHydroxide"],"name":"小撮氢氧化锶粉","tr":"小撮氢氧化锶粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:fenceGate.darkwood":{"0":{"oreDict":["fenceGateWood"],"name":"Darkwood Fence Gate","tr":"黑暗树栅栏门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"AdvancedSolarPanel:BlockMolecularTransformer":{"0":{"oreDict":["craftingMolecularTransformer"],"name":"Molecular Transformer","tr":"分子重组仪","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnvironmentalCircuit":{"0":{"name":"Environmental Circuit","tr":"环境加工电路","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:candleberryseedItem":{"0":{"oreDict":["listAllseed"," seedCandleberry"],"name":"Candleberry Seed","tr":"蜡杨梅种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:cloudGlowingTH":{"1":{"name":"Plasma Cloud","tr":"等离子云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Alloy Cloud","tr":"合金云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Vis Cloud","tr":"Vis云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Glyph Cloud","tr":"符文云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Animus Cloud","tr":"憎恶云","tab":"神秘视界","type":"Block","maxStackSize":64,"maxDurability":1}},"openmodularturrets:leverBlock":{"0":{"name":"Basic Turret Base Crank","tr":"炮塔基座曲柄","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:refractoryBiomass":{"0":{"name":"Biomass Capsule","tr":"耐火生物质胶囊","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:wrappedUraniumIngot":{"0":{"name":"Wrapped Uranium Ingot","tr":"封装铀锭","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"gadomancy:BlockArcaneDropper":{"0":{"name":"Arcane Dropper","tr":"奥术投掷器","tab":"魔像密经","type":"Block","maxStackSize":64,"maxDurability":1}},"universalsingularities:universal.mekanism.singularity":{"0":{"name":"Refined Glowstone Singularity","tr":"强化萤石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Refined Obsidian Singularity","tr":"强化黑曜石奇点","tab":"无尽贪婪","type":"Item","maxStackSize":64,"maxDurability":1}},"battlegear2:dagger.diamond":{"0":{"name":"Diamond Dagger","tr":"钻石匕首","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":1562}},"Railcraft:glass":{"0":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["blockGlassHV"],"name":"Strengthened Glass","tr":"强化玻璃","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:churn":{"0":{"name":"Churn","tr":"搅拌机","tab":"潘马斯农场|杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartMediumGuard":{"1536":{"name":"精金 Hand Guard","tr":"精金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Hand Guard","tr":"神秘蓝金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Hand Guard","tr":"琥珀 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Hand Guard","tr":"纯镃 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Hand Guard","tr":"谐镃 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Hand Guard","tr":"聚氯乙烯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Hand Guard","tr":"永恒 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Hand Guard","tr":"磁物质 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Hand Guard","tr":"赛特斯石英 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Hand Guard","tr":"暗影秘银 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Hand Guard","tr":"玄铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Hand Guard","tr":"戴斯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Hand Guard","tr":"铿铀 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Hand Guard","tr":"通流琥珀金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Hand Guard","tr":"末影粗胚 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Hand Guard","tr":"末影(te) 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Hand Guard","tr":"炽热的钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Hand Guard","tr":"火石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Hand Guard","tr":"力量 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Hand Guard","tr":"石墨 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Hand Guard","tr":"石墨烯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Hand Guard","tr":"注魔金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Hand Guard","tr":"风之魔晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Hand Guard","tr":"火之魔晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Hand Guard","tr":"地之魔晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Hand Guard","tr":"水之魔晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Hand Guard","tr":"混沌魔晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Hand Guard","tr":"秩序魔晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Hand Guard","tr":"玉 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Hand Guard","tr":"碧玉 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Hand Guard","tr":"陨铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Hand Guard","tr":"陨钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Hand Guard","tr":"硅岩 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Hand Guard","tr":"硅岩合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Hand Guard","tr":"富集硅岩 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Hand Guard","tr":"超能硅岩 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Hand Guard","tr":"下界石英 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Hand Guard","tr":"下界之星 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Hand Guard","tr":"三钛 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Hand Guard","tr":"虚空 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Hand Guard","tr":"胶木 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Hand Guard","tr":"幽冥剧毒结晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Hand Guard","tr":"强化 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Hand Guard","tr":"铱锇合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Hand Guard","tr":"阳光化合物 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Hand Guard","tr":"魂金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Hand Guard","tr":"蓝黄玉 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Hand Guard","tr":"黄铜 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Hand Guard","tr":"白铜 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Hand Guard","tr":"深渊铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Hand Guard","tr":"钻石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Hand Guard","tr":"琥珀金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Hand Guard","tr":"绿宝石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Hand Guard","tr":"强化混合晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Hand Guard","tr":"混合晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Hand Guard","tr":"绿色蓝宝石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Hand Guard","tr":"殷钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Hand Guard","tr":"坎塔尔合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Hand Guard","tr":"镁铝合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Hand Guard","tr":"镍铬合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Hand Guard","tr":"玄钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Hand Guard","tr":"生铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Hand Guard","tr":"聚乙烯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Hand Guard","tr":"环氧树脂 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Hand Guard","tr":"硅橡胶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Hand Guard","tr":"聚己内酰胺 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Hand Guard","tr":"聚四氟乙烯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Hand Guard","tr":"蓝宝石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Hand Guard","tr":"不锈钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Hand Guard","tr":"坦桑石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Hand Guard","tr":"锡铁合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Hand Guard","tr":"黄玉 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Hand Guard","tr":"哈氏合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Hand Guard","tr":"锻铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Hand Guard","tr":"铁木 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Hand Guard","tr":"橄榄石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Hand Guard","tr":"蛋白石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Hand Guard","tr":"紫水晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Hand Guard","tr":"暗影金属 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Hand Guard","tr":"暗影铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Hand Guard","tr":"暗影钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Hand Guard","tr":"钢叶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Hand Guard","tr":"骑士金属 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Hand Guard","tr":"标准纯银 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Hand Guard","tr":"玫瑰金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Hand Guard","tr":"黑青铜 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Hand Guard","tr":"铋青铜 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Hand Guard","tr":"黑钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Hand Guard","tr":"红钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Hand Guard","tr":"蓝钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Hand Guard","tr":"大马士革钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Hand Guard","tr":"充能合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Hand Guard","tr":"脉冲合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Hand Guard","tr":"星辰银 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Hand Guard","tr":"钴黄铜 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Hand Guard","tr":"红石榴石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Hand Guard","tr":"黄石榴石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Hand Guard","tr":"温特姆 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Hand Guard","tr":"黑花岗岩 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Hand Guard","tr":"红花岗岩 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Hand Guard","tr":"白石棉 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Hand Guard","tr":"雄黄 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Hand Guard","tr":"磁化铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Hand Guard","tr":"磁化钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Hand Guard","tr":"磁化钕 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Hand Guard","tr":"碳化钨 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Hand Guard","tr":"钒钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Hand Guard","tr":"高速钢-G 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Hand Guard","tr":"高速钢-E 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Hand Guard","tr":"高速钢-S 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Hand Guard","tr":"深铅 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Hand Guard","tr":"量子 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Hand Guard","tr":"深空秘银 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Hand Guard","tr":"黑钚 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Hand Guard","tr":"木卫四冰 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Hand Guard","tr":"硬铝 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Hand Guard","tr":"奥利哈钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Hand Guard","tr":"三元金属 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Hand Guard","tr":"聚苯硫醚 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Hand Guard","tr":"聚苯乙烯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Hand Guard","tr":"丁苯橡胶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Hand Guard","tr":"镍锌铁氧体 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Hand Guard","tr":"纤维强化的环氧树脂 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Hand Guard","tr":"磁化钐 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Hand Guard","tr":"无尽催化剂 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Hand Guard","tr":"聚苯并咪唑 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Hand Guard","tr":" 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Hand Guard","tr":"钛铂钒合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Hand Guard","tr":"时空 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Hand Guard","tr":"大理石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Hand Guard","tr":"神秘水晶 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Hand Guard","tr":"末影钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Hand Guard","tr":"复合粘土 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Hand Guard","tr":"晶化合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Hand Guard","tr":"旋律合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Hand Guard","tr":"恒星合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Hand Guard","tr":"晶化粉红史莱姆 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Hand Guard","tr":"充能银 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Hand Guard","tr":"生动合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Hand Guard","tr":"灵宝 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Hand Guard","tr":"超时空金属 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Hand Guard","tr":"活石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Hand Guard","tr":"盖亚之魂 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Hand Guard","tr":"活木 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Hand Guard","tr":"梦之木 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Hand Guard","tr":"泡铋 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Hand Guard","tr":"立方氧化锆 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Hand Guard","tr":"氟铁电气石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Hand Guard","tr":"铬铝电气石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Hand Guard","tr":"钒镁电气石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Hand Guard","tr":"铝电气石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Hand Guard","tr":"红锆石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Hand Guard","tr":"铁橄榄石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Hand Guard","tr":"镁橄榄石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Hand Guard","tr":"钙铁辉石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Hand Guard","tr":"钍-232 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Hand Guard","tr":"堇云石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Hand Guard","tr":"磁共振石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Hand Guard","tr":"锎 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Hand Guard","tr":"BArTiMaEuSNeK 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Hand Guard","tr":"钌 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Hand Guard","tr":"铑 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Hand Guard","tr":"镀铑钯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Hand Guard","tr":"泰伯利亚 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Hand Guard","tr":"钌铱合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Hand Guard","tr":"氟石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Hand Guard","tr":"高耐久性复合钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Hand Guard","tr":"硬钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Hand Guard","tr":"合成玉 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Hand Guard","tr":"原子分离催化剂 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Hand Guard","tr":"极不稳定硅岩 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Hand Guard","tr":"锌钍合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Hand Guard","tr":"锆锡合金-4 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Hand Guard","tr":"锆锡合金-2 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Hand Guard","tr":"耐热铬铁合金-903 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Hand Guard","tr":"精金合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Hand Guard","tr":"MAR-M200特种钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Hand Guard","tr":"MAR-Ce-M200特种钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Hand Guard","tr":"氯化锂 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Hand Guard","tr":"信素 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Hand Guard","tr":"流明 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Hand Guard","tr":"阿瑟锡 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Hand Guard","tr":"钛钼合金β-C 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Hand Guard","tr":"大力合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Hand Guard","tr":"光素 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Hand Guard","tr":"对立合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Hand Guard","tr":"稀有金属合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Hand Guard","tr":"富集硅岩合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Hand Guard","tr":"亚稳态鿫 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Hand Guard","tr":"调律源金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Hand Guard","tr":"魔钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Hand Guard","tr":"泰拉钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Hand Guard","tr":"源质钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Hand Guard","tr":"磁流体约束恒星物质 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Hand Guard","tr":"白矮星物质 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Hand Guard","tr":"黑矮星物质 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Hand Guard","tr":"宇宙素 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Hand Guard","tr":"铝 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Hand Guard","tr":"铍 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Hand Guard","tr":"铋 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Hand Guard","tr":"碳 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Hand Guard","tr":"铬 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Hand Guard","tr":"金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Hand Guard","tr":"铱 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Hand Guard","tr":"铅 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Hand Guard","tr":"锰 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Hand Guard","tr":"钼 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Hand Guard","tr":"钕 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Hand Guard","tr":"中子 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Hand Guard","tr":"镍 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Hand Guard","tr":"锇 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Hand Guard","tr":"钯 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Hand Guard","tr":"铂 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Hand Guard","tr":"钚-239 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Hand Guard","tr":"钚-241 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Hand Guard","tr":"银 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Hand Guard","tr":"钍 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Hand Guard","tr":"钛 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Hand Guard","tr":"钨 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Hand Guard","tr":"铀-238 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Hand Guard","tr":"铀-235 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Hand Guard","tr":"红宝石 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Hand Guard","tr":"红石合金 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Hand Guard","tr":"终末 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Hand Guard","tr":"导电铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Hand Guard","tr":"磁钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Hand Guard","tr":"钨钢 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Hand Guard","tr":"烈焰 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Hand Guard","tr":"脉冲铁 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Hand Guard","tr":"龙 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Hand Guard","tr":"觉醒龙 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Hand Guard","tr":"褐铜 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Hand Guard","tr":"山铜 护手","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemIngotStrontium":{"0":{"oreDict":["ingotStrontium"],"name":"锶锭","tr":"锶锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenBlocks:xpshower":{"0":{"name":"XP Shower","tr":"经验莲蓬头","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyTellurium":{"0":{"oreDict":["dustTinyTellurium"],"name":"小撮碲粉","tr":"小撮碲粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT4b":{"0":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Painting Frame","tr":"李子树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Painting Frame","tr":"杨树木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Painting Frame","tr":"红杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Painting Frame","tr":"柚木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Painting Frame","tr":"核桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Painting Frame","tr":"崖豆树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:chocolateyogurtItem":{"0":{"oreDict":["foodChocolateyogurt"],"name":"Chocolate Yogurt","tr":"巧克力酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPotassiumNitrate":{"0":{"oreDict":["dustTinyPotassiumNitrate"],"name":"小撮硝酸钾粉","tr":"小撮硝酸钾粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:personalCloakingDevice-0.0":{"0":{"name":"§9Personal Cloaking Device§7","tr":"§9§9个人隐形装置§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":1}},"gendustry:ProteinCan":{"0":{"name":"Protein Can","tr":"蛋白质罐","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:decurseteleport":{"0":{"name":"Statue of Occluded Summons","tr":"封闭召唤之雕像","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallNeptunium":{"0":{"oreDict":["dustSmallNeptunium"],"name":"小堆镎粉","tr":"小堆镎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:particleIon":{"0":{"name":"Hydrogen Ion","tr":"氢离子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Helium Ion","tr":"氦离子","tab":"GT++其他","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:kiwijuiceItem":{"0":{"oreDict":["listAlljuice"," foodKiwijuice"],"name":"Kiwi Juice","tr":"猕猴桃汁","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateZirconium":{"0":{"oreDict":["plateZirconium"],"name":"锆板","tr":"锆板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallOrganicFertilizer":{"0":{"oreDict":["dustSmallOrganicFertilizer"],"name":"小堆生物肥料粉","tr":"小堆生物肥料粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:livingrock1Stairs":{"0":{"name":"Livingrock Brick Stairs","tr":"活石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicExploration:everfullUrn":{"0":{"name":"Everfull Urn","tr":"无尽之壶","tab":"神秘探险","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:bedrockPortal":{"0":{"name":"Bedrock Portal","tr":"基岩传送门","tab":"神秘工匠","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallZirconiumTetrafluoride":{"0":{"oreDict":["dustSmallZirconiumTetrafluoride"],"name":"小堆四氟化锆粉","tr":"小堆四氟化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:celeryItem":{"0":{"oreDict":["cropCelery"," listAllveggie"," listAllgreenveggie"],"name":"Celery","tr":"芹菜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_stained_ice_packed":{"0":{"name":"Blood Stained Packed Ice","tr":"染血浮冰","tab":"血之兵工厂","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:mirrorwall":{"0":{"name":"Mirror Surface","tr":"魔镜镜面","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:item.fieryHelm":{"0":{"name":"Fiery Helm","tr":"炽热的头盔","tab":"暮色森林","type":"Item","maxStackSize":1,"maxDurability":276}},"miscutils:itemFineWireKoboldite":{"0":{"oreDict":["wireFineKoboldite"],"name":"细妖金导线","tr":"细妖金导线","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:button.fusewood":{"0":{"oreDict":["buttonWood"],"name":"Fusewood Button","tr":"熔融树按钮","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:grave":{"0":{"name":"Gravestone","tr":"坟墓","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:honeydew":{"0":{"oreDict":["dropHoneydew"],"name":"Honeydew","tr":"蜂蜜汁","tab":"林业|养蜂","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorHastelloyC276":{"0":{"oreDict":["rotorHastelloyC276"],"name":"哈斯特洛依合金-C276转子","tr":"哈斯特洛依合金-C276转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RandomThings:spectreSword":{"0":{"name":"Spectre Sword","tr":"灵魂之剑","tab":"随意作品","type":"Item","maxStackSize":1,"maxDurability":1701}},"dreamcraft:tile.DiamondFrameBox":{"0":{"name":"Diamond Frame Box","tr":"钻石框架","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ConductiveIronBars":{"0":{"oreDict":["barsConductiveIron"],"name":"Conductive Iron Bars","tr":"导电铁栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:assembler":{"0":{"oreDict":["oc:assembler"],"name":"Electronics Assembler","tr":"电子装配器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.steel_helmet":{"0":{"name":"Heavy Duty Helmet","tr":"重型头盔","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":331}},"witchery:icestairs":{"0":{"name":"Ice Stairs","tr":"冰楼梯","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltHS188A":{"0":{"oreDict":["boltHS188A"],"name":"HS188-A螺栓","tr":"HS188-A螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureRadioactiveMineralMix":{"0":{"oreDict":["dustImpureRadioactiveMineralMix"],"name":"Impure Strange Dust","tr":"含杂奇异粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyWood\u0027sGlass":{"0":{"oreDict":["dustTinyWood\u0027sGlass"],"name":"小撮伍德玻璃粉","tr":"小撮伍德玻璃粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MercuryCoreDust":{"0":{"oreDict":["dustPlanetMercury"," dustSpace"," dustMercuryCore"],"name":"Mercury Core Dust","tr":"水星石尘埃","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:knowledge.core":{"0":{"name":"Knowledge Core","tr":"知识核心","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:blackberryyogurtItem":{"0":{"oreDict":["foodBlackberryyogurt"],"name":"Blackberry Yogurt","tr":"黑莓酸奶","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.AdsorptionFilterCasing":{"0":{"name":"Absorption Filter Casing","tr":"吸附过滤外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemAxeThaumium":{"0":{"name":"Thaumium Axe","tr":"神秘斧","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":401}},"miscutils:itemIngotBabbitAlloy":{"0":{"oreDict":["ingotBabbitAlloy"],"name":"巴氏合金锭","tr":"巴氏合金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockTransceiver":{"0":{"name":"Dimensional Transceiver","tr":"空间传送器","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:fluid_discretizer":{"0":{"name":"Fluid Discretizer","tr":"ME流体离散器","tab":"AE2流体合成套件","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:distributor":{"0":{"name":"Mana Distributor","tr":"魔力分配器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCalifornium":{"0":{"oreDict":["dustSmallCalifornium"],"name":"小堆锎粉","tr":"小堆锎粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:recyclerAddon":{"0":{"name":"Addon - Recycler","tr":"附件-弹药循环","tab":"模块化炮塔","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemCellAmmoniumBifluoride":{"0":{"oreDict":["cellAmmoniumBifluoride"],"name":"氟化氢铵单元","tr":"氟化氢铵单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallKoboldite":{"0":{"oreDict":["dustSmallKoboldite"],"name":"小堆妖金粉","tr":"小堆妖金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinWitchI":{"0":{"name":"Coin \"Spirit 10\"","tr":"巫师币$10","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustProtactinium233":{"0":{"oreDict":["dustProtactinium233"],"name":"Protactinium-233 Dust","tr":"镤-233粉","tab":"GT++杂项","type":"Item","maxStackSize":1,"maxDurability":1000000000}},"gregtech:gt.Double_MNqCell":{"0":{"name":"二联燃料棒(Nq*-热量与发电同MOX)","tr":"二联燃料棒(Nq*-热量与发电同MOX)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"BiblioCraft:item.StockroomCatalog":{"0":{"name":"Stockroom Catalog","tr":"仓库目录","tab":"BiblioCraft","type":"Item","maxStackSize":1,"maxDurability":1}},"ForbiddenMagic:BlinkFocus":{"0":{"name":"Wand Focus: Blink","tr":"法杖核心:闪烁","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"BloodArsenal:blood_infused_sword_wood":{"0":{"name":"Blood Infused Wooden Sword","tr":"注血木剑","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:heartybreakfastItem":{"0":{"oreDict":["foodHeartyBreakfast"],"name":"Hearty Breakfast","tr":"爱心早餐","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RedstoneAlloyBars":{"0":{"oreDict":["barsRedstoneAlloy"],"name":"Redstone Alloy Bars","tr":"红石合金栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:tile.walkwayOxygenPipe":{"0":{"name":"Walkway","tr":"通道","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:clip":{"0":{"name":"Lens Clip","tr":"透镜夹","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:fluid.molten.lead":{"0":{"name":"Molten Lead","tr":"熔融铅","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:door_factory":{"0":{"name":"Door Factory","tr":"制门工厂","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"BuildCraft|Core:debugger":{"0":{"name":"Debugger","tr":"调试器","tab":"建筑","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:pamcheeseCake":{"0":{"name":"Cheese Cake","tr":"芝士蛋糕","tab":"潘马斯农场|食物","type":"Block","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:wireless.essentia.terminal":{"0":{"name":"Wireless Essentia Terminal","tr":"无线源质终端","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":33}},"Railcraft:post.metal.platform":{"0":{"name":"Black Metal Platform","tr":"黑色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Red Metal Platform","tr":"红色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Green Metal Platform","tr":"绿色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Brown Metal Platform","tr":"棕色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Blue Metal Platform","tr":"蓝色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Purple Metal Platform","tr":"紫色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Cyan Metal Platform","tr":"青色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Light Gray Metal Platform","tr":"淡灰色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Gray Metal Platform","tr":"灰色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Metal Platform","tr":"粉色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Lime Metal Platform","tr":"黄绿色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Yellow Metal Platform","tr":"黄色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Light Blue Metal Platform","tr":"淡蓝色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Magenta Metal Platform","tr":"品红色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Orange Metal Platform","tr":"橙色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"White Metal Platform","tr":"白色金属平台","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:terraformRod":{"0":{"name":"Rod of the Terra Firma","tr":"大地权杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.ShapeBoat":{"0":{"name":"Casting Form (Boat Shape)","tr":"铸形(船)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CallistoStoneDust":{"0":{"oreDict":["dustSpace"," dustCallistoStone"," dustCallisto"],"name":"Callisto Stone Dust","tr":"木卫四尘","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:oldDiamond":{"0":{"oreDict":["blockDiamond"],"name":"Ancient Diamond Block","tr":"远古钻石块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"malisisdoors:item.curtain_purple":{"0":{"name":"Purple Curtain","tr":"紫色幕布","tab":"更多门","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:superLavaPendant":{"0":{"name":"Crimson Pendant","tr":"绯红项链","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"witchery:hunterlegs":{"0":{"name":"Witch Hunter Trousers","tr":"狩巫裤","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":226}},"gendustry:PowerModule":{"0":{"name":"Power Module","tr":"能量模块","tab":"基因工业","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:trapdoor.redwood":{"0":{"oreDict":["trapdoorWood"],"name":"Redwood Trapdoor","tr":"红木树活板门","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT0b":{"0":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Painting Frame","tr":"李子树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Painting Frame","tr":"杨树木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Painting Frame","tr":"红杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Painting Frame","tr":"柚木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Painting Frame","tr":"核桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Painting Frame","tr":"崖豆树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:meatfeastpizzaItem":{"0":{"oreDict":["foodMeatfeastpizza"],"name":"Meat Feast Pizza","tr":"肉宴披萨","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.moonBricksStairs":{"0":{"name":"Moon Dungeon Brick Stairs","tr":"月球地牢砖块楼梯","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"battlegear2:quiver":{"0":{"name":"Quiver","tr":"箭袋","tab":"挖矿与砍杀|战备双持2","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:cart.track.remover":{"0":{"name":"Track Remover Cart","tr":"轨道拆除车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"Forestry:foresterBagT2":{"0":{"name":"Forester\u0027s Woven Backpack","tr":"林业员编织背包","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:barleyBag":{"0":{"name":"Barley Seed Bag","tr":"大麦种子袋","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"SGCraft:sgCoreCrystal":{"0":{"name":"Stargate Core Crystal","tr":"星门核心水晶","tab":"星际之门","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedKashinite":{"0":{"oreDict":["crushedCentrifugedKashinite"],"name":"Centrifuged Crushed Kashinite Ore","tr":"离心硫铑铱矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyZirconolite":{"0":{"oreDict":["dustTinyZirconolite"],"name":"小撮钛锆酸钙粉","tr":"小撮钛锆酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2NuclearControl:KitAppeng":{"0":{"name":"Applied Energistics Monitor Kit","tr":"应用能源显示器工具","tab":"核电控制2","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemRodIncoloyMA956":{"0":{"oreDict":["stickIncoloyMA956"],"name":"耐热铬铁合金-MA956杆","tr":"耐热铬铁合金-MA956杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"EnderIO:blockElectricLight":{"0":{"name":"Powered Light","tr":"电灯","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Powered Light (Inverted)","tr":"电灯(反相)","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Light","tr":"灯","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Light (Inverted)","tr":"灯(反相)","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Wireless Powered Light","tr":"无线灯","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Wireless Powered Light (Inverted)","tr":"无线灯(反相)","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedFrozenCombs":{"0":{"name":"Crated Frozen Comb","tr":"装箱的冻结蜂窝","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"BiblioWoodsForestry:BiblioWoodPaintingT1b":{"0":{"name":"Pine Painting Frame","tr":"松树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Plum Painting Frame","tr":"李子树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Poplar Painting Frame","tr":"杨树木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Sequoia Painting Frame","tr":"红杉画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Teak Painting Frame","tr":"柚木画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Walnut Painting Frame","tr":"核桃树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Wenge Painting Frame","tr":"崖豆树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Willow Painting Frame","tr":"柳树画框","tab":"收藏馆:林业","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:ichorPickGem":{"0":{"name":"Awakened Ichorium Pickaxe","tr":"觉醒灵宝镐","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":0}},"miscutils:itemRodNiobiumCarbide":{"0":{"oreDict":["stickNiobiumCarbide"],"name":"碳化铌杆","tr":"碳化铌杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BloodArsenal:blood_infused_shovel_diamond":{"0":{"name":"Blood Infused Diamond Shovel","tr":"注血钻石铲","tab":"血之兵工厂","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:cratedStone":{"0":{"name":"Crated Stone","tr":"装箱的石头","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:pixieRing":{"0":{"name":"Great Fairy Ring","tr":"精灵指环","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"HardcoreEnderExpansion:laboratory_stairs":{"0":{"name":"Laboratory Stairs","tr":"实验楼梯","tab":"Hardcore Ender Expansion","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngineeringProcessorFluidEmeraldCore":{"0":{"name":"Fluid Processor Tier II","tr":"流体处理器 II","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Factory:floodGateBlock":{"0":{"name":"Flood Gate","tr":"液闸","tab":"建筑","type":"Block","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFWoodSlab":{"0":{"name":"Twilight Oak Slab","tr":"暮色橡树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Canopy Tree Slab","tr":"苍穹树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Mangrove Slab","tr":"红树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Darkwood Slab","tr":"黑暗树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Timewood Slab","tr":"时光树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Transwood Slab","tr":"变化树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Minewood Slab","tr":"矿工树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Sortingwood Slab","tr":"分类树台阶","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:broadAxeHead":{"0":{"name":"Wooden Broad Axe Head","tr":"木宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Stone Broad Axe Head","tr":"石宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Broad Axe Head","tr":"铁宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Flint Broad Axe Head","tr":"燧石宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Cactus Broad Axe Head","tr":"仙人掌宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Bone Broad Axe Head","tr":"骨头宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Obsidian Broad Axe Head","tr":"黑曜石宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Netherrack Broad Axe Head","tr":"地狱岩宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Slime Broad Axe Head","tr":"史莱姆宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Paper Broad Axe Head","tr":"纸宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Cobalt Broad Axe Head","tr":"钴宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Ardite Broad Axe Head","tr":"阿迪特宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Manyullyn Broad Axe Head","tr":"玛玉灵宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Copper Broad Axe Head","tr":"铜宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Bronze Broad Axe Head","tr":"青铜宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Alumite Broad Axe Head","tr":"耐酸铝宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Steel Broad Axe Head","tr":"钢宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"name":"Slime Broad Axe Head","tr":"史莱姆宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"name":"Pig Iron Broad Axe Head","tr":"生铁宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1},"314":{"name":"Unstable Induced Broad Axe Head","tr":"不稳定感应宽斧刃","tab":"匠魂|部件","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MedalGTExplosion":{"0":{"name":"Medal - Official GT Player","tr":"官方GT玩家勋章","tab":"GTNH: 物品","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustFermium":{"0":{"oreDict":["dustFermium"],"name":"镄粉","tr":"镄粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:bucketBiomass":{"0":{"name":"Biomass Bucket","tr":"生物质桶","tab":"林业","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustSmallLithiumCarbonate":{"0":{"oreDict":["dustSmallLithiumCarbonate"],"name":"小堆碳酸锂粉","tr":"小堆碳酸锂粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_Concrete_bucket":{"0":{"name":"Bucket of Concrete","tr":"桶装混凝土","tab":"GTNH: 流体","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:FrothZincflotation":{"0":{"oreDict":["cellSphaleriteFroth"],"name":"闪锌泡沫单元","tr":"闪锌泡沫单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockMirrorAlt":{"0":{"name":"Melding Mirror","tr":"聚合魔镜","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"TConstruct:travelBelt":{"0":{"name":"Traveller\u0027s Belt","tr":"旅行者腰带","tab":"匠魂|装备","type":"Item","maxStackSize":1,"maxDurability":1}},"Automagy:blockGolemWorkbench":{"0":{"name":"Golem\u0027s Workbench","tr":"傀儡工作台","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:dreamcraft_Concrete":{"0":{"name":"Concrete","tr":"混凝土","tab":"GTNH: 流体","type":"Block","maxStackSize":64,"maxDurability":1}},"ae2fc:multi_fluid_storage64":{"0":{"name":"§b64k§r ME Multi-Fluid Storage Cell","tr":"§b64k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemDustIndalloy140":{"0":{"oreDict":["dustIndalloy140"],"name":"铋铅合金140粉","tr":"铋铅合金140粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorMaragingSteel350":{"0":{"oreDict":["rotorMaragingSteel350"],"name":"马氏体时效钢350转子","tr":"马氏体时效钢350转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:NuclearWaste":{"0":{"oreDict":["cellNuclearWaste"],"name":"核废水单元","tr":"核废水单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingZeron100":{"0":{"oreDict":["ringZeron100"],"name":"塞龙-100环","tr":"塞龙-100环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:hoeMud":{"0":{"name":"Muddy Hoe","tr":"泥巴锄","tab":"超多生态群系","type":"Item","maxStackSize":1,"maxDurability":33}},"harvestcraft:pamtealeafCrop":{"0":{"name":"Tea Leaf Crop","tr":"茶叶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockJar":{"0":{"name":"Warded Jar","tr":"源质罐子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Brain in a Jar","tr":"缸中之脑","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Void Jar","tr":"虚空罐子","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockSkyCompass":{"0":{"name":"Meteorite Compass","tr":"陨石罗盘","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongWatertightSteel":{"0":{"oreDict":["stickLongWatertightSteel"],"name":"长防水钢杆","tr":"长防水钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:fullCustom2":{"0":{"name":"Framed Drawers 1x2","tr":"自定义抽屉(1x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:cornItem":{"0":{"oreDict":["cropCorn"," listAllveggie"],"name":"Corn","tr":"玉米","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:fullCustom1":{"0":{"name":"Framed Drawer","tr":"自定义抽屉","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"StorageDrawers:fullCustom4":{"0":{"name":"Framed Drawers 2x2","tr":"自定义抽屉(2x2)","tab":"储物抽屉","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:dreamwood1Slab":{"0":{"name":"Dreamwood Plank Slab","tr":"梦之木台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:web":{"0":{"name":"Web","tr":"密网","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IronChest:ironSteelUpgrade":{"0":{"name":"Iron to Steel Chest Upgrade","tr":"Iron to Steel Chest Upgrade","tab":"杂项","type":"Item","maxStackSize":1,"maxDurability":1}},"Thaumcraft:blockMagicalLog":{"0":{"oreDict":["logWood"],"name":"Greatwood Log","tr":"宏伟之木原木","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["logWood"],"name":"Silverwood Log","tr":"银树原木","tab":"神秘时代4","type":"Block","maxStackSize":64,"maxDurability":1}},"GoodGenerator:moderatelyCrackedLightNaquadahFuel":{"0":{"name":"Moderately Cracked Light Naquadah Fuel","tr":"中度裂化轻质硅岩燃料","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallCalciumCarbonate":{"0":{"oreDict":["dustSmallCalciumCarbonate"],"name":"小堆碳酸钙粉","tr":"小堆碳酸钙粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRingBotmium":{"0":{"oreDict":["ringBotmium"],"name":"博特姆合金环","tr":"博特姆合金环","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Genetics:serumArray":{"0":{"name":"Botanist Serum Array","tr":"园丁 血清阵列","tab":"基因","type":"Item","maxStackSize":1,"maxDurability":17}},"miscutils:itemRotorChromaticGlass":{"0":{"oreDict":["rotorChromaticGlass"],"name":"彩色玻璃转子","tr":"彩色玻璃转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"bartworks:gt.bwMetaGenerateddustSmall":{"1":{"oreDict":["dustSmallBismutite"],"name":"小堆泡铋粉","tr":"小堆泡铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustSmallBismuthinite"],"name":"小堆辉铋粉","tr":"小堆辉铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["dustSmallZirconium"],"name":"小堆锆粉","tr":"小堆锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["dustSmallCubicZirconia"],"name":"小堆立方氧化锆粉","tr":"小堆立方氧化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dustSmallFluor-Buergerite"],"name":"小堆氟铁电气石粉","tr":"小堆氟铁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["dustSmallYttriumOxide"],"name":"小堆氧化钇粉","tr":"小堆氧化钇粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustSmallChromo-Alumino-Povondraite"],"name":"小堆铬铝电气石粉","tr":"小堆铬铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustSmallVanadio-Oxy-Dravite"],"name":"小堆钒镁电气石粉","tr":"小堆钒镁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dustSmallOlenite"],"name":"小堆铝电气石粉","tr":"小堆铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustSmallArsenopyrite"],"name":"小堆砷黄铁粉","tr":"小堆砷黄铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustSmallFerberite"],"name":"小堆钨铁粉","tr":"小堆钨铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustSmallLoellingite"],"name":"小堆斜方砷铁粉","tr":"小堆斜方砷铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dustSmallRoquesite"],"name":"小堆硫铟铜粉","tr":"小堆硫铟铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["dustSmallBornite"],"name":"小堆斑铜粉","tr":"小堆斑铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["dustSmallWittichenite"],"name":"小堆硫铋铜粉","tr":"小堆硫铋铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["dustSmallDjurleite"],"name":"小堆久辉铜粉","tr":"小堆久辉铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["dustSmallHuebnerite"],"name":"小堆钨酸锰粉","tr":"小堆钨酸锰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["dustSmallThorianite"],"name":"小堆方钍石粉","tr":"小堆方钍石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["dustSmallRedZircon"],"name":"小堆红锆石粉","tr":"小堆红锆石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["dustSmallFayalite"],"name":"小堆铁橄榄石粉","tr":"小堆铁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["dustSmallForsterite"],"name":"小堆镁橄榄石粉","tr":"小堆镁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["dustSmallHedenbergite"],"name":"小堆钙铁辉石粉","tr":"小堆钙铁辉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["dustSmallRedDescloizite"],"name":"小堆红钒铅锌粉","tr":"小堆红钒铅锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["dustSmallOrangeDescloizite"],"name":"小堆橙钒铅铜粉","tr":"小堆橙钒铅铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["dustSmallGreenFuchsite"],"name":"小堆绿铬云母粉","tr":"小堆绿铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["dustSmallRedFuchsite"],"name":"小堆红铬云母粉","tr":"小堆红铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"30":{"oreDict":["dustSmallThorium232"],"name":"小堆钍-232粉","tr":"小堆钍-232粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"31":{"oreDict":["dustSmallBismuthTellurite"],"name":"小堆碲化铋粉","tr":"小堆碲化铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"33":{"oreDict":["dustSmallDibismuthhydroborat"],"name":"小堆硼氢二铋粉","tr":"小堆硼氢二铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"20001":{"oreDict":["dustSmallHolmiumGarnet"],"name":"小堆Holmium Garnet粉","tr":"小堆Holmium Garnet粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"34":{"oreDict":["dustSmallCircuitCompoundMK3"],"name":"小堆电路化合物MK3粉","tr":"小堆电路化合物MK3粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["dustSmallPrasiolite"],"name":"小堆堇云石粉","tr":"小堆堇云石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"36":{"oreDict":["dustSmallMagnetoResonatic"],"name":"小堆磁共振石粉","tr":"小堆磁共振石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"39":{"oreDict":["dustSmallCalifornium"],"name":"小堆锎粉","tr":"小堆锎粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11303":{"oreDict":["dustSmallTellurium-Molybdenum-OxideCatalyst"],"name":"小堆钼碲氧化物催化剂粉","tr":"小堆钼碲氧化物催化剂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11304":{"oreDict":["dustSmallTellurium(IV)Oxide"],"name":"小堆氧化碲(IV)粉","tr":"小堆氧化碲(IV)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11305":{"oreDict":["dustSmallMolybdenum(IV)Oxide"],"name":"小堆氧化钼(IV)粉","tr":"小堆氧化钼(IV)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11306":{"oreDict":["dustSmallPolytetrahydrofuran"],"name":"小堆聚四氢呋喃粉","tr":"小堆聚四氢呋喃粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["dustSmallBArTiMaEuSNeK"],"name":"小堆BArTiMaEuSNeK粉","tr":"小堆BArTiMaEuSNeK粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"45":{"oreDict":["dustSmallPlatinumSalt"],"name":"小堆铂盐粉","tr":"小堆铂盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"46":{"oreDict":["dustSmallRefinedPlatinumSalt"],"name":"小堆精炼铂盐粉","tr":"小堆精炼铂盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["dustSmallPlatinumMetallicPowder"],"name":"小堆铂金属粉","tr":"小堆铂金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["dustSmallPTMEGElastomer"],"name":"小堆PTMEG橡胶粉","tr":"小堆PTMEG橡胶粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"49":{"oreDict":["dustSmallPlatinumResidue"],"name":"小堆铂渣粉","tr":"小堆铂渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11314":{"oreDict":["dustSmallPotassiumChlorate"],"name":"小堆氯酸钾粉","tr":"小堆氯酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"51":{"oreDict":["dustSmallReprecipitatedPlatinum"],"name":"小堆再沉淀铂粉","tr":"小堆再沉淀铂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["dustSmallPalladiumMetallicPowder"],"name":"小堆钯金属粉","tr":"小堆钯金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"54":{"oreDict":["dustSmallReprecipitatedPalladium"],"name":"小堆再沉淀钯粉","tr":"小堆再沉淀钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"55":{"oreDict":["dustSmallPalladiumSalt"],"name":"小堆钯盐粉","tr":"小堆钯盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"57":{"oreDict":["dustSmallSodiumSulfate"],"name":"小堆硫酸钠粉","tr":"小堆硫酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"59":{"oreDict":["dustSmallPotassiumDisulfate"],"name":"小堆焦硫酸钾粉","tr":"小堆焦硫酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["dustSmallLeachResidue"],"name":"小堆浸出渣粉","tr":"小堆浸出渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"63":{"oreDict":["dustSmallCalciumChloride"],"name":"小堆氯化钙粉","tr":"小堆氯化钙粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"64":{"oreDict":["dustSmallRuthenium"],"name":"小堆钌粉","tr":"小堆钌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"65":{"oreDict":["dustSmallSodiumRuthenate"],"name":"小堆钌酸钠粉","tr":"小堆钌酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"66":{"oreDict":["dustSmallRutheniumTetroxide"],"name":"小堆四氧化钌粉","tr":"小堆四氧化钌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["dustSmallRarestMetalResidue"],"name":"小堆稀有金属渣粉","tr":"小堆稀有金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["dustSmallIridiumMetalResidue"],"name":"小堆铱金属渣粉","tr":"小堆铱金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"71":{"oreDict":["dustSmallSludgeDustResidue"],"name":"小堆泥渣粉","tr":"小堆泥渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"73":{"oreDict":["dustSmallIridiumDioxide"],"name":"小堆二氧化铱粉","tr":"小堆二氧化铱粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"76":{"oreDict":["dustSmallIridiumChloride"],"name":"小堆氯化铱粉","tr":"小堆氯化铱粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"77":{"oreDict":["dustSmallMetallicSludgeDustResidue"],"name":"小堆金属泥渣粉","tr":"小堆金属泥渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"78":{"oreDict":["dustSmallRhodium"],"name":"小堆铑粉","tr":"小堆铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["dustSmallCrudeRhodiumMetal"],"name":"小堆粗制铑金属粉","tr":"小堆粗制铑金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"80":{"oreDict":["dustSmallRhodiumSalt"],"name":"小堆铑盐粉","tr":"小堆铑盐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"82":{"oreDict":["dustSmallSodiumNitrate"],"name":"小堆硝酸钠粉","tr":"小堆硝酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"83":{"oreDict":["dustSmallRhodiumNitrate"],"name":"小堆硝酸铑粉","tr":"小堆硝酸铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"84":{"oreDict":["dustSmallZincSulfate"],"name":"小堆硫酸锌粉","tr":"小堆硫酸锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"85":{"oreDict":["dustSmallRhodiumFilterCake"],"name":"小堆铑滤饼粉","tr":"小堆铑滤饼粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"87":{"oreDict":["dustSmallReprecipitatedRhodium"],"name":"小堆再沉淀铑粉","tr":"小堆再沉淀铑粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"88":{"oreDict":["dustSmallRhodium-PlatedPalladium"],"name":"小堆镀铑钯粉","tr":"小堆镀铑钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["dustSmallTiberium"],"name":"小堆泰伯利亚粉","tr":"小堆泰伯利亚粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"90":{"oreDict":["dustSmallRuridit"],"name":"小堆钌铱合金粉","tr":"小堆钌铱合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["dustSmallFluorspar"],"name":"小堆氟石粉","tr":"小堆氟石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"92":{"oreDict":["dustSmallHighDurabilityCompoundSteel"],"name":"小堆高耐久性复合钢粉","tr":"小堆高耐久性复合钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["dustSmallAtheneite"],"name":"小堆砷汞钯粉","tr":"小堆砷汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["dustSmallTemagamite"],"name":"小堆碲汞钯粉","tr":"小堆碲汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["dustSmallTerlinguaite"],"name":"小堆黄氯汞粉","tr":"小堆黄氯汞粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"96":{"oreDict":["dustSmallAdemicSteel"],"name":"小堆硬钢粉","tr":"小堆硬钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"97":{"oreDict":["dustSmallRawAdemicSteel"],"name":"小堆粗制硬钢粉","tr":"小堆粗制硬钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"99":{"oreDict":["dustSmallPotassiumfluorosilicate"],"name":"小堆氟硅酸钾粉","tr":"小堆氟硅酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"101":{"oreDict":["dustSmallPotassiumCarbonate"],"name":"小堆碳酸钾粉","tr":"小堆碳酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"102":{"oreDict":["dustSmallRawFluorophlogopite"],"name":"小堆粗制氟金云母粉","tr":"小堆粗制氟金云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"104":{"oreDict":["dustSmallFluorophlogopite"],"name":"小堆氟金云母粉","tr":"小堆氟金云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11446":{"oreDict":["dustSmallLanthanumOreConcentrate"],"name":"小堆镧精粉","tr":"小堆镧精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11447":{"oreDict":["dustSmallPraseodymiumOreConcentrate"],"name":"小堆镨精粉","tr":"小堆镨精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11449":{"oreDict":["dustSmallNeodymiumOreConcentrate"],"name":"小堆钕精粉","tr":"小堆钕精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11450":{"oreDict":["dustSmallPromethiumOreConcentrate"],"name":"小堆钷精粉","tr":"小堆钷精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11451":{"oreDict":["dustSmallEuropiumOreConcentrate"],"name":"小堆铕精粉","tr":"小堆铕精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11452":{"oreDict":["dustSmallGadoliniumOreConcentrate"],"name":"小堆钆精粉","tr":"小堆钆精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11453":{"oreDict":["dustSmallTerbiumOreConcentrate"],"name":"小堆铽精粉","tr":"小堆铽精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11454":{"oreDict":["dustSmallDysprosiumOreConcentrate"],"name":"小堆镝精粉","tr":"小堆镝精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11455":{"oreDict":["dustSmallHolmiumOreConcentrate"],"name":"小堆钬精粉","tr":"小堆钬精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11456":{"oreDict":["dustSmallErbiumOreConcentrate"],"name":"小堆铒精粉","tr":"小堆铒精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11457":{"oreDict":["dustSmallThuliumOreConcentrate"],"name":"小堆铥精粉","tr":"小堆铥精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11458":{"oreDict":["dustSmallYtterbiumOreConcentrate"],"name":"小堆镱精粉","tr":"小堆镱精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11459":{"oreDict":["dustSmallLutetiumOreConcentrate"],"name":"小堆镥精粉","tr":"小堆镥精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11464":{"oreDict":["dustSmallSamarium(III)Oxalate"],"name":"小堆含杂草酸钐粉","tr":"小堆含杂草酸钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11465":{"oreDict":["dustSmallSamarium(III)-Chloride"],"name":"小堆含杂氯化钐粉","tr":"小堆含杂氯化钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11466":{"oreDict":["dustSmallSamariumChloride-SodiumChlorideBlend"],"name":"小堆氯化钐-氯化钠混合物粉","tr":"小堆氯化钐-氯化钠混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11467":{"oreDict":["dustSmallImpureLanthanumChloride"],"name":"小堆含杂氯化镧粉","tr":"小堆含杂氯化镧粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11468":{"oreDict":["dustSmallSamariumOxide"],"name":"小堆氧化钐粉","tr":"小堆氧化钐粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29900":{"oreDict":["dustSmallTungsticAcid"],"name":"小堆钨酸粉","tr":"小堆钨酸粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29901":{"oreDict":["dustSmallTungstenTrioxide"],"name":"小堆三氧化钨粉","tr":"小堆三氧化钨粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29903":{"oreDict":["dustSmallAmmoniumNitrate"],"name":"小堆硝酸铵粉","tr":"小堆硝酸铵粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11472":{"oreDict":["dustSmallRarestEarthResidue"],"name":"小堆罕见稀土渣粉","tr":"小堆罕见稀土渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11498":{"oreDict":["dustSmallCerium-dopedLutetiumAluminiumOxygenBlend"],"name":"小堆掺铈镥铝氧混合物粉","tr":"小堆掺铈镥铝氧混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11501":{"oreDict":["dustSmallHafniumCarbide"],"name":"小堆碳化铪粉","tr":"小堆碳化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11502":{"oreDict":["dustSmallTantalumCarbide/HafniumCarbideMixture"],"name":"小堆碳化钽-碳化铪混合物粉","tr":"小堆碳化钽-碳化铪混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11503":{"oreDict":["dustSmallTantalumHafniumCarbide"],"name":"小堆碳化钽铪粉","tr":"小堆碳化钽铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11000":{"oreDict":["dustSmallHafnium"],"name":"小堆铪粉","tr":"小堆铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11001":{"oreDict":["dustSmallLow-PurityHafnium"],"name":"小堆低纯铪粉","tr":"小堆低纯铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11002":{"oreDict":["dustSmallHafnia"],"name":"小堆氧化铪粉","tr":"小堆氧化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11003":{"oreDict":["dustSmallHafniumTetrachloride"],"name":"小堆四氯化铪粉","tr":"小堆四氯化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11005":{"oreDict":["dustSmallHafniumIodide"],"name":"小堆碘化铪粉","tr":"小堆碘化铪粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11006":{"oreDict":["dustSmallHafniumRunoff"],"name":"小堆铪废料粉","tr":"小堆铪废料粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11007":{"oreDict":["dustSmallZirconium"],"name":"小堆锆粉","tr":"小堆锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11008":{"oreDict":["dustSmallZirconia"],"name":"小堆氧化锆粉","tr":"小堆氧化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11009":{"oreDict":["dustSmallZirconiumTetrachloride"],"name":"小堆四氯化锆粉","tr":"小堆四氯化锆粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11011":{"oreDict":["dustSmallHafnia-ZirconiaBlend"],"name":"小堆氧化铪-氧化锆混合物粉","tr":"小堆氧化铪-氧化锆混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11012":{"oreDict":["dustSmallIodine"],"name":"小堆碘粉","tr":"小堆碘粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11019":{"oreDict":["dustSmallMonaziteSulfate"],"name":"小堆硫酸独居石粉","tr":"小堆硫酸独居石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11020":{"oreDict":["dustSmallAcidicMonazitePowder"],"name":"小堆酸性独居石粉","tr":"小堆酸性独居石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11021":{"oreDict":["dustSmallMonaziteRareEarthFiltrate"],"name":"小堆独居石稀土滤渣粉","tr":"小堆独居石稀土滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11022":{"oreDict":["dustSmallNeutralizedMonaziteRareEarthFiltrate"],"name":"小堆中和独居石稀土滤渣粉","tr":"小堆中和独居石稀土滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11023":{"oreDict":["dustSmallMonaziteRareEarthHydroxideConcentrate"],"name":"小堆浓缩独居石稀土氢氧化物粉","tr":"小堆浓缩独居石稀土氢氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11024":{"oreDict":["dustSmallDriedMonaziteRareEarthConcentrate"],"name":"小堆干燥浓缩硝酸独居石稀土粉","tr":"小堆干燥浓缩硝酸独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10001":{"oreDict":["dustSmallGraphite-UraniumMixture"],"name":"小堆石墨-铀混合物粉","tr":"小堆石墨-铀混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11025":{"oreDict":["dustSmallCeriumDioxide"],"name":"小堆二氧化铈粉","tr":"小堆二氧化铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11026":{"oreDict":["dustSmallCeriumChloride"],"name":"小堆氯化铈粉","tr":"小堆氯化铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11027":{"oreDict":["dustSmallCeriumOxalate"],"name":"小堆草酸铈粉","tr":"小堆草酸铈粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11028":{"oreDict":["dustSmallCerium(III)Oxide"],"name":"小堆氧化铈(III)粉","tr":"小堆氧化铈(III)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10005":{"oreDict":["dustSmallUraniumCarbide-ThoriumMixture"],"name":"小堆碳化铀-钍混合物粉","tr":"小堆碳化铀-钍混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11029":{"oreDict":["dustSmallCerium-RichMixture"],"name":"小堆富铈混合物粉","tr":"小堆富铈混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11030":{"oreDict":["dustSmallCooledMonaziteRareEarthConcentrate"],"name":"小堆冷却浓缩硝酸独居石稀土粉","tr":"小堆冷却浓缩硝酸独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11031":{"oreDict":["dustSmallMonaziteRarerEarthSediment"],"name":"小堆独居石罕土沉淀粉","tr":"小堆独居石罕土沉淀粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11032":{"oreDict":["dustSmallHeterogenousHalogenicMonaziteRareEarthMixture"],"name":"小堆异质卤化独居石稀土混合物粉","tr":"小堆异质卤化独居石稀土混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10009":{"oreDict":["dustSmallPlutoniumOxide-UraniumMixture"],"name":"小堆氧化钚-铀混合物粉","tr":"小堆氧化钚-铀混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11033":{"oreDict":["dustSmallSaturatedMonaziteRareEarth"],"name":"小堆饱和独居石稀土粉","tr":"小堆饱和独居石稀土粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11034":{"oreDict":["dustSmallSamaricResidue"],"name":"小堆钐沉淀粉","tr":"小堆钐沉淀粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11037":{"oreDict":["dustSmallThorium-PhosphateCake"],"name":"小堆磷酸钍滤饼粉","tr":"小堆磷酸钍滤饼粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10014":{"oreDict":["dustSmallVanadiumPentoxide"],"name":"小堆五氧化二钒粉","tr":"小堆五氧化二钒粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11038":{"oreDict":["dustSmallThorium-PhosphateConcentrate"],"name":"小堆磷酸钍精粉","tr":"小堆磷酸钍精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11039":{"oreDict":["dustSmallUraniumFiltrate"],"name":"小堆铀滤渣粉","tr":"小堆铀滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10016":{"oreDict":["dustSmallThoriumOxalate"],"name":"小堆草酸钍粉","tr":"小堆草酸钍粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11040":{"oreDict":["dustSmallNeutralizedUraniumFiltrate"],"name":"小堆中和铀滤渣粉","tr":"小堆中和铀滤渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10017":{"oreDict":["dustSmallThoriumHydroxide"],"name":"小堆氢氧化钍粉","tr":"小堆氢氧化钍粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11041":{"oreDict":["dustSmallSeaweedAsh"],"name":"小堆海藻灰粉","tr":"小堆海藻灰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10018":{"oreDict":["dustSmallSodiumOxalate"],"name":"小堆草酸钠粉","tr":"小堆草酸钠粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11043":{"oreDict":["dustSmallPotassiumPermanganate"],"name":"小堆高锰酸钾粉","tr":"小堆高锰酸钾粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10022":{"oreDict":["dustSmallAtomicSeparationCatalyst"],"name":"小堆原子分离催化剂粉","tr":"小堆原子分离催化剂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["dustSmallOrundum"],"name":"小堆合成玉粉","tr":"小堆合成玉粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11047":{"oreDict":["dustSmallEuropiumOxide"],"name":"小堆氧化铕粉","tr":"小堆氧化铕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10024":{"oreDict":["dustSmallExtremelyUnstableNaquadah"],"name":"小堆极不稳定硅岩粉","tr":"小堆极不稳定硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11048":{"oreDict":["dustSmallEuropiumSulfide"],"name":"小堆硫化铕粉","tr":"小堆硫化铕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11049":{"oreDict":["dustSmallUnknownBlend"],"name":"小堆未知混合物粉","tr":"小堆未知混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11050":{"oreDict":["dustSmallEuropiumIIIOxide"],"name":"小堆氧化铕(III)粉","tr":"小堆氧化铕(III)粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10035":{"oreDict":["dustSmallRadioactiveSludge"],"name":"小堆放射性污泥粉","tr":"小堆放射性污泥粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10052":{"oreDict":["dustSmallZincChloride"],"name":"小堆氯化锌粉","tr":"小堆氯化锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10053":{"oreDict":["dustSmallZn-ThAlloy"],"name":"小堆锌钍合金粉","tr":"小堆锌钍合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["dustSmallNaquadahOxideMixture"],"name":"小堆氧化硅岩混合物粉","tr":"小堆氧化硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10055":{"oreDict":["dustSmallTitaniumTrifluoride"],"name":"小堆三氟化钛粉","tr":"小堆三氟化钛粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10057":{"oreDict":["dustSmallGalliumHydroxide"],"name":"小堆氢氧化镓粉","tr":"小堆氢氧化镓粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10063":{"oreDict":["dustSmallNaquadahine"],"name":"小堆氧化硅岩粉","tr":"小堆氧化硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10066":{"oreDict":["dustSmallAdamantine"],"name":"小堆氧化精金粉","tr":"小堆氧化精金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["dustSmallEnriched-NaquadahOxideMixture"],"name":"小堆氧化富集硅岩混合物粉","tr":"小堆氧化富集硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10068":{"oreDict":["dustSmallTriniumSulphate"],"name":"小堆硫酸三元粉","tr":"小堆硫酸三元粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10070":{"oreDict":["dustSmallConcentratedEnriched-NaquadahSludge"],"name":"小堆浓缩富集硅岩矿泥粉","tr":"小堆浓缩富集硅岩矿泥粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10071":{"oreDict":["dustSmallEnriched-NaquadahSulphate"],"name":"小堆硫酸富集硅岩粉","tr":"小堆硫酸富集硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["dustSmallNaquadriaOxideMixture"],"name":"小堆氧化超能硅岩混合物粉","tr":"小堆氧化超能硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10073":{"oreDict":["dustSmallIndiumPhosphate"],"name":"小堆磷酸铟粉","tr":"小堆磷酸铟粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10074":{"oreDict":["dustSmallLowQualityNaquadriaPhosphate"],"name":"小堆低纯磷酸超能硅岩粉","tr":"小堆低纯磷酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10076":{"oreDict":["dustSmallLowQualityNaquadriaSulphate"],"name":"小堆低纯硫酸超能硅岩粉","tr":"小堆低纯硫酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10078":{"oreDict":["dustSmallNaquadriaSulphate"],"name":"小堆硫酸超能硅岩粉","tr":"小堆硫酸超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10082":{"oreDict":["dustSmallZircaloy-4"],"name":"小堆锆锡合金-4粉","tr":"小堆锆锡合金-4粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10083":{"oreDict":["dustSmallZircaloy-2"],"name":"小堆锆锡合金-2粉","tr":"小堆锆锡合金-2粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11107":{"oreDict":["dustSmallBastnasiteRareEarthOxides"],"name":"小堆氟碳镧铈稀土氧化物粉","tr":"小堆氟碳镧铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10084":{"oreDict":["dustSmallIncoloy-903"],"name":"小堆耐热铬铁合金-903粉","tr":"小堆耐热铬铁合金-903粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11108":{"oreDict":["dustSmallAcid-LeachedBastnasiteRareEarthOxides"],"name":"小堆酸浸氟碳镧铈稀土氧化物粉","tr":"小堆酸浸氟碳镧铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10085":{"oreDict":["dustSmallAdamantiumAlloy"],"name":"小堆精金合金粉","tr":"小堆精金合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11109":{"oreDict":["dustSmallGangue"],"name":"小堆脉石粉","tr":"小堆脉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11110":{"oreDict":["dustSmallRoastedRareEarthOxides"],"name":"小堆焙烧稀土氧化物粉","tr":"小堆焙烧稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11111":{"oreDict":["dustSmallWetRareEarthOxides"],"name":"小堆湿稀土氧化物粉","tr":"小堆湿稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11112":{"oreDict":["dustSmallCerium-OxidisedRareEarthOxides"],"name":"小堆氧化铈稀土氧化物粉","tr":"小堆氧化铈稀土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11113":{"oreDict":["dustSmallBastnasiteRarerEarthOxides"],"name":"小堆氟碳镧铈罕土氧化物粉","tr":"小堆氟碳镧铈罕土氧化物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11116":{"oreDict":["dustSmallSamaricRareEarthConcentrate"],"name":"小堆钐稀土精粉","tr":"小堆钐稀土精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10093":{"oreDict":["dustSmallFerrocene"],"name":"小堆二茂铁粉","tr":"小堆二茂铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11117":{"oreDict":["dustSmallNeodymiumRareEarthConcentrate"],"name":"小堆钕稀土精粉","tr":"小堆钕稀土精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10096":{"oreDict":["dustSmallMAR-M200Steel"],"name":"小堆MAR-M200特种钢粉","tr":"小堆MAR-M200特种钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10097":{"oreDict":["dustSmallMAR-Ce-M200Steel"],"name":"小堆MAR-Ce-M200特种钢粉","tr":"小堆MAR-Ce-M200特种钢粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11121":{"oreDict":["dustSmallLanthaniumChloride"],"name":"小堆氯化镧粉","tr":"小堆氯化镧粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10098":{"oreDict":["dustSmallLithiumChloride"],"name":"小堆氯化锂粉","tr":"小堆氯化锂粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11122":{"oreDict":["dustSmallNeodymiumOxide"],"name":"小堆氧化钕粉","tr":"小堆氧化钕粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10099":{"oreDict":["dustSmallSignalium"],"name":"小堆信素粉","tr":"小堆信素粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11123":{"oreDict":["dustSmallFluorinatedSamaricConcentrate"],"name":"小堆氟化钐精粉","tr":"小堆氟化钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10100":{"oreDict":["dustSmallLumiinessence"],"name":"小堆流明精华粉","tr":"小堆流明精华粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11124":{"oreDict":["dustSmallCalciumFluoride"],"name":"小堆氟化钙粉","tr":"小堆氟化钙粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10101":{"oreDict":["dustSmallLumiium"],"name":"小堆流明粉","tr":"小堆流明粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11125":{"oreDict":["dustSmallSamarium-TerbiumMixture"],"name":"小堆钐-铽混合物粉","tr":"小堆钐-铽混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10102":{"oreDict":["dustSmallArtherium-Sn"],"name":"小堆阿瑟锡粉","tr":"小堆阿瑟锡粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11126":{"oreDict":["dustSmallNitrogenatedSamarium-TerbiumMixture"],"name":"小堆氮化钐-铽混合物粉","tr":"小堆氮化钐-铽混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10103":{"oreDict":["dustSmallTanmolyiumBeta-C"],"name":"小堆钛钼合金β-C粉","tr":"小堆钛钼合金β-C粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11127":{"oreDict":["dustSmallTerbiumNitrate"],"name":"小堆硝酸铽粉","tr":"小堆硝酸铽粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10104":{"oreDict":["dustSmallDalisenite"],"name":"小堆大力合金粉","tr":"小堆大力合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11128":{"oreDict":["dustSmallSamariumOreConcentrate"],"name":"小堆钐精粉","tr":"小堆钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10105":{"oreDict":["dustSmallHikarium"],"name":"小堆光素粉","tr":"小堆光素粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11129":{"oreDict":["dustSmallDephosphatedSamariumConcentrate"],"name":"小堆脱磷钐精粉","tr":"小堆脱磷钐精粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10106":{"oreDict":["dustSmallTairitsu"],"name":"小堆对立合金粉","tr":"小堆对立合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10108":{"oreDict":["dustSmallMagnesiumSulphate"],"name":"小堆硫酸镁粉","tr":"小堆硫酸镁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10109":{"oreDict":["dustSmallPreciousMetalsAlloy"],"name":"小堆稀有金属合金粉","tr":"小堆稀有金属合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10110":{"oreDict":["dustSmallEnrichedNaquadahAlloy"],"name":"小堆富集硅岩合金粉","tr":"小堆富集硅岩合金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10111":{"oreDict":["dustSmallMetastableOganesson"],"name":"小堆亚稳态鿫粉","tr":"小堆亚稳态鿫粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10112":{"oreDict":["dustSmallShirabon"],"name":"小堆调律源金粉","tr":"小堆调律源金粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10113":{"oreDict":["dustSmallInertNaquadah"],"name":"小堆惰性硅岩粉","tr":"小堆惰性硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10114":{"oreDict":["dustSmallInertEnrichedNaquadah"],"name":"小堆惰性富集硅岩粉","tr":"小堆惰性富集硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10115":{"oreDict":["dustSmallInertNaquadria"],"name":"小堆惰性超能硅岩粉","tr":"小堆惰性超能硅岩粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamPear":{"0":{"name":"Pear","tr":"梨","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedSilver":{"0":{"name":"Crated Silver Ingot","tr":"装箱的银锭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicbases:oldGold":{"0":{"oreDict":["blockGold"],"name":"Ancient Gold Block","tr":"远古金块","tab":"Thaumic Bases Blocks","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongIodine":{"0":{"oreDict":["stickLongIodine"],"name":"长碘杆","tr":"长碘杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalaxySpace:fuelgenerator":{"0":{"name":"Fuel Generator","tr":"燃油发电机","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockEnergyCrystal":{"0":{"oreDict":["blockEnergyCrystal"],"name":"能量水晶块","tr":"能量水晶块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"Botany:ceramicPattern":{"16387":{"name":"Ceramic Block","tr":"陶瓷块","tab":"Binnie|花卉","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:gooseberrymilkshakeItem":{"0":{"oreDict":["foodGooseberrymilkshake"],"name":"Gooseberry Milkshake","tr":"醋栗奶昔","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:ignisfruitItem":{"0":{"oreDict":["cropIgnisfruit"," listAllfruit"],"name":"Ignis Fruit","tr":"炙炎果","tab":"下界丰收","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB2Slab":{"0":{"name":"Metamorphic Mountain Stone Brick Slab","tr":"变质高山石砖台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:daylightcollector":{"0":{"name":"Sun Collector","tr":"阳光收集器","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemNuggetLithium7":{"0":{"oreDict":["nuggetLithium7"],"name":"锂-7粒","tr":"锂-7粒","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltEnergyCrystal":{"0":{"oreDict":["boltEnergyCrystal"],"name":"能量水晶螺栓","tr":"能量水晶螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedPurifiedFlorencite":{"0":{"oreDict":["crushedPurifiedFlorencite"],"name":"Purified Crushed Florencite Ore","tr":"洗净的磷铝铈矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallLepersonnite":{"0":{"oreDict":["dustSmallLepersonnite"],"name":"小堆绿泥石粉","tr":"小堆绿泥石粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamtomatoCrop":{"0":{"name":"Tomato Crop","tr":"番茄","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:saladdressingItem":{"0":{"oreDict":["foodSaladdressing"],"name":"Salad Dressing","tr":"沙拉酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemEldritchObject":{"0":{"name":"Eldritch Eye","tr":"邪术之眼","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"1":{"name":"Crimson Rites","tr":"血腥仪式","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"2":{"name":"Runed Tablet","tr":"符文石板","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Primordial Pearl","tr":"元始珍珠","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1},"4":{"name":"Eldritch Obelisk Placer","tr":"邪术方尖碑敷设器","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.BlackPlutoniumDust":{"0":{"name":"Black Plutonium Dust","tr":"黑钚粉","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:heatsand":{"0":{"name":"Heat Sand","tr":"热沙","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CallistoIceDensePlate":{"0":{"oreDict":["plateDenseCallistoIce"],"name":"Dense Callisto Cold Ice Plate","tr":"致密木卫四玄冰板","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:beetsaladItem":{"0":{"oreDict":["foodBeetsalad"],"name":"Beet Salad","tr":"甜菜沙拉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ironchestminecarts:minecart_chest_crystal":{"0":{"name":"Minecart with Crystal Chest","tr":"水晶箱子运输矿车","tab":"交通运输","type":"Item","maxStackSize":1,"maxDurability":1}},"openmodularturrets:serialPortAddon":{"0":{"name":"Addon - Serial Port","tr":"附件-串行端口","tab":"模块化炮塔","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:fuel.coke":{"0":{"oreDict":["fuelCoke"],"name":"Coal Coke","tr":"焦煤","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"Natura:floraleavesnocolor":{"0":{"oreDict":["treeLeaves"],"name":"Sakura Leaves","tr":"樱花树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["treeLeaves"],"name":"Ghostwood Leaves","tr":"幽魂树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["treeLeaves"],"name":"Bloodleaves","tr":"血树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["treeLeaves"],"name":"Willow Leaves","tr":"柳树树叶","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"WarpTheory:item.warptheory.amulet":{"0":{"name":"Purification Talisman","tr":"净化护身符","tab":"神秘扭曲学","type":"Item","maxStackSize":1,"maxDurability":1}},"TConstruct:Javelin":{"0":{"name":"§f山铜 标枪","tr":"§f山铜 标枪","tab":"匠魂|武器","type":"Item","maxStackSize":1,"maxDurability":101}},"harvestcraft:grapesodaItem":{"0":{"oreDict":["foodGrapesoda"],"name":"Grape Soda","tr":"葡萄汽水","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFUnderBrick":{"0":{"name":"Underbrick","tr":"地下砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Mossy Underbrick","tr":"青苔地下砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Cracked Underbrick","tr":"碎裂地下砖","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockLaurenium":{"0":{"oreDict":["blockLaurenium"],"name":"劳伦姆合金块","tr":"劳伦姆合金块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongWhiteMetal":{"0":{"oreDict":["stickLongWhiteMetal"],"name":"长白物质杆","tr":"长白物质杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:darkOakFenceGate":{"0":{"name":"Dark Oak Fence Gate","tr":"深色橡木栅栏门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.MysteriousCrystal":{"0":{"oreDict":["blockMysteriousCrystal"],"name":"Mysterious Crystal Block","tr":"神秘水晶块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ShapeFileHead":{"0":{"name":"Casting Form (File Head Shape)","tr":"铸形(锉刀刃)","tab":"GTNH: 铸形","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EngravedManyullynCrystalChip":{"0":{"name":"Engraved Manyullyn Crystal Chip","tr":"雕刻玛玉灵晶体芯片","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateTungstenTitaniumCarbide":{"0":{"oreDict":["plateTungstenTitaniumCarbide"],"name":"碳化钨钛合金板","tr":"碳化钨钛合金板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.PipeItemsSystemDestinationLogistics":{"0":{"name":"Logistics System Destination Pipe","tr":"物流系统目标管道","tab":"物流管道","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:potionLauncher":{"0":{"name":"Potion Launcher","tr":"药水发射器","tab":"战斗用品","type":"Item","maxStackSize":1,"maxDurability":4}},"AWWayofTime:weakBloodOrb":{"0":{"name":"Weak Blood Orb","tr":"虚弱气血宝珠","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:summersquashwithradishItem":{"0":{"oreDict":["foodSummersquashwithradish"],"name":"Summer Squash with Radish","tr":"西葫芦炒萝卜","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:sawbench":{"0":{"name":"Architect\u0027s Sawbench","tr":"建筑师锯台","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"ArchitectureCraft:shapeSE":{"0":{"name":"Architectural Block(Glow)","tr":"构件(发光)","tab":"杂项","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:bituminousPeat":{"0":{"name":"Bituminous Peat","tr":"沥青质泥炭","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftMars:item.deshSword":{"0":{"name":"Desh Sword","tr":"戴斯剑","tab":"星系|物品","type":"Item","maxStackSize":1,"maxDurability":1025}},"gregtech:gt.Double_MNqCellDep":{"0":{"name":"枯竭二联燃料棒(Nq*)","tr":"枯竭二联燃料棒(Nq*)","tab":"主体","type":"Item","maxStackSize":64,"maxDurability":101}},"Thaumcraft:ItemBowBone":{"0":{"name":"Bow of Bone","tr":"骨弓","tab":"神秘时代4","type":"Item","maxStackSize":1,"maxDurability":513}},"chisel:jackolantern15":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern16":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern13":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotArcanite":{"0":{"oreDict":["ingotHotArcanite"],"name":"热奥金锭","tr":"热奥金锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern14":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern11":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_south_lit_nobottom":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern12":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"catwalks:sturdy_rail_activator":{"0":{"name":"Sturdy Activator Rail","tr":"坚实激活铁轨","tab":"栈桥","type":"Block","maxStackSize":64,"maxDurability":1}},"TGregworks:tGregToolPartBinding":{"1536":{"name":"精金 Tool Binding","tr":"精金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Tool Binding","tr":"神秘蓝金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Tool Binding","tr":"琥珀 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Tool Binding","tr":"纯镃 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Tool Binding","tr":"谐镃 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Tool Binding","tr":"聚氯乙烯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Tool Binding","tr":"永恒 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Tool Binding","tr":"磁物质 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Tool Binding","tr":"赛特斯石英 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Tool Binding","tr":"暗影秘银 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Tool Binding","tr":"玄铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Tool Binding","tr":"戴斯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Tool Binding","tr":"铿铀 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Tool Binding","tr":"通流琥珀金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Tool Binding","tr":"末影粗胚 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Tool Binding","tr":"末影(te) 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Tool Binding","tr":"炽热的钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Tool Binding","tr":"火石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Tool Binding","tr":"力量 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Tool Binding","tr":"石墨 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Tool Binding","tr":"石墨烯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Tool Binding","tr":"注魔金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Tool Binding","tr":"风之魔晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Tool Binding","tr":"火之魔晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Tool Binding","tr":"地之魔晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Tool Binding","tr":"水之魔晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Tool Binding","tr":"混沌魔晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Tool Binding","tr":"秩序魔晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Tool Binding","tr":"玉 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Tool Binding","tr":"碧玉 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Tool Binding","tr":"陨铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Tool Binding","tr":"陨钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Tool Binding","tr":"硅岩 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Tool Binding","tr":"硅岩合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Tool Binding","tr":"富集硅岩 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Tool Binding","tr":"超能硅岩 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Tool Binding","tr":"下界石英 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Tool Binding","tr":"下界之星 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Tool Binding","tr":"三钛 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Tool Binding","tr":"虚空 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Tool Binding","tr":"胶木 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Tool Binding","tr":"幽冥剧毒结晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Tool Binding","tr":"强化 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Tool Binding","tr":"铱锇合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Tool Binding","tr":"阳光化合物 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Tool Binding","tr":"魂金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Tool Binding","tr":"蓝黄玉 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Tool Binding","tr":"黄铜 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Tool Binding","tr":"白铜 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Tool Binding","tr":"深渊铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Tool Binding","tr":"钻石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Tool Binding","tr":"琥珀金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Tool Binding","tr":"绿宝石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Tool Binding","tr":"强化混合晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Tool Binding","tr":"混合晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Tool Binding","tr":"绿色蓝宝石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Tool Binding","tr":"殷钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Tool Binding","tr":"坎塔尔合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Tool Binding","tr":"镁铝合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Tool Binding","tr":"镍铬合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Tool Binding","tr":"玄钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Tool Binding","tr":"生铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Tool Binding","tr":"聚乙烯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Tool Binding","tr":"环氧树脂 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Tool Binding","tr":"硅橡胶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Tool Binding","tr":"聚己内酰胺 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Tool Binding","tr":"聚四氟乙烯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Tool Binding","tr":"蓝宝石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Tool Binding","tr":"不锈钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Tool Binding","tr":"坦桑石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Tool Binding","tr":"锡铁合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Tool Binding","tr":"黄玉 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Tool Binding","tr":"哈氏合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Tool Binding","tr":"锻铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Tool Binding","tr":"铁木 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Tool Binding","tr":"橄榄石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Tool Binding","tr":"蛋白石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Tool Binding","tr":"紫水晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Tool Binding","tr":"暗影金属 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Tool Binding","tr":"暗影铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Tool Binding","tr":"暗影钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Tool Binding","tr":"钢叶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Tool Binding","tr":"骑士金属 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Tool Binding","tr":"标准纯银 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Tool Binding","tr":"玫瑰金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Tool Binding","tr":"黑青铜 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Tool Binding","tr":"铋青铜 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Tool Binding","tr":"黑钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Tool Binding","tr":"红钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Tool Binding","tr":"蓝钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Tool Binding","tr":"大马士革钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Tool Binding","tr":"充能合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Tool Binding","tr":"脉冲合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Tool Binding","tr":"星辰银 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Tool Binding","tr":"钴黄铜 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Tool Binding","tr":"红石榴石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Tool Binding","tr":"黄石榴石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Tool Binding","tr":"温特姆 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Tool Binding","tr":"黑花岗岩 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Tool Binding","tr":"红花岗岩 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Tool Binding","tr":"白石棉 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Tool Binding","tr":"雄黄 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Tool Binding","tr":"磁化铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Tool Binding","tr":"磁化钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Tool Binding","tr":"磁化钕 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Tool Binding","tr":"碳化钨 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Tool Binding","tr":"钒钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Tool Binding","tr":"高速钢-G 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Tool Binding","tr":"高速钢-E 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Tool Binding","tr":"高速钢-S 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Tool Binding","tr":"深铅 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Tool Binding","tr":"量子 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Tool Binding","tr":"深空秘银 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Tool Binding","tr":"黑钚 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Tool Binding","tr":"木卫四冰 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Tool Binding","tr":"硬铝 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Tool Binding","tr":"奥利哈钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Tool Binding","tr":"三元金属 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Tool Binding","tr":"聚苯硫醚 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Tool Binding","tr":"聚苯乙烯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Tool Binding","tr":"丁苯橡胶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Tool Binding","tr":"镍锌铁氧体 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Tool Binding","tr":"纤维强化的环氧树脂 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Tool Binding","tr":"磁化钐 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Tool Binding","tr":"无尽催化剂 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Tool Binding","tr":"聚苯并咪唑 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Tool Binding","tr":" 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Tool Binding","tr":"钛铂钒合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Tool Binding","tr":"时空 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Tool Binding","tr":"大理石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Tool Binding","tr":"神秘水晶 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Tool Binding","tr":"末影钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Tool Binding","tr":"复合粘土 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Tool Binding","tr":"晶化合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Tool Binding","tr":"旋律合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Tool Binding","tr":"恒星合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Tool Binding","tr":"晶化粉红史莱姆 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Tool Binding","tr":"充能银 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Tool Binding","tr":"生动合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Tool Binding","tr":"灵宝 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Tool Binding","tr":"超时空金属 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Tool Binding","tr":"活石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Tool Binding","tr":"盖亚之魂 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Tool Binding","tr":"活木 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Tool Binding","tr":"梦之木 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Tool Binding","tr":"泡铋 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Tool Binding","tr":"立方氧化锆 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Tool Binding","tr":"氟铁电气石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Tool Binding","tr":"铬铝电气石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Tool Binding","tr":"钒镁电气石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Tool Binding","tr":"铝电气石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Tool Binding","tr":"红锆石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Tool Binding","tr":"铁橄榄石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Tool Binding","tr":"镁橄榄石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Tool Binding","tr":"钙铁辉石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Tool Binding","tr":"钍-232 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Tool Binding","tr":"堇云石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Tool Binding","tr":"磁共振石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Tool Binding","tr":"锎 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Tool Binding","tr":"BArTiMaEuSNeK 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Tool Binding","tr":"钌 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Tool Binding","tr":"铑 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Tool Binding","tr":"镀铑钯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Tool Binding","tr":"泰伯利亚 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Tool Binding","tr":"钌铱合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Tool Binding","tr":"氟石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Tool Binding","tr":"高耐久性复合钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Tool Binding","tr":"硬钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Tool Binding","tr":"合成玉 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Tool Binding","tr":"原子分离催化剂 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Tool Binding","tr":"极不稳定硅岩 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Tool Binding","tr":"锌钍合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Tool Binding","tr":"锆锡合金-4 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Tool Binding","tr":"锆锡合金-2 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Tool Binding","tr":"耐热铬铁合金-903 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Tool Binding","tr":"精金合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Tool Binding","tr":"MAR-M200特种钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Tool Binding","tr":"MAR-Ce-M200特种钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Tool Binding","tr":"氯化锂 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Tool Binding","tr":"信素 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Tool Binding","tr":"流明 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Tool Binding","tr":"阿瑟锡 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Tool Binding","tr":"钛钼合金β-C 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Tool Binding","tr":"大力合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Tool Binding","tr":"光素 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Tool Binding","tr":"对立合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Tool Binding","tr":"稀有金属合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Tool Binding","tr":"富集硅岩合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Tool Binding","tr":"亚稳态鿫 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Tool Binding","tr":"调律源金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Tool Binding","tr":"魔钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Tool Binding","tr":"泰拉钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Tool Binding","tr":"源质钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Tool Binding","tr":"磁流体约束恒星物质 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Tool Binding","tr":"白矮星物质 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Tool Binding","tr":"黑矮星物质 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Tool Binding","tr":"宇宙素 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Tool Binding","tr":"铝 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Tool Binding","tr":"铍 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Tool Binding","tr":"铋 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Tool Binding","tr":"碳 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Tool Binding","tr":"铬 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Tool Binding","tr":"金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Tool Binding","tr":"铱 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Tool Binding","tr":"铅 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Tool Binding","tr":"锰 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Tool Binding","tr":"钼 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Tool Binding","tr":"钕 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Tool Binding","tr":"中子 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Tool Binding","tr":"镍 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Tool Binding","tr":"锇 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Tool Binding","tr":"钯 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Tool Binding","tr":"铂 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Tool Binding","tr":"钚-239 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Tool Binding","tr":"钚-241 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Tool Binding","tr":"银 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Tool Binding","tr":"钍 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Tool Binding","tr":"钛 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Tool Binding","tr":"钨 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Tool Binding","tr":"铀-238 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Tool Binding","tr":"铀-235 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Tool Binding","tr":"红宝石 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Tool Binding","tr":"红石合金 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Tool Binding","tr":"终末 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Tool Binding","tr":"导电铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Tool Binding","tr":"磁钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Tool Binding","tr":"钨钢 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Tool Binding","tr":"烈焰 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Tool Binding","tr":"脉冲铁 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Tool Binding","tr":"龙 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Tool Binding","tr":"觉醒龙 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Tool Binding","tr":"褐铜 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Tool Binding","tr":"山铜 绑定结","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:jackolantern10":{"0":{"name":"Jack o\u0027Lantern","tr":"南瓜灯","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:scrambledeggItem":{"0":{"oreDict":["foodScrambledegg"],"name":"Scrambled Egg","tr":"炒蛋","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.MoldFormAnvil":{"0":{"name":"Casting Form (Anvil Mold)","tr":"铸件(砧)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bellpepperseedItem":{"0":{"oreDict":["seedBellpepper"," listAllseed"],"name":"Bellpepper Seed","tr":"甜椒种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockTally":{"0":{"name":"Tally Box","tr":"计数盒","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:blockMachine":{"0":{"name":"Basic Machine Casing","tr":"基础机器外壳","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["craftingIronFurnace"],"name":"Iron Furnace","tr":"铁炉","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["craftingElectricFurnace"],"name":"Electric Furnace","tr":"电炉","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["craftingMacerator"],"name":"Macerator","tr":"打粉机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["craftingExtractor"],"name":"Extractor","tr":"提取机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["craftingCompressor"],"name":"Compressor","tr":"压缩机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Fluid/Solid Canning Machine","tr":"流体/固体装罐机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Miner","tr":"采矿机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["craftingPump"],"name":"Pump","tr":"泵","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["craftingElectromagnet"],"name":"Magnetizer","tr":"磁化机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Electrolyzer","tr":"电解机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["craftingRecycler"],"name":"Recycler","tr":"回收机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Advanced Machine Casing","tr":"高级机器外壳","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["craftingInductionFurnace"],"name":"Induction Furnace","tr":"感应炉","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Mass Fabricator","tr":"UU物质生成机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Terraformer","tr":"地形转换机","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:redStringContainer":{"0":{"name":"Red Stringed Container","tr":"红线容器","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellRuthenium":{"0":{"oreDict":["cellRuthenium"],"name":"钌单元","tr":"钌单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneBrickSlabBlock":{"0":{"name":"Sky Stone Brick Slabs","tr":"陨石石砖台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyYttrocerite":{"0":{"oreDict":["dustTinyYttrocerite"],"name":"小撮铈钇矿粉","tr":"小撮铈钇矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:rhubarbItem":{"0":{"oreDict":["cropRhubarb"," listAllveggie"],"name":"Rhubarb","tr":"大黄","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyPlutonium238":{"0":{"oreDict":["dustTinyPlutonium238"],"name":"小撮钚-238粉","tr":"小撮钚-238粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Thaumcraft:blockEldritchNothing":{"0":{"name":"tile.blockPortalNothing.name","tr":"tile.blockPortalNothing.name","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:elementiumShovel":{"0":{"name":"Elementium Shovel","tr":"源质钢铲","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":721}},"bartworks:gt.bwMetaGenerateddustPure":{"1":{"oreDict":["dustPureBismutite"],"name":"洁净泡铋粉","tr":"洁净泡铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["dustPureBismuthinite"],"name":"洁净辉铋粉","tr":"洁净辉铋粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["dustPureFluor-Buergerite"],"name":"洁净氟铁电气石粉","tr":"洁净氟铁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"69":{"oreDict":["dustPureRarestMetalResidue"],"name":"洁净稀有金属渣粉","tr":"洁净稀有金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"70":{"oreDict":["dustPureIridiumMetalResidue"],"name":"洁净铱金属渣粉","tr":"洁净铱金属渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10054":{"oreDict":["dustPureNaquadahOxideMixture"],"name":"洁净氧化硅岩混合物粉","tr":"洁净氧化硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["dustPureChromo-Alumino-Povondraite"],"name":"洁净铬铝电气石粉","tr":"洁净铬铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["dustPureVanadio-Oxy-Dravite"],"name":"洁净钒镁电气石粉","tr":"洁净钒镁电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["dustPureOlenite"],"name":"洁净铝电气石粉","tr":"洁净铝电气石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["dustPureArsenopyrite"],"name":"洁净砷黄铁粉","tr":"洁净砷黄铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["dustPureFerberite"],"name":"洁净钨铁粉","tr":"洁净钨铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["dustPureLoellingite"],"name":"洁净斜方砷铁粉","tr":"洁净斜方砷铁粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["dustPureRoquesite"],"name":"洁净硫铟铜粉","tr":"洁净硫铟铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["dustPureBornite"],"name":"洁净斑铜粉","tr":"洁净斑铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["dustPureWittichenite"],"name":"洁净硫铋铜粉","tr":"洁净硫铋铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"79":{"oreDict":["dustPureCrudeRhodiumMetal"],"name":"洁净粗制铑金属粉","tr":"洁净粗制铑金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"oreDict":["dustPureDjurleite"],"name":"洁净久辉铜粉","tr":"洁净久辉铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"17":{"oreDict":["dustPureHuebnerite"],"name":"洁净钨酸锰粉","tr":"洁净钨酸锰粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"18":{"oreDict":["dustPureThorianite"],"name":"洁净方钍石粉","tr":"洁净方钍石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"19":{"oreDict":["dustPureRedZircon"],"name":"洁净红锆石粉","tr":"洁净红锆石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10067":{"oreDict":["dustPureEnriched-NaquadahOxideMixture"],"name":"洁净氧化富集硅岩混合物粉","tr":"洁净氧化富集硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"23":{"oreDict":["dustPureFayalite"],"name":"洁净铁橄榄石粉","tr":"洁净铁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"24":{"oreDict":["dustPureForsterite"],"name":"洁净镁橄榄石粉","tr":"洁净镁橄榄石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10072":{"oreDict":["dustPureNaquadriaOxideMixture"],"name":"洁净氧化超能硅岩混合物粉","tr":"洁净氧化超能硅岩混合物粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"25":{"oreDict":["dustPureHedenbergite"],"name":"洁净钙铁辉石粉","tr":"洁净钙铁辉石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"89":{"oreDict":["dustPureTiberium"],"name":"洁净泰伯利亚粉","tr":"洁净泰伯利亚粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"26":{"oreDict":["dustPureRedDescloizite"],"name":"洁净红钒铅锌粉","tr":"洁净红钒铅锌粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"27":{"oreDict":["dustPureOrangeDescloizite"],"name":"洁净橙钒铅铜粉","tr":"洁净橙钒铅铜粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"91":{"oreDict":["dustPureFluorspar"],"name":"洁净氟石粉","tr":"洁净氟石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"28":{"oreDict":["dustPureGreenFuchsite"],"name":"洁净绿铬云母粉","tr":"洁净绿铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"29":{"oreDict":["dustPureRedFuchsite"],"name":"洁净红铬云母粉","tr":"洁净红铬云母粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"93":{"oreDict":["dustPureAtheneite"],"name":"洁净砷汞钯粉","tr":"洁净砷汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"94":{"oreDict":["dustPureTemagamite"],"name":"洁净碲汞钯粉","tr":"洁净碲汞钯粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"95":{"oreDict":["dustPureTerlinguaite"],"name":"洁净黄氯汞粉","tr":"洁净黄氯汞粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"35":{"oreDict":["dustPurePrasiolite"],"name":"洁净堇云石粉","tr":"洁净堇云石粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"10023":{"oreDict":["dustPureOrundum"],"name":"洁净合成玉粉","tr":"洁净合成玉粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"43":{"oreDict":["dustPureBArTiMaEuSNeK"],"name":"洁净BArTiMaEuSNeK粉","tr":"洁净BArTiMaEuSNeK粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"47":{"oreDict":["dustPurePlatinumMetallicPowder"],"name":"洁净铂金属粉","tr":"洁净铂金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"53":{"oreDict":["dustPurePalladiumMetallicPowder"],"name":"洁净钯金属粉","tr":"洁净钯金属粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1},"60":{"oreDict":["dustPureLeachResidue"],"name":"洁净浸出渣粉","tr":"洁净浸出渣粉","tab":"BartWorks超材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:orangeItem":{"0":{"oreDict":["listAllfruit"," listAllcitrus"," cropOrange"],"name":"Orange","tr":"橙子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellAdvancedNitinol":{"0":{"oreDict":["cellAdvancedNitinol"],"name":"高级镍钛诺单元","tr":"高级镍钛诺单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"irontank:emeraldStainlesssteelUpgrade":{"0":{"name":"Aluminium to Stainless Steel Tank Upgrade","tr":"储罐升级:铝\u003e不锈钢","tab":"更多储罐","type":"Item","maxStackSize":1,"maxDurability":1}},"cookingforblockheads:cookingtable":{"0":{"name":"Cooking Table","tr":"烹饪桌","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:vineBall":{"0":{"name":"Vine Ball","tr":"藤蔓球","tab":"植物魔法","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedWheat":{"0":{"name":"Crated Wheat","tr":"装箱的小麦","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"DraconicEvolution:customSpawner":{"0":{"name":"Stabilized Mob Spawner","tr":"稳定刷怪笼","tab":"龙之研究方块和物品","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockIndalloy140":{"0":{"oreDict":["blockIndalloy140"],"name":"铋铅合金140块","tr":"铋铅合金140块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockPolonium":{"0":{"oreDict":["blockPolonium"],"name":"钋块","tr":"钋块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:plutoglowstone":{"0":{"oreDict":["rockPluto"," glowstone"," rockSpace"],"name":"Pluto Glowstone","tr":"冥王星萤石","tab":"星空|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"irontank:silverTank":{"0":{"name":"Steel Tank","tr":"钢储罐","tab":"更多储罐","type":"Block","maxStackSize":64,"maxDurability":1}},"Natura:stair.fusewood":{"0":{"oreDict":["stairWood"],"name":"Fusewood Stairs","tr":"熔融树楼梯","tab":"自然","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:dragonfruitItem":{"0":{"oreDict":["cropDragonfruit"," listAllfruit"],"name":"Dragonfruit","tr":"火龙果","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneB0Stairs":{"0":{"name":"Metamorphic Forest Stone Brick Stairs","tr":"变质森林石砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaSaplingHopseed":{"0":{"name":"Crated Hopseed Sapling","tr":"装箱的车桑子树树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.QuantinumRod":{"0":{"name":"Quantium Rod","tr":"量子杆","tab":"GTNH: 太空","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.BlockSpatialPylon":{"0":{"name":"Spatial Pylon","tr":"空间塔","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.EnderiumBars":{"0":{"oreDict":["barsEnderium"],"name":"Enderium Bars","tr":"末影栏杆","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftAmunRa:tile.obsidianbrick.stairs":{"0":{"name":"Obsidian Brick Stairs","tr":"黑曜石砖块楼梯","tab":"阿蒙·拉","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:GTPP.BattPack.07.name":{"1":{"name":"§9Charge Pack [ZPM]§7","tr":"§9充电工具包[ZPM]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28},"26":{"name":"§9Charge Pack [ZPM]§7","tr":"§9充电工具包[ZPM]§7","tab":"GT++机器","type":"Item","maxStackSize":1,"maxDurability":28}},"harvestcraft:baklavaItem":{"0":{"oreDict":["foodBaklava"],"name":"Baklava","tr":"果仁蜜饼","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:beefjerkyItem":{"0":{"oreDict":["foodBeefjerky"],"name":"Beef Jerky","tr":"牛肉干","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:lavastone":{"0":{"oreDict":["lavastone"],"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Lavastone","tr":"熔岩石","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:blueberrypieItem":{"0":{"oreDict":["foodBlueberrypie"],"name":"Blueberry Pie","tr":"蓝莓派","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRotorMaragingSteel300":{"0":{"oreDict":["rotorMaragingSteel300"],"name":"马氏体时效钢300转子","tr":"马氏体时效钢300转子","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ToxicEverglades:blockDarkWorldGround2":{"0":{"name":"Polluted Soil","tr":"污染的土壤","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Polluted Soil","tr":"污染的土壤","tab":"GT++其他II","type":"Block","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemShadowmetalHoe":{"0":{"name":"Shadowmetal Hoe","tr":"暗影之锄","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":2201}},"dreamcraft:item.MoldFormRotor":{"0":{"name":"Casting Form (Rotor Mold)","tr":"铸件(转子)","tab":"GTNH: 铸件","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:vampirecoat":{"0":{"name":"Vampire Dress Coat","tr":"吸血鬼礼服","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":241}},"gregtech:gt.180k_Helium_Coolantcell":{"0":{"name":"180k氦冷却单元","tr":"180k氦冷却单元","tab":"主体","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:quartzTypeBlaze":{"0":{"name":"Block of Blaze Quartz","tr":"烈焰石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Chiseled Blaze Quartz Block","tr":"錾制烈焰石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pillar Blaze Quartz Block","tr":"竖纹烈焰石英块","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:seedswormwood":{"0":{"name":"Wormwood Seeds","tr":"苦艾种子","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:baseTierThreeBlock":{"0":{"name":"Turret Base (Tier 4)","tr":"炮塔基座(四级)","tab":"模块化炮塔","type":"Block","maxStackSize":64,"maxDurability":1}},"Ztones:tile.zkulBlock":{"0":{"name":"Zkul ⓪","tr":"Zkul ⓪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Zkul ①","tr":"Zkul ①","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Zkul ②","tr":"Zkul ②","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Zkul ③","tr":"Zkul ③","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Zkul ④","tr":"Zkul ④","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Zkul ⑤","tr":"Zkul ⑤","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Zkul ⑥","tr":"Zkul ⑥","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Zkul ⑦","tr":"Zkul ⑦","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Zkul ⑧","tr":"Zkul ⑧","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Zkul ⑨","tr":"Zkul ⑨","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Zkul ⑩","tr":"Zkul ⑩","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Zkul ⑪","tr":"Zkul ⑪","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Zkul ⑫","tr":"Zkul ⑫","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Zkul ⑬","tr":"Zkul ⑬","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Zkul ⑭","tr":"Zkul ⑭","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Zkul ⑮","tr":"Zkul ⑮","tab":"Ztones","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:biomeStoneA3Slab":{"0":{"name":"Metamorphic Fungal Stone Slab","tr":"变质菌丝石头台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundPlate":{"0":{"name":"Bound Plate","tr":"约束胸甲","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"ExtraBees:hiveFrame.cocoa":{"0":{"name":"Chocolate Frame","tr":"巧克力框架","tab":"林业|养蜂","type":"Item","maxStackSize":1,"maxDurability":241}},"miscutils:crushedPurifiedNichromite":{"0":{"oreDict":["crushedPurifiedNichromite"],"name":"Purified Crushed Nichromite Ore","tr":"洗净的镍铬矿矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:item.forestry":{"0":{"oreDict":["oc:beekeeperUpgrade"],"name":"Beekeeper Upgrade","tr":"养蜂员升级","tab":"OpenComputers","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:hatchet":{"0":{"name":"§f山铜 手斧","tr":"§f山铜 手斧","tab":"匠魂|工具","type":"Item","maxStackSize":1,"maxDurability":101}},"Botania:customBrick2Stairs":{"0":{"name":"Frosty Brick Stairs","tr":"霜冻砖楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"GalaxySpace:item.RocketParts":{"0":{"name":"Durable Nose Cone Tier 2","tr":"2阶耐久鼻锥","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Durable Rocket Engine Tier 2","tr":"2阶耐久火箭引擎","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Booster Tier 2","tr":"2阶耐久助推器","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Durable Rocket Vane Tier 2","tr":"2阶耐久火箭尾鳍","tab":"星空|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockFrameGtTitansteel":{"0":{"oreDict":["frameGtTitansteel"],"name":"泰坦精钢框架","tr":"泰坦精钢框架","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellZeron100":{"0":{"oreDict":["cellZeron100"],"name":"塞龙-100单元","tr":"塞龙-100单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellSelenium":{"0":{"oreDict":["cellSelenium"],"name":"硒单元","tr":"硒单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"OpenComputers:netSplitter":{"0":{"oreDict":["oc:netSplitter"],"name":"Net Splitter","tr":"网络分配器","tab":"OpenComputers","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureAncientGranite":{"0":{"oreDict":["dustPureAncientGranite"],"name":"Purified Ancient Granite Dust","tr":"纯净古花岗岩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:highEnergyMixture":{"0":{"name":"High Energy Mixture","tr":"高能混合物","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:stair":{"0":{"name":"Sandy Brick Stairs","tr":"沙岩砖楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Infernal Brick Stairs","tr":"地狱砖楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Concrete Stairs","tr":"混凝土楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Snow Stairs","tr":"雪楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Ice Stairs","tr":"冰楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Packed Ice Stairs","tr":"蓝冰楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Iron Stairs","tr":"铁楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Gold Stairs","tr":"金楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Diamond Stairs","tr":"钻石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Frost Bound Brick Stairs","tr":"霜冻砖楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Quarried Brick Stairs","tr":"采掘砖楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Bleached Bone Brick Stairs","tr":"白骨砖楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Blood Stained Brick Stairs","tr":"污血砖楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Abyssal Brick Stairs","tr":"深渊砖楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Fitted Sandy Stone Stairs","tr":"匀称沙岩楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Fitted Infernal Stone Stairs","tr":"匀称地狱楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"16":{"name":"Fitted Frost Bound Stone Stairs","tr":"匀称霜冻楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"17":{"name":"Fitted Quarried Stone Stairs","tr":"匀称采掘楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"18":{"name":"Fitted Bleached Bone Stone Stairs","tr":"匀称白骨楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"19":{"name":"Fitted Blood Stained Stone Stairs","tr":"匀称污血楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"20":{"name":"Fitted Abyssal Stone Stairs","tr":"匀称深渊楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"21":{"name":"Fitted Nether Stone Stairs","tr":"均称下界楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"22":{"name":"Sandy Block Stairs","tr":"沙岩楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"23":{"name":"Infernal Block Stairs","tr":"地狱楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"24":{"name":"Frost Bound Block Stairs","tr":"霜冻楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"25":{"name":"Quarried Block Stairs","tr":"采掘楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"26":{"name":"Bleached Bone Block Stairs","tr":"白骨楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"27":{"name":"Blood Stained Block Stairs","tr":"污血楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"28":{"name":"Abyssal Block Stairs","tr":"深渊楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"29":{"name":"Nether Block Stairs","tr":"下界方块楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"30":{"name":"Sandy Cobble Stairs","tr":"沙岩圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"31":{"name":"Infernal Cobble Stairs","tr":"地狱圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"32":{"name":"Frost Bound Cobble Stairs","tr":"霜冻圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"33":{"name":"Quarried Cobble Stairs","tr":"采掘圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"34":{"name":"Bleached Bone Cobble Stairs","tr":"白骨圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"35":{"name":"Blood Stained Cobble Stairs","tr":"污血圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"36":{"name":"Abyssal Cobble Stairs","tr":"深渊圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"37":{"name":"Nether Cobble Stairs","tr":"下界圆石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"38":{"name":"Creosote Block Stairs","tr":"杂酚油方块楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"39":{"name":"Obsidian Stairs","tr":"黑曜石楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"40":{"name":"Copper Stairs","tr":"铜楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"41":{"name":"Tin Stairs","tr":"锡楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"42":{"name":"Lead Stairs","tr":"铅楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1},"43":{"name":"Steel Stairs","tr":"钢楼梯","tab":"Railcraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureAgarditeY":{"0":{"oreDict":["dustImpureAgarditeY"],"name":"Impure Agardite (Y) Dust","tr":"含杂菱铁矿(Y)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"catwalks:cagedLadder_west_unlit_nobottom_tape":{"0":{"name":"Caged Ladder","tr":"笼式扶梯","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"gendustry:LiquidDNABucket":{"0":{"name":"Liquid DNA Bucket","tr":"液态DNA桶","tab":"基因工业","type":"Item","maxStackSize":1,"maxDurability":1}},"harvestcraft:mustardseedItem":{"0":{"oreDict":["seedMustard"," listAllseed"],"name":"Mustard Seed","tr":"芥末种子","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:item.ToolNetherQuartzSpade":{"0":{"name":"Nether Quartz Shovel","tr":"下界石英锹","tab":"应用能源2","type":"Item","maxStackSize":1,"maxDurability":251}},"Forestry:cratedAcaciaSapling":{"0":{"name":"Crated Acacia Sapling","tr":"装箱的金合欢树苗","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemScrewGermanium":{"0":{"oreDict":["screwGermanium"],"name":"锗螺丝","tr":"锗螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ae2fc:multi_fluid_storage16":{"0":{"name":"§a16k§r ME Multi-Fluid Storage Cell","tr":"§a16k§r-ME多流体存储元件","tab":"AE2流体合成套件","type":"Item","maxStackSize":1,"maxDurability":1}},"Botania:brewVial":{"0":{"name":"Vial of Absolution (§l4§r)","tr":"装有赦免 (§l4§r)的小瓶","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":5}},"miscutils:itemRodLongHastelloyX":{"0":{"oreDict":["stickLongHastelloyX"],"name":"长哈斯特洛依合金-X杆","tr":"长哈斯特洛依合金-X杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedNaturaLogFusewood":{"0":{"name":"Crated Fusewood","tr":"装箱的熔融树原木","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongHastelloyW":{"0":{"oreDict":["stickLongHastelloyW"],"name":"长哈斯特洛依合金-W杆","tr":"长哈斯特洛依合金-W杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:glowflowerCrop":{"0":{"name":"Glow Flower Crop","tr":"辉光花","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSamarskiteYb":{"0":{"oreDict":["dustSamarskiteYb"],"name":"铌钇矿(Yb)粉","tr":"铌钇矿(Yb)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:jarEmpty":{"0":{"name":"Empty Jar","tr":"空罐子","tab":"超多生态群系","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:door_dark_oak":{"0":{"name":"Dark Oak Door","tr":"深色橡木门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"Thaumcraft:ItemEssence":{"0":{"name":"Glass Phial","tr":"玻璃安瓿","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Phial of Essentia","tr":"要素安瓿","tab":"神秘时代4","type":"Item","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:enderman_head":{"0":{"name":"Enderman Head","tr":"末影人的头","tab":"Hardcore Ender Expansion","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemHotIngotIncoloyDS":{"0":{"oreDict":["ingotHotIncoloyDS"],"name":"热耐热铬铁合金-DS锭","tr":"热耐热铬铁合金-DS锭","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:milledSpessartine":{"0":{"oreDict":["milledSpessartine"],"name":"Milled Spessartine","tr":"研磨锰铝榴石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongHastelloyN":{"0":{"oreDict":["stickLongHastelloyN"],"name":"长哈斯特洛依合金-N杆","tr":"长哈斯特洛依合金-N杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallTriniumNaquadahCarbonite":{"0":{"oreDict":["dustSmallTriniumNaquadahCarbonite"],"name":"小堆掺碳三元硅岩合金粉","tr":"小堆掺碳三元硅岩合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"StorageDrawers:upgradeDowngrade":{"0":{"name":"Storage Downgrade","tr":"抽屉容量降级","tab":"储物抽屉","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamDate":{"0":{"name":"Date","tr":"枣椰","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongTungstenTitaniumCarbide":{"0":{"oreDict":["stickLongTungstenTitaniumCarbide"],"name":"长碳化钨钛合金杆","tr":"长碳化钨钛合金杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GoodGenerator:rodLiquidUranium":{"0":{"name":"Fuel Rod (Excited Uranium)","tr":"燃料棒(激发铀)","tab":"更多发电机","type":"Item","maxStackSize":64,"maxDurability":101}},"miscutils:itemCellArceusAlloy2B":{"0":{"oreDict":["cellArceusAlloy2B"],"name":"阿尔宙斯合金2B单元","tr":"阿尔宙斯合金2B单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CarbonPartChestplate":{"0":{"name":"Carbon Parts \"Chestplate\"","tr":"纳米胸甲外壳","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateEnergyCrystal":{"0":{"oreDict":["plateEnergyCrystal"],"name":"能量水晶板","tr":"能量水晶板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedZircon":{"0":{"oreDict":["crushedCentrifugedZircon"],"name":"Centrifuged Crushed Zircon Ore","tr":"离心锆石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"openmodularturrets:accuraccyUpgradeItem":{"0":{"name":"Upgrade - Accuracy","tr":"升级组件-精准","tab":"模块化炮塔","type":"Item","maxStackSize":4,"maxDurability":1}},"witchery:snowbell":{"0":{"name":"Snowbell","tr":"雪铃花","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemMOX":{"0":{"name":"MOX Nuclear Fuel","tr":"钚铀混合氧化物核燃料(MOX)","tab":"工业2","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustHG1223":{"0":{"oreDict":["dustHG1223"],"name":"HG-1223粉","tr":"HG-1223粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemPlateIncoloyDS":{"0":{"oreDict":["plateIncoloyDS"],"name":"耐热铬铁合金-DS板","tr":"耐热铬铁合金-DS板","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:shrimpcookedItem":{"0":{"oreDict":["foodShrimpcooked"],"name":"Cooked Shrimp","tr":"熟虾","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:vanishing_block_diamond":{"0":{"name":"Diamond Vanishing Frame","tr":"消失的钻石框架","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:rainbowRod":{"0":{"name":"Rod of the Bifrost","tr":"彩虹桥法杖","tab":"植物魔法","type":"Item","maxStackSize":1,"maxDurability":601}},"GraviSuite:advChainsaw":{"1":{"name":"Advanced Chainsaw","tr":"进阶电锯","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28},"27":{"name":"Advanced Chainsaw","tr":"进阶电锯","tab":"重力护甲","type":"Item","maxStackSize":1,"maxDurability":28}},"miscutils:itemRodWatertightSteel":{"0":{"oreDict":["stickWatertightSteel"],"name":"防水钢杆","tr":"防水钢杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"RIO:item.blank_plate":{"0":{"name":"Blank Plate","tr":"空白芯片","tab":"远程接口","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustZirconiumTetrafluoride":{"0":{"oreDict":["dustZirconiumTetrafluoride"],"name":"四氟化锆粉","tr":"四氟化锆粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellTalonite":{"0":{"oreDict":["cellTalonite"],"name":"铬钴磷酸盐合金单元","tr":"铬钴磷酸盐合金单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:SpeedSlab":{"0":{"name":"Rough Brownstone Slab","tr":"粗质褐岩台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Brownstone Road Slab","tr":"粗质褐岩铺路台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Brownstone Slab","tr":"褐岩台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Brownstone Brick Slab","tr":"褐岩砖台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Brownstone Road Slab","tr":"褐岩铺路石台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Fancy Brownstone Slab","tr":"平滑褐岩砖台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Chiseled Brownstone Slab","tr":"雕琢褐岩砖台阶","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CoinTechnician":{"0":{"name":"Coin \"The Technician 1\"","tr":"技术员币$1","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamLime":{"0":{"name":"Lime","tr":"酸橙","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:tile.Quantinum":{"0":{"oreDict":["blockQuantium"],"name":"Block of Quantium","tr":"量子块","tab":"GTNH: 方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallMaragingSteel350":{"0":{"oreDict":["dustSmallMaragingSteel350"],"name":"小堆马氏体时效钢350粉","tr":"小堆马氏体时效钢350粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"ProjRed|Core:projectred.core.datacard":{"0":{"name":"Data Card","tr":"数据卡","tab":"红石计划:核心","type":"Item","maxStackSize":1,"maxDurability":1}},"Forestry:soil":{"0":{"name":"Humus","tr":"腐殖土","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Bog Earth","tr":"沼泽泥","tab":"林业","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:quartzStairsLavender":{"0":{"name":"Lavender Quartz Stairs","tr":"熏香石英楼梯","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamappleSapling":{"0":{"name":"Apple Sapling","tr":"苹果树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"Botania:stone9SlabFull":{"0":{"name":"Basalt Brick Slab","tr":"玄武岩砖台阶","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:tile.telemetry":{"0":{"name":"Telemetry Unit","tr":"遥感装置","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:chalkheart":{"0":{"name":"Golden Chalk","tr":"金色粉笔","tab":"巫术","type":"Item","maxStackSize":64,"maxDurability":65}},"chisel:limestone_slab":{"0":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Limestone Slab","tr":"石灰岩台阶","tab":"凿工艺|石质方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellCyanoacrylatePolymer":{"0":{"oreDict":["cellCyanoacrylatePolymer"],"name":"氰基丙烯酸酯聚合物单元","tr":"氰基丙烯酸酯聚合物单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"LogisticsPipes:item.remoteOrdererItem":{"0":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"2":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"3":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"4":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"5":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"6":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"7":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"8":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"9":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"10":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"11":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"12":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"13":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"14":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"15":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1},"16":{"name":"Remote Orderer","tr":"远程请求器","tab":"工具","type":"Item","maxStackSize":64,"maxDurability":1}},"thaumicenergistics:cell.microscope":{"0":{"name":"Cell Microscope","tr":"元件显微镜","tab":"神秘能源","type":"Item","maxStackSize":1,"maxDurability":1}},"Natura:boneBag":{"0":{"name":"Bonemeal Bag","tr":"骨粉袋","tab":"自然","type":"Item","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:red_kitchen_floor":{"0":{"name":"Red Kitchen Floor","tr":"红色厨房地板","tab":"懒人厨房","type":"Block","maxStackSize":64,"maxDurability":1}},"sleepingbag:sleepingBag":{"0":{"name":"Sleeping Bag","tr":"睡袋","tab":"装饰性方块","type":"Item","maxStackSize":1,"maxDurability":1}},"miscutils:itemFoilWhiteMetal":{"0":{"oreDict":["foilWhiteMetal"],"name":"白物质箔","tr":"白物质箔","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.ElectricBoatHull":{"0":{"name":"Electric Boat Hull","tr":"电动船船体","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:bbqpulledporkItem":{"0":{"oreDict":["foodBbqpulledpork"],"name":"BBQ Pulled Pork","tr":"烧烤猪肉","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustSmallPolonium":{"0":{"oreDict":["dustSmallPolonium"],"name":"小堆钋粉","tr":"小堆钋粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.NeutroniumItemCasing":{"0":{"oreDict":["itemCasingNeutronium"],"name":"Neutronium Item Casing","tr":"中子外壳","tab":"GTNH: 栏杆与外壳","type":"Item","maxStackSize":64,"maxDurability":1}},"tectech:item.tm.itemTeslaComponent":{"0":{"name":"Electrum Tesla Windings","tr":"琥珀金特斯拉绕组","tab":"","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"name":"Superconductive Tesla Windings","tr":"超导特斯拉绕组","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustUraniumHexafluoride":{"0":{"oreDict":["dustUraniumHexafluoride"],"name":"六氟化铀粉","tr":"六氟化铀粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:crushedCentrifugedZirconolite":{"0":{"oreDict":["crushedCentrifugedZirconolite"],"name":"Centrifuged Crushed Zirconolite Ore","tr":"离心钛锆酸钙矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BuildCraft|Transport:item.buildcraftPipe.pipeitemsgold":{"0":{"name":"Golden Transport Pipe","tr":"金质管道","tab":"建筑|管道","type":"Item","maxStackSize":64,"maxDurability":1}},"ForbiddenMagic:DiabolistFork":{"0":{"name":"Diabolist Fork","tr":"妖魔之叉","tab":"禁忌魔法","type":"Item","maxStackSize":1,"maxDurability":401}},"TConstruct:molten.quartz":{"0":{"name":"Molten Nether Quartz","tr":"熔融下界石英","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:donutItem":{"0":{"oreDict":["foodDonut"],"name":"Donut","tr":"甜甜圈","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"ThaumicTinkerer:protoclay":{"0":{"name":"Protoclay","tr":"息壤","tab":"神秘工匠","type":"Item","maxStackSize":1,"maxDurability":1}},"TGregworks:tGregToolPartFrypanHead":{"1536":{"name":"精金 Pan","tr":"精金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1537":{"name":"神秘蓝金 Pan","tr":"神秘蓝金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1538":{"name":"琥珀 Pan","tr":"琥珀 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1539":{"name":"纯镃 Pan","tr":"纯镃 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1540":{"name":"谐镃 Pan","tr":"谐镃 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1541":{"name":"聚氯乙烯 Pan","tr":"聚氯乙烯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1542":{"name":"永恒 Pan","tr":"永恒 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1543":{"name":"磁物质 Pan","tr":"磁物质 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1544":{"name":"赛特斯石英 Pan","tr":"赛特斯石英 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1545":{"name":"暗影秘银 Pan","tr":"暗影秘银 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1546":{"name":"玄铁 Pan","tr":"玄铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1547":{"name":"戴斯 Pan","tr":"戴斯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1548":{"name":"铿铀 Pan","tr":"铿铀 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1549":{"name":"通流琥珀金 Pan","tr":"通流琥珀金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1550":{"name":"末影粗胚 Pan","tr":"末影粗胚 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1551":{"name":"末影(te) Pan","tr":"末影(te) 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1553":{"name":"炽热的钢 Pan","tr":"炽热的钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1554":{"name":"火石 Pan","tr":"火石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1555":{"name":"力量 Pan","tr":"力量 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1556":{"name":"石墨 Pan","tr":"石墨 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1557":{"name":"石墨烯 Pan","tr":"石墨烯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1562":{"name":"注魔金 Pan","tr":"注魔金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1563":{"name":"风之魔晶 Pan","tr":"风之魔晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1564":{"name":"火之魔晶 Pan","tr":"火之魔晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1565":{"name":"地之魔晶 Pan","tr":"地之魔晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1566":{"name":"水之魔晶 Pan","tr":"水之魔晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1567":{"name":"混沌魔晶 Pan","tr":"混沌魔晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1568":{"name":"秩序魔晶 Pan","tr":"秩序魔晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1570":{"name":"玉 Pan","tr":"玉 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1571":{"name":"碧玉 Pan","tr":"碧玉 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1572":{"name":"陨铁 Pan","tr":"陨铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1573":{"name":"陨钢 Pan","tr":"陨钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1574":{"name":"硅岩 Pan","tr":"硅岩 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1575":{"name":"硅岩合金 Pan","tr":"硅岩合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1576":{"name":"富集硅岩 Pan","tr":"富集硅岩 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1577":{"name":"超能硅岩 Pan","tr":"超能硅岩 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1578":{"name":"下界石英 Pan","tr":"下界石英 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1579":{"name":"下界之星 Pan","tr":"下界之星 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1582":{"name":"三钛 Pan","tr":"三钛 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1583":{"name":"虚空 Pan","tr":"虚空 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1584":{"name":"胶木 Pan","tr":"胶木 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1585":{"name":"幽冥剧毒结晶 Pan","tr":"幽冥剧毒结晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1586":{"name":"强化 Pan","tr":"强化 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1587":{"name":"铱锇合金 Pan","tr":"铱锇合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1588":{"name":"阳光化合物 Pan","tr":"阳光化合物 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1589":{"name":"魂金 Pan","tr":"魂金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1590":{"name":"蓝黄玉 Pan","tr":"蓝黄玉 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1591":{"name":"黄铜 Pan","tr":"黄铜 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1592":{"name":"白铜 Pan","tr":"白铜 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1593":{"name":"深渊铁 Pan","tr":"深渊铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1594":{"name":"钻石 Pan","tr":"钻石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1595":{"name":"琥珀金 Pan","tr":"琥珀金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1596":{"name":"绿宝石 Pan","tr":"绿宝石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1597":{"name":"强化混合晶 Pan","tr":"强化混合晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1598":{"name":"混合晶 Pan","tr":"混合晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1599":{"name":"绿色蓝宝石 Pan","tr":"绿色蓝宝石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1600":{"name":"殷钢 Pan","tr":"殷钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1601":{"name":"坎塔尔合金 Pan","tr":"坎塔尔合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1602":{"name":"镁铝合金 Pan","tr":"镁铝合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1603":{"name":"镍铬合金 Pan","tr":"镍铬合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1604":{"name":"玄钢 Pan","tr":"玄钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1605":{"name":"生铁 Pan","tr":"生铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1606":{"name":"聚乙烯 Pan","tr":"聚乙烯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1607":{"name":"环氧树脂 Pan","tr":"环氧树脂 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1608":{"name":"硅橡胶 Pan","tr":"硅橡胶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1609":{"name":"聚己内酰胺 Pan","tr":"聚己内酰胺 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1610":{"name":"聚四氟乙烯 Pan","tr":"聚四氟乙烯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1611":{"name":"蓝宝石 Pan","tr":"蓝宝石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1612":{"name":"不锈钢 Pan","tr":"不锈钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1613":{"name":"坦桑石 Pan","tr":"坦桑石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1614":{"name":"锡铁合金 Pan","tr":"锡铁合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1615":{"name":"黄玉 Pan","tr":"黄玉 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1616":{"name":"哈氏合金 Pan","tr":"哈氏合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1617":{"name":"锻铁 Pan","tr":"锻铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1618":{"name":"铁木 Pan","tr":"铁木 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1619":{"name":"橄榄石 Pan","tr":"橄榄石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1620":{"name":"蛋白石 Pan","tr":"蛋白石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1621":{"name":"紫水晶 Pan","tr":"紫水晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1622":{"name":"暗影金属 Pan","tr":"暗影金属 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1623":{"name":"暗影铁 Pan","tr":"暗影铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1624":{"name":"暗影钢 Pan","tr":"暗影钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1625":{"name":"钢叶 Pan","tr":"钢叶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1626":{"name":"骑士金属 Pan","tr":"骑士金属 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1627":{"name":"标准纯银 Pan","tr":"标准纯银 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1628":{"name":"玫瑰金 Pan","tr":"玫瑰金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1629":{"name":"黑青铜 Pan","tr":"黑青铜 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1630":{"name":"铋青铜 Pan","tr":"铋青铜 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1631":{"name":"黑钢 Pan","tr":"黑钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1632":{"name":"红钢 Pan","tr":"红钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1633":{"name":"蓝钢 Pan","tr":"蓝钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1634":{"name":"大马士革钢 Pan","tr":"大马士革钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1635":{"name":"充能合金 Pan","tr":"充能合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1636":{"name":"脉冲合金 Pan","tr":"脉冲合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1637":{"name":"星辰银 Pan","tr":"星辰银 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1638":{"name":"钴黄铜 Pan","tr":"钴黄铜 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1639":{"name":"红石榴石 Pan","tr":"红石榴石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1640":{"name":"黄石榴石 Pan","tr":"黄石榴石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1641":{"name":"温特姆 Pan","tr":"温特姆 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1642":{"name":"黑花岗岩 Pan","tr":"黑花岗岩 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1643":{"name":"红花岗岩 Pan","tr":"红花岗岩 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1644":{"name":"白石棉 Pan","tr":"白石棉 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1645":{"name":"雄黄 Pan","tr":"雄黄 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1646":{"name":"磁化铁 Pan","tr":"磁化铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1647":{"name":"磁化钢 Pan","tr":"磁化钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1648":{"name":"磁化钕 Pan","tr":"磁化钕 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1649":{"name":"碳化钨 Pan","tr":"碳化钨 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1650":{"name":"钒钢 Pan","tr":"钒钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1651":{"name":"高速钢-G Pan","tr":"高速钢-G 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1652":{"name":"高速钢-E Pan","tr":"高速钢-E 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1653":{"name":"高速钢-S Pan","tr":"高速钢-S 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1654":{"name":"深铅 Pan","tr":"深铅 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1655":{"name":"量子 Pan","tr":"量子 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1656":{"name":"深空秘银 Pan","tr":"深空秘银 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1657":{"name":"黑钚 Pan","tr":"黑钚 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1658":{"name":"木卫四冰 Pan","tr":"木卫四冰 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1659":{"name":"硬铝 Pan","tr":"硬铝 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1660":{"name":"奥利哈钢 Pan","tr":"奥利哈钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1661":{"name":"三元金属 Pan","tr":"三元金属 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1662":{"name":"聚苯硫醚 Pan","tr":"聚苯硫醚 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1663":{"name":"聚苯乙烯 Pan","tr":"聚苯乙烯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1664":{"name":"丁苯橡胶 Pan","tr":"丁苯橡胶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1665":{"name":"镍锌铁氧体 Pan","tr":"镍锌铁氧体 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1666":{"name":"纤维强化的环氧树脂 Pan","tr":"纤维强化的环氧树脂 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1667":{"name":"磁化钐 Pan","tr":"磁化钐 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1668":{"name":"无尽催化剂 Pan","tr":"无尽催化剂 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1670":{"name":"聚苯并咪唑 Pan","tr":"聚苯并咪唑 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1672":{"name":" Pan","tr":" 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1673":{"name":"钛铂钒合金 Pan","tr":"钛铂钒合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1674":{"name":"时空 Pan","tr":"时空 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1675":{"name":"大理石 Pan","tr":"大理石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1676":{"name":"神秘水晶 Pan","tr":"神秘水晶 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1677":{"name":"末影钢 Pan","tr":"末影钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1678":{"name":"复合粘土 Pan","tr":"复合粘土 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1679":{"name":"晶化合金 Pan","tr":"晶化合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1680":{"name":"旋律合金 Pan","tr":"旋律合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1681":{"name":"恒星合金 Pan","tr":"恒星合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1682":{"name":"晶化粉红史莱姆 Pan","tr":"晶化粉红史莱姆 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1683":{"name":"充能银 Pan","tr":"充能银 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1684":{"name":"生动合金 Pan","tr":"生动合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1685":{"name":"灵宝 Pan","tr":"灵宝 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1686":{"name":"超时空金属 Pan","tr":"超时空金属 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1687":{"name":"活石 Pan","tr":"活石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1688":{"name":"盖亚之魂 Pan","tr":"盖亚之魂 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1689":{"name":"活木 Pan","tr":"活木 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1690":{"name":"梦之木 Pan","tr":"梦之木 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1691":{"name":"泡铋 Pan","tr":"泡铋 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1692":{"name":"立方氧化锆 Pan","tr":"立方氧化锆 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1693":{"name":"氟铁电气石 Pan","tr":"氟铁电气石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1694":{"name":"铬铝电气石 Pan","tr":"铬铝电气石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1695":{"name":"钒镁电气石 Pan","tr":"钒镁电气石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1696":{"name":"铝电气石 Pan","tr":"铝电气石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1697":{"name":"红锆石 Pan","tr":"红锆石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1698":{"name":"铁橄榄石 Pan","tr":"铁橄榄石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1699":{"name":"镁橄榄石 Pan","tr":"镁橄榄石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1700":{"name":"钙铁辉石 Pan","tr":"钙铁辉石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1701":{"name":"钍-232 Pan","tr":"钍-232 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1702":{"name":"堇云石 Pan","tr":"堇云石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1703":{"name":"磁共振石 Pan","tr":"磁共振石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1704":{"name":"锎 Pan","tr":"锎 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1705":{"name":"BArTiMaEuSNeK Pan","tr":"BArTiMaEuSNeK 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1706":{"name":"钌 Pan","tr":"钌 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1707":{"name":"铑 Pan","tr":"铑 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1708":{"name":"镀铑钯 Pan","tr":"镀铑钯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1709":{"name":"泰伯利亚 Pan","tr":"泰伯利亚 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1710":{"name":"钌铱合金 Pan","tr":"钌铱合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1711":{"name":"氟石 Pan","tr":"氟石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1712":{"name":"高耐久性复合钢 Pan","tr":"高耐久性复合钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1713":{"name":"硬钢 Pan","tr":"硬钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1714":{"name":"合成玉 Pan","tr":"合成玉 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1715":{"name":"原子分离催化剂 Pan","tr":"原子分离催化剂 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1716":{"name":"极不稳定硅岩 Pan","tr":"极不稳定硅岩 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1717":{"name":"锌钍合金 Pan","tr":"锌钍合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1718":{"name":"锆锡合金-4 Pan","tr":"锆锡合金-4 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1719":{"name":"锆锡合金-2 Pan","tr":"锆锡合金-2 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1720":{"name":"耐热铬铁合金-903 Pan","tr":"耐热铬铁合金-903 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1721":{"name":"精金合金 Pan","tr":"精金合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1722":{"name":"MAR-M200特种钢 Pan","tr":"MAR-M200特种钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1723":{"name":"MAR-Ce-M200特种钢 Pan","tr":"MAR-Ce-M200特种钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1724":{"name":"氯化锂 Pan","tr":"氯化锂 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1725":{"name":"信素 Pan","tr":"信素 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1726":{"name":"流明 Pan","tr":"流明 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1727":{"name":"阿瑟锡 Pan","tr":"阿瑟锡 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1728":{"name":"钛钼合金β-C Pan","tr":"钛钼合金β-C 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1729":{"name":"大力合金 Pan","tr":"大力合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1730":{"name":"光素 Pan","tr":"光素 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1731":{"name":"对立合金 Pan","tr":"对立合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1732":{"name":"稀有金属合金 Pan","tr":"稀有金属合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1733":{"name":"富集硅岩合金 Pan","tr":"富集硅岩合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1734":{"name":"亚稳态鿫 Pan","tr":"亚稳态鿫 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1735":{"name":"调律源金 Pan","tr":"调律源金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1740":{"name":"魔钢 Pan","tr":"魔钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1741":{"name":"泰拉钢 Pan","tr":"泰拉钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1742":{"name":"源质钢 Pan","tr":"源质钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1743":{"name":"磁流体约束恒星物质 Pan","tr":"磁流体约束恒星物质 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1744":{"name":"白矮星物质 Pan","tr":"白矮星物质 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1745":{"name":"黑矮星物质 Pan","tr":"黑矮星物质 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1746":{"name":"宇宙素 Pan","tr":"宇宙素 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1500":{"name":"铝 Pan","tr":"铝 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1501":{"name":"铍 Pan","tr":"铍 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1502":{"name":"铋 Pan","tr":"铋 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1503":{"name":"碳 Pan","tr":"碳 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1504":{"name":"铬 Pan","tr":"铬 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1505":{"name":"金 Pan","tr":"金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1506":{"name":"铱 Pan","tr":"铱 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1507":{"name":"铅 Pan","tr":"铅 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1508":{"name":"锰 Pan","tr":"锰 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1509":{"name":"钼 Pan","tr":"钼 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1510":{"name":"钕 Pan","tr":"钕 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1511":{"name":"中子 Pan","tr":"中子 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1512":{"name":"镍 Pan","tr":"镍 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1513":{"name":"锇 Pan","tr":"锇 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1514":{"name":"钯 Pan","tr":"钯 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1515":{"name":"铂 Pan","tr":"铂 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1516":{"name":"钚-239 Pan","tr":"钚-239 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1517":{"name":"钚-241 Pan","tr":"钚-241 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1518":{"name":"银 Pan","tr":"银 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1519":{"name":"钍 Pan","tr":"钍 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1520":{"name":"钛 Pan","tr":"钛 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1521":{"name":"钨 Pan","tr":"钨 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1522":{"name":"铀-238 Pan","tr":"铀-238 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1523":{"name":"铀-235 Pan","tr":"铀-235 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1524":{"name":"红宝石 Pan","tr":"红宝石 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1525":{"name":"红石合金 Pan","tr":"红石合金 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1526":{"name":"终末 Pan","tr":"终末 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1527":{"name":"导电铁 Pan","tr":"导电铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1528":{"name":"磁钢 Pan","tr":"磁钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1529":{"name":"钨钢 Pan","tr":"钨钢 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1530":{"name":"烈焰 Pan","tr":"烈焰 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1531":{"name":"脉冲铁 Pan","tr":"脉冲铁 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1532":{"name":"龙 Pan","tr":"龙 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1533":{"name":"觉醒龙 Pan","tr":"觉醒龙 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1534":{"name":"褐铜 Pan","tr":"褐铜 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1},"1535":{"name":"山铜 Pan","tr":"山铜 盘","tab":"匠魂|GT材料","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestthenether:netherLog":{"0":{"oreDict":["logWood"," treeWood"],"name":"Nether Log","tr":"下界原木","tab":"下界丰收","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockMachineManagerName":{"0":{"name":"Machine Inventory Manager","tr":"工厂管理器","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:grapejellyItem":{"0":{"oreDict":["foodGrapejelly"],"name":"Grape Jelly","tr":"葡萄果酱","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:slabGCHalf":{"0":{"name":"Tin Decoration Slab","tr":"装饰锡制台阶","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Tin Decoration Slab","tr":"装饰锡制台阶","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Moon Rock Slab","tr":"月岩台阶","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Moon Dungeon Brick Slab","tr":"月球地牢砖块台阶","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Mars Cobblestone Slab","tr":"火星圆石台阶","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Mars Dungeon Brick Slab","tr":"火星地牢砖台阶","tab":"星系|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"IC2:itemDebug":{"0":{"name":"Debug Item","tr":"调试物品","tab":"","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFWoodStairsMine":{"0":{"name":"Minewood Stairs","tr":"矿工树楼梯","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:boundLeggingsFire":{"0":{"name":"Fire Omega Leggings","tr":"火`欧米伽护腿","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1001}},"miscutils:itemScrewStrontium":{"0":{"oreDict":["screwStrontium"],"name":"锶螺丝","tr":"锶螺丝","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"computronics:computronics.speechBox":{"0":{"name":"Speech Box","tr":"语音盒","tab":"计算机电子学","type":"Block","maxStackSize":64,"maxDurability":1}},"appliedenergistics2:tile.SkyStoneSmallBrickSlabBlock":{"0":{"name":"Sky Stone Small Brick Slabs","tr":"陨石砖块台阶","tab":"应用能源2","type":"Block","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.RuneOfPowerFragment":{"0":{"name":"Rune of Power Fragment","tr":"力量符文碎片","tab":"GTNH: 物品","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.KnightmetalBlock":{"0":{"name":"Block of Knightmetal","tr":"骑士金属块","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"BiblioCraft:BiblioStuffs":{"0":{"name":"Cookie Jar","tr":"曲奇罐","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Dinner Plate","tr":"餐盘","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Disc Rack","tr":"唱片架","tab":"BiblioCraft","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongBlackMetal":{"0":{"oreDict":["stickLongBlackMetal"],"name":"长黑物质杆","tr":"长黑物质杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Botania:quartzSlabManaHalf":{"0":{"name":"Mana Quartz Slab","tr":"魔力石英台阶","tab":"植物魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltMaragingSteel350":{"0":{"oreDict":["boltMaragingSteel350"],"name":"马氏体时效钢350螺栓","tr":"马氏体时效钢350螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TaintedMagic:ItemFocusMageMace":{"0":{"name":"Wand Focus: Mage\u0027s Mace","tr":"法杖核心:法师之锤","tab":"污秽魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"Railcraft:part.turbine.disk":{"0":{"name":"Turbine Disk","tr":"涡轮机轮盘","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersCollapsibleBlock":{"0":{"name":"Carpenter\u0027s Collapsible Block","tr":"木匠折叠方块","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:iceslab":{"0":{"name":"Ice Slab","tr":"冰台阶","tab":"巫术","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:canEmpty":{"0":{"name":"Can","tr":"罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pampeachSapling":{"0":{"name":"Peach Sapling","tr":"桃子树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:pearsmoothieItem":{"0":{"oreDict":["foodPearsmoothie"," listAllsmoothie"],"name":"Pear Smoothie","tr":"梨子冰沙","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"Automagy:blockHourglass":{"0":{"name":"Hourglass","tr":"沙漏","tab":"自动化魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"Railcraft:cart.undercutter":{"0":{"name":"Undercutter Cart","tr":"路基替换车","tab":"交通运输","type":"Item","maxStackSize":3,"maxDurability":1}},"miscutils:itemDustAncientGranite":{"0":{"oreDict":["dustAncientGranite"],"name":"古花岗岩粉","tr":"古花岗岩粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltTitansteel":{"0":{"oreDict":["boltTitansteel"],"name":"泰坦精钢螺栓","tr":"泰坦精钢螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.oxygenConcentrator":{"0":{"name":"Oxygen Concentrator","tr":"氧气浓缩器","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"chisel:road_line":{"0":{"name":"Road Lines","tr":"道路标线","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Road Lines","tr":"道路标线","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Road Lines","tr":"道路标线","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Road Lines","tr":"道路标线","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Road Lines","tr":"道路标线","tab":"凿工艺|其它方块","type":"Block","maxStackSize":64,"maxDurability":1}},"ThaumicHorizons:Golemancy Bell TH":{"0":{"name":"Golemancer\u0027s Bell_TH","tr":"傀儡使铃铛(TC)","tab":"神秘视界","type":"Item","maxStackSize":1,"maxDurability":1}},"dreamcraft:item.EngineeringProcessorSpatialPulsatingCore":{"0":{"name":"Spatial Processor Tier I","tr":"空间处理器 I","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.CastleDoorVanished":{"0":{"name":"Blue Castle Door","tr":"蓝色城堡门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Yellow Castle Door","tr":"黄色城堡门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Pink Castle Door","tr":"粉色城堡门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Violet Castle Door","tr":"紫色城堡门","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:stuffedmushroomItem":{"0":{"oreDict":["foodStuffedmushroom"],"name":"Stuffed Mushroom","tr":"瓤冬菇盒","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"TConstruct:SearedBlockNether":{"0":{"name":"Casting Table","tr":"浇铸台","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Seared Faucet","tr":"浇注口","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Casting Basin","tr":"铸造盆","tab":"匠魂|方块","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:voidSigil":{"0":{"name":"Void Sigil","tr":"虚空印记","tab":"血魔法","type":"Item","maxStackSize":1,"maxDurability":1}},"ExtraUtilities:color_stonebrick":{"0":{"oreDict":["cobblestoneBlack"," stoneCobble"," cobblestone"],"name":"Colored Cobblestone (White Frequency)","tr":"染色 圆石 (白色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["stoneCobble"," cobblestoneRed"," cobblestone"],"name":"Colored Cobblestone (Orange Frequency)","tr":"染色 圆石 (橙色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["stoneCobble"," cobblestoneGreen"," cobblestone"],"name":"Colored Cobblestone (Magenta Frequency)","tr":"染色 圆石 (品红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["stoneCobble"," cobblestoneBrown"," cobblestone"],"name":"Colored Cobblestone (Light Blue Frequency)","tr":"染色 圆石 (淡蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["stoneCobble"," cobblestoneBlue"," cobblestone"],"name":"Colored Cobblestone (Yellow Frequency)","tr":"染色 圆石 (黄色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["stoneCobble"," cobblestonePurple"," cobblestone"],"name":"Colored Cobblestone (Lime Frequency)","tr":"染色 圆石 (黄绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"oreDict":["stoneCobble"," cobblestone"," cobblestoneCyan"],"name":"Colored Cobblestone (Pink Frequency)","tr":"染色 圆石 (粉色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"oreDict":["stoneCobble"," cobblestone"," cobblestoneLightGray"],"name":"Colored Cobblestone (Gray Frequency)","tr":"染色 圆石 (灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"oreDict":["stoneCobble"," cobblestone"," cobblestoneGray"],"name":"Colored Cobblestone (Light Gray Frequency)","tr":"染色 圆石 (淡灰色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"oreDict":["stoneCobble"," cobblestone"," cobblestonePink"],"name":"Colored Cobblestone (Cyan Frequency)","tr":"染色 圆石 (青色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"oreDict":["cobblestoneLime"," stoneCobble"," cobblestone"],"name":"Colored Cobblestone (Purple Frequency)","tr":"染色 圆石 (紫色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"oreDict":["cobblestoneYellow"," stoneCobble"," cobblestone"],"name":"Colored Cobblestone (Blue Frequency)","tr":"染色 圆石 (蓝色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"oreDict":["cobblestoneLightBlue"," stoneCobble"," cobblestone"],"name":"Colored Cobblestone (Brown Frequency)","tr":"染色 圆石 (棕色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"oreDict":["cobblestoneMagenta"," stoneCobble"," cobblestone"],"name":"Colored Cobblestone (Green Frequency)","tr":"染色 圆石 (绿色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"oreDict":["cobblestoneOrange"," stoneCobble"," cobblestone"],"name":"Colored Cobblestone (Red Frequency)","tr":"染色 圆石 (红色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"oreDict":["cobblestoneWhite"," stoneCobble"," cobblestone"],"name":"Colored Cobblestone (Black Frequency)","tr":"染色 圆石 (黑色)","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:generator.64":{"0":{"name":"Survivalist Generator","tr":"生存者发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"name":"Furnace Generator","tr":"熔炉发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Lava Generator","tr":"岩浆发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Ender Generator","tr":"末影发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Heated Redstone Generator","tr":"高热红石发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Culinary Generator","tr":"厨用发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Potions Generator","tr":"药水发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Solar Generator","tr":"太阳能发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"TNT Generator","tr":"TNT发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Pink Generator","tr":"粉之发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"High-temperature Furnace Generator","tr":"高温熔炉发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Nether Star Generator","tr":"下界之星发电机","tab":"更多实用设备","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenBlocks:drawingtable":{"0":{"name":"Drawing Table","tr":"绘图桌","tab":"开放式方块","type":"Block","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:stoneSingleSlab":{"0":{"name":"Mud Bricks Slab","tr":"泥砖台阶","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"OpenComputers:print":{"0":{"name":"3D Print","tr":"3D打印件","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAgarditeLa":{"0":{"oreDict":["dustTinyAgarditeLa"],"name":"小撮钇砷铜矿(La)粉","tr":"小撮钇砷铜矿(La)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"dreamcraft:item.CircuitUV":{"0":{"oreDict":["circuitSuperconductor"],"name":"Any UV Circuit","tr":"任意UV电路板","tab":"GTNH: 电路","type":"Item","maxStackSize":64,"maxDurability":1}},"witchery:divinerwater":{"0":{"name":"Water Diviner","tr":"水源探测符","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":51}},"RIO:item.pda":{"0":{"name":"PDA","tr":"掌上电脑","tab":"远程接口","type":"Item","maxStackSize":1,"maxDurability":1}},"gregtech:gt.metaitem.02":{"16384":{"oreDict":["turbineBladeGalgadorian"],"name":"混合晶锭涡轮扇叶","tr":"混合晶锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24576":{"oreDict":["springTPVAlloy"],"name":"钛铂钒合金弹簧","tr":"钛铂钒合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16385":{"oreDict":["turbineBladeEnhancedGalgadorian"],"name":"强化混合晶锭涡轮扇叶","tr":"强化混合晶锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16386":{"oreDict":["turbineBladeManyullyn"],"name":"玛玉灵涡轮扇叶","tr":"玛玉灵涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16387":{"oreDict":["turbineBladeMytryl"],"name":"深空秘银涡轮扇叶","tr":"深空秘银涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16388":{"oreDict":["turbineBladeBlackPlutonium"],"name":"黑钚涡轮扇叶","tr":"黑钚涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16389":{"oreDict":["turbineBladeCallistoIce"],"name":"木卫四冰涡轮扇叶","tr":"木卫四冰涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20485":{"oreDict":["gearGtSmallAlduorite"],"name":"小型神秘蓝金齿轮","tr":"小型神秘蓝金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24581":{"oreDict":["springTranscendentMetal"],"name":"超时空金属弹簧","tr":"超时空金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16390":{"oreDict":["turbineBladeLedox"],"name":"深铅涡轮扇叶","tr":"深铅涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24582":{"oreDict":["springEnrichedHolmium"],"name":"富集钬弹簧","tr":"富集钬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16391":{"oreDict":["turbineBladeQuantium"],"name":"量子锭涡轮扇叶","tr":"量子锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24583":{"oreDict":["springMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质弹簧","tr":"磁流体约束恒星物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16392":{"oreDict":["turbineBladeDuralumin"],"name":"硬铝涡轮扇叶","tr":"硬铝涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20488":{"oreDict":["gearGtSmallRubracium"],"name":"小型褐铜齿轮","tr":"小型褐铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16393":{"oreDict":["turbineBladeOriharukon"],"name":"奥利哈钢涡轮扇叶","tr":"奥利哈钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20489":{"oreDict":["gearGtSmallVulcanite"],"name":"小型胶木齿轮","tr":"小型胶木齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24585":{"oreDict":["springWhiteDwarfMatter"],"name":"白矮星物质弹簧","tr":"白矮星物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16394":{"oreDict":["turbineBladeInfinityCatalyst"],"name":"无尽催化剂涡轮扇叶","tr":"无尽催化剂涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24586":{"oreDict":["springBlackDwarfMatter"],"name":"黑矮星物质弹簧","tr":"黑矮星物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24588":{"oreDict":["springSpaceTime"],"name":"时空弹簧","tr":"时空弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16397":{"oreDict":["turbineBladeInfinity"],"name":"无尽涡轮扇叶","tr":"无尽涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16398":{"oreDict":["turbineBladeMysteriousCrystal"],"name":"神秘水晶涡轮扇叶","tr":"神秘水晶涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16399":{"oreDict":["turbineBladeSamariumMagnetic"],"name":"磁化钐涡轮扇叶","tr":"磁化钐涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16400":{"oreDict":["turbineBladeAlumite"],"name":"耐酸铝涡轮扇叶","tr":"耐酸铝涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16401":{"oreDict":["turbineBladeEndSteel"],"name":"末影钢涡轮扇叶","tr":"末影钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16402":{"oreDict":["turbineBladeCrudeSteel"],"name":"复合粘土涡轮扇叶","tr":"复合粘土涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16403":{"oreDict":["turbineBladeCrystallineAlloy"],"name":"晶化合金涡轮扇叶","tr":"晶化合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16404":{"oreDict":["turbineBladeMelodicAlloy"],"name":"旋律合金涡轮扇叶","tr":"旋律合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20500":{"oreDict":["gearGtSmallDiamond"],"name":"小型钻石齿轮","tr":"小型钻石齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16405":{"oreDict":["turbineBladeStellarAlloy"],"name":"恒星合金涡轮扇叶","tr":"恒星合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16406":{"oreDict":["turbineBladeCrystallinePinkSlime"],"name":"晶化粉红史莱姆涡轮扇叶","tr":"晶化粉红史莱姆涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16407":{"oreDict":["turbineBladeEnergeticSilver"],"name":"充能银涡轮扇叶","tr":"充能银涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24599":{"oreDict":["springPolybenzimidazole"],"name":"聚苯并咪唑弹簧","tr":"聚苯并咪唑弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16408":{"oreDict":["turbineBladeVividAlloy"],"name":"生动合金涡轮扇叶","tr":"生动合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24610":{"oreDict":["springEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂弹簧","tr":"纤维强化的环氧树脂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24613":{"oreDict":["springNickelZincFerrite"],"name":"镍锌铁氧体弹簧","tr":"镍锌铁氧体弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20521":{"oreDict":["gearGtSmallForce"],"name":"小型力量齿轮","tr":"小型力量齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20529":{"oreDict":["gearGtSmallVinteum"],"name":"小型温特姆齿轮","tr":"小型温特姆齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24631":{"oreDict":["springPolyphenyleneSulfide"],"name":"聚苯硫醚弹簧","tr":"聚苯硫醚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24635":{"oreDict":["springAnySyntheticRubber"," springStyreneButadieneRubber"," springAnyRubber"],"name":"丁苯橡胶弹簧","tr":"丁苯橡胶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20540":{"oreDict":["gearGtSmallInfusedAir"],"name":"小型风之魔晶齿轮","tr":"小型风之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24636":{"oreDict":["springPolystyrene"],"name":"聚苯乙烯弹簧","tr":"聚苯乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20541":{"oreDict":["gearGtSmallInfusedFire"],"name":"小型火之魔晶齿轮","tr":"小型火之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20542":{"oreDict":["gearGtSmallInfusedEarth"],"name":"小型地之魔晶齿轮","tr":"小型地之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20543":{"oreDict":["gearGtSmallInfusedWater"],"name":"小型水之魔晶齿轮","tr":"小型水之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20544":{"oreDict":["gearGtSmallInfusedEntropy"],"name":"小型混沌魔晶齿轮","tr":"小型混沌魔晶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20545":{"oreDict":["gearGtSmallInfusedOrder"],"name":"小型秩序魔晶齿轮","tr":"小型秩序魔晶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24649":{"oreDict":["springPolyvinylChloride"],"name":"聚氯乙烯弹簧","tr":"聚氯乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16470":{"oreDict":["turbineBladeEpoxid"],"name":"环氧树脂涡轮扇叶","tr":"环氧树脂涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16472":{"oreDict":["turbineBladePolycaprolactam"],"name":"聚己内酰胺涡轮扇叶","tr":"聚己内酰胺涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20576":{"oreDict":["gearGtSmallTPVAlloy"],"name":"小型钛铂钒合金齿轮","tr":"小型钛铂钒合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16485":{"oreDict":["turbineBladeAlduorite"],"name":"神秘蓝金涡轮扇叶","tr":"神秘蓝金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20581":{"oreDict":["gearGtSmallTranscendentMetal"],"name":"小型超时空金属齿轮","tr":"小型超时空金属齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20583":{"oreDict":["gearGtSmallMagnetohydrodynamicallyConstrainedStarMatter"],"name":"小型磁流体约束恒星物质齿轮","tr":"小型磁流体约束恒星物质齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16488":{"oreDict":["turbineBladeRubracium"],"name":"褐铜涡轮扇叶","tr":"褐铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16489":{"oreDict":["turbineBladeVulcanite"],"name":"胶木涡轮扇叶","tr":"胶木涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20585":{"oreDict":["gearGtSmallWhiteDwarfMatter"],"name":"小型白矮星物质齿轮","tr":"小型白矮星物质齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20586":{"oreDict":["gearGtSmallBlackDwarfMatter"],"name":"小型黑矮星物质齿轮","tr":"小型黑矮星物质齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20588":{"oreDict":["gearGtSmallSpaceTime"],"name":"小型时空齿轮","tr":"小型时空齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20599":{"oreDict":["gearGtSmallPolybenzimidazole"],"name":"小型聚苯并咪唑齿轮","tr":"小型聚苯并咪唑齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20610":{"oreDict":["gearGtSmallEpoxidFiberReinforced"],"name":"小型纤维强化的环氧树脂齿轮","tr":"小型纤维强化的环氧树脂齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20613":{"oreDict":["gearGtSmallNickelZincFerrite"],"name":"小型镍锌铁氧体齿轮","tr":"小型镍锌铁氧体齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16521":{"oreDict":["turbineBladeForce"],"name":"力量涡轮扇叶","tr":"力量涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16529":{"oreDict":["turbineBladeVinteum"],"name":"温特姆涡轮扇叶","tr":"温特姆涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20631":{"oreDict":["gearGtSmallPolyphenyleneSulfide"],"name":"小型聚苯硫醚齿轮","tr":"小型聚苯硫醚齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16537":{"oreDict":["turbineBladeJade"],"name":"玉涡轮扇叶","tr":"玉涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20635":{"oreDict":["gearGtSmallStyreneButadieneRubber"," gearGtSmallAnyRubber"," gearGtSmallAnySyntheticRubber"],"name":"小型丁苯橡胶齿轮","tr":"小型丁苯橡胶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20636":{"oreDict":["gearGtSmallPolystyrene"],"name":"小型聚苯乙烯齿轮","tr":"小型聚苯乙烯齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20649":{"oreDict":["gearGtSmallPolyvinylChloride"],"name":"小型聚氯乙烯齿轮","tr":"小型聚氯乙烯齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24765":{"oreDict":["springKevlar"],"name":"凯芙拉弹簧","tr":"凯芙拉弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16576":{"oreDict":["turbineBladeTPVAlloy"],"name":"钛铂钒合金涡轮扇叶","tr":"钛铂钒合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24770":{"oreDict":["springHeeEndium"],"name":"终末锭弹簧","tr":"终末锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24772":{"oreDict":["springNickelAluminide"],"name":"铝化镍弹簧","tr":"铝化镍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16581":{"oreDict":["turbineBladeTranscendentMetal"],"name":"超时空金属涡轮扇叶","tr":"超时空金属涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16585":{"oreDict":["turbineBladeWhiteDwarfMatter"],"name":"白矮星物质涡轮扇叶","tr":"白矮星物质涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16586":{"oreDict":["turbineBladeBlackDwarfMatter"],"name":"黑矮星物质涡轮扇叶","tr":"黑矮星物质涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16588":{"oreDict":["turbineBladeSpaceTime"],"name":"时空涡轮扇叶","tr":"时空涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28890":{"oreDict":["gemFlawedGlass"],"name":"有瑕的玻璃晶体","tr":"有瑕的玻璃晶体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16610":{"oreDict":["turbineBladeEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂涡轮扇叶","tr":"纤维强化的环氧树脂涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16613":{"oreDict":["turbineBladeNickelZincFerrite"],"name":"镍锌铁氧体涡轮扇叶","tr":"镍锌铁氧体涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24829":{"oreDict":["springDeepIron"],"name":"深渊铁弹簧","tr":"深渊铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24856":{"oreDict":["springSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)弹簧","tr":"太阳能级硅(多晶硅)弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20765":{"oreDict":["gearGtSmallKevlar"],"name":"小型凯芙拉齿轮","tr":"小型凯芙拉齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20770":{"oreDict":["gearGtSmallHeeEndium"],"name":"小型终末锭齿轮","tr":"小型终末锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24868":{"oreDict":["springTrinium"],"name":"三元金属弹簧","tr":"三元金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24874":{"oreDict":["springPlastic"],"name":"聚乙烯弹簧","tr":"聚乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24880":{"oreDict":["springRubber"," springAnyRubber"],"name":"橡胶弹簧","tr":"橡胶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24884":{"oreDict":["springDesh"],"name":"戴斯弹簧","tr":"戴斯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20809":{"oreDict":["gearGtSmallWood"],"name":"小型木齿轮","tr":"小型木齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24912":{"oreDict":["springChrysotile"],"name":"石棉弹簧","tr":"石棉弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24913":{"oreDict":["springRealgar"],"name":"雄黄弹簧","tr":"雄黄弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20844":{"oreDict":["gearGtSmallBasalt"],"name":"小型玄武岩齿轮","tr":"小型玄武岩齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20845":{"oreDict":["gearGtSmallMarble"],"name":"小型大理石齿轮","tr":"小型大理石齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20849":{"oreDict":["gearGtSmallGraniteBlack"],"name":"小型黑花岗岩齿轮","tr":"小型黑花岗岩齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20850":{"oreDict":["gearGtSmallGraniteRed"],"name":"小型红花岗岩齿轮","tr":"小型红花岗岩齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20854":{"oreDict":["gearGtSmallConstructionFoam"],"name":"小型建筑泡沫齿轮","tr":"小型建筑泡沫齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24951":{"oreDict":["springVyroxeres"],"name":"幽冥剧毒结晶弹簧","tr":"幽冥剧毒结晶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24952":{"oreDict":["springCeruclase"],"name":"暗影秘银弹簧","tr":"暗影秘银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24956":{"oreDict":["springTartarite"],"name":"溶火之石弹簧","tr":"溶火之石弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16770":{"oreDict":["turbineBladeHeeEndium"],"name":"终末锭涡轮扇叶","tr":"终末锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20868":{"oreDict":["gearGtSmallTrinium"],"name":"小型三元金属齿轮","tr":"小型三元金属齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24966":{"oreDict":["springOrichalcum"],"name":"山铜弹簧","tr":"山铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20874":{"oreDict":["gearGtSmallPlastic"],"name":"小型聚乙烯齿轮","tr":"小型聚乙烯齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24970":{"oreDict":["springVoid"],"name":"虚空锭弹簧","tr":"虚空锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24974":{"oreDict":["springSuperconductorUEVBase"],"name":"UEV超导粗胚弹簧","tr":"UEV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24975":{"oreDict":["springDraconium"],"name":"龙锭弹簧","tr":"龙锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20880":{"oreDict":["gearGtSmallRubber"," gearGtSmallAnyRubber"],"name":"小型橡胶齿轮","tr":"小型橡胶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24976":{"oreDict":["springDraconiumAwakened"],"name":"觉醒龙锭弹簧","tr":"觉醒龙锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24977":{"oreDict":["springBloodInfusedIron"],"name":"注血铁弹簧","tr":"注血铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24978":{"oreDict":["springIchorium"],"name":"灵宝弹簧","tr":"灵宝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24979":{"oreDict":["springRadoxPoly"],"name":"拉多X聚合物弹簧","tr":"拉多X聚合物弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20884":{"oreDict":["gearGtSmallDesh"],"name":"小型戴斯齿轮","tr":"小型戴斯齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24980":{"oreDict":["springGalliumArsenide"],"name":"砷化镓弹簧","tr":"砷化镓弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24981":{"oreDict":["springIndiumGalliumPhosphide"],"name":"磷化铟镓弹簧","tr":"磷化铟镓弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24982":{"oreDict":["springCosmicNeutronium"],"name":"宇宙中子态素弹簧","tr":"宇宙中子态素弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24984":{"oreDict":["springFlerovium_GT5U"],"name":"弹簧","tr":"弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20889":{"oreDict":["gearGtSmallWoodSealed"],"name":"小型蜡封木齿轮","tr":"小型蜡封木齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24985":{"oreDict":["springLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚弹簧","tr":"UHV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24986":{"oreDict":["springLongasssuperconductornameforuvwire"],"name":"UV超导粗胚弹簧","tr":"UV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24987":{"oreDict":["springPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚弹簧","tr":"MV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24988":{"oreDict":["springTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚弹簧","tr":"HV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24989":{"oreDict":["springUraniumtriplatinid"],"name":"EV超导粗胚弹簧","tr":"EV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24990":{"oreDict":["springVanadiumtriindinid"],"name":"IV超导粗胚弹簧","tr":"IV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24991":{"oreDict":["springTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚弹簧","tr":"LuV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24992":{"oreDict":["springTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚弹簧","tr":"ZPM超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16801":{"oreDict":["turbineBladeBlaze"],"name":"烈焰涡轮扇叶","tr":"烈焰涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20912":{"oreDict":["gearGtSmallChrysotile"],"name":"小型石棉齿轮","tr":"小型石棉齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25008":{"oreDict":["arrowGtWoodBeryllium"],"name":"铍箭","tr":"铍箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20913":{"oreDict":["gearGtSmallRealgar"],"name":"小型雄黄齿轮","tr":"小型雄黄齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25010":{"oreDict":["arrowGtWoodCarbon"],"name":"碳箭","tr":"碳箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16819":{"oreDict":["turbineBladeGraphene"],"name":"石墨烯涡轮扇叶","tr":"石墨烯涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25019":{"oreDict":["arrowGtWoodAluminium"],"name":"铝箭","tr":"铝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16829":{"oreDict":["turbineBladeDeepIron"],"name":"深渊铁涡轮扇叶","tr":"深渊铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25028":{"oreDict":["arrowGtWoodTitanium"],"name":"钛箭","tr":"钛箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25030":{"oreDict":["arrowGtWoodChrome"],"name":"铬箭","tr":"铬箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25031":{"oreDict":["arrowGtWoodManganese"],"name":"锰箭","tr":"锰箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25032":{"oreDict":["arrowGtWoodIron"," arrowGtWoodAnyIron"],"name":"铁箭","tr":"铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25033":{"oreDict":["arrowGtWoodCobalt"],"name":"钴箭","tr":"钴箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25034":{"oreDict":["arrowGtWoodNickel"],"name":"镍箭","tr":"镍箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20952":{"oreDict":["gearGtSmallCeruclase"],"name":"小型暗影秘银齿轮","tr":"小型暗影秘银齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25048":{"oreDict":["arrowGtWoodMolybdenum"],"name":"钼箭","tr":"钼箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25052":{"oreDict":["arrowGtWoodPalladium"],"name":"钯箭","tr":"钯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25054":{"oreDict":["arrowGtWoodSilver"],"name":"银箭","tr":"银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16868":{"oreDict":["turbineBladeTrinium"],"name":"三元金属涡轮扇叶","tr":"三元金属涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20966":{"oreDict":["gearGtSmallOrichalcum"],"name":"小型山铜齿轮","tr":"小型山铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20970":{"oreDict":["gearGtSmallVoid"],"name":"小型虚空锭齿轮","tr":"小型虚空锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25067":{"oreDict":["arrowGtWoodNeodymium"],"name":"钕箭","tr":"钕箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20975":{"oreDict":["gearGtSmallDraconium"],"name":"小型龙锭齿轮","tr":"小型龙锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20976":{"oreDict":["gearGtSmallDraconiumAwakened"],"name":"小型觉醒龙锭齿轮","tr":"小型觉醒龙锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20977":{"oreDict":["gearGtSmallBloodInfusedIron"],"name":"小型注血铁齿轮","tr":"小型注血铁齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20978":{"oreDict":["gearGtSmallIchorium"],"name":"小型灵宝齿轮","tr":"小型灵宝齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16884":{"oreDict":["turbineBladeDesh"],"name":"戴斯涡轮扇叶","tr":"戴斯涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20982":{"oreDict":["gearGtSmallCosmicNeutronium"],"name":"小型宇宙中子态素齿轮","tr":"小型宇宙中子态素齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20984":{"oreDict":["gearGtSmallFlerovium_GT5U"],"name":"小型齿轮","tr":"小型齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25081":{"oreDict":["arrowGtWoodTungsten"],"name":"钨箭","tr":"钨箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25083":{"oreDict":["arrowGtWoodOsmium"],"name":"锇箭","tr":"锇箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25084":{"oreDict":["arrowGtWoodIridium"],"name":"铱箭","tr":"铱箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25085":{"oreDict":["arrowGtWoodPlatinum"],"name":"铂箭","tr":"铂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25086":{"oreDict":["arrowGtWoodGold"],"name":"金箭","tr":"金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25089":{"oreDict":["arrowGtWoodLead"],"name":"铅箭","tr":"铅箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25090":{"oreDict":["arrowGtWoodBismuth"],"name":"铋箭","tr":"铋箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25096":{"oreDict":["arrowGtWoodThorium"],"name":"钍箭","tr":"钍箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25097":{"oreDict":["arrowGtWoodUranium235"],"name":"铀-235箭","tr":"铀-235箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25098":{"oreDict":["arrowGtWoodUranium"],"name":"铀-238箭","tr":"铀-238箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25100":{"oreDict":["arrowGtWoodPlutonium"],"name":"钚-239箭","tr":"钚-239箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25101":{"oreDict":["arrowGtWoodPlutonium241"],"name":"钚-241箭","tr":"钚-241箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16912":{"oreDict":["turbineBladeChrysotile"],"name":"石棉涡轮扇叶","tr":"石棉涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16913":{"oreDict":["turbineBladeRealgar"],"name":"雄黄涡轮扇叶","tr":"雄黄涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21010":{"oreDict":["rotorCarbon"],"name":"碳转子","tr":"碳转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25111":{"oreDict":["arrowGtWoodTengamPurified"],"name":"纯镃箭","tr":"纯镃箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25112":{"oreDict":["arrowGtWoodTengamAttuned"],"name":"谐镃箭","tr":"谐镃箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29208":{"oreDict":["gemFlawlessManaDiamond"],"name":"无瑕的魔力钻石","tr":"无瑕的魔力钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29209":{"oreDict":["gemFlawlessBotaniaDragonstone"],"name":"无瑕的龙石","tr":"无瑕的龙石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21019":{"oreDict":["rotorAluminium"],"name":"铝转子","tr":"铝转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21028":{"oreDict":["rotorTitanium"],"name":"钛转子","tr":"钛转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21030":{"oreDict":["rotorChrome"],"name":"铬转子","tr":"铬转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21032":{"oreDict":["rotorIron"," rotorAnyIron"],"name":"铁转子","tr":"铁转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21033":{"oreDict":["rotorCobalt"],"name":"钴转子","tr":"钴转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25129":{"oreDict":["arrowGtWoodNeutronium"],"name":"中子箭","tr":"中子箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21034":{"oreDict":["rotorNickel"],"name":"镍转子","tr":"镍转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21035":{"oreDict":["rotorCopper"," rotorAnyCopper"],"name":"铜转子","tr":"铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25139":{"oreDict":["arrowGtWoodUniversium"],"name":"宇宙素箭","tr":"宇宙素箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25141":{"oreDict":["arrowGtWoodEternity"],"name":"永恒箭","tr":"永恒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16951":{"oreDict":["turbineBladeVyroxeres"],"name":"幽冥剧毒结晶涡轮扇叶","tr":"幽冥剧毒结晶涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25143":{"oreDict":["arrowGtWoodMagmatter"],"name":"磁物质箭","tr":"磁物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16952":{"oreDict":["turbineBladeCeruclase"],"name":"暗影秘银涡轮扇叶","tr":"暗影秘银涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21052":{"oreDict":["rotorPalladium"],"name":"钯转子","tr":"钯转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21054":{"oreDict":["rotorSilver"],"name":"银转子","tr":"银转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21057":{"oreDict":["rotorTin"],"name":"锡转子","tr":"锡转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16966":{"oreDict":["turbineBladeOrichalcum"],"name":"山铜涡轮扇叶","tr":"山铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16970":{"oreDict":["turbineBladeVoid"],"name":"虚空锭涡轮扇叶","tr":"虚空锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21067":{"oreDict":["rotorNeodymium"],"name":"钕转子","tr":"钕转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16975":{"oreDict":["turbineBladeDraconium"],"name":"龙锭涡轮扇叶","tr":"龙锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16976":{"oreDict":["turbineBladeDraconiumAwakened"],"name":"觉醒龙锭涡轮扇叶","tr":"觉醒龙锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16977":{"oreDict":["turbineBladeBloodInfusedIron"],"name":"注血铁涡轮扇叶","tr":"注血铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16978":{"oreDict":["turbineBladeIchorium"],"name":"灵宝涡轮扇叶","tr":"灵宝涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16982":{"oreDict":["turbineBladeCosmicNeutronium"],"name":"宇宙中子态素涡轮扇叶","tr":"宇宙中子态素涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16984":{"oreDict":["turbineBladeFlerovium_GT5U"],"name":"涡轮扇叶","tr":"涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21081":{"oreDict":["rotorTungsten"],"name":"钨转子","tr":"钨转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21083":{"oreDict":["rotorOsmium"],"name":"锇转子","tr":"锇转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21084":{"oreDict":["rotorIridium"],"name":"铱转子","tr":"铱转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21085":{"oreDict":["rotorPlatinum"],"name":"铂转子","tr":"铂转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21086":{"oreDict":["rotorGold"],"name":"金转子","tr":"金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21089":{"oreDict":["rotorLead"],"name":"铅转子","tr":"铅转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21090":{"oreDict":["rotorBismuth"],"name":"铋转子","tr":"铋转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25201":{"oreDict":["arrowGtWoodManasteel"],"name":"魔钢箭","tr":"魔钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25202":{"oreDict":["arrowGtWoodTerrasteel"],"name":"泰拉钢箭","tr":"泰拉钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25203":{"oreDict":["arrowGtWoodElvenElementium"],"name":"源质钢箭","tr":"源质钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25204":{"oreDict":["arrowGtWoodLivingrock"],"name":"活石箭","tr":"活石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25205":{"oreDict":["arrowGtWoodGaiaSpirit"],"name":"盖亚之魂箭","tr":"盖亚之魂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25206":{"oreDict":["arrowGtWoodLivingwood"],"name":"活木箭","tr":"活木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21111":{"oreDict":["rotorTengamPurified"],"name":"纯镃转子","tr":"纯镃转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25207":{"oreDict":["arrowGtWoodDreamwood"],"name":"梦之木箭","tr":"梦之木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21112":{"oreDict":["rotorTengamAttuned"],"name":"谐镃转子","tr":"谐镃转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21129":{"oreDict":["rotorNeutronium"],"name":"中子转子","tr":"中子转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21139":{"oreDict":["rotorUniversium"],"name":"宇宙素转子","tr":"宇宙素转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21141":{"oreDict":["rotorEternity"],"name":"永恒转子","tr":"永恒转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21143":{"oreDict":["rotorMagmatter"],"name":"磁物质转子","tr":"磁物质转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21201":{"oreDict":["rotorManasteel"],"name":"魔钢转子","tr":"魔钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21202":{"oreDict":["rotorTerrasteel"],"name":"泰拉钢转子","tr":"泰拉钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21203":{"oreDict":["rotorElvenElementium"],"name":"源质钢转子","tr":"源质钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25299":{"oreDict":["arrowGtWoodStone"],"name":"石箭","tr":"石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25300":{"oreDict":["arrowGtWoodBronze"," arrowGtWoodAnyBronze"],"name":"青铜箭","tr":"青铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21205":{"oreDict":["rotorGaiaSpirit"],"name":"盖亚之魂转子","tr":"盖亚之魂转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25301":{"oreDict":["arrowGtWoodBrass"],"name":"黄铜箭","tr":"黄铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21206":{"oreDict":["rotorLivingwood"],"name":"活木转子","tr":"活木转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25302":{"oreDict":["arrowGtWoodInvar"],"name":"殷钢箭","tr":"殷钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21207":{"oreDict":["rotorDreamwood"],"name":"梦之木转子","tr":"梦之木转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25303":{"oreDict":["arrowGtWoodElectrum"],"name":"琥珀金箭","tr":"琥珀金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25304":{"oreDict":["arrowGtWoodWroughtIron"," arrowGtWoodAnyIron"],"name":"锻铁箭","tr":"锻铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25305":{"oreDict":["arrowGtWoodSteel"],"name":"钢箭","tr":"钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25306":{"oreDict":["arrowGtWoodStainlessSteel"],"name":"不锈钢箭","tr":"不锈钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25307":{"oreDict":["arrowGtWoodPigIron"," arrowGtWoodAnyIron"],"name":"生铁箭","tr":"生铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25310":{"oreDict":["arrowGtWoodCupronickel"],"name":"白铜箭","tr":"白铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25311":{"oreDict":["arrowGtWoodNichrome"],"name":"镍铬箭","tr":"镍铬箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25312":{"oreDict":["arrowGtWoodKanthal"],"name":"坎塔尔合金箭","tr":"坎塔尔合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25313":{"oreDict":["arrowGtWoodMagnalium"],"name":"镁铝合金箭","tr":"镁铝合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25316":{"oreDict":["arrowGtWoodTungstenSteel"],"name":"钨钢箭","tr":"钨钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25317":{"oreDict":["arrowGtWoodOsmiridium"],"name":"铱锇合金箭","tr":"铱锇合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25318":{"oreDict":["arrowGtWoodSunnarium"],"name":"阳光化合物箭","tr":"阳光化合物箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25319":{"oreDict":["arrowGtWoodAdamantium"],"name":"精金箭","tr":"精金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25320":{"oreDict":["arrowGtWoodElectrumFlux"],"name":"通流琥珀金箭","tr":"通流琥珀金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25321":{"oreDict":["arrowGtWoodEnderium"],"name":"末影锭箭","tr":"末影锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25323":{"oreDict":["arrowGtWoodInfusedGold"],"name":"注魔金箭","tr":"注魔金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25324":{"oreDict":["arrowGtWoodNaquadah"],"name":"硅岩箭","tr":"硅岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25325":{"oreDict":["arrowGtWoodNaquadahAlloy"],"name":"硅岩合金箭","tr":"硅岩合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25326":{"oreDict":["arrowGtWoodNaquadahEnriched"],"name":"富集硅岩箭","tr":"富集硅岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25327":{"oreDict":["arrowGtWoodNaquadria"],"name":"超能硅岩箭","tr":"超能硅岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25328":{"oreDict":["arrowGtWoodDuranium"],"name":"铿铀箭","tr":"铿铀箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25329":{"oreDict":["arrowGtWoodTritanium"],"name":"三钛箭","tr":"三钛箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25330":{"oreDict":["arrowGtWoodThaumium"],"name":"神秘锭箭","tr":"神秘锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25331":{"oreDict":["arrowGtWoodMithril"],"name":"秘银箭","tr":"秘银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25333":{"oreDict":["arrowGtWoodAstralSilver"],"name":"星辰银箭","tr":"星辰银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25334":{"oreDict":["arrowGtWoodBlackSteel"],"name":"黑钢箭","tr":"黑钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25335":{"oreDict":["arrowGtWoodDamascusSteel"],"name":"大马士革钢箭","tr":"大马士革钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25336":{"oreDict":["arrowGtWoodShadowIron"],"name":"暗影铁箭","tr":"暗影铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25337":{"oreDict":["arrowGtWoodShadowSteel"],"name":"暗影钢箭","tr":"暗影钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25338":{"oreDict":["arrowGtWoodIronWood"],"name":"铁木箭","tr":"铁木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25339":{"oreDict":["arrowGtWoodSteeleaf"],"name":"钢叶箭","tr":"钢叶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25340":{"oreDict":["arrowGtWoodMeteoricIron"],"name":"陨铁箭","tr":"陨铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25341":{"oreDict":["arrowGtWoodMeteoricSteel"],"name":"陨钢箭","tr":"陨钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25342":{"oreDict":["arrowGtWoodDarkIron"],"name":"玄铁箭","tr":"玄铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25343":{"oreDict":["arrowGtWoodCobaltBrass"],"name":"钴黄铜箭","tr":"钴黄铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25344":{"oreDict":["arrowGtWoodUltimet"],"name":"哈氏合金箭","tr":"哈氏合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25346":{"oreDict":["arrowGtWoodFierySteel"],"name":"炽热钢箭","tr":"炽热钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25347":{"oreDict":["arrowGtWoodFirestone"],"name":"火石箭","tr":"火石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25348":{"oreDict":["arrowGtWoodRedSteel"],"name":"红钢箭","tr":"红钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25349":{"oreDict":["arrowGtWoodBlueSteel"],"name":"蓝钢箭","tr":"蓝钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25350":{"oreDict":["arrowGtWoodSterlingSilver"],"name":"标准纯银箭","tr":"标准纯银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25351":{"oreDict":["arrowGtWoodRoseGold"],"name":"玫瑰金箭","tr":"玫瑰金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25352":{"oreDict":["arrowGtWoodBlackBronze"],"name":"黑青铜箭","tr":"黑青铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25353":{"oreDict":["arrowGtWoodBismuthBronze"],"name":"铋青铜箭","tr":"铋青铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25354":{"oreDict":["arrowGtWoodIronMagnetic"],"name":"磁化铁箭","tr":"磁化铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25355":{"oreDict":["arrowGtWoodSteelMagnetic"],"name":"磁化钢箭","tr":"磁化钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25356":{"oreDict":["arrowGtWoodNeodymiumMagnetic"],"name":"磁化钕箭","tr":"磁化钕箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25362":{"oreDict":["arrowGtWoodKnightmetal"],"name":"骑士金属箭","tr":"骑士金属箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25363":{"oreDict":["arrowGtWoodTinAlloy"],"name":"锡铁合金箭","tr":"锡铁合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25364":{"oreDict":["arrowGtWoodDarkSteel"],"name":"玄钢箭","tr":"玄钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25365":{"oreDict":["arrowGtWoodElectricalSteel"],"name":"磁钢箭","tr":"磁钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25366":{"oreDict":["arrowGtWoodEnergeticAlloy"],"name":"充能合金箭","tr":"充能合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25367":{"oreDict":["arrowGtWoodVibrantAlloy"],"name":"脉冲合金箭","tr":"脉冲合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25368":{"oreDict":["arrowGtWoodShadow"],"name":"暗影箭","tr":"暗影箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25369":{"oreDict":["arrowGtWoodConductiveIron"],"name":"导电铁箭","tr":"导电铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25370":{"oreDict":["arrowGtWoodTungstenCarbide"],"name":"碳化钨箭","tr":"碳化钨箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25371":{"oreDict":["arrowGtWoodVanadiumSteel"],"name":"钒钢箭","tr":"钒钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25372":{"oreDict":["arrowGtWoodHSSG"],"name":"高速钢-G箭","tr":"高速钢-G箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25373":{"oreDict":["arrowGtWoodHSSE"],"name":"高速钢-E箭","tr":"高速钢-E箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25374":{"oreDict":["arrowGtWoodHSSS"],"name":"高速钢-S箭","tr":"高速钢-S箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25378":{"oreDict":["arrowGtWoodPulsatingIron"],"name":"脉冲铁箭","tr":"脉冲铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25379":{"oreDict":["arrowGtWoodSoularium"],"name":"魂金箭","tr":"魂金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25380":{"oreDict":["arrowGtWoodEnderiumBase"],"name":"末影粗胚箭","tr":"末影粗胚箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25381":{"oreDict":["arrowGtWoodRedstoneAlloy"],"name":"红石合金箭","tr":"红石合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25382":{"oreDict":["arrowGtWoodArdite"],"name":"阿迪特箭","tr":"阿迪特箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25383":{"oreDict":["arrowGtWoodReinforced"],"name":"强化金属箭","tr":"强化金属箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25384":{"oreDict":["arrowGtWoodGalgadorian"],"name":"混合晶锭箭","tr":"混合晶锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25385":{"oreDict":["arrowGtWoodEnhancedGalgadorian"],"name":"强化混合晶锭箭","tr":"强化混合晶锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25386":{"oreDict":["arrowGtWoodManyullyn"],"name":"玛玉灵箭","tr":"玛玉灵箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25387":{"oreDict":["arrowGtWoodMytryl"],"name":"深空秘银箭","tr":"深空秘银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25388":{"oreDict":["arrowGtWoodBlackPlutonium"],"name":"黑钚箭","tr":"黑钚箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25389":{"oreDict":["arrowGtWoodCallistoIce"],"name":"木卫四冰箭","tr":"木卫四冰箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25390":{"oreDict":["arrowGtWoodLedox"],"name":"深铅箭","tr":"深铅箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25391":{"oreDict":["arrowGtWoodQuantium"],"name":"量子锭箭","tr":"量子锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25392":{"oreDict":["arrowGtWoodDuralumin"],"name":"硬铝箭","tr":"硬铝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25393":{"oreDict":["arrowGtWoodOriharukon"],"name":"奥利哈钢箭","tr":"奥利哈钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25394":{"oreDict":["arrowGtWoodInfinityCatalyst"],"name":"无尽催化剂箭","tr":"无尽催化剂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21300":{"oreDict":["rotorAnyBronze"," rotorBronze"],"name":"青铜转子","tr":"青铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21301":{"oreDict":["rotorBrass"],"name":"黄铜转子","tr":"黄铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25397":{"oreDict":["arrowGtWoodInfinity"],"name":"无尽箭","tr":"无尽箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21302":{"oreDict":["rotorInvar"],"name":"殷钢转子","tr":"殷钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25398":{"oreDict":["arrowGtWoodMysteriousCrystal"],"name":"神秘水晶箭","tr":"神秘水晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21303":{"oreDict":["rotorElectrum"],"name":"琥珀金转子","tr":"琥珀金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25399":{"oreDict":["arrowGtWoodSamariumMagnetic"],"name":"磁化钐箭","tr":"磁化钐箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21304":{"oreDict":["rotorWroughtIron"," rotorAnyIron"],"name":"锻铁转子","tr":"锻铁转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25400":{"oreDict":["arrowGtWoodAlumite"],"name":"耐酸铝箭","tr":"耐酸铝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21305":{"oreDict":["rotorSteel"],"name":"钢转子","tr":"钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25401":{"oreDict":["arrowGtWoodEndSteel"],"name":"末影钢箭","tr":"末影钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21306":{"oreDict":["rotorStainlessSteel"],"name":"不锈钢转子","tr":"不锈钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25402":{"oreDict":["arrowGtWoodCrudeSteel"],"name":"复合粘土箭","tr":"复合粘土箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25403":{"oreDict":["arrowGtWoodCrystallineAlloy"],"name":"晶化合金箭","tr":"晶化合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25404":{"oreDict":["arrowGtWoodMelodicAlloy"],"name":"旋律合金箭","tr":"旋律合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29500":{"oreDict":["gemFlawlessDiamond"],"name":"无瑕的钻石","tr":"无瑕的钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25405":{"oreDict":["arrowGtWoodStellarAlloy"],"name":"恒星合金箭","tr":"恒星合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29501":{"oreDict":["gemFlawlessEmerald"],"name":"无瑕的绿宝石","tr":"无瑕的绿宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25406":{"oreDict":["arrowGtWoodCrystallinePinkSlime"],"name":"晶化粉红史莱姆箭","tr":"晶化粉红史莱姆箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29502":{"oreDict":["gemFlawlessRuby"],"name":"无瑕的红宝石","tr":"无瑕的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25407":{"oreDict":["arrowGtWoodEnergeticSilver"],"name":"充能银箭","tr":"充能银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29503":{"oreDict":["gemFlawlessSapphire"],"name":"无瑕的蓝宝石","tr":"无瑕的蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25408":{"oreDict":["arrowGtWoodVividAlloy"],"name":"生动合金箭","tr":"生动合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29504":{"oreDict":["gemFlawlessGreenSapphire"],"name":"无瑕的绿色蓝宝石","tr":"无瑕的绿色蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21313":{"oreDict":["rotorMagnalium"],"name":"镁铝合金转子","tr":"镁铝合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29505":{"oreDict":["gemFlawlessOlivine"],"name":"无瑕的橄榄石","tr":"无瑕的橄榄石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29507":{"oreDict":["gemFlawlessTopaz"],"name":"无瑕的黄玉","tr":"无瑕的黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21316":{"oreDict":["rotorTungstenSteel"],"name":"钨钢转子","tr":"钨钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29508":{"oreDict":["gemFlawlessTanzanite"],"name":"无瑕的坦桑石","tr":"无瑕的坦桑石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21317":{"oreDict":["rotorOsmiridium"],"name":"铱锇合金转子","tr":"铱锇合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29509":{"oreDict":["gemFlawlessAmethyst"],"name":"无瑕的紫水晶","tr":"无瑕的紫水晶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21318":{"oreDict":["rotorSunnarium"],"name":"阳光化合物转子","tr":"阳光化合物转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29510":{"oreDict":["gemFlawlessOpal"],"name":"无瑕的蛋白石","tr":"无瑕的蛋白石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21319":{"oreDict":["rotorAdamantium"],"name":"精金转子","tr":"精金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29511":{"oreDict":["gemFlawlessJasper"],"name":"无瑕的碧玉","tr":"无瑕的碧玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21320":{"oreDict":["rotorElectrumFlux"],"name":"通流琥珀金转子","tr":"通流琥珀金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29512":{"oreDict":["gemFlawlessFoolsRuby"],"name":"无瑕的红宝石","tr":"无瑕的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21321":{"oreDict":["rotorEnderium"],"name":"末影锭转子","tr":"末影锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29513":{"oreDict":["gemFlawlessBlueTopaz"],"name":"无瑕的蓝黄玉","tr":"无瑕的蓝黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29514":{"oreDict":["gemFlawlessAmber"],"name":"无瑕的琥珀","tr":"无瑕的琥珀","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21323":{"oreDict":["rotorInfusedGold"],"name":"注魔金转子","tr":"注魔金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21324":{"oreDict":["rotorNaquadah"],"name":"硅岩转子","tr":"硅岩转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21325":{"oreDict":["rotorNaquadahAlloy"],"name":"硅岩合金转子","tr":"硅岩合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21330":{"oreDict":["rotorThaumium"],"name":"神秘锭转子","tr":"神秘锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21334":{"oreDict":["rotorBlackSteel"],"name":"黑钢转子","tr":"黑钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21335":{"oreDict":["rotorDamascusSteel"],"name":"大马士革钢转子","tr":"大马士革钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29527":{"oreDict":["gemFlawlessGarnetRed"],"name":"无瑕的红石榴石","tr":"无瑕的红石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29528":{"oreDict":["gemFlawlessGarnetYellow"],"name":"无瑕的黄石榴石","tr":"无瑕的黄石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21338":{"oreDict":["rotorIronWood"],"name":"铁木转子","tr":"铁木转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21339":{"oreDict":["rotorSteeleaf"],"name":"钢叶转子","tr":"钢叶转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21343":{"oreDict":["rotorCobaltBrass"],"name":"钴黄铜转子","tr":"钴黄铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21344":{"oreDict":["rotorUltimet"],"name":"哈氏合金转子","tr":"哈氏合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21345":{"oreDict":["rotorAnnealedCopper"," rotorAnyCopper"],"name":"退火铜转子","tr":"退火铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21346":{"oreDict":["rotorFierySteel"],"name":"炽热钢转子","tr":"炽热钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21348":{"oreDict":["rotorRedSteel"],"name":"红钢转子","tr":"红钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21349":{"oreDict":["rotorBlueSteel"],"name":"蓝钢转子","tr":"蓝钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21350":{"oreDict":["rotorSterlingSilver"],"name":"标准纯银转子","tr":"标准纯银转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21351":{"oreDict":["rotorRoseGold"],"name":"玫瑰金转子","tr":"玫瑰金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21352":{"oreDict":["rotorBlackBronze"],"name":"黑青铜转子","tr":"黑青铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21353":{"oreDict":["rotorBismuthBronze"],"name":"铋青铜转子","tr":"铋青铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21354":{"oreDict":["rotorIronMagnetic"],"name":"磁化铁转子","tr":"磁化铁转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21355":{"oreDict":["rotorSteelMagnetic"],"name":"磁化钢转子","tr":"磁化钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21356":{"oreDict":["rotorNeodymiumMagnetic"],"name":"磁化钕转子","tr":"磁化钕转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21357":{"oreDict":["rotorVanadiumGallium"],"name":"钒镓合金转子","tr":"钒镓合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21362":{"oreDict":["rotorKnightmetal"],"name":"骑士金属转子","tr":"骑士金属转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21363":{"oreDict":["rotorTinAlloy"],"name":"锡铁合金转子","tr":"锡铁合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21364":{"oreDict":["rotorDarkSteel"],"name":"玄钢转子","tr":"玄钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21365":{"oreDict":["rotorElectricalSteel"],"name":"磁钢转子","tr":"磁钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21366":{"oreDict":["rotorEnergeticAlloy"],"name":"充能合金转子","tr":"充能合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21367":{"oreDict":["rotorVibrantAlloy"],"name":"脉冲合金转子","tr":"脉冲合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21368":{"oreDict":["rotorShadow"],"name":"暗影转子","tr":"暗影转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21369":{"oreDict":["rotorConductiveIron"],"name":"导电铁转子","tr":"导电铁转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21370":{"oreDict":["rotorTungstenCarbide"],"name":"碳化钨转子","tr":"碳化钨转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21371":{"oreDict":["rotorVanadiumSteel"],"name":"钒钢转子","tr":"钒钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21372":{"oreDict":["rotorHSSG"],"name":"高速钢-G转子","tr":"高速钢-G转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21373":{"oreDict":["rotorHSSE"],"name":"高速钢-E转子","tr":"高速钢-E转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21374":{"oreDict":["rotorHSSS"],"name":"高速钢-S转子","tr":"高速钢-S转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25470":{"oreDict":["arrowGtWoodEpoxid"],"name":"环氧树脂箭","tr":"环氧树脂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25471":{"oreDict":["arrowGtWoodAnySyntheticRubber"," arrowGtWoodSilicone"," arrowGtWoodAnyRubber"],"name":"硅橡胶箭","tr":"硅橡胶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25472":{"oreDict":["arrowGtWoodPolycaprolactam"],"name":"聚己内酰胺箭","tr":"聚己内酰胺箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25473":{"oreDict":["arrowGtWoodPolytetrafluoroethylene"],"name":"聚四氟乙烯箭","tr":"聚四氟乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21378":{"oreDict":["rotorPulsatingIron"],"name":"脉冲铁转子","tr":"脉冲铁转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21379":{"oreDict":["rotorSoularium"],"name":"魂金转子","tr":"魂金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21380":{"oreDict":["rotorEnderiumBase"],"name":"末影粗胚转子","tr":"末影粗胚转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21381":{"oreDict":["rotorRedstoneAlloy"],"name":"红石合金转子","tr":"红石合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21382":{"oreDict":["rotorArdite"],"name":"阿迪特转子","tr":"阿迪特转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21383":{"oreDict":["rotorReinforced"],"name":"强化金属转子","tr":"强化金属转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21384":{"oreDict":["rotorGalgadorian"],"name":"混合晶锭转子","tr":"混合晶锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21385":{"oreDict":["rotorEnhancedGalgadorian"],"name":"强化混合晶锭转子","tr":"强化混合晶锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21386":{"oreDict":["rotorManyullyn"],"name":"玛玉灵转子","tr":"玛玉灵转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21387":{"oreDict":["rotorMytryl"],"name":"深空秘银转子","tr":"深空秘银转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21388":{"oreDict":["rotorBlackPlutonium"],"name":"黑钚转子","tr":"黑钚转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21389":{"oreDict":["rotorCallistoIce"],"name":"木卫四冰转子","tr":"木卫四冰转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25485":{"oreDict":["arrowGtWoodAlduorite"],"name":"神秘蓝金箭","tr":"神秘蓝金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21390":{"oreDict":["rotorLedox"],"name":"深铅转子","tr":"深铅转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21391":{"oreDict":["rotorQuantium"],"name":"量子锭转子","tr":"量子锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21392":{"oreDict":["rotorDuralumin"],"name":"硬铝转子","tr":"硬铝转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25488":{"oreDict":["arrowGtWoodRubracium"],"name":"褐铜箭","tr":"褐铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21393":{"oreDict":["rotorOriharukon"],"name":"奥利哈钢转子","tr":"奥利哈钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25489":{"oreDict":["arrowGtWoodVulcanite"],"name":"胶木箭","tr":"胶木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21394":{"oreDict":["rotorInfinityCatalyst"],"name":"无尽催化剂转子","tr":"无尽催化剂转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21397":{"oreDict":["rotorInfinity"],"name":"无尽转子","tr":"无尽转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21398":{"oreDict":["rotorMysteriousCrystal"],"name":"神秘水晶转子","tr":"神秘水晶转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21399":{"oreDict":["rotorSamariumMagnetic"],"name":"磁化钐转子","tr":"磁化钐转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21400":{"oreDict":["rotorAlumite"],"name":"耐酸铝转子","tr":"耐酸铝转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21401":{"oreDict":["rotorEndSteel"],"name":"末影钢转子","tr":"末影钢转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21402":{"oreDict":["rotorCrudeSteel"],"name":"复合粘土转子","tr":"复合粘土转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21403":{"oreDict":["rotorCrystallineAlloy"],"name":"晶化合金转子","tr":"晶化合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21404":{"oreDict":["rotorMelodicAlloy"],"name":"旋律合金转子","tr":"旋律合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25500":{"oreDict":["arrowGtWoodDiamond"],"name":"钻石箭","tr":"钻石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21405":{"oreDict":["rotorStellarAlloy"],"name":"恒星合金转子","tr":"恒星合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25501":{"oreDict":["arrowGtWoodEmerald"],"name":"绿宝石箭","tr":"绿宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21406":{"oreDict":["rotorCrystallinePinkSlime"],"name":"晶化粉红史莱姆转子","tr":"晶化粉红史莱姆转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25502":{"oreDict":["arrowGtWoodRuby"],"name":"红宝石箭","tr":"红宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21407":{"oreDict":["rotorEnergeticSilver"],"name":"充能银转子","tr":"充能银转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25503":{"oreDict":["arrowGtWoodSapphire"],"name":"蓝宝石箭","tr":"蓝宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21408":{"oreDict":["rotorVividAlloy"],"name":"生动合金转子","tr":"生动合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25504":{"oreDict":["arrowGtWoodGreenSapphire"],"name":"绿色蓝宝石箭","tr":"绿色蓝宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25505":{"oreDict":["arrowGtWoodOlivine"],"name":"橄榄石箭","tr":"橄榄石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25506":{"oreDict":["arrowGtWoodNetherStar"],"name":"下界之星箭","tr":"下界之星箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25507":{"oreDict":["arrowGtWoodTopaz"],"name":"黄玉箭","tr":"黄玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25508":{"oreDict":["arrowGtWoodTanzanite"],"name":"坦桑石箭","tr":"坦桑石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25509":{"oreDict":["arrowGtWoodAmethyst"],"name":"紫水晶箭","tr":"紫水晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25510":{"oreDict":["arrowGtWoodOpal"],"name":"蛋白石箭","tr":"蛋白石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25511":{"oreDict":["arrowGtWoodJasper"],"name":"碧玉箭","tr":"碧玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25513":{"oreDict":["arrowGtWoodBlueTopaz"],"name":"蓝黄玉箭","tr":"蓝黄玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25514":{"oreDict":["arrowGtWoodAmber"],"name":"琥珀箭","tr":"琥珀箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25516":{"oreDict":["arrowGtWoodCertusQuartz"],"name":"赛特斯石英箭","tr":"赛特斯石英箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25521":{"oreDict":["arrowGtWoodForce"],"name":"力量箭","tr":"力量箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25522":{"oreDict":["arrowGtWoodNetherQuartz"],"name":"下界石英箭","tr":"下界石英箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25527":{"oreDict":["arrowGtWoodGarnetRed"],"name":"红石榴石箭","tr":"红石榴石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25528":{"oreDict":["arrowGtWoodGarnetYellow"],"name":"黄石榴石箭","tr":"黄石榴石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25529":{"oreDict":["arrowGtWoodVinteum"],"name":"温特姆箭","tr":"温特姆箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25537":{"oreDict":["arrowGtWoodJade"],"name":"玉箭","tr":"玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25540":{"oreDict":["arrowGtWoodInfusedAir"],"name":"风之魔晶箭","tr":"风之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25541":{"oreDict":["arrowGtWoodInfusedFire"],"name":"火之魔晶箭","tr":"火之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25542":{"oreDict":["arrowGtWoodInfusedEarth"],"name":"地之魔晶箭","tr":"地之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25543":{"oreDict":["arrowGtWoodInfusedWater"],"name":"水之魔晶箭","tr":"水之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25544":{"oreDict":["arrowGtWoodInfusedEntropy"],"name":"混沌魔晶箭","tr":"混沌魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25545":{"oreDict":["arrowGtWoodInfusedOrder"],"name":"秩序魔晶箭","tr":"秩序魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21470":{"oreDict":["rotorEpoxid"],"name":"环氧树脂转子","tr":"环氧树脂转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21472":{"oreDict":["rotorPolycaprolactam"],"name":"聚己内酰胺转子","tr":"聚己内酰胺转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21473":{"oreDict":["rotorPolytetrafluoroethylene"],"name":"聚四氟乙烯转子","tr":"聚四氟乙烯转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25576":{"oreDict":["arrowGtWoodTPVAlloy"],"name":"钛铂钒合金箭","tr":"钛铂钒合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21485":{"oreDict":["rotorAlduorite"],"name":"神秘蓝金转子","tr":"神秘蓝金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25583":{"oreDict":["arrowGtWoodMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质箭","tr":"磁流体约束恒星物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21488":{"oreDict":["rotorRubracium"],"name":"褐铜转子","tr":"褐铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21489":{"oreDict":["rotorVulcanite"],"name":"胶木转子","tr":"胶木转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25585":{"oreDict":["arrowGtWoodWhiteDwarfMatter"],"name":"白矮星物质箭","tr":"白矮星物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25586":{"oreDict":["arrowGtWoodBlackDwarfMatter"],"name":"黑矮星物质箭","tr":"黑矮星物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25588":{"oreDict":["arrowGtWoodSpaceTime"],"name":"时空箭","tr":"时空箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25599":{"oreDict":["arrowGtWoodPolybenzimidazole"],"name":"聚苯并咪唑箭","tr":"聚苯并咪唑箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25610":{"oreDict":["arrowGtWoodEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂箭","tr":"纤维强化的环氧树脂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25613":{"oreDict":["arrowGtWoodNickelZincFerrite"],"name":"镍锌铁氧体箭","tr":"镍锌铁氧体箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21529":{"oreDict":["rotorVinteum"],"name":"温特姆转子","tr":"温特姆转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25631":{"oreDict":["arrowGtWoodPolyphenyleneSulfide"],"name":"聚苯硫醚箭","tr":"聚苯硫醚箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25635":{"oreDict":["arrowGtWoodAnySyntheticRubber"," arrowGtWoodStyreneButadieneRubber"," arrowGtWoodAnyRubber"],"name":"丁苯橡胶箭","tr":"丁苯橡胶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25636":{"oreDict":["arrowGtWoodPolystyrene"],"name":"聚苯乙烯箭","tr":"聚苯乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25649":{"oreDict":["arrowGtWoodPolyvinylChloride"],"name":"聚氯乙烯箭","tr":"聚氯乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21576":{"oreDict":["rotorTPVAlloy"],"name":"钛铂钒合金转子","tr":"钛铂钒合金转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21581":{"oreDict":["rotorTranscendentMetal"],"name":"超时空金属转子","tr":"超时空金属转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21583":{"oreDict":["rotorMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质转子","tr":"磁流体约束恒星物质转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21585":{"oreDict":["rotorWhiteDwarfMatter"],"name":"白矮星物质转子","tr":"白矮星物质转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21586":{"oreDict":["rotorBlackDwarfMatter"],"name":"黑矮星物质转子","tr":"黑矮星物质转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21588":{"oreDict":["rotorSpaceTime"],"name":"时空转子","tr":"时空转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21599":{"oreDict":["rotorPolybenzimidazole"],"name":"聚苯并咪唑转子","tr":"聚苯并咪唑转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21610":{"oreDict":["rotorEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂转子","tr":"纤维强化的环氧树脂转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21613":{"oreDict":["rotorNickelZincFerrite"],"name":"镍锌铁氧体转子","tr":"镍锌铁氧体转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21631":{"oreDict":["rotorPolyphenyleneSulfide"],"name":"聚苯硫醚转子","tr":"聚苯硫醚转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25770":{"oreDict":["arrowGtWoodHeeEndium"],"name":"终末锭箭","tr":"终末锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29890":{"oreDict":["gemFlawlessGlass"],"name":"无瑕的玻璃晶体","tr":"无瑕的玻璃晶体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25801":{"oreDict":["arrowGtWoodBlaze"],"name":"烈焰箭","tr":"烈焰箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25802":{"oreDict":["arrowGtWoodFlint"],"name":"燧石箭","tr":"燧石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25809":{"oreDict":["arrowGtWoodWood"],"name":"木箭","tr":"木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25819":{"oreDict":["arrowGtWoodGraphene"],"name":"石墨烯箭","tr":"石墨烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25829":{"oreDict":["arrowGtWoodDeepIron"],"name":"深渊铁箭","tr":"深渊铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25844":{"oreDict":["arrowGtWoodBasalt"],"name":"玄武岩箭","tr":"玄武岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25845":{"oreDict":["arrowGtWoodMarble"],"name":"大理石箭","tr":"大理石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25849":{"oreDict":["arrowGtWoodGraniteBlack"],"name":"黑花岗岩箭","tr":"黑花岗岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25850":{"oreDict":["arrowGtWoodGraniteRed"],"name":"红花岗岩箭","tr":"红花岗岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25854":{"oreDict":["arrowGtWoodConstructionFoam"],"name":"建筑泡沫箭","tr":"建筑泡沫箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21765":{"oreDict":["rotorKevlar"],"name":"凯芙拉转子","tr":"凯芙拉转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25865":{"oreDict":["arrowGtWoodGraphite"],"name":"石墨箭","tr":"石墨箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21770":{"oreDict":["rotorHeeEndium"],"name":"终末锭转子","tr":"终末锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25868":{"oreDict":["arrowGtWoodTrinium"],"name":"三元金属箭","tr":"三元金属箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25874":{"oreDict":["arrowGtWoodPlastic"],"name":"聚乙烯箭","tr":"聚乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25880":{"oreDict":["arrowGtWoodRubber"," arrowGtWoodAnyRubber"],"name":"橡胶箭","tr":"橡胶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25884":{"oreDict":["arrowGtWoodDesh"],"name":"戴斯箭","tr":"戴斯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25889":{"oreDict":["arrowGtWoodWoodSealed"],"name":"蜡封木箭","tr":"蜡封木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21809":{"oreDict":["rotorWood"],"name":"木转子","tr":"木转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25912":{"oreDict":["arrowGtWoodChrysotile"],"name":"石棉箭","tr":"石棉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25913":{"oreDict":["arrowGtWoodRealgar"],"name":"雄黄箭","tr":"雄黄箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25951":{"oreDict":["arrowGtWoodVyroxeres"],"name":"幽冥剧毒结晶箭","tr":"幽冥剧毒结晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25952":{"oreDict":["arrowGtWoodCeruclase"],"name":"暗影秘银箭","tr":"暗影秘银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21868":{"oreDict":["rotorTrinium"],"name":"三元金属转子","tr":"三元金属转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25966":{"oreDict":["arrowGtWoodOrichalcum"],"name":"山铜箭","tr":"山铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25970":{"oreDict":["arrowGtWoodVoid"],"name":"虚空锭箭","tr":"虚空锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25975":{"oreDict":["arrowGtWoodDraconium"],"name":"龙锭箭","tr":"龙锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25976":{"oreDict":["arrowGtWoodDraconiumAwakened"],"name":"觉醒龙锭箭","tr":"觉醒龙锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25977":{"oreDict":["arrowGtWoodBloodInfusedIron"],"name":"注血铁箭","tr":"注血铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25978":{"oreDict":["arrowGtWoodIchorium"],"name":"灵宝箭","tr":"灵宝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21884":{"oreDict":["rotorDesh"],"name":"戴斯转子","tr":"戴斯转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25982":{"oreDict":["arrowGtWoodCosmicNeutronium"],"name":"宇宙中子态素箭","tr":"宇宙中子态素箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25984":{"oreDict":["arrowGtWoodFlerovium_GT5U"],"name":"箭","tr":"箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21889":{"oreDict":["rotorWoodSealed"],"name":"蜡封木转子","tr":"蜡封木转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21912":{"oreDict":["rotorChrysotile"],"name":"石棉转子","tr":"石棉转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26008":{"oreDict":["arrowGtPlasticBeryllium"],"name":"轻质铍箭","tr":"轻质铍箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21913":{"oreDict":["rotorRealgar"],"name":"雄黄转子","tr":"雄黄转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26010":{"oreDict":["arrowGtPlasticCarbon"],"name":"轻质碳箭","tr":"轻质碳箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26019":{"oreDict":["arrowGtPlasticAluminium"],"name":"轻质铝箭","tr":"轻质铝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26028":{"oreDict":["arrowGtPlasticTitanium"],"name":"轻质钛箭","tr":"轻质钛箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26030":{"oreDict":["arrowGtPlasticChrome"],"name":"轻质铬箭","tr":"轻质铬箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26031":{"oreDict":["arrowGtPlasticManganese"],"name":"轻质锰箭","tr":"轻质锰箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26032":{"oreDict":["arrowGtPlasticIron"," arrowGtPlasticAnyIron"],"name":"轻质铁箭","tr":"轻质铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26033":{"oreDict":["arrowGtPlasticCobalt"],"name":"轻质钴箭","tr":"轻质钴箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26034":{"oreDict":["arrowGtPlasticNickel"],"name":"轻质镍箭","tr":"轻质镍箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21952":{"oreDict":["rotorCeruclase"],"name":"暗影秘银转子","tr":"暗影秘银转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26048":{"oreDict":["arrowGtPlasticMolybdenum"],"name":"轻质钼箭","tr":"轻质钼箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26052":{"oreDict":["arrowGtPlasticPalladium"],"name":"轻质钯箭","tr":"轻质钯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26054":{"oreDict":["arrowGtPlasticSilver"],"name":"轻质银箭","tr":"轻质银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21966":{"oreDict":["rotorOrichalcum"],"name":"山铜转子","tr":"山铜转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21970":{"oreDict":["rotorVoid"],"name":"虚空锭转子","tr":"虚空锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26067":{"oreDict":["arrowGtPlasticNeodymium"],"name":"轻质钕箭","tr":"轻质钕箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21975":{"oreDict":["rotorDraconium"],"name":"龙锭转子","tr":"龙锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21976":{"oreDict":["rotorDraconiumAwakened"],"name":"觉醒龙锭转子","tr":"觉醒龙锭转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21977":{"oreDict":["rotorBloodInfusedIron"],"name":"注血铁转子","tr":"注血铁转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21978":{"oreDict":["rotorIchorium"],"name":"灵宝转子","tr":"灵宝转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21982":{"oreDict":["rotorCosmicNeutronium"],"name":"宇宙中子态素转子","tr":"宇宙中子态素转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21984":{"oreDict":["rotorFlerovium_GT5U"],"name":"转子","tr":"转子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26081":{"oreDict":["arrowGtPlasticTungsten"],"name":"轻质钨箭","tr":"轻质钨箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26083":{"oreDict":["arrowGtPlasticOsmium"],"name":"轻质锇箭","tr":"轻质锇箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26084":{"oreDict":["arrowGtPlasticIridium"],"name":"轻质铱箭","tr":"轻质铱箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26085":{"oreDict":["arrowGtPlasticPlatinum"],"name":"轻质铂箭","tr":"轻质铂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26086":{"oreDict":["arrowGtPlasticGold"],"name":"轻质金箭","tr":"轻质金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26089":{"oreDict":["arrowGtPlasticLead"],"name":"轻质铅箭","tr":"轻质铅箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26090":{"oreDict":["arrowGtPlasticBismuth"],"name":"轻质铋箭","tr":"轻质铋箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26096":{"oreDict":["arrowGtPlasticThorium"],"name":"轻质钍箭","tr":"轻质钍箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26097":{"oreDict":["arrowGtPlasticUranium235"],"name":"轻质铀-235箭","tr":"轻质铀-235箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26098":{"oreDict":["arrowGtPlasticUranium"],"name":"轻质铀-238箭","tr":"轻质铀-238箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26100":{"oreDict":["arrowGtPlasticPlutonium"],"name":"轻质钚-239箭","tr":"轻质钚-239箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26101":{"oreDict":["arrowGtPlasticPlutonium241"],"name":"轻质钚-241箭","tr":"轻质钚-241箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22006":{"oreDict":["stickLongLithium"],"name":"长锂杆","tr":"长锂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22008":{"oreDict":["stickLongBeryllium"],"name":"长铍杆","tr":"长铍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22010":{"oreDict":["stickLongCarbon"],"name":"长碳杆","tr":"长碳杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26111":{"oreDict":["arrowGtPlasticTengamPurified"],"name":"轻质纯镃箭","tr":"轻质纯镃箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26112":{"oreDict":["arrowGtPlasticTengamAttuned"],"name":"轻质谐镃箭","tr":"轻质谐镃箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30208":{"oreDict":["gemExquisiteManaDiamond"],"name":"精致的魔力钻石","tr":"精致的魔力钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30209":{"oreDict":["gemExquisiteBotaniaDragonstone"],"name":"精致的龙石","tr":"精致的龙石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22018":{"oreDict":["stickLongMagnesium"],"name":"长镁杆","tr":"长镁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22019":{"oreDict":["stickLongAluminium"],"name":"长铝杆","tr":"长铝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22020":{"oreDict":["stickLongSilicon"],"name":"长硅杆","tr":"长硅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22025":{"oreDict":["stickLongPotassium"],"name":"长钾杆","tr":"长钾杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22027":{"oreDict":["stickLongScandium"],"name":"长钪杆","tr":"长钪杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22028":{"oreDict":["stickLongTitanium"],"name":"长钛杆","tr":"长钛杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22029":{"oreDict":["stickLongVanadium"],"name":"长钒杆","tr":"长钒杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22030":{"oreDict":["stickLongChrome"],"name":"长铬杆","tr":"长铬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22031":{"oreDict":["stickLongManganese"],"name":"长锰杆","tr":"长锰杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22032":{"oreDict":["stickLongIron"," stickLongAnyIron"],"name":"长铁杆","tr":"长铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22033":{"oreDict":["stickLongCobalt"],"name":"长钴杆","tr":"长钴杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26129":{"oreDict":["arrowGtPlasticNeutronium"],"name":"轻质中子箭","tr":"轻质中子箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22034":{"oreDict":["stickLongNickel"],"name":"长镍杆","tr":"长镍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22035":{"oreDict":["stickLongCopper"," stickLongAnyCopper"],"name":"长铜杆","tr":"长铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22036":{"oreDict":["stickLongZinc"],"name":"长锌杆","tr":"长锌杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22037":{"oreDict":["stickLongGallium"],"name":"长镓杆","tr":"长镓杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22039":{"oreDict":["stickLongArsenic"],"name":"长砷杆","tr":"长砷杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22043":{"oreDict":["stickLongRubidium"],"name":"长铷杆","tr":"长铷杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26139":{"oreDict":["arrowGtPlasticUniversium"],"name":"轻质宇宙素箭","tr":"轻质宇宙素箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22045":{"oreDict":["stickLongYttrium"],"name":"长钇杆","tr":"长钇杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26141":{"oreDict":["arrowGtPlasticEternity"],"name":"轻质永恒箭","tr":"轻质永恒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22047":{"oreDict":["stickLongNiobium"],"name":"长铌杆","tr":"长铌杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26143":{"oreDict":["arrowGtPlasticMagmatter"],"name":"轻质磁物质箭","tr":"轻质磁物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22048":{"oreDict":["stickLongMolybdenum"],"name":"长钼杆","tr":"长钼杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22052":{"oreDict":["stickLongPalladium"],"name":"长钯杆","tr":"长钯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22054":{"oreDict":["stickLongSilver"],"name":"长银杆","tr":"长银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22056":{"oreDict":["stickLongIndium"],"name":"长铟杆","tr":"长铟杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22057":{"oreDict":["stickLongTin"],"name":"长锡杆","tr":"长锡杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22058":{"oreDict":["stickLongAntimony"],"name":"长锑杆","tr":"长锑杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22059":{"oreDict":["stickLongTellurium"],"name":"长碲杆","tr":"长碲杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22062":{"oreDict":["stickLongCaesium"],"name":"长铯杆","tr":"长铯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22063":{"oreDict":["stickLongBarium"],"name":"长钡杆","tr":"长钡杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22064":{"oreDict":["stickLongLanthanum"],"name":"长镧杆","tr":"长镧杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22065":{"oreDict":["stickLongCerium"],"name":"长铈杆","tr":"长铈杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22066":{"oreDict":["stickLongPraseodymium"],"name":"长镨杆","tr":"长镨杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22067":{"oreDict":["stickLongNeodymium"],"name":"长钕杆","tr":"长钕杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22068":{"oreDict":["stickLongPromethium"],"name":"长钷杆","tr":"长钷杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22069":{"oreDict":["stickLongSamarium"],"name":"长钐杆","tr":"长钐杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22070":{"oreDict":["stickLongEuropium"],"name":"长铕杆","tr":"长铕杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22071":{"oreDict":["stickLongGadolinium"],"name":"长钆杆","tr":"长钆杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22072":{"oreDict":["stickLongTerbium"],"name":"长铽杆","tr":"长铽杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22073":{"oreDict":["stickLongDysprosium"],"name":"长镝杆","tr":"长镝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22074":{"oreDict":["stickLongHolmium"],"name":"长钬杆","tr":"长钬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22075":{"oreDict":["stickLongErbium"],"name":"长铒杆","tr":"长铒杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22076":{"oreDict":["stickLongThulium"],"name":"长铥杆","tr":"长铥杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22077":{"oreDict":["stickLongYtterbium"],"name":"长镱杆","tr":"长镱杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22078":{"oreDict":["stickLongLutetium"],"name":"长镥杆","tr":"长镥杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22080":{"oreDict":["stickLongTantalum"],"name":"长钽杆","tr":"长钽杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22081":{"oreDict":["stickLongTungsten"],"name":"长钨杆","tr":"长钨杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22083":{"oreDict":["stickLongOsmium"],"name":"长锇杆","tr":"长锇杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22084":{"oreDict":["stickLongIridium"],"name":"长铱杆","tr":"长铱杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22085":{"oreDict":["stickLongPlatinum"],"name":"长铂杆","tr":"长铂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22086":{"oreDict":["stickLongGold"],"name":"长金杆","tr":"长金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22089":{"oreDict":["stickLongLead"],"name":"长铅杆","tr":"长铅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22090":{"oreDict":["stickLongBismuth"],"name":"长铋杆","tr":"长铋杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22096":{"oreDict":["stickLongThorium"],"name":"长钍杆","tr":"长钍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22097":{"oreDict":["stickLongUranium235"],"name":"长铀-235杆","tr":"长铀-235杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22098":{"oreDict":["stickLongUranium"],"name":"长铀-238杆","tr":"长铀-238杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22100":{"oreDict":["stickLongPlutonium"],"name":"长钚-239杆","tr":"长钚-239杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22101":{"oreDict":["stickLongPlutonium241"],"name":"长钚-241杆","tr":"长钚-241杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18006":{"oreDict":["itemCasingLithium"],"name":"锂外壳","tr":"锂外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22103":{"oreDict":["stickLongAmericium"],"name":"长镅杆","tr":"长镅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18008":{"oreDict":["itemCasingBeryllium"],"name":"铍外壳","tr":"铍外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26201":{"oreDict":["arrowGtPlasticManasteel"],"name":"轻质魔钢箭","tr":"轻质魔钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18010":{"oreDict":["itemCasingCarbon"],"name":"碳外壳","tr":"碳外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26202":{"oreDict":["arrowGtPlasticTerrasteel"],"name":"轻质泰拉钢箭","tr":"轻质泰拉钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26203":{"oreDict":["arrowGtPlasticElvenElementium"],"name":"轻质源质钢箭","tr":"轻质源质钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26204":{"oreDict":["arrowGtPlasticLivingrock"],"name":"轻质活石箭","tr":"轻质活石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26205":{"oreDict":["arrowGtPlasticGaiaSpirit"],"name":"轻质盖亚之魂箭","tr":"轻质盖亚之魂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26206":{"oreDict":["arrowGtPlasticLivingwood"],"name":"轻质活木箭","tr":"轻质活木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22111":{"oreDict":["stickLongTengamPurified"],"name":"长纯镃杆","tr":"长纯镃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26207":{"oreDict":["arrowGtPlasticDreamwood"],"name":"轻质梦之木箭","tr":"轻质梦之木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22112":{"oreDict":["stickLongTengamAttuned"],"name":"长谐镃杆","tr":"长谐镃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18018":{"oreDict":["itemCasingMagnesium"],"name":"镁外壳","tr":"镁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18019":{"oreDict":["itemCasingAluminium"],"name":"铝外壳","tr":"铝外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18020":{"oreDict":["itemCasingSilicon"],"name":"硅外壳","tr":"硅外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18025":{"oreDict":["itemCasingPotassium"],"name":"钾外壳","tr":"钾外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18027":{"oreDict":["itemCasingScandium"],"name":"钪外壳","tr":"钪外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18028":{"oreDict":["itemCasingTitanium"],"name":"钛外壳","tr":"钛外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18029":{"oreDict":["itemCasingVanadium"],"name":"钒外壳","tr":"钒外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18030":{"oreDict":["itemCasingChrome"],"name":"铬外壳","tr":"铬外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18031":{"oreDict":["itemCasingManganese"],"name":"锰外壳","tr":"锰外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18032":{"oreDict":["itemCasingIron"," itemCasingAnyIron"],"name":"铁外壳","tr":"铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18033":{"oreDict":["itemCasingCobalt"],"name":"钴外壳","tr":"钴外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22129":{"oreDict":["stickLongNeutronium"],"name":"长中子杆","tr":"长中子杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18034":{"oreDict":["itemCasingNickel"],"name":"镍外壳","tr":"镍外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18035":{"oreDict":["itemCasingCopper"," itemCasingAnyCopper"],"name":"铜外壳","tr":"铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22131":{"oreDict":["stickLongSuperconductorUIVBase"],"name":"长UIV超导粗胚杆","tr":"长UIV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18036":{"oreDict":["itemCasingZinc"],"name":"锌外壳","tr":"锌外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18037":{"oreDict":["itemCasingGallium"],"name":"镓外壳","tr":"镓外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22134":{"oreDict":["stickLongSuperconductorUMVBase"],"name":"长UMV超导粗胚杆","tr":"长UMV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18039":{"oreDict":["itemCasingArsenic"],"name":"砷外壳","tr":"砷外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18043":{"oreDict":["itemCasingRubidium"],"name":"铷外壳","tr":"铷外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22139":{"oreDict":["stickLongUniversium"],"name":"长宇宙素杆","tr":"长宇宙素杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18045":{"oreDict":["itemCasingYttrium"],"name":"钇外壳","tr":"钇外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22141":{"oreDict":["stickLongEternity"],"name":"长永恒杆","tr":"长永恒杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18047":{"oreDict":["itemCasingNiobium"],"name":"铌外壳","tr":"铌外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22143":{"oreDict":["stickLongMagmatter"],"name":"长磁物质杆","tr":"长磁物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18048":{"oreDict":["itemCasingMolybdenum"],"name":"钼外壳","tr":"钼外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18052":{"oreDict":["itemCasingPalladium"],"name":"钯外壳","tr":"钯外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18054":{"oreDict":["itemCasingSilver"],"name":"银外壳","tr":"银外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18056":{"oreDict":["itemCasingIndium"],"name":"铟外壳","tr":"铟外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18057":{"oreDict":["itemCasingTin"],"name":"锡外壳","tr":"锡外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18058":{"oreDict":["itemCasingAntimony"],"name":"锑外壳","tr":"锑外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18059":{"oreDict":["itemCasingTellurium"],"name":"碲外壳","tr":"碲外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18062":{"oreDict":["itemCasingCaesium"],"name":"铯外壳","tr":"铯外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18063":{"oreDict":["itemCasingBarium"],"name":"钡外壳","tr":"钡外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18064":{"oreDict":["itemCasingLanthanum"],"name":"镧外壳","tr":"镧外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18065":{"oreDict":["itemCasingCerium"],"name":"铈外壳","tr":"铈外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18066":{"oreDict":["itemCasingPraseodymium"],"name":"镨外壳","tr":"镨外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18067":{"oreDict":["itemCasingNeodymium"],"name":"钕外壳","tr":"钕外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18068":{"oreDict":["itemCasingPromethium"],"name":"钷外壳","tr":"钷外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18069":{"oreDict":["itemCasingSamarium"],"name":"钐外壳","tr":"钐外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18070":{"oreDict":["itemCasingEuropium"],"name":"铕外壳","tr":"铕外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18071":{"oreDict":["itemCasingGadolinium"],"name":"钆外壳","tr":"钆外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18072":{"oreDict":["itemCasingTerbium"],"name":"铽外壳","tr":"铽外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18073":{"oreDict":["itemCasingDysprosium"],"name":"镝外壳","tr":"镝外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18074":{"oreDict":["itemCasingHolmium"],"name":"钬外壳","tr":"钬外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18075":{"oreDict":["itemCasingErbium"],"name":"铒外壳","tr":"铒外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18076":{"oreDict":["itemCasingThulium"],"name":"铥外壳","tr":"铥外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18077":{"oreDict":["itemCasingYtterbium"],"name":"镱外壳","tr":"镱外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18078":{"oreDict":["itemCasingLutetium"],"name":"镥外壳","tr":"镥外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18080":{"oreDict":["itemCasingTantalum"],"name":"钽外壳","tr":"钽外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18081":{"oreDict":["itemCasingTungsten"],"name":"钨外壳","tr":"钨外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18083":{"oreDict":["itemCasingOsmium"],"name":"锇外壳","tr":"锇外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18084":{"oreDict":["itemCasingIridium"],"name":"铱外壳","tr":"铱外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18085":{"oreDict":["itemCasingPlatinum"],"name":"铂外壳","tr":"铂外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18086":{"oreDict":["itemCasingGold"],"name":"金外壳","tr":"金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18089":{"oreDict":["itemCasingLead"],"name":"铅外壳","tr":"铅外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18090":{"oreDict":["itemCasingBismuth"],"name":"铋外壳","tr":"铋外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18096":{"oreDict":["itemCasingThorium"],"name":"钍外壳","tr":"钍外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18097":{"oreDict":["itemCasingUranium235"],"name":"铀-235外壳","tr":"铀-235外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18098":{"oreDict":["itemCasingUranium"],"name":"铀-238外壳","tr":"铀-238外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18100":{"oreDict":["itemCasingPlutonium"],"name":"钚-239外壳","tr":"钚-239外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18101":{"oreDict":["itemCasingPlutonium241"],"name":"钚-241外壳","tr":"钚-241外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18103":{"oreDict":["itemCasingAmericium"],"name":"镅外壳","tr":"镅外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22201":{"oreDict":["stickLongManasteel"],"name":"长魔钢杆","tr":"长魔钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22202":{"oreDict":["stickLongTerrasteel"],"name":"长泰拉钢杆","tr":"长泰拉钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22203":{"oreDict":["stickLongElvenElementium"],"name":"长源质钢杆","tr":"长源质钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26299":{"oreDict":["arrowGtPlasticStone"],"name":"轻质石箭","tr":"轻质石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26300":{"oreDict":["arrowGtPlasticBronze"," arrowGtPlasticAnyBronze"],"name":"轻质青铜箭","tr":"轻质青铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22205":{"oreDict":["stickLongGaiaSpirit"],"name":"长盖亚之魂杆","tr":"长盖亚之魂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26301":{"oreDict":["arrowGtPlasticBrass"],"name":"轻质黄铜箭","tr":"轻质黄铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22206":{"oreDict":["stickLongLivingwood"],"name":"长活木杆","tr":"长活木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26302":{"oreDict":["arrowGtPlasticInvar"],"name":"轻质殷钢箭","tr":"轻质殷钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18111":{"oreDict":["itemCasingTengamPurified"],"name":"纯镃外壳","tr":"纯镃外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22207":{"oreDict":["stickLongDreamwood"],"name":"长梦之木杆","tr":"长梦之木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26303":{"oreDict":["arrowGtPlasticElectrum"],"name":"轻质琥珀金箭","tr":"轻质琥珀金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18112":{"oreDict":["itemCasingTengamAttuned"],"name":"谐镃外壳","tr":"谐镃外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22208":{"oreDict":["stickLongManaDiamond"],"name":"长魔力钻石杆","tr":"长魔力钻石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26304":{"oreDict":["arrowGtPlasticAnyIron"," arrowGtPlasticWroughtIron"],"name":"轻质锻铁箭","tr":"轻质锻铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22209":{"oreDict":["stickLongBotaniaDragonstone"],"name":"长龙石杆","tr":"长龙石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26305":{"oreDict":["arrowGtPlasticSteel"],"name":"轻质钢箭","tr":"轻质钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26306":{"oreDict":["arrowGtPlasticStainlessSteel"],"name":"轻质不锈钢箭","tr":"轻质不锈钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26307":{"oreDict":["arrowGtPlasticAnyIron"," arrowGtPlasticPigIron"],"name":"轻质生铁箭","tr":"轻质生铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26310":{"oreDict":["arrowGtPlasticCupronickel"],"name":"轻质白铜箭","tr":"轻质白铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26311":{"oreDict":["arrowGtPlasticNichrome"],"name":"轻质镍铬箭","tr":"轻质镍铬箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26312":{"oreDict":["arrowGtPlasticKanthal"],"name":"轻质坎塔尔合金箭","tr":"轻质坎塔尔合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26313":{"oreDict":["arrowGtPlasticMagnalium"],"name":"轻质镁铝合金箭","tr":"轻质镁铝合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26316":{"oreDict":["arrowGtPlasticTungstenSteel"],"name":"轻质钨钢箭","tr":"轻质钨钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26317":{"oreDict":["arrowGtPlasticOsmiridium"],"name":"轻质铱锇合金箭","tr":"轻质铱锇合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26318":{"oreDict":["arrowGtPlasticSunnarium"],"name":"轻质阳光化合物箭","tr":"轻质阳光化合物箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26319":{"oreDict":["arrowGtPlasticAdamantium"],"name":"轻质精金箭","tr":"轻质精金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26320":{"oreDict":["arrowGtPlasticElectrumFlux"],"name":"轻质通流琥珀金箭","tr":"轻质通流琥珀金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18129":{"oreDict":["itemCasingNeutronium"],"name":"中子外壳","tr":"中子外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26321":{"oreDict":["arrowGtPlasticEnderium"],"name":"轻质末影锭箭","tr":"轻质末影锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18131":{"oreDict":["itemCasingSuperconductorUIVBase"],"name":"UIV超导粗胚外壳","tr":"UIV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26323":{"oreDict":["arrowGtPlasticInfusedGold"],"name":"轻质注魔金箭","tr":"轻质注魔金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26324":{"oreDict":["arrowGtPlasticNaquadah"],"name":"轻质硅岩箭","tr":"轻质硅岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26325":{"oreDict":["arrowGtPlasticNaquadahAlloy"],"name":"轻质硅岩合金箭","tr":"轻质硅岩合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18134":{"oreDict":["itemCasingSuperconductorUMVBase"],"name":"UMV超导粗胚外壳","tr":"UMV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26326":{"oreDict":["arrowGtPlasticNaquadahEnriched"],"name":"轻质富集硅岩箭","tr":"轻质富集硅岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26327":{"oreDict":["arrowGtPlasticNaquadria"],"name":"轻质超能硅岩箭","tr":"轻质超能硅岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26328":{"oreDict":["arrowGtPlasticDuranium"],"name":"轻质铿铀箭","tr":"轻质铿铀箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26329":{"oreDict":["arrowGtPlasticTritanium"],"name":"轻质三钛箭","tr":"轻质三钛箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26330":{"oreDict":["arrowGtPlasticThaumium"],"name":"轻质神秘锭箭","tr":"轻质神秘锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18139":{"oreDict":["itemCasingUniversium"],"name":"宇宙素外壳","tr":"宇宙素外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26331":{"oreDict":["arrowGtPlasticMithril"],"name":"轻质秘银箭","tr":"轻质秘银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18141":{"oreDict":["itemCasingEternity"],"name":"永恒外壳","tr":"永恒外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26333":{"oreDict":["arrowGtPlasticAstralSilver"],"name":"轻质星辰银箭","tr":"轻质星辰银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26334":{"oreDict":["arrowGtPlasticBlackSteel"],"name":"轻质黑钢箭","tr":"轻质黑钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18143":{"oreDict":["itemCasingMagmatter"],"name":"磁物质外壳","tr":"磁物质外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26335":{"oreDict":["arrowGtPlasticDamascusSteel"],"name":"轻质大马士革钢箭","tr":"轻质大马士革钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26336":{"oreDict":["arrowGtPlasticShadowIron"],"name":"轻质暗影铁箭","tr":"轻质暗影铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26337":{"oreDict":["arrowGtPlasticShadowSteel"],"name":"轻质暗影钢箭","tr":"轻质暗影钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26338":{"oreDict":["arrowGtPlasticIronWood"],"name":"轻质铁木箭","tr":"轻质铁木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26339":{"oreDict":["arrowGtPlasticSteeleaf"],"name":"轻质钢叶箭","tr":"轻质钢叶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26340":{"oreDict":["arrowGtPlasticMeteoricIron"],"name":"轻质陨铁箭","tr":"轻质陨铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26341":{"oreDict":["arrowGtPlasticMeteoricSteel"],"name":"轻质陨钢箭","tr":"轻质陨钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26342":{"oreDict":["arrowGtPlasticDarkIron"],"name":"轻质玄铁箭","tr":"轻质玄铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26343":{"oreDict":["arrowGtPlasticCobaltBrass"],"name":"轻质钴黄铜箭","tr":"轻质钴黄铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26344":{"oreDict":["arrowGtPlasticUltimet"],"name":"轻质哈氏合金箭","tr":"轻质哈氏合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26346":{"oreDict":["arrowGtPlasticFierySteel"],"name":"轻质炽热钢箭","tr":"轻质炽热钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26347":{"oreDict":["arrowGtPlasticFirestone"],"name":"轻质火石箭","tr":"轻质火石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26348":{"oreDict":["arrowGtPlasticRedSteel"],"name":"轻质红钢箭","tr":"轻质红钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26349":{"oreDict":["arrowGtPlasticBlueSteel"],"name":"轻质蓝钢箭","tr":"轻质蓝钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26350":{"oreDict":["arrowGtPlasticSterlingSilver"],"name":"轻质标准纯银箭","tr":"轻质标准纯银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26351":{"oreDict":["arrowGtPlasticRoseGold"],"name":"轻质玫瑰金箭","tr":"轻质玫瑰金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26352":{"oreDict":["arrowGtPlasticBlackBronze"],"name":"轻质黑青铜箭","tr":"轻质黑青铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26353":{"oreDict":["arrowGtPlasticBismuthBronze"],"name":"轻质铋青铜箭","tr":"轻质铋青铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26354":{"oreDict":["arrowGtPlasticIronMagnetic"],"name":"轻质磁化铁箭","tr":"轻质磁化铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26355":{"oreDict":["arrowGtPlasticSteelMagnetic"],"name":"轻质磁化钢箭","tr":"轻质磁化钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26356":{"oreDict":["arrowGtPlasticNeodymiumMagnetic"],"name":"轻质磁化钕箭","tr":"轻质磁化钕箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26362":{"oreDict":["arrowGtPlasticKnightmetal"],"name":"轻质骑士金属箭","tr":"轻质骑士金属箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26363":{"oreDict":["arrowGtPlasticTinAlloy"],"name":"轻质锡铁合金箭","tr":"轻质锡铁合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26364":{"oreDict":["arrowGtPlasticDarkSteel"],"name":"轻质玄钢箭","tr":"轻质玄钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26365":{"oreDict":["arrowGtPlasticElectricalSteel"],"name":"轻质磁钢箭","tr":"轻质磁钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26366":{"oreDict":["arrowGtPlasticEnergeticAlloy"],"name":"轻质充能合金箭","tr":"轻质充能合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26367":{"oreDict":["arrowGtPlasticVibrantAlloy"],"name":"轻质脉冲合金箭","tr":"轻质脉冲合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26368":{"oreDict":["arrowGtPlasticShadow"],"name":"轻质暗影箭","tr":"轻质暗影箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26369":{"oreDict":["arrowGtPlasticConductiveIron"],"name":"轻质导电铁箭","tr":"轻质导电铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26370":{"oreDict":["arrowGtPlasticTungstenCarbide"],"name":"轻质碳化钨箭","tr":"轻质碳化钨箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26371":{"oreDict":["arrowGtPlasticVanadiumSteel"],"name":"轻质钒钢箭","tr":"轻质钒钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26372":{"oreDict":["arrowGtPlasticHSSG"],"name":"轻质高速钢-G箭","tr":"轻质高速钢-G箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26373":{"oreDict":["arrowGtPlasticHSSE"],"name":"轻质高速钢-E箭","tr":"轻质高速钢-E箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26374":{"oreDict":["arrowGtPlasticHSSS"],"name":"轻质高速钢-S箭","tr":"轻质高速钢-S箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26378":{"oreDict":["arrowGtPlasticPulsatingIron"],"name":"轻质脉冲铁箭","tr":"轻质脉冲铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26379":{"oreDict":["arrowGtPlasticSoularium"],"name":"轻质魂金箭","tr":"轻质魂金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26380":{"oreDict":["arrowGtPlasticEnderiumBase"],"name":"轻质末影粗胚箭","tr":"轻质末影粗胚箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26381":{"oreDict":["arrowGtPlasticRedstoneAlloy"],"name":"轻质红石合金箭","tr":"轻质红石合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26382":{"oreDict":["arrowGtPlasticArdite"],"name":"轻质阿迪特箭","tr":"轻质阿迪特箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26383":{"oreDict":["arrowGtPlasticReinforced"],"name":"轻质强化金属箭","tr":"轻质强化金属箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26384":{"oreDict":["arrowGtPlasticGalgadorian"],"name":"轻质混合晶锭箭","tr":"轻质混合晶锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26385":{"oreDict":["arrowGtPlasticEnhancedGalgadorian"],"name":"轻质强化混合晶锭箭","tr":"轻质强化混合晶锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26386":{"oreDict":["arrowGtPlasticManyullyn"],"name":"轻质玛玉灵箭","tr":"轻质玛玉灵箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26387":{"oreDict":["arrowGtPlasticMytryl"],"name":"轻质深空秘银箭","tr":"轻质深空秘银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26388":{"oreDict":["arrowGtPlasticBlackPlutonium"],"name":"轻质黑钚箭","tr":"轻质黑钚箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26389":{"oreDict":["arrowGtPlasticCallistoIce"],"name":"轻质木卫四冰箭","tr":"轻质木卫四冰箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26390":{"oreDict":["arrowGtPlasticLedox"],"name":"轻质深铅箭","tr":"轻质深铅箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26391":{"oreDict":["arrowGtPlasticQuantium"],"name":"轻质量子锭箭","tr":"轻质量子锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26392":{"oreDict":["arrowGtPlasticDuralumin"],"name":"轻质硬铝箭","tr":"轻质硬铝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18201":{"oreDict":["itemCasingManasteel"],"name":"魔钢外壳","tr":"魔钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26393":{"oreDict":["arrowGtPlasticOriharukon"],"name":"轻质山铜箭","tr":"轻质山铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18202":{"oreDict":["itemCasingTerrasteel"],"name":"泰拉钢外壳","tr":"泰拉钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26394":{"oreDict":["arrowGtPlasticInfinityCatalyst"],"name":"轻质无尽催化剂箭","tr":"轻质无尽催化剂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18203":{"oreDict":["itemCasingElvenElementium"],"name":"源质钢外壳","tr":"源质钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22300":{"oreDict":["stickLongBronze"," stickLongAnyBronze"],"name":"长青铜杆","tr":"长青铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18205":{"oreDict":["itemCasingGaiaSpirit"],"name":"盖亚之魂外壳","tr":"盖亚之魂外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22301":{"oreDict":["stickLongBrass"],"name":"长黄铜杆","tr":"长黄铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26397":{"oreDict":["arrowGtPlasticInfinity"],"name":"轻质无尽箭","tr":"轻质无尽箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18206":{"oreDict":["itemCasingLivingwood"],"name":"活木外壳","tr":"活木外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22302":{"oreDict":["stickLongInvar"],"name":"长殷钢杆","tr":"长殷钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26398":{"oreDict":["arrowGtPlasticMysteriousCrystal"],"name":"轻质神秘水晶箭","tr":"轻质神秘水晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18207":{"oreDict":["itemCasingDreamwood"],"name":"梦之木外壳","tr":"梦之木外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22303":{"oreDict":["stickLongElectrum"],"name":"长琥珀金杆","tr":"长琥珀金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26399":{"oreDict":["arrowGtPlasticSamariumMagnetic"],"name":"轻质磁化钐箭","tr":"轻质磁化钐箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18208":{"oreDict":["itemCasingManaDiamond"],"name":"魔力钻石外壳","tr":"魔力钻石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22304":{"oreDict":["stickLongWroughtIron"," stickLongAnyIron"],"name":"长锻铁杆","tr":"长锻铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26400":{"oreDict":["arrowGtPlasticAlumite"],"name":"轻质耐酸铝箭","tr":"轻质耐酸铝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18209":{"oreDict":["itemCasingBotaniaDragonstone"],"name":"龙石外壳","tr":"龙石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22305":{"oreDict":["stickLongSteel"],"name":"长钢杆","tr":"长钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26401":{"oreDict":["arrowGtPlasticEndSteel"],"name":"轻质末影钢箭","tr":"轻质末影钢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22306":{"oreDict":["stickLongStainlessSteel"],"name":"长不锈钢杆","tr":"长不锈钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26402":{"oreDict":["arrowGtPlasticCrudeSteel"],"name":"轻质复合粘土箭","tr":"轻质复合粘土箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22307":{"oreDict":["stickLongPigIron"," stickLongAnyIron"],"name":"长生铁杆","tr":"长生铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26403":{"oreDict":["arrowGtPlasticCrystallineAlloy"],"name":"轻质晶化合金箭","tr":"轻质晶化合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22308":{"oreDict":["stickLongRedAlloy"],"name":"长红色合金杆","tr":"长红色合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26404":{"oreDict":["arrowGtPlasticMelodicAlloy"],"name":"轻质旋律合金箭","tr":"轻质旋律合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30500":{"oreDict":["gemExquisiteDiamond"],"name":"精致的钻石","tr":"精致的钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22309":{"oreDict":["stickLongBlueAlloy"],"name":"长蓝色合金杆","tr":"长蓝色合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26405":{"oreDict":["arrowGtPlasticStellarAlloy"],"name":"轻质恒星合金箭","tr":"轻质恒星合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30501":{"oreDict":["gemExquisiteEmerald"],"name":"精致的绿宝石","tr":"精致的绿宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22310":{"oreDict":["stickLongCupronickel"],"name":"长白铜杆","tr":"长白铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26406":{"oreDict":["arrowGtPlasticCrystallinePinkSlime"],"name":"轻质晶化粉红史莱姆箭","tr":"轻质晶化粉红史莱姆箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30502":{"oreDict":["gemExquisiteRuby"],"name":"精致的红宝石","tr":"精致的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22311":{"oreDict":["stickLongNichrome"],"name":"长镍铬合金杆","tr":"长镍铬合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26407":{"oreDict":["arrowGtPlasticEnergeticSilver"],"name":"轻质充能银箭","tr":"轻质充能银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30503":{"oreDict":["gemExquisiteSapphire"],"name":"精致的蓝宝石","tr":"精致的蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22312":{"oreDict":["stickLongKanthal"],"name":"长坎塔尔合金杆","tr":"长坎塔尔合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26408":{"oreDict":["arrowGtPlasticVividAlloy"],"name":"轻质生动合金箭","tr":"轻质生动合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30504":{"oreDict":["gemExquisiteGreenSapphire"],"name":"精致的绿色蓝宝石","tr":"精致的绿色蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22313":{"oreDict":["stickLongMagnalium"],"name":"长镁铝合金杆","tr":"长镁铝合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30505":{"oreDict":["gemExquisiteOlivine"],"name":"精致的橄榄石","tr":"精致的橄榄石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22314":{"oreDict":["stickLongSolderingAlloy"],"name":"长焊锡杆","tr":"长焊锡杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22315":{"oreDict":["stickLongBatteryAlloy"],"name":"长电池合金杆","tr":"长电池合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30507":{"oreDict":["gemExquisiteTopaz"],"name":"精致的黄玉","tr":"精致的黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22316":{"oreDict":["stickLongTungstenSteel"],"name":"长钨钢杆","tr":"长钨钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30508":{"oreDict":["gemExquisiteTanzanite"],"name":"精致的坦桑石","tr":"精致的坦桑石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22317":{"oreDict":["stickLongOsmiridium"],"name":"长铱锇合金杆","tr":"长铱锇合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30509":{"oreDict":["gemExquisiteAmethyst"],"name":"精致的紫水晶","tr":"精致的紫水晶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22318":{"oreDict":["stickLongSunnarium"],"name":"长阳光化合物杆","tr":"长阳光化合物杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30510":{"oreDict":["gemExquisiteOpal"],"name":"精致的蛋白石","tr":"精致的蛋白石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22319":{"oreDict":["stickLongAdamantium"],"name":"长精金杆","tr":"长精金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30511":{"oreDict":["gemExquisiteJasper"],"name":"精致的碧玉","tr":"精致的碧玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22320":{"oreDict":["stickLongElectrumFlux"],"name":"长通流琥珀金杆","tr":"长通流琥珀金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30512":{"oreDict":["gemExquisiteFoolsRuby"],"name":"精致的红宝石","tr":"精致的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22321":{"oreDict":["stickLongEnderium"],"name":"长末影(te)杆","tr":"长末影(te)杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30513":{"oreDict":["gemExquisiteBlueTopaz"],"name":"精致的蓝黄玉","tr":"精致的蓝黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30514":{"oreDict":["gemExquisiteAmber"],"name":"精致的琥珀","tr":"精致的琥珀","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22323":{"oreDict":["stickLongInfusedGold"],"name":"长注魔金杆","tr":"长注魔金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22324":{"oreDict":["stickLongNaquadah"],"name":"长硅岩杆","tr":"长硅岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22325":{"oreDict":["stickLongNaquadahAlloy"],"name":"长硅岩合金杆","tr":"长硅岩合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22326":{"oreDict":["stickLongNaquadahEnriched"],"name":"长富集硅岩杆","tr":"长富集硅岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22327":{"oreDict":["stickLongNaquadria"],"name":"长超能硅岩杆","tr":"长超能硅岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22328":{"oreDict":["stickLongDuranium"],"name":"长铿铀杆","tr":"长铿铀杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22329":{"oreDict":["stickLongTritanium"],"name":"长三钛杆","tr":"长三钛杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22330":{"oreDict":["stickLongThaumium"],"name":"长神秘杆","tr":"长神秘杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22331":{"oreDict":["stickLongMithril"],"name":"长秘银杆","tr":"长秘银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22333":{"oreDict":["stickLongAstralSilver"],"name":"长星辰银杆","tr":"长星辰银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22334":{"oreDict":["stickLongBlackSteel"],"name":"长黑钢杆","tr":"长黑钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22335":{"oreDict":["stickLongDamascusSteel"],"name":"长大马士革钢杆","tr":"长大马士革钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30527":{"oreDict":["gemExquisiteGarnetRed"],"name":"精致的红石榴石","tr":"精致的红石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22336":{"oreDict":["stickLongShadowIron"],"name":"长暗影铁杆","tr":"长暗影铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30528":{"oreDict":["gemExquisiteGarnetYellow"],"name":"精致的黄石榴石","tr":"精致的黄石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22337":{"oreDict":["stickLongShadowSteel"],"name":"长暗影钢杆","tr":"长暗影钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22338":{"oreDict":["stickLongIronWood"],"name":"长铁木杆","tr":"长铁木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22339":{"oreDict":["stickLongSteeleaf"],"name":"长钢叶杆","tr":"长钢叶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22340":{"oreDict":["stickLongMeteoricIron"],"name":"长陨铁杆","tr":"长陨铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22341":{"oreDict":["stickLongMeteoricSteel"],"name":"长陨钢杆","tr":"长陨钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22342":{"oreDict":["stickLongDarkIron"],"name":"长玄铁杆","tr":"长玄铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22343":{"oreDict":["stickLongCobaltBrass"],"name":"长钴黄铜杆","tr":"长钴黄铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22344":{"oreDict":["stickLongUltimet"],"name":"长哈氏合金杆","tr":"长哈氏合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22345":{"oreDict":["stickLongAnyCopper"," stickLongAnnealedCopper"],"name":"长退火铜杆","tr":"长退火铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22346":{"oreDict":["stickLongFierySteel"],"name":"长炽热的钢杆","tr":"长炽热的钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22347":{"oreDict":["stickLongFirestone"],"name":"长火石杆","tr":"长火石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22348":{"oreDict":["stickLongRedSteel"],"name":"长红钢杆","tr":"长红钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22349":{"oreDict":["stickLongBlueSteel"],"name":"长蓝钢杆","tr":"长蓝钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22350":{"oreDict":["stickLongSterlingSilver"],"name":"长标准纯银杆","tr":"长标准纯银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22351":{"oreDict":["stickLongRoseGold"],"name":"长玫瑰金杆","tr":"长玫瑰金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22352":{"oreDict":["stickLongBlackBronze"],"name":"长黑青铜杆","tr":"长黑青铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22353":{"oreDict":["stickLongBismuthBronze"],"name":"长铋青铜杆","tr":"长铋青铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22354":{"oreDict":["stickLongIronMagnetic"],"name":"长磁化铁杆","tr":"长磁化铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22355":{"oreDict":["stickLongSteelMagnetic"],"name":"长磁化钢杆","tr":"长磁化钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22356":{"oreDict":["stickLongNeodymiumMagnetic"],"name":"长磁化钕杆","tr":"长磁化钕杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22357":{"oreDict":["stickLongVanadiumGallium"],"name":"长钒镓合金杆","tr":"长钒镓合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22358":{"oreDict":["stickLongYttriumBariumCuprate"],"name":"长钇钡铜氧杆","tr":"长钇钡铜氧杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22359":{"oreDict":["stickLongNiobiumNitride"],"name":"长氮化铌杆","tr":"长氮化铌杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22360":{"oreDict":["stickLongNiobiumTitanium"],"name":"长铌钛合金杆","tr":"长铌钛合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22361":{"oreDict":["stickLongChromiumDioxide"],"name":"长二氧化铬杆","tr":"长二氧化铬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22362":{"oreDict":["stickLongKnightmetal"],"name":"长骑士金属杆","tr":"长骑士金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22363":{"oreDict":["stickLongTinAlloy"],"name":"长锡铁合金杆","tr":"长锡铁合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22364":{"oreDict":["stickLongDarkSteel"],"name":"长玄钢杆","tr":"长玄钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22365":{"oreDict":["stickLongElectricalSteel"],"name":"长磁钢杆","tr":"长磁钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22366":{"oreDict":["stickLongEnergeticAlloy"],"name":"长充能合金杆","tr":"长充能合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22367":{"oreDict":["stickLongVibrantAlloy"],"name":"长脉冲合金杆","tr":"长脉冲合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22368":{"oreDict":["stickLongShadow"],"name":"长暗影金属杆","tr":"长暗影金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22369":{"oreDict":["stickLongConductiveIron"],"name":"长导电铁杆","tr":"长导电铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22370":{"oreDict":["stickLongTungstenCarbide"],"name":"长碳化钨杆","tr":"长碳化钨杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22371":{"oreDict":["stickLongVanadiumSteel"],"name":"长钒钢杆","tr":"长钒钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22372":{"oreDict":["stickLongHSSG"],"name":"长高速钢-G杆","tr":"长高速钢-G杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22373":{"oreDict":["stickLongHSSE"],"name":"长高速钢-E杆","tr":"长高速钢-E杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22374":{"oreDict":["stickLongHSSS"],"name":"长高速钢-S杆","tr":"长高速钢-S杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26470":{"oreDict":["arrowGtPlasticEpoxid"],"name":"轻质环氧树脂箭","tr":"轻质环氧树脂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26471":{"oreDict":["arrowGtPlasticSilicone"," arrowGtPlasticAnyRubber"," arrowGtPlasticAnySyntheticRubber"],"name":"轻质硅橡胶箭","tr":"轻质硅橡胶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26472":{"oreDict":["arrowGtPlasticPolycaprolactam"],"name":"轻质聚己内酰胺箭","tr":"轻质聚己内酰胺箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26473":{"oreDict":["arrowGtPlasticPolytetrafluoroethylene"],"name":"轻质聚四氟乙烯箭","tr":"轻质聚四氟乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22378":{"oreDict":["stickLongPulsatingIron"],"name":"长脉冲铁杆","tr":"长脉冲铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22379":{"oreDict":["stickLongSoularium"],"name":"长魂金杆","tr":"长魂金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22380":{"oreDict":["stickLongEnderiumBase"],"name":"长末影粗胚杆","tr":"长末影粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22381":{"oreDict":["stickLongRedstoneAlloy"],"name":"长红石合金杆","tr":"长红石合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22382":{"oreDict":["stickLongArdite"],"name":"长阿迪特杆","tr":"长阿迪特杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22383":{"oreDict":["stickLongReinforced"],"name":"长强化杆","tr":"长强化杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22384":{"oreDict":["stickLongGalgadorian"],"name":"长混合晶杆","tr":"长混合晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22385":{"oreDict":["stickLongEnhancedGalgadorian"],"name":"长强化混合晶杆","tr":"长强化混合晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22386":{"oreDict":["stickLongManyullyn"],"name":"长玛玉灵杆","tr":"长玛玉灵杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22387":{"oreDict":["stickLongMytryl"],"name":"长深空秘银杆","tr":"长深空秘银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22388":{"oreDict":["stickLongBlackPlutonium"],"name":"长黑钚杆","tr":"长黑钚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22389":{"oreDict":["stickLongCallistoIce"],"name":"长木卫四冰杆","tr":"长木卫四冰杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26485":{"oreDict":["arrowGtPlasticAlduorite"],"name":"轻质神秘蓝金箭","tr":"轻质神秘蓝金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22390":{"oreDict":["stickLongLedox"],"name":"长深铅杆","tr":"长深铅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22391":{"oreDict":["stickLongQuantium"],"name":"长量子杆","tr":"长量子杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22392":{"oreDict":["stickLongDuralumin"],"name":"长硬铝杆","tr":"长硬铝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26488":{"oreDict":["arrowGtPlasticRubracium"],"name":"轻质褐铜箭","tr":"轻质褐铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22393":{"oreDict":["stickLongOriharukon"],"name":"长奥利哈钢杆","tr":"长奥利哈钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26489":{"oreDict":["arrowGtPlasticVulcanite"],"name":"轻质胶木箭","tr":"轻质胶木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22394":{"oreDict":["stickLongInfinityCatalyst"],"name":"长无尽催化剂杆","tr":"长无尽催化剂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22395":{"oreDict":["stickLongBedrockium"],"name":"长基岩杆","tr":"长基岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18300":{"oreDict":["itemCasingBronze"," itemCasingAnyBronze"],"name":"青铜外壳","tr":"青铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18301":{"oreDict":["itemCasingBrass"],"name":"黄铜外壳","tr":"黄铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22397":{"oreDict":["stickLongInfinity"],"name":"长无尽杆","tr":"长无尽杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18302":{"oreDict":["itemCasingInvar"],"name":"殷钢外壳","tr":"殷钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22398":{"oreDict":["stickLongMysteriousCrystal"],"name":"长神秘水晶杆","tr":"长神秘水晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18303":{"oreDict":["itemCasingElectrum"],"name":"琥珀金外壳","tr":"琥珀金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22399":{"oreDict":["stickLongSamariumMagnetic"],"name":"长磁化钐杆","tr":"长磁化钐杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18304":{"oreDict":["itemCasingWroughtIron"," itemCasingAnyIron"],"name":"锻铁外壳","tr":"锻铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22400":{"oreDict":["stickLongAlumite"],"name":"长耐酸铝杆","tr":"长耐酸铝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18305":{"oreDict":["itemCasingSteel"],"name":"钢外壳","tr":"钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22401":{"oreDict":["stickLongEndSteel"],"name":"长末影钢杆","tr":"长末影钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18306":{"oreDict":["itemCasingStainlessSteel"],"name":"不锈钢外壳","tr":"不锈钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22402":{"oreDict":["stickLongCrudeSteel"],"name":"长复合粘土杆","tr":"长复合粘土杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18307":{"oreDict":["itemCasingPigIron"," itemCasingAnyIron"],"name":"生铁外壳","tr":"生铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22403":{"oreDict":["stickLongCrystallineAlloy"],"name":"长晶化合金杆","tr":"长晶化合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18308":{"oreDict":["itemCasingRedAlloy"],"name":"红色合金外壳","tr":"红色合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22404":{"oreDict":["stickLongMelodicAlloy"],"name":"长旋律合金杆","tr":"长旋律合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26500":{"oreDict":["arrowGtPlasticDiamond"],"name":"轻质钻石箭","tr":"轻质钻石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18309":{"oreDict":["itemCasingBlueAlloy"],"name":"蓝色合金外壳","tr":"蓝色合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22405":{"oreDict":["stickLongStellarAlloy"],"name":"长恒星合金杆","tr":"长恒星合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26501":{"oreDict":["arrowGtPlasticEmerald"],"name":"轻质绿宝石箭","tr":"轻质绿宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18310":{"oreDict":["itemCasingCupronickel"],"name":"白铜外壳","tr":"白铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22406":{"oreDict":["stickLongCrystallinePinkSlime"],"name":"长晶化粉红史莱姆杆","tr":"长晶化粉红史莱姆杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26502":{"oreDict":["arrowGtPlasticRuby"],"name":"轻质红宝石箭","tr":"轻质红宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18311":{"oreDict":["itemCasingNichrome"],"name":"镍铬合金外壳","tr":"镍铬合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22407":{"oreDict":["stickLongEnergeticSilver"],"name":"长充能银杆","tr":"长充能银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26503":{"oreDict":["arrowGtPlasticSapphire"],"name":"轻质蓝宝石箭","tr":"轻质蓝宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18312":{"oreDict":["itemCasingKanthal"],"name":"坎塔尔合金外壳","tr":"坎塔尔合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22408":{"oreDict":["stickLongVividAlloy"],"name":"长生动合金杆","tr":"长生动合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26504":{"oreDict":["arrowGtPlasticGreenSapphire"],"name":"轻质绿色蓝宝石箭","tr":"轻质绿色蓝宝石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18313":{"oreDict":["itemCasingMagnalium"],"name":"镁铝合金外壳","tr":"镁铝合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26505":{"oreDict":["arrowGtPlasticOlivine"],"name":"轻质橄榄石箭","tr":"轻质橄榄石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18314":{"oreDict":["itemCasingSolderingAlloy"],"name":"焊锡外壳","tr":"焊锡外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26506":{"oreDict":["arrowGtPlasticNetherStar"],"name":"轻质下界之星箭","tr":"轻质下界之星箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18315":{"oreDict":["itemCasingBatteryAlloy"],"name":"电池合金外壳","tr":"电池合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26507":{"oreDict":["arrowGtPlasticTopaz"],"name":"轻质黄玉箭","tr":"轻质黄玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18316":{"oreDict":["itemCasingTungstenSteel"],"name":"钨钢外壳","tr":"钨钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26508":{"oreDict":["arrowGtPlasticTanzanite"],"name":"轻质坦桑石箭","tr":"轻质坦桑石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18317":{"oreDict":["itemCasingOsmiridium"],"name":"铱锇合金外壳","tr":"铱锇合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26509":{"oreDict":["arrowGtPlasticAmethyst"],"name":"轻质紫水晶箭","tr":"轻质紫水晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18318":{"oreDict":["itemCasingSunnarium"],"name":"阳光化合物外壳","tr":"阳光化合物外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26510":{"oreDict":["arrowGtPlasticOpal"],"name":"轻质蛋白石箭","tr":"轻质蛋白石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18319":{"oreDict":["itemCasingAdamantium"],"name":"精金外壳","tr":"精金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26511":{"oreDict":["arrowGtPlasticJasper"],"name":"轻质碧玉箭","tr":"轻质碧玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18320":{"oreDict":["itemCasingElectrumFlux"],"name":"通流琥珀金外壳","tr":"通流琥珀金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18321":{"oreDict":["itemCasingEnderium"],"name":"末影(te)外壳","tr":"末影(te)外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26513":{"oreDict":["arrowGtPlasticBlueTopaz"],"name":"轻质蓝黄玉箭","tr":"轻质蓝黄玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26514":{"oreDict":["arrowGtPlasticAmber"],"name":"轻质琥珀箭","tr":"轻质琥珀箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18323":{"oreDict":["itemCasingInfusedGold"],"name":"注魔金外壳","tr":"注魔金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18324":{"oreDict":["itemCasingNaquadah"],"name":"硅岩外壳","tr":"硅岩外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26516":{"oreDict":["arrowGtPlasticCertusQuartz"],"name":"轻质赛特斯石英箭","tr":"轻质赛特斯石英箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18325":{"oreDict":["itemCasingNaquadahAlloy"],"name":"硅岩合金外壳","tr":"硅岩合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18326":{"oreDict":["itemCasingNaquadahEnriched"],"name":"富集硅岩外壳","tr":"富集硅岩外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18327":{"oreDict":["itemCasingNaquadria"],"name":"超能硅岩外壳","tr":"超能硅岩外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18328":{"oreDict":["itemCasingDuranium"],"name":"铿铀外壳","tr":"铿铀外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18329":{"oreDict":["itemCasingTritanium"],"name":"三钛外壳","tr":"三钛外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26521":{"oreDict":["arrowGtPlasticForce"],"name":"轻质力量箭","tr":"轻质力量箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18330":{"oreDict":["itemCasingThaumium"],"name":"神秘外壳","tr":"神秘外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26522":{"oreDict":["arrowGtPlasticNetherQuartz"],"name":"轻质下界石英箭","tr":"轻质下界石英箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18331":{"oreDict":["itemCasingMithril"],"name":"秘银外壳","tr":"秘银外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18333":{"oreDict":["itemCasingAstralSilver"],"name":"星辰银外壳","tr":"星辰银外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18334":{"oreDict":["itemCasingBlackSteel"],"name":"黑钢外壳","tr":"黑钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18335":{"oreDict":["itemCasingDamascusSteel"],"name":"大马士革钢外壳","tr":"大马士革钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26527":{"oreDict":["arrowGtPlasticGarnetRed"],"name":"轻质红石榴石箭","tr":"轻质红石榴石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18336":{"oreDict":["itemCasingShadowIron"],"name":"暗影铁外壳","tr":"暗影铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26528":{"oreDict":["arrowGtPlasticGarnetYellow"],"name":"轻质黄石榴石箭","tr":"轻质黄石榴石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18337":{"oreDict":["itemCasingShadowSteel"],"name":"暗影钢外壳","tr":"暗影钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26529":{"oreDict":["arrowGtPlasticVinteum"],"name":"轻质温特姆箭","tr":"轻质温特姆箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18338":{"oreDict":["itemCasingIronWood"],"name":"铁木外壳","tr":"铁木外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18339":{"oreDict":["itemCasingSteeleaf"],"name":"钢叶外壳","tr":"钢叶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18340":{"oreDict":["itemCasingMeteoricIron"],"name":"陨铁外壳","tr":"陨铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18341":{"oreDict":["itemCasingMeteoricSteel"],"name":"陨钢外壳","tr":"陨钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18342":{"oreDict":["itemCasingDarkIron"],"name":"玄铁外壳","tr":"玄铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18343":{"oreDict":["itemCasingCobaltBrass"],"name":"钴黄铜外壳","tr":"钴黄铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18344":{"oreDict":["itemCasingUltimet"],"name":"哈氏合金外壳","tr":"哈氏合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18345":{"oreDict":["itemCasingAnyCopper"," itemCasingAnnealedCopper"],"name":"退火铜外壳","tr":"退火铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26537":{"oreDict":["arrowGtPlasticJade"],"name":"轻质玉箭","tr":"轻质玉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18346":{"oreDict":["itemCasingFierySteel"],"name":"炽热的钢外壳","tr":"炽热的钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18347":{"oreDict":["itemCasingFirestone"],"name":"火石外壳","tr":"火石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18348":{"oreDict":["itemCasingRedSteel"],"name":"红钢外壳","tr":"红钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26540":{"oreDict":["arrowGtPlasticInfusedAir"],"name":"轻质风之魔晶箭","tr":"轻质风之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18349":{"oreDict":["itemCasingBlueSteel"],"name":"蓝钢外壳","tr":"蓝钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26541":{"oreDict":["arrowGtPlasticInfusedFire"],"name":"轻质火之魔晶箭","tr":"轻质火之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18350":{"oreDict":["itemCasingSterlingSilver"],"name":"标准纯银外壳","tr":"标准纯银外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26542":{"oreDict":["arrowGtPlasticInfusedEarth"],"name":"轻质地之魔晶箭","tr":"轻质地之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18351":{"oreDict":["itemCasingRoseGold"],"name":"玫瑰金外壳","tr":"玫瑰金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26543":{"oreDict":["arrowGtPlasticInfusedWater"],"name":"轻质水之魔晶箭","tr":"轻质水之魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18352":{"oreDict":["itemCasingBlackBronze"],"name":"黑青铜外壳","tr":"黑青铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26544":{"oreDict":["arrowGtPlasticInfusedEntropy"],"name":"轻质混沌魔晶箭","tr":"轻质混沌魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18353":{"oreDict":["itemCasingBismuthBronze"],"name":"铋青铜外壳","tr":"铋青铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26545":{"oreDict":["arrowGtPlasticInfusedOrder"],"name":"轻质秩序魔晶箭","tr":"轻质秩序魔晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18354":{"oreDict":["itemCasingIronMagnetic"],"name":"磁化铁外壳","tr":"磁化铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18355":{"oreDict":["itemCasingSteelMagnetic"],"name":"磁化钢外壳","tr":"磁化钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18356":{"oreDict":["itemCasingNeodymiumMagnetic"],"name":"磁化钕外壳","tr":"磁化钕外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18357":{"oreDict":["itemCasingVanadiumGallium"],"name":"钒镓合金外壳","tr":"钒镓合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18358":{"oreDict":["itemCasingYttriumBariumCuprate"],"name":"钇钡铜氧外壳","tr":"钇钡铜氧外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18359":{"oreDict":["itemCasingNiobiumNitride"],"name":"氮化铌外壳","tr":"氮化铌外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18360":{"oreDict":["itemCasingNiobiumTitanium"],"name":"铌钛合金外壳","tr":"铌钛合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18361":{"oreDict":["itemCasingChromiumDioxide"],"name":"二氧化铬外壳","tr":"二氧化铬外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18362":{"oreDict":["itemCasingKnightmetal"],"name":"骑士金属外壳","tr":"骑士金属外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18363":{"oreDict":["itemCasingTinAlloy"],"name":"锡铁合金外壳","tr":"锡铁合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18364":{"oreDict":["itemCasingDarkSteel"],"name":"玄钢外壳","tr":"玄钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18365":{"oreDict":["itemCasingElectricalSteel"],"name":"磁钢外壳","tr":"磁钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18366":{"oreDict":["itemCasingEnergeticAlloy"],"name":"充能合金外壳","tr":"充能合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18367":{"oreDict":["itemCasingVibrantAlloy"],"name":"脉冲合金外壳","tr":"脉冲合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18368":{"oreDict":["itemCasingShadow"],"name":"暗影金属外壳","tr":"暗影金属外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18369":{"oreDict":["itemCasingConductiveIron"],"name":"导电铁外壳","tr":"导电铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18370":{"oreDict":["itemCasingTungstenCarbide"],"name":"碳化钨外壳","tr":"碳化钨外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18371":{"oreDict":["itemCasingVanadiumSteel"],"name":"钒钢外壳","tr":"钒钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18372":{"oreDict":["itemCasingHSSG"],"name":"高速钢-G外壳","tr":"高速钢-G外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18373":{"oreDict":["itemCasingHSSE"],"name":"高速钢-E外壳","tr":"高速钢-E外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18374":{"oreDict":["itemCasingHSSS"],"name":"高速钢-S外壳","tr":"高速钢-S外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22470":{"oreDict":["stickLongEpoxid"],"name":"长环氧树脂杆","tr":"长环氧树脂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22471":{"oreDict":["stickLongSilicone"," stickLongAnyRubber"," stickLongAnySyntheticRubber"],"name":"长硅橡胶杆","tr":"长硅橡胶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22472":{"oreDict":["stickLongPolycaprolactam"],"name":"长聚己内酰胺杆","tr":"长聚己内酰胺杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22473":{"oreDict":["stickLongPolytetrafluoroethylene"],"name":"长聚四氟乙烯杆","tr":"长聚四氟乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18378":{"oreDict":["itemCasingPulsatingIron"],"name":"脉冲铁外壳","tr":"脉冲铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18379":{"oreDict":["itemCasingSoularium"],"name":"魂金外壳","tr":"魂金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18380":{"oreDict":["itemCasingEnderiumBase"],"name":"末影粗胚外壳","tr":"末影粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18381":{"oreDict":["itemCasingRedstoneAlloy"],"name":"红石合金外壳","tr":"红石合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18382":{"oreDict":["itemCasingArdite"],"name":"阿迪特外壳","tr":"阿迪特外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18383":{"oreDict":["itemCasingReinforced"],"name":"强化外壳","tr":"强化外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18384":{"oreDict":["itemCasingGalgadorian"],"name":"混合晶外壳","tr":"混合晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26576":{"oreDict":["arrowGtPlasticTPVAlloy"],"name":"轻质钛铂钒合金箭","tr":"轻质钛铂钒合金箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18385":{"oreDict":["itemCasingEnhancedGalgadorian"],"name":"强化混合晶外壳","tr":"强化混合晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18386":{"oreDict":["itemCasingManyullyn"],"name":"玛玉灵外壳","tr":"玛玉灵外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18387":{"oreDict":["itemCasingMytryl"],"name":"深空秘银外壳","tr":"深空秘银外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18388":{"oreDict":["itemCasingBlackPlutonium"],"name":"黑钚外壳","tr":"黑钚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18389":{"oreDict":["itemCasingCallistoIce"],"name":"木卫四冰外壳","tr":"木卫四冰外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22485":{"oreDict":["stickLongAlduorite"],"name":"长神秘蓝金杆","tr":"长神秘蓝金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18390":{"oreDict":["itemCasingLedox"],"name":"深铅外壳","tr":"深铅外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18391":{"oreDict":["itemCasingQuantium"],"name":"量子外壳","tr":"量子外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26583":{"oreDict":["arrowGtPlasticMagnetohydrodynamicallyConstrainedStarMatter"],"name":"轻质磁流体约束恒星物质箭","tr":"轻质磁流体约束恒星物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18392":{"oreDict":["itemCasingDuralumin"],"name":"硬铝外壳","tr":"硬铝外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22488":{"oreDict":["stickLongRubracium"],"name":"长褐铜杆","tr":"长褐铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18393":{"oreDict":["itemCasingOriharukon"],"name":"奥利哈钢外壳","tr":"奥利哈钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22489":{"oreDict":["stickLongVulcanite"],"name":"长胶木杆","tr":"长胶木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26585":{"oreDict":["arrowGtPlasticWhiteDwarfMatter"],"name":"轻质白矮星物质箭","tr":"轻质白矮星物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18394":{"oreDict":["itemCasingInfinityCatalyst"],"name":"无尽催化剂外壳","tr":"无尽催化剂外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26586":{"oreDict":["arrowGtPlasticBlackDwarfMatter"],"name":"轻质黑矮星物质箭","tr":"轻质黑矮星物质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18395":{"oreDict":["itemCasingBedrockium"],"name":"基岩外壳","tr":"基岩外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26588":{"oreDict":["arrowGtPlasticSpaceTime"],"name":"轻质时空箭","tr":"轻质时空箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18397":{"oreDict":["itemCasingInfinity"],"name":"无尽外壳","tr":"无尽外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18398":{"oreDict":["itemCasingMysteriousCrystal"],"name":"神秘水晶外壳","tr":"神秘水晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18399":{"oreDict":["itemCasingSamariumMagnetic"],"name":"磁化钐外壳","tr":"磁化钐外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18400":{"oreDict":["itemCasingAlumite"],"name":"耐酸铝外壳","tr":"耐酸铝外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18401":{"oreDict":["itemCasingEndSteel"],"name":"末影钢外壳","tr":"末影钢外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18402":{"oreDict":["itemCasingCrudeSteel"],"name":"复合粘土外壳","tr":"复合粘土外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18403":{"oreDict":["itemCasingCrystallineAlloy"],"name":"晶化合金外壳","tr":"晶化合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18404":{"oreDict":["itemCasingMelodicAlloy"],"name":"旋律合金外壳","tr":"旋律合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22500":{"oreDict":["stickLongDiamond"],"name":"长钻石杆","tr":"长钻石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18405":{"oreDict":["itemCasingStellarAlloy"],"name":"恒星合金外壳","tr":"恒星合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22501":{"oreDict":["stickLongEmerald"],"name":"长绿宝石杆","tr":"长绿宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18406":{"oreDict":["itemCasingCrystallinePinkSlime"],"name":"晶化粉红史莱姆外壳","tr":"晶化粉红史莱姆外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22502":{"oreDict":["stickLongRuby"],"name":"长红宝石杆","tr":"长红宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18407":{"oreDict":["itemCasingEnergeticSilver"],"name":"充能银外壳","tr":"充能银外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22503":{"oreDict":["stickLongSapphire"],"name":"长蓝宝石杆","tr":"长蓝宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26599":{"oreDict":["arrowGtPlasticPolybenzimidazole"],"name":"轻质聚苯并咪唑箭","tr":"轻质聚苯并咪唑箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18408":{"oreDict":["itemCasingVividAlloy"],"name":"生动合金外壳","tr":"生动合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22504":{"oreDict":["stickLongGreenSapphire"],"name":"长绿色蓝宝石杆","tr":"长绿色蓝宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22505":{"oreDict":["stickLongOlivine"],"name":"长橄榄石杆","tr":"长橄榄石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22506":{"oreDict":["stickLongNetherStar"],"name":"长下界之星杆","tr":"长下界之星杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22507":{"oreDict":["stickLongTopaz"],"name":"长黄玉杆","tr":"长黄玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22508":{"oreDict":["stickLongTanzanite"],"name":"长坦桑石杆","tr":"长坦桑石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22509":{"oreDict":["stickLongAmethyst"],"name":"长紫水晶杆","tr":"长紫水晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22510":{"oreDict":["stickLongOpal"],"name":"长蛋白石杆","tr":"长蛋白石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22511":{"oreDict":["stickLongJasper"],"name":"长碧玉杆","tr":"长碧玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22512":{"oreDict":["stickLongFoolsRuby"],"name":"长尖晶石杆","tr":"长尖晶石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22513":{"oreDict":["stickLongBlueTopaz"],"name":"长蓝黄玉杆","tr":"长蓝黄玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22514":{"oreDict":["stickLongAmber"],"name":"长琥珀杆","tr":"长琥珀杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26610":{"oreDict":["arrowGtPlasticEpoxidFiberReinforced"],"name":"轻质纤维强化的环氧树脂箭","tr":"轻质纤维强化的环氧树脂箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22515":{"oreDict":["stickLongDilithium"],"name":"长双锂杆","tr":"长双锂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22516":{"oreDict":["stickLongCertusQuartz"],"name":"长赛特斯石英杆","tr":"长赛特斯石英杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26613":{"oreDict":["arrowGtPlasticNickelZincFerrite"],"name":"轻质镍锌铁氧体箭","tr":"轻质镍锌铁氧体箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22518":{"oreDict":["stickLongForcicium"],"name":"长力之宝石杆","tr":"长力之宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22519":{"oreDict":["stickLongForcillium"],"name":"长力场宝石杆","tr":"长力场宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22520":{"oreDict":["stickLongMonazite"],"name":"长独居石杆","tr":"长独居石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22521":{"oreDict":["stickLongForce"],"name":"长力量杆","tr":"长力量杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22522":{"oreDict":["stickLongNetherQuartz"],"name":"长下界石英杆","tr":"长下界石英杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22523":{"oreDict":["stickLongQuartzite"],"name":"长石英岩杆","tr":"长石英岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22524":{"oreDict":["stickLongLazurite"],"name":"长蓝金石杆","tr":"长蓝金石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22525":{"oreDict":["stickLongSodalite"],"name":"长方钠石杆","tr":"长方钠石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22526":{"oreDict":["stickLongLapis"],"name":"长青金石杆","tr":"长青金石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22527":{"oreDict":["stickLongGarnetRed"],"name":"长红石榴石杆","tr":"长红石榴石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22528":{"oreDict":["stickLongGarnetYellow"],"name":"长黄石榴石杆","tr":"长黄石榴石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22529":{"oreDict":["stickLongVinteum"],"name":"长温特姆杆","tr":"长温特姆杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22530":{"oreDict":["stickLongApatite"],"name":"长磷灰石杆","tr":"长磷灰石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22531":{"oreDict":["stickLongNiter"],"name":"长硝石杆","tr":"长硝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22532":{"oreDict":["stickLongEnderPearl"],"name":"长末影珍珠杆","tr":"长末影珍珠杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22533":{"oreDict":["stickLongEnderEye"],"name":"长末影之眼杆","tr":"长末影之眼杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22534":{"oreDict":["stickLongTricalciumPhosphate"],"name":"长磷酸三钙杆","tr":"长磷酸三钙杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22535":{"oreDict":["stickLongCoal"],"name":"长煤杆","tr":"长煤杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26631":{"oreDict":["arrowGtPlasticPolyphenyleneSulfide"],"name":"轻质聚苯硫醚箭","tr":"轻质聚苯硫醚箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22536":{"oreDict":["stickLongCharcoal"],"name":"长木炭杆","tr":"长木炭杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22537":{"oreDict":["stickLongJade"],"name":"长玉杆","tr":"长玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22538":{"oreDict":["stickLongLignite"],"name":"长褐煤杆","tr":"长褐煤杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26635":{"oreDict":["arrowGtPlasticAnyRubber"," arrowGtPlasticAnySyntheticRubber"," arrowGtPlasticStyreneButadieneRubber"],"name":"轻质丁苯橡胶箭","tr":"轻质丁苯橡胶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22540":{"oreDict":["stickLongInfusedAir"],"name":"长风之魔晶杆","tr":"长风之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26636":{"oreDict":["arrowGtPlasticPolystyrene"],"name":"轻质聚苯乙烯箭","tr":"轻质聚苯乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22541":{"oreDict":["stickLongInfusedFire"],"name":"长火之魔晶杆","tr":"长火之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22542":{"oreDict":["stickLongInfusedEarth"],"name":"长地之魔晶杆","tr":"长地之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22543":{"oreDict":["stickLongInfusedWater"],"name":"长水之魔晶杆","tr":"长水之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22544":{"oreDict":["stickLongInfusedEntropy"],"name":"长混沌魔晶杆","tr":"长混沌魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22545":{"oreDict":["stickLongInfusedOrder"],"name":"长秩序魔晶杆","tr":"长秩序魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26649":{"oreDict":["arrowGtPlasticPolyvinylChloride"],"name":"轻质聚氯乙烯箭","tr":"轻质聚氯乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18470":{"oreDict":["itemCasingEpoxid"],"name":"环氧树脂外壳","tr":"环氧树脂外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18471":{"oreDict":["itemCasingSilicone"," itemCasingAnyRubber"," itemCasingAnySyntheticRubber"],"name":"硅橡胶外壳","tr":"硅橡胶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18472":{"oreDict":["itemCasingPolycaprolactam"],"name":"聚己内酰胺外壳","tr":"聚己内酰胺外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18473":{"oreDict":["itemCasingPolytetrafluoroethylene"],"name":"聚四氟乙烯外壳","tr":"聚四氟乙烯外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22576":{"oreDict":["stickLongTPVAlloy"],"name":"长钛铂钒合金杆","tr":"长钛铂钒合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18485":{"oreDict":["itemCasingAlduorite"],"name":"神秘蓝金外壳","tr":"神秘蓝金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22581":{"oreDict":["stickLongTranscendentMetal"],"name":"长超时空金属杆","tr":"长超时空金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22582":{"oreDict":["stickLongEnrichedHolmium"],"name":"长富集钬杆","tr":"长富集钬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22583":{"oreDict":["stickLongMagnetohydrodynamicallyConstrainedStarMatter"],"name":"长磁流体约束恒星物质杆","tr":"长磁流体约束恒星物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18488":{"oreDict":["itemCasingRubracium"],"name":"褐铜外壳","tr":"褐铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18489":{"oreDict":["itemCasingVulcanite"],"name":"胶木外壳","tr":"胶木外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22585":{"oreDict":["stickLongWhiteDwarfMatter"],"name":"长白矮星物质杆","tr":"长白矮星物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22586":{"oreDict":["stickLongBlackDwarfMatter"],"name":"长黑矮星物质杆","tr":"长黑矮星物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22588":{"oreDict":["stickLongSpaceTime"],"name":"长时空杆","tr":"长时空杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18500":{"oreDict":["itemCasingDiamond"],"name":"钻石外壳","tr":"钻石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18501":{"oreDict":["itemCasingEmerald"],"name":"绿宝石外壳","tr":"绿宝石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18502":{"oreDict":["itemCasingRuby"],"name":"红宝石外壳","tr":"红宝石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18503":{"oreDict":["itemCasingSapphire"],"name":"蓝宝石外壳","tr":"蓝宝石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22599":{"oreDict":["stickLongPolybenzimidazole"],"name":"长聚苯并咪唑杆","tr":"长聚苯并咪唑杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18504":{"oreDict":["itemCasingGreenSapphire"],"name":"绿色蓝宝石外壳","tr":"绿色蓝宝石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18505":{"oreDict":["itemCasingOlivine"],"name":"橄榄石外壳","tr":"橄榄石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18506":{"oreDict":["itemCasingNetherStar"],"name":"下界之星外壳","tr":"下界之星外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18507":{"oreDict":["itemCasingTopaz"],"name":"黄玉外壳","tr":"黄玉外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18508":{"oreDict":["itemCasingTanzanite"],"name":"坦桑石外壳","tr":"坦桑石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18509":{"oreDict":["itemCasingAmethyst"],"name":"紫水晶外壳","tr":"紫水晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18510":{"oreDict":["itemCasingOpal"],"name":"蛋白石外壳","tr":"蛋白石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18511":{"oreDict":["itemCasingJasper"],"name":"碧玉外壳","tr":"碧玉外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18512":{"oreDict":["itemCasingFoolsRuby"],"name":"尖晶石外壳","tr":"尖晶石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18513":{"oreDict":["itemCasingBlueTopaz"],"name":"蓝黄玉外壳","tr":"蓝黄玉外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18514":{"oreDict":["itemCasingAmber"],"name":"琥珀外壳","tr":"琥珀外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22610":{"oreDict":["stickLongEpoxidFiberReinforced"],"name":"长纤维强化的环氧树脂杆","tr":"长纤维强化的环氧树脂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18515":{"oreDict":["itemCasingDilithium"],"name":"双锂外壳","tr":"双锂外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22611":{"oreDict":["stickLongBorosilicateGlass"],"name":"长硼玻璃杆","tr":"长硼玻璃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18516":{"oreDict":["itemCasingCertusQuartz"],"name":"赛特斯石英外壳","tr":"赛特斯石英外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22613":{"oreDict":["stickLongNickelZincFerrite"],"name":"长镍锌铁氧体杆","tr":"长镍锌铁氧体杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18518":{"oreDict":["itemCasingForcicium"],"name":"力之宝石外壳","tr":"力之宝石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18519":{"oreDict":["itemCasingForcillium"],"name":"力场宝石外壳","tr":"力场宝石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18520":{"oreDict":["itemCasingMonazite"],"name":"独居石外壳","tr":"独居石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18521":{"oreDict":["itemCasingForce"],"name":"力量外壳","tr":"力量外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18522":{"oreDict":["itemCasingNetherQuartz"],"name":"下界石英外壳","tr":"下界石英外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18523":{"oreDict":["itemCasingQuartzite"],"name":"石英岩外壳","tr":"石英岩外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18524":{"oreDict":["itemCasingLazurite"],"name":"蓝金石外壳","tr":"蓝金石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18525":{"oreDict":["itemCasingSodalite"],"name":"方钠石外壳","tr":"方钠石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18526":{"oreDict":["itemCasingLapis"],"name":"青金石外壳","tr":"青金石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18527":{"oreDict":["itemCasingGarnetRed"],"name":"红石榴石外壳","tr":"红石榴石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18528":{"oreDict":["itemCasingGarnetYellow"],"name":"黄石榴石外壳","tr":"黄石榴石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18529":{"oreDict":["itemCasingVinteum"],"name":"温特姆外壳","tr":"温特姆外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18530":{"oreDict":["itemCasingApatite"],"name":"磷灰石外壳","tr":"磷灰石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18531":{"oreDict":["itemCasingNiter"],"name":"硝石外壳","tr":"硝石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18532":{"oreDict":["itemCasingEnderPearl"],"name":"末影珍珠外壳","tr":"末影珍珠外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18533":{"oreDict":["itemCasingEnderEye"],"name":"末影之眼外壳","tr":"末影之眼外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18534":{"oreDict":["itemCasingTricalciumPhosphate"],"name":"磷酸三钙外壳","tr":"磷酸三钙外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18535":{"oreDict":["itemCasingCoal"],"name":"煤外壳","tr":"煤外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22631":{"oreDict":["stickLongPolyphenyleneSulfide"],"name":"长聚苯硫醚杆","tr":"长聚苯硫醚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18536":{"oreDict":["itemCasingCharcoal"],"name":"木炭外壳","tr":"木炭外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18537":{"oreDict":["itemCasingJade"],"name":"玉外壳","tr":"玉外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18538":{"oreDict":["itemCasingLignite"],"name":"褐煤外壳","tr":"褐煤外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22635":{"oreDict":["stickLongStyreneButadieneRubber"," stickLongAnyRubber"," stickLongAnySyntheticRubber"],"name":"长丁苯橡胶杆","tr":"长丁苯橡胶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18540":{"oreDict":["itemCasingInfusedAir"],"name":"风之魔晶外壳","tr":"风之魔晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22636":{"oreDict":["stickLongPolystyrene"],"name":"长聚苯乙烯杆","tr":"长聚苯乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18541":{"oreDict":["itemCasingInfusedFire"],"name":"火之魔晶外壳","tr":"火之魔晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18542":{"oreDict":["itemCasingInfusedEarth"],"name":"地之魔晶外壳","tr":"地之魔晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18543":{"oreDict":["itemCasingInfusedWater"],"name":"水之魔晶外壳","tr":"水之魔晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18544":{"oreDict":["itemCasingInfusedEntropy"],"name":"混沌魔晶外壳","tr":"混沌魔晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18545":{"oreDict":["itemCasingInfusedOrder"],"name":"秩序魔晶外壳","tr":"秩序魔晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22649":{"oreDict":["stickLongPolyvinylChloride"],"name":"长聚氯乙烯杆","tr":"长聚氯乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18576":{"oreDict":["itemCasingTPVAlloy"],"name":"钛铂钒合金外壳","tr":"钛铂钒合金外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26770":{"oreDict":["arrowGtPlasticHeeEndium"],"name":"轻质终末锭箭","tr":"轻质终末锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18581":{"oreDict":["itemCasingTranscendentMetal"],"name":"超时空金属外壳","tr":"超时空金属外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18582":{"oreDict":["itemCasingEnrichedHolmium"],"name":"富集钬外壳","tr":"富集钬外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18583":{"oreDict":["itemCasingMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质外壳","tr":"磁流体约束恒星物质外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18585":{"oreDict":["itemCasingWhiteDwarfMatter"],"name":"白矮星物质外壳","tr":"白矮星物质外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18586":{"oreDict":["itemCasingBlackDwarfMatter"],"name":"黑矮星物质外壳","tr":"黑矮星物质外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18588":{"oreDict":["itemCasingSpaceTime"],"name":"时空外壳","tr":"时空外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18599":{"oreDict":["itemCasingPolybenzimidazole"],"name":"聚苯并咪唑外壳","tr":"聚苯并咪唑外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30890":{"oreDict":["gemExquisiteGlass"],"name":"精致的玻璃晶体","tr":"精致的玻璃晶体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26801":{"oreDict":["arrowGtPlasticBlaze"],"name":"轻质烈焰箭","tr":"轻质烈焰箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18610":{"oreDict":["itemCasingEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂外壳","tr":"纤维强化的环氧树脂外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26802":{"oreDict":["arrowGtPlasticFlint"],"name":"轻质燧石箭","tr":"轻质燧石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18611":{"oreDict":["itemCasingBorosilicateGlass"],"name":"硼玻璃外壳","tr":"硼玻璃外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18613":{"oreDict":["itemCasingNickelZincFerrite"],"name":"镍锌铁氧体外壳","tr":"镍锌铁氧体外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26809":{"oreDict":["arrowGtPlasticWood"],"name":"轻质木箭","tr":"轻质木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26819":{"oreDict":["arrowGtPlasticGraphene"],"name":"轻质石墨烯箭","tr":"轻质石墨烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18631":{"oreDict":["itemCasingPolyphenyleneSulfide"],"name":"聚苯硫醚外壳","tr":"聚苯硫醚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18635":{"oreDict":["itemCasingStyreneButadieneRubber"," itemCasingAnyRubber"," itemCasingAnySyntheticRubber"],"name":"丁苯橡胶外壳","tr":"丁苯橡胶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18636":{"oreDict":["itemCasingPolystyrene"],"name":"聚苯乙烯外壳","tr":"聚苯乙烯外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26829":{"oreDict":["arrowGtPlasticDeepIron"],"name":"轻质深渊铁箭","tr":"轻质深渊铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18649":{"oreDict":["itemCasingPolyvinylChloride"],"name":"聚氯乙烯外壳","tr":"聚氯乙烯外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26844":{"oreDict":["arrowGtPlasticBasalt"],"name":"轻质玄武岩箭","tr":"轻质玄武岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26845":{"oreDict":["arrowGtPlasticMarble"],"name":"轻质大理石箭","tr":"轻质大理石箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26849":{"oreDict":["arrowGtPlasticGraniteBlack"],"name":"轻质黑花岗岩箭","tr":"轻质黑花岗岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26850":{"oreDict":["arrowGtPlasticGraniteRed"],"name":"轻质红花岗岩箭","tr":"轻质红花岗岩箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26854":{"oreDict":["arrowGtPlasticConstructionFoam"],"name":"轻质建筑泡沫箭","tr":"轻质建筑泡沫箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22765":{"oreDict":["stickLongKevlar"],"name":"长凯芙拉杆","tr":"长凯芙拉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26865":{"oreDict":["arrowGtPlasticGraphite"],"name":"轻质石墨箭","tr":"轻质石墨箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22770":{"oreDict":["stickLongHeeEndium"],"name":"长终末杆","tr":"长终末杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22772":{"oreDict":["stickLongNickelAluminide"],"name":"长铝化镍杆","tr":"长铝化镍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26868":{"oreDict":["arrowGtPlasticTrinium"],"name":"轻质三元金属箭","tr":"轻质三元金属箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26874":{"oreDict":["arrowGtPlasticPlastic"],"name":"轻质聚乙烯箭","tr":"轻质聚乙烯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26880":{"oreDict":["arrowGtPlasticAnyRubber"," arrowGtPlasticRubber"],"name":"轻质橡胶箭","tr":"轻质橡胶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26884":{"oreDict":["arrowGtPlasticDesh"],"name":"轻质戴斯箭","tr":"轻质戴斯箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26889":{"oreDict":["arrowGtPlasticWoodSealed"],"name":"轻质蜡封木箭","tr":"轻质蜡封木箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22801":{"oreDict":["stickLongBlaze"],"name":"长烈焰杆","tr":"长烈焰杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22809":{"oreDict":["stickLongWood"],"name":"长木棍","tr":"长木棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26912":{"oreDict":["arrowGtPlasticChrysotile"],"name":"轻质石棉箭","tr":"轻质石棉箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26913":{"oreDict":["arrowGtPlasticRealgar"],"name":"轻质雄黄箭","tr":"轻质雄黄箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31010":{"oreDict":["gearGtCarbon"," gearCarbon"],"name":"碳齿轮","tr":"碳齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31019":{"oreDict":["gearGtAluminium"," gearAluminium"],"name":"铝齿轮","tr":"铝齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"22829":{"oreDict":["stickLongDeepIron"],"name":"长深渊铁杆","tr":"长深渊铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31028":{"oreDict":["gearGtTitanium"," gearTitanium"],"name":"钛齿轮","tr":"钛齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31030":{"oreDict":["gearGtChrome"," gearChrome"],"name":"铬齿轮","tr":"铬齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31032":{"oreDict":["gearGtAnyIron"," gearAnyIron"," gearIron"," gearGtIron"],"name":"铁齿轮","tr":"铁齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31033":{"oreDict":["gearGtCobalt"," gearCobalt"],"name":"钴齿轮","tr":"钴齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31034":{"oreDict":["gearGtNickel"," gearNickel"],"name":"镍齿轮","tr":"镍齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31035":{"oreDict":["gearGtCopper"," gearGtAnyCopper"," gearAnyCopper"," gearCopper"],"name":"铜齿轮","tr":"铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"26951":{"oreDict":["arrowGtPlasticVyroxeres"],"name":"轻质幽冥剧毒结晶箭","tr":"轻质幽冥剧毒结晶箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22856":{"oreDict":["stickLongSiliconSolarGrade"],"name":"长太阳能级硅(多晶硅)杆","tr":"长太阳能级硅(多晶硅)杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26952":{"oreDict":["arrowGtPlasticCeruclase"],"name":"轻质暗影秘银箭","tr":"轻质暗影秘银箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31052":{"oreDict":["gearGtPalladium"," gearPalladium"],"name":"钯齿轮","tr":"钯齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"18765":{"oreDict":["itemCasingKevlar"],"name":"凯芙拉外壳","tr":"凯芙拉外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31054":{"oreDict":["gearGtSilver"," gearSilver"],"name":"银齿轮","tr":"银齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31057":{"oreDict":["gearGtTin"," gearTin"],"name":"锡齿轮","tr":"锡齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"18770":{"oreDict":["itemCasingHeeEndium"],"name":"终末外壳","tr":"终末外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18772":{"oreDict":["itemCasingNickelAluminide"],"name":"铝化镍外壳","tr":"铝化镍外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22868":{"oreDict":["stickLongTrinium"],"name":"长三元金属杆","tr":"长三元金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26966":{"oreDict":["arrowGtPlasticOrichalcum"],"name":"轻质山铜箭","tr":"轻质山铜箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22874":{"oreDict":["stickLongPlastic"],"name":"长聚乙烯杆","tr":"长聚乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26970":{"oreDict":["arrowGtPlasticVoid"],"name":"轻质虚空锭箭","tr":"轻质虚空锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31067":{"oreDict":["gearGtNeodymium"," gearNeodymium"],"name":"钕齿轮","tr":"钕齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"26975":{"oreDict":["arrowGtPlasticDraconium"],"name":"轻质龙锭箭","tr":"轻质龙锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22880":{"oreDict":["stickLongRubber"," stickLongAnyRubber"],"name":"长橡胶杆","tr":"长橡胶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26976":{"oreDict":["arrowGtPlasticDraconiumAwakened"],"name":"轻质觉醒龙锭箭","tr":"轻质觉醒龙锭箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26977":{"oreDict":["arrowGtPlasticBloodInfusedIron"],"name":"轻质注血铁箭","tr":"轻质注血铁箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26978":{"oreDict":["arrowGtPlasticIchorium"],"name":"轻质灵宝箭","tr":"轻质灵宝箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22884":{"oreDict":["stickLongDesh"],"name":"长戴斯杆","tr":"长戴斯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26982":{"oreDict":["arrowGtPlasticCosmicNeutronium"],"name":"轻质宇宙中子态素箭","tr":"轻质宇宙中子态素箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26984":{"oreDict":["arrowGtPlasticFlerovium_GT5U"],"name":"轻质箭","tr":"轻质箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22889":{"oreDict":["stickLongWoodSealed"],"name":"长蜡封木棍","tr":"长蜡封木棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31081":{"oreDict":["gearGtTungsten"," gearTungsten"],"name":"钨齿轮","tr":"钨齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"22890":{"oreDict":["stickLongGlass"],"name":"长玻璃杆","tr":"长玻璃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31083":{"oreDict":["gearGtOsmium"," gearOsmium"],"name":"锇齿轮","tr":"锇齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31084":{"oreDict":["gearGtIridium"," gearIridium"],"name":"铱齿轮","tr":"铱齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31085":{"oreDict":["gearGtPlatinum"," gearPlatinum"],"name":"铂齿轮","tr":"铂齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31086":{"oreDict":["gearGtGold"," gearGold"],"name":"金齿轮","tr":"金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31089":{"oreDict":["gearGtLead"," gearLead"],"name":"铅齿轮","tr":"铅齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31090":{"oreDict":["gearGtBismuth"," gearBismuth"],"name":"铋齿轮","tr":"铋齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"18804":{"oreDict":["itemCasingObsidian"],"name":"黑曜石外壳","tr":"黑曜石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18809":{"oreDict":["itemCasingWood"],"name":"木外壳","tr":"木外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22912":{"oreDict":["stickLongChrysotile"],"name":"长白石棉杆","tr":"长白石棉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22913":{"oreDict":["stickLongRealgar"],"name":"长雄黄杆","tr":"长雄黄杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31111":{"oreDict":["gearGtTengamPurified"," gearTengamPurified"],"name":"纯镃齿轮","tr":"纯镃齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31112":{"oreDict":["gearTengamAttuned"," gearGtTengamAttuned"],"name":"谐镃齿轮","tr":"谐镃齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"18829":{"oreDict":["itemCasingDeepIron"],"name":"深渊铁外壳","tr":"深渊铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31129":{"oreDict":["gearGtNeutronium"," gearNeutronium"],"name":"中子齿轮","tr":"中子齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31139":{"oreDict":["gearGtUniversium"," gearUniversium"],"name":"宇宙素齿轮","tr":"宇宙素齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31141":{"oreDict":["gearGtEternity"," gearEternity"],"name":"永恒齿轮","tr":"永恒齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"22951":{"oreDict":["stickLongVyroxeres"],"name":"长幽冥剧毒结晶杆","tr":"长幽冥剧毒结晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31143":{"oreDict":["gearGtMagmatter"," gearMagmatter"],"name":"磁物质齿轮","tr":"磁物质齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"18856":{"oreDict":["itemCasingSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)外壳","tr":"太阳能级硅(多晶硅)外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22952":{"oreDict":["stickLongCeruclase"],"name":"长暗影秘银杆","tr":"长暗影秘银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22956":{"oreDict":["stickLongTartarite"],"name":"长溶火之石杆","tr":"长溶火之石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18868":{"oreDict":["itemCasingTrinium"],"name":"三元金属外壳","tr":"三元金属外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22966":{"oreDict":["stickLongOrichalcum"],"name":"长山铜杆","tr":"长山铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18874":{"oreDict":["itemCasingPlastic"],"name":"聚乙烯外壳","tr":"聚乙烯外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22970":{"oreDict":["stickLongVoid"],"name":"长虚空杆","tr":"长虚空杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22974":{"oreDict":["stickLongSuperconductorUEVBase"],"name":"长UEV超导粗胚杆","tr":"长UEV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22975":{"oreDict":["stickLongDraconium"],"name":"长龙杆","tr":"长龙杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18880":{"oreDict":["itemCasingRubber"," itemCasingAnyRubber"],"name":"橡胶外壳","tr":"橡胶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22976":{"oreDict":["stickLongDraconiumAwakened"],"name":"长觉醒龙杆","tr":"长觉醒龙杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22977":{"oreDict":["stickLongBloodInfusedIron"],"name":"长注血铁杆","tr":"长注血铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22978":{"oreDict":["stickLongIchorium"],"name":"长灵宝杆","tr":"长灵宝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22979":{"oreDict":["stickLongRadoxPoly"],"name":"长拉多X聚合物杆","tr":"长拉多X聚合物杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18884":{"oreDict":["itemCasingDesh"],"name":"戴斯外壳","tr":"戴斯外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22980":{"oreDict":["stickLongGalliumArsenide"],"name":"长砷化镓杆","tr":"长砷化镓杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22981":{"oreDict":["stickLongIndiumGalliumPhosphide"],"name":"长磷化铟镓杆","tr":"长磷化铟镓杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22982":{"oreDict":["stickLongCosmicNeutronium"],"name":"长宇宙中子态素杆","tr":"长宇宙中子态素杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22984":{"oreDict":["stickLongFlerovium_GT5U"],"name":"长杆","tr":"长杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18889":{"oreDict":["itemCasingWoodSealed"],"name":"蜡封木外壳","tr":"蜡封木外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22985":{"oreDict":["stickLongLongasssuperconductornameforuhvwire"],"name":"长UHV超导粗胚杆","tr":"长UHV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18890":{"oreDict":["itemCasingGlass"],"name":"玻璃外壳","tr":"玻璃外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22986":{"oreDict":["stickLongLongasssuperconductornameforuvwire"],"name":"长UV超导粗胚杆","tr":"长UV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22987":{"oreDict":["stickLongPentacadmiummagnesiumhexaoxid"],"name":"长MV超导粗胚杆","tr":"长MV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22988":{"oreDict":["stickLongTitaniumonabariumdecacoppereikosaoxid"],"name":"长HV超导粗胚杆","tr":"长HV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22989":{"oreDict":["stickLongUraniumtriplatinid"],"name":"长EV超导粗胚杆","tr":"长EV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22990":{"oreDict":["stickLongVanadiumtriindinid"],"name":"长IV超导粗胚杆","tr":"长IV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22991":{"oreDict":["stickLongTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"长LuV超导粗胚杆","tr":"长LuV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22992":{"oreDict":["stickLongTetranaquadahdiindiumhexaplatiumosminid"],"name":"长ZPM超导粗胚杆","tr":"长ZPM超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23006":{"oreDict":["springSmallLithium"],"name":"小型锂弹簧","tr":"小型锂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18912":{"oreDict":["itemCasingChrysotile"],"name":"白石棉外壳","tr":"白石棉外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23008":{"oreDict":["springSmallBeryllium"],"name":"小型铍弹簧","tr":"小型铍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18913":{"oreDict":["itemCasingRealgar"],"name":"雄黄外壳","tr":"雄黄外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31201":{"oreDict":["gearGtManasteel"," gearManasteel"],"name":"魔钢齿轮","tr":"魔钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23010":{"oreDict":["springSmallCarbon"],"name":"小型碳弹簧","tr":"小型碳弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31202":{"oreDict":["gearGtTerrasteel"," gearTerrasteel"],"name":"泰拉钢齿轮","tr":"泰拉钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31203":{"oreDict":["gearGtElvenElementium"," gearElvenElementium"],"name":"源质钢齿轮","tr":"源质钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31204":{"oreDict":["gearLivingrock"," gearGtLivingrock"],"name":"活石齿轮","tr":"活石齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31205":{"oreDict":["gearGtGaiaSpirit"," gearGaiaSpirit"],"name":"盖亚之魂齿轮","tr":"盖亚之魂齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31206":{"oreDict":["gearGtLivingwood"," gearLivingwood"],"name":"活木齿轮","tr":"活木齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31207":{"oreDict":["gearGtDreamwood"," gearDreamwood"],"name":"梦之木齿轮","tr":"梦之木齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23018":{"oreDict":["springSmallMagnesium"],"name":"小型镁弹簧","tr":"小型镁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23019":{"oreDict":["springSmallAluminium"],"name":"小型铝弹簧","tr":"小型铝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23020":{"oreDict":["springSmallSilicon"],"name":"小型硅弹簧","tr":"小型硅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23025":{"oreDict":["springSmallPotassium"],"name":"小型钾弹簧","tr":"小型钾弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23027":{"oreDict":["springSmallScandium"],"name":"小型钪弹簧","tr":"小型钪弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23028":{"oreDict":["springSmallTitanium"],"name":"小型钛弹簧","tr":"小型钛弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23029":{"oreDict":["springSmallVanadium"],"name":"小型钒弹簧","tr":"小型钒弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23030":{"oreDict":["springSmallChrome"],"name":"小型铬弹簧","tr":"小型铬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23031":{"oreDict":["springSmallManganese"],"name":"小型锰弹簧","tr":"小型锰弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23032":{"oreDict":["springSmallIron"," springSmallAnyIron"],"name":"小型铁弹簧","tr":"小型铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23033":{"oreDict":["springSmallCobalt"],"name":"小型钴弹簧","tr":"小型钴弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23034":{"oreDict":["springSmallNickel"],"name":"小型镍弹簧","tr":"小型镍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23035":{"oreDict":["springSmallCopper"," springSmallAnyCopper"],"name":"小型铜弹簧","tr":"小型铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23036":{"oreDict":["springSmallZinc"],"name":"小型锌弹簧","tr":"小型锌弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23037":{"oreDict":["springSmallGallium"],"name":"小型镓弹簧","tr":"小型镓弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23039":{"oreDict":["springSmallArsenic"],"name":"小型砷弹簧","tr":"小型砷弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23043":{"oreDict":["springSmallRubidium"],"name":"小型铷弹簧","tr":"小型铷弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23045":{"oreDict":["springSmallYttrium"],"name":"小型钇弹簧","tr":"小型钇弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18951":{"oreDict":["itemCasingVyroxeres"],"name":"幽冥剧毒结晶外壳","tr":"幽冥剧毒结晶外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23047":{"oreDict":["springSmallNiobium"],"name":"小型铌弹簧","tr":"小型铌弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18952":{"oreDict":["itemCasingCeruclase"],"name":"暗影秘银外壳","tr":"暗影秘银外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23048":{"oreDict":["springSmallMolybdenum"],"name":"小型钼弹簧","tr":"小型钼弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18956":{"oreDict":["itemCasingTartarite"],"name":"溶火之石外壳","tr":"溶火之石外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23052":{"oreDict":["springSmallPalladium"],"name":"小型钯弹簧","tr":"小型钯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23054":{"oreDict":["springSmallSilver"],"name":"小型银弹簧","tr":"小型银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23056":{"oreDict":["springSmallIndium"],"name":"小型铟弹簧","tr":"小型铟弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23057":{"oreDict":["springSmallTin"],"name":"小型锡弹簧","tr":"小型锡弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23058":{"oreDict":["springSmallAntimony"],"name":"小型锑弹簧","tr":"小型锑弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23059":{"oreDict":["springSmallTellurium"],"name":"小型碲弹簧","tr":"小型碲弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18966":{"oreDict":["itemCasingOrichalcum"],"name":"山铜外壳","tr":"山铜外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23062":{"oreDict":["springSmallCaesium"],"name":"小型铯弹簧","tr":"小型铯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23063":{"oreDict":["springSmallBarium"],"name":"小型钡弹簧","tr":"小型钡弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23064":{"oreDict":["springSmallLanthanum"],"name":"小型镧弹簧","tr":"小型镧弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23065":{"oreDict":["springSmallCerium"],"name":"小型铈弹簧","tr":"小型铈弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18970":{"oreDict":["itemCasingVoid"],"name":"虚空外壳","tr":"虚空外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23066":{"oreDict":["springSmallPraseodymium"],"name":"小型镨弹簧","tr":"小型镨弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23067":{"oreDict":["springSmallNeodymium"],"name":"小型钕弹簧","tr":"小型钕弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23068":{"oreDict":["springSmallPromethium"],"name":"小型钷弹簧","tr":"小型钷弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23069":{"oreDict":["springSmallSamarium"],"name":"小型钐弹簧","tr":"小型钐弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18974":{"oreDict":["itemCasingSuperconductorUEVBase"],"name":"UEV超导粗胚外壳","tr":"UEV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23070":{"oreDict":["springSmallEuropium"],"name":"小型铕弹簧","tr":"小型铕弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18975":{"oreDict":["itemCasingDraconium"],"name":"龙外壳","tr":"龙外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23071":{"oreDict":["springSmallGadolinium"],"name":"小型钆弹簧","tr":"小型钆弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18976":{"oreDict":["itemCasingDraconiumAwakened"],"name":"觉醒龙外壳","tr":"觉醒龙外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23072":{"oreDict":["springSmallTerbium"],"name":"小型铽弹簧","tr":"小型铽弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18977":{"oreDict":["itemCasingBloodInfusedIron"],"name":"注血铁外壳","tr":"注血铁外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23073":{"oreDict":["springSmallDysprosium"],"name":"小型镝弹簧","tr":"小型镝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18978":{"oreDict":["itemCasingIchorium"],"name":"灵宝外壳","tr":"灵宝外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23074":{"oreDict":["springSmallHolmium"],"name":"小型钬弹簧","tr":"小型钬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18979":{"oreDict":["itemCasingRadoxPoly"],"name":"拉多X聚合物外壳","tr":"拉多X聚合物外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23075":{"oreDict":["springSmallErbium"],"name":"小型铒弹簧","tr":"小型铒弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18980":{"oreDict":["itemCasingGalliumArsenide"],"name":"砷化镓外壳","tr":"砷化镓外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23076":{"oreDict":["springSmallThulium"],"name":"小型铥弹簧","tr":"小型铥弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18981":{"oreDict":["itemCasingIndiumGalliumPhosphide"],"name":"磷化铟镓外壳","tr":"磷化铟镓外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23077":{"oreDict":["springSmallYtterbium"],"name":"小型镱弹簧","tr":"小型镱弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18982":{"oreDict":["itemCasingCosmicNeutronium"],"name":"宇宙中子态素外壳","tr":"宇宙中子态素外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23078":{"oreDict":["springSmallLutetium"],"name":"小型镥弹簧","tr":"小型镥弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18984":{"oreDict":["itemCasingFlerovium_GT5U"],"name":"外壳","tr":"外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23080":{"oreDict":["springSmallTantalum"],"name":"小型钽弹簧","tr":"小型钽弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18985":{"oreDict":["itemCasingLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚外壳","tr":"UHV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23081":{"oreDict":["springSmallTungsten"],"name":"小型钨弹簧","tr":"小型钨弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18986":{"oreDict":["itemCasingLongasssuperconductornameforuvwire"],"name":"UV超导粗胚外壳","tr":"UV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18987":{"oreDict":["itemCasingPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚外壳","tr":"MV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23083":{"oreDict":["springSmallOsmium"],"name":"小型锇弹簧","tr":"小型锇弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18988":{"oreDict":["itemCasingTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚外壳","tr":"HV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23084":{"oreDict":["springSmallIridium"],"name":"小型铱弹簧","tr":"小型铱弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18989":{"oreDict":["itemCasingUraniumtriplatinid"],"name":"EV超导粗胚外壳","tr":"EV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23085":{"oreDict":["springSmallPlatinum"],"name":"小型铂弹簧","tr":"小型铂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18990":{"oreDict":["itemCasingVanadiumtriindinid"],"name":"IV超导粗胚外壳","tr":"IV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23086":{"oreDict":["springSmallGold"],"name":"小型金弹簧","tr":"小型金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18991":{"oreDict":["itemCasingTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚外壳","tr":"LuV超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18992":{"oreDict":["itemCasingTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚外壳","tr":"ZPM超导粗胚外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23089":{"oreDict":["springSmallLead"],"name":"小型铅弹簧","tr":"小型铅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23090":{"oreDict":["springSmallBismuth"],"name":"小型铋弹簧","tr":"小型铋弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23096":{"oreDict":["springSmallThorium"],"name":"小型钍弹簧","tr":"小型钍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23097":{"oreDict":["springSmallUranium235"],"name":"小型铀-235弹簧","tr":"小型铀-235弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23098":{"oreDict":["springSmallUranium"],"name":"小型铀-238弹簧","tr":"小型铀-238弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23100":{"oreDict":["springSmallPlutonium"],"name":"小型钚-239弹簧","tr":"小型钚-239弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23101":{"oreDict":["springSmallPlutonium241"],"name":"小型钚-241弹簧","tr":"小型钚-241弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23103":{"oreDict":["springSmallAmericium"],"name":"小型镅弹簧","tr":"小型镅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19008":{"oreDict":["wireFineBeryllium"],"name":"细铍导线","tr":"细铍导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31299":{"oreDict":["gearGtStone"," gearStone"],"name":"石齿轮","tr":"石齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31300":{"oreDict":["gearGtBronze"," gearGtAnyBronze"," gearAnyBronze"," gearBronze"],"name":"青铜齿轮","tr":"青铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31301":{"oreDict":["gearGtBrass"," gearBrass"],"name":"黄铜齿轮","tr":"黄铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31302":{"oreDict":["gearGtInvar"," gearInvar"],"name":"殷钢齿轮","tr":"殷钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23111":{"oreDict":["springSmallTengamPurified"],"name":"小型纯镃弹簧","tr":"小型纯镃弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31303":{"oreDict":["gearElectrum"," gearGtElectrum"],"name":"琥珀金齿轮","tr":"琥珀金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23112":{"oreDict":["springSmallTengamAttuned"],"name":"小型谐镃弹簧","tr":"小型谐镃弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27208":{"oreDict":["gemChippedManaDiamond"],"name":"破碎的魔力钻石","tr":"破碎的魔力钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31304":{"oreDict":["gearGtAnyIron"," gearAnyIron"," gearGtWroughtIron"," gearWroughtIron"],"name":"锻铁齿轮","tr":"锻铁齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"27209":{"oreDict":["gemChippedBotaniaDragonstone"],"name":"破碎的龙石","tr":"破碎的龙石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31305":{"oreDict":["gearGtSteel"," gearSteel"],"name":"钢齿轮","tr":"钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19018":{"oreDict":["wireFineMagnesium"],"name":"细镁导线","tr":"细镁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31306":{"oreDict":["gearGtStainlessSteel"," gearStainlessSteel"],"name":"不锈钢齿轮","tr":"不锈钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19019":{"oreDict":["wireFineAluminium"],"name":"细铝导线","tr":"细铝导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19020":{"oreDict":["wireFineSilicon"],"name":"细硅导线","tr":"细硅导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31313":{"oreDict":["gearGtMagnalium"," gearMagnalium"],"name":"镁铝合金齿轮","tr":"镁铝合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19027":{"oreDict":["wireFineScandium"],"name":"细钪导线","tr":"细钪导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19028":{"oreDict":["wireFineTitanium"],"name":"细钛导线","tr":"细钛导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31316":{"oreDict":["gearGtTungstenSteel"," gearTungstenSteel"],"name":"钨钢齿轮","tr":"钨钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19029":{"oreDict":["wireFineVanadium"],"name":"细钒导线","tr":"细钒导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31317":{"oreDict":["gearGtOsmiridium"," gearOsmiridium"],"name":"铱锇合金齿轮","tr":"铱锇合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19030":{"oreDict":["wireFineChrome"],"name":"细铬导线","tr":"细铬导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31318":{"oreDict":["gearGtSunnarium"," gearSunnarium"],"name":"阳光化合物齿轮","tr":"阳光化合物齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19031":{"oreDict":["wireFineManganese"],"name":"细锰导线","tr":"细锰导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31319":{"oreDict":["gearAdamantium"," gearGtAdamantium"],"name":"精金齿轮","tr":"精金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19032":{"oreDict":["wireFineIron"," wireFineAnyIron"],"name":"细铁导线","tr":"细铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31320":{"oreDict":["gearGtElectrumFlux"," gearElectrumFlux"],"name":"通流琥珀金齿轮","tr":"通流琥珀金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19033":{"oreDict":["wireFineCobalt"],"name":"细钴导线","tr":"细钴导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23129":{"oreDict":["springSmallNeutronium"],"name":"小型中子弹簧","tr":"小型中子弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31321":{"oreDict":["gearGtEnderium"," gearEnderium"],"name":"末影锭齿轮","tr":"末影锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19034":{"oreDict":["wireFineNickel"],"name":"细镍导线","tr":"细镍导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19035":{"oreDict":["wireFineCopper"," wireFineAnyCopper"],"name":"细铜导线","tr":"细铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23131":{"oreDict":["springSmallSuperconductorUIVBase"],"name":"小型UIV超导粗胚弹簧","tr":"小型UIV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31323":{"oreDict":["gearGtInfusedGold"," gearInfusedGold"],"name":"注魔金齿轮","tr":"注魔金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19036":{"oreDict":["wireFineZinc"],"name":"细锌导线","tr":"细锌导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31324":{"oreDict":["gearGtNaquadah"," gearNaquadah"],"name":"硅岩齿轮","tr":"硅岩齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19037":{"oreDict":["wireFineGallium"],"name":"细镓导线","tr":"细镓导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31325":{"oreDict":["gearGtNaquadahAlloy"," gearNaquadahAlloy"],"name":"硅岩合金齿轮","tr":"硅岩合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23134":{"oreDict":["springSmallSuperconductorUMVBase"],"name":"小型UMV超导粗胚弹簧","tr":"小型UMV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31330":{"oreDict":["gearGtThaumium"," gearThaumium"],"name":"神秘锭齿轮","tr":"神秘锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19043":{"oreDict":["wireFineRubidium"],"name":"细铷导线","tr":"细铷导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23139":{"oreDict":["springSmallUniversium"],"name":"小型宇宙素弹簧","tr":"小型宇宙素弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19045":{"oreDict":["wireFineYttrium"],"name":"细钇导线","tr":"细钇导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23141":{"oreDict":["springSmallEternity"],"name":"小型永恒弹簧","tr":"小型永恒弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31334":{"oreDict":["gearGtBlackSteel"," gearBlackSteel"],"name":"黑钢齿轮","tr":"黑钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19047":{"oreDict":["wireFineNiobium"],"name":"细铌导线","tr":"细铌导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23143":{"oreDict":["springSmallMagmatter"],"name":"小型磁物质弹簧","tr":"小型磁物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31335":{"oreDict":["gearDamascusSteel"," gearGtDamascusSteel"],"name":"大马士革钢齿轮","tr":"大马士革钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19048":{"oreDict":["wireFineMolybdenum"],"name":"细钼导线","tr":"细钼导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31338":{"oreDict":["gearGtIronWood"," gearIronWood"],"name":"铁木齿轮","tr":"铁木齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31339":{"oreDict":["gearGtSteeleaf"," gearSteeleaf"],"name":"钢叶齿轮","tr":"钢叶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19052":{"oreDict":["wireFinePalladium"],"name":"细钯导线","tr":"细钯导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19054":{"oreDict":["wireFineSilver"],"name":"细银导线","tr":"细银导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31343":{"oreDict":["gearGtCobaltBrass"," gearCobaltBrass"],"name":"钴黄铜齿轮","tr":"钴黄铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19056":{"oreDict":["wireFineIndium"],"name":"细铟导线","tr":"细铟导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31344":{"oreDict":["gearGtUltimet"," gearUltimet"],"name":"哈氏合金齿轮","tr":"哈氏合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19057":{"oreDict":["wireFineTin"],"name":"细锡导线","tr":"细锡导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31345":{"oreDict":["gearGtAnyCopper"," gearAnyCopper"," gearGtAnnealedCopper"," gearAnnealedCopper"],"name":"退火铜齿轮","tr":"退火铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19058":{"oreDict":["wireFineAntimony"],"name":"细锑导线","tr":"细锑导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31346":{"oreDict":["gearGtFierySteel"," gearFierySteel"],"name":"炽热钢齿轮","tr":"炽热钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19059":{"oreDict":["wireFineTellurium"],"name":"细碲导线","tr":"细碲导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31348":{"oreDict":["gearGtRedSteel"," gearRedSteel"],"name":"红钢齿轮","tr":"红钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31349":{"oreDict":["gearGtBlueSteel"," gearBlueSteel"],"name":"蓝钢齿轮","tr":"蓝钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19062":{"oreDict":["wireFineCaesium"],"name":"细铯导线","tr":"细铯导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31350":{"oreDict":["gearGtSterlingSilver"," gearSterlingSilver"],"name":"标准纯银齿轮","tr":"标准纯银齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31351":{"oreDict":["gearGtRoseGold"," gearRoseGold"],"name":"玫瑰金齿轮","tr":"玫瑰金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19064":{"oreDict":["wireFineLanthanum"],"name":"细镧导线","tr":"细镧导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31352":{"oreDict":["gearGtBlackBronze"," gearBlackBronze"],"name":"黑青铜齿轮","tr":"黑青铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19065":{"oreDict":["wireFineCerium"],"name":"细铈导线","tr":"细铈导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31353":{"oreDict":["gearGtBismuthBronze"," gearBismuthBronze"],"name":"铋青铜齿轮","tr":"铋青铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19066":{"oreDict":["wireFinePraseodymium"],"name":"细镨导线","tr":"细镨导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31354":{"oreDict":["gearGtIronMagnetic"," gearIronMagnetic"],"name":"磁化铁齿轮","tr":"磁化铁齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19067":{"oreDict":["wireFineNeodymium"],"name":"细钕导线","tr":"细钕导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31355":{"oreDict":["gearGtSteelMagnetic"," gearSteelMagnetic"],"name":"磁化钢齿轮","tr":"磁化钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19068":{"oreDict":["wireFinePromethium"],"name":"细钷导线","tr":"细钷导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31356":{"oreDict":["gearGtNeodymiumMagnetic"," gearNeodymiumMagnetic"],"name":"磁化钕齿轮","tr":"磁化钕齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19069":{"oreDict":["wireFineSamarium"],"name":"细钐导线","tr":"细钐导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31357":{"oreDict":["gearGtVanadiumGallium"," gearVanadiumGallium"],"name":"钒镓合金齿轮","tr":"钒镓合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19070":{"oreDict":["wireFineEuropium"],"name":"细铕导线","tr":"细铕导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19071":{"oreDict":["wireFineGadolinium"],"name":"细钆导线","tr":"细钆导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19072":{"oreDict":["wireFineTerbium"],"name":"细铽导线","tr":"细铽导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19073":{"oreDict":["wireFineDysprosium"],"name":"细镝导线","tr":"细镝导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19074":{"oreDict":["wireFineHolmium"],"name":"细钬导线","tr":"细钬导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31362":{"oreDict":["gearGtKnightmetal"," gearKnightmetal"],"name":"骑士金属齿轮","tr":"骑士金属齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19075":{"oreDict":["wireFineErbium"],"name":"细铒导线","tr":"细铒导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31363":{"oreDict":["gearGtTinAlloy"," gearTinAlloy"],"name":"锡铁合金齿轮","tr":"锡铁合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19076":{"oreDict":["wireFineThulium"],"name":"细铥导线","tr":"细铥导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31364":{"oreDict":["gearGtDarkSteel"," gearDarkSteel"],"name":"玄钢齿轮","tr":"玄钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19077":{"oreDict":["wireFineYtterbium"],"name":"细镱导线","tr":"细镱导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31365":{"oreDict":["gearGtElectricalSteel"," gearElectricalSteel"],"name":"磁钢齿轮","tr":"磁钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19078":{"oreDict":["wireFineLutetium"],"name":"细镥导线","tr":"细镥导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31366":{"oreDict":["gearGtEnergeticAlloy"," gearEnergeticAlloy"],"name":"充能合金齿轮","tr":"充能合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31367":{"oreDict":["gearGtVibrantAlloy"," gearVibrantAlloy"],"name":"脉冲合金齿轮","tr":"脉冲合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19080":{"oreDict":["wireFineTantalum"],"name":"细钽导线","tr":"细钽导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31368":{"oreDict":["gearGtShadow"," gearShadow"],"name":"暗影齿轮","tr":"暗影齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19081":{"oreDict":["wireFineTungsten"],"name":"细钨导线","tr":"细钨导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31369":{"oreDict":["gearGtConductiveIron"," gearConductiveIron"],"name":"导电铁齿轮","tr":"导电铁齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31370":{"oreDict":["gearGtTungstenCarbide"," gearTungstenCarbide"],"name":"碳化钨齿轮","tr":"碳化钨齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19083":{"oreDict":["wireFineOsmium"],"name":"细锇导线","tr":"细锇导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31371":{"oreDict":["gearGtVanadiumSteel"," gearVanadiumSteel"],"name":"钒钢齿轮","tr":"钒钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19084":{"oreDict":["wireFineIridium"],"name":"细铱导线","tr":"细铱导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31372":{"oreDict":["gearGtHSSG"," gearHSSG"],"name":"高速钢-G齿轮","tr":"高速钢-G齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19085":{"oreDict":["wireFinePlatinum"],"name":"细铂导线","tr":"细铂导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31373":{"oreDict":["gearGtHSSE"," gearHSSE"],"name":"高速钢-E齿轮","tr":"高速钢-E齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19086":{"oreDict":["wireFineGold"],"name":"细金导线","tr":"细金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31374":{"oreDict":["gearGtHSSS"," gearHSSS"],"name":"高速钢-S齿轮","tr":"高速钢-S齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19089":{"oreDict":["wireFineLead"],"name":"细铅导线","tr":"细铅导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19090":{"oreDict":["wireFineBismuth"],"name":"细铋导线","tr":"细铋导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31378":{"oreDict":["gearGtPulsatingIron"," gearPulsatingIron"],"name":"脉冲铁齿轮","tr":"脉冲铁齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31379":{"oreDict":["gearGtSoularium"," gearSoularium"],"name":"魂金齿轮","tr":"魂金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31380":{"oreDict":["gearGtEnderiumBase"," gearEnderiumBase"],"name":"末影粗胚齿轮","tr":"末影粗胚齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31381":{"oreDict":["gearGtRedstoneAlloy"," gearRedstoneAlloy"],"name":"红石合金齿轮","tr":"红石合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31382":{"oreDict":["gearGtArdite"," gearArdite"],"name":"阿迪特齿轮","tr":"阿迪特齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31383":{"oreDict":["gearGtReinforced"," gearReinforced"],"name":"强化金属齿轮","tr":"强化金属齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19096":{"oreDict":["wireFineThorium"],"name":"细钍导线","tr":"细钍导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31384":{"oreDict":["gearGtGalgadorian"," gearGalgadorian"],"name":"混合晶锭齿轮","tr":"混合晶锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19097":{"oreDict":["wireFineUranium235"],"name":"细铀-235导线","tr":"细铀-235导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31385":{"oreDict":["gearGtEnhancedGalgadorian"," gearEnhancedGalgadorian"],"name":"强化混合晶锭齿轮","tr":"强化混合晶锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19098":{"oreDict":["wireFineUranium"],"name":"细铀-238导线","tr":"细铀-238导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31386":{"oreDict":["gearGtManyullyn"," gearManyullyn"],"name":"玛玉灵齿轮","tr":"玛玉灵齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31387":{"oreDict":["gearGtMytryl"," gearMytryl"],"name":"深空秘银齿轮","tr":"深空秘银齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19100":{"oreDict":["wireFinePlutonium"],"name":"细钚-239导线","tr":"细钚-239导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31388":{"oreDict":["gearGtBlackPlutonium"," gearBlackPlutonium"],"name":"黑钚齿轮","tr":"黑钚齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19101":{"oreDict":["wireFinePlutonium241"],"name":"细钚-241导线","tr":"细钚-241导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31389":{"oreDict":["gearGtCallistoIce"," gearCallistoIce"],"name":"木卫四冰齿轮","tr":"木卫四冰齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31390":{"oreDict":["gearGtLedox"," gearLedox"],"name":"深铅齿轮","tr":"深铅齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19103":{"oreDict":["wireFineAmericium"],"name":"细镅导线","tr":"细镅导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31391":{"oreDict":["gearGtQuantium"," gearQuantium"],"name":"量子锭齿轮","tr":"量子锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31392":{"oreDict":["gearGtDuralumin"," gearDuralumin"],"name":"硬铝齿轮","tr":"硬铝齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23201":{"oreDict":["springSmallManasteel"],"name":"小型魔钢弹簧","tr":"小型魔钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31393":{"oreDict":["gearGtOriharukon"," gearOriharukon"],"name":"奥利哈钢齿轮","tr":"奥利哈钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23202":{"oreDict":["springSmallTerrasteel"],"name":"小型泰拉钢弹簧","tr":"小型泰拉钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31394":{"oreDict":["gearGtInfinityCatalyst"," gearInfinityCatalyst"],"name":"无尽催化剂齿轮","tr":"无尽催化剂齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23203":{"oreDict":["springSmallElvenElementium"],"name":"小型源质钢弹簧","tr":"小型源质钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23205":{"oreDict":["springSmallGaiaSpirit"],"name":"小型盖亚之魂弹簧","tr":"小型盖亚之魂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31397":{"oreDict":["gearGtInfinity"," gearInfinity"],"name":"无尽齿轮","tr":"无尽齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31398":{"oreDict":["gearGtMysteriousCrystal"," gearMysteriousCrystal"],"name":"神秘水晶齿轮","tr":"神秘水晶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19111":{"oreDict":["wireFineTengamPurified"],"name":"细纯镃导线","tr":"细纯镃导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31399":{"oreDict":["gearGtSamariumMagnetic"," gearSamariumMagnetic"],"name":"磁化钐齿轮","tr":"磁化钐齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19112":{"oreDict":["wireFineTengamAttuned"],"name":"细谐镃导线","tr":"细谐镃导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31400":{"oreDict":["gearGtAlumite"," gearAlumite"],"name":"耐酸铝齿轮","tr":"耐酸铝齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31401":{"oreDict":["gearGtEndSteel"," gearEndSteel"],"name":"末影钢齿轮","tr":"末影钢齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31402":{"oreDict":["gearGtCrudeSteel"," gearCrudeSteel"],"name":"复合粘土齿轮","tr":"复合粘土齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31403":{"oreDict":["gearGtCrystallineAlloy"," gearCrystallineAlloy"],"name":"晶化合金齿轮","tr":"晶化合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31404":{"oreDict":["gearGtMelodicAlloy"," gearMelodicAlloy"],"name":"旋律合金齿轮","tr":"旋律合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31405":{"oreDict":["gearGtStellarAlloy"," gearStellarAlloy"],"name":"恒星合金齿轮","tr":"恒星合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31406":{"oreDict":["gearGtCrystallinePinkSlime"," gearCrystallinePinkSlime"],"name":"晶化粉红史莱姆齿轮","tr":"晶化粉红史莱姆齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31407":{"oreDict":["gearGtEnergeticSilver"," gearEnergeticSilver"],"name":"充能银齿轮","tr":"充能银齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31408":{"oreDict":["gearGtVividAlloy"," gearVividAlloy"],"name":"生动合金齿轮","tr":"生动合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19129":{"oreDict":["wireFineNeutronium"],"name":"细中子导线","tr":"细中子导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19131":{"oreDict":["wireFineSuperconductorUIVBase"],"name":"细UIV超导粗胚导线","tr":"细UIV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19134":{"oreDict":["wireFineSuperconductorUMVBase"],"name":"细UMV超导粗胚导线","tr":"细UMV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19139":{"oreDict":["wireFineUniversium"],"name":"细宇宙素导线","tr":"细宇宙素导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19141":{"oreDict":["wireFineEternity"],"name":"细永恒导线","tr":"细永恒导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19143":{"oreDict":["wireFineMagmatter"],"name":"细磁物质导线","tr":"细磁物质导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31470":{"oreDict":["gearGtEpoxid"," gearEpoxid"],"name":"环氧树脂齿轮","tr":"环氧树脂齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31471":{"oreDict":["gearGtSilicone"," gearGtAnyRubber"," gearAnyRubber"," gearGtAnySyntheticRubber"," gearAnySyntheticRubber"," gearSilicone"],"name":"硅橡胶齿轮","tr":"硅橡胶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31472":{"oreDict":["gearGtPolycaprolactam"," gearPolycaprolactam"],"name":"聚己内酰胺齿轮","tr":"聚己内酰胺齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31473":{"oreDict":["gearGtPolytetrafluoroethylene"," gearPolytetrafluoroethylene"],"name":"聚四氟乙烯齿轮","tr":"聚四氟乙烯齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31485":{"oreDict":["gearGtAlduorite"," gearAlduorite"],"name":"神秘蓝金齿轮","tr":"神秘蓝金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31488":{"oreDict":["gearGtRubracium"," gearRubracium"],"name":"褐铜齿轮","tr":"褐铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31489":{"oreDict":["gearGtVulcanite"," gearVulcanite"],"name":"胶木齿轮","tr":"胶木齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23300":{"oreDict":["springSmallBronze"," springSmallAnyBronze"],"name":"小型青铜弹簧","tr":"小型青铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23301":{"oreDict":["springSmallBrass"],"name":"小型黄铜弹簧","tr":"小型黄铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23302":{"oreDict":["springSmallInvar"],"name":"小型殷钢弹簧","tr":"小型殷钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23303":{"oreDict":["springSmallElectrum"],"name":"小型琥珀金弹簧","tr":"小型琥珀金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23304":{"oreDict":["springSmallAnyIron"," springSmallWroughtIron"],"name":"小型锻铁弹簧","tr":"小型锻铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23305":{"oreDict":["springSmallSteel"],"name":"小型钢弹簧","tr":"小型钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23306":{"oreDict":["springSmallStainlessSteel"],"name":"小型不锈钢弹簧","tr":"小型不锈钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23307":{"oreDict":["springSmallPigIron"," springSmallAnyIron"],"name":"小型生铁弹簧","tr":"小型生铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23308":{"oreDict":["springSmallRedAlloy"],"name":"小型红色合金弹簧","tr":"小型红色合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31500":{"oreDict":["gearGtDiamond"," gearDiamond"],"name":"钻石齿轮","tr":"钻石齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23309":{"oreDict":["springSmallBlueAlloy"],"name":"小型蓝色合金弹簧","tr":"小型蓝色合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23310":{"oreDict":["springSmallCupronickel"],"name":"小型白铜弹簧","tr":"小型白铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23311":{"oreDict":["springSmallNichrome"],"name":"小型镍铬弹簧","tr":"小型镍铬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23312":{"oreDict":["springSmallKanthal"],"name":"小型坎塔尔合金弹簧","tr":"小型坎塔尔合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23313":{"oreDict":["springSmallMagnalium"],"name":"小型镁铝合金弹簧","tr":"小型镁铝合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23314":{"oreDict":["springSmallSolderingAlloy"],"name":"小型焊锡弹簧","tr":"小型焊锡弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23315":{"oreDict":["springSmallBatteryAlloy"],"name":"小型电池合金弹簧","tr":"小型电池合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23316":{"oreDict":["springSmallTungstenSteel"],"name":"小型钨钢弹簧","tr":"小型钨钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23317":{"oreDict":["springSmallOsmiridium"],"name":"小型铱锇合金弹簧","tr":"小型铱锇合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23318":{"oreDict":["springSmallSunnarium"],"name":"小型阳光化合物弹簧","tr":"小型阳光化合物弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23319":{"oreDict":["springSmallAdamantium"],"name":"小型精金弹簧","tr":"小型精金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23320":{"oreDict":["springSmallElectrumFlux"],"name":"小型通流琥珀金弹簧","tr":"小型通流琥珀金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23321":{"oreDict":["springSmallEnderium"],"name":"小型末影锭弹簧","tr":"小型末影锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23323":{"oreDict":["springSmallInfusedGold"],"name":"小型注魔金弹簧","tr":"小型注魔金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23324":{"oreDict":["springSmallNaquadah"],"name":"小型硅岩弹簧","tr":"小型硅岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23325":{"oreDict":["springSmallNaquadahAlloy"],"name":"小型硅岩合金弹簧","tr":"小型硅岩合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23326":{"oreDict":["springSmallNaquadahEnriched"],"name":"小型富集硅岩弹簧","tr":"小型富集硅岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23327":{"oreDict":["springSmallNaquadria"],"name":"小型超能硅岩弹簧","tr":"小型超能硅岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23328":{"oreDict":["springSmallDuranium"],"name":"小型铿铀弹簧","tr":"小型铿铀弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23329":{"oreDict":["springSmallTritanium"],"name":"小型三钛弹簧","tr":"小型三钛弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31521":{"oreDict":["gearGtForce"," gearForce"],"name":"力量齿轮","tr":"力量齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23330":{"oreDict":["springSmallThaumium"],"name":"小型神秘锭弹簧","tr":"小型神秘锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23331":{"oreDict":["springSmallMithril"],"name":"小型秘银弹簧","tr":"小型秘银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23333":{"oreDict":["springSmallAstralSilver"],"name":"小型星辰银弹簧","tr":"小型星辰银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23334":{"oreDict":["springSmallBlackSteel"],"name":"小型黑钢弹簧","tr":"小型黑钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23335":{"oreDict":["springSmallDamascusSteel"],"name":"小型大马士革钢弹簧","tr":"小型大马士革钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23336":{"oreDict":["springSmallShadowIron"],"name":"小型暗影铁弹簧","tr":"小型暗影铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23337":{"oreDict":["springSmallShadowSteel"],"name":"小型暗影钢弹簧","tr":"小型暗影钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31529":{"oreDict":["gearGtVinteum"," gearVinteum"],"name":"温特姆齿轮","tr":"温特姆齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23338":{"oreDict":["springSmallIronWood"],"name":"小型铁木弹簧","tr":"小型铁木弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23339":{"oreDict":["springSmallSteeleaf"],"name":"小型钢叶弹簧","tr":"小型钢叶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23340":{"oreDict":["springSmallMeteoricIron"],"name":"小型陨铁弹簧","tr":"小型陨铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23341":{"oreDict":["springSmallMeteoricSteel"],"name":"小型陨钢弹簧","tr":"小型陨钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23342":{"oreDict":["springSmallDarkIron"],"name":"小型玄铁弹簧","tr":"小型玄铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23343":{"oreDict":["springSmallCobaltBrass"],"name":"小型钴黄铜弹簧","tr":"小型钴黄铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23344":{"oreDict":["springSmallUltimet"],"name":"小型哈氏合金弹簧","tr":"小型哈氏合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23345":{"oreDict":["springSmallAnyCopper"," springSmallAnnealedCopper"],"name":"小型退火铜弹簧","tr":"小型退火铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23346":{"oreDict":["springSmallFierySteel"],"name":"小型炽热钢弹簧","tr":"小型炽热钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23348":{"oreDict":["springSmallRedSteel"],"name":"小型红钢弹簧","tr":"小型红钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31540":{"oreDict":["gearGtInfusedAir"," gearInfusedAir"],"name":"风之魔晶齿轮","tr":"风之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23349":{"oreDict":["springSmallBlueSteel"],"name":"小型蓝钢弹簧","tr":"小型蓝钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31541":{"oreDict":["gearGtInfusedFire"," gearInfusedFire"],"name":"火之魔晶齿轮","tr":"火之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23350":{"oreDict":["springSmallSterlingSilver"],"name":"小型标准纯银弹簧","tr":"小型标准纯银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31542":{"oreDict":["gearInfusedEarth"," gearGtInfusedEarth"],"name":"地之魔晶齿轮","tr":"地之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23351":{"oreDict":["springSmallRoseGold"],"name":"小型玫瑰金弹簧","tr":"小型玫瑰金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31543":{"oreDict":["gearGtInfusedWater"," gearInfusedWater"],"name":"水之魔晶齿轮","tr":"水之魔晶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23352":{"oreDict":["springSmallBlackBronze"],"name":"小型黑青铜弹簧","tr":"小型黑青铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31544":{"oreDict":["gearGtInfusedEntropy"," gearInfusedEntropy"],"name":"混沌魔晶齿轮","tr":"混沌魔晶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23353":{"oreDict":["springSmallBismuthBronze"],"name":"小型铋青铜弹簧","tr":"小型铋青铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31545":{"oreDict":["gearGtInfusedOrder"," gearInfusedOrder"],"name":"秩序魔晶齿轮","tr":"秩序魔晶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23354":{"oreDict":["springSmallIronMagnetic"],"name":"小型磁化铁弹簧","tr":"小型磁化铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23355":{"oreDict":["springSmallSteelMagnetic"],"name":"小型磁化钢弹簧","tr":"小型磁化钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23356":{"oreDict":["springSmallNeodymiumMagnetic"],"name":"小型磁化钕弹簧","tr":"小型磁化钕弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23357":{"oreDict":["springSmallVanadiumGallium"],"name":"小型钒镓合金弹簧","tr":"小型钒镓合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23358":{"oreDict":["springSmallYttriumBariumCuprate"],"name":"小型钇钡铜氧合金弹簧","tr":"小型钇钡铜氧合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23359":{"oreDict":["springSmallNiobiumNitride"],"name":"小型氮化铌弹簧","tr":"小型氮化铌弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23360":{"oreDict":["springSmallNiobiumTitanium"],"name":"小型铌钛合金弹簧","tr":"小型铌钛合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23361":{"oreDict":["springSmallChromiumDioxide"],"name":"小型二氧化铬弹簧","tr":"小型二氧化铬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23362":{"oreDict":["springSmallKnightmetal"],"name":"小型骑士金属弹簧","tr":"小型骑士金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23363":{"oreDict":["springSmallTinAlloy"],"name":"小型锡铁合金弹簧","tr":"小型锡铁合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23364":{"oreDict":["springSmallDarkSteel"],"name":"小型玄钢弹簧","tr":"小型玄钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23365":{"oreDict":["springSmallElectricalSteel"],"name":"小型磁钢弹簧","tr":"小型磁钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23366":{"oreDict":["springSmallEnergeticAlloy"],"name":"小型充能合金弹簧","tr":"小型充能合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23367":{"oreDict":["springSmallVibrantAlloy"],"name":"小型脉冲合金弹簧","tr":"小型脉冲合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23368":{"oreDict":["springSmallShadow"],"name":"小型暗影弹簧","tr":"小型暗影弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23369":{"oreDict":["springSmallConductiveIron"],"name":"小型导电铁弹簧","tr":"小型导电铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23370":{"oreDict":["springSmallTungstenCarbide"],"name":"小型碳化钨弹簧","tr":"小型碳化钨弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23371":{"oreDict":["springSmallVanadiumSteel"],"name":"小型钒钢弹簧","tr":"小型钒钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23372":{"oreDict":["springSmallHSSG"],"name":"小型高速钢-G弹簧","tr":"小型高速钢-G弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23373":{"oreDict":["springSmallHSSE"],"name":"小型高速钢-E弹簧","tr":"小型高速钢-E弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23374":{"oreDict":["springSmallHSSS"],"name":"小型高速钢-S弹簧","tr":"小型高速钢-S弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23378":{"oreDict":["springSmallPulsatingIron"],"name":"小型脉冲铁弹簧","tr":"小型脉冲铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23379":{"oreDict":["springSmallSoularium"],"name":"小型魂金弹簧","tr":"小型魂金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23380":{"oreDict":["springSmallEnderiumBase"],"name":"小型末影粗胚弹簧","tr":"小型末影粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23381":{"oreDict":["springSmallRedstoneAlloy"],"name":"小型红石合金弹簧","tr":"小型红石合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23382":{"oreDict":["springSmallArdite"],"name":"小型阿迪特弹簧","tr":"小型阿迪特弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23383":{"oreDict":["springSmallReinforced"],"name":"小型强化金属弹簧","tr":"小型强化金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23384":{"oreDict":["springSmallGalgadorian"],"name":"小型混合晶锭弹簧","tr":"小型混合晶锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31576":{"oreDict":["gearGtTPVAlloy"," gearTPVAlloy"],"name":"钛铂钒合金齿轮","tr":"钛铂钒合金齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23385":{"oreDict":["springSmallEnhancedGalgadorian"],"name":"小型强化混合晶锭弹簧","tr":"小型强化混合晶锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23386":{"oreDict":["springSmallManyullyn"],"name":"小型玛玉灵弹簧","tr":"小型玛玉灵弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23387":{"oreDict":["springSmallMytryl"],"name":"小型深空秘银弹簧","tr":"小型深空秘银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23388":{"oreDict":["springSmallBlackPlutonium"],"name":"小型黑钚弹簧","tr":"小型黑钚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23389":{"oreDict":["springSmallCallistoIce"],"name":"小型木卫四冰弹簧","tr":"小型木卫四冰弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31581":{"oreDict":["gearGtTranscendentMetal"," gearTranscendentMetal"],"name":"超时空金属齿轮","tr":"超时空金属齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23390":{"oreDict":["springSmallLedox"],"name":"小型深铅弹簧","tr":"小型深铅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23391":{"oreDict":["springSmallQuantium"],"name":"小型量子锭弹簧","tr":"小型量子锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31583":{"oreDict":["gearGtMagnetohydrodynamicallyConstrainedStarMatter"," gearMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质齿轮","tr":"磁流体约束恒星物质齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23392":{"oreDict":["springSmallDuralumin"],"name":"小型硬铝弹簧","tr":"小型硬铝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23393":{"oreDict":["springSmallOriharukon"],"name":"小型奥利哈钢弹簧","tr":"小型奥利哈钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31585":{"oreDict":["gearGtWhiteDwarfMatter"," gearWhiteDwarfMatter"],"name":"白矮星物质齿轮","tr":"白矮星物质齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23394":{"oreDict":["springSmallInfinityCatalyst"],"name":"小型无尽催化剂弹簧","tr":"小型无尽催化剂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31586":{"oreDict":["gearBlackDwarfMatter"," gearGtBlackDwarfMatter"],"name":"黑矮星物质齿轮","tr":"黑矮星物质齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23395":{"oreDict":["springSmallBedrockium"],"name":"小型基岩弹簧","tr":"小型基岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19300":{"oreDict":["wireFineBronze"," wireFineAnyBronze"],"name":"细青铜导线","tr":"细青铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31588":{"oreDict":["gearGtSpaceTime"," gearSpaceTime"],"name":"时空齿轮","tr":"时空齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19301":{"oreDict":["wireFineBrass"],"name":"细黄铜导线","tr":"细黄铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23397":{"oreDict":["springSmallInfinity"],"name":"小型无尽弹簧","tr":"小型无尽弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19302":{"oreDict":["wireFineInvar"],"name":"细殷钢导线","tr":"细殷钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23398":{"oreDict":["springSmallMysteriousCrystal"],"name":"小型神秘水晶弹簧","tr":"小型神秘水晶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19303":{"oreDict":["wireFineElectrum"],"name":"细琥珀金导线","tr":"细琥珀金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23399":{"oreDict":["springSmallSamariumMagnetic"],"name":"小型磁化钐弹簧","tr":"小型磁化钐弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19304":{"oreDict":["wireFineWroughtIron"," wireFineAnyIron"],"name":"细锻铁导线","tr":"细锻铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23400":{"oreDict":["springSmallAlumite"],"name":"小型耐酸铝弹簧","tr":"小型耐酸铝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19305":{"oreDict":["wireFineSteel"],"name":"细钢导线","tr":"细钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23401":{"oreDict":["springSmallEndSteel"],"name":"小型末影钢弹簧","tr":"小型末影钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19306":{"oreDict":["wireFineStainlessSteel"],"name":"细不锈钢导线","tr":"细不锈钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23402":{"oreDict":["springSmallCrudeSteel"],"name":"小型复合粘土弹簧","tr":"小型复合粘土弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19307":{"oreDict":["wireFinePigIron"," wireFineAnyIron"],"name":"细生铁导线","tr":"细生铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23403":{"oreDict":["springSmallCrystallineAlloy"],"name":"小型晶化合金弹簧","tr":"小型晶化合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19308":{"oreDict":["wireFineRedAlloy"],"name":"细红色合金导线","tr":"细红色合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23404":{"oreDict":["springSmallMelodicAlloy"],"name":"小型旋律合金弹簧","tr":"小型旋律合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27500":{"oreDict":["gemChippedDiamond"],"name":"破碎的钻石","tr":"破碎的钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19309":{"oreDict":["wireFineBlueAlloy"],"name":"细蓝色合金导线","tr":"细蓝色合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23405":{"oreDict":["springSmallStellarAlloy"],"name":"小型恒星合金弹簧","tr":"小型恒星合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27501":{"oreDict":["gemChippedEmerald"],"name":"破碎的绿宝石","tr":"破碎的绿宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19310":{"oreDict":["wireFineCupronickel"],"name":"细白铜导线","tr":"细白铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23406":{"oreDict":["springSmallCrystallinePinkSlime"],"name":"小型晶化粉红史莱姆弹簧","tr":"小型晶化粉红史莱姆弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27502":{"oreDict":["gemChippedRuby"],"name":"破碎的红宝石","tr":"破碎的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19311":{"oreDict":["wireFineNichrome"],"name":"细镍铬导线","tr":"细镍铬导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23407":{"oreDict":["springSmallEnergeticSilver"],"name":"小型充能银弹簧","tr":"小型充能银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27503":{"oreDict":["gemChippedSapphire"],"name":"破碎的蓝宝石","tr":"破碎的蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31599":{"oreDict":["gearGtPolybenzimidazole"," gearPolybenzimidazole"],"name":"聚苯并咪唑齿轮","tr":"聚苯并咪唑齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19312":{"oreDict":["wireFineKanthal"],"name":"细坎塔尔合金导线","tr":"细坎塔尔合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23408":{"oreDict":["springSmallVividAlloy"],"name":"小型生动合金弹簧","tr":"小型生动合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27504":{"oreDict":["gemChippedGreenSapphire"],"name":"破碎的绿色蓝宝石","tr":"破碎的绿色蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19313":{"oreDict":["wireFineMagnalium"],"name":"细镁铝合金导线","tr":"细镁铝合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27505":{"oreDict":["gemChippedOlivine"],"name":"破碎的橄榄石","tr":"破碎的橄榄石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19314":{"oreDict":["wireFineSolderingAlloy"],"name":"细焊锡导线","tr":"细焊锡导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19315":{"oreDict":["wireFineBatteryAlloy"],"name":"细电池合金导线","tr":"细电池合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27507":{"oreDict":["gemChippedTopaz"],"name":"破碎的黄玉","tr":"破碎的黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19316":{"oreDict":["wireFineTungstenSteel"],"name":"细钨钢导线","tr":"细钨钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27508":{"oreDict":["gemChippedTanzanite"],"name":"破碎的坦桑石","tr":"破碎的坦桑石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19317":{"oreDict":["wireFineOsmiridium"],"name":"细铱锇合金导线","tr":"细铱锇合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27509":{"oreDict":["gemChippedAmethyst"],"name":"破碎的紫水晶","tr":"破碎的紫水晶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19318":{"oreDict":["wireFineSunnarium"],"name":"细阳光化合物导线","tr":"细阳光化合物导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27510":{"oreDict":["gemChippedOpal"],"name":"破碎的蛋白石","tr":"破碎的蛋白石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19319":{"oreDict":["wireFineAdamantium"],"name":"细精金导线","tr":"细精金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27511":{"oreDict":["gemChippedJasper"],"name":"破碎的碧玉","tr":"破碎的碧玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19320":{"oreDict":["wireFineElectrumFlux"],"name":"细通流琥珀金导线","tr":"细通流琥珀金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27512":{"oreDict":["gemChippedFoolsRuby"],"name":"破碎的红宝石","tr":"破碎的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19321":{"oreDict":["wireFineEnderium"],"name":"细末影锭导线","tr":"细末影锭导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27513":{"oreDict":["gemChippedBlueTopaz"],"name":"破碎的蓝黄玉","tr":"破碎的蓝黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27514":{"oreDict":["gemChippedAmber"],"name":"破碎的琥珀","tr":"破碎的琥珀","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31610":{"oreDict":["gearGtEpoxidFiberReinforced"," gearEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂齿轮","tr":"纤维强化的环氧树脂齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19323":{"oreDict":["wireFineInfusedGold"],"name":"细注魔金导线","tr":"细注魔金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19324":{"oreDict":["wireFineNaquadah"],"name":"细硅岩导线","tr":"细硅岩导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19325":{"oreDict":["wireFineNaquadahAlloy"],"name":"细硅岩合金导线","tr":"细硅岩合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31613":{"oreDict":["gearGtNickelZincFerrite"," gearNickelZincFerrite"],"name":"镍锌铁氧体齿轮","tr":"镍锌铁氧体齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19326":{"oreDict":["wireFineNaquadahEnriched"],"name":"细富集硅岩导线","tr":"细富集硅岩导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19327":{"oreDict":["wireFineNaquadria"],"name":"细超能硅岩导线","tr":"细超能硅岩导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19328":{"oreDict":["wireFineDuranium"],"name":"细铿铀导线","tr":"细铿铀导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19329":{"oreDict":["wireFineTritanium"],"name":"细三钛导线","tr":"细三钛导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19330":{"oreDict":["wireFineThaumium"],"name":"细神秘锭导线","tr":"细神秘锭导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19331":{"oreDict":["wireFineMithril"],"name":"细秘银导线","tr":"细秘银导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19333":{"oreDict":["wireFineAstralSilver"],"name":"细星辰银导线","tr":"细星辰银导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19334":{"oreDict":["wireFineBlackSteel"],"name":"细黑钢导线","tr":"细黑钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19335":{"oreDict":["wireFineDamascusSteel"],"name":"细大马士革钢导线","tr":"细大马士革钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27527":{"oreDict":["gemChippedGarnetRed"],"name":"破碎的红石榴石","tr":"破碎的红石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19336":{"oreDict":["wireFineShadowIron"],"name":"细暗影铁导线","tr":"细暗影铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27528":{"oreDict":["gemChippedGarnetYellow"],"name":"破碎的黄石榴石","tr":"破碎的黄石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19337":{"oreDict":["wireFineShadowSteel"],"name":"细暗影钢导线","tr":"细暗影钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19338":{"oreDict":["wireFineIronWood"],"name":"细铁木导线","tr":"细铁木导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19339":{"oreDict":["wireFineSteeleaf"],"name":"细钢叶导线","tr":"细钢叶导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19340":{"oreDict":["wireFineMeteoricIron"],"name":"细陨铁导线","tr":"细陨铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19341":{"oreDict":["wireFineMeteoricSteel"],"name":"细陨钢导线","tr":"细陨钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19342":{"oreDict":["wireFineDarkIron"],"name":"细玄铁导线","tr":"细玄铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19343":{"oreDict":["wireFineCobaltBrass"],"name":"细钴黄铜导线","tr":"细钴黄铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31631":{"oreDict":["gearGtPolyphenyleneSulfide"," gearPolyphenyleneSulfide"],"name":"聚苯硫醚齿轮","tr":"聚苯硫醚齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19344":{"oreDict":["wireFineUltimet"],"name":"细哈氏合金导线","tr":"细哈氏合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19345":{"oreDict":["wireFineAnnealedCopper"," wireFineAnyCopper"],"name":"细退火铜导线","tr":"细退火铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19346":{"oreDict":["wireFineFierySteel"],"name":"细炽热钢导线","tr":"细炽热钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31635":{"oreDict":["gearGtAnyRubber"," gearAnyRubber"," gearGtAnySyntheticRubber"," gearAnySyntheticRubber"," gearGtStyreneButadieneRubber"," gearStyreneButadieneRubber"],"name":"丁苯橡胶齿轮","tr":"丁苯橡胶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19348":{"oreDict":["wireFineRedSteel"],"name":"细红钢导线","tr":"细红钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31636":{"oreDict":["gearGtPolystyrene"," gearPolystyrene"],"name":"聚苯乙烯齿轮","tr":"聚苯乙烯齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19349":{"oreDict":["wireFineBlueSteel"],"name":"细蓝钢导线","tr":"细蓝钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19350":{"oreDict":["wireFineSterlingSilver"],"name":"细标准纯银导线","tr":"细标准纯银导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19351":{"oreDict":["wireFineRoseGold"],"name":"细玫瑰金导线","tr":"细玫瑰金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19352":{"oreDict":["wireFineBlackBronze"],"name":"细黑青铜导线","tr":"细黑青铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19353":{"oreDict":["wireFineBismuthBronze"],"name":"细铋青铜导线","tr":"细铋青铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19354":{"oreDict":["wireFineIronMagnetic"],"name":"细磁化铁导线","tr":"细磁化铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19355":{"oreDict":["wireFineSteelMagnetic"],"name":"细磁化钢导线","tr":"细磁化钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19356":{"oreDict":["wireFineNeodymiumMagnetic"],"name":"细磁化钕导线","tr":"细磁化钕导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19357":{"oreDict":["wireFineVanadiumGallium"],"name":"细钒镓合金导线","tr":"细钒镓合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19358":{"oreDict":["wireFineYttriumBariumCuprate"],"name":"细钇钡铜氧合金导线","tr":"细钇钡铜氧合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19359":{"oreDict":["wireFineNiobiumNitride"],"name":"细氮化铌导线","tr":"细氮化铌导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19360":{"oreDict":["wireFineNiobiumTitanium"],"name":"细铌钛合金导线","tr":"细铌钛合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19361":{"oreDict":["wireFineChromiumDioxide"],"name":"细二氧化铬导线","tr":"细二氧化铬导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31649":{"oreDict":["gearPolyvinylChloride"," gearGtPolyvinylChloride"],"name":"聚氯乙烯齿轮","tr":"聚氯乙烯齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19362":{"oreDict":["wireFineKnightmetal"],"name":"细骑士金属导线","tr":"细骑士金属导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19363":{"oreDict":["wireFineTinAlloy"],"name":"细锡铁合金导线","tr":"细锡铁合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19364":{"oreDict":["wireFineDarkSteel"],"name":"细玄钢导线","tr":"细玄钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19365":{"oreDict":["wireFineElectricalSteel"],"name":"细磁钢导线","tr":"细磁钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19366":{"oreDict":["wireFineEnergeticAlloy"],"name":"细充能合金导线","tr":"细充能合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19367":{"oreDict":["wireFineVibrantAlloy"],"name":"细脉冲合金导线","tr":"细脉冲合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19368":{"oreDict":["wireFineShadow"],"name":"细暗影导线","tr":"细暗影导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19369":{"oreDict":["wireFineConductiveIron"],"name":"细导电铁导线","tr":"细导电铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19370":{"oreDict":["wireFineTungstenCarbide"],"name":"细碳化钨导线","tr":"细碳化钨导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19371":{"oreDict":["wireFineVanadiumSteel"],"name":"细钒钢导线","tr":"细钒钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19372":{"oreDict":["wireFineHSSG"],"name":"细高速钢-G导线","tr":"细高速钢-G导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19373":{"oreDict":["wireFineHSSE"],"name":"细高速钢-E导线","tr":"细高速钢-E导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19374":{"oreDict":["wireFineHSSS"],"name":"细高速钢-S导线","tr":"细高速钢-S导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23470":{"oreDict":["springSmallEpoxid"],"name":"小型环氧树脂弹簧","tr":"小型环氧树脂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23471":{"oreDict":["springSmallSilicone"," springSmallAnyRubber"," springSmallAnySyntheticRubber"],"name":"小型硅橡胶弹簧","tr":"小型硅橡胶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23472":{"oreDict":["springSmallPolycaprolactam"],"name":"小型聚己内酰胺弹簧","tr":"小型聚己内酰胺弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23473":{"oreDict":["springSmallPolytetrafluoroethylene"],"name":"小型聚四氟乙烯弹簧","tr":"小型聚四氟乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19378":{"oreDict":["wireFinePulsatingIron"],"name":"细脉冲铁导线","tr":"细脉冲铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19380":{"oreDict":["wireFineEnderiumBase"],"name":"细末影粗胚导线","tr":"细末影粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19381":{"oreDict":["wireFineRedstoneAlloy"],"name":"细红石合金导线","tr":"细红石合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19382":{"oreDict":["wireFineArdite"],"name":"细阿迪特导线","tr":"细阿迪特导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19386":{"oreDict":["wireFineManyullyn"],"name":"细玛玉灵导线","tr":"细玛玉灵导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19388":{"oreDict":["wireFineBlackPlutonium"],"name":"细黑钚导线","tr":"细黑钚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23485":{"oreDict":["springSmallAlduorite"],"name":"小型神秘蓝金弹簧","tr":"小型神秘蓝金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19391":{"oreDict":["wireFineQuantium"],"name":"细量子导线","tr":"细量子导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23488":{"oreDict":["springSmallRubracium"],"name":"小型褐铜弹簧","tr":"小型褐铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23489":{"oreDict":["springSmallVulcanite"],"name":"小型胶木弹簧","tr":"小型胶木弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19394":{"oreDict":["wireFineInfinityCatalyst"],"name":"细无尽催化剂导线","tr":"细无尽催化剂导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19395":{"oreDict":["wireFineBedrockium"],"name":"细基岩导线","tr":"细基岩导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19397":{"oreDict":["wireFineInfinity"],"name":"细无尽导线","tr":"细无尽导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19399":{"oreDict":["wireFineSamariumMagnetic"],"name":"细磁化钐导线","tr":"细磁化钐导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19400":{"oreDict":["wireFineAlumite"],"name":"细耐酸铝导线","tr":"细耐酸铝导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19401":{"oreDict":["wireFineEndSteel"],"name":"细末影钢导线","tr":"细末影钢导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19402":{"oreDict":["wireFineCrudeSteel"],"name":"细复合粘土导线","tr":"细复合粘土导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19403":{"oreDict":["wireFineCrystallineAlloy"],"name":"细晶化合金导线","tr":"细晶化合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19404":{"oreDict":["wireFineMelodicAlloy"],"name":"细旋律合金导线","tr":"细旋律合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19405":{"oreDict":["wireFineStellarAlloy"],"name":"细恒星合金导线","tr":"细恒星合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19406":{"oreDict":["wireFineCrystallinePinkSlime"],"name":"细晶化粉红史莱姆导线","tr":"细晶化粉红史莱姆导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19407":{"oreDict":["wireFineEnergeticSilver"],"name":"细充能银导线","tr":"细充能银导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19408":{"oreDict":["wireFineVividAlloy"],"name":"细生动合金导线","tr":"细生动合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23521":{"oreDict":["springSmallForce"],"name":"小型力量弹簧","tr":"小型力量弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23529":{"oreDict":["springSmallVinteum"],"name":"小型温特姆弹簧","tr":"小型温特姆弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31765":{"oreDict":["gearGtKevlar"," gearKevlar"],"name":"凯芙拉齿轮","tr":"凯芙拉齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23576":{"oreDict":["springSmallTPVAlloy"],"name":"小型钛铂钒合金弹簧","tr":"小型钛铂钒合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31770":{"oreDict":["gearGtHeeEndium"," gearHeeEndium"],"name":"终末锭齿轮","tr":"终末锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19485":{"oreDict":["wireFineAlduorite"],"name":"细神秘蓝金导线","tr":"细神秘蓝金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23581":{"oreDict":["springSmallTranscendentMetal"],"name":"小型超时空金属弹簧","tr":"小型超时空金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23582":{"oreDict":["springSmallEnrichedHolmium"],"name":"小型富集钬弹簧","tr":"小型富集钬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23583":{"oreDict":["springSmallMagnetohydrodynamicallyConstrainedStarMatter"],"name":"小型磁流体约束恒星物质弹簧","tr":"小型磁流体约束恒星物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19488":{"oreDict":["wireFineRubracium"],"name":"细褐铜导线","tr":"细褐铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19489":{"oreDict":["wireFineVulcanite"],"name":"细胶木导线","tr":"细胶木导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23585":{"oreDict":["springSmallWhiteDwarfMatter"],"name":"小型白矮星物质弹簧","tr":"小型白矮星物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23586":{"oreDict":["springSmallBlackDwarfMatter"],"name":"小型黑矮星物质弹簧","tr":"小型黑矮星物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23588":{"oreDict":["springSmallSpaceTime"],"name":"小型时空弹簧","tr":"小型时空弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23599":{"oreDict":["springSmallPolybenzimidazole"],"name":"小型聚苯并咪唑弹簧","tr":"小型聚苯并咪唑弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23610":{"oreDict":["springSmallEpoxidFiberReinforced"],"name":"小型纤维强化的环氧树脂弹簧","tr":"小型纤维强化的环氧树脂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23613":{"oreDict":["springSmallNickelZincFerrite"],"name":"小型镍锌铁氧体弹簧","tr":"小型镍锌铁氧体弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19521":{"oreDict":["wireFineForce"],"name":"细力量导线","tr":"细力量导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31809":{"oreDict":["gearGtWood"," gearWood"],"name":"木齿轮","tr":"木齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19529":{"oreDict":["wireFineVinteum"],"name":"细温特姆导线","tr":"细温特姆导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23631":{"oreDict":["springSmallPolyphenyleneSulfide"],"name":"小型聚苯硫醚弹簧","tr":"小型聚苯硫醚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23635":{"oreDict":["springSmallAnyRubber"," springSmallAnySyntheticRubber"," springSmallStyreneButadieneRubber"],"name":"小型丁苯橡胶弹簧","tr":"小型丁苯橡胶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23636":{"oreDict":["springSmallPolystyrene"],"name":"小型聚苯乙烯弹簧","tr":"小型聚苯乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23649":{"oreDict":["springSmallPolyvinylChloride"],"name":"小型聚氯乙烯弹簧","tr":"小型聚氯乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31844":{"oreDict":["gearGtBasalt"," gearBasalt"],"name":"玄武岩齿轮","tr":"玄武岩齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31845":{"oreDict":["gearGtMarble"," gearMarble"],"name":"大理石齿轮","tr":"大理石齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31849":{"oreDict":["gearGtGraniteBlack"," gearGraniteBlack"],"name":"黑花岗岩齿轮","tr":"黑花岗岩齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31850":{"oreDict":["gearGtGraniteRed"," gearGraniteRed"],"name":"红花岗岩齿轮","tr":"红花岗岩齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31854":{"oreDict":["gearGtConstructionFoam"," gearConstructionFoam"],"name":"建筑泡沫齿轮","tr":"建筑泡沫齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19576":{"oreDict":["wireFineTPVAlloy"],"name":"细钛铂钒合金导线","tr":"细钛铂钒合金导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31868":{"oreDict":["gearGtTrinium"," gearTrinium"],"name":"三元金属齿轮","tr":"三元金属齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19582":{"oreDict":["wireFineEnrichedHolmium"],"name":"细富集钬导线","tr":"细富集钬导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19583":{"oreDict":["wireFineMagnetohydrodynamicallyConstrainedStarMatter"],"name":"细磁流体约束恒星物质导线","tr":"细磁流体约束恒星物质导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31874":{"oreDict":["gearGtPlastic"," gearPlastic"],"name":"聚乙烯齿轮","tr":"聚乙烯齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31880":{"oreDict":["gearGtRubber"," gearRubber"," gearGtAnyRubber"," gearAnyRubber"],"name":"橡胶齿轮","tr":"橡胶齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31884":{"oreDict":["gearGtDesh"," gearDesh"],"name":"戴斯齿轮","tr":"戴斯齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31889":{"oreDict":["gearGtWoodSealed"," gearWoodSealed"],"name":"蜡封木齿轮","tr":"蜡封木齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31912":{"oreDict":["gearGtChrysotile"," gearChrysotile"],"name":"石棉齿轮","tr":"石棉齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31913":{"oreDict":["gearGtRealgar"," gearRealgar"],"name":"雄黄齿轮","tr":"雄黄齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31952":{"oreDict":["gearGtCeruclase"," gearCeruclase"],"name":"暗影秘银齿轮","tr":"暗影秘银齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"23765":{"oreDict":["springSmallKevlar"],"name":"小型凯芙拉弹簧","tr":"小型凯芙拉弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23770":{"oreDict":["springSmallHeeEndium"],"name":"小型终末锭弹簧","tr":"小型终末锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23772":{"oreDict":["springSmallNickelAluminide"],"name":"小型铝化镍弹簧","tr":"小型铝化镍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"31966":{"oreDict":["gearGtOrichalcum"," gearOrichalcum"],"name":"山铜齿轮","tr":"山铜齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31970":{"oreDict":["gearGtVoid"," gearVoid"],"name":"虚空锭齿轮","tr":"虚空锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31975":{"oreDict":["gearGtDraconium"," gearDraconium"],"name":"龙锭齿轮","tr":"龙锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31976":{"oreDict":["gearGtDraconiumAwakened"," gearDraconiumAwakened"],"name":"觉醒龙锭齿轮","tr":"觉醒龙锭齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31977":{"oreDict":["gearGtBloodInfusedIron"," gearBloodInfusedIron"],"name":"注血铁齿轮","tr":"注血铁齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31978":{"oreDict":["gearGtIchorium"," gearIchorium"],"name":"灵宝齿轮","tr":"灵宝齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31982":{"oreDict":["gearGtCosmicNeutronium"," gearCosmicNeutronium"],"name":"宇宙中子态素齿轮","tr":"宇宙中子态素齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"31984":{"oreDict":["gearGtFlerovium_GT5U"," gearFlerovium_GT5U"],"name":"齿轮","tr":"齿轮","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"27890":{"oreDict":["gemChippedGlass"],"name":"破碎的玻璃晶体","tr":"破碎的玻璃晶体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32000":{"name":"黑咖啡","tr":"黑咖啡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32001":{"name":"欧蕾黑咖啡","tr":"欧蕾黑咖啡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32002":{"name":"咖啡","tr":"咖啡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32003":{"name":"欧蕾咖啡","tr":"欧蕾咖啡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32004":{"name":"法式牛奶咖啡","tr":"法式牛奶咖啡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32005":{"name":"黑巧克力奶","tr":"黑巧克力奶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32006":{"name":"巧克力奶","tr":"巧克力奶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32007":{"name":"茶","tr":"茶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32008":{"name":"甜茶","tr":"甜茶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32009":{"name":"冰红茶","tr":"冰红茶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32010":{"name":"胶凝甲苯","tr":"胶凝甲苯","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23829":{"oreDict":["springSmallDeepIron"],"name":"小型深渊铁弹簧","tr":"小型深渊铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23856":{"oreDict":["springSmallSiliconSolarGrade"],"name":"小型太阳能级硅(多晶硅)弹簧","tr":"小型太阳能级硅(多晶硅)弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19770":{"oreDict":["wireFineHeeEndium"],"name":"细终末锭导线","tr":"细终末锭导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23868":{"oreDict":["springSmallTrinium"],"name":"小型三元金属弹簧","tr":"小型三元金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23874":{"oreDict":["springSmallPlastic"],"name":"小型聚乙烯弹簧","tr":"小型聚乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23880":{"oreDict":["springSmallRubber"," springSmallAnyRubber"],"name":"小型橡胶弹簧","tr":"小型橡胶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23884":{"oreDict":["springSmallDesh"],"name":"小型戴斯弹簧","tr":"小型戴斯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32100":{"name":"紫色饮料","tr":"紫色饮料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32101":{"name":"葡萄汁","tr":"葡萄汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32102":{"name":"葡萄酒","tr":"葡萄酒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32103":{"name":"醋","tr":"醋","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23912":{"oreDict":["springSmallChrysotile"],"name":"小型石棉弹簧","tr":"小型石棉弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32104":{"name":"土豆汁","tr":"土豆汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23913":{"oreDict":["springSmallRealgar"],"name":"小型雄黄弹簧","tr":"小型雄黄弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32105":{"name":"伏特加","tr":"伏特加","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32106":{"name":"列宁柠檬汁","tr":"列宁柠檬汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32107":{"name":"矿泉水","tr":"矿泉水","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32109":{"name":"甘蔗水","tr":"甘蔗水","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32110":{"name":"朗姆酒","tr":"朗姆酒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32111":{"name":"海盗之酿","tr":"海盗之酿","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32112":{"name":"啤酒花汁","tr":"啤酒花汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32113":{"name":"黑啤","tr":"黑啤","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32114":{"name":"龙血","tr":"龙血","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32115":{"name":"小麦汁","tr":"小麦汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32116":{"name":"苏格兰威士忌","tr":"苏格兰威士忌","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19829":{"oreDict":["wireFineDeepIron"],"name":"细深渊铁导线","tr":"细深渊铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32117":{"name":"格伦·麦肯纳","tr":"格伦·麦肯纳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32118":{"name":"小麦啤酒花汁","tr":"小麦啤酒花汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32119":{"name":"啤酒","tr":"啤酒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32120":{"name":"辣酱","tr":"辣酱","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32121":{"name":"红辣酱","tr":"红辣酱","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32122":{"name":"恶魔辣酱","tr":"恶魔辣酱","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32123":{"name":"恐惧辣酱","tr":"恐惧辣酱","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32125":{"name":"苹果汁","tr":"苹果汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32126":{"name":"苹果酒","tr":"苹果酒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32127":{"name":"金苹果汁","tr":"金苹果汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32128":{"name":"金苹果酒","tr":"金苹果酒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32129":{"name":"青春苹果汁","tr":"青春苹果汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32130":{"name":"附魔金苹果之酿","tr":"附魔金苹果之酿","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32131":{"name":"柠檬汁","tr":"柠檬汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32132":{"name":"意大利柠檬甜酒","tr":"意大利柠檬甜酒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32133":{"name":"柠檬汽水","tr":"柠檬汽水","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32134":{"name":"波普甜酒","tr":"波普甜酒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32135":{"name":"约翰逊的炸弹柠檬汁","tr":"约翰逊的炸弹柠檬汁","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32136":{"oreDict":["bottleMilk"],"name":"牛奶","tr":"牛奶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32137":{"oreDict":["bottleHolyWater"],"name":"圣水","tr":"圣水","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23951":{"oreDict":["springSmallVyroxeres"],"name":"小型幽冥剧毒结晶弹簧","tr":"小型幽冥剧毒结晶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23952":{"oreDict":["springSmallCeruclase"],"name":"小型暗影秘银弹簧","tr":"小型暗影秘银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23956":{"oreDict":["springSmallTartarite"],"name":"小型溶火之石弹簧","tr":"小型溶火之石弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19868":{"oreDict":["wireFineTrinium"],"name":"细三元金属导线","tr":"细三元金属导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23966":{"oreDict":["springSmallOrichalcum"],"name":"小型山铜弹簧","tr":"小型山铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23970":{"oreDict":["springSmallVoid"],"name":"小型虚空锭弹簧","tr":"小型虚空锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23974":{"oreDict":["springSmallSuperconductorUEVBase"],"name":"小型UEV超导粗胚弹簧","tr":"小型UEV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23975":{"oreDict":["springSmallDraconium"],"name":"小型龙锭弹簧","tr":"小型龙锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23976":{"oreDict":["springSmallDraconiumAwakened"],"name":"小型觉醒龙锭弹簧","tr":"小型觉醒龙锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23977":{"oreDict":["springSmallBloodInfusedIron"],"name":"小型注血铁弹簧","tr":"小型注血铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23978":{"oreDict":["springSmallIchorium"],"name":"小型灵宝弹簧","tr":"小型灵宝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23979":{"oreDict":["springSmallRadoxPoly"],"name":"小型拉多X聚合物弹簧","tr":"小型拉多X聚合物弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19884":{"oreDict":["wireFineDesh"],"name":"细戴斯导线","tr":"细戴斯导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23980":{"oreDict":["springSmallGalliumArsenide"],"name":"小型砷化镓弹簧","tr":"小型砷化镓弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23981":{"oreDict":["springSmallIndiumGalliumPhosphide"],"name":"小型磷化铟镓弹簧","tr":"小型磷化铟镓弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23982":{"oreDict":["springSmallCosmicNeutronium"],"name":"小型宇宙中子态素弹簧","tr":"小型宇宙中子态素弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23984":{"oreDict":["springSmallFlerovium_GT5U"],"name":"小型弹簧","tr":"小型弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23985":{"oreDict":["springSmallLongasssuperconductornameforuhvwire"],"name":"小型UHV超导粗胚弹簧","tr":"小型UHV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23986":{"oreDict":["springSmallLongasssuperconductornameforuvwire"],"name":"小型UV超导粗胚弹簧","tr":"小型UV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23987":{"oreDict":["springSmallPentacadmiummagnesiumhexaoxid"],"name":"小型MV超导粗胚弹簧","tr":"小型MV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23988":{"oreDict":["springSmallTitaniumonabariumdecacoppereikosaoxid"],"name":"小型HV超导粗胚弹簧","tr":"小型HV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23989":{"oreDict":["springSmallUraniumtriplatinid"],"name":"小型EV超导粗胚弹簧","tr":"小型EV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23990":{"oreDict":["springSmallVanadiumtriindinid"],"name":"小型IV超导粗胚弹簧","tr":"小型IV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23991":{"oreDict":["springSmallTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"小型LuV超导粗胚弹簧","tr":"小型LuV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23992":{"oreDict":["springSmallTetranaquadahdiindiumhexaplatiumosminid"],"name":"小型ZPM超导粗胚弹簧","tr":"小型ZPM超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24006":{"oreDict":["springLithium"],"name":"锂弹簧","tr":"锂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19912":{"oreDict":["wireFineChrysotile"],"name":"细石棉导线","tr":"细石棉导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24008":{"oreDict":["springBeryllium"],"name":"铍弹簧","tr":"铍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32200":{"name":"土豆串","tr":"土豆串","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19913":{"oreDict":["wireFineRealgar"],"name":"细雄黄导线","tr":"细雄黄导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32201":{"name":"烤土豆串","tr":"烤土豆串","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24010":{"oreDict":["springCarbon"],"name":"碳弹簧","tr":"碳弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32202":{"name":"土豆条","tr":"土豆条","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"32203":{"name":"薯条","tr":"薯条","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"32204":{"name":"薯条","tr":"薯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32205":{"name":"土豆片(生)","tr":"土豆片(生)","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"32206":{"name":"薯片","tr":"薯片","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"32207":{"name":"辣薯片","tr":"辣薯片","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"32208":{"name":"袋装薯片","tr":"袋装薯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32209":{"name":"袋装辣薯片","tr":"袋装辣薯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24018":{"oreDict":["springMagnesium"],"name":"镁弹簧","tr":"镁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32210":{"name":"海之霸肉块","tr":"海之霸肉块","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24019":{"oreDict":["springAluminium"],"name":"铝弹簧","tr":"铝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32211":{"name":"海之霸肉串","tr":"海之霸肉串","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24020":{"oreDict":["springSilicon"],"name":"硅弹簧","tr":"硅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32212":{"name":"甜面团","tr":"甜面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32213":{"name":"巧克力面团","tr":"巧克力面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32214":{"name":"曲奇形的面团","tr":"曲奇形的面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24025":{"oreDict":["springPotassium"],"name":"钾弹簧","tr":"钾弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24027":{"oreDict":["springScandium"],"name":"钪弹簧","tr":"钪弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24028":{"oreDict":["springTitanium"],"name":"钛弹簧","tr":"钛弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32220":{"name":"小圆面包","tr":"小圆面包","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24029":{"oreDict":["springVanadium"],"name":"钒弹簧","tr":"钒弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32221":{"name":"蔬菜汉堡","tr":"蔬菜汉堡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24030":{"oreDict":["springChrome"],"name":"铬弹簧","tr":"铬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32222":{"name":"奶酪汉堡","tr":"奶酪汉堡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24031":{"oreDict":["springManganese"],"name":"锰弹簧","tr":"锰弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32223":{"name":"汉堡包","tr":"汉堡包","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24032":{"oreDict":["springIron"," springAnyIron"],"name":"铁弹簧","tr":"铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32224":{"name":"海之堡","tr":"海之堡","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24033":{"oreDict":["springCobalt"],"name":"钴弹簧","tr":"钴弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24034":{"oreDict":["springNickel"],"name":"镍弹簧","tr":"镍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24035":{"oreDict":["springCopper"," springAnyCopper"],"name":"铜弹簧","tr":"铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24036":{"oreDict":["springZinc"],"name":"锌弹簧","tr":"锌弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24037":{"oreDict":["springGallium"],"name":"镓弹簧","tr":"镓弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32230":{"name":"面包","tr":"面包","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24039":{"oreDict":["springArsenic"],"name":"砷弹簧","tr":"砷弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32231":{"name":"蔬菜三明治","tr":"蔬菜三明治","tab":"材料","type":"Item","maxStackSize":32,"maxDurability":1},"32232":{"name":"奶酪三明治","tr":"奶酪三明治","tab":"材料","type":"Item","maxStackSize":32,"maxDurability":1},"32233":{"name":"培根三明治","tr":"培根三明治","tab":"材料","type":"Item","maxStackSize":32,"maxDurability":1},"32234":{"name":"牛排三明治","tr":"牛排三明治","tab":"材料","type":"Item","maxStackSize":32,"maxDurability":1},"24043":{"oreDict":["springRubidium"],"name":"铷弹簧","tr":"铷弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24045":{"oreDict":["springYttrium"],"name":"钇弹簧","tr":"钇弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19951":{"oreDict":["wireFineVyroxeres"],"name":"细幽冥剧毒结晶导线","tr":"细幽冥剧毒结晶导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24047":{"oreDict":["springNiobium"],"name":"铌弹簧","tr":"铌弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19952":{"oreDict":["wireFineCeruclase"],"name":"细暗影秘银导线","tr":"细暗影秘银导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24048":{"oreDict":["springMolybdenum"],"name":"钼弹簧","tr":"钼弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32240":{"name":"法棍","tr":"法棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32241":{"name":"大蔬菜三明治","tr":"大蔬菜三明治","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"32242":{"name":"大奶酪三明治","tr":"大奶酪三明治","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"32243":{"name":"大培根三明治","tr":"大培根三明治","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"19956":{"oreDict":["wireFineTartarite"],"name":"细溶火之石导线","tr":"细溶火之石导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24052":{"oreDict":["springPalladium"],"name":"钯弹簧","tr":"钯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32244":{"name":"大牛排三明治","tr":"大牛排三明治","tab":"材料","type":"Item","maxStackSize":16,"maxDurability":1},"24054":{"oreDict":["springSilver"],"name":"银弹簧","tr":"银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24056":{"oreDict":["springIndium"],"name":"铟弹簧","tr":"铟弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24057":{"oreDict":["springTin"],"name":"锡弹簧","tr":"锡弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24058":{"oreDict":["springAntimony"],"name":"锑弹簧","tr":"锑弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32250":{"name":"生蔬菜披萨","tr":"生蔬菜披萨","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24059":{"oreDict":["springTellurium"],"name":"碲弹簧","tr":"碲弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32251":{"name":"生奶酪披萨","tr":"生奶酪披萨","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32252":{"name":"生肉末披萨","tr":"生肉末披萨","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19966":{"oreDict":["wireFineOrichalcum"],"name":"细山铜导线","tr":"细山铜导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24062":{"oreDict":["springCaesium"],"name":"铯弹簧","tr":"铯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24063":{"oreDict":["springBarium"],"name":"钡弹簧","tr":"钡弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24064":{"oreDict":["springLanthanum"],"name":"镧弹簧","tr":"镧弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24065":{"oreDict":["springCerium"],"name":"铈弹簧","tr":"铈弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19970":{"oreDict":["wireFineVoid"],"name":"细虚空锭导线","tr":"细虚空锭导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24066":{"oreDict":["springPraseodymium"],"name":"镨弹簧","tr":"镨弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24067":{"oreDict":["springNeodymium"],"name":"钕弹簧","tr":"钕弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24068":{"oreDict":["springPromethium"],"name":"钷弹簧","tr":"钷弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32260":{"name":"蔬菜披萨","tr":"蔬菜披萨","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24069":{"oreDict":["springSamarium"],"name":"钐弹簧","tr":"钐弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32261":{"name":"奶酪披萨","tr":"奶酪披萨","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19974":{"oreDict":["wireFineSuperconductorUEVBase"],"name":"细UEV超导粗胚导线","tr":"细UEV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24070":{"oreDict":["springEuropium"],"name":"铕弹簧","tr":"铕弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32262":{"name":"肉末披萨","tr":"肉末披萨","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19975":{"oreDict":["wireFineDraconium"],"name":"细龙锭导线","tr":"细龙锭导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24071":{"oreDict":["springGadolinium"],"name":"钆弹簧","tr":"钆弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19976":{"oreDict":["wireFineDraconiumAwakened"],"name":"细觉醒龙锭导线","tr":"细觉醒龙锭导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24072":{"oreDict":["springTerbium"],"name":"铽弹簧","tr":"铽弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19977":{"oreDict":["wireFineBloodInfusedIron"],"name":"细注血铁导线","tr":"细注血铁导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24073":{"oreDict":["springDysprosium"],"name":"镝弹簧","tr":"镝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19978":{"oreDict":["wireFineIchorium"],"name":"细灵宝导线","tr":"细灵宝导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24074":{"oreDict":["springHolmium"],"name":"钬弹簧","tr":"钬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24075":{"oreDict":["springErbium"],"name":"铒弹簧","tr":"铒弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24076":{"oreDict":["springThulium"],"name":"铥弹簧","tr":"铥弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24077":{"oreDict":["springYtterbium"],"name":"镱弹簧","tr":"镱弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19982":{"oreDict":["wireFineCosmicNeutronium"],"name":"细宇宙中子态素导线","tr":"细宇宙中子态素导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24078":{"oreDict":["springLutetium"],"name":"镥弹簧","tr":"镥弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32270":{"name":"超级燃料粘合剂","tr":"超级燃料粘合剂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32271":{"name":"魔法超级燃料粘合剂","tr":"魔法超级燃料粘合剂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19984":{"oreDict":["wireFineFlerovium_GT5U"],"name":"细导线","tr":"细导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24080":{"oreDict":["springTantalum"],"name":"钽弹簧","tr":"钽弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19985":{"oreDict":["wireFineLongasssuperconductornameforuhvwire"],"name":"细UHV超导粗胚导线","tr":"细UHV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24081":{"oreDict":["springTungsten"],"name":"钨弹簧","tr":"钨弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19986":{"oreDict":["wireFineLongasssuperconductornameforuvwire"],"name":"细UV超导粗胚导线","tr":"细UV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19987":{"oreDict":["wireFinePentacadmiummagnesiumhexaoxid"],"name":"细MV超导粗胚导线","tr":"细MV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24083":{"oreDict":["springOsmium"],"name":"锇弹簧","tr":"锇弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19988":{"oreDict":["wireFineTitaniumonabariumdecacoppereikosaoxid"],"name":"细HV超导粗胚导线","tr":"细HV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24084":{"oreDict":["springIridium"],"name":"铱弹簧","tr":"铱弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19989":{"oreDict":["wireFineUraniumtriplatinid"],"name":"细EV超导粗胚导线","tr":"细EV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24085":{"oreDict":["springPlatinum"],"name":"铂弹簧","tr":"铂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19990":{"oreDict":["wireFineVanadiumtriindinid"],"name":"细IV超导粗胚导线","tr":"细IV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24086":{"oreDict":["springGold"],"name":"金弹簧","tr":"金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19991":{"oreDict":["wireFineTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"细LuV超导粗胚导线","tr":"细LuV超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19992":{"oreDict":["wireFineTetranaquadahdiindiumhexaplatiumosminid"],"name":"细ZPM超导粗胚导线","tr":"细ZPM超导粗胚导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24089":{"oreDict":["springLead"],"name":"铅弹簧","tr":"铅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24090":{"oreDict":["springBismuth"],"name":"铋弹簧","tr":"铋弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24096":{"oreDict":["springThorium"],"name":"钍弹簧","tr":"钍弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24097":{"oreDict":["springUranium235"],"name":"铀-235弹簧","tr":"铀-235弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24098":{"oreDict":["springUranium"],"name":"铀-238弹簧","tr":"铀-238弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24100":{"oreDict":["springPlutonium"],"name":"钚-239弹簧","tr":"钚-239弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24101":{"oreDict":["springPlutonium241"],"name":"钚-241弹簧","tr":"钚-241弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24103":{"oreDict":["springAmericium"],"name":"镅弹簧","tr":"镅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20010":{"oreDict":["gearGtSmallCarbon"],"name":"小型碳齿轮","tr":"小型碳齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24111":{"oreDict":["springTengamPurified"],"name":"纯镃弹簧","tr":"纯镃弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24112":{"oreDict":["springTengamAttuned"],"name":"谐镃弹簧","tr":"谐镃弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28208":{"oreDict":["gemFlawedManaDiamond"],"name":"有瑕的魔力钻石","tr":"有瑕的魔力钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28209":{"oreDict":["gemFlawedBotaniaDragonstone"],"name":"有瑕的龙石","tr":"有瑕的龙石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20019":{"oreDict":["gearGtSmallAluminium"],"name":"小型铝齿轮","tr":"小型铝齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20028":{"oreDict":["gearGtSmallTitanium"],"name":"小型钛齿轮","tr":"小型钛齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20030":{"oreDict":["gearGtSmallChrome"],"name":"小型铬齿轮","tr":"小型铬齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20032":{"oreDict":["gearGtSmallIron"," gearGtSmallAnyIron"],"name":"小型铁齿轮","tr":"小型铁齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20033":{"oreDict":["gearGtSmallCobalt"],"name":"小型钴齿轮","tr":"小型钴齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24129":{"oreDict":["springNeutronium"],"name":"中子弹簧","tr":"中子弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20034":{"oreDict":["gearGtSmallNickel"],"name":"小型镍齿轮","tr":"小型镍齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20035":{"oreDict":["gearGtSmallCopper"," gearGtSmallAnyCopper"],"name":"小型铜齿轮","tr":"小型铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24131":{"oreDict":["springSuperconductorUIVBase"],"name":"UIV超导粗胚弹簧","tr":"UIV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24134":{"oreDict":["springSuperconductorUMVBase"],"name":"UMV超导粗胚弹簧","tr":"UMV超导粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24139":{"oreDict":["springUniversium"],"name":"宇宙素弹簧","tr":"宇宙素弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24141":{"oreDict":["springEternity"],"name":"永恒弹簧","tr":"永恒弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24143":{"oreDict":["springMagmatter"],"name":"磁物质弹簧","tr":"磁物质弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20052":{"oreDict":["gearGtSmallPalladium"],"name":"小型钯齿轮","tr":"小型钯齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20054":{"oreDict":["gearGtSmallSilver"],"name":"小型银齿轮","tr":"小型银齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20057":{"oreDict":["gearGtSmallTin"],"name":"小型锡齿轮","tr":"小型锡齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20067":{"oreDict":["gearGtSmallNeodymium"],"name":"小型钕齿轮","tr":"小型钕齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20081":{"oreDict":["gearGtSmallTungsten"],"name":"小型钨齿轮","tr":"小型钨齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20083":{"oreDict":["gearGtSmallOsmium"],"name":"小型锇齿轮","tr":"小型锇齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20084":{"oreDict":["gearGtSmallIridium"],"name":"小型铱齿轮","tr":"小型铱齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20085":{"oreDict":["gearGtSmallPlatinum"],"name":"小型铂齿轮","tr":"小型铂齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20086":{"oreDict":["gearGtSmallGold"],"name":"小型金齿轮","tr":"小型金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20089":{"oreDict":["gearGtSmallLead"],"name":"小型铅齿轮","tr":"小型铅齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20090":{"oreDict":["gearGtSmallBismuth"],"name":"小型铋齿轮","tr":"小型铋齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16008":{"oreDict":["turbineBladeBeryllium"],"name":"铍涡轮扇叶","tr":"铍涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24201":{"oreDict":["springManasteel"],"name":"魔钢弹簧","tr":"魔钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16010":{"oreDict":["turbineBladeCarbon"],"name":"碳涡轮扇叶","tr":"碳涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24202":{"oreDict":["springTerrasteel"],"name":"泰拉钢弹簧","tr":"泰拉钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24203":{"oreDict":["springElvenElementium"],"name":"源质钢弹簧","tr":"源质钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24205":{"oreDict":["springGaiaSpirit"],"name":"盖亚之魂弹簧","tr":"盖亚之魂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20111":{"oreDict":["gearGtSmallTengamPurified"],"name":"小型纯镃齿轮","tr":"小型纯镃齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20112":{"oreDict":["gearGtSmallTengamAttuned"],"name":"小型谐镃齿轮","tr":"小型谐镃齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16019":{"oreDict":["turbineBladeAluminium"],"name":"铝涡轮扇叶","tr":"铝涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32410":{"oreDict":["dyeBlue"," dye"],"name":"靛蓝染料","tr":"靛蓝染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16028":{"oreDict":["turbineBladeTitanium"],"name":"钛涡轮扇叶","tr":"钛涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16030":{"oreDict":["turbineBladeChrome"],"name":"铬涡轮扇叶","tr":"铬涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32414":{"oreDict":["dyeBlack"," dye"],"name":"黑色染料","tr":"黑色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16031":{"oreDict":["turbineBladeManganese"],"name":"锰涡轮扇叶","tr":"锰涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32415":{"oreDict":["dyeRed"," dye"],"name":"红色染料","tr":"红色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16032":{"oreDict":["turbineBladeIron"," turbineBladeAnyIron"],"name":"铁涡轮扇叶","tr":"铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32416":{"oreDict":["dyeGreen"," dye"],"name":"绿色染料","tr":"绿色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16033":{"oreDict":["turbineBladeCobalt"],"name":"钴涡轮扇叶","tr":"钴涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20129":{"oreDict":["gearGtSmallNeutronium"],"name":"小型中子齿轮","tr":"小型中子齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32417":{"oreDict":["dyeBrown"," dye"],"name":"棕色染料","tr":"棕色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16034":{"oreDict":["turbineBladeNickel"],"name":"镍涡轮扇叶","tr":"镍涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32418":{"oreDict":["dyeBlue"," dye"],"name":"蓝色染料","tr":"蓝色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32419":{"oreDict":["dyePurple"," dye"],"name":"紫色染料","tr":"紫色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32420":{"oreDict":["dyeCyan"," dye"],"name":"青色染料","tr":"青色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32421":{"oreDict":["dyeLightGray"," dye"],"name":"淡灰色染料","tr":"淡灰色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32422":{"oreDict":["dyeGray"," dye"],"name":"灰色染料","tr":"灰色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32423":{"oreDict":["dyePink"," dye"],"name":"粉色染料","tr":"粉色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32424":{"oreDict":["dye"," dyeLime"],"name":"黄绿色染料","tr":"黄绿色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32425":{"oreDict":["dyeYellow"," dye"],"name":"黄色染料","tr":"黄色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32426":{"oreDict":["dyeLightBlue"," dye"],"name":"淡蓝色染料","tr":"淡蓝色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20139":{"oreDict":["gearGtSmallUniversium"],"name":"小型宇宙素齿轮","tr":"小型宇宙素齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32427":{"oreDict":["dyeMagenta"," dye"],"name":"品红色染料","tr":"品红色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32428":{"oreDict":["dyeOrange"," dye"],"name":"橙色染料","tr":"橙色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20141":{"oreDict":["gearGtSmallEternity"],"name":"小型永恒齿轮","tr":"小型永恒齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32429":{"oreDict":["dyeWhite"," dye"],"name":"白色染料","tr":"白色染料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20143":{"oreDict":["gearGtSmallMagmatter"],"name":"小型磁物质齿轮","tr":"小型磁物质齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16048":{"oreDict":["turbineBladeMolybdenum"],"name":"钼涡轮扇叶","tr":"钼涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16052":{"oreDict":["turbineBladePalladium"],"name":"钯涡轮扇叶","tr":"钯涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16054":{"oreDict":["turbineBladeSilver"],"name":"银涡轮扇叶","tr":"银涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16067":{"oreDict":["turbineBladeNeodymium"],"name":"钕涡轮扇叶","tr":"钕涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16081":{"oreDict":["turbineBladeTungsten"],"name":"钨涡轮扇叶","tr":"钨涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16083":{"oreDict":["turbineBladeOsmium"],"name":"锇涡轮扇叶","tr":"锇涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16084":{"oreDict":["turbineBladeIridium"],"name":"铱涡轮扇叶","tr":"铱涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16085":{"oreDict":["turbineBladePlatinum"],"name":"铂涡轮扇叶","tr":"铂涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16086":{"oreDict":["turbineBladeGold"],"name":"金涡轮扇叶","tr":"金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32470":{"name":"橡木木板","tr":"橡木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32471":{"name":"云杉木木板","tr":"云杉木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32472":{"name":"白桦木木板","tr":"白桦木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16089":{"oreDict":["turbineBladeLead"],"name":"铅涡轮扇叶","tr":"铅涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32473":{"name":"丛林木木板","tr":"丛林木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16090":{"oreDict":["turbineBladeBismuth"],"name":"铋涡轮扇叶","tr":"铋涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32474":{"name":"金合欢木木板","tr":"金合欢木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32475":{"name":"深色橡树木木板","tr":"深色橡树木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32476":{"name":"落叶松木木板","tr":"落叶松木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32477":{"name":"柚木木木板","tr":"柚木木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32478":{"name":"刺槐木木板","tr":"刺槐木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32479":{"name":"酸橙木木板","tr":"酸橙木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16096":{"oreDict":["turbineBladeThorium"],"name":"钍涡轮扇叶","tr":"钍涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32480":{"name":"栗树木木板","tr":"栗树木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16097":{"oreDict":["turbineBladeUranium235"],"name":"铀-235涡轮扇叶","tr":"铀-235涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32481":{"name":"崖豆木木板","tr":"崖豆木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16098":{"oreDict":["turbineBladeUranium"],"name":"铀-238涡轮扇叶","tr":"铀-238涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32482":{"name":"猴面包树木板","tr":"猴面包树木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32483":{"name":"红杉木木板","tr":"红杉木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16100":{"oreDict":["turbineBladePlutonium"],"name":"钚-239涡轮扇叶","tr":"钚-239涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32484":{"name":"木棉木木板","tr":"木棉木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16101":{"oreDict":["turbineBladePlutonium241"],"name":"钚-241涡轮扇叶","tr":"钚-241涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32485":{"name":"乌檀木木板","tr":"乌檀木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32486":{"name":"桃花心木木板","tr":"桃花心木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32487":{"name":"巴尔杉木木板","tr":"巴尔杉木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32488":{"name":"柳树木木板","tr":"柳树木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20201":{"oreDict":["gearGtSmallManasteel"],"name":"小型魔钢齿轮","tr":"小型魔钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32489":{"name":"核桃木木板","tr":"核桃木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20202":{"oreDict":["gearGtSmallTerrasteel"],"name":"小型泰拉钢齿轮","tr":"小型泰拉钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32490":{"name":"绿樟木木板","tr":"绿樟木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20203":{"oreDict":["gearGtSmallElvenElementium"],"name":"小型源质钢齿轮","tr":"小型源质钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32491":{"name":"樱桃木木板","tr":"樱桃木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20204":{"oreDict":["gearGtSmallLivingrock"],"name":"小型活石齿轮","tr":"小型活石齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24300":{"oreDict":["springBronze"," springAnyBronze"],"name":"青铜弹簧","tr":"青铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32492":{"name":"高槿木木板","tr":"高槿木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20205":{"oreDict":["gearGtSmallGaiaSpirit"],"name":"小型盖亚之魂齿轮","tr":"小型盖亚之魂齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24301":{"oreDict":["springBrass"],"name":"黄铜弹簧","tr":"黄铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32493":{"name":"杨树木木板","tr":"杨树木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20206":{"oreDict":["gearGtSmallLivingwood"],"name":"小型活木齿轮","tr":"小型活木齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24302":{"oreDict":["springInvar"],"name":"殷钢弹簧","tr":"殷钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32494":{"name":"棕榈木木板","tr":"棕榈木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16111":{"oreDict":["turbineBladeTengamPurified"],"name":"纯镃涡轮扇叶","tr":"纯镃涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20207":{"oreDict":["gearGtSmallDreamwood"],"name":"小型梦之木齿轮","tr":"小型梦之木齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24303":{"oreDict":["springElectrum"],"name":"琥珀金弹簧","tr":"琥珀金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32495":{"name":"番木瓜木木板","tr":"番木瓜木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16112":{"oreDict":["turbineBladeTengamAttuned"],"name":"谐镃涡轮扇叶","tr":"谐镃涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24304":{"oreDict":["springAnyIron"," springWroughtIron"],"name":"锻铁弹簧","tr":"锻铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32496":{"name":"松木木板","tr":"松木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24305":{"oreDict":["springSteel"],"name":"钢弹簧","tr":"钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32497":{"name":"李子木木板","tr":"李子木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24306":{"oreDict":["springStainlessSteel"],"name":"不锈钢弹簧","tr":"不锈钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32498":{"name":"枫木木板","tr":"枫木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24307":{"oreDict":["springAnyIron"," springPigIron"],"name":"生铁弹簧","tr":"生铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32499":{"name":"柠檬木木板","tr":"柠檬木木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24308":{"oreDict":["springRedAlloy"],"name":"红色合金弹簧","tr":"红色合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32500":{"name":"铅叶子","tr":"铅叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24309":{"oreDict":["springBlueAlloy"],"name":"蓝色合金弹簧","tr":"蓝色合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32501":{"name":"银叶子","tr":"银叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24310":{"oreDict":["springCupronickel"],"name":"白铜弹簧","tr":"白铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32502":{"name":"靛蓝花","tr":"靛蓝花","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24311":{"oreDict":["springNichrome"],"name":"镍铬弹簧","tr":"镍铬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32503":{"name":"铁叶子","tr":"铁叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24312":{"oreDict":["springKanthal"],"name":"坎塔尔合金弹簧","tr":"坎塔尔合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32504":{"name":"金叶子","tr":"金叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24313":{"oreDict":["springMagnalium"],"name":"镁铝合金弹簧","tr":"镁铝合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32505":{"oreDict":["cropTea"],"name":"茶叶","tr":"茶叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24314":{"oreDict":["springSolderingAlloy"],"name":"焊锡弹簧","tr":"焊锡弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24315":{"oreDict":["springBatteryAlloy"],"name":"电池合金弹簧","tr":"电池合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24316":{"oreDict":["springTungstenSteel"],"name":"钨钢弹簧","tr":"钨钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24317":{"oreDict":["springOsmiridium"],"name":"铱锇合金弹簧","tr":"铱锇合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24318":{"oreDict":["springSunnarium"],"name":"阳光化合物弹簧","tr":"阳光化合物弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32510":{"name":"石油浆果","tr":"石油浆果","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24319":{"oreDict":["springAdamantium"],"name":"精金弹簧","tr":"精金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32511":{"name":"Bobs-Yer-Uncle浆果","tr":"Bobs-Yer-Uncle浆果","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24320":{"oreDict":["springElectrumFlux"],"name":"通流琥珀金弹簧","tr":"通流琥珀金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32512":{"name":"UUM浆果","tr":"UUM浆果","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16129":{"oreDict":["turbineBladeNeutronium"],"name":"中子涡轮扇叶","tr":"中子涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24321":{"oreDict":["springEnderium"],"name":"末影锭弹簧","tr":"末影锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32513":{"name":"UUA浆果","tr":"UUA浆果","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24323":{"oreDict":["springInfusedGold"],"name":"注魔金弹簧","tr":"注魔金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24324":{"oreDict":["springNaquadah"],"name":"硅岩弹簧","tr":"硅岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24325":{"oreDict":["springNaquadahAlloy"],"name":"硅岩合金弹簧","tr":"硅岩合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24326":{"oreDict":["springNaquadahEnriched"],"name":"富集硅岩弹簧","tr":"富集硅岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24327":{"oreDict":["springNaquadria"],"name":"超能硅岩弹簧","tr":"超能硅岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24328":{"oreDict":["springDuranium"],"name":"铿铀弹簧","tr":"铿铀弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32520":{"name":"牛奶疣","tr":"牛奶疣","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24329":{"oreDict":["springTritanium"],"name":"三钛弹簧","tr":"三钛弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32521":{"name":"铝土叶子","tr":"铝土叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24330":{"oreDict":["springThaumium"],"name":"神秘锭弹簧","tr":"神秘锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32522":{"name":"钛叶子","tr":"钛叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16139":{"oreDict":["turbineBladeUniversium"],"name":"宇宙素涡轮扇叶","tr":"宇宙素涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24331":{"oreDict":["springMithril"],"name":"秘银弹簧","tr":"秘银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32523":{"name":"核能叶子","tr":"核能叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32524":{"name":"铀叶子","tr":"铀叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16141":{"oreDict":["turbineBladeEternity"],"name":"永恒涡轮扇叶","tr":"永恒涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24333":{"oreDict":["springAstralSilver"],"name":"星辰银弹簧","tr":"星辰银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24334":{"oreDict":["springBlackSteel"],"name":"黑钢弹簧","tr":"黑钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32526":{"name":"雷神之叶","tr":"雷神之叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16143":{"oreDict":["turbineBladeMagmatter"],"name":"磁物质涡轮扇叶","tr":"磁物质涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24335":{"oreDict":["springDamascusSteel"],"name":"大马士革钢弹簧","tr":"大马士革钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32527":{"name":"镍叶子","tr":"镍叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24336":{"oreDict":["springShadowIron"],"name":"暗影铁弹簧","tr":"暗影铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32528":{"name":"锌叶子","tr":"锌叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24337":{"oreDict":["springShadowSteel"],"name":"暗影钢弹簧","tr":"暗影钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32529":{"name":"锰叶子","tr":"锰叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24338":{"oreDict":["springIronWood"],"name":"铁木弹簧","tr":"铁木弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32530":{"name":"铜纤维","tr":"铜纤维","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24339":{"oreDict":["springSteeleaf"],"name":"钢叶弹簧","tr":"钢叶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32531":{"name":"钨叶子","tr":"钨叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24340":{"oreDict":["springMeteoricIron"],"name":"陨铁弹簧","tr":"陨铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32532":{"name":"铂叶子","tr":"铂叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24341":{"oreDict":["springMeteoricSteel"],"name":"陨钢弹簧","tr":"陨钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32533":{"name":"量子叶子","tr":"量子叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24342":{"oreDict":["springDarkIron"],"name":"玄铁弹簧","tr":"玄铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32534":{"name":"量子叶子","tr":"量子叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24343":{"oreDict":["springCobaltBrass"],"name":"钴黄铜弹簧","tr":"钴黄铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32535":{"name":"硅岩叶子","tr":"硅岩叶子","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24344":{"oreDict":["springUltimet"],"name":"哈氏合金弹簧","tr":"哈氏合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24345":{"oreDict":["springAnnealedCopper"," springAnyCopper"],"name":"退火铜弹簧","tr":"退火铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24346":{"oreDict":["springFierySteel"],"name":"炽热钢弹簧","tr":"炽热钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32538":{"name":"云母嫩枝","tr":"云母嫩枝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24348":{"oreDict":["springRedSteel"],"name":"红钢弹簧","tr":"红钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32540":{"name":"锡嫩枝","tr":"锡嫩枝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24349":{"oreDict":["springBlueSteel"],"name":"蓝钢弹簧","tr":"蓝钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24350":{"oreDict":["springSterlingSilver"],"name":"标准纯银弹簧","tr":"标准纯银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24351":{"oreDict":["springRoseGold"],"name":"玫瑰金弹簧","tr":"玫瑰金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24352":{"oreDict":["springBlackBronze"],"name":"黑青铜弹簧","tr":"黑青铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24353":{"oreDict":["springBismuthBronze"],"name":"铋青铜弹簧","tr":"铋青铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24354":{"oreDict":["springIronMagnetic"],"name":"磁化铁弹簧","tr":"磁化铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24355":{"oreDict":["springSteelMagnetic"],"name":"磁化钢弹簧","tr":"磁化钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24356":{"oreDict":["springNeodymiumMagnetic"],"name":"磁化钕弹簧","tr":"磁化钕弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24357":{"oreDict":["springVanadiumGallium"],"name":"钒镓合金弹簧","tr":"钒镓合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24358":{"oreDict":["springYttriumBariumCuprate"],"name":"钇钡铜氧合金弹簧","tr":"钇钡铜氧合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32550":{"oreDict":["cropChilipepper"],"name":"辣椒","tr":"辣椒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24359":{"oreDict":["springNiobiumNitride"],"name":"氮化铌弹簧","tr":"氮化铌弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32551":{"oreDict":["cropLemon"],"name":"柠檬","tr":"柠檬","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24360":{"oreDict":["springNiobiumTitanium"],"name":"铌钛合金弹簧","tr":"铌钛合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32552":{"oreDict":["cropTomato"],"name":"番茄","tr":"番茄","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24361":{"oreDict":["springChromiumDioxide"],"name":"二氧化铬弹簧","tr":"二氧化铬弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32553":{"oreDict":["cropTomato"],"name":"大西红柿","tr":"大西红柿","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24362":{"oreDict":["springKnightmetal"],"name":"骑士金属弹簧","tr":"骑士金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32554":{"oreDict":["cropGrape"],"name":"葡萄","tr":"葡萄","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24363":{"oreDict":["springTinAlloy"],"name":"锡铁合金弹簧","tr":"锡铁合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32555":{"oreDict":["cropOnion"],"name":"洋葱","tr":"洋葱","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24364":{"oreDict":["springDarkSteel"],"name":"玄钢弹簧","tr":"玄钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32556":{"oreDict":["cropCucumber"],"name":"黄瓜","tr":"黄瓜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24365":{"oreDict":["springElectricalSteel"],"name":"磁钢弹簧","tr":"磁钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32557":{"name":"油菜","tr":"油菜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24366":{"oreDict":["springEnergeticAlloy"],"name":"充能合金弹簧","tr":"充能合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32558":{"oreDict":["foodCheese"],"name":"奶酪","tr":"奶酪","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24367":{"oreDict":["springVibrantAlloy"],"name":"脉冲合金弹簧","tr":"脉冲合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32559":{"oreDict":["foodDough"],"name":"面团","tr":"面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24368":{"oreDict":["springShadow"],"name":"暗影弹簧","tr":"暗影弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32560":{"name":"擀平的面团","tr":"擀平的面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24369":{"oreDict":["springConductiveIron"],"name":"导电铁弹簧","tr":"导电铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32561":{"name":"面团","tr":"面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24370":{"oreDict":["springTungstenCarbide"],"name":"碳化钨弹簧","tr":"碳化钨弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32562":{"name":"面团","tr":"面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24371":{"oreDict":["springVanadiumSteel"],"name":"钒钢弹簧","tr":"钒钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32563":{"name":"面团","tr":"面团","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24372":{"oreDict":["springHSSG"],"name":"高速钢-G弹簧","tr":"高速钢-G弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32564":{"name":"小圆面包","tr":"小圆面包","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24373":{"oreDict":["springHSSE"],"name":"高速钢-E弹簧","tr":"高速钢-E弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32565":{"name":"法棍","tr":"法棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24374":{"oreDict":["springHSSS"],"name":"高速钢-S弹簧","tr":"高速钢-S弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32566":{"name":"切片的面包","tr":"切片的面包","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32567":{"name":"切片的小圆面包","tr":"切片的小圆面包","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32568":{"name":"切片的法棍","tr":"切片的法棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32569":{"name":"蛋糕底","tr":"蛋糕底","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24378":{"oreDict":["springPulsatingIron"],"name":"脉冲铁弹簧","tr":"脉冲铁弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32570":{"name":"烤蛋糕底","tr":"烤蛋糕底","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24379":{"oreDict":["springSoularium"],"name":"魂金弹簧","tr":"魂金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32571":{"name":"柠檬片","tr":"柠檬片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24380":{"oreDict":["springEnderiumBase"],"name":"末影粗胚弹簧","tr":"末影粗胚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32572":{"name":"番茄片","tr":"番茄片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24381":{"oreDict":["springRedstoneAlloy"],"name":"红石合金弹簧","tr":"红石合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32573":{"name":"洋葱片","tr":"洋葱片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24382":{"oreDict":["springArdite"],"name":"阿迪特弹簧","tr":"阿迪特弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32574":{"name":"黄瓜片","tr":"黄瓜片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24383":{"oreDict":["springReinforced"],"name":"强化金属弹簧","tr":"强化金属弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24384":{"oreDict":["springGalgadorian"],"name":"混合晶锭弹簧","tr":"混合晶锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32576":{"name":"奶酪片","tr":"奶酪片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24385":{"oreDict":["springEnhancedGalgadorian"],"name":"强化混合晶锭弹簧","tr":"强化混合晶锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32577":{"name":"进阶红石信号发射器(外)","tr":"进阶红石信号发射器(外)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24386":{"oreDict":["springManyullyn"],"name":"玛玉灵弹簧","tr":"玛玉灵弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32578":{"name":"进阶红石信号发射器(内)","tr":"进阶红石信号发射器(内)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24387":{"oreDict":["springMytryl"],"name":"深空秘银弹簧","tr":"深空秘银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32579":{"name":"进阶红石信号接收器(外)","tr":"进阶红石信号接收器(外)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24388":{"oreDict":["springBlackPlutonium"],"name":"黑钚弹簧","tr":"黑钚弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32580":{"name":"进阶红石信号接收器(内)","tr":"进阶红石信号接收器(内)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24389":{"oreDict":["springCallistoIce"],"name":"木卫四冰弹簧","tr":"木卫四冰弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32581":{"name":"无线流体探测覆盖板","tr":"无线流体探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24390":{"oreDict":["springLedox"],"name":"深铅弹簧","tr":"深铅弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32582":{"name":"无线物品探测覆盖板","tr":"无线物品探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24391":{"oreDict":["springQuantium"],"name":"量子锭弹簧","tr":"量子锭弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32583":{"name":"无线维护提示覆盖板","tr":"无线维护提示覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24392":{"oreDict":["springDuralumin"],"name":"硬铝弹簧","tr":"硬铝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32584":{"name":"无线设备活跃探测覆盖板","tr":"无线设备活跃探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16201":{"oreDict":["turbineBladeManasteel"],"name":"魔钢涡轮扇叶","tr":"魔钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24393":{"oreDict":["springOriharukon"],"name":"奥利哈钢弹簧","tr":"奥利哈钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16202":{"oreDict":["turbineBladeTerrasteel"],"name":"泰拉钢涡轮扇叶","tr":"泰拉钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24394":{"oreDict":["springInfinityCatalyst"],"name":"无尽催化剂弹簧","tr":"无尽催化剂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16203":{"oreDict":["turbineBladeElvenElementium"],"name":"源质钢涡轮扇叶","tr":"源质钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20299":{"oreDict":["gearGtSmallStone"],"name":"小型石齿轮","tr":"小型石齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24395":{"oreDict":["springBedrockium"],"name":"基岩弹簧","tr":"基岩弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20300":{"oreDict":["gearGtSmallBronze"," gearGtSmallAnyBronze"],"name":"小型青铜齿轮","tr":"小型青铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16205":{"oreDict":["turbineBladeGaiaSpirit"],"name":"盖亚之魂涡轮扇叶","tr":"盖亚之魂涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20301":{"oreDict":["gearGtSmallBrass"],"name":"小型黄铜齿轮","tr":"小型黄铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24397":{"oreDict":["springInfinity"],"name":"无尽弹簧","tr":"无尽弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20302":{"oreDict":["gearGtSmallInvar"],"name":"小型殷钢齿轮","tr":"小型殷钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24398":{"oreDict":["springMysteriousCrystal"],"name":"神秘水晶弹簧","tr":"神秘水晶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20303":{"oreDict":["gearGtSmallElectrum"],"name":"小型琥珀金齿轮","tr":"小型琥珀金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24399":{"oreDict":["springSamariumMagnetic"],"name":"磁化钐弹簧","tr":"磁化钐弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20304":{"oreDict":["gearGtSmallAnyIron"," gearGtSmallWroughtIron"],"name":"小型锻铁齿轮","tr":"小型锻铁齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24400":{"oreDict":["springAlumite"],"name":"耐酸铝弹簧","tr":"耐酸铝弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20305":{"oreDict":["gearGtSmallSteel"],"name":"小型钢齿轮","tr":"小型钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24401":{"oreDict":["springEndSteel"],"name":"末影钢弹簧","tr":"末影钢弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20306":{"oreDict":["gearGtSmallStainlessSteel"],"name":"小型不锈钢齿轮","tr":"小型不锈钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24402":{"oreDict":["springCrudeSteel"],"name":"复合粘土弹簧","tr":"复合粘土弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24403":{"oreDict":["springCrystallineAlloy"],"name":"晶化合金弹簧","tr":"晶化合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24404":{"oreDict":["springMelodicAlloy"],"name":"旋律合金弹簧","tr":"旋律合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28500":{"oreDict":["gemFlawedDiamond"],"name":"有瑕的钻石","tr":"有瑕的钻石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24405":{"oreDict":["springStellarAlloy"],"name":"恒星合金弹簧","tr":"恒星合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28501":{"oreDict":["gemFlawedEmerald"],"name":"有瑕的绿宝石","tr":"有瑕的绿宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24406":{"oreDict":["springCrystallinePinkSlime"],"name":"晶化粉红史莱姆弹簧","tr":"晶化粉红史莱姆弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28502":{"oreDict":["gemFlawedRuby"],"name":"有瑕的红宝石","tr":"有瑕的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24407":{"oreDict":["springEnergeticSilver"],"name":"充能银弹簧","tr":"充能银弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28503":{"oreDict":["gemFlawedSapphire"],"name":"有瑕的蓝宝石","tr":"有瑕的蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24408":{"oreDict":["springVividAlloy"],"name":"生动合金弹簧","tr":"生动合金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28504":{"oreDict":["gemFlawedGreenSapphire"],"name":"有瑕的绿色蓝宝石","tr":"有瑕的绿色蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20313":{"oreDict":["gearGtSmallMagnalium"],"name":"小型镁铝合金齿轮","tr":"小型镁铝合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28505":{"oreDict":["gemFlawedOlivine"],"name":"有瑕的橄榄石","tr":"有瑕的橄榄石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28507":{"oreDict":["gemFlawedTopaz"],"name":"有瑕的黄玉","tr":"有瑕的黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20316":{"oreDict":["gearGtSmallTungstenSteel"],"name":"小型钨钢齿轮","tr":"小型钨钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28508":{"oreDict":["gemFlawedTanzanite"],"name":"有瑕的坦桑石","tr":"有瑕的坦桑石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20317":{"oreDict":["gearGtSmallOsmiridium"],"name":"小型铱锇合金齿轮","tr":"小型铱锇合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28509":{"oreDict":["gemFlawedAmethyst"],"name":"有瑕的紫水晶","tr":"有瑕的紫水晶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20318":{"oreDict":["gearGtSmallSunnarium"],"name":"小型阳光化合物齿轮","tr":"小型阳光化合物齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28510":{"oreDict":["gemFlawedOpal"],"name":"有瑕的蛋白石","tr":"有瑕的蛋白石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20319":{"oreDict":["gearGtSmallAdamantium"],"name":"小型精金齿轮","tr":"小型精金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28511":{"oreDict":["gemFlawedJasper"],"name":"有瑕的碧玉","tr":"有瑕的碧玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20320":{"oreDict":["gearGtSmallElectrumFlux"],"name":"小型通流琥珀金齿轮","tr":"小型通流琥珀金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28512":{"oreDict":["gemFlawedFoolsRuby"],"name":"有瑕的红宝石","tr":"有瑕的红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20321":{"oreDict":["gearGtSmallEnderium"],"name":"小型末影锭齿轮","tr":"小型末影锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28513":{"oreDict":["gemFlawedBlueTopaz"],"name":"有瑕的蓝黄玉","tr":"有瑕的蓝黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28514":{"oreDict":["gemFlawedAmber"],"name":"有瑕的琥珀","tr":"有瑕的琥珀","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20323":{"oreDict":["gearGtSmallInfusedGold"],"name":"小型注魔金齿轮","tr":"小型注魔金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20324":{"oreDict":["gearGtSmallNaquadah"],"name":"小型硅岩齿轮","tr":"小型硅岩齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20325":{"oreDict":["gearGtSmallNaquadahAlloy"],"name":"小型硅岩合金齿轮","tr":"小型硅岩合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20330":{"oreDict":["gearGtSmallThaumium"],"name":"小型神秘锭齿轮","tr":"小型神秘锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20334":{"oreDict":["gearGtSmallBlackSteel"],"name":"小型黑钢齿轮","tr":"小型黑钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20335":{"oreDict":["gearGtSmallDamascusSteel"],"name":"小型大马士革钢齿轮","tr":"小型大马士革钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28527":{"oreDict":["gemFlawedGarnetRed"],"name":"有瑕的红石榴石","tr":"有瑕的红石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28528":{"oreDict":["gemFlawedGarnetYellow"],"name":"有瑕的黄石榴石","tr":"有瑕的黄石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20338":{"oreDict":["gearGtSmallIronWood"],"name":"小型铁木齿轮","tr":"小型铁木齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20339":{"oreDict":["gearGtSmallSteeleaf"],"name":"小型钢叶齿轮","tr":"小型钢叶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20343":{"oreDict":["gearGtSmallCobaltBrass"],"name":"小型钴黄铜齿轮","tr":"小型钴黄铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20344":{"oreDict":["gearGtSmallUltimet"],"name":"小型哈氏合金齿轮","tr":"小型哈氏合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20345":{"oreDict":["gearGtSmallAnyCopper"," gearGtSmallAnnealedCopper"],"name":"小型退火铜齿轮","tr":"小型退火铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20346":{"oreDict":["gearGtSmallFierySteel"],"name":"小型炽热钢齿轮","tr":"小型炽热钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20348":{"oreDict":["gearGtSmallRedSteel"],"name":"小型红钢齿轮","tr":"小型红钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20349":{"oreDict":["gearGtSmallBlueSteel"],"name":"小型蓝钢齿轮","tr":"小型蓝钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20350":{"oreDict":["gearGtSmallSterlingSilver"],"name":"小型标准纯银齿轮","tr":"小型标准纯银齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20351":{"oreDict":["gearGtSmallRoseGold"],"name":"小型玫瑰金齿轮","tr":"小型玫瑰金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20352":{"oreDict":["gearGtSmallBlackBronze"],"name":"小型黑青铜齿轮","tr":"小型黑青铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20353":{"oreDict":["gearGtSmallBismuthBronze"],"name":"小型铋青铜齿轮","tr":"小型铋青铜齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20354":{"oreDict":["gearGtSmallIronMagnetic"],"name":"小型磁化铁齿轮","tr":"小型磁化铁齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20355":{"oreDict":["gearGtSmallSteelMagnetic"],"name":"小型磁化钢齿轮","tr":"小型磁化钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20356":{"oreDict":["gearGtSmallNeodymiumMagnetic"],"name":"小型磁化钕齿轮","tr":"小型磁化钕齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20357":{"oreDict":["gearGtSmallVanadiumGallium"],"name":"小型钒镓合金齿轮","tr":"小型钒镓合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20362":{"oreDict":["gearGtSmallKnightmetal"],"name":"小型骑士金属齿轮","tr":"小型骑士金属齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20363":{"oreDict":["gearGtSmallTinAlloy"],"name":"小型锡铁合金齿轮","tr":"小型锡铁合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20364":{"oreDict":["gearGtSmallDarkSteel"],"name":"小型玄钢齿轮","tr":"小型玄钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20365":{"oreDict":["gearGtSmallElectricalSteel"],"name":"小型磁钢齿轮","tr":"小型磁钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20366":{"oreDict":["gearGtSmallEnergeticAlloy"],"name":"小型充能合金齿轮","tr":"小型充能合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20367":{"oreDict":["gearGtSmallVibrantAlloy"],"name":"小型脉冲合金齿轮","tr":"小型脉冲合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20368":{"oreDict":["gearGtSmallShadow"],"name":"小型暗影齿轮","tr":"小型暗影齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20369":{"oreDict":["gearGtSmallConductiveIron"],"name":"小型导电铁齿轮","tr":"小型导电铁齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20370":{"oreDict":["gearGtSmallTungstenCarbide"],"name":"小型碳化钨齿轮","tr":"小型碳化钨齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20371":{"oreDict":["gearGtSmallVanadiumSteel"],"name":"小型钒钢齿轮","tr":"小型钒钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20372":{"oreDict":["gearGtSmallHSSG"],"name":"小型高速钢-G齿轮","tr":"小型高速钢-G齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20373":{"oreDict":["gearGtSmallHSSE"],"name":"小型高速钢-E齿轮","tr":"小型高速钢-E齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20374":{"oreDict":["gearGtSmallHSSS"],"name":"小型高速钢-S齿轮","tr":"小型高速钢-S齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24470":{"oreDict":["springEpoxid"],"name":"环氧树脂弹簧","tr":"环氧树脂弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24471":{"oreDict":["springAnySyntheticRubber"," springSilicone"," springAnyRubber"],"name":"硅橡胶弹簧","tr":"硅橡胶弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24472":{"oreDict":["springPolycaprolactam"],"name":"聚己内酰胺弹簧","tr":"聚己内酰胺弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24473":{"oreDict":["springPolytetrafluoroethylene"],"name":"聚四氟乙烯弹簧","tr":"聚四氟乙烯弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20378":{"oreDict":["gearGtSmallPulsatingIron"],"name":"小型脉冲铁齿轮","tr":"小型脉冲铁齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20379":{"oreDict":["gearGtSmallSoularium"],"name":"小型魂金齿轮","tr":"小型魂金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20380":{"oreDict":["gearGtSmallEnderiumBase"],"name":"小型末影粗胚齿轮","tr":"小型末影粗胚齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20381":{"oreDict":["gearGtSmallRedstoneAlloy"],"name":"小型红石合金齿轮","tr":"小型红石合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20382":{"oreDict":["gearGtSmallArdite"],"name":"小型阿迪特齿轮","tr":"小型阿迪特齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20383":{"oreDict":["gearGtSmallReinforced"],"name":"小型强化金属齿轮","tr":"小型强化金属齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20384":{"oreDict":["gearGtSmallGalgadorian"],"name":"小型混合晶锭齿轮","tr":"小型混合晶锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20385":{"oreDict":["gearGtSmallEnhancedGalgadorian"],"name":"小型强化混合晶锭齿轮","tr":"小型强化混合晶锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20386":{"oreDict":["gearGtSmallManyullyn"],"name":"小型玛玉灵齿轮","tr":"小型玛玉灵齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20387":{"oreDict":["gearGtSmallMytryl"],"name":"小型深空秘银齿轮","tr":"小型深空秘银齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20388":{"oreDict":["gearGtSmallBlackPlutonium"],"name":"小型黑钚齿轮","tr":"小型黑钚齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20389":{"oreDict":["gearGtSmallCallistoIce"],"name":"小型木卫四冰齿轮","tr":"小型木卫四冰齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24485":{"oreDict":["springAlduorite"],"name":"神秘蓝金弹簧","tr":"神秘蓝金弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20390":{"oreDict":["gearGtSmallLedox"],"name":"小型深铅齿轮","tr":"小型深铅齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20391":{"oreDict":["gearGtSmallQuantium"],"name":"小型量子锭齿轮","tr":"小型量子锭齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20392":{"oreDict":["gearGtSmallDuralumin"],"name":"小型硬铝齿轮","tr":"小型硬铝齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24488":{"oreDict":["springRubracium"],"name":"褐铜弹簧","tr":"褐铜弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20393":{"oreDict":["gearGtSmallOriharukon"],"name":"小型奥利哈钢齿轮","tr":"小型奥利哈钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24489":{"oreDict":["springVulcanite"],"name":"胶木弹簧","tr":"胶木弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20394":{"oreDict":["gearGtSmallInfinityCatalyst"],"name":"小型无尽催化剂齿轮","tr":"小型无尽催化剂齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16300":{"oreDict":["turbineBladeBronze"," turbineBladeAnyBronze"],"name":"青铜涡轮扇叶","tr":"青铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16301":{"oreDict":["turbineBladeBrass"],"name":"黄铜涡轮扇叶","tr":"黄铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20397":{"oreDict":["gearGtSmallInfinity"],"name":"小型无尽齿轮","tr":"小型无尽齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16302":{"oreDict":["turbineBladeInvar"],"name":"殷钢涡轮扇叶","tr":"殷钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20398":{"oreDict":["gearGtSmallMysteriousCrystal"],"name":"小型神秘水晶齿轮","tr":"小型神秘水晶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16303":{"oreDict":["turbineBladeElectrum"],"name":"琥珀金涡轮扇叶","tr":"琥珀金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20399":{"oreDict":["gearGtSmallSamariumMagnetic"],"name":"小型磁化钐齿轮","tr":"小型磁化钐齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16304":{"oreDict":["turbineBladeAnyIron"," turbineBladeWroughtIron"],"name":"锻铁涡轮扇叶","tr":"锻铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20400":{"oreDict":["gearGtSmallAlumite"],"name":"小型耐酸铝齿轮","tr":"小型耐酸铝齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16305":{"oreDict":["turbineBladeSteel"],"name":"钢涡轮扇叶","tr":"钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20401":{"oreDict":["gearGtSmallEndSteel"],"name":"小型末影钢齿轮","tr":"小型末影钢齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16306":{"oreDict":["turbineBladeStainlessSteel"],"name":"不锈钢涡轮扇叶","tr":"不锈钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20402":{"oreDict":["gearGtSmallCrudeSteel"],"name":"小型复合粘土齿轮","tr":"小型复合粘土齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16307":{"oreDict":["turbineBladeAnyIron"," turbineBladePigIron"],"name":"生铁涡轮扇叶","tr":"生铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20403":{"oreDict":["gearGtSmallCrystallineAlloy"],"name":"小型晶化合金齿轮","tr":"小型晶化合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20404":{"oreDict":["gearGtSmallMelodicAlloy"],"name":"小型旋律合金齿轮","tr":"小型旋律合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20405":{"oreDict":["gearGtSmallStellarAlloy"],"name":"小型恒星合金齿轮","tr":"小型恒星合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16310":{"oreDict":["turbineBladeCupronickel"],"name":"白铜涡轮扇叶","tr":"白铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20406":{"oreDict":["gearGtSmallCrystallinePinkSlime"],"name":"小型晶化粉红史莱姆齿轮","tr":"小型晶化粉红史莱姆齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16311":{"oreDict":["turbineBladeNichrome"],"name":"镍铬合金涡轮扇叶","tr":"镍铬合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20407":{"oreDict":["gearGtSmallEnergeticSilver"],"name":"小型充能银齿轮","tr":"小型充能银齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16312":{"oreDict":["turbineBladeKanthal"],"name":"坎塔尔合金涡轮扇叶","tr":"坎塔尔合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20408":{"oreDict":["gearGtSmallVividAlloy"],"name":"小型生动合金齿轮","tr":"小型生动合金齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16313":{"oreDict":["turbineBladeMagnalium"],"name":"镁铝合金涡轮扇叶","tr":"镁铝合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16316":{"oreDict":["turbineBladeTungstenSteel"],"name":"钨钢涡轮扇叶","tr":"钨钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16317":{"oreDict":["turbineBladeOsmiridium"],"name":"铱锇合金涡轮扇叶","tr":"铱锇合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16318":{"oreDict":["turbineBladeSunnarium"],"name":"阳光化合物涡轮扇叶","tr":"阳光化合物涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16319":{"oreDict":["turbineBladeAdamantium"],"name":"精金涡轮扇叶","tr":"精金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16320":{"oreDict":["turbineBladeElectrumFlux"],"name":"通流琥珀金涡轮扇叶","tr":"通流琥珀金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16321":{"oreDict":["turbineBladeEnderium"],"name":"末影锭涡轮扇叶","tr":"末影锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16323":{"oreDict":["turbineBladeInfusedGold"],"name":"注魔金涡轮扇叶","tr":"注魔金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16324":{"oreDict":["turbineBladeNaquadah"],"name":"硅岩涡轮扇叶","tr":"硅岩涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16325":{"oreDict":["turbineBladeNaquadahAlloy"],"name":"硅岩合金涡轮扇叶","tr":"硅岩合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16326":{"oreDict":["turbineBladeNaquadahEnriched"],"name":"富集硅岩涡轮扇叶","tr":"富集硅岩涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16327":{"oreDict":["turbineBladeNaquadria"],"name":"超能硅岩涡轮扇叶","tr":"超能硅岩涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16328":{"oreDict":["turbineBladeDuranium"],"name":"铿铀涡轮扇叶","tr":"铿铀涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16329":{"oreDict":["turbineBladeTritanium"],"name":"三钛涡轮扇叶","tr":"三钛涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24521":{"oreDict":["springForce"],"name":"力量弹簧","tr":"力量弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16330":{"oreDict":["turbineBladeThaumium"],"name":"神秘锭涡轮扇叶","tr":"神秘锭涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16331":{"oreDict":["turbineBladeMithril"],"name":"秘银涡轮扇叶","tr":"秘银涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16333":{"oreDict":["turbineBladeAstralSilver"],"name":"星辰银涡轮扇叶","tr":"星辰银涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16334":{"oreDict":["turbineBladeBlackSteel"],"name":"黑钢涡轮扇叶","tr":"黑钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16335":{"oreDict":["turbineBladeDamascusSteel"],"name":"大马士革钢涡轮扇叶","tr":"大马士革钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16336":{"oreDict":["turbineBladeShadowIron"],"name":"暗影铁涡轮扇叶","tr":"暗影铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16337":{"oreDict":["turbineBladeShadowSteel"],"name":"暗影钢涡轮扇叶","tr":"暗影钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24529":{"oreDict":["springVinteum"],"name":"温特姆弹簧","tr":"温特姆弹簧","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16338":{"oreDict":["turbineBladeIronWood"],"name":"铁木涡轮扇叶","tr":"铁木涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16339":{"oreDict":["turbineBladeSteeleaf"],"name":"钢叶涡轮扇叶","tr":"钢叶涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16340":{"oreDict":["turbineBladeMeteoricIron"],"name":"陨铁涡轮扇叶","tr":"陨铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16341":{"oreDict":["turbineBladeMeteoricSteel"],"name":"陨钢涡轮扇叶","tr":"陨钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16342":{"oreDict":["turbineBladeDarkIron"],"name":"玄铁涡轮扇叶","tr":"玄铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16343":{"oreDict":["turbineBladeCobaltBrass"],"name":"钴黄铜涡轮扇叶","tr":"钴黄铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16344":{"oreDict":["turbineBladeUltimet"],"name":"哈氏合金涡轮扇叶","tr":"哈氏合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16346":{"oreDict":["turbineBladeFierySteel"],"name":"炽热钢涡轮扇叶","tr":"炽热钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16348":{"oreDict":["turbineBladeRedSteel"],"name":"红钢涡轮扇叶","tr":"红钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16349":{"oreDict":["turbineBladeBlueSteel"],"name":"蓝钢涡轮扇叶","tr":"蓝钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16350":{"oreDict":["turbineBladeSterlingSilver"],"name":"标准纯银涡轮扇叶","tr":"标准纯银涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16351":{"oreDict":["turbineBladeRoseGold"],"name":"玫瑰金涡轮扇叶","tr":"玫瑰金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16352":{"oreDict":["turbineBladeBlackBronze"],"name":"黑青铜涡轮扇叶","tr":"黑青铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16353":{"oreDict":["turbineBladeBismuthBronze"],"name":"铋青铜涡轮扇叶","tr":"铋青铜涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16354":{"oreDict":["turbineBladeIronMagnetic"],"name":"磁化铁涡轮扇叶","tr":"磁化铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16355":{"oreDict":["turbineBladeSteelMagnetic"],"name":"磁化钢涡轮扇叶","tr":"磁化钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16356":{"oreDict":["turbineBladeNeodymiumMagnetic"],"name":"磁化钕涡轮扇叶","tr":"磁化钕涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16362":{"oreDict":["turbineBladeKnightmetal"],"name":"骑士金属涡轮扇叶","tr":"骑士金属涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16363":{"oreDict":["turbineBladeTinAlloy"],"name":"锡铁合金涡轮扇叶","tr":"锡铁合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16364":{"oreDict":["turbineBladeDarkSteel"],"name":"玄钢涡轮扇叶","tr":"玄钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16365":{"oreDict":["turbineBladeElectricalSteel"],"name":"磁钢涡轮扇叶","tr":"磁钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16366":{"oreDict":["turbineBladeEnergeticAlloy"],"name":"充能合金涡轮扇叶","tr":"充能合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16367":{"oreDict":["turbineBladeVibrantAlloy"],"name":"脉冲合金涡轮扇叶","tr":"脉冲合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16368":{"oreDict":["turbineBladeShadow"],"name":"暗影涡轮扇叶","tr":"暗影涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16369":{"oreDict":["turbineBladeConductiveIron"],"name":"导电铁涡轮扇叶","tr":"导电铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16370":{"oreDict":["turbineBladeTungstenCarbide"],"name":"碳化钨涡轮扇叶","tr":"碳化钨涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16371":{"oreDict":["turbineBladeVanadiumSteel"],"name":"钒钢涡轮扇叶","tr":"钒钢涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16372":{"oreDict":["turbineBladeHSSG"],"name":"高速钢-G涡轮扇叶","tr":"高速钢-G涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16373":{"oreDict":["turbineBladeHSSE"],"name":"高速钢-E涡轮扇叶","tr":"高速钢-E涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16374":{"oreDict":["turbineBladeHSSS"],"name":"高速钢-S涡轮扇叶","tr":"高速钢-S涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20470":{"oreDict":["gearGtSmallEpoxid"],"name":"小型环氧树脂齿轮","tr":"小型环氧树脂齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20471":{"oreDict":["gearGtSmallSilicone"," gearGtSmallAnyRubber"," gearGtSmallAnySyntheticRubber"],"name":"小型硅橡胶齿轮","tr":"小型硅橡胶齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20472":{"oreDict":["gearGtSmallPolycaprolactam"],"name":"小型聚己内酰胺齿轮","tr":"小型聚己内酰胺齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20473":{"oreDict":["gearGtSmallPolytetrafluoroethylene"],"name":"小型聚四氟乙烯齿轮","tr":"小型聚四氟乙烯齿轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16378":{"oreDict":["turbineBladePulsatingIron"],"name":"脉冲铁涡轮扇叶","tr":"脉冲铁涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16379":{"oreDict":["turbineBladeSoularium"],"name":"魂金涡轮扇叶","tr":"魂金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16380":{"oreDict":["turbineBladeEnderiumBase"],"name":"末影粗胚涡轮扇叶","tr":"末影粗胚涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16381":{"oreDict":["turbineBladeRedstoneAlloy"],"name":"红石合金涡轮扇叶","tr":"红石合金涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16382":{"oreDict":["turbineBladeArdite"],"name":"阿迪特涡轮扇叶","tr":"阿迪特涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16383":{"oreDict":["turbineBladeReinforced"],"name":"强化金属涡轮扇叶","tr":"强化金属涡轮扇叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"gregtech:gt.metaitem.03":{"4129":{"oreDict":["naniteNeutronium"],"name":"中子纳米蜂群","tr":"中子纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4139":{"oreDict":["naniteUniversium"],"name":"宇宙素纳米蜂群","tr":"宇宙素纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4141":{"oreDict":["naniteEternity"],"name":"永恒纳米蜂群","tr":"永恒纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4811":{"oreDict":["naniteGlowstone"],"name":"萤石纳米蜂群","tr":"萤石纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32006":{"name":"湿件维生电路基板","tr":"湿件维生电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32007":{"name":"塑料电路基板","tr":"塑料电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32008":{"name":"生物电路基板","tr":"生物电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32011":{"oreDict":["componentCircuitResistor"],"name":"贴片电阻","tr":"贴片电阻","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32012":{"name":"玻璃管","tr":"玻璃管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32014":{"oreDict":["componentCircuitInductor"],"name":"小型线圈","tr":"小型线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32016":{"oreDict":["componentCircuitDiode"],"name":"贴片二极管","tr":"贴片二极管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32018":{"oreDict":["componentCircuitTransistor"],"name":"贴片晶体管","tr":"贴片晶体管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32020":{"oreDict":["componentCircuitCapacitor"],"name":"贴片电容","tr":"贴片电容","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32021":{"name":"玻璃纤维","tr":"玻璃纤维","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32022":{"name":"培养皿","tr":"培养皿","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32023":{"name":"防爆玻璃管","tr":"防爆玻璃管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32024":{"name":"进阶贴片电阻","tr":"进阶贴片电阻","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32025":{"name":"进阶贴片二极管","tr":"进阶贴片二极管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32026":{"name":"进阶贴片晶体管","tr":"进阶贴片晶体管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32027":{"name":"进阶贴片电容","tr":"进阶贴片电容","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32030":{"name":"单晶硅","tr":"单晶硅","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32031":{"name":"磷掺杂的单晶硅","tr":"磷掺杂的单晶硅","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32032":{"name":"硅岩掺杂的单晶硅","tr":"硅岩掺杂的单晶硅","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32033":{"name":"晶圆","tr":"晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32034":{"name":"磷掺杂的晶圆","tr":"磷掺杂的晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32035":{"name":"硅岩掺杂的晶圆","tr":"硅岩掺杂的晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32036":{"name":"集成逻辑电路(晶圆)","tr":"集成逻辑电路(晶圆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32037":{"name":"集成逻辑电路","tr":"集成逻辑电路","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32038":{"name":"RAM芯片(晶圆)","tr":"RAM芯片(晶圆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32039":{"name":"RAM芯片","tr":"RAM芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32040":{"name":"NAND存储器芯片(晶圆)","tr":"NAND存储器芯片(晶圆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32041":{"name":"NAND存储器芯片","tr":"NAND存储器芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32042":{"name":"NOR存储器芯片(晶圆)","tr":"NOR存储器芯片(晶圆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32043":{"name":"NOR存储器芯片","tr":"NOR存储器芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32044":{"name":"中央处理器(晶圆)","tr":"中央处理器(晶圆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32045":{"name":"中央处理器","tr":"中央处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32046":{"name":"SoC晶圆","tr":"SoC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32047":{"name":"SoC","tr":"SoC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32048":{"name":"ASoC晶圆","tr":"ASoC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32049":{"name":"ASoC","tr":"ASoC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32050":{"name":"功率IC晶圆","tr":"功率IC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32051":{"name":"功率集成电路","tr":"功率集成电路","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32052":{"name":"高功率IC晶圆","tr":"高功率IC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32053":{"name":"高功率集成电路","tr":"高功率集成电路","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32054":{"name":"纳米CPU晶圆","tr":"纳米CPU晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32055":{"name":"纳米CPU","tr":"纳米CPU","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32056":{"name":"QBit晶圆","tr":"QBit晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32057":{"name":"QBit处理器单元","tr":"QBit处理器单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32058":{"name":"超高功率IC晶圆","tr":"超高功率IC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32059":{"name":"超高功率集成电路","tr":"超高功率集成电路","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32060":{"name":"简单的SoC晶片","tr":"简单的SoC晶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32061":{"name":"简单的SoC","tr":"简单的SoC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32062":{"name":"超低功率IC晶圆","tr":"超低功率IC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32063":{"name":"超低功率IC","tr":"超低功率IC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32064":{"name":"低功率IC晶圆","tr":"低功率IC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32065":{"name":"低功率IC","tr":"低功率IC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32068":{"name":"先进晶体芯片原料","tr":"先进晶体芯片原料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32069":{"name":"晶体芯片原料","tr":"晶体芯片原料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32070":{"name":"晶体处理器单元","tr":"晶体处理器单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32071":{"name":"晶体SoC","tr":"晶体SoC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32072":{"name":"神经元处理器","tr":"神经元处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32073":{"name":"干细胞","tr":"干细胞","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32074":{"name":"晶体芯片碎片","tr":"晶体芯片碎片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32075":{"oreDict":["circuitPrimitive"],"name":"NAND芯片","tr":"NAND芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32076":{"name":"生物细胞","tr":"生物细胞","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32077":{"name":"生物处理器单元","tr":"生物处理器单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32078":{"oreDict":["circuitBasic"],"name":"微型处理器","tr":"微型处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32079":{"oreDict":["circuitGood"],"name":"不错的集成电路","tr":"不错的集成电路","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32080":{"oreDict":["circuitGood"],"name":"集成处理器","tr":"集成处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32082":{"oreDict":["circuitAdvanced"],"name":"纳米处理器","tr":"纳米处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32083":{"oreDict":["circuitData"],"name":"纳米处理器集群","tr":"纳米处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32084":{"oreDict":["circuitElite"],"name":"精英纳米电脑","tr":"精英纳米电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32085":{"oreDict":["circuitData"],"name":"量子处理器","tr":"量子处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32086":{"oreDict":["circuitElite"],"name":"量子处理器集群","tr":"量子处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32087":{"oreDict":["circuitMaster"],"name":"大型量子电脑","tr":"大型量子电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32088":{"oreDict":["circuitUltimate"],"name":"量子处理器主机","tr":"量子处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32089":{"oreDict":["circuitElite"],"name":"晶体处理器","tr":"晶体处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32090":{"oreDict":["circuitUltimate"],"name":"终极晶体电脑","tr":"终极晶体电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32091":{"oreDict":["circuitSuperconductor"],"name":"晶体处理器主机","tr":"晶体处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32092":{"oreDict":["circuitMaster"],"name":"湿件处理器","tr":"湿件处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32093":{"oreDict":["circuitUltimate"],"name":"湿件处理器集群","tr":"湿件处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32094":{"oreDict":["circuitSuperconductor"],"name":"湿件处理器超级电脑","tr":"湿件处理器超级电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32095":{"oreDict":["circuitInfinite"],"name":"湿件处理器主机","tr":"湿件处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32096":{"oreDict":["circuitMaster"],"name":"晶体处理器集群","tr":"晶体处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32097":{"oreDict":["circuitUltimate"],"name":"生物处理器","tr":"生物处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32098":{"oreDict":["circuitSuperconductor"],"name":"生物处理器集群","tr":"生物处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32099":{"oreDict":["circuitInfinite"],"name":"生物处理器超级电脑","tr":"生物处理器超级电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32100":{"name":"电路基板","tr":"电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32101":{"name":"进阶电路基板","tr":"进阶电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32102":{"name":"高级电路基板","tr":"高级电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32103":{"name":"精制电路基板","tr":"精制电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32104":{"name":"精英电路基板","tr":"精英电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32105":{"name":"超级湿件维生电路基板","tr":"超级湿件维生电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32106":{"name":"塑料电路基板","tr":"塑料电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32107":{"name":"超生物突变电路基板","tr":"超生物突变电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32110":{"name":"真空管导线","tr":"真空管导线","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32120":{"oreDict":["circuitBio"],"name":"生物处理器主机","tr":"生物处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32130":{"name":"太阳能覆盖板(UHV)","tr":"太阳能覆盖板(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32131":{"name":"太阳能覆盖板(UEV)","tr":"太阳能覆盖板(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32132":{"name":"太阳能覆盖板(UIV)","tr":"太阳能覆盖板(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32140":{"name":"ULV线圈","tr":"ULV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32141":{"name":"LV线圈","tr":"LV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32142":{"name":"MV线圈","tr":"MV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32143":{"name":"HV线圈","tr":"HV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32144":{"name":"EV线圈","tr":"EV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32145":{"name":"IV线圈","tr":"IV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32146":{"name":"LuV线圈","tr":"LuV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32147":{"name":"ZPM线圈","tr":"ZPM线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32148":{"name":"UV线圈","tr":"UV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32149":{"name":"UHV线圈","tr":"UHV线圈","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32150":{"name":"铕掺杂的单晶硅","tr":"铕掺杂的单晶硅","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32151":{"name":"铕掺杂的晶圆","tr":"铕掺杂的晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32152":{"name":"镅掺杂的单晶硅","tr":"镅掺杂的单晶硅","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32153":{"name":"镅掺杂的晶圆","tr":"镅掺杂的晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32154":{"oreDict":["circuitSuperconductor"],"name":"光学处理器","tr":"光学处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32155":{"oreDict":["circuitInfinite"],"name":"光学处理器集群","tr":"光学处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32156":{"oreDict":["circuitBio"],"name":"光学处理器超级电脑","tr":"光学处理器超级电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32157":{"oreDict":["circuitOptical"],"name":"光学处理器主机","tr":"光学处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32160":{"name":"纳米功率IC晶圆","tr":"纳米功率IC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32161":{"name":"纳米功率IC","tr":"纳米功率IC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32162":{"name":"皮米能量晶圆","tr":"皮米能量晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32163":{"name":"皮米功率IC","tr":"皮米功率IC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32164":{"name":"量子功率IC晶圆","tr":"量子功率IC晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32165":{"name":"量子功率IC","tr":"量子功率IC","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32166":{"oreDict":["circuitInfinite"],"name":"天顶星处理器","tr":"天顶星处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32167":{"oreDict":["circuitBio"],"name":"天顶星处理器集群","tr":"天顶星处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32168":{"oreDict":["circuitOptical"],"name":"天顶星处理器超级电脑","tr":"天顶星处理器超级电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32169":{"oreDict":["circuitExotic"],"name":"天顶星处理器主机","tr":"天顶星处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4010":{"oreDict":["naniteCarbon"],"name":"碳纳米蜂群","tr":"碳纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32170":{"oreDict":["circuitBio"],"name":"寰宇处理器","tr":"寰宇处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32171":{"oreDict":["circuitOptical"],"name":"寰宇处理器集群","tr":"寰宇处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32172":{"oreDict":["circuitExotic"],"name":"寰宇处理器超级电脑","tr":"寰宇处理器超级电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32173":{"oreDict":["circuitCosmic"],"name":"寰宇处理器主机","tr":"寰宇处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32174":{"oreDict":["circuitOptical"],"name":"超时空处理器","tr":"超时空处理器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32175":{"oreDict":["circuitExotic"],"name":"超时空处理器集群","tr":"超时空处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32176":{"oreDict":["circuitCosmic"],"name":"超时空处理器超级电脑","tr":"超时空处理器超级电脑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32177":{"oreDict":["circuitTranscendent"],"name":"超时空处理器主机","tr":"超时空处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32178":{"name":"光学贴片电阻","tr":"光学贴片电阻","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32179":{"name":"光学贴片二极管","tr":"光学贴片二极管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32180":{"name":"光学贴片晶体管","tr":"光学贴片晶体管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32181":{"name":"光学贴片电容","tr":"光学贴片电容","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32182":{"oreDict":["componentCircuitInductor"],"name":"贴片电感","tr":"贴片电感","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32183":{"name":"进阶贴片电感","tr":"进阶贴片电感","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32184":{"name":"光学贴片电感","tr":"光学贴片电感","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32188":{"name":"活性生物晶圆","tr":"活性生物晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32189":{"name":"活性生物芯片","tr":"活性生物芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32190":{"name":"砷化镓晶体","tr":"砷化镓晶体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32191":{"name":"小型砷化镓晶体","tr":"小型砷化镓晶体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4032":{"oreDict":["naniteAnyIron"," naniteIron"],"name":"铁纳米蜂群","tr":"铁纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32192":{"name":"凯芙拉纤维","tr":"凯芙拉纤维","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32193":{"name":"编织凯芙拉","tr":"编织凯芙拉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32194":{"name":"纺丝器","tr":"纺丝器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4035":{"oreDict":["naniteCopper"," naniteAnyCopper"],"name":"铜纳米蜂群","tr":"铜纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32199":{"name":"升级框架","tr":"升级框架","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32200":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x2","tr":"加速升级 x2","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32201":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x4","tr":"加速升级 x4","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32202":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x8","tr":"加速升级 x8","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32203":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x16","tr":"加速升级 x16","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32204":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x32","tr":"加速升级 x32","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32205":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x64","tr":"加速升级 x64","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32206":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x128","tr":"加速升级 x128","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32207":{"oreDict":["apiaryUpgrade"],"name":"加速升级 x256","tr":"加速升级 x256","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32208":{"oreDict":["apiaryUpgrade"],"name":"进阶加速升级 x256","tr":"进阶加速升级 x256","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32209":{"oreDict":["apiaryUpgrade"],"name":"产量升级","tr":"产量升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32721":{"name":"光学富集单晶硅","tr":"光学富集单晶硅","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32210":{"oreDict":["apiaryUpgrade"],"name":"平原环境升级","tr":"平原环境升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32722":{"name":"预备光子晶圆","tr":"预备光子晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32211":{"oreDict":["apiaryUpgrade"],"name":"光照升级","tr":"光照升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32723":{"name":"增强光子晶圆","tr":"增强光子晶圆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32212":{"oreDict":["apiaryUpgrade"],"name":"授粉升级","tr":"授粉升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32724":{"name":"光学裸片","tr":"光学裸片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32213":{"oreDict":["apiaryUpgrade"],"name":"严寒环境升级","tr":"严寒环境升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32725":{"name":"光学兼容内存","tr":"光学兼容内存","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4054":{"oreDict":["naniteSilver"],"name":"银纳米蜂群","tr":"银纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32214":{"oreDict":["apiaryUpgrade"],"name":"干燥升级","tr":"干燥升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32726":{"name":"光学完美CPU","tr":"光学完美CPU","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32215":{"oreDict":["apiaryUpgrade"],"name":"自动化升级","tr":"自动化升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32727":{"name":"光学CPU密封外壳","tr":"光学CPU密封外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32216":{"oreDict":["apiaryUpgrade"],"name":"加湿器升级","tr":"加湿器升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32728":{"name":"光学电路基板","tr":"光学电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32217":{"oreDict":["apiaryUpgrade"],"name":"地狱环境升级","tr":"地狱环境升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32729":{"name":"白矮星模头(板)","tr":"白矮星模头(板)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32218":{"oreDict":["apiaryUpgrade"],"name":"花粉洗涤塔升级","tr":"花粉洗涤塔升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32730":{"name":"白矮星模头(杆)","tr":"白矮星模头(杆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32219":{"oreDict":["apiaryUpgrade"],"name":"沙漠环境升级","tr":"沙漠环境升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32731":{"name":"白矮星模头(螺栓)","tr":"白矮星模头(螺栓)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32220":{"oreDict":["apiaryUpgrade"],"name":"冷却器升级","tr":"冷却器升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32732":{"name":"白矮星模头(环)","tr":"白矮星模头(环)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32221":{"oreDict":["apiaryUpgrade"],"name":"寿命升级","tr":"寿命升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32733":{"name":"白矮星模头(单元)","tr":"白矮星模头(单元)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32222":{"oreDict":["apiaryUpgrade"],"name":"气密性升级","tr":"气密性升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32734":{"name":"白矮星模头(锭)","tr":"白矮星模头(锭)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32223":{"oreDict":["apiaryUpgrade"],"name":"基因稳定升级","tr":"基因稳定升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32735":{"name":"白矮星模头(导线)","tr":"白矮星模头(导线)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32224":{"oreDict":["apiaryUpgrade"],"name":"丛林环境升级","tr":"丛林环境升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32736":{"name":"白矮星模头(外壳)","tr":"白矮星模头(外壳)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32225":{"oreDict":["apiaryUpgrade"],"name":"范围升级","tr":"范围升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32737":{"name":"白矮星模头(微型管道)","tr":"白矮星模头(微型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32226":{"oreDict":["apiaryUpgrade"],"name":"海洋环境升级","tr":"海洋环境升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32738":{"name":"白矮星模头(小型管道)","tr":"白矮星模头(小型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32227":{"oreDict":["apiaryUpgrade"],"name":"露天环境升级","tr":"露天环境升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32739":{"name":"白矮星模头(管道)","tr":"白矮星模头(管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32228":{"oreDict":["apiaryUpgrade"],"name":"加热器升级","tr":"加热器升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32740":{"name":"白矮星模头(大型管道)","tr":"白矮星模头(大型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4581":{"oreDict":["naniteTranscendentMetal"],"name":"超时空金属纳米蜂群","tr":"超时空金属纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32229":{"oreDict":["apiaryUpgrade"],"name":"筛滤升级","tr":"筛滤升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32741":{"name":"白矮星模头(巨型管道)","tr":"白矮星模头(巨型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32230":{"name":"核能之星","tr":"核能之星","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32742":{"name":"白矮星模头(块)","tr":"白矮星模头(块)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32231":{"oreDict":["apiaryUpgrade"],"name":"夜间升级","tr":"夜间升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32743":{"name":"白矮星模头(剑刃)","tr":"白矮星模头(剑刃)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32232":{"name":"数据发射器覆盖板","tr":"数据发射器覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32744":{"name":"白矮星模头(镐头)","tr":"白矮星模头(镐头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4585":{"oreDict":["naniteWhiteDwarfMatter"],"name":"白矮星物质纳米蜂群","tr":"白矮星物质纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32745":{"name":"白矮星模头(铲头)","tr":"白矮星模头(铲头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4586":{"oreDict":["naniteBlackDwarfMatter"],"name":"黑矮星物质纳米蜂群","tr":"黑矮星物质纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32746":{"name":"白矮星模头(斧头)","tr":"白矮星模头(斧头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32747":{"name":"白矮星模头(锄头)","tr":"白矮星模头(锄头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32748":{"name":"白矮星模头(锤头)","tr":"白矮星模头(锤头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32749":{"name":"白矮星模头(锉刀刃)","tr":"白矮星模头(锉刀刃)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32750":{"name":"白矮星模头(锯刃)","tr":"白矮星模头(锯刃)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32751":{"name":"白矮星模头(齿轮)","tr":"白矮星模头(齿轮)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32752":{"name":"白矮星模头(瓶子)","tr":"白矮星模头(瓶子)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32753":{"name":"白矮星模头(转子)","tr":"白矮星模头(转子)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32754":{"name":"白矮星模头(小型齿轮)","tr":"白矮星模头(小型齿轮)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32755":{"name":"白矮星模头(涡轮扇叶)","tr":"白矮星模头(涡轮扇叶)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32756":{"name":"白矮星模头(钻头)","tr":"白矮星模头(钻头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32757":{"name":"时间碎片","tr":"时间碎片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"4086":{"oreDict":["naniteGold"],"name":"金纳米蜂群","tr":"金纳米蜂群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"CarpentersBlocks:blockCarpentersBlock":{"0":{"name":"Carpenter\u0027s Block","tr":"木匠方块","tab":"木匠方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:oreHoneaite":{"0":{"oreDict":["oreHoneaite"],"name":"Honeaite Ore","tr":"碲化金铊矿石","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"gregtech:gt.metaitem.01":{"16384":{"oreDict":["ingotQuintupleGalgadorian"],"name":"五重混合晶锭","tr":"五重混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16385":{"oreDict":["ingotQuintupleEnhancedGalgadorian"],"name":"五重强化混合晶锭","tr":"五重强化混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16386":{"oreDict":["ingotQuintupleManyullyn"],"name":"五重玛玉灵锭","tr":"五重玛玉灵锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16387":{"oreDict":["ingotQuintupleMytryl"],"name":"五重深空秘银锭","tr":"五重深空秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16388":{"oreDict":["ingotQuintupleBlackPlutonium"],"name":"五重黑钚锭","tr":"五重黑钚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16389":{"oreDict":["ingotQuintupleCallistoIce"],"name":"五重木卫四冰锭","tr":"五重木卫四冰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16390":{"oreDict":["ingotQuintupleLedox"],"name":"五重深铅锭","tr":"五重深铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16391":{"oreDict":["ingotQuintupleQuantium"],"name":"五重量子锭","tr":"五重量子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16392":{"oreDict":["ingotQuintupleDuralumin"],"name":"五重硬铝锭","tr":"五重硬铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16393":{"oreDict":["ingotQuintupleOriharukon"],"name":"五重奥利哈钢锭","tr":"五重奥利哈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16394":{"oreDict":["ingotQuintupleInfinityCatalyst"],"name":"五重无尽催化剂锭","tr":"五重无尽催化剂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16395":{"oreDict":["ingotQuintupleBedrockium"],"name":"五重基岩锭","tr":"五重基岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16397":{"oreDict":["ingotQuintupleInfinity"],"name":"五重无尽锭","tr":"五重无尽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16398":{"oreDict":["ingotQuintupleMysteriousCrystal"],"name":"五重神秘水晶锭","tr":"五重神秘水晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16399":{"oreDict":["ingotQuintupleSamariumMagnetic"],"name":"五重磁化钐锭","tr":"五重磁化钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16400":{"oreDict":["ingotQuintupleAlumite"],"name":"五重耐酸铝锭","tr":"五重耐酸铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16401":{"oreDict":["ingotQuintupleEndSteel"],"name":"五重末影钢锭","tr":"五重末影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16402":{"oreDict":["ingotQuintupleCrudeSteel"],"name":"五重复合粘土锭","tr":"五重复合粘土锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16403":{"oreDict":["ingotQuintupleCrystallineAlloy"],"name":"五重晶化合金锭","tr":"五重晶化合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16404":{"oreDict":["ingotQuintupleMelodicAlloy"],"name":"五重旋律合金锭","tr":"五重旋律合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16405":{"oreDict":["ingotQuintupleStellarAlloy"],"name":"五重恒星合金锭","tr":"五重恒星合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16406":{"oreDict":["ingotQuintupleCrystallinePinkSlime"],"name":"五重晶化粉红史莱姆锭","tr":"五重晶化粉红史莱姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16407":{"oreDict":["ingotQuintupleEnergeticSilver"],"name":"五重充能银锭","tr":"五重充能银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16408":{"oreDict":["ingotQuintupleVividAlloy"],"name":"五重生动合金锭","tr":"五重生动合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16470":{"oreDict":["ingotQuintupleEpoxid"],"name":"五重环氧树脂条","tr":"五重环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16471":{"oreDict":["ingotQuintupleSilicone"," ingotQuintupleAnyRubber"," ingotQuintupleAnySyntheticRubber"],"name":"五重硅橡胶条","tr":"五重硅橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16472":{"oreDict":["ingotQuintuplePolycaprolactam"],"name":"五重聚己内酰胺条","tr":"五重聚己内酰胺条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16473":{"oreDict":["ingotQuintuplePolytetrafluoroethylene"],"name":"五重聚四氟乙烯条","tr":"五重聚四氟乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16485":{"oreDict":["ingotQuintupleAlduorite"],"name":"五重神秘蓝金锭","tr":"五重神秘蓝金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16488":{"oreDict":["ingotQuintupleRubracium"],"name":"五重褐铜锭","tr":"五重褐铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16489":{"oreDict":["ingotQuintupleVulcanite"],"name":"五重胶木锭","tr":"五重胶木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16521":{"oreDict":["ingotQuintupleForce"],"name":"五重力量锭","tr":"五重力量锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16529":{"oreDict":["ingotQuintupleVinteum"],"name":"五重温特姆锭","tr":"五重温特姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8347":{"oreDict":["gemFirestone"],"name":"火石","tr":"火石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16576":{"oreDict":["ingotQuintupleTPVAlloy"],"name":"五重钛铂钒合金锭","tr":"五重钛铂钒合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16581":{"oreDict":["ingotQuintupleTranscendentMetal"],"name":"五重超时空金属锭","tr":"五重超时空金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16582":{"oreDict":["ingotQuintupleEnrichedHolmium"],"name":"五重富集钬锭","tr":"五重富集钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16585":{"oreDict":["ingotQuintupleWhiteDwarfMatter"],"name":"五重白矮星物质锭","tr":"五重白矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16586":{"oreDict":["ingotQuintupleBlackDwarfMatter"],"name":"五重黑矮星物质锭","tr":"五重黑矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16588":{"oreDict":["ingotQuintupleSpaceTime"],"name":"五重时空锭","tr":"五重时空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16599":{"oreDict":["ingotQuintuplePolybenzimidazole"],"name":"五重聚苯并咪唑锭","tr":"五重聚苯并咪唑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16610":{"oreDict":["ingotQuintupleEpoxidFiberReinforced"],"name":"五重纤维强化的环氧树脂条","tr":"五重纤维强化的环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16613":{"oreDict":["ingotQuintupleNickelZincFerrite"],"name":"五重镍锌铁氧体锭","tr":"五重镍锌铁氧体锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16631":{"oreDict":["ingotQuintuplePolyphenyleneSulfide"],"name":"五重聚苯硫醚锭","tr":"五重聚苯硫醚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16635":{"oreDict":["ingotQuintupleAnyRubber"," ingotQuintupleAnySyntheticRubber"," ingotQuintupleStyreneButadieneRubber"],"name":"五重丁苯橡胶条","tr":"五重丁苯橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16636":{"oreDict":["ingotQuintuplePolystyrene"],"name":"五重聚苯乙烯条","tr":"五重聚苯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16649":{"oreDict":["ingotQuintuplePolyvinylChloride"],"name":"五重聚氯乙烯条","tr":"五重聚氯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8502":{"oreDict":["gemRuby"],"name":"红宝石","tr":"红宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8503":{"oreDict":["gemSapphire"],"name":"蓝宝石","tr":"蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8504":{"oreDict":["gemGreenSapphire"],"name":"绿色蓝宝石","tr":"绿色蓝宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8505":{"oreDict":["gemOlivine"],"name":"橄榄石","tr":"橄榄石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24890":{"oreDict":["craftingLensWhite"," lensGlass"],"name":"玻璃透镜","tr":"玻璃透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8507":{"oreDict":["gemTopaz"],"name":"黄玉","tr":"黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8508":{"oreDict":["gemTanzanite"],"name":"坦桑石","tr":"坦桑石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8509":{"oreDict":["gemAmethyst"],"name":"紫水晶","tr":"紫水晶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8510":{"oreDict":["gemOpal"],"name":"蛋白石","tr":"蛋白石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8511":{"oreDict":["gemJasper"],"name":"碧玉","tr":"碧玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8512":{"oreDict":["gemFoolsRuby"],"name":"尖晶石","tr":"尖晶石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8513":{"oreDict":["gemBlueTopaz"],"name":"蓝黄玉","tr":"蓝黄玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8514":{"oreDict":["gemAmber"],"name":"琥珀","tr":"琥珀","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8515":{"oreDict":["gemDilithium"],"name":"双锂","tr":"双锂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8516":{"oreDict":["crystalCertusQuartz"," itemCertusQuartz"," craftingQuartz"," gemCertusQuartz"],"name":"赛特斯石英","tr":"赛特斯石英","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8518":{"oreDict":["gemForcicium"],"name":"力之宝石","tr":"力之宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8519":{"oreDict":["gemForcillium"],"name":"力场宝石","tr":"力场宝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8520":{"oreDict":["gemMonazite"],"name":"独居石","tr":"独居石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8521":{"oreDict":["gemForce"],"name":"力量","tr":"力量","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8523":{"oreDict":["craftingQuartz"," gemQuartzite"," crystalQuartzite"],"name":"石英岩","tr":"石英岩","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8524":{"oreDict":["dyeCyan"," gemLazurite"," dye"],"name":"蓝金石","tr":"蓝金石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8525":{"oreDict":["gemSodalite"," dyeBlue"," dye"],"name":"方钠石","tr":"方钠石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8527":{"oreDict":["gemGarnetRed"],"name":"红石榴石","tr":"红石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8528":{"oreDict":["gemGarnetYellow"],"name":"黄石榴石","tr":"黄石榴石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8529":{"oreDict":["gemVinteum"],"name":"温特姆","tr":"温特姆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8530":{"oreDict":["gemApatite"],"name":"磷灰石","tr":"磷灰石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8531":{"oreDict":["gemNiter"],"name":"硝石","tr":"硝石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8534":{"oreDict":["gemTricalciumPhosphate"],"name":"磷酸三钙","tr":"磷酸三钙","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8537":{"oreDict":["gemJade"],"name":"玉","tr":"玉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8538":{"oreDict":["gemLignite"],"name":"褐煤","tr":"褐煤","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16765":{"oreDict":["ingotQuintupleKevlar"],"name":"五重凯芙拉锭","tr":"五重凯芙拉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16770":{"oreDict":["ingotQuintupleHeeEndium"],"name":"五重终末锭","tr":"五重终末锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16772":{"oreDict":["ingotQuintupleNickelAluminide"],"name":"五重铝化镍锭","tr":"五重铝化镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25006":{"oreDict":["roundLithium"],"name":"锂滚珠","tr":"锂滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25008":{"oreDict":["roundBeryllium"],"name":"铍滚珠","tr":"铍滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25010":{"oreDict":["roundCarbon"],"name":"碳滚珠","tr":"碳滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25018":{"oreDict":["roundMagnesium"],"name":"镁滚珠","tr":"镁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25019":{"oreDict":["roundAluminium"],"name":"铝滚珠","tr":"铝滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25020":{"oreDict":["roundSilicon"],"name":"硅滚珠","tr":"硅滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16829":{"oreDict":["ingotQuintupleDeepIron"],"name":"五重深渊铁锭","tr":"五重深渊铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25025":{"oreDict":["roundPotassium"],"name":"钾滚珠","tr":"钾滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25027":{"oreDict":["roundScandium"],"name":"钪滚珠","tr":"钪滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25028":{"oreDict":["roundTitanium"],"name":"钛滚珠","tr":"钛滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25029":{"oreDict":["roundVanadium"],"name":"钒滚珠","tr":"钒滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25030":{"oreDict":["roundChrome"],"name":"铬滚珠","tr":"铬滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25031":{"oreDict":["roundManganese"],"name":"锰滚珠","tr":"锰滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25032":{"oreDict":["roundIron"," roundAnyIron"],"name":"铁滚珠","tr":"铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25033":{"oreDict":["roundCobalt"],"name":"钴滚珠","tr":"钴滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25034":{"oreDict":["roundNickel"],"name":"镍滚珠","tr":"镍滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25035":{"oreDict":["roundCopper"," roundAnyCopper"],"name":"铜滚珠","tr":"铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25036":{"oreDict":["roundZinc"],"name":"锌滚珠","tr":"锌滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25037":{"oreDict":["roundGallium"],"name":"镓滚珠","tr":"镓滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25039":{"oreDict":["roundArsenic"],"name":"砷滚珠","tr":"砷滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25043":{"oreDict":["roundRubidium"],"name":"铷滚珠","tr":"铷滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25045":{"oreDict":["roundYttrium"],"name":"钇滚珠","tr":"钇滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25047":{"oreDict":["roundNiobium"],"name":"铌滚珠","tr":"铌滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16856":{"oreDict":["ingotQuintupleSiliconSolarGrade"],"name":"五重太阳能级硅(多晶硅)锭","tr":"五重太阳能级硅(多晶硅)锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25048":{"oreDict":["roundMolybdenum"],"name":"钼滚珠","tr":"钼滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25052":{"oreDict":["roundPalladium"],"name":"钯滚珠","tr":"钯滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25054":{"oreDict":["roundSilver"],"name":"银滚珠","tr":"银滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25056":{"oreDict":["roundIndium"],"name":"铟滚珠","tr":"铟滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25057":{"oreDict":["roundTin"],"name":"锡滚珠","tr":"锡滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25058":{"oreDict":["roundAntimony"],"name":"锑滚珠","tr":"锑滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25059":{"oreDict":["roundTellurium"],"name":"碲滚珠","tr":"碲滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16868":{"oreDict":["ingotQuintupleTrinium"],"name":"五重三元金属锭","tr":"五重三元金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25062":{"oreDict":["roundCaesium"],"name":"铯滚珠","tr":"铯滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25063":{"oreDict":["roundBarium"],"name":"钡滚珠","tr":"钡滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25064":{"oreDict":["roundLanthanum"],"name":"镧滚珠","tr":"镧滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25065":{"oreDict":["roundCerium"],"name":"铈滚珠","tr":"铈滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16874":{"oreDict":["ingotQuintuplePlastic"],"name":"五重聚乙烯条","tr":"五重聚乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25066":{"oreDict":["roundPraseodymium"],"name":"镨滚珠","tr":"镨滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25067":{"oreDict":["roundNeodymium"],"name":"钕滚珠","tr":"钕滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25068":{"oreDict":["roundPromethium"],"name":"钷滚珠","tr":"钷滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25069":{"oreDict":["roundSamarium"],"name":"钐滚珠","tr":"钐滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25070":{"oreDict":["roundEuropium"],"name":"铕滚珠","tr":"铕滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25071":{"oreDict":["roundGadolinium"],"name":"钆滚珠","tr":"钆滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16880":{"oreDict":["ingotQuintupleRubber"," ingotQuintupleAnyRubber"],"name":"五重橡胶条","tr":"五重橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25072":{"oreDict":["roundTerbium"],"name":"铽滚珠","tr":"铽滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25073":{"oreDict":["roundDysprosium"],"name":"镝滚珠","tr":"镝滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25074":{"oreDict":["roundHolmium"],"name":"钬滚珠","tr":"钬滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25075":{"oreDict":["roundErbium"],"name":"铒滚珠","tr":"铒滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16884":{"oreDict":["ingotQuintupleDesh"],"name":"五重戴斯锭","tr":"五重戴斯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25076":{"oreDict":["roundThulium"],"name":"铥滚珠","tr":"铥滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25077":{"oreDict":["roundYtterbium"],"name":"镱滚珠","tr":"镱滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25078":{"oreDict":["roundLutetium"],"name":"镥滚珠","tr":"镥滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25080":{"oreDict":["roundTantalum"],"name":"钽滚珠","tr":"钽滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25081":{"oreDict":["roundTungsten"],"name":"钨滚珠","tr":"钨滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25083":{"oreDict":["roundOsmium"],"name":"锇滚珠","tr":"锇滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25084":{"oreDict":["roundIridium"],"name":"铱滚珠","tr":"铱滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25085":{"oreDict":["roundPlatinum"],"name":"铂滚珠","tr":"铂滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25086":{"oreDict":["roundGold"],"name":"金滚珠","tr":"金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25089":{"oreDict":["roundLead"],"name":"铅滚珠","tr":"铅滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25090":{"oreDict":["roundBismuth"],"name":"铋滚珠","tr":"铋滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25096":{"oreDict":["roundThorium"],"name":"钍滚珠","tr":"钍滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25097":{"oreDict":["roundUranium235"],"name":"铀-235滚珠","tr":"铀-235滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25098":{"oreDict":["roundUranium"],"name":"铀-238滚珠","tr":"铀-238滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25100":{"oreDict":["roundPlutonium"],"name":"钚-239滚珠","tr":"钚-239滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25101":{"oreDict":["roundPlutonium241"],"name":"钚-241滚珠","tr":"钚-241滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25103":{"oreDict":["roundAmericium"],"name":"镅滚珠","tr":"镅滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16912":{"oreDict":["ingotQuintupleChrysotile"],"name":"五重石棉锭","tr":"五重石棉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16913":{"oreDict":["ingotQuintupleRealgar"],"name":"五重雄黄锭","tr":"五重雄黄锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25111":{"oreDict":["roundTengamPurified"],"name":"纯镃滚珠","tr":"纯镃滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25112":{"oreDict":["roundTengamAttuned"],"name":"谐镃滚珠","tr":"谐镃滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25129":{"oreDict":["roundNeutronium"],"name":"中子滚珠","tr":"中子滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25131":{"oreDict":["roundSuperconductorUIVBase"],"name":"UIV超导粗胚滚珠","tr":"UIV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25134":{"oreDict":["roundSuperconductorUMVBase"],"name":"UMV超导粗胚滚珠","tr":"UMV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25139":{"oreDict":["roundUniversium"],"name":"宇宙素滚珠","tr":"宇宙素滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25141":{"oreDict":["roundEternity"],"name":"永恒滚珠","tr":"永恒滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16951":{"oreDict":["ingotQuintupleVyroxeres"],"name":"五重幽冥剧毒结晶锭","tr":"五重幽冥剧毒结晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25143":{"oreDict":["roundMagmatter"],"name":"磁物质滚珠","tr":"磁物质滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16952":{"oreDict":["ingotQuintupleCeruclase"],"name":"五重暗影秘银锭","tr":"五重暗影秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16956":{"oreDict":["ingotQuintupleTartarite"],"name":"五重溶火之石锭","tr":"五重溶火之石锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16966":{"oreDict":["ingotQuintupleOrichalcum"],"name":"五重山铜锭","tr":"五重山铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16970":{"oreDict":["ingotQuintupleVoid"],"name":"五重虚空锭","tr":"五重虚空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16974":{"oreDict":["ingotQuintupleSuperconductorUEVBase"],"name":"五重UEV超导粗胚锭","tr":"五重UEV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16975":{"oreDict":["ingotQuintupleDraconium"],"name":"五重龙锭","tr":"五重龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16976":{"oreDict":["ingotQuintupleDraconiumAwakened"],"name":"五重觉醒龙锭","tr":"五重觉醒龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16977":{"oreDict":["ingotQuintupleBloodInfusedIron"],"name":"五重注血铁锭","tr":"五重注血铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16978":{"oreDict":["ingotQuintupleIchorium"],"name":"五重灵宝锭","tr":"五重灵宝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16979":{"oreDict":["ingotQuintupleRadoxPoly"],"name":"五重拉多X聚合物锭","tr":"五重拉多X聚合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16980":{"oreDict":["ingotQuintupleGalliumArsenide"],"name":"五重砷化镓锭","tr":"五重砷化镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16981":{"oreDict":["ingotQuintupleIndiumGalliumPhosphide"],"name":"五重磷化铟镓锭","tr":"五重磷化铟镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16982":{"oreDict":["ingotQuintupleCosmicNeutronium"],"name":"五重宇宙中子态素锭","tr":"五重宇宙中子态素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16984":{"oreDict":["ingotQuintupleFlerovium_GT5U"],"name":"五重锭","tr":"五重锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16985":{"oreDict":["ingotQuintupleLongasssuperconductornameforuhvwire"],"name":"五重UHV超导粗胚锭","tr":"五重UHV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16986":{"oreDict":["ingotQuintupleLongasssuperconductornameforuvwire"],"name":"五重UV超导粗胚锭","tr":"五重UV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16987":{"oreDict":["ingotQuintuplePentacadmiummagnesiumhexaoxid"],"name":"五重MV超导粗胚锭","tr":"五重MV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16988":{"oreDict":["ingotQuintupleTitaniumonabariumdecacoppereikosaoxid"],"name":"五重HV超导粗胚锭","tr":"五重HV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16989":{"oreDict":["ingotQuintupleUraniumtriplatinid"],"name":"五重EV超导粗胚锭","tr":"五重EV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16990":{"oreDict":["ingotQuintupleVanadiumtriindinid"],"name":"五重IV超导粗胚锭","tr":"五重IV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16991":{"oreDict":["ingotQuintupleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"五重LuV超导粗胚锭","tr":"五重LuV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16992":{"oreDict":["ingotQuintupleTetranaquadahdiindiumhexaplatiumosminid"],"name":"五重ZPM超导粗胚锭","tr":"五重ZPM超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17006":{"oreDict":["plateLithium"],"name":"锂板","tr":"锂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17008":{"oreDict":["plateBeryllium"],"name":"铍板","tr":"铍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25201":{"oreDict":["roundManasteel"],"name":"魔钢滚珠","tr":"魔钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17010":{"oreDict":["plateCarbon"],"name":"碳板","tr":"碳板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25202":{"oreDict":["roundTerrasteel"],"name":"泰拉钢滚珠","tr":"泰拉钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25203":{"oreDict":["roundElvenElementium"],"name":"源质钢滚珠","tr":"源质钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25205":{"oreDict":["roundGaiaSpirit"],"name":"盖亚之魂滚珠","tr":"盖亚之魂滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25206":{"oreDict":["roundLivingwood"],"name":"活木滚珠","tr":"活木滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25207":{"oreDict":["roundDreamwood"],"name":"梦之木滚珠","tr":"梦之木滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17018":{"oreDict":["plateMagnesium"],"name":"镁板","tr":"镁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17019":{"oreDict":["plateAluminium"],"name":"铝板","tr":"铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17020":{"oreDict":["plateSilicon"," itemSilicon"],"name":"硅板","tr":"硅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17025":{"oreDict":["platePotassium"],"name":"钾板","tr":"钾板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17027":{"oreDict":["plateScandium"],"name":"钪板","tr":"钪板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17028":{"oreDict":["plateTitanium"],"name":"钛板","tr":"钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17029":{"oreDict":["plateVanadium"],"name":"钒板","tr":"钒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17030":{"oreDict":["plateChrome"],"name":"铬板","tr":"铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17031":{"oreDict":["plateManganese"],"name":"锰板","tr":"锰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17032":{"oreDict":["plateIron"," plateAnyIron"],"name":"铁板","tr":"铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17033":{"oreDict":["plateCobalt"],"name":"钴板","tr":"钴板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17034":{"oreDict":["plateNickel"],"name":"镍板","tr":"镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17035":{"oreDict":["plateCopper"," plateAnyCopper"],"name":"铜板","tr":"铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17036":{"oreDict":["plateZinc"],"name":"锌板","tr":"锌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17037":{"oreDict":["plateGallium"],"name":"镓板","tr":"镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17039":{"oreDict":["plateArsenic"],"name":"砷板","tr":"砷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17043":{"oreDict":["plateRubidium"],"name":"铷板","tr":"铷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17045":{"oreDict":["plateYttrium"],"name":"钇板","tr":"钇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17047":{"oreDict":["plateNiobium"],"name":"铌板","tr":"铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17048":{"oreDict":["plateMolybdenum"],"name":"钼板","tr":"钼板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17052":{"oreDict":["platePalladium"],"name":"钯板","tr":"钯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17054":{"oreDict":["plateSilver"],"name":"银板","tr":"银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17056":{"oreDict":["plateIndium"],"name":"铟板","tr":"铟板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17057":{"oreDict":["plateTin"],"name":"锡板","tr":"锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17058":{"oreDict":["plateAntimony"],"name":"锑板","tr":"锑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17059":{"oreDict":["plateTellurium"],"name":"碲板","tr":"碲板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17062":{"oreDict":["plateCaesium"],"name":"铯板","tr":"铯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17063":{"oreDict":["plateBarium"],"name":"钡板","tr":"钡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17064":{"oreDict":["plateLanthanum"],"name":"镧板","tr":"镧板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17065":{"oreDict":["plateCerium"],"name":"铈板","tr":"铈板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17066":{"oreDict":["platePraseodymium"],"name":"镨板","tr":"镨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17067":{"oreDict":["plateNeodymium"],"name":"钕板","tr":"钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17068":{"oreDict":["platePromethium"],"name":"钷板","tr":"钷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17069":{"oreDict":["plateSamarium"],"name":"钐板","tr":"钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17070":{"oreDict":["plateEuropium"],"name":"铕板","tr":"铕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17071":{"oreDict":["plateGadolinium"],"name":"钆板","tr":"钆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17072":{"oreDict":["plateTerbium"],"name":"铽板","tr":"铽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17073":{"oreDict":["plateDysprosium"],"name":"镝板","tr":"镝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17074":{"oreDict":["plateHolmium"],"name":"钬板","tr":"钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17075":{"oreDict":["plateErbium"],"name":"铒板","tr":"铒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17076":{"oreDict":["plateThulium"],"name":"铥板","tr":"铥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17077":{"oreDict":["plateYtterbium"],"name":"镱板","tr":"镱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17078":{"oreDict":["plateLutetium"],"name":"镥板","tr":"镥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17080":{"oreDict":["plateTantalum"],"name":"钽板","tr":"钽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17081":{"oreDict":["plateTungsten"],"name":"钨板","tr":"钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"8890":{"oreDict":["gemGlass"],"name":"玻璃晶体","tr":"玻璃晶体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17083":{"oreDict":["plateOsmium"],"name":"锇板","tr":"锇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17084":{"oreDict":["plateIridium"],"name":"铱板","tr":"铱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17085":{"oreDict":["platePlatinum"],"name":"铂板","tr":"铂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17086":{"oreDict":["plateGold"],"name":"金板","tr":"金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17089":{"oreDict":["plateLead"],"name":"铅板","tr":"铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17090":{"oreDict":["plateBismuth"],"name":"铋板","tr":"铋板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17096":{"oreDict":["plateThorium"],"name":"钍板","tr":"钍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17097":{"oreDict":["plateUranium235"],"name":"铀-235板","tr":"铀-235板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17098":{"oreDict":["plateUranium"],"name":"铀-238板","tr":"铀-238板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17100":{"oreDict":["platePlutonium"],"name":"钚-239板","tr":"钚-239板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17101":{"oreDict":["platePlutonium241"],"name":"钚-241板","tr":"钚-241板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17103":{"oreDict":["plateAmericium"],"name":"镅板","tr":"镅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25300":{"oreDict":["roundBronze"," roundAnyBronze"],"name":"青铜滚珠","tr":"青铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25301":{"oreDict":["roundBrass"],"name":"黄铜滚珠","tr":"黄铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25302":{"oreDict":["roundInvar"],"name":"殷钢滚珠","tr":"殷钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17111":{"oreDict":["plateTengamPurified"],"name":"纯镃板","tr":"纯镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25303":{"oreDict":["roundElectrum"],"name":"琥珀金滚珠","tr":"琥珀金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17112":{"oreDict":["plateTengamAttuned"],"name":"谐镃板","tr":"谐镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25304":{"oreDict":["roundAnyIron"," roundWroughtIron"],"name":"锻铁滚珠","tr":"锻铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25305":{"oreDict":["roundSteel"],"name":"钢滚珠","tr":"钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25306":{"oreDict":["roundStainlessSteel"],"name":"不锈钢滚珠","tr":"不锈钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25307":{"oreDict":["roundAnyIron"," roundPigIron"],"name":"生铁滚珠","tr":"生铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25308":{"oreDict":["roundRedAlloy"],"name":"红色合金滚珠","tr":"红色合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25309":{"oreDict":["roundBlueAlloy"],"name":"蓝色合金滚珠","tr":"蓝色合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25310":{"oreDict":["roundCupronickel"],"name":"白铜滚珠","tr":"白铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25311":{"oreDict":["roundNichrome"],"name":"镍铬滚珠","tr":"镍铬滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25312":{"oreDict":["roundKanthal"],"name":"坎塔尔合金滚珠","tr":"坎塔尔合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25313":{"oreDict":["roundMagnalium"],"name":"镁铝合金滚珠","tr":"镁铝合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25314":{"oreDict":["roundSolderingAlloy"],"name":"焊锡滚珠","tr":"焊锡滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25315":{"oreDict":["roundBatteryAlloy"],"name":"电池合金滚珠","tr":"电池合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25316":{"oreDict":["roundTungstenSteel"],"name":"钨钢滚珠","tr":"钨钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25317":{"oreDict":["roundOsmiridium"],"name":"铱锇合金滚珠","tr":"铱锇合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25318":{"oreDict":["roundSunnarium"],"name":"阳光化合物滚珠","tr":"阳光化合物滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25319":{"oreDict":["roundAdamantium"],"name":"精金滚珠","tr":"精金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25320":{"oreDict":["roundElectrumFlux"],"name":"通流琥珀金滚珠","tr":"通流琥珀金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17129":{"oreDict":["plateNeutronium"],"name":"中子板","tr":"中子板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25321":{"oreDict":["roundEnderium"],"name":"末影锭滚珠","tr":"末影锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17131":{"oreDict":["plateSuperconductorUIVBase"],"name":"UIV超导粗胚板","tr":"UIV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25323":{"oreDict":["roundInfusedGold"],"name":"注魔金滚珠","tr":"注魔金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25324":{"oreDict":["roundNaquadah"],"name":"硅岩滚珠","tr":"硅岩滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25325":{"oreDict":["roundNaquadahAlloy"],"name":"硅岩合金滚珠","tr":"硅岩合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17134":{"oreDict":["plateSuperconductorUMVBase"],"name":"UMV超导粗胚板","tr":"UMV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25326":{"oreDict":["roundNaquadahEnriched"],"name":"富集硅岩滚珠","tr":"富集硅岩滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25327":{"oreDict":["roundNaquadria"],"name":"超能硅岩滚珠","tr":"超能硅岩滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25328":{"oreDict":["roundDuranium"],"name":"铿铀滚珠","tr":"铿铀滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25329":{"oreDict":["roundTritanium"],"name":"三钛滚珠","tr":"三钛滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25330":{"oreDict":["roundThaumium"],"name":"神秘锭滚珠","tr":"神秘锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17139":{"oreDict":["plateUniversium"],"name":"宇宙素板","tr":"宇宙素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25331":{"oreDict":["roundMithril"],"name":"秘银滚珠","tr":"秘银滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17141":{"oreDict":["plateEternity"],"name":"永恒板","tr":"永恒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25333":{"oreDict":["roundAstralSilver"],"name":"星辰银滚珠","tr":"星辰银滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25334":{"oreDict":["roundBlackSteel"],"name":"黑钢滚珠","tr":"黑钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17143":{"oreDict":["plateMagmatter"],"name":"磁物质板","tr":"磁物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25335":{"oreDict":["roundDamascusSteel"],"name":"大马士革钢滚珠","tr":"大马士革钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25336":{"oreDict":["roundShadowIron"],"name":"暗影铁滚珠","tr":"暗影铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25337":{"oreDict":["roundShadowSteel"],"name":"暗影钢滚珠","tr":"暗影钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25338":{"oreDict":["roundIronWood"],"name":"铁木滚珠","tr":"铁木滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25339":{"oreDict":["roundSteeleaf"],"name":"钢叶滚珠","tr":"钢叶滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25340":{"oreDict":["roundMeteoricIron"],"name":"陨铁滚珠","tr":"陨铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25341":{"oreDict":["roundMeteoricSteel"],"name":"陨钢滚珠","tr":"陨钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25342":{"oreDict":["roundDarkIron"],"name":"玄铁滚珠","tr":"玄铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25343":{"oreDict":["roundCobaltBrass"],"name":"钴黄铜滚珠","tr":"钴黄铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25344":{"oreDict":["roundUltimet"],"name":"哈氏合金滚珠","tr":"哈氏合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25345":{"oreDict":["roundAnnealedCopper"," roundAnyCopper"],"name":"退火铜滚珠","tr":"退火铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25346":{"oreDict":["roundFierySteel"],"name":"炽热钢滚珠","tr":"炽热钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25348":{"oreDict":["roundRedSteel"],"name":"红钢滚珠","tr":"红钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25349":{"oreDict":["roundBlueSteel"],"name":"蓝钢滚珠","tr":"蓝钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25350":{"oreDict":["roundSterlingSilver"],"name":"标准纯银滚珠","tr":"标准纯银滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25351":{"oreDict":["roundRoseGold"],"name":"玫瑰金滚珠","tr":"玫瑰金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25352":{"oreDict":["roundBlackBronze"],"name":"黑青铜滚珠","tr":"黑青铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25353":{"oreDict":["roundBismuthBronze"],"name":"铋青铜滚珠","tr":"铋青铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25354":{"oreDict":["roundIronMagnetic"],"name":"磁化铁滚珠","tr":"磁化铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25355":{"oreDict":["roundSteelMagnetic"],"name":"磁化钢滚珠","tr":"磁化钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25356":{"oreDict":["roundNeodymiumMagnetic"],"name":"磁化钕滚珠","tr":"磁化钕滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25357":{"oreDict":["roundVanadiumGallium"],"name":"钒镓合金滚珠","tr":"钒镓合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25358":{"oreDict":["roundYttriumBariumCuprate"],"name":"钇钡铜氧合金滚珠","tr":"钇钡铜氧合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25359":{"oreDict":["roundNiobiumNitride"],"name":"氮化铌滚珠","tr":"氮化铌滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25360":{"oreDict":["roundNiobiumTitanium"],"name":"铌钛合金滚珠","tr":"铌钛合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25361":{"oreDict":["roundChromiumDioxide"],"name":"二氧化铬滚珠","tr":"二氧化铬滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25362":{"oreDict":["roundKnightmetal"],"name":"骑士金属滚珠","tr":"骑士金属滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25363":{"oreDict":["roundTinAlloy"],"name":"锡铁合金滚珠","tr":"锡铁合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25364":{"oreDict":["roundDarkSteel"],"name":"玄钢滚珠","tr":"玄钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25365":{"oreDict":["roundElectricalSteel"],"name":"磁钢滚珠","tr":"磁钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25366":{"oreDict":["roundEnergeticAlloy"],"name":"充能合金滚珠","tr":"充能合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25367":{"oreDict":["roundVibrantAlloy"],"name":"脉冲合金滚珠","tr":"脉冲合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25368":{"oreDict":["roundShadow"],"name":"暗影滚珠","tr":"暗影滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25369":{"oreDict":["roundConductiveIron"],"name":"导电铁滚珠","tr":"导电铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25370":{"oreDict":["roundTungstenCarbide"],"name":"碳化钨滚珠","tr":"碳化钨滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25371":{"oreDict":["roundVanadiumSteel"],"name":"钒钢滚珠","tr":"钒钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25372":{"oreDict":["roundHSSG"],"name":"高速钢-G滚珠","tr":"高速钢-G滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25373":{"oreDict":["roundHSSE"],"name":"高速钢-E滚珠","tr":"高速钢-E滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25374":{"oreDict":["roundHSSS"],"name":"高速钢-S滚珠","tr":"高速钢-S滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25378":{"oreDict":["roundPulsatingIron"],"name":"脉冲铁滚珠","tr":"脉冲铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25379":{"oreDict":["roundSoularium"],"name":"魂金滚珠","tr":"魂金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25380":{"oreDict":["roundEnderiumBase"],"name":"末影粗胚滚珠","tr":"末影粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25381":{"oreDict":["roundRedstoneAlloy"],"name":"红石合金滚珠","tr":"红石合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25382":{"oreDict":["roundArdite"],"name":"阿迪特滚珠","tr":"阿迪特滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25383":{"oreDict":["roundReinforced"],"name":"强化金属滚珠","tr":"强化金属滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25384":{"oreDict":["roundGalgadorian"],"name":"混合晶锭滚珠","tr":"混合晶锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25385":{"oreDict":["roundEnhancedGalgadorian"],"name":"强化混合晶锭滚珠","tr":"强化混合晶锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25386":{"oreDict":["roundManyullyn"],"name":"玛玉灵滚珠","tr":"玛玉灵滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25387":{"oreDict":["roundMytryl"],"name":"深空秘银滚珠","tr":"深空秘银滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25388":{"oreDict":["roundBlackPlutonium"],"name":"黑钚滚珠","tr":"黑钚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25389":{"oreDict":["roundCallistoIce"],"name":"木卫四冰滚珠","tr":"木卫四冰滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9006":{"oreDict":["nuggetLithium"],"name":"锂粒","tr":"锂粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25390":{"oreDict":["roundLedox"],"name":"深铅滚珠","tr":"深铅滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25391":{"oreDict":["roundQuantium"],"name":"量子锭滚珠","tr":"量子锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9008":{"oreDict":["nuggetBeryllium"],"name":"铍粒","tr":"铍粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25392":{"oreDict":["roundDuralumin"],"name":"硬铝滚珠","tr":"硬铝滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17201":{"oreDict":["plateManasteel"],"name":"魔钢板","tr":"魔钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25393":{"oreDict":["roundOriharukon"],"name":"奥利哈钢滚珠","tr":"奥利哈钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9010":{"oreDict":["nuggetCarbon"],"name":"碳粒","tr":"碳粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17202":{"oreDict":["plateTerrasteel"],"name":"泰拉钢板","tr":"泰拉钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25394":{"oreDict":["roundInfinityCatalyst"],"name":"无尽催化剂滚珠","tr":"无尽催化剂滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17203":{"oreDict":["plateElvenElementium"],"name":"源质钢板","tr":"源质钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25395":{"oreDict":["roundBedrockium"],"name":"基岩滚珠","tr":"基岩滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17204":{"oreDict":["plateLivingrock"],"name":"活石板","tr":"活石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17205":{"oreDict":["plateGaiaSpirit"],"name":"盖亚之魂板","tr":"盖亚之魂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25397":{"oreDict":["roundInfinity"],"name":"无尽滚珠","tr":"无尽滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17206":{"oreDict":["plateLivingwood"],"name":"活木板","tr":"活木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25398":{"oreDict":["roundMysteriousCrystal"],"name":"神秘水晶滚珠","tr":"神秘水晶滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17207":{"oreDict":["plateDreamwood"],"name":"梦之木板","tr":"梦之木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25399":{"oreDict":["roundSamariumMagnetic"],"name":"磁化钐滚珠","tr":"磁化钐滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17208":{"oreDict":["plateManaDiamond"],"name":"魔力钻石板","tr":"魔力钻石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25400":{"oreDict":["roundAlumite"],"name":"耐酸铝滚珠","tr":"耐酸铝滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17209":{"oreDict":["plateBotaniaDragonstone"],"name":"龙石板","tr":"龙石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25401":{"oreDict":["roundEndSteel"],"name":"末影钢滚珠","tr":"末影钢滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9018":{"oreDict":["nuggetMagnesium"],"name":"镁粒","tr":"镁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25402":{"oreDict":["roundCrudeSteel"],"name":"复合粘土滚珠","tr":"复合粘土滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9019":{"oreDict":["nuggetAluminium"],"name":"铝粒","tr":"铝粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25403":{"oreDict":["roundCrystallineAlloy"],"name":"晶化合金滚珠","tr":"晶化合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9020":{"oreDict":["nuggetSilicon"],"name":"硅粒","tr":"硅粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25404":{"oreDict":["roundMelodicAlloy"],"name":"旋律合金滚珠","tr":"旋律合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25405":{"oreDict":["roundStellarAlloy"],"name":"恒星合金滚珠","tr":"恒星合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25406":{"oreDict":["roundCrystallinePinkSlime"],"name":"晶化粉红史莱姆滚珠","tr":"晶化粉红史莱姆滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25407":{"oreDict":["roundEnergeticSilver"],"name":"充能银滚珠","tr":"充能银滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25408":{"oreDict":["roundVividAlloy"],"name":"生动合金滚珠","tr":"生动合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9025":{"oreDict":["nuggetPotassium"],"name":"钾粒","tr":"钾粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9027":{"oreDict":["nuggetScandium"],"name":"钪粒","tr":"钪粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9028":{"oreDict":["nuggetTitanium"],"name":"钛粒","tr":"钛粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9029":{"oreDict":["nuggetVanadium"],"name":"钒粒","tr":"钒粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9030":{"oreDict":["nuggetChrome"],"name":"铬粒","tr":"铬粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9031":{"oreDict":["nuggetManganese"],"name":"锰粒","tr":"锰粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9032":{"oreDict":["nuggetAnyIron"," nuggetIron"],"name":"铁粒","tr":"铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9033":{"oreDict":["nuggetCobalt"],"name":"钴粒","tr":"钴粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9034":{"oreDict":["nuggetNickel"],"name":"镍粒","tr":"镍粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9035":{"oreDict":["nuggetCopper"," nuggetAnyCopper"],"name":"铜粒","tr":"铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9036":{"oreDict":["nuggetZinc"],"name":"锌粒","tr":"锌粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9037":{"oreDict":["nuggetGallium"],"name":"镓粒","tr":"镓粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9039":{"oreDict":["nuggetArsenic"],"name":"砷粒","tr":"砷粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9043":{"oreDict":["nuggetRubidium"],"name":"铷粒","tr":"铷粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9045":{"oreDict":["nuggetYttrium"],"name":"钇粒","tr":"钇粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9047":{"oreDict":["nuggetNiobium"],"name":"铌粒","tr":"铌粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9048":{"oreDict":["nuggetMolybdenum"],"name":"钼粒","tr":"钼粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9052":{"oreDict":["nuggetPalladium"],"name":"钯粒","tr":"钯粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9054":{"oreDict":["nuggetSilver"],"name":"银粒","tr":"银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9056":{"oreDict":["nuggetIndium"],"name":"铟粒","tr":"铟粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9057":{"oreDict":["nuggetTin"],"name":"锡粒","tr":"锡粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9058":{"oreDict":["nuggetAntimony"],"name":"锑粒","tr":"锑粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9059":{"oreDict":["nuggetTellurium"],"name":"碲粒","tr":"碲粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9062":{"oreDict":["nuggetCaesium"],"name":"铯粒","tr":"铯粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9063":{"oreDict":["nuggetBarium"],"name":"钡粒","tr":"钡粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9064":{"oreDict":["nuggetLanthanum"],"name":"镧粒","tr":"镧粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9065":{"oreDict":["nuggetCerium"],"name":"铈粒","tr":"铈粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9066":{"oreDict":["nuggetPraseodymium"],"name":"镨粒","tr":"镨粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9067":{"oreDict":["nuggetNeodymium"],"name":"钕粒","tr":"钕粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9068":{"oreDict":["nuggetPromethium"],"name":"钷粒","tr":"钷粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9069":{"oreDict":["nuggetSamarium"],"name":"钐粒","tr":"钐粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9070":{"oreDict":["nuggetEuropium"],"name":"铕粒","tr":"铕粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9071":{"oreDict":["nuggetGadolinium"],"name":"钆粒","tr":"钆粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9072":{"oreDict":["nuggetTerbium"],"name":"铽粒","tr":"铽粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9073":{"oreDict":["nuggetDysprosium"],"name":"镝粒","tr":"镝粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9074":{"oreDict":["nuggetHolmium"],"name":"钬粒","tr":"钬粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9075":{"oreDict":["nuggetErbium"],"name":"铒粒","tr":"铒粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9076":{"oreDict":["nuggetThulium"],"name":"铥粒","tr":"铥粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9077":{"oreDict":["nuggetYtterbium"],"name":"镱粒","tr":"镱粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9078":{"oreDict":["nuggetLutetium"],"name":"镥粒","tr":"镥粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9080":{"oreDict":["nuggetTantalum"],"name":"钽粒","tr":"钽粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9081":{"oreDict":["nuggetTungsten"],"name":"钨粒","tr":"钨粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9083":{"oreDict":["nuggetOsmium"],"name":"锇粒","tr":"锇粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9084":{"oreDict":["nuggetIridium"],"name":"铱粒","tr":"铱粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9085":{"oreDict":["nuggetPlatinum"],"name":"铂粒","tr":"铂粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25470":{"oreDict":["roundEpoxid"],"name":"环氧树脂滚珠","tr":"环氧树脂滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25471":{"oreDict":["roundSilicone"," roundAnyRubber"," roundAnySyntheticRubber"],"name":"硅橡胶滚珠","tr":"硅橡胶滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25472":{"oreDict":["roundPolycaprolactam"],"name":"聚己内酰胺滚珠","tr":"聚己内酰胺滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9089":{"oreDict":["nuggetLead"],"name":"铅粒","tr":"铅粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25473":{"oreDict":["roundPolytetrafluoroethylene"],"name":"聚四氟乙烯滚珠","tr":"聚四氟乙烯滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9090":{"oreDict":["nuggetBismuth"],"name":"铋粒","tr":"铋粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9096":{"oreDict":["nuggetThorium"],"name":"钍粒","tr":"钍粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9097":{"oreDict":["nuggetUranium235"],"name":"铀-235粒","tr":"铀-235粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9098":{"oreDict":["nuggetUranium"],"name":"铀-238粒","tr":"铀-238粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9100":{"oreDict":["nuggetPlutonium"],"name":"钚-239粒","tr":"钚-239粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9101":{"oreDict":["nuggetPlutonium241"],"name":"钚-241粒","tr":"钚-241粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25485":{"oreDict":["roundAlduorite"],"name":"神秘蓝金滚珠","tr":"神秘蓝金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9103":{"oreDict":["nuggetAmericium"],"name":"镅粒","tr":"镅粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25488":{"oreDict":["roundRubracium"],"name":"褐铜滚珠","tr":"褐铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25489":{"oreDict":["roundVulcanite"],"name":"胶木滚珠","tr":"胶木滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17300":{"oreDict":["plateBronze"," plateAnyBronze"],"name":"青铜板","tr":"青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17301":{"oreDict":["plateBrass"],"name":"黄铜板","tr":"黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17302":{"oreDict":["plateInvar"],"name":"殷钢板","tr":"殷钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9111":{"oreDict":["nuggetTengamPurified"],"name":"纯镃粒","tr":"纯镃粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17303":{"oreDict":["plateElectrum"],"name":"琥珀金板","tr":"琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9112":{"oreDict":["nuggetTengamAttuned"],"name":"谐镃粒","tr":"谐镃粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17304":{"oreDict":["plateWroughtIron"," plateAnyIron"],"name":"锻铁板","tr":"锻铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17305":{"oreDict":["plateSteel"],"name":"钢板","tr":"钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17306":{"oreDict":["plateStainlessSteel"],"name":"不锈钢板","tr":"不锈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17307":{"oreDict":["platePigIron"," plateAnyIron"],"name":"生铁板","tr":"生铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17308":{"oreDict":["plateRedAlloy"],"name":"红色合金板","tr":"红色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17309":{"oreDict":["plateBlueAlloy"],"name":"蓝色合金板","tr":"蓝色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17310":{"oreDict":["plateCupronickel"],"name":"白铜板","tr":"白铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17311":{"oreDict":["plateNichrome"],"name":"镍铬合金板","tr":"镍铬合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17312":{"oreDict":["plateKanthal"],"name":"坎塔尔合金板","tr":"坎塔尔合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17313":{"oreDict":["plateMagnalium"],"name":"镁铝合金板","tr":"镁铝合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17314":{"oreDict":["plateSolderingAlloy"],"name":"焊锡板","tr":"焊锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17315":{"oreDict":["plateBatteryAlloy"],"name":"电池合金板","tr":"电池合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17316":{"oreDict":["plateTungstenSteel"],"name":"钨钢板","tr":"钨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17317":{"oreDict":["plateOsmiridium"],"name":"铱锇合金板","tr":"铱锇合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17318":{"oreDict":["plateSunnarium"],"name":"阳光化合物板","tr":"阳光化合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17319":{"oreDict":["plateAdamantium"],"name":"精金板","tr":"精金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17320":{"oreDict":["plateElectrumFlux"],"name":"通流琥珀金板","tr":"通流琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9129":{"oreDict":["nuggetNeutronium"],"name":"中子粒","tr":"中子粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17321":{"oreDict":["plateEnderium"],"name":"末影(te)板","tr":"末影(te)板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9131":{"oreDict":["nuggetSuperconductorUIVBase"],"name":"UIV超导粗胚粒","tr":"UIV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17323":{"oreDict":["plateInfusedGold"],"name":"注魔金板","tr":"注魔金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17324":{"oreDict":["plateNaquadah"],"name":"硅岩板","tr":"硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17325":{"oreDict":["plateNaquadahAlloy"],"name":"硅岩合金板","tr":"硅岩合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9134":{"oreDict":["nuggetSuperconductorUMVBase"],"name":"UMV超导粗胚粒","tr":"UMV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17326":{"oreDict":["plateNaquadahEnriched"],"name":"富集硅岩板","tr":"富集硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17327":{"oreDict":["plateNaquadria"],"name":"超能硅岩板","tr":"超能硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17328":{"oreDict":["plateDuranium"],"name":"铿铀板","tr":"铿铀板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17329":{"oreDict":["plateTritanium"],"name":"三钛板","tr":"三钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25521":{"oreDict":["roundForce"],"name":"力量滚珠","tr":"力量滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17330":{"oreDict":["plateThaumium"],"name":"神秘板","tr":"神秘板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9139":{"oreDict":["nuggetUniversium"],"name":"宇宙素粒","tr":"宇宙素粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17331":{"oreDict":["plateMithril"],"name":"秘银板","tr":"秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9141":{"oreDict":["nuggetEternity"],"name":"永恒粒","tr":"永恒粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17333":{"oreDict":["plateAstralSilver"],"name":"星辰银板","tr":"星辰银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17334":{"oreDict":["plateBlackSteel"],"name":"黑钢板","tr":"黑钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9143":{"oreDict":["nuggetMagmatter"],"name":"磁物质粒","tr":"磁物质粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17335":{"oreDict":["plateDamascusSteel"],"name":"大马士革钢板","tr":"大马士革钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17336":{"oreDict":["plateShadowIron"],"name":"暗影铁板","tr":"暗影铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17337":{"oreDict":["plateShadowSteel"],"name":"暗影钢板","tr":"暗影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25529":{"oreDict":["roundVinteum"],"name":"温特姆滚珠","tr":"温特姆滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17338":{"oreDict":["plateIronWood"],"name":"铁木板","tr":"铁木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17339":{"oreDict":["plateSteeleaf"],"name":"钢叶板","tr":"钢叶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17340":{"oreDict":["plateMeteoricIron"],"name":"陨铁板","tr":"陨铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17341":{"oreDict":["plateMeteoricSteel"],"name":"陨钢板","tr":"陨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17342":{"oreDict":["plateDarkIron"],"name":"玄铁板","tr":"玄铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17343":{"oreDict":["plateCobaltBrass"],"name":"钴黄铜板","tr":"钴黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17344":{"oreDict":["plateUltimet"],"name":"哈氏合金板","tr":"哈氏合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17345":{"oreDict":["plateAnyCopper"," plateAnnealedCopper"],"name":"退火铜板","tr":"退火铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17346":{"oreDict":["plateFierySteel"],"name":"炽热的钢板","tr":"炽热的钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17347":{"oreDict":["plateFirestone"],"name":"火石板","tr":"火石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17348":{"oreDict":["plateRedSteel"],"name":"红钢板","tr":"红钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17349":{"oreDict":["plateBlueSteel"],"name":"蓝钢板","tr":"蓝钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17350":{"oreDict":["plateSterlingSilver"],"name":"标准纯银板","tr":"标准纯银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17351":{"oreDict":["plateRoseGold"],"name":"玫瑰金板","tr":"玫瑰金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17352":{"oreDict":["plateBlackBronze"],"name":"黑青铜板","tr":"黑青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17353":{"oreDict":["plateBismuthBronze"],"name":"铋青铜板","tr":"铋青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17354":{"oreDict":["plateIronMagnetic"],"name":"磁化铁板","tr":"磁化铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17355":{"oreDict":["plateSteelMagnetic"],"name":"磁化钢板","tr":"磁化钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17356":{"oreDict":["plateNeodymiumMagnetic"],"name":"磁化钕板","tr":"磁化钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17357":{"oreDict":["plateVanadiumGallium"],"name":"钒镓合金板","tr":"钒镓合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17358":{"oreDict":["plateYttriumBariumCuprate"],"name":"钇钡铜氧板","tr":"钇钡铜氧板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17359":{"oreDict":["plateNiobiumNitride"],"name":"氮化铌板","tr":"氮化铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17360":{"oreDict":["plateNiobiumTitanium"],"name":"铌钛合金板","tr":"铌钛合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17361":{"oreDict":["plateChromiumDioxide"],"name":"二氧化铬板","tr":"二氧化铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17362":{"oreDict":["plateKnightmetal"],"name":"骑士金属板","tr":"骑士金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17363":{"oreDict":["plateTinAlloy"],"name":"锡铁合金板","tr":"锡铁合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17364":{"oreDict":["plateDarkSteel"],"name":"玄钢板","tr":"玄钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17365":{"oreDict":["plateElectricalSteel"],"name":"磁钢板","tr":"磁钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17366":{"oreDict":["plateEnergeticAlloy"],"name":"充能合金板","tr":"充能合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17367":{"oreDict":["plateVibrantAlloy"],"name":"脉冲合金板","tr":"脉冲合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17368":{"oreDict":["plateShadow"],"name":"暗影金属板","tr":"暗影金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17369":{"oreDict":["plateConductiveIron"],"name":"导电铁板","tr":"导电铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17370":{"oreDict":["plateTungstenCarbide"],"name":"碳化钨板","tr":"碳化钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17371":{"oreDict":["plateVanadiumSteel"],"name":"钒钢板","tr":"钒钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17372":{"oreDict":["plateHSSG"],"name":"高速钢-G板","tr":"高速钢-G板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17373":{"oreDict":["plateHSSE"],"name":"高速钢-E板","tr":"高速钢-E板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17374":{"oreDict":["plateHSSS"],"name":"高速钢-S板","tr":"高速钢-S板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17378":{"oreDict":["platePulsatingIron"],"name":"脉冲铁板","tr":"脉冲铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17379":{"oreDict":["plateSoularium"],"name":"魂金板","tr":"魂金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17380":{"oreDict":["plateEnderiumBase"],"name":"末影粗胚板","tr":"末影粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17381":{"oreDict":["plateRedstoneAlloy"],"name":"红石合金板","tr":"红石合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17382":{"oreDict":["plateArdite"],"name":"阿迪特板","tr":"阿迪特板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17383":{"oreDict":["plateReinforced"],"name":"强化板","tr":"强化板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17384":{"oreDict":["plateGalgadorian"],"name":"混合晶板","tr":"混合晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25576":{"oreDict":["roundTPVAlloy"],"name":"钛铂钒合金滚珠","tr":"钛铂钒合金滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17385":{"oreDict":["plateEnhancedGalgadorian"],"name":"强化混合晶板","tr":"强化混合晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17386":{"oreDict":["plateManyullyn"],"name":"玛玉灵板","tr":"玛玉灵板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17387":{"oreDict":["plateMytryl"],"name":"深空秘银板","tr":"深空秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17388":{"oreDict":["plateBlackPlutonium"],"name":"黑钚板","tr":"黑钚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17389":{"oreDict":["plateCallistoIce"],"name":"木卫四冰板","tr":"木卫四冰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25581":{"oreDict":["roundTranscendentMetal"],"name":"超时空金属滚珠","tr":"超时空金属滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17390":{"oreDict":["plateLedox"],"name":"深铅板","tr":"深铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25582":{"oreDict":["roundEnrichedHolmium"],"name":"富集钬滚珠","tr":"富集钬滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17391":{"oreDict":["plateQuantium"],"name":"量子板","tr":"量子板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25583":{"oreDict":["roundMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质滚珠","tr":"磁流体约束恒星物质滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17392":{"oreDict":["plateDuralumin"],"name":"硬铝板","tr":"硬铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17393":{"oreDict":["plateOriharukon"],"name":"奥利哈钢板","tr":"奥利哈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25585":{"oreDict":["roundWhiteDwarfMatter"],"name":"白矮星物质滚珠","tr":"白矮星物质滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17394":{"oreDict":["plateInfinityCatalyst"],"name":"无尽催化剂板","tr":"无尽催化剂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25586":{"oreDict":["roundBlackDwarfMatter"],"name":"黑矮星物质滚珠","tr":"黑矮星物质滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17395":{"oreDict":["plateBedrockium"],"name":"基岩板","tr":"基岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25588":{"oreDict":["roundSpaceTime"],"name":"时空滚珠","tr":"时空滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9205":{"oreDict":["nuggetGaiaSpirit"],"name":"盖亚之魂粒","tr":"盖亚之魂粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17397":{"oreDict":["plateInfinity"],"name":"无尽板","tr":"无尽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17398":{"oreDict":["plateMysteriousCrystal"],"name":"神秘水晶板","tr":"神秘水晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17399":{"oreDict":["plateSamariumMagnetic"],"name":"磁化钐板","tr":"磁化钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17400":{"oreDict":["plateAlumite"],"name":"耐酸铝板","tr":"耐酸铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17401":{"oreDict":["plateEndSteel"],"name":"末影钢板","tr":"末影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17402":{"oreDict":["plateCrudeSteel"],"name":"复合粘土板","tr":"复合粘土板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17403":{"oreDict":["plateCrystallineAlloy"],"name":"晶化合金板","tr":"晶化合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17404":{"oreDict":["plateMelodicAlloy"],"name":"旋律合金板","tr":"旋律合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17405":{"oreDict":["plateStellarAlloy"],"name":"恒星合金板","tr":"恒星合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17406":{"oreDict":["plateCrystallinePinkSlime"],"name":"晶化粉红史莱姆板","tr":"晶化粉红史莱姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17407":{"oreDict":["plateEnergeticSilver"],"name":"充能银板","tr":"充能银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25599":{"oreDict":["roundPolybenzimidazole"],"name":"聚苯并咪唑滚珠","tr":"聚苯并咪唑滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17408":{"oreDict":["plateVividAlloy"],"name":"生动合金板","tr":"生动合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25610":{"oreDict":["roundEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂滚珠","tr":"纤维强化的环氧树脂滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25611":{"oreDict":["roundBorosilicateGlass"],"name":"硼玻璃滚珠","tr":"硼玻璃滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25613":{"oreDict":["roundNickelZincFerrite"],"name":"镍锌铁氧体滚珠","tr":"镍锌铁氧体滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25631":{"oreDict":["roundPolyphenyleneSulfide"],"name":"聚苯硫醚滚珠","tr":"聚苯硫醚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25635":{"oreDict":["roundStyreneButadieneRubber"," roundAnyRubber"," roundAnySyntheticRubber"],"name":"丁苯橡胶滚珠","tr":"丁苯橡胶滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25636":{"oreDict":["roundPolystyrene"],"name":"聚苯乙烯滚珠","tr":"聚苯乙烯滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25649":{"oreDict":["roundPolyvinylChloride"],"name":"聚氯乙烯滚珠","tr":"聚氯乙烯滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17470":{"oreDict":["plateEpoxid"],"name":"环氧树脂片","tr":"环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17471":{"oreDict":["plateSilicone"," plateAnyRubber"," plateAnySyntheticRubber"],"name":"硅橡胶片","tr":"硅橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17472":{"oreDict":["platePolycaprolactam"],"name":"聚己内酰胺片","tr":"聚己内酰胺片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17473":{"oreDict":["platePolytetrafluoroethylene"],"name":"聚四氟乙烯片","tr":"聚四氟乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17485":{"oreDict":["plateAlduorite"],"name":"神秘蓝金板","tr":"神秘蓝金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17488":{"oreDict":["plateRubracium"],"name":"褐铜板","tr":"褐铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17489":{"oreDict":["plateVulcanite"],"name":"胶木板","tr":"胶木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9300":{"oreDict":["nuggetAnyBronze"," nuggetBronze"],"name":"青铜粒","tr":"青铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9301":{"oreDict":["nuggetBrass"],"name":"黄铜粒","tr":"黄铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9302":{"oreDict":["nuggetInvar"],"name":"殷钢粒","tr":"殷钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9303":{"oreDict":["nuggetElectrum"],"name":"琥珀金粒","tr":"琥珀金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9304":{"oreDict":["nuggetWroughtIron"," nuggetAnyIron"],"name":"锻铁粒","tr":"锻铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9305":{"oreDict":["nuggetSteel"],"name":"钢粒","tr":"钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9306":{"oreDict":["nuggetStainlessSteel"],"name":"不锈钢粒","tr":"不锈钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9307":{"oreDict":["nuggetAnyIron"," nuggetPigIron"],"name":"生铁粒","tr":"生铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9308":{"oreDict":["nuggetRedAlloy"],"name":"红色合金粒","tr":"红色合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17500":{"oreDict":["plateDiamond"],"name":"钻石板","tr":"钻石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9309":{"oreDict":["nuggetBlueAlloy"],"name":"蓝色合金粒","tr":"蓝色合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17501":{"oreDict":["plateEmerald"],"name":"绿宝石板","tr":"绿宝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9310":{"oreDict":["nuggetCupronickel"],"name":"白铜粒","tr":"白铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17502":{"oreDict":["plateRuby"],"name":"红宝石板","tr":"红宝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9311":{"oreDict":["nuggetNichrome"],"name":"镍铬合金粒","tr":"镍铬合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17503":{"oreDict":["plateSapphire"],"name":"蓝宝石板","tr":"蓝宝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9312":{"oreDict":["nuggetKanthal"],"name":"坎塔尔合金粒","tr":"坎塔尔合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17504":{"oreDict":["plateGreenSapphire"],"name":"绿色蓝宝石板","tr":"绿色蓝宝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9313":{"oreDict":["nuggetMagnalium"],"name":"镁铝合金粒","tr":"镁铝合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17505":{"oreDict":["plateOlivine"],"name":"橄榄石板","tr":"橄榄石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9314":{"oreDict":["nuggetSolderingAlloy"],"name":"焊锡粒","tr":"焊锡粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17506":{"oreDict":["plateNetherStar"],"name":"下界之星板","tr":"下界之星板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9315":{"oreDict":["nuggetBatteryAlloy"],"name":"电池合金粒","tr":"电池合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17507":{"oreDict":["plateTopaz"],"name":"黄玉板","tr":"黄玉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9316":{"oreDict":["nuggetTungstenSteel"],"name":"钨钢粒","tr":"钨钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17508":{"oreDict":["plateTanzanite"],"name":"坦桑石板","tr":"坦桑石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9317":{"oreDict":["nuggetOsmiridium"],"name":"铱锇合金粒","tr":"铱锇合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17509":{"oreDict":["plateAmethyst"],"name":"紫水晶板","tr":"紫水晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9318":{"oreDict":["nuggetSunnarium"],"name":"阳光化合物粒","tr":"阳光化合物粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17510":{"oreDict":["plateOpal"],"name":"蛋白石板","tr":"蛋白石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9319":{"oreDict":["nuggetAdamantium"],"name":"精金粒","tr":"精金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17511":{"oreDict":["plateJasper"],"name":"碧玉板","tr":"碧玉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9320":{"oreDict":["nuggetElectrumFlux"],"name":"通流琥珀金粒","tr":"通流琥珀金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17512":{"oreDict":["plateFoolsRuby"],"name":"尖晶石板","tr":"尖晶石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9321":{"oreDict":["nuggetEnderium"],"name":"末影锭粒","tr":"末影锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17513":{"oreDict":["plateBlueTopaz"],"name":"蓝黄玉板","tr":"蓝黄玉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17514":{"oreDict":["plateAmber"],"name":"琥珀板","tr":"琥珀板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9323":{"oreDict":["nuggetInfusedGold"],"name":"注魔金粒","tr":"注魔金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17515":{"oreDict":["plateDilithium"],"name":"双锂板","tr":"双锂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9324":{"oreDict":["nuggetNaquadah"],"name":"硅岩粒","tr":"硅岩粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17516":{"oreDict":["plateCertusQuartz"],"name":"赛特斯石英板","tr":"赛特斯石英板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9325":{"oreDict":["nuggetNaquadahAlloy"],"name":"硅岩合金粒","tr":"硅岩合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9326":{"oreDict":["nuggetNaquadahEnriched"],"name":"富集硅岩粒","tr":"富集硅岩粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17518":{"oreDict":["plateForcicium"],"name":"力之宝石板","tr":"力之宝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9327":{"oreDict":["nuggetNaquadria"],"name":"超能硅岩粒","tr":"超能硅岩粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17519":{"oreDict":["plateForcillium"],"name":"力场宝石板","tr":"力场宝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9328":{"oreDict":["nuggetDuranium"],"name":"铿铀粒","tr":"铿铀粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17520":{"oreDict":["plateMonazite"],"name":"独居石板","tr":"独居石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9329":{"oreDict":["nuggetTritanium"],"name":"三钛粒","tr":"三钛粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17521":{"oreDict":["plateForce"],"name":"力量板","tr":"力量板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9330":{"oreDict":["nuggetThaumium"],"name":"神秘锭粒","tr":"神秘锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17522":{"oreDict":["plateNetherQuartz"],"name":"下界石英板","tr":"下界石英板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9331":{"oreDict":["nuggetMithril"],"name":"秘银粒","tr":"秘银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17523":{"oreDict":["plateQuartzite"],"name":"石英岩板","tr":"石英岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17524":{"oreDict":["plateLazurite"],"name":"蓝金石板","tr":"蓝金石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9333":{"oreDict":["nuggetAstralSilver"],"name":"星辰银粒","tr":"星辰银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17525":{"oreDict":["plateSodalite"],"name":"方钠石板","tr":"方钠石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9334":{"oreDict":["nuggetBlackSteel"],"name":"黑钢粒","tr":"黑钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17526":{"oreDict":["plateLapis"],"name":"青金石板","tr":"青金石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9335":{"oreDict":["nuggetDamascusSteel"],"name":"大马士革钢粒","tr":"大马士革钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17527":{"oreDict":["plateGarnetRed"],"name":"红石榴石板","tr":"红石榴石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9336":{"oreDict":["nuggetShadowIron"],"name":"暗影铁粒","tr":"暗影铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17528":{"oreDict":["plateGarnetYellow"],"name":"黄石榴石板","tr":"黄石榴石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9337":{"oreDict":["nuggetShadowSteel"],"name":"暗影钢粒","tr":"暗影钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17529":{"oreDict":["plateVinteum"],"name":"温特姆板","tr":"温特姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9338":{"oreDict":["nuggetIronWood"],"name":"铁木粒","tr":"铁木粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17530":{"oreDict":["plateApatite"],"name":"磷灰石板","tr":"磷灰石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9339":{"oreDict":["nuggetSteeleaf"],"name":"钢叶粒","tr":"钢叶粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17531":{"oreDict":["plateNiter"],"name":"硝石板","tr":"硝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9340":{"oreDict":["nuggetMeteoricIron"],"name":"陨铁粒","tr":"陨铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17532":{"oreDict":["plateEnderPearl"],"name":"末影珍珠板","tr":"末影珍珠板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9341":{"oreDict":["nuggetMeteoricSteel"],"name":"陨钢粒","tr":"陨钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17533":{"oreDict":["plateEnderEye"],"name":"末影之眼板","tr":"末影之眼板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9342":{"oreDict":["nuggetDarkIron"],"name":"玄铁粒","tr":"玄铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17534":{"oreDict":["plateTricalciumPhosphate"],"name":"磷酸三钙板","tr":"磷酸三钙板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9343":{"oreDict":["nuggetCobaltBrass"],"name":"钴黄铜粒","tr":"钴黄铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17535":{"oreDict":["plateCoal"],"name":"煤板","tr":"煤板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9344":{"oreDict":["nuggetUltimet"],"name":"哈氏合金粒","tr":"哈氏合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17536":{"oreDict":["plateCharcoal"],"name":"木炭板","tr":"木炭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9345":{"oreDict":["nuggetAnyCopper"," nuggetAnnealedCopper"],"name":"退火铜粒","tr":"退火铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17537":{"oreDict":["plateJade"],"name":"玉板","tr":"玉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9346":{"oreDict":["nuggetFierySteel"],"name":"炽热钢粒","tr":"炽热钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17538":{"oreDict":["plateLignite"],"name":"褐煤板","tr":"褐煤板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9348":{"oreDict":["nuggetRedSteel"],"name":"红钢粒","tr":"红钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17540":{"oreDict":["plateInfusedAir"],"name":"风之魔晶板","tr":"风之魔晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9349":{"oreDict":["nuggetBlueSteel"],"name":"蓝钢粒","tr":"蓝钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17541":{"oreDict":["plateInfusedFire"],"name":"火之魔晶板","tr":"火之魔晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9350":{"oreDict":["nuggetSterlingSilver"],"name":"标准纯银粒","tr":"标准纯银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17542":{"oreDict":["plateInfusedEarth"],"name":"地之魔晶板","tr":"地之魔晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9351":{"oreDict":["nuggetRoseGold"],"name":"玫瑰金粒","tr":"玫瑰金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17543":{"oreDict":["plateInfusedWater"],"name":"水之魔晶板","tr":"水之魔晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9352":{"oreDict":["nuggetBlackBronze"],"name":"黑青铜粒","tr":"黑青铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17544":{"oreDict":["plateInfusedEntropy"],"name":"混沌魔晶板","tr":"混沌魔晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9353":{"oreDict":["nuggetBismuthBronze"],"name":"铋青铜粒","tr":"铋青铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17545":{"oreDict":["plateInfusedOrder"],"name":"秩序魔晶板","tr":"秩序魔晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9354":{"oreDict":["nuggetIronMagnetic"],"name":"磁化铁粒","tr":"磁化铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9355":{"oreDict":["nuggetSteelMagnetic"],"name":"磁化钢粒","tr":"磁化钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9356":{"oreDict":["nuggetNeodymiumMagnetic"],"name":"磁化钕粒","tr":"磁化钕粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9357":{"oreDict":["nuggetVanadiumGallium"],"name":"钒镓合金粒","tr":"钒镓合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9358":{"oreDict":["nuggetYttriumBariumCuprate"],"name":"钇钡铜氧合金粒","tr":"钇钡铜氧合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9359":{"oreDict":["nuggetNiobiumNitride"],"name":"氮化铌粒","tr":"氮化铌粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9360":{"oreDict":["nuggetNiobiumTitanium"],"name":"铌钛合金粒","tr":"铌钛合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9361":{"oreDict":["nuggetChromiumDioxide"],"name":"二氧化铬粒","tr":"二氧化铬粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9362":{"oreDict":["nuggetKnightmetal"],"name":"骑士金属粒","tr":"骑士金属粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9363":{"oreDict":["nuggetTinAlloy"],"name":"锡铁合金粒","tr":"锡铁合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9364":{"oreDict":["nuggetDarkSteel"],"name":"玄钢粒","tr":"玄钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9365":{"oreDict":["nuggetElectricalSteel"],"name":"磁钢粒","tr":"磁钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9366":{"oreDict":["nuggetEnergeticAlloy"],"name":"充能合金粒","tr":"充能合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9367":{"oreDict":["nuggetVibrantAlloy"],"name":"脉冲合金粒","tr":"脉冲合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9368":{"oreDict":["nuggetShadow"],"name":"暗影粒","tr":"暗影粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9369":{"oreDict":["nuggetConductiveIron"],"name":"导电铁粒","tr":"导电铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9370":{"oreDict":["nuggetTungstenCarbide"],"name":"碳化钨粒","tr":"碳化钨粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9371":{"oreDict":["nuggetVanadiumSteel"],"name":"钒钢粒","tr":"钒钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9372":{"oreDict":["nuggetHSSG"],"name":"高速钢-G粒","tr":"高速钢-G粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9373":{"oreDict":["nuggetHSSE"],"name":"高速钢-E粒","tr":"高速钢-E粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9374":{"oreDict":["nuggetHSSS"],"name":"高速钢-S粒","tr":"高速钢-S粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9378":{"oreDict":["nuggetPulsatingIron"],"name":"脉冲铁粒","tr":"脉冲铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9379":{"oreDict":["nuggetSoularium"],"name":"魂金粒","tr":"魂金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9380":{"oreDict":["nuggetEnderiumBase"],"name":"末影粗胚粒","tr":"末影粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9381":{"oreDict":["nuggetRedstoneAlloy"],"name":"红石合金粒","tr":"红石合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25765":{"oreDict":["roundKevlar"],"name":"凯芙拉滚珠","tr":"凯芙拉滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9382":{"oreDict":["nuggetArdite"],"name":"阿迪特粒","tr":"阿迪特粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9383":{"oreDict":["nuggetReinforced"],"name":"强化金属粒","tr":"强化金属粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9384":{"oreDict":["nuggetGalgadorian"],"name":"混合晶锭粒","tr":"混合晶锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17576":{"oreDict":["plateTPVAlloy"],"name":"钛铂钒合金板","tr":"钛铂钒合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9385":{"oreDict":["nuggetEnhancedGalgadorian"],"name":"强化混合晶锭粒","tr":"强化混合晶锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9386":{"oreDict":["nuggetManyullyn"],"name":"玛玉灵粒","tr":"玛玉灵粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25770":{"oreDict":["roundHeeEndium"],"name":"终末锭滚珠","tr":"终末锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9387":{"oreDict":["nuggetMytryl"],"name":"深空秘银粒","tr":"深空秘银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9388":{"oreDict":["nuggetBlackPlutonium"],"name":"黑钚粒","tr":"黑钚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25772":{"oreDict":["roundNickelAluminide"],"name":"铝化镍滚珠","tr":"铝化镍滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9389":{"oreDict":["nuggetCallistoIce"],"name":"木卫四冰粒","tr":"木卫四冰粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17581":{"oreDict":["plateTranscendentMetal"],"name":"超时空金属板","tr":"超时空金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9390":{"oreDict":["nuggetLedox"],"name":"深铅粒","tr":"深铅粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17582":{"oreDict":["plateEnrichedHolmium"],"name":"富集钬板","tr":"富集钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9391":{"oreDict":["nuggetQuantium"],"name":"量子锭粒","tr":"量子锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17583":{"oreDict":["plateMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质板","tr":"磁流体约束恒星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9392":{"oreDict":["nuggetDuralumin"],"name":"硬铝粒","tr":"硬铝粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9393":{"oreDict":["nuggetOriharukon"],"name":"奥利哈钢粒","tr":"奥利哈钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17585":{"oreDict":["plateWhiteDwarfMatter"],"name":"白矮星物质板","tr":"白矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9394":{"oreDict":["nuggetInfinityCatalyst"],"name":"无尽催化剂粒","tr":"无尽催化剂粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17586":{"oreDict":["plateBlackDwarfMatter"],"name":"黑矮星物质板","tr":"黑矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9395":{"oreDict":["nuggetBedrockium"],"name":"基岩粒","tr":"基岩粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17588":{"oreDict":["plateSpaceTime"],"name":"时空板","tr":"时空板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9397":{"oreDict":["nuggetInfinity"],"name":"无尽粒","tr":"无尽粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9398":{"oreDict":["nuggetMysteriousCrystal"],"name":"神秘水晶粒","tr":"神秘水晶粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9399":{"oreDict":["nuggetSamariumMagnetic"],"name":"磁化钐粒","tr":"磁化钐粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9400":{"oreDict":["nuggetAlumite"],"name":"耐酸铝粒","tr":"耐酸铝粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9401":{"oreDict":["nuggetEndSteel"],"name":"末影钢粒","tr":"末影钢粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9402":{"oreDict":["nuggetCrudeSteel"],"name":"复合粘土粒","tr":"复合粘土粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9403":{"oreDict":["nuggetCrystallineAlloy"],"name":"晶化合金粒","tr":"晶化合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9404":{"oreDict":["nuggetMelodicAlloy"],"name":"旋律合金粒","tr":"旋律合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9405":{"oreDict":["nuggetStellarAlloy"],"name":"恒星合金粒","tr":"恒星合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9406":{"oreDict":["nuggetCrystallinePinkSlime"],"name":"晶化粉红史莱姆粒","tr":"晶化粉红史莱姆粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9407":{"oreDict":["nuggetEnergeticSilver"],"name":"充能银粒","tr":"充能银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17599":{"oreDict":["platePolybenzimidazole"],"name":"聚苯并咪唑板","tr":"聚苯并咪唑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9408":{"oreDict":["nuggetVividAlloy"],"name":"生动合金粒","tr":"生动合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17610":{"oreDict":["plateEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂片","tr":"纤维强化的环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17611":{"oreDict":["plateBorosilicateGlass"],"name":"硼玻璃板","tr":"硼玻璃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25804":{"oreDict":["roundObsidian"],"name":"黑曜石滚珠","tr":"黑曜石滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17613":{"oreDict":["plateNickelZincFerrite"],"name":"镍锌铁氧体板","tr":"镍锌铁氧体板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25809":{"oreDict":["roundWood"],"name":"木滚珠","tr":"木滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17631":{"oreDict":["platePolyphenyleneSulfide"],"name":"聚苯硫醚板","tr":"聚苯硫醚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17635":{"oreDict":["plateStyreneButadieneRubber"," plateAnyRubber"," plateAnySyntheticRubber"],"name":"丁苯橡胶片","tr":"丁苯橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17636":{"oreDict":["platePolystyrene"],"name":"聚苯乙烯片","tr":"聚苯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25829":{"oreDict":["roundDeepIron"],"name":"深渊铁滚珠","tr":"深渊铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17649":{"oreDict":["platePolyvinylChloride"],"name":"聚氯乙烯片","tr":"聚氯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9470":{"oreDict":["nuggetEpoxid"],"name":"环氧树脂颗粒","tr":"环氧树脂颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9471":{"oreDict":["nuggetSilicone"," nuggetAnyRubber"," nuggetAnySyntheticRubber"],"name":"硅橡胶颗粒","tr":"硅橡胶颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9472":{"oreDict":["nuggetPolycaprolactam"],"name":"聚己内酰胺颗粒","tr":"聚己内酰胺颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25856":{"oreDict":["roundSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)滚珠","tr":"太阳能级硅(多晶硅)滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9473":{"oreDict":["nuggetPolytetrafluoroethylene"],"name":"聚四氟乙烯颗粒","tr":"聚四氟乙烯颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25868":{"oreDict":["roundTrinium"],"name":"三元金属滚珠","tr":"三元金属滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9485":{"oreDict":["nuggetAlduorite"],"name":"神秘蓝金粒","tr":"神秘蓝金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9488":{"oreDict":["nuggetRubracium"],"name":"褐铜粒","tr":"褐铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9489":{"oreDict":["nuggetVulcanite"],"name":"胶木粒","tr":"胶木粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25874":{"oreDict":["roundPlastic"],"name":"聚乙烯滚珠","tr":"聚乙烯滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25880":{"oreDict":["roundAnyRubber"," roundRubber"],"name":"橡胶滚珠","tr":"橡胶滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25884":{"oreDict":["roundDesh"],"name":"戴斯滚珠","tr":"戴斯滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25889":{"oreDict":["roundWoodSealed"],"name":"蜡封木滚珠","tr":"蜡封木滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9521":{"oreDict":["nuggetForce"],"name":"力量粒","tr":"力量粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25912":{"oreDict":["roundChrysotile"],"name":"石棉滚珠","tr":"石棉滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9529":{"oreDict":["nuggetVinteum"],"name":"温特姆粒","tr":"温特姆粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25913":{"oreDict":["roundRealgar"],"name":"雄黄滚珠","tr":"雄黄滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25951":{"oreDict":["roundVyroxeres"],"name":"幽冥剧毒结晶滚珠","tr":"幽冥剧毒结晶滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25952":{"oreDict":["roundCeruclase"],"name":"暗影秘银滚珠","tr":"暗影秘银滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25956":{"oreDict":["roundTartarite"],"name":"溶火之石滚珠","tr":"溶火之石滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17765":{"oreDict":["plateKevlar"],"name":"凯芙拉板","tr":"凯芙拉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9576":{"oreDict":["nuggetTPVAlloy"],"name":"钛铂钒合金粒","tr":"钛铂钒合金粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17770":{"oreDict":["plateHeeEndium"],"name":"终末板","tr":"终末板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17772":{"oreDict":["plateNickelAluminide"],"name":"铝化镍板","tr":"铝化镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9581":{"oreDict":["nuggetTranscendentMetal"],"name":"超时空金属粒","tr":"超时空金属粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9582":{"oreDict":["nuggetEnrichedHolmium"],"name":"富集钬粒","tr":"富集钬粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25966":{"oreDict":["roundOrichalcum"],"name":"山铜滚珠","tr":"山铜滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9583":{"oreDict":["nuggetMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质粒","tr":"磁流体约束恒星物质粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9585":{"oreDict":["nuggetWhiteDwarfMatter"],"name":"白矮星物质粒","tr":"白矮星物质粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9586":{"oreDict":["nuggetBlackDwarfMatter"],"name":"黑矮星物质粒","tr":"黑矮星物质粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25970":{"oreDict":["roundVoid"],"name":"虚空锭滚珠","tr":"虚空锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9588":{"oreDict":["nuggetSpaceTime"],"name":"时空粒","tr":"时空粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25974":{"oreDict":["roundSuperconductorUEVBase"],"name":"UEV超导粗胚滚珠","tr":"UEV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25975":{"oreDict":["roundDraconium"],"name":"龙锭滚珠","tr":"龙锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25976":{"oreDict":["roundDraconiumAwakened"],"name":"觉醒龙锭滚珠","tr":"觉醒龙锭滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25977":{"oreDict":["roundBloodInfusedIron"],"name":"注血铁滚珠","tr":"注血铁滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25978":{"oreDict":["roundIchorium"],"name":"灵宝滚珠","tr":"灵宝滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25979":{"oreDict":["roundRadoxPoly"],"name":"拉多X聚合物滚珠","tr":"拉多X聚合物滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25980":{"oreDict":["roundGalliumArsenide"],"name":"砷化镓滚珠","tr":"砷化镓滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25981":{"oreDict":["roundIndiumGalliumPhosphide"],"name":"磷化铟镓滚珠","tr":"磷化铟镓滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25982":{"oreDict":["roundCosmicNeutronium"],"name":"宇宙中子态素滚珠","tr":"宇宙中子态素滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9599":{"oreDict":["nuggetPolybenzimidazole"],"name":"聚苯并咪唑粒","tr":"聚苯并咪唑粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25984":{"oreDict":["roundFlerovium_GT5U"],"name":"滚珠","tr":"滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25985":{"oreDict":["roundLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚滚珠","tr":"UHV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25986":{"oreDict":["roundLongasssuperconductornameforuvwire"],"name":"UV超导粗胚滚珠","tr":"UV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25987":{"oreDict":["roundPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚滚珠","tr":"MV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25988":{"oreDict":["roundTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚滚珠","tr":"HV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25989":{"oreDict":["roundUraniumtriplatinid"],"name":"EV超导粗胚滚珠","tr":"EV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25990":{"oreDict":["roundVanadiumtriindinid"],"name":"IV超导粗胚滚珠","tr":"IV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25991":{"oreDict":["roundTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚滚珠","tr":"LuV超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"25992":{"oreDict":["roundTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚滚珠","tr":"ZPM超导粗胚滚珠","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9610":{"oreDict":["nuggetEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂颗粒","tr":"纤维强化的环氧树脂颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9611":{"oreDict":["nuggetBorosilicateGlass"],"name":"硼玻璃颗粒","tr":"硼玻璃颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17804":{"oreDict":["plateObsidian"],"name":"黑曜石板","tr":"黑曜石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9613":{"oreDict":["nuggetNickelZincFerrite"],"name":"镍锌铁氧体粒","tr":"镍锌铁氧体粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17809":{"oreDict":["plateWood"," plankWood"],"name":"木板","tr":"木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17810":{"oreDict":["plateRedstone"],"name":"红石板","tr":"红石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17811":{"oreDict":["plateGlowstone"],"name":"萤石板","tr":"萤石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17812":{"oreDict":["plateElectrotine"],"name":"蓝石板","tr":"蓝石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26006":{"oreDict":["boltLithium"],"name":"锂螺栓","tr":"锂螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26008":{"oreDict":["boltBeryllium"],"name":"铍螺栓","tr":"铍螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26010":{"oreDict":["boltCarbon"],"name":"碳螺栓","tr":"碳螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9631":{"oreDict":["nuggetPolyphenyleneSulfide"],"name":"聚苯硫醚粒","tr":"聚苯硫醚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26018":{"oreDict":["boltMagnesium"],"name":"镁螺栓","tr":"镁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9635":{"oreDict":["nuggetAnyRubber"," nuggetAnySyntheticRubber"," nuggetStyreneButadieneRubber"],"name":"丁苯橡胶颗粒","tr":"丁苯橡胶颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26019":{"oreDict":["boltAluminium"],"name":"铝螺栓","tr":"铝螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9636":{"oreDict":["nuggetPolystyrene"],"name":"聚苯乙烯颗粒","tr":"聚苯乙烯颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26020":{"oreDict":["boltSilicon"],"name":"硅螺栓","tr":"硅螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17829":{"oreDict":["plateDeepIron"],"name":"深渊铁板","tr":"深渊铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26025":{"oreDict":["boltPotassium"],"name":"钾螺栓","tr":"钾螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26027":{"oreDict":["boltScandium"],"name":"钪螺栓","tr":"钪螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26028":{"oreDict":["boltTitanium"],"name":"钛螺栓","tr":"钛螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26029":{"oreDict":["boltVanadium"],"name":"钒螺栓","tr":"钒螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26030":{"oreDict":["boltChrome"],"name":"铬螺栓","tr":"铬螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26031":{"oreDict":["boltManganese"],"name":"锰螺栓","tr":"锰螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26032":{"oreDict":["boltIron"," boltAnyIron"],"name":"铁螺栓","tr":"铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9649":{"oreDict":["nuggetPolyvinylChloride"],"name":"聚氯乙烯颗粒","tr":"聚氯乙烯颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26033":{"oreDict":["boltCobalt"],"name":"钴螺栓","tr":"钴螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26034":{"oreDict":["boltNickel"],"name":"镍螺栓","tr":"镍螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26035":{"oreDict":["boltCopper"," boltAnyCopper"],"name":"铜螺栓","tr":"铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17844":{"oreDict":["plateBasalt"],"name":"玄武岩板","tr":"玄武岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26036":{"oreDict":["boltZinc"],"name":"锌螺栓","tr":"锌螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17845":{"oreDict":["plateMarble"],"name":"大理石板","tr":"大理石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26037":{"oreDict":["boltGallium"],"name":"镓螺栓","tr":"镓螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26039":{"oreDict":["boltArsenic"],"name":"砷螺栓","tr":"砷螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17849":{"oreDict":["plateGraniteBlack"],"name":"黑花岗岩板","tr":"黑花岗岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17850":{"oreDict":["plateGraniteRed"],"name":"红花岗岩板","tr":"红花岗岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26043":{"oreDict":["boltRubidium"],"name":"铷螺栓","tr":"铷螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26045":{"oreDict":["boltYttrium"],"name":"钇螺栓","tr":"钇螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26047":{"oreDict":["boltNiobium"],"name":"铌螺栓","tr":"铌螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17856":{"oreDict":["plateSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)板","tr":"太阳能级硅(多晶硅)板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26048":{"oreDict":["boltMolybdenum"],"name":"钼螺栓","tr":"钼螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26052":{"oreDict":["boltPalladium"],"name":"钯螺栓","tr":"钯螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26054":{"oreDict":["boltSilver"],"name":"银螺栓","tr":"银螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26056":{"oreDict":["boltIndium"],"name":"铟螺栓","tr":"铟螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26057":{"oreDict":["boltTin"],"name":"锡螺栓","tr":"锡螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26058":{"oreDict":["boltAntimony"],"name":"锑螺栓","tr":"锑螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26059":{"oreDict":["boltTellurium"],"name":"碲螺栓","tr":"碲螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17868":{"oreDict":["plateTrinium"],"name":"三元金属板","tr":"三元金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26062":{"oreDict":["boltCaesium"],"name":"铯螺栓","tr":"铯螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26063":{"oreDict":["boltBarium"],"name":"钡螺栓","tr":"钡螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26064":{"oreDict":["boltLanthanum"],"name":"镧螺栓","tr":"镧螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26065":{"oreDict":["boltCerium"],"name":"铈螺栓","tr":"铈螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17874":{"oreDict":["platePlastic"," sheetPlastic"],"name":"聚乙烯片","tr":"聚乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26066":{"oreDict":["boltPraseodymium"],"name":"镨螺栓","tr":"镨螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26067":{"oreDict":["boltNeodymium"],"name":"钕螺栓","tr":"钕螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26068":{"oreDict":["boltPromethium"],"name":"钷螺栓","tr":"钷螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26069":{"oreDict":["boltSamarium"],"name":"钐螺栓","tr":"钐螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26070":{"oreDict":["boltEuropium"],"name":"铕螺栓","tr":"铕螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26071":{"oreDict":["boltGadolinium"],"name":"钆螺栓","tr":"钆螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17880":{"oreDict":["plateAnyRubber"," plateRubber"," sheetRubber"],"name":"橡胶片","tr":"橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26072":{"oreDict":["boltTerbium"],"name":"铽螺栓","tr":"铽螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26073":{"oreDict":["boltDysprosium"],"name":"镝螺栓","tr":"镝螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26074":{"oreDict":["boltHolmium"],"name":"钬螺栓","tr":"钬螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26075":{"oreDict":["boltErbium"],"name":"铒螺栓","tr":"铒螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17884":{"oreDict":["plateDesh"],"name":"戴斯板","tr":"戴斯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26076":{"oreDict":["boltThulium"],"name":"铥螺栓","tr":"铥螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26077":{"oreDict":["boltYtterbium"],"name":"镱螺栓","tr":"镱螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26078":{"oreDict":["boltLutetium"],"name":"镥螺栓","tr":"镥螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26080":{"oreDict":["boltTantalum"],"name":"钽螺栓","tr":"钽螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17889":{"oreDict":["plateWoodSealed"],"name":"蜡封木板","tr":"蜡封木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26081":{"oreDict":["boltTungsten"],"name":"钨螺栓","tr":"钨螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17890":{"oreDict":["plateGlass"],"name":"玻璃板","tr":"玻璃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26083":{"oreDict":["boltOsmium"],"name":"锇螺栓","tr":"锇螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26084":{"oreDict":["boltIridium"],"name":"铱螺栓","tr":"铱螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26085":{"oreDict":["boltPlatinum"],"name":"铂螺栓","tr":"铂螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26086":{"oreDict":["boltGold"],"name":"金螺栓","tr":"金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26089":{"oreDict":["boltLead"],"name":"铅螺栓","tr":"铅螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26090":{"oreDict":["boltBismuth"],"name":"铋螺栓","tr":"铋螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26096":{"oreDict":["boltThorium"],"name":"钍螺栓","tr":"钍螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26097":{"oreDict":["boltUranium235"],"name":"铀-235螺栓","tr":"铀-235螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26098":{"oreDict":["boltUranium"],"name":"铀-238螺栓","tr":"铀-238螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26100":{"oreDict":["boltPlutonium"],"name":"钚-239螺栓","tr":"钚-239螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26101":{"oreDict":["boltPlutonium241"],"name":"钚-241螺栓","tr":"钚-241螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26103":{"oreDict":["boltAmericium"],"name":"镅螺栓","tr":"镅螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17912":{"oreDict":["plateChrysotile"],"name":"白石棉板","tr":"白石棉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17913":{"oreDict":["plateRealgar"],"name":"雄黄板","tr":"雄黄板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26111":{"oreDict":["boltTengamPurified"],"name":"纯镃螺栓","tr":"纯镃螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26112":{"oreDict":["boltTengamAttuned"],"name":"谐镃螺栓","tr":"谐镃螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26129":{"oreDict":["boltNeutronium"],"name":"中子螺栓","tr":"中子螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26131":{"oreDict":["boltSuperconductorUIVBase"],"name":"UIV超导粗胚螺栓","tr":"UIV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26134":{"oreDict":["boltSuperconductorUMVBase"],"name":"UMV超导粗胚螺栓","tr":"UMV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17947":{"oreDict":["plateConcrete"],"name":"混凝土板","tr":"混凝土板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26139":{"oreDict":["boltUniversium"],"name":"宇宙素螺栓","tr":"宇宙素螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26141":{"oreDict":["boltEternity"],"name":"永恒螺栓","tr":"永恒螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17951":{"oreDict":["plateVyroxeres"],"name":"幽冥剧毒结晶板","tr":"幽冥剧毒结晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26143":{"oreDict":["boltMagmatter"],"name":"磁物质螺栓","tr":"磁物质螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17952":{"oreDict":["plateCeruclase"],"name":"暗影秘银板","tr":"暗影秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17956":{"oreDict":["plateTartarite"],"name":"溶火之石板","tr":"溶火之石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9765":{"oreDict":["nuggetKevlar"],"name":"凯芙拉粒","tr":"凯芙拉粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9770":{"oreDict":["nuggetHeeEndium"],"name":"终末锭粒","tr":"终末锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9772":{"oreDict":["nuggetNickelAluminide"],"name":"铝化镍粒","tr":"铝化镍粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17966":{"oreDict":["plateOrichalcum"],"name":"山铜板","tr":"山铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17970":{"oreDict":["plateVoid"],"name":"虚空板","tr":"虚空板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17974":{"oreDict":["plateSuperconductorUEVBase"],"name":"UEV超导粗胚板","tr":"UEV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17975":{"oreDict":["plateDraconium"],"name":"龙板","tr":"龙板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17976":{"oreDict":["plateDraconiumAwakened"],"name":"觉醒龙板","tr":"觉醒龙板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17977":{"oreDict":["plateBloodInfusedIron"],"name":"注血铁板","tr":"注血铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17978":{"oreDict":["plateIchorium"],"name":"灵宝板","tr":"灵宝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17979":{"oreDict":["plateRadoxPoly"],"name":"拉多X聚合物板","tr":"拉多X聚合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17980":{"oreDict":["plateGalliumArsenide"],"name":"砷化镓板","tr":"砷化镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17981":{"oreDict":["plateIndiumGalliumPhosphide"],"name":"磷化铟镓板","tr":"磷化铟镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17982":{"oreDict":["plateCosmicNeutronium"],"name":"宇宙中子态素板","tr":"宇宙中子态素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17984":{"oreDict":["plateFlerovium_GT5U"],"name":"板","tr":"板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17985":{"oreDict":["plateLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚板","tr":"UHV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17986":{"oreDict":["plateLongasssuperconductornameforuvwire"],"name":"UV超导粗胚板","tr":"UV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17987":{"oreDict":["platePentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚板","tr":"MV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17988":{"oreDict":["plateTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚板","tr":"HV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17989":{"oreDict":["plateUraniumtriplatinid"],"name":"EV超导粗胚板","tr":"EV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17990":{"oreDict":["plateVanadiumtriindinid"],"name":"IV超导粗胚板","tr":"IV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17991":{"oreDict":["plateTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚板","tr":"LuV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"17992":{"oreDict":["plateTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚板","tr":"ZPM超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9804":{"oreDict":["nuggetObsidian"],"name":"黑曜石粒","tr":"黑曜石粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9809":{"oreDict":["nuggetWood"],"name":"木颗粒","tr":"木颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18006":{"oreDict":["plateDoubleLithium"],"name":"双重锂板","tr":"双重锂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18008":{"oreDict":["plateDoubleBeryllium"],"name":"双重铍板","tr":"双重铍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26201":{"oreDict":["boltManasteel"],"name":"魔钢螺栓","tr":"魔钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18010":{"oreDict":["plateDoubleCarbon"],"name":"双重碳板","tr":"双重碳板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26202":{"oreDict":["boltTerrasteel"],"name":"泰拉钢螺栓","tr":"泰拉钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26203":{"oreDict":["boltElvenElementium"],"name":"源质钢螺栓","tr":"源质钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26205":{"oreDict":["boltGaiaSpirit"],"name":"盖亚之魂螺栓","tr":"盖亚之魂螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26206":{"oreDict":["boltLivingwood"],"name":"活木螺栓","tr":"活木螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26207":{"oreDict":["boltDreamwood"],"name":"梦之木螺栓","tr":"梦之木螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26208":{"oreDict":["boltManaDiamond"],"name":"魔力钻石螺栓","tr":"魔力钻石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26209":{"oreDict":["boltBotaniaDragonstone"],"name":"龙石螺栓","tr":"龙石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18018":{"oreDict":["plateDoubleMagnesium"],"name":"双重镁板","tr":"双重镁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18019":{"oreDict":["plateDoubleAluminium"],"name":"双重铝板","tr":"双重铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18020":{"oreDict":["plateDoubleSilicon"],"name":"双重硅板","tr":"双重硅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9829":{"oreDict":["nuggetDeepIron"],"name":"深渊铁粒","tr":"深渊铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18025":{"oreDict":["plateDoublePotassium"],"name":"双重钾板","tr":"双重钾板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18027":{"oreDict":["plateDoubleScandium"],"name":"双重钪板","tr":"双重钪板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18028":{"oreDict":["plateDoubleTitanium"],"name":"双重钛板","tr":"双重钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18029":{"oreDict":["plateDoubleVanadium"],"name":"双重钒板","tr":"双重钒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18030":{"oreDict":["plateDoubleChrome"],"name":"双重铬板","tr":"双重铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18031":{"oreDict":["plateDoubleManganese"],"name":"双重锰板","tr":"双重锰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18032":{"oreDict":["plateDoubleIron"," plateDoubleAnyIron"],"name":"双重铁板","tr":"双重铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18033":{"oreDict":["plateDoubleCobalt"],"name":"双重钴板","tr":"双重钴板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18034":{"oreDict":["plateDoubleNickel"],"name":"双重镍板","tr":"双重镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18035":{"oreDict":["plateDoubleCopper"," plateDoubleAnyCopper"],"name":"双重铜板","tr":"双重铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18036":{"oreDict":["plateDoubleZinc"],"name":"双重锌板","tr":"双重锌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18037":{"oreDict":["plateDoubleGallium"],"name":"双重镓板","tr":"双重镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18039":{"oreDict":["plateDoubleArsenic"],"name":"双重砷板","tr":"双重砷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18043":{"oreDict":["plateDoubleRubidium"],"name":"双重铷板","tr":"双重铷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18045":{"oreDict":["plateDoubleYttrium"],"name":"双重钇板","tr":"双重钇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18047":{"oreDict":["plateDoubleNiobium"],"name":"双重铌板","tr":"双重铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9856":{"oreDict":["nuggetSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)粒","tr":"太阳能级硅(多晶硅)粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18048":{"oreDict":["plateDoubleMolybdenum"],"name":"双重钼板","tr":"双重钼板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18052":{"oreDict":["plateDoublePalladium"],"name":"双重钯板","tr":"双重钯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18054":{"oreDict":["plateDoubleSilver"],"name":"双重银板","tr":"双重银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18056":{"oreDict":["plateDoubleIndium"],"name":"双重铟板","tr":"双重铟板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18057":{"oreDict":["plateDoubleTin"],"name":"双重锡板","tr":"双重锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18058":{"oreDict":["plateDoubleAntimony"],"name":"双重锑板","tr":"双重锑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18059":{"oreDict":["plateDoubleTellurium"],"name":"双重碲板","tr":"双重碲板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9868":{"oreDict":["nuggetTrinium"],"name":"三元金属粒","tr":"三元金属粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18062":{"oreDict":["plateDoubleCaesium"],"name":"双重铯板","tr":"双重铯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18063":{"oreDict":["plateDoubleBarium"],"name":"双重钡板","tr":"双重钡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18064":{"oreDict":["plateDoubleLanthanum"],"name":"双重镧板","tr":"双重镧板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18065":{"oreDict":["plateDoubleCerium"],"name":"双重铈板","tr":"双重铈板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9874":{"oreDict":["nuggetPlastic"],"name":"聚乙烯颗粒","tr":"聚乙烯颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18066":{"oreDict":["plateDoublePraseodymium"],"name":"双重镨板","tr":"双重镨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18067":{"oreDict":["plateDoubleNeodymium"],"name":"双重钕板","tr":"双重钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18068":{"oreDict":["plateDoublePromethium"],"name":"双重钷板","tr":"双重钷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18069":{"oreDict":["plateDoubleSamarium"],"name":"双重钐板","tr":"双重钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18070":{"oreDict":["plateDoubleEuropium"],"name":"双重铕板","tr":"双重铕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18071":{"oreDict":["plateDoubleGadolinium"],"name":"双重钆板","tr":"双重钆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9880":{"oreDict":["nuggetAnyRubber"," nuggetRubber"],"name":"橡胶颗粒","tr":"橡胶颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18072":{"oreDict":["plateDoubleTerbium"],"name":"双重铽板","tr":"双重铽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18073":{"oreDict":["plateDoubleDysprosium"],"name":"双重镝板","tr":"双重镝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18074":{"oreDict":["plateDoubleHolmium"],"name":"双重钬板","tr":"双重钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18075":{"oreDict":["plateDoubleErbium"],"name":"双重铒板","tr":"双重铒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9884":{"oreDict":["nuggetDesh"],"name":"戴斯粒","tr":"戴斯粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18076":{"oreDict":["plateDoubleThulium"],"name":"双重铥板","tr":"双重铥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18077":{"oreDict":["plateDoubleYtterbium"],"name":"双重镱板","tr":"双重镱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18078":{"oreDict":["plateDoubleLutetium"],"name":"双重镥板","tr":"双重镥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18080":{"oreDict":["plateDoubleTantalum"],"name":"双重钽板","tr":"双重钽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9889":{"oreDict":["nuggetWoodSealed"],"name":"蜡封木颗粒","tr":"蜡封木颗粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18081":{"oreDict":["plateDoubleTungsten"],"name":"双重钨板","tr":"双重钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18083":{"oreDict":["plateDoubleOsmium"],"name":"双重锇板","tr":"双重锇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18084":{"oreDict":["plateDoubleIridium"],"name":"双重铱板","tr":"双重铱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18085":{"oreDict":["plateDoublePlatinum"],"name":"双重铂板","tr":"双重铂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18086":{"oreDict":["plateDoubleGold"],"name":"双重金板","tr":"双重金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18089":{"oreDict":["plateDoubleLead"],"name":"双重铅板","tr":"双重铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18090":{"oreDict":["plateDoubleBismuth"],"name":"双重铋板","tr":"双重铋板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18096":{"oreDict":["plateDoubleThorium"],"name":"双重钍板","tr":"双重钍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18097":{"oreDict":["plateDoubleUranium235"],"name":"双重铀-235板","tr":"双重铀-235板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18098":{"oreDict":["plateDoubleUranium"],"name":"双重铀-238板","tr":"双重铀-238板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18100":{"oreDict":["plateDoublePlutonium"],"name":"双重钚-239板","tr":"双重钚-239板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18101":{"oreDict":["plateDoublePlutonium241"],"name":"双重钚-241板","tr":"双重钚-241板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18103":{"oreDict":["plateDoubleAmericium"],"name":"双重镅板","tr":"双重镅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9912":{"oreDict":["nuggetChrysotile"],"name":"石棉粒","tr":"石棉粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9913":{"oreDict":["nuggetRealgar"],"name":"雄黄粒","tr":"雄黄粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26300":{"oreDict":["boltBronze"," boltAnyBronze"],"name":"青铜螺栓","tr":"青铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26301":{"oreDict":["boltBrass"],"name":"黄铜螺栓","tr":"黄铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26302":{"oreDict":["boltInvar"],"name":"殷钢螺栓","tr":"殷钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18111":{"oreDict":["plateDoubleTengamPurified"],"name":"双重纯镃板","tr":"双重纯镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26303":{"oreDict":["boltElectrum"],"name":"琥珀金螺栓","tr":"琥珀金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18112":{"oreDict":["plateDoubleTengamAttuned"],"name":"双重谐镃板","tr":"双重谐镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26304":{"oreDict":["boltAnyIron"," boltWroughtIron"],"name":"锻铁螺栓","tr":"锻铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26305":{"oreDict":["boltSteel"],"name":"钢螺栓","tr":"钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26306":{"oreDict":["boltStainlessSteel"],"name":"不锈钢螺栓","tr":"不锈钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26307":{"oreDict":["boltPigIron"," boltAnyIron"],"name":"生铁螺栓","tr":"生铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26308":{"oreDict":["boltRedAlloy"],"name":"红色合金螺栓","tr":"红色合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26309":{"oreDict":["boltBlueAlloy"],"name":"蓝色合金螺栓","tr":"蓝色合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26310":{"oreDict":["boltCupronickel"],"name":"白铜螺栓","tr":"白铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26311":{"oreDict":["boltNichrome"],"name":"镍铬合金螺栓","tr":"镍铬合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26312":{"oreDict":["boltKanthal"],"name":"坎塔尔合金螺栓","tr":"坎塔尔合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26313":{"oreDict":["boltMagnalium"],"name":"镁铝合金螺栓","tr":"镁铝合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26314":{"oreDict":["boltSolderingAlloy"],"name":"焊锡螺栓","tr":"焊锡螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26315":{"oreDict":["boltBatteryAlloy"],"name":"电池合金螺栓","tr":"电池合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26316":{"oreDict":["boltTungstenSteel"],"name":"钨钢螺栓","tr":"钨钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26317":{"oreDict":["boltOsmiridium"],"name":"铱锇合金螺栓","tr":"铱锇合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26318":{"oreDict":["boltSunnarium"],"name":"阳光化合物螺栓","tr":"阳光化合物螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26319":{"oreDict":["boltAdamantium"],"name":"精金螺栓","tr":"精金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26320":{"oreDict":["boltElectrumFlux"],"name":"通流琥珀金螺栓","tr":"通流琥珀金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18129":{"oreDict":["plateDoubleNeutronium"],"name":"双重中子板","tr":"双重中子板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26321":{"oreDict":["boltEnderium"],"name":"末影(te)螺栓","tr":"末影(te)螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18131":{"oreDict":["plateDoubleSuperconductorUIVBase"],"name":"双重UIV超导粗胚板","tr":"双重UIV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26323":{"oreDict":["boltInfusedGold"],"name":"注魔金螺栓","tr":"注魔金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26324":{"oreDict":["boltNaquadah"],"name":"硅岩螺栓","tr":"硅岩螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26325":{"oreDict":["boltNaquadahAlloy"],"name":"硅岩合金螺栓","tr":"硅岩合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18134":{"oreDict":["plateDoubleSuperconductorUMVBase"],"name":"双重UMV超导粗胚板","tr":"双重UMV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26326":{"oreDict":["boltNaquadahEnriched"],"name":"富集硅岩螺栓","tr":"富集硅岩螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26327":{"oreDict":["boltNaquadria"],"name":"超能硅岩螺栓","tr":"超能硅岩螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26328":{"oreDict":["boltDuranium"],"name":"铿铀螺栓","tr":"铿铀螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26329":{"oreDict":["boltTritanium"],"name":"三钛螺栓","tr":"三钛螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26330":{"oreDict":["boltThaumium"],"name":"神秘螺栓","tr":"神秘螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18139":{"oreDict":["plateDoubleUniversium"],"name":"双重宇宙素板","tr":"双重宇宙素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26331":{"oreDict":["boltMithril"],"name":"秘银螺栓","tr":"秘银螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18141":{"oreDict":["plateDoubleEternity"],"name":"双重永恒板","tr":"双重永恒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26333":{"oreDict":["boltAstralSilver"],"name":"星辰银螺栓","tr":"星辰银螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26334":{"oreDict":["boltBlackSteel"],"name":"黑钢螺栓","tr":"黑钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9951":{"oreDict":["nuggetVyroxeres"],"name":"幽冥剧毒结晶粒","tr":"幽冥剧毒结晶粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18143":{"oreDict":["plateDoubleMagmatter"],"name":"双重磁物质板","tr":"双重磁物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26335":{"oreDict":["boltDamascusSteel"],"name":"大马士革钢螺栓","tr":"大马士革钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9952":{"oreDict":["nuggetCeruclase"],"name":"暗影秘银粒","tr":"暗影秘银粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26336":{"oreDict":["boltShadowIron"],"name":"暗影铁螺栓","tr":"暗影铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26337":{"oreDict":["boltShadowSteel"],"name":"暗影钢螺栓","tr":"暗影钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26338":{"oreDict":["boltIronWood"],"name":"铁木螺栓","tr":"铁木螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26339":{"oreDict":["boltSteeleaf"],"name":"钢叶螺栓","tr":"钢叶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9956":{"oreDict":["nuggetTartarite"],"name":"溶火之石粒","tr":"溶火之石粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26340":{"oreDict":["boltMeteoricIron"],"name":"陨铁螺栓","tr":"陨铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26341":{"oreDict":["boltMeteoricSteel"],"name":"陨钢螺栓","tr":"陨钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26342":{"oreDict":["boltDarkIron"],"name":"玄铁螺栓","tr":"玄铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26343":{"oreDict":["boltCobaltBrass"],"name":"钴黄铜螺栓","tr":"钴黄铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26344":{"oreDict":["boltUltimet"],"name":"哈氏合金螺栓","tr":"哈氏合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26345":{"oreDict":["boltAnnealedCopper"," boltAnyCopper"],"name":"退火铜螺栓","tr":"退火铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26346":{"oreDict":["boltFierySteel"],"name":"炽热的钢螺栓","tr":"炽热的钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26347":{"oreDict":["boltFirestone"],"name":"火石螺栓","tr":"火石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26348":{"oreDict":["boltRedSteel"],"name":"红钢螺栓","tr":"红钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26349":{"oreDict":["boltBlueSteel"],"name":"蓝钢螺栓","tr":"蓝钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9966":{"oreDict":["nuggetOrichalcum"],"name":"山铜粒","tr":"山铜粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26350":{"oreDict":["boltSterlingSilver"],"name":"标准纯银螺栓","tr":"标准纯银螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26351":{"oreDict":["boltRoseGold"],"name":"玫瑰金螺栓","tr":"玫瑰金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26352":{"oreDict":["boltBlackBronze"],"name":"黑青铜螺栓","tr":"黑青铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26353":{"oreDict":["boltBismuthBronze"],"name":"铋青铜螺栓","tr":"铋青铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9970":{"oreDict":["nuggetVoid"],"name":"虚空锭粒","tr":"虚空锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26354":{"oreDict":["boltIronMagnetic"],"name":"磁化铁螺栓","tr":"磁化铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26355":{"oreDict":["boltSteelMagnetic"],"name":"磁化钢螺栓","tr":"磁化钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26356":{"oreDict":["boltNeodymiumMagnetic"],"name":"磁化钕螺栓","tr":"磁化钕螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26357":{"oreDict":["boltVanadiumGallium"],"name":"钒镓合金螺栓","tr":"钒镓合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9974":{"oreDict":["nuggetSuperconductorUEVBase"],"name":"UEV超导粗胚粒","tr":"UEV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26358":{"oreDict":["boltYttriumBariumCuprate"],"name":"钇钡铜氧螺栓","tr":"钇钡铜氧螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9975":{"oreDict":["nuggetDraconium"],"name":"龙锭粒","tr":"龙锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26359":{"oreDict":["boltNiobiumNitride"],"name":"氮化铌螺栓","tr":"氮化铌螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9976":{"oreDict":["nuggetDraconiumAwakened"],"name":"觉醒龙锭粒","tr":"觉醒龙锭粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26360":{"oreDict":["boltNiobiumTitanium"],"name":"铌钛合金螺栓","tr":"铌钛合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9977":{"oreDict":["nuggetBloodInfusedIron"],"name":"注血铁粒","tr":"注血铁粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26361":{"oreDict":["boltChromiumDioxide"],"name":"二氧化铬螺栓","tr":"二氧化铬螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9978":{"oreDict":["nuggetIchorium"],"name":"灵宝粒","tr":"灵宝粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26362":{"oreDict":["boltKnightmetal"],"name":"骑士金属螺栓","tr":"骑士金属螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9979":{"oreDict":["nuggetRadoxPoly"],"name":"拉多X聚合物粒","tr":"拉多X聚合物粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26363":{"oreDict":["boltTinAlloy"],"name":"锡铁合金螺栓","tr":"锡铁合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9980":{"oreDict":["nuggetGalliumArsenide"],"name":"砷化镓粒","tr":"砷化镓粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26364":{"oreDict":["boltDarkSteel"],"name":"玄钢螺栓","tr":"玄钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9981":{"oreDict":["nuggetIndiumGalliumPhosphide"],"name":"磷化铟镓粒","tr":"磷化铟镓粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26365":{"oreDict":["boltElectricalSteel"],"name":"磁钢螺栓","tr":"磁钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9982":{"oreDict":["nuggetCosmicNeutronium"],"name":"宇宙中子态素粒","tr":"宇宙中子态素粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26366":{"oreDict":["boltEnergeticAlloy"],"name":"充能合金螺栓","tr":"充能合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26367":{"oreDict":["boltVibrantAlloy"],"name":"脉冲合金螺栓","tr":"脉冲合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9984":{"oreDict":["nuggetFlerovium_GT5U"],"name":"粒","tr":"粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26368":{"oreDict":["boltShadow"],"name":"暗影金属螺栓","tr":"暗影金属螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9985":{"oreDict":["nuggetLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚粒","tr":"UHV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26369":{"oreDict":["boltConductiveIron"],"name":"导电铁螺栓","tr":"导电铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9986":{"oreDict":["nuggetLongasssuperconductornameforuvwire"],"name":"UV超导粗胚粒","tr":"UV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26370":{"oreDict":["boltTungstenCarbide"],"name":"碳化钨螺栓","tr":"碳化钨螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9987":{"oreDict":["nuggetPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚粒","tr":"MV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26371":{"oreDict":["boltVanadiumSteel"],"name":"钒钢螺栓","tr":"钒钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9988":{"oreDict":["nuggetTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚粒","tr":"HV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26372":{"oreDict":["boltHSSG"],"name":"高速钢-G螺栓","tr":"高速钢-G螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9989":{"oreDict":["nuggetUraniumtriplatinid"],"name":"EV超导粗胚粒","tr":"EV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26373":{"oreDict":["boltHSSE"],"name":"高速钢-E螺栓","tr":"高速钢-E螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9990":{"oreDict":["nuggetVanadiumtriindinid"],"name":"IV超导粗胚粒","tr":"IV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26374":{"oreDict":["boltHSSS"],"name":"高速钢-S螺栓","tr":"高速钢-S螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9991":{"oreDict":["nuggetTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚粒","tr":"LuV超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"9992":{"oreDict":["nuggetTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚粒","tr":"ZPM超导粗胚粒","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26378":{"oreDict":["boltPulsatingIron"],"name":"脉冲铁螺栓","tr":"脉冲铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26379":{"oreDict":["boltSoularium"],"name":"魂金螺栓","tr":"魂金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26380":{"oreDict":["boltEnderiumBase"],"name":"末影粗胚螺栓","tr":"末影粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26381":{"oreDict":["boltRedstoneAlloy"],"name":"红石合金螺栓","tr":"红石合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26382":{"oreDict":["boltArdite"],"name":"阿迪特螺栓","tr":"阿迪特螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26383":{"oreDict":["boltReinforced"],"name":"强化螺栓","tr":"强化螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26384":{"oreDict":["boltGalgadorian"],"name":"混合晶螺栓","tr":"混合晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26385":{"oreDict":["boltEnhancedGalgadorian"],"name":"强化混合晶螺栓","tr":"强化混合晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26386":{"oreDict":["boltManyullyn"],"name":"玛玉灵螺栓","tr":"玛玉灵螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26387":{"oreDict":["boltMytryl"],"name":"深空秘银螺栓","tr":"深空秘银螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26388":{"oreDict":["boltBlackPlutonium"],"name":"黑钚螺栓","tr":"黑钚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26389":{"oreDict":["boltCallistoIce"],"name":"木卫四冰螺栓","tr":"木卫四冰螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26390":{"oreDict":["boltLedox"],"name":"深铅螺栓","tr":"深铅螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26391":{"oreDict":["boltQuantium"],"name":"量子螺栓","tr":"量子螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26392":{"oreDict":["boltDuralumin"],"name":"硬铝螺栓","tr":"硬铝螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18201":{"oreDict":["plateDoubleManasteel"],"name":"双重魔钢板","tr":"双重魔钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26393":{"oreDict":["boltOriharukon"],"name":"奥利哈钢螺栓","tr":"奥利哈钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18202":{"oreDict":["plateDoubleTerrasteel"],"name":"双重泰拉钢板","tr":"双重泰拉钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26394":{"oreDict":["boltInfinityCatalyst"],"name":"无尽催化剂螺栓","tr":"无尽催化剂螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18203":{"oreDict":["plateDoubleElvenElementium"],"name":"双重源质钢板","tr":"双重源质钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26395":{"oreDict":["boltBedrockium"],"name":"基岩螺栓","tr":"基岩螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18205":{"oreDict":["plateDoubleGaiaSpirit"],"name":"双重盖亚之魂板","tr":"双重盖亚之魂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26397":{"oreDict":["boltInfinity"],"name":"无尽螺栓","tr":"无尽螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26398":{"oreDict":["boltMysteriousCrystal"],"name":"神秘水晶螺栓","tr":"神秘水晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26399":{"oreDict":["boltSamariumMagnetic"],"name":"磁化钐螺栓","tr":"磁化钐螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26400":{"oreDict":["boltAlumite"],"name":"耐酸铝螺栓","tr":"耐酸铝螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26401":{"oreDict":["boltEndSteel"],"name":"末影钢螺栓","tr":"末影钢螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26402":{"oreDict":["boltCrudeSteel"],"name":"复合粘土螺栓","tr":"复合粘土螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26403":{"oreDict":["boltCrystallineAlloy"],"name":"晶化合金螺栓","tr":"晶化合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26404":{"oreDict":["boltMelodicAlloy"],"name":"旋律合金螺栓","tr":"旋律合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26405":{"oreDict":["boltStellarAlloy"],"name":"恒星合金螺栓","tr":"恒星合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26406":{"oreDict":["boltCrystallinePinkSlime"],"name":"晶化粉红史莱姆螺栓","tr":"晶化粉红史莱姆螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26407":{"oreDict":["boltEnergeticSilver"],"name":"充能银螺栓","tr":"充能银螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26408":{"oreDict":["boltVividAlloy"],"name":"生动合金螺栓","tr":"生动合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26470":{"oreDict":["boltEpoxid"],"name":"环氧树脂螺栓","tr":"环氧树脂螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26471":{"oreDict":["boltSilicone"," boltAnyRubber"," boltAnySyntheticRubber"],"name":"硅橡胶螺栓","tr":"硅橡胶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26472":{"oreDict":["boltPolycaprolactam"],"name":"聚己内酰胺螺栓","tr":"聚己内酰胺螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26473":{"oreDict":["boltPolytetrafluoroethylene"],"name":"聚四氟乙烯螺栓","tr":"聚四氟乙烯螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26485":{"oreDict":["boltAlduorite"],"name":"神秘蓝金螺栓","tr":"神秘蓝金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26488":{"oreDict":["boltRubracium"],"name":"褐铜螺栓","tr":"褐铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26489":{"oreDict":["boltVulcanite"],"name":"胶木螺栓","tr":"胶木螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18300":{"oreDict":["plateDoubleBronze"," plateDoubleAnyBronze"],"name":"双重青铜板","tr":"双重青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18301":{"oreDict":["plateDoubleBrass"],"name":"双重黄铜板","tr":"双重黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18302":{"oreDict":["plateDoubleInvar"],"name":"双重殷钢板","tr":"双重殷钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18303":{"oreDict":["plateDoubleElectrum"],"name":"双重琥珀金板","tr":"双重琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18304":{"oreDict":["plateDoubleAnyIron"," plateDoubleWroughtIron"],"name":"双重锻铁板","tr":"双重锻铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18305":{"oreDict":["plateDoubleSteel"],"name":"双重钢板","tr":"双重钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18306":{"oreDict":["plateDoubleStainlessSteel"],"name":"双重不锈钢板","tr":"双重不锈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18307":{"oreDict":["plateDoubleAnyIron"," plateDoublePigIron"],"name":"双重生铁板","tr":"双重生铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18308":{"oreDict":["plateDoubleRedAlloy"],"name":"双重红色合金板","tr":"双重红色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26500":{"oreDict":["boltDiamond"],"name":"钻石螺栓","tr":"钻石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18309":{"oreDict":["plateDoubleBlueAlloy"],"name":"双重蓝色合金板","tr":"双重蓝色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26501":{"oreDict":["boltEmerald"],"name":"绿宝石螺栓","tr":"绿宝石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18310":{"oreDict":["plateDoubleCupronickel"],"name":"双重白铜板","tr":"双重白铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26502":{"oreDict":["boltRuby"],"name":"红宝石螺栓","tr":"红宝石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18311":{"oreDict":["plateDoubleNichrome"],"name":"双重镍铬合金板","tr":"双重镍铬合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26503":{"oreDict":["boltSapphire"],"name":"蓝宝石螺栓","tr":"蓝宝石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18312":{"oreDict":["plateDoubleKanthal"],"name":"双重坎塔尔合金板","tr":"双重坎塔尔合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26504":{"oreDict":["boltGreenSapphire"],"name":"绿色蓝宝石螺栓","tr":"绿色蓝宝石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18313":{"oreDict":["plateDoubleMagnalium"],"name":"双重镁铝合金板","tr":"双重镁铝合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26505":{"oreDict":["boltOlivine"],"name":"橄榄石螺栓","tr":"橄榄石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18314":{"oreDict":["plateDoubleSolderingAlloy"],"name":"双重焊锡板","tr":"双重焊锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26506":{"oreDict":["boltNetherStar"],"name":"下界之星螺栓","tr":"下界之星螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18315":{"oreDict":["plateDoubleBatteryAlloy"],"name":"双重电池合金板","tr":"双重电池合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26507":{"oreDict":["boltTopaz"],"name":"黄玉螺栓","tr":"黄玉螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18316":{"oreDict":["plateDoubleTungstenSteel"],"name":"双重钨钢板","tr":"双重钨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26508":{"oreDict":["boltTanzanite"],"name":"坦桑石螺栓","tr":"坦桑石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18317":{"oreDict":["plateDoubleOsmiridium"],"name":"双重铱锇合金板","tr":"双重铱锇合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26509":{"oreDict":["boltAmethyst"],"name":"紫水晶螺栓","tr":"紫水晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18318":{"oreDict":["plateDoubleSunnarium"],"name":"双重阳光化合物板","tr":"双重阳光化合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26510":{"oreDict":["boltOpal"],"name":"蛋白石螺栓","tr":"蛋白石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18319":{"oreDict":["plateDoubleAdamantium"],"name":"双重精金板","tr":"双重精金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26511":{"oreDict":["boltJasper"],"name":"碧玉螺栓","tr":"碧玉螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18320":{"oreDict":["plateDoubleElectrumFlux"],"name":"双重通流琥珀金板","tr":"双重通流琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26512":{"oreDict":["boltFoolsRuby"],"name":"尖晶石螺栓","tr":"尖晶石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18321":{"oreDict":["plateDoubleEnderium"],"name":"双重末影锭板","tr":"双重末影锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26513":{"oreDict":["boltBlueTopaz"],"name":"蓝黄玉螺栓","tr":"蓝黄玉螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26514":{"oreDict":["boltAmber"],"name":"琥珀螺栓","tr":"琥珀螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18323":{"oreDict":["plateDoubleInfusedGold"],"name":"双重注魔金板","tr":"双重注魔金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26515":{"oreDict":["boltDilithium"],"name":"双锂螺栓","tr":"双锂螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18324":{"oreDict":["plateDoubleNaquadah"],"name":"双重硅岩板","tr":"双重硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26516":{"oreDict":["boltCertusQuartz"],"name":"赛特斯石英螺栓","tr":"赛特斯石英螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18325":{"oreDict":["plateDoubleNaquadahAlloy"],"name":"双重硅岩合金板","tr":"双重硅岩合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18326":{"oreDict":["plateDoubleNaquadahEnriched"],"name":"双重富集硅岩板","tr":"双重富集硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26518":{"oreDict":["boltForcicium"],"name":"力之宝石螺栓","tr":"力之宝石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18327":{"oreDict":["plateDoubleNaquadria"],"name":"双重超能硅岩板","tr":"双重超能硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26519":{"oreDict":["boltForcillium"],"name":"力场宝石螺栓","tr":"力场宝石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18328":{"oreDict":["plateDoubleDuranium"],"name":"双重铿铀板","tr":"双重铿铀板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26520":{"oreDict":["boltMonazite"],"name":"独居石螺栓","tr":"独居石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18329":{"oreDict":["plateDoubleTritanium"],"name":"双重三钛板","tr":"双重三钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26521":{"oreDict":["boltForce"],"name":"力量螺栓","tr":"力量螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18330":{"oreDict":["plateDoubleThaumium"],"name":"双重神秘锭板","tr":"双重神秘锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26522":{"oreDict":["boltNetherQuartz"],"name":"下界石英螺栓","tr":"下界石英螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18331":{"oreDict":["plateDoubleMithril"],"name":"双重秘银板","tr":"双重秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26523":{"oreDict":["boltQuartzite"],"name":"石英岩螺栓","tr":"石英岩螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26524":{"oreDict":["boltLazurite"],"name":"蓝金石螺栓","tr":"蓝金石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18333":{"oreDict":["plateDoubleAstralSilver"],"name":"双重星辰银板","tr":"双重星辰银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26525":{"oreDict":["boltSodalite"],"name":"方钠石螺栓","tr":"方钠石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18334":{"oreDict":["plateDoubleBlackSteel"],"name":"双重黑钢板","tr":"双重黑钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26526":{"oreDict":["boltLapis"],"name":"青金石螺栓","tr":"青金石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18335":{"oreDict":["plateDoubleDamascusSteel"],"name":"双重大马士革钢板","tr":"双重大马士革钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26527":{"oreDict":["boltGarnetRed"],"name":"红石榴石螺栓","tr":"红石榴石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18336":{"oreDict":["plateDoubleShadowIron"],"name":"双重暗影铁板","tr":"双重暗影铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26528":{"oreDict":["boltGarnetYellow"],"name":"黄石榴石螺栓","tr":"黄石榴石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18337":{"oreDict":["plateDoubleShadowSteel"],"name":"双重暗影钢板","tr":"双重暗影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26529":{"oreDict":["boltVinteum"],"name":"温特姆螺栓","tr":"温特姆螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18338":{"oreDict":["plateDoubleIronWood"],"name":"双重铁木板","tr":"双重铁木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26530":{"oreDict":["boltApatite"],"name":"磷灰石螺栓","tr":"磷灰石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18339":{"oreDict":["plateDoubleSteeleaf"],"name":"双重钢叶板","tr":"双重钢叶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26531":{"oreDict":["boltNiter"],"name":"硝石螺栓","tr":"硝石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18340":{"oreDict":["plateDoubleMeteoricIron"],"name":"双重陨铁板","tr":"双重陨铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26532":{"oreDict":["boltEnderPearl"],"name":"末影珍珠螺栓","tr":"末影珍珠螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18341":{"oreDict":["plateDoubleMeteoricSteel"],"name":"双重陨钢板","tr":"双重陨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26533":{"oreDict":["boltEnderEye"],"name":"末影之眼螺栓","tr":"末影之眼螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18342":{"oreDict":["plateDoubleDarkIron"],"name":"双重玄铁板","tr":"双重玄铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26534":{"oreDict":["boltTricalciumPhosphate"],"name":"磷酸三钙螺栓","tr":"磷酸三钙螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18343":{"oreDict":["plateDoubleCobaltBrass"],"name":"双重钴黄铜板","tr":"双重钴黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26535":{"oreDict":["boltCoal"],"name":"煤螺栓","tr":"煤螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18344":{"oreDict":["plateDoubleUltimet"],"name":"双重哈氏合金板","tr":"双重哈氏合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26536":{"oreDict":["boltCharcoal"],"name":"木炭螺栓","tr":"木炭螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18345":{"oreDict":["plateDoubleAnnealedCopper"," plateDoubleAnyCopper"],"name":"双重退火铜板","tr":"双重退火铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26537":{"oreDict":["boltJade"],"name":"玉螺栓","tr":"玉螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18346":{"oreDict":["plateDoubleFierySteel"],"name":"双重炽热钢板","tr":"双重炽热钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26538":{"oreDict":["boltLignite"],"name":"褐煤螺栓","tr":"褐煤螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18348":{"oreDict":["plateDoubleRedSteel"],"name":"双重红钢板","tr":"双重红钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26540":{"oreDict":["boltInfusedAir"],"name":"风之魔晶螺栓","tr":"风之魔晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18349":{"oreDict":["plateDoubleBlueSteel"],"name":"双重蓝钢板","tr":"双重蓝钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26541":{"oreDict":["boltInfusedFire"],"name":"火之魔晶螺栓","tr":"火之魔晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18350":{"oreDict":["plateDoubleSterlingSilver"],"name":"双重标准纯银板","tr":"双重标准纯银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26542":{"oreDict":["boltInfusedEarth"],"name":"地之魔晶螺栓","tr":"地之魔晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18351":{"oreDict":["plateDoubleRoseGold"],"name":"双重玫瑰金板","tr":"双重玫瑰金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26543":{"oreDict":["boltInfusedWater"],"name":"水之魔晶螺栓","tr":"水之魔晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18352":{"oreDict":["plateDoubleBlackBronze"],"name":"双重黑青铜板","tr":"双重黑青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26544":{"oreDict":["boltInfusedEntropy"],"name":"混沌魔晶螺栓","tr":"混沌魔晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18353":{"oreDict":["plateDoubleBismuthBronze"],"name":"双重铋青铜板","tr":"双重铋青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26545":{"oreDict":["boltInfusedOrder"],"name":"秩序魔晶螺栓","tr":"秩序魔晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18354":{"oreDict":["plateDoubleIronMagnetic"],"name":"双重磁化铁板","tr":"双重磁化铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18355":{"oreDict":["plateDoubleSteelMagnetic"],"name":"双重磁化钢板","tr":"双重磁化钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18356":{"oreDict":["plateDoubleNeodymiumMagnetic"],"name":"双重磁化钕板","tr":"双重磁化钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18357":{"oreDict":["plateDoubleVanadiumGallium"],"name":"双重钒镓合金板","tr":"双重钒镓合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18358":{"oreDict":["plateDoubleYttriumBariumCuprate"],"name":"双重钇钡铜氧合金板","tr":"双重钇钡铜氧合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18359":{"oreDict":["plateDoubleNiobiumNitride"],"name":"双重氮化铌板","tr":"双重氮化铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18360":{"oreDict":["plateDoubleNiobiumTitanium"],"name":"双重铌钛合金板","tr":"双重铌钛合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18361":{"oreDict":["plateDoubleChromiumDioxide"],"name":"双重二氧化铬板","tr":"双重二氧化铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18362":{"oreDict":["plateDoubleKnightmetal"],"name":"双重骑士金属板","tr":"双重骑士金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18363":{"oreDict":["plateDoubleTinAlloy"],"name":"双重锡铁合金板","tr":"双重锡铁合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18364":{"oreDict":["plateDoubleDarkSteel"],"name":"双重玄钢板","tr":"双重玄钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18365":{"oreDict":["plateDoubleElectricalSteel"],"name":"双重磁钢板","tr":"双重磁钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18366":{"oreDict":["plateDoubleEnergeticAlloy"],"name":"双重充能合金板","tr":"双重充能合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18367":{"oreDict":["plateDoubleVibrantAlloy"],"name":"双重脉冲合金板","tr":"双重脉冲合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18368":{"oreDict":["plateDoubleShadow"],"name":"双重暗影板","tr":"双重暗影板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18369":{"oreDict":["plateDoubleConductiveIron"],"name":"双重导电铁板","tr":"双重导电铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18370":{"oreDict":["plateDoubleTungstenCarbide"],"name":"双重碳化钨板","tr":"双重碳化钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18371":{"oreDict":["plateDoubleVanadiumSteel"],"name":"双重钒钢板","tr":"双重钒钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18372":{"oreDict":["plateDoubleHSSG"],"name":"双重高速钢-G板","tr":"双重高速钢-G板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18373":{"oreDict":["plateDoubleHSSE"],"name":"双重高速钢-E板","tr":"双重高速钢-E板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18374":{"oreDict":["plateDoubleHSSS"],"name":"双重高速钢-S板","tr":"双重高速钢-S板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18378":{"oreDict":["plateDoublePulsatingIron"],"name":"双重脉冲铁板","tr":"双重脉冲铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18379":{"oreDict":["plateDoubleSoularium"],"name":"双重魂金板","tr":"双重魂金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18380":{"oreDict":["plateDoubleEnderiumBase"],"name":"双重末影粗胚板","tr":"双重末影粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18381":{"oreDict":["plateDoubleRedstoneAlloy"],"name":"双重红石合金板","tr":"双重红石合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18382":{"oreDict":["plateDoubleArdite"],"name":"双重阿迪特板","tr":"双重阿迪特板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18383":{"oreDict":["plateDoubleReinforced"],"name":"双重强化金属板","tr":"双重强化金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18384":{"oreDict":["plateDoubleGalgadorian"],"name":"双重混合晶锭板","tr":"双重混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26576":{"oreDict":["boltTPVAlloy"],"name":"钛铂钒合金螺栓","tr":"钛铂钒合金螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18385":{"oreDict":["plateDoubleEnhancedGalgadorian"],"name":"双重强化混合晶锭板","tr":"双重强化混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18386":{"oreDict":["plateDoubleManyullyn"],"name":"双重玛玉灵板","tr":"双重玛玉灵板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18387":{"oreDict":["plateDoubleMytryl"],"name":"双重深空秘银板","tr":"双重深空秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18388":{"oreDict":["plateDoubleBlackPlutonium"],"name":"双重黑钚板","tr":"双重黑钚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18389":{"oreDict":["plateDoubleCallistoIce"],"name":"双重木卫四冰板","tr":"双重木卫四冰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26581":{"oreDict":["boltTranscendentMetal"],"name":"超时空金属螺栓","tr":"超时空金属螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2006":{"oreDict":["dustLithium"],"name":"锂粉","tr":"锂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18390":{"oreDict":["plateDoubleLedox"],"name":"双重深铅板","tr":"双重深铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26582":{"oreDict":["boltEnrichedHolmium"],"name":"富集钬螺栓","tr":"富集钬螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18391":{"oreDict":["plateDoubleQuantium"],"name":"双重量子锭板","tr":"双重量子锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26583":{"oreDict":["boltMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质螺栓","tr":"磁流体约束恒星物质螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2008":{"oreDict":["dustBeryllium"],"name":"铍粉","tr":"铍粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18392":{"oreDict":["plateDoubleDuralumin"],"name":"双重硬铝板","tr":"双重硬铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2009":{"oreDict":["dustBoron"],"name":"硼粉","tr":"硼粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18393":{"oreDict":["plateDoubleOriharukon"],"name":"双重奥利哈钢板","tr":"双重奥利哈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26585":{"oreDict":["boltWhiteDwarfMatter"],"name":"白矮星物质螺栓","tr":"白矮星物质螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2010":{"oreDict":["dustCarbon"],"name":"碳粉","tr":"碳粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18394":{"oreDict":["plateDoubleInfinityCatalyst"],"name":"双重无尽催化剂板","tr":"双重无尽催化剂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26586":{"oreDict":["boltBlackDwarfMatter"],"name":"黑矮星物质螺栓","tr":"黑矮星物质螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18395":{"oreDict":["plateDoubleBedrockium"],"name":"双重基岩板","tr":"双重基岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26588":{"oreDict":["boltSpaceTime"],"name":"时空螺栓","tr":"时空螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18397":{"oreDict":["plateDoubleInfinity"],"name":"双重无尽板","tr":"双重无尽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18398":{"oreDict":["plateDoubleMysteriousCrystal"],"name":"双重神秘水晶板","tr":"双重神秘水晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18399":{"oreDict":["plateDoubleSamariumMagnetic"],"name":"双重磁化钐板","tr":"双重磁化钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18400":{"oreDict":["plateDoubleAlumite"],"name":"双重耐酸铝板","tr":"双重耐酸铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2017":{"oreDict":["dustSodium"],"name":"钠粉","tr":"钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18401":{"oreDict":["plateDoubleEndSteel"],"name":"双重末影钢板","tr":"双重末影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2018":{"oreDict":["dustMagnesium"],"name":"镁粉","tr":"镁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18402":{"oreDict":["plateDoubleCrudeSteel"],"name":"双重复合粘土板","tr":"双重复合粘土板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2019":{"oreDict":["dustAluminium"],"name":"铝粉","tr":"铝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18403":{"oreDict":["plateDoubleCrystallineAlloy"],"name":"双重晶化合金板","tr":"双重晶化合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2020":{"oreDict":["dustSilicon"],"name":"硅粉","tr":"硅粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18404":{"oreDict":["plateDoubleMelodicAlloy"],"name":"双重旋律合金板","tr":"双重旋律合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2021":{"oreDict":["dustPhosphorus"],"name":"磷粉","tr":"磷粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18405":{"oreDict":["plateDoubleStellarAlloy"],"name":"双重恒星合金板","tr":"双重恒星合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2022":{"oreDict":["dustSulfur"],"name":"硫粉","tr":"硫粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18406":{"oreDict":["plateDoubleCrystallinePinkSlime"],"name":"双重晶化粉红史莱姆板","tr":"双重晶化粉红史莱姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18407":{"oreDict":["plateDoubleEnergeticSilver"],"name":"双重充能银板","tr":"双重充能银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26599":{"oreDict":["boltPolybenzimidazole"],"name":"聚苯并咪唑螺栓","tr":"聚苯并咪唑螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18408":{"oreDict":["plateDoubleVividAlloy"],"name":"双重生动合金板","tr":"双重生动合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2025":{"oreDict":["dustPotassium"],"name":"钾粉","tr":"钾粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2026":{"oreDict":["dustCalcium"],"name":"钙粉","tr":"钙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2027":{"oreDict":["dustScandium"],"name":"钪粉","tr":"钪粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2028":{"oreDict":["dustTitanium"],"name":"钛粉","tr":"钛粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2029":{"oreDict":["dustVanadium"],"name":"钒粉","tr":"钒粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2030":{"oreDict":["dustChrome"],"name":"铬粉","tr":"铬粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2031":{"oreDict":["dustManganese"],"name":"锰粉","tr":"锰粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2032":{"oreDict":["dustIron"," dustAnyIron"],"name":"铁粉","tr":"铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2033":{"oreDict":["dustCobalt"],"name":"钴粉","tr":"钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2034":{"oreDict":["dustNickel"],"name":"镍粉","tr":"镍粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26610":{"oreDict":["boltEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂螺栓","tr":"纤维强化的环氧树脂螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2035":{"oreDict":["dustCopper"," dustAnyCopper"],"name":"铜粉","tr":"铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26611":{"oreDict":["boltBorosilicateGlass"],"name":"硼玻璃螺栓","tr":"硼玻璃螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2036":{"oreDict":["dustZinc"],"name":"锌粉","tr":"锌粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2037":{"oreDict":["dustGallium"],"name":"镓粉","tr":"镓粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26613":{"oreDict":["boltNickelZincFerrite"],"name":"镍锌铁氧体螺栓","tr":"镍锌铁氧体螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2039":{"oreDict":["dustArsenic"],"name":"砷粉","tr":"砷粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2043":{"oreDict":["dustRubidium"],"name":"铷粉","tr":"铷粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2044":{"oreDict":["dustStrontium"],"name":"锶粉","tr":"锶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2045":{"oreDict":["dustYttrium"],"name":"钇粉","tr":"钇粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2047":{"oreDict":["dustNiobium"],"name":"铌粉","tr":"铌粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2048":{"oreDict":["dustMolybdenum"],"name":"钼粉","tr":"钼粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2052":{"oreDict":["dustPalladium"],"name":"钯粉","tr":"钯粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2054":{"oreDict":["dustSilver"],"name":"银粉","tr":"银粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2055":{"oreDict":["dustCadmium"],"name":"镉粉","tr":"镉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26631":{"oreDict":["boltPolyphenyleneSulfide"],"name":"聚苯硫醚螺栓","tr":"聚苯硫醚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2056":{"oreDict":["dustIndium"],"name":"铟粉","tr":"铟粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2057":{"oreDict":["dustTin"],"name":"锡粉","tr":"锡粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2058":{"oreDict":["dustAntimony"],"name":"锑粉","tr":"锑粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2059":{"oreDict":["dustTellurium"],"name":"碲粉","tr":"碲粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26635":{"oreDict":["boltStyreneButadieneRubber"," boltAnyRubber"," boltAnySyntheticRubber"],"name":"丁苯橡胶螺栓","tr":"丁苯橡胶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26636":{"oreDict":["boltPolystyrene"],"name":"聚苯乙烯螺栓","tr":"聚苯乙烯螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2062":{"oreDict":["dustCaesium"],"name":"铯粉","tr":"铯粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2063":{"oreDict":["dustBarium"],"name":"钡粉","tr":"钡粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2064":{"oreDict":["dustLanthanum"],"name":"镧粉","tr":"镧粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2065":{"oreDict":["dustCerium"],"name":"铈粉","tr":"铈粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2066":{"oreDict":["dustPraseodymium"],"name":"镨粉","tr":"镨粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2067":{"oreDict":["dustNeodymium"],"name":"钕粉","tr":"钕粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2068":{"oreDict":["dustPromethium"],"name":"钷粉","tr":"钷粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2069":{"oreDict":["dustSamarium"],"name":"钐粉","tr":"钐粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2070":{"oreDict":["dustEuropium"],"name":"铕粉","tr":"铕粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2071":{"oreDict":["dustGadolinium"],"name":"钆粉","tr":"钆粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2072":{"oreDict":["dustTerbium"],"name":"铽粉","tr":"铽粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2073":{"oreDict":["dustDysprosium"],"name":"镝粉","tr":"镝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26649":{"oreDict":["boltPolyvinylChloride"],"name":"聚氯乙烯螺栓","tr":"聚氯乙烯螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2074":{"oreDict":["dustHolmium"],"name":"钬粉","tr":"钬粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2075":{"oreDict":["dustErbium"],"name":"铒粉","tr":"铒粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2076":{"oreDict":["dustThulium"],"name":"铥粉","tr":"铥粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2077":{"oreDict":["dustYtterbium"],"name":"镱粉","tr":"镱粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2078":{"oreDict":["dustLutetium"],"name":"镥粉","tr":"镥粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2080":{"oreDict":["dustTantalum"],"name":"钽粉","tr":"钽粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2081":{"oreDict":["dustTungsten"],"name":"钨粉","tr":"钨粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2083":{"oreDict":["dustOsmium"],"name":"锇粉","tr":"锇粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2084":{"oreDict":["dustIridium"],"name":"铱粉","tr":"铱粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2085":{"oreDict":["dustPlatinum"],"name":"铂粉","tr":"铂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2086":{"oreDict":["dustGold"],"name":"金粉","tr":"金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18470":{"oreDict":["plateDoubleEpoxid"],"name":"双重环氧树脂片","tr":"双重环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18471":{"oreDict":["plateDoubleAnySyntheticRubber"," plateDoubleSilicone"," plateDoubleAnyRubber"],"name":"双重硅橡胶片","tr":"双重硅橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18472":{"oreDict":["plateDoublePolycaprolactam"],"name":"双重聚己内酰胺片","tr":"双重聚己内酰胺片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2089":{"oreDict":["dustLead"],"name":"铅粉","tr":"铅粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18473":{"oreDict":["plateDoublePolytetrafluoroethylene"],"name":"双重聚四氟乙烯片","tr":"双重聚四氟乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2090":{"oreDict":["dustBismuth"],"name":"铋粉","tr":"铋粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2096":{"oreDict":["dustThorium"],"name":"钍粉","tr":"钍粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2097":{"oreDict":["dustUranium235"],"name":"铀-235粉","tr":"铀-235粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2098":{"oreDict":["dustUranium"],"name":"铀-238粉","tr":"铀-238粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2100":{"oreDict":["dustPlutonium"],"name":"钚-239粉","tr":"钚-239粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2101":{"oreDict":["dustPlutonium241"],"name":"钚-241粉","tr":"钚-241粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18485":{"oreDict":["plateDoubleAlduorite"],"name":"双重神秘蓝金板","tr":"双重神秘蓝金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2103":{"oreDict":["dustAmericium"],"name":"镅粉","tr":"镅粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18488":{"oreDict":["plateDoubleRubracium"],"name":"双重褐铜板","tr":"双重褐铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18489":{"oreDict":["plateDoubleVulcanite"],"name":"双重胶木板","tr":"双重胶木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2110":{"oreDict":["dustTengamRaw"],"name":"生镃粉","tr":"生镃粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2111":{"oreDict":["dustTengamPurified"],"name":"纯镃粉","tr":"纯镃粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2112":{"oreDict":["dustTengamAttuned"],"name":"谐镃粉","tr":"谐镃粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2129":{"oreDict":["dustNeutronium"],"name":"中子粉","tr":"中子粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2131":{"oreDict":["dustSuperconductorUIVBase"],"name":"UIV超导粗胚粉","tr":"UIV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2134":{"oreDict":["dustSuperconductorUMVBase"],"name":"UMV超导粗胚粉","tr":"UMV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18521":{"oreDict":["plateDoubleForce"],"name":"双重力量板","tr":"双重力量板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2139":{"oreDict":["dustUniversium"],"name":"宇宙素粉","tr":"宇宙素粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2141":{"oreDict":["dustEternity"],"name":"永恒粉","tr":"永恒粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2143":{"oreDict":["dustMagmatter"],"name":"磁物质粉","tr":"磁物质粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18529":{"oreDict":["plateDoubleVinteum"],"name":"双重温特姆板","tr":"双重温特姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26765":{"oreDict":["boltKevlar"],"name":"凯芙拉螺栓","tr":"凯芙拉螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18576":{"oreDict":["plateDoubleTPVAlloy"],"name":"双重钛铂钒合金板","tr":"双重钛铂钒合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26770":{"oreDict":["boltHeeEndium"],"name":"终末螺栓","tr":"终末螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26772":{"oreDict":["boltNickelAluminide"],"name":"铝化镍螺栓","tr":"铝化镍螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18581":{"oreDict":["plateDoubleTranscendentMetal"],"name":"双重超时空金属板","tr":"双重超时空金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18582":{"oreDict":["plateDoubleEnrichedHolmium"],"name":"双重富集钬板","tr":"双重富集钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2201":{"oreDict":["dustManasteel"],"name":"魔钢粉","tr":"魔钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18585":{"oreDict":["plateDoubleWhiteDwarfMatter"],"name":"双重白矮星物质板","tr":"双重白矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2202":{"oreDict":["dustTerrasteel"],"name":"泰拉钢粉","tr":"泰拉钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18586":{"oreDict":["plateDoubleBlackDwarfMatter"],"name":"双重黑矮星物质板","tr":"双重黑矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2203":{"oreDict":["dustElvenElementium"],"name":"源质钢粉","tr":"源质钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2204":{"oreDict":["dustLivingrock"],"name":"活石粉","tr":"活石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18588":{"oreDict":["plateDoubleSpaceTime"],"name":"双重时空板","tr":"双重时空板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2205":{"oreDict":["dustGaiaSpirit"],"name":"盖亚之魂粉","tr":"盖亚之魂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2206":{"oreDict":["dustLivingwood"],"name":"活木粉","tr":"活木粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2207":{"oreDict":["dustDreamwood"],"name":"梦之木粉","tr":"梦之木粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2208":{"oreDict":["dustManaDiamond"],"name":"魔力钻石粉","tr":"魔力钻石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2209":{"oreDict":["dustBotaniaDragonstone"],"name":"龙石粉","tr":"龙石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18599":{"oreDict":["plateDoublePolybenzimidazole"],"name":"双重聚苯并咪唑板","tr":"双重聚苯并咪唑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18610":{"oreDict":["plateDoubleEpoxidFiberReinforced"],"name":"双重纤维强化的环氧树脂片","tr":"双重纤维强化的环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26804":{"oreDict":["boltObsidian"],"name":"黑曜石螺栓","tr":"黑曜石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18613":{"oreDict":["plateDoubleNickelZincFerrite"],"name":"双重镍锌铁氧体板","tr":"双重镍锌铁氧体板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26809":{"oreDict":["boltWood"],"name":"短木棍","tr":"短木棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2241":{"oreDict":["dustPlatinumGroupSludge"],"name":"铂系矿泥粉","tr":"铂系矿泥粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18631":{"oreDict":["plateDoublePolyphenyleneSulfide"],"name":"双重聚苯硫醚板","tr":"双重聚苯硫醚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18635":{"oreDict":["plateDoubleAnySyntheticRubber"," plateDoubleStyreneButadieneRubber"," plateDoubleAnyRubber"],"name":"双重丁苯橡胶片","tr":"双重丁苯橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18636":{"oreDict":["plateDoublePolystyrene"],"name":"双重聚苯乙烯片","tr":"双重聚苯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26829":{"oreDict":["boltDeepIron"],"name":"深渊铁螺栓","tr":"深渊铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18649":{"oreDict":["plateDoublePolyvinylChloride"],"name":"双重聚氯乙烯片","tr":"双重聚氯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26856":{"oreDict":["boltSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)螺栓","tr":"太阳能级硅(多晶硅)螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26868":{"oreDict":["boltTrinium"],"name":"三元金属螺栓","tr":"三元金属螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26874":{"oreDict":["boltPlastic"],"name":"聚乙烯螺栓","tr":"聚乙烯螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2299":{"oreDict":["dustStone"],"name":"石头粉","tr":"石头粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2300":{"oreDict":["dustBronze"," dustAnyBronze"],"name":"青铜粉","tr":"青铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2301":{"oreDict":["dustBrass"],"name":"黄铜粉","tr":"黄铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2302":{"oreDict":["dustInvar"],"name":"殷钢粉","tr":"殷钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2303":{"oreDict":["dustElectrum"],"name":"琥珀金粉","tr":"琥珀金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2304":{"oreDict":["dustWroughtIron"," dustAnyIron"],"name":"锻铁粉","tr":"锻铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26880":{"oreDict":["boltAnyRubber"," boltRubber"],"name":"橡胶螺栓","tr":"橡胶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2305":{"oreDict":["dustSteel"],"name":"钢粉","tr":"钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2306":{"oreDict":["dustStainlessSteel"],"name":"不锈钢粉","tr":"不锈钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2307":{"oreDict":["dustPigIron"," dustAnyIron"],"name":"生铁粉","tr":"生铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2308":{"oreDict":["dustRedAlloy"],"name":"红色合金粉","tr":"红色合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26884":{"oreDict":["boltDesh"],"name":"戴斯螺栓","tr":"戴斯螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2309":{"oreDict":["dustBlueAlloy"],"name":"蓝色合金粉","tr":"蓝色合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2310":{"oreDict":["dustCupronickel"],"name":"白铜粉","tr":"白铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2311":{"oreDict":["dustNichrome"],"name":"镍铬合金粉","tr":"镍铬合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2312":{"oreDict":["dustKanthal"],"name":"坎塔尔合金粉","tr":"坎塔尔合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2313":{"oreDict":["dustMagnalium"],"name":"镁铝合金粉","tr":"镁铝合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26889":{"oreDict":["boltWoodSealed"],"name":"短蜡封木棍","tr":"短蜡封木棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2314":{"oreDict":["dustSolderingAlloy"],"name":"焊锡粉","tr":"焊锡粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26890":{"oreDict":["boltGlass"],"name":"玻璃螺栓","tr":"玻璃螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2315":{"oreDict":["dustBatteryAlloy"],"name":"电池合金粉","tr":"电池合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2316":{"oreDict":["dustTungstenSteel"],"name":"钨钢粉","tr":"钨钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2317":{"oreDict":["dustOsmiridium"],"name":"铱锇合金粉","tr":"铱锇合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2318":{"oreDict":["dustSunnarium"],"name":"阳光化合物粉","tr":"阳光化合物粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2319":{"oreDict":["dustAdamantium"],"name":"精金粉","tr":"精金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2320":{"oreDict":["dustElectrumFlux"],"name":"通流琥珀金粉","tr":"通流琥珀金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2321":{"oreDict":["dustEnderium"],"name":"末影(te)粉","tr":"末影(te)粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2323":{"oreDict":["dustInfusedGold"],"name":"注魔金粉","tr":"注魔金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2324":{"oreDict":["dustNaquadah"],"name":"硅岩粉","tr":"硅岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2325":{"oreDict":["dustNaquadahAlloy"],"name":"硅岩合金粉","tr":"硅岩合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2326":{"oreDict":["dustNaquadahEnriched"],"name":"富集硅岩粉","tr":"富集硅岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2327":{"oreDict":["dustNaquadria"],"name":"超能硅岩粉","tr":"超能硅岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2328":{"oreDict":["dustDuranium"],"name":"铿铀粉","tr":"铿铀粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2329":{"oreDict":["dustTritanium"],"name":"三钛粉","tr":"三钛粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2330":{"oreDict":["dustThaumium"],"name":"神秘粉","tr":"神秘粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2331":{"oreDict":["dustMithril"],"name":"秘银粉","tr":"秘银粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2333":{"oreDict":["dustAstralSilver"],"name":"星辰银粉","tr":"星辰银粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2334":{"oreDict":["dustBlackSteel"],"name":"黑钢粉","tr":"黑钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2335":{"oreDict":["dustDamascusSteel"],"name":"大马士革钢粉","tr":"大马士革钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2336":{"oreDict":["dustShadowIron"],"name":"暗影铁粉","tr":"暗影铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26912":{"oreDict":["boltChrysotile"],"name":"白石棉螺栓","tr":"白石棉螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2337":{"oreDict":["dustShadowSteel"],"name":"暗影钢粉","tr":"暗影钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26913":{"oreDict":["boltRealgar"],"name":"雄黄螺栓","tr":"雄黄螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2338":{"oreDict":["dustIronWood"],"name":"铁木粉","tr":"铁木粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2339":{"oreDict":["dustSteeleaf"],"name":"钢叶粉","tr":"钢叶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2340":{"oreDict":["dustMeteoricIron"],"name":"陨铁粉","tr":"陨铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2341":{"oreDict":["dustMeteoricSteel"],"name":"陨钢粉","tr":"陨钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2342":{"oreDict":["dustDarkIron"],"name":"玄铁粉","tr":"玄铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2343":{"oreDict":["dustCobaltBrass"],"name":"钴黄铜粉","tr":"钴黄铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2344":{"oreDict":["dustUltimet"],"name":"哈氏合金粉","tr":"哈氏合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2345":{"oreDict":["dustAnyCopper"," dustAnnealedCopper"],"name":"退火铜粉","tr":"退火铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2346":{"oreDict":["dustFierySteel"],"name":"炽热的钢粉","tr":"炽热的钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2347":{"oreDict":["dustFirestone"],"name":"火石粉","tr":"火石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2348":{"oreDict":["dustRedSteel"],"name":"红钢粉","tr":"红钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2349":{"oreDict":["dustBlueSteel"],"name":"蓝钢粉","tr":"蓝钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2350":{"oreDict":["dustSterlingSilver"],"name":"标准纯银粉","tr":"标准纯银粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2351":{"oreDict":["dustRoseGold"],"name":"玫瑰金粉","tr":"玫瑰金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2352":{"oreDict":["dustBlackBronze"],"name":"黑青铜粉","tr":"黑青铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2353":{"oreDict":["dustBismuthBronze"],"name":"铋青铜粉","tr":"铋青铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2354":{"oreDict":["dustIronMagnetic"],"name":"磁化铁粉","tr":"磁化铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2355":{"oreDict":["dustSteelMagnetic"],"name":"磁化钢粉","tr":"磁化钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2356":{"oreDict":["dustNeodymiumMagnetic"],"name":"磁化钕粉","tr":"磁化钕粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2357":{"oreDict":["dustVanadiumGallium"],"name":"钒镓合金粉","tr":"钒镓合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2358":{"oreDict":["dustYttriumBariumCuprate"],"name":"钇钡铜氧粉","tr":"钇钡铜氧粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2359":{"oreDict":["dustNiobiumNitride"],"name":"氮化铌粉","tr":"氮化铌粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2360":{"oreDict":["dustNiobiumTitanium"],"name":"铌钛合金粉","tr":"铌钛合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2361":{"oreDict":["dustChromiumDioxide"],"name":"二氧化铬粉","tr":"二氧化铬粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2362":{"oreDict":["dustKnightmetal"],"name":"骑士金属粉","tr":"骑士金属粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2363":{"oreDict":["dustTinAlloy"],"name":"锡铁合金粉","tr":"锡铁合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2364":{"oreDict":["dustDarkSteel"],"name":"玄钢粉","tr":"玄钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2365":{"oreDict":["dustElectricalSteel"],"name":"磁钢粉","tr":"磁钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2366":{"oreDict":["dustEnergeticAlloy"],"name":"充能合金粉","tr":"充能合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2367":{"oreDict":["dustVibrantAlloy"],"name":"脉冲合金粉","tr":"脉冲合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2368":{"oreDict":["dustShadow"],"name":"暗影金属粉","tr":"暗影金属粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2369":{"oreDict":["dustConductiveIron"],"name":"导电铁粉","tr":"导电铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2370":{"oreDict":["dustTungstenCarbide"],"name":"碳化钨粉","tr":"碳化钨粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2371":{"oreDict":["dustVanadiumSteel"],"name":"钒钢粉","tr":"钒钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2372":{"oreDict":["dustHSSG"],"name":"高速钢-G粉","tr":"高速钢-G粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2373":{"oreDict":["dustHSSE"],"name":"高速钢-E粉","tr":"高速钢-E粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2374":{"oreDict":["dustHSSS"],"name":"高速钢-S粉","tr":"高速钢-S粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2375":{"oreDict":["dustRutile"],"name":"金红石粉","tr":"金红石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26951":{"oreDict":["boltVyroxeres"],"name":"幽冥剧毒结晶螺栓","tr":"幽冥剧毒结晶螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26952":{"oreDict":["boltCeruclase"],"name":"暗影秘银螺栓","tr":"暗影秘银螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2377":{"oreDict":["dustMagnesiumchloride"],"name":"氯化镁粉","tr":"氯化镁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2378":{"oreDict":["dustPulsatingIron"],"name":"脉冲铁粉","tr":"脉冲铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2379":{"oreDict":["dustSoularium"],"name":"魂金粉","tr":"魂金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2380":{"oreDict":["dustEnderiumBase"],"name":"末影粗胚粉","tr":"末影粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26956":{"oreDict":["boltTartarite"],"name":"溶火之石螺栓","tr":"溶火之石螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2381":{"oreDict":["dustRedstoneAlloy"],"name":"红石合金粉","tr":"红石合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18765":{"oreDict":["plateDoubleKevlar"],"name":"双重凯芙拉板","tr":"双重凯芙拉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2382":{"oreDict":["dustArdite"],"name":"阿迪特粉","tr":"阿迪特粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2383":{"oreDict":["dustReinforced"],"name":"强化粉","tr":"强化粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2384":{"oreDict":["dustGalgadorian"],"name":"混合晶粉","tr":"混合晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2385":{"oreDict":["dustEnhancedGalgadorian"],"name":"强化混合晶粉","tr":"强化混合晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2386":{"oreDict":["dustManyullyn"],"name":"玛玉灵粉","tr":"玛玉灵粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18770":{"oreDict":["plateDoubleHeeEndium"],"name":"双重终末锭板","tr":"双重终末锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2387":{"oreDict":["dustMytryl"],"name":"深空秘银粉","tr":"深空秘银粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2388":{"oreDict":["dustBlackPlutonium"],"name":"黑钚粉","tr":"黑钚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18772":{"oreDict":["plateDoubleNickelAluminide"],"name":"双重铝化镍板","tr":"双重铝化镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2389":{"oreDict":["dustCallistoIce"],"name":"木卫四冰粉","tr":"木卫四冰粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2390":{"oreDict":["dustLedox"],"name":"深铅粉","tr":"深铅粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26966":{"oreDict":["boltOrichalcum"],"name":"山铜螺栓","tr":"山铜螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2391":{"oreDict":["dustQuantium"],"name":"量子粉","tr":"量子粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2392":{"oreDict":["dustDuralumin"],"name":"硬铝粉","tr":"硬铝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2393":{"oreDict":["dustOriharukon"],"name":"奥利哈钢粉","tr":"奥利哈钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2394":{"oreDict":["dustInfinityCatalyst"],"name":"无尽催化剂粉","tr":"无尽催化剂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26970":{"oreDict":["boltVoid"],"name":"虚空螺栓","tr":"虚空螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2395":{"oreDict":["dustBedrockium"],"name":"基岩粉","tr":"基岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2396":{"oreDict":["dustUnstable"],"name":"不稳定粉","tr":"不稳定粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2397":{"oreDict":["dustInfinity"],"name":"无尽粉","tr":"无尽粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2398":{"oreDict":["dustMysteriousCrystal"],"name":"神秘水晶粉","tr":"神秘水晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26974":{"oreDict":["boltSuperconductorUEVBase"],"name":"UEV超导粗胚螺栓","tr":"UEV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2399":{"oreDict":["dustSamariumMagnetic"],"name":"磁化钐粉","tr":"磁化钐粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26975":{"oreDict":["boltDraconium"],"name":"龙螺栓","tr":"龙螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2400":{"oreDict":["dustAlumite"],"name":"耐酸铝粉","tr":"耐酸铝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26976":{"oreDict":["boltDraconiumAwakened"],"name":"觉醒龙螺栓","tr":"觉醒龙螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2401":{"oreDict":["dustEndSteel"],"name":"末影钢粉","tr":"末影钢粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26977":{"oreDict":["boltBloodInfusedIron"],"name":"注血铁螺栓","tr":"注血铁螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2402":{"oreDict":["dustCrudeSteel"],"name":"复合粘土粉","tr":"复合粘土粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26978":{"oreDict":["boltIchorium"],"name":"灵宝螺栓","tr":"灵宝螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2403":{"oreDict":["dustCrystallineAlloy"],"name":"晶化合金粉","tr":"晶化合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26979":{"oreDict":["boltRadoxPoly"],"name":"拉多X聚合物螺栓","tr":"拉多X聚合物螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2404":{"oreDict":["dustMelodicAlloy"],"name":"旋律合金粉","tr":"旋律合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26980":{"oreDict":["boltGalliumArsenide"],"name":"砷化镓螺栓","tr":"砷化镓螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2405":{"oreDict":["dustStellarAlloy"],"name":"恒星合金粉","tr":"恒星合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26981":{"oreDict":["boltIndiumGalliumPhosphide"],"name":"磷化铟镓螺栓","tr":"磷化铟镓螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2406":{"oreDict":["dustCrystallinePinkSlime"],"name":"晶化粉红史莱姆粉","tr":"晶化粉红史莱姆粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26982":{"oreDict":["boltCosmicNeutronium"],"name":"宇宙中子态素螺栓","tr":"宇宙中子态素螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2407":{"oreDict":["dustEnergeticSilver"],"name":"充能银粉","tr":"充能银粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2408":{"oreDict":["dustVividAlloy"],"name":"生动合金粉","tr":"生动合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26984":{"oreDict":["boltFlerovium_GT5U"],"name":"螺栓","tr":"螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26985":{"oreDict":["boltLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚螺栓","tr":"UHV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26986":{"oreDict":["boltLongasssuperconductornameforuvwire"],"name":"UV超导粗胚螺栓","tr":"UV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26987":{"oreDict":["boltPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚螺栓","tr":"MV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2412":{"oreDict":["dustSluiceSand"],"name":"废沙粉","tr":"废沙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26988":{"oreDict":["boltTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚螺栓","tr":"HV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2413":{"oreDict":["dustBauxiteSlag"],"name":"铝土矿渣粉","tr":"铝土矿渣粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26989":{"oreDict":["boltUraniumtriplatinid"],"name":"EV超导粗胚螺栓","tr":"EV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2414":{"oreDict":["dustIlmeniteSlag"],"name":"钛铁矿渣粉","tr":"钛铁矿渣粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26990":{"oreDict":["boltVanadiumtriindinid"],"name":"IV超导粗胚螺栓","tr":"IV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26991":{"oreDict":["boltTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚螺栓","tr":"LuV超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"26992":{"oreDict":["boltTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚螺栓","tr":"ZPM超导粗胚螺栓","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27006":{"oreDict":["screwLithium"],"name":"锂螺丝","tr":"锂螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27008":{"oreDict":["screwBeryllium"],"name":"铍螺丝","tr":"铍螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27010":{"oreDict":["screwCarbon"],"name":"碳螺丝","tr":"碳螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27018":{"oreDict":["screwMagnesium"],"name":"镁螺丝","tr":"镁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27019":{"oreDict":["screwAluminium"],"name":"铝螺丝","tr":"铝螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27020":{"oreDict":["screwSilicon"],"name":"硅螺丝","tr":"硅螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18829":{"oreDict":["plateDoubleDeepIron"],"name":"双重深渊铁板","tr":"双重深渊铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27025":{"oreDict":["screwPotassium"],"name":"钾螺丝","tr":"钾螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27027":{"oreDict":["screwScandium"],"name":"钪螺丝","tr":"钪螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27028":{"oreDict":["screwTitanium"],"name":"钛螺丝","tr":"钛螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27029":{"oreDict":["screwVanadium"],"name":"钒螺丝","tr":"钒螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27030":{"oreDict":["screwChrome"],"name":"铬螺丝","tr":"铬螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27031":{"oreDict":["screwManganese"],"name":"锰螺丝","tr":"锰螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27032":{"oreDict":["screwIron"," screwAnyIron"],"name":"铁螺丝","tr":"铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27033":{"oreDict":["screwCobalt"],"name":"钴螺丝","tr":"钴螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27034":{"oreDict":["screwNickel"],"name":"镍螺丝","tr":"镍螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27035":{"oreDict":["screwCopper"," screwAnyCopper"],"name":"铜螺丝","tr":"铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27036":{"oreDict":["screwZinc"],"name":"锌螺丝","tr":"锌螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27037":{"oreDict":["screwGallium"],"name":"镓螺丝","tr":"镓螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27039":{"oreDict":["screwArsenic"],"name":"砷螺丝","tr":"砷螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27043":{"oreDict":["screwRubidium"],"name":"铷螺丝","tr":"铷螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27045":{"oreDict":["screwYttrium"],"name":"钇螺丝","tr":"钇螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2470":{"oreDict":["dustEpoxid"],"name":"环氧树脂末","tr":"环氧树脂末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2471":{"oreDict":["dustSilicone"," dustAnyRubber"," dustAnySyntheticRubber"],"name":"硅橡胶末","tr":"硅橡胶末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27047":{"oreDict":["screwNiobium"],"name":"铌螺丝","tr":"铌螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2472":{"oreDict":["dustPolycaprolactam"],"name":"聚己内酰胺末","tr":"聚己内酰胺末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18856":{"oreDict":["plateDoubleSiliconSolarGrade"],"name":"双重太阳能级硅(多晶硅)板","tr":"双重太阳能级硅(多晶硅)板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27048":{"oreDict":["screwMolybdenum"],"name":"钼螺丝","tr":"钼螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2473":{"oreDict":["dustPolytetrafluoroethylene"],"name":"聚四氟乙烯末","tr":"聚四氟乙烯末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27052":{"oreDict":["screwPalladium"],"name":"钯螺丝","tr":"钯螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27054":{"oreDict":["screwSilver"],"name":"银螺丝","tr":"银螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27056":{"oreDict":["screwIndium"],"name":"铟螺丝","tr":"铟螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27057":{"oreDict":["screwTin"],"name":"锡螺丝","tr":"锡螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27058":{"oreDict":["screwAntimony"],"name":"锑螺丝","tr":"锑螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27059":{"oreDict":["screwTellurium"],"name":"碲螺丝","tr":"碲螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18868":{"oreDict":["plateDoubleTrinium"],"name":"双重三元金属板","tr":"双重三元金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2485":{"oreDict":["dustAlduorite"],"name":"神秘蓝金粉","tr":"神秘蓝金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27062":{"oreDict":["screwCaesium"],"name":"铯螺丝","tr":"铯螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27063":{"oreDict":["screwBarium"],"name":"钡螺丝","tr":"钡螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2488":{"oreDict":["dustRubracium"],"name":"褐铜粉","tr":"褐铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27064":{"oreDict":["screwLanthanum"],"name":"镧螺丝","tr":"镧螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2489":{"oreDict":["dustVulcanite"],"name":"胶木粉","tr":"胶木粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27065":{"oreDict":["screwCerium"],"name":"铈螺丝","tr":"铈螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18874":{"oreDict":["plateDoublePlastic"],"name":"双重聚乙烯片","tr":"双重聚乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27066":{"oreDict":["screwPraseodymium"],"name":"镨螺丝","tr":"镨螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27067":{"oreDict":["screwNeodymium"],"name":"钕螺丝","tr":"钕螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27068":{"oreDict":["screwPromethium"],"name":"钷螺丝","tr":"钷螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27069":{"oreDict":["screwSamarium"],"name":"钐螺丝","tr":"钐螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27070":{"oreDict":["screwEuropium"],"name":"铕螺丝","tr":"铕螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18879":{"oreDict":["plateDoublePaper"],"name":"纸板","tr":"纸板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27071":{"oreDict":["screwGadolinium"],"name":"钆螺丝","tr":"钆螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18880":{"oreDict":["plateDoubleRubber"," plateDoubleAnyRubber"],"name":"双重橡胶片","tr":"双重橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27072":{"oreDict":["screwTerbium"],"name":"铽螺丝","tr":"铽螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27073":{"oreDict":["screwDysprosium"],"name":"镝螺丝","tr":"镝螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27074":{"oreDict":["screwHolmium"],"name":"钬螺丝","tr":"钬螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27075":{"oreDict":["screwErbium"],"name":"铒螺丝","tr":"铒螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2500":{"oreDict":["dustDiamond"],"name":"钻石粉","tr":"钻石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18884":{"oreDict":["plateDoubleDesh"],"name":"双重戴斯板","tr":"双重戴斯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27076":{"oreDict":["screwThulium"],"name":"铥螺丝","tr":"铥螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2501":{"oreDict":["dustEmerald"],"name":"绿宝石粉","tr":"绿宝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27077":{"oreDict":["screwYtterbium"],"name":"镱螺丝","tr":"镱螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2502":{"oreDict":["dustRuby"],"name":"红宝石粉","tr":"红宝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27078":{"oreDict":["screwLutetium"],"name":"镥螺丝","tr":"镥螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2503":{"oreDict":["dustSapphire"],"name":"蓝宝石粉","tr":"蓝宝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2504":{"oreDict":["dustGreenSapphire"],"name":"绿色蓝宝石粉","tr":"绿色蓝宝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27080":{"oreDict":["screwTantalum"],"name":"钽螺丝","tr":"钽螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2505":{"oreDict":["dustOlivine"],"name":"橄榄石粉","tr":"橄榄石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27081":{"oreDict":["screwTungsten"],"name":"钨螺丝","tr":"钨螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2506":{"oreDict":["dustNetherStar"],"name":"下界之星粉","tr":"下界之星粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2507":{"oreDict":["dustTopaz"],"name":"黄玉粉","tr":"黄玉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27083":{"oreDict":["screwOsmium"],"name":"锇螺丝","tr":"锇螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2508":{"oreDict":["dustTanzanite"],"name":"坦桑石粉","tr":"坦桑石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27084":{"oreDict":["screwIridium"],"name":"铱螺丝","tr":"铱螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2509":{"oreDict":["dustAmethyst"],"name":"紫水晶粉","tr":"紫水晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27085":{"oreDict":["screwPlatinum"],"name":"铂螺丝","tr":"铂螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2510":{"oreDict":["dustOpal"],"name":"蛋白石粉","tr":"蛋白石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27086":{"oreDict":["screwGold"],"name":"金螺丝","tr":"金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2511":{"oreDict":["dustJasper"],"name":"碧玉粉","tr":"碧玉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2512":{"oreDict":["dustFoolsRuby"],"name":"尖晶石粉","tr":"尖晶石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2513":{"oreDict":["dustBlueTopaz"],"name":"蓝黄玉粉","tr":"蓝黄玉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27089":{"oreDict":["screwLead"],"name":"铅螺丝","tr":"铅螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2514":{"oreDict":["dustAmber"],"name":"琥珀粉","tr":"琥珀粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27090":{"oreDict":["screwBismuth"],"name":"铋螺丝","tr":"铋螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2515":{"oreDict":["dustDilithium"],"name":"双锂粉","tr":"双锂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2516":{"oreDict":["dustCertusQuartz"],"name":"赛特斯石英粉","tr":"赛特斯石英粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2518":{"oreDict":["dustForcicium"],"name":"力之宝石粉","tr":"力之宝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2519":{"oreDict":["dustForcillium"],"name":"力场宝石粉","tr":"力场宝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2520":{"oreDict":["dustMonazite"],"name":"独居石粉","tr":"独居石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27096":{"oreDict":["screwThorium"],"name":"钍螺丝","tr":"钍螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2521":{"oreDict":["dustForce"],"name":"力量粉","tr":"力量粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27097":{"oreDict":["screwUranium235"],"name":"铀-235螺丝","tr":"铀-235螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2522":{"oreDict":["dustNetherQuartz"],"name":"下界石英粉","tr":"下界石英粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27098":{"oreDict":["screwUranium"],"name":"铀-238螺丝","tr":"铀-238螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2523":{"oreDict":["dustQuartzite"],"name":"石英岩粉","tr":"石英岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2524":{"oreDict":["dyeCyan"," dustLazurite"," dye"],"name":"蓝金石粉","tr":"蓝金石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27100":{"oreDict":["screwPlutonium"],"name":"钚-239螺丝","tr":"钚-239螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2525":{"oreDict":["dustSodalite"," dyeBlue"," dye"],"name":"方钠石粉","tr":"方钠石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27101":{"oreDict":["screwPlutonium241"],"name":"钚-241螺丝","tr":"钚-241螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2526":{"oreDict":["dustLapis"," dyeBlue"," dye"],"name":"青金石粉","tr":"青金石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2527":{"oreDict":["dustGarnetRed"],"name":"红石榴石粉","tr":"红石榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27103":{"oreDict":["screwAmericium"],"name":"镅螺丝","tr":"镅螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2528":{"oreDict":["dustGarnetYellow"],"name":"黄石榴石粉","tr":"黄石榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18912":{"oreDict":["plateDoubleChrysotile"],"name":"双重石棉板","tr":"双重石棉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2529":{"oreDict":["dustVinteum"],"name":"温特姆粉","tr":"温特姆粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18913":{"oreDict":["plateDoubleRealgar"],"name":"双重雄黄板","tr":"双重雄黄板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2530":{"oreDict":["dustApatite"],"name":"磷灰石粉","tr":"磷灰石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2531":{"oreDict":["dustNiter"],"name":"硝石粉","tr":"硝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2532":{"oreDict":["dustEnderPearl"],"name":"末影珍珠粉","tr":"末影珍珠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2533":{"oreDict":["dustEnderEye"],"name":"末影之眼粉","tr":"末影之眼粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2534":{"oreDict":["dustTricalciumPhosphate"],"name":"磷酸三钙粉","tr":"磷酸三钙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2535":{"oreDict":["dustCoal"],"name":"煤粉","tr":"煤粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27111":{"oreDict":["screwTengamPurified"],"name":"纯镃螺丝","tr":"纯镃螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2536":{"oreDict":["dustCharcoal"],"name":"木炭粉","tr":"木炭粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27112":{"oreDict":["screwTengamAttuned"],"name":"谐镃螺丝","tr":"谐镃螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2537":{"oreDict":["dustJade"],"name":"玉粉","tr":"玉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2538":{"oreDict":["dustLignite"],"name":"褐煤粉","tr":"褐煤粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2540":{"oreDict":["dustInfusedAir"],"name":"风之魔晶粉","tr":"风之魔晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2541":{"oreDict":["dustInfusedFire"],"name":"火之魔晶粉","tr":"火之魔晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2542":{"oreDict":["dustInfusedEarth"],"name":"地之魔晶粉","tr":"地之魔晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2543":{"oreDict":["dustInfusedWater"],"name":"水之魔晶粉","tr":"水之魔晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2544":{"oreDict":["dustInfusedEntropy"],"name":"混沌魔晶粉","tr":"混沌魔晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2545":{"oreDict":["dustInfusedOrder"],"name":"秩序魔晶粉","tr":"秩序魔晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2546":{"oreDict":["dustRoastedCopper"],"name":"焙烧铜粉","tr":"焙烧铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2547":{"oreDict":["dustRoastedAntimony"],"name":"焙烧锑粉","tr":"焙烧锑粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2548":{"oreDict":["dustRoastedIron"],"name":"焙烧铁粉","tr":"焙烧铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2549":{"oreDict":["dustRoastedNickel"],"name":"焙烧镍粉","tr":"焙烧镍粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2550":{"oreDict":["dustRoastedZinc"],"name":"焙烧锌粉","tr":"焙烧锌粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2551":{"oreDict":["dustRoastedCobalt"],"name":"焙烧钴粉","tr":"焙烧钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2552":{"oreDict":["dustRoastedArsenic"],"name":"焙烧砷粉","tr":"焙烧砷粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2553":{"oreDict":["dustRoastedLead"],"name":"焙烧铅粉","tr":"焙烧铅粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27129":{"oreDict":["screwNeutronium"],"name":"中子螺丝","tr":"中子螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27131":{"oreDict":["screwSuperconductorUIVBase"],"name":"UIV超导粗胚螺丝","tr":"UIV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27134":{"oreDict":["screwSuperconductorUMVBase"],"name":"UMV超导粗胚螺丝","tr":"UMV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27139":{"oreDict":["screwUniversium"],"name":"宇宙素螺丝","tr":"宇宙素螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27141":{"oreDict":["screwEternity"],"name":"永恒螺丝","tr":"永恒螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18951":{"oreDict":["plateDoubleVyroxeres"],"name":"双重幽冥剧毒结晶板","tr":"双重幽冥剧毒结晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27143":{"oreDict":["screwMagmatter"],"name":"磁物质螺丝","tr":"磁物质螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18952":{"oreDict":["plateDoubleCeruclase"],"name":"双重暗影秘银板","tr":"双重暗影秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18956":{"oreDict":["plateDoubleTartarite"],"name":"双重溶火之石板","tr":"双重溶火之石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2576":{"oreDict":["dustTPVAlloy"],"name":"钛铂钒合金粉","tr":"钛铂钒合金粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2581":{"oreDict":["dustTranscendentMetal"],"name":"超时空金属粉","tr":"超时空金属粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2582":{"oreDict":["dustEnrichedHolmium"],"name":"富集钬粉","tr":"富集钬粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18966":{"oreDict":["plateDoubleOrichalcum"],"name":"双重山铜板","tr":"双重山铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2585":{"oreDict":["dustWhiteDwarfMatter"],"name":"白矮星物质粉","tr":"白矮星物质粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2586":{"oreDict":["dustBlackDwarfMatter"],"name":"黑矮星物质粉","tr":"黑矮星物质粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18970":{"oreDict":["plateDoubleVoid"],"name":"双重虚空锭板","tr":"双重虚空锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2588":{"oreDict":["dustSpaceTime"],"name":"时空粉","tr":"时空粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2590":{"oreDict":["dustPotassiumNitrate"],"name":"硝酸钾粉","tr":"硝酸钾粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18974":{"oreDict":["plateDoubleSuperconductorUEVBase"],"name":"双重UEV超导粗胚板","tr":"双重UEV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2591":{"oreDict":["dustChromiumtrioxide"],"name":"三氧化铬粉","tr":"三氧化铬粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18975":{"oreDict":["plateDoubleDraconium"],"name":"双重龙锭板","tr":"双重龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18976":{"oreDict":["plateDoubleDraconiumAwakened"],"name":"双重觉醒龙锭板","tr":"双重觉醒龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18977":{"oreDict":["plateDoubleBloodInfusedIron"],"name":"双重注血铁板","tr":"双重注血铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2594":{"oreDict":["dustPotassiumDichromate"],"name":"重铬酸钾粉","tr":"重铬酸钾粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18978":{"oreDict":["plateDoubleIchorium"],"name":"双重灵宝板","tr":"双重灵宝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18979":{"oreDict":["plateDoubleRadoxPoly"],"name":"双重拉多X聚合物板","tr":"双重拉多X聚合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18980":{"oreDict":["plateDoubleGalliumArsenide"],"name":"双重砷化镓板","tr":"双重砷化镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18981":{"oreDict":["plateDoubleIndiumGalliumPhosphide"],"name":"双重磷化铟镓板","tr":"双重磷化铟镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18982":{"oreDict":["plateDoubleCosmicNeutronium"],"name":"双重宇宙中子态素板","tr":"双重宇宙中子态素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2599":{"oreDict":["dustPolybenzimidazole"],"name":"聚苯并咪唑粉","tr":"聚苯并咪唑粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18984":{"oreDict":["plateDoubleFlerovium_GT5U"],"name":"双重板","tr":"双重板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18985":{"oreDict":["plateDoubleLongasssuperconductornameforuhvwire"],"name":"双重UHV超导粗胚板","tr":"双重UHV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18986":{"oreDict":["plateDoubleLongasssuperconductornameforuvwire"],"name":"双重UV超导粗胚板","tr":"双重UV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18987":{"oreDict":["plateDoublePentacadmiummagnesiumhexaoxid"],"name":"双重MV超导粗胚板","tr":"双重MV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18988":{"oreDict":["plateDoubleTitaniumonabariumdecacoppereikosaoxid"],"name":"双重HV超导粗胚板","tr":"双重HV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18989":{"oreDict":["plateDoubleUraniumtriplatinid"],"name":"双重EV超导粗胚板","tr":"双重EV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18990":{"oreDict":["plateDoubleVanadiumtriindinid"],"name":"双重IV超导粗胚板","tr":"双重IV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2607":{"oreDict":["dustPyrochlore"],"name":"烧绿石粉","tr":"烧绿石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18991":{"oreDict":["plateDoubleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"双重LuV超导粗胚板","tr":"双重LuV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"18992":{"oreDict":["plateDoubleTetranaquadahdiindiumhexaplatiumosminid"],"name":"双重ZPM超导粗胚板","tr":"双重ZPM超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2610":{"oreDict":["dustEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂末","tr":"纤维强化的环氧树脂末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2611":{"oreDict":["dustBorosilicateGlass"],"name":"硼玻璃粉","tr":"硼玻璃粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2612":{"oreDict":["dustFerriteMixture"],"name":"铁氧体混合物粉","tr":"铁氧体混合物粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2613":{"oreDict":["dustNickelZincFerrite"],"name":"镍锌铁氧体粉","tr":"镍锌铁氧体粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2614":{"oreDict":["dustMassicot"],"name":"铅黄粉","tr":"铅黄粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2615":{"oreDict":["dustArsenicTrioxide"],"name":"砒霜粉","tr":"砒霜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2616":{"oreDict":["dustCobaltOxide"],"name":"氧化钴粉","tr":"氧化钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2617":{"oreDict":["dustZincite"],"name":"红锌矿粉","tr":"红锌矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2618":{"oreDict":["dustAntimonyTrioxide"],"name":"三氧化二锑粉","tr":"三氧化二锑粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2619":{"oreDict":["dustCupricOxide"],"name":"氧化铜粉","tr":"氧化铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2620":{"oreDict":["dustFerrosilite"],"name":"铁辉石粉","tr":"铁辉石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2621":{"oreDict":["dustMagnesia"],"name":"苦土粉","tr":"苦土粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2622":{"oreDict":["dustQuicklime"],"name":"生石灰粉","tr":"生石灰粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19006":{"oreDict":["plateTripleLithium"],"name":"三重锂板","tr":"三重锂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2623":{"oreDict":["dustPotash"],"name":"钾碱粉","tr":"钾碱粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2624":{"oreDict":["dustSodaAsh"],"name":"纯碱粉","tr":"纯碱粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19008":{"oreDict":["plateTripleBeryllium"],"name":"三重铍板","tr":"三重铍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2625":{"oreDict":["dustBrick"],"name":"砖粉","tr":"砖粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27201":{"oreDict":["screwManasteel"],"name":"魔钢螺丝","tr":"魔钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2626":{"oreDict":["dustFireclay"],"name":"耐火粘土粉","tr":"耐火粘土粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19010":{"oreDict":["plateTripleCarbon"],"name":"三重碳板","tr":"三重碳板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27202":{"oreDict":["screwTerrasteel"],"name":"泰拉钢螺丝","tr":"泰拉钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27203":{"oreDict":["screwElvenElementium"],"name":"源质钢螺丝","tr":"源质钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27205":{"oreDict":["screwGaiaSpirit"],"name":"盖亚之魂螺丝","tr":"盖亚之魂螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2630":{"oreDict":["dustSodiumBisulfate"],"name":"硫酸氢钠粉","tr":"硫酸氢钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27206":{"oreDict":["screwLivingwood"],"name":"活木螺丝","tr":"活木螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2631":{"oreDict":["dustPolyphenyleneSulfide"],"name":"聚苯硫醚粉","tr":"聚苯硫醚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27207":{"oreDict":["screwDreamwood"],"name":"梦之木螺丝","tr":"梦之木螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27208":{"oreDict":["screwManaDiamond"],"name":"魔力钻石螺丝","tr":"魔力钻石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2633":{"oreDict":["dustPolydimethylsiloxane"],"name":"聚二甲基硅氧烷末","tr":"聚二甲基硅氧烷末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27209":{"oreDict":["screwBotaniaDragonstone"],"name":"龙石螺丝","tr":"龙石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2634":{"oreDict":["dustRawStyreneButadieneRubber"],"name":"生丁苯橡胶粉","tr":"生丁苯橡胶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19018":{"oreDict":["plateTripleMagnesium"],"name":"三重镁板","tr":"三重镁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2635":{"oreDict":["dustAnyRubber"," dustAnySyntheticRubber"," dustStyreneButadieneRubber"],"name":"丁苯橡胶末","tr":"丁苯橡胶末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19019":{"oreDict":["plateTripleAluminium"],"name":"三重铝板","tr":"三重铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2636":{"oreDict":["dustPolystyrene"],"name":"聚苯乙烯末","tr":"聚苯乙烯末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19020":{"oreDict":["plateTripleSilicon"],"name":"三重硅板","tr":"三重硅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19025":{"oreDict":["plateTriplePotassium"],"name":"三重钾板","tr":"三重钾板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19027":{"oreDict":["plateTripleScandium"],"name":"三重钪板","tr":"三重钪板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19028":{"oreDict":["plateTripleTitanium"],"name":"三重钛板","tr":"三重钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19029":{"oreDict":["plateTripleVanadium"],"name":"三重钒板","tr":"三重钒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19030":{"oreDict":["plateTripleChrome"],"name":"三重铬板","tr":"三重铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19031":{"oreDict":["plateTripleManganese"],"name":"三重锰板","tr":"三重锰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19032":{"oreDict":["plateTripleIron"," plateTripleAnyIron"],"name":"三重铁板","tr":"三重铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2649":{"oreDict":["dustPolyvinylChloride"],"name":"聚氯乙烯末","tr":"聚氯乙烯末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19033":{"oreDict":["plateTripleCobalt"],"name":"三重钴板","tr":"三重钴板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19034":{"oreDict":["plateTripleNickel"],"name":"三重镍板","tr":"三重镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19035":{"oreDict":["plateTripleCopper"," plateTripleAnyCopper"],"name":"三重铜板","tr":"三重铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19036":{"oreDict":["plateTripleZinc"],"name":"三重锌板","tr":"三重锌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19037":{"oreDict":["plateTripleGallium"],"name":"三重镓板","tr":"三重镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19039":{"oreDict":["plateTripleArsenic"],"name":"三重砷板","tr":"三重砷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19043":{"oreDict":["plateTripleRubidium"],"name":"三重铷板","tr":"三重铷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19045":{"oreDict":["plateTripleYttrium"],"name":"三重钇板","tr":"三重钇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19047":{"oreDict":["plateTripleNiobium"],"name":"三重铌板","tr":"三重铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19048":{"oreDict":["plateTripleMolybdenum"],"name":"三重钼板","tr":"三重钼板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2665":{"oreDict":["dustPhosphorousPentoxide"],"name":"五氧化二磷粉","tr":"五氧化二磷粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19052":{"oreDict":["plateTriplePalladium"],"name":"三重钯板","tr":"三重钯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19054":{"oreDict":["plateTripleSilver"],"name":"三重银板","tr":"三重银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19056":{"oreDict":["plateTripleIndium"],"name":"三重铟板","tr":"三重铟板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19057":{"oreDict":["plateTripleTin"],"name":"三重锡板","tr":"三重锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19058":{"oreDict":["plateTripleAntimony"],"name":"三重锑板","tr":"三重锑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19059":{"oreDict":["plateTripleTellurium"],"name":"三重碲板","tr":"三重碲板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2676":{"oreDict":["dustMetalMixture"],"name":"金属混合物粉","tr":"金属混合物粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19062":{"oreDict":["plateTripleCaesium"],"name":"三重铯板","tr":"三重铯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19063":{"oreDict":["plateTripleBarium"],"name":"三重钡板","tr":"三重钡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19064":{"oreDict":["plateTripleLanthanum"],"name":"三重镧板","tr":"三重镧板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19065":{"oreDict":["plateTripleCerium"],"name":"三重铈板","tr":"三重铈板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19066":{"oreDict":["plateTriplePraseodymium"],"name":"三重镨板","tr":"三重镨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19067":{"oreDict":["plateTripleNeodymium"],"name":"三重钕板","tr":"三重钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19068":{"oreDict":["plateTriplePromethium"],"name":"三重钷板","tr":"三重钷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2685":{"oreDict":["dustSodiumHydroxide"," dustSodiumHydroxide_GT5U"],"name":"氢氧化钠粉","tr":"氢氧化钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19069":{"oreDict":["plateTripleSamarium"],"name":"三重钐板","tr":"三重钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19070":{"oreDict":["plateTripleEuropium"],"name":"三重铕板","tr":"三重铕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19071":{"oreDict":["plateTripleGadolinium"],"name":"三重钆板","tr":"三重钆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19072":{"oreDict":["plateTripleTerbium"],"name":"三重铽板","tr":"三重铽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19073":{"oreDict":["plateTripleDysprosium"],"name":"三重镝板","tr":"三重镝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19074":{"oreDict":["plateTripleHolmium"],"name":"三重钬板","tr":"三重钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19075":{"oreDict":["plateTripleErbium"],"name":"三重铒板","tr":"三重铒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19076":{"oreDict":["plateTripleThulium"],"name":"三重铥板","tr":"三重铥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19077":{"oreDict":["plateTripleYtterbium"],"name":"三重镱板","tr":"三重镱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19078":{"oreDict":["plateTripleLutetium"],"name":"三重镥板","tr":"三重镥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2695":{"oreDict":["dustSodiumCarbonate"],"name":"碳酸钠粉","tr":"碳酸钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2696":{"oreDict":["dustSodiumAluminate"],"name":"铝酸钠粉","tr":"铝酸钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19080":{"oreDict":["plateTripleTantalum"],"name":"三重钽板","tr":"三重钽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2697":{"oreDict":["dustAlumina"],"name":"氧化铝粉","tr":"氧化铝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19081":{"oreDict":["plateTripleTungsten"],"name":"三重钨板","tr":"三重钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2698":{"oreDict":["dustAluminiumHydroxide"],"name":"氢氧化铝粉","tr":"氢氧化铝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2699":{"oreDict":["dustCryolite"],"name":"冰晶石粉","tr":"冰晶石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19083":{"oreDict":["plateTripleOsmium"],"name":"三重锇板","tr":"三重锇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19084":{"oreDict":["plateTripleIridium"],"name":"三重铱板","tr":"三重铱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19085":{"oreDict":["plateTriplePlatinum"],"name":"三重铂板","tr":"三重铂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2702":{"oreDict":["dustIce"],"name":"碎冰","tr":"碎冰","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19086":{"oreDict":["plateTripleGold"],"name":"三重金板","tr":"三重金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19089":{"oreDict":["plateTripleLead"],"name":"三重铅板","tr":"三重铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19090":{"oreDict":["plateTripleBismuth"],"name":"三重铋板","tr":"三重铋板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19096":{"oreDict":["plateTripleThorium"],"name":"三重钍板","tr":"三重钍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19097":{"oreDict":["plateTripleUranium235"],"name":"三重铀-235板","tr":"三重铀-235板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19098":{"oreDict":["plateTripleUranium"],"name":"三重铀-238板","tr":"三重铀-238板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19100":{"oreDict":["plateTriplePlutonium"],"name":"三重钚-239板","tr":"三重钚-239板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19101":{"oreDict":["plateTriplePlutonium241"],"name":"三重钚-241板","tr":"三重钚-241板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2719":{"oreDict":["dustSodiumSulfide"],"name":"硫化钠粉","tr":"硫化钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19103":{"oreDict":["plateTripleAmericium"],"name":"三重镅板","tr":"三重镅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27300":{"oreDict":["screwBronze"," screwAnyBronze"],"name":"青铜螺丝","tr":"青铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27301":{"oreDict":["screwBrass"],"name":"黄铜螺丝","tr":"黄铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27302":{"oreDict":["screwInvar"],"name":"殷钢螺丝","tr":"殷钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19111":{"oreDict":["plateTripleTengamPurified"],"name":"三重纯镃板","tr":"三重纯镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27303":{"oreDict":["screwElectrum"],"name":"琥珀金螺丝","tr":"琥珀金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2728":{"oreDict":["dustSnow"],"name":"雪粉","tr":"雪粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19112":{"oreDict":["plateTripleTengamAttuned"],"name":"三重谐镃板","tr":"三重谐镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27304":{"oreDict":["screwAnyIron"," screwWroughtIron"],"name":"锻铁螺丝","tr":"锻铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27305":{"oreDict":["screwSteel"],"name":"钢螺丝","tr":"钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27306":{"oreDict":["screwStainlessSteel"],"name":"不锈钢螺丝","tr":"不锈钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27307":{"oreDict":["screwPigIron"," screwAnyIron"],"name":"生铁螺丝","tr":"生铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27308":{"oreDict":["screwRedAlloy"],"name":"红色合金螺丝","tr":"红色合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27309":{"oreDict":["screwBlueAlloy"],"name":"蓝色合金螺丝","tr":"蓝色合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27310":{"oreDict":["screwCupronickel"],"name":"白铜螺丝","tr":"白铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27311":{"oreDict":["screwNichrome"],"name":"镍铬合金螺丝","tr":"镍铬合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27312":{"oreDict":["screwKanthal"],"name":"坎塔尔合金螺丝","tr":"坎塔尔合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27313":{"oreDict":["screwMagnalium"],"name":"镁铝合金螺丝","tr":"镁铝合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27314":{"oreDict":["screwSolderingAlloy"],"name":"焊锡螺丝","tr":"焊锡螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27315":{"oreDict":["screwBatteryAlloy"],"name":"电池合金螺丝","tr":"电池合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27316":{"oreDict":["screwTungstenSteel"],"name":"钨钢螺丝","tr":"钨钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27317":{"oreDict":["screwOsmiridium"],"name":"铱锇合金螺丝","tr":"铱锇合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27318":{"oreDict":["screwSunnarium"],"name":"阳光化合物螺丝","tr":"阳光化合物螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27319":{"oreDict":["screwAdamantium"],"name":"精金螺丝","tr":"精金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2744":{"oreDict":["dustSodiumOxide"],"name":"氧化钠粉","tr":"氧化钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27320":{"oreDict":["screwElectrumFlux"],"name":"通流琥珀金螺丝","tr":"通流琥珀金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19129":{"oreDict":["plateTripleNeutronium"],"name":"三重中子板","tr":"三重中子板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27321":{"oreDict":["screwEnderium"],"name":"末影(te)螺丝","tr":"末影(te)螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19131":{"oreDict":["plateTripleSuperconductorUIVBase"],"name":"三重UIV超导粗胚板","tr":"三重UIV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27323":{"oreDict":["screwInfusedGold"],"name":"注魔金螺丝","tr":"注魔金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27324":{"oreDict":["screwNaquadah"],"name":"硅岩螺丝","tr":"硅岩螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2749":{"oreDict":["dustSodiumMethoxide"],"name":"甲醇钠粉","tr":"甲醇钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27325":{"oreDict":["screwNaquadahAlloy"],"name":"硅岩合金螺丝","tr":"硅岩合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19134":{"oreDict":["plateTripleSuperconductorUMVBase"],"name":"三重UMV超导粗胚板","tr":"三重UMV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27326":{"oreDict":["screwNaquadahEnriched"],"name":"富集硅岩螺丝","tr":"富集硅岩螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2751":{"oreDict":["dustSodiumHydride"],"name":"氢化钠粉","tr":"氢化钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27327":{"oreDict":["screwNaquadria"],"name":"超能硅岩螺丝","tr":"超能硅岩螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27328":{"oreDict":["screwDuranium"],"name":"铿铀螺丝","tr":"铿铀螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2753":{"oreDict":["dustTriphenylphosphene"],"name":"三苯基膦粉","tr":"三苯基膦粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27329":{"oreDict":["screwTritanium"],"name":"三钛螺丝","tr":"三钛螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2754":{"oreDict":["dustRhodiumChloride"],"name":"氯化铑粉","tr":"氯化铑粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27330":{"oreDict":["screwThaumium"],"name":"神秘螺丝","tr":"神秘螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2755":{"oreDict":["dustSodiumBorohydride"],"name":"硼氢化钠粉","tr":"硼氢化钠粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19139":{"oreDict":["plateTripleUniversium"],"name":"三重宇宙素板","tr":"三重宇宙素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27331":{"oreDict":["screwMithril"],"name":"秘银螺丝","tr":"秘银螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2756":{"oreDict":["dustOrganorhodiumCatalyst"],"name":"有机铑催化剂粉","tr":"有机铑催化剂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2757":{"oreDict":["dustCobalt(II)Nitrate"],"name":"硝酸钴粉","tr":"硝酸钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19141":{"oreDict":["plateTripleEternity"],"name":"三重永恒板","tr":"三重永恒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27333":{"oreDict":["screwAstralSilver"],"name":"星辰银螺丝","tr":"星辰银螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2758":{"oreDict":["dustCobalt(II)Acetate"],"name":"乙酸钴粉","tr":"乙酸钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27334":{"oreDict":["screwBlackSteel"],"name":"黑钢螺丝","tr":"黑钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2759":{"oreDict":["dustCobaltIIHydroxide"],"name":"氢氧化钴粉","tr":"氢氧化钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19143":{"oreDict":["plateTripleMagmatter"],"name":"三重磁物质板","tr":"三重磁物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27335":{"oreDict":["screwDamascusSteel"],"name":"大马士革钢螺丝","tr":"大马士革钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27336":{"oreDict":["screwShadowIron"],"name":"暗影铁螺丝","tr":"暗影铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2761":{"oreDict":["dustCobalt(II)Naphthenate"],"name":"环烷酸钴粉","tr":"环烷酸钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27337":{"oreDict":["screwShadowSteel"],"name":"暗影钢螺丝","tr":"暗影钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27338":{"oreDict":["screwIronWood"],"name":"铁木螺丝","tr":"铁木螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27339":{"oreDict":["screwSteeleaf"],"name":"钢叶螺丝","tr":"钢叶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27340":{"oreDict":["screwMeteoricIron"],"name":"陨铁螺丝","tr":"陨铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2765":{"oreDict":["dustKevlar"],"name":"凯芙拉粉","tr":"凯芙拉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27341":{"oreDict":["screwMeteoricSteel"],"name":"陨钢螺丝","tr":"陨钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27342":{"oreDict":["screwDarkIron"],"name":"玄铁螺丝","tr":"玄铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27343":{"oreDict":["screwCobaltBrass"],"name":"钴黄铜螺丝","tr":"钴黄铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27344":{"oreDict":["screwUltimet"],"name":"哈氏合金螺丝","tr":"哈氏合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2769":{"oreDict":["dustBismuthIIIOxide"],"name":"氧化铋粉","tr":"氧化铋粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27345":{"oreDict":["screwAnnealedCopper"," screwAnyCopper"],"name":"退火铜螺丝","tr":"退火铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2770":{"oreDict":["dustHeeEndium"],"name":"终末粉","tr":"终末粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27346":{"oreDict":["screwFierySteel"],"name":"炽热的钢螺丝","tr":"炽热的钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2771":{"oreDict":["dustRaneyNickelActivated"],"name":"雷尼镍粉","tr":"雷尼镍粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27347":{"oreDict":["screwFirestone"],"name":"火石螺丝","tr":"火石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2772":{"oreDict":["dustNickelAluminide"],"name":"铝化镍粉","tr":"铝化镍粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27348":{"oreDict":["screwRedSteel"],"name":"红钢螺丝","tr":"红钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2773":{"oreDict":["dust2Butin14diol"],"name":"2-丁炔-1,4-二醇粉","tr":"2-丁炔-1,4-二醇粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27349":{"oreDict":["screwBlueSteel"],"name":"蓝钢螺丝","tr":"蓝钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27350":{"oreDict":["screwSterlingSilver"],"name":"标准纯银螺丝","tr":"标准纯银螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2775":{"oreDict":["dustCacliumCarbide"],"name":"碳化钙粉","tr":"碳化钙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27351":{"oreDict":["screwRoseGold"],"name":"玫瑰金螺丝","tr":"玫瑰金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27352":{"oreDict":["screwBlackBronze"],"name":"黑青铜螺丝","tr":"黑青铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27353":{"oreDict":["screwBismuthBronze"],"name":"铋青铜螺丝","tr":"铋青铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27354":{"oreDict":["screwIronMagnetic"],"name":"磁化铁螺丝","tr":"磁化铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2779":{"oreDict":["dustpPhenylenediamine"],"name":"对苯二胺粉","tr":"对苯二胺粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27355":{"oreDict":["screwSteelMagnetic"],"name":"磁化钢螺丝","tr":"磁化钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27356":{"oreDict":["screwNeodymiumMagnetic"],"name":"磁化钕螺丝","tr":"磁化钕螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27357":{"oreDict":["screwVanadiumGallium"],"name":"钒镓合金螺丝","tr":"钒镓合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2782":{"oreDict":["dustTerephthaloylChloride"],"name":"对苯二甲酰氯粉","tr":"对苯二甲酰氯粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27358":{"oreDict":["screwYttriumBariumCuprate"],"name":"钇钡铜氧螺丝","tr":"钇钡铜氧螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27359":{"oreDict":["screwNiobiumNitride"],"name":"氮化铌螺丝","tr":"氮化铌螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27360":{"oreDict":["screwNiobiumTitanium"],"name":"铌钛合金螺丝","tr":"铌钛合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2785":{"oreDict":["dustPentaerythritol"],"name":"季戊四醇粉","tr":"季戊四醇粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27361":{"oreDict":["screwChromiumDioxide"],"name":"二氧化铬螺丝","tr":"二氧化铬螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27362":{"oreDict":["screwKnightmetal"],"name":"骑士金属螺丝","tr":"骑士金属螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27363":{"oreDict":["screwTinAlloy"],"name":"锡铁合金螺丝","tr":"锡铁合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27364":{"oreDict":["screwDarkSteel"],"name":"玄钢螺丝","tr":"玄钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27365":{"oreDict":["screwElectricalSteel"],"name":"磁钢螺丝","tr":"磁钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2790":{"oreDict":["dustPolyurethaneCatalystADust"],"name":"聚氨酯催化剂A粉","tr":"聚氨酯催化剂A粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27366":{"oreDict":["screwEnergeticAlloy"],"name":"充能合金螺丝","tr":"充能合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27367":{"oreDict":["screwVibrantAlloy"],"name":"脉冲合金螺丝","tr":"脉冲合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27368":{"oreDict":["screwShadow"],"name":"暗影金属螺丝","tr":"暗影金属螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27369":{"oreDict":["screwConductiveIron"],"name":"导电铁螺丝","tr":"导电铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27370":{"oreDict":["screwTungstenCarbide"],"name":"碳化钨螺丝","tr":"碳化钨螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27371":{"oreDict":["screwVanadiumSteel"],"name":"钒钢螺丝","tr":"钒钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2796":{"oreDict":["dustDiphenylmethaneDiisocyanate"],"name":"4,4\u0027-二苯基甲烷二异氰酸酯粉","tr":"4,4\u0027-二苯基甲烷二异氰酸酯粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27372":{"oreDict":["screwHSSG"],"name":"高速钢-G螺丝","tr":"高速钢-G螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2797":{"oreDict":["dustCalciumHydride"],"name":"氢化钙粉","tr":"氢化钙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27373":{"oreDict":["screwHSSE"],"name":"高速钢-E螺丝","tr":"高速钢-E螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27374":{"oreDict":["screwHSSS"],"name":"高速钢-S螺丝","tr":"高速钢-S螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2802":{"oreDict":["dustFlint"],"name":"燧石粉","tr":"燧石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27378":{"oreDict":["screwPulsatingIron"],"name":"脉冲铁螺丝","tr":"脉冲铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27379":{"oreDict":["screwSoularium"],"name":"魂金螺丝","tr":"魂金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2804":{"oreDict":["dustObsidian"],"name":"黑曜石粉","tr":"黑曜石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27380":{"oreDict":["screwEnderiumBase"],"name":"末影粗胚螺丝","tr":"末影粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2805":{"oreDict":["dustClay"],"name":"粘土粉","tr":"粘土粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27381":{"oreDict":["screwRedstoneAlloy"],"name":"红石合金螺丝","tr":"红石合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27382":{"oreDict":["screwArdite"],"name":"阿迪特螺丝","tr":"阿迪特螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2807":{"oreDict":["dustNetherrack"],"name":"地狱岩粉","tr":"地狱岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27383":{"oreDict":["screwReinforced"],"name":"强化螺丝","tr":"强化螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2808":{"oreDict":["dustEndstone"],"name":"末地石粉","tr":"末地石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27384":{"oreDict":["screwGalgadorian"],"name":"混合晶螺丝","tr":"混合晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2809":{"oreDict":["dustWood"," pulpWood"],"name":"木浆","tr":"木浆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27385":{"oreDict":["screwEnhancedGalgadorian"],"name":"强化混合晶螺丝","tr":"强化混合晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27386":{"oreDict":["screwManyullyn"],"name":"玛玉灵螺丝","tr":"玛玉灵螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27387":{"oreDict":["screwMytryl"],"name":"深空秘银螺丝","tr":"深空秘银螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2812":{"oreDict":["dustElectrotine"],"name":"蓝石粉","tr":"蓝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27388":{"oreDict":["screwBlackPlutonium"],"name":"黑钚螺丝","tr":"黑钚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2813":{"oreDict":["dustBluestone"],"name":"蓝石粉","tr":"蓝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27389":{"oreDict":["screwCallistoIce"],"name":"木卫四冰螺丝","tr":"木卫四冰螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2814":{"oreDict":["dustNetherBrick"],"name":"地狱砖粉","tr":"地狱砖粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11006":{"oreDict":["ingotLithium"],"name":"锂锭","tr":"锂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27390":{"oreDict":["screwLedox"],"name":"深铅螺丝","tr":"深铅螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2815":{"oreDict":["dustAsh"],"name":"灰烬","tr":"灰烬","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27391":{"oreDict":["screwQuantium"],"name":"量子螺丝","tr":"量子螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2816":{"oreDict":["dustDarkAsh"],"name":"黑色灰烬","tr":"黑色灰烬","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11008":{"oreDict":["ingotBeryllium"],"name":"铍锭","tr":"铍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27392":{"oreDict":["screwDuralumin"],"name":"硬铝螺丝","tr":"硬铝螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2817":{"oreDict":["dustSalt"," itemSalt"," foodSalt"],"name":"盐","tr":"盐","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19201":{"oreDict":["plateTripleManasteel"],"name":"三重魔钢板","tr":"三重魔钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27393":{"oreDict":["screwOriharukon"],"name":"奥利哈钢螺丝","tr":"奥利哈钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2818":{"oreDict":["dustHydratedCoal"],"name":"湿润煤粉","tr":"湿润煤粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11010":{"oreDict":["ingotCarbon"],"name":"碳锭","tr":"碳锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19202":{"oreDict":["plateTripleTerrasteel"],"name":"三重泰拉钢板","tr":"三重泰拉钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27394":{"oreDict":["screwInfinityCatalyst"],"name":"无尽催化剂螺丝","tr":"无尽催化剂螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2819":{"oreDict":["dustGraphene"],"name":"石墨烯粉","tr":"石墨烯粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19203":{"oreDict":["plateTripleElvenElementium"],"name":"三重源质钢板","tr":"三重源质钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27395":{"oreDict":["screwBedrockium"],"name":"基岩螺丝","tr":"基岩螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2820":{"oreDict":["dustAlmandine"],"name":"铁铝榴石粉","tr":"铁铝榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2821":{"oreDict":["dustAndradite"],"name":"钙铁榴石粉","tr":"钙铁榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19205":{"oreDict":["plateTripleGaiaSpirit"],"name":"三重盖亚之魂板","tr":"三重盖亚之魂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27397":{"oreDict":["screwInfinity"],"name":"无尽螺丝","tr":"无尽螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2822":{"oreDict":["dustBauxite"],"name":"铝土矿粉","tr":"铝土矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27398":{"oreDict":["screwMysteriousCrystal"],"name":"神秘水晶螺丝","tr":"神秘水晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2823":{"oreDict":["dustCalcite"],"name":"方解石粉","tr":"方解石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27399":{"oreDict":["screwSamariumMagnetic"],"name":"磁化钐螺丝","tr":"磁化钐螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2824":{"oreDict":["dustCassiterite"],"name":"锡石粉","tr":"锡石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27400":{"oreDict":["screwAlumite"],"name":"耐酸铝螺丝","tr":"耐酸铝螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2825":{"oreDict":["dustChromite"],"name":"铬铁矿粉","tr":"铬铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27401":{"oreDict":["screwEndSteel"],"name":"末影钢螺丝","tr":"末影钢螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2826":{"oreDict":["dustCinnabar"],"name":"朱砂粉","tr":"朱砂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11018":{"oreDict":["ingotMagnesium"],"name":"镁锭","tr":"镁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27402":{"oreDict":["screwCrudeSteel"],"name":"复合粘土螺丝","tr":"复合粘土螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2827":{"oreDict":["dustCobaltite"],"name":"辉钴矿粉","tr":"辉钴矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11019":{"oreDict":["ingotAluminum"," ingotAluminium"],"name":"铝锭","tr":"铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27403":{"oreDict":["screwCrystallineAlloy"],"name":"晶化合金螺丝","tr":"晶化合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2828":{"oreDict":["dustCooperite"],"name":"硫铂矿粉","tr":"硫铂矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11020":{"oreDict":["ingotSilicon"],"name":"硅锭","tr":"硅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27404":{"oreDict":["screwMelodicAlloy"],"name":"旋律合金螺丝","tr":"旋律合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2829":{"oreDict":["dustDeepIron"],"name":"深渊铁粉","tr":"深渊铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27405":{"oreDict":["screwStellarAlloy"],"name":"恒星合金螺丝","tr":"恒星合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2830":{"oreDict":["dustGalena"],"name":"方铅矿粉","tr":"方铅矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27406":{"oreDict":["screwCrystallinePinkSlime"],"name":"晶化粉红史莱姆螺丝","tr":"晶化粉红史莱姆螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2831":{"oreDict":["dustGrossular"],"name":"钙铝榴石粉","tr":"钙铝榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27407":{"oreDict":["screwEnergeticSilver"],"name":"充能银螺丝","tr":"充能银螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2832":{"oreDict":["dustLiveRoot"],"name":"活根粉","tr":"活根粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27408":{"oreDict":["screwVividAlloy"],"name":"生动合金螺丝","tr":"生动合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2833":{"oreDict":["dustPhosphate"],"name":"磷酸盐粉","tr":"磷酸盐粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11025":{"oreDict":["ingotPotassium"],"name":"钾锭","tr":"钾锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2834":{"oreDict":["dustPyrite"],"name":"黄铁矿粉","tr":"黄铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2835":{"oreDict":["dustPyrope"],"name":"镁铝榴石粉","tr":"镁铝榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11027":{"oreDict":["ingotScandium"],"name":"钪锭","tr":"钪锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2836":{"oreDict":["dustSaltpeter"],"name":"硝石粉","tr":"硝石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11028":{"oreDict":["ingotTitanium"],"name":"钛锭","tr":"钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2837":{"oreDict":["dustSiliconDioxide"],"name":"二氧化硅粉","tr":"二氧化硅粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11029":{"oreDict":["ingotVanadium"],"name":"钒锭","tr":"钒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2838":{"oreDict":["dustSpessartine"],"name":"锰铝榴石粉","tr":"锰铝榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11030":{"oreDict":["ingotChrome"],"name":"铬锭","tr":"铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2839":{"oreDict":["dustSphalerite"],"name":"闪锌矿粉","tr":"闪锌矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11031":{"oreDict":["ingotManganese"],"name":"锰锭","tr":"锰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2840":{"oreDict":["dustTetrahedrite"],"name":"黝铜矿粉","tr":"黝铜矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2841":{"oreDict":["dustTungstate"],"name":"钨酸锂粉","tr":"钨酸锂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11033":{"oreDict":["ingotCobalt"],"name":"钴锭","tr":"钴锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2842":{"oreDict":["dustUvarovite"],"name":"钙铬榴石粉","tr":"钙铬榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11034":{"oreDict":["ingotNickel"],"name":"镍锭","tr":"镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2843":{"oreDict":["dustPyrotheum"],"name":"烈焰之炽焱粉","tr":"烈焰之炽焱粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11035":{"oreDict":["ingotCopper"," ingotAnyCopper"],"name":"铜锭","tr":"铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2844":{"oreDict":["dustBasalt"],"name":"玄武岩粉","tr":"玄武岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11036":{"oreDict":["ingotZinc"],"name":"锌锭","tr":"锌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2845":{"oreDict":["dustMarble"],"name":"大理石粉","tr":"大理石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11037":{"oreDict":["ingotGallium"],"name":"镓锭","tr":"镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2846":{"oreDict":["dustRedrock"],"name":"红岩粉","tr":"红岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2847":{"oreDict":["dustPotassiumFeldspar"],"name":"钾长石粉","tr":"钾长石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11039":{"oreDict":["ingotArsenic"],"name":"砷锭","tr":"砷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2848":{"oreDict":["dustBiotite"],"name":"黑云母粉","tr":"黑云母粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2849":{"oreDict":["dustGraniteBlack"],"name":"黑花岗岩粉","tr":"黑花岗岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2850":{"oreDict":["dustGraniteRed"],"name":"红花岗岩粉","tr":"红花岗岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2851":{"oreDict":["dustBlizz"],"name":"暴雪粉","tr":"暴雪粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11043":{"oreDict":["ingotRubidium"],"name":"铷锭","tr":"铷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2853":{"oreDict":["dustCobaltHexahydrate"],"name":"六水合钴粉","tr":"六水合钴粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11045":{"oreDict":["ingotYttrium"],"name":"钇锭","tr":"钇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2854":{"oreDict":["dustConstructionFoam"],"name":"建筑泡沫粉","tr":"建筑泡沫粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2855":{"oreDict":["dustChalcopyrite"],"name":"黄铜矿粉","tr":"黄铜矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11047":{"oreDict":["ingotNiobium"],"name":"铌锭","tr":"铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2856":{"oreDict":["dustSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)粉","tr":"太阳能级硅(多晶硅)粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11048":{"oreDict":["ingotMolybdenum"],"name":"钼锭","tr":"钼锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2858":{"oreDict":["dustCrudeOil"],"name":"原油粉","tr":"原油粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11052":{"oreDict":["ingotPalladium"],"name":"钯锭","tr":"钯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2861":{"oreDict":["dustEmery"],"name":"金刚砂粉","tr":"金刚砂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2862":{"oreDict":["dustEpidote"],"name":"绿帘石粉","tr":"绿帘石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11054":{"oreDict":["ingotSilver"],"name":"银锭","tr":"银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11056":{"oreDict":["ingotIndium"],"name":"铟锭","tr":"铟锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2865":{"oreDict":["dustGraphite"],"name":"石墨粉","tr":"石墨粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11057":{"oreDict":["ingotTin"],"name":"锡锭","tr":"锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11058":{"oreDict":["ingotAntimony"],"name":"锑锭","tr":"锑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2867":{"oreDict":["dustGreenstone"],"name":"绿岩粉","tr":"绿岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11059":{"oreDict":["ingotTellurium"],"name":"碲锭","tr":"碲锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2868":{"oreDict":["dustTrinium"],"name":"三元金属粉","tr":"三元金属粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2870":{"oreDict":["dustMagnetite"],"name":"磁铁矿粉","tr":"磁铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11062":{"oreDict":["ingotCaesium"],"name":"铯锭","tr":"铯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2871":{"oreDict":["dustMalachite"],"name":"孔雀石粉","tr":"孔雀石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11063":{"oreDict":["ingotBarium"],"name":"钡锭","tr":"钡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2872":{"oreDict":["dustMigmatite"],"name":"混合岩粉","tr":"混合岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11064":{"oreDict":["ingotLanthanum"],"name":"镧锭","tr":"镧锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2873":{"oreDict":["dustPitchblende"],"name":"沥青铀矿","tr":"沥青铀矿","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11065":{"oreDict":["ingotCerium"],"name":"铈锭","tr":"铈锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2874":{"oreDict":["dustPlastic"],"name":"聚乙烯末","tr":"聚乙烯末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11066":{"oreDict":["ingotPraseodymium"],"name":"镨锭","tr":"镨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11067":{"oreDict":["ingotNeodymium"],"name":"钕锭","tr":"钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2876":{"oreDict":["dustSiltstone"],"name":"粉砂岩粉","tr":"粉砂岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11068":{"oreDict":["ingotPromethium"],"name":"钷锭","tr":"钷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2877":{"oreDict":["dustSoapstone"," dye"," dyeLime"],"name":"皂石粉","tr":"皂石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11069":{"oreDict":["ingotSamarium"],"name":"钐锭","tr":"钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2878":{"oreDict":["dustOilsands"],"name":"油砂粉","tr":"油砂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11070":{"oreDict":["ingotEuropium"],"name":"铕锭","tr":"铕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2879":{"oreDict":["dustPaper"],"name":"纸屑","tr":"纸屑","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11071":{"oreDict":["ingotGadolinium"],"name":"钆锭","tr":"钆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2880":{"oreDict":["dustAnyRubber"," dustRubber"],"name":"橡胶末","tr":"橡胶末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11072":{"oreDict":["ingotTerbium"],"name":"铽锭","tr":"铽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2881":{"oreDict":["foodFlour"," dustWheat"],"name":"面粉","tr":"面粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11073":{"oreDict":["ingotDysprosium"],"name":"镝锭","tr":"镝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2882":{"oreDict":["dustWulfenite"],"name":"钼铅矿粉","tr":"钼铅矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11074":{"oreDict":["ingotHolmium"],"name":"钬锭","tr":"钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2883":{"oreDict":["dustPowellite"],"name":"钼钙矿粉","tr":"钼钙矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11075":{"oreDict":["ingotErbium"],"name":"铒锭","tr":"铒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2884":{"oreDict":["dustDesh"],"name":"戴斯粉","tr":"戴斯粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11076":{"oreDict":["ingotThulium"],"name":"铥锭","tr":"铥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2885":{"oreDict":["dustMilk"],"name":"牛奶粉","tr":"牛奶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11077":{"oreDict":["ingotYtterbium"],"name":"镱锭","tr":"镱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2886":{"oreDict":["dustChocolate"],"name":"巧克力粉","tr":"巧克力粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11078":{"oreDict":["ingotLutetium"],"name":"镥锭","tr":"镥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2887":{"oreDict":["dustCocoa"," dyeBrown"," foodCocoapowder"," dye"],"name":"可可粉","tr":"可可粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2888":{"oreDict":["dustCoffee"," dyeBrown"," dye"],"name":"咖啡粉","tr":"咖啡粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11080":{"oreDict":["ingotTantalum"],"name":"钽锭","tr":"钽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2889":{"oreDict":["dustWoodSealed"],"name":"蜡封木末","tr":"蜡封木末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11081":{"oreDict":["ingotTungsten"],"name":"钨锭","tr":"钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2890":{"oreDict":["dustGlass"],"name":"玻璃粉","tr":"玻璃粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2891":{"oreDict":["dustRareEarth"],"name":"稀土","tr":"稀土","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11083":{"oreDict":["ingotOsmium"],"name":"锇锭","tr":"锇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2892":{"oreDict":["listAllmeatraw"," listAllchickenraw"," listAllporkraw"," listAllbeefraw"," dustMeatRaw"],"name":"肉末","tr":"肉末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11084":{"oreDict":["ingotIridium"],"name":"铱锭","tr":"铱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2893":{"oreDict":["listAllporkcooked"," listAllbeefcooked"," listAllchickencooked"," listAllmeatcooked"," dustMeatCooked"],"name":"熟肉末","tr":"熟肉末","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11085":{"oreDict":["ingotPlatinum"],"name":"铂锭","tr":"铂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2894":{"oreDict":["dustCheese"],"name":"奶酪粉","tr":"奶酪粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27470":{"oreDict":["screwEpoxid"],"name":"环氧树脂螺丝","tr":"环氧树脂螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2895":{"oreDict":["dustChili"],"name":"辣椒粉","tr":"辣椒粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27471":{"oreDict":["screwSilicone"," screwAnyRubber"," screwAnySyntheticRubber"],"name":"硅橡胶螺丝","tr":"硅橡胶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2896":{"oreDict":["dustRawRubber"],"name":"生橡胶粉","tr":"生橡胶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27472":{"oreDict":["screwPolycaprolactam"],"name":"聚己内酰胺螺丝","tr":"聚己内酰胺螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11089":{"oreDict":["ingotLead"],"name":"铅锭","tr":"铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27473":{"oreDict":["screwPolytetrafluoroethylene"],"name":"聚四氟乙烯螺丝","tr":"聚四氟乙烯螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2898":{"oreDict":["dustCryotheum"],"name":"极寒之凛冰粉","tr":"极寒之凛冰粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11090":{"oreDict":["ingotBismuth"],"name":"铋锭","tr":"铋锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2900":{"oreDict":["dustMirabilite"],"name":"芒硝粉","tr":"芒硝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2901":{"oreDict":["dustMica"],"name":"云母粉","tr":"云母粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2902":{"oreDict":["dustTalc"],"name":"滑石","tr":"滑石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2903":{"oreDict":["dustTrona"],"name":"天然碱粉","tr":"天然碱粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2904":{"oreDict":["dustBarite"],"name":"重晶石粉","tr":"重晶石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11096":{"oreDict":["ingotThorium"],"name":"钍锭","tr":"钍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2905":{"oreDict":["dustBastnasite"],"name":"氟碳镧铈矿粉","tr":"氟碳镧铈矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11097":{"oreDict":["ingotUranium235"],"name":"铀-235锭","tr":"铀-235锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2906":{"oreDict":["dustGarnierite"],"name":"硅镁镍矿粉","tr":"硅镁镍矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11098":{"oreDict":["ingotUranium"],"name":"铀-238锭","tr":"铀-238锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2907":{"oreDict":["dustLepidolite"],"name":"锂云母粉","tr":"锂云母粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2908":{"oreDict":["dustMagnesite"],"name":"菱镁矿粉","tr":"菱镁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11100":{"oreDict":["ingotPlutonium"],"name":"钚-239锭","tr":"钚-239锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2909":{"oreDict":["dustPentlandite"],"name":"镍黄铁矿粉","tr":"镍黄铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11101":{"oreDict":["ingotPlutonium241"],"name":"钚-241锭","tr":"钚-241锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27485":{"oreDict":["screwAlduorite"],"name":"神秘蓝金螺丝","tr":"神秘蓝金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2910":{"oreDict":["dustScheelite"],"name":"白钨矿粉","tr":"白钨矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2911":{"oreDict":["dustAlunite"],"name":"明矾石粉","tr":"明矾石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11103":{"oreDict":["ingotAmericium"],"name":"镅锭","tr":"镅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2912":{"oreDict":["dustChrysotile"],"name":"白石棉粉","tr":"白石棉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27488":{"oreDict":["screwRubracium"],"name":"褐铜螺丝","tr":"褐铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2913":{"oreDict":["dustRealgar"],"name":"雄黄粉","tr":"雄黄粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27489":{"oreDict":["screwVulcanite"],"name":"胶木螺丝","tr":"胶木螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2914":{"oreDict":["dustDolomite"],"name":"白云石粉","tr":"白云石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2915":{"oreDict":["dustWollastonite"],"name":"硅灰石粉","tr":"硅灰石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2916":{"oreDict":["dustZeolite"],"name":"沸石粉","tr":"沸石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19300":{"oreDict":["plateTripleBronze"," plateTripleAnyBronze"],"name":"三重青铜板","tr":"三重青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2917":{"oreDict":["dustBandedIron"],"name":"带状铁矿粉","tr":"带状铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19301":{"oreDict":["plateTripleBrass"],"name":"三重黄铜板","tr":"三重黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2918":{"oreDict":["dustIlmenite"],"name":"钛铁矿粉","tr":"钛铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19302":{"oreDict":["plateTripleInvar"],"name":"三重殷钢板","tr":"三重殷钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2919":{"oreDict":["dustPollucite"],"name":"铯榴石粉","tr":"铯榴石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11111":{"oreDict":["ingotTengamPurified"],"name":"纯镃锭","tr":"纯镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19303":{"oreDict":["plateTripleElectrum"],"name":"三重琥珀金板","tr":"三重琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2920":{"oreDict":["dustSpodumene"],"name":"锂辉石粉","tr":"锂辉石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11112":{"oreDict":["ingotTengamAttuned"],"name":"谐镃锭","tr":"谐镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19304":{"oreDict":["plateTripleAnyIron"," plateTripleWroughtIron"],"name":"三重锻铁板","tr":"三重锻铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2921":{"oreDict":["dustTantalite"],"name":"钽铁矿粉","tr":"钽铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19305":{"oreDict":["plateTripleSteel"],"name":"三重钢板","tr":"三重钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2922":{"oreDict":["dustUraninite"],"name":"晶质铀矿粉","tr":"晶质铀矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19306":{"oreDict":["plateTripleStainlessSteel"],"name":"三重不锈钢板","tr":"三重不锈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2923":{"oreDict":["dustVanadiumMagnetite"],"name":"钒磁铁矿粉","tr":"钒磁铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19307":{"oreDict":["plateTripleAnyIron"," plateTriplePigIron"],"name":"三重生铁板","tr":"三重生铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2924":{"oreDict":["dustKyanite"],"name":"蓝晶石粉","tr":"蓝晶石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19308":{"oreDict":["plateTripleRedAlloy"],"name":"三重红色合金板","tr":"三重红色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27500":{"oreDict":["screwDiamond"],"name":"钻石螺丝","tr":"钻石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2925":{"oreDict":["dustPerlite"],"name":"珍珠岩粉","tr":"珍珠岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19309":{"oreDict":["plateTripleBlueAlloy"],"name":"三重蓝色合金板","tr":"三重蓝色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27501":{"oreDict":["screwEmerald"],"name":"绿宝石螺丝","tr":"绿宝石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2926":{"oreDict":["dustPumice"],"name":"浮岩粉","tr":"浮岩粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19310":{"oreDict":["plateTripleCupronickel"],"name":"三重白铜板","tr":"三重白铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27502":{"oreDict":["screwRuby"],"name":"红宝石螺丝","tr":"红宝石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2927":{"oreDict":["dustBentonite"],"name":"膨润土","tr":"膨润土","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19311":{"oreDict":["plateTripleNichrome"],"name":"三重镍铬板","tr":"三重镍铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27503":{"oreDict":["screwSapphire"],"name":"蓝宝石螺丝","tr":"蓝宝石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2928":{"oreDict":["dustFullersEarth"],"name":"漂白土","tr":"漂白土","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19312":{"oreDict":["plateTripleKanthal"],"name":"三重坎塔尔合金板","tr":"三重坎塔尔合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27504":{"oreDict":["screwGreenSapphire"],"name":"绿色蓝宝石螺丝","tr":"绿色蓝宝石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2929":{"oreDict":["dustKaolinite"],"name":"高岭石","tr":"高岭石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19313":{"oreDict":["plateTripleMagnalium"],"name":"三重镁铝合金板","tr":"三重镁铝合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27505":{"oreDict":["screwOlivine"],"name":"橄榄石螺丝","tr":"橄榄石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2930":{"oreDict":["dyeBrown"," dustBrownLimonite"," dye"],"name":"棕褐铁矿粉","tr":"棕褐铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19314":{"oreDict":["plateTripleSolderingAlloy"],"name":"三重焊锡板","tr":"三重焊锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27506":{"oreDict":["screwNetherStar"],"name":"下界之星螺丝","tr":"下界之星螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2931":{"oreDict":["dyeYellow"," dustYellowLimonite"," dye"],"name":"黄褐铁矿粉","tr":"黄褐铁矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19315":{"oreDict":["plateTripleBatteryAlloy"],"name":"三重电池合金板","tr":"三重电池合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27507":{"oreDict":["screwTopaz"],"name":"黄玉螺丝","tr":"黄玉螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2932":{"oreDict":["dustVermiculite"],"name":"蛭石","tr":"蛭石","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19316":{"oreDict":["plateTripleTungstenSteel"],"name":"三重钨钢板","tr":"三重钨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27508":{"oreDict":["screwTanzanite"],"name":"坦桑石螺丝","tr":"坦桑石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2933":{"oreDict":["dustGlauconite"],"name":"海绿石粉","tr":"海绿石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19317":{"oreDict":["plateTripleOsmiridium"],"name":"三重铱锇合金板","tr":"三重铱锇合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27509":{"oreDict":["screwAmethyst"],"name":"紫水晶螺丝","tr":"紫水晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2934":{"oreDict":["dustGypsum"],"name":"石膏粉","tr":"石膏粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19318":{"oreDict":["plateTripleSunnarium"],"name":"三重阳光化合物板","tr":"三重阳光化合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27510":{"oreDict":["screwOpal"],"name":"蛋白石螺丝","tr":"蛋白石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2935":{"oreDict":["dustBasalticMineralSand"],"name":"玄武岩矿砂","tr":"玄武岩矿砂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19319":{"oreDict":["plateTripleAdamantium"],"name":"三重精金板","tr":"三重精金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27511":{"oreDict":["screwJasper"],"name":"碧玉螺丝","tr":"碧玉螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2936":{"oreDict":["dustGraniticMineralSand"],"name":"花岗岩矿砂","tr":"花岗岩矿砂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19320":{"oreDict":["plateTripleElectrumFlux"],"name":"三重通流琥珀金板","tr":"三重通流琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27512":{"oreDict":["screwFoolsRuby"],"name":"尖晶石螺丝","tr":"尖晶石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2937":{"oreDict":["dustCassiteriteSand"],"name":"锡石矿砂","tr":"锡石矿砂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11129":{"oreDict":["ingotNeutronium"],"name":"中子锭","tr":"中子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19321":{"oreDict":["plateTripleEnderium"],"name":"三重末影锭板","tr":"三重末影锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27513":{"oreDict":["screwBlueTopaz"],"name":"蓝黄玉螺丝","tr":"蓝黄玉螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2938":{"oreDict":["dustGarnetSand"],"name":"石榴石矿砂","tr":"石榴石矿砂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27514":{"oreDict":["screwAmber"],"name":"琥珀螺丝","tr":"琥珀螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2939":{"oreDict":["dustQuartzSand"],"name":"石英矿砂","tr":"石英矿砂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11131":{"oreDict":["ingotSuperconductorUIVBase"],"name":"UIV超导粗胚锭","tr":"UIV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19323":{"oreDict":["plateTripleInfusedGold"],"name":"三重注魔金板","tr":"三重注魔金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27515":{"oreDict":["screwDilithium"],"name":"双锂螺丝","tr":"双锂螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2940":{"oreDict":["dustVolcanicAsh"],"name":"火山灰","tr":"火山灰","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19324":{"oreDict":["plateTripleNaquadah"],"name":"三重硅岩板","tr":"三重硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27516":{"oreDict":["screwCertusQuartz"],"name":"赛特斯石英螺丝","tr":"赛特斯石英螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2941":{"oreDict":["dustBorax"],"name":"硼砂粉","tr":"硼砂粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19325":{"oreDict":["plateTripleNaquadahAlloy"],"name":"三重硅岩合金板","tr":"三重硅岩合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2942":{"oreDict":["dustMolybdenite"],"name":"辉钼矿粉","tr":"辉钼矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11134":{"oreDict":["ingotSuperconductorUMVBase"],"name":"UMV超导粗胚锭","tr":"UMV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19326":{"oreDict":["plateTripleNaquadahEnriched"],"name":"三重富集硅岩板","tr":"三重富集硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27518":{"oreDict":["screwForcicium"],"name":"力之宝石螺丝","tr":"力之宝石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2943":{"oreDict":["dustPyrolusite"],"name":"软锰矿粉","tr":"软锰矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19327":{"oreDict":["plateTripleNaquadria"],"name":"三重超能硅岩板","tr":"三重超能硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27519":{"oreDict":["screwForcillium"],"name":"力场宝石螺丝","tr":"力场宝石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2944":{"oreDict":["dustRockSalt"],"name":"岩盐","tr":"岩盐","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19328":{"oreDict":["plateTripleDuranium"],"name":"三重铿铀板","tr":"三重铿铀板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27520":{"oreDict":["screwMonazite"],"name":"独居石螺丝","tr":"独居石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2945":{"oreDict":["dustStibnite"],"name":"辉锑矿粉","tr":"辉锑矿粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19329":{"oreDict":["plateTripleTritanium"],"name":"三重三钛板","tr":"三重三钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27521":{"oreDict":["screwForce"],"name":"力量螺丝","tr":"力量螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2946":{"oreDict":["dustAsbestos"],"name":"石棉粉","tr":"石棉粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19330":{"oreDict":["plateTripleThaumium"],"name":"三重神秘锭板","tr":"三重神秘锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27522":{"oreDict":["screwNetherQuartz"],"name":"下界石英螺丝","tr":"下界石英螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2947":{"oreDict":["dustConcrete"],"name":"混凝土粉","tr":"混凝土粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11139":{"oreDict":["ingotUniversium"],"name":"宇宙素锭","tr":"宇宙素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19331":{"oreDict":["plateTripleMithril"],"name":"三重秘银板","tr":"三重秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27523":{"oreDict":["screwQuartzite"],"name":"石英岩螺丝","tr":"石英岩螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2948":{"oreDict":["dustDiatomite"],"name":"硅藻土粉","tr":"硅藻土粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27524":{"oreDict":["screwLazurite"],"name":"蓝金石螺丝","tr":"蓝金石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2949":{"oreDict":["dustGlauconiteSand"],"name":"海绿石矿砂","tr":"海绿石矿砂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11141":{"oreDict":["ingotEternity"],"name":"永恒锭","tr":"永恒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19333":{"oreDict":["plateTripleAstralSilver"],"name":"三重星辰银板","tr":"三重星辰银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27525":{"oreDict":["screwSodalite"],"name":"方钠石螺丝","tr":"方钠石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19334":{"oreDict":["plateTripleBlackSteel"],"name":"三重黑钢板","tr":"三重黑钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27526":{"oreDict":["screwLapis"],"name":"青金石螺丝","tr":"青金石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2951":{"oreDict":["dustVyroxeres"],"name":"幽冥剧毒结晶粉","tr":"幽冥剧毒结晶粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11143":{"oreDict":["ingotMagmatter"],"name":"磁物质锭","tr":"磁物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19335":{"oreDict":["plateTripleDamascusSteel"],"name":"三重大马士革钢板","tr":"三重大马士革钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27527":{"oreDict":["screwGarnetRed"],"name":"红石榴石螺丝","tr":"红石榴石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2952":{"oreDict":["dustCeruclase"],"name":"暗影秘银粉","tr":"暗影秘银粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19336":{"oreDict":["plateTripleShadowIron"],"name":"三重暗影铁板","tr":"三重暗影铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27528":{"oreDict":["screwGarnetYellow"],"name":"黄石榴石螺丝","tr":"黄石榴石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19337":{"oreDict":["plateTripleShadowSteel"],"name":"三重暗影钢板","tr":"三重暗影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27529":{"oreDict":["screwVinteum"],"name":"温特姆螺丝","tr":"温特姆螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19338":{"oreDict":["plateTripleIronWood"],"name":"三重铁木板","tr":"三重铁木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27530":{"oreDict":["screwApatite"],"name":"磷灰石螺丝","tr":"磷灰石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19339":{"oreDict":["plateTripleSteeleaf"],"name":"三重钢叶板","tr":"三重钢叶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27531":{"oreDict":["screwNiter"],"name":"硝石螺丝","tr":"硝石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2956":{"oreDict":["dustTartarite"],"name":"溶火之石粉","tr":"溶火之石粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19340":{"oreDict":["plateTripleMeteoricIron"],"name":"三重陨铁板","tr":"三重陨铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27532":{"oreDict":["screwEnderPearl"],"name":"末影珍珠螺丝","tr":"末影珍珠螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19341":{"oreDict":["plateTripleMeteoricSteel"],"name":"三重陨钢板","tr":"三重陨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27533":{"oreDict":["screwEnderEye"],"name":"末影之眼螺丝","tr":"末影之眼螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19342":{"oreDict":["plateTripleDarkIron"],"name":"三重玄铁板","tr":"三重玄铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27534":{"oreDict":["screwTricalciumPhosphate"],"name":"磷酸三钙螺丝","tr":"磷酸三钙螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19343":{"oreDict":["plateTripleCobaltBrass"],"name":"三重钴黄铜板","tr":"三重钴黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27535":{"oreDict":["screwCoal"],"name":"煤螺丝","tr":"煤螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19344":{"oreDict":["plateTripleUltimet"],"name":"三重哈氏合金板","tr":"三重哈氏合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27536":{"oreDict":["screwCharcoal"],"name":"木炭螺丝","tr":"木炭螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19345":{"oreDict":["plateTripleAnyCopper"," plateTripleAnnealedCopper"],"name":"三重退火铜板","tr":"三重退火铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27537":{"oreDict":["screwJade"],"name":"玉螺丝","tr":"玉螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19346":{"oreDict":["plateTripleFierySteel"],"name":"三重炽热钢板","tr":"三重炽热钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27538":{"oreDict":["screwLignite"],"name":"褐煤螺丝","tr":"褐煤螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19348":{"oreDict":["plateTripleRedSteel"],"name":"三重红钢板","tr":"三重红钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27540":{"oreDict":["screwInfusedAir"],"name":"风之魔晶螺丝","tr":"风之魔晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19349":{"oreDict":["plateTripleBlueSteel"],"name":"三重蓝钢板","tr":"三重蓝钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27541":{"oreDict":["screwInfusedFire"],"name":"火之魔晶螺丝","tr":"火之魔晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2966":{"oreDict":["dustOrichalcum"],"name":"山铜粉","tr":"山铜粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19350":{"oreDict":["plateTripleSterlingSilver"],"name":"三重标准纯银板","tr":"三重标准纯银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27542":{"oreDict":["screwInfusedEarth"],"name":"地之魔晶螺丝","tr":"地之魔晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19351":{"oreDict":["plateTripleRoseGold"],"name":"三重玫瑰金板","tr":"三重玫瑰金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27543":{"oreDict":["screwInfusedWater"],"name":"水之魔晶螺丝","tr":"水之魔晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19352":{"oreDict":["plateTripleBlackBronze"],"name":"三重黑青铜板","tr":"三重黑青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27544":{"oreDict":["screwInfusedEntropy"],"name":"混沌魔晶螺丝","tr":"混沌魔晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2969":{"oreDict":["dustAluminiumfluoride"],"name":"氟化铝粉","tr":"氟化铝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19353":{"oreDict":["plateTripleBismuthBronze"],"name":"三重铋青铜板","tr":"三重铋青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27545":{"oreDict":["screwInfusedOrder"],"name":"秩序魔晶螺丝","tr":"秩序魔晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2970":{"oreDict":["dustVoid"],"name":"虚空粉","tr":"虚空粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19354":{"oreDict":["plateTripleIronMagnetic"],"name":"三重磁化铁板","tr":"三重磁化铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2971":{"oreDict":["dustCalciumDisilicide"],"name":"二硅化钙粉","tr":"二硅化钙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19355":{"oreDict":["plateTripleSteelMagnetic"],"name":"三重磁化钢板","tr":"三重磁化钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19356":{"oreDict":["plateTripleNeodymiumMagnetic"],"name":"三重磁化钕板","tr":"三重磁化钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19357":{"oreDict":["plateTripleVanadiumGallium"],"name":"三重钒镓合金板","tr":"三重钒镓合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2974":{"oreDict":["dustSuperconductorUEVBase"],"name":"UEV超导粗胚粉","tr":"UEV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19358":{"oreDict":["plateTripleYttriumBariumCuprate"],"name":"三重钇钡铜氧合金板","tr":"三重钇钡铜氧合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2975":{"oreDict":["dustDraconium"],"name":"龙粉","tr":"龙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19359":{"oreDict":["plateTripleNiobiumNitride"],"name":"三重氮化铌板","tr":"三重氮化铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2976":{"oreDict":["dustDraconiumAwakened"],"name":"觉醒龙粉","tr":"觉醒龙粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19360":{"oreDict":["plateTripleNiobiumTitanium"],"name":"三重铌钛合金板","tr":"三重铌钛合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2977":{"oreDict":["dustBloodInfusedIron"],"name":"注血铁粉","tr":"注血铁粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19361":{"oreDict":["plateTripleChromiumDioxide"],"name":"三重二氧化铬板","tr":"三重二氧化铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2978":{"oreDict":["dustIchorium"],"name":"灵宝粉","tr":"灵宝粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19362":{"oreDict":["plateTripleKnightmetal"],"name":"三重骑士金属板","tr":"三重骑士金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2979":{"oreDict":["dustRadoxPoly"],"name":"拉多X聚合物粉","tr":"拉多X聚合物粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19363":{"oreDict":["plateTripleTinAlloy"],"name":"三重锡铁合金板","tr":"三重锡铁合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2980":{"oreDict":["dustGalliumArsenide"],"name":"砷化镓粉","tr":"砷化镓粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19364":{"oreDict":["plateTripleDarkSteel"],"name":"三重玄钢板","tr":"三重玄钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2981":{"oreDict":["dustIndiumGalliumPhosphide"],"name":"磷化铟镓粉","tr":"磷化铟镓粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19365":{"oreDict":["plateTripleElectricalSteel"],"name":"三重磁钢板","tr":"三重磁钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2982":{"oreDict":["dustCosmicNeutronium"],"name":"宇宙中子态素粉","tr":"宇宙中子态素粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19366":{"oreDict":["plateTripleEnergeticAlloy"],"name":"三重充能合金板","tr":"三重充能合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19367":{"oreDict":["plateTripleVibrantAlloy"],"name":"三重脉冲合金板","tr":"三重脉冲合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2984":{"oreDict":["dustFlerovium_GT5U"],"name":"粉","tr":"粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19368":{"oreDict":["plateTripleShadow"],"name":"三重暗影板","tr":"三重暗影板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2985":{"oreDict":["dustLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚粉","tr":"UHV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19369":{"oreDict":["plateTripleConductiveIron"],"name":"三重导电铁板","tr":"三重导电铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2986":{"oreDict":["dustLongasssuperconductornameforuvwire"],"name":"UV超导粗胚粉","tr":"UV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19370":{"oreDict":["plateTripleTungstenCarbide"],"name":"三重碳化钨板","tr":"三重碳化钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2987":{"oreDict":["dustPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚粉","tr":"MV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19371":{"oreDict":["plateTripleVanadiumSteel"],"name":"三重钒钢板","tr":"三重钒钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2988":{"oreDict":["dustTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚粉","tr":"HV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19372":{"oreDict":["plateTripleHSSG"],"name":"三重高速钢-G板","tr":"三重高速钢-G板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2989":{"oreDict":["dustUraniumtriplatinid"],"name":"EV超导粗胚粉","tr":"EV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19373":{"oreDict":["plateTripleHSSE"],"name":"三重高速钢-E板","tr":"三重高速钢-E板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2990":{"oreDict":["dustVanadiumtriindinid"],"name":"IV超导粗胚粉","tr":"IV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19374":{"oreDict":["plateTripleHSSS"],"name":"三重高速钢-S板","tr":"三重高速钢-S板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2991":{"oreDict":["dustTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚粉","tr":"LuV超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"2992":{"oreDict":["dustTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚粉","tr":"ZPM超导粗胚粉","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19378":{"oreDict":["plateTriplePulsatingIron"],"name":"三重脉冲铁板","tr":"三重脉冲铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19379":{"oreDict":["plateTripleSoularium"],"name":"三重魂金板","tr":"三重魂金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19380":{"oreDict":["plateTripleEnderiumBase"],"name":"三重末影粗胚板","tr":"三重末影粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19381":{"oreDict":["plateTripleRedstoneAlloy"],"name":"三重红石合金板","tr":"三重红石合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19382":{"oreDict":["plateTripleArdite"],"name":"三重阿迪特板","tr":"三重阿迪特板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19383":{"oreDict":["plateTripleReinforced"],"name":"三重强化金属板","tr":"三重强化金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19384":{"oreDict":["plateTripleGalgadorian"],"name":"三重混合晶锭板","tr":"三重混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27576":{"oreDict":["screwTPVAlloy"],"name":"钛铂钒合金螺丝","tr":"钛铂钒合金螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19385":{"oreDict":["plateTripleEnhancedGalgadorian"],"name":"三重强化混合晶锭板","tr":"三重强化混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19386":{"oreDict":["plateTripleManyullyn"],"name":"三重玛玉灵板","tr":"三重玛玉灵板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19387":{"oreDict":["plateTripleMytryl"],"name":"三重深空秘银板","tr":"三重深空秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19388":{"oreDict":["plateTripleBlackPlutonium"],"name":"三重黑钚板","tr":"三重黑钚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19389":{"oreDict":["plateTripleCallistoIce"],"name":"三重木卫四冰板","tr":"三重木卫四冰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27581":{"oreDict":["screwTranscendentMetal"],"name":"超时空金属螺丝","tr":"超时空金属螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19390":{"oreDict":["plateTripleLedox"],"name":"三重深铅板","tr":"三重深铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27582":{"oreDict":["screwEnrichedHolmium"],"name":"富集钬螺丝","tr":"富集钬螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19391":{"oreDict":["plateTripleQuantium"],"name":"三重量子锭板","tr":"三重量子锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27583":{"oreDict":["screwMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质螺丝","tr":"磁流体约束恒星物质螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19392":{"oreDict":["plateTripleDuralumin"],"name":"三重硬铝板","tr":"三重硬铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19393":{"oreDict":["plateTripleOriharukon"],"name":"三重奥利哈钢板","tr":"三重奥利哈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27585":{"oreDict":["screwWhiteDwarfMatter"],"name":"白矮星物质螺丝","tr":"白矮星物质螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19394":{"oreDict":["plateTripleInfinityCatalyst"],"name":"三重无尽催化剂板","tr":"三重无尽催化剂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27586":{"oreDict":["screwBlackDwarfMatter"],"name":"黑矮星物质螺丝","tr":"黑矮星物质螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19395":{"oreDict":["plateTripleBedrockium"],"name":"三重基岩板","tr":"三重基岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27588":{"oreDict":["screwSpaceTime"],"name":"时空螺丝","tr":"时空螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19397":{"oreDict":["plateTripleInfinity"],"name":"三重无尽板","tr":"三重无尽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19398":{"oreDict":["plateTripleMysteriousCrystal"],"name":"三重神秘水晶板","tr":"三重神秘水晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19399":{"oreDict":["plateTripleSamariumMagnetic"],"name":"三重磁化钐板","tr":"三重磁化钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19400":{"oreDict":["plateTripleAlumite"],"name":"三重耐酸铝板","tr":"三重耐酸铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19401":{"oreDict":["plateTripleEndSteel"],"name":"三重末影钢板","tr":"三重末影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19402":{"oreDict":["plateTripleCrudeSteel"],"name":"三重复合粘土板","tr":"三重复合粘土板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19403":{"oreDict":["plateTripleCrystallineAlloy"],"name":"三重晶化合金板","tr":"三重晶化合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19404":{"oreDict":["plateTripleMelodicAlloy"],"name":"三重旋律合金板","tr":"三重旋律合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19405":{"oreDict":["plateTripleStellarAlloy"],"name":"三重恒星合金板","tr":"三重恒星合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19406":{"oreDict":["plateTripleCrystallinePinkSlime"],"name":"三重晶化粉红史莱姆板","tr":"三重晶化粉红史莱姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19407":{"oreDict":["plateTripleEnergeticSilver"],"name":"三重充能银板","tr":"三重充能银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27599":{"oreDict":["screwPolybenzimidazole"],"name":"聚苯并咪唑螺丝","tr":"聚苯并咪唑螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19408":{"oreDict":["plateTripleVividAlloy"],"name":"三重生动合金板","tr":"三重生动合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27610":{"oreDict":["screwEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂螺丝","tr":"纤维强化的环氧树脂螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27611":{"oreDict":["screwBorosilicateGlass"],"name":"硼玻璃螺丝","tr":"硼玻璃螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27613":{"oreDict":["screwNickelZincFerrite"],"name":"镍锌铁氧体螺丝","tr":"镍锌铁氧体螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27631":{"oreDict":["screwPolyphenyleneSulfide"],"name":"聚苯硫醚螺丝","tr":"聚苯硫醚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27635":{"oreDict":["screwStyreneButadieneRubber"," screwAnyRubber"," screwAnySyntheticRubber"],"name":"丁苯橡胶螺丝","tr":"丁苯橡胶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27636":{"oreDict":["screwPolystyrene"],"name":"聚苯乙烯螺丝","tr":"聚苯乙烯螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27649":{"oreDict":["screwPolyvinylChloride"],"name":"聚氯乙烯螺丝","tr":"聚氯乙烯螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19470":{"oreDict":["plateTripleEpoxid"],"name":"三重环氧树脂片","tr":"三重环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19471":{"oreDict":["plateTripleSilicone"," plateTripleAnyRubber"," plateTripleAnySyntheticRubber"],"name":"三重硅橡胶片","tr":"三重硅橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19472":{"oreDict":["plateTriplePolycaprolactam"],"name":"三重聚己内酰胺片","tr":"三重聚己内酰胺片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19473":{"oreDict":["plateTriplePolytetrafluoroethylene"],"name":"三重聚四氟乙烯片","tr":"三重聚四氟乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19485":{"oreDict":["plateTripleAlduorite"],"name":"三重神秘蓝金板","tr":"三重神秘蓝金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19488":{"oreDict":["plateTripleRubracium"],"name":"三重褐铜板","tr":"三重褐铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19489":{"oreDict":["plateTripleVulcanite"],"name":"三重胶木板","tr":"三重胶木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11300":{"oreDict":["ingotBronze"," ingotAnyBronze"],"name":"青铜锭","tr":"青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11301":{"oreDict":["ingotBrass"],"name":"黄铜锭","tr":"黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11302":{"oreDict":["ingotInvar"],"name":"殷钢锭","tr":"殷钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11303":{"oreDict":["ingotElectrum"],"name":"琥珀金锭","tr":"琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11304":{"oreDict":["ingotAnyIron"," ingotWroughtIron"],"name":"锻铁锭","tr":"锻铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11305":{"oreDict":["ingotSteel"],"name":"钢锭","tr":"钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11306":{"oreDict":["ingotStainlessSteel"],"name":"不锈钢锭","tr":"不锈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11307":{"oreDict":["ingotAnyIron"," ingotPigIron"],"name":"生铁锭","tr":"生铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11308":{"oreDict":["ingotRedAlloy"],"name":"红色合金锭","tr":"红色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11309":{"oreDict":["ingotBlueAlloy"],"name":"蓝色合金锭","tr":"蓝色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11310":{"oreDict":["ingotCupronickel"],"name":"白铜锭","tr":"白铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11311":{"oreDict":["ingotNichrome"],"name":"镍铬合金锭","tr":"镍铬合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11312":{"oreDict":["ingotKanthal"],"name":"坎塔尔合金锭","tr":"坎塔尔合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11313":{"oreDict":["ingotMagnalium"],"name":"镁铝合金锭","tr":"镁铝合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11314":{"oreDict":["ingotSolderingAlloy"],"name":"焊锡锭","tr":"焊锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11315":{"oreDict":["ingotBatteryAlloy"],"name":"电池合金锭","tr":"电池合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11316":{"oreDict":["ingotTungstenSteel"],"name":"钨钢锭","tr":"钨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11317":{"oreDict":["ingotOsmiridium"],"name":"铱锇合金锭","tr":"铱锇合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11318":{"oreDict":["ingotSunnarium"],"name":"阳光化合物锭","tr":"阳光化合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11319":{"oreDict":["ingotAdamantium"],"name":"精金锭","tr":"精金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11320":{"oreDict":["ingotElectrumFlux"],"name":"通流琥珀金锭","tr":"通流琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11321":{"oreDict":["ingotEnderium"],"name":"末影锭","tr":"末影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11323":{"oreDict":["ingotInfusedGold"],"name":"注魔金锭","tr":"注魔金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11324":{"oreDict":["ingotNaquadah"],"name":"硅岩锭","tr":"硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11325":{"oreDict":["ingotNaquadahAlloy"],"name":"硅岩合金锭","tr":"硅岩合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11326":{"oreDict":["ingotNaquadahEnriched"],"name":"富集硅岩锭","tr":"富集硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11327":{"oreDict":["ingotNaquadria"],"name":"超能硅岩锭","tr":"超能硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11328":{"oreDict":["ingotDuranium"],"name":"铿铀锭","tr":"铿铀锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11329":{"oreDict":["ingotTritanium"],"name":"三钛锭","tr":"三钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19521":{"oreDict":["plateTripleForce"],"name":"三重力量板","tr":"三重力量板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11330":{"oreDict":["ingotThaumium"],"name":"神秘锭","tr":"神秘锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11331":{"oreDict":["ingotMithril"],"name":"秘银锭","tr":"秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11333":{"oreDict":["ingotAstralSilver"],"name":"星辰银锭","tr":"星辰银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11334":{"oreDict":["ingotBlackSteel"],"name":"黑钢锭","tr":"黑钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11335":{"oreDict":["ingotDamascusSteel"],"name":"大马士革钢锭","tr":"大马士革钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11336":{"oreDict":["ingotShadowIron"],"name":"暗影铁锭","tr":"暗影铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11337":{"oreDict":["ingotShadowSteel"],"name":"暗影钢锭","tr":"暗影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19529":{"oreDict":["plateTripleVinteum"],"name":"三重温特姆板","tr":"三重温特姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11338":{"oreDict":["ingotIronWood"," ironwood"],"name":"铁木锭","tr":"铁木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11339":{"oreDict":["ingotSteeleaf"," steeleaf"],"name":"钢叶","tr":"钢叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11340":{"oreDict":["ingotMeteoricIron"],"name":"陨铁锭","tr":"陨铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11341":{"oreDict":["ingotMeteoricSteel"],"name":"陨钢锭","tr":"陨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11342":{"oreDict":["ingotDarkIron"],"name":"玄铁锭","tr":"玄铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11343":{"oreDict":["ingotCobaltBrass"],"name":"钴黄铜锭","tr":"钴黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11344":{"oreDict":["ingotUltimet"],"name":"哈氏合金锭","tr":"哈氏合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11345":{"oreDict":["ingotAnyCopper"," ingotAnnealedCopper"],"name":"退火铜锭","tr":"退火铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11346":{"oreDict":["ingotFierySteel"," fieryIngot"],"name":"炽热钢锭","tr":"炽热钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11348":{"oreDict":["ingotRedSteel"],"name":"红钢锭","tr":"红钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11349":{"oreDict":["ingotBlueSteel"],"name":"蓝钢锭","tr":"蓝钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11350":{"oreDict":["ingotSterlingSilver"],"name":"标准纯银锭","tr":"标准纯银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11351":{"oreDict":["ingotRoseGold"],"name":"玫瑰金锭","tr":"玫瑰金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11352":{"oreDict":["ingotBlackBronze"],"name":"黑青铜锭","tr":"黑青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11353":{"oreDict":["ingotBismuthBronze"],"name":"铋青铜锭","tr":"铋青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11354":{"oreDict":["ingotIronMagnetic"],"name":"磁化铁锭","tr":"磁化铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11355":{"oreDict":["ingotSteelMagnetic"],"name":"磁化钢锭","tr":"磁化钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11356":{"oreDict":["ingotNeodymiumMagnetic"],"name":"磁化钕锭","tr":"磁化钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11357":{"oreDict":["ingotVanadiumGallium"],"name":"钒镓合金锭","tr":"钒镓合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11358":{"oreDict":["ingotYttriumBariumCuprate"],"name":"钇钡铜氧合金锭","tr":"钇钡铜氧合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11359":{"oreDict":["ingotNiobiumNitride"],"name":"氮化铌锭","tr":"氮化铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11360":{"oreDict":["ingotNiobiumTitanium"],"name":"铌钛合金锭","tr":"铌钛合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11361":{"oreDict":["ingotChromiumDioxide"],"name":"二氧化铬锭","tr":"二氧化铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11362":{"oreDict":["ingotKnightmetal"," knightmetal"],"name":"骑士金属锭","tr":"骑士金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11363":{"oreDict":["ingotTinAlloy"],"name":"锡铁合金锭","tr":"锡铁合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11364":{"oreDict":["ingotDarkSteel"],"name":"玄钢锭","tr":"玄钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11365":{"oreDict":["ingotElectricalSteel"],"name":"磁钢锭","tr":"磁钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11366":{"oreDict":["ingotEnergeticAlloy"],"name":"充能合金锭","tr":"充能合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11367":{"oreDict":["ingotVibrantAlloy"],"name":"脉冲合金锭","tr":"脉冲合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11368":{"oreDict":["ingotShadow"],"name":"暗影锭","tr":"暗影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11369":{"oreDict":["ingotConductiveIron"],"name":"导电铁锭","tr":"导电铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11370":{"oreDict":["ingotTungstenCarbide"],"name":"碳化钨锭","tr":"碳化钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11371":{"oreDict":["ingotVanadiumSteel"],"name":"钒钢锭","tr":"钒钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11372":{"oreDict":["ingotHSSG"],"name":"高速钢-G锭","tr":"高速钢-G锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11373":{"oreDict":["ingotHSSE"],"name":"高速钢-E锭","tr":"高速钢-E锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11374":{"oreDict":["ingotHSSS"],"name":"高速钢-S锭","tr":"高速钢-S锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11378":{"oreDict":["ingotPulsatingIron"],"name":"脉冲铁锭","tr":"脉冲铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11379":{"oreDict":["ingotSoularium"],"name":"魂金锭","tr":"魂金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11380":{"oreDict":["ingotEnderiumBase"],"name":"末影粗胚锭","tr":"末影粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11381":{"oreDict":["ingotRedstoneAlloy"],"name":"红石合金锭","tr":"红石合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27765":{"oreDict":["screwKevlar"],"name":"凯芙拉螺丝","tr":"凯芙拉螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11382":{"oreDict":["ingotArdite"],"name":"阿迪特锭","tr":"阿迪特锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11383":{"oreDict":["ingotReinforced"],"name":"强化金属锭","tr":"强化金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11384":{"oreDict":["ingotGalgadorian"],"name":"混合晶锭","tr":"混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19576":{"oreDict":["plateTripleTPVAlloy"],"name":"三重钛铂钒合金板","tr":"三重钛铂钒合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11385":{"oreDict":["ingotEnhancedGalgadorian"],"name":"强化混合晶锭","tr":"强化混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11386":{"oreDict":["ingotManyullyn"],"name":"玛玉灵锭","tr":"玛玉灵锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27770":{"oreDict":["screwHeeEndium"],"name":"终末螺丝","tr":"终末螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11387":{"oreDict":["ingotMytryl"],"name":"深空秘银锭","tr":"深空秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11388":{"oreDict":["ingotBlackPlutonium"],"name":"黑钚锭","tr":"黑钚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27772":{"oreDict":["screwNickelAluminide"],"name":"铝化镍螺丝","tr":"铝化镍螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11389":{"oreDict":["ingotCallistoIce"],"name":"木卫四冰锭","tr":"木卫四冰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19581":{"oreDict":["plateTripleTranscendentMetal"],"name":"三重超时空金属板","tr":"三重超时空金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11390":{"oreDict":["ingotLedox"],"name":"深铅锭","tr":"深铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19582":{"oreDict":["plateTripleEnrichedHolmium"],"name":"三重富集钬板","tr":"三重富集钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11391":{"oreDict":["ingotQuantium"],"name":"量子锭","tr":"量子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11392":{"oreDict":["ingotDuralumin"],"name":"硬铝锭","tr":"硬铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11393":{"oreDict":["ingotOriharukon"],"name":"奥利哈钢锭","tr":"奥利哈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19585":{"oreDict":["plateTripleWhiteDwarfMatter"],"name":"三重白矮星物质板","tr":"三重白矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11394":{"oreDict":["ingotInfinityCatalyst"],"name":"无尽催化剂锭","tr":"无尽催化剂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19586":{"oreDict":["plateTripleBlackDwarfMatter"],"name":"三重黑矮星物质板","tr":"三重黑矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11395":{"oreDict":["ingotBedrockium"],"name":"基岩锭","tr":"基岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19588":{"oreDict":["plateTripleSpaceTime"],"name":"三重时空板","tr":"三重时空板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11397":{"oreDict":["ingotInfinity"],"name":"无尽锭","tr":"无尽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11398":{"oreDict":["ingotMysteriousCrystal"],"name":"神秘水晶锭","tr":"神秘水晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11399":{"oreDict":["ingotSamariumMagnetic"],"name":"磁化钐锭","tr":"磁化钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11400":{"oreDict":["ingotAlumite"],"name":"耐酸铝锭","tr":"耐酸铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11401":{"oreDict":["ingotEndSteel"],"name":"末影钢锭","tr":"末影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11402":{"oreDict":["ingotCrudeSteel"],"name":"复合粘土锭","tr":"复合粘土锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11403":{"oreDict":["ingotCrystallineAlloy"],"name":"晶化合金锭","tr":"晶化合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11404":{"oreDict":["ingotMelodicAlloy"],"name":"旋律合金锭","tr":"旋律合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11405":{"oreDict":["ingotStellarAlloy"],"name":"恒星合金锭","tr":"恒星合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11406":{"oreDict":["ingotCrystallinePinkSlime"],"name":"晶化粉红史莱姆锭","tr":"晶化粉红史莱姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11407":{"oreDict":["ingotEnergeticSilver"],"name":"充能银锭","tr":"充能银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19599":{"oreDict":["plateTriplePolybenzimidazole"],"name":"三重聚苯并咪唑板","tr":"三重聚苯并咪唑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11408":{"oreDict":["ingotVividAlloy"],"name":"生动合金锭","tr":"生动合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19610":{"oreDict":["plateTripleEpoxidFiberReinforced"],"name":"三重纤维强化的环氧树脂片","tr":"三重纤维强化的环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27804":{"oreDict":["screwObsidian"],"name":"黑曜石螺丝","tr":"黑曜石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19613":{"oreDict":["plateTripleNickelZincFerrite"],"name":"三重镍锌铁氧体板","tr":"三重镍锌铁氧体板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27809":{"oreDict":["screwWood"],"name":"木螺丝","tr":"木螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19631":{"oreDict":["plateTriplePolyphenyleneSulfide"],"name":"三重聚苯硫醚板","tr":"三重聚苯硫醚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19635":{"oreDict":["plateTripleAnyRubber"," plateTripleAnySyntheticRubber"," plateTripleStyreneButadieneRubber"],"name":"三重丁苯橡胶片","tr":"三重丁苯橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19636":{"oreDict":["plateTriplePolystyrene"],"name":"三重聚苯乙烯片","tr":"三重聚苯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27829":{"oreDict":["screwDeepIron"],"name":"深渊铁螺丝","tr":"深渊铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19649":{"oreDict":["plateTriplePolyvinylChloride"],"name":"三重聚氯乙烯片","tr":"三重聚氯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11470":{"oreDict":["ingotEpoxid"],"name":"环氧树脂条","tr":"环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11471":{"oreDict":["ingotAnyRubber"," ingotSilicone"," ingotAnySyntheticRubber"],"name":"硅橡胶条","tr":"硅橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11472":{"oreDict":["ingotPolycaprolactam"],"name":"聚己内酰胺条","tr":"聚己内酰胺条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27856":{"oreDict":["screwSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)螺丝","tr":"太阳能级硅(多晶硅)螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11473":{"oreDict":["ingotPolytetrafluoroethylene"],"name":"聚四氟乙烯条","tr":"聚四氟乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27868":{"oreDict":["screwTrinium"],"name":"三元金属螺丝","tr":"三元金属螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11485":{"oreDict":["ingotAlduorite"],"name":"神秘蓝金锭","tr":"神秘蓝金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11488":{"oreDict":["ingotRubracium"],"name":"褐铜锭","tr":"褐铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11489":{"oreDict":["ingotVulcanite"],"name":"胶木锭","tr":"胶木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27874":{"oreDict":["screwPlastic"],"name":"聚乙烯螺丝","tr":"聚乙烯螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27880":{"oreDict":["screwAnyRubber"," screwRubber"],"name":"橡胶螺丝","tr":"橡胶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27884":{"oreDict":["screwDesh"],"name":"戴斯螺丝","tr":"戴斯螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27889":{"oreDict":["screwWoodSealed"],"name":"蜡封木螺丝","tr":"蜡封木螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27890":{"oreDict":["screwGlass"],"name":"玻璃螺丝","tr":"玻璃螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11521":{"oreDict":["ingotForce"],"name":"力量锭","tr":"力量锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27912":{"oreDict":["screwChrysotile"],"name":"白石棉螺丝","tr":"白石棉螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11529":{"oreDict":["ingotVinteum"],"name":"温特姆锭","tr":"温特姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27913":{"oreDict":["screwRealgar"],"name":"雄黄螺丝","tr":"雄黄螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27951":{"oreDict":["screwVyroxeres"],"name":"幽冥剧毒结晶螺丝","tr":"幽冥剧毒结晶螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27952":{"oreDict":["screwCeruclase"],"name":"暗影秘银螺丝","tr":"暗影秘银螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27956":{"oreDict":["screwTartarite"],"name":"溶火之石螺丝","tr":"溶火之石螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19765":{"oreDict":["plateTripleKevlar"],"name":"三重凯芙拉板","tr":"三重凯芙拉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11576":{"oreDict":["ingotTPVAlloy"],"name":"钛铂钒合金锭","tr":"钛铂钒合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19770":{"oreDict":["plateTripleHeeEndium"],"name":"三重终末锭板","tr":"三重终末锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19772":{"oreDict":["plateTripleNickelAluminide"],"name":"三重铝化镍板","tr":"三重铝化镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11581":{"oreDict":["ingotTranscendentMetal"],"name":"超时空金属锭","tr":"超时空金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11582":{"oreDict":["ingotEnrichedHolmium"],"name":"富集钬锭","tr":"富集钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27966":{"oreDict":["screwOrichalcum"],"name":"山铜螺丝","tr":"山铜螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11583":{"oreDict":["ingotMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质锭","tr":"磁流体约束恒星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11585":{"oreDict":["ingotWhiteDwarfMatter"],"name":"白矮星物质锭","tr":"白矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11586":{"oreDict":["ingotBlackDwarfMatter"],"name":"黑矮星物质锭","tr":"黑矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27970":{"oreDict":["screwVoid"],"name":"虚空螺丝","tr":"虚空螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11588":{"oreDict":["ingotSpaceTime"],"name":"时空锭","tr":"时空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27974":{"oreDict":["screwSuperconductorUEVBase"],"name":"UEV超导粗胚螺丝","tr":"UEV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27975":{"oreDict":["screwDraconium"],"name":"龙螺丝","tr":"龙螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27976":{"oreDict":["screwDraconiumAwakened"],"name":"觉醒龙螺丝","tr":"觉醒龙螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27977":{"oreDict":["screwBloodInfusedIron"],"name":"注血铁螺丝","tr":"注血铁螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27978":{"oreDict":["screwIchorium"],"name":"灵宝螺丝","tr":"灵宝螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27979":{"oreDict":["screwRadoxPoly"],"name":"拉多X聚合物螺丝","tr":"拉多X聚合物螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27980":{"oreDict":["screwGalliumArsenide"],"name":"砷化镓螺丝","tr":"砷化镓螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27981":{"oreDict":["screwIndiumGalliumPhosphide"],"name":"磷化铟镓螺丝","tr":"磷化铟镓螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27982":{"oreDict":["screwCosmicNeutronium"],"name":"宇宙中子态素螺丝","tr":"宇宙中子态素螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11599":{"oreDict":["ingotPolybenzimidazole"],"name":"聚苯并咪唑锭","tr":"聚苯并咪唑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27984":{"oreDict":["screwFlerovium_GT5U"],"name":"螺丝","tr":"螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27985":{"oreDict":["screwLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚螺丝","tr":"UHV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27986":{"oreDict":["screwLongasssuperconductornameforuvwire"],"name":"UV超导粗胚螺丝","tr":"UV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27987":{"oreDict":["screwPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚螺丝","tr":"MV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27988":{"oreDict":["screwTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚螺丝","tr":"HV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27989":{"oreDict":["screwUraniumtriplatinid"],"name":"EV超导粗胚螺丝","tr":"EV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27990":{"oreDict":["screwVanadiumtriindinid"],"name":"IV超导粗胚螺丝","tr":"IV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27991":{"oreDict":["screwTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚螺丝","tr":"LuV超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"27992":{"oreDict":["screwTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚螺丝","tr":"ZPM超导粗胚螺丝","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11610":{"oreDict":["ingotEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂条","tr":"纤维强化的环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11611":{"oreDict":["ingotBorosilicateGlass"],"name":"硼玻璃条","tr":"硼玻璃条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11613":{"oreDict":["ingotNickelZincFerrite"],"name":"镍锌铁氧体锭","tr":"镍锌铁氧体锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28006":{"oreDict":["ringLithium"],"name":"锂环","tr":"锂环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28008":{"oreDict":["ringBeryllium"],"name":"铍环","tr":"铍环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28010":{"oreDict":["ringCarbon"],"name":"碳环","tr":"碳环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11631":{"oreDict":["ingotPolyphenyleneSulfide"],"name":"聚苯硫醚锭","tr":"聚苯硫醚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28018":{"oreDict":["ringMagnesium"],"name":"镁环","tr":"镁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11635":{"oreDict":["ingotAnyRubber"," ingotAnySyntheticRubber"," ingotStyreneButadieneRubber"],"name":"丁苯橡胶条","tr":"丁苯橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28019":{"oreDict":["ringAluminium"],"name":"铝环","tr":"铝环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11636":{"oreDict":["ingotPolystyrene"],"name":"聚苯乙烯条","tr":"聚苯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28020":{"oreDict":["ringSilicon"],"name":"硅环","tr":"硅环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19829":{"oreDict":["plateTripleDeepIron"],"name":"三重深渊铁板","tr":"三重深渊铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28025":{"oreDict":["ringPotassium"],"name":"钾环","tr":"钾环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28027":{"oreDict":["ringScandium"],"name":"钪环","tr":"钪环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28028":{"oreDict":["ringTitanium"],"name":"钛环","tr":"钛环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28029":{"oreDict":["ringVanadium"],"name":"钒环","tr":"钒环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28030":{"oreDict":["ringChrome"],"name":"铬环","tr":"铬环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28031":{"oreDict":["ringManganese"],"name":"锰环","tr":"锰环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28032":{"oreDict":["ringIron"," ringAnyIron"],"name":"铁环","tr":"铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11649":{"oreDict":["ingotPolyvinylChloride"],"name":"聚氯乙烯条","tr":"聚氯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28033":{"oreDict":["ringCobalt"],"name":"钴环","tr":"钴环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28034":{"oreDict":["ringNickel"],"name":"镍环","tr":"镍环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28035":{"oreDict":["ringCopper"," ringAnyCopper"],"name":"铜环","tr":"铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28036":{"oreDict":["ringZinc"],"name":"锌环","tr":"锌环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28037":{"oreDict":["ringGallium"],"name":"镓环","tr":"镓环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28039":{"oreDict":["ringArsenic"],"name":"砷环","tr":"砷环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28043":{"oreDict":["ringRubidium"],"name":"铷环","tr":"铷环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28045":{"oreDict":["ringYttrium"],"name":"钇环","tr":"钇环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28047":{"oreDict":["ringNiobium"],"name":"铌环","tr":"铌环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19856":{"oreDict":["plateTripleSiliconSolarGrade"],"name":"三重太阳能级硅(多晶硅)板","tr":"三重太阳能级硅(多晶硅)板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28048":{"oreDict":["ringMolybdenum"],"name":"钼环","tr":"钼环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28052":{"oreDict":["ringPalladium"],"name":"钯环","tr":"钯环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28054":{"oreDict":["ringSilver"],"name":"银环","tr":"银环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28056":{"oreDict":["ringIndium"],"name":"铟环","tr":"铟环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28057":{"oreDict":["ringTin"],"name":"锡环","tr":"锡环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28058":{"oreDict":["ringAntimony"],"name":"锑环","tr":"锑环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28059":{"oreDict":["ringTellurium"],"name":"碲环","tr":"碲环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19868":{"oreDict":["plateTripleTrinium"],"name":"三重三元金属板","tr":"三重三元金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28062":{"oreDict":["ringCaesium"],"name":"铯环","tr":"铯环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28063":{"oreDict":["ringBarium"],"name":"钡环","tr":"钡环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28064":{"oreDict":["ringLanthanum"],"name":"镧环","tr":"镧环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28065":{"oreDict":["ringCerium"],"name":"铈环","tr":"铈环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19874":{"oreDict":["plateTriplePlastic"],"name":"三重聚乙烯片","tr":"三重聚乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28066":{"oreDict":["ringPraseodymium"],"name":"镨环","tr":"镨环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28067":{"oreDict":["ringNeodymium"],"name":"钕环","tr":"钕环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28068":{"oreDict":["ringPromethium"],"name":"钷环","tr":"钷环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28069":{"oreDict":["ringSamarium"],"name":"钐环","tr":"钐环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28070":{"oreDict":["ringEuropium"],"name":"铕环","tr":"铕环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19879":{"oreDict":["plateTriplePaper"],"name":"厚纸板","tr":"厚纸板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28071":{"oreDict":["ringGadolinium"],"name":"钆环","tr":"钆环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19880":{"oreDict":["plateTripleRubber"," plateTripleAnyRubber"],"name":"三重橡胶片","tr":"三重橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28072":{"oreDict":["ringTerbium"],"name":"铽环","tr":"铽环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28073":{"oreDict":["ringDysprosium"],"name":"镝环","tr":"镝环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28074":{"oreDict":["ringHolmium"],"name":"钬环","tr":"钬环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28075":{"oreDict":["ringErbium"],"name":"铒环","tr":"铒环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19884":{"oreDict":["plateTripleDesh"],"name":"三重戴斯板","tr":"三重戴斯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28076":{"oreDict":["ringThulium"],"name":"铥环","tr":"铥环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28077":{"oreDict":["ringYtterbium"],"name":"镱环","tr":"镱环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28078":{"oreDict":["ringLutetium"],"name":"镥环","tr":"镥环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28080":{"oreDict":["ringTantalum"],"name":"钽环","tr":"钽环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28081":{"oreDict":["ringTungsten"],"name":"钨环","tr":"钨环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28083":{"oreDict":["ringOsmium"],"name":"锇环","tr":"锇环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28084":{"oreDict":["ringIridium"],"name":"铱环","tr":"铱环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28085":{"oreDict":["ringPlatinum"],"name":"铂环","tr":"铂环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28086":{"oreDict":["ringGold"],"name":"金环","tr":"金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28089":{"oreDict":["ringLead"],"name":"铅环","tr":"铅环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28090":{"oreDict":["ringBismuth"],"name":"铋环","tr":"铋环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28096":{"oreDict":["ringThorium"],"name":"钍环","tr":"钍环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28097":{"oreDict":["ringUranium235"],"name":"铀-235环","tr":"铀-235环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28098":{"oreDict":["ringUranium"],"name":"铀-238环","tr":"铀-238环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28100":{"oreDict":["ringPlutonium"],"name":"钚-239环","tr":"钚-239环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28101":{"oreDict":["ringPlutonium241"],"name":"钚-241环","tr":"钚-241环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28103":{"oreDict":["ringAmericium"],"name":"镅环","tr":"镅环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19912":{"oreDict":["plateTripleChrysotile"],"name":"三重石棉板","tr":"三重石棉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19913":{"oreDict":["plateTripleRealgar"],"name":"三重雄黄板","tr":"三重雄黄板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28111":{"oreDict":["ringTengamPurified"],"name":"纯镃环","tr":"纯镃环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28112":{"oreDict":["ringTengamAttuned"],"name":"谐镃环","tr":"谐镃环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28129":{"oreDict":["ringNeutronium"],"name":"中子环","tr":"中子环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28131":{"oreDict":["ringSuperconductorUIVBase"],"name":"UIV超导粗胚环","tr":"UIV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28134":{"oreDict":["ringSuperconductorUMVBase"],"name":"UMV超导粗胚环","tr":"UMV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28139":{"oreDict":["ringUniversium"],"name":"宇宙素环","tr":"宇宙素环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28141":{"oreDict":["ringEternity"],"name":"永恒环","tr":"永恒环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19951":{"oreDict":["plateTripleVyroxeres"],"name":"三重幽冥剧毒结晶板","tr":"三重幽冥剧毒结晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28143":{"oreDict":["ringMagmatter"],"name":"磁物质环","tr":"磁物质环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19952":{"oreDict":["plateTripleCeruclase"],"name":"三重暗影秘银板","tr":"三重暗影秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19956":{"oreDict":["plateTripleTartarite"],"name":"三重溶火之石板","tr":"三重溶火之石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11765":{"oreDict":["ingotKevlar"],"name":"凯芙拉锭","tr":"凯芙拉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11770":{"oreDict":["ingotHeeEndium"],"name":"终末锭","tr":"终末锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11772":{"oreDict":["ingotNickelAluminide"],"name":"铝化镍锭","tr":"铝化镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19966":{"oreDict":["plateTripleOrichalcum"],"name":"三重山铜板","tr":"三重山铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19970":{"oreDict":["plateTripleVoid"],"name":"三重虚空锭板","tr":"三重虚空锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19974":{"oreDict":["plateTripleSuperconductorUEVBase"],"name":"三重UEV超导粗胚板","tr":"三重UEV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19975":{"oreDict":["plateTripleDraconium"],"name":"三重龙锭板","tr":"三重龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19976":{"oreDict":["plateTripleDraconiumAwakened"],"name":"三重觉醒龙锭板","tr":"三重觉醒龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19977":{"oreDict":["plateTripleBloodInfusedIron"],"name":"三重注血铁板","tr":"三重注血铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19978":{"oreDict":["plateTripleIchorium"],"name":"三重灵宝板","tr":"三重灵宝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19979":{"oreDict":["plateTripleRadoxPoly"],"name":"三重拉多X聚合物板","tr":"三重拉多X聚合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19980":{"oreDict":["plateTripleGalliumArsenide"],"name":"三重砷化镓板","tr":"三重砷化镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19981":{"oreDict":["plateTripleIndiumGalliumPhosphide"],"name":"三重磷化铟镓板","tr":"三重磷化铟镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19982":{"oreDict":["plateTripleCosmicNeutronium"],"name":"三重宇宙中子态素板","tr":"三重宇宙中子态素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19984":{"oreDict":["plateTripleFlerovium_GT5U"],"name":"三重板","tr":"三重板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19985":{"oreDict":["plateTripleLongasssuperconductornameforuhvwire"],"name":"三重UHV超导粗胚板","tr":"三重UHV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19986":{"oreDict":["plateTripleLongasssuperconductornameforuvwire"],"name":"三重UV超导粗胚板","tr":"三重UV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19987":{"oreDict":["plateTriplePentacadmiummagnesiumhexaoxid"],"name":"三重MV超导粗胚板","tr":"三重MV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19988":{"oreDict":["plateTripleTitaniumonabariumdecacoppereikosaoxid"],"name":"三重HV超导粗胚板","tr":"三重HV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19989":{"oreDict":["plateTripleUraniumtriplatinid"],"name":"三重EV超导粗胚板","tr":"三重EV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19990":{"oreDict":["plateTripleVanadiumtriindinid"],"name":"三重IV超导粗胚板","tr":"三重IV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19991":{"oreDict":["plateTripleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"三重LuV超导粗胚板","tr":"三重LuV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"19992":{"oreDict":["plateTripleTetranaquadahdiindiumhexaplatiumosminid"],"name":"三重ZPM超导粗胚板","tr":"三重ZPM超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11804":{"oreDict":["ingotObsidian"],"name":"黑曜石锭","tr":"黑曜石锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20006":{"oreDict":["plateQuadrupleLithium"],"name":"四重锂板","tr":"四重锂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20008":{"oreDict":["plateQuadrupleBeryllium"],"name":"四重铍板","tr":"四重铍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28201":{"oreDict":["ringManasteel"],"name":"魔钢环","tr":"魔钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20010":{"oreDict":["plateQuadrupleCarbon"],"name":"四重碳板","tr":"四重碳板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28202":{"oreDict":["ringTerrasteel"],"name":"泰拉钢环","tr":"泰拉钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28203":{"oreDict":["ringElvenElementium"],"name":"源质钢环","tr":"源质钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28205":{"oreDict":["ringGaiaSpirit"],"name":"盖亚之魂环","tr":"盖亚之魂环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28206":{"oreDict":["ringLivingwood"],"name":"活木环","tr":"活木环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28207":{"oreDict":["ringDreamwood"],"name":"梦之木环","tr":"梦之木环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20018":{"oreDict":["plateQuadrupleMagnesium"],"name":"四重镁板","tr":"四重镁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20019":{"oreDict":["plateQuadrupleAluminium"],"name":"四重铝板","tr":"四重铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20020":{"oreDict":["plateQuadrupleSilicon"],"name":"四重硅板","tr":"四重硅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11829":{"oreDict":["ingotDeepIron"],"name":"深渊铁锭","tr":"深渊铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20025":{"oreDict":["plateQuadruplePotassium"],"name":"四重钾板","tr":"四重钾板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20027":{"oreDict":["plateQuadrupleScandium"],"name":"四重钪板","tr":"四重钪板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20028":{"oreDict":["plateQuadrupleTitanium"],"name":"四重钛板","tr":"四重钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20029":{"oreDict":["plateQuadrupleVanadium"],"name":"四重钒板","tr":"四重钒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20030":{"oreDict":["plateQuadrupleChrome"],"name":"四重铬板","tr":"四重铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20031":{"oreDict":["plateQuadrupleManganese"],"name":"四重锰板","tr":"四重锰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20032":{"oreDict":["plateQuadrupleIron"," plateQuadrupleAnyIron"],"name":"四重铁板","tr":"四重铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20033":{"oreDict":["plateQuadrupleCobalt"],"name":"四重钴板","tr":"四重钴板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20034":{"oreDict":["plateQuadrupleNickel"],"name":"四重镍板","tr":"四重镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20035":{"oreDict":["plateQuadrupleCopper"," plateQuadrupleAnyCopper"],"name":"四重铜板","tr":"四重铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20036":{"oreDict":["plateQuadrupleZinc"],"name":"四重锌板","tr":"四重锌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20037":{"oreDict":["plateQuadrupleGallium"],"name":"四重镓板","tr":"四重镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20039":{"oreDict":["plateQuadrupleArsenic"],"name":"四重砷板","tr":"四重砷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20043":{"oreDict":["plateQuadrupleRubidium"],"name":"四重铷板","tr":"四重铷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20045":{"oreDict":["plateQuadrupleYttrium"],"name":"四重钇板","tr":"四重钇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20047":{"oreDict":["plateQuadrupleNiobium"],"name":"四重铌板","tr":"四重铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11856":{"oreDict":["ingotSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)锭","tr":"太阳能级硅(多晶硅)锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20048":{"oreDict":["plateQuadrupleMolybdenum"],"name":"四重钼板","tr":"四重钼板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20052":{"oreDict":["plateQuadruplePalladium"],"name":"四重钯板","tr":"四重钯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20054":{"oreDict":["plateQuadrupleSilver"],"name":"四重银板","tr":"四重银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20056":{"oreDict":["plateQuadrupleIndium"],"name":"四重铟板","tr":"四重铟板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20057":{"oreDict":["plateQuadrupleTin"],"name":"四重锡板","tr":"四重锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20058":{"oreDict":["plateQuadrupleAntimony"],"name":"四重锑板","tr":"四重锑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20059":{"oreDict":["plateQuadrupleTellurium"],"name":"四重碲板","tr":"四重碲板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11868":{"oreDict":["ingotTrinium"],"name":"三元金属锭","tr":"三元金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20062":{"oreDict":["plateQuadrupleCaesium"],"name":"四重铯板","tr":"四重铯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20063":{"oreDict":["plateQuadrupleBarium"],"name":"四联钡板","tr":"四联钡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20064":{"oreDict":["plateQuadrupleLanthanum"],"name":"四重镧板","tr":"四重镧板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20065":{"oreDict":["plateQuadrupleCerium"],"name":"四重铈板","tr":"四重铈板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11874":{"oreDict":["ingotPlastic"],"name":"聚乙烯条","tr":"聚乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20066":{"oreDict":["plateQuadruplePraseodymium"],"name":"四重镨板","tr":"四重镨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20067":{"oreDict":["plateQuadrupleNeodymium"],"name":"四重钕板","tr":"四重钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20068":{"oreDict":["plateQuadruplePromethium"],"name":"四重钷板","tr":"四重钷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20069":{"oreDict":["plateQuadrupleSamarium"],"name":"四重钐板","tr":"四重钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20070":{"oreDict":["plateQuadrupleEuropium"],"name":"四重铕板","tr":"四重铕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20071":{"oreDict":["plateQuadrupleGadolinium"],"name":"四重钆板","tr":"四重钆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11880":{"oreDict":["itemRubber"," ingotRubber"," ingotAnyRubber"],"name":"橡胶条","tr":"橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20072":{"oreDict":["plateQuadrupleTerbium"],"name":"四重铽板","tr":"四重铽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20073":{"oreDict":["plateQuadrupleDysprosium"],"name":"四重镝板","tr":"四重镝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20074":{"oreDict":["plateQuadrupleHolmium"],"name":"四重钬板","tr":"四重钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20075":{"oreDict":["plateQuadrupleErbium"],"name":"四重铒板","tr":"四重铒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11884":{"oreDict":["ingotDesh"],"name":"戴斯锭","tr":"戴斯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20076":{"oreDict":["plateQuadrupleThulium"],"name":"四重铥板","tr":"四重铥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20077":{"oreDict":["plateQuadrupleYtterbium"],"name":"四重镱板","tr":"四重镱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20078":{"oreDict":["plateQuadrupleLutetium"],"name":"四重镥板","tr":"四重镥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20080":{"oreDict":["plateQuadrupleTantalum"],"name":"四重钽板","tr":"四重钽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20081":{"oreDict":["plateQuadrupleTungsten"],"name":"四重钨板","tr":"四重钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20083":{"oreDict":["plateQuadrupleOsmium"],"name":"四重锇板","tr":"四重锇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20084":{"oreDict":["plateQuadrupleIridium"],"name":"四重铱板","tr":"四重铱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20085":{"oreDict":["plateQuadruplePlatinum"],"name":"四重铂板","tr":"四重铂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20086":{"oreDict":["plateQuadrupleGold"],"name":"四重金板","tr":"四重金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20089":{"oreDict":["plateQuadrupleLead"],"name":"四重铅板","tr":"四重铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20090":{"oreDict":["plateQuadrupleBismuth"],"name":"四重铋板","tr":"四重铋板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20096":{"oreDict":["plateQuadrupleThorium"],"name":"四重钍板","tr":"四重钍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20097":{"oreDict":["plateQuadrupleUranium235"],"name":"四重铀-235板","tr":"四重铀-235板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20098":{"oreDict":["plateQuadrupleUranium"],"name":"四重铀-238板","tr":"四重铀-238板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20100":{"oreDict":["plateQuadruplePlutonium"],"name":"四重钚-239板","tr":"四重钚-239板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20101":{"oreDict":["plateQuadruplePlutonium241"],"name":"四重钚-241板","tr":"四重钚-241板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20103":{"oreDict":["plateQuadrupleAmericium"],"name":"四重镅板","tr":"四重镅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11912":{"oreDict":["ingotChrysotile"],"name":"石棉锭","tr":"石棉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11913":{"oreDict":["ingotRealgar"],"name":"雄黄锭","tr":"雄黄锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28300":{"oreDict":["ringBronze"," ringAnyBronze"],"name":"青铜环","tr":"青铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28301":{"oreDict":["ringBrass"],"name":"黄铜环","tr":"黄铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28302":{"oreDict":["ringInvar"],"name":"殷钢环","tr":"殷钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20111":{"oreDict":["plateQuadrupleTengamPurified"],"name":"四重纯镃板","tr":"四重纯镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28303":{"oreDict":["ringElectrum"],"name":"琥珀金环","tr":"琥珀金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20112":{"oreDict":["plateQuadrupleTengamAttuned"],"name":"四重谐镃板","tr":"四重谐镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28304":{"oreDict":["ringAnyIron"," ringWroughtIron"],"name":"锻铁环","tr":"锻铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28305":{"oreDict":["ringSteel"],"name":"钢环","tr":"钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28306":{"oreDict":["ringStainlessSteel"],"name":"不锈钢环","tr":"不锈钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28307":{"oreDict":["ringAnyIron"," ringPigIron"],"name":"生铁环","tr":"生铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28308":{"oreDict":["ringRedAlloy"],"name":"红色合金环","tr":"红色合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28309":{"oreDict":["ringBlueAlloy"],"name":"蓝色合金环","tr":"蓝色合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28310":{"oreDict":["ringCupronickel"],"name":"白铜环","tr":"白铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28311":{"oreDict":["ringNichrome"],"name":"镍铬环","tr":"镍铬环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28312":{"oreDict":["ringKanthal"],"name":"坎塔尔合金环","tr":"坎塔尔合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28313":{"oreDict":["ringMagnalium"],"name":"镁铝合金环","tr":"镁铝合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28314":{"oreDict":["ringSolderingAlloy"],"name":"焊锡环","tr":"焊锡环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28315":{"oreDict":["ringBatteryAlloy"],"name":"电池合金环","tr":"电池合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28316":{"oreDict":["ringTungstenSteel"],"name":"钨钢环","tr":"钨钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28317":{"oreDict":["ringOsmiridium"],"name":"铱锇合金环","tr":"铱锇合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28318":{"oreDict":["ringSunnarium"],"name":"阳光化合物环","tr":"阳光化合物环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28319":{"oreDict":["ringAdamantium"],"name":"精金环","tr":"精金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28320":{"oreDict":["ringElectrumFlux"],"name":"通流琥珀金环","tr":"通流琥珀金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20129":{"oreDict":["plateQuadrupleNeutronium"],"name":"四重中子板","tr":"四重中子板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28321":{"oreDict":["ringEnderium"],"name":"末影锭环","tr":"末影锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20131":{"oreDict":["plateQuadrupleSuperconductorUIVBase"],"name":"四重UIV超导粗胚板","tr":"四重UIV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28323":{"oreDict":["ringInfusedGold"],"name":"注魔金环","tr":"注魔金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28324":{"oreDict":["ringNaquadah"],"name":"硅岩环","tr":"硅岩环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28325":{"oreDict":["ringNaquadahAlloy"],"name":"硅岩合金环","tr":"硅岩合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20134":{"oreDict":["plateQuadrupleSuperconductorUMVBase"],"name":"四重UMV超导粗胚板","tr":"四重UMV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28326":{"oreDict":["ringNaquadahEnriched"],"name":"富集硅岩环","tr":"富集硅岩环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28327":{"oreDict":["ringNaquadria"],"name":"超能硅岩环","tr":"超能硅岩环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28328":{"oreDict":["ringDuranium"],"name":"铿铀环","tr":"铿铀环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28329":{"oreDict":["ringTritanium"],"name":"三钛环","tr":"三钛环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28330":{"oreDict":["ringThaumium"],"name":"神秘锭环","tr":"神秘锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20139":{"oreDict":["plateQuadrupleUniversium"],"name":"四重宇宙素板","tr":"四重宇宙素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28331":{"oreDict":["ringMithril"],"name":"秘银环","tr":"秘银环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20141":{"oreDict":["plateQuadrupleEternity"],"name":"四重永恒板","tr":"四重永恒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28333":{"oreDict":["ringAstralSilver"],"name":"星辰银环","tr":"星辰银环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28334":{"oreDict":["ringBlackSteel"],"name":"黑钢环","tr":"黑钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11951":{"oreDict":["ingotVyroxeres"],"name":"幽冥剧毒结晶锭","tr":"幽冥剧毒结晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20143":{"oreDict":["plateQuadrupleMagmatter"],"name":"四重磁物质板","tr":"四重磁物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28335":{"oreDict":["ringDamascusSteel"],"name":"大马士革钢环","tr":"大马士革钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11952":{"oreDict":["ingotCeruclase"],"name":"暗影秘银锭","tr":"暗影秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28336":{"oreDict":["ringShadowIron"],"name":"暗影铁环","tr":"暗影铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28337":{"oreDict":["ringShadowSteel"],"name":"暗影钢环","tr":"暗影钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28338":{"oreDict":["ringIronWood"],"name":"铁木环","tr":"铁木环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28339":{"oreDict":["ringSteeleaf"],"name":"钢叶环","tr":"钢叶环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11956":{"oreDict":["ingotTartarite"],"name":"溶火之石锭","tr":"溶火之石锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28340":{"oreDict":["ringMeteoricIron"],"name":"陨铁环","tr":"陨铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28341":{"oreDict":["ringMeteoricSteel"],"name":"陨钢环","tr":"陨钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28342":{"oreDict":["ringDarkIron"],"name":"玄铁环","tr":"玄铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28343":{"oreDict":["ringCobaltBrass"],"name":"钴黄铜环","tr":"钴黄铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28344":{"oreDict":["ringUltimet"],"name":"哈氏合金环","tr":"哈氏合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28345":{"oreDict":["ringAnnealedCopper"," ringAnyCopper"],"name":"退火铜环","tr":"退火铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28346":{"oreDict":["ringFierySteel"],"name":"炽热钢环","tr":"炽热钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28348":{"oreDict":["ringRedSteel"],"name":"红钢环","tr":"红钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28349":{"oreDict":["ringBlueSteel"],"name":"蓝钢环","tr":"蓝钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11966":{"oreDict":["ingotOrichalcum"],"name":"山铜锭","tr":"山铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28350":{"oreDict":["ringSterlingSilver"],"name":"标准纯银环","tr":"标准纯银环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28351":{"oreDict":["ringRoseGold"],"name":"玫瑰金环","tr":"玫瑰金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28352":{"oreDict":["ringBlackBronze"],"name":"黑青铜环","tr":"黑青铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28353":{"oreDict":["ringBismuthBronze"],"name":"铋青铜环","tr":"铋青铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11970":{"oreDict":["ingotVoid"],"name":"虚空锭","tr":"虚空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28354":{"oreDict":["ringIronMagnetic"],"name":"磁化铁环","tr":"磁化铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28355":{"oreDict":["ringSteelMagnetic"],"name":"磁化钢环","tr":"磁化钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28356":{"oreDict":["ringNeodymiumMagnetic"],"name":"磁化钕环","tr":"磁化钕环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28357":{"oreDict":["ringVanadiumGallium"],"name":"钒镓合金环","tr":"钒镓合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11974":{"oreDict":["ingotSuperconductorUEVBase"],"name":"UEV超导粗胚锭","tr":"UEV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28358":{"oreDict":["ringYttriumBariumCuprate"],"name":"钇钡铜氧合金环","tr":"钇钡铜氧合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11975":{"oreDict":["ingotDraconium"],"name":"龙锭","tr":"龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28359":{"oreDict":["ringNiobiumNitride"],"name":"氮化铌环","tr":"氮化铌环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11976":{"oreDict":["ingotDraconiumAwakened"],"name":"觉醒龙锭","tr":"觉醒龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28360":{"oreDict":["ringNiobiumTitanium"],"name":"铌钛合金环","tr":"铌钛合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11977":{"oreDict":["ingotBloodInfusedIron"],"name":"注血铁锭","tr":"注血铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28361":{"oreDict":["ringChromiumDioxide"],"name":"二氧化铬环","tr":"二氧化铬环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11978":{"oreDict":["ingotIchorium"],"name":"灵宝锭","tr":"灵宝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28362":{"oreDict":["ringKnightmetal"],"name":"骑士金属环","tr":"骑士金属环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11979":{"oreDict":["ingotRadoxPoly"],"name":"拉多X聚合物锭","tr":"拉多X聚合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28363":{"oreDict":["ringTinAlloy"],"name":"锡铁合金环","tr":"锡铁合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11980":{"oreDict":["ingotGalliumArsenide"],"name":"砷化镓锭","tr":"砷化镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28364":{"oreDict":["ringDarkSteel"],"name":"玄钢环","tr":"玄钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11981":{"oreDict":["ingotIndiumGalliumPhosphide"],"name":"磷化铟镓锭","tr":"磷化铟镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28365":{"oreDict":["ringElectricalSteel"],"name":"磁钢环","tr":"磁钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11982":{"oreDict":["ingotCosmicNeutronium"],"name":"宇宙中子态素锭","tr":"宇宙中子态素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28366":{"oreDict":["ringEnergeticAlloy"],"name":"充能合金环","tr":"充能合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28367":{"oreDict":["ringVibrantAlloy"],"name":"脉冲合金环","tr":"脉冲合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11984":{"oreDict":["ingotFlerovium_GT5U"],"name":"锭","tr":"锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28368":{"oreDict":["ringShadow"],"name":"暗影环","tr":"暗影环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11985":{"oreDict":["ingotLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚锭","tr":"UHV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28369":{"oreDict":["ringConductiveIron"],"name":"导电铁环","tr":"导电铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11986":{"oreDict":["ingotLongasssuperconductornameforuvwire"],"name":"UV超导粗胚锭","tr":"UV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28370":{"oreDict":["ringTungstenCarbide"],"name":"碳化钨环","tr":"碳化钨环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11987":{"oreDict":["ingotPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚锭","tr":"MV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28371":{"oreDict":["ringVanadiumSteel"],"name":"钒钢环","tr":"钒钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11988":{"oreDict":["ingotTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚锭","tr":"HV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28372":{"oreDict":["ringHSSG"],"name":"高速钢-G环","tr":"高速钢-G环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11989":{"oreDict":["ingotUraniumtriplatinid"],"name":"EV超导粗胚锭","tr":"EV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28373":{"oreDict":["ringHSSE"],"name":"高速钢-E环","tr":"高速钢-E环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11990":{"oreDict":["ingotVanadiumtriindinid"],"name":"IV超导粗胚锭","tr":"IV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28374":{"oreDict":["ringHSSS"],"name":"高速钢-S环","tr":"高速钢-S环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11991":{"oreDict":["ingotTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚锭","tr":"LuV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"11992":{"oreDict":["ingotTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚锭","tr":"ZPM超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28378":{"oreDict":["ringPulsatingIron"],"name":"脉冲铁环","tr":"脉冲铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28379":{"oreDict":["ringSoularium"],"name":"魂金环","tr":"魂金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28380":{"oreDict":["ringEnderiumBase"],"name":"末影粗胚环","tr":"末影粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28381":{"oreDict":["ringRedstoneAlloy"],"name":"红石合金环","tr":"红石合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28382":{"oreDict":["ringArdite"],"name":"阿迪特环","tr":"阿迪特环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28383":{"oreDict":["ringReinforced"],"name":"强化金属环","tr":"强化金属环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28384":{"oreDict":["ringGalgadorian"],"name":"混合晶锭环","tr":"混合晶锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28385":{"oreDict":["ringEnhancedGalgadorian"],"name":"强化混合晶锭环","tr":"强化混合晶锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28386":{"oreDict":["ringManyullyn"],"name":"玛玉灵环","tr":"玛玉灵环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28387":{"oreDict":["ringMytryl"],"name":"深空秘银环","tr":"深空秘银环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28388":{"oreDict":["ringBlackPlutonium"],"name":"黑钚环","tr":"黑钚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28389":{"oreDict":["ringCallistoIce"],"name":"木卫四冰环","tr":"木卫四冰环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28390":{"oreDict":["ringLedox"],"name":"深铅环","tr":"深铅环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28391":{"oreDict":["ringQuantium"],"name":"量子锭环","tr":"量子锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28392":{"oreDict":["ringDuralumin"],"name":"硬铝环","tr":"硬铝环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20201":{"oreDict":["plateQuadrupleManasteel"],"name":"四重魔钢板","tr":"四重魔钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28393":{"oreDict":["ringOriharukon"],"name":"奥利哈钢环","tr":"奥利哈钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20202":{"oreDict":["plateQuadrupleTerrasteel"],"name":"四重泰拉钢板","tr":"四重泰拉钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28394":{"oreDict":["ringInfinityCatalyst"],"name":"无尽催化剂环","tr":"无尽催化剂环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20203":{"oreDict":["plateQuadrupleElvenElementium"],"name":"四重源质钢板","tr":"四重源质钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28395":{"oreDict":["ringBedrockium"],"name":"基岩环","tr":"基岩环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20205":{"oreDict":["plateQuadrupleGaiaSpirit"],"name":"四重盖亚之魂板","tr":"四重盖亚之魂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28397":{"oreDict":["ringInfinity"],"name":"无尽环","tr":"无尽环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28398":{"oreDict":["ringMysteriousCrystal"],"name":"神秘水晶环","tr":"神秘水晶环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28399":{"oreDict":["ringSamariumMagnetic"],"name":"磁化钐环","tr":"磁化钐环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28400":{"oreDict":["ringAlumite"],"name":"耐酸铝环","tr":"耐酸铝环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28401":{"oreDict":["ringEndSteel"],"name":"末影钢环","tr":"末影钢环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28402":{"oreDict":["ringCrudeSteel"],"name":"复合粘土环","tr":"复合粘土环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28403":{"oreDict":["ringCrystallineAlloy"],"name":"晶化合金环","tr":"晶化合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28404":{"oreDict":["ringMelodicAlloy"],"name":"旋律合金环","tr":"旋律合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28405":{"oreDict":["ringStellarAlloy"],"name":"恒星合金环","tr":"恒星合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28406":{"oreDict":["ringCrystallinePinkSlime"],"name":"晶化粉红史莱姆环","tr":"晶化粉红史莱姆环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28407":{"oreDict":["ringEnergeticSilver"],"name":"充能银环","tr":"充能银环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28408":{"oreDict":["ringVividAlloy"],"name":"生动合金环","tr":"生动合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28470":{"oreDict":["ringEpoxid"],"name":"环氧树脂环","tr":"环氧树脂环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28471":{"oreDict":["ringAnyRubber"," ringAnySyntheticRubber"," ringSilicone"],"name":"硅橡胶环","tr":"硅橡胶环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28472":{"oreDict":["ringPolycaprolactam"],"name":"聚己内酰胺环","tr":"聚己内酰胺环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28473":{"oreDict":["ringPolytetrafluoroethylene"],"name":"聚四氟乙烯环","tr":"聚四氟乙烯环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28485":{"oreDict":["ringAlduorite"],"name":"神秘蓝金环","tr":"神秘蓝金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28488":{"oreDict":["ringRubracium"],"name":"褐铜环","tr":"褐铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28489":{"oreDict":["ringVulcanite"],"name":"胶木环","tr":"胶木环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20300":{"oreDict":["plateQuadrupleBronze"," plateQuadrupleAnyBronze"],"name":"四重青铜板","tr":"四重青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20301":{"oreDict":["plateQuadrupleBrass"],"name":"四重黄铜板","tr":"四重黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20302":{"oreDict":["plateQuadrupleInvar"],"name":"四重殷钢板","tr":"四重殷钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20303":{"oreDict":["plateQuadrupleElectrum"],"name":"四重琥珀金板","tr":"四重琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20304":{"oreDict":["plateQuadrupleAnyIron"," plateQuadrupleWroughtIron"],"name":"四重锻铁板","tr":"四重锻铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20305":{"oreDict":["plateQuadrupleSteel"],"name":"四重钢板","tr":"四重钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20306":{"oreDict":["plateQuadrupleStainlessSteel"],"name":"四重不锈钢板","tr":"四重不锈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20307":{"oreDict":["plateQuadrupleAnyIron"," plateQuadruplePigIron"],"name":"四重生铁板","tr":"四重生铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20308":{"oreDict":["plateQuadrupleRedAlloy"],"name":"四重红色合金板","tr":"四重红色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20309":{"oreDict":["plateQuadrupleBlueAlloy"],"name":"四重蓝色合金板","tr":"四重蓝色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20310":{"oreDict":["plateQuadrupleCupronickel"],"name":"四重白铜板","tr":"四重白铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20311":{"oreDict":["plateQuadrupleNichrome"],"name":"四重镍铬板","tr":"四重镍铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20312":{"oreDict":["plateQuadrupleKanthal"],"name":"四重坎塔尔合金板","tr":"四重坎塔尔合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20313":{"oreDict":["plateQuadrupleMagnalium"],"name":"四重镁铝合金板","tr":"四重镁铝合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20314":{"oreDict":["plateQuadrupleSolderingAlloy"],"name":"四重焊锡板","tr":"四重焊锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20315":{"oreDict":["plateQuadrupleBatteryAlloy"],"name":"四重电池合金板","tr":"四重电池合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20316":{"oreDict":["plateQuadrupleTungstenSteel"],"name":"四重钨钢板","tr":"四重钨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20317":{"oreDict":["plateQuadrupleOsmiridium"],"name":"四重铱锇合金板","tr":"四重铱锇合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20318":{"oreDict":["plateQuadrupleSunnarium"],"name":"四重阳光化合物板","tr":"四重阳光化合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20319":{"oreDict":["plateQuadrupleAdamantium"],"name":"四重精金板","tr":"四重精金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20320":{"oreDict":["plateQuadrupleElectrumFlux"],"name":"四重通流琥珀金板","tr":"四重通流琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20321":{"oreDict":["plateQuadrupleEnderium"],"name":"四重末影锭板","tr":"四重末影锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20323":{"oreDict":["plateQuadrupleInfusedGold"],"name":"四重注魔金板","tr":"四重注魔金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20324":{"oreDict":["plateQuadrupleNaquadah"],"name":"四重硅岩板","tr":"四重硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20325":{"oreDict":["plateQuadrupleNaquadahAlloy"],"name":"四重硅岩合金板","tr":"四重硅岩合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20326":{"oreDict":["plateQuadrupleNaquadahEnriched"],"name":"四重富集硅岩板","tr":"四重富集硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20327":{"oreDict":["plateQuadrupleNaquadria"],"name":"四重超能硅岩板","tr":"四重超能硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20328":{"oreDict":["plateQuadrupleDuranium"],"name":"四重铿铀板","tr":"四重铿铀板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20329":{"oreDict":["plateQuadrupleTritanium"],"name":"四重三钛板","tr":"四重三钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28521":{"oreDict":["ringForce"],"name":"力量环","tr":"力量环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20330":{"oreDict":["plateQuadrupleThaumium"],"name":"四重神秘锭板","tr":"四重神秘锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20331":{"oreDict":["plateQuadrupleMithril"],"name":"四重秘银板","tr":"四重秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20333":{"oreDict":["plateQuadrupleAstralSilver"],"name":"四重星辰银板","tr":"四重星辰银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20334":{"oreDict":["plateQuadrupleBlackSteel"],"name":"四重黑钢板","tr":"四重黑钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20335":{"oreDict":["plateQuadrupleDamascusSteel"],"name":"四重大马士革钢板","tr":"四重大马士革钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20336":{"oreDict":["plateQuadrupleShadowIron"],"name":"四重暗影铁板","tr":"四重暗影铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20337":{"oreDict":["plateQuadrupleShadowSteel"],"name":"四重暗影钢板","tr":"四重暗影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28529":{"oreDict":["ringVinteum"],"name":"温特姆环","tr":"温特姆环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20338":{"oreDict":["plateQuadrupleIronWood"],"name":"四重铁木板","tr":"四重铁木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20339":{"oreDict":["plateQuadrupleSteeleaf"],"name":"四重钢叶板","tr":"四重钢叶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20340":{"oreDict":["plateQuadrupleMeteoricIron"],"name":"四重陨铁板","tr":"四重陨铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20341":{"oreDict":["plateQuadrupleMeteoricSteel"],"name":"四重陨钢板","tr":"四重陨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20342":{"oreDict":["plateQuadrupleDarkIron"],"name":"四重玄铁板","tr":"四重玄铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20343":{"oreDict":["plateQuadrupleCobaltBrass"],"name":"四重钴黄铜板","tr":"四重钴黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20344":{"oreDict":["plateQuadrupleUltimet"],"name":"四重哈氏合金板","tr":"四重哈氏合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20345":{"oreDict":["plateQuadrupleAnyCopper"," plateQuadrupleAnnealedCopper"],"name":"四重退火铜板","tr":"四重退火铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20346":{"oreDict":["plateQuadrupleFierySteel"],"name":"四重炽热钢板","tr":"四重炽热钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20348":{"oreDict":["plateQuadrupleRedSteel"],"name":"四重红钢板","tr":"四重红钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20349":{"oreDict":["plateQuadrupleBlueSteel"],"name":"四重蓝钢板","tr":"四重蓝钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20350":{"oreDict":["plateQuadrupleSterlingSilver"],"name":"四重标准纯银板","tr":"四重标准纯银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20351":{"oreDict":["plateQuadrupleRoseGold"],"name":"四重玫瑰金板","tr":"四重玫瑰金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20352":{"oreDict":["plateQuadrupleBlackBronze"],"name":"四重黑青铜板","tr":"四重黑青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20353":{"oreDict":["plateQuadrupleBismuthBronze"],"name":"四重铋青铜板","tr":"四重铋青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20354":{"oreDict":["plateQuadrupleIronMagnetic"],"name":"四重磁化铁板","tr":"四重磁化铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20355":{"oreDict":["plateQuadrupleSteelMagnetic"],"name":"四重磁化钢板","tr":"四重磁化钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20356":{"oreDict":["plateQuadrupleNeodymiumMagnetic"],"name":"四重磁化钕板","tr":"四重磁化钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20357":{"oreDict":["plateQuadrupleVanadiumGallium"],"name":"四重钒镓合金板","tr":"四重钒镓合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20358":{"oreDict":["plateQuadrupleYttriumBariumCuprate"],"name":"四重钇钡铜氧合金板","tr":"四重钇钡铜氧合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20359":{"oreDict":["plateQuadrupleNiobiumNitride"],"name":"四重氮化铌板","tr":"四重氮化铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20360":{"oreDict":["plateQuadrupleNiobiumTitanium"],"name":"四重铌钛合金板","tr":"四重铌钛合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20361":{"oreDict":["plateQuadrupleChromiumDioxide"],"name":"四重二氧化铬板","tr":"四重二氧化铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20362":{"oreDict":["plateQuadrupleKnightmetal"],"name":"四重骑士金属板","tr":"四重骑士金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20363":{"oreDict":["plateQuadrupleTinAlloy"],"name":"四重锡铁合金板","tr":"四重锡铁合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20364":{"oreDict":["plateQuadrupleDarkSteel"],"name":"四重玄钢板","tr":"四重玄钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20365":{"oreDict":["plateQuadrupleElectricalSteel"],"name":"四重磁钢板","tr":"四重磁钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20366":{"oreDict":["plateQuadrupleEnergeticAlloy"],"name":"四重充能合金板","tr":"四重充能合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20367":{"oreDict":["plateQuadrupleVibrantAlloy"],"name":"四重脉冲合金板","tr":"四重脉冲合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20368":{"oreDict":["plateQuadrupleShadow"],"name":"四重暗影板","tr":"四重暗影板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20369":{"oreDict":["plateQuadrupleConductiveIron"],"name":"四重导电铁板","tr":"四重导电铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20370":{"oreDict":["plateQuadrupleTungstenCarbide"],"name":"四重碳化钨板","tr":"四重碳化钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20371":{"oreDict":["plateQuadrupleVanadiumSteel"],"name":"四重钒钢板","tr":"四重钒钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20372":{"oreDict":["plateQuadrupleHSSG"],"name":"四重高速钢-G板","tr":"四重高速钢-G板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20373":{"oreDict":["plateQuadrupleHSSE"],"name":"四重高速钢-E板","tr":"四重高速钢-E板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20374":{"oreDict":["plateQuadrupleHSSS"],"name":"四重高速钢-S板","tr":"四重高速钢-S板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20378":{"oreDict":["plateQuadruplePulsatingIron"],"name":"四重脉冲铁板","tr":"四重脉冲铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20379":{"oreDict":["plateQuadrupleSoularium"],"name":"四重魂金板","tr":"四重魂金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20380":{"oreDict":["plateQuadrupleEnderiumBase"],"name":"四重末影粗胚板","tr":"四重末影粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20381":{"oreDict":["plateQuadrupleRedstoneAlloy"],"name":"四重红石合金板","tr":"四重红石合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20382":{"oreDict":["plateQuadrupleArdite"],"name":"四重阿迪特板","tr":"四重阿迪特板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20383":{"oreDict":["plateQuadrupleReinforced"],"name":"四重强化金属板","tr":"四重强化金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20384":{"oreDict":["plateQuadrupleGalgadorian"],"name":"四重混合晶锭板","tr":"四重混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28576":{"oreDict":["ringTPVAlloy"],"name":"钛铂钒合金环","tr":"钛铂钒合金环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20385":{"oreDict":["plateQuadrupleEnhancedGalgadorian"],"name":"四重强化混合晶锭板","tr":"四重强化混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20386":{"oreDict":["plateQuadrupleManyullyn"],"name":"四重玛玉灵板","tr":"四重玛玉灵板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20387":{"oreDict":["plateQuadrupleMytryl"],"name":"四重深空秘银板","tr":"四重深空秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20388":{"oreDict":["plateQuadrupleBlackPlutonium"],"name":"四重黑钚板","tr":"四重黑钚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20389":{"oreDict":["plateQuadrupleCallistoIce"],"name":"四重木卫四冰板","tr":"四重木卫四冰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28581":{"oreDict":["ringTranscendentMetal"],"name":"超时空金属环","tr":"超时空金属环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20390":{"oreDict":["plateQuadrupleLedox"],"name":"四重深铅板","tr":"四重深铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28582":{"oreDict":["ringEnrichedHolmium"],"name":"富集钬环","tr":"富集钬环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20391":{"oreDict":["plateQuadrupleQuantium"],"name":"四重量子锭板","tr":"四重量子锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28583":{"oreDict":["ringMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质环","tr":"磁流体约束恒星物质环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20392":{"oreDict":["plateQuadrupleDuralumin"],"name":"四重硬铝板","tr":"四重硬铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20393":{"oreDict":["plateQuadrupleOriharukon"],"name":"四重奥利哈钢板","tr":"四重奥利哈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28585":{"oreDict":["ringWhiteDwarfMatter"],"name":"白矮星物质环","tr":"白矮星物质环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20394":{"oreDict":["plateQuadrupleInfinityCatalyst"],"name":"四联无尽催化剂板","tr":"四联无尽催化剂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28586":{"oreDict":["ringBlackDwarfMatter"],"name":"黑矮星物质环","tr":"黑矮星物质环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20395":{"oreDict":["plateQuadrupleBedrockium"],"name":"四联基岩板","tr":"四联基岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28588":{"oreDict":["ringSpaceTime"],"name":"时空环","tr":"时空环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20397":{"oreDict":["plateQuadrupleInfinity"],"name":"四联无尽板","tr":"四联无尽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20398":{"oreDict":["plateQuadrupleMysteriousCrystal"],"name":"四联神秘水晶板","tr":"四联神秘水晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20399":{"oreDict":["plateQuadrupleSamariumMagnetic"],"name":"四联磁化钐板","tr":"四联磁化钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20400":{"oreDict":["plateQuadrupleAlumite"],"name":"四联耐酸铝板","tr":"四联耐酸铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20401":{"oreDict":["plateQuadrupleEndSteel"],"name":"四联末影钢板","tr":"四联末影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20402":{"oreDict":["plateQuadrupleCrudeSteel"],"name":"四联复合粘土板","tr":"四联复合粘土板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20403":{"oreDict":["plateQuadrupleCrystallineAlloy"],"name":"四联晶化合金板","tr":"四联晶化合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20404":{"oreDict":["plateQuadrupleMelodicAlloy"],"name":"四联旋律合金板","tr":"四联旋律合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20405":{"oreDict":["plateQuadrupleStellarAlloy"],"name":"四联恒星合金板","tr":"四联恒星合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20406":{"oreDict":["plateQuadrupleCrystallinePinkSlime"],"name":"四联晶化粉红史莱姆板","tr":"四联晶化粉红史莱姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20407":{"oreDict":["plateQuadrupleEnergeticSilver"],"name":"四联充能银板","tr":"四联充能银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28599":{"oreDict":["ringPolybenzimidazole"],"name":"聚苯并咪唑环","tr":"聚苯并咪唑环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20408":{"oreDict":["plateQuadrupleVividAlloy"],"name":"四联生动合金板","tr":"四联生动合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28610":{"oreDict":["ringEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂环","tr":"纤维强化的环氧树脂环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28611":{"oreDict":["ringBorosilicateGlass"],"name":"硼玻璃环","tr":"硼玻璃环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28613":{"oreDict":["ringNickelZincFerrite"],"name":"镍锌铁氧体环","tr":"镍锌铁氧体环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28631":{"oreDict":["ringPolyphenyleneSulfide"],"name":"聚苯硫醚环","tr":"聚苯硫醚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28635":{"oreDict":["ringAnyRubber"," ringAnySyntheticRubber"," ringStyreneButadieneRubber"],"name":"丁苯橡胶环","tr":"丁苯橡胶环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28636":{"oreDict":["ringPolystyrene"],"name":"聚苯乙烯环","tr":"聚苯乙烯环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28649":{"oreDict":["ringPolyvinylChloride"],"name":"聚氯乙烯环","tr":"聚氯乙烯环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20470":{"oreDict":["plateQuadrupleEpoxid"],"name":"四重环氧树脂片","tr":"四重环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20471":{"oreDict":["plateQuadrupleSilicone"," plateQuadrupleAnyRubber"," plateQuadrupleAnySyntheticRubber"],"name":"四重硅橡胶片","tr":"四重硅橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20472":{"oreDict":["plateQuadruplePolycaprolactam"],"name":"四重聚己内酰胺片","tr":"四重聚己内酰胺片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20473":{"oreDict":["plateQuadruplePolytetrafluoroethylene"],"name":"四重聚四氟乙烯片","tr":"四重聚四氟乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20485":{"oreDict":["plateQuadrupleAlduorite"],"name":"四重神秘蓝金板","tr":"四重神秘蓝金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20488":{"oreDict":["plateQuadrupleRubracium"],"name":"四重褐铜板","tr":"四重褐铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20489":{"oreDict":["plateQuadrupleVulcanite"],"name":"四重胶木板","tr":"四重胶木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20521":{"oreDict":["plateQuadrupleForce"],"name":"四重力量板","tr":"四重力量板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20529":{"oreDict":["plateQuadrupleVinteum"],"name":"四重温特姆板","tr":"四重温特姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28765":{"oreDict":["ringKevlar"],"name":"凯芙拉环","tr":"凯芙拉环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20576":{"oreDict":["plateQuadrupleTPVAlloy"],"name":"四重钛铂钒合金板","tr":"四重钛铂钒合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28770":{"oreDict":["ringHeeEndium"],"name":"终末锭环","tr":"终末锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28772":{"oreDict":["ringNickelAluminide"],"name":"铝化镍环","tr":"铝化镍环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20581":{"oreDict":["plateQuadrupleTranscendentMetal"],"name":"四重超时空金属板","tr":"四重超时空金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20582":{"oreDict":["plateQuadrupleEnrichedHolmium"],"name":"四重富集钬板","tr":"四重富集钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20585":{"oreDict":["plateQuadrupleWhiteDwarfMatter"],"name":"四重白矮星物质板","tr":"四重白矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20586":{"oreDict":["plateQuadrupleBlackDwarfMatter"],"name":"四重黑矮星物质板","tr":"四重黑矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20588":{"oreDict":["plateQuadrupleSpaceTime"],"name":"四重时空板","tr":"四重时空板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20599":{"oreDict":["plateQuadruplePolybenzimidazole"],"name":"四联聚苯并咪唑板","tr":"四联聚苯并咪唑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20610":{"oreDict":["plateQuadrupleEpoxidFiberReinforced"],"name":"四重纤维强化的环氧树脂片","tr":"四重纤维强化的环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28804":{"oreDict":["ringObsidian"],"name":"黑曜石环","tr":"黑曜石环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20613":{"oreDict":["plateQuadrupleNickelZincFerrite"],"name":"四重镍锌铁氧体板","tr":"四重镍锌铁氧体板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28809":{"oreDict":["ringWood"],"name":"木环","tr":"木环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20631":{"oreDict":["plateQuadruplePolyphenyleneSulfide"],"name":"四重聚苯硫醚板","tr":"四重聚苯硫醚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20635":{"oreDict":["plateQuadrupleAnyRubber"," plateQuadrupleAnySyntheticRubber"," plateQuadrupleStyreneButadieneRubber"],"name":"四重丁苯橡胶片","tr":"四重丁苯橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20636":{"oreDict":["plateQuadruplePolystyrene"],"name":"四重聚苯乙烯片","tr":"四重聚苯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28829":{"oreDict":["ringDeepIron"],"name":"深渊铁环","tr":"深渊铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20649":{"oreDict":["plateQuadruplePolyvinylChloride"],"name":"四重聚氯乙烯片","tr":"四重聚氯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28856":{"oreDict":["ringSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)环","tr":"太阳能级硅(多晶硅)环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28868":{"oreDict":["ringTrinium"],"name":"三元金属环","tr":"三元金属环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28874":{"oreDict":["ringPlastic"],"name":"聚乙烯环","tr":"聚乙烯环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28879":{"oreDict":["ringPaper"],"name":"纸环","tr":"纸环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28880":{"oreDict":["ringAnyRubber"," ringRubber"],"name":"橡胶环","tr":"橡胶环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28884":{"oreDict":["ringDesh"],"name":"戴斯环","tr":"戴斯环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28889":{"oreDict":["ringWoodSealed"],"name":"蜡封木环","tr":"蜡封木环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28912":{"oreDict":["ringChrysotile"],"name":"石棉环","tr":"石棉环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28913":{"oreDict":["ringRealgar"],"name":"雄黄环","tr":"雄黄环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28951":{"oreDict":["ringVyroxeres"],"name":"幽冥剧毒结晶环","tr":"幽冥剧毒结晶环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28952":{"oreDict":["ringCeruclase"],"name":"暗影秘银环","tr":"暗影秘银环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28956":{"oreDict":["ringTartarite"],"name":"溶火之石环","tr":"溶火之石环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20765":{"oreDict":["plateQuadrupleKevlar"],"name":"四重凯芙拉板","tr":"四重凯芙拉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20770":{"oreDict":["plateQuadrupleHeeEndium"],"name":"四重终末锭板","tr":"四重终末锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20772":{"oreDict":["plateQuadrupleNickelAluminide"],"name":"四重铝化镍板","tr":"四重铝化镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28966":{"oreDict":["ringOrichalcum"],"name":"山铜环","tr":"山铜环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28970":{"oreDict":["ringVoid"],"name":"虚空锭环","tr":"虚空锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28974":{"oreDict":["ringSuperconductorUEVBase"],"name":"UEV超导粗胚环","tr":"UEV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28975":{"oreDict":["ringDraconium"],"name":"龙锭环","tr":"龙锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28976":{"oreDict":["ringDraconiumAwakened"],"name":"觉醒龙锭环","tr":"觉醒龙锭环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28977":{"oreDict":["ringBloodInfusedIron"],"name":"注血铁环","tr":"注血铁环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28978":{"oreDict":["ringIchorium"],"name":"灵宝环","tr":"灵宝环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28979":{"oreDict":["ringRadoxPoly"],"name":"拉多X聚合物环","tr":"拉多X聚合物环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28980":{"oreDict":["ringGalliumArsenide"],"name":"砷化镓环","tr":"砷化镓环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28981":{"oreDict":["ringIndiumGalliumPhosphide"],"name":"磷化铟镓环","tr":"磷化铟镓环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28982":{"oreDict":["ringCosmicNeutronium"],"name":"宇宙中子态素环","tr":"宇宙中子态素环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28984":{"oreDict":["ringFlerovium_GT5U"],"name":"环","tr":"环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28985":{"oreDict":["ringLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚环","tr":"UHV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28986":{"oreDict":["ringLongasssuperconductornameforuvwire"],"name":"UV超导粗胚环","tr":"UV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28987":{"oreDict":["ringPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚环","tr":"MV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28988":{"oreDict":["ringTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚环","tr":"HV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28989":{"oreDict":["ringUraniumtriplatinid"],"name":"EV超导粗胚环","tr":"EV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28990":{"oreDict":["ringVanadiumtriindinid"],"name":"IV超导粗胚环","tr":"IV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28991":{"oreDict":["ringTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚环","tr":"LuV超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"28992":{"oreDict":["ringTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚环","tr":"ZPM超导粗胚环","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29006":{"oreDict":["foilLithium"],"name":"锂箔","tr":"锂箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29008":{"oreDict":["foilBeryllium"],"name":"铍箔","tr":"铍箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29010":{"oreDict":["foilCarbon"],"name":"碳箔","tr":"碳箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29018":{"oreDict":["foilMagnesium"],"name":"镁箔","tr":"镁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29019":{"oreDict":["foilAluminium"],"name":"铝箔","tr":"铝箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29020":{"oreDict":["foilSilicon"],"name":"硅箔","tr":"硅箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20829":{"oreDict":["plateQuadrupleDeepIron"],"name":"四重深渊铁板","tr":"四重深渊铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29025":{"oreDict":["foilPotassium"],"name":"钾箔","tr":"钾箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29027":{"oreDict":["foilScandium"],"name":"钪箔","tr":"钪箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29028":{"oreDict":["foilTitanium"],"name":"钛箔","tr":"钛箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29029":{"oreDict":["foilVanadium"],"name":"钒箔","tr":"钒箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29030":{"oreDict":["foilChrome"],"name":"铬箔","tr":"铬箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29031":{"oreDict":["foilManganese"],"name":"锰箔","tr":"锰箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29032":{"oreDict":["foilIron"," foilAnyIron"],"name":"铁箔","tr":"铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29033":{"oreDict":["foilCobalt"],"name":"钴箔","tr":"钴箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29034":{"oreDict":["foilNickel"],"name":"镍箔","tr":"镍箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29035":{"oreDict":["foilCopper"," foilAnyCopper"],"name":"铜箔","tr":"铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29036":{"oreDict":["foilZinc"],"name":"锌箔","tr":"锌箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29037":{"oreDict":["foilGallium"],"name":"镓箔","tr":"镓箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29039":{"oreDict":["foilArsenic"],"name":"砷箔","tr":"砷箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29043":{"oreDict":["foilRubidium"],"name":"铷箔","tr":"铷箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29045":{"oreDict":["foilYttrium"],"name":"钇箔","tr":"钇箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29047":{"oreDict":["foilNiobium"],"name":"铌箔","tr":"铌箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20856":{"oreDict":["plateQuadrupleSiliconSolarGrade"],"name":"四重太阳能级硅(多晶硅)板","tr":"四重太阳能级硅(多晶硅)板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29048":{"oreDict":["foilMolybdenum"],"name":"钼箔","tr":"钼箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29052":{"oreDict":["foilPalladium"],"name":"钯箔","tr":"钯箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29054":{"oreDict":["foilSilver"],"name":"银箔","tr":"银箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29056":{"oreDict":["foilIndium"],"name":"铟箔","tr":"铟箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29057":{"oreDict":["foilTin"],"name":"锡箔","tr":"锡箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29058":{"oreDict":["foilAntimony"],"name":"锑箔","tr":"锑箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29059":{"oreDict":["foilTellurium"],"name":"碲箔","tr":"碲箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20868":{"oreDict":["plateQuadrupleTrinium"],"name":"四重三元金属板","tr":"四重三元金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29062":{"oreDict":["foilCaesium"],"name":"铯箔","tr":"铯箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29063":{"oreDict":["foilBarium"],"name":"钡箔","tr":"钡箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29064":{"oreDict":["foilLanthanum"],"name":"镧箔","tr":"镧箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29065":{"oreDict":["foilCerium"],"name":"铈箔","tr":"铈箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20874":{"oreDict":["plateQuadruplePlastic"],"name":"四重聚乙烯片","tr":"四重聚乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29066":{"oreDict":["foilPraseodymium"],"name":"镨箔","tr":"镨箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29067":{"oreDict":["foilNeodymium"],"name":"钕箔","tr":"钕箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29068":{"oreDict":["foilPromethium"],"name":"钷箔","tr":"钷箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29069":{"oreDict":["foilSamarium"],"name":"钐箔","tr":"钐箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29070":{"oreDict":["foilEuropium"],"name":"铕箔","tr":"铕箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20879":{"oreDict":["plateQuadruplePaper"],"name":"卡纸","tr":"卡纸","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29071":{"oreDict":["foilGadolinium"],"name":"钆箔","tr":"钆箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20880":{"oreDict":["plateQuadrupleRubber"," plateQuadrupleAnyRubber"],"name":"四重橡胶片","tr":"四重橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29072":{"oreDict":["foilTerbium"],"name":"铽箔","tr":"铽箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29073":{"oreDict":["foilDysprosium"],"name":"镝箔","tr":"镝箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29074":{"oreDict":["foilHolmium"],"name":"钬箔","tr":"钬箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29075":{"oreDict":["foilErbium"],"name":"铒箔","tr":"铒箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20884":{"oreDict":["plateQuadrupleDesh"],"name":"四重戴斯板","tr":"四重戴斯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29076":{"oreDict":["foilThulium"],"name":"铥箔","tr":"铥箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29077":{"oreDict":["foilYtterbium"],"name":"镱箔","tr":"镱箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29078":{"oreDict":["foilLutetium"],"name":"镥箔","tr":"镥箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29080":{"oreDict":["foilTantalum"],"name":"钽箔","tr":"钽箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29081":{"oreDict":["foilTungsten"],"name":"钨箔","tr":"钨箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29083":{"oreDict":["foilOsmium"],"name":"锇箔","tr":"锇箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29084":{"oreDict":["foilIridium"],"name":"铱箔","tr":"铱箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29085":{"oreDict":["foilPlatinum"],"name":"铂箔","tr":"铂箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29086":{"oreDict":["foilGold"],"name":"金箔","tr":"金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29089":{"oreDict":["foilLead"],"name":"铅箔","tr":"铅箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29090":{"oreDict":["foilBismuth"],"name":"铋箔","tr":"铋箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29096":{"oreDict":["foilThorium"],"name":"钍箔","tr":"钍箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29097":{"oreDict":["foilUranium235"],"name":"铀-235箔","tr":"铀-235箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29098":{"oreDict":["foilUranium"],"name":"铀-238箔","tr":"铀-238箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29100":{"oreDict":["foilPlutonium"],"name":"钚-239箔","tr":"钚-239箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29101":{"oreDict":["foilPlutonium241"],"name":"钚-241箔","tr":"钚-241箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29103":{"oreDict":["foilAmericium"],"name":"镅箔","tr":"镅箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20912":{"oreDict":["plateQuadrupleChrysotile"],"name":"四重石棉板","tr":"四重石棉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20913":{"oreDict":["plateQuadrupleRealgar"],"name":"四重雄黄板","tr":"四重雄黄板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29111":{"oreDict":["foilTengamPurified"],"name":"纯镃箔","tr":"纯镃箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29112":{"oreDict":["foilTengamAttuned"],"name":"谐镃箔","tr":"谐镃箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29129":{"oreDict":["foilNeutronium"],"name":"中子箔","tr":"中子箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29131":{"oreDict":["foilSuperconductorUIVBase"],"name":"UIV超导粗胚箔","tr":"UIV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29134":{"oreDict":["foilSuperconductorUMVBase"],"name":"UMV超导粗胚箔","tr":"UMV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29139":{"oreDict":["foilUniversium"],"name":"宇宙素箔","tr":"宇宙素箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29141":{"oreDict":["foilEternity"],"name":"永恒箔","tr":"永恒箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20951":{"oreDict":["plateQuadrupleVyroxeres"],"name":"四重幽冥剧毒结晶板","tr":"四重幽冥剧毒结晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29143":{"oreDict":["foilMagmatter"],"name":"磁物质箔","tr":"磁物质箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20952":{"oreDict":["plateQuadrupleCeruclase"],"name":"四重暗影秘银板","tr":"四重暗影秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20956":{"oreDict":["plateQuadrupleTartarite"],"name":"四重溶火之石板","tr":"四重溶火之石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20966":{"oreDict":["plateQuadrupleOrichalcum"],"name":"四重山铜板","tr":"四重山铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20970":{"oreDict":["plateQuadrupleVoid"],"name":"四重虚空锭板","tr":"四重虚空锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20974":{"oreDict":["plateQuadrupleSuperconductorUEVBase"],"name":"四联UEV超导粗胚板","tr":"四联UEV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20975":{"oreDict":["plateQuadrupleDraconium"],"name":"四重龙锭板","tr":"四重龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20976":{"oreDict":["plateQuadrupleDraconiumAwakened"],"name":"四重觉醒龙锭板","tr":"四重觉醒龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20977":{"oreDict":["plateQuadrupleBloodInfusedIron"],"name":"四重注血铁板","tr":"四重注血铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20978":{"oreDict":["plateQuadrupleIchorium"],"name":"四联灵宝板","tr":"四联灵宝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20979":{"oreDict":["plateQuadrupleRadoxPoly"],"name":"四联拉多X聚合物板","tr":"四联拉多X聚合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20980":{"oreDict":["plateQuadrupleGalliumArsenide"],"name":"四重砷化镓板","tr":"四重砷化镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20981":{"oreDict":["plateQuadrupleIndiumGalliumPhosphide"],"name":"四重磷化铟镓板","tr":"四重磷化铟镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20982":{"oreDict":["plateQuadrupleCosmicNeutronium"],"name":"四联宇宙中子态素板","tr":"四联宇宙中子态素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20984":{"oreDict":["plateQuadrupleFlerovium_GT5U"],"name":"四联板","tr":"四联板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20985":{"oreDict":["plateQuadrupleLongasssuperconductornameforuhvwire"],"name":"四联UHV超导粗胚板","tr":"四联UHV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20986":{"oreDict":["plateQuadrupleLongasssuperconductornameforuvwire"],"name":"四联UV超导粗胚板","tr":"四联UV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20987":{"oreDict":["plateQuadruplePentacadmiummagnesiumhexaoxid"],"name":"四联MV超导粗胚板","tr":"四联MV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20988":{"oreDict":["plateQuadrupleTitaniumonabariumdecacoppereikosaoxid"],"name":"四联HV超导粗胚板","tr":"四联HV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20989":{"oreDict":["plateQuadrupleUraniumtriplatinid"],"name":"四联EV超导粗胚板","tr":"四联EV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20990":{"oreDict":["plateQuadrupleVanadiumtriindinid"],"name":"四联IV超导粗胚板","tr":"四联IV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20991":{"oreDict":["plateQuadrupleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"四联LuV超导粗胚板","tr":"四联LuV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"20992":{"oreDict":["plateQuadrupleTetranaquadahdiindiumhexaplatiumosminid"],"name":"四联ZPM超导粗胚板","tr":"四联ZPM超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21006":{"oreDict":["plateQuintupleLithium"],"name":"五重锂板","tr":"五重锂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21008":{"oreDict":["plateQuintupleBeryllium"],"name":"五重铍板","tr":"五重铍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29201":{"oreDict":["foilManasteel"],"name":"魔钢箔","tr":"魔钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21010":{"oreDict":["plateQuintupleCarbon"],"name":"五重碳板","tr":"五重碳板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29202":{"oreDict":["foilTerrasteel"],"name":"泰拉钢箔","tr":"泰拉钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29203":{"oreDict":["foilElvenElementium"],"name":"源质钢箔","tr":"源质钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29205":{"oreDict":["foilGaiaSpirit"],"name":"盖亚之魂箔","tr":"盖亚之魂箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29206":{"oreDict":["foilLivingwood"],"name":"活木箔","tr":"活木箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29207":{"oreDict":["foilDreamwood"],"name":"梦之木箔","tr":"梦之木箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21018":{"oreDict":["plateQuintupleMagnesium"],"name":"五重镁板","tr":"五重镁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21019":{"oreDict":["plateQuintupleAluminium"],"name":"五重铝板","tr":"五重铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21020":{"oreDict":["plateQuintupleSilicon"],"name":"五重硅板","tr":"五重硅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21025":{"oreDict":["plateQuintuplePotassium"],"name":"五重钾板","tr":"五重钾板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21027":{"oreDict":["plateQuintupleScandium"],"name":"五重钪板","tr":"五重钪板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21028":{"oreDict":["plateQuintupleTitanium"],"name":"五重钛板","tr":"五重钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21029":{"oreDict":["plateQuintupleVanadium"],"name":"五重钒板","tr":"五重钒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21030":{"oreDict":["plateQuintupleChrome"],"name":"五重铬板","tr":"五重铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21031":{"oreDict":["plateQuintupleManganese"],"name":"五重锰板","tr":"五重锰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21032":{"oreDict":["plateQuintupleIron"," plateQuintupleAnyIron"],"name":"五重铁板","tr":"五重铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21033":{"oreDict":["plateQuintupleCobalt"],"name":"五重钴板","tr":"五重钴板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21034":{"oreDict":["plateQuintupleNickel"],"name":"五重镍板","tr":"五重镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21035":{"oreDict":["plateQuintupleCopper"," plateQuintupleAnyCopper"],"name":"五重铜板","tr":"五重铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21036":{"oreDict":["plateQuintupleZinc"],"name":"五重锌板","tr":"五重锌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21037":{"oreDict":["plateQuintupleGallium"],"name":"五重镓板","tr":"五重镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21039":{"oreDict":["plateQuintupleArsenic"],"name":"五重砷板","tr":"五重砷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21043":{"oreDict":["plateQuintupleRubidium"],"name":"五重铷板","tr":"五重铷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21045":{"oreDict":["plateQuintupleYttrium"],"name":"五重钇板","tr":"五重钇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21047":{"oreDict":["plateQuintupleNiobium"],"name":"五重铌板","tr":"五重铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21048":{"oreDict":["plateQuintupleMolybdenum"],"name":"五重钼板","tr":"五重钼板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21052":{"oreDict":["plateQuintuplePalladium"],"name":"五重钯板","tr":"五重钯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21054":{"oreDict":["plateQuintupleSilver"],"name":"五重银板","tr":"五重银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21056":{"oreDict":["plateQuintupleIndium"],"name":"五重铟板","tr":"五重铟板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21057":{"oreDict":["plateQuintupleTin"],"name":"五重锡板","tr":"五重锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21058":{"oreDict":["plateQuintupleAntimony"],"name":"五重锑板","tr":"五重锑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21059":{"oreDict":["plateQuintupleTellurium"],"name":"五重碲板","tr":"五重碲板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21062":{"oreDict":["plateQuintupleCaesium"],"name":"五重铯板","tr":"五重铯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21063":{"oreDict":["plateQuintupleBarium"],"name":"五重钡板","tr":"五重钡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21064":{"oreDict":["plateQuintupleLanthanum"],"name":"五重镧板","tr":"五重镧板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21065":{"oreDict":["plateQuintupleCerium"],"name":"五重铈板","tr":"五重铈板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21066":{"oreDict":["plateQuintuplePraseodymium"],"name":"五重镨板","tr":"五重镨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21067":{"oreDict":["plateQuintupleNeodymium"],"name":"五重钕板","tr":"五重钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21068":{"oreDict":["plateQuintuplePromethium"],"name":"五重钷板","tr":"五重钷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21069":{"oreDict":["plateQuintupleSamarium"],"name":"五重钐板","tr":"五重钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21070":{"oreDict":["plateQuintupleEuropium"],"name":"五重铕板","tr":"五重铕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21071":{"oreDict":["plateQuintupleGadolinium"],"name":"五重钆板","tr":"五重钆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21072":{"oreDict":["plateQuintupleTerbium"],"name":"五重铽板","tr":"五重铽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21073":{"oreDict":["plateQuintupleDysprosium"],"name":"五重镝板","tr":"五重镝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21074":{"oreDict":["plateQuintupleHolmium"],"name":"五重钬板","tr":"五重钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21075":{"oreDict":["plateQuintupleErbium"],"name":"五重铒板","tr":"五重铒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21076":{"oreDict":["plateQuintupleThulium"],"name":"五重铥板","tr":"五重铥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21077":{"oreDict":["plateQuintupleYtterbium"],"name":"五重镱板","tr":"五重镱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21078":{"oreDict":["plateQuintupleLutetium"],"name":"五重镥板","tr":"五重镥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21080":{"oreDict":["plateQuintupleTantalum"],"name":"五重钽板","tr":"五重钽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21081":{"oreDict":["plateQuintupleTungsten"],"name":"五重钨板","tr":"五重钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21083":{"oreDict":["plateQuintupleOsmium"],"name":"五重锇板","tr":"五重锇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21084":{"oreDict":["plateQuintupleIridium"],"name":"五重铱板","tr":"五重铱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21085":{"oreDict":["plateQuintuplePlatinum"],"name":"五重铂板","tr":"五重铂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21086":{"oreDict":["plateQuintupleGold"],"name":"五重金板","tr":"五重金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21089":{"oreDict":["plateQuintupleLead"],"name":"五重铅板","tr":"五重铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21090":{"oreDict":["plateQuintupleBismuth"],"name":"五重铋板","tr":"五重铋板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21096":{"oreDict":["plateQuintupleThorium"],"name":"五重钍板","tr":"五重钍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21097":{"oreDict":["plateQuintupleUranium235"],"name":"五重铀-235板","tr":"五重铀-235板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21098":{"oreDict":["plateQuintupleUranium"],"name":"五重铀-238板","tr":"五重铀-238板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21100":{"oreDict":["plateQuintuplePlutonium"],"name":"五重钚-239板","tr":"五重钚-239板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21101":{"oreDict":["plateQuintuplePlutonium241"],"name":"五重钚-241板","tr":"五重钚-241板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21103":{"oreDict":["plateQuintupleAmericium"],"name":"五重镅板","tr":"五重镅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29300":{"oreDict":["foilBronze"," foilAnyBronze"],"name":"青铜箔","tr":"青铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29301":{"oreDict":["foilBrass"],"name":"黄铜箔","tr":"黄铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29302":{"oreDict":["foilInvar"],"name":"殷钢箔","tr":"殷钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21111":{"oreDict":["plateQuintupleTengamPurified"],"name":"五重纯镃板","tr":"五重纯镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29303":{"oreDict":["foilElectrum"],"name":"琥珀金箔","tr":"琥珀金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21112":{"oreDict":["plateQuintupleTengamAttuned"],"name":"五重谐镃板","tr":"五重谐镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29304":{"oreDict":["foilAnyIron"," foilWroughtIron"],"name":"锻铁箔","tr":"锻铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29305":{"oreDict":["foilSteel"],"name":"钢箔","tr":"钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29306":{"oreDict":["foilStainlessSteel"],"name":"不锈钢箔","tr":"不锈钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29307":{"oreDict":["foilPigIron"," foilAnyIron"],"name":"生铁箔","tr":"生铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29308":{"oreDict":["foilRedAlloy"],"name":"红色合金箔","tr":"红色合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29309":{"oreDict":["foilBlueAlloy"],"name":"蓝色合金箔","tr":"蓝色合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29310":{"oreDict":["foilCupronickel"],"name":"白铜箔","tr":"白铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29311":{"oreDict":["foilNichrome"],"name":"镍铬合金箔","tr":"镍铬合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29312":{"oreDict":["foilKanthal"],"name":"坎塔尔合金箔","tr":"坎塔尔合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29313":{"oreDict":["foilMagnalium"],"name":"镁铝合金箔","tr":"镁铝合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29314":{"oreDict":["foilSolderingAlloy"],"name":"焊锡箔","tr":"焊锡箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29315":{"oreDict":["foilBatteryAlloy"],"name":"电池合金箔","tr":"电池合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29316":{"oreDict":["foilTungstenSteel"],"name":"钨钢箔","tr":"钨钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29317":{"oreDict":["foilOsmiridium"],"name":"铱锇合金箔","tr":"铱锇合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29318":{"oreDict":["foilSunnarium"],"name":"阳光化合物箔","tr":"阳光化合物箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29319":{"oreDict":["foilAdamantium"],"name":"精金箔","tr":"精金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29320":{"oreDict":["foilElectrumFlux"],"name":"通流琥珀金箔","tr":"通流琥珀金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21129":{"oreDict":["plateQuintupleNeutronium"],"name":"五重中子板","tr":"五重中子板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29321":{"oreDict":["foilEnderium"],"name":"末影锭箔","tr":"末影锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21131":{"oreDict":["plateQuintupleSuperconductorUIVBase"],"name":"五重UIV超导粗胚板","tr":"五重UIV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29323":{"oreDict":["foilInfusedGold"],"name":"注魔金箔","tr":"注魔金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29324":{"oreDict":["foilNaquadah"],"name":"硅岩箔","tr":"硅岩箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29325":{"oreDict":["foilNaquadahAlloy"],"name":"硅岩合金箔","tr":"硅岩合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21134":{"oreDict":["plateQuintupleSuperconductorUMVBase"],"name":"五重UMV超导粗胚板","tr":"五重UMV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29326":{"oreDict":["foilNaquadahEnriched"],"name":"富集硅岩箔","tr":"富集硅岩箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29327":{"oreDict":["foilNaquadria"],"name":"超能硅岩箔","tr":"超能硅岩箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29328":{"oreDict":["foilDuranium"],"name":"铿铀箔","tr":"铿铀箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29329":{"oreDict":["foilTritanium"],"name":"三钛箔","tr":"三钛箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29330":{"oreDict":["foilThaumium"],"name":"神秘锭箔","tr":"神秘锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21139":{"oreDict":["plateQuintupleUniversium"],"name":"五重宇宙素板","tr":"五重宇宙素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29331":{"oreDict":["foilMithril"],"name":"秘银箔","tr":"秘银箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21141":{"oreDict":["plateQuintupleEternity"],"name":"五重永恒板","tr":"五重永恒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29333":{"oreDict":["foilAstralSilver"],"name":"星辰银箔","tr":"星辰银箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29334":{"oreDict":["foilBlackSteel"],"name":"黑钢箔","tr":"黑钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21143":{"oreDict":["plateQuintupleMagmatter"],"name":"五重磁物质板","tr":"五重磁物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29335":{"oreDict":["foilDamascusSteel"],"name":"大马士革钢箔","tr":"大马士革钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29336":{"oreDict":["foilShadowIron"],"name":"暗影铁箔","tr":"暗影铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29337":{"oreDict":["foilShadowSteel"],"name":"暗影钢箔","tr":"暗影钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29338":{"oreDict":["foilIronWood"],"name":"铁木箔","tr":"铁木箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29339":{"oreDict":["foilSteeleaf"],"name":"钢叶箔","tr":"钢叶箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29340":{"oreDict":["foilMeteoricIron"],"name":"陨铁箔","tr":"陨铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29341":{"oreDict":["foilMeteoricSteel"],"name":"陨钢箔","tr":"陨钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29342":{"oreDict":["foilDarkIron"],"name":"玄铁箔","tr":"玄铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29343":{"oreDict":["foilCobaltBrass"],"name":"钴黄铜箔","tr":"钴黄铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29344":{"oreDict":["foilUltimet"],"name":"哈氏合金箔","tr":"哈氏合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29345":{"oreDict":["foilAnnealedCopper"," foilAnyCopper"],"name":"退火铜箔","tr":"退火铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29346":{"oreDict":["foilFierySteel"],"name":"炽热钢箔","tr":"炽热钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29348":{"oreDict":["foilRedSteel"],"name":"红钢箔","tr":"红钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29349":{"oreDict":["foilBlueSteel"],"name":"蓝钢箔","tr":"蓝钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29350":{"oreDict":["foilSterlingSilver"],"name":"标准纯银箔","tr":"标准纯银箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29351":{"oreDict":["foilRoseGold"],"name":"玫瑰金箔","tr":"玫瑰金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29352":{"oreDict":["foilBlackBronze"],"name":"黑青铜箔","tr":"黑青铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29353":{"oreDict":["foilBismuthBronze"],"name":"铋青铜箔","tr":"铋青铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29354":{"oreDict":["foilIronMagnetic"],"name":"磁化铁箔","tr":"磁化铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29355":{"oreDict":["foilSteelMagnetic"],"name":"磁化钢箔","tr":"磁化钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29356":{"oreDict":["foilNeodymiumMagnetic"],"name":"磁化钕箔","tr":"磁化钕箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29357":{"oreDict":["foilVanadiumGallium"],"name":"钒镓合金箔","tr":"钒镓合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29358":{"oreDict":["foilYttriumBariumCuprate"],"name":"钇钡铜氧合金箔","tr":"钇钡铜氧合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29359":{"oreDict":["foilNiobiumNitride"],"name":"氮化铌箔","tr":"氮化铌箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29360":{"oreDict":["foilNiobiumTitanium"],"name":"铌钛合金箔","tr":"铌钛合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29361":{"oreDict":["foilChromiumDioxide"],"name":"二氧化铬箔","tr":"二氧化铬箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29362":{"oreDict":["foilKnightmetal"],"name":"骑士金属箔","tr":"骑士金属箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29363":{"oreDict":["foilTinAlloy"],"name":"锡铁合金箔","tr":"锡铁合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29364":{"oreDict":["foilDarkSteel"],"name":"玄钢箔","tr":"玄钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29365":{"oreDict":["foilElectricalSteel"],"name":"磁钢箔","tr":"磁钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29366":{"oreDict":["foilEnergeticAlloy"],"name":"充能合金箔","tr":"充能合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29367":{"oreDict":["foilVibrantAlloy"],"name":"脉冲合金箔","tr":"脉冲合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29368":{"oreDict":["foilShadow"],"name":"暗影箔","tr":"暗影箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29369":{"oreDict":["foilConductiveIron"],"name":"导电铁箔","tr":"导电铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29370":{"oreDict":["foilTungstenCarbide"],"name":"碳化钨箔","tr":"碳化钨箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29371":{"oreDict":["foilVanadiumSteel"],"name":"钒钢箔","tr":"钒钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29372":{"oreDict":["foilHSSG"],"name":"高速钢-G箔","tr":"高速钢-G箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29373":{"oreDict":["foilHSSE"],"name":"高速钢-E箔","tr":"高速钢-E箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29374":{"oreDict":["foilHSSS"],"name":"高速钢-S箔","tr":"高速钢-S箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29378":{"oreDict":["foilPulsatingIron"],"name":"脉冲铁箔","tr":"脉冲铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29379":{"oreDict":["foilSoularium"],"name":"魂金箔","tr":"魂金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29380":{"oreDict":["foilEnderiumBase"],"name":"末影粗胚箔","tr":"末影粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29381":{"oreDict":["foilRedstoneAlloy"],"name":"红石合金箔","tr":"红石合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29382":{"oreDict":["foilArdite"],"name":"阿迪特箔","tr":"阿迪特箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29383":{"oreDict":["foilReinforced"],"name":"强化金属箔","tr":"强化金属箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29384":{"oreDict":["foilGalgadorian"],"name":"混合晶锭箔","tr":"混合晶锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29385":{"oreDict":["foilEnhancedGalgadorian"],"name":"强化混合晶锭箔","tr":"强化混合晶锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29386":{"oreDict":["foilManyullyn"],"name":"玛玉灵箔","tr":"玛玉灵箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29387":{"oreDict":["foilMytryl"],"name":"深空秘银箔","tr":"深空秘银箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29388":{"oreDict":["foilBlackPlutonium"],"name":"黑钚箔","tr":"黑钚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29389":{"oreDict":["foilCallistoIce"],"name":"木卫四冰箔","tr":"木卫四冰箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13006":{"oreDict":["ingotDoubleLithium"],"name":"双重锂锭","tr":"双重锂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29390":{"oreDict":["foilLedox"],"name":"深铅箔","tr":"深铅箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29391":{"oreDict":["foilQuantium"],"name":"量子锭箔","tr":"量子锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13008":{"oreDict":["ingotDoubleBeryllium"],"name":"双重铍锭","tr":"双重铍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29392":{"oreDict":["foilDuralumin"],"name":"硬铝箔","tr":"硬铝箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21201":{"oreDict":["plateQuintupleManasteel"],"name":"五重魔钢板","tr":"五重魔钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29393":{"oreDict":["foilOriharukon"],"name":"奥利哈钢箔","tr":"奥利哈钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13010":{"oreDict":["ingotDoubleCarbon"],"name":"双重碳锭","tr":"双重碳锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21202":{"oreDict":["plateQuintupleTerrasteel"],"name":"五重泰拉钢板","tr":"五重泰拉钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29394":{"oreDict":["foilInfinityCatalyst"],"name":"无尽催化剂箔","tr":"无尽催化剂箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21203":{"oreDict":["plateQuintupleElvenElementium"],"name":"五重源质钢板","tr":"五重源质钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29395":{"oreDict":["foilBedrockium"],"name":"基岩箔","tr":"基岩箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21205":{"oreDict":["plateQuintupleGaiaSpirit"],"name":"五重盖亚之魂板","tr":"五重盖亚之魂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29397":{"oreDict":["foilInfinity"],"name":"无尽箔","tr":"无尽箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29398":{"oreDict":["foilMysteriousCrystal"],"name":"神秘水晶箔","tr":"神秘水晶箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29399":{"oreDict":["foilSamariumMagnetic"],"name":"磁化钐箔","tr":"磁化钐箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29400":{"oreDict":["foilAlumite"],"name":"耐酸铝箔","tr":"耐酸铝箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29401":{"oreDict":["foilEndSteel"],"name":"末影钢箔","tr":"末影钢箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13018":{"oreDict":["ingotDoubleMagnesium"],"name":"双重镁锭","tr":"双重镁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29402":{"oreDict":["foilCrudeSteel"],"name":"复合粘土箔","tr":"复合粘土箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13019":{"oreDict":["ingotDoubleAluminium"],"name":"双重铝锭","tr":"双重铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29403":{"oreDict":["foilCrystallineAlloy"],"name":"晶化合金箔","tr":"晶化合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13020":{"oreDict":["ingotDoubleSilicon"],"name":"双重硅锭","tr":"双重硅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29404":{"oreDict":["foilMelodicAlloy"],"name":"旋律合金箔","tr":"旋律合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29405":{"oreDict":["foilStellarAlloy"],"name":"恒星合金箔","tr":"恒星合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29406":{"oreDict":["foilCrystallinePinkSlime"],"name":"晶化粉红史莱姆箔","tr":"晶化粉红史莱姆箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29407":{"oreDict":["foilEnergeticSilver"],"name":"充能银箔","tr":"充能银箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29408":{"oreDict":["foilVividAlloy"],"name":"生动合金箔","tr":"生动合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13025":{"oreDict":["ingotDoublePotassium"],"name":"双重钾锭","tr":"双重钾锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13027":{"oreDict":["ingotDoubleScandium"],"name":"双重钪锭","tr":"双重钪锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13028":{"oreDict":["ingotDoubleTitanium"],"name":"双重钛锭","tr":"双重钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13029":{"oreDict":["ingotDoubleVanadium"],"name":"双重钒锭","tr":"双重钒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13030":{"oreDict":["ingotDoubleChrome"],"name":"双重铬锭","tr":"双重铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13031":{"oreDict":["ingotDoubleManganese"],"name":"双重锰锭","tr":"双重锰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13032":{"oreDict":["ingotDoubleIron"," ingotDoubleAnyIron"],"name":"双重铁锭","tr":"双重铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13033":{"oreDict":["ingotDoubleCobalt"],"name":"双重钴锭","tr":"双重钴锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13034":{"oreDict":["ingotDoubleNickel"],"name":"双重镍锭","tr":"双重镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13035":{"oreDict":["ingotDoubleCopper"," ingotDoubleAnyCopper"],"name":"双重铜锭","tr":"双重铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13036":{"oreDict":["ingotDoubleZinc"],"name":"双重锌锭","tr":"双重锌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13037":{"oreDict":["ingotDoubleGallium"],"name":"双重镓锭","tr":"双重镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13039":{"oreDict":["ingotDoubleArsenic"],"name":"双重砷锭","tr":"双重砷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13043":{"oreDict":["ingotDoubleRubidium"],"name":"双重铷锭","tr":"双重铷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13045":{"oreDict":["ingotDoubleYttrium"],"name":"双重钇锭","tr":"双重钇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13047":{"oreDict":["ingotDoubleNiobium"],"name":"双重铌锭","tr":"双重铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13048":{"oreDict":["ingotDoubleMolybdenum"],"name":"双重钼锭","tr":"双重钼锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13052":{"oreDict":["ingotDoublePalladium"],"name":"双重钯锭","tr":"双重钯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13054":{"oreDict":["ingotDoubleSilver"],"name":"双重银锭","tr":"双重银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13056":{"oreDict":["ingotDoubleIndium"],"name":"双重铟锭","tr":"双重铟锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13057":{"oreDict":["ingotDoubleTin"],"name":"双重锡锭","tr":"双重锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13058":{"oreDict":["ingotDoubleAntimony"],"name":"双重锑锭","tr":"双重锑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13059":{"oreDict":["ingotDoubleTellurium"],"name":"双重碲锭","tr":"双重碲锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13062":{"oreDict":["ingotDoubleCaesium"],"name":"双重铯锭","tr":"双重铯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13063":{"oreDict":["ingotDoubleBarium"],"name":"双重钡锭","tr":"双重钡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13064":{"oreDict":["ingotDoubleLanthanum"],"name":"双重镧锭","tr":"双重镧锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13065":{"oreDict":["ingotDoubleCerium"],"name":"双重铈锭","tr":"双重铈锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13066":{"oreDict":["ingotDoublePraseodymium"],"name":"双重镨锭","tr":"双重镨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13067":{"oreDict":["ingotDoubleNeodymium"],"name":"双重钕锭","tr":"双重钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13068":{"oreDict":["ingotDoublePromethium"],"name":"双重钷锭","tr":"双重钷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13069":{"oreDict":["ingotDoubleSamarium"],"name":"双重钐锭","tr":"双重钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13070":{"oreDict":["ingotDoubleEuropium"],"name":"双重铕锭","tr":"双重铕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13071":{"oreDict":["ingotDoubleGadolinium"],"name":"双重钆锭","tr":"双重钆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13072":{"oreDict":["ingotDoubleTerbium"],"name":"双重铽锭","tr":"双重铽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13073":{"oreDict":["ingotDoubleDysprosium"],"name":"双重镝锭","tr":"双重镝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13074":{"oreDict":["ingotDoubleHolmium"],"name":"双重钬锭","tr":"双重钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13075":{"oreDict":["ingotDoubleErbium"],"name":"双重铒锭","tr":"双重铒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13076":{"oreDict":["ingotDoubleThulium"],"name":"双重铥锭","tr":"双重铥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13077":{"oreDict":["ingotDoubleYtterbium"],"name":"双重镱锭","tr":"双重镱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13078":{"oreDict":["ingotDoubleLutetium"],"name":"双重镥锭","tr":"双重镥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13080":{"oreDict":["ingotDoubleTantalum"],"name":"双重钽锭","tr":"双重钽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13081":{"oreDict":["ingotDoubleTungsten"],"name":"双重钨锭","tr":"双重钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13083":{"oreDict":["ingotDoubleOsmium"],"name":"双重锇锭","tr":"双重锇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13084":{"oreDict":["ingotDoubleIridium"],"name":"双重铱锭","tr":"双重铱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13085":{"oreDict":["ingotDoublePlatinum"],"name":"双重铂锭","tr":"双重铂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13086":{"oreDict":["ingotDoubleGold"],"name":"双重金锭","tr":"双重金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29470":{"oreDict":["foilEpoxid"],"name":"薄环氧树脂片","tr":"薄环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29471":{"oreDict":["foilSilicone"," foilAnyRubber"," foilAnySyntheticRubber"],"name":"薄硅橡胶片","tr":"薄硅橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29472":{"oreDict":["foilPolycaprolactam"],"name":"薄聚己内酰胺片","tr":"薄聚己内酰胺片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13089":{"oreDict":["ingotDoubleLead"],"name":"双重铅锭","tr":"双重铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29473":{"oreDict":["foilPolytetrafluoroethylene"],"name":"薄聚四氟乙烯片","tr":"薄聚四氟乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13090":{"oreDict":["ingotDoubleBismuth"],"name":"双重铋锭","tr":"双重铋锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13096":{"oreDict":["ingotDoubleThorium"],"name":"双重钍锭","tr":"双重钍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13097":{"oreDict":["ingotDoubleUranium235"],"name":"双重铀-235锭","tr":"双重铀-235锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13098":{"oreDict":["ingotDoubleUranium"],"name":"双重铀-238锭","tr":"双重铀-238锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13100":{"oreDict":["ingotDoublePlutonium"],"name":"双重钚-239锭","tr":"双重钚-239锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13101":{"oreDict":["ingotDoublePlutonium241"],"name":"双重钚-241锭","tr":"双重钚-241锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29485":{"oreDict":["foilAlduorite"],"name":"神秘蓝金箔","tr":"神秘蓝金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13103":{"oreDict":["ingotDoubleAmericium"],"name":"双重镅锭","tr":"双重镅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29488":{"oreDict":["foilRubracium"],"name":"褐铜箔","tr":"褐铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29489":{"oreDict":["foilVulcanite"],"name":"胶木箔","tr":"胶木箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21300":{"oreDict":["plateQuintupleBronze"," plateQuintupleAnyBronze"],"name":"五重青铜板","tr":"五重青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21301":{"oreDict":["plateQuintupleBrass"],"name":"五重黄铜板","tr":"五重黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21302":{"oreDict":["plateQuintupleInvar"],"name":"五重殷钢板","tr":"五重殷钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13111":{"oreDict":["ingotDoubleTengamPurified"],"name":"双重纯镃锭","tr":"双重纯镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21303":{"oreDict":["plateQuintupleElectrum"],"name":"五重琥珀金板","tr":"五重琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13112":{"oreDict":["ingotDoubleTengamAttuned"],"name":"双重谐镃锭","tr":"双重谐镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21304":{"oreDict":["plateQuintupleAnyIron"," plateQuintupleWroughtIron"],"name":"五重锻铁板","tr":"五重锻铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21305":{"oreDict":["plateQuintupleSteel"],"name":"五重钢板","tr":"五重钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21306":{"oreDict":["plateQuintupleStainlessSteel"],"name":"五重不锈钢板","tr":"五重不锈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21307":{"oreDict":["plateQuintuplePigIron"," plateQuintupleAnyIron"],"name":"五重生铁板","tr":"五重生铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21308":{"oreDict":["plateQuintupleRedAlloy"],"name":"五重红色合金板","tr":"五重红色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21309":{"oreDict":["plateQuintupleBlueAlloy"],"name":"五重蓝色合金板","tr":"五重蓝色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21310":{"oreDict":["plateQuintupleCupronickel"],"name":"五重白铜板","tr":"五重白铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21311":{"oreDict":["plateQuintupleNichrome"],"name":"五重镍铬板","tr":"五重镍铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21312":{"oreDict":["plateQuintupleKanthal"],"name":"五重坎塔尔合金板","tr":"五重坎塔尔合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21313":{"oreDict":["plateQuintupleMagnalium"],"name":"五重镁铝合金板","tr":"五重镁铝合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21314":{"oreDict":["plateQuintupleSolderingAlloy"],"name":"五重焊锡板","tr":"五重焊锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21315":{"oreDict":["plateQuintupleBatteryAlloy"],"name":"五重电池合金板","tr":"五重电池合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21316":{"oreDict":["plateQuintupleTungstenSteel"],"name":"五重钨钢板","tr":"五重钨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21317":{"oreDict":["plateQuintupleOsmiridium"],"name":"五重铱锇合金板","tr":"五重铱锇合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21318":{"oreDict":["plateQuintupleSunnarium"],"name":"五重阳光化合物板","tr":"五重阳光化合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21319":{"oreDict":["plateQuintupleAdamantium"],"name":"五重精金板","tr":"五重精金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21320":{"oreDict":["plateQuintupleElectrumFlux"],"name":"五重通流琥珀金板","tr":"五重通流琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13129":{"oreDict":["ingotDoubleNeutronium"],"name":"双重中子锭","tr":"双重中子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21321":{"oreDict":["plateQuintupleEnderium"],"name":"五重末影锭板","tr":"五重末影锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13131":{"oreDict":["ingotDoubleSuperconductorUIVBase"],"name":"双重UIV超导粗胚锭","tr":"双重UIV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21323":{"oreDict":["plateQuintupleInfusedGold"],"name":"五重注魔金板","tr":"五重注魔金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21324":{"oreDict":["plateQuintupleNaquadah"],"name":"五重硅岩板","tr":"五重硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21325":{"oreDict":["plateQuintupleNaquadahAlloy"],"name":"五重硅岩合金板","tr":"五重硅岩合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13134":{"oreDict":["ingotDoubleSuperconductorUMVBase"],"name":"双重UMV超导粗胚锭","tr":"双重UMV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21326":{"oreDict":["plateQuintupleNaquadahEnriched"],"name":"五重富集硅岩板","tr":"五重富集硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21327":{"oreDict":["plateQuintupleNaquadria"],"name":"五重超能硅岩板","tr":"五重超能硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21328":{"oreDict":["plateQuintupleDuranium"],"name":"五重铿铀板","tr":"五重铿铀板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21329":{"oreDict":["plateQuintupleTritanium"],"name":"五重三钛板","tr":"五重三钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29521":{"oreDict":["foilForce"],"name":"力量箔","tr":"力量箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21330":{"oreDict":["plateQuintupleThaumium"],"name":"五重神秘锭板","tr":"五重神秘锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13139":{"oreDict":["ingotDoubleUniversium"],"name":"双重宇宙素锭","tr":"双重宇宙素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21331":{"oreDict":["plateQuintupleMithril"],"name":"五重秘银板","tr":"五重秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13141":{"oreDict":["ingotDoubleEternity"],"name":"双重永恒锭","tr":"双重永恒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21333":{"oreDict":["plateQuintupleAstralSilver"],"name":"五重星辰银板","tr":"五重星辰银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21334":{"oreDict":["plateQuintupleBlackSteel"],"name":"五重黑钢板","tr":"五重黑钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13143":{"oreDict":["ingotDoubleMagmatter"],"name":"双重磁物质锭","tr":"双重磁物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21335":{"oreDict":["plateQuintupleDamascusSteel"],"name":"五重大马士革钢板","tr":"五重大马士革钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21336":{"oreDict":["plateQuintupleShadowIron"],"name":"五重暗影铁板","tr":"五重暗影铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21337":{"oreDict":["plateQuintupleShadowSteel"],"name":"五重暗影钢板","tr":"五重暗影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29529":{"oreDict":["foilVinteum"],"name":"温特姆箔","tr":"温特姆箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21338":{"oreDict":["plateQuintupleIronWood"],"name":"五重铁木板","tr":"五重铁木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21339":{"oreDict":["plateQuintupleSteeleaf"],"name":"五重钢叶板","tr":"五重钢叶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21340":{"oreDict":["plateQuintupleMeteoricIron"],"name":"五重陨铁板","tr":"五重陨铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21341":{"oreDict":["plateQuintupleMeteoricSteel"],"name":"五重陨钢板","tr":"五重陨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21342":{"oreDict":["plateQuintupleDarkIron"],"name":"五重玄铁板","tr":"五重玄铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21343":{"oreDict":["plateQuintupleCobaltBrass"],"name":"五重钴黄铜板","tr":"五重钴黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21344":{"oreDict":["plateQuintupleUltimet"],"name":"五重哈氏合金板","tr":"五重哈氏合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21345":{"oreDict":["plateQuintupleAnyCopper"," plateQuintupleAnnealedCopper"],"name":"五重退火铜板","tr":"五重退火铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21346":{"oreDict":["plateQuintupleFierySteel"],"name":"五重炽热钢板","tr":"五重炽热钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21348":{"oreDict":["plateQuintupleRedSteel"],"name":"五重红钢板","tr":"五重红钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21349":{"oreDict":["plateQuintupleBlueSteel"],"name":"五重蓝钢板","tr":"五重蓝钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21350":{"oreDict":["plateQuintupleSterlingSilver"],"name":"五重标准纯银板","tr":"五重标准纯银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21351":{"oreDict":["plateQuintupleRoseGold"],"name":"五重玫瑰金板","tr":"五重玫瑰金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21352":{"oreDict":["plateQuintupleBlackBronze"],"name":"五重黑青铜板","tr":"五重黑青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21353":{"oreDict":["plateQuintupleBismuthBronze"],"name":"五重铋青铜板","tr":"五重铋青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21354":{"oreDict":["plateQuintupleIronMagnetic"],"name":"五重磁化铁板","tr":"五重磁化铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21355":{"oreDict":["plateQuintupleSteelMagnetic"],"name":"五重磁化钢板","tr":"五重磁化钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21356":{"oreDict":["plateQuintupleNeodymiumMagnetic"],"name":"五重磁化钕板","tr":"五重磁化钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21357":{"oreDict":["plateQuintupleVanadiumGallium"],"name":"五重钒镓合金板","tr":"五重钒镓合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21358":{"oreDict":["plateQuintupleYttriumBariumCuprate"],"name":"五重钇钡铜氧合金板","tr":"五重钇钡铜氧合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21359":{"oreDict":["plateQuintupleNiobiumNitride"],"name":"五重氮化铌板","tr":"五重氮化铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21360":{"oreDict":["plateQuintupleNiobiumTitanium"],"name":"五重铌钛合金板","tr":"五重铌钛合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21361":{"oreDict":["plateQuintupleChromiumDioxide"],"name":"五重二氧化铬板","tr":"五重二氧化铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21362":{"oreDict":["plateQuintupleKnightmetal"],"name":"五重骑士金属板","tr":"五重骑士金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21363":{"oreDict":["plateQuintupleTinAlloy"],"name":"五重锡铁合金板","tr":"五重锡铁合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21364":{"oreDict":["plateQuintupleDarkSteel"],"name":"五重玄钢板","tr":"五重玄钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21365":{"oreDict":["plateQuintupleElectricalSteel"],"name":"五重磁钢板","tr":"五重磁钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21366":{"oreDict":["plateQuintupleEnergeticAlloy"],"name":"五重充能合金板","tr":"五重充能合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21367":{"oreDict":["plateQuintupleVibrantAlloy"],"name":"五重脉冲合金板","tr":"五重脉冲合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21368":{"oreDict":["plateQuintupleShadow"],"name":"五重暗影板","tr":"五重暗影板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21369":{"oreDict":["plateQuintupleConductiveIron"],"name":"五重导电铁板","tr":"五重导电铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21370":{"oreDict":["plateQuintupleTungstenCarbide"],"name":"五重碳化钨板","tr":"五重碳化钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21371":{"oreDict":["plateQuintupleVanadiumSteel"],"name":"五重钒钢板","tr":"五重钒钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21372":{"oreDict":["plateQuintupleHSSG"],"name":"五重高速钢-G板","tr":"五重高速钢-G板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21373":{"oreDict":["plateQuintupleHSSE"],"name":"五重高速钢-E板","tr":"五重高速钢-E板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21374":{"oreDict":["plateQuintupleHSSS"],"name":"五重高速钢-S板","tr":"五重高速钢-S板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21378":{"oreDict":["plateQuintuplePulsatingIron"],"name":"五重脉冲铁板","tr":"五重脉冲铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21379":{"oreDict":["plateQuintupleSoularium"],"name":"五重魂金板","tr":"五重魂金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21380":{"oreDict":["plateQuintupleEnderiumBase"],"name":"五重末影粗胚板","tr":"五重末影粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21381":{"oreDict":["plateQuintupleRedstoneAlloy"],"name":"五重红石合金板","tr":"五重红石合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21382":{"oreDict":["plateQuintupleArdite"],"name":"五重阿迪特板","tr":"五重阿迪特板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21383":{"oreDict":["plateQuintupleReinforced"],"name":"五重强化金属板","tr":"五重强化金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21384":{"oreDict":["plateQuintupleGalgadorian"],"name":"五重混合晶锭板","tr":"五重混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29576":{"oreDict":["foilTPVAlloy"],"name":"钛铂钒合金箔","tr":"钛铂钒合金箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21385":{"oreDict":["plateQuintupleEnhancedGalgadorian"],"name":"五重强化混合晶锭板","tr":"五重强化混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21386":{"oreDict":["plateQuintupleManyullyn"],"name":"五重玛玉灵板","tr":"五重玛玉灵板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21387":{"oreDict":["plateQuintupleMytryl"],"name":"五重深空秘银板","tr":"五重深空秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21388":{"oreDict":["plateQuintupleBlackPlutonium"],"name":"五重黑钚板","tr":"五重黑钚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21389":{"oreDict":["plateQuintupleCallistoIce"],"name":"五重木卫四冰板","tr":"五重木卫四冰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29581":{"oreDict":["foilTranscendentMetal"],"name":"超时空金属箔","tr":"超时空金属箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21390":{"oreDict":["plateQuintupleLedox"],"name":"五重深铅板","tr":"五重深铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29582":{"oreDict":["foilEnrichedHolmium"],"name":"富集钬箔","tr":"富集钬箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21391":{"oreDict":["plateQuintupleQuantium"],"name":"五重量子锭板","tr":"五重量子锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29583":{"oreDict":["foilMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质箔","tr":"磁流体约束恒星物质箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21392":{"oreDict":["plateQuintupleDuralumin"],"name":"五重硬铝板","tr":"五重硬铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13201":{"oreDict":["ingotDoubleManasteel"],"name":"双重魔钢锭","tr":"双重魔钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21393":{"oreDict":["plateQuintupleOriharukon"],"name":"五重奥利哈钢板","tr":"五重奥利哈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29585":{"oreDict":["foilWhiteDwarfMatter"],"name":"白矮星物质箔","tr":"白矮星物质箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13202":{"oreDict":["ingotDoubleTerrasteel"],"name":"双重泰拉钢锭","tr":"双重泰拉钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21394":{"oreDict":["plateQuintupleInfinityCatalyst"],"name":"五重无尽催化剂板","tr":"五重无尽催化剂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29586":{"oreDict":["foilBlackDwarfMatter"],"name":"黑矮星物质箔","tr":"黑矮星物质箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13203":{"oreDict":["ingotDoubleElvenElementium"],"name":"双重源质钢锭","tr":"双重源质钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21395":{"oreDict":["plateQuintupleBedrockium"],"name":"五重基岩板","tr":"五重基岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29588":{"oreDict":["foilSpaceTime"],"name":"时空箔","tr":"时空箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13205":{"oreDict":["ingotDoubleGaiaSpirit"],"name":"双重盖亚之魂锭","tr":"双重盖亚之魂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21397":{"oreDict":["plateQuintupleInfinity"],"name":"五重无尽板","tr":"五重无尽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21398":{"oreDict":["plateQuintupleMysteriousCrystal"],"name":"五重神秘水晶板","tr":"五重神秘水晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21399":{"oreDict":["plateQuintupleSamariumMagnetic"],"name":"五重磁化钐板","tr":"五重磁化钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21400":{"oreDict":["plateQuintupleAlumite"],"name":"五重耐酸铝板","tr":"五重耐酸铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21401":{"oreDict":["plateQuintupleEndSteel"],"name":"五重末影钢板","tr":"五重末影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21402":{"oreDict":["plateQuintupleCrudeSteel"],"name":"五重复合粘土板","tr":"五重复合粘土板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21403":{"oreDict":["plateQuintupleCrystallineAlloy"],"name":"五重晶化合金板","tr":"五重晶化合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21404":{"oreDict":["plateQuintupleMelodicAlloy"],"name":"五重旋律合金板","tr":"五重旋律合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21405":{"oreDict":["plateQuintupleStellarAlloy"],"name":"五重恒星合金板","tr":"五重恒星合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21406":{"oreDict":["plateQuintupleCrystallinePinkSlime"],"name":"五重晶化粉红史莱姆板","tr":"五重晶化粉红史莱姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21407":{"oreDict":["plateQuintupleEnergeticSilver"],"name":"五重充能银板","tr":"五重充能银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29599":{"oreDict":["foilPolybenzimidazole"],"name":"聚苯并咪唑箔","tr":"聚苯并咪唑箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21408":{"oreDict":["plateQuintupleVividAlloy"],"name":"五重生动合金板","tr":"五重生动合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29610":{"oreDict":["foilEpoxidFiberReinforced"],"name":"薄纤维强化的环氧树脂片","tr":"薄纤维强化的环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29611":{"oreDict":["foilBorosilicateGlass"],"name":"硼玻璃箔","tr":"硼玻璃箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29613":{"oreDict":["foilNickelZincFerrite"],"name":"镍锌铁氧体箔","tr":"镍锌铁氧体箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29631":{"oreDict":["foilPolyphenyleneSulfide"],"name":"聚苯硫醚箔","tr":"聚苯硫醚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29635":{"oreDict":["foilAnyRubber"," foilAnySyntheticRubber"," foilStyreneButadieneRubber"],"name":"薄丁苯橡胶片","tr":"薄丁苯橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29636":{"oreDict":["foilPolystyrene"],"name":"薄聚苯乙烯片","tr":"薄聚苯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29649":{"oreDict":["foilPolyvinylChloride"],"name":"薄聚氯乙烯片","tr":"薄聚氯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21470":{"oreDict":["plateQuintupleEpoxid"],"name":"五重环氧树脂片","tr":"五重环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21471":{"oreDict":["plateQuintupleSilicone"," plateQuintupleAnyRubber"," plateQuintupleAnySyntheticRubber"],"name":"五重硅橡胶片","tr":"五重硅橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21472":{"oreDict":["plateQuintuplePolycaprolactam"],"name":"五重聚己内酰胺片","tr":"五重聚己内酰胺片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21473":{"oreDict":["plateQuintuplePolytetrafluoroethylene"],"name":"五重聚四氟乙烯片","tr":"五重聚四氟乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21485":{"oreDict":["plateQuintupleAlduorite"],"name":"五重神秘蓝金板","tr":"五重神秘蓝金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21488":{"oreDict":["plateQuintupleRubracium"],"name":"五重褐铜板","tr":"五重褐铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21489":{"oreDict":["plateQuintupleVulcanite"],"name":"五重胶木板","tr":"五重胶木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13300":{"oreDict":["ingotDoubleBronze"," ingotDoubleAnyBronze"],"name":"双重青铜锭","tr":"双重青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13301":{"oreDict":["ingotDoubleBrass"],"name":"双重黄铜锭","tr":"双重黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13302":{"oreDict":["ingotDoubleInvar"],"name":"双重殷钢锭","tr":"双重殷钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13303":{"oreDict":["ingotDoubleElectrum"],"name":"双重琥珀金锭","tr":"双重琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13304":{"oreDict":["ingotDoubleWroughtIron"," ingotDoubleAnyIron"],"name":"双重锻铁锭","tr":"双重锻铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13305":{"oreDict":["ingotDoubleSteel"],"name":"双重钢锭","tr":"双重钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13306":{"oreDict":["ingotDoubleStainlessSteel"],"name":"双重不锈钢锭","tr":"双重不锈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13307":{"oreDict":["ingotDoublePigIron"," ingotDoubleAnyIron"],"name":"双重生铁锭","tr":"双重生铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13308":{"oreDict":["ingotDoubleRedAlloy"],"name":"双重红色合金锭","tr":"双重红色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13309":{"oreDict":["ingotDoubleBlueAlloy"],"name":"双重蓝色合金锭","tr":"双重蓝色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13310":{"oreDict":["ingotDoubleCupronickel"],"name":"双重白铜锭","tr":"双重白铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13311":{"oreDict":["ingotDoubleNichrome"],"name":"双重镍铬锭","tr":"双重镍铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13312":{"oreDict":["ingotDoubleKanthal"],"name":"双重坎塔尔合金锭","tr":"双重坎塔尔合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13313":{"oreDict":["ingotDoubleMagnalium"],"name":"双重镁铝合金锭","tr":"双重镁铝合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13314":{"oreDict":["ingotDoubleSolderingAlloy"],"name":"双重焊锡锭","tr":"双重焊锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13315":{"oreDict":["ingotDoubleBatteryAlloy"],"name":"双重电池合金锭","tr":"双重电池合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13316":{"oreDict":["ingotDoubleTungstenSteel"],"name":"双重钨钢锭","tr":"双重钨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13317":{"oreDict":["ingotDoubleOsmiridium"],"name":"双重铱锇合金锭","tr":"双重铱锇合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13318":{"oreDict":["ingotDoubleSunnarium"],"name":"双重阳光化合物锭","tr":"双重阳光化合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13319":{"oreDict":["ingotDoubleAdamantium"],"name":"双重精金锭","tr":"双重精金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13320":{"oreDict":["ingotDoubleElectrumFlux"],"name":"双重通流琥珀金锭","tr":"双重通流琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13321":{"oreDict":["ingotDoubleEnderium"],"name":"双重末影锭","tr":"双重末影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13323":{"oreDict":["ingotDoubleInfusedGold"],"name":"双重注魔金锭","tr":"双重注魔金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13324":{"oreDict":["ingotDoubleNaquadah"],"name":"双重硅岩锭","tr":"双重硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13325":{"oreDict":["ingotDoubleNaquadahAlloy"],"name":"双重硅岩合金锭","tr":"双重硅岩合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13326":{"oreDict":["ingotDoubleNaquadahEnriched"],"name":"双重富集硅岩锭","tr":"双重富集硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13327":{"oreDict":["ingotDoubleNaquadria"],"name":"双重超能硅岩锭","tr":"双重超能硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13328":{"oreDict":["ingotDoubleDuranium"],"name":"双重铿铀锭","tr":"双重铿铀锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13329":{"oreDict":["ingotDoubleTritanium"],"name":"双重三钛锭","tr":"双重三钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21521":{"oreDict":["plateQuintupleForce"],"name":"五重力量板","tr":"五重力量板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13330":{"oreDict":["ingotDoubleThaumium"],"name":"双重神秘锭","tr":"双重神秘锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13331":{"oreDict":["ingotDoubleMithril"],"name":"双重秘银锭","tr":"双重秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13333":{"oreDict":["ingotDoubleAstralSilver"],"name":"双重星辰银锭","tr":"双重星辰银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13334":{"oreDict":["ingotDoubleBlackSteel"],"name":"双重黑钢锭","tr":"双重黑钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13335":{"oreDict":["ingotDoubleDamascusSteel"],"name":"双重大马士革钢锭","tr":"双重大马士革钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13336":{"oreDict":["ingotDoubleShadowIron"],"name":"双重暗影铁锭","tr":"双重暗影铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13337":{"oreDict":["ingotDoubleShadowSteel"],"name":"双重暗影钢锭","tr":"双重暗影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21529":{"oreDict":["plateQuintupleVinteum"],"name":"五重温特姆板","tr":"五重温特姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13338":{"oreDict":["ingotDoubleIronWood"],"name":"双重铁木锭","tr":"双重铁木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13339":{"oreDict":["ingotDoubleSteeleaf"],"name":"双重钢叶","tr":"双重钢叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13340":{"oreDict":["ingotDoubleMeteoricIron"],"name":"双重陨铁锭","tr":"双重陨铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13341":{"oreDict":["ingotDoubleMeteoricSteel"],"name":"双重陨钢锭","tr":"双重陨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13342":{"oreDict":["ingotDoubleDarkIron"],"name":"双重玄铁锭","tr":"双重玄铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13343":{"oreDict":["ingotDoubleCobaltBrass"],"name":"双重钴黄铜锭","tr":"双重钴黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13344":{"oreDict":["ingotDoubleUltimet"],"name":"双重哈氏合金锭","tr":"双重哈氏合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13345":{"oreDict":["ingotDoubleAnyCopper"," ingotDoubleAnnealedCopper"],"name":"双重退火铜锭","tr":"双重退火铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13346":{"oreDict":["ingotDoubleFierySteel"],"name":"双重炽热钢锭","tr":"双重炽热钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13348":{"oreDict":["ingotDoubleRedSteel"],"name":"双重红钢锭","tr":"双重红钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13349":{"oreDict":["ingotDoubleBlueSteel"],"name":"双重蓝钢锭","tr":"双重蓝钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13350":{"oreDict":["ingotDoubleSterlingSilver"],"name":"双重标准纯银锭","tr":"双重标准纯银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13351":{"oreDict":["ingotDoubleRoseGold"],"name":"双重玫瑰金锭","tr":"双重玫瑰金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13352":{"oreDict":["ingotDoubleBlackBronze"],"name":"双重黑青铜锭","tr":"双重黑青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13353":{"oreDict":["ingotDoubleBismuthBronze"],"name":"双重铋青铜锭","tr":"双重铋青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13354":{"oreDict":["ingotDoubleIronMagnetic"],"name":"双重磁化铁锭","tr":"双重磁化铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13355":{"oreDict":["ingotDoubleSteelMagnetic"],"name":"双重磁化钢锭","tr":"双重磁化钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13356":{"oreDict":["ingotDoubleNeodymiumMagnetic"],"name":"双重磁化钕锭","tr":"双重磁化钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13357":{"oreDict":["ingotDoubleVanadiumGallium"],"name":"双重钒镓合金锭","tr":"双重钒镓合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13358":{"oreDict":["ingotDoubleYttriumBariumCuprate"],"name":"双重钇钡铜氧合金锭","tr":"双重钇钡铜氧合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13359":{"oreDict":["ingotDoubleNiobiumNitride"],"name":"双重氮化铌锭","tr":"双重氮化铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13360":{"oreDict":["ingotDoubleNiobiumTitanium"],"name":"双重铌钛合金锭","tr":"双重铌钛合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13361":{"oreDict":["ingotDoubleChromiumDioxide"],"name":"双重二氧化铬锭","tr":"双重二氧化铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13362":{"oreDict":["ingotDoubleKnightmetal"],"name":"双重骑士金属锭","tr":"双重骑士金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13363":{"oreDict":["ingotDoubleTinAlloy"],"name":"双重锡铁合金锭","tr":"双重锡铁合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13364":{"oreDict":["ingotDoubleDarkSteel"],"name":"双重玄钢锭","tr":"双重玄钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13365":{"oreDict":["ingotDoubleElectricalSteel"],"name":"双重磁钢锭","tr":"双重磁钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13366":{"oreDict":["ingotDoubleEnergeticAlloy"],"name":"双重充能合金锭","tr":"双重充能合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13367":{"oreDict":["ingotDoubleVibrantAlloy"],"name":"双重脉冲合金锭","tr":"双重脉冲合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13368":{"oreDict":["ingotDoubleShadow"],"name":"双重暗影锭","tr":"双重暗影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13369":{"oreDict":["ingotDoubleConductiveIron"],"name":"双重导电铁锭","tr":"双重导电铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13370":{"oreDict":["ingotDoubleTungstenCarbide"],"name":"双重碳化钨锭","tr":"双重碳化钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13371":{"oreDict":["ingotDoubleVanadiumSteel"],"name":"双重钒钢锭","tr":"双重钒钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13372":{"oreDict":["ingotDoubleHSSG"],"name":"双重高速钢-G锭","tr":"双重高速钢-G锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13373":{"oreDict":["ingotDoubleHSSE"],"name":"双重高速钢-E锭","tr":"双重高速钢-E锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13374":{"oreDict":["ingotDoubleHSSS"],"name":"双重高速钢-S锭","tr":"双重高速钢-S锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13378":{"oreDict":["ingotDoublePulsatingIron"],"name":"双重脉冲铁锭","tr":"双重脉冲铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13379":{"oreDict":["ingotDoubleSoularium"],"name":"双重魂金锭","tr":"双重魂金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13380":{"oreDict":["ingotDoubleEnderiumBase"],"name":"双重末影粗胚锭","tr":"双重末影粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13381":{"oreDict":["ingotDoubleRedstoneAlloy"],"name":"双重红石合金锭","tr":"双重红石合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29765":{"oreDict":["foilKevlar"],"name":"凯芙拉箔","tr":"凯芙拉箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13382":{"oreDict":["ingotDoubleArdite"],"name":"双重阿迪特锭","tr":"双重阿迪特锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13383":{"oreDict":["ingotDoubleReinforced"],"name":"双重强化金属锭","tr":"双重强化金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13384":{"oreDict":["ingotDoubleGalgadorian"],"name":"双重混合晶锭","tr":"双重混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21576":{"oreDict":["plateQuintupleTPVAlloy"],"name":"五重钛铂钒合金板","tr":"五重钛铂钒合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13385":{"oreDict":["ingotDoubleEnhancedGalgadorian"],"name":"双重强化混合晶锭","tr":"双重强化混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13386":{"oreDict":["ingotDoubleManyullyn"],"name":"双重玛玉灵锭","tr":"双重玛玉灵锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29770":{"oreDict":["foilHeeEndium"],"name":"终末锭箔","tr":"终末锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13387":{"oreDict":["ingotDoubleMytryl"],"name":"双重深空秘银锭","tr":"双重深空秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13388":{"oreDict":["ingotDoubleBlackPlutonium"],"name":"双重黑钚锭","tr":"双重黑钚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29772":{"oreDict":["foilNickelAluminide"],"name":"铝化镍箔","tr":"铝化镍箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13389":{"oreDict":["ingotDoubleCallistoIce"],"name":"双重木卫四冰锭","tr":"双重木卫四冰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21581":{"oreDict":["plateQuintupleTranscendentMetal"],"name":"五重超时空金属板","tr":"五重超时空金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13390":{"oreDict":["ingotDoubleLedox"],"name":"双重深铅锭","tr":"双重深铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21582":{"oreDict":["plateQuintupleEnrichedHolmium"],"name":"五重富集钬板","tr":"五重富集钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13391":{"oreDict":["ingotDoubleQuantium"],"name":"双重量子锭","tr":"双重量子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13392":{"oreDict":["ingotDoubleDuralumin"],"name":"双重硬铝锭","tr":"双重硬铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13393":{"oreDict":["ingotDoubleOriharukon"],"name":"双重奥利哈钢锭","tr":"双重奥利哈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21585":{"oreDict":["plateQuintupleWhiteDwarfMatter"],"name":"五重白矮星物质板","tr":"五重白矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13394":{"oreDict":["ingotDoubleInfinityCatalyst"],"name":"双重无尽催化剂锭","tr":"双重无尽催化剂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21586":{"oreDict":["plateQuintupleBlackDwarfMatter"],"name":"五重黑矮星物质板","tr":"五重黑矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13395":{"oreDict":["ingotDoubleBedrockium"],"name":"双重基岩锭","tr":"双重基岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21588":{"oreDict":["plateQuintupleSpaceTime"],"name":"五重时空板","tr":"五重时空板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13397":{"oreDict":["ingotDoubleInfinity"],"name":"双重无尽锭","tr":"双重无尽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13398":{"oreDict":["ingotDoubleMysteriousCrystal"],"name":"双重神秘水晶锭","tr":"双重神秘水晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13399":{"oreDict":["ingotDoubleSamariumMagnetic"],"name":"双重磁化钐锭","tr":"双重磁化钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13400":{"oreDict":["ingotDoubleAlumite"],"name":"双重耐酸铝锭","tr":"双重耐酸铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13401":{"oreDict":["ingotDoubleEndSteel"],"name":"双重末影钢锭","tr":"双重末影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13402":{"oreDict":["ingotDoubleCrudeSteel"],"name":"双重复合粘土锭","tr":"双重复合粘土锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13403":{"oreDict":["ingotDoubleCrystallineAlloy"],"name":"双重晶化合金锭","tr":"双重晶化合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13404":{"oreDict":["ingotDoubleMelodicAlloy"],"name":"双重旋律合金锭","tr":"双重旋律合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13405":{"oreDict":["ingotDoubleStellarAlloy"],"name":"双重恒星合金锭","tr":"双重恒星合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13406":{"oreDict":["ingotDoubleCrystallinePinkSlime"],"name":"双重晶化粉红史莱姆锭","tr":"双重晶化粉红史莱姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13407":{"oreDict":["ingotDoubleEnergeticSilver"],"name":"双重充能银锭","tr":"双重充能银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21599":{"oreDict":["plateQuintuplePolybenzimidazole"],"name":"五重聚苯并咪唑板","tr":"五重聚苯并咪唑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13408":{"oreDict":["ingotDoubleVividAlloy"],"name":"双重生动合金锭","tr":"双重生动合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21610":{"oreDict":["plateQuintupleEpoxidFiberReinforced"],"name":"五重纤维强化的环氧树脂片","tr":"五重纤维强化的环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29804":{"oreDict":["foilObsidian"],"name":"黑曜石箔","tr":"黑曜石箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21613":{"oreDict":["plateQuintupleNickelZincFerrite"],"name":"五重镍锌铁氧体板","tr":"五重镍锌铁氧体板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29809":{"oreDict":["foilWood"],"name":"木箔","tr":"木箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21631":{"oreDict":["plateQuintuplePolyphenyleneSulfide"],"name":"五重聚苯硫醚板","tr":"五重聚苯硫醚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21635":{"oreDict":["plateQuintupleAnyRubber"," plateQuintupleAnySyntheticRubber"," plateQuintupleStyreneButadieneRubber"],"name":"五重丁苯橡胶片","tr":"五重丁苯橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21636":{"oreDict":["plateQuintuplePolystyrene"],"name":"五重聚苯乙烯片","tr":"五重聚苯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29829":{"oreDict":["foilDeepIron"],"name":"深渊铁箔","tr":"深渊铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21649":{"oreDict":["plateQuintuplePolyvinylChloride"],"name":"五重聚氯乙烯片","tr":"五重聚氯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13470":{"oreDict":["ingotDoubleEpoxid"],"name":"双重环氧树脂条","tr":"双重环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13471":{"oreDict":["ingotDoubleSilicone"," ingotDoubleAnyRubber"," ingotDoubleAnySyntheticRubber"],"name":"双重硅橡胶条","tr":"双重硅橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13472":{"oreDict":["ingotDoublePolycaprolactam"],"name":"双重聚己内酰胺条","tr":"双重聚己内酰胺条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29856":{"oreDict":["foilSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)箔","tr":"太阳能级硅(多晶硅)箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13473":{"oreDict":["ingotDoublePolytetrafluoroethylene"],"name":"双重聚四氟乙烯条","tr":"双重聚四氟乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29868":{"oreDict":["foilTrinium"],"name":"三元金属箔","tr":"三元金属箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13485":{"oreDict":["ingotDoubleAlduorite"],"name":"双重神秘蓝金锭","tr":"双重神秘蓝金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13488":{"oreDict":["ingotDoubleRubracium"],"name":"双重褐铜锭","tr":"双重褐铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13489":{"oreDict":["ingotDoubleVulcanite"],"name":"双重胶木锭","tr":"双重胶木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29874":{"oreDict":["foilPlastic"],"name":"薄聚乙烯片","tr":"薄聚乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29880":{"oreDict":["foilAnyRubber"," foilRubber"],"name":"薄橡胶片","tr":"薄橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29884":{"oreDict":["foilDesh"],"name":"戴斯箔","tr":"戴斯箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29889":{"oreDict":["foilWoodSealed"],"name":"蜡封木箔","tr":"蜡封木箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13521":{"oreDict":["ingotDoubleForce"],"name":"双重力量锭","tr":"双重力量锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29912":{"oreDict":["foilChrysotile"],"name":"石棉箔","tr":"石棉箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13529":{"oreDict":["ingotDoubleVinteum"],"name":"双重温特姆锭","tr":"双重温特姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29913":{"oreDict":["foilRealgar"],"name":"雄黄箔","tr":"雄黄箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29951":{"oreDict":["foilVyroxeres"],"name":"幽冥剧毒结晶箔","tr":"幽冥剧毒结晶箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29952":{"oreDict":["foilCeruclase"],"name":"暗影秘银箔","tr":"暗影秘银箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29956":{"oreDict":["foilTartarite"],"name":"溶火之石箔","tr":"溶火之石箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21765":{"oreDict":["plateQuintupleKevlar"],"name":"五重凯芙拉板","tr":"五重凯芙拉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13576":{"oreDict":["ingotDoubleTPVAlloy"],"name":"双重钛铂钒合金锭","tr":"双重钛铂钒合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21770":{"oreDict":["plateQuintupleHeeEndium"],"name":"五重终末锭板","tr":"五重终末锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21772":{"oreDict":["plateQuintupleNickelAluminide"],"name":"五重铝化镍板","tr":"五重铝化镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13581":{"oreDict":["ingotDoubleTranscendentMetal"],"name":"双重超时空金属锭","tr":"双重超时空金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13582":{"oreDict":["ingotDoubleEnrichedHolmium"],"name":"双重富集钬锭","tr":"双重富集钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29966":{"oreDict":["foilOrichalcum"],"name":"山铜箔","tr":"山铜箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13585":{"oreDict":["ingotDoubleWhiteDwarfMatter"],"name":"双重白矮星物质锭","tr":"双重白矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13586":{"oreDict":["ingotDoubleBlackDwarfMatter"],"name":"双重黑矮星物质锭","tr":"双重黑矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29970":{"oreDict":["foilVoid"],"name":"虚空锭箔","tr":"虚空锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13588":{"oreDict":["ingotDoubleSpaceTime"],"name":"双重时空锭","tr":"双重时空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29974":{"oreDict":["foilSuperconductorUEVBase"],"name":"UEV超导粗胚箔","tr":"UEV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29975":{"oreDict":["foilDraconium"],"name":"龙锭箔","tr":"龙锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29976":{"oreDict":["foilDraconiumAwakened"],"name":"觉醒龙锭箔","tr":"觉醒龙锭箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29977":{"oreDict":["foilBloodInfusedIron"],"name":"注血铁箔","tr":"注血铁箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29978":{"oreDict":["foilIchorium"],"name":"灵宝箔","tr":"灵宝箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29979":{"oreDict":["foilRadoxPoly"],"name":"拉多X聚合物箔","tr":"拉多X聚合物箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29980":{"oreDict":["foilGalliumArsenide"],"name":"砷化镓箔","tr":"砷化镓箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29981":{"oreDict":["foilIndiumGalliumPhosphide"],"name":"磷化铟镓箔","tr":"磷化铟镓箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29982":{"oreDict":["foilCosmicNeutronium"],"name":"宇宙中子态素箔","tr":"宇宙中子态素箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13599":{"oreDict":["ingotDoublePolybenzimidazole"],"name":"双重聚苯并咪唑锭","tr":"双重聚苯并咪唑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29984":{"oreDict":["foilFlerovium_GT5U"],"name":"箔","tr":"箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29985":{"oreDict":["foilLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚箔","tr":"UHV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29986":{"oreDict":["foilLongasssuperconductornameforuvwire"],"name":"UV超导粗胚箔","tr":"UV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29987":{"oreDict":["foilPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚箔","tr":"MV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29988":{"oreDict":["foilTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚箔","tr":"HV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29989":{"oreDict":["foilUraniumtriplatinid"],"name":"EV超导粗胚箔","tr":"EV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29990":{"oreDict":["foilVanadiumtriindinid"],"name":"IV超导粗胚箔","tr":"IV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29991":{"oreDict":["foilTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚箔","tr":"LuV超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"29992":{"oreDict":["foilTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚箔","tr":"ZPM超导粗胚箔","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13610":{"oreDict":["ingotDoubleEpoxidFiberReinforced"],"name":"双重纤维强化的环氧树脂条","tr":"双重纤维强化的环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13613":{"oreDict":["ingotDoubleNickelZincFerrite"],"name":"双重镍锌铁氧体锭","tr":"双重镍锌铁氧体锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30001":{"oreDict":["cellHydrogen"],"name":"氢单元","tr":"氢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30002":{"oreDict":["cellDeuterium"],"name":"氘单元","tr":"氘单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30003":{"oreDict":["cellTritium"],"name":"氚单元","tr":"氚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30004":{"oreDict":["cellHelium"],"name":"氦单元","tr":"氦单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30005":{"oreDict":["cellHelium_3"],"name":"氦-3单元","tr":"氦-3单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30010":{"oreDict":["cellCarbon"],"name":"碳单元","tr":"碳单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30012":{"oreDict":["cellNitrogen"],"name":"氮单元","tr":"氮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30013":{"oreDict":["cellOxygen"],"name":"氧单元","tr":"氧单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30014":{"oreDict":["cellFluorine"],"name":"氟单元","tr":"氟单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13631":{"oreDict":["ingotDoublePolyphenyleneSulfide"],"name":"双重聚苯硫醚锭","tr":"双重聚苯硫醚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30017":{"oreDict":["cellSodium"],"name":"钠单元","tr":"钠单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13635":{"oreDict":["ingotDoubleAnyRubber"," ingotDoubleAnySyntheticRubber"," ingotDoubleStyreneButadieneRubber"],"name":"双重丁苯橡胶条","tr":"双重丁苯橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13636":{"oreDict":["ingotDoublePolystyrene"],"name":"双重聚苯乙烯条","tr":"双重聚苯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21829":{"oreDict":["plateQuintupleDeepIron"],"name":"五重深渊铁板","tr":"五重深渊铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30023":{"oreDict":["cellChlorine"],"name":"氯单元","tr":"氯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30024":{"oreDict":["cellArgon"],"name":"氩单元","tr":"氩单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13649":{"oreDict":["ingotDoublePolyvinylChloride"],"name":"双重聚氯乙烯条","tr":"双重聚氯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30039":{"oreDict":["cellArsenic"],"name":"砷单元","tr":"砷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21856":{"oreDict":["plateQuintupleSiliconSolarGrade"],"name":"五重太阳能级硅(多晶硅)板","tr":"五重太阳能级硅(多晶硅)板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21868":{"oreDict":["plateQuintupleTrinium"],"name":"五重三元金属板","tr":"五重三元金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21874":{"oreDict":["plateQuintuplePlastic"],"name":"五重聚乙烯片","tr":"五重聚乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21879":{"oreDict":["plateQuintuplePaper"],"name":"厚卡纸","tr":"厚卡纸","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21880":{"oreDict":["plateQuintupleRubber"," plateQuintupleAnyRubber"],"name":"五重橡胶片","tr":"五重橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21884":{"oreDict":["plateQuintupleDesh"],"name":"五重戴斯板","tr":"五重戴斯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30087":{"oreDict":["cellMercury"],"name":"汞单元","tr":"汞单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30093":{"oreDict":["cellRadon"],"name":"氡单元","tr":"氡单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21912":{"oreDict":["plateQuintupleChrysotile"],"name":"五重石棉板","tr":"五重石棉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21913":{"oreDict":["plateQuintupleRealgar"],"name":"五重雄黄板","tr":"五重雄黄板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30106":{"oreDict":["cellspatialFluid"],"name":"扩大化空间流体单元","tr":"扩大化空间流体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30109":{"oreDict":["cellExcitedDTCC"],"name":"激发的粗制超维度催化剂单元","tr":"激发的粗制超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30113":{"oreDict":["cellExcitedDTPC"],"name":"激发的平凡超维度催化剂单元","tr":"激发的平凡超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30121":{"oreDict":["cellExcitedDTRC"],"name":"激发的光辉超维度催化剂单元","tr":"激发的光辉超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30126":{"oreDict":["cellExcitedDTEC"],"name":"激发的异星超维度催化剂单元","tr":"激发的异星超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30127":{"oreDict":["cellExcitedDTSC"],"name":"激发的恒星超维度催化剂单元","tr":"激发的恒星超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30130":{"oreDict":["cellDimensionallyTranscendentStellarCatalyst"],"name":"恒星超维度催化剂单元","tr":"恒星超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30140":{"oreDict":["cellSuperCoolant"],"name":"超级冷却液单元","tr":"超级冷却液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30142":{"oreDict":["cellPrimordialMatter"],"name":"流体本源物质单元","tr":"流体本源物质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21951":{"oreDict":["plateQuintupleVyroxeres"],"name":"五重幽冥剧毒结晶板","tr":"五重幽冥剧毒结晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21952":{"oreDict":["plateQuintupleCeruclase"],"name":"五重暗影秘银板","tr":"五重暗影秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30144":{"oreDict":["cellQuarkGluonPlasma"],"name":"简并夸克胶子等离子体单元","tr":"简并夸克胶子等离子体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21956":{"oreDict":["plateQuintupleTartarite"],"name":"五重溶火之石板","tr":"五重溶火之石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13765":{"oreDict":["ingotDoubleKevlar"],"name":"双重凯芙拉锭","tr":"双重凯芙拉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13770":{"oreDict":["ingotDoubleHeeEndium"],"name":"双重终末锭","tr":"双重终末锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13772":{"oreDict":["ingotDoubleNickelAluminide"],"name":"双重铝化镍锭","tr":"双重铝化镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21966":{"oreDict":["plateQuintupleOrichalcum"],"name":"五重山铜板","tr":"五重山铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21970":{"oreDict":["plateQuintupleVoid"],"name":"五重虚空锭板","tr":"五重虚空锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21974":{"oreDict":["plateQuintupleSuperconductorUEVBase"],"name":"五重UEV超导粗胚板","tr":"五重UEV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21975":{"oreDict":["plateQuintupleDraconium"],"name":"五重龙锭板","tr":"五重龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21976":{"oreDict":["plateQuintupleDraconiumAwakened"],"name":"五重觉醒龙锭板","tr":"五重觉醒龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21977":{"oreDict":["plateQuintupleBloodInfusedIron"],"name":"五重注血铁板","tr":"五重注血铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21978":{"oreDict":["plateQuintupleIchorium"],"name":"五重灵宝板","tr":"五重灵宝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21979":{"oreDict":["plateQuintupleRadoxPoly"],"name":"五重拉多X聚合物板","tr":"五重拉多X聚合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21980":{"oreDict":["plateQuintupleGalliumArsenide"],"name":"五重砷化镓板","tr":"五重砷化镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21981":{"oreDict":["plateQuintupleIndiumGalliumPhosphide"],"name":"五重磷化铟镓板","tr":"五重磷化铟镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21982":{"oreDict":["plateQuintupleCosmicNeutronium"],"name":"五重宇宙中子态素板","tr":"五重宇宙中子态素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21984":{"oreDict":["plateQuintupleFlerovium_GT5U"],"name":"五重板","tr":"五重板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21985":{"oreDict":["plateQuintupleLongasssuperconductornameforuhvwire"],"name":"五重UHV超导粗胚板","tr":"五重UHV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21986":{"oreDict":["plateQuintupleLongasssuperconductornameforuvwire"],"name":"五重UV超导粗胚板","tr":"五重UV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21987":{"oreDict":["plateQuintuplePentacadmiummagnesiumhexaoxid"],"name":"五重MV超导粗胚板","tr":"五重MV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21988":{"oreDict":["plateQuintupleTitaniumonabariumdecacoppereikosaoxid"],"name":"五重HV超导粗胚板","tr":"五重HV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21989":{"oreDict":["plateQuintupleUraniumtriplatinid"],"name":"五重EV超导粗胚板","tr":"五重EV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21990":{"oreDict":["plateQuintupleVanadiumtriindinid"],"name":"五重IV超导粗胚板","tr":"五重IV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21991":{"oreDict":["plateQuintupleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"五重LuV超导粗胚板","tr":"五重LuV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"21992":{"oreDict":["plateQuintupleTetranaquadahdiindiumhexaplatiumosminid"],"name":"五重ZPM超导粗胚板","tr":"五重ZPM超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22006":{"oreDict":["plateDenseLithium"],"name":"致密锂板","tr":"致密锂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22008":{"oreDict":["plateDenseBeryllium"],"name":"致密铍板","tr":"致密铍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22010":{"oreDict":["plateDenseCarbon"],"name":"致密碳板","tr":"致密碳板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22018":{"oreDict":["plateDenseMagnesium"],"name":"致密镁板","tr":"致密镁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22019":{"oreDict":["plateDenseAluminium"],"name":"致密铝板","tr":"致密铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22020":{"oreDict":["plateDenseSilicon"],"name":"致密硅板","tr":"致密硅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13829":{"oreDict":["ingotDoubleDeepIron"],"name":"双重深渊铁锭","tr":"双重深渊铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22025":{"oreDict":["plateDensePotassium"],"name":"致密钾板","tr":"致密钾板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22027":{"oreDict":["plateDenseScandium"],"name":"致密钪板","tr":"致密钪板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22028":{"oreDict":["plateDenseTitanium"],"name":"致密钛板","tr":"致密钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22029":{"oreDict":["plateDenseVanadium"],"name":"致密钒板","tr":"致密钒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22030":{"oreDict":["plateDenseChrome"],"name":"致密铬板","tr":"致密铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22031":{"oreDict":["plateDenseManganese"],"name":"致密锰板","tr":"致密锰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22032":{"oreDict":["plateDenseIron"," plateDenseAnyIron"],"name":"致密铁板","tr":"致密铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22033":{"oreDict":["plateDenseCobalt"],"name":"致密钴板","tr":"致密钴板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22034":{"oreDict":["plateDenseNickel"],"name":"致密镍板","tr":"致密镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22035":{"oreDict":["plateDenseCopper"," plateDenseAnyCopper"],"name":"致密铜板","tr":"致密铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22036":{"oreDict":["plateDenseZinc"],"name":"致密锌板","tr":"致密锌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22037":{"oreDict":["plateDenseGallium"],"name":"致密镓板","tr":"致密镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22039":{"oreDict":["plateDenseArsenic"],"name":"致密砷板","tr":"致密砷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22043":{"oreDict":["plateDenseRubidium"],"name":"致密铷板","tr":"致密铷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22045":{"oreDict":["plateDenseYttrium"],"name":"致密钇板","tr":"致密钇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22047":{"oreDict":["plateDenseNiobium"],"name":"致密铌板","tr":"致密铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13856":{"oreDict":["ingotDoubleSiliconSolarGrade"],"name":"双重太阳能级硅(多晶硅)锭","tr":"双重太阳能级硅(多晶硅)锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22048":{"oreDict":["plateDenseMolybdenum"],"name":"致密钼板","tr":"致密钼板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22052":{"oreDict":["plateDensePalladium"],"name":"致密钯板","tr":"致密钯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22054":{"oreDict":["plateDenseSilver"],"name":"致密银板","tr":"致密银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22056":{"oreDict":["plateDenseIndium"],"name":"致密铟板","tr":"致密铟板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22057":{"oreDict":["plateDenseTin"],"name":"致密锡板","tr":"致密锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22058":{"oreDict":["plateDenseAntimony"],"name":"致密锑板","tr":"致密锑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22059":{"oreDict":["plateDenseTellurium"],"name":"致密碲板","tr":"致密碲板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13868":{"oreDict":["ingotDoubleTrinium"],"name":"双重三元金属锭","tr":"双重三元金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22062":{"oreDict":["plateDenseCaesium"],"name":"致密铯板","tr":"致密铯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22063":{"oreDict":["plateDenseBarium"],"name":"致密钡板","tr":"致密钡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22064":{"oreDict":["plateDenseLanthanum"],"name":"致密镧板","tr":"致密镧板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22065":{"oreDict":["plateDenseCerium"],"name":"致密铈板","tr":"致密铈板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13874":{"oreDict":["ingotDoublePlastic"],"name":"双重聚乙烯条","tr":"双重聚乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22066":{"oreDict":["plateDensePraseodymium"],"name":"致密镨板","tr":"致密镨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22067":{"oreDict":["plateDenseNeodymium"],"name":"致密钕板","tr":"致密钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22068":{"oreDict":["plateDensePromethium"],"name":"致密钷板","tr":"致密钷板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22069":{"oreDict":["plateDenseSamarium"],"name":"致密钐板","tr":"致密钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22070":{"oreDict":["plateDenseEuropium"],"name":"致密铕板","tr":"致密铕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22071":{"oreDict":["plateDenseGadolinium"],"name":"致密钆板","tr":"致密钆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13880":{"oreDict":["ingotDoubleRubber"," ingotDoubleAnyRubber"],"name":"双重橡胶条","tr":"双重橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22072":{"oreDict":["plateDenseTerbium"],"name":"致密铽板","tr":"致密铽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22073":{"oreDict":["plateDenseDysprosium"],"name":"致密镝板","tr":"致密镝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22074":{"oreDict":["plateDenseHolmium"],"name":"致密钬板","tr":"致密钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22075":{"oreDict":["plateDenseErbium"],"name":"致密铒板","tr":"致密铒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13884":{"oreDict":["ingotDoubleDesh"],"name":"双重戴斯锭","tr":"双重戴斯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22076":{"oreDict":["plateDenseThulium"],"name":"致密铥板","tr":"致密铥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22077":{"oreDict":["plateDenseYtterbium"],"name":"致密镱板","tr":"致密镱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22078":{"oreDict":["plateDenseLutetium"],"name":"致密镥板","tr":"致密镥板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22080":{"oreDict":["plateDenseTantalum"],"name":"致密钽板","tr":"致密钽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22081":{"oreDict":["plateDenseTungsten"],"name":"致密钨板","tr":"致密钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22083":{"oreDict":["plateDenseOsmium"],"name":"致密锇板","tr":"致密锇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22084":{"oreDict":["plateDenseIridium"],"name":"致密铱板","tr":"致密铱板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22085":{"oreDict":["plateDensePlatinum"],"name":"致密铂板","tr":"致密铂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22086":{"oreDict":["plateDenseGold"],"name":"致密金板","tr":"致密金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22089":{"oreDict":["plateDenseLead"],"name":"致密铅板","tr":"致密铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22090":{"oreDict":["plateDenseBismuth"],"name":"致密铋板","tr":"致密铋板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22096":{"oreDict":["plateDenseThorium"],"name":"致密钍板","tr":"致密钍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22097":{"oreDict":["plateDenseUranium235"],"name":"致密铀-235板","tr":"致密铀-235板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22098":{"oreDict":["plateDenseUranium"],"name":"致密铀-238板","tr":"致密铀-238板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22100":{"oreDict":["plateDensePlutonium"],"name":"致密钚-239板","tr":"致密钚-239板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22101":{"oreDict":["plateDensePlutonium241"],"name":"致密钚-241板","tr":"致密钚-241板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22103":{"oreDict":["plateDenseAmericium"],"name":"致密镅板","tr":"致密镅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13912":{"oreDict":["ingotDoubleChrysotile"],"name":"双重石棉锭","tr":"双重石棉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13913":{"oreDict":["ingotDoubleRealgar"],"name":"双重雄黄锭","tr":"双重雄黄锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22111":{"oreDict":["plateDenseTengamPurified"],"name":"致密纯镃板","tr":"致密纯镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22112":{"oreDict":["plateDenseTengamAttuned"],"name":"致密谐镃板","tr":"致密谐镃板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22129":{"oreDict":["plateDenseNeutronium"],"name":"致密中子板","tr":"致密中子板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22131":{"oreDict":["plateDenseSuperconductorUIVBase"],"name":"致密UIV超导粗胚板","tr":"致密UIV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22134":{"oreDict":["plateDenseSuperconductorUMVBase"],"name":"致密UMV超导粗胚板","tr":"致密UMV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22139":{"oreDict":["plateDenseUniversium"],"name":"致密宇宙素板","tr":"致密宇宙素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22141":{"oreDict":["plateDenseEternity"],"name":"致密永恒板","tr":"致密永恒板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13951":{"oreDict":["ingotDoubleVyroxeres"],"name":"双重幽冥剧毒结晶锭","tr":"双重幽冥剧毒结晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22143":{"oreDict":["plateDenseMagmatter"],"name":"致密磁物质板","tr":"致密磁物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13952":{"oreDict":["ingotDoubleCeruclase"],"name":"双重暗影秘银锭","tr":"双重暗影秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13956":{"oreDict":["ingotDoubleTartarite"],"name":"双重溶火之石锭","tr":"双重溶火之石锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13966":{"oreDict":["ingotDoubleOrichalcum"],"name":"双重山铜锭","tr":"双重山铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13970":{"oreDict":["ingotDoubleVoid"],"name":"双重虚空锭","tr":"双重虚空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13974":{"oreDict":["ingotDoubleSuperconductorUEVBase"],"name":"双重UEV超导粗胚锭","tr":"双重UEV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13975":{"oreDict":["ingotDoubleDraconium"],"name":"双重龙锭","tr":"双重龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13976":{"oreDict":["ingotDoubleDraconiumAwakened"],"name":"双重觉醒龙锭","tr":"双重觉醒龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13977":{"oreDict":["ingotDoubleBloodInfusedIron"],"name":"双重注血铁锭","tr":"双重注血铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13978":{"oreDict":["ingotDoubleIchorium"],"name":"双重灵宝锭","tr":"双重灵宝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13979":{"oreDict":["ingotDoubleRadoxPoly"],"name":"双重拉多X聚合物锭","tr":"双重拉多X聚合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13980":{"oreDict":["ingotDoubleGalliumArsenide"],"name":"双重砷化镓锭","tr":"双重砷化镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13981":{"oreDict":["ingotDoubleIndiumGalliumPhosphide"],"name":"双重磷化铟镓锭","tr":"双重磷化铟镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13982":{"oreDict":["ingotDoubleCosmicNeutronium"],"name":"双重宇宙中子态素锭","tr":"双重宇宙中子态素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13984":{"oreDict":["ingotDoubleFlerovium_GT5U"],"name":"双重锭","tr":"双重锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13985":{"oreDict":["ingotDoubleLongasssuperconductornameforuhvwire"],"name":"双重UHV超导粗胚锭","tr":"双重UHV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13986":{"oreDict":["ingotDoubleLongasssuperconductornameforuvwire"],"name":"双重UV超导粗胚锭","tr":"双重UV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13987":{"oreDict":["ingotDoublePentacadmiummagnesiumhexaoxid"],"name":"双重MV超导粗胚锭","tr":"双重MV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13988":{"oreDict":["ingotDoubleTitaniumonabariumdecacoppereikosaoxid"],"name":"双重HV超导粗胚锭","tr":"双重HV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13989":{"oreDict":["ingotDoubleUraniumtriplatinid"],"name":"双重EV超导粗胚锭","tr":"双重EV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13990":{"oreDict":["ingotDoubleVanadiumtriindinid"],"name":"双重IV超导粗胚锭","tr":"双重IV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13991":{"oreDict":["ingotDoubleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"双重LuV超导粗胚锭","tr":"双重LuV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"13992":{"oreDict":["ingotDoubleTetranaquadahdiindiumhexaplatiumosminid"],"name":"双重ZPM超导粗胚锭","tr":"双重ZPM超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30376":{"oreDict":["cellTitaniumtetrachloride"],"name":"四氯化钛单元","tr":"四氯化钛单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30377":{"oreDict":["cellMagnesiumchloride"],"name":"氯化镁单元","tr":"氯化镁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14006":{"oreDict":["ingotTripleLithium"],"name":"三重锂锭","tr":"三重锂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14008":{"oreDict":["ingotTripleBeryllium"],"name":"三重铍锭","tr":"三重铍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22201":{"oreDict":["plateDenseManasteel"],"name":"致密魔钢板","tr":"致密魔钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14010":{"oreDict":["ingotTripleCarbon"],"name":"三重碳锭","tr":"三重碳锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22202":{"oreDict":["plateDenseTerrasteel"],"name":"致密泰拉钢板","tr":"致密泰拉钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22203":{"oreDict":["plateDenseElvenElementium"],"name":"致密源质钢板","tr":"致密源质钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22205":{"oreDict":["plateDenseGaiaSpirit"],"name":"致密盖亚之魂板","tr":"致密盖亚之魂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14018":{"oreDict":["ingotTripleMagnesium"],"name":"三重镁锭","tr":"三重镁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14019":{"oreDict":["ingotTripleAluminium"],"name":"三重铝锭","tr":"三重铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14020":{"oreDict":["ingotTripleSilicon"],"name":"三重硅锭","tr":"三重硅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14025":{"oreDict":["ingotTriplePotassium"],"name":"三重钾锭","tr":"三重钾锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30409":{"oreDict":["cellBauxiteSlurry"],"name":"铝土泥浆单元","tr":"铝土泥浆单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30410":{"oreDict":["cellHeadedBauxiteSlurry"],"name":"热铝土泥浆单元","tr":"热铝土泥浆单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14027":{"oreDict":["ingotTripleScandium"],"name":"三重钪锭","tr":"三重钪锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30411":{"oreDict":["cellSluiceJuice"],"name":"废液单元","tr":"废液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14028":{"oreDict":["ingotTripleTitanium"],"name":"三重钛锭","tr":"三重钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14029":{"oreDict":["ingotTripleVanadium"],"name":"三重钒锭","tr":"三重钒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14030":{"oreDict":["ingotTripleChrome"],"name":"三重铬锭","tr":"三重铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14031":{"oreDict":["ingotTripleManganese"],"name":"三重锰锭","tr":"三重锰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30415":{"oreDict":["cellGreenSapphireJuice"],"name":"绿色蓝宝石汁单元","tr":"绿色蓝宝石汁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14032":{"oreDict":["ingotTripleIron"," ingotTripleAnyIron"],"name":"三重铁锭","tr":"三重铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30416":{"oreDict":["cellSapphireJuice"],"name":"蓝宝石汁单元","tr":"蓝宝石汁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14033":{"oreDict":["ingotTripleCobalt"],"name":"三重钴锭","tr":"三重钴锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30417":{"oreDict":["cellRubyJuice"],"name":"红宝石汁单元","tr":"红宝石汁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14034":{"oreDict":["ingotTripleNickel"],"name":"三重镍锭","tr":"三重镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14035":{"oreDict":["ingotTripleCopper"," ingotTripleAnyCopper"],"name":"三重铜锭","tr":"三重铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14036":{"oreDict":["ingotTripleZinc"],"name":"三重锌锭","tr":"三重锌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14037":{"oreDict":["ingotTripleGallium"],"name":"三重镓锭","tr":"三重镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14039":{"oreDict":["ingotTripleArsenic"],"name":"三重砷锭","tr":"三重砷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14043":{"oreDict":["ingotTripleRubidium"],"name":"三重铷锭","tr":"三重铷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14045":{"oreDict":["ingotTripleYttrium"],"name":"三重钇锭","tr":"三重钇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14047":{"oreDict":["ingotTripleNiobium"],"name":"三重铌锭","tr":"三重铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14048":{"oreDict":["ingotTripleMolybdenum"],"name":"三重钼锭","tr":"三重钼锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14052":{"oreDict":["ingotTriplePalladium"],"name":"三重钯锭","tr":"三重钯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14054":{"oreDict":["ingotTripleSilver"],"name":"三重银锭","tr":"三重银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14056":{"oreDict":["ingotTripleIndium"],"name":"三重铟锭","tr":"三重铟锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14057":{"oreDict":["ingotTripleTin"],"name":"三重锡锭","tr":"三重锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14058":{"oreDict":["ingotTripleAntimony"],"name":"三重锑锭","tr":"三重锑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14059":{"oreDict":["ingotTripleTellurium"],"name":"三重碲锭","tr":"三重碲锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14062":{"oreDict":["ingotTripleCaesium"],"name":"三重铯锭","tr":"三重铯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14063":{"oreDict":["ingotTripleBarium"],"name":"三重钡锭","tr":"三重钡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14064":{"oreDict":["ingotTripleLanthanum"],"name":"三重镧锭","tr":"三重镧锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14065":{"oreDict":["ingotTripleCerium"],"name":"三重铈锭","tr":"三重铈锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14066":{"oreDict":["ingotTriplePraseodymium"],"name":"三重镨锭","tr":"三重镨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14067":{"oreDict":["ingotTripleNeodymium"],"name":"三重钕锭","tr":"三重钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14068":{"oreDict":["ingotTriplePromethium"],"name":"三重钷锭","tr":"三重钷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14069":{"oreDict":["ingotTripleSamarium"],"name":"三重钐锭","tr":"三重钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14070":{"oreDict":["ingotTripleEuropium"],"name":"三重铕锭","tr":"三重铕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14071":{"oreDict":["ingotTripleGadolinium"],"name":"三重钆锭","tr":"三重钆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14072":{"oreDict":["ingotTripleTerbium"],"name":"三重铽锭","tr":"三重铽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14073":{"oreDict":["ingotTripleDysprosium"],"name":"三重镝锭","tr":"三重镝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14074":{"oreDict":["ingotTripleHolmium"],"name":"三重钬锭","tr":"三重钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14075":{"oreDict":["ingotTripleErbium"],"name":"三重铒锭","tr":"三重铒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14076":{"oreDict":["ingotTripleThulium"],"name":"三重铥锭","tr":"三重铥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30460":{"oreDict":["cellHydricSulfide"],"name":"硫化氢单元","tr":"硫化氢单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14077":{"oreDict":["ingotTripleYtterbium"],"name":"三重镱锭","tr":"三重镱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14078":{"oreDict":["ingotTripleLutetium"],"name":"三重镥锭","tr":"三重镥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14080":{"oreDict":["ingotTripleTantalum"],"name":"三重钽锭","tr":"三重钽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14081":{"oreDict":["ingotTripleTungsten"],"name":"三重钨锭","tr":"三重钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14083":{"oreDict":["ingotTripleOsmium"],"name":"三重锇锭","tr":"三重锇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14084":{"oreDict":["ingotTripleIridium"],"name":"三重铱锭","tr":"三重铱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14085":{"oreDict":["ingotTriplePlatinum"],"name":"三重铂锭","tr":"三重铂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14086":{"oreDict":["ingotTripleGold"],"name":"三重金锭","tr":"三重金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14089":{"oreDict":["ingotTripleLead"],"name":"三重铅锭","tr":"三重铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14090":{"oreDict":["ingotTripleBismuth"],"name":"三重铋锭","tr":"三重铋锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14096":{"oreDict":["ingotTripleThorium"],"name":"三重钍锭","tr":"三重钍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14097":{"oreDict":["ingotTripleUranium235"],"name":"三重铀-235锭","tr":"三重铀-235锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14098":{"oreDict":["ingotTripleUranium"],"name":"三重铀-238锭","tr":"三重铀-238锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14100":{"oreDict":["ingotTriplePlutonium"],"name":"三重钚-239锭","tr":"三重钚-239锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14101":{"oreDict":["ingotTriplePlutonium241"],"name":"三重钚-241锭","tr":"三重钚-241锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14103":{"oreDict":["ingotTripleAmericium"],"name":"三重镅锭","tr":"三重镅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22300":{"oreDict":["plateDenseBronze"," plateDenseAnyBronze"],"name":"致密青铜板","tr":"致密青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22301":{"oreDict":["plateDenseBrass"],"name":"致密黄铜板","tr":"致密黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30493":{"oreDict":["cellLiquidOxygen"],"name":"液氧单元","tr":"液氧单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22302":{"oreDict":["plateDenseInvar"],"name":"致密殷钢板","tr":"致密殷钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30494":{"oreDict":["cellLiquidNitrogen"],"name":"液氮单元","tr":"液氮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14111":{"oreDict":["ingotTripleTengamPurified"],"name":"三重纯镃锭","tr":"三重纯镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22303":{"oreDict":["plateDenseElectrum"],"name":"致密琥珀金板","tr":"致密琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30495":{"oreDict":["cellLiquidAir"],"name":"液态空气单元","tr":"液态空气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14112":{"oreDict":["ingotTripleTengamAttuned"],"name":"三重谐镃锭","tr":"三重谐镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22304":{"oreDict":["plateDenseWroughtIron"," plateDenseAnyIron"],"name":"致密锻铁板","tr":"致密锻铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30496":{"oreDict":["cellNobleGases"],"name":"稀有气体单元","tr":"稀有气体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22305":{"oreDict":["plateDenseSteel"],"name":"致密钢板","tr":"致密钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30497":{"oreDict":["cellCarbonDioxide"],"name":"二氧化碳单元","tr":"二氧化碳单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22306":{"oreDict":["plateDenseStainlessSteel"],"name":"致密不锈钢板","tr":"致密不锈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22307":{"oreDict":["plateDensePigIron"," plateDenseAnyIron"],"name":"致密生铁板","tr":"致密生铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22308":{"oreDict":["plateDenseRedAlloy"],"name":"致密红色合金板","tr":"致密红色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22309":{"oreDict":["plateDenseBlueAlloy"],"name":"致密蓝色合金板","tr":"致密蓝色合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22310":{"oreDict":["plateDenseCupronickel"],"name":"致密白铜板","tr":"致密白铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22311":{"oreDict":["plateDenseNichrome"],"name":"致密镍铬板","tr":"致密镍铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22312":{"oreDict":["plateDenseKanthal"],"name":"致密坎塔尔合金板","tr":"致密坎塔尔合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22313":{"oreDict":["plateDenseMagnalium"],"name":"致密镁铝合金板","tr":"致密镁铝合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22314":{"oreDict":["plateDenseSolderingAlloy"],"name":"致密焊锡板","tr":"致密焊锡板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22315":{"oreDict":["plateDenseBatteryAlloy"],"name":"致密电池合金板","tr":"致密电池合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22316":{"oreDict":["plateDenseTungstenSteel"],"name":"致密钨钢板","tr":"致密钨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22317":{"oreDict":["plateDenseOsmiridium"],"name":"致密铱锇合金板","tr":"致密铱锇合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22318":{"oreDict":["plateDenseSunnarium"],"name":"致密阳光化合物板","tr":"致密阳光化合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22319":{"oreDict":["plateDenseAdamantium"],"name":"致密精金板","tr":"致密精金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22320":{"oreDict":["plateDenseElectrumFlux"],"name":"致密通流琥珀金板","tr":"致密通流琥珀金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14129":{"oreDict":["ingotTripleNeutronium"],"name":"三重中子锭","tr":"三重中子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22321":{"oreDict":["plateDenseEnderium"],"name":"致密末影锭板","tr":"致密末影锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14131":{"oreDict":["ingotTripleSuperconductorUIVBase"],"name":"三重UIV超导粗胚锭","tr":"三重UIV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22323":{"oreDict":["plateDenseInfusedGold"],"name":"致密注魔金板","tr":"致密注魔金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30515":{"oreDict":["cellDilithium"],"name":"双锂单元","tr":"双锂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22324":{"oreDict":["plateDenseNaquadah"],"name":"致密硅岩板","tr":"致密硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22325":{"oreDict":["plateDenseNaquadahAlloy"],"name":"致密硅岩合金板","tr":"致密硅岩合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14134":{"oreDict":["ingotTripleSuperconductorUMVBase"],"name":"三重UMV超导粗胚锭","tr":"三重UMV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22326":{"oreDict":["plateDenseNaquadahEnriched"],"name":"致密富集硅岩板","tr":"致密富集硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30518":{"oreDict":["cellForcicium"],"name":"力之宝石单元","tr":"力之宝石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22327":{"oreDict":["plateDenseNaquadria"],"name":"致密超能硅岩板","tr":"致密超能硅岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30519":{"oreDict":["cellForcillium"],"name":"力场宝石单元","tr":"力场宝石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22328":{"oreDict":["plateDenseDuranium"],"name":"致密铿铀板","tr":"致密铿铀板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22329":{"oreDict":["plateDenseTritanium"],"name":"致密三钛板","tr":"致密三钛板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22330":{"oreDict":["plateDenseThaumium"],"name":"致密神秘锭板","tr":"致密神秘锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14139":{"oreDict":["ingotTripleUniversium"],"name":"三重宇宙素锭","tr":"三重宇宙素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22331":{"oreDict":["plateDenseMithril"],"name":"致密秘银板","tr":"致密秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14141":{"oreDict":["ingotTripleEternity"],"name":"三重永恒锭","tr":"三重永恒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22333":{"oreDict":["plateDenseAstralSilver"],"name":"致密星辰银板","tr":"致密星辰银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22334":{"oreDict":["plateDenseBlackSteel"],"name":"致密黑钢板","tr":"致密黑钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14143":{"oreDict":["ingotTripleMagmatter"],"name":"三重磁物质锭","tr":"三重磁物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22335":{"oreDict":["plateDenseDamascusSteel"],"name":"致密大马士革钢板","tr":"致密大马士革钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22336":{"oreDict":["plateDenseShadowIron"],"name":"致密暗影铁板","tr":"致密暗影铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22337":{"oreDict":["plateDenseShadowSteel"],"name":"致密暗影钢板","tr":"致密暗影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22338":{"oreDict":["plateDenseIronWood"],"name":"致密铁木板","tr":"致密铁木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22339":{"oreDict":["plateDenseSteeleaf"],"name":"致密钢叶板","tr":"致密钢叶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22340":{"oreDict":["plateDenseMeteoricIron"],"name":"致密陨铁板","tr":"致密陨铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22341":{"oreDict":["plateDenseMeteoricSteel"],"name":"致密陨钢板","tr":"致密陨钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22342":{"oreDict":["plateDenseDarkIron"],"name":"致密玄铁板","tr":"致密玄铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30534":{"oreDict":["cellTricalciumPhosphate"],"name":"磷酸三钙单元","tr":"磷酸三钙单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22343":{"oreDict":["plateDenseCobaltBrass"],"name":"致密钴黄铜板","tr":"致密钴黄铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22344":{"oreDict":["plateDenseUltimet"],"name":"致密哈氏合金板","tr":"致密哈氏合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22345":{"oreDict":["plateDenseAnnealedCopper"," plateDenseAnyCopper"],"name":"致密退火铜板","tr":"致密退火铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22346":{"oreDict":["plateDenseFierySteel"],"name":"致密炽热钢板","tr":"致密炽热钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22348":{"oreDict":["plateDenseRedSteel"],"name":"致密红钢板","tr":"致密红钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22349":{"oreDict":["plateDenseBlueSteel"],"name":"致密蓝钢板","tr":"致密蓝钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22350":{"oreDict":["plateDenseSterlingSilver"],"name":"致密标准纯银板","tr":"致密标准纯银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22351":{"oreDict":["plateDenseRoseGold"],"name":"致密玫瑰金板","tr":"致密玫瑰金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22352":{"oreDict":["plateDenseBlackBronze"],"name":"致密黑青铜板","tr":"致密黑青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22353":{"oreDict":["plateDenseBismuthBronze"],"name":"致密铋青铜板","tr":"致密铋青铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22354":{"oreDict":["plateDenseIronMagnetic"],"name":"致密磁化铁板","tr":"致密磁化铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22355":{"oreDict":["plateDenseSteelMagnetic"],"name":"致密磁化钢板","tr":"致密磁化钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22356":{"oreDict":["plateDenseNeodymiumMagnetic"],"name":"致密磁化钕板","tr":"致密磁化钕板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22357":{"oreDict":["plateDenseVanadiumGallium"],"name":"致密钒镓合金板","tr":"致密钒镓合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22358":{"oreDict":["plateDenseYttriumBariumCuprate"],"name":"致密钇钡铜氧合金板","tr":"致密钇钡铜氧合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22359":{"oreDict":["plateDenseNiobiumNitride"],"name":"致密氮化铌板","tr":"致密氮化铌板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22360":{"oreDict":["plateDenseNiobiumTitanium"],"name":"致密铌钛合金板","tr":"致密铌钛合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22361":{"oreDict":["plateDenseChromiumDioxide"],"name":"致密二氧化铬板","tr":"致密二氧化铬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22362":{"oreDict":["plateDenseKnightmetal"],"name":"致密骑士金属板","tr":"致密骑士金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30554":{"oreDict":["cellGrade1PurifiedWater"],"name":"1级净化水单元","tr":"1级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22363":{"oreDict":["plateDenseTinAlloy"],"name":"致密锡铁合金板","tr":"致密锡铁合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30555":{"oreDict":["cellGrade2PurifiedWater"],"name":"2级净化水单元","tr":"2级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22364":{"oreDict":["plateDenseDarkSteel"],"name":"致密玄钢板","tr":"致密玄钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30556":{"oreDict":["cellGrade3PurifiedWater"],"name":"3级净化水单元","tr":"3级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22365":{"oreDict":["plateDenseElectricalSteel"],"name":"致密磁钢板","tr":"致密磁钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30557":{"oreDict":["cellGrade4PurifiedWater"],"name":"4级净化水单元","tr":"4级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22366":{"oreDict":["plateDenseEnergeticAlloy"],"name":"致密充能合金板","tr":"致密充能合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30558":{"oreDict":["cellGrade5PurifiedWater"],"name":"5级净化水单元","tr":"5级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22367":{"oreDict":["plateDenseVibrantAlloy"],"name":"致密脉冲合金板","tr":"致密脉冲合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30559":{"oreDict":["cellGrade6PurifiedWater"],"name":"6级净化水单元","tr":"6级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22368":{"oreDict":["plateDenseShadow"],"name":"致密暗影板","tr":"致密暗影板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30560":{"oreDict":["cellGrade7PurifiedWater"],"name":"7级净化水单元","tr":"7级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22369":{"oreDict":["plateDenseConductiveIron"],"name":"致密导电铁板","tr":"致密导电铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30561":{"oreDict":["cellGrade8PurifiedWater"],"name":"8级净化水单元","tr":"8级净化水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22370":{"oreDict":["plateDenseTungstenCarbide"],"name":"致密碳化钨板","tr":"致密碳化钨板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22371":{"oreDict":["plateDenseVanadiumSteel"],"name":"致密钒钢板","tr":"致密钒钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22372":{"oreDict":["plateDenseHSSG"],"name":"致密高速钢-G板","tr":"致密高速钢-G板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22373":{"oreDict":["plateDenseHSSE"],"name":"致密高速钢-E板","tr":"致密高速钢-E板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22374":{"oreDict":["plateDenseHSSS"],"name":"致密高速钢-S板","tr":"致密高速钢-S板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30567":{"oreDict":["cellAdvancedGlue"],"name":"高级胶水单元","tr":"高级胶水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22378":{"oreDict":["plateDensePulsatingIron"],"name":"致密脉冲铁板","tr":"致密脉冲铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22379":{"oreDict":["plateDenseSoularium"],"name":"致密魂金板","tr":"致密魂金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22380":{"oreDict":["plateDenseEnderiumBase"],"name":"致密末影粗胚板","tr":"致密末影粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22381":{"oreDict":["plateDenseRedstoneAlloy"],"name":"致密红石合金板","tr":"致密红石合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22382":{"oreDict":["plateDenseArdite"],"name":"致密阿迪特板","tr":"致密阿迪特板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22383":{"oreDict":["plateDenseReinforced"],"name":"致密强化金属板","tr":"致密强化金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22384":{"oreDict":["plateDenseGalgadorian"],"name":"致密混合晶锭板","tr":"致密混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22385":{"oreDict":["plateDenseEnhancedGalgadorian"],"name":"致密强化混合晶锭板","tr":"致密强化混合晶锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22386":{"oreDict":["plateDenseManyullyn"],"name":"致密玛玉灵板","tr":"致密玛玉灵板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22387":{"oreDict":["plateDenseMytryl"],"name":"致密深空秘银板","tr":"致密深空秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22388":{"oreDict":["plateDenseBlackPlutonium"],"name":"致密黑钚板","tr":"致密黑钚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22389":{"oreDict":["plateDenseCallistoIce"],"name":"致密木卫四冰板","tr":"致密木卫四冰板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22390":{"oreDict":["plateDenseLedox"],"name":"致密深铅板","tr":"致密深铅板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22391":{"oreDict":["plateDenseQuantium"],"name":"致密量子锭板","tr":"致密量子锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22392":{"oreDict":["plateDenseDuralumin"],"name":"致密硬铝板","tr":"致密硬铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30584":{"oreDict":["cellRawStarMatter"],"name":"浓缩原始恒星等离子体混合物单元","tr":"浓缩原始恒星等离子体混合物单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14201":{"oreDict":["ingotTripleManasteel"],"name":"三重魔钢锭","tr":"三重魔钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22393":{"oreDict":["plateDenseOriharukon"],"name":"致密奥利哈钢板","tr":"致密奥利哈钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14202":{"oreDict":["ingotTripleTerrasteel"],"name":"三重泰拉钢锭","tr":"三重泰拉钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22394":{"oreDict":["plateDenseInfinityCatalyst"],"name":"致密无尽催化剂板","tr":"致密无尽催化剂板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14203":{"oreDict":["ingotTripleElvenElementium"],"name":"三重源质钢锭","tr":"三重源质钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22395":{"oreDict":["plateDenseBedrockium"],"name":"致密基岩板","tr":"致密基岩板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30587":{"oreDict":["celltemporalFluid"],"name":"富快子时间流体单元","tr":"富快子时间流体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14205":{"oreDict":["ingotTripleGaiaSpirit"],"name":"三重盖亚之魂锭","tr":"三重盖亚之魂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22397":{"oreDict":["plateDenseInfinity"],"name":"致密无尽板","tr":"致密无尽板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30589":{"oreDict":["cellDimensionallyTranscendentResidue"],"name":"超维度残留单元","tr":"超维度残留单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22398":{"oreDict":["plateDenseMysteriousCrystal"],"name":"致密神秘水晶板","tr":"致密神秘水晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22399":{"oreDict":["plateDenseSamariumMagnetic"],"name":"致密磁化钐板","tr":"致密磁化钐板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22400":{"oreDict":["plateDenseAlumite"],"name":"致密耐酸铝板","tr":"致密耐酸铝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30592":{"oreDict":["cell2Nitrochlorobenzene"],"name":"2-硝基氯苯单元","tr":"2-硝基氯苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22401":{"oreDict":["plateDenseEndSteel"],"name":"致密末影钢板","tr":"致密末影钢板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30593":{"oreDict":["cellDimethylbenzene"],"name":"邻二甲苯单元","tr":"邻二甲苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22402":{"oreDict":["plateDenseCrudeSteel"],"name":"致密复合粘土板","tr":"致密复合粘土板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22403":{"oreDict":["plateDenseCrystallineAlloy"],"name":"致密晶化合金板","tr":"致密晶化合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30595":{"oreDict":["cellphtalicacid"],"name":"邻苯二甲酸单元","tr":"邻苯二甲酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22404":{"oreDict":["plateDenseMelodicAlloy"],"name":"致密旋律合金板","tr":"致密旋律合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30596":{"oreDict":["cell3","3Dichlorobenzidine"],"name":"3,3\u0027-二氯联苯胺单元","tr":"3,3\u0027-二氯联苯胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22405":{"oreDict":["plateDenseStellarAlloy"],"name":"致密恒星合金板","tr":"致密恒星合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30597":{"oreDict":["cell3","3Diaminobenzidine"],"name":"3,3\u0027-二氨基联苯胺单元","tr":"3,3\u0027-二氨基联苯胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22406":{"oreDict":["plateDenseCrystallinePinkSlime"],"name":"致密晶化粉红史莱姆板","tr":"致密晶化粉红史莱姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30598":{"oreDict":["cellDiphenylIsophtalate"],"name":"间苯二甲酸二苯酯单元","tr":"间苯二甲酸二苯酯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22407":{"oreDict":["plateDenseEnergeticSilver"],"name":"致密充能银板","tr":"致密充能银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22408":{"oreDict":["plateDenseVividAlloy"],"name":"致密生动合金板","tr":"致密生动合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30600":{"oreDict":["cellFluidNaqudahFuel"],"name":"硅岩燃料单元","tr":"硅岩燃料单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30601":{"oreDict":["cellEnrichedNaquadria"],"name":"富集超能硅岩单元","tr":"富集超能硅岩单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30603":{"oreDict":["cellBioMediumRaw"],"name":"生物培养基原液单元","tr":"生物培养基原液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30604":{"oreDict":["cellBiohMediumSterilized"],"name":"灭菌生物培养基单元","tr":"灭菌生物培养基单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30605":{"oreDict":["cellChlorobenzene"],"name":"氯苯单元","tr":"氯苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30606":{"oreDict":["cellDilutedHydrochloricAcid_GT5U"],"name":"稀盐酸单元","tr":"稀盐酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30608":{"oreDict":["cellGrowthMediumRaw"],"name":"培养基原液单元","tr":"培养基原液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30609":{"oreDict":["cellGrowthMediumSterilized"],"name":"无菌培养基单元","tr":"无菌培养基单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30627":{"oreDict":["cellBioDiesel"],"name":"生物柴油单元","tr":"生物柴油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30628":{"oreDict":["cellNitrationMixture"],"name":"硝酸混酸单元","tr":"硝酸混酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30629":{"oreDict":["cellGlycerol"],"name":"甘油单元","tr":"甘油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30632":{"oreDict":["cellDichlorobenzene"],"name":"对二氯苯单元","tr":"对二氯苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30637":{"oreDict":["cellStyrene"],"name":"苯乙烯单元","tr":"苯乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30638":{"oreDict":["cellIsoprene"],"name":"异戊二烯单元","tr":"异戊二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30639":{"oreDict":["cellTetranitromethane"],"name":"四硝基甲烷单元","tr":"四硝基甲烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30640":{"oreDict":["cellDilutedSulfuricAcid"],"name":"稀硫酸单元","tr":"稀硫酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30641":{"oreDict":["cellEthenone"],"name":"乙烯酮单元","tr":"乙烯酮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30642":{"oreDict":["cellEthane"],"name":"乙烷单元","tr":"乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30643":{"oreDict":["cellPropane"],"name":"丙烷单元","tr":"丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30644":{"oreDict":["cellButane"],"name":"丁烷单元","tr":"丁烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30645":{"oreDict":["cellButene"],"name":"丁烯单元","tr":"丁烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30646":{"oreDict":["cellButadiene"],"name":"丁二烯单元","tr":"丁二烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30647":{"oreDict":["cellToluene"],"name":"甲苯单元","tr":"甲苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30648":{"oreDict":["cellEpichlorohydrin"],"name":"环氧氯丙烷单元","tr":"环氧氯丙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30650":{"oreDict":["cellVinylChloride"],"name":"氯乙烯单元","tr":"氯乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30651":{"oreDict":["cellSulfurDioxide"],"name":"二氧化硫单元","tr":"二氧化硫单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30652":{"oreDict":["cellSulfurTrioxide"],"name":"三氧化硫单元","tr":"三氧化硫单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30653":{"oreDict":["cellNitricAcid"],"name":"硝酸单元","tr":"硝酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30654":{"oreDict":["cell1","1Dimethylhydrazine"],"name":"偏二甲肼单元","tr":"偏二甲肼单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30655":{"oreDict":["cellChloramine"],"name":"氯胺单元","tr":"氯胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30656":{"oreDict":["cellDimethylamine"],"name":"二甲胺单元","tr":"二甲胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30657":{"oreDict":["cellDinitrogenTetroxide"],"name":"四氧化二氮单元","tr":"四氧化二氮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30658":{"oreDict":["cellNitricOxide"],"name":"一氧化氮单元","tr":"一氧化氮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30659":{"oreDict":["cellAmmonia"],"name":"氨单元","tr":"氨单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30660":{"oreDict":["cellWoodGas"],"name":"木炭气单元","tr":"木炭气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30661":{"oreDict":["cellWoodVinegar"],"name":"木醋酸单元","tr":"木醋酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22470":{"oreDict":["plateDenseEpoxid"],"name":"致密环氧树脂片","tr":"致密环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30662":{"oreDict":["cellWoodTar"],"name":"木焦油单元","tr":"木焦油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22471":{"oreDict":["plateDenseSilicone"," plateDenseAnyRubber"," plateDenseAnySyntheticRubber"],"name":"致密硅橡胶片","tr":"致密硅橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30663":{"oreDict":["cellDimethyldichlorosilane"],"name":"二甲基氯硅烷单元","tr":"二甲基氯硅烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22472":{"oreDict":["plateDensePolycaprolactam"],"name":"致密聚己内酰胺片","tr":"致密聚己内酰胺片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30664":{"oreDict":["cellChloromethane"],"name":"氯甲烷单元","tr":"氯甲烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22473":{"oreDict":["plateDensePolytetrafluoroethylene"],"name":"致密聚四氟乙烯片","tr":"致密聚四氟乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30665":{"oreDict":["cellPhosphorousPentoxide"],"name":"五氧化二磷单元","tr":"五氧化二磷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30666":{"oreDict":["cellTetrafluoroethylene"],"name":"四氟乙烯单元","tr":"四氟乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30667":{"oreDict":["cellHydrofluoricAcid_GT5U"],"name":"氢氟酸单元","tr":"氢氟酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30668":{"oreDict":["cellChloroform"],"name":"氯仿单元","tr":"氯仿单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30669":{"oreDict":["cellBisphenolA"],"name":"双酚A单元","tr":"双酚A单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30670":{"oreDict":["cellAceticAcid"],"name":"乙酸单元","tr":"乙酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30671":{"oreDict":["cellCalciumAcetateSolution"],"name":"乙酸钙溶液单元","tr":"乙酸钙溶液单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30672":{"oreDict":["cellAcetone"],"name":"丙酮单元","tr":"丙酮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30673":{"oreDict":["cellMethanol"],"name":"甲醇单元","tr":"甲醇单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30674":{"oreDict":["cellCarbonMonoxide"],"name":"一氧化碳单元","tr":"一氧化碳单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30675":{"oreDict":["cellCharcoalByproducts"],"name":"木炭副产单元","tr":"木炭副产单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22485":{"oreDict":["plateDenseAlduorite"],"name":"致密神秘蓝金板","tr":"致密神秘蓝金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30677":{"oreDict":["cellEthylene"],"name":"乙烯单元","tr":"乙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30678":{"oreDict":["cellPropene"],"name":"丙烯单元","tr":"丙烯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30679":{"oreDict":["cellVinylAcetate"],"name":"乙酸乙烯酯单元","tr":"乙酸乙烯酯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22488":{"oreDict":["plateDenseRubracium"],"name":"致密褐铜板","tr":"致密褐铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30680":{"oreDict":["cellPolyvinylAcetate"],"name":"聚乙酸乙烯酯单元","tr":"聚乙酸乙烯酯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22489":{"oreDict":["plateDenseVulcanite"],"name":"致密胶木板","tr":"致密胶木板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30681":{"oreDict":["cellMethylAcetate"],"name":"乙酸甲酯单元","tr":"乙酸甲酯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30682":{"oreDict":["cellAllylChloride"],"name":"烯丙基氯单元","tr":"烯丙基氯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30683":{"oreDict":["cellHydrochloricAcid_GT5U"],"name":"氢氯酸单元","tr":"氢氯酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14300":{"oreDict":["ingotTripleBronze"," ingotTripleAnyBronze"],"name":"三重青铜锭","tr":"三重青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30684":{"oreDict":["cellHypochlorousAcid"],"name":"次氯酸单元","tr":"次氯酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14301":{"oreDict":["ingotTripleBrass"],"name":"三重黄铜锭","tr":"三重黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14302":{"oreDict":["ingotTripleInvar"],"name":"三重殷钢锭","tr":"三重殷钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30686":{"oreDict":["cellBenzene"],"name":"苯单元","tr":"苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14303":{"oreDict":["ingotTripleElectrum"],"name":"三重琥珀金锭","tr":"三重琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30687":{"oreDict":["cellPhenol"],"name":"苯酚单元","tr":"苯酚单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14304":{"oreDict":["ingotTripleAnyIron"," ingotTripleWroughtIron"],"name":"三重锻铁锭","tr":"三重锻铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30688":{"oreDict":["cellIsopropylbenzene"],"name":"异丙苯单元","tr":"异丙苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14305":{"oreDict":["ingotTripleSteel"],"name":"三重钢锭","tr":"三重钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30689":{"oreDict":["cellPhosphoricAcid_GT5U"],"name":"磷酸单元","tr":"磷酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14306":{"oreDict":["ingotTripleStainlessSteel"],"name":"三重不锈钢锭","tr":"三重不锈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14307":{"oreDict":["ingotTripleAnyIron"," ingotTriplePigIron"],"name":"三重生铁锭","tr":"三重生铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30691":{"oreDict":["cellFermentedBiomass"],"name":"发酵生物质单元","tr":"发酵生物质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14308":{"oreDict":["ingotTripleRedAlloy"],"name":"三重红色合金锭","tr":"三重红色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30692":{"oreDict":["cellSaltWater"],"name":"盐水单元","tr":"盐水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14309":{"oreDict":["ingotTripleBlueAlloy"],"name":"三重蓝色合金锭","tr":"三重蓝色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30693":{"oreDict":["cellIronIIIChloride"],"name":"三氯化铁单元","tr":"三氯化铁单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14310":{"oreDict":["ingotTripleCupronickel"],"name":"三重白铜锭","tr":"三重白铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30694":{"oreDict":["celllifeessence"],"name":"生命本质单元","tr":"生命本质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14311":{"oreDict":["ingotTripleNichrome"],"name":"三重镍铬锭","tr":"三重镍铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14312":{"oreDict":["ingotTripleKanthal"],"name":"三重坎塔尔合金锭","tr":"三重坎塔尔合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14313":{"oreDict":["ingotTripleMagnalium"],"name":"三重镁铝合金锭","tr":"三重镁铝合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14314":{"oreDict":["ingotTripleSolderingAlloy"],"name":"三重焊锡锭","tr":"三重焊锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14315":{"oreDict":["ingotTripleBatteryAlloy"],"name":"三重电池合金锭","tr":"三重电池合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14316":{"oreDict":["ingotTripleTungstenSteel"],"name":"三重钨钢锭","tr":"三重钨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14317":{"oreDict":["ingotTripleOsmiridium"],"name":"三重铱锇合金锭","tr":"三重铱锇合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14318":{"oreDict":["ingotTripleSunnarium"],"name":"三重阳光化合物锭","tr":"三重阳光化合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30702":{"oreDict":["cellIce"],"name":"冰单元","tr":"冰单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14319":{"oreDict":["ingotTripleAdamantium"],"name":"三重精金锭","tr":"三重精金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14320":{"oreDict":["ingotTripleElectrumFlux"],"name":"三重通流琥珀金锭","tr":"三重通流琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30704":{"oreDict":["cellBiomass"],"name":"生物质单元","tr":"生物质单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14321":{"oreDict":["ingotTripleEnderium"],"name":"三重末影锭","tr":"三重末影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30705":{"oreDict":["cellBioFuel"],"name":"生物燃油单元","tr":"生物燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30706":{"oreDict":["cellEthanol"],"name":"乙醇单元","tr":"乙醇单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14323":{"oreDict":["ingotTripleInfusedGold"],"name":"三重注魔金锭","tr":"三重注魔金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30707":{"oreDict":["cellOil"],"name":"石油单元","tr":"石油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14324":{"oreDict":["ingotTripleNaquadah"],"name":"三重硅岩锭","tr":"三重硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30708":{"oreDict":["cellFuel"],"name":"柴油单元","tr":"柴油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14325":{"oreDict":["ingotTripleNaquadahAlloy"],"name":"三重硅岩合金锭","tr":"三重硅岩合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30709":{"oreDict":["cellNitroFuel"],"name":"高十六烷值柴油单元","tr":"高十六烷值柴油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14326":{"oreDict":["ingotTripleNaquadahEnriched"],"name":"三重富集硅岩锭","tr":"三重富集硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14327":{"oreDict":["ingotTripleNaquadria"],"name":"三重超能硅岩锭","tr":"三重超能硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30711":{"oreDict":["cellFishOil"],"name":"鱼油单元","tr":"鱼油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14328":{"oreDict":["ingotTripleDuranium"],"name":"三重铿铀锭","tr":"三重铿铀锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30712":{"oreDict":["cellCreosote"],"name":"杂酚油单元","tr":"杂酚油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14329":{"oreDict":["ingotTripleTritanium"],"name":"三重三钛锭","tr":"三重三钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22521":{"oreDict":["plateDenseForce"],"name":"致密力量板","tr":"致密力量板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30713":{"oreDict":["cellSeedOil"],"name":"种子油单元","tr":"种子油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14330":{"oreDict":["ingotTripleThaumium"],"name":"三重神秘锭","tr":"三重神秘锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30714":{"oreDict":["cellGlyceryl"],"name":"硝化甘油单元","tr":"硝化甘油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14331":{"oreDict":["ingotTripleMithril"],"name":"三重秘银锭","tr":"三重秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30715":{"oreDict":["cellMethane"],"name":"甲烷单元","tr":"甲烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30716":{"oreDict":["cellNitroCarbon"],"name":"碳化氮单元","tr":"碳化氮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14333":{"oreDict":["ingotTripleAstralSilver"],"name":"三重星辰银锭","tr":"三重星辰银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30717":{"oreDict":["cellNitrogenDioxide"],"name":"二氧化氮单元","tr":"二氧化氮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14334":{"oreDict":["ingotTripleBlackSteel"],"name":"三重黑钢锭","tr":"三重黑钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30718":{"oreDict":["cellSodiumPersulfate"],"name":"过硫酸钠单元","tr":"过硫酸钠单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14335":{"oreDict":["ingotTripleDamascusSteel"],"name":"三重大马士革钢锭","tr":"三重大马士革钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14336":{"oreDict":["ingotTripleShadowIron"],"name":"三重暗影铁锭","tr":"三重暗影铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30720":{"oreDict":["cellSulfuricAcid"],"name":"硫酸单元","tr":"硫酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14337":{"oreDict":["ingotTripleShadowSteel"],"name":"三重暗影钢锭","tr":"三重暗影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22529":{"oreDict":["plateDenseVinteum"],"name":"致密温特姆板","tr":"致密温特姆板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30721":{"oreDict":["cellUUAmplifier"],"name":"UU增幅液体单元","tr":"UU增幅液体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14338":{"oreDict":["ingotTripleIronWood"],"name":"三重铁木锭","tr":"三重铁木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30722":{"oreDict":["cellSeedOilHemp"],"name":"大麻籽油单元","tr":"大麻籽油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14339":{"oreDict":["ingotTripleSteeleaf"],"name":"三重钢叶","tr":"三重钢叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30723":{"oreDict":["cellSeedOilLin"],"name":"亚麻籽油单元","tr":"亚麻籽油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14340":{"oreDict":["ingotTripleMeteoricIron"],"name":"三重陨铁锭","tr":"三重陨铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30724":{"oreDict":["cellLubricant"],"name":"润滑油单元","tr":"润滑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14341":{"oreDict":["ingotTripleMeteoricSteel"],"name":"三重陨钢锭","tr":"三重陨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30725":{"oreDict":["cellHoney"],"name":"蜂蜜单元","tr":"蜂蜜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14342":{"oreDict":["ingotTripleDarkIron"],"name":"三重玄铁锭","tr":"三重玄铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30726":{"oreDict":["cellGlue"],"name":"精制胶水单元","tr":"精制胶水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14343":{"oreDict":["ingotTripleCobaltBrass"],"name":"三重钴黄铜锭","tr":"三重钴黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30727":{"oreDict":["cellFryingOilHot"],"name":"热煎炸油单元","tr":"热煎炸油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14344":{"oreDict":["ingotTripleUltimet"],"name":"三重哈氏合金锭","tr":"三重哈氏合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30728":{"oreDict":["cellSnow"],"name":"雪单元","tr":"雪单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14345":{"oreDict":["ingotTripleAnnealedCopper"," ingotTripleAnyCopper"],"name":"三重退火铜锭","tr":"三重退火铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30729":{"oreDict":["cellHolyWater"],"name":"圣水单元","tr":"圣水单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14346":{"oreDict":["ingotTripleFierySteel"],"name":"三重炽热钢锭","tr":"三重炽热钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30730":{"oreDict":["cellOilHeavy"],"name":"重油单元","tr":"重油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30731":{"oreDict":["cellOilMedium"],"name":"原油单元","tr":"原油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14348":{"oreDict":["ingotTripleRedSteel"],"name":"三重红钢锭","tr":"三重红钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30732":{"oreDict":["cellOilLight"],"name":"轻油单元","tr":"轻油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14349":{"oreDict":["ingotTripleBlueSteel"],"name":"三重蓝钢锭","tr":"三重蓝钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30733":{"oreDict":["cellNatruralGas"],"name":"天然气单元","tr":"天然气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14350":{"oreDict":["ingotTripleSterlingSilver"],"name":"三重标准纯银锭","tr":"三重标准纯银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30734":{"oreDict":["cellSulfuricGas"],"name":"含硫炼油气单元","tr":"含硫炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14351":{"oreDict":["ingotTripleRoseGold"],"name":"三重玫瑰金锭","tr":"三重玫瑰金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30735":{"oreDict":["cellGas"],"name":"炼油气单元","tr":"炼油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14352":{"oreDict":["ingotTripleBlackBronze"],"name":"三重黑青铜锭","tr":"三重黑青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30736":{"oreDict":["cellSulfuricNaphtha"],"name":"含硫石脑油单元","tr":"含硫石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14353":{"oreDict":["ingotTripleBismuthBronze"],"name":"三重铋青铜锭","tr":"三重铋青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30737":{"oreDict":["cellSulfuricLightFuel"],"name":"含硫轻燃油单元","tr":"含硫轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14354":{"oreDict":["ingotTripleIronMagnetic"],"name":"三重磁化铁锭","tr":"三重磁化铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30738":{"oreDict":["cellSulfuricHeavyFuel"],"name":"含硫重燃油单元","tr":"含硫重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14355":{"oreDict":["ingotTripleSteelMagnetic"],"name":"三重磁化钢锭","tr":"三重磁化钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30739":{"oreDict":["cellNaphtha"],"name":"石脑油单元","tr":"石脑油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14356":{"oreDict":["ingotTripleNeodymiumMagnetic"],"name":"三重磁化钕锭","tr":"三重磁化钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30740":{"oreDict":["cellLightFuel"],"name":"轻燃油单元","tr":"轻燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14357":{"oreDict":["ingotTripleVanadiumGallium"],"name":"三重钒镓合金锭","tr":"三重钒镓合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30741":{"oreDict":["cellHeavyFuel"],"name":"重燃油单元","tr":"重燃油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14358":{"oreDict":["ingotTripleYttriumBariumCuprate"],"name":"三重钇钡铜氧合金锭","tr":"三重钇钡铜氧合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30742":{"oreDict":["cellLPG"],"name":"液化石油气单元","tr":"液化石油气单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14359":{"oreDict":["ingotTripleNiobiumNitride"],"name":"三重氮化铌锭","tr":"三重氮化铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30743":{"oreDict":["cellRedMud"],"name":"赤泥单元","tr":"赤泥单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14360":{"oreDict":["ingotTripleNiobiumTitanium"],"name":"三重铌钛合金锭","tr":"三重铌钛合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14361":{"oreDict":["ingotTripleChromiumDioxide"],"name":"三重二氧化铬锭","tr":"三重二氧化铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30745":{"oreDict":["cellDimensionallyTranscendentExoticCatalyst"],"name":"异星超维度催化剂单元","tr":"异星超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14362":{"oreDict":["ingotTripleKnightmetal"],"name":"三重骑士金属锭","tr":"三重骑士金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30746":{"oreDict":["cellDimensionallyTranscendentResplendentCatalyst"],"name":"光辉超维度催化剂单元","tr":"光辉超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14363":{"oreDict":["ingotTripleTinAlloy"],"name":"三重锡铁合金锭","tr":"三重锡铁合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30747":{"oreDict":["cellDimensionallyTranscendentProsaicCatalyst"],"name":"平凡超维度催化剂单元","tr":"平凡超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14364":{"oreDict":["ingotTripleDarkSteel"],"name":"三重玄钢锭","tr":"三重玄钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30748":{"oreDict":["cellDimensionallyTranscendentCrudeCatalyst"],"name":"粗制超维度催化剂单元","tr":"粗制超维度催化剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14365":{"oreDict":["ingotTripleElectricalSteel"],"name":"三重磁钢锭","tr":"三重磁钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14366":{"oreDict":["ingotTripleEnergeticAlloy"],"name":"三重充能合金锭","tr":"三重充能合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30750":{"oreDict":["cellTrimethylBorate"],"name":"硼酸三甲酯单元","tr":"硼酸三甲酯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14367":{"oreDict":["ingotTripleVibrantAlloy"],"name":"三重脉冲合金锭","tr":"三重脉冲合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14368":{"oreDict":["ingotTripleShadow"],"name":"三重暗影锭","tr":"三重暗影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30752":{"oreDict":["cellPhosphorusTrichloride"],"name":"三氯化磷单元","tr":"三氯化磷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14369":{"oreDict":["ingotTripleConductiveIron"],"name":"三重导电铁锭","tr":"三重导电铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14370":{"oreDict":["ingotTripleTungstenCarbide"],"name":"三重碳化钨锭","tr":"三重碳化钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14371":{"oreDict":["ingotTripleVanadiumSteel"],"name":"三重钒钢锭","tr":"三重钒钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14372":{"oreDict":["ingotTripleHSSG"],"name":"三重高速钢-G锭","tr":"三重高速钢-G锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14373":{"oreDict":["ingotTripleHSSE"],"name":"三重高速钢-E锭","tr":"三重高速钢-E锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14374":{"oreDict":["ingotTripleHSSS"],"name":"三重高速钢-S锭","tr":"三重高速钢-S锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30760":{"oreDict":["cellNaphthenicAcid"],"name":"环烷酸单元","tr":"环烷酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14378":{"oreDict":["ingotTriplePulsatingIron"],"name":"三重脉冲铁锭","tr":"三重脉冲铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30762":{"oreDict":["cell1","4Dimethylbenzene"],"name":"对二甲苯单元","tr":"对二甲苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14379":{"oreDict":["ingotTripleSoularium"],"name":"三重魂金锭","tr":"三重魂金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30763":{"oreDict":["cell1","3Dimethylbenzene"],"name":"间二甲苯单元","tr":"间二甲苯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14380":{"oreDict":["ingotTripleEnderiumBase"],"name":"三重末影粗胚锭","tr":"三重末影粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30764":{"oreDict":["cellTerephthalicAcid"],"name":"对苯二甲酸单元","tr":"对苯二甲酸单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14381":{"oreDict":["ingotTripleRedstoneAlloy"],"name":"三重红石合金锭","tr":"三重红石合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14382":{"oreDict":["ingotTripleArdite"],"name":"三重阿迪特锭","tr":"三重阿迪特锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30766":{"oreDict":["cellDimethylTerephthalate"],"name":"对苯二甲酸二甲酯单元","tr":"对苯二甲酸二甲酯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14383":{"oreDict":["ingotTripleReinforced"],"name":"三重强化金属锭","tr":"三重强化金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30767":{"oreDict":["cellSulfurDichloride"],"name":"二氯化硫单元","tr":"二氯化硫单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14384":{"oreDict":["ingotTripleGalgadorian"],"name":"三重混合晶锭","tr":"三重混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22576":{"oreDict":["plateDenseTPVAlloy"],"name":"致密钛铂钒合金板","tr":"致密钛铂钒合金板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30768":{"oreDict":["cellThionylChloride"],"name":"氯化亚砜单元","tr":"氯化亚砜单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14385":{"oreDict":["ingotTripleEnhancedGalgadorian"],"name":"三重强化混合晶锭","tr":"三重强化混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14386":{"oreDict":["ingotTripleManyullyn"],"name":"三重玛玉灵锭","tr":"三重玛玉灵锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14387":{"oreDict":["ingotTripleMytryl"],"name":"三重深空秘银锭","tr":"三重深空秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14388":{"oreDict":["ingotTripleBlackPlutonium"],"name":"三重黑钚锭","tr":"三重黑钚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14389":{"oreDict":["ingotTripleCallistoIce"],"name":"三重木卫四冰锭","tr":"三重木卫四冰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22581":{"oreDict":["plateDenseTranscendentMetal"],"name":"致密超时空金属板","tr":"致密超时空金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14390":{"oreDict":["ingotTripleLedox"],"name":"三重深铅锭","tr":"三重深铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22582":{"oreDict":["plateDenseEnrichedHolmium"],"name":"致密富集钬板","tr":"致密富集钬板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30774":{"oreDict":["cellLiquidCrystalKevlar"],"name":"液晶凯芙拉单元","tr":"液晶凯芙拉单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14391":{"oreDict":["ingotTripleQuantium"],"name":"三重量子锭","tr":"三重量子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22583":{"oreDict":["plateDenseMagnetohydrodynamicallyConstrainedStarMatter"],"name":"致密磁流体约束恒星物质板","tr":"致密磁流体约束恒星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14392":{"oreDict":["ingotTripleDuralumin"],"name":"三重硬铝锭","tr":"三重硬铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30776":{"oreDict":["cellGammaButyrolactone"],"name":"γ-丁内酯单元","tr":"γ-丁内酯单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14393":{"oreDict":["ingotTripleOriharukon"],"name":"三重奥利哈钢锭","tr":"三重奥利哈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22585":{"oreDict":["plateDenseWhiteDwarfMatter"],"name":"致密白矮星物质板","tr":"致密白矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30777":{"oreDict":["cellTrimethylamine"],"name":"三甲胺单元","tr":"三甲胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14394":{"oreDict":["ingotTripleInfinityCatalyst"],"name":"三重无尽催化剂锭","tr":"三重无尽催化剂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22586":{"oreDict":["plateDenseBlackDwarfMatter"],"name":"致密黑矮星物质板","tr":"致密黑矮星物质板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30778":{"oreDict":["cellMethylamine"],"name":"甲胺单元","tr":"甲胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14395":{"oreDict":["ingotTripleBedrockium"],"name":"三重基岩锭","tr":"三重基岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22588":{"oreDict":["plateDenseSpaceTime"],"name":"致密时空板","tr":"致密时空板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30780":{"oreDict":["cell4Nitroaniline"],"name":"4-硝基苯胺单元","tr":"4-硝基苯胺单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14397":{"oreDict":["ingotTripleInfinity"],"name":"三重无尽锭","tr":"三重无尽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30781":{"oreDict":["cellAcetylene"],"name":"乙炔单元","tr":"乙炔单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14398":{"oreDict":["ingotTripleMysteriousCrystal"],"name":"三重神秘水晶锭","tr":"三重神秘水晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14399":{"oreDict":["ingotTripleSamariumMagnetic"],"name":"三重磁化钐锭","tr":"三重磁化钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30783":{"oreDict":["cellNMethylpyrolidone"],"name":"N-甲基吡咯烷酮单元","tr":"N-甲基吡咯烷酮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14400":{"oreDict":["ingotTripleAlumite"],"name":"三重耐酸铝锭","tr":"三重耐酸铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30784":{"oreDict":["cellPolyurethaneResin"],"name":"聚氨酯树脂单元","tr":"聚氨酯树脂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14401":{"oreDict":["ingotTripleEndSteel"],"name":"三重末影钢锭","tr":"三重末影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14402":{"oreDict":["ingotTripleCrudeSteel"],"name":"三重复合粘土锭","tr":"三重复合粘土锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30786":{"oreDict":["cellAcetaldehyde"],"name":"乙醛单元","tr":"乙醛单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14403":{"oreDict":["ingotTripleCrystallineAlloy"],"name":"三重晶化合金锭","tr":"三重晶化合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30787":{"oreDict":["cellEthyleneGlycol"],"name":"乙二醇单元","tr":"乙二醇单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14404":{"oreDict":["ingotTripleMelodicAlloy"],"name":"三重旋律合金锭","tr":"三重旋律合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30788":{"oreDict":["cellSiliconOil"],"name":"硅油单元","tr":"硅油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14405":{"oreDict":["ingotTripleStellarAlloy"],"name":"三重恒星合金锭","tr":"三重恒星合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30789":{"oreDict":["cellEthyleneOxide"],"name":"环氧乙烷单元","tr":"环氧乙烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14406":{"oreDict":["ingotTripleCrystallinePinkSlime"],"name":"三重晶化粉红史莱姆锭","tr":"三重晶化粉红史莱姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14407":{"oreDict":["ingotTripleEnergeticSilver"],"name":"三重充能银锭","tr":"三重充能银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22599":{"oreDict":["plateDensePolybenzimidazole"],"name":"致密聚苯并咪唑板","tr":"致密聚苯并咪唑板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30791":{"oreDict":["cellNickelTetracarbonyl"],"name":"四羰基镍单元","tr":"四羰基镍单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14408":{"oreDict":["ingotTripleVividAlloy"],"name":"三重生动合金锭","tr":"三重生动合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30792":{"oreDict":["cellIsobutyraldehyde"],"name":"异丁醛单元","tr":"异丁醛单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30793":{"oreDict":["cellButyraldehyde"],"name":"丁醛单元","tr":"丁醛单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30794":{"oreDict":["cellDiphenylmethaneDiisocyanateMixture"],"name":"二苯基甲烷二异氰酸酯混合物单元","tr":"二苯基甲烷二异氰酸酯混合物单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30795":{"oreDict":["cellDiaminodiphenylmethanMixture"],"name":"二氨基二苯甲烷混合物单元","tr":"二氨基二苯甲烷混合物单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30798":{"oreDict":["cellSilane"],"name":"硅烷单元","tr":"硅烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30799":{"oreDict":["cellDichlorosilane"],"name":"二氯硅烷单元","tr":"二氯硅烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22610":{"oreDict":["plateDenseEpoxidFiberReinforced"],"name":"致密纤维强化的环氧树脂片","tr":"致密纤维强化的环氧树脂片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22613":{"oreDict":["plateDenseNickelZincFerrite"],"name":"致密镍锌铁氧体板","tr":"致密镍锌铁氧体板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30811":{"oreDict":["cellGlowstone"],"name":"萤石单元","tr":"萤石单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22631":{"oreDict":["plateDensePolyphenyleneSulfide"],"name":"致密聚苯硫醚板","tr":"致密聚苯硫醚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22635":{"oreDict":["plateDenseAnyRubber"," plateDenseAnySyntheticRubber"," plateDenseStyreneButadieneRubber"],"name":"致密丁苯橡胶片","tr":"致密丁苯橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22636":{"oreDict":["plateDensePolystyrene"],"name":"致密聚苯乙烯片","tr":"致密聚苯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30833":{"oreDict":["cellPhosphate"],"name":"磷酸盐单元","tr":"磷酸盐单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22649":{"oreDict":["plateDensePolyvinylChloride"],"name":"致密聚氯乙烯片","tr":"致密聚氯乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30853":{"oreDict":["cellCobaltHexahydrate"],"name":"六水合钴单元","tr":"六水合钴单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14470":{"oreDict":["ingotTripleEpoxid"],"name":"三重环氧树脂条","tr":"三重环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14471":{"oreDict":["ingotTripleAnySyntheticRubber"," ingotTripleSilicone"," ingotTripleAnyRubber"],"name":"三重硅橡胶条","tr":"三重硅橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14472":{"oreDict":["ingotTriplePolycaprolactam"],"name":"三重聚己内酰胺条","tr":"三重聚己内酰胺条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14473":{"oreDict":["ingotTriplePolytetrafluoroethylene"],"name":"三重聚四氟乙烯条","tr":"三重聚四氟乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30865":{"oreDict":["cellGraphite"],"name":"石墨单元","tr":"石墨单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14485":{"oreDict":["ingotTripleAlduorite"],"name":"三重神秘蓝金锭","tr":"三重神秘蓝金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14488":{"oreDict":["ingotTripleRubracium"],"name":"三重褐铜锭","tr":"三重褐铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14489":{"oreDict":["ingotTripleVulcanite"],"name":"三重胶木锭","tr":"三重胶木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30885":{"oreDict":["cellMilk"],"name":"牛奶单元","tr":"牛奶单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14521":{"oreDict":["ingotTripleForce"],"name":"三重力量锭","tr":"三重力量锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14529":{"oreDict":["ingotTripleVinteum"],"name":"三重温特姆锭","tr":"三重温特姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22765":{"oreDict":["plateDenseKevlar"],"name":"致密凯芙拉板","tr":"致密凯芙拉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14576":{"oreDict":["ingotTripleTPVAlloy"],"name":"三重钛铂钒合金锭","tr":"三重钛铂钒合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22770":{"oreDict":["plateDenseHeeEndium"],"name":"致密终末锭板","tr":"致密终末锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22772":{"oreDict":["plateDenseNickelAluminide"],"name":"致密铝化镍板","tr":"致密铝化镍板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14581":{"oreDict":["ingotTripleTranscendentMetal"],"name":"三重超时空金属锭","tr":"三重超时空金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14582":{"oreDict":["ingotTripleEnrichedHolmium"],"name":"三重富集钬锭","tr":"三重富集钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30967":{"oreDict":["cellSiliconTetrafluoride"],"name":"四氟化硅单元","tr":"四氟化硅单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30968":{"oreDict":["cellSiliconTetrachloride"],"name":"四氯化硅单元","tr":"四氯化硅单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14585":{"oreDict":["ingotTripleWhiteDwarfMatter"],"name":"三重白矮星物质锭","tr":"三重白矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14586":{"oreDict":["ingotTripleBlackDwarfMatter"],"name":"三重黑矮星物质锭","tr":"三重黑矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14588":{"oreDict":["ingotTripleSpaceTime"],"name":"三重时空锭","tr":"三重时空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30972":{"oreDict":["cellTrichlorosilane"],"name":"三氯硅烷单元","tr":"三氯硅烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30973":{"oreDict":["cellHexachlorodisilane"],"name":"六氯乙硅烷单元","tr":"六氯乙硅烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30979":{"oreDict":["cellRadoxPoly"],"name":"拉多X聚合物单元","tr":"拉多X聚合物单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14599":{"oreDict":["ingotTriplePolybenzimidazole"],"name":"三重聚苯并咪唑锭","tr":"三重聚苯并咪唑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30983":{"oreDict":["cellMTBEReactionMixture"],"name":"MTBE反应混合物单元","tr":"MTBE反应混合物单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30993":{"oreDict":["cellNitrousOxide"],"name":"一氧化二氮单元","tr":"一氧化二氮单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14610":{"oreDict":["ingotTripleEpoxidFiberReinforced"],"name":"三重纤维强化的环氧树脂条","tr":"三重纤维强化的环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30994":{"oreDict":["cellEthylTertButylEther"],"name":"抗爆剂单元","tr":"抗爆剂单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30995":{"oreDict":["cellOctane"],"name":"辛烷单元","tr":"辛烷单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30996":{"oreDict":["cellRawGasoline"],"name":"粗汽油单元","tr":"粗汽油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14613":{"oreDict":["ingotTripleNickelZincFerrite"],"name":"三重镍锌铁氧体锭","tr":"三重镍锌铁氧体锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30997":{"oreDict":["cellGasoline"],"name":"汽油单元","tr":"汽油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30998":{"oreDict":["cellHighOctaneGasoline"],"name":"高辛烷值汽油单元","tr":"高辛烷值汽油单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"30999":{"oreDict":["cellMcGuffium239"],"name":"麦高芬239单元","tr":"麦高芬239单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14631":{"oreDict":["ingotTriplePolyphenyleneSulfide"],"name":"三重聚苯硫醚锭","tr":"三重聚苯硫醚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14635":{"oreDict":["ingotTripleAnySyntheticRubber"," ingotTripleStyreneButadieneRubber"," ingotTripleAnyRubber"],"name":"三重丁苯橡胶条","tr":"三重丁苯橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14636":{"oreDict":["ingotTriplePolystyrene"],"name":"三重聚苯乙烯条","tr":"三重聚苯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22829":{"oreDict":["plateDenseDeepIron"],"name":"致密深渊铁板","tr":"致密深渊铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14649":{"oreDict":["ingotTriplePolyvinylChloride"],"name":"三重聚氯乙烯条","tr":"三重聚氯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22856":{"oreDict":["plateDenseSiliconSolarGrade"],"name":"致密太阳能级硅(多晶硅)板","tr":"致密太阳能级硅(多晶硅)板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22868":{"oreDict":["plateDenseTrinium"],"name":"致密三元金属板","tr":"致密三元金属板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22874":{"oreDict":["plateDensePlastic"],"name":"致密聚乙烯片","tr":"致密聚乙烯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22880":{"oreDict":["plateDenseRubber"," plateDenseAnyRubber"],"name":"致密橡胶片","tr":"致密橡胶片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22884":{"oreDict":["plateDenseDesh"],"name":"致密戴斯板","tr":"致密戴斯板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22912":{"oreDict":["plateDenseChrysotile"],"name":"致密石棉板","tr":"致密石棉板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22913":{"oreDict":["plateDenseRealgar"],"name":"致密雄黄板","tr":"致密雄黄板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22951":{"oreDict":["plateDenseVyroxeres"],"name":"致密幽冥剧毒结晶板","tr":"致密幽冥剧毒结晶板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22952":{"oreDict":["plateDenseCeruclase"],"name":"致密暗影秘银板","tr":"致密暗影秘银板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22956":{"oreDict":["plateDenseTartarite"],"name":"致密溶火之石板","tr":"致密溶火之石板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14765":{"oreDict":["ingotTripleKevlar"],"name":"三重凯芙拉锭","tr":"三重凯芙拉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14770":{"oreDict":["ingotTripleHeeEndium"],"name":"三重终末锭","tr":"三重终末锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14772":{"oreDict":["ingotTripleNickelAluminide"],"name":"三重铝化镍锭","tr":"三重铝化镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22966":{"oreDict":["plateDenseOrichalcum"],"name":"致密山铜板","tr":"致密山铜板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22970":{"oreDict":["plateDenseVoid"],"name":"致密虚空锭板","tr":"致密虚空锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22974":{"oreDict":["plateDenseSuperconductorUEVBase"],"name":"致密UEV超导粗胚板","tr":"致密UEV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22975":{"oreDict":["plateDenseDraconium"],"name":"致密龙锭板","tr":"致密龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22976":{"oreDict":["plateDenseDraconiumAwakened"],"name":"致密觉醒龙锭板","tr":"致密觉醒龙锭板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22977":{"oreDict":["plateDenseBloodInfusedIron"],"name":"致密注血铁板","tr":"致密注血铁板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22978":{"oreDict":["plateDenseIchorium"],"name":"致密灵宝板","tr":"致密灵宝板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22979":{"oreDict":["plateDenseRadoxPoly"],"name":"致密拉多X聚合物板","tr":"致密拉多X聚合物板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22980":{"oreDict":["plateDenseGalliumArsenide"],"name":"致密砷化镓板","tr":"致密砷化镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22981":{"oreDict":["plateDenseIndiumGalliumPhosphide"],"name":"致密磷化铟镓板","tr":"致密磷化铟镓板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22982":{"oreDict":["plateDenseCosmicNeutronium"],"name":"致密宇宙中子态素板","tr":"致密宇宙中子态素板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22984":{"oreDict":["plateDenseFlerovium_GT5U"],"name":"致密板","tr":"致密板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22985":{"oreDict":["plateDenseLongasssuperconductornameforuhvwire"],"name":"致密UHV超导粗胚板","tr":"致密UHV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22986":{"oreDict":["plateDenseLongasssuperconductornameforuvwire"],"name":"致密UV超导粗胚板","tr":"致密UV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22987":{"oreDict":["plateDensePentacadmiummagnesiumhexaoxid"],"name":"致密MV超导粗胚板","tr":"致密MV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22988":{"oreDict":["plateDenseTitaniumonabariumdecacoppereikosaoxid"],"name":"致密HV超导粗胚板","tr":"致密HV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22989":{"oreDict":["plateDenseUraniumtriplatinid"],"name":"致密EV超导粗胚板","tr":"致密EV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22990":{"oreDict":["plateDenseVanadiumtriindinid"],"name":"致密IV超导粗胚板","tr":"致密IV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22991":{"oreDict":["plateDenseTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"致密LuV超导粗胚板","tr":"致密LuV超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"22992":{"oreDict":["plateDenseTetranaquadahdiindiumhexaplatiumosminid"],"name":"致密ZPM超导粗胚板","tr":"致密ZPM超导粗胚板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23006":{"oreDict":["stickLithium"],"name":"锂杆","tr":"锂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23008":{"oreDict":["stickBeryllium"],"name":"铍杆","tr":"铍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23010":{"oreDict":["stickCarbon"],"name":"碳杆","tr":"碳杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23018":{"oreDict":["stickMagnesium"],"name":"镁杆","tr":"镁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23019":{"oreDict":["stickAluminium"],"name":"铝杆","tr":"铝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23020":{"oreDict":["stickSilicon"],"name":"硅杆","tr":"硅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14829":{"oreDict":["ingotTripleDeepIron"],"name":"三重深渊铁锭","tr":"三重深渊铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23025":{"oreDict":["stickPotassium"],"name":"钾杆","tr":"钾杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23027":{"oreDict":["stickScandium"],"name":"钪杆","tr":"钪杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23028":{"oreDict":["stickTitanium"],"name":"钛杆","tr":"钛杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23029":{"oreDict":["stickVanadium"],"name":"钒杆","tr":"钒杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23030":{"oreDict":["stickChrome"],"name":"铬杆","tr":"铬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23031":{"oreDict":["stickManganese"],"name":"锰杆","tr":"锰杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23032":{"oreDict":["stickIron"," stickAnyIron"],"name":"铁杆","tr":"铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23033":{"oreDict":["stickCobalt"],"name":"钴杆","tr":"钴杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23034":{"oreDict":["stickNickel"],"name":"镍杆","tr":"镍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23035":{"oreDict":["stickCopper"," stickAnyCopper"],"name":"铜杆","tr":"铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23036":{"oreDict":["stickZinc"],"name":"锌杆","tr":"锌杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23037":{"oreDict":["stickGallium"],"name":"镓杆","tr":"镓杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23039":{"oreDict":["stickArsenic"],"name":"砷杆","tr":"砷杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23043":{"oreDict":["stickRubidium"],"name":"铷杆","tr":"铷杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23045":{"oreDict":["stickYttrium"],"name":"钇杆","tr":"钇杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23047":{"oreDict":["stickNiobium"],"name":"铌杆","tr":"铌杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14856":{"oreDict":["ingotTripleSiliconSolarGrade"],"name":"三重太阳能级硅(多晶硅)锭","tr":"三重太阳能级硅(多晶硅)锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23048":{"oreDict":["stickMolybdenum"],"name":"钼杆","tr":"钼杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23052":{"oreDict":["stickPalladium"],"name":"钯杆","tr":"钯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23054":{"oreDict":["stickSilver"],"name":"银杆","tr":"银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23056":{"oreDict":["stickIndium"],"name":"铟杆","tr":"铟杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23057":{"oreDict":["stickTin"],"name":"锡杆","tr":"锡杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23058":{"oreDict":["stickAntimony"],"name":"锑杆","tr":"锑杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23059":{"oreDict":["stickTellurium"],"name":"碲杆","tr":"碲杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14868":{"oreDict":["ingotTripleTrinium"],"name":"三重三元金属锭","tr":"三重三元金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23062":{"oreDict":["stickCaesium"],"name":"铯杆","tr":"铯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23063":{"oreDict":["stickBarium"],"name":"钡杆","tr":"钡杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23064":{"oreDict":["stickLanthanum"],"name":"镧杆","tr":"镧杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23065":{"oreDict":["stickCerium"],"name":"铈杆","tr":"铈杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14874":{"oreDict":["ingotTriplePlastic"],"name":"三重聚乙烯条","tr":"三重聚乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23066":{"oreDict":["stickPraseodymium"],"name":"镨杆","tr":"镨杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23067":{"oreDict":["stickNeodymium"],"name":"钕杆","tr":"钕杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23068":{"oreDict":["stickPromethium"],"name":"钷杆","tr":"钷杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23069":{"oreDict":["stickSamarium"],"name":"钐杆","tr":"钐杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23070":{"oreDict":["stickEuropium"],"name":"铕杆","tr":"铕杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23071":{"oreDict":["stickGadolinium"],"name":"钆杆","tr":"钆杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14880":{"oreDict":["ingotTripleRubber"," ingotTripleAnyRubber"],"name":"三重橡胶条","tr":"三重橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23072":{"oreDict":["stickTerbium"],"name":"铽杆","tr":"铽杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23073":{"oreDict":["stickDysprosium"],"name":"镝杆","tr":"镝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23074":{"oreDict":["stickHolmium"],"name":"钬杆","tr":"钬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23075":{"oreDict":["stickErbium"],"name":"铒杆","tr":"铒杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14884":{"oreDict":["ingotTripleDesh"],"name":"三重戴斯锭","tr":"三重戴斯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23076":{"oreDict":["stickThulium"],"name":"铥杆","tr":"铥杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23077":{"oreDict":["stickYtterbium"],"name":"镱杆","tr":"镱杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23078":{"oreDict":["stickLutetium"],"name":"镥杆","tr":"镥杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23080":{"oreDict":["stickTantalum"],"name":"钽杆","tr":"钽杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23081":{"oreDict":["stickTungsten"],"name":"钨杆","tr":"钨杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23083":{"oreDict":["stickOsmium"],"name":"锇杆","tr":"锇杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23084":{"oreDict":["stickIridium"],"name":"铱杆","tr":"铱杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23085":{"oreDict":["stickPlatinum"],"name":"铂杆","tr":"铂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23086":{"oreDict":["stickGold"],"name":"金杆","tr":"金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23089":{"oreDict":["stickLead"],"name":"铅杆","tr":"铅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23090":{"oreDict":["stickBismuth"],"name":"铋杆","tr":"铋杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23096":{"oreDict":["stickThorium"],"name":"钍杆","tr":"钍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23097":{"oreDict":["stickUranium235"],"name":"铀-235杆","tr":"铀-235杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23098":{"oreDict":["stickUranium"],"name":"铀-238杆","tr":"铀-238杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23100":{"oreDict":["stickPlutonium"],"name":"钚-239杆","tr":"钚-239杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23101":{"oreDict":["stickPlutonium241"],"name":"钚-241杆","tr":"钚-241杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23103":{"oreDict":["stickAmericium"],"name":"镅杆","tr":"镅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14912":{"oreDict":["ingotTripleChrysotile"],"name":"三重石棉锭","tr":"三重石棉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14913":{"oreDict":["ingotTripleRealgar"],"name":"三重雄黄锭","tr":"三重雄黄锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23111":{"oreDict":["stickTengamPurified"],"name":"纯镃杆","tr":"纯镃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23112":{"oreDict":["stickTengamAttuned"],"name":"谐镃杆","tr":"谐镃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23129":{"oreDict":["stickNeutronium"],"name":"中子杆","tr":"中子杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23131":{"oreDict":["stickSuperconductorUIVBase"],"name":"UIV超导粗胚杆","tr":"UIV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23134":{"oreDict":["stickSuperconductorUMVBase"],"name":"UMV超导粗胚杆","tr":"UMV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23139":{"oreDict":["stickUniversium"],"name":"宇宙素杆","tr":"宇宙素杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23141":{"oreDict":["stickEternity"],"name":"永恒杆","tr":"永恒杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14951":{"oreDict":["ingotTripleVyroxeres"],"name":"三重幽冥剧毒结晶锭","tr":"三重幽冥剧毒结晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23143":{"oreDict":["stickMagmatter"],"name":"磁物质杆","tr":"磁物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14952":{"oreDict":["ingotTripleCeruclase"],"name":"三重暗影秘银锭","tr":"三重暗影秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14956":{"oreDict":["ingotTripleTartarite"],"name":"三重溶火之石锭","tr":"三重溶火之石锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14966":{"oreDict":["ingotTripleOrichalcum"],"name":"三重山铜锭","tr":"三重山铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14970":{"oreDict":["ingotTripleVoid"],"name":"三重虚空锭","tr":"三重虚空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14974":{"oreDict":["ingotTripleSuperconductorUEVBase"],"name":"三重UEV超导粗胚锭","tr":"三重UEV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14975":{"oreDict":["ingotTripleDraconium"],"name":"三重龙锭","tr":"三重龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14976":{"oreDict":["ingotTripleDraconiumAwakened"],"name":"三重觉醒龙锭","tr":"三重觉醒龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14977":{"oreDict":["ingotTripleBloodInfusedIron"],"name":"三重注血铁锭","tr":"三重注血铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14978":{"oreDict":["ingotTripleIchorium"],"name":"三重灵宝锭","tr":"三重灵宝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14979":{"oreDict":["ingotTripleRadoxPoly"],"name":"三重拉多X聚合物锭","tr":"三重拉多X聚合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14980":{"oreDict":["ingotTripleGalliumArsenide"],"name":"三重砷化镓锭","tr":"三重砷化镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14981":{"oreDict":["ingotTripleIndiumGalliumPhosphide"],"name":"三重磷化铟镓锭","tr":"三重磷化铟镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14982":{"oreDict":["ingotTripleCosmicNeutronium"],"name":"三重宇宙中子态素锭","tr":"三重宇宙中子态素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14984":{"oreDict":["ingotTripleFlerovium_GT5U"],"name":"三重锭","tr":"三重锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14985":{"oreDict":["ingotTripleLongasssuperconductornameforuhvwire"],"name":"三重UHV超导粗胚锭","tr":"三重UHV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14986":{"oreDict":["ingotTripleLongasssuperconductornameforuvwire"],"name":"三重UV超导粗胚锭","tr":"三重UV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14987":{"oreDict":["ingotTriplePentacadmiummagnesiumhexaoxid"],"name":"三重MV超导粗胚锭","tr":"三重MV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14988":{"oreDict":["ingotTripleTitaniumonabariumdecacoppereikosaoxid"],"name":"三重HV超导粗胚锭","tr":"三重HV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14989":{"oreDict":["ingotTripleUraniumtriplatinid"],"name":"三重EV超导粗胚锭","tr":"三重EV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14990":{"oreDict":["ingotTripleVanadiumtriindinid"],"name":"三重IV超导粗胚锭","tr":"三重IV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14991":{"oreDict":["ingotTripleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"三重LuV超导粗胚锭","tr":"三重LuV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"14992":{"oreDict":["ingotTripleTetranaquadahdiindiumhexaplatiumosminid"],"name":"三重ZPM超导粗胚锭","tr":"三重ZPM超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15006":{"oreDict":["ingotQuadrupleLithium"],"name":"四重锂锭","tr":"四重锂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15008":{"oreDict":["ingotQuadrupleBeryllium"],"name":"四重铍锭","tr":"四重铍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23201":{"oreDict":["stickManasteel"],"name":"魔钢杆","tr":"魔钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15010":{"oreDict":["ingotQuadrupleCarbon"],"name":"四重碳锭","tr":"四重碳锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23202":{"oreDict":["stickTerrasteel"],"name":"泰拉钢杆","tr":"泰拉钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23203":{"oreDict":["stickElvenElementium"],"name":"源质钢杆","tr":"源质钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23205":{"oreDict":["stickGaiaSpirit"],"name":"盖亚之魂杆","tr":"盖亚之魂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23206":{"oreDict":["stickLivingwood"],"name":"活木杆","tr":"活木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23207":{"oreDict":["stickDreamwood"],"name":"梦之木杆","tr":"梦之木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23208":{"oreDict":["stickManaDiamond"],"name":"魔力钻石杆","tr":"魔力钻石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23209":{"oreDict":["stickBotaniaDragonstone"],"name":"龙石杆","tr":"龙石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15018":{"oreDict":["ingotQuadrupleMagnesium"],"name":"四重镁锭","tr":"四重镁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15019":{"oreDict":["ingotQuadrupleAluminium"],"name":"四重铝锭","tr":"四重铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15020":{"oreDict":["ingotQuadrupleSilicon"],"name":"四重硅锭","tr":"四重硅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15025":{"oreDict":["ingotQuadruplePotassium"],"name":"四重钾锭","tr":"四重钾锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15027":{"oreDict":["ingotQuadrupleScandium"],"name":"四重钪锭","tr":"四重钪锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15028":{"oreDict":["ingotQuadrupleTitanium"],"name":"四重钛锭","tr":"四重钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15029":{"oreDict":["ingotQuadrupleVanadium"],"name":"四重钒锭","tr":"四重钒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15030":{"oreDict":["ingotQuadrupleChrome"],"name":"四重铬锭","tr":"四重铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15031":{"oreDict":["ingotQuadrupleManganese"],"name":"四重锰锭","tr":"四重锰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15032":{"oreDict":["ingotQuadrupleIron"," ingotQuadrupleAnyIron"],"name":"四重铁锭","tr":"四重铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15033":{"oreDict":["ingotQuadrupleCobalt"],"name":"四重钴锭","tr":"四重钴锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15034":{"oreDict":["ingotQuadrupleNickel"],"name":"四重镍锭","tr":"四重镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15035":{"oreDict":["ingotQuadrupleCopper"," ingotQuadrupleAnyCopper"],"name":"四重铜锭","tr":"四重铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15036":{"oreDict":["ingotQuadrupleZinc"],"name":"四重锌锭","tr":"四重锌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15037":{"oreDict":["ingotQuadrupleGallium"],"name":"四重镓锭","tr":"四重镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15039":{"oreDict":["ingotQuadrupleArsenic"],"name":"四重砷锭","tr":"四重砷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15043":{"oreDict":["ingotQuadrupleRubidium"],"name":"四重铷锭","tr":"四重铷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15045":{"oreDict":["ingotQuadrupleYttrium"],"name":"四重钇锭","tr":"四重钇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15047":{"oreDict":["ingotQuadrupleNiobium"],"name":"四重铌锭","tr":"四重铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15048":{"oreDict":["ingotQuadrupleMolybdenum"],"name":"四重钼锭","tr":"四重钼锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15052":{"oreDict":["ingotQuadruplePalladium"],"name":"四重钯锭","tr":"四重钯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15054":{"oreDict":["ingotQuadrupleSilver"],"name":"四重银锭","tr":"四重银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15056":{"oreDict":["ingotQuadrupleIndium"],"name":"四重铟锭","tr":"四重铟锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15057":{"oreDict":["ingotQuadrupleTin"],"name":"四重锡锭","tr":"四重锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15058":{"oreDict":["ingotQuadrupleAntimony"],"name":"四重锑锭","tr":"四重锑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15059":{"oreDict":["ingotQuadrupleTellurium"],"name":"四重碲锭","tr":"四重碲锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15062":{"oreDict":["ingotQuadrupleCaesium"],"name":"四重铯锭","tr":"四重铯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15063":{"oreDict":["ingotQuadrupleBarium"],"name":"四重钡锭","tr":"四重钡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15064":{"oreDict":["ingotQuadrupleLanthanum"],"name":"四重镧锭","tr":"四重镧锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15065":{"oreDict":["ingotQuadrupleCerium"],"name":"四重铈锭","tr":"四重铈锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15066":{"oreDict":["ingotQuadruplePraseodymium"],"name":"四重镨锭","tr":"四重镨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15067":{"oreDict":["ingotQuadrupleNeodymium"],"name":"四重钕锭","tr":"四重钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15068":{"oreDict":["ingotQuadruplePromethium"],"name":"四重钷锭","tr":"四重钷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15069":{"oreDict":["ingotQuadrupleSamarium"],"name":"四重钐锭","tr":"四重钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15070":{"oreDict":["ingotQuadrupleEuropium"],"name":"四重铕锭","tr":"四重铕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15071":{"oreDict":["ingotQuadrupleGadolinium"],"name":"四重钆锭","tr":"四重钆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15072":{"oreDict":["ingotQuadrupleTerbium"],"name":"四重铽锭","tr":"四重铽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15073":{"oreDict":["ingotQuadrupleDysprosium"],"name":"四重镝锭","tr":"四重镝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15074":{"oreDict":["ingotQuadrupleHolmium"],"name":"四重钬锭","tr":"四重钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15075":{"oreDict":["ingotQuadrupleErbium"],"name":"四重铒锭","tr":"四重铒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15076":{"oreDict":["ingotQuadrupleThulium"],"name":"四重铥锭","tr":"四重铥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15077":{"oreDict":["ingotQuadrupleYtterbium"],"name":"四重镱锭","tr":"四重镱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15078":{"oreDict":["ingotQuadrupleLutetium"],"name":"四重镥锭","tr":"四重镥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15080":{"oreDict":["ingotQuadrupleTantalum"],"name":"四重钽锭","tr":"四重钽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15081":{"oreDict":["ingotQuadrupleTungsten"],"name":"四重钨锭","tr":"四重钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15083":{"oreDict":["ingotQuadrupleOsmium"],"name":"四重锇锭","tr":"四重锇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15084":{"oreDict":["ingotQuadrupleIridium"],"name":"四重铱锭","tr":"四重铱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15085":{"oreDict":["ingotQuadruplePlatinum"],"name":"四重铂锭","tr":"四重铂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15086":{"oreDict":["ingotQuadrupleGold"],"name":"四重金锭","tr":"四重金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15089":{"oreDict":["ingotQuadrupleLead"],"name":"四重铅锭","tr":"四重铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15090":{"oreDict":["ingotQuadrupleBismuth"],"name":"四重铋锭","tr":"四重铋锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15096":{"oreDict":["ingotQuadrupleThorium"],"name":"四重钍锭","tr":"四重钍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15097":{"oreDict":["ingotQuadrupleUranium235"],"name":"四重铀-235锭","tr":"四重铀-235锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15098":{"oreDict":["ingotQuadrupleUranium"],"name":"四重铀-238锭","tr":"四重铀-238锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15100":{"oreDict":["ingotQuadruplePlutonium"],"name":"四重钚-239锭","tr":"四重钚-239锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15101":{"oreDict":["ingotQuadruplePlutonium241"],"name":"四重钚-241锭","tr":"四重钚-241锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15103":{"oreDict":["ingotQuadrupleAmericium"],"name":"四重镅锭","tr":"四重镅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23300":{"oreDict":["stickBronze"," stickAnyBronze"],"name":"青铜杆","tr":"青铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23301":{"oreDict":["stickBrass"],"name":"黄铜杆","tr":"黄铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23302":{"oreDict":["stickInvar"],"name":"殷钢杆","tr":"殷钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15111":{"oreDict":["ingotQuadrupleTengamPurified"],"name":"四重纯镃锭","tr":"四重纯镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23303":{"oreDict":["stickElectrum"],"name":"琥珀金杆","tr":"琥珀金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15112":{"oreDict":["ingotQuadrupleTengamAttuned"],"name":"四重谐镃锭","tr":"四重谐镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23304":{"oreDict":["stickWroughtIron"," stickAnyIron"],"name":"锻铁杆","tr":"锻铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23305":{"oreDict":["stickSteel"],"name":"钢杆","tr":"钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23306":{"oreDict":["stickStainlessSteel"],"name":"不锈钢杆","tr":"不锈钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23307":{"oreDict":["stickPigIron"," stickAnyIron"],"name":"生铁杆","tr":"生铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23308":{"oreDict":["stickRedAlloy"],"name":"红色合金杆","tr":"红色合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23309":{"oreDict":["stickBlueAlloy"],"name":"蓝色合金杆","tr":"蓝色合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23310":{"oreDict":["stickCupronickel"],"name":"白铜杆","tr":"白铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23311":{"oreDict":["stickNichrome"],"name":"镍铬合金杆","tr":"镍铬合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23312":{"oreDict":["stickKanthal"],"name":"坎塔尔合金杆","tr":"坎塔尔合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23313":{"oreDict":["stickMagnalium"],"name":"镁铝合金杆","tr":"镁铝合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23314":{"oreDict":["stickSolderingAlloy"],"name":"焊锡杆","tr":"焊锡杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23315":{"oreDict":["stickBatteryAlloy"],"name":"电池合金杆","tr":"电池合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23316":{"oreDict":["stickTungstenSteel"],"name":"钨钢杆","tr":"钨钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23317":{"oreDict":["stickOsmiridium"],"name":"铱锇合金杆","tr":"铱锇合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23318":{"oreDict":["stickSunnarium"],"name":"阳光化合物杆","tr":"阳光化合物杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23319":{"oreDict":["stickAdamantium"],"name":"精金杆","tr":"精金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23320":{"oreDict":["stickElectrumFlux"],"name":"通流琥珀金杆","tr":"通流琥珀金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15129":{"oreDict":["ingotQuadrupleNeutronium"],"name":"四重中子锭","tr":"四重中子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23321":{"oreDict":["stickEnderium"],"name":"末影(te)杆","tr":"末影(te)杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15131":{"oreDict":["ingotQuadrupleSuperconductorUIVBase"],"name":"四重UIV超导粗胚锭","tr":"四重UIV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23323":{"oreDict":["stickInfusedGold"],"name":"注魔金杆","tr":"注魔金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23324":{"oreDict":["stickNaquadah"],"name":"硅岩杆","tr":"硅岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23325":{"oreDict":["stickNaquadahAlloy"],"name":"硅岩合金杆","tr":"硅岩合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15134":{"oreDict":["ingotQuadrupleSuperconductorUMVBase"],"name":"四重UMV超导粗胚锭","tr":"四重UMV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23326":{"oreDict":["stickNaquadahEnriched"],"name":"富集硅岩杆","tr":"富集硅岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23327":{"oreDict":["stickNaquadria"],"name":"超能硅岩杆","tr":"超能硅岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23328":{"oreDict":["stickDuranium"],"name":"铿铀杆","tr":"铿铀杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23329":{"oreDict":["stickTritanium"],"name":"三钛杆","tr":"三钛杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23330":{"oreDict":["stickThaumium"],"name":"神秘杆","tr":"神秘杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15139":{"oreDict":["ingotQuadrupleUniversium"],"name":"四重宇宙素锭","tr":"四重宇宙素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23331":{"oreDict":["stickMithril"],"name":"秘银杆","tr":"秘银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15141":{"oreDict":["ingotQuadrupleEternity"],"name":"四重永恒锭","tr":"四重永恒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23333":{"oreDict":["stickAstralSilver"],"name":"星辰银杆","tr":"星辰银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23334":{"oreDict":["stickBlackSteel"],"name":"黑钢杆","tr":"黑钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15143":{"oreDict":["ingotQuadrupleMagmatter"],"name":"四重磁物质锭","tr":"四重磁物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23335":{"oreDict":["stickDamascusSteel"],"name":"大马士革钢杆","tr":"大马士革钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23336":{"oreDict":["stickShadowIron"],"name":"暗影铁杆","tr":"暗影铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23337":{"oreDict":["stickShadowSteel"],"name":"暗影钢杆","tr":"暗影钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23338":{"oreDict":["stickIronWood"],"name":"铁木杆","tr":"铁木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23339":{"oreDict":["stickSteeleaf"],"name":"钢叶杆","tr":"钢叶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23340":{"oreDict":["stickMeteoricIron"],"name":"陨铁杆","tr":"陨铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23341":{"oreDict":["stickMeteoricSteel"],"name":"陨钢杆","tr":"陨钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23342":{"oreDict":["stickDarkIron"],"name":"玄铁杆","tr":"玄铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23343":{"oreDict":["stickCobaltBrass"],"name":"钴黄铜杆","tr":"钴黄铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23344":{"oreDict":["stickUltimet"],"name":"哈氏合金杆","tr":"哈氏合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23345":{"oreDict":["stickAnnealedCopper"," stickAnyCopper"],"name":"退火铜杆","tr":"退火铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23346":{"oreDict":["stickFierySteel"],"name":"炽热的钢杆","tr":"炽热的钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23347":{"oreDict":["stickFirestone"],"name":"火石杆","tr":"火石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23348":{"oreDict":["stickRedSteel"],"name":"红钢杆","tr":"红钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23349":{"oreDict":["stickBlueSteel"],"name":"蓝钢杆","tr":"蓝钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23350":{"oreDict":["stickSterlingSilver"],"name":"标准纯银杆","tr":"标准纯银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23351":{"oreDict":["stickRoseGold"],"name":"玫瑰金杆","tr":"玫瑰金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23352":{"oreDict":["stickBlackBronze"],"name":"黑青铜杆","tr":"黑青铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23353":{"oreDict":["stickBismuthBronze"],"name":"铋青铜杆","tr":"铋青铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23354":{"oreDict":["stickIronMagnetic"],"name":"磁化铁杆","tr":"磁化铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23355":{"oreDict":["stickSteelMagnetic"],"name":"磁化钢杆","tr":"磁化钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23356":{"oreDict":["stickNeodymiumMagnetic"],"name":"磁化钕杆","tr":"磁化钕杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23357":{"oreDict":["stickVanadiumGallium"],"name":"钒镓合金杆","tr":"钒镓合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23358":{"oreDict":["stickYttriumBariumCuprate"],"name":"钇钡铜氧杆","tr":"钇钡铜氧杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23359":{"oreDict":["stickNiobiumNitride"],"name":"氮化铌杆","tr":"氮化铌杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23360":{"oreDict":["stickNiobiumTitanium"],"name":"铌钛合金杆","tr":"铌钛合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23361":{"oreDict":["stickChromiumDioxide"],"name":"二氧化铬杆","tr":"二氧化铬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23362":{"oreDict":["stickKnightmetal"],"name":"骑士金属杆","tr":"骑士金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23363":{"oreDict":["stickTinAlloy"],"name":"锡铁合金杆","tr":"锡铁合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23364":{"oreDict":["stickDarkSteel"],"name":"玄钢杆","tr":"玄钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23365":{"oreDict":["stickElectricalSteel"],"name":"磁钢杆","tr":"磁钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23366":{"oreDict":["stickEnergeticAlloy"],"name":"充能合金杆","tr":"充能合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23367":{"oreDict":["stickVibrantAlloy"],"name":"脉冲合金杆","tr":"脉冲合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23368":{"oreDict":["stickShadow"],"name":"暗影金属杆","tr":"暗影金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23369":{"oreDict":["stickConductiveIron"],"name":"导电铁杆","tr":"导电铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23370":{"oreDict":["stickTungstenCarbide"],"name":"碳化钨杆","tr":"碳化钨杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23371":{"oreDict":["stickVanadiumSteel"],"name":"钒钢杆","tr":"钒钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23372":{"oreDict":["stickHSSG"],"name":"高速钢-G杆","tr":"高速钢-G杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23373":{"oreDict":["stickHSSE"],"name":"高速钢-E杆","tr":"高速钢-E杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23374":{"oreDict":["stickHSSS"],"name":"高速钢-S杆","tr":"高速钢-S杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23378":{"oreDict":["stickPulsatingIron"],"name":"脉冲铁杆","tr":"脉冲铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23379":{"oreDict":["stickSoularium"],"name":"魂金杆","tr":"魂金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23380":{"oreDict":["stickEnderiumBase"],"name":"末影粗胚杆","tr":"末影粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23381":{"oreDict":["stickRedstoneAlloy"],"name":"红石合金杆","tr":"红石合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23382":{"oreDict":["stickArdite"],"name":"阿迪特杆","tr":"阿迪特杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23383":{"oreDict":["stickReinforced"],"name":"强化杆","tr":"强化杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23384":{"oreDict":["stickGalgadorian"],"name":"混合晶杆","tr":"混合晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23385":{"oreDict":["stickEnhancedGalgadorian"],"name":"强化混合晶杆","tr":"强化混合晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23386":{"oreDict":["stickManyullyn"],"name":"玛玉灵杆","tr":"玛玉灵杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23387":{"oreDict":["stickMytryl"],"name":"深空秘银杆","tr":"深空秘银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23388":{"oreDict":["stickBlackPlutonium"],"name":"黑钚杆","tr":"黑钚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23389":{"oreDict":["stickCallistoIce"],"name":"木卫四冰杆","tr":"木卫四冰杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23390":{"oreDict":["stickLedox"],"name":"深铅杆","tr":"深铅杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23391":{"oreDict":["stickQuantium"],"name":"量子杆","tr":"量子杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23392":{"oreDict":["stickDuralumin"],"name":"硬铝杆","tr":"硬铝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15201":{"oreDict":["ingotQuadrupleManasteel"],"name":"四重魔钢锭","tr":"四重魔钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23393":{"oreDict":["stickOriharukon"],"name":"奥利哈钢杆","tr":"奥利哈钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15202":{"oreDict":["ingotQuadrupleTerrasteel"],"name":"四重泰拉钢锭","tr":"四重泰拉钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23394":{"oreDict":["stickInfinityCatalyst"],"name":"无尽催化剂杆","tr":"无尽催化剂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15203":{"oreDict":["ingotQuadrupleElvenElementium"],"name":"四重源质钢锭","tr":"四重源质钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23395":{"oreDict":["stickBedrockium"],"name":"基岩杆","tr":"基岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15205":{"oreDict":["ingotQuadrupleGaiaSpirit"],"name":"四重盖亚之魂锭","tr":"四重盖亚之魂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23397":{"oreDict":["stickInfinity"],"name":"无尽杆","tr":"无尽杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23398":{"oreDict":["stickMysteriousCrystal"],"name":"神秘水晶杆","tr":"神秘水晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23399":{"oreDict":["stickSamariumMagnetic"],"name":"磁化钐杆","tr":"磁化钐杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23400":{"oreDict":["stickAlumite"],"name":"耐酸铝杆","tr":"耐酸铝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23401":{"oreDict":["stickEndSteel"],"name":"末影钢杆","tr":"末影钢杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23402":{"oreDict":["stickCrudeSteel"],"name":"复合粘土杆","tr":"复合粘土杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23403":{"oreDict":["stickCrystallineAlloy"],"name":"晶化合金杆","tr":"晶化合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23404":{"oreDict":["stickMelodicAlloy"],"name":"旋律合金杆","tr":"旋律合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23405":{"oreDict":["stickStellarAlloy"],"name":"恒星合金杆","tr":"恒星合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23406":{"oreDict":["stickCrystallinePinkSlime"],"name":"晶化粉红史莱姆杆","tr":"晶化粉红史莱姆杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23407":{"oreDict":["stickEnergeticSilver"],"name":"充能银杆","tr":"充能银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23408":{"oreDict":["stickVividAlloy"],"name":"生动合金杆","tr":"生动合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23470":{"oreDict":["stickEpoxid"],"name":"环氧树脂杆","tr":"环氧树脂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23471":{"oreDict":["stickSilicone"," stickAnyRubber"," stickAnySyntheticRubber"],"name":"硅橡胶杆","tr":"硅橡胶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23472":{"oreDict":["stickPolycaprolactam"],"name":"聚己内酰胺杆","tr":"聚己内酰胺杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23473":{"oreDict":["stickPolytetrafluoroethylene"],"name":"聚四氟乙烯杆","tr":"聚四氟乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23485":{"oreDict":["stickAlduorite"],"name":"神秘蓝金杆","tr":"神秘蓝金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23488":{"oreDict":["stickRubracium"],"name":"褐铜杆","tr":"褐铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23489":{"oreDict":["stickVulcanite"],"name":"胶木杆","tr":"胶木杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15300":{"oreDict":["ingotQuadrupleBronze"," ingotQuadrupleAnyBronze"],"name":"四重青铜锭","tr":"四重青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15301":{"oreDict":["ingotQuadrupleBrass"],"name":"四重黄铜锭","tr":"四重黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15302":{"oreDict":["ingotQuadrupleInvar"],"name":"四重殷钢锭","tr":"四重殷钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15303":{"oreDict":["ingotQuadrupleElectrum"],"name":"四重琥珀金锭","tr":"四重琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15304":{"oreDict":["ingotQuadrupleAnyIron"," ingotQuadrupleWroughtIron"],"name":"四重锻铁锭","tr":"四重锻铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15305":{"oreDict":["ingotQuadrupleSteel"],"name":"四重钢锭","tr":"四重钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15306":{"oreDict":["ingotQuadrupleStainlessSteel"],"name":"四重不锈钢锭","tr":"四重不锈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15307":{"oreDict":["ingotQuadrupleAnyIron"," ingotQuadruplePigIron"],"name":"四重生铁锭","tr":"四重生铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15308":{"oreDict":["ingotQuadrupleRedAlloy"],"name":"四重红色合金锭","tr":"四重红色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23500":{"oreDict":["stickDiamond"],"name":"钻石杆","tr":"钻石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15309":{"oreDict":["ingotQuadrupleBlueAlloy"],"name":"四重蓝色合金锭","tr":"四重蓝色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23501":{"oreDict":["stickEmerald"],"name":"绿宝石杆","tr":"绿宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15310":{"oreDict":["ingotQuadrupleCupronickel"],"name":"四重白铜锭","tr":"四重白铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23502":{"oreDict":["stickRuby"],"name":"红宝石杆","tr":"红宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15311":{"oreDict":["ingotQuadrupleNichrome"],"name":"四重镍铬锭","tr":"四重镍铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23503":{"oreDict":["stickSapphire"],"name":"蓝宝石杆","tr":"蓝宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15312":{"oreDict":["ingotQuadrupleKanthal"],"name":"四重坎塔尔合金锭","tr":"四重坎塔尔合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23504":{"oreDict":["stickGreenSapphire"],"name":"绿色蓝宝石杆","tr":"绿色蓝宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15313":{"oreDict":["ingotQuadrupleMagnalium"],"name":"四重镁铝合金锭","tr":"四重镁铝合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23505":{"oreDict":["stickOlivine"],"name":"橄榄石杆","tr":"橄榄石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15314":{"oreDict":["ingotQuadrupleSolderingAlloy"],"name":"四重焊锡锭","tr":"四重焊锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23506":{"oreDict":["stickNetherStar"],"name":"下界之星杆","tr":"下界之星杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15315":{"oreDict":["ingotQuadrupleBatteryAlloy"],"name":"四重电池合金锭","tr":"四重电池合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23507":{"oreDict":["stickTopaz"],"name":"黄玉杆","tr":"黄玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15316":{"oreDict":["ingotQuadrupleTungstenSteel"],"name":"四重钨钢锭","tr":"四重钨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23508":{"oreDict":["stickTanzanite"],"name":"坦桑石杆","tr":"坦桑石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15317":{"oreDict":["ingotQuadrupleOsmiridium"],"name":"四重铱锇合金锭","tr":"四重铱锇合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23509":{"oreDict":["stickAmethyst"],"name":"紫水晶杆","tr":"紫水晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15318":{"oreDict":["ingotQuadrupleSunnarium"],"name":"四重阳光化合物锭","tr":"四重阳光化合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23510":{"oreDict":["stickOpal"],"name":"蛋白石杆","tr":"蛋白石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15319":{"oreDict":["ingotQuadrupleAdamantium"],"name":"四重精金锭","tr":"四重精金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23511":{"oreDict":["stickJasper"],"name":"碧玉杆","tr":"碧玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15320":{"oreDict":["ingotQuadrupleElectrumFlux"],"name":"四重通流琥珀金锭","tr":"四重通流琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23512":{"oreDict":["stickFoolsRuby"],"name":"尖晶石杆","tr":"尖晶石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15321":{"oreDict":["ingotQuadrupleEnderium"],"name":"四重末影锭","tr":"四重末影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23513":{"oreDict":["stickBlueTopaz"],"name":"蓝黄玉杆","tr":"蓝黄玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23514":{"oreDict":["stickAmber"],"name":"琥珀杆","tr":"琥珀杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15323":{"oreDict":["ingotQuadrupleInfusedGold"],"name":"四重注魔金锭","tr":"四重注魔金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23515":{"oreDict":["stickDilithium"],"name":"双锂杆","tr":"双锂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15324":{"oreDict":["ingotQuadrupleNaquadah"],"name":"四重硅岩锭","tr":"四重硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23516":{"oreDict":["stickCertusQuartz"],"name":"赛特斯石英杆","tr":"赛特斯石英杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15325":{"oreDict":["ingotQuadrupleNaquadahAlloy"],"name":"四重硅岩合金锭","tr":"四重硅岩合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15326":{"oreDict":["ingotQuadrupleNaquadahEnriched"],"name":"四重富集硅岩锭","tr":"四重富集硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23518":{"oreDict":["stickForcicium"],"name":"力之宝石杆","tr":"力之宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15327":{"oreDict":["ingotQuadrupleNaquadria"],"name":"四重超能硅岩锭","tr":"四重超能硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23519":{"oreDict":["stickForcillium"],"name":"力场宝石杆","tr":"力场宝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15328":{"oreDict":["ingotQuadrupleDuranium"],"name":"四重铿铀锭","tr":"四重铿铀锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23520":{"oreDict":["stickMonazite"],"name":"独居石杆","tr":"独居石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15329":{"oreDict":["ingotQuadrupleTritanium"],"name":"四重三钛锭","tr":"四重三钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23521":{"oreDict":["stickForce"],"name":"力量杆","tr":"力量杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15330":{"oreDict":["ingotQuadrupleThaumium"],"name":"四重神秘锭","tr":"四重神秘锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23522":{"oreDict":["stickNetherQuartz"],"name":"下界石英杆","tr":"下界石英杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15331":{"oreDict":["ingotQuadrupleMithril"],"name":"四重秘银锭","tr":"四重秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23523":{"oreDict":["stickQuartzite"],"name":"石英岩杆","tr":"石英岩杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23524":{"oreDict":["stickLazurite"],"name":"蓝金石杆","tr":"蓝金石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15333":{"oreDict":["ingotQuadrupleAstralSilver"],"name":"四重星辰银锭","tr":"四重星辰银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23525":{"oreDict":["stickSodalite"],"name":"方钠石杆","tr":"方钠石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15334":{"oreDict":["ingotQuadrupleBlackSteel"],"name":"四重黑钢锭","tr":"四重黑钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23526":{"oreDict":["stickLapis"],"name":"青金石杆","tr":"青金石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15335":{"oreDict":["ingotQuadrupleDamascusSteel"],"name":"四重大马士革钢锭","tr":"四重大马士革钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23527":{"oreDict":["stickGarnetRed"],"name":"红石榴石杆","tr":"红石榴石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15336":{"oreDict":["ingotQuadrupleShadowIron"],"name":"四重暗影铁锭","tr":"四重暗影铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23528":{"oreDict":["stickGarnetYellow"],"name":"黄石榴石杆","tr":"黄石榴石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15337":{"oreDict":["ingotQuadrupleShadowSteel"],"name":"四重暗影钢锭","tr":"四重暗影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23529":{"oreDict":["stickVinteum"],"name":"温特姆杆","tr":"温特姆杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15338":{"oreDict":["ingotQuadrupleIronWood"],"name":"四重铁木锭","tr":"四重铁木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23530":{"oreDict":["stickApatite"],"name":"磷灰石杆","tr":"磷灰石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15339":{"oreDict":["ingotQuadrupleSteeleaf"],"name":"四重钢叶","tr":"四重钢叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23531":{"oreDict":["stickNiter"],"name":"硝石杆","tr":"硝石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15340":{"oreDict":["ingotQuadrupleMeteoricIron"],"name":"四重陨铁锭","tr":"四重陨铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23532":{"oreDict":["stickEnderPearl"],"name":"末影珍珠杆","tr":"末影珍珠杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15341":{"oreDict":["ingotQuadrupleMeteoricSteel"],"name":"四重陨钢锭","tr":"四重陨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23533":{"oreDict":["stickEnderEye"],"name":"末影之眼杆","tr":"末影之眼杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15342":{"oreDict":["ingotQuadrupleDarkIron"],"name":"四重玄铁锭","tr":"四重玄铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23534":{"oreDict":["stickTricalciumPhosphate"],"name":"磷酸三钙杆","tr":"磷酸三钙杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15343":{"oreDict":["ingotQuadrupleCobaltBrass"],"name":"四重钴黄铜锭","tr":"四重钴黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23535":{"oreDict":["stickCoal"],"name":"煤杆","tr":"煤杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15344":{"oreDict":["ingotQuadrupleUltimet"],"name":"四重哈氏合金锭","tr":"四重哈氏合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23536":{"oreDict":["stickCharcoal"],"name":"木炭杆","tr":"木炭杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15345":{"oreDict":["ingotQuadrupleAnyCopper"," ingotQuadrupleAnnealedCopper"],"name":"四重退火铜锭","tr":"四重退火铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23537":{"oreDict":["stickJade"],"name":"玉杆","tr":"玉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15346":{"oreDict":["ingotQuadrupleFierySteel"],"name":"四重炽热钢锭","tr":"四重炽热钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23538":{"oreDict":["stickLignite"],"name":"褐煤杆","tr":"褐煤杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15348":{"oreDict":["ingotQuadrupleRedSteel"],"name":"四重红钢锭","tr":"四重红钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23540":{"oreDict":["stickInfusedAir"],"name":"风之魔晶杆","tr":"风之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15349":{"oreDict":["ingotQuadrupleBlueSteel"],"name":"四重蓝钢锭","tr":"四重蓝钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23541":{"oreDict":["stickInfusedFire"],"name":"火之魔晶杆","tr":"火之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15350":{"oreDict":["ingotQuadrupleSterlingSilver"],"name":"四重标准纯银锭","tr":"四重标准纯银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23542":{"oreDict":["stickInfusedEarth"],"name":"地之魔晶杆","tr":"地之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15351":{"oreDict":["ingotQuadrupleRoseGold"],"name":"四重玫瑰金锭","tr":"四重玫瑰金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23543":{"oreDict":["stickInfusedWater"],"name":"水之魔晶杆","tr":"水之魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15352":{"oreDict":["ingotQuadrupleBlackBronze"],"name":"四重黑青铜锭","tr":"四重黑青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23544":{"oreDict":["stickInfusedEntropy"],"name":"混沌魔晶杆","tr":"混沌魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15353":{"oreDict":["ingotQuadrupleBismuthBronze"],"name":"四重铋青铜锭","tr":"四重铋青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23545":{"oreDict":["stickInfusedOrder"],"name":"秩序魔晶杆","tr":"秩序魔晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15354":{"oreDict":["ingotQuadrupleIronMagnetic"],"name":"四重磁化铁锭","tr":"四重磁化铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15355":{"oreDict":["ingotQuadrupleSteelMagnetic"],"name":"四重磁化钢锭","tr":"四重磁化钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15356":{"oreDict":["ingotQuadrupleNeodymiumMagnetic"],"name":"四重磁化钕锭","tr":"四重磁化钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15357":{"oreDict":["ingotQuadrupleVanadiumGallium"],"name":"四重钒镓合金锭","tr":"四重钒镓合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15358":{"oreDict":["ingotQuadrupleYttriumBariumCuprate"],"name":"四重钇钡铜氧合金锭","tr":"四重钇钡铜氧合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15359":{"oreDict":["ingotQuadrupleNiobiumNitride"],"name":"四重氮化铌锭","tr":"四重氮化铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15360":{"oreDict":["ingotQuadrupleNiobiumTitanium"],"name":"四重铌钛合金锭","tr":"四重铌钛合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15361":{"oreDict":["ingotQuadrupleChromiumDioxide"],"name":"四重二氧化铬锭","tr":"四重二氧化铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15362":{"oreDict":["ingotQuadrupleKnightmetal"],"name":"四重骑士金属锭","tr":"四重骑士金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15363":{"oreDict":["ingotQuadrupleTinAlloy"],"name":"四重锡铁合金锭","tr":"四重锡铁合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15364":{"oreDict":["ingotQuadrupleDarkSteel"],"name":"四重玄钢锭","tr":"四重玄钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15365":{"oreDict":["ingotQuadrupleElectricalSteel"],"name":"四重磁钢锭","tr":"四重磁钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15366":{"oreDict":["ingotQuadrupleEnergeticAlloy"],"name":"四重充能合金锭","tr":"四重充能合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15367":{"oreDict":["ingotQuadrupleVibrantAlloy"],"name":"四重脉冲合金锭","tr":"四重脉冲合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15368":{"oreDict":["ingotQuadrupleShadow"],"name":"四重暗影锭","tr":"四重暗影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15369":{"oreDict":["ingotQuadrupleConductiveIron"],"name":"四重导电铁锭","tr":"四重导电铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15370":{"oreDict":["ingotQuadrupleTungstenCarbide"],"name":"四重碳化钨锭","tr":"四重碳化钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15371":{"oreDict":["ingotQuadrupleVanadiumSteel"],"name":"四重钒钢锭","tr":"四重钒钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15372":{"oreDict":["ingotQuadrupleHSSG"],"name":"四重高速钢-G锭","tr":"四重高速钢-G锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15373":{"oreDict":["ingotQuadrupleHSSE"],"name":"四重高速钢-E锭","tr":"四重高速钢-E锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15374":{"oreDict":["ingotQuadrupleHSSS"],"name":"四重高速钢-S锭","tr":"四重高速钢-S锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15378":{"oreDict":["ingotQuadruplePulsatingIron"],"name":"四重脉冲铁锭","tr":"四重脉冲铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15379":{"oreDict":["ingotQuadrupleSoularium"],"name":"四重魂金锭","tr":"四重魂金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15380":{"oreDict":["ingotQuadrupleEnderiumBase"],"name":"四重末影粗胚锭","tr":"四重末影粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15381":{"oreDict":["ingotQuadrupleRedstoneAlloy"],"name":"四重红石合金锭","tr":"四重红石合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15382":{"oreDict":["ingotQuadrupleArdite"],"name":"四重阿迪特锭","tr":"四重阿迪特锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15383":{"oreDict":["ingotQuadrupleReinforced"],"name":"四重强化金属锭","tr":"四重强化金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15384":{"oreDict":["ingotQuadrupleGalgadorian"],"name":"四重混合晶锭","tr":"四重混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23576":{"oreDict":["stickTPVAlloy"],"name":"钛铂钒合金杆","tr":"钛铂钒合金杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15385":{"oreDict":["ingotQuadrupleEnhancedGalgadorian"],"name":"四重强化混合晶锭","tr":"四重强化混合晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15386":{"oreDict":["ingotQuadrupleManyullyn"],"name":"四重玛玉灵锭","tr":"四重玛玉灵锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15387":{"oreDict":["ingotQuadrupleMytryl"],"name":"四重深空秘银锭","tr":"四重深空秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15388":{"oreDict":["ingotQuadrupleBlackPlutonium"],"name":"四重黑钚锭","tr":"四重黑钚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15389":{"oreDict":["ingotQuadrupleCallistoIce"],"name":"四重木卫四冰锭","tr":"四重木卫四冰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23581":{"oreDict":["stickTranscendentMetal"],"name":"超时空金属杆","tr":"超时空金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15390":{"oreDict":["ingotQuadrupleLedox"],"name":"四重深铅锭","tr":"四重深铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23582":{"oreDict":["stickEnrichedHolmium"],"name":"富集钬杆","tr":"富集钬杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15391":{"oreDict":["ingotQuadrupleQuantium"],"name":"四重量子锭","tr":"四重量子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23583":{"oreDict":["stickMagnetohydrodynamicallyConstrainedStarMatter"],"name":"磁流体约束恒星物质杆","tr":"磁流体约束恒星物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15392":{"oreDict":["ingotQuadrupleDuralumin"],"name":"四重硬铝锭","tr":"四重硬铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15393":{"oreDict":["ingotQuadrupleOriharukon"],"name":"四重奥利哈钢锭","tr":"四重奥利哈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23585":{"oreDict":["stickWhiteDwarfMatter"],"name":"白矮星物质杆","tr":"白矮星物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15394":{"oreDict":["ingotQuadrupleInfinityCatalyst"],"name":"四重无尽催化剂锭","tr":"四重无尽催化剂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23586":{"oreDict":["stickBlackDwarfMatter"],"name":"黑矮星物质杆","tr":"黑矮星物质杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15395":{"oreDict":["ingotQuadrupleBedrockium"],"name":"四重基岩锭","tr":"四重基岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23588":{"oreDict":["stickSpaceTime"],"name":"时空杆","tr":"时空杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15397":{"oreDict":["ingotQuadrupleInfinity"],"name":"四重无尽锭","tr":"四重无尽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15398":{"oreDict":["ingotQuadrupleMysteriousCrystal"],"name":"四重神秘水晶锭","tr":"四重神秘水晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15399":{"oreDict":["ingotQuadrupleSamariumMagnetic"],"name":"四重磁化钐锭","tr":"四重磁化钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15400":{"oreDict":["ingotQuadrupleAlumite"],"name":"四重耐酸铝锭","tr":"四重耐酸铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15401":{"oreDict":["ingotQuadrupleEndSteel"],"name":"四重末影钢锭","tr":"四重末影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15402":{"oreDict":["ingotQuadrupleCrudeSteel"],"name":"四重复合粘土锭","tr":"四重复合粘土锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15403":{"oreDict":["ingotQuadrupleCrystallineAlloy"],"name":"四重晶化合金锭","tr":"四重晶化合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15404":{"oreDict":["ingotQuadrupleMelodicAlloy"],"name":"四重旋律合金锭","tr":"四重旋律合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15405":{"oreDict":["ingotQuadrupleStellarAlloy"],"name":"四重恒星合金锭","tr":"四重恒星合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15406":{"oreDict":["ingotQuadrupleCrystallinePinkSlime"],"name":"四重晶化粉红史莱姆锭","tr":"四重晶化粉红史莱姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15407":{"oreDict":["ingotQuadrupleEnergeticSilver"],"name":"四重充能银锭","tr":"四重充能银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23599":{"oreDict":["stickPolybenzimidazole"],"name":"聚苯并咪唑杆","tr":"聚苯并咪唑杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15408":{"oreDict":["ingotQuadrupleVividAlloy"],"name":"四重生动合金锭","tr":"四重生动合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23610":{"oreDict":["stickEpoxidFiberReinforced"],"name":"纤维强化的环氧树脂杆","tr":"纤维强化的环氧树脂杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23611":{"oreDict":["stickBorosilicateGlass"],"name":"硼玻璃杆","tr":"硼玻璃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23613":{"oreDict":["stickNickelZincFerrite"],"name":"镍锌铁氧体杆","tr":"镍锌铁氧体杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23631":{"oreDict":["stickPolyphenyleneSulfide"],"name":"聚苯硫醚杆","tr":"聚苯硫醚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23635":{"oreDict":["stickStyreneButadieneRubber"," stickAnyRubber"," stickAnySyntheticRubber"],"name":"丁苯橡胶杆","tr":"丁苯橡胶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23636":{"oreDict":["stickPolystyrene"],"name":"聚苯乙烯杆","tr":"聚苯乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23649":{"oreDict":["stickPolyvinylChloride"],"name":"聚氯乙烯杆","tr":"聚氯乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15470":{"oreDict":["ingotQuadrupleEpoxid"],"name":"四重环氧树脂条","tr":"四重环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15471":{"oreDict":["ingotQuadrupleSilicone"," ingotQuadrupleAnyRubber"," ingotQuadrupleAnySyntheticRubber"],"name":"四重硅橡胶条","tr":"四重硅橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15472":{"oreDict":["ingotQuadruplePolycaprolactam"],"name":"四重聚己内酰胺条","tr":"四重聚己内酰胺条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15473":{"oreDict":["ingotQuadruplePolytetrafluoroethylene"],"name":"四重聚四氟乙烯条","tr":"四重聚四氟乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15485":{"oreDict":["ingotQuadrupleAlduorite"],"name":"四重神秘蓝金锭","tr":"四重神秘蓝金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15488":{"oreDict":["ingotQuadrupleRubracium"],"name":"四重褐铜锭","tr":"四重褐铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15489":{"oreDict":["ingotQuadrupleVulcanite"],"name":"四重胶木锭","tr":"四重胶木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15521":{"oreDict":["ingotQuadrupleForce"],"name":"四重力量锭","tr":"四重力量锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15529":{"oreDict":["ingotQuadrupleVinteum"],"name":"四重温特姆锭","tr":"四重温特姆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23765":{"oreDict":["stickKevlar"],"name":"凯芙拉杆","tr":"凯芙拉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15576":{"oreDict":["ingotQuadrupleTPVAlloy"],"name":"四重钛铂钒合金锭","tr":"四重钛铂钒合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23770":{"oreDict":["stickHeeEndium"],"name":"终末杆","tr":"终末杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23772":{"oreDict":["stickNickelAluminide"],"name":"铝化镍杆","tr":"铝化镍杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15581":{"oreDict":["ingotQuadrupleTranscendentMetal"],"name":"四重超时空金属锭","tr":"四重超时空金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15582":{"oreDict":["ingotQuadrupleEnrichedHolmium"],"name":"四重富集钬锭","tr":"四重富集钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15585":{"oreDict":["ingotQuadrupleWhiteDwarfMatter"],"name":"四重白矮星物质锭","tr":"四重白矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15586":{"oreDict":["ingotQuadrupleBlackDwarfMatter"],"name":"四重黑矮星物质锭","tr":"四重黑矮星物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15588":{"oreDict":["ingotQuadrupleSpaceTime"],"name":"四重时空锭","tr":"四重时空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15599":{"oreDict":["ingotQuadruplePolybenzimidazole"],"name":"四重聚苯并咪唑锭","tr":"四重聚苯并咪唑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15610":{"oreDict":["ingotQuadrupleEpoxidFiberReinforced"],"name":"四重纤维强化的环氧树脂条","tr":"四重纤维强化的环氧树脂条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23804":{"oreDict":["stickObsidian"],"name":"黑曜石杆","tr":"黑曜石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15613":{"oreDict":["ingotQuadrupleNickelZincFerrite"],"name":"四重镍锌铁氧体锭","tr":"四重镍锌铁氧体锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32000":{"name":"铜GT币","tr":"铜GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32001":{"name":"白铜GT币","tr":"白铜GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32002":{"name":"银GT币","tr":"银GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32003":{"name":"金GT币","tr":"金GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32004":{"name":"铂GT币","tr":"铂GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32005":{"name":"锇GT币","tr":"锇GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32006":{"name":"硅岩GT币","tr":"硅岩GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32007":{"name":"中子GT币","tr":"中子GT币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32008":{"name":"上古金币","tr":"上古金币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32009":{"name":"Doge币","tr":"Doge币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32010":{"name":"巧克力币","tr":"巧克力币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32011":{"name":"工业铜币","tr":"工业铜币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32013":{"name":"工业银币","tr":"工业银币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32014":{"name":"工业金币","tr":"工业金币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15631":{"oreDict":["ingotQuadruplePolyphenyleneSulfide"],"name":"四重聚苯硫醚锭","tr":"四重聚苯硫醚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32015":{"name":"工业铂币","tr":"工业铂币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32016":{"name":"工业锇币","tr":"工业锇币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32017":{"name":"电动马达(UIV)","tr":"电动马达(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32018":{"name":"电动马达(UMV)","tr":"电动马达(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15635":{"oreDict":["ingotQuadrupleAnyRubber"," ingotQuadrupleAnySyntheticRubber"," ingotQuadrupleStyreneButadieneRubber"],"name":"四重丁苯橡胶条","tr":"四重丁苯橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32019":{"name":"电动马达(UXV)","tr":"电动马达(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15636":{"oreDict":["ingotQuadruplePolystyrene"],"name":"四重聚苯乙烯条","tr":"四重聚苯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32020":{"name":"电动马达(MAX)","tr":"电动马达(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23829":{"oreDict":["stickDeepIron"],"name":"深渊铁杆","tr":"深渊铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32021":{"name":"电动活塞(UIV)","tr":"电动活塞(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32022":{"name":"电动活塞(UMV)","tr":"电动活塞(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32023":{"name":"电动活塞(UXV)","tr":"电动活塞(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32024":{"name":"电动活塞(MAX)","tr":"电动活塞(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32025":{"name":"电动泵(UIV)","tr":"电动泵(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32026":{"name":"电动泵(UMV)","tr":"电动泵(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32027":{"name":"电动泵(UXV)","tr":"电动泵(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32028":{"name":"电动泵(MAX)","tr":"电动泵(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32029":{"name":"传送带(UIV)","tr":"传送带(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32030":{"name":"传送带(UMV)","tr":"传送带(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32031":{"name":"传送带(UXV)","tr":"传送带(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32032":{"name":"传送带(MAX)","tr":"传送带(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15649":{"oreDict":["ingotQuadruplePolyvinylChloride"],"name":"四重聚氯乙烯条","tr":"四重聚氯乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32033":{"name":"机械臂(UIV)","tr":"机械臂(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32034":{"name":"机械臂(UMV)","tr":"机械臂(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32035":{"name":"机械臂(UXV)","tr":"机械臂(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32036":{"name":"机械臂(MAX)","tr":"机械臂(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32037":{"name":"发射器(UIV)","tr":"发射器(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32038":{"name":"发射器(UMV)","tr":"发射器(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32039":{"name":"发射器(UXV)","tr":"发射器(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32040":{"name":"发射器(MAX)","tr":"发射器(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32041":{"name":"传感器(UIV)","tr":"传感器(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32042":{"name":"传感器(UMV)","tr":"传感器(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32043":{"name":"传感器(UXV)","tr":"传感器(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32044":{"name":"传感器(MAX)","tr":"传感器(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32045":{"name":"力场发生器(UIV)","tr":"力场发生器(UIV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32046":{"name":"力场发生器(UMV)","tr":"力场发生器(UMV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32047":{"name":"力场发生器(UXV)","tr":"力场发生器(UXV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23856":{"oreDict":["stickSiliconSolarGrade"],"name":"太阳能级硅(多晶硅)杆","tr":"太阳能级硅(多晶硅)杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32048":{"name":"力场发生器(MAX)","tr":"力场发生器(MAX)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23868":{"oreDict":["stickTrinium"],"name":"三元金属杆","tr":"三元金属杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23874":{"oreDict":["stickPlastic"],"name":"聚乙烯杆","tr":"聚乙烯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23880":{"oreDict":["stickRubber"," stickAnyRubber"],"name":"橡胶杆","tr":"橡胶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23884":{"oreDict":["stickDesh"],"name":"戴斯杆","tr":"戴斯杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23889":{"oreDict":["stickWoodSealed"],"name":"蜡封木棍","tr":"蜡封木棍","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23890":{"oreDict":["stickGlass"],"name":"玻璃杆","tr":"玻璃杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32100":{"name":"铁矿车车轮","tr":"铁矿车车轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32101":{"name":"钢矿车车轮","tr":"钢矿车车轮","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23912":{"oreDict":["stickChrysotile"],"name":"白石棉杆","tr":"白石棉杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23913":{"oreDict":["stickRealgar"],"name":"雄黄杆","tr":"雄黄杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32110":{"name":"耐火粘土块","tr":"耐火粘土块","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32111":{"name":"耐火砖","tr":"耐火砖","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23951":{"oreDict":["stickVyroxeres"],"name":"幽冥剧毒结晶杆","tr":"幽冥剧毒结晶杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23952":{"oreDict":["stickCeruclase"],"name":"暗影秘银杆","tr":"暗影秘银杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32145":{"oreDict":["batteryMAX"],"name":"狂·终极电池","tr":"狂·终极电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32146":{"oreDict":["batteryERV"],"name":"太·终极电池","tr":"太·终极电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23956":{"oreDict":["stickTartarite"],"name":"溶火之石杆","tr":"溶火之石杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15765":{"oreDict":["ingotQuadrupleKevlar"],"name":"四重凯芙拉锭","tr":"四重凯芙拉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15770":{"oreDict":["ingotQuadrupleHeeEndium"],"name":"四重终末锭","tr":"四重终末锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15772":{"oreDict":["ingotQuadrupleNickelAluminide"],"name":"四重铝化镍锭","tr":"四重铝化镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23966":{"oreDict":["stickOrichalcum"],"name":"山铜杆","tr":"山铜杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23970":{"oreDict":["stickVoid"],"name":"虚空杆","tr":"虚空杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23974":{"oreDict":["stickSuperconductorUEVBase"],"name":"UEV超导粗胚杆","tr":"UEV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23975":{"oreDict":["stickDraconium"],"name":"龙杆","tr":"龙杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23976":{"oreDict":["stickDraconiumAwakened"],"name":"觉醒龙杆","tr":"觉醒龙杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23977":{"oreDict":["stickBloodInfusedIron"],"name":"注血铁杆","tr":"注血铁杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23978":{"oreDict":["stickIchorium"],"name":"灵宝杆","tr":"灵宝杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23979":{"oreDict":["stickRadoxPoly"],"name":"拉多X聚合物杆","tr":"拉多X聚合物杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23980":{"oreDict":["stickGalliumArsenide"],"name":"砷化镓杆","tr":"砷化镓杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23981":{"oreDict":["stickIndiumGalliumPhosphide"],"name":"磷化铟镓杆","tr":"磷化铟镓杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23982":{"oreDict":["stickCosmicNeutronium"],"name":"宇宙中子态素杆","tr":"宇宙中子态素杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23984":{"oreDict":["stickFlerovium_GT5U"],"name":"杆","tr":"杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23985":{"oreDict":["stickLongasssuperconductornameforuhvwire"],"name":"UHV超导粗胚杆","tr":"UHV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23986":{"oreDict":["stickLongasssuperconductornameforuvwire"],"name":"UV超导粗胚杆","tr":"UV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23987":{"oreDict":["stickPentacadmiummagnesiumhexaoxid"],"name":"MV超导粗胚杆","tr":"MV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23988":{"oreDict":["stickTitaniumonabariumdecacoppereikosaoxid"],"name":"HV超导粗胚杆","tr":"HV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23989":{"oreDict":["stickUraniumtriplatinid"],"name":"EV超导粗胚杆","tr":"EV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23990":{"oreDict":["stickVanadiumtriindinid"],"name":"IV超导粗胚杆","tr":"IV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23991":{"oreDict":["stickTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"LuV超导粗胚杆","tr":"LuV超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"23992":{"oreDict":["stickTetranaquadahdiindiumhexaplatiumosminid"],"name":"ZPM超导粗胚杆","tr":"ZPM超导粗胚杆","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32200":{"name":"空玻璃箭头","tr":"空玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32201":{"name":"剧毒玻璃箭头","tr":"剧毒玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32202":{"name":"剧毒玻璃箭头","tr":"剧毒玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32203":{"name":"剧毒玻璃箭头","tr":"剧毒玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32204":{"name":"缓慢玻璃箭头","tr":"缓慢玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32205":{"name":"缓慢玻璃箭头","tr":"缓慢玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32206":{"name":"虚弱玻璃箭头","tr":"虚弱玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32207":{"name":"虚弱玻璃箭头","tr":"虚弱玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32208":{"name":"圣水玻璃箭头","tr":"圣水玻璃箭头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15829":{"oreDict":["ingotQuadrupleDeepIron"],"name":"四重深渊铁锭","tr":"四重深渊铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32225":{"name":"常规玻璃药水箭","tr":"常规玻璃药水箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32226":{"name":"常规剧毒箭","tr":"常规剧毒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32227":{"name":"常规剧毒箭","tr":"常规剧毒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32228":{"name":"常规剧毒箭","tr":"常规剧毒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32229":{"name":"常规缓慢箭","tr":"常规缓慢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32230":{"name":"常规缓慢箭","tr":"常规缓慢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32231":{"name":"常规虚弱箭","tr":"常规虚弱箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32232":{"name":"常规虚弱箭","tr":"常规虚弱箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32233":{"name":"常规圣水箭","tr":"常规圣水箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15856":{"oreDict":["ingotQuadrupleSiliconSolarGrade"],"name":"四重太阳能级硅(多晶硅)锭","tr":"四重太阳能级硅(多晶硅)锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32250":{"name":"轻质玻璃药水箭","tr":"轻质玻璃药水箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32251":{"name":"轻质剧毒箭","tr":"轻质剧毒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15868":{"oreDict":["ingotQuadrupleTrinium"],"name":"四重三元金属锭","tr":"四重三元金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32252":{"name":"轻质剧毒箭","tr":"轻质剧毒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32253":{"name":"轻质剧毒箭","tr":"轻质剧毒箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32254":{"name":"轻质缓慢箭","tr":"轻质缓慢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32255":{"name":"轻质缓慢箭","tr":"轻质缓慢箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32256":{"name":"轻质虚弱箭","tr":"轻质虚弱箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32257":{"name":"轻质虚弱箭","tr":"轻质虚弱箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15874":{"oreDict":["ingotQuadruplePlastic"],"name":"四重聚乙烯条","tr":"四重聚乙烯条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32258":{"name":"轻质圣水箭","tr":"轻质圣水箭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15880":{"oreDict":["ingotQuadrupleRubber"," ingotQuadrupleAnyRubber"],"name":"四重橡胶条","tr":"四重橡胶条","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15884":{"oreDict":["ingotQuadrupleDesh"],"name":"四重戴斯锭","tr":"四重戴斯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32270":{"name":"物品过滤覆盖板(输出)","tr":"物品过滤覆盖板(输出)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32271":{"name":"物品过滤覆盖板(输入)","tr":"物品过滤覆盖板(输入)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32272":{"name":"流体过滤覆盖板","tr":"流体过滤覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15912":{"oreDict":["ingotQuadrupleChrysotile"],"name":"四重石棉锭","tr":"四重石棉锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15913":{"oreDict":["ingotQuadrupleRealgar"],"name":"四重雄黄锭","tr":"四重雄黄锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32300":{"name":"空模板","tr":"空模板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32301":{"name":"模具(板)","tr":"模具(板)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32302":{"name":"模具(外壳)","tr":"模具(外壳)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32303":{"name":"模具(齿轮)","tr":"模具(齿轮)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32304":{"name":"模具(硬币)","tr":"模具(硬币)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32305":{"name":"模具(瓶子)","tr":"模具(瓶子)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32306":{"name":"模具(锭)","tr":"模具(锭)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32307":{"name":"模具(球)","tr":"模具(球)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32308":{"name":"模具(块)","tr":"模具(块)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32309":{"name":"模具(粒)","tr":"模具(粒)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32310":{"name":"模具(小圆面包)","tr":"模具(小圆面包)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32311":{"name":"模具(面包)","tr":"模具(面包)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32312":{"name":"模具(法棍)","tr":"模具(法棍)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32313":{"name":"模具(圆柱)","tr":"模具(圆柱)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32314":{"name":"模具(砧)","tr":"模具(砧)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32315":{"name":"模具(名字)","tr":"模具(名字)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32316":{"name":"模具(箭头)","tr":"模具(箭头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32317":{"name":"模具(小型齿轮)","tr":"模具(小型齿轮)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32318":{"name":"模具(杆)","tr":"模具(杆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32319":{"name":"模具(螺栓)","tr":"模具(螺栓)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32320":{"name":"模具(滚珠)","tr":"模具(滚珠)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32321":{"name":"模具(螺丝)","tr":"模具(螺丝)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32322":{"name":"模具(环)","tr":"模具(环)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32323":{"name":"模具(长杆)","tr":"模具(长杆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32324":{"name":"模具(转子)","tr":"模具(转子)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32325":{"name":"模具(涡轮扇叶)","tr":"模具(涡轮扇叶)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32326":{"name":"模具(微型管道)","tr":"模具(微型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32327":{"name":"模具(小型管道)","tr":"模具(小型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32328":{"name":"模具(管道)","tr":"模具(管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32329":{"name":"模具(大型管道)","tr":"模具(大型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32330":{"name":"模具(巨型管道)","tr":"模具(巨型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32331":{"name":"模具(钻头)","tr":"模具(钻头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32332":{"name":"蒸汽校准器(LV)","tr":"蒸汽校准器(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32333":{"name":"蒸汽校准器(MV)","tr":"蒸汽校准器(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32334":{"name":"蒸汽校准器(HV)","tr":"蒸汽校准器(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15951":{"oreDict":["ingotQuadrupleVyroxeres"],"name":"四重幽冥剧毒结晶锭","tr":"四重幽冥剧毒结晶锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32335":{"name":"蒸汽校准器(EV)","tr":"蒸汽校准器(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15952":{"oreDict":["ingotQuadrupleCeruclase"],"name":"四重暗影秘银锭","tr":"四重暗影秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32336":{"name":"蒸汽校准器(IV)","tr":"蒸汽校准器(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15956":{"oreDict":["ingotQuadrupleTartarite"],"name":"四重溶火之石锭","tr":"四重溶火之石锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15966":{"oreDict":["ingotQuadrupleOrichalcum"],"name":"四重山铜锭","tr":"四重山铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32350":{"name":"模头(板)","tr":"模头(板)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32351":{"name":"模头(杆)","tr":"模头(杆)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32352":{"name":"模头(螺栓)","tr":"模头(螺栓)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32353":{"name":"模头(环)","tr":"模头(环)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15970":{"oreDict":["ingotQuadrupleVoid"],"name":"四重虚空锭","tr":"四重虚空锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32354":{"name":"模头(单元)","tr":"模头(单元)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32355":{"name":"模头(锭)","tr":"模头(锭)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32356":{"name":"模头(导线)","tr":"模头(导线)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32357":{"name":"模头(外壳)","tr":"模头(外壳)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15974":{"oreDict":["ingotQuadrupleSuperconductorUEVBase"],"name":"四重UEV超导粗胚锭","tr":"四重UEV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32358":{"name":"模头(微型管道)","tr":"模头(微型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15975":{"oreDict":["ingotQuadrupleDraconium"],"name":"四重龙锭","tr":"四重龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32359":{"name":"模头(小型管道)","tr":"模头(小型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15976":{"oreDict":["ingotQuadrupleDraconiumAwakened"],"name":"四重觉醒龙锭","tr":"四重觉醒龙锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32360":{"name":"模头(管道)","tr":"模头(管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15977":{"oreDict":["ingotQuadrupleBloodInfusedIron"],"name":"四重注血铁锭","tr":"四重注血铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32361":{"name":"模头(大型管道)","tr":"模头(大型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15978":{"oreDict":["ingotQuadrupleIchorium"],"name":"四重灵宝锭","tr":"四重灵宝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32362":{"name":"模头(巨型管道)","tr":"模头(巨型管道)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15979":{"oreDict":["ingotQuadrupleRadoxPoly"],"name":"四重拉多X聚合物锭","tr":"四重拉多X聚合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32363":{"name":"模头(块)","tr":"模头(块)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15980":{"oreDict":["ingotQuadrupleGalliumArsenide"],"name":"四重砷化镓锭","tr":"四重砷化镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32364":{"name":"模头(剑刃)","tr":"模头(剑刃)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15981":{"oreDict":["ingotQuadrupleIndiumGalliumPhosphide"],"name":"四重磷化铟镓锭","tr":"四重磷化铟镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32365":{"name":"模头(镐头)","tr":"模头(镐头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15982":{"oreDict":["ingotQuadrupleCosmicNeutronium"],"name":"四重宇宙中子态素锭","tr":"四重宇宙中子态素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32366":{"name":"模头(铲头)","tr":"模头(铲头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32367":{"name":"模头(斧头)","tr":"模头(斧头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15984":{"oreDict":["ingotQuadrupleFlerovium_GT5U"],"name":"四重锭","tr":"四重锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32368":{"name":"模头(锄头)","tr":"模头(锄头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15985":{"oreDict":["ingotQuadrupleLongasssuperconductornameforuhvwire"],"name":"四重UHV超导粗胚锭","tr":"四重UHV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32369":{"name":"模头(锤头)","tr":"模头(锤头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15986":{"oreDict":["ingotQuadrupleLongasssuperconductornameforuvwire"],"name":"四重UV超导粗胚锭","tr":"四重UV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32370":{"name":"模头(锉刀刃)","tr":"模头(锉刀刃)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15987":{"oreDict":["ingotQuadruplePentacadmiummagnesiumhexaoxid"],"name":"四重MV超导粗胚锭","tr":"四重MV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32371":{"name":"模头(锯刃)","tr":"模头(锯刃)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15988":{"oreDict":["ingotQuadrupleTitaniumonabariumdecacoppereikosaoxid"],"name":"四重HV超导粗胚锭","tr":"四重HV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32372":{"name":"模头(齿轮)","tr":"模头(齿轮)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15989":{"oreDict":["ingotQuadrupleUraniumtriplatinid"],"name":"四重EV超导粗胚锭","tr":"四重EV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32373":{"name":"模头(瓶子)","tr":"模头(瓶子)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15990":{"oreDict":["ingotQuadrupleVanadiumtriindinid"],"name":"四重IV超导粗胚锭","tr":"四重IV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32374":{"name":"模头(转子)","tr":"模头(转子)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15991":{"oreDict":["ingotQuadrupleTetraindiumditindibariumtitaniumheptacoppertetrakaidekaoxid"],"name":"四重LuV超导粗胚锭","tr":"四重LuV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32375":{"name":"模头(小型齿轮)","tr":"模头(小型齿轮)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"15992":{"oreDict":["ingotQuadrupleTetranaquadahdiindiumhexaplatiumosminid"],"name":"四重ZPM超导粗胚锭","tr":"四重ZPM超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32376":{"name":"模头(涡轮扇叶)","tr":"模头(涡轮扇叶)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32377":{"name":"模头(钻头)","tr":"模头(钻头)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16006":{"oreDict":["ingotQuintupleLithium"],"name":"五重锂锭","tr":"五重锂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16008":{"oreDict":["ingotQuintupleBeryllium"],"name":"五重铍锭","tr":"五重铍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16010":{"oreDict":["ingotQuintupleCarbon"],"name":"五重碳锭","tr":"五重碳锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32398":{"name":"切削器刀刃(平切)","tr":"切削器刀刃(平切)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32399":{"name":"切削器刀刃(切条)","tr":"切削器刀刃(切条)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24208":{"oreDict":["lensManaDiamond"],"name":"魔力钻石透镜","tr":"魔力钻石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32400":{"name":"空塑料燃料罐","tr":"空塑料燃料罐","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24209":{"oreDict":["lensBotaniaDragonstone"],"name":"龙石透镜","tr":"龙石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32401":{"name":"塑料燃料罐","tr":"塑料燃料罐","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16018":{"oreDict":["ingotQuintupleMagnesium"],"name":"五重镁锭","tr":"五重镁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32402":{"name":"空喷漆罐","tr":"空喷漆罐","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16019":{"oreDict":["ingotQuintupleAluminium"],"name":"五重铝锭","tr":"五重铝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32403":{"name":"空板条箱","tr":"空板条箱","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16020":{"oreDict":["ingotQuintupleSilicon"],"name":"五重硅锭","tr":"五重硅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32404":{"name":"空保温瓶","tr":"空保温瓶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32405":{"name":"大型钢流体单元","tr":"大型钢流体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32406":{"name":"大型钨钢流体单元","tr":"大型钨钢流体单元","tab":"材料","type":"Item","maxStackSize":32,"maxDurability":1},"32407":{"name":"大型铝流体单元","tr":"大型铝流体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32408":{"name":"大型不锈钢流体单元","tr":"大型不锈钢流体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16025":{"oreDict":["ingotQuintuplePotassium"],"name":"五重钾锭","tr":"五重钾锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32409":{"name":"大型钛流体单元","tr":"大型钛流体单元","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32410":{"name":"大型铬流体单元","tr":"大型铬流体单元","tab":"材料","type":"Item","maxStackSize":8,"maxDurability":1},"16027":{"oreDict":["ingotQuintupleScandium"],"name":"五重钪锭","tr":"五重钪锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32411":{"name":"大型铱流体单元","tr":"大型铱流体单元","tab":"材料","type":"Item","maxStackSize":2,"maxDurability":1},"16028":{"oreDict":["ingotQuintupleTitanium"],"name":"五重钛锭","tr":"五重钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32412":{"name":"大型锇流体单元","tr":"大型锇流体单元","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"16029":{"oreDict":["ingotQuintupleVanadium"],"name":"五重钒锭","tr":"五重钒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32413":{"name":"大型中子流体单元","tr":"大型中子流体单元","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"16030":{"oreDict":["ingotQuintupleChrome"],"name":"五重铬锭","tr":"五重铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16031":{"oreDict":["ingotQuintupleManganese"],"name":"五重锰锭","tr":"五重锰锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32415":{"name":"粗制超立方体","tr":"粗制超立方体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16032":{"oreDict":["ingotQuintupleIron"," ingotQuintupleAnyIron"],"name":"五重铁锭","tr":"五重铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32416":{"name":"Giga Chad代币","tr":"Giga Chad代币","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16033":{"oreDict":["ingotQuintupleCobalt"],"name":"五重钴锭","tr":"五重钴锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32417":{"name":"充能超立方体","tr":"充能超立方体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16034":{"oreDict":["ingotQuintupleNickel"],"name":"五重镍锭","tr":"五重镍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16035":{"oreDict":["ingotQuintupleCopper"," ingotQuintupleAnyCopper"],"name":"五重铜锭","tr":"五重铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16036":{"oreDict":["ingotQuintupleZinc"],"name":"五重锌锭","tr":"五重锌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16037":{"oreDict":["ingotQuintupleGallium"],"name":"五重镓锭","tr":"五重镓锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16039":{"oreDict":["ingotQuintupleArsenic"],"name":"五重砷锭","tr":"五重砷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16043":{"oreDict":["ingotQuintupleRubidium"],"name":"五重铷锭","tr":"五重铷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32427":{"name":"超稳态自修复粘合剂","tr":"超稳态自修复粘合剂","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32428":{"name":"复合稀土超导材料","tr":"复合稀土超导材料","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16045":{"oreDict":["ingotQuintupleYttrium"],"name":"五重钇锭","tr":"五重钇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32429":{"name":"超固态超能硅岩黑体","tr":"超固态超能硅岩黑体","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32430":{"name":"喷漆罐(黑色)","tr":"喷漆罐(黑色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16047":{"oreDict":["ingotQuintupleNiobium"],"name":"五重铌锭","tr":"五重铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16048":{"oreDict":["ingotQuintupleMolybdenum"],"name":"五重钼锭","tr":"五重钼锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32432":{"name":"喷漆罐(红色)","tr":"喷漆罐(红色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32434":{"name":"喷漆罐(绿色)","tr":"喷漆罐(绿色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16052":{"oreDict":["ingotQuintuplePalladium"],"name":"五重钯锭","tr":"五重钯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32436":{"name":"喷漆罐(棕色)","tr":"喷漆罐(棕色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16054":{"oreDict":["ingotQuintupleSilver"],"name":"五重银锭","tr":"五重银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32438":{"name":"喷漆罐(蓝色)","tr":"喷漆罐(蓝色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16056":{"oreDict":["ingotQuintupleIndium"],"name":"五重铟锭","tr":"五重铟锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32440":{"name":"喷漆罐(紫色)","tr":"喷漆罐(紫色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16057":{"oreDict":["ingotQuintupleTin"],"name":"五重锡锭","tr":"五重锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16058":{"oreDict":["ingotQuintupleAntimony"],"name":"五重锑锭","tr":"五重锑锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32442":{"name":"喷漆罐(青色)","tr":"喷漆罐(青色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16059":{"oreDict":["ingotQuintupleTellurium"],"name":"五重碲锭","tr":"五重碲锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32444":{"name":"喷漆罐(淡灰)","tr":"喷漆罐(淡灰)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16062":{"oreDict":["ingotQuintupleCaesium"],"name":"五重铯锭","tr":"五重铯锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32446":{"name":"喷漆罐(灰色)","tr":"喷漆罐(灰色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16063":{"oreDict":["ingotQuintupleBarium"],"name":"五重钡锭","tr":"五重钡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16064":{"oreDict":["ingotQuintupleLanthanum"],"name":"五重镧锭","tr":"五重镧锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32448":{"name":"喷漆罐(粉色)","tr":"喷漆罐(粉色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16065":{"oreDict":["ingotQuintupleCerium"],"name":"五重铈锭","tr":"五重铈锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16066":{"oreDict":["ingotQuintuplePraseodymium"],"name":"五重镨锭","tr":"五重镨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32450":{"name":"喷漆罐(黄绿)","tr":"喷漆罐(黄绿)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16067":{"oreDict":["ingotQuintupleNeodymium"],"name":"五重钕锭","tr":"五重钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16068":{"oreDict":["ingotQuintuplePromethium"],"name":"五重钷锭","tr":"五重钷锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32452":{"name":"喷漆罐(黄色)","tr":"喷漆罐(黄色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16069":{"oreDict":["ingotQuintupleSamarium"],"name":"五重钐锭","tr":"五重钐锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16070":{"oreDict":["ingotQuintupleEuropium"],"name":"五重铕锭","tr":"五重铕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32454":{"name":"喷漆罐(淡蓝)","tr":"喷漆罐(淡蓝)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16071":{"oreDict":["ingotQuintupleGadolinium"],"name":"五重钆锭","tr":"五重钆锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16072":{"oreDict":["ingotQuintupleTerbium"],"name":"五重铽锭","tr":"五重铽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32456":{"name":"喷漆罐(品红)","tr":"喷漆罐(品红)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16073":{"oreDict":["ingotQuintupleDysprosium"],"name":"五重镝锭","tr":"五重镝锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16074":{"oreDict":["ingotQuintupleHolmium"],"name":"五重钬锭","tr":"五重钬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32458":{"name":"喷漆罐(橙色)","tr":"喷漆罐(橙色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16075":{"oreDict":["ingotQuintupleErbium"],"name":"五重铒锭","tr":"五重铒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16076":{"oreDict":["ingotQuintupleThulium"],"name":"五重铥锭","tr":"五重铥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32460":{"name":"喷漆罐(白色)","tr":"喷漆罐(白色)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16077":{"oreDict":["ingotQuintupleYtterbium"],"name":"五重镱锭","tr":"五重镱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16078":{"oreDict":["ingotQuintupleLutetium"],"name":"五重镥锭","tr":"五重镥锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32462":{"name":"重型合金锭 T1","tr":"重型合金锭 T1","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32463":{"name":"重型合金锭 T2","tr":"重型合金锭 T2","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16080":{"oreDict":["ingotQuintupleTantalum"],"name":"五重钽锭","tr":"五重钽锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32464":{"name":"重型合金锭 T3","tr":"重型合金锭 T3","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16081":{"oreDict":["ingotQuintupleTungsten"],"name":"五重钨锭","tr":"五重钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32465":{"name":"溶剂喷罐","tr":"溶剂喷罐","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16083":{"oreDict":["ingotQuintupleOsmium"],"name":"五重锇锭","tr":"五重锇锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32467":{"name":"空的溶剂喷罐","tr":"空的溶剂喷罐","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16084":{"oreDict":["ingotQuintupleIridium"],"name":"五重铱锭","tr":"五重铱锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16085":{"oreDict":["ingotQuintuplePlatinum"],"name":"五重铂锭","tr":"五重铂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16086":{"oreDict":["ingotQuintupleGold"],"name":"五重金锭","tr":"五重金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32471":{"name":"火柴","tr":"火柴","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16089":{"oreDict":["ingotQuintupleLead"],"name":"五重铅锭","tr":"五重铅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32473":{"name":"火柴盒(满)","tr":"火柴盒(满)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16090":{"oreDict":["ingotQuintupleBismuth"],"name":"五重铋锭","tr":"五重铋锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32474":{"name":"打火机(空)","tr":"打火机(空)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32476":{"name":"打火机(满)","tr":"打火机(满)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32477":{"name":"铂打火机(空)","tr":"铂打火机(空)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32479":{"name":"铂打火机(满)","tr":"铂打火机(满)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16096":{"oreDict":["ingotQuintupleThorium"],"name":"五重钍锭","tr":"五重钍锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32480":{"name":"铱合金锭","tr":"铱合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16097":{"oreDict":["ingotQuintupleUranium235"],"name":"五重铀-235锭","tr":"五重铀-235锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32481":{"name":"打印页","tr":"打印页","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16098":{"oreDict":["ingotQuintupleUranium"],"name":"五重铀-238锭","tr":"五重铀-238锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16100":{"oreDict":["ingotQuintuplePlutonium"],"name":"五重钚-239锭","tr":"五重钚-239锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16101":{"oreDict":["ingotQuintuplePlutonium241"],"name":"五重钚-241锭","tr":"五重钚-241锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16103":{"oreDict":["ingotQuintupleAmericium"],"name":"五重镅锭","tr":"五重镅锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32487":{"oreDict":["bookWritten"," craftingBook"],"name":"书","tr":"书","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32488":{"oreDict":["bookWritten"," craftingBook"],"name":"书","tr":"书","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32489":{"oreDict":["bookWritten"," craftingBook"],"name":"书","tr":"书","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32490":{"name":"设计图","tr":"设计图","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32491":{"name":"设计图(合成)","tr":"设计图(合成)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16111":{"oreDict":["ingotQuintupleTengamPurified"],"name":"五重纯镃锭","tr":"五重纯镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32495":{"name":"设计图(1x1)","tr":"设计图(1x1)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16112":{"oreDict":["ingotQuintupleTengamAttuned"],"name":"五重谐镃锭","tr":"五重谐镃锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32496":{"name":"设计图(2x2)","tr":"设计图(2x2)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32497":{"name":"设计图(3x3)","tr":"设计图(3x3)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32498":{"name":"设计图(粉末)","tr":"设计图(粉末)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32499":{"oreDict":["batteryULV"],"name":"钽电容","tr":"钽电容","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32500":{"name":"小型电池外壳","tr":"小型电池外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32501":{"name":"中型电池外壳","tr":"中型电池外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32502":{"name":"大型电池外壳","tr":"大型电池外壳","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32510":{"oreDict":["batteryLV"],"name":"小型酸电池","tr":"小型酸电池","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"32511":{"name":"小型汞电池","tr":"小型汞电池","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"16129":{"oreDict":["ingotQuintupleNeutronium"],"name":"五重中子锭","tr":"五重中子锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16131":{"oreDict":["ingotQuintupleSuperconductorUIVBase"],"name":"五重UIV超导粗胚锭","tr":"五重UIV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32517":{"oreDict":["batteryLV"],"name":"小型镉电池","tr":"小型镉电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16134":{"oreDict":["ingotQuintupleSuperconductorUMVBase"],"name":"五重UMV超导粗胚锭","tr":"五重UMV超导粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32518":{"oreDict":["batteryLV"],"name":"小型锂电池","tr":"小型锂电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32519":{"oreDict":["batteryLV"],"name":"小型钠电池","tr":"小型钠电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32520":{"oreDict":["batteryMV"],"name":"中型酸电池","tr":"中型酸电池","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"32521":{"oreDict":["batteryMV"],"name":"中型汞电池","tr":"中型汞电池","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"16139":{"oreDict":["ingotQuintupleUniversium"],"name":"五重宇宙素锭","tr":"五重宇宙素锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16141":{"oreDict":["ingotQuintupleEternity"],"name":"五重永恒锭","tr":"五重永恒锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16143":{"oreDict":["ingotQuintupleMagmatter"],"name":"五重磁物质锭","tr":"五重磁物质锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32527":{"oreDict":["batteryMV"],"name":"中型镉电池","tr":"中型镉电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32528":{"oreDict":["batteryMV"],"name":"中型锂电池","tr":"中型锂电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32529":{"oreDict":["batteryMV"],"name":"中型钠电池","tr":"中型钠电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32530":{"oreDict":["batteryHV"],"name":"大型酸电池","tr":"大型酸电池","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"32531":{"oreDict":["batteryHV"],"name":"大型汞电池","tr":"大型汞电池","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"32537":{"oreDict":["batteryHV"],"name":"大型镉电池","tr":"大型镉电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32538":{"oreDict":["batteryHV"],"name":"大型锂电池","tr":"大型锂电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24347":{"oreDict":["lensFirestone"],"name":"火石透镜","tr":"火石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32539":{"oreDict":["batteryHV"],"name":"大型钠电池","tr":"大型钠电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32577":{"name":"流体存储监视覆盖板","tr":"流体存储监视覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16201":{"oreDict":["ingotQuintupleManasteel"],"name":"五重魔钢锭","tr":"五重魔钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16202":{"oreDict":["ingotQuintupleTerrasteel"],"name":"五重泰拉钢锭","tr":"五重泰拉钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16203":{"oreDict":["ingotQuintupleElvenElementium"],"name":"五重源质钢锭","tr":"五重源质钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16205":{"oreDict":["ingotQuintupleGaiaSpirit"],"name":"五重盖亚之魂锭","tr":"五重盖亚之魂锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32594":{"oreDict":["batteryUXV"],"name":"极·终极电池","tr":"极·终极电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32595":{"name":"电动马达(UEV)","tr":"电动马达(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32596":{"name":"电动马达(UHV)","tr":"电动马达(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32597":{"oreDict":["batteryIV"," batteryUltimate"],"name":"兰波顿能量球","tr":"兰波顿能量球","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32598":{"oreDict":["batteryZPM"],"name":"零点模块","tr":"零点模块","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"32599":{"oreDict":["batteryLuV"," batteryUltimate"],"name":"兰波顿能量球簇","tr":"兰波顿能量球簇","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32600":{"name":"电动马达(LV)","tr":"电动马达(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32601":{"name":"电动马达(MV)","tr":"电动马达(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32602":{"name":"电动马达(HV)","tr":"电动马达(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32603":{"name":"电动马达(EV)","tr":"电动马达(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32604":{"name":"电动马达(IV)","tr":"电动马达(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32605":{"oreDict":["batteryUV"],"name":"终极电池","tr":"终极电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32606":{"name":"电动马达(LuV)","tr":"电动马达(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32607":{"name":"电动马达(ZPM)","tr":"电动马达(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32608":{"name":"电动马达(UV)","tr":"电动马达(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32609":{"oreDict":["batteryUMV"],"name":"真·终极电池","tr":"真·终极电池","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32610":{"name":"电动泵(LV)","tr":"电动泵(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32611":{"name":"电动泵(MV)","tr":"电动泵(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32612":{"name":"电动泵(HV)","tr":"电动泵(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32613":{"name":"电动泵(EV)","tr":"电动泵(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32614":{"name":"电动泵(IV)","tr":"电动泵(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32615":{"name":"电动泵(LuV)","tr":"电动泵(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32616":{"name":"电动泵(ZPM)","tr":"电动泵(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32617":{"name":"电动泵(UV)","tr":"电动泵(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32618":{"name":"电动泵(UHV)","tr":"电动泵(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32619":{"name":"电动泵(UEV)","tr":"电动泵(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32620":{"name":"蒸汽阀(LV)","tr":"蒸汽阀(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32621":{"name":"蒸汽阀(MV)","tr":"蒸汽阀(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32622":{"name":"蒸汽阀(HV)","tr":"蒸汽阀(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32623":{"name":"蒸汽阀(EV)","tr":"蒸汽阀(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32624":{"name":"蒸汽阀(IV)","tr":"蒸汽阀(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32630":{"name":"传送带(LV)","tr":"传送带(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32631":{"name":"传送带(MV)","tr":"传送带(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32632":{"name":"传送带(HV)","tr":"传送带(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32633":{"name":"传送带(EV)","tr":"传送带(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32634":{"name":"传送带(IV)","tr":"传送带(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32635":{"name":"传送带(LuV)","tr":"传送带(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32636":{"name":"传送带(ZPM)","tr":"传送带(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32637":{"name":"传送带(UV)","tr":"传送带(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32638":{"name":"传送带(UHV)","tr":"传送带(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32639":{"name":"传送带(UEV)","tr":"传送带(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32640":{"name":"电动活塞(LV)","tr":"电动活塞(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32641":{"name":"电动活塞(MV)","tr":"电动活塞(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32642":{"name":"电动活塞(HV)","tr":"电动活塞(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32643":{"name":"电动活塞(EV)","tr":"电动活塞(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32644":{"name":"电动活塞(IV)","tr":"电动活塞(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32645":{"name":"电动活塞(LuV)","tr":"电动活塞(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32646":{"name":"电动活塞(ZPM)","tr":"电动活塞(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32647":{"name":"电动活塞(UV)","tr":"电动活塞(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32648":{"name":"电动活塞(UHV)","tr":"电动活塞(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32649":{"name":"电动活塞(UEV)","tr":"电动活塞(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32650":{"name":"机械臂(LV)","tr":"机械臂(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32651":{"name":"机械臂(MV)","tr":"机械臂(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32652":{"name":"机械臂(HV)","tr":"机械臂(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32653":{"name":"机械臂(EV)","tr":"机械臂(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32654":{"name":"机械臂(IV)","tr":"机械臂(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32655":{"name":"机械臂(LuV)","tr":"机械臂(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32656":{"name":"机械臂(ZPM)","tr":"机械臂(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32657":{"name":"机械臂(UV)","tr":"机械臂(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32658":{"name":"机械臂(UHV)","tr":"机械臂(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32659":{"name":"机械臂(UEV)","tr":"机械臂(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32660":{"name":"流体校准器(LV)","tr":"流体校准器(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32661":{"name":"流体校准器(MV)","tr":"流体校准器(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32662":{"name":"流体校准器(HV)","tr":"流体校准器(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32663":{"name":"流体校准器(EV)","tr":"流体校准器(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32664":{"name":"流体校准器(IV)","tr":"流体校准器(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32665":{"name":"流体校准器(LuV)","tr":"流体校准器(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32666":{"name":"流体校准器(ZPM)","tr":"流体校准器(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32667":{"name":"流体校准器(UV)","tr":"流体校准器(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32668":{"name":"活性晶体芯片","tr":"活性晶体芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32669":{"name":"流体过滤器覆盖板","tr":"流体过滤器覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32670":{"name":"力场发生器(LV)","tr":"力场发生器(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32671":{"name":"力场发生器(MV)","tr":"力场发生器(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32672":{"name":"力场发生器(HV)","tr":"力场发生器(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32673":{"name":"力场发生器(EV)","tr":"力场发生器(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32674":{"name":"力场发生器(IV)","tr":"力场发生器(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32675":{"name":"力场发生器(LuV)","tr":"力场发生器(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32676":{"name":"力场发生器(ZPM)","tr":"力场发生器(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32677":{"name":"力场发生器(UV)","tr":"力场发生器(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32678":{"name":"力场发生器(UHV)","tr":"力场发生器(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32679":{"name":"力场发生器(UEV)","tr":"力场发生器(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32680":{"name":"发射器(LV)","tr":"发射器(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32681":{"name":"发射器(MV)","tr":"发射器(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32682":{"name":"发射器(HV)","tr":"发射器(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32683":{"name":"发射器(EV)","tr":"发射器(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16300":{"oreDict":["ingotQuintupleBronze"," ingotQuintupleAnyBronze"],"name":"五重青铜锭","tr":"五重青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32684":{"name":"发射器(IV)","tr":"发射器(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16301":{"oreDict":["ingotQuintupleBrass"],"name":"五重黄铜锭","tr":"五重黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32685":{"name":"发射器(LuV)","tr":"发射器(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16302":{"oreDict":["ingotQuintupleInvar"],"name":"五重殷钢锭","tr":"五重殷钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32686":{"name":"发射器(ZPM)","tr":"发射器(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16303":{"oreDict":["ingotQuintupleElectrum"],"name":"五重琥珀金锭","tr":"五重琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32687":{"name":"发射器(UV)","tr":"发射器(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16304":{"oreDict":["ingotQuintupleWroughtIron"," ingotQuintupleAnyIron"],"name":"五重锻铁锭","tr":"五重锻铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32688":{"name":"发射器(UHV)","tr":"发射器(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16305":{"oreDict":["ingotQuintupleSteel"],"name":"五重钢锭","tr":"五重钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32689":{"name":"发射器(UEV)","tr":"发射器(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16306":{"oreDict":["ingotQuintupleStainlessSteel"],"name":"五重不锈钢锭","tr":"五重不锈钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32690":{"name":"传感器(LV)","tr":"传感器(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16307":{"oreDict":["ingotQuintuplePigIron"," ingotQuintupleAnyIron"],"name":"五重生铁锭","tr":"五重生铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32691":{"name":"传感器(MV)","tr":"传感器(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16308":{"oreDict":["ingotQuintupleRedAlloy"],"name":"五重红色合金锭","tr":"五重红色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24500":{"oreDict":["lensDiamond"," craftingLensWhite"],"name":"钻石透镜","tr":"钻石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32692":{"name":"传感器(HV)","tr":"传感器(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16309":{"oreDict":["ingotQuintupleBlueAlloy"],"name":"五重蓝色合金锭","tr":"五重蓝色合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24501":{"oreDict":["lensEmerald"," craftingLensGreen"],"name":"绿宝石透镜","tr":"绿宝石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32693":{"name":"传感器(EV)","tr":"传感器(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16310":{"oreDict":["ingotQuintupleCupronickel"],"name":"五重白铜锭","tr":"五重白铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24502":{"oreDict":["lensRuby"," craftingLensRed"],"name":"红宝石透镜","tr":"红宝石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32694":{"name":"传感器(IV)","tr":"传感器(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16311":{"oreDict":["ingotQuintupleNichrome"],"name":"五重镍铬锭","tr":"五重镍铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24503":{"oreDict":["lensSapphire"," craftingLensBlue"],"name":"蓝宝石透镜","tr":"蓝宝石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32695":{"name":"传感器(LuV)","tr":"传感器(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16312":{"oreDict":["ingotQuintupleKanthal"],"name":"五重坎塔尔合金锭","tr":"五重坎塔尔合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24504":{"oreDict":["lensGreenSapphire"," craftingLensCyan"],"name":"绿色蓝宝石透镜","tr":"绿色蓝宝石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32696":{"name":"传感器(ZPM)","tr":"传感器(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16313":{"oreDict":["ingotQuintupleMagnalium"],"name":"五重镁铝合金锭","tr":"五重镁铝合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24505":{"oreDict":["lensOlivine"," craftingLensLime"],"name":"橄榄石透镜","tr":"橄榄石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32697":{"name":"传感器(UV)","tr":"传感器(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16314":{"oreDict":["ingotQuintupleSolderingAlloy"],"name":"五重焊锡锭","tr":"五重焊锡锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24506":{"oreDict":["lensNetherStar"],"name":"下界之星透镜","tr":"下界之星透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32698":{"name":"传感器(UHV)","tr":"传感器(UHV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16315":{"oreDict":["ingotQuintupleBatteryAlloy"],"name":"五重电池合金锭","tr":"五重电池合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24507":{"oreDict":["lensTopaz"," craftingLensOrange"],"name":"黄玉透镜","tr":"黄玉透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32699":{"name":"传感器(UEV)","tr":"传感器(UEV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16316":{"oreDict":["ingotQuintupleTungstenSteel"],"name":"五重钨钢锭","tr":"五重钨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24508":{"oreDict":["craftingLensPurple"," lensTanzanite"],"name":"坦桑石透镜","tr":"坦桑石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32700":{"oreDict":["circuitPrimitive"],"name":"真空管","tr":"真空管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16317":{"oreDict":["ingotQuintupleOsmiridium"],"name":"五重铱锇合金锭","tr":"五重铱锇合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24509":{"oreDict":["lensAmethyst"," craftingLensPink"],"name":"紫水晶透镜","tr":"紫水晶透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32701":{"oreDict":["circuitBasic"],"name":"集成逻辑电路","tr":"集成逻辑电路","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16318":{"oreDict":["ingotQuintupleSunnarium"],"name":"五重阳光化合物锭","tr":"五重阳光化合物锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24510":{"oreDict":["lensOpal"," craftingLensBlue"],"name":"蛋白石透镜","tr":"蛋白石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32702":{"oreDict":["circuitGood"],"name":"优质电子电路板","tr":"优质电子电路板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16319":{"oreDict":["ingotQuintupleAdamantium"],"name":"五重精金锭","tr":"五重精金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24511":{"oreDict":["lensJasper"," craftingLensRed"],"name":"碧玉透镜","tr":"碧玉透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32703":{"oreDict":["circuitAdvanced"],"name":"处理器集群","tr":"处理器集群","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16320":{"oreDict":["ingotQuintupleElectrumFlux"],"name":"五重通流琥珀金锭","tr":"五重通流琥珀金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24512":{"oreDict":["craftingLensRed"," lensFoolsRuby"],"name":"尖晶石透镜","tr":"尖晶石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32704":{"oreDict":["circuitData"],"name":"工作站","tr":"工作站","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16321":{"oreDict":["ingotQuintupleEnderium"],"name":"五重末影锭","tr":"五重末影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24513":{"oreDict":["lensBlueTopaz"," craftingLensBlue"],"name":"蓝黄玉透镜","tr":"蓝黄玉透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32705":{"oreDict":["circuitElite"],"name":"处理器主机","tr":"处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24514":{"oreDict":["lensAmber"," craftingLensOrange"],"name":"琥珀透镜","tr":"琥珀透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32706":{"oreDict":["circuitMaster"],"name":"纳米处理器主机","tr":"纳米处理器主机","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16323":{"oreDict":["ingotQuintupleInfusedGold"],"name":"五重注魔金锭","tr":"五重注魔金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24515":{"oreDict":["craftingLensWhite"," lensDilithium"],"name":"双锂透镜","tr":"双锂透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32707":{"name":"数据球","tr":"数据球","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16324":{"oreDict":["ingotQuintupleNaquadah"],"name":"五重硅岩锭","tr":"五重硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32708":{"name":"闪存","tr":"闪存","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16325":{"oreDict":["ingotQuintupleNaquadahAlloy"],"name":"五重硅岩合金锭","tr":"五重硅岩合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32709":{"name":"覆盖板复制/粘贴工具","tr":"覆盖板复制/粘贴工具","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16326":{"oreDict":["ingotQuintupleNaquadahEnriched"],"name":"五重富集硅岩锭","tr":"五重富集硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24518":{"oreDict":["lensForcicium"],"name":"力之宝石透镜","tr":"力之宝石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32710":{"name":"覆膜电路基板","tr":"覆膜电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16327":{"oreDict":["ingotQuintupleNaquadria"],"name":"五重超能硅岩锭","tr":"五重超能硅岩锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24519":{"oreDict":["lensForcillium"],"name":"力场宝石透镜","tr":"力场宝石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32711":{"name":"环氧树脂基板","tr":"环氧树脂基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16328":{"oreDict":["ingotQuintupleDuranium"],"name":"五重铿铀锭","tr":"五重铿铀锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32712":{"name":"多层纤维强化电路基板","tr":"多层纤维强化电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16329":{"oreDict":["ingotQuintupleTritanium"],"name":"五重三钛锭","tr":"五重三钛锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24521":{"oreDict":["lensForce"],"name":"力量透镜","tr":"力量透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32713":{"name":"刻蚀晶体芯片","tr":"刻蚀晶体芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16330":{"oreDict":["ingotQuintupleThaumium"],"name":"五重神秘锭","tr":"五重神秘锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32714":{"name":"刻蚀兰波顿芯片","tr":"刻蚀兰波顿芯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16331":{"oreDict":["ingotQuintupleMithril"],"name":"五重秘银锭","tr":"五重秘银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32715":{"oreDict":["componentCircuitDiode"],"name":"二极管","tr":"二极管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32716":{"oreDict":["componentCircuitResistor"],"name":"电阻","tr":"电阻","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16333":{"oreDict":["ingotQuintupleAstralSilver"],"name":"五重星辰银锭","tr":"五重星辰银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32717":{"oreDict":["componentCircuitTransistor"],"name":"晶体管","tr":"晶体管","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16334":{"oreDict":["ingotQuintupleBlackSteel"],"name":"五重黑钢锭","tr":"五重黑钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32718":{"oreDict":["componentCircuitCapacitor"],"name":"电容","tr":"电容","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16335":{"oreDict":["ingotQuintupleDamascusSteel"],"name":"五重大马士革钢锭","tr":"五重大马士革钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24527":{"oreDict":["craftingLensRed"," lensGarnetRed"],"name":"红石榴石透镜","tr":"红石榴石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32719":{"name":"酚醛树脂电路基板","tr":"酚醛树脂电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16336":{"oreDict":["ingotQuintupleShadowIron"],"name":"五重暗影铁锭","tr":"五重暗影铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24528":{"oreDict":["lensGarnetYellow"," craftingLensYellow"],"name":"黄石榴石透镜","tr":"黄石榴石透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32720":{"name":"纤维强化电路基板","tr":"纤维强化电路基板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16337":{"oreDict":["ingotQuintupleShadowSteel"],"name":"五重暗影钢锭","tr":"五重暗影钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32721":{"oreDict":["craftingDiamondBlade"],"name":"钻石锯片","tr":"钻石锯片","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16338":{"oreDict":["ingotQuintupleIronWood"],"name":"五重铁木锭","tr":"五重铁木锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32722":{"oreDict":["craftingGrinder"],"name":"钻石研磨头","tr":"钻石研磨头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16339":{"oreDict":["ingotQuintupleSteeleaf"],"name":"五重钢叶","tr":"五重钢叶","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32723":{"oreDict":["craftingGrinder"],"name":"钨研磨头","tr":"钨研磨头","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16340":{"oreDict":["ingotQuintupleMeteoricIron"],"name":"五重陨铁锭","tr":"五重陨铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24532":{"oreDict":["lensEnderPearl"],"name":"末影珍珠透镜","tr":"末影珍珠透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32724":{"name":"量子之眼","tr":"量子之眼","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16341":{"oreDict":["ingotQuintupleMeteoricSteel"],"name":"五重陨钢锭","tr":"五重陨钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24533":{"oreDict":["lensEnderEye"],"name":"末影之眼透镜","tr":"末影之眼透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32725":{"name":"量子之星","tr":"量子之星","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16342":{"oreDict":["ingotQuintupleDarkIron"],"name":"五重玄铁锭","tr":"五重玄铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32726":{"name":"重力之星","tr":"重力之星","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16343":{"oreDict":["ingotQuintupleCobaltBrass"],"name":"五重钴黄铜锭","tr":"五重钴黄铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32727":{"name":"静音升级","tr":"静音升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16344":{"oreDict":["ingotQuintupleUltimet"],"name":"五重哈氏合金锭","tr":"五重哈氏合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32728":{"name":"锁升级","tr":"锁升级","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16345":{"oreDict":["ingotQuintupleAnyCopper"," ingotQuintupleAnnealedCopper"],"name":"五重退火铜锭","tr":"五重退火铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32729":{"oreDict":["craftingFilter"],"name":"物品过滤器","tr":"物品过滤器","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16346":{"oreDict":["ingotQuintupleFierySteel"],"name":"五重炽热钢锭","tr":"五重炽热钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32730":{"name":"机器控制覆盖板","tr":"机器控制覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32731":{"name":"设备活跃探测覆盖板","tr":"设备活跃探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16348":{"oreDict":["ingotQuintupleRedSteel"],"name":"五重红钢锭","tr":"五重红钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24540":{"oreDict":["lensInfusedAir"," craftingLensYellow"],"name":"风之魔晶透镜","tr":"风之魔晶透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32732":{"name":"流体探测覆盖板","tr":"流体探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16349":{"oreDict":["ingotQuintupleBlueSteel"],"name":"五重蓝钢锭","tr":"五重蓝钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24541":{"oreDict":["lensInfusedFire"," craftingLensRed"],"name":"火之魔晶透镜","tr":"火之魔晶透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32733":{"name":"物品探测覆盖板","tr":"物品探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16350":{"oreDict":["ingotQuintupleSterlingSilver"],"name":"五重标准纯银锭","tr":"五重标准纯银锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24542":{"oreDict":["craftingLensGreen"," lensInfusedEarth"],"name":"地之魔晶透镜","tr":"地之魔晶透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32734":{"name":"能量探测覆盖板","tr":"能量探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16351":{"oreDict":["ingotQuintupleRoseGold"],"name":"五重玫瑰金锭","tr":"五重玫瑰金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24543":{"oreDict":["lensInfusedWater"," craftingLensBlue"],"name":"水之魔晶透镜","tr":"水之魔晶透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32735":{"name":"玩家探测覆盖板","tr":"玩家探测覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16352":{"oreDict":["ingotQuintupleBlackBronze"],"name":"五重黑青铜锭","tr":"五重黑青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24544":{"oreDict":["lensInfusedEntropy"," craftingLensBlack"],"name":"混沌魔晶透镜","tr":"混沌魔晶透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32736":{"oreDict":["batteryUltimate"," batteryZPM"],"name":"能量模块","tr":"能量模块","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16353":{"oreDict":["ingotQuintupleBismuthBronze"],"name":"五重铋青铜锭","tr":"五重铋青铜锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"24545":{"oreDict":["craftingLensWhite"," lensInfusedOrder"],"name":"秩序魔晶透镜","tr":"秩序魔晶透镜","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32737":{"oreDict":["batteryUV"],"name":"能量簇","tr":"能量簇","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16354":{"oreDict":["ingotQuintupleIronMagnetic"],"name":"五重磁化铁锭","tr":"五重磁化铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16355":{"oreDict":["ingotQuintupleSteelMagnetic"],"name":"五重磁化钢锭","tr":"五重磁化钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16356":{"oreDict":["ingotQuintupleNeodymiumMagnetic"],"name":"五重磁化钕锭","tr":"五重磁化钕锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32740":{"name":"电脑屏幕覆盖板","tr":"电脑屏幕覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16357":{"oreDict":["ingotQuintupleVanadiumGallium"],"name":"五重钒镓合金锭","tr":"五重钒镓合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32741":{"name":"红石信号发射器(外)","tr":"红石信号发射器(外)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16358":{"oreDict":["ingotQuintupleYttriumBariumCuprate"],"name":"五重钇钡铜氧合金锭","tr":"五重钇钡铜氧合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32742":{"name":"红石信号发射器(内)","tr":"红石信号发射器(内)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16359":{"oreDict":["ingotQuintupleNiobiumNitride"],"name":"五重氮化铌锭","tr":"五重氮化铌锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16360":{"oreDict":["ingotQuintupleNiobiumTitanium"],"name":"五重铌钛合金锭","tr":"五重铌钛合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32744":{"name":"工作台覆盖板","tr":"工作台覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16361":{"oreDict":["ingotQuintupleChromiumDioxide"],"name":"五重二氧化铬锭","tr":"五重二氧化铬锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32745":{"name":"排水道覆盖板","tr":"排水道覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16362":{"oreDict":["ingotQuintupleKnightmetal"],"name":"五重骑士金属锭","tr":"五重骑士金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32746":{"name":"红石信号接收器(外)","tr":"红石信号接收器(外)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16363":{"oreDict":["ingotQuintupleTinAlloy"],"name":"五重锡铁合金锭","tr":"五重锡铁合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32747":{"name":"红石信号接收器(内)","tr":"红石信号接收器(内)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16364":{"oreDict":["ingotQuintupleDarkSteel"],"name":"五重玄钢锭","tr":"五重玄钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32748":{"name":"维护提示覆盖板","tr":"维护提示覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16365":{"oreDict":["ingotQuintupleElectricalSteel"],"name":"五重磁钢锭","tr":"五重磁钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32749":{"name":"扇板","tr":"扇板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16366":{"oreDict":["ingotQuintupleEnergeticAlloy"],"name":"五重充能合金锭","tr":"五重充能合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32750":{"name":"太阳能覆盖板","tr":"太阳能覆盖板","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16367":{"oreDict":["ingotQuintupleVibrantAlloy"],"name":"五重脉冲合金锭","tr":"五重脉冲合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32751":{"name":"太阳能覆盖板(8V)","tr":"太阳能覆盖板(8V)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16368":{"oreDict":["ingotQuintupleShadow"],"name":"五重暗影锭","tr":"五重暗影锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32752":{"name":"太阳能覆盖板(LV)","tr":"太阳能覆盖板(LV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16369":{"oreDict":["ingotQuintupleConductiveIron"],"name":"五重导电铁锭","tr":"五重导电铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32753":{"name":"太阳能覆盖板(MV)","tr":"太阳能覆盖板(MV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16370":{"oreDict":["ingotQuintupleTungstenCarbide"],"name":"五重碳化钨锭","tr":"五重碳化钨锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32754":{"name":"太阳能覆盖板(HV)","tr":"太阳能覆盖板(HV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16371":{"oreDict":["ingotQuintupleVanadiumSteel"],"name":"五重钒钢锭","tr":"五重钒钢锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32755":{"name":"太阳能覆盖板(EV)","tr":"太阳能覆盖板(EV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16372":{"oreDict":["ingotQuintupleHSSG"],"name":"五重高速钢-G锭","tr":"五重高速钢-G锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32756":{"name":"太阳能覆盖板(IV)","tr":"太阳能覆盖板(IV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16373":{"oreDict":["ingotQuintupleHSSE"],"name":"五重高速钢-E锭","tr":"五重高速钢-E锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32757":{"name":"太阳能覆盖板(LuV)","tr":"太阳能覆盖板(LuV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16374":{"oreDict":["ingotQuintupleHSSS"],"name":"五重高速钢-S锭","tr":"五重高速钢-S锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32758":{"name":"太阳能覆盖板(ZPM)","tr":"太阳能覆盖板(ZPM)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32759":{"name":"太阳能覆盖板(UV)","tr":"太阳能覆盖板(UV)","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32760":{"name":"音响","tr":"音响","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32761":{"name":"调试扫描仪","tr":"调试扫描仪","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16378":{"oreDict":["ingotQuintuplePulsatingIron"],"name":"五重脉冲铁锭","tr":"五重脉冲铁锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32762":{"name":"便携式扫描仪","tr":"便携式扫描仪","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16379":{"oreDict":["ingotQuintupleSoularium"],"name":"五重魂金锭","tr":"五重魂金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32763":{"name":"GT传感器","tr":"GT传感器","tab":"材料","type":"Item","maxStackSize":1,"maxDurability":1},"16380":{"oreDict":["ingotQuintupleEnderiumBase"],"name":"五重末影粗胚锭","tr":"五重末影粗胚锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32764":{"oreDict":["craftingDuctTape"],"name":"布莱恩科技航空专用强化胶带FAL84型","tr":"布莱恩科技航空专用强化胶带FAL84型","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16381":{"oreDict":["ingotQuintupleRedstoneAlloy"],"name":"五重红石合金锭","tr":"五重红石合金锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"32765":{"name":"麦高芬239","tr":"麦高芬239","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16382":{"oreDict":["ingotQuintupleArdite"],"name":"五重阿迪特锭","tr":"五重阿迪特锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1},"16383":{"oreDict":["ingotQuintupleReinforced"],"name":"五重强化金属锭","tr":"五重强化金属锭","tab":"材料","type":"Item","maxStackSize":64,"maxDurability":1}},"IC2:blockITNT":{"0":{"name":"Industrial TNT","tr":"工业TNT","tab":"工业2","type":"Block","maxStackSize":64,"maxDurability":1}},"ExtraUtilities:mini-soul":{"0":{"name":"Soul fragment","tr":"灵魂碎片","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1},"3":{"name":"Soul fragment","tr":"灵魂碎片","tab":"更多实用设备","type":"Item","maxStackSize":1,"maxDurability":1}},"EnderIO:blockConduitBundle":{"0":{"name":"Conduit Connector","tr":"导管接口","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"HardcoreEnderExpansion:corrupted_energy_low":{"0":{"name":"Unnamed Block, report to mod author.","tr":"未命名方块,请报告给作者.","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"GalacticraftCore:item.meteoricIronIngot":{"0":{"oreDict":["ingotMeteoricIron"],"name":"Meteoric Iron Ingot","tr":"陨铁锭","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["compressedMeteoricIron"],"name":"Compressed Meteoric Iron Plate","tr":"Compressed Meteoric Iron Plate","tab":"星系|物品","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTriniumTitaniumAlloy":{"0":{"oreDict":["dustTriniumTitaniumAlloy"],"name":"三元钛合金粉","tr":"三元钛合金粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"BiomesOPlenty:mushrooms":{"0":{"oreDict":["listInedibleMushroom"],"name":"Toadstool","tr":"毒菌","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"1":{"oreDict":["listInedibleMushroom"],"name":"Portobello","tr":"双孢蘑菇","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"oreDict":["listInedibleMushroom"],"name":"Blue Milk Cap","tr":"蓝牛奶伞菌","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"oreDict":["listInedibleMushroom"],"name":"Glowshroom","tr":"夜光菇","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"oreDict":["listInedibleMushroom"],"name":"Flat Mushroom","tr":"平菇","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"oreDict":["listInedibleMushroom"],"name":"Shadow Shroom","tr":"阴影菇","tab":"超多生态群系","type":"Block","maxStackSize":64,"maxDurability":1}},"Forestry:cratedPotatoes":{"0":{"name":"Crated Potato","tr":"装箱的马铃薯","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:cratedLemon":{"0":{"name":"Crated Lemon","tr":"装箱的柠檬","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}},"Railcraft:routing.ticket.gold":{"0":{"name":"Golden Railway Ticket","tr":"黄金车票","tab":"Railcraft","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureCrocoite":{"0":{"oreDict":["dustImpureCrocoite"],"name":"Impure Crocoite Dust","tr":"含杂赤铅矿粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:dustPureGadoliniteCe":{"0":{"oreDict":["dustPureGadoliniteCe"],"name":"Purified Gadolinite (Ce) Dust","tr":"洁净硅铍钇矿(Ce)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Avaritia:Matter_Cluster":{"0":{"name":"Matter Cluster","tr":"物质团","tab":"","type":"Item","maxStackSize":1,"maxDurability":1}},"TMechworks:Dynamo":{"0":{"name":"Dynamo","tr":"发电机","tab":"匠魂|机关","type":"Block","maxStackSize":64,"maxDurability":1}},"EnderIO:blockSliceAndSplice":{"0":{"name":"Slice\u0027N\u0027Splice","tr":"头颅装配机","tab":"EnderIO","type":"Block","maxStackSize":64,"maxDurability":1}},"cookingforblockheads:toast":{"0":{"name":"Toast","tr":"吐司","tab":"懒人厨房","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:itemRodLongInconel792":{"0":{"oreDict":["stickLongInconel792"],"name":"长镍铬基合金-792杆","tr":"长镍铬基合金-792杆","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"miscutils:blockBlockIodine":{"0":{"oreDict":["blockIodine"],"name":"碘块","tr":"碘块","tab":"GT++方块","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemBoltMaragingSteel300":{"0":{"oreDict":["boltMaragingSteel300"],"name":"马氏体时效钢300螺栓","tr":"马氏体时效钢300螺栓","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"TwilightForest:tile.TFNagastoneStairsWeatheredLeft":{"0":{"oreDict":["nagastoneStairsWeathered"],"name":"Weathered Nagastone Stairs (Left)","tr":"Weathered Nagastone Stairs (Left)","tab":"暮色森林","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemCellUraniumDepletedMoltenSaltUSalt":{"0":{"oreDict":["cellUraniumDepletedMoltenSaltUSalt"],"name":"枯竭铀熔盐单元","tr":"枯竭铀熔盐单元","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"gtnhintergalactic:spaceelevatorcable":{"0":{"name":"Space Elevator Cable","tr":"太空电梯线缆","tab":"GTNH-银河","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:itemDustTinyAgarditeNd":{"0":{"oreDict":["dustTinyAgarditeNd"],"name":"小撮钇砷铜矿(Nd)粉","tr":"小撮钇砷铜矿(Nd)粉","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"malisisdoors:trapdoor_birch":{"0":{"name":"Birch Trapdoor","tr":"白桦木活板门","tab":"更多门","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:beetItem":{"0":{"oreDict":["cropBeet"," cropBeetroot"," listAllveggie"],"name":"Beet","tr":"甜菜","tab":"潘马斯农场|作物","type":"Item","maxStackSize":64,"maxDurability":1}},"lootgames:board_border":{"0":{"name":"Board Border","tr":"边框","tab":"","type":"Block","maxStackSize":64,"maxDurability":1}},"harvestcraft:lemonchickenItem":{"0":{"oreDict":["foodLemonchicken"],"name":"Lemon Chicken","tr":"柠檬鸡","tab":"潘马斯农场|食物","type":"Item","maxStackSize":64,"maxDurability":1}},"harvestcraft:pamstarfruitSapling":{"0":{"name":"Starfruit Sapling","tr":"杨桃树苗","tab":"潘马斯农场|作物","type":"Block","maxStackSize":64,"maxDurability":1}},"AWWayofTime:blockAlchemicCalcinator":{"0":{"name":"Alchemic Calcinator","tr":"炼金煅烧炉","tab":"血魔法","type":"Block","maxStackSize":64,"maxDurability":1}},"witchery:bitingbelt":{"0":{"name":"Biting Belt","tr":"咬人带","tab":"巫术","type":"Item","maxStackSize":1,"maxDurability":76}},"chisel:iron_block":{"1":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"2":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"3":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"4":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"5":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"6":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"7":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"9":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"10":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"11":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"12":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"13":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"14":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1},"15":{"name":"Iron Block","tr":"铁块","tab":"凿工艺|金属方块","type":"Block","maxStackSize":64,"maxDurability":1}},"StevesFactoryManager:BlockCableIntakeName":{"0":{"name":"Item Valve","tr":"物品阀门","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1},"8":{"name":"Rapid Item Valve","tr":"快速物品阀门","tab":"史蒂夫工厂管理","type":"Block","maxStackSize":64,"maxDurability":1}},"miscutils:dustImpureComancheite":{"0":{"oreDict":["dustImpureComancheite"],"name":"Impure Comancheite Dust","tr":"含杂溴汞石矿石","tab":"GT++杂项","type":"Item","maxStackSize":64,"maxDurability":1}},"Forestry:canOil":{"0":{"name":"Oil Can","tr":"石油罐","tab":"林业","type":"Item","maxStackSize":64,"maxDurability":1}}} \ No newline at end of file diff --git a/front/src/ItemUtil.jsx b/front/src/ItemUtil.jsx deleted file mode 100644 index 0a1e17388e..0000000000 --- a/front/src/ItemUtil.jsx +++ /dev/null @@ -1,38 +0,0 @@ -import itemDatabase from "./ItemDatabase.json" - -function getIcon(obj, prefixPath) { - if (itemUtil.isItem(obj)) { - const item = itemUtil.getItem(obj) - if (item && item["maxDurability"] !== 1) { - return prefixPath + obj["name"].replaceAll("|", "_").replaceAll(":", "/") + "/1.png" - } - return prefixPath + obj["name"].replaceAll("|", "_").replaceAll(":", "/") + "/" + obj["damage"] + ".png" - } - return prefixPath + "none.png" -} - -const itemUtil = { - isItem: (obj) => { - return obj && obj["name"] && obj["damage"] - }, - getItem: (obj) => { - if (itemUtil.isItem(obj)) { - let name = obj["name"] - if (!itemDatabase[name]) { - name = name.replaceAll("|", "_") - if (!itemDatabase[name]) return null - } - const damage = (obj["damage"] ? obj["damage"] : 0) + "" - return itemDatabase[name][damage] - } - return null - }, - getLargeIcon: (obj) => { - return getIcon(obj, "./images/large/") - }, - getSmallIcon: (obj) => { - return getIcon(obj, "./images/small/") - } -} - -export default itemUtil \ No newline at end of file diff --git a/front/src/MainFrame.css b/front/src/MainFrame.css deleted file mode 100644 index b7176b0bdb..0000000000 --- a/front/src/MainFrame.css +++ /dev/null @@ -1,161 +0,0 @@ -.main-page-wrapper { - width: 90%; - position: relative; - height: 90vh; - margin: 20px auto auto; - display: flex; -} - -.main-page { - margin-top: 5%; - margin-bottom: 50px; - width: 100%; - text-align: center; - align-items: center; - padding: 20px; -} - -.tab-list { - width: 15%; - height: 100%; - text-align: center; - align-content: center; - display: inline-block; -} - -.content { - display: inline-block; - width: 80%; - margin-left: 5%; -} - -.tab-item { - overflow: hidden; - display: block; - height: 40px; - border: dashed 1px azure; - line-height: 40px; - cursor: pointer; -} - -.tab-item:hover { - background: #7ba2e0; - transition: transform .8s ease; - transform: rotate(5deg) scale(1.05); -} - -.tab-item-selected:hover, -.tab-item-selected { - background: #7ba2e0; - margin: 50px 0; - transition: transform .8s ease !important; - transform: rotate(5deg) scale(1.1) !important; -} - -#root { - margin: 5px; -} - -body { - background-color: #89a1c7; -} - -button:hover { - transition: transform .5s ease; - scale: 1.05; - transform: rotate(-5deg) scale(1.1); -} - -/** - * low width - */ - -@media screen and (max-width: 30em) { - - .main-page-wrapper { - width: 98%; - margin-left: 0; - padding-left: 0; - } - - #root { - margin-left: 0; - } - - .tab-list { - width: 10%; - border-bottom-left-radius: 0 !important; - border-top-left-radius: 0 !important; - transition: width 0.8s ease; - } - - .tab-list .tab-item { - opacity: 0; - display: none; - } - - .tab-list .tab-item-selected { - opacity: 100; - display: block; - } - - .tab-list:hover, - .tab-list:active, - .tab-list:focus - { - width: 100%; - transition: width 0.8s ease; - } - - .tab-list:hover .tab-item, - .tab-list:active .tab-item, - .tab-list:focus .tab-item - { - transition: opacity 0.8s ease; - opacity: 100; - display: block; - } -} - -/** - * Theme - */ - -/** - * theme-white - */ - -.body-theme-white -{ - background: #eee; -} - -.body-theme-white button { - background: #fff; - color: #222222; - border-radius: 30px; -} - -.body-theme-white button:hover { - background: #7ba2e0; -} - -.body-theme-white .item-stack-amount { - color: #555; -} - -.body-theme-white .tab-list, -.body-theme-white .command-console, -.body-theme-white .main-page -{ - background: #fff; - border-radius: 20px; -} - -.body-theme-white .tab-list .tab-item { - border-radius: 20px; -} - -.body-theme-white .main-page { - padding: 10px; -} \ No newline at end of file diff --git a/front/src/MainFrame.jsx b/front/src/MainFrame.jsx deleted file mode 100644 index b41e9efe60..0000000000 --- a/front/src/MainFrame.jsx +++ /dev/null @@ -1,82 +0,0 @@ -import PropTypes from "prop-types"; -import {useCallback, useEffect, useState} from "react"; -import CommandConsole from "./components/CommandConsole/CommandConsole.jsx"; -import ItemsPage from "./pages/ItemsPage/ItemsPage.jsx"; -import CpuPage from "./pages/CpuPage/CpuPage.jsx"; -import FluidPage from "./pages/FluidPage/FluidPage.jsx"; -import ConfigPage from "./pages/ConfigPage/ConfigPage.jsx"; -import IndexPage from "./pages/IndexPage/IndexPage.jsx"; -import "./commons/style.css" -import './MainFrame.css' -import ApplyPage from "./pages/ApplyPage/ApplyPage.jsx"; - -const DEFAULT_PAGE = "Index" -const pages = { - "Index": , - "Items": , - "Fluids": , - "Cpus": , - "Config": , - "Apply": -} - -function TabList({className, onChangeTab, selectedPage}) { - const tabs = [] - for (const key in pages) { - tabs.push(

onChangeTab(key)}>{key}

) - } - return ( -
- {tabs} -
- ) -} - -export default function MainFrame() { - const [theme, setTheme] = useState(localStorage.getItem("theme")) - const [page, setPage] = useState(DEFAULT_PAGE) - - useEffect(() => { - const timer = setInterval(() => { - const t = localStorage.getItem("theme") - if (!t) return - setTheme((old) => { - if (old !== t) { - if (t && t !== "") document.body.className = "body-" + t - return t; - } - return old - }) - }, 1000) - if (theme && theme !== "") document.body.className = "body-" + theme - else { - document.body.className = "body-theme-white" - setTheme("theme-white") - } - - return () => { - clearInterval(timer) - } - }, []) - - const changePage = useCallback((page) => { - setPage(page) - }, [setPage]) - return ( -
- -
- -
- {page !== null && page !== "" && pages[page] ? pages[page] : <>} -
-
-
- ) -} - -TabList.propTypes = { - onChangeTab: PropTypes.func, - selectedPage: PropTypes.string, - className: PropTypes.string -} \ No newline at end of file diff --git a/front/src/assets/react.svg b/front/src/assets/react.svg deleted file mode 100644 index 6c87de9bb3..0000000000 --- a/front/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/front/src/commons/style.css b/front/src/commons/style.css deleted file mode 100644 index be26a44dd9..0000000000 --- a/front/src/commons/style.css +++ /dev/null @@ -1,1338 +0,0 @@ -/* -Theme Name: Twenty Seventeen -Theme URI: https://wordpress.org/themes/twentyseventeen/ -Author: the WordPress team -Author URI: https://wordpress.org/ -Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with book formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device. -Version: 2.2 -Requires at least: 4.7 -Requires PHP: 5.2.4 -License: GNU General Public License v2 or later -License URI: http://www.gnu.org/licenses/gpl-2.0.html -Text Domain: twentyseventeen -Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, book-formats, rtl-language-support, sticky-book, theme-options, threaded-comments, translation-ready - -This theme, like WordPress, is licensed under the GPL. -Use it to make something cool, have fun, and share what you've learned with others. -*/ - -/*-------------------------------------------------------------- ->>> TABLE OF CONTENTS: ----------------------------------------------------------------- -1.0 Normalize -2.0 Accessibility -3.0 Alignments -4.0 Clearings -5.0 Typography -6.0 Forms -7.0 Formatting -8.0 Lists -9.0 Tables -10.0 Links -11.0 Featured Image Hover -12.0 Navigation -13.0 Layout - 13.1 Header - 13.2 Front Page - 13.3 Regular Content - 13.4 Posts - 13.5 Pages - 13.6 Footer -14.0 Comments -15.0 Widgets -16.0 Media - 16.1 Galleries -17.0 Customizer -18.0 SVGs Fallbacks -19.0 Media Queries -20.0 Print ---------------------------------------------------------------*/ - -/*-------------------------------------------------------------- -1.0 Normalize -Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css ---------------------------------------------------------------*/ - -html { - font-family: sans-serif; - line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; -} - -article, -aside, -footer, -header, -nav, -section { - display: block; -} - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -figcaption, -figure, -main { - display: block; -} - -figure { - margin: 1em 0; -} - -hr { - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; - overflow: visible; -} - -pre { - font-family: monospace, monospace; - font-size: 1em; -} - -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; -} - -a:active, -a:hover { - outline-width: 0; -} - -abbr[title] { - border-bottom: 1px #767676 dotted; - text-decoration: none; -} - -b, -strong { - font-weight: inherit; -} - -b, -strong { - font-weight: 700; -} - -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -code { - padding: 2px 5px; - border-radius: 5px; -} - -pre code { - padding: 0px; -} - -dfn { - font-style: italic; -} - -mark { - background-color: #eee; - color: #222; -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -audio, -video { - display: inline-block; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -img { - border-style: none; -} - -svg:not(:root) { - overflow: hidden; -} - -button, -input, -optgroup, -select, -textarea { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -fieldset { - border: 1px solid #bbb; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -legend { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; -} - -progress { - display: inline-block; - vertical-align: baseline; -} - -textarea { - overflow: auto; -} - -[type="checkbox"], -[type="radio"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 0; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; -} - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} - -details, -menu { - display: block; -} - -summary { - display: list-item; -} - -canvas { - display: inline-block; -} - -template { - display: none; -} - -[hidden] { - display: none; -} - -/*-------------------------------------------------------------- -5.0 Typography ---------------------------------------------------------------*/ - -body, -button, -input, -select, -textarea { - color: #333; - font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif; - font-size: 15px; - font-size: 0.9375rem; - font-weight: 400; - line-height: 1.66; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - clear: both; - line-height: 1.4; - margin: 0 0 0.75em; - padding: 1.5em 0 0; -} - -h1:first-child, -h2:first-child, -h3:first-child, -h4:first-child, -h5:first-child, -h6:first-child { - padding-top: 0; -} - -h1 { - font-size: 24px; - font-size: 1.5rem; - font-weight: 300; -} - -h2, -.home.blog .entry-title { - color: #666; - font-size: 20px; - font-size: 1.25rem; - font-weight: 300; -} - -h3 { - color: #333; - font-size: 18px; - font-size: 1.125rem; - font-weight: 300; -} - -h4 { - color: #333; - font-size: 16px; - font-size: 1rem; - font-weight: 800; -} - -h5 { - color: #767676; - font-size: 13px; - font-size: 0.8125rem; - font-weight: 800; - letter-spacing: 0.15em; - text-transform: uppercase; -} - -h6 { - color: #333; - font-size: 15px; - font-size: 0.9375rem; - font-weight: 800; -} - -p { - margin: 0 0 1.5em; - padding: 0; -} - -dfn, -cite, -em, -i { - font-style: italic; -} - -blockquote { - color: #666; - font-size: 18px; - font-size: 1.125rem; - font-style: italic; - line-height: 1.7; - margin: 0; - overflow: hidden; - padding: 0; -} - -blockquote cite { - display: block; - font-style: normal; - font-weight: 600; - margin-top: 0.5em; -} - -address { - margin: 0 0 1.5em; -} - -pre { - background: #eee; - font-family: "Courier 10 Pitch", Courier, monospace; - font-size: 15px; - font-size: 0.9375rem; - line-height: 1.6; - margin-bottom: 1.6em; - max-width: 100%; - overflow: auto; - padding: 1.6em; -} - -pre::-webkit-scrollbar { - width: 8px; - height: 8px; -} - -pre::-webkit-scrollbar-thumb { - border-radius: 10px; - -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); - background: rgba(255,255,255,0.2); -} - -pre::-webkit-scrollbar-track { - border-radius: 10px; - background: rgba(0,0,0,0.1); - -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); -} - -code::-webkit-scrollbar { - width: 8px; - height: 8px; -} - -code::-webkit-scrollbar-thumb { - border-radius: 10px; - -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); - background: rgba(255,255,255,0.2); -} - -code::-webkit-scrollbar-track { - border-radius: 10px; - background: rgba(0,0,0,0.1); - -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); -} - -code, -kbd, -tt, -var { - font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; - font-size: 15px; - font-size: 0.9375rem; -} - -abbr, -acronym { - border-bottom: 1px dotted #666; - cursor: help; -} - -mark, -ins { - background: #eee; - text-decoration: none; -} - -big { - font-size: 125%; -} - -blockquote { - quotes: "" ""; -} - -q { - quotes: "“" "”" "‘" "’"; -} - -blockquote:before, -blockquote:after { - content: ""; -} - -:focus { - outline: none; -} - -/* Typography for Arabic Font */ - -html[lang="ar"] body, -html[lang="ar"] button, -html[lang="ar"] input, -html[lang="ar"] select, -html[lang="ar"] textarea, -html[lang="ary"] body, -html[lang="ary"] button, -html[lang="ary"] input, -html[lang="ary"] select, -html[lang="ary"] textarea, -html[lang="azb"] body, -html[lang="azb"] button, -html[lang="azb"] input, -html[lang="azb"] select, -html[lang="azb"] textarea, -html[lang="fa-IR"] body, -html[lang="fa-IR"] button, -html[lang="fa-IR"] input, -html[lang="fa-IR"] select, -html[lang="fa-IR"] textarea, -html[lang="haz"] body, -html[lang="haz"] button, -html[lang="haz"] input, -html[lang="haz"] select, -html[lang="haz"] textarea, -html[lang="ps"] body, -html[lang="ps"] button, -html[lang="ps"] input, -html[lang="ps"] select, -html[lang="ps"] textarea, -html[lang="ur"] body, -html[lang="ur"] button, -html[lang="ur"] input, -html[lang="ur"] select, -html[lang="ur"] textarea { - font-family: Tahoma, Arial, sans-serif; -} - -html[lang="ar"] h1, -html[lang="ar"] h2, -html[lang="ar"] h3, -html[lang="ar"] h4, -html[lang="ar"] h5, -html[lang="ar"] h6, -html[lang="ary"] h1, -html[lang="ary"] h2, -html[lang="ary"] h3, -html[lang="ary"] h4, -html[lang="ary"] h5, -html[lang="ary"] h6, -html[lang="azb"] h1, -html[lang="azb"] h2, -html[lang="azb"] h3, -html[lang="azb"] h4, -html[lang="azb"] h5, -html[lang="azb"] h6, -html[lang="fa-IR"] h1, -html[lang="fa-IR"] h2, -html[lang="fa-IR"] h3, -html[lang="fa-IR"] h4, -html[lang="fa-IR"] h5, -html[lang="fa-IR"] h6, -html[lang="haz"] h1, -html[lang="haz"] h2, -html[lang="haz"] h3, -html[lang="haz"] h4, -html[lang="haz"] h5, -html[lang="haz"] h6, -html[lang="ps"] h1, -html[lang="ps"] h2, -html[lang="ps"] h3, -html[lang="ps"] h4, -html[lang="ps"] h5, -html[lang="ps"] h6, -html[lang="ur"] h1, -html[lang="ur"] h2, -html[lang="ur"] h3, -html[lang="ur"] h4, -html[lang="ur"] h5, -html[lang="ur"] h6 { - font-weight: 700; -} - -/* Typography for Chinese Font */ - -html[lang^="zh-"] body, -html[lang^="zh-"] button, -html[lang^="zh-"] input, -html[lang^="zh-"] select, -html[lang^="zh-"] textarea { - font-family: "PingFang TC", "Helvetica Neue", Helvetica, STHeitiTC-Light, Arial, sans-serif; -} - -html[lang="zh-CN"] body, -html[lang="zh-CN"] button, -html[lang="zh-CN"] input, -html[lang="zh-CN"] select, -html[lang="zh-CN"] textarea { - font-family: "PingFang SC", "Helvetica Neue", Helvetica, STHeitiSC-Light, Arial, sans-serif; -} - -html[lang^="zh-"] h1, -html[lang^="zh-"] h2, -html[lang^="zh-"] h3, -html[lang^="zh-"] h4, -html[lang^="zh-"] h5, -html[lang^="zh-"] h6 { - font-weight: 700; -} - -/* Typography for Cyrillic Font */ - -html[lang="bg-BG"] body, -html[lang="bg-BG"] button, -html[lang="bg-BG"] input, -html[lang="bg-BG"] select, -html[lang="bg-BG"] textarea, -html[lang="ru-RU"] body, -html[lang="ru-RU"] button, -html[lang="ru-RU"] input, -html[lang="ru-RU"] select, -html[lang="ru-RU"] textarea, -html[lang="uk"] body, -html[lang="uk"] button, -html[lang="uk"] input, -html[lang="uk"] select, -html[lang="uk"] textarea { - font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif; -} - -html[lang="bg-BG"] h1, -html[lang="bg-BG"] h2, -html[lang="bg-BG"] h3, -html[lang="bg-BG"] h4, -html[lang="bg-BG"] h5, -html[lang="bg-BG"] h6, -html[lang="ru-RU"] h1, -html[lang="ru-RU"] h2, -html[lang="ru-RU"] h3, -html[lang="ru-RU"] h4, -html[lang="ru-RU"] h5, -html[lang="ru-RU"] h6, -html[lang="uk"] h1, -html[lang="uk"] h2, -html[lang="uk"] h3, -html[lang="uk"] h4, -html[lang="uk"] h5, -html[lang="uk"] h6 { - font-weight: 700; - line-height: 1.2; -} - -/* Typography for Devanagari Font */ - -html[lang="bn-BD"] body, -html[lang="bn-BD"] button, -html[lang="bn-BD"] input, -html[lang="bn-BD"] select, -html[lang="bn-BD"] textarea, -html[lang="hi-IN"] body, -html[lang="hi-IN"] button, -html[lang="hi-IN"] input, -html[lang="hi-IN"] select, -html[lang="hi-IN"] textarea, -html[lang="mr-IN"] body, -html[lang="mr-IN"] button, -html[lang="mr-IN"] input, -html[lang="mr-IN"] select, -html[lang="mr-IN"] textarea { - font-family: Arial, sans-serif; -} - -html[lang="bn-BD"] h1, -html[lang="bn-BD"] h2, -html[lang="bn-BD"] h3, -html[lang="bn-BD"] h4, -html[lang="bn-BD"] h5, -html[lang="bn-BD"] h6, -html[lang="hi-IN"] h1, -html[lang="hi-IN"] h2, -html[lang="hi-IN"] h3, -html[lang="hi-IN"] h4, -html[lang="hi-IN"] h5, -html[lang="hi-IN"] h6, -html[lang="mr-IN"] h1, -html[lang="mr-IN"] h2, -html[lang="mr-IN"] h3, -html[lang="mr-IN"] h4, -html[lang="mr-IN"] h5, -html[lang="mr-IN"] h6 { - font-weight: 700; -} - -/* Typography for Greek Font */ - -html[lang="el"] body, -html[lang="el"] button, -html[lang="el"] input, -html[lang="el"] select, -html[lang="el"] textarea { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -} - -html[lang="el"] h1, -html[lang="el"] h2, -html[lang="el"] h3, -html[lang="el"] h4, -html[lang="el"] h5, -html[lang="el"] h6 { - font-weight: 700; - line-height: 1.3; -} - -/* Typography for Gujarati Font */ - -html[lang="gu-IN"] body, -html[lang="gu-IN"] button, -html[lang="gu-IN"] input, -html[lang="gu-IN"] select, -html[lang="gu-IN"] textarea { - font-family: Arial, sans-serif; -} - -html[lang="gu-IN"] h1, -html[lang="gu-IN"] h2, -html[lang="gu-IN"] h3, -html[lang="gu-IN"] h4, -html[lang="gu-IN"] h5, -html[lang="gu-IN"] h6 { - font-weight: 700; -} - -/* Typography for Hebrew Font */ - -html[lang="he-IL"] body, -html[lang="he-IL"] button, -html[lang="he-IL"] input, -html[lang="he-IL"] select, -html[lang="he-IL"] textarea { - font-family: "Arial Hebrew", Arial, sans-serif; -} - -html[lang="he-IL"] h1, -html[lang="he-IL"] h2, -html[lang="he-IL"] h3, -html[lang="he-IL"] h4, -html[lang="he-IL"] h5, -html[lang="he-IL"] h6 { - font-weight: 700; -} - -/* Typography for Japanese Font */ - -html[lang="ja"] body, -html[lang="ja"] button, -html[lang="ja"] input, -html[lang="ja"] select, -html[lang="ja"] textarea { - font-family: "Hiragino Kaku Gothic Pro", Meiryo, sans-serif; -} - -html[lang="ja"] h1, -html[lang="ja"] h2, -html[lang="ja"] h3, -html[lang="ja"] h4, -html[lang="ja"] h5, -html[lang="ja"] h6 { - font-weight: 700; -} - -/* Typography for Korean font */ - -html[lang="ko-KR"] body, -html[lang="ko-KR"] button, -html[lang="ko-KR"] input, -html[lang="ko-KR"] select, -html[lang="ko-KR"] textarea { - font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Nanum Gothic", Dotum, sans-serif; -} - -html[lang="ko-KR"] h1, -html[lang="ko-KR"] h2, -html[lang="ko-KR"] h3, -html[lang="ko-KR"] h4, -html[lang="ko-KR"] h5, -html[lang="ko-KR"] h6 { - font-weight: 600; -} - -/* Typography for Thai Font */ - -html[lang="th"] h1, -html[lang="th"] h2, -html[lang="th"] h3, -html[lang="th"] h4, -html[lang="th"] h5, -html[lang="th"] h6 { - line-height: 1.65; - font-family: "Sukhumvit Set", "Helvetica Neue", Helvetica, Arial, sans-serif; -} - -html[lang="th"] body, -html[lang="th"] button, -html[lang="th"] input, -html[lang="th"] select, -html[lang="th"] textarea { - line-height: 1.8; - font-family: "Sukhumvit Set", "Helvetica Neue", Helvetica, Arial, sans-serif; -} - -/* Remove letter-spacing for all non-latin alphabets */ - -html[lang="ar"] *, -html[lang="ary"] *, -html[lang="azb"] *, -html[lang="haz"] *, -html[lang="ps"] *, -html[lang^="zh-"] *, -html[lang="bg-BG"] *, -html[lang="ru-RU"] *, -html[lang="uk"] *, -html[lang="bn-BD"] *, -html[lang="hi-IN"] *, -html[lang="mr-IN"] *, -html[lang="el"] *, -html[lang="gu-IN"] *, -html[lang="he-IL"] *, -html[lang="ja"] *, -html[lang="ko-KR"] *, -html[lang="th"] * { - letter-spacing: 0 !important; -} - -/*-------------------------------------------------------------- -6.0 Forms ---------------------------------------------------------------*/ - -label { - color: #333; - display: block; - font-weight: 800; - margin-bottom: 0.5em; -} - -fieldset { - margin-bottom: 1em; -} - -input[type="text"], -input[type="email"], -input[type="url"], -input[type="password"], -input[type="search"], -input[type="number"], -input[type="tel"], -input[type="range"], -input[type="date"], -input[type="month"], -input[type="week"], -input[type="time"], -input[type="datetime"], -input[type="datetime-local"], -input[type="color"], -textarea { - color: #666; - background: #fff; - background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); - border: 1px solid #bbb; - -webkit-border-radius: 3px; - border-radius: 3px; - display: block; - padding: 0.7em; - width: 100%; -} - -input[type="text"]:focus, -input[type="email"]:focus, -input[type="url"]:focus, -input[type="password"]:focus, -input[type="search"]:focus, -input[type="number"]:focus, -input[type="tel"]:focus, -input[type="range"]:focus, -input[type="date"]:focus, -input[type="month"]:focus, -input[type="week"]:focus, -input[type="time"]:focus, -input[type="datetime"]:focus, -input[type="datetime-local"]:focus, -input[type="color"]:focus, -textarea:focus { - color: #222; - border-color: #333; -} - -select { - border: 1px solid #bbb; - -webkit-border-radius: 3px; - border-radius: 3px; - height: 3em; - max-width: 100%; -} - -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: thin dotted #333; -} - -input[type="radio"], -input[type="checkbox"] { - margin-right: 0.5em; -} - -input[type="radio"] + label, -input[type="checkbox"] + label { - font-weight: 400; -} - -button, -input[type="button"], -input[type="submit"] { - background-color: #222; - border: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - cursor: pointer; - display: inline-block; - font-size: 14px; - font-size: 0.875rem; - font-weight: 800; - line-height: 1; - padding: 1em 2em; - text-shadow: none; - -webkit-transition: background 0.2s; - transition: background 0.2s; -} - -input + button, -input + input[type="button"], -input + input[type="submit"] { - padding: 0.75em 2em; -} - -button.secondary, -input[type="reset"], -input[type="button"].secondary, -input[type="reset"].secondary, -input[type="submit"].secondary { - background-color: #ddd; - color: #222; -} - -input[type="button"]:hover, -input[type="button"]:focus, -input[type="submit"]:hover, -input[type="submit"]:focus { - background: #767676; -} - -button.secondary:hover, -button.secondary:focus, -input[type="reset"]:hover, -input[type="reset"]:focus, -input[type="button"].secondary:hover, -input[type="button"].secondary:focus, -input[type="reset"].secondary:hover, -input[type="reset"].secondary:focus, -input[type="submit"].secondary:hover, -input[type="submit"].secondary:focus { - background: #bbb; -} - -/* Placeholder text color -- selectors need to be separate to work. */ -::-webkit-input-placeholder { - color: #333; - font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif; -} - -:-moz-placeholder { - color: #333; - font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif; -} - -::-moz-placeholder { - color: #333; - font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif; - opacity: 1; - /* Since FF19 lowers the opacity of the placeholder by default */ -} - -:-ms-input-placeholder { - color: #333; - font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif; -} - -/*-------------------------------------------------------------- -7.0 Formatting ---------------------------------------------------------------*/ - -hr { - background-color: #bbb; - border: 0; - height: 1px; - margin-bottom: 1.5em; -} - -/*-------------------------------------------------------------- -8.0 Lists ---------------------------------------------------------------*/ - -ul, -ol { - margin: 0 0 1.5em; - padding: 0; -} - -ul { - list-style: disc; -} - -ol { - list-style: decimal; -} - -li > ul, -li > ol { - margin-bottom: 0; - margin-left: 1.5em; -} - -dt { - font-weight: 700; -} - -dd { - margin: 0 1.5em 1.5em; -} - -/*-------------------------------------------------------------- -9.0 Tables ---------------------------------------------------------------*/ - -table { - border-collapse: collapse; - margin: 0 0 1.5em; - width: 100%; -} - -thead th { - border-bottom: 2px solid #bbb; - padding-bottom: 0.5em; -} - -th { - padding: 0.4em; - text-align: left; -} - -tr { - border-bottom: 1px solid #eee; -} - -td { - padding: 0.4em; -} - -th:first-child, -td:first-child { - padding-left: 0; -} - -th:last-child, -td:last-child { - padding-right: 0; -} - -/*-------------------------------------------------------------- -10.0 Links ---------------------------------------------------------------*/ - -a { - color: #222; - text-decoration: none; -} - -a:focus { - outline: thin dotted; -} - -a:hover, -a:active { - color: #000; - outline: 0; -} - -/*-------------------------------------------------------------- -13.0 Layout ---------------------------------------------------------------*/ - -html { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -*, -*:before, -*:after { - /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ - -webkit-box-sizing: inherit; - -moz-box-sizing: inherit; - box-sizing: inherit; -} - -body { - background: #fff; - /* Fallback for when there is no custom background color defined. */ -} - -.icon { - display: inline-block; - fill: currentColor; - height: 1em; - position: relative; - top: -0.0625em; - vertical-align: middle; - width: 1em; -} - -/*-------------------------------------------------------------- -15.0 Widgets ---------------------------------------------------------------*/ - -h2.widget-title { - color: #222; - font-size: 13px; - font-size: 0.8125rem; - font-weight: 800; - letter-spacing: 0.1818em; - margin-bottom: 1.5em; - text-transform: uppercase; -} - -/*-------------------------------------------------------------- -16.0 Media ---------------------------------------------------------------*/ - -img, -video { - height: auto; /* Make sure images are scaled correctly. */ - max-width: 100%; /* Adhere to container width. */ -} - -img.alignleft, -img.alignright { - float: none; - margin: 0; -} - -audio:focus, -video:focus { - outline: thin dotted; -} - -/* Make sure embeds and iframes fit their containers. */ - -embed, -iframe, -object { - margin-bottom: 1.5em; - max-width: 100%; -} - -/* Remove bottom on embeds that wrapped in paragraphs via wpautop. */ - -p > embed:only-child, -p > iframe:only-child, -p > object:only-child { - margin-bottom: 0; -} - -/*-------------------------------------------------------------- -19.0 Media Queries ---------------------------------------------------------------*/ - -/* Adjust positioning of edit shortcuts, override style in customize-preview.css */ - -@media screen and (min-width: 30em) { - - /* Typography */ - - body, - button, - input, - select, - textarea { - font-size: 18px; - font-size: 1.125rem; - } - - h1 { - font-size: 30px; - font-size: 1.875rem; - } - - h2 { - font-size: 26px; - font-size: 1.625rem; - } - - h3 { - font-size: 22px; - font-size: 1.375rem; - } - - h4 { - font-size: 18px; - font-size: 1.125rem; - } - - h5 { - font-size: 13px; - font-size: 0.8125rem; - } - - h6 { - font-size: 16px; - font-size: 1rem; - } -} - -@media screen and (min-width: 48em) { - - /* Typography */ - - body, - button, - input, - select, - textarea { - font-size: 16px; - font-size: 1rem; - line-height: 1.5; - } - - ol.children .children { - padding-left: 2em; - } - - /* Widgets */ - - h2.widget-title { - font-size: 11px; - font-size: 0.6875rem; - margin-bottom: 2em; - } -} - -/*-------------------------------------------------------------- -20.0 Print ---------------------------------------------------------------*/ - -@media print { - - /* Hide elements */ - - form, - button, - input, - select, - textarea { - display: none !important; - } - /* Font sizes */ - - body { - font-size: 12pt; - } - - h1 { - font-size: 24pt; - } - - h2 { - font-size: 22pt; - } - - h3 { - font-size: 17pt; - } - - h4 { - font-size: 12pt; - } - - h5 { - font-size: 11pt; - } - - h6 { - font-size: 12pt; - } - - /* Colors */ - - body { - background: none !important; /* Brute force since user agents all print differently. */ - } - - body, - a { - color: #222 !important; /* Make sure color schemes don't affect to print */ - } - - h2, - h5, - blockquote { - color: #777 !important; /* Make sure color schemes don't affect to print */ - } -} \ No newline at end of file diff --git a/front/src/components/AeCpuCard/AeCpuCard.css b/front/src/components/AeCpuCard/AeCpuCard.css deleted file mode 100644 index d204187da0..0000000000 --- a/front/src/components/AeCpuCard/AeCpuCard.css +++ /dev/null @@ -1,79 +0,0 @@ -.ae-cpu-card { - width: 128px; - height: 180px; - display: inline-block; - background: #4abe40ed; - border-radius: 5px; - margin: 10px; -} - -.ae-cpu-card-busy { - background: rgba(241, 96, 70, 0.93); -} - -.ae-cpu-card-status { - color: dimgray; - padding: 5px; - margin-bottom: 5px; -} - -.ae-cpu-card-busy .ae-cpu-card-status { - color: #ffc82e; -} - -.ae-cpu-card-line { - display: block; - position: relative; - margin: 0; - padding: 0; - font-size: 14px; -} - -.ae-cpu-card-line span:first-child { - position: absolute; - left: 5px; - max-width: 28%; - word-break: keep-all; - overflow: hidden; -} - -.ae-cpu-card-line span:last-child { - text-align: right; - display: inherit; - /*max-width: 66%;*/ - padding-left: 30%; - padding-right: 5px; - word-break: break-all; -} - -.ae-cpu-card-name { - color: aquamarine; - padding: 2px; -} - -.ae-cpu-card-refresh { - cursor: pointer; -} - -.ae-cpu-card-tool-bar { - position: relative; -} - -.ae-cpu-card-tool-bar-delete { - position: absolute; - right: 0; - padding: 0 7px; - border: dashed 1px #f4fa4f; - border-radius: 20px; - cursor: pointer; - color: rgba(241, 96, 70, 0.93); -} - -.ae-cpu-card-tool-bar-delete:hover { - transition: transform 0.8s ease; - transform: rotate(-360deg); -} - -.ae-cpu-card-busy .ae-cpu-card-tool-bar-delete { - color: #f4fa4f; -} \ No newline at end of file diff --git a/front/src/components/AeCpuCard/AeCpuCard.jsx b/front/src/components/AeCpuCard/AeCpuCard.jsx deleted file mode 100644 index d20dd602cf..0000000000 --- a/front/src/components/AeCpuCard/AeCpuCard.jsx +++ /dev/null @@ -1,38 +0,0 @@ -import PropTypes from "prop-types"; -import "./AeCpuCard.css" - -function AeCpuCardLine({lineKey, value}) { - return ( -
- {lineKey} - {value} -
- ) -} - -export default function AeCpuCard({onClick, cpu, onRefresh, onDelete}) { - return ( -
onClick(cpu.id)}> -
- onDelete(cpu)}>X -
-

{cpu.id}

- - -

{cpu.busy ? "运行中" : "空闲中"}

- onRefresh(cpu.id)}>刷新状态 -
- ) -} - -AeCpuCardLine.propTypes = { - lineKey: PropTypes.string, - value: PropTypes.any -} - -AeCpuCard.propTypes = { - onClick: PropTypes.func, - cpu: PropTypes.object, - onRefresh: PropTypes.func, - onDelete: PropTypes.func -} \ No newline at end of file diff --git a/front/src/components/CommandConsole/CommandConsole.css b/front/src/components/CommandConsole/CommandConsole.css deleted file mode 100644 index 6cc726e900..0000000000 --- a/front/src/components/CommandConsole/CommandConsole.css +++ /dev/null @@ -1,161 +0,0 @@ -.command-console { - width: 100%; - height: 4vh; - display: flex; - padding: 5px; - transition: height 0.8s ease; -} - -.command-console > * { - display: none !important; -} - -.command-console-fixed, -.command-console:hover { - height: 20vh; - transition: height 0.8s ease; -} - -.command-console-fixed > *, -.command-console:hover > * { - display: inline-block !important; -} - -.command-console textarea, -.command-console select { - background: transparent; -} - -.command-area { - height: 100%; - width: 46%; - display: inline-block; -} - -.command-area-line { - width: 100%; - position: relative; - padding: 2px; -} - -.command-area-line :first-child { - position: absolute; - left: 5px; - width: 30%; - overflow: hidden; - word-break: keep-all; -} - -.command-area-line :last-child { - width: 70%; - margin-left: 30%; - display: inline-block; - height: 100%; -} - -.command-area-line-1 { - height: 20%; -} - -.command-area-line-2 { - height: 80%; -} - -.command-area-line textarea { - height: 100%; -} - -.command-area-submit-btn { - display: inline-block; - border-radius: 20px; - cursor: pointer; - padding: 2px 5px; - writing-mode: sideways-rl; - text-align: center; - margin: auto 5px; - height: 80%; -} - -.command-area-submit-btn:hover { - background: #7ba2e0; - scale: 1.1; - transition: scale .8s ease, height .8s ease; - height: 90%; -} - -.command-status-area { - width: 46%; - height: 100%; - display: inline-block; - margin-left: 5%; -} - -.command-status-area * { - width: 100%; - height: 100%; -} - -.command-console textarea { - overflow: auto; - white-space: pre; - border-radius: 20px; -} - -.command-console select { - border-radius: 20px; -} - -/** - * low width - */ - -@media screen and (max-width: 30em) { - .command-console { - height: 2vh; - display: block; - transition: height 0.8s ease; - } - - .command-console > * - { - display: none; - } - - .command-console-fixed, - .command-console:hover, - .command-console:active, - .command-console:focus { - height: 80vh; - padding-top: 50px; - transition: height 0.8s ease; - } - - .command-console-fixed > *, - .command-console:hover > *, - .command-console:active > *, - .command-console:focus > * { - display: block; - } - - .command-area { - width: 100%; - height: 45%; - } - - .command-area-submit-btn { - width: 100%; - height: auto; - writing-mode: horizontal-tb; - } - - .command-area-submit-btn:hover { - height: auto; - width: 100%; - transition: scale .8s ease, width .8s ease; - } - - .command-status-area { - width: 90%; - height: 45%; - } -} \ No newline at end of file diff --git a/front/src/components/CommandConsole/CommandConsole.jsx b/front/src/components/CommandConsole/CommandConsole.jsx deleted file mode 100644 index f45aa7f164..0000000000 --- a/front/src/components/CommandConsole/CommandConsole.jsx +++ /dev/null @@ -1,103 +0,0 @@ -import {useCallback, useEffect, useState} from "react"; -import httpUtil from "../../HttpUtil.jsx"; -import "./CommandConsole.css" -import Config from "../../Config.jsx"; -import PropTypes from "prop-types"; - -function CommandArea({fixed, setFixed}) { - function submitCommand(command, bodyData) { - if (command == null || command === "") return - const json = JSON.parse(bodyData) - httpUtil.put(httpUtil.path.task, { - method: command, - data: json - }).then(val => { - - }) - } - - let commandOption = [] - for (const key in Config.tasks) { - if (key === "none") continue - commandOption.push() - } - - const [command, setCommand] = useState("") - const [bodyData, setBodyData] = useState("") - - - return ( - <> -
-
- setFixed(event.target.checked)}>指令: - - {/* setCommand(event.target.value)}/>*/} -
-
- 参数: -